blob: 0f670604716757117fa38e6bbf5ecd1f8054bb00 [file] [log] [blame]
Chris Mason0b86a832008-03-24 15:01:56 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18#include <linux/sched.h>
19#include <linux/bio.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Chris Mason8a4b83c2008-03-24 15:02:07 -040021#include <linux/buffer_head.h>
Chris Masonf2d8d742008-04-21 10:03:05 -040022#include <linux/blkdev.h>
Chris Masonb765ead2009-04-03 10:27:10 -040023#include <linux/iocontext.h>
Ben Hutchings6f88a442010-12-29 14:55:03 +000024#include <linux/capability.h>
Stefan Behrens442a4f62012-05-25 16:06:08 +020025#include <linux/ratelimit.h>
Ilya Dryomov59641012012-01-16 22:04:48 +020026#include <linux/kthread.h>
David Woodhouse53b381b2013-01-29 18:40:14 -050027#include <linux/raid/pq.h>
Stefan Behrens803b2f52013-08-15 17:11:21 +020028#include <linux/semaphore.h>
Andy Shevchenko8da4b8c2016-05-20 17:01:00 -070029#include <linux/uuid.h>
David Woodhouse53b381b2013-01-29 18:40:14 -050030#include <asm/div64.h>
Chris Mason0b86a832008-03-24 15:01:56 -040031#include "ctree.h"
32#include "extent_map.h"
33#include "disk-io.h"
34#include "transaction.h"
35#include "print-tree.h"
36#include "volumes.h"
David Woodhouse53b381b2013-01-29 18:40:14 -050037#include "raid56.h"
Chris Mason8b712842008-06-11 16:50:36 -040038#include "async-thread.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010039#include "check-integrity.h"
Josef Bacik606686e2012-06-04 14:03:51 -040040#include "rcu-string.h"
Miao Xie3fed40c2012-09-13 04:51:36 -060041#include "math.h"
Stefan Behrens8dabb742012-11-06 13:15:27 +010042#include "dev-replace.h"
Anand Jain99994cd2014-06-03 11:36:00 +080043#include "sysfs.h"
Chris Mason0b86a832008-03-24 15:01:56 -040044
Zhao Leiaf902042015-09-15 21:08:06 +080045const struct btrfs_raid_attr btrfs_raid_array[BTRFS_NR_RAID_TYPES] = {
46 [BTRFS_RAID_RAID10] = {
47 .sub_stripes = 2,
48 .dev_stripes = 1,
49 .devs_max = 0, /* 0 == as many as possible */
50 .devs_min = 4,
Zhao Lei8789f4f2015-09-15 21:08:07 +080051 .tolerated_failures = 1,
Zhao Leiaf902042015-09-15 21:08:06 +080052 .devs_increment = 2,
53 .ncopies = 2,
54 },
55 [BTRFS_RAID_RAID1] = {
56 .sub_stripes = 1,
57 .dev_stripes = 1,
58 .devs_max = 2,
59 .devs_min = 2,
Zhao Lei8789f4f2015-09-15 21:08:07 +080060 .tolerated_failures = 1,
Zhao Leiaf902042015-09-15 21:08:06 +080061 .devs_increment = 2,
62 .ncopies = 2,
63 },
64 [BTRFS_RAID_DUP] = {
65 .sub_stripes = 1,
66 .dev_stripes = 2,
67 .devs_max = 1,
68 .devs_min = 1,
Zhao Lei8789f4f2015-09-15 21:08:07 +080069 .tolerated_failures = 0,
Zhao Leiaf902042015-09-15 21:08:06 +080070 .devs_increment = 1,
71 .ncopies = 2,
72 },
73 [BTRFS_RAID_RAID0] = {
74 .sub_stripes = 1,
75 .dev_stripes = 1,
76 .devs_max = 0,
77 .devs_min = 2,
Zhao Lei8789f4f2015-09-15 21:08:07 +080078 .tolerated_failures = 0,
Zhao Leiaf902042015-09-15 21:08:06 +080079 .devs_increment = 1,
80 .ncopies = 1,
81 },
82 [BTRFS_RAID_SINGLE] = {
83 .sub_stripes = 1,
84 .dev_stripes = 1,
85 .devs_max = 1,
86 .devs_min = 1,
Zhao Lei8789f4f2015-09-15 21:08:07 +080087 .tolerated_failures = 0,
Zhao Leiaf902042015-09-15 21:08:06 +080088 .devs_increment = 1,
89 .ncopies = 1,
90 },
91 [BTRFS_RAID_RAID5] = {
92 .sub_stripes = 1,
93 .dev_stripes = 1,
94 .devs_max = 0,
95 .devs_min = 2,
Zhao Lei8789f4f2015-09-15 21:08:07 +080096 .tolerated_failures = 1,
Zhao Leiaf902042015-09-15 21:08:06 +080097 .devs_increment = 1,
98 .ncopies = 2,
99 },
100 [BTRFS_RAID_RAID6] = {
101 .sub_stripes = 1,
102 .dev_stripes = 1,
103 .devs_max = 0,
104 .devs_min = 3,
Zhao Lei8789f4f2015-09-15 21:08:07 +0800105 .tolerated_failures = 2,
Zhao Leiaf902042015-09-15 21:08:06 +0800106 .devs_increment = 1,
107 .ncopies = 3,
108 },
109};
110
Colin Ian Kingfb75d852016-01-19 00:05:28 +0000111const u64 btrfs_raid_group[BTRFS_NR_RAID_TYPES] = {
Zhao Leiaf902042015-09-15 21:08:06 +0800112 [BTRFS_RAID_RAID10] = BTRFS_BLOCK_GROUP_RAID10,
113 [BTRFS_RAID_RAID1] = BTRFS_BLOCK_GROUP_RAID1,
114 [BTRFS_RAID_DUP] = BTRFS_BLOCK_GROUP_DUP,
115 [BTRFS_RAID_RAID0] = BTRFS_BLOCK_GROUP_RAID0,
116 [BTRFS_RAID_SINGLE] = 0,
117 [BTRFS_RAID_RAID5] = BTRFS_BLOCK_GROUP_RAID5,
118 [BTRFS_RAID_RAID6] = BTRFS_BLOCK_GROUP_RAID6,
119};
120
David Sterba621292b2016-02-15 16:28:03 +0100121/*
122 * Table to convert BTRFS_RAID_* to the error code if minimum number of devices
123 * condition is not met. Zero means there's no corresponding
124 * BTRFS_ERROR_DEV_*_NOT_MET value.
125 */
126const int btrfs_raid_mindev_error[BTRFS_NR_RAID_TYPES] = {
127 [BTRFS_RAID_RAID10] = BTRFS_ERROR_DEV_RAID10_MIN_NOT_MET,
128 [BTRFS_RAID_RAID1] = BTRFS_ERROR_DEV_RAID1_MIN_NOT_MET,
129 [BTRFS_RAID_DUP] = 0,
130 [BTRFS_RAID_RAID0] = 0,
131 [BTRFS_RAID_SINGLE] = 0,
132 [BTRFS_RAID_RAID5] = BTRFS_ERROR_DEV_RAID5_MIN_NOT_MET,
133 [BTRFS_RAID_RAID6] = BTRFS_ERROR_DEV_RAID6_MIN_NOT_MET,
134};
135
Yan Zheng2b820322008-11-17 21:11:30 -0500136static int init_first_rw_device(struct btrfs_trans_handle *trans,
David Sterbae4a4dce2017-02-10 19:49:01 +0100137 struct btrfs_fs_info *fs_info);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400138static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info);
Stefan Behrens733f4fb2012-05-25 16:06:10 +0200139static void __btrfs_reset_dev_stats(struct btrfs_device *dev);
Eric Sandeen48a3b632013-04-25 20:41:01 +0000140static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev);
Stefan Behrens733f4fb2012-05-25 16:06:10 +0200141static void btrfs_dev_stat_print_on_load(struct btrfs_device *device);
Yan Zheng2b820322008-11-17 21:11:30 -0500142
Miao Xie67a2c452014-09-03 21:35:43 +0800143DEFINE_MUTEX(uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400144static LIST_HEAD(fs_uuids);
Anand Jainc73eccf2015-03-10 06:38:30 +0800145struct list_head *btrfs_get_fs_uuids(void)
146{
147 return &fs_uuids;
148}
Chris Mason8a4b83c2008-03-24 15:02:07 -0400149
Ilya Dryomov2208a372013-08-12 14:33:03 +0300150static struct btrfs_fs_devices *__alloc_fs_devices(void)
151{
152 struct btrfs_fs_devices *fs_devs;
153
David Sterba78f2c9e2016-02-11 14:25:38 +0100154 fs_devs = kzalloc(sizeof(*fs_devs), GFP_KERNEL);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300155 if (!fs_devs)
156 return ERR_PTR(-ENOMEM);
157
158 mutex_init(&fs_devs->device_list_mutex);
159
160 INIT_LIST_HEAD(&fs_devs->devices);
Miao Xie935e5cc2014-09-03 21:35:33 +0800161 INIT_LIST_HEAD(&fs_devs->resized_devices);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300162 INIT_LIST_HEAD(&fs_devs->alloc_list);
163 INIT_LIST_HEAD(&fs_devs->list);
164
165 return fs_devs;
166}
167
168/**
169 * alloc_fs_devices - allocate struct btrfs_fs_devices
170 * @fsid: a pointer to UUID for this FS. If NULL a new UUID is
171 * generated.
172 *
173 * Return: a pointer to a new &struct btrfs_fs_devices on success;
174 * ERR_PTR() on error. Returned struct is not linked onto any lists and
175 * can be destroyed with kfree() right away.
176 */
177static struct btrfs_fs_devices *alloc_fs_devices(const u8 *fsid)
178{
179 struct btrfs_fs_devices *fs_devs;
180
181 fs_devs = __alloc_fs_devices();
182 if (IS_ERR(fs_devs))
183 return fs_devs;
184
185 if (fsid)
186 memcpy(fs_devs->fsid, fsid, BTRFS_FSID_SIZE);
187 else
188 generate_random_uuid(fs_devs->fsid);
189
190 return fs_devs;
191}
192
Yan Zhenge4404d62008-12-12 10:03:26 -0500193static void free_fs_devices(struct btrfs_fs_devices *fs_devices)
194{
195 struct btrfs_device *device;
196 WARN_ON(fs_devices->opened);
197 while (!list_empty(&fs_devices->devices)) {
198 device = list_entry(fs_devices->devices.next,
199 struct btrfs_device, dev_list);
200 list_del(&device->dev_list);
Josef Bacik606686e2012-06-04 14:03:51 -0400201 rcu_string_free(device->name);
Yan Zhenge4404d62008-12-12 10:03:26 -0500202 kfree(device);
203 }
204 kfree(fs_devices);
205}
206
Lukas Czernerb8b8ff52012-12-06 19:25:48 +0000207static void btrfs_kobject_uevent(struct block_device *bdev,
208 enum kobject_action action)
209{
210 int ret;
211
212 ret = kobject_uevent(&disk_to_dev(bdev->bd_disk)->kobj, action);
213 if (ret)
Frank Holtonefe120a2013-12-20 11:37:06 -0500214 pr_warn("BTRFS: Sending event '%d' to kobject: '%s' (%p): failed\n",
Lukas Czernerb8b8ff52012-12-06 19:25:48 +0000215 action,
216 kobject_name(&disk_to_dev(bdev->bd_disk)->kobj),
217 &disk_to_dev(bdev->bd_disk)->kobj);
218}
219
Jeff Mahoney143bede2012-03-01 14:56:26 +0100220void btrfs_cleanup_fs_uuids(void)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400221{
222 struct btrfs_fs_devices *fs_devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400223
Yan Zheng2b820322008-11-17 21:11:30 -0500224 while (!list_empty(&fs_uuids)) {
225 fs_devices = list_entry(fs_uuids.next,
226 struct btrfs_fs_devices, list);
227 list_del(&fs_devices->list);
Yan Zhenge4404d62008-12-12 10:03:26 -0500228 free_fs_devices(fs_devices);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400229 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400230}
231
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300232static struct btrfs_device *__alloc_device(void)
233{
234 struct btrfs_device *dev;
235
David Sterba78f2c9e2016-02-11 14:25:38 +0100236 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300237 if (!dev)
238 return ERR_PTR(-ENOMEM);
239
240 INIT_LIST_HEAD(&dev->dev_list);
241 INIT_LIST_HEAD(&dev->dev_alloc_list);
Miao Xie935e5cc2014-09-03 21:35:33 +0800242 INIT_LIST_HEAD(&dev->resized_list);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300243
244 spin_lock_init(&dev->io_lock);
245
246 spin_lock_init(&dev->reada_lock);
247 atomic_set(&dev->reada_in_flight, 0);
Miao Xieaddc3fa2014-07-24 11:37:11 +0800248 atomic_set(&dev->dev_stats_ccnt, 0);
Sebastian Andrzej Siewior546bed62016-01-15 14:37:15 +0100249 btrfs_device_data_ordered_init(dev);
Mel Gormand0164ad2015-11-06 16:28:21 -0800250 INIT_RADIX_TREE(&dev->reada_zones, GFP_NOFS & ~__GFP_DIRECT_RECLAIM);
251 INIT_RADIX_TREE(&dev->reada_extents, GFP_NOFS & ~__GFP_DIRECT_RECLAIM);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300252
253 return dev;
254}
255
Chris Masona1b32a52008-09-05 16:09:51 -0400256static noinline struct btrfs_device *__find_device(struct list_head *head,
257 u64 devid, u8 *uuid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400258{
259 struct btrfs_device *dev;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400260
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500261 list_for_each_entry(dev, head, dev_list) {
Chris Masona4437552008-04-18 10:29:38 -0400262 if (dev->devid == devid &&
Chris Mason8f18cf12008-04-25 16:53:30 -0400263 (!uuid || !memcmp(dev->uuid, uuid, BTRFS_UUID_SIZE))) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400264 return dev;
Chris Masona4437552008-04-18 10:29:38 -0400265 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400266 }
267 return NULL;
268}
269
Chris Masona1b32a52008-09-05 16:09:51 -0400270static noinline struct btrfs_fs_devices *find_fsid(u8 *fsid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400271{
Chris Mason8a4b83c2008-03-24 15:02:07 -0400272 struct btrfs_fs_devices *fs_devices;
273
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500274 list_for_each_entry(fs_devices, &fs_uuids, list) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400275 if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0)
276 return fs_devices;
277 }
278 return NULL;
279}
280
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100281static int
282btrfs_get_bdev_and_sb(const char *device_path, fmode_t flags, void *holder,
283 int flush, struct block_device **bdev,
284 struct buffer_head **bh)
285{
286 int ret;
287
288 *bdev = blkdev_get_by_path(device_path, flags, holder);
289
290 if (IS_ERR(*bdev)) {
291 ret = PTR_ERR(*bdev);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100292 goto error;
293 }
294
295 if (flush)
296 filemap_write_and_wait((*bdev)->bd_inode->i_mapping);
297 ret = set_blocksize(*bdev, 4096);
298 if (ret) {
299 blkdev_put(*bdev, flags);
300 goto error;
301 }
302 invalidate_bdev(*bdev);
303 *bh = btrfs_read_dev_super(*bdev);
Anand Jain92fc03f2015-08-14 18:32:51 +0800304 if (IS_ERR(*bh)) {
305 ret = PTR_ERR(*bh);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100306 blkdev_put(*bdev, flags);
307 goto error;
308 }
309
310 return 0;
311
312error:
313 *bdev = NULL;
314 *bh = NULL;
315 return ret;
316}
317
Chris Masonffbd5172009-04-20 15:50:09 -0400318static void requeue_list(struct btrfs_pending_bios *pending_bios,
319 struct bio *head, struct bio *tail)
320{
321
322 struct bio *old_head;
323
324 old_head = pending_bios->head;
325 pending_bios->head = head;
326 if (pending_bios->tail)
327 tail->bi_next = old_head;
328 else
329 pending_bios->tail = tail;
330}
331
Chris Mason8b712842008-06-11 16:50:36 -0400332/*
333 * we try to collect pending bios for a device so we don't get a large
334 * number of procs sending bios down to the same device. This greatly
335 * improves the schedulers ability to collect and merge the bios.
336 *
337 * But, it also turns into a long list of bios to process and that is sure
338 * to eventually make the worker thread block. The solution here is to
339 * make some progress and then put this work struct back at the end of
340 * the list if the block device is congested. This way, multiple devices
341 * can make progress from a single worker thread.
342 */
Jeff Mahoney143bede2012-03-01 14:56:26 +0100343static noinline void run_scheduled_bios(struct btrfs_device *device)
Chris Mason8b712842008-06-11 16:50:36 -0400344{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400345 struct btrfs_fs_info *fs_info = device->fs_info;
Chris Mason8b712842008-06-11 16:50:36 -0400346 struct bio *pending;
347 struct backing_dev_info *bdi;
Chris Masonffbd5172009-04-20 15:50:09 -0400348 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -0400349 struct bio *tail;
350 struct bio *cur;
351 int again = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400352 unsigned long num_run;
Chris Masond644d8a2009-06-09 15:59:22 -0400353 unsigned long batch_run = 0;
Chris Masonb64a2852008-08-20 13:39:41 -0400354 unsigned long limit;
Chris Masonb765ead2009-04-03 10:27:10 -0400355 unsigned long last_waited = 0;
Chris Masond84275c2009-06-09 15:39:08 -0400356 int force_reg = 0;
Miao Xie0e588852011-08-05 09:32:37 +0000357 int sync_pending = 0;
Chris Mason211588a2011-04-19 20:12:40 -0400358 struct blk_plug plug;
359
360 /*
361 * this function runs all the bios we've collected for
362 * a particular device. We don't want to wander off to
363 * another device without first sending all of these down.
364 * So, setup a plug here and finish it off before we return
365 */
366 blk_start_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400367
Jan Karaefa7c9f2017-02-02 15:56:53 +0100368 bdi = device->bdev->bd_bdi;
Chris Masonb64a2852008-08-20 13:39:41 -0400369 limit = btrfs_async_submit_limit(fs_info);
370 limit = limit * 2 / 3;
371
Chris Mason8b712842008-06-11 16:50:36 -0400372loop:
373 spin_lock(&device->io_lock);
374
Chris Masona6837052009-02-04 09:19:41 -0500375loop_lock:
Chris Masond84275c2009-06-09 15:39:08 -0400376 num_run = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400377
Chris Mason8b712842008-06-11 16:50:36 -0400378 /* take all the bios off the list at once and process them
379 * later on (without the lock held). But, remember the
380 * tail and other pointers so the bios can be properly reinserted
381 * into the list if we hit congestion
382 */
Chris Masond84275c2009-06-09 15:39:08 -0400383 if (!force_reg && device->pending_sync_bios.head) {
Chris Masonffbd5172009-04-20 15:50:09 -0400384 pending_bios = &device->pending_sync_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400385 force_reg = 1;
386 } else {
Chris Masonffbd5172009-04-20 15:50:09 -0400387 pending_bios = &device->pending_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400388 force_reg = 0;
389 }
Chris Masonffbd5172009-04-20 15:50:09 -0400390
391 pending = pending_bios->head;
392 tail = pending_bios->tail;
Chris Mason8b712842008-06-11 16:50:36 -0400393 WARN_ON(pending && !tail);
Chris Mason8b712842008-06-11 16:50:36 -0400394
395 /*
396 * if pending was null this time around, no bios need processing
397 * at all and we can stop. Otherwise it'll loop back up again
398 * and do an additional check so no bios are missed.
399 *
400 * device->running_pending is used to synchronize with the
401 * schedule_bio code.
402 */
Chris Masonffbd5172009-04-20 15:50:09 -0400403 if (device->pending_sync_bios.head == NULL &&
404 device->pending_bios.head == NULL) {
Chris Mason8b712842008-06-11 16:50:36 -0400405 again = 0;
406 device->running_pending = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400407 } else {
408 again = 1;
409 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400410 }
Chris Masonffbd5172009-04-20 15:50:09 -0400411
412 pending_bios->head = NULL;
413 pending_bios->tail = NULL;
414
Chris Mason8b712842008-06-11 16:50:36 -0400415 spin_unlock(&device->io_lock);
416
Chris Masond3977122009-01-05 21:25:51 -0500417 while (pending) {
Chris Masonffbd5172009-04-20 15:50:09 -0400418
419 rmb();
Chris Masond84275c2009-06-09 15:39:08 -0400420 /* we want to work on both lists, but do more bios on the
421 * sync list than the regular list
422 */
423 if ((num_run > 32 &&
424 pending_bios != &device->pending_sync_bios &&
425 device->pending_sync_bios.head) ||
426 (num_run > 64 && pending_bios == &device->pending_sync_bios &&
427 device->pending_bios.head)) {
Chris Masonffbd5172009-04-20 15:50:09 -0400428 spin_lock(&device->io_lock);
429 requeue_list(pending_bios, pending, tail);
430 goto loop_lock;
431 }
432
Chris Mason8b712842008-06-11 16:50:36 -0400433 cur = pending;
434 pending = pending->bi_next;
435 cur->bi_next = NULL;
Chris Masonb64a2852008-08-20 13:39:41 -0400436
David Sterbaee863952015-02-16 19:41:40 +0100437 /*
438 * atomic_dec_return implies a barrier for waitqueue_active
439 */
Josef Bacik66657b32012-08-01 15:36:24 -0400440 if (atomic_dec_return(&fs_info->nr_async_bios) < limit &&
Chris Masonb64a2852008-08-20 13:39:41 -0400441 waitqueue_active(&fs_info->async_submit_wait))
442 wake_up(&fs_info->async_submit_wait);
Chris Mason492bb6de2008-07-31 16:29:02 -0400443
Jens Axboedac56212015-04-17 16:23:59 -0600444 BUG_ON(atomic_read(&cur->__bi_cnt) == 0);
Chris Masond644d8a2009-06-09 15:59:22 -0400445
Chris Mason2ab1ba62011-08-04 14:28:36 -0400446 /*
447 * if we're doing the sync list, record that our
448 * plug has some sync requests on it
449 *
450 * If we're doing the regular list and there are
451 * sync requests sitting around, unplug before
452 * we add more
453 */
454 if (pending_bios == &device->pending_sync_bios) {
455 sync_pending = 1;
456 } else if (sync_pending) {
457 blk_finish_plug(&plug);
458 blk_start_plug(&plug);
459 sync_pending = 0;
460 }
461
Mike Christie4e49ea42016-06-05 14:31:41 -0500462 btrfsic_submit_bio(cur);
Chris Mason5ff7ba32010-03-15 10:21:30 -0400463 num_run++;
464 batch_run++;
David Sterba853d8ec2015-01-08 15:15:19 +0100465
466 cond_resched();
Chris Mason8b712842008-06-11 16:50:36 -0400467
468 /*
469 * we made progress, there is more work to do and the bdi
470 * is now congested. Back off and let other work structs
471 * run instead
472 */
Chris Mason57fd5a52009-08-07 09:59:15 -0400473 if (pending && bdi_write_congested(bdi) && batch_run > 8 &&
Chris Mason5f2cc082008-11-07 18:22:45 -0500474 fs_info->fs_devices->open_devices > 1) {
Chris Masonb765ead2009-04-03 10:27:10 -0400475 struct io_context *ioc;
Chris Mason8b712842008-06-11 16:50:36 -0400476
Chris Masonb765ead2009-04-03 10:27:10 -0400477 ioc = current->io_context;
478
479 /*
480 * the main goal here is that we don't want to
481 * block if we're going to be able to submit
482 * more requests without blocking.
483 *
484 * This code does two great things, it pokes into
485 * the elevator code from a filesystem _and_
486 * it makes assumptions about how batching works.
487 */
488 if (ioc && ioc->nr_batch_requests > 0 &&
489 time_before(jiffies, ioc->last_waited + HZ/50UL) &&
490 (last_waited == 0 ||
491 ioc->last_waited == last_waited)) {
492 /*
493 * we want to go through our batch of
494 * requests and stop. So, we copy out
495 * the ioc->last_waited time and test
496 * against it before looping
497 */
498 last_waited = ioc->last_waited;
David Sterba853d8ec2015-01-08 15:15:19 +0100499 cond_resched();
Chris Masonb765ead2009-04-03 10:27:10 -0400500 continue;
501 }
Chris Mason8b712842008-06-11 16:50:36 -0400502 spin_lock(&device->io_lock);
Chris Masonffbd5172009-04-20 15:50:09 -0400503 requeue_list(pending_bios, pending, tail);
Chris Masona6837052009-02-04 09:19:41 -0500504 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400505
506 spin_unlock(&device->io_lock);
Qu Wenruoa8c93d42014-02-28 10:46:08 +0800507 btrfs_queue_work(fs_info->submit_workers,
508 &device->work);
Chris Mason8b712842008-06-11 16:50:36 -0400509 goto done;
510 }
Chris Masond85c8a6f2011-12-15 15:38:41 -0500511 /* unplug every 64 requests just for good measure */
512 if (batch_run % 64 == 0) {
513 blk_finish_plug(&plug);
514 blk_start_plug(&plug);
515 sync_pending = 0;
516 }
Chris Mason8b712842008-06-11 16:50:36 -0400517 }
Chris Masonffbd5172009-04-20 15:50:09 -0400518
Chris Mason51684082010-03-10 15:33:32 -0500519 cond_resched();
520 if (again)
521 goto loop;
522
523 spin_lock(&device->io_lock);
524 if (device->pending_bios.head || device->pending_sync_bios.head)
525 goto loop_lock;
526 spin_unlock(&device->io_lock);
527
Chris Mason8b712842008-06-11 16:50:36 -0400528done:
Chris Mason211588a2011-04-19 20:12:40 -0400529 blk_finish_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400530}
531
Christoph Hellwigb2950862008-12-02 09:54:17 -0500532static void pending_bios_fn(struct btrfs_work *work)
Chris Mason8b712842008-06-11 16:50:36 -0400533{
534 struct btrfs_device *device;
535
536 device = container_of(work, struct btrfs_device, work);
537 run_scheduled_bios(device);
538}
539
Anand Jain4fde46f2015-06-17 21:10:48 +0800540
541void btrfs_free_stale_device(struct btrfs_device *cur_dev)
542{
543 struct btrfs_fs_devices *fs_devs;
544 struct btrfs_device *dev;
545
546 if (!cur_dev->name)
547 return;
548
549 list_for_each_entry(fs_devs, &fs_uuids, list) {
550 int del = 1;
551
552 if (fs_devs->opened)
553 continue;
554 if (fs_devs->seeding)
555 continue;
556
557 list_for_each_entry(dev, &fs_devs->devices, dev_list) {
558
559 if (dev == cur_dev)
560 continue;
561 if (!dev->name)
562 continue;
563
564 /*
565 * Todo: This won't be enough. What if the same device
566 * comes back (with new uuid and) with its mapper path?
567 * But for now, this does help as mostly an admin will
568 * either use mapper or non mapper path throughout.
569 */
570 rcu_read_lock();
571 del = strcmp(rcu_str_deref(dev->name),
572 rcu_str_deref(cur_dev->name));
573 rcu_read_unlock();
574 if (!del)
575 break;
576 }
577
578 if (!del) {
579 /* delete the stale device */
580 if (fs_devs->num_devices == 1) {
581 btrfs_sysfs_remove_fsid(fs_devs);
582 list_del(&fs_devs->list);
583 free_fs_devices(fs_devs);
584 } else {
585 fs_devs->num_devices--;
586 list_del(&dev->dev_list);
587 rcu_string_free(dev->name);
588 kfree(dev);
589 }
590 break;
591 }
592 }
593}
594
David Sterba60999ca2014-03-26 18:26:36 +0100595/*
596 * Add new device to list of registered devices
597 *
598 * Returns:
599 * 1 - first time device is seen
600 * 0 - device already known
601 * < 0 - error
602 */
Chris Masona1b32a52008-09-05 16:09:51 -0400603static noinline int device_list_add(const char *path,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400604 struct btrfs_super_block *disk_super,
605 u64 devid, struct btrfs_fs_devices **fs_devices_ret)
606{
607 struct btrfs_device *device;
608 struct btrfs_fs_devices *fs_devices;
Josef Bacik606686e2012-06-04 14:03:51 -0400609 struct rcu_string *name;
David Sterba60999ca2014-03-26 18:26:36 +0100610 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400611 u64 found_transid = btrfs_super_generation(disk_super);
612
613 fs_devices = find_fsid(disk_super->fsid);
614 if (!fs_devices) {
Ilya Dryomov2208a372013-08-12 14:33:03 +0300615 fs_devices = alloc_fs_devices(disk_super->fsid);
616 if (IS_ERR(fs_devices))
617 return PTR_ERR(fs_devices);
618
Chris Mason8a4b83c2008-03-24 15:02:07 -0400619 list_add(&fs_devices->list, &fs_uuids);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300620
Chris Mason8a4b83c2008-03-24 15:02:07 -0400621 device = NULL;
622 } else {
Chris Masona4437552008-04-18 10:29:38 -0400623 device = __find_device(&fs_devices->devices, devid,
624 disk_super->dev_item.uuid);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400625 }
Miao Xie443f24f2014-07-24 11:37:15 +0800626
Chris Mason8a4b83c2008-03-24 15:02:07 -0400627 if (!device) {
Yan Zheng2b820322008-11-17 21:11:30 -0500628 if (fs_devices->opened)
629 return -EBUSY;
630
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300631 device = btrfs_alloc_device(NULL, &devid,
632 disk_super->dev_item.uuid);
633 if (IS_ERR(device)) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400634 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300635 return PTR_ERR(device);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400636 }
Josef Bacik606686e2012-06-04 14:03:51 -0400637
638 name = rcu_string_strdup(path, GFP_NOFS);
639 if (!name) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400640 kfree(device);
641 return -ENOMEM;
642 }
Josef Bacik606686e2012-06-04 14:03:51 -0400643 rcu_assign_pointer(device->name, name);
Arne Jansen90519d62011-05-23 14:30:00 +0200644
Chris Masone5e9a522009-06-10 15:17:02 -0400645 mutex_lock(&fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000646 list_add_rcu(&device->dev_list, &fs_devices->devices);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +0100647 fs_devices->num_devices++;
Chris Masone5e9a522009-06-10 15:17:02 -0400648 mutex_unlock(&fs_devices->device_list_mutex);
649
David Sterba60999ca2014-03-26 18:26:36 +0100650 ret = 1;
Yan Zheng2b820322008-11-17 21:11:30 -0500651 device->fs_devices = fs_devices;
Josef Bacik606686e2012-06-04 14:03:51 -0400652 } else if (!device->name || strcmp(device->name->str, path)) {
Anand Jainb96de002014-07-03 18:22:05 +0800653 /*
654 * When FS is already mounted.
655 * 1. If you are here and if the device->name is NULL that
656 * means this device was missing at time of FS mount.
657 * 2. If you are here and if the device->name is different
658 * from 'path' that means either
659 * a. The same device disappeared and reappeared with
660 * different name. or
661 * b. The missing-disk-which-was-replaced, has
662 * reappeared now.
663 *
664 * We must allow 1 and 2a above. But 2b would be a spurious
665 * and unintentional.
666 *
667 * Further in case of 1 and 2a above, the disk at 'path'
668 * would have missed some transaction when it was away and
669 * in case of 2a the stale bdev has to be updated as well.
670 * 2b must not be allowed at all time.
671 */
672
673 /*
Chris Mason0f23ae72014-09-18 07:49:05 -0700674 * For now, we do allow update to btrfs_fs_device through the
675 * btrfs dev scan cli after FS has been mounted. We're still
676 * tracking a problem where systems fail mount by subvolume id
677 * when we reject replacement on a mounted FS.
Anand Jainb96de002014-07-03 18:22:05 +0800678 */
Chris Mason0f23ae72014-09-18 07:49:05 -0700679 if (!fs_devices->opened && found_transid < device->generation) {
Anand Jain77bdae42014-07-03 18:22:06 +0800680 /*
681 * That is if the FS is _not_ mounted and if you
682 * are here, that means there is more than one
683 * disk with same uuid and devid.We keep the one
684 * with larger generation number or the last-in if
685 * generation are equal.
686 */
Chris Mason0f23ae72014-09-18 07:49:05 -0700687 return -EEXIST;
Anand Jain77bdae42014-07-03 18:22:06 +0800688 }
Anand Jainb96de002014-07-03 18:22:05 +0800689
Josef Bacik606686e2012-06-04 14:03:51 -0400690 name = rcu_string_strdup(path, GFP_NOFS);
TARUISI Hiroaki3a0524d2010-02-09 06:36:45 +0000691 if (!name)
692 return -ENOMEM;
Josef Bacik606686e2012-06-04 14:03:51 -0400693 rcu_string_free(device->name);
694 rcu_assign_pointer(device->name, name);
Chris Masoncd02dca2010-12-13 14:56:23 -0500695 if (device->missing) {
696 fs_devices->missing_devices--;
697 device->missing = 0;
698 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400699 }
700
Anand Jain77bdae42014-07-03 18:22:06 +0800701 /*
702 * Unmount does not free the btrfs_device struct but would zero
703 * generation along with most of the other members. So just update
704 * it back. We need it to pick the disk with largest generation
705 * (as above).
706 */
707 if (!fs_devices->opened)
708 device->generation = found_transid;
709
Anand Jain4fde46f2015-06-17 21:10:48 +0800710 /*
711 * if there is new btrfs on an already registered device,
712 * then remove the stale device entry.
713 */
Anand Jain02feae32016-02-13 10:01:40 +0800714 if (ret > 0)
715 btrfs_free_stale_device(device);
Anand Jain4fde46f2015-06-17 21:10:48 +0800716
Chris Mason8a4b83c2008-03-24 15:02:07 -0400717 *fs_devices_ret = fs_devices;
David Sterba60999ca2014-03-26 18:26:36 +0100718
719 return ret;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400720}
721
Yan Zhenge4404d62008-12-12 10:03:26 -0500722static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig)
723{
724 struct btrfs_fs_devices *fs_devices;
725 struct btrfs_device *device;
726 struct btrfs_device *orig_dev;
727
Ilya Dryomov2208a372013-08-12 14:33:03 +0300728 fs_devices = alloc_fs_devices(orig->fsid);
729 if (IS_ERR(fs_devices))
730 return fs_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -0500731
Miao Xieadbbb862014-09-03 21:35:42 +0800732 mutex_lock(&orig->device_list_mutex);
Josef Bacik02db0842012-06-21 16:03:58 -0400733 fs_devices->total_devices = orig->total_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -0500734
Xiao Guangrong46224702011-04-20 10:08:47 +0000735 /* We have held the volume lock, it is safe to get the devices. */
Yan Zhenge4404d62008-12-12 10:03:26 -0500736 list_for_each_entry(orig_dev, &orig->devices, dev_list) {
Josef Bacik606686e2012-06-04 14:03:51 -0400737 struct rcu_string *name;
738
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300739 device = btrfs_alloc_device(NULL, &orig_dev->devid,
740 orig_dev->uuid);
741 if (IS_ERR(device))
Yan Zhenge4404d62008-12-12 10:03:26 -0500742 goto error;
743
Josef Bacik606686e2012-06-04 14:03:51 -0400744 /*
745 * This is ok to do without rcu read locked because we hold the
746 * uuid mutex so nothing we touch in here is going to disappear.
747 */
Anand Jaine755f782014-06-30 17:12:47 +0800748 if (orig_dev->name) {
David Sterba78f2c9e2016-02-11 14:25:38 +0100749 name = rcu_string_strdup(orig_dev->name->str,
750 GFP_KERNEL);
Anand Jaine755f782014-06-30 17:12:47 +0800751 if (!name) {
752 kfree(device);
753 goto error;
754 }
755 rcu_assign_pointer(device->name, name);
Julia Lawallfd2696f2009-09-29 13:51:04 -0400756 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500757
Yan Zhenge4404d62008-12-12 10:03:26 -0500758 list_add(&device->dev_list, &fs_devices->devices);
759 device->fs_devices = fs_devices;
760 fs_devices->num_devices++;
761 }
Miao Xieadbbb862014-09-03 21:35:42 +0800762 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500763 return fs_devices;
764error:
Miao Xieadbbb862014-09-03 21:35:42 +0800765 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500766 free_fs_devices(fs_devices);
767 return ERR_PTR(-ENOMEM);
768}
769
Eric Sandeen9eaed212014-08-01 18:12:35 -0500770void btrfs_close_extra_devices(struct btrfs_fs_devices *fs_devices, int step)
Chris Masondfe25022008-05-13 13:46:40 -0400771{
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500772 struct btrfs_device *device, *next;
Miao Xie443f24f2014-07-24 11:37:15 +0800773 struct btrfs_device *latest_dev = NULL;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500774
Chris Masondfe25022008-05-13 13:46:40 -0400775 mutex_lock(&uuid_mutex);
776again:
Xiao Guangrong46224702011-04-20 10:08:47 +0000777 /* This is the initialized path, it is safe to release the devices. */
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500778 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Chris Masona6b0d5c2012-02-20 20:53:43 -0500779 if (device->in_fs_metadata) {
Stefan Behrens63a212a2012-11-05 18:29:28 +0100780 if (!device->is_tgtdev_for_dev_replace &&
Miao Xie443f24f2014-07-24 11:37:15 +0800781 (!latest_dev ||
782 device->generation > latest_dev->generation)) {
783 latest_dev = device;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500784 }
Yan Zheng2b820322008-11-17 21:11:30 -0500785 continue;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500786 }
Yan Zheng2b820322008-11-17 21:11:30 -0500787
Stefan Behrens8dabb742012-11-06 13:15:27 +0100788 if (device->devid == BTRFS_DEV_REPLACE_DEVID) {
789 /*
790 * In the first step, keep the device which has
791 * the correct fsid and the devid that is used
792 * for the dev_replace procedure.
793 * In the second step, the dev_replace state is
794 * read from the device tree and it is known
795 * whether the procedure is really active or
796 * not, which means whether this device is
797 * used or whether it should be removed.
798 */
799 if (step == 0 || device->is_tgtdev_for_dev_replace) {
800 continue;
801 }
802 }
Yan Zheng2b820322008-11-17 21:11:30 -0500803 if (device->bdev) {
Tejun Heod4d77622010-11-13 11:55:18 +0100804 blkdev_put(device->bdev, device->mode);
Yan Zheng2b820322008-11-17 21:11:30 -0500805 device->bdev = NULL;
806 fs_devices->open_devices--;
807 }
808 if (device->writeable) {
809 list_del_init(&device->dev_alloc_list);
810 device->writeable = 0;
Stefan Behrens8dabb742012-11-06 13:15:27 +0100811 if (!device->is_tgtdev_for_dev_replace)
812 fs_devices->rw_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -0500813 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500814 list_del_init(&device->dev_list);
815 fs_devices->num_devices--;
Josef Bacik606686e2012-06-04 14:03:51 -0400816 rcu_string_free(device->name);
Yan Zhenge4404d62008-12-12 10:03:26 -0500817 kfree(device);
Chris Masondfe25022008-05-13 13:46:40 -0400818 }
Yan Zheng2b820322008-11-17 21:11:30 -0500819
820 if (fs_devices->seed) {
821 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -0500822 goto again;
823 }
824
Miao Xie443f24f2014-07-24 11:37:15 +0800825 fs_devices->latest_bdev = latest_dev->bdev;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500826
Chris Masondfe25022008-05-13 13:46:40 -0400827 mutex_unlock(&uuid_mutex);
Chris Masondfe25022008-05-13 13:46:40 -0400828}
Chris Masona0af4692008-05-13 16:03:06 -0400829
Xiao Guangrong1f781602011-04-20 10:09:16 +0000830static void __free_device(struct work_struct *work)
831{
832 struct btrfs_device *device;
833
834 device = container_of(work, struct btrfs_device, rcu_work);
Josef Bacik606686e2012-06-04 14:03:51 -0400835 rcu_string_free(device->name);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000836 kfree(device);
837}
838
839static void free_device(struct rcu_head *head)
840{
841 struct btrfs_device *device;
842
843 device = container_of(head, struct btrfs_device, rcu);
844
845 INIT_WORK(&device->rcu_work, __free_device);
846 schedule_work(&device->rcu_work);
847}
848
Anand Jain14238812016-07-22 06:04:53 +0800849static void btrfs_close_bdev(struct btrfs_device *device)
850{
851 if (device->bdev && device->writeable) {
852 sync_blockdev(device->bdev);
853 invalidate_bdev(device->bdev);
854 }
855
856 if (device->bdev)
857 blkdev_put(device->bdev, device->mode);
858}
859
Anand Jain0ccd0522016-09-22 12:56:13 +0800860static void btrfs_prepare_close_one_device(struct btrfs_device *device)
Anand Jainf4483412016-06-14 18:55:25 +0800861{
862 struct btrfs_fs_devices *fs_devices = device->fs_devices;
863 struct btrfs_device *new_device;
864 struct rcu_string *name;
865
866 if (device->bdev)
867 fs_devices->open_devices--;
868
869 if (device->writeable &&
870 device->devid != BTRFS_DEV_REPLACE_DEVID) {
871 list_del_init(&device->dev_alloc_list);
872 fs_devices->rw_devices--;
873 }
874
875 if (device->missing)
876 fs_devices->missing_devices--;
877
878 new_device = btrfs_alloc_device(NULL, &device->devid,
879 device->uuid);
880 BUG_ON(IS_ERR(new_device)); /* -ENOMEM */
881
882 /* Safe because we are under uuid_mutex */
883 if (device->name) {
884 name = rcu_string_strdup(device->name->str, GFP_NOFS);
885 BUG_ON(!name); /* -ENOMEM */
886 rcu_assign_pointer(new_device->name, name);
887 }
888
889 list_replace_rcu(&device->dev_list, &new_device->dev_list);
890 new_device->fs_devices = device->fs_devices;
Anand Jainf4483412016-06-14 18:55:25 +0800891}
892
Yan Zheng2b820322008-11-17 21:11:30 -0500893static int __btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400894{
Sasha Levin2037a092015-05-12 19:31:37 -0400895 struct btrfs_device *device, *tmp;
Anand Jain0ccd0522016-09-22 12:56:13 +0800896 struct list_head pending_put;
897
898 INIT_LIST_HEAD(&pending_put);
Yan Zhenge4404d62008-12-12 10:03:26 -0500899
Yan Zheng2b820322008-11-17 21:11:30 -0500900 if (--fs_devices->opened > 0)
901 return 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400902
Xiao Guangrongc9513ed2011-04-20 10:07:30 +0000903 mutex_lock(&fs_devices->device_list_mutex);
Sasha Levin2037a092015-05-12 19:31:37 -0400904 list_for_each_entry_safe(device, tmp, &fs_devices->devices, dev_list) {
Anand Jain0ccd0522016-09-22 12:56:13 +0800905 btrfs_prepare_close_one_device(device);
906 list_add(&device->dev_list, &pending_put);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400907 }
Xiao Guangrongc9513ed2011-04-20 10:07:30 +0000908 mutex_unlock(&fs_devices->device_list_mutex);
909
Anand Jain0ccd0522016-09-22 12:56:13 +0800910 /*
911 * btrfs_show_devname() is using the device_list_mutex,
912 * sometimes call to blkdev_put() leads vfs calling
913 * into this func. So do put outside of device_list_mutex,
914 * as of now.
915 */
916 while (!list_empty(&pending_put)) {
917 device = list_first_entry(&pending_put,
918 struct btrfs_device, dev_list);
919 list_del(&device->dev_list);
920 btrfs_close_bdev(device);
921 call_rcu(&device->rcu, free_device);
922 }
923
Yan Zhenge4404d62008-12-12 10:03:26 -0500924 WARN_ON(fs_devices->open_devices);
925 WARN_ON(fs_devices->rw_devices);
Yan Zheng2b820322008-11-17 21:11:30 -0500926 fs_devices->opened = 0;
927 fs_devices->seeding = 0;
Yan Zheng2b820322008-11-17 21:11:30 -0500928
Chris Mason8a4b83c2008-03-24 15:02:07 -0400929 return 0;
930}
931
Yan Zheng2b820322008-11-17 21:11:30 -0500932int btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
933{
Yan Zhenge4404d62008-12-12 10:03:26 -0500934 struct btrfs_fs_devices *seed_devices = NULL;
Yan Zheng2b820322008-11-17 21:11:30 -0500935 int ret;
936
937 mutex_lock(&uuid_mutex);
938 ret = __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -0500939 if (!fs_devices->opened) {
940 seed_devices = fs_devices->seed;
941 fs_devices->seed = NULL;
942 }
Yan Zheng2b820322008-11-17 21:11:30 -0500943 mutex_unlock(&uuid_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500944
945 while (seed_devices) {
946 fs_devices = seed_devices;
947 seed_devices = fs_devices->seed;
948 __btrfs_close_devices(fs_devices);
949 free_fs_devices(fs_devices);
950 }
Eric Sandeenbc178622013-03-09 15:18:39 +0000951 /*
952 * Wait for rcu kworkers under __btrfs_close_devices
953 * to finish all blkdev_puts so device is really
954 * free when umount is done.
955 */
956 rcu_barrier();
Yan Zheng2b820322008-11-17 21:11:30 -0500957 return ret;
958}
959
Yan Zhenge4404d62008-12-12 10:03:26 -0500960static int __btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
961 fmode_t flags, void *holder)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400962{
Josef Bacikd5e20032011-08-04 14:52:27 +0000963 struct request_queue *q;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400964 struct block_device *bdev;
965 struct list_head *head = &fs_devices->devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400966 struct btrfs_device *device;
Miao Xie443f24f2014-07-24 11:37:15 +0800967 struct btrfs_device *latest_dev = NULL;
Chris Masona0af4692008-05-13 16:03:06 -0400968 struct buffer_head *bh;
969 struct btrfs_super_block *disk_super;
Chris Masona0af4692008-05-13 16:03:06 -0400970 u64 devid;
Yan Zheng2b820322008-11-17 21:11:30 -0500971 int seeding = 1;
Chris Masona0af4692008-05-13 16:03:06 -0400972 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400973
Tejun Heod4d77622010-11-13 11:55:18 +0100974 flags |= FMODE_EXCL;
975
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500976 list_for_each_entry(device, head, dev_list) {
Chris Masonc1c4d912008-05-08 15:05:58 -0400977 if (device->bdev)
978 continue;
Chris Masondfe25022008-05-13 13:46:40 -0400979 if (!device->name)
980 continue;
981
Eric Sandeenf63e0cc2013-04-04 20:45:08 +0000982 /* Just open everything we can; ignore failures here */
983 if (btrfs_get_bdev_and_sb(device->name->str, flags, holder, 1,
984 &bdev, &bh))
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100985 continue;
Chris Masona0af4692008-05-13 16:03:06 -0400986
987 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +0000988 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masona0af4692008-05-13 16:03:06 -0400989 if (devid != device->devid)
990 goto error_brelse;
991
Yan Zheng2b820322008-11-17 21:11:30 -0500992 if (memcmp(device->uuid, disk_super->dev_item.uuid,
993 BTRFS_UUID_SIZE))
994 goto error_brelse;
995
996 device->generation = btrfs_super_generation(disk_super);
Miao Xie443f24f2014-07-24 11:37:15 +0800997 if (!latest_dev ||
998 device->generation > latest_dev->generation)
999 latest_dev = device;
Chris Masona0af4692008-05-13 16:03:06 -04001000
Yan Zheng2b820322008-11-17 21:11:30 -05001001 if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) {
1002 device->writeable = 0;
1003 } else {
1004 device->writeable = !bdev_read_only(bdev);
1005 seeding = 0;
1006 }
1007
Josef Bacikd5e20032011-08-04 14:52:27 +00001008 q = bdev_get_queue(bdev);
Miao Xie90180da2014-09-03 21:35:30 +08001009 if (blk_queue_discard(q))
Josef Bacikd5e20032011-08-04 14:52:27 +00001010 device->can_discard = 1;
Josef Bacikd5e20032011-08-04 14:52:27 +00001011
Chris Mason8a4b83c2008-03-24 15:02:07 -04001012 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -04001013 device->in_fs_metadata = 0;
Chris Mason15916de2008-11-19 21:17:22 -05001014 device->mode = flags;
1015
Chris Masonc2898112009-06-10 09:51:32 -04001016 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
1017 fs_devices->rotating = 1;
1018
Chris Masona0af4692008-05-13 16:03:06 -04001019 fs_devices->open_devices++;
Ilya Dryomov55e50e42013-09-01 18:56:44 +03001020 if (device->writeable &&
1021 device->devid != BTRFS_DEV_REPLACE_DEVID) {
Yan Zheng2b820322008-11-17 21:11:30 -05001022 fs_devices->rw_devices++;
1023 list_add(&device->dev_alloc_list,
1024 &fs_devices->alloc_list);
1025 }
Xiao Guangrong4f6c9322011-04-20 10:06:40 +00001026 brelse(bh);
Chris Masona0af4692008-05-13 16:03:06 -04001027 continue;
Chris Masona061fc82008-05-07 11:43:44 -04001028
Chris Masona0af4692008-05-13 16:03:06 -04001029error_brelse:
1030 brelse(bh);
Tejun Heod4d77622010-11-13 11:55:18 +01001031 blkdev_put(bdev, flags);
Chris Masona0af4692008-05-13 16:03:06 -04001032 continue;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001033 }
Chris Masona0af4692008-05-13 16:03:06 -04001034 if (fs_devices->open_devices == 0) {
Ilya Dryomov20bcd642011-10-20 00:06:20 +03001035 ret = -EINVAL;
Chris Masona0af4692008-05-13 16:03:06 -04001036 goto out;
1037 }
Yan Zheng2b820322008-11-17 21:11:30 -05001038 fs_devices->seeding = seeding;
1039 fs_devices->opened = 1;
Miao Xie443f24f2014-07-24 11:37:15 +08001040 fs_devices->latest_bdev = latest_dev->bdev;
Yan Zheng2b820322008-11-17 21:11:30 -05001041 fs_devices->total_rw_bytes = 0;
Chris Masona0af4692008-05-13 16:03:06 -04001042out:
Yan Zheng2b820322008-11-17 21:11:30 -05001043 return ret;
1044}
1045
1046int btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
Christoph Hellwig97288f22008-12-02 06:36:09 -05001047 fmode_t flags, void *holder)
Yan Zheng2b820322008-11-17 21:11:30 -05001048{
1049 int ret;
1050
1051 mutex_lock(&uuid_mutex);
1052 if (fs_devices->opened) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001053 fs_devices->opened++;
1054 ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05001055 } else {
Chris Mason15916de2008-11-19 21:17:22 -05001056 ret = __btrfs_open_devices(fs_devices, flags, holder);
Yan Zheng2b820322008-11-17 21:11:30 -05001057 }
Chris Mason8a4b83c2008-03-24 15:02:07 -04001058 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001059 return ret;
1060}
1061
Anand Jain6cf86a002016-02-13 10:01:29 +08001062void btrfs_release_disk_super(struct page *page)
1063{
1064 kunmap(page);
1065 put_page(page);
1066}
1067
1068int btrfs_read_disk_super(struct block_device *bdev, u64 bytenr,
1069 struct page **page, struct btrfs_super_block **disk_super)
1070{
1071 void *p;
1072 pgoff_t index;
1073
1074 /* make sure our super fits in the device */
1075 if (bytenr + PAGE_SIZE >= i_size_read(bdev->bd_inode))
1076 return 1;
1077
1078 /* make sure our super fits in the page */
1079 if (sizeof(**disk_super) > PAGE_SIZE)
1080 return 1;
1081
1082 /* make sure our super doesn't straddle pages on disk */
1083 index = bytenr >> PAGE_SHIFT;
1084 if ((bytenr + sizeof(**disk_super) - 1) >> PAGE_SHIFT != index)
1085 return 1;
1086
1087 /* pull in the page with our super */
1088 *page = read_cache_page_gfp(bdev->bd_inode->i_mapping,
1089 index, GFP_KERNEL);
1090
1091 if (IS_ERR_OR_NULL(*page))
1092 return 1;
1093
1094 p = kmap(*page);
1095
1096 /* align our pointer to the offset of the super block */
1097 *disk_super = p + (bytenr & ~PAGE_MASK);
1098
1099 if (btrfs_super_bytenr(*disk_super) != bytenr ||
1100 btrfs_super_magic(*disk_super) != BTRFS_MAGIC) {
1101 btrfs_release_disk_super(*page);
1102 return 1;
1103 }
1104
1105 if ((*disk_super)->label[0] &&
1106 (*disk_super)->label[BTRFS_LABEL_SIZE - 1])
1107 (*disk_super)->label[BTRFS_LABEL_SIZE - 1] = '\0';
1108
1109 return 0;
1110}
1111
David Sterba6f60cbd2013-02-15 11:31:02 -07001112/*
1113 * Look for a btrfs signature on a device. This may be called out of the mount path
1114 * and we are not allowed to call set_blocksize during the scan. The superblock
1115 * is read via pagecache
1116 */
Christoph Hellwig97288f22008-12-02 06:36:09 -05001117int btrfs_scan_one_device(const char *path, fmode_t flags, void *holder,
Chris Mason8a4b83c2008-03-24 15:02:07 -04001118 struct btrfs_fs_devices **fs_devices_ret)
1119{
1120 struct btrfs_super_block *disk_super;
1121 struct block_device *bdev;
David Sterba6f60cbd2013-02-15 11:31:02 -07001122 struct page *page;
David Sterba6f60cbd2013-02-15 11:31:02 -07001123 int ret = -EINVAL;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001124 u64 devid;
Chris Masonf2984462008-04-10 16:19:33 -04001125 u64 transid;
Josef Bacik02db0842012-06-21 16:03:58 -04001126 u64 total_devices;
David Sterba6f60cbd2013-02-15 11:31:02 -07001127 u64 bytenr;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001128
David Sterba6f60cbd2013-02-15 11:31:02 -07001129 /*
1130 * we would like to check all the supers, but that would make
1131 * a btrfs mount succeed after a mkfs from a different FS.
1132 * So, we need to add a special mount option to scan for
1133 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
1134 */
1135 bytenr = btrfs_sb_offset(0);
Tejun Heod4d77622010-11-13 11:55:18 +01001136 flags |= FMODE_EXCL;
Al Viro10f63272011-11-17 15:05:22 -05001137 mutex_lock(&uuid_mutex);
David Sterba6f60cbd2013-02-15 11:31:02 -07001138
1139 bdev = blkdev_get_by_path(path, flags, holder);
David Sterba6f60cbd2013-02-15 11:31:02 -07001140 if (IS_ERR(bdev)) {
1141 ret = PTR_ERR(bdev);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001142 goto error;
David Sterba6f60cbd2013-02-15 11:31:02 -07001143 }
1144
Anand Jain6cf86a002016-02-13 10:01:29 +08001145 if (btrfs_read_disk_super(bdev, bytenr, &page, &disk_super))
David Sterba6f60cbd2013-02-15 11:31:02 -07001146 goto error_bdev_put;
1147
Xiao Guangronga3438322010-01-06 11:48:18 +00001148 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masonf2984462008-04-10 16:19:33 -04001149 transid = btrfs_super_generation(disk_super);
Josef Bacik02db0842012-06-21 16:03:58 -04001150 total_devices = btrfs_super_num_devices(disk_super);
David Sterba6f60cbd2013-02-15 11:31:02 -07001151
Chris Mason8a4b83c2008-03-24 15:02:07 -04001152 ret = device_list_add(path, disk_super, devid, fs_devices_ret);
David Sterba60999ca2014-03-26 18:26:36 +01001153 if (ret > 0) {
1154 if (disk_super->label[0]) {
Jeff Mahoney62e85572016-09-20 10:05:01 -04001155 pr_info("BTRFS: device label %s ", disk_super->label);
David Sterba60999ca2014-03-26 18:26:36 +01001156 } else {
Jeff Mahoney62e85572016-09-20 10:05:01 -04001157 pr_info("BTRFS: device fsid %pU ", disk_super->fsid);
David Sterba60999ca2014-03-26 18:26:36 +01001158 }
1159
Jeff Mahoney62e85572016-09-20 10:05:01 -04001160 pr_cont("devid %llu transid %llu %s\n", devid, transid, path);
David Sterba60999ca2014-03-26 18:26:36 +01001161 ret = 0;
1162 }
Josef Bacik02db0842012-06-21 16:03:58 -04001163 if (!ret && fs_devices_ret)
1164 (*fs_devices_ret)->total_devices = total_devices;
David Sterba6f60cbd2013-02-15 11:31:02 -07001165
Anand Jain6cf86a002016-02-13 10:01:29 +08001166 btrfs_release_disk_super(page);
David Sterba6f60cbd2013-02-15 11:31:02 -07001167
1168error_bdev_put:
Tejun Heod4d77622010-11-13 11:55:18 +01001169 blkdev_put(bdev, flags);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001170error:
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001171 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001172 return ret;
1173}
Chris Mason0b86a832008-03-24 15:01:56 -04001174
Miao Xie6d07bce2011-01-05 10:07:31 +00001175/* helper to account the used device space in the range */
1176int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start,
1177 u64 end, u64 *length)
Chris Mason0b86a832008-03-24 15:01:56 -04001178{
1179 struct btrfs_key key;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04001180 struct btrfs_root *root = device->fs_info->dev_root;
Miao Xie6d07bce2011-01-05 10:07:31 +00001181 struct btrfs_dev_extent *dev_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05001182 struct btrfs_path *path;
Miao Xie6d07bce2011-01-05 10:07:31 +00001183 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001184 int ret;
Miao Xie6d07bce2011-01-05 10:07:31 +00001185 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001186 struct extent_buffer *l;
1187
Miao Xie6d07bce2011-01-05 10:07:31 +00001188 *length = 0;
1189
Stefan Behrens63a212a2012-11-05 18:29:28 +01001190 if (start >= device->total_bytes || device->is_tgtdev_for_dev_replace)
Miao Xie6d07bce2011-01-05 10:07:31 +00001191 return 0;
1192
Yan Zheng2b820322008-11-17 21:11:30 -05001193 path = btrfs_alloc_path();
1194 if (!path)
1195 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +01001196 path->reada = READA_FORWARD;
Chris Mason8f18cf12008-04-25 16:53:30 -04001197
Chris Mason0b86a832008-03-24 15:01:56 -04001198 key.objectid = device->devid;
Miao Xie6d07bce2011-01-05 10:07:31 +00001199 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001200 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie6d07bce2011-01-05 10:07:31 +00001201
1202 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001203 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001204 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -04001205 if (ret > 0) {
1206 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1207 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001208 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -04001209 }
Miao Xie6d07bce2011-01-05 10:07:31 +00001210
Chris Mason0b86a832008-03-24 15:01:56 -04001211 while (1) {
1212 l = path->nodes[0];
1213 slot = path->slots[0];
1214 if (slot >= btrfs_header_nritems(l)) {
1215 ret = btrfs_next_leaf(root, path);
1216 if (ret == 0)
1217 continue;
1218 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001219 goto out;
1220
1221 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001222 }
1223 btrfs_item_key_to_cpu(l, &key, slot);
1224
1225 if (key.objectid < device->devid)
1226 goto next;
1227
1228 if (key.objectid > device->devid)
Miao Xie6d07bce2011-01-05 10:07:31 +00001229 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001230
David Sterba962a2982014-06-04 18:41:45 +02001231 if (key.type != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -04001232 goto next;
Chris Mason0b86a832008-03-24 15:01:56 -04001233
Chris Mason0b86a832008-03-24 15:01:56 -04001234 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie6d07bce2011-01-05 10:07:31 +00001235 extent_end = key.offset + btrfs_dev_extent_length(l,
1236 dev_extent);
1237 if (key.offset <= start && extent_end > end) {
1238 *length = end - start + 1;
1239 break;
1240 } else if (key.offset <= start && extent_end > start)
1241 *length += extent_end - start;
1242 else if (key.offset > start && extent_end <= end)
1243 *length += extent_end - key.offset;
1244 else if (key.offset > start && key.offset <= end) {
1245 *length += end - key.offset + 1;
1246 break;
1247 } else if (key.offset > end)
1248 break;
1249
1250next:
1251 path->slots[0]++;
1252 }
1253 ret = 0;
1254out:
1255 btrfs_free_path(path);
1256 return ret;
1257}
1258
Jeff Mahoney499f3772015-06-15 09:41:17 -04001259static int contains_pending_extent(struct btrfs_transaction *transaction,
Josef Bacik6df9a952013-06-27 13:22:46 -04001260 struct btrfs_device *device,
1261 u64 *start, u64 len)
1262{
Jeff Mahoneyfb456252016-06-22 18:54:56 -04001263 struct btrfs_fs_info *fs_info = device->fs_info;
Josef Bacik6df9a952013-06-27 13:22:46 -04001264 struct extent_map *em;
Jeff Mahoney499f3772015-06-15 09:41:17 -04001265 struct list_head *search_list = &fs_info->pinned_chunks;
Josef Bacik6df9a952013-06-27 13:22:46 -04001266 int ret = 0;
Forrest Liu1b984502015-02-09 17:30:47 +08001267 u64 physical_start = *start;
Josef Bacik6df9a952013-06-27 13:22:46 -04001268
Jeff Mahoney499f3772015-06-15 09:41:17 -04001269 if (transaction)
1270 search_list = &transaction->pending_chunks;
Filipe Manana04216822014-11-27 21:14:15 +00001271again:
1272 list_for_each_entry(em, search_list, list) {
Josef Bacik6df9a952013-06-27 13:22:46 -04001273 struct map_lookup *map;
1274 int i;
1275
Jeff Mahoney95617d62015-06-03 10:55:48 -04001276 map = em->map_lookup;
Josef Bacik6df9a952013-06-27 13:22:46 -04001277 for (i = 0; i < map->num_stripes; i++) {
Filipe Mananac152b632015-05-14 10:46:03 +01001278 u64 end;
1279
Josef Bacik6df9a952013-06-27 13:22:46 -04001280 if (map->stripes[i].dev != device)
1281 continue;
Forrest Liu1b984502015-02-09 17:30:47 +08001282 if (map->stripes[i].physical >= physical_start + len ||
Josef Bacik6df9a952013-06-27 13:22:46 -04001283 map->stripes[i].physical + em->orig_block_len <=
Forrest Liu1b984502015-02-09 17:30:47 +08001284 physical_start)
Josef Bacik6df9a952013-06-27 13:22:46 -04001285 continue;
Filipe Mananac152b632015-05-14 10:46:03 +01001286 /*
1287 * Make sure that while processing the pinned list we do
1288 * not override our *start with a lower value, because
1289 * we can have pinned chunks that fall within this
1290 * device hole and that have lower physical addresses
1291 * than the pending chunks we processed before. If we
1292 * do not take this special care we can end up getting
1293 * 2 pending chunks that start at the same physical
1294 * device offsets because the end offset of a pinned
1295 * chunk can be equal to the start offset of some
1296 * pending chunk.
1297 */
1298 end = map->stripes[i].physical + em->orig_block_len;
1299 if (end > *start) {
1300 *start = end;
1301 ret = 1;
1302 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001303 }
1304 }
Jeff Mahoney499f3772015-06-15 09:41:17 -04001305 if (search_list != &fs_info->pinned_chunks) {
1306 search_list = &fs_info->pinned_chunks;
Filipe Manana04216822014-11-27 21:14:15 +00001307 goto again;
1308 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001309
1310 return ret;
1311}
1312
1313
Chris Mason0b86a832008-03-24 15:01:56 -04001314/*
Jeff Mahoney499f3772015-06-15 09:41:17 -04001315 * find_free_dev_extent_start - find free space in the specified device
1316 * @device: the device which we search the free space in
1317 * @num_bytes: the size of the free space that we need
1318 * @search_start: the position from which to begin the search
1319 * @start: store the start of the free space.
1320 * @len: the size of the free space. that we find, or the size
1321 * of the max free space if we don't find suitable free space
Miao Xie7bfc8372011-01-05 10:07:26 +00001322 *
Chris Mason0b86a832008-03-24 15:01:56 -04001323 * this uses a pretty simple search, the expectation is that it is
1324 * called very infrequently and that a given device has a small number
1325 * of extents
Miao Xie7bfc8372011-01-05 10:07:26 +00001326 *
1327 * @start is used to store the start of the free space if we find. But if we
1328 * don't find suitable free space, it will be used to store the start position
1329 * of the max free space.
1330 *
1331 * @len is used to store the size of the free space that we find.
1332 * But if we don't find suitable free space, it is used to store the size of
1333 * the max free space.
Chris Mason0b86a832008-03-24 15:01:56 -04001334 */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001335int find_free_dev_extent_start(struct btrfs_transaction *transaction,
1336 struct btrfs_device *device, u64 num_bytes,
1337 u64 search_start, u64 *start, u64 *len)
Chris Mason0b86a832008-03-24 15:01:56 -04001338{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001339 struct btrfs_fs_info *fs_info = device->fs_info;
1340 struct btrfs_root *root = fs_info->dev_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001341 struct btrfs_key key;
Miao Xie7bfc8372011-01-05 10:07:26 +00001342 struct btrfs_dev_extent *dev_extent;
Chris Mason0b86a832008-03-24 15:01:56 -04001343 struct btrfs_path *path;
Miao Xie7bfc8372011-01-05 10:07:26 +00001344 u64 hole_size;
1345 u64 max_hole_start;
1346 u64 max_hole_size;
1347 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001348 u64 search_end = device->total_bytes;
1349 int ret;
Miao Xie7bfc8372011-01-05 10:07:26 +00001350 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001351 struct extent_buffer *l;
Filipe Manana8cdc7c52016-01-06 22:42:35 +00001352 u64 min_search_start;
1353
1354 /*
1355 * We don't want to overwrite the superblock on the drive nor any area
1356 * used by the boot loader (grub for example), so we make sure to start
1357 * at an offset of at least 1MB.
1358 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001359 min_search_start = max(fs_info->alloc_start, 1024ull * 1024);
Filipe Manana8cdc7c52016-01-06 22:42:35 +00001360 search_start = max(search_start, min_search_start);
Chris Mason0b86a832008-03-24 15:01:56 -04001361
Josef Bacik6df9a952013-06-27 13:22:46 -04001362 path = btrfs_alloc_path();
1363 if (!path)
1364 return -ENOMEM;
Zhao Leif2ab7612015-02-16 18:52:17 +08001365
Miao Xie7bfc8372011-01-05 10:07:26 +00001366 max_hole_start = search_start;
1367 max_hole_size = 0;
1368
Zhao Leif2ab7612015-02-16 18:52:17 +08001369again:
Stefan Behrens63a212a2012-11-05 18:29:28 +01001370 if (search_start >= search_end || device->is_tgtdev_for_dev_replace) {
Miao Xie7bfc8372011-01-05 10:07:26 +00001371 ret = -ENOSPC;
Josef Bacik6df9a952013-06-27 13:22:46 -04001372 goto out;
Miao Xie7bfc8372011-01-05 10:07:26 +00001373 }
1374
David Sterbae4058b52015-11-27 16:31:35 +01001375 path->reada = READA_FORWARD;
Josef Bacik6df9a952013-06-27 13:22:46 -04001376 path->search_commit_root = 1;
1377 path->skip_locking = 1;
Miao Xie7bfc8372011-01-05 10:07:26 +00001378
Chris Mason0b86a832008-03-24 15:01:56 -04001379 key.objectid = device->devid;
1380 key.offset = search_start;
1381 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie7bfc8372011-01-05 10:07:26 +00001382
Li Zefan125ccb02011-12-08 15:07:24 +08001383 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001384 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001385 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001386 if (ret > 0) {
1387 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1388 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001389 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001390 }
Miao Xie7bfc8372011-01-05 10:07:26 +00001391
Chris Mason0b86a832008-03-24 15:01:56 -04001392 while (1) {
1393 l = path->nodes[0];
1394 slot = path->slots[0];
1395 if (slot >= btrfs_header_nritems(l)) {
1396 ret = btrfs_next_leaf(root, path);
1397 if (ret == 0)
1398 continue;
1399 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001400 goto out;
1401
1402 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001403 }
1404 btrfs_item_key_to_cpu(l, &key, slot);
1405
1406 if (key.objectid < device->devid)
1407 goto next;
1408
1409 if (key.objectid > device->devid)
Miao Xie7bfc8372011-01-05 10:07:26 +00001410 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001411
David Sterba962a2982014-06-04 18:41:45 +02001412 if (key.type != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -04001413 goto next;
1414
Miao Xie7bfc8372011-01-05 10:07:26 +00001415 if (key.offset > search_start) {
1416 hole_size = key.offset - search_start;
1417
Josef Bacik6df9a952013-06-27 13:22:46 -04001418 /*
1419 * Have to check before we set max_hole_start, otherwise
1420 * we could end up sending back this offset anyway.
1421 */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001422 if (contains_pending_extent(transaction, device,
Josef Bacik6df9a952013-06-27 13:22:46 -04001423 &search_start,
Forrest Liu1b984502015-02-09 17:30:47 +08001424 hole_size)) {
1425 if (key.offset >= search_start) {
1426 hole_size = key.offset - search_start;
1427 } else {
1428 WARN_ON_ONCE(1);
1429 hole_size = 0;
1430 }
1431 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001432
Miao Xie7bfc8372011-01-05 10:07:26 +00001433 if (hole_size > max_hole_size) {
1434 max_hole_start = search_start;
1435 max_hole_size = hole_size;
1436 }
1437
1438 /*
1439 * If this free space is greater than which we need,
1440 * it must be the max free space that we have found
1441 * until now, so max_hole_start must point to the start
1442 * of this free space and the length of this free space
1443 * is stored in max_hole_size. Thus, we return
1444 * max_hole_start and max_hole_size and go back to the
1445 * caller.
1446 */
1447 if (hole_size >= num_bytes) {
1448 ret = 0;
1449 goto out;
1450 }
1451 }
1452
Chris Mason0b86a832008-03-24 15:01:56 -04001453 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie7bfc8372011-01-05 10:07:26 +00001454 extent_end = key.offset + btrfs_dev_extent_length(l,
1455 dev_extent);
1456 if (extent_end > search_start)
1457 search_start = extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001458next:
1459 path->slots[0]++;
1460 cond_resched();
1461 }
Chris Mason0b86a832008-03-24 15:01:56 -04001462
liubo38c01b92011-08-02 02:39:03 +00001463 /*
1464 * At this point, search_start should be the end of
1465 * allocated dev extents, and when shrinking the device,
1466 * search_end may be smaller than search_start.
1467 */
Zhao Leif2ab7612015-02-16 18:52:17 +08001468 if (search_end > search_start) {
liubo38c01b92011-08-02 02:39:03 +00001469 hole_size = search_end - search_start;
1470
Jeff Mahoney499f3772015-06-15 09:41:17 -04001471 if (contains_pending_extent(transaction, device, &search_start,
Zhao Leif2ab7612015-02-16 18:52:17 +08001472 hole_size)) {
1473 btrfs_release_path(path);
1474 goto again;
1475 }
Chris Mason0b86a832008-03-24 15:01:56 -04001476
Zhao Leif2ab7612015-02-16 18:52:17 +08001477 if (hole_size > max_hole_size) {
1478 max_hole_start = search_start;
1479 max_hole_size = hole_size;
1480 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001481 }
1482
Miao Xie7bfc8372011-01-05 10:07:26 +00001483 /* See above. */
Zhao Leif2ab7612015-02-16 18:52:17 +08001484 if (max_hole_size < num_bytes)
Miao Xie7bfc8372011-01-05 10:07:26 +00001485 ret = -ENOSPC;
1486 else
1487 ret = 0;
1488
1489out:
Yan Zheng2b820322008-11-17 21:11:30 -05001490 btrfs_free_path(path);
Miao Xie7bfc8372011-01-05 10:07:26 +00001491 *start = max_hole_start;
Miao Xieb2117a32011-01-05 10:07:28 +00001492 if (len)
Miao Xie7bfc8372011-01-05 10:07:26 +00001493 *len = max_hole_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001494 return ret;
1495}
1496
Jeff Mahoney499f3772015-06-15 09:41:17 -04001497int find_free_dev_extent(struct btrfs_trans_handle *trans,
1498 struct btrfs_device *device, u64 num_bytes,
1499 u64 *start, u64 *len)
1500{
Jeff Mahoney499f3772015-06-15 09:41:17 -04001501 /* FIXME use last free of some kind */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001502 return find_free_dev_extent_start(trans->transaction, device,
Filipe Manana8cdc7c52016-01-06 22:42:35 +00001503 num_bytes, 0, start, len);
Jeff Mahoney499f3772015-06-15 09:41:17 -04001504}
1505
Christoph Hellwigb2950862008-12-02 09:54:17 -05001506static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04001507 struct btrfs_device *device,
Miao Xie2196d6e2014-09-03 21:35:41 +08001508 u64 start, u64 *dev_extent_len)
Chris Mason8f18cf12008-04-25 16:53:30 -04001509{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001510 struct btrfs_fs_info *fs_info = device->fs_info;
1511 struct btrfs_root *root = fs_info->dev_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04001512 int ret;
1513 struct btrfs_path *path;
Chris Mason8f18cf12008-04-25 16:53:30 -04001514 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001515 struct btrfs_key found_key;
1516 struct extent_buffer *leaf = NULL;
1517 struct btrfs_dev_extent *extent = NULL;
Chris Mason8f18cf12008-04-25 16:53:30 -04001518
1519 path = btrfs_alloc_path();
1520 if (!path)
1521 return -ENOMEM;
1522
1523 key.objectid = device->devid;
1524 key.offset = start;
1525 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie924cd8f2011-11-10 20:45:04 -05001526again:
Chris Mason8f18cf12008-04-25 16:53:30 -04001527 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Chris Masona061fc82008-05-07 11:43:44 -04001528 if (ret > 0) {
1529 ret = btrfs_previous_item(root, path, key.objectid,
1530 BTRFS_DEV_EXTENT_KEY);
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001531 if (ret)
1532 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001533 leaf = path->nodes[0];
1534 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1535 extent = btrfs_item_ptr(leaf, path->slots[0],
1536 struct btrfs_dev_extent);
1537 BUG_ON(found_key.offset > start || found_key.offset +
1538 btrfs_dev_extent_length(leaf, extent) < start);
Miao Xie924cd8f2011-11-10 20:45:04 -05001539 key = found_key;
1540 btrfs_release_path(path);
1541 goto again;
Chris Masona061fc82008-05-07 11:43:44 -04001542 } else if (ret == 0) {
1543 leaf = path->nodes[0];
1544 extent = btrfs_item_ptr(leaf, path->slots[0],
1545 struct btrfs_dev_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001546 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001547 btrfs_handle_fs_error(fs_info, ret, "Slot search failed");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001548 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001549 }
Chris Mason8f18cf12008-04-25 16:53:30 -04001550
Miao Xie2196d6e2014-09-03 21:35:41 +08001551 *dev_extent_len = btrfs_dev_extent_length(leaf, extent);
1552
Chris Mason8f18cf12008-04-25 16:53:30 -04001553 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001554 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001555 btrfs_handle_fs_error(fs_info, ret,
1556 "Failed to remove dev extent item");
Zhao Lei13212b52015-02-12 14:18:17 +08001557 } else {
Josef Bacik3204d332015-09-24 10:46:10 -04001558 set_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001559 }
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001560out:
Chris Mason8f18cf12008-04-25 16:53:30 -04001561 btrfs_free_path(path);
1562 return ret;
1563}
1564
Eric Sandeen48a3b632013-04-25 20:41:01 +00001565static int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans,
1566 struct btrfs_device *device,
1567 u64 chunk_tree, u64 chunk_objectid,
1568 u64 chunk_offset, u64 start, u64 num_bytes)
Chris Mason0b86a832008-03-24 15:01:56 -04001569{
1570 int ret;
1571 struct btrfs_path *path;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001572 struct btrfs_fs_info *fs_info = device->fs_info;
1573 struct btrfs_root *root = fs_info->dev_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001574 struct btrfs_dev_extent *extent;
1575 struct extent_buffer *leaf;
1576 struct btrfs_key key;
1577
Chris Masondfe25022008-05-13 13:46:40 -04001578 WARN_ON(!device->in_fs_metadata);
Stefan Behrens63a212a2012-11-05 18:29:28 +01001579 WARN_ON(device->is_tgtdev_for_dev_replace);
Chris Mason0b86a832008-03-24 15:01:56 -04001580 path = btrfs_alloc_path();
1581 if (!path)
1582 return -ENOMEM;
1583
Chris Mason0b86a832008-03-24 15:01:56 -04001584 key.objectid = device->devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001585 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001586 key.type = BTRFS_DEV_EXTENT_KEY;
1587 ret = btrfs_insert_empty_item(trans, root, path, &key,
1588 sizeof(*extent));
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001589 if (ret)
1590 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001591
1592 leaf = path->nodes[0];
1593 extent = btrfs_item_ptr(leaf, path->slots[0],
1594 struct btrfs_dev_extent);
Chris Masone17cade2008-04-15 15:41:47 -04001595 btrfs_set_dev_extent_chunk_tree(leaf, extent, chunk_tree);
1596 btrfs_set_dev_extent_chunk_objectid(leaf, extent, chunk_objectid);
1597 btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset);
1598
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001599 write_extent_buffer_chunk_tree_uuid(leaf, fs_info->chunk_tree_uuid);
Chris Masone17cade2008-04-15 15:41:47 -04001600
Chris Mason0b86a832008-03-24 15:01:56 -04001601 btrfs_set_dev_extent_length(leaf, extent, num_bytes);
1602 btrfs_mark_buffer_dirty(leaf);
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001603out:
Chris Mason0b86a832008-03-24 15:01:56 -04001604 btrfs_free_path(path);
1605 return ret;
1606}
1607
Josef Bacik6df9a952013-06-27 13:22:46 -04001608static u64 find_next_chunk(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04001609{
Josef Bacik6df9a952013-06-27 13:22:46 -04001610 struct extent_map_tree *em_tree;
1611 struct extent_map *em;
1612 struct rb_node *n;
1613 u64 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001614
Josef Bacik6df9a952013-06-27 13:22:46 -04001615 em_tree = &fs_info->mapping_tree.map_tree;
1616 read_lock(&em_tree->lock);
1617 n = rb_last(&em_tree->map);
1618 if (n) {
1619 em = rb_entry(n, struct extent_map, rb_node);
1620 ret = em->start + em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04001621 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001622 read_unlock(&em_tree->lock);
1623
Chris Mason0b86a832008-03-24 15:01:56 -04001624 return ret;
1625}
1626
Ilya Dryomov53f10652013-08-12 14:33:01 +03001627static noinline int find_next_devid(struct btrfs_fs_info *fs_info,
1628 u64 *devid_ret)
Chris Mason0b86a832008-03-24 15:01:56 -04001629{
1630 int ret;
1631 struct btrfs_key key;
1632 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05001633 struct btrfs_path *path;
1634
Yan Zheng2b820322008-11-17 21:11:30 -05001635 path = btrfs_alloc_path();
1636 if (!path)
1637 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -04001638
1639 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1640 key.type = BTRFS_DEV_ITEM_KEY;
1641 key.offset = (u64)-1;
1642
Ilya Dryomov53f10652013-08-12 14:33:01 +03001643 ret = btrfs_search_slot(NULL, fs_info->chunk_root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001644 if (ret < 0)
1645 goto error;
1646
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001647 BUG_ON(ret == 0); /* Corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04001648
Ilya Dryomov53f10652013-08-12 14:33:01 +03001649 ret = btrfs_previous_item(fs_info->chunk_root, path,
1650 BTRFS_DEV_ITEMS_OBJECTID,
Chris Mason0b86a832008-03-24 15:01:56 -04001651 BTRFS_DEV_ITEM_KEY);
1652 if (ret) {
Ilya Dryomov53f10652013-08-12 14:33:01 +03001653 *devid_ret = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001654 } else {
1655 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1656 path->slots[0]);
Ilya Dryomov53f10652013-08-12 14:33:01 +03001657 *devid_ret = found_key.offset + 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001658 }
1659 ret = 0;
1660error:
Yan Zheng2b820322008-11-17 21:11:30 -05001661 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04001662 return ret;
1663}
1664
1665/*
1666 * the device information is stored in the chunk root
1667 * the btrfs_device struct should be fully filled in
1668 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001669static int btrfs_add_device(struct btrfs_trans_handle *trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001670 struct btrfs_fs_info *fs_info,
Eric Sandeen48a3b632013-04-25 20:41:01 +00001671 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04001672{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001673 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04001674 int ret;
1675 struct btrfs_path *path;
1676 struct btrfs_dev_item *dev_item;
1677 struct extent_buffer *leaf;
1678 struct btrfs_key key;
1679 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04001680
Chris Mason0b86a832008-03-24 15:01:56 -04001681 path = btrfs_alloc_path();
1682 if (!path)
1683 return -ENOMEM;
1684
Chris Mason0b86a832008-03-24 15:01:56 -04001685 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1686 key.type = BTRFS_DEV_ITEM_KEY;
Yan Zheng2b820322008-11-17 21:11:30 -05001687 key.offset = device->devid;
Chris Mason0b86a832008-03-24 15:01:56 -04001688
1689 ret = btrfs_insert_empty_item(trans, root, path, &key,
Chris Mason0d81ba52008-03-24 15:02:07 -04001690 sizeof(*dev_item));
Chris Mason0b86a832008-03-24 15:01:56 -04001691 if (ret)
1692 goto out;
1693
1694 leaf = path->nodes[0];
1695 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1696
1697 btrfs_set_device_id(leaf, dev_item, device->devid);
Yan Zheng2b820322008-11-17 21:11:30 -05001698 btrfs_set_device_generation(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001699 btrfs_set_device_type(leaf, dev_item, device->type);
1700 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1701 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1702 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08001703 btrfs_set_device_total_bytes(leaf, dev_item,
1704 btrfs_device_get_disk_total_bytes(device));
1705 btrfs_set_device_bytes_used(leaf, dev_item,
1706 btrfs_device_get_bytes_used(device));
Chris Masone17cade2008-04-15 15:41:47 -04001707 btrfs_set_device_group(leaf, dev_item, 0);
1708 btrfs_set_device_seek_speed(leaf, dev_item, 0);
1709 btrfs_set_device_bandwidth(leaf, dev_item, 0);
Chris Masonc3027eb2008-12-08 16:40:21 -05001710 btrfs_set_device_start_offset(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001711
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02001712 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04001713 write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02001714 ptr = btrfs_device_fsid(dev_item);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001715 write_extent_buffer(leaf, fs_info->fsid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001716 btrfs_mark_buffer_dirty(leaf);
Chris Mason0b86a832008-03-24 15:01:56 -04001717
Yan Zheng2b820322008-11-17 21:11:30 -05001718 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001719out:
1720 btrfs_free_path(path);
1721 return ret;
1722}
Chris Mason8f18cf12008-04-25 16:53:30 -04001723
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001724/*
1725 * Function to update ctime/mtime for a given device path.
1726 * Mainly used for ctime/mtime based probe like libblkid.
1727 */
David Sterbada353f62017-02-14 17:55:53 +01001728static void update_dev_time(const char *path_name)
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001729{
1730 struct file *filp;
1731
1732 filp = filp_open(path_name, O_RDWR, 0);
Al Viro98af5922014-12-14 02:59:17 -05001733 if (IS_ERR(filp))
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001734 return;
1735 file_update_time(filp);
1736 filp_close(filp, NULL);
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001737}
1738
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001739static int btrfs_rm_dev_item(struct btrfs_fs_info *fs_info,
Chris Masona061fc82008-05-07 11:43:44 -04001740 struct btrfs_device *device)
1741{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04001742 struct btrfs_root *root = fs_info->chunk_root;
Chris Masona061fc82008-05-07 11:43:44 -04001743 int ret;
1744 struct btrfs_path *path;
Chris Masona061fc82008-05-07 11:43:44 -04001745 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001746 struct btrfs_trans_handle *trans;
1747
Chris Masona061fc82008-05-07 11:43:44 -04001748 path = btrfs_alloc_path();
1749 if (!path)
1750 return -ENOMEM;
1751
Yan, Zhenga22285a2010-05-16 10:48:46 -04001752 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001753 if (IS_ERR(trans)) {
1754 btrfs_free_path(path);
1755 return PTR_ERR(trans);
1756 }
Chris Masona061fc82008-05-07 11:43:44 -04001757 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1758 key.type = BTRFS_DEV_ITEM_KEY;
1759 key.offset = device->devid;
1760
1761 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1762 if (ret < 0)
1763 goto out;
1764
1765 if (ret > 0) {
1766 ret = -ENOENT;
1767 goto out;
1768 }
1769
1770 ret = btrfs_del_item(trans, root, path);
1771 if (ret)
1772 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001773out:
1774 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04001775 btrfs_commit_transaction(trans);
Chris Masona061fc82008-05-07 11:43:44 -04001776 return ret;
1777}
1778
David Sterba3cc31a02016-02-15 16:00:26 +01001779/*
1780 * Verify that @num_devices satisfies the RAID profile constraints in the whole
1781 * filesystem. It's up to the caller to adjust that number regarding eg. device
1782 * replace.
1783 */
1784static int btrfs_check_raid_min_devices(struct btrfs_fs_info *fs_info,
1785 u64 num_devices)
Chris Masona061fc82008-05-07 11:43:44 -04001786{
Chris Masona061fc82008-05-07 11:43:44 -04001787 u64 all_avail;
Miao Xiede98ced2013-01-29 10:13:12 +00001788 unsigned seq;
David Sterba418775a2016-02-15 16:28:14 +01001789 int i;
Chris Masona061fc82008-05-07 11:43:44 -04001790
Miao Xiede98ced2013-01-29 10:13:12 +00001791 do {
Anand Jainbd45ffb2016-02-13 10:01:34 +08001792 seq = read_seqbegin(&fs_info->profiles_lock);
Miao Xiede98ced2013-01-29 10:13:12 +00001793
Anand Jainbd45ffb2016-02-13 10:01:34 +08001794 all_avail = fs_info->avail_data_alloc_bits |
1795 fs_info->avail_system_alloc_bits |
1796 fs_info->avail_metadata_alloc_bits;
1797 } while (read_seqretry(&fs_info->profiles_lock, seq));
Anand Jainf1fa7f22016-02-13 10:01:33 +08001798
David Sterba418775a2016-02-15 16:28:14 +01001799 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
1800 if (!(all_avail & btrfs_raid_group[i]))
1801 continue;
Chris Masona061fc82008-05-07 11:43:44 -04001802
David Sterba418775a2016-02-15 16:28:14 +01001803 if (num_devices < btrfs_raid_array[i].devs_min) {
1804 int ret = btrfs_raid_mindev_error[i];
Chris Masona061fc82008-05-07 11:43:44 -04001805
David Sterba418775a2016-02-15 16:28:14 +01001806 if (ret)
1807 return ret;
1808 }
Anand Jainbd45ffb2016-02-13 10:01:34 +08001809 }
1810
1811 return 0;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001812}
1813
Anand Jain88acff62016-05-03 17:44:43 +08001814struct btrfs_device *btrfs_find_next_active_device(struct btrfs_fs_devices *fs_devs,
1815 struct btrfs_device *device)
1816{
1817 struct btrfs_device *next_device;
1818
1819 list_for_each_entry(next_device, &fs_devs->devices, dev_list) {
1820 if (next_device != device &&
1821 !next_device->missing && next_device->bdev)
1822 return next_device;
1823 }
1824
1825 return NULL;
1826}
1827
1828/*
1829 * Helper function to check if the given device is part of s_bdev / latest_bdev
1830 * and replace it with the provided or the next active device, in the context
1831 * where this function called, there should be always be another device (or
1832 * this_dev) which is active.
1833 */
1834void btrfs_assign_next_active_device(struct btrfs_fs_info *fs_info,
1835 struct btrfs_device *device, struct btrfs_device *this_dev)
1836{
1837 struct btrfs_device *next_device;
1838
1839 if (this_dev)
1840 next_device = this_dev;
1841 else
1842 next_device = btrfs_find_next_active_device(fs_info->fs_devices,
1843 device);
1844 ASSERT(next_device);
1845
1846 if (fs_info->sb->s_bdev &&
1847 (fs_info->sb->s_bdev == device->bdev))
1848 fs_info->sb->s_bdev = next_device->bdev;
1849
1850 if (fs_info->fs_devices->latest_bdev == device->bdev)
1851 fs_info->fs_devices->latest_bdev = next_device->bdev;
1852}
1853
David Sterbada353f62017-02-14 17:55:53 +01001854int btrfs_rm_device(struct btrfs_fs_info *fs_info, const char *device_path,
1855 u64 devid)
Anand Jainf1fa7f22016-02-13 10:01:33 +08001856{
1857 struct btrfs_device *device;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001858 struct btrfs_fs_devices *cur_devices;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001859 u64 num_devices;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001860 int ret = 0;
1861 bool clear_super = false;
1862
1863 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001864
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001865 num_devices = fs_info->fs_devices->num_devices;
1866 btrfs_dev_replace_lock(&fs_info->dev_replace, 0);
1867 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
Chris Masona061fc82008-05-07 11:43:44 -04001868 WARN_ON(num_devices < 1);
1869 num_devices--;
1870 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001871 btrfs_dev_replace_unlock(&fs_info->dev_replace, 0);
Chris Masona061fc82008-05-07 11:43:44 -04001872
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001873 ret = btrfs_check_raid_min_devices(fs_info, num_devices - 1);
Anand Jainf1fa7f22016-02-13 10:01:33 +08001874 if (ret)
Chris Masona061fc82008-05-07 11:43:44 -04001875 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001876
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001877 ret = btrfs_find_device_by_devspec(fs_info, devid, device_path,
1878 &device);
Anand Jain24fc5722016-02-13 10:01:36 +08001879 if (ret)
Chris Masona061fc82008-05-07 11:43:44 -04001880 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05001881
Stefan Behrens63a212a2012-11-05 18:29:28 +01001882 if (device->is_tgtdev_for_dev_replace) {
Anand Jain183860f2013-05-17 10:52:45 +00001883 ret = BTRFS_ERROR_DEV_TGT_REPLACE;
Anand Jain24fc5722016-02-13 10:01:36 +08001884 goto out;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001885 }
1886
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001887 if (device->writeable && fs_info->fs_devices->rw_devices == 1) {
Anand Jain183860f2013-05-17 10:52:45 +00001888 ret = BTRFS_ERROR_DEV_ONLY_WRITABLE;
Anand Jain24fc5722016-02-13 10:01:36 +08001889 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05001890 }
1891
1892 if (device->writeable) {
David Sterba34441362016-10-04 19:34:27 +02001893 mutex_lock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001894 list_del_init(&device->dev_alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08001895 device->fs_devices->rw_devices--;
David Sterba34441362016-10-04 19:34:27 +02001896 mutex_unlock(&fs_info->chunk_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001897 clear_super = true;
Yan Zheng2b820322008-11-17 21:11:30 -05001898 }
Chris Masona061fc82008-05-07 11:43:44 -04001899
Carey Underwoodd7901552013-03-04 16:37:06 -06001900 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001901 ret = btrfs_shrink_device(device, 0);
Carey Underwoodd7901552013-03-04 16:37:06 -06001902 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001903 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001904 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001905
Stefan Behrens63a212a2012-11-05 18:29:28 +01001906 /*
1907 * TODO: the superblock still includes this device in its num_devices
1908 * counter although write_all_supers() is not locked out. This
1909 * could give a filesystem state which requires a degraded mount.
1910 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001911 ret = btrfs_rm_dev_item(fs_info, device);
Chris Masona061fc82008-05-07 11:43:44 -04001912 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001913 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001914
Yan Zheng2b820322008-11-17 21:11:30 -05001915 device->in_fs_metadata = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001916 btrfs_scrub_cancel_dev(fs_info, device);
Chris Masone5e9a522009-06-10 15:17:02 -04001917
1918 /*
1919 * the device list mutex makes sure that we don't change
1920 * the device list while someone else is writing out all
Filipe David Borba Mananad7306802013-08-09 15:41:36 +01001921 * the device supers. Whoever is writing all supers, should
1922 * lock the device list mutex before getting the number of
1923 * devices in the super block (super_copy). Conversely,
1924 * whoever updates the number of devices in the super block
1925 * (super_copy) should hold the device list mutex.
Chris Masone5e9a522009-06-10 15:17:02 -04001926 */
Xiao Guangrong1f781602011-04-20 10:09:16 +00001927
1928 cur_devices = device->fs_devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001929 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001930 list_del_rcu(&device->dev_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001931
Yan Zhenge4404d62008-12-12 10:03:26 -05001932 device->fs_devices->num_devices--;
Josef Bacik02db0842012-06-21 16:03:58 -04001933 device->fs_devices->total_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -05001934
Chris Masoncd02dca2010-12-13 14:56:23 -05001935 if (device->missing)
Miao Xie3a7d55c2014-07-16 18:38:01 +08001936 device->fs_devices->missing_devices--;
Chris Masoncd02dca2010-12-13 14:56:23 -05001937
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001938 btrfs_assign_next_active_device(fs_info, device, NULL);
Yan Zheng2b820322008-11-17 21:11:30 -05001939
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001940 if (device->bdev) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001941 device->fs_devices->open_devices--;
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001942 /* remove sysfs entry */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001943 btrfs_sysfs_rm_device_link(fs_info->fs_devices, device);
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001944 }
Anand Jain99994cd2014-06-03 11:36:00 +08001945
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001946 num_devices = btrfs_super_num_devices(fs_info->super_copy) - 1;
1947 btrfs_set_super_num_devices(fs_info->super_copy, num_devices);
1948 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001949
Jeff Mahoneycea67ab2016-09-20 08:50:21 -04001950 /*
1951 * at this point, the device is zero sized and detached from
1952 * the devices list. All that's left is to zero out the old
1953 * supers and free the device.
1954 */
1955 if (device->writeable)
1956 btrfs_scratch_superblocks(device->bdev, device->name->str);
1957
1958 btrfs_close_bdev(device);
1959 call_rcu(&device->rcu, free_device);
1960
Xiao Guangrong1f781602011-04-20 10:09:16 +00001961 if (cur_devices->open_devices == 0) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001962 struct btrfs_fs_devices *fs_devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001963 fs_devices = fs_info->fs_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05001964 while (fs_devices) {
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02001965 if (fs_devices->seed == cur_devices) {
1966 fs_devices->seed = cur_devices->seed;
Yan Zhenge4404d62008-12-12 10:03:26 -05001967 break;
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02001968 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001969 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05001970 }
Xiao Guangrong1f781602011-04-20 10:09:16 +00001971 cur_devices->seed = NULL;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001972 __btrfs_close_devices(cur_devices);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001973 free_fs_devices(cur_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001974 }
1975
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001976 fs_info->num_tolerated_disk_barrier_failures =
1977 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info);
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02001978
Chris Masona061fc82008-05-07 11:43:44 -04001979out:
1980 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001981 return ret;
Anand Jain24fc5722016-02-13 10:01:36 +08001982
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001983error_undo:
1984 if (device->writeable) {
David Sterba34441362016-10-04 19:34:27 +02001985 mutex_lock(&fs_info->chunk_mutex);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001986 list_add(&device->dev_alloc_list,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001987 &fs_info->fs_devices->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);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001990 }
Anand Jain24fc5722016-02-13 10:01:36 +08001991 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001992}
1993
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08001994void btrfs_rm_dev_replace_remove_srcdev(struct btrfs_fs_info *fs_info,
1995 struct btrfs_device *srcdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01001996{
Anand Jaind51908c2014-08-13 14:24:19 +08001997 struct btrfs_fs_devices *fs_devices;
1998
Stefan Behrense93c89c2012-11-05 17:33:06 +01001999 WARN_ON(!mutex_is_locked(&fs_info->fs_devices->device_list_mutex));
Ilya Dryomov13572722013-10-02 20:41:01 +03002000
Anand Jain25e8e912014-08-20 10:56:56 +08002001 /*
2002 * in case of fs with no seed, srcdev->fs_devices will point
2003 * to fs_devices of fs_info. However when the dev being replaced is
2004 * a seed dev it will point to the seed's local fs_devices. In short
2005 * srcdev will have its correct fs_devices in both the cases.
2006 */
2007 fs_devices = srcdev->fs_devices;
Anand Jaind51908c2014-08-13 14:24:19 +08002008
Stefan Behrense93c89c2012-11-05 17:33:06 +01002009 list_del_rcu(&srcdev->dev_list);
2010 list_del_rcu(&srcdev->dev_alloc_list);
Anand Jaind51908c2014-08-13 14:24:19 +08002011 fs_devices->num_devices--;
Miao Xie82372bc2014-09-03 21:35:44 +08002012 if (srcdev->missing)
Anand Jaind51908c2014-08-13 14:24:19 +08002013 fs_devices->missing_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002014
Anand Jain48b3b9d2016-04-12 21:36:16 +08002015 if (srcdev->writeable)
Miao Xie82372bc2014-09-03 21:35:44 +08002016 fs_devices->rw_devices--;
Ilya Dryomov13572722013-10-02 20:41:01 +03002017
Miao Xie82372bc2014-09-03 21:35:44 +08002018 if (srcdev->bdev)
Anand Jaind51908c2014-08-13 14:24:19 +08002019 fs_devices->open_devices--;
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08002020}
2021
2022void btrfs_rm_dev_replace_free_srcdev(struct btrfs_fs_info *fs_info,
2023 struct btrfs_device *srcdev)
2024{
2025 struct btrfs_fs_devices *fs_devices = srcdev->fs_devices;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002026
Anand Jain48b3b9d2016-04-12 21:36:16 +08002027 if (srcdev->writeable) {
2028 /* zero out the old super if it is writable */
2029 btrfs_scratch_superblocks(srcdev->bdev, srcdev->name->str);
2030 }
Anand Jain14238812016-07-22 06:04:53 +08002031
2032 btrfs_close_bdev(srcdev);
2033
Stefan Behrense93c89c2012-11-05 17:33:06 +01002034 call_rcu(&srcdev->rcu, free_device);
Anand Jain94d5f0c2014-08-13 14:24:22 +08002035
2036 /*
2037 * unless fs_devices is seed fs, num_devices shouldn't go
2038 * zero
2039 */
2040 BUG_ON(!fs_devices->num_devices && !fs_devices->seeding);
2041
2042 /* if this is no devs we rather delete the fs_devices */
2043 if (!fs_devices->num_devices) {
2044 struct btrfs_fs_devices *tmp_fs_devices;
2045
2046 tmp_fs_devices = fs_info->fs_devices;
2047 while (tmp_fs_devices) {
2048 if (tmp_fs_devices->seed == fs_devices) {
2049 tmp_fs_devices->seed = fs_devices->seed;
2050 break;
2051 }
2052 tmp_fs_devices = tmp_fs_devices->seed;
2053 }
2054 fs_devices->seed = NULL;
Anand Jain8bef8402014-08-13 14:24:23 +08002055 __btrfs_close_devices(fs_devices);
2056 free_fs_devices(fs_devices);
Anand Jain94d5f0c2014-08-13 14:24:22 +08002057 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002058}
2059
2060void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
2061 struct btrfs_device *tgtdev)
2062{
Miao Xie67a2c452014-09-03 21:35:43 +08002063 mutex_lock(&uuid_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002064 WARN_ON(!tgtdev);
2065 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Anand Jaind2ff1b22015-03-10 06:38:42 +08002066
Anand Jain32576042015-08-14 18:32:49 +08002067 btrfs_sysfs_rm_device_link(fs_info->fs_devices, tgtdev);
Anand Jaind2ff1b22015-03-10 06:38:42 +08002068
Anand Jain779bf3f2016-04-18 16:51:23 +08002069 if (tgtdev->bdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01002070 fs_info->fs_devices->open_devices--;
Anand Jain779bf3f2016-04-18 16:51:23 +08002071
Stefan Behrense93c89c2012-11-05 17:33:06 +01002072 fs_info->fs_devices->num_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002073
Anand Jain88acff62016-05-03 17:44:43 +08002074 btrfs_assign_next_active_device(fs_info, tgtdev, NULL);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002075
Stefan Behrense93c89c2012-11-05 17:33:06 +01002076 list_del_rcu(&tgtdev->dev_list);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002077
2078 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Miao Xie67a2c452014-09-03 21:35:43 +08002079 mutex_unlock(&uuid_mutex);
Anand Jain779bf3f2016-04-18 16:51:23 +08002080
2081 /*
2082 * The update_dev_time() with in btrfs_scratch_superblocks()
2083 * may lead to a call to btrfs_show_devname() which will try
2084 * to hold device_list_mutex. And here this device
2085 * is already out of device list, so we don't have to hold
2086 * the device_list_mutex lock.
2087 */
2088 btrfs_scratch_superblocks(tgtdev->bdev, tgtdev->name->str);
Anand Jain14238812016-07-22 06:04:53 +08002089
2090 btrfs_close_bdev(tgtdev);
Anand Jain779bf3f2016-04-18 16:51:23 +08002091 call_rcu(&tgtdev->rcu, free_device);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002092}
2093
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002094static int btrfs_find_device_by_path(struct btrfs_fs_info *fs_info,
David Sterbada353f62017-02-14 17:55:53 +01002095 const char *device_path,
Eric Sandeen48a3b632013-04-25 20:41:01 +00002096 struct btrfs_device **device)
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002097{
2098 int ret = 0;
2099 struct btrfs_super_block *disk_super;
2100 u64 devid;
2101 u8 *dev_uuid;
2102 struct block_device *bdev;
2103 struct buffer_head *bh;
2104
2105 *device = NULL;
2106 ret = btrfs_get_bdev_and_sb(device_path, FMODE_READ,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002107 fs_info->bdev_holder, 0, &bdev, &bh);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002108 if (ret)
2109 return ret;
2110 disk_super = (struct btrfs_super_block *)bh->b_data;
2111 devid = btrfs_stack_device_id(&disk_super->dev_item);
2112 dev_uuid = disk_super->dev_item.uuid;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002113 *device = btrfs_find_device(fs_info, devid, dev_uuid, disk_super->fsid);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002114 brelse(bh);
2115 if (!*device)
2116 ret = -ENOENT;
2117 blkdev_put(bdev, FMODE_READ);
2118 return ret;
2119}
2120
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002121int btrfs_find_device_missing_or_by_path(struct btrfs_fs_info *fs_info,
David Sterbada353f62017-02-14 17:55:53 +01002122 const char *device_path,
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002123 struct btrfs_device **device)
2124{
2125 *device = NULL;
2126 if (strcmp(device_path, "missing") == 0) {
2127 struct list_head *devices;
2128 struct btrfs_device *tmp;
2129
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002130 devices = &fs_info->fs_devices->devices;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002131 /*
2132 * It is safe to read the devices since the volume_mutex
2133 * is held by the caller.
2134 */
2135 list_for_each_entry(tmp, devices, dev_list) {
2136 if (tmp->in_fs_metadata && !tmp->bdev) {
2137 *device = tmp;
2138 break;
2139 }
2140 }
2141
Anand Jaind74a6252015-08-14 18:32:56 +08002142 if (!*device)
2143 return BTRFS_ERROR_DEV_MISSING_NOT_FOUND;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002144
2145 return 0;
2146 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002147 return btrfs_find_device_by_path(fs_info, device_path, device);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002148 }
2149}
2150
Yan Zheng2b820322008-11-17 21:11:30 -05002151/*
David Sterba5c5c0df2016-02-15 16:39:55 +01002152 * Lookup a device given by device id, or the path if the id is 0.
2153 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002154int btrfs_find_device_by_devspec(struct btrfs_fs_info *fs_info, u64 devid,
David Sterbada353f62017-02-14 17:55:53 +01002155 const char *devpath,
2156 struct btrfs_device **device)
Anand Jain24e04742016-02-13 10:01:35 +08002157{
2158 int ret;
2159
David Sterba5c5c0df2016-02-15 16:39:55 +01002160 if (devid) {
Anand Jain24e04742016-02-13 10:01:35 +08002161 ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002162 *device = btrfs_find_device(fs_info, devid, NULL, NULL);
Anand Jain24e04742016-02-13 10:01:35 +08002163 if (!*device)
2164 ret = -ENOENT;
2165 } else {
David Sterba5c5c0df2016-02-15 16:39:55 +01002166 if (!devpath || !devpath[0])
Anand Jainb3d1b152016-02-13 10:01:37 +08002167 return -EINVAL;
2168
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002169 ret = btrfs_find_device_missing_or_by_path(fs_info, devpath,
Anand Jain24e04742016-02-13 10:01:35 +08002170 device);
2171 }
2172 return ret;
2173}
2174
Yan Zheng2b820322008-11-17 21:11:30 -05002175/*
2176 * does all the dirty work required for changing file system's UUID.
2177 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002178static int btrfs_prepare_sprout(struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05002179{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002180 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002181 struct btrfs_fs_devices *old_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05002182 struct btrfs_fs_devices *seed_devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002183 struct btrfs_super_block *disk_super = fs_info->super_copy;
Yan Zheng2b820322008-11-17 21:11:30 -05002184 struct btrfs_device *device;
2185 u64 super_flags;
2186
2187 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zhenge4404d62008-12-12 10:03:26 -05002188 if (!fs_devices->seeding)
Yan Zheng2b820322008-11-17 21:11:30 -05002189 return -EINVAL;
2190
Ilya Dryomov2208a372013-08-12 14:33:03 +03002191 seed_devices = __alloc_fs_devices();
2192 if (IS_ERR(seed_devices))
2193 return PTR_ERR(seed_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002194
Yan Zhenge4404d62008-12-12 10:03:26 -05002195 old_devices = clone_fs_devices(fs_devices);
2196 if (IS_ERR(old_devices)) {
2197 kfree(seed_devices);
2198 return PTR_ERR(old_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002199 }
Yan Zhenge4404d62008-12-12 10:03:26 -05002200
Yan Zheng2b820322008-11-17 21:11:30 -05002201 list_add(&old_devices->list, &fs_uuids);
2202
Yan Zhenge4404d62008-12-12 10:03:26 -05002203 memcpy(seed_devices, fs_devices, sizeof(*seed_devices));
2204 seed_devices->opened = 1;
2205 INIT_LIST_HEAD(&seed_devices->devices);
2206 INIT_LIST_HEAD(&seed_devices->alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -04002207 mutex_init(&seed_devices->device_list_mutex);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00002208
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002209 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002210 list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices,
2211 synchronize_rcu);
Miao Xie2196d6e2014-09-03 21:35:41 +08002212 list_for_each_entry(device, &seed_devices->devices, dev_list)
Yan Zhenge4404d62008-12-12 10:03:26 -05002213 device->fs_devices = seed_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002214
David Sterba34441362016-10-04 19:34:27 +02002215 mutex_lock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08002216 list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list);
David Sterba34441362016-10-04 19:34:27 +02002217 mutex_unlock(&fs_info->chunk_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05002218
Yan Zheng2b820322008-11-17 21:11:30 -05002219 fs_devices->seeding = 0;
2220 fs_devices->num_devices = 0;
2221 fs_devices->open_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002222 fs_devices->missing_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002223 fs_devices->rotating = 0;
Yan Zhenge4404d62008-12-12 10:03:26 -05002224 fs_devices->seed = seed_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002225
2226 generate_random_uuid(fs_devices->fsid);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002227 memcpy(fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05002228 memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002229 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01002230
Yan Zheng2b820322008-11-17 21:11:30 -05002231 super_flags = btrfs_super_flags(disk_super) &
2232 ~BTRFS_SUPER_FLAG_SEEDING;
2233 btrfs_set_super_flags(disk_super, super_flags);
2234
2235 return 0;
2236}
2237
2238/*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002239 * Store the expected generation for seed devices in device items.
Yan Zheng2b820322008-11-17 21:11:30 -05002240 */
2241static int btrfs_finish_sprout(struct btrfs_trans_handle *trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002242 struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05002243{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002244 struct btrfs_root *root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05002245 struct btrfs_path *path;
2246 struct extent_buffer *leaf;
2247 struct btrfs_dev_item *dev_item;
2248 struct btrfs_device *device;
2249 struct btrfs_key key;
2250 u8 fs_uuid[BTRFS_UUID_SIZE];
2251 u8 dev_uuid[BTRFS_UUID_SIZE];
2252 u64 devid;
2253 int ret;
2254
2255 path = btrfs_alloc_path();
2256 if (!path)
2257 return -ENOMEM;
2258
Yan Zheng2b820322008-11-17 21:11:30 -05002259 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2260 key.offset = 0;
2261 key.type = BTRFS_DEV_ITEM_KEY;
2262
2263 while (1) {
2264 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2265 if (ret < 0)
2266 goto error;
2267
2268 leaf = path->nodes[0];
2269next_slot:
2270 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
2271 ret = btrfs_next_leaf(root, path);
2272 if (ret > 0)
2273 break;
2274 if (ret < 0)
2275 goto error;
2276 leaf = path->nodes[0];
2277 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02002278 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002279 continue;
2280 }
2281
2282 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2283 if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID ||
2284 key.type != BTRFS_DEV_ITEM_KEY)
2285 break;
2286
2287 dev_item = btrfs_item_ptr(leaf, path->slots[0],
2288 struct btrfs_dev_item);
2289 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02002290 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05002291 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02002292 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05002293 BTRFS_UUID_SIZE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002294 device = btrfs_find_device(fs_info, devid, dev_uuid, fs_uuid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002295 BUG_ON(!device); /* Logic error */
Yan Zheng2b820322008-11-17 21:11:30 -05002296
2297 if (device->fs_devices->seeding) {
2298 btrfs_set_device_generation(leaf, dev_item,
2299 device->generation);
2300 btrfs_mark_buffer_dirty(leaf);
2301 }
2302
2303 path->slots[0]++;
2304 goto next_slot;
2305 }
2306 ret = 0;
2307error:
2308 btrfs_free_path(path);
2309 return ret;
2310}
2311
David Sterbada353f62017-02-14 17:55:53 +01002312int btrfs_init_new_device(struct btrfs_fs_info *fs_info, const char *device_path)
Chris Mason788f20e2008-04-28 15:29:42 -04002313{
Jeff Mahoney5112feb2016-06-21 20:16:08 -04002314 struct btrfs_root *root = fs_info->dev_root;
Josef Bacikd5e20032011-08-04 14:52:27 +00002315 struct request_queue *q;
Chris Mason788f20e2008-04-28 15:29:42 -04002316 struct btrfs_trans_handle *trans;
2317 struct btrfs_device *device;
2318 struct block_device *bdev;
Chris Mason788f20e2008-04-28 15:29:42 -04002319 struct list_head *devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002320 struct super_block *sb = fs_info->sb;
Josef Bacik606686e2012-06-04 14:03:51 -04002321 struct rcu_string *name;
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002322 u64 tmp;
Yan Zheng2b820322008-11-17 21:11:30 -05002323 int seeding_dev = 0;
Chris Mason788f20e2008-04-28 15:29:42 -04002324 int ret = 0;
2325
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002326 if ((sb->s_flags & MS_RDONLY) && !fs_info->fs_devices->seeding)
Liu Bof8c5d0b2012-05-10 18:10:38 +08002327 return -EROFS;
Chris Mason788f20e2008-04-28 15:29:42 -04002328
Li Zefana5d16332011-12-07 20:08:40 -05002329 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002330 fs_info->bdev_holder);
Josef Bacik7f592032010-01-27 02:09:00 +00002331 if (IS_ERR(bdev))
2332 return PTR_ERR(bdev);
Chris Masona2135012008-06-25 16:01:30 -04002333
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002334 if (fs_info->fs_devices->seeding) {
Yan Zheng2b820322008-11-17 21:11:30 -05002335 seeding_dev = 1;
2336 down_write(&sb->s_umount);
2337 mutex_lock(&uuid_mutex);
2338 }
2339
Chris Mason8c8bee12008-09-29 11:19:10 -04002340 filemap_write_and_wait(bdev->bd_inode->i_mapping);
Chris Masona2135012008-06-25 16:01:30 -04002341
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002342 devices = &fs_info->fs_devices->devices;
Liu Bod25628b2012-11-14 14:35:30 +00002343
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002344 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05002345 list_for_each_entry(device, devices, dev_list) {
Chris Mason788f20e2008-04-28 15:29:42 -04002346 if (device->bdev == bdev) {
2347 ret = -EEXIST;
Liu Bod25628b2012-11-14 14:35:30 +00002348 mutex_unlock(
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002349 &fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002350 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002351 }
2352 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002353 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002354
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002355 device = btrfs_alloc_device(fs_info, NULL, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002356 if (IS_ERR(device)) {
Chris Mason788f20e2008-04-28 15:29:42 -04002357 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002358 ret = PTR_ERR(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002359 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002360 }
2361
David Sterba78f2c9e2016-02-11 14:25:38 +01002362 name = rcu_string_strdup(device_path, GFP_KERNEL);
Josef Bacik606686e2012-06-04 14:03:51 -04002363 if (!name) {
Chris Mason788f20e2008-04-28 15:29:42 -04002364 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002365 ret = -ENOMEM;
2366 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002367 }
Josef Bacik606686e2012-06-04 14:03:51 -04002368 rcu_assign_pointer(device->name, name);
Yan Zheng2b820322008-11-17 21:11:30 -05002369
Yan, Zhenga22285a2010-05-16 10:48:46 -04002370 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002371 if (IS_ERR(trans)) {
Josef Bacik606686e2012-06-04 14:03:51 -04002372 rcu_string_free(device->name);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002373 kfree(device);
2374 ret = PTR_ERR(trans);
2375 goto error;
2376 }
2377
Josef Bacikd5e20032011-08-04 14:52:27 +00002378 q = bdev_get_queue(bdev);
2379 if (blk_queue_discard(q))
2380 device->can_discard = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002381 device->writeable = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002382 device->generation = trans->transid;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002383 device->io_width = fs_info->sectorsize;
2384 device->io_align = fs_info->sectorsize;
2385 device->sector_size = fs_info->sectorsize;
Chris Mason788f20e2008-04-28 15:29:42 -04002386 device->total_bytes = i_size_read(bdev->bd_inode);
Yan Zheng2cc3c552009-06-04 09:23:50 -04002387 device->disk_total_bytes = device->total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08002388 device->commit_total_bytes = device->total_bytes;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002389 device->fs_info = fs_info;
Chris Mason788f20e2008-04-28 15:29:42 -04002390 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -04002391 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01002392 device->is_tgtdev_for_dev_replace = 0;
Ilya Dryomovfb01aa82011-02-15 18:12:57 +00002393 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002394 device->dev_stats_valid = 1;
Zheng Yan325cd4b2008-09-05 16:43:54 -04002395 set_blocksize(device->bdev, 4096);
2396
Yan Zheng2b820322008-11-17 21:11:30 -05002397 if (seeding_dev) {
2398 sb->s_flags &= ~MS_RDONLY;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002399 ret = btrfs_prepare_sprout(fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002400 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2b820322008-11-17 21:11:30 -05002401 }
2402
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002403 device->fs_devices = fs_info->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04002404
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002405 mutex_lock(&fs_info->fs_devices->device_list_mutex);
David Sterba34441362016-10-04 19:34:27 +02002406 mutex_lock(&fs_info->chunk_mutex);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002407 list_add_rcu(&device->dev_list, &fs_info->fs_devices->devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002408 list_add(&device->dev_alloc_list,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002409 &fs_info->fs_devices->alloc_list);
2410 fs_info->fs_devices->num_devices++;
2411 fs_info->fs_devices->open_devices++;
2412 fs_info->fs_devices->rw_devices++;
2413 fs_info->fs_devices->total_devices++;
2414 fs_info->fs_devices->total_rw_bytes += device->total_bytes;
Yan Zheng2b820322008-11-17 21:11:30 -05002415
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002416 spin_lock(&fs_info->free_chunk_lock);
2417 fs_info->free_chunk_space += device->total_bytes;
2418 spin_unlock(&fs_info->free_chunk_lock);
Josef Bacik2bf64752011-09-26 17:12:22 -04002419
Chris Masonc2898112009-06-10 09:51:32 -04002420 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002421 fs_info->fs_devices->rotating = 1;
Chris Masonc2898112009-06-10 09:51:32 -04002422
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002423 tmp = btrfs_super_total_bytes(fs_info->super_copy);
2424 btrfs_set_super_total_bytes(fs_info->super_copy,
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002425 tmp + device->total_bytes);
Chris Mason788f20e2008-04-28 15:29:42 -04002426
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002427 tmp = btrfs_super_num_devices(fs_info->super_copy);
2428 btrfs_set_super_num_devices(fs_info->super_copy, tmp + 1);
Anand Jain0d393762014-06-03 11:36:01 +08002429
2430 /* add sysfs device entry */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002431 btrfs_sysfs_add_device_link(fs_info->fs_devices, device);
Anand Jain0d393762014-06-03 11:36:01 +08002432
Miao Xie2196d6e2014-09-03 21:35:41 +08002433 /*
2434 * we've got more storage, clear any full flags on the space
2435 * infos
2436 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002437 btrfs_clear_space_info_full(fs_info);
Miao Xie2196d6e2014-09-03 21:35:41 +08002438
David Sterba34441362016-10-04 19:34:27 +02002439 mutex_unlock(&fs_info->chunk_mutex);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002440 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002441
Yan Zheng2b820322008-11-17 21:11:30 -05002442 if (seeding_dev) {
David Sterba34441362016-10-04 19:34:27 +02002443 mutex_lock(&fs_info->chunk_mutex);
David Sterbae4a4dce2017-02-10 19:49:01 +01002444 ret = init_first_rw_device(trans, fs_info);
David Sterba34441362016-10-04 19:34:27 +02002445 mutex_unlock(&fs_info->chunk_mutex);
David Sterba005d6422012-09-18 07:52:32 -06002446 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002447 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002448 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002449 }
Miao Xie2196d6e2014-09-03 21:35:41 +08002450 }
2451
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002452 ret = btrfs_add_device(trans, fs_info, device);
Miao Xie2196d6e2014-09-03 21:35:41 +08002453 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002454 btrfs_abort_transaction(trans, ret);
Miao Xie2196d6e2014-09-03 21:35:41 +08002455 goto error_trans;
2456 }
2457
2458 if (seeding_dev) {
2459 char fsid_buf[BTRFS_UUID_UNPARSED_SIZE];
2460
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002461 ret = btrfs_finish_sprout(trans, fs_info);
David Sterba005d6422012-09-18 07:52:32 -06002462 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002463 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002464 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002465 }
Anand Jainb2373f22014-06-03 11:36:03 +08002466
2467 /* Sprouting would change fsid of the mounted root,
2468 * so rename the fsid on the sysfs
2469 */
2470 snprintf(fsid_buf, BTRFS_UUID_UNPARSED_SIZE, "%pU",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002471 fs_info->fsid);
2472 if (kobject_rename(&fs_info->fs_devices->fsid_kobj, fsid_buf))
2473 btrfs_warn(fs_info,
2474 "sysfs: failed to create fsid for sprout");
Yan Zheng2b820322008-11-17 21:11:30 -05002475 }
2476
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002477 fs_info->num_tolerated_disk_barrier_failures =
2478 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002479 ret = btrfs_commit_transaction(trans);
Yan Zheng2b820322008-11-17 21:11:30 -05002480
2481 if (seeding_dev) {
2482 mutex_unlock(&uuid_mutex);
2483 up_write(&sb->s_umount);
2484
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002485 if (ret) /* transaction commit */
2486 return ret;
2487
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002488 ret = btrfs_relocate_sys_chunks(fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002489 if (ret < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002490 btrfs_handle_fs_error(fs_info, ret,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002491 "Failed to relocate sys chunks after device initialization. This can be fixed using the \"btrfs balance\" command.");
Miao Xie671415b2012-10-16 11:26:46 +00002492 trans = btrfs_attach_transaction(root);
2493 if (IS_ERR(trans)) {
2494 if (PTR_ERR(trans) == -ENOENT)
2495 return 0;
2496 return PTR_ERR(trans);
2497 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002498 ret = btrfs_commit_transaction(trans);
Yan Zheng2b820322008-11-17 21:11:30 -05002499 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002500
Qu Wenruo5a1972b2014-04-16 17:02:32 +08002501 /* Update ctime/mtime for libblkid */
2502 update_dev_time(device_path);
Chris Mason788f20e2008-04-28 15:29:42 -04002503 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002504
2505error_trans:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002506 btrfs_end_transaction(trans);
Josef Bacik606686e2012-06-04 14:03:51 -04002507 rcu_string_free(device->name);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002508 btrfs_sysfs_rm_device_link(fs_info->fs_devices, device);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002509 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002510error:
Tejun Heoe525fd82010-11-13 11:55:17 +01002511 blkdev_put(bdev, FMODE_EXCL);
Yan Zheng2b820322008-11-17 21:11:30 -05002512 if (seeding_dev) {
2513 mutex_unlock(&uuid_mutex);
2514 up_write(&sb->s_umount);
2515 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002516 return ret;
Chris Mason788f20e2008-04-28 15:29:42 -04002517}
2518
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002519int btrfs_init_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
David Sterbada353f62017-02-14 17:55:53 +01002520 const char *device_path,
Miao Xie1c433662014-09-03 21:35:32 +08002521 struct btrfs_device *srcdev,
Stefan Behrense93c89c2012-11-05 17:33:06 +01002522 struct btrfs_device **device_out)
2523{
2524 struct request_queue *q;
2525 struct btrfs_device *device;
2526 struct block_device *bdev;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002527 struct list_head *devices;
2528 struct rcu_string *name;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002529 u64 devid = BTRFS_DEV_REPLACE_DEVID;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002530 int ret = 0;
2531
2532 *device_out = NULL;
Miao Xie1c433662014-09-03 21:35:32 +08002533 if (fs_info->fs_devices->seeding) {
2534 btrfs_err(fs_info, "the filesystem is a seed filesystem!");
Stefan Behrense93c89c2012-11-05 17:33:06 +01002535 return -EINVAL;
Miao Xie1c433662014-09-03 21:35:32 +08002536 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002537
2538 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
2539 fs_info->bdev_holder);
Miao Xie1c433662014-09-03 21:35:32 +08002540 if (IS_ERR(bdev)) {
2541 btrfs_err(fs_info, "target device %s is invalid!", device_path);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002542 return PTR_ERR(bdev);
Miao Xie1c433662014-09-03 21:35:32 +08002543 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002544
2545 filemap_write_and_wait(bdev->bd_inode->i_mapping);
2546
2547 devices = &fs_info->fs_devices->devices;
2548 list_for_each_entry(device, devices, dev_list) {
2549 if (device->bdev == bdev) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002550 btrfs_err(fs_info,
2551 "target device is in the filesystem!");
Stefan Behrense93c89c2012-11-05 17:33:06 +01002552 ret = -EEXIST;
2553 goto error;
2554 }
2555 }
2556
Miao Xie1c433662014-09-03 21:35:32 +08002557
Miao Xie7cc8e582014-09-03 21:35:38 +08002558 if (i_size_read(bdev->bd_inode) <
2559 btrfs_device_get_total_bytes(srcdev)) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002560 btrfs_err(fs_info,
2561 "target device is smaller than source device!");
Miao Xie1c433662014-09-03 21:35:32 +08002562 ret = -EINVAL;
2563 goto error;
2564 }
2565
2566
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002567 device = btrfs_alloc_device(NULL, &devid, NULL);
2568 if (IS_ERR(device)) {
2569 ret = PTR_ERR(device);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002570 goto error;
2571 }
2572
2573 name = rcu_string_strdup(device_path, GFP_NOFS);
2574 if (!name) {
2575 kfree(device);
2576 ret = -ENOMEM;
2577 goto error;
2578 }
2579 rcu_assign_pointer(device->name, name);
2580
2581 q = bdev_get_queue(bdev);
2582 if (blk_queue_discard(q))
2583 device->can_discard = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002584 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002585 device->writeable = 1;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002586 device->generation = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002587 device->io_width = fs_info->sectorsize;
2588 device->io_align = fs_info->sectorsize;
2589 device->sector_size = fs_info->sectorsize;
Miao Xie7cc8e582014-09-03 21:35:38 +08002590 device->total_bytes = btrfs_device_get_total_bytes(srcdev);
2591 device->disk_total_bytes = btrfs_device_get_disk_total_bytes(srcdev);
2592 device->bytes_used = btrfs_device_get_bytes_used(srcdev);
Miao Xie935e5cc2014-09-03 21:35:33 +08002593 ASSERT(list_empty(&srcdev->resized_list));
2594 device->commit_total_bytes = srcdev->commit_total_bytes;
Miao Xiece7213c2014-09-03 21:35:34 +08002595 device->commit_bytes_used = device->bytes_used;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002596 device->fs_info = fs_info;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002597 device->bdev = bdev;
2598 device->in_fs_metadata = 1;
2599 device->is_tgtdev_for_dev_replace = 1;
2600 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002601 device->dev_stats_valid = 1;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002602 set_blocksize(device->bdev, 4096);
2603 device->fs_devices = fs_info->fs_devices;
2604 list_add(&device->dev_list, &fs_info->fs_devices->devices);
2605 fs_info->fs_devices->num_devices++;
2606 fs_info->fs_devices->open_devices++;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002607 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002608
2609 *device_out = device;
2610 return ret;
2611
2612error:
2613 blkdev_put(bdev, FMODE_EXCL);
2614 return ret;
2615}
2616
2617void btrfs_init_dev_replace_tgtdev_for_resume(struct btrfs_fs_info *fs_info,
2618 struct btrfs_device *tgtdev)
2619{
Jeff Mahoneyda170662016-06-15 09:22:56 -04002620 u32 sectorsize = fs_info->sectorsize;
2621
Stefan Behrense93c89c2012-11-05 17:33:06 +01002622 WARN_ON(fs_info->fs_devices->rw_devices == 0);
Jeff Mahoneyda170662016-06-15 09:22:56 -04002623 tgtdev->io_width = sectorsize;
2624 tgtdev->io_align = sectorsize;
2625 tgtdev->sector_size = sectorsize;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002626 tgtdev->fs_info = fs_info;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002627 tgtdev->in_fs_metadata = 1;
2628}
2629
Chris Masond3977122009-01-05 21:25:51 -05002630static noinline int btrfs_update_device(struct btrfs_trans_handle *trans,
2631 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04002632{
2633 int ret;
2634 struct btrfs_path *path;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002635 struct btrfs_root *root = device->fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04002636 struct btrfs_dev_item *dev_item;
2637 struct extent_buffer *leaf;
2638 struct btrfs_key key;
2639
Chris Mason0b86a832008-03-24 15:01:56 -04002640 path = btrfs_alloc_path();
2641 if (!path)
2642 return -ENOMEM;
2643
2644 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2645 key.type = BTRFS_DEV_ITEM_KEY;
2646 key.offset = device->devid;
2647
2648 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2649 if (ret < 0)
2650 goto out;
2651
2652 if (ret > 0) {
2653 ret = -ENOENT;
2654 goto out;
2655 }
2656
2657 leaf = path->nodes[0];
2658 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
2659
2660 btrfs_set_device_id(leaf, dev_item, device->devid);
2661 btrfs_set_device_type(leaf, dev_item, device->type);
2662 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
2663 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
2664 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08002665 btrfs_set_device_total_bytes(leaf, dev_item,
2666 btrfs_device_get_disk_total_bytes(device));
2667 btrfs_set_device_bytes_used(leaf, dev_item,
2668 btrfs_device_get_bytes_used(device));
Chris Mason0b86a832008-03-24 15:01:56 -04002669 btrfs_mark_buffer_dirty(leaf);
2670
2671out:
2672 btrfs_free_path(path);
2673 return ret;
2674}
2675
Miao Xie2196d6e2014-09-03 21:35:41 +08002676int btrfs_grow_device(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04002677 struct btrfs_device *device, u64 new_size)
2678{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002679 struct btrfs_fs_info *fs_info = device->fs_info;
2680 struct btrfs_super_block *super_copy = fs_info->super_copy;
Miao Xie935e5cc2014-09-03 21:35:33 +08002681 struct btrfs_fs_devices *fs_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002682 u64 old_total;
2683 u64 diff;
Chris Mason8f18cf12008-04-25 16:53:30 -04002684
Yan Zheng2b820322008-11-17 21:11:30 -05002685 if (!device->writeable)
2686 return -EACCES;
Miao Xie2196d6e2014-09-03 21:35:41 +08002687
David Sterba34441362016-10-04 19:34:27 +02002688 mutex_lock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08002689 old_total = btrfs_super_total_bytes(super_copy);
2690 diff = new_size - device->total_bytes;
2691
Stefan Behrens63a212a2012-11-05 18:29:28 +01002692 if (new_size <= device->total_bytes ||
Miao Xie2196d6e2014-09-03 21:35:41 +08002693 device->is_tgtdev_for_dev_replace) {
David Sterba34441362016-10-04 19:34:27 +02002694 mutex_unlock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002695 return -EINVAL;
Miao Xie2196d6e2014-09-03 21:35:41 +08002696 }
Yan Zheng2b820322008-11-17 21:11:30 -05002697
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002698 fs_devices = fs_info->fs_devices;
Chris Mason8f18cf12008-04-25 16:53:30 -04002699
2700 btrfs_set_super_total_bytes(super_copy, old_total + diff);
Yan Zheng2b820322008-11-17 21:11:30 -05002701 device->fs_devices->total_rw_bytes += diff;
2702
Miao Xie7cc8e582014-09-03 21:35:38 +08002703 btrfs_device_set_total_bytes(device, new_size);
2704 btrfs_device_set_disk_total_bytes(device, new_size);
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002705 btrfs_clear_space_info_full(device->fs_info);
Miao Xie935e5cc2014-09-03 21:35:33 +08002706 if (list_empty(&device->resized_list))
2707 list_add_tail(&device->resized_list,
2708 &fs_devices->resized_devices);
David Sterba34441362016-10-04 19:34:27 +02002709 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason4184ea72009-03-10 12:39:20 -04002710
Chris Mason8f18cf12008-04-25 16:53:30 -04002711 return btrfs_update_device(trans, device);
2712}
2713
2714static int btrfs_free_chunk(struct btrfs_trans_handle *trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002715 struct btrfs_fs_info *fs_info, u64 chunk_objectid,
Chris Mason8f18cf12008-04-25 16:53:30 -04002716 u64 chunk_offset)
2717{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002718 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04002719 int ret;
2720 struct btrfs_path *path;
2721 struct btrfs_key key;
2722
Chris Mason8f18cf12008-04-25 16:53:30 -04002723 path = btrfs_alloc_path();
2724 if (!path)
2725 return -ENOMEM;
2726
2727 key.objectid = chunk_objectid;
2728 key.offset = chunk_offset;
2729 key.type = BTRFS_CHUNK_ITEM_KEY;
2730
2731 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002732 if (ret < 0)
2733 goto out;
2734 else if (ret > 0) { /* Logic error or corruption */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002735 btrfs_handle_fs_error(fs_info, -ENOENT,
2736 "Failed lookup while freeing chunk.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002737 ret = -ENOENT;
2738 goto out;
2739 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002740
2741 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002742 if (ret < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002743 btrfs_handle_fs_error(fs_info, ret,
2744 "Failed to delete chunk item.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002745out:
Chris Mason8f18cf12008-04-25 16:53:30 -04002746 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00002747 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002748}
2749
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002750static int btrfs_del_sys_chunk(struct btrfs_fs_info *fs_info,
2751 u64 chunk_objectid, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002752{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002753 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04002754 struct btrfs_disk_key *disk_key;
2755 struct btrfs_chunk *chunk;
2756 u8 *ptr;
2757 int ret = 0;
2758 u32 num_stripes;
2759 u32 array_size;
2760 u32 len = 0;
2761 u32 cur;
2762 struct btrfs_key key;
2763
David Sterba34441362016-10-04 19:34:27 +02002764 mutex_lock(&fs_info->chunk_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04002765 array_size = btrfs_super_sys_array_size(super_copy);
2766
2767 ptr = super_copy->sys_chunk_array;
2768 cur = 0;
2769
2770 while (cur < array_size) {
2771 disk_key = (struct btrfs_disk_key *)ptr;
2772 btrfs_disk_key_to_cpu(&key, disk_key);
2773
2774 len = sizeof(*disk_key);
2775
2776 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
2777 chunk = (struct btrfs_chunk *)(ptr + len);
2778 num_stripes = btrfs_stack_chunk_num_stripes(chunk);
2779 len += btrfs_chunk_item_size(num_stripes);
2780 } else {
2781 ret = -EIO;
2782 break;
2783 }
2784 if (key.objectid == chunk_objectid &&
2785 key.offset == chunk_offset) {
2786 memmove(ptr, ptr + len, array_size - (cur + len));
2787 array_size -= len;
2788 btrfs_set_super_sys_array_size(super_copy, array_size);
2789 } else {
2790 ptr += len;
2791 cur += len;
2792 }
2793 }
David Sterba34441362016-10-04 19:34:27 +02002794 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04002795 return ret;
2796}
2797
Josef Bacik47ab2a62014-09-18 11:20:02 -04002798int btrfs_remove_chunk(struct btrfs_trans_handle *trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002799 struct btrfs_fs_info *fs_info, u64 chunk_offset)
Josef Bacik47ab2a62014-09-18 11:20:02 -04002800{
2801 struct extent_map_tree *em_tree;
2802 struct extent_map *em;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002803 struct map_lookup *map;
2804 u64 dev_extent_len = 0;
2805 u64 chunk_objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002806 int i, ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002807 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002808
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002809 em_tree = &fs_info->mapping_tree.map_tree;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002810
2811 read_lock(&em_tree->lock);
2812 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
2813 read_unlock(&em_tree->lock);
2814
2815 if (!em || em->start > chunk_offset ||
2816 em->start + em->len < chunk_offset) {
2817 /*
2818 * This is a logic error, but we don't want to just rely on the
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08002819 * user having built with ASSERT enabled, so if ASSERT doesn't
Josef Bacik47ab2a62014-09-18 11:20:02 -04002820 * do anything we still error out.
2821 */
2822 ASSERT(0);
2823 if (em)
2824 free_extent_map(em);
2825 return -EINVAL;
2826 }
Jeff Mahoney95617d62015-06-03 10:55:48 -04002827 map = em->map_lookup;
David Sterba34441362016-10-04 19:34:27 +02002828 mutex_lock(&fs_info->chunk_mutex);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002829 check_system_chunk(trans, fs_info, map->type);
David Sterba34441362016-10-04 19:34:27 +02002830 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002831
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002832 /*
2833 * Take the device list mutex to prevent races with the final phase of
2834 * a device replace operation that replaces the device object associated
2835 * with map stripes (dev-replace.c:btrfs_dev_replace_finishing()).
2836 */
2837 mutex_lock(&fs_devices->device_list_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002838 for (i = 0; i < map->num_stripes; i++) {
2839 struct btrfs_device *device = map->stripes[i].dev;
2840 ret = btrfs_free_dev_extent(trans, device,
2841 map->stripes[i].physical,
2842 &dev_extent_len);
2843 if (ret) {
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002844 mutex_unlock(&fs_devices->device_list_mutex);
Jeff Mahoney66642832016-06-10 18:19:25 -04002845 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002846 goto out;
2847 }
2848
2849 if (device->bytes_used > 0) {
David Sterba34441362016-10-04 19:34:27 +02002850 mutex_lock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002851 btrfs_device_set_bytes_used(device,
2852 device->bytes_used - dev_extent_len);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002853 spin_lock(&fs_info->free_chunk_lock);
2854 fs_info->free_chunk_space += dev_extent_len;
2855 spin_unlock(&fs_info->free_chunk_lock);
2856 btrfs_clear_space_info_full(fs_info);
David Sterba34441362016-10-04 19:34:27 +02002857 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002858 }
2859
2860 if (map->stripes[i].dev) {
2861 ret = btrfs_update_device(trans, map->stripes[i].dev);
2862 if (ret) {
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002863 mutex_unlock(&fs_devices->device_list_mutex);
Jeff Mahoney66642832016-06-10 18:19:25 -04002864 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002865 goto out;
2866 }
2867 }
2868 }
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002869 mutex_unlock(&fs_devices->device_list_mutex);
2870
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002871 ret = btrfs_free_chunk(trans, fs_info, chunk_objectid, chunk_offset);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002872 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002873 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002874 goto out;
2875 }
2876
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002877 trace_btrfs_chunk_free(fs_info, map, chunk_offset, em->len);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002878
2879 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002880 ret = btrfs_del_sys_chunk(fs_info, chunk_objectid,
2881 chunk_offset);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002882 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002883 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002884 goto out;
2885 }
2886 }
2887
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002888 ret = btrfs_remove_block_group(trans, fs_info, chunk_offset, em);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002889 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002890 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002891 goto out;
2892 }
2893
Josef Bacik47ab2a62014-09-18 11:20:02 -04002894out:
2895 /* once for us */
2896 free_extent_map(em);
Chris Mason8f18cf12008-04-25 16:53:30 -04002897 return ret;
2898}
2899
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002900static int btrfs_relocate_chunk(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002901{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002902 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason19c4d2f2016-10-10 13:43:31 -07002903 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04002904 int ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002905
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002906 /*
2907 * Prevent races with automatic removal of unused block groups.
2908 * After we relocate and before we remove the chunk with offset
2909 * chunk_offset, automatic removal of the block group can kick in,
2910 * resulting in a failure when calling btrfs_remove_chunk() below.
2911 *
2912 * Make sure to acquire this mutex before doing a tree search (dev
2913 * or chunk trees) to find chunks. Otherwise the cleaner kthread might
2914 * call btrfs_remove_chunk() (through btrfs_delete_unused_bgs()) after
2915 * we release the path used to search the chunk/dev tree and before
2916 * the current task acquires this mutex and calls us.
2917 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002918 ASSERT(mutex_is_locked(&fs_info->delete_unused_bgs_mutex));
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002919
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002920 ret = btrfs_can_relocate(fs_info, chunk_offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04002921 if (ret)
2922 return -ENOSPC;
2923
Chris Mason8f18cf12008-04-25 16:53:30 -04002924 /* step one, relocate all the extents inside this chunk */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002925 btrfs_scrub_pause(fs_info);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002926 ret = btrfs_relocate_block_group(fs_info, chunk_offset);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002927 btrfs_scrub_continue(fs_info);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002928 if (ret)
2929 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002930
Chris Mason19c4d2f2016-10-10 13:43:31 -07002931 trans = btrfs_start_trans_remove_block_group(root->fs_info,
2932 chunk_offset);
2933 if (IS_ERR(trans)) {
2934 ret = PTR_ERR(trans);
2935 btrfs_handle_fs_error(root->fs_info, ret, NULL);
2936 return ret;
2937 }
Naohiro Aota5d8eb6f2016-09-02 16:46:32 +09002938
Chris Mason19c4d2f2016-10-10 13:43:31 -07002939 /*
2940 * step two, delete the device extents and the
2941 * chunk tree entries
2942 */
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002943 ret = btrfs_remove_chunk(trans, fs_info, chunk_offset);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002944 btrfs_end_transaction(trans);
Chris Mason19c4d2f2016-10-10 13:43:31 -07002945 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002946}
2947
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002948static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05002949{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002950 struct btrfs_root *chunk_root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05002951 struct btrfs_path *path;
2952 struct extent_buffer *leaf;
2953 struct btrfs_chunk *chunk;
2954 struct btrfs_key key;
2955 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05002956 u64 chunk_type;
Josef Bacikba1bf482009-09-11 16:11:19 -04002957 bool retried = false;
2958 int failed = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05002959 int ret;
2960
2961 path = btrfs_alloc_path();
2962 if (!path)
2963 return -ENOMEM;
2964
Josef Bacikba1bf482009-09-11 16:11:19 -04002965again:
Yan Zheng2b820322008-11-17 21:11:30 -05002966 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2967 key.offset = (u64)-1;
2968 key.type = BTRFS_CHUNK_ITEM_KEY;
2969
2970 while (1) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002971 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002972 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002973 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002974 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002975 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002976 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002977 BUG_ON(ret == 0); /* Corruption */
Yan Zheng2b820322008-11-17 21:11:30 -05002978
2979 ret = btrfs_previous_item(chunk_root, path, key.objectid,
2980 key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002981 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002982 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002983 if (ret < 0)
2984 goto error;
2985 if (ret > 0)
2986 break;
2987
2988 leaf = path->nodes[0];
2989 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2990
2991 chunk = btrfs_item_ptr(leaf, path->slots[0],
2992 struct btrfs_chunk);
2993 chunk_type = btrfs_chunk_type(leaf, chunk);
David Sterbab3b4aa72011-04-21 01:20:15 +02002994 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002995
2996 if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002997 ret = btrfs_relocate_chunk(fs_info, found_key.offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04002998 if (ret == -ENOSPC)
2999 failed++;
HIMANGI SARAOGI14586652014-07-09 03:51:41 +05303000 else
3001 BUG_ON(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05003002 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003003 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05003004
3005 if (found_key.offset == 0)
3006 break;
3007 key.offset = found_key.offset - 1;
3008 }
3009 ret = 0;
Josef Bacikba1bf482009-09-11 16:11:19 -04003010 if (failed && !retried) {
3011 failed = 0;
3012 retried = true;
3013 goto again;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303014 } else if (WARN_ON(failed && retried)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04003015 ret = -ENOSPC;
3016 }
Yan Zheng2b820322008-11-17 21:11:30 -05003017error:
3018 btrfs_free_path(path);
3019 return ret;
3020}
3021
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003022static int insert_balance_item(struct btrfs_fs_info *fs_info,
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003023 struct btrfs_balance_control *bctl)
3024{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003025 struct btrfs_root *root = fs_info->tree_root;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003026 struct btrfs_trans_handle *trans;
3027 struct btrfs_balance_item *item;
3028 struct btrfs_disk_balance_args disk_bargs;
3029 struct btrfs_path *path;
3030 struct extent_buffer *leaf;
3031 struct btrfs_key key;
3032 int ret, err;
3033
3034 path = btrfs_alloc_path();
3035 if (!path)
3036 return -ENOMEM;
3037
3038 trans = btrfs_start_transaction(root, 0);
3039 if (IS_ERR(trans)) {
3040 btrfs_free_path(path);
3041 return PTR_ERR(trans);
3042 }
3043
3044 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003045 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003046 key.offset = 0;
3047
3048 ret = btrfs_insert_empty_item(trans, root, path, &key,
3049 sizeof(*item));
3050 if (ret)
3051 goto out;
3052
3053 leaf = path->nodes[0];
3054 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
3055
David Sterbab159fa22016-11-08 18:09:03 +01003056 memzero_extent_buffer(leaf, (unsigned long)item, sizeof(*item));
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003057
3058 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data);
3059 btrfs_set_balance_data(leaf, item, &disk_bargs);
3060 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta);
3061 btrfs_set_balance_meta(leaf, item, &disk_bargs);
3062 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys);
3063 btrfs_set_balance_sys(leaf, item, &disk_bargs);
3064
3065 btrfs_set_balance_flags(leaf, item, bctl->flags);
3066
3067 btrfs_mark_buffer_dirty(leaf);
3068out:
3069 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003070 err = btrfs_commit_transaction(trans);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003071 if (err && !ret)
3072 ret = err;
3073 return ret;
3074}
3075
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003076static int del_balance_item(struct btrfs_fs_info *fs_info)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003077{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003078 struct btrfs_root *root = fs_info->tree_root;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003079 struct btrfs_trans_handle *trans;
3080 struct btrfs_path *path;
3081 struct btrfs_key key;
3082 int ret, err;
3083
3084 path = btrfs_alloc_path();
3085 if (!path)
3086 return -ENOMEM;
3087
3088 trans = btrfs_start_transaction(root, 0);
3089 if (IS_ERR(trans)) {
3090 btrfs_free_path(path);
3091 return PTR_ERR(trans);
3092 }
3093
3094 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003095 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003096 key.offset = 0;
3097
3098 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
3099 if (ret < 0)
3100 goto out;
3101 if (ret > 0) {
3102 ret = -ENOENT;
3103 goto out;
3104 }
3105
3106 ret = btrfs_del_item(trans, root, path);
3107out:
3108 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003109 err = btrfs_commit_transaction(trans);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003110 if (err && !ret)
3111 ret = err;
3112 return ret;
3113}
3114
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003115/*
Ilya Dryomov59641012012-01-16 22:04:48 +02003116 * This is a heuristic used to reduce the number of chunks balanced on
3117 * resume after balance was interrupted.
3118 */
3119static void update_balance_args(struct btrfs_balance_control *bctl)
3120{
3121 /*
3122 * Turn on soft mode for chunk types that were being converted.
3123 */
3124 if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)
3125 bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT;
3126 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)
3127 bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT;
3128 if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)
3129 bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT;
3130
3131 /*
3132 * Turn on usage filter if is not already used. The idea is
3133 * that chunks that we have already balanced should be
3134 * reasonably full. Don't do it for chunks that are being
3135 * converted - that will keep us from relocating unconverted
3136 * (albeit full) chunks.
3137 */
3138 if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003139 !(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003140 !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3141 bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE;
3142 bctl->data.usage = 90;
3143 }
3144 if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003145 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003146 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3147 bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE;
3148 bctl->sys.usage = 90;
3149 }
3150 if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003151 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003152 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3153 bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE;
3154 bctl->meta.usage = 90;
3155 }
3156}
3157
3158/*
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003159 * Should be called with both balance and volume mutexes held to
3160 * serialize other volume operations (add_dev/rm_dev/resize) with
3161 * restriper. Same goes for unset_balance_control.
3162 */
3163static void set_balance_control(struct btrfs_balance_control *bctl)
3164{
3165 struct btrfs_fs_info *fs_info = bctl->fs_info;
3166
3167 BUG_ON(fs_info->balance_ctl);
3168
3169 spin_lock(&fs_info->balance_lock);
3170 fs_info->balance_ctl = bctl;
3171 spin_unlock(&fs_info->balance_lock);
3172}
3173
3174static void unset_balance_control(struct btrfs_fs_info *fs_info)
3175{
3176 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3177
3178 BUG_ON(!fs_info->balance_ctl);
3179
3180 spin_lock(&fs_info->balance_lock);
3181 fs_info->balance_ctl = NULL;
3182 spin_unlock(&fs_info->balance_lock);
3183
3184 kfree(bctl);
3185}
3186
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003187/*
3188 * Balance filters. Return 1 if chunk should be filtered out
3189 * (should not be balanced).
3190 */
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003191static int chunk_profiles_filter(u64 chunk_type,
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003192 struct btrfs_balance_args *bargs)
3193{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003194 chunk_type = chunk_to_extended(chunk_type) &
3195 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003196
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003197 if (bargs->profiles & chunk_type)
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003198 return 0;
3199
3200 return 1;
3201}
3202
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003203static int chunk_usage_range_filter(struct btrfs_fs_info *fs_info, u64 chunk_offset,
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003204 struct btrfs_balance_args *bargs)
3205{
3206 struct btrfs_block_group_cache *cache;
David Sterbabc309462015-10-20 18:22:13 +02003207 u64 chunk_used;
3208 u64 user_thresh_min;
3209 u64 user_thresh_max;
3210 int ret = 1;
3211
3212 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3213 chunk_used = btrfs_block_group_used(&cache->item);
3214
3215 if (bargs->usage_min == 0)
3216 user_thresh_min = 0;
3217 else
3218 user_thresh_min = div_factor_fine(cache->key.offset,
3219 bargs->usage_min);
3220
3221 if (bargs->usage_max == 0)
3222 user_thresh_max = 1;
3223 else if (bargs->usage_max > 100)
3224 user_thresh_max = cache->key.offset;
3225 else
3226 user_thresh_max = div_factor_fine(cache->key.offset,
3227 bargs->usage_max);
3228
3229 if (user_thresh_min <= chunk_used && chunk_used < user_thresh_max)
3230 ret = 0;
3231
3232 btrfs_put_block_group(cache);
3233 return ret;
3234}
3235
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003236static int chunk_usage_filter(struct btrfs_fs_info *fs_info,
David Sterbabc309462015-10-20 18:22:13 +02003237 u64 chunk_offset, struct btrfs_balance_args *bargs)
3238{
3239 struct btrfs_block_group_cache *cache;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003240 u64 chunk_used, user_thresh;
3241 int ret = 1;
3242
3243 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3244 chunk_used = btrfs_block_group_used(&cache->item);
3245
David Sterbabc309462015-10-20 18:22:13 +02003246 if (bargs->usage_min == 0)
Ilya Dryomov3e39cea2013-02-12 16:28:59 +00003247 user_thresh = 1;
Ilya Dryomova105bb82013-01-21 15:15:56 +02003248 else if (bargs->usage > 100)
3249 user_thresh = cache->key.offset;
3250 else
3251 user_thresh = div_factor_fine(cache->key.offset,
3252 bargs->usage);
3253
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003254 if (chunk_used < user_thresh)
3255 ret = 0;
3256
3257 btrfs_put_block_group(cache);
3258 return ret;
3259}
3260
Ilya Dryomov409d4042012-01-16 22:04:47 +02003261static int chunk_devid_filter(struct extent_buffer *leaf,
3262 struct btrfs_chunk *chunk,
3263 struct btrfs_balance_args *bargs)
3264{
3265 struct btrfs_stripe *stripe;
3266 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3267 int i;
3268
3269 for (i = 0; i < num_stripes; i++) {
3270 stripe = btrfs_stripe_nr(chunk, i);
3271 if (btrfs_stripe_devid(leaf, stripe) == bargs->devid)
3272 return 0;
3273 }
3274
3275 return 1;
3276}
3277
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003278/* [pstart, pend) */
3279static int chunk_drange_filter(struct extent_buffer *leaf,
3280 struct btrfs_chunk *chunk,
3281 u64 chunk_offset,
3282 struct btrfs_balance_args *bargs)
3283{
3284 struct btrfs_stripe *stripe;
3285 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3286 u64 stripe_offset;
3287 u64 stripe_length;
3288 int factor;
3289 int i;
3290
3291 if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID))
3292 return 0;
3293
3294 if (btrfs_chunk_type(leaf, chunk) & (BTRFS_BLOCK_GROUP_DUP |
David Woodhouse53b381b2013-01-29 18:40:14 -05003295 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)) {
3296 factor = num_stripes / 2;
3297 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID5) {
3298 factor = num_stripes - 1;
3299 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID6) {
3300 factor = num_stripes - 2;
3301 } else {
3302 factor = num_stripes;
3303 }
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003304
3305 for (i = 0; i < num_stripes; i++) {
3306 stripe = btrfs_stripe_nr(chunk, i);
3307 if (btrfs_stripe_devid(leaf, stripe) != bargs->devid)
3308 continue;
3309
3310 stripe_offset = btrfs_stripe_offset(leaf, stripe);
3311 stripe_length = btrfs_chunk_length(leaf, chunk);
David Sterbab8b93ad2015-01-16 17:26:13 +01003312 stripe_length = div_u64(stripe_length, factor);
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003313
3314 if (stripe_offset < bargs->pend &&
3315 stripe_offset + stripe_length > bargs->pstart)
3316 return 0;
3317 }
3318
3319 return 1;
3320}
3321
Ilya Dryomovea671762012-01-16 22:04:48 +02003322/* [vstart, vend) */
3323static int chunk_vrange_filter(struct extent_buffer *leaf,
3324 struct btrfs_chunk *chunk,
3325 u64 chunk_offset,
3326 struct btrfs_balance_args *bargs)
3327{
3328 if (chunk_offset < bargs->vend &&
3329 chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart)
3330 /* at least part of the chunk is inside this vrange */
3331 return 0;
3332
3333 return 1;
3334}
3335
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003336static int chunk_stripes_range_filter(struct extent_buffer *leaf,
3337 struct btrfs_chunk *chunk,
3338 struct btrfs_balance_args *bargs)
3339{
3340 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3341
3342 if (bargs->stripes_min <= num_stripes
3343 && num_stripes <= bargs->stripes_max)
3344 return 0;
3345
3346 return 1;
3347}
3348
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003349static int chunk_soft_convert_filter(u64 chunk_type,
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003350 struct btrfs_balance_args *bargs)
3351{
3352 if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT))
3353 return 0;
3354
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003355 chunk_type = chunk_to_extended(chunk_type) &
3356 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003357
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003358 if (bargs->target == chunk_type)
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003359 return 1;
3360
3361 return 0;
3362}
3363
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003364static int should_balance_chunk(struct btrfs_fs_info *fs_info,
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003365 struct extent_buffer *leaf,
3366 struct btrfs_chunk *chunk, u64 chunk_offset)
3367{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003368 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003369 struct btrfs_balance_args *bargs = NULL;
3370 u64 chunk_type = btrfs_chunk_type(leaf, chunk);
3371
3372 /* type filter */
3373 if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) &
3374 (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) {
3375 return 0;
3376 }
3377
3378 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3379 bargs = &bctl->data;
3380 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3381 bargs = &bctl->sys;
3382 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3383 bargs = &bctl->meta;
3384
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003385 /* profiles filter */
3386 if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) &&
3387 chunk_profiles_filter(chunk_type, bargs)) {
3388 return 0;
3389 }
3390
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003391 /* usage filter */
3392 if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003393 chunk_usage_filter(fs_info, chunk_offset, bargs)) {
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003394 return 0;
David Sterbabc309462015-10-20 18:22:13 +02003395 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003396 chunk_usage_range_filter(fs_info, chunk_offset, bargs)) {
David Sterbabc309462015-10-20 18:22:13 +02003397 return 0;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003398 }
3399
Ilya Dryomov409d4042012-01-16 22:04:47 +02003400 /* devid filter */
3401 if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) &&
3402 chunk_devid_filter(leaf, chunk, bargs)) {
3403 return 0;
3404 }
3405
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003406 /* drange filter, makes sense only with devid filter */
3407 if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) &&
3408 chunk_drange_filter(leaf, chunk, chunk_offset, bargs)) {
3409 return 0;
3410 }
3411
Ilya Dryomovea671762012-01-16 22:04:48 +02003412 /* vrange filter */
3413 if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) &&
3414 chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) {
3415 return 0;
3416 }
3417
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003418 /* stripes filter */
3419 if ((bargs->flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE) &&
3420 chunk_stripes_range_filter(leaf, chunk, bargs)) {
3421 return 0;
3422 }
3423
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003424 /* soft profile changing mode */
3425 if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) &&
3426 chunk_soft_convert_filter(chunk_type, bargs)) {
3427 return 0;
3428 }
3429
David Sterba7d824b62014-05-07 17:37:51 +02003430 /*
3431 * limited by count, must be the last filter
3432 */
3433 if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT)) {
3434 if (bargs->limit == 0)
3435 return 0;
3436 else
3437 bargs->limit--;
David Sterba12907fc2015-10-10 17:16:50 +02003438 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE)) {
3439 /*
3440 * Same logic as the 'limit' filter; the minimum cannot be
Nicholas D Steeves01327612016-05-19 21:18:45 -04003441 * determined here because we do not have the global information
David Sterba12907fc2015-10-10 17:16:50 +02003442 * about the count of all chunks that satisfy the filters.
3443 */
3444 if (bargs->limit_max == 0)
3445 return 0;
3446 else
3447 bargs->limit_max--;
David Sterba7d824b62014-05-07 17:37:51 +02003448 }
3449
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003450 return 1;
3451}
3452
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003453static int __btrfs_balance(struct btrfs_fs_info *fs_info)
Chris Masonec44a352008-04-28 15:29:52 -04003454{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003455 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003456 struct btrfs_root *chunk_root = fs_info->chunk_root;
3457 struct btrfs_root *dev_root = fs_info->dev_root;
3458 struct list_head *devices;
Chris Masonec44a352008-04-28 15:29:52 -04003459 struct btrfs_device *device;
3460 u64 old_size;
3461 u64 size_to_free;
David Sterba12907fc2015-10-10 17:16:50 +02003462 u64 chunk_type;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003463 struct btrfs_chunk *chunk;
Liu Bo5a488b92016-07-12 11:24:21 -07003464 struct btrfs_path *path = NULL;
Chris Masonec44a352008-04-28 15:29:52 -04003465 struct btrfs_key key;
Chris Masonec44a352008-04-28 15:29:52 -04003466 struct btrfs_key found_key;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003467 struct btrfs_trans_handle *trans;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003468 struct extent_buffer *leaf;
3469 int slot;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003470 int ret;
3471 int enospc_errors = 0;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003472 bool counting = true;
David Sterba12907fc2015-10-10 17:16:50 +02003473 /* The single value limit and min/max limits use the same bytes in the */
David Sterba7d824b62014-05-07 17:37:51 +02003474 u64 limit_data = bctl->data.limit;
3475 u64 limit_meta = bctl->meta.limit;
3476 u64 limit_sys = bctl->sys.limit;
David Sterba12907fc2015-10-10 17:16:50 +02003477 u32 count_data = 0;
3478 u32 count_meta = 0;
3479 u32 count_sys = 0;
Zhao Lei2c9fe832015-11-09 11:51:32 +08003480 int chunk_reserved = 0;
Liu Bocf25ce52015-12-14 18:29:32 -08003481 u64 bytes_used = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003482
Chris Masonec44a352008-04-28 15:29:52 -04003483 /* step one make some room on all the devices */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003484 devices = &fs_info->fs_devices->devices;
Qinghuang Fengc6e30872009-01-21 10:59:08 -05003485 list_for_each_entry(device, devices, dev_list) {
Miao Xie7cc8e582014-09-03 21:35:38 +08003486 old_size = btrfs_device_get_total_bytes(device);
Chris Masonec44a352008-04-28 15:29:52 -04003487 size_to_free = div_factor(old_size, 1);
Byongho Leeee221842015-12-15 01:42:10 +09003488 size_to_free = min_t(u64, size_to_free, SZ_1M);
Yan Zheng2b820322008-11-17 21:11:30 -05003489 if (!device->writeable ||
Miao Xie7cc8e582014-09-03 21:35:38 +08003490 btrfs_device_get_total_bytes(device) -
3491 btrfs_device_get_bytes_used(device) > size_to_free ||
Stefan Behrens63a212a2012-11-05 18:29:28 +01003492 device->is_tgtdev_for_dev_replace)
Chris Masonec44a352008-04-28 15:29:52 -04003493 continue;
3494
3495 ret = btrfs_shrink_device(device, old_size - size_to_free);
Josef Bacikba1bf482009-09-11 16:11:19 -04003496 if (ret == -ENOSPC)
3497 break;
Liu Bo5a488b92016-07-12 11:24:21 -07003498 if (ret) {
3499 /* btrfs_shrink_device never returns ret > 0 */
3500 WARN_ON(ret > 0);
3501 goto error;
3502 }
Chris Masonec44a352008-04-28 15:29:52 -04003503
Yan, Zhenga22285a2010-05-16 10:48:46 -04003504 trans = btrfs_start_transaction(dev_root, 0);
Liu Bo5a488b92016-07-12 11:24:21 -07003505 if (IS_ERR(trans)) {
3506 ret = PTR_ERR(trans);
3507 btrfs_info_in_rcu(fs_info,
3508 "resize: unable to start transaction after shrinking device %s (error %d), old size %llu, new size %llu",
3509 rcu_str_deref(device->name), ret,
3510 old_size, old_size - size_to_free);
3511 goto error;
3512 }
Chris Masonec44a352008-04-28 15:29:52 -04003513
3514 ret = btrfs_grow_device(trans, device, old_size);
Liu Bo5a488b92016-07-12 11:24:21 -07003515 if (ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003516 btrfs_end_transaction(trans);
Liu Bo5a488b92016-07-12 11:24:21 -07003517 /* btrfs_grow_device never returns ret > 0 */
3518 WARN_ON(ret > 0);
3519 btrfs_info_in_rcu(fs_info,
3520 "resize: unable to grow device after shrinking device %s (error %d), old size %llu, new size %llu",
3521 rcu_str_deref(device->name), ret,
3522 old_size, old_size - size_to_free);
3523 goto error;
3524 }
Chris Masonec44a352008-04-28 15:29:52 -04003525
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003526 btrfs_end_transaction(trans);
Chris Masonec44a352008-04-28 15:29:52 -04003527 }
3528
3529 /* step two, relocate all the chunks */
3530 path = btrfs_alloc_path();
Mark Fasheh17e9f792011-07-12 11:10:23 -07003531 if (!path) {
3532 ret = -ENOMEM;
3533 goto error;
3534 }
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003535
3536 /* zero out stat counters */
3537 spin_lock(&fs_info->balance_lock);
3538 memset(&bctl->stat, 0, sizeof(bctl->stat));
3539 spin_unlock(&fs_info->balance_lock);
3540again:
David Sterba7d824b62014-05-07 17:37:51 +02003541 if (!counting) {
David Sterba12907fc2015-10-10 17:16:50 +02003542 /*
3543 * The single value limit and min/max limits use the same bytes
3544 * in the
3545 */
David Sterba7d824b62014-05-07 17:37:51 +02003546 bctl->data.limit = limit_data;
3547 bctl->meta.limit = limit_meta;
3548 bctl->sys.limit = limit_sys;
3549 }
Chris Masonec44a352008-04-28 15:29:52 -04003550 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
3551 key.offset = (u64)-1;
3552 key.type = BTRFS_CHUNK_ITEM_KEY;
3553
Chris Masond3977122009-01-05 21:25:51 -05003554 while (1) {
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003555 if ((!counting && atomic_read(&fs_info->balance_pause_req)) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003556 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003557 ret = -ECANCELED;
3558 goto error;
3559 }
3560
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003561 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003562 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003563 if (ret < 0) {
3564 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003565 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003566 }
Chris Masonec44a352008-04-28 15:29:52 -04003567
3568 /*
3569 * this shouldn't happen, it means the last relocate
3570 * failed
3571 */
3572 if (ret == 0)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003573 BUG(); /* FIXME break ? */
Chris Masonec44a352008-04-28 15:29:52 -04003574
3575 ret = btrfs_previous_item(chunk_root, path, 0,
3576 BTRFS_CHUNK_ITEM_KEY);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003577 if (ret) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003578 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003579 ret = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003580 break;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003581 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003582
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003583 leaf = path->nodes[0];
3584 slot = path->slots[0];
3585 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3586
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003587 if (found_key.objectid != key.objectid) {
3588 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003589 break;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003590 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003591
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003592 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
David Sterba12907fc2015-10-10 17:16:50 +02003593 chunk_type = btrfs_chunk_type(leaf, chunk);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003594
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003595 if (!counting) {
3596 spin_lock(&fs_info->balance_lock);
3597 bctl->stat.considered++;
3598 spin_unlock(&fs_info->balance_lock);
3599 }
3600
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003601 ret = should_balance_chunk(fs_info, leaf, chunk,
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003602 found_key.offset);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003603
David Sterbab3b4aa72011-04-21 01:20:15 +02003604 btrfs_release_path(path);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003605 if (!ret) {
3606 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003607 goto loop;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003608 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003609
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003610 if (counting) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003611 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003612 spin_lock(&fs_info->balance_lock);
3613 bctl->stat.expected++;
3614 spin_unlock(&fs_info->balance_lock);
David Sterba12907fc2015-10-10 17:16:50 +02003615
3616 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3617 count_data++;
3618 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3619 count_sys++;
3620 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3621 count_meta++;
3622
3623 goto loop;
3624 }
3625
3626 /*
3627 * Apply limit_min filter, no need to check if the LIMITS
3628 * filter is used, limit_min is 0 by default
3629 */
3630 if (((chunk_type & BTRFS_BLOCK_GROUP_DATA) &&
3631 count_data < bctl->data.limit_min)
3632 || ((chunk_type & BTRFS_BLOCK_GROUP_METADATA) &&
3633 count_meta < bctl->meta.limit_min)
3634 || ((chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) &&
3635 count_sys < bctl->sys.limit_min)) {
3636 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003637 goto loop;
3638 }
3639
Liu Bocf25ce52015-12-14 18:29:32 -08003640 ASSERT(fs_info->data_sinfo);
3641 spin_lock(&fs_info->data_sinfo->lock);
3642 bytes_used = fs_info->data_sinfo->bytes_used;
3643 spin_unlock(&fs_info->data_sinfo->lock);
3644
3645 if ((chunk_type & BTRFS_BLOCK_GROUP_DATA) &&
3646 !chunk_reserved && !bytes_used) {
Zhao Lei2c9fe832015-11-09 11:51:32 +08003647 trans = btrfs_start_transaction(chunk_root, 0);
3648 if (IS_ERR(trans)) {
3649 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
3650 ret = PTR_ERR(trans);
3651 goto error;
3652 }
3653
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003654 ret = btrfs_force_chunk_alloc(trans, fs_info,
Zhao Lei2c9fe832015-11-09 11:51:32 +08003655 BTRFS_BLOCK_GROUP_DATA);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003656 btrfs_end_transaction(trans);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003657 if (ret < 0) {
3658 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
3659 goto error;
3660 }
Zhao Lei2c9fe832015-11-09 11:51:32 +08003661 chunk_reserved = 1;
3662 }
3663
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04003664 ret = btrfs_relocate_chunk(fs_info, found_key.offset);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003665 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacik508794e2011-07-02 21:24:41 +00003666 if (ret && ret != -ENOSPC)
3667 goto error;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003668 if (ret == -ENOSPC) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003669 enospc_errors++;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003670 } else {
3671 spin_lock(&fs_info->balance_lock);
3672 bctl->stat.completed++;
3673 spin_unlock(&fs_info->balance_lock);
3674 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003675loop:
Ilya Dryomov795a3322013-08-27 13:50:44 +03003676 if (found_key.offset == 0)
3677 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04003678 key.offset = found_key.offset - 1;
Chris Masonec44a352008-04-28 15:29:52 -04003679 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003680
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003681 if (counting) {
3682 btrfs_release_path(path);
3683 counting = false;
3684 goto again;
3685 }
Chris Masonec44a352008-04-28 15:29:52 -04003686error:
3687 btrfs_free_path(path);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003688 if (enospc_errors) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003689 btrfs_info(fs_info, "%d enospc errors during balance",
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003690 enospc_errors);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003691 if (!ret)
3692 ret = -ENOSPC;
3693 }
3694
Chris Masonec44a352008-04-28 15:29:52 -04003695 return ret;
3696}
3697
Ilya Dryomov0c460c02012-03-27 17:09:17 +03003698/**
3699 * alloc_profile_is_valid - see if a given profile is valid and reduced
3700 * @flags: profile to validate
3701 * @extended: if true @flags is treated as an extended profile
3702 */
3703static int alloc_profile_is_valid(u64 flags, int extended)
3704{
3705 u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK :
3706 BTRFS_BLOCK_GROUP_PROFILE_MASK);
3707
3708 flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK;
3709
3710 /* 1) check that all other bits are zeroed */
3711 if (flags & ~mask)
3712 return 0;
3713
3714 /* 2) see if profile is reduced */
3715 if (flags == 0)
3716 return !extended; /* "0" is valid for usual profiles */
3717
3718 /* true if exactly one bit set */
3719 return (flags & (flags - 1)) == 0;
3720}
3721
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003722static inline int balance_need_close(struct btrfs_fs_info *fs_info)
3723{
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003724 /* cancel requested || normal exit path */
3725 return atomic_read(&fs_info->balance_cancel_req) ||
3726 (atomic_read(&fs_info->balance_pause_req) == 0 &&
3727 atomic_read(&fs_info->balance_cancel_req) == 0);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003728}
3729
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003730static void __cancel_balance(struct btrfs_fs_info *fs_info)
3731{
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003732 int ret;
3733
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003734 unset_balance_control(fs_info);
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003735 ret = del_balance_item(fs_info);
Liu Bo0f788c52013-03-04 16:25:40 +00003736 if (ret)
Anand Jain34d97002016-03-16 16:43:06 +08003737 btrfs_handle_fs_error(fs_info, ret, NULL);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003738
3739 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003740}
3741
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003742/* Non-zero return value signifies invalidity */
3743static inline int validate_convert_profile(struct btrfs_balance_args *bctl_arg,
3744 u64 allowed)
3745{
3746 return ((bctl_arg->flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3747 (!alloc_profile_is_valid(bctl_arg->target, 1) ||
3748 (bctl_arg->target & ~allowed)));
3749}
3750
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003751/*
3752 * Should be called with both balance and volume mutexes held
3753 */
3754int btrfs_balance(struct btrfs_balance_control *bctl,
3755 struct btrfs_ioctl_balance_args *bargs)
3756{
3757 struct btrfs_fs_info *fs_info = bctl->fs_info;
Adam Borowski14506122017-03-07 23:34:44 +01003758 u64 meta_target, data_target;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003759 u64 allowed;
Ilya Dryomove4837f82012-03-27 17:09:17 +03003760 int mixed = 0;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003761 int ret;
Stefan Behrens8dabb742012-11-06 13:15:27 +01003762 u64 num_devices;
Miao Xiede98ced2013-01-29 10:13:12 +00003763 unsigned seq;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003764
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003765 if (btrfs_fs_closing(fs_info) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003766 atomic_read(&fs_info->balance_pause_req) ||
3767 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003768 ret = -EINVAL;
3769 goto out;
3770 }
3771
Ilya Dryomove4837f82012-03-27 17:09:17 +03003772 allowed = btrfs_super_incompat_flags(fs_info->super_copy);
3773 if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
3774 mixed = 1;
3775
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003776 /*
3777 * In case of mixed groups both data and meta should be picked,
3778 * and identical options should be given for both of them.
3779 */
Ilya Dryomove4837f82012-03-27 17:09:17 +03003780 allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA;
3781 if (mixed && (bctl->flags & allowed)) {
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003782 if (!(bctl->flags & BTRFS_BALANCE_DATA) ||
3783 !(bctl->flags & BTRFS_BALANCE_METADATA) ||
3784 memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003785 btrfs_err(fs_info,
3786 "with mixed groups data and metadata balance options must be the same");
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003787 ret = -EINVAL;
3788 goto out;
3789 }
3790 }
3791
Stefan Behrens8dabb742012-11-06 13:15:27 +01003792 num_devices = fs_info->fs_devices->num_devices;
Liu Bo73beece2015-07-17 16:49:19 +08003793 btrfs_dev_replace_lock(&fs_info->dev_replace, 0);
Stefan Behrens8dabb742012-11-06 13:15:27 +01003794 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
3795 BUG_ON(num_devices < 1);
3796 num_devices--;
3797 }
Liu Bo73beece2015-07-17 16:49:19 +08003798 btrfs_dev_replace_unlock(&fs_info->dev_replace, 0);
Austin S. Hemmelgarn88be1592016-03-23 14:22:59 -04003799 allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE | BTRFS_BLOCK_GROUP_DUP;
3800 if (num_devices > 1)
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003801 allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1);
Andreas Philipp8250dab2013-05-11 11:13:03 +00003802 if (num_devices > 2)
3803 allowed |= BTRFS_BLOCK_GROUP_RAID5;
3804 if (num_devices > 3)
3805 allowed |= (BTRFS_BLOCK_GROUP_RAID10 |
3806 BTRFS_BLOCK_GROUP_RAID6);
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003807 if (validate_convert_profile(&bctl->data, allowed)) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003808 btrfs_err(fs_info,
3809 "unable to start balance with target data profile %llu",
3810 bctl->data.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003811 ret = -EINVAL;
3812 goto out;
3813 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003814 if (validate_convert_profile(&bctl->meta, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003815 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003816 "unable to start balance with target metadata profile %llu",
3817 bctl->meta.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003818 ret = -EINVAL;
3819 goto out;
3820 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003821 if (validate_convert_profile(&bctl->sys, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003822 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003823 "unable to start balance with target system profile %llu",
3824 bctl->sys.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003825 ret = -EINVAL;
3826 goto out;
3827 }
3828
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003829 /* allow to reduce meta or sys integrity only if force set */
3830 allowed = BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05003831 BTRFS_BLOCK_GROUP_RAID10 |
3832 BTRFS_BLOCK_GROUP_RAID5 |
3833 BTRFS_BLOCK_GROUP_RAID6;
Miao Xiede98ced2013-01-29 10:13:12 +00003834 do {
3835 seq = read_seqbegin(&fs_info->profiles_lock);
3836
3837 if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3838 (fs_info->avail_system_alloc_bits & allowed) &&
3839 !(bctl->sys.target & allowed)) ||
3840 ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3841 (fs_info->avail_metadata_alloc_bits & allowed) &&
3842 !(bctl->meta.target & allowed))) {
3843 if (bctl->flags & BTRFS_BALANCE_FORCE) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003844 btrfs_info(fs_info,
3845 "force reducing metadata integrity");
Miao Xiede98ced2013-01-29 10:13:12 +00003846 } else {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003847 btrfs_err(fs_info,
3848 "balance will reduce metadata integrity, use force if you want this");
Miao Xiede98ced2013-01-29 10:13:12 +00003849 ret = -EINVAL;
3850 goto out;
3851 }
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003852 }
Miao Xiede98ced2013-01-29 10:13:12 +00003853 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003854
Adam Borowski14506122017-03-07 23:34:44 +01003855 /* if we're not converting, the target field is uninitialized */
3856 meta_target = (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) ?
3857 bctl->meta.target : fs_info->avail_metadata_alloc_bits;
3858 data_target = (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) ?
3859 bctl->data.target : fs_info->avail_data_alloc_bits;
3860 if (btrfs_get_num_tolerated_disk_barrier_failures(meta_target) <
3861 btrfs_get_num_tolerated_disk_barrier_failures(data_target)) {
Sam Tygieree592d02016-01-06 08:46:12 +00003862 btrfs_warn(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003863 "metadata profile 0x%llx has lower redundancy than data profile 0x%llx",
Adam Borowski14506122017-03-07 23:34:44 +01003864 meta_target, data_target);
Sam Tygieree592d02016-01-06 08:46:12 +00003865 }
3866
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003867 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
Zhao Lei943c6e92015-08-19 15:54:15 +08003868 fs_info->num_tolerated_disk_barrier_failures = min(
3869 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info),
3870 btrfs_get_num_tolerated_disk_barrier_failures(
3871 bctl->sys.target));
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003872 }
3873
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003874 ret = insert_balance_item(fs_info, bctl);
Ilya Dryomov59641012012-01-16 22:04:48 +02003875 if (ret && ret != -EEXIST)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003876 goto out;
3877
Ilya Dryomov59641012012-01-16 22:04:48 +02003878 if (!(bctl->flags & BTRFS_BALANCE_RESUME)) {
3879 BUG_ON(ret == -EEXIST);
3880 set_balance_control(bctl);
3881 } else {
3882 BUG_ON(ret != -EEXIST);
3883 spin_lock(&fs_info->balance_lock);
3884 update_balance_args(bctl);
3885 spin_unlock(&fs_info->balance_lock);
3886 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003887
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003888 atomic_inc(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003889 mutex_unlock(&fs_info->balance_mutex);
3890
3891 ret = __btrfs_balance(fs_info);
3892
3893 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003894 atomic_dec(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003895
Ilya Dryomovbf023ec2013-02-12 16:27:46 +00003896 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3897 fs_info->num_tolerated_disk_barrier_failures =
3898 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info);
3899 }
3900
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003901 if (bargs) {
3902 memset(bargs, 0, sizeof(*bargs));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003903 update_ioctl_balance_args(fs_info, 0, bargs);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003904 }
3905
Ilya Dryomov3a01aa72013-03-06 01:57:55 -07003906 if ((ret && ret != -ECANCELED && ret != -ENOSPC) ||
3907 balance_need_close(fs_info)) {
3908 __cancel_balance(fs_info);
3909 }
3910
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003911 wake_up(&fs_info->balance_wait_q);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003912
3913 return ret;
3914out:
Ilya Dryomov59641012012-01-16 22:04:48 +02003915 if (bctl->flags & BTRFS_BALANCE_RESUME)
3916 __cancel_balance(fs_info);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003917 else {
Ilya Dryomov59641012012-01-16 22:04:48 +02003918 kfree(bctl);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003919 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
3920 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003921 return ret;
3922}
3923
3924static int balance_kthread(void *data)
3925{
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003926 struct btrfs_fs_info *fs_info = data;
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003927 int ret = 0;
Ilya Dryomov59641012012-01-16 22:04:48 +02003928
3929 mutex_lock(&fs_info->volume_mutex);
3930 mutex_lock(&fs_info->balance_mutex);
3931
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003932 if (fs_info->balance_ctl) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003933 btrfs_info(fs_info, "continuing balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003934 ret = btrfs_balance(fs_info->balance_ctl, NULL);
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003935 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003936
3937 mutex_unlock(&fs_info->balance_mutex);
3938 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003939
Ilya Dryomov59641012012-01-16 22:04:48 +02003940 return ret;
3941}
3942
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003943int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info)
3944{
3945 struct task_struct *tsk;
3946
3947 spin_lock(&fs_info->balance_lock);
3948 if (!fs_info->balance_ctl) {
3949 spin_unlock(&fs_info->balance_lock);
3950 return 0;
3951 }
3952 spin_unlock(&fs_info->balance_lock);
3953
Jeff Mahoney3cdde222016-06-09 21:38:35 -04003954 if (btrfs_test_opt(fs_info, SKIP_BALANCE)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003955 btrfs_info(fs_info, "force skipping balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003956 return 0;
3957 }
3958
3959 tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance");
Sachin Kamatcd633972013-07-15 16:52:18 +05303960 return PTR_ERR_OR_ZERO(tsk);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003961}
3962
Ilya Dryomov68310a52012-06-22 12:24:12 -06003963int btrfs_recover_balance(struct btrfs_fs_info *fs_info)
Ilya Dryomov59641012012-01-16 22:04:48 +02003964{
Ilya Dryomov59641012012-01-16 22:04:48 +02003965 struct btrfs_balance_control *bctl;
3966 struct btrfs_balance_item *item;
3967 struct btrfs_disk_balance_args disk_bargs;
3968 struct btrfs_path *path;
3969 struct extent_buffer *leaf;
3970 struct btrfs_key key;
3971 int ret;
3972
3973 path = btrfs_alloc_path();
3974 if (!path)
3975 return -ENOMEM;
3976
Ilya Dryomov68310a52012-06-22 12:24:12 -06003977 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003978 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov68310a52012-06-22 12:24:12 -06003979 key.offset = 0;
3980
3981 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
3982 if (ret < 0)
3983 goto out;
3984 if (ret > 0) { /* ret = -ENOENT; */
3985 ret = 0;
3986 goto out;
3987 }
3988
Ilya Dryomov59641012012-01-16 22:04:48 +02003989 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
3990 if (!bctl) {
3991 ret = -ENOMEM;
3992 goto out;
3993 }
3994
Ilya Dryomov59641012012-01-16 22:04:48 +02003995 leaf = path->nodes[0];
3996 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
3997
Ilya Dryomov68310a52012-06-22 12:24:12 -06003998 bctl->fs_info = fs_info;
3999 bctl->flags = btrfs_balance_flags(leaf, item);
4000 bctl->flags |= BTRFS_BALANCE_RESUME;
Ilya Dryomov59641012012-01-16 22:04:48 +02004001
4002 btrfs_balance_data(leaf, item, &disk_bargs);
4003 btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs);
4004 btrfs_balance_meta(leaf, item, &disk_bargs);
4005 btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs);
4006 btrfs_balance_sys(leaf, item, &disk_bargs);
4007 btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs);
4008
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004009 WARN_ON(atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1));
4010
Ilya Dryomov68310a52012-06-22 12:24:12 -06004011 mutex_lock(&fs_info->volume_mutex);
4012 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02004013
Ilya Dryomov68310a52012-06-22 12:24:12 -06004014 set_balance_control(bctl);
4015
4016 mutex_unlock(&fs_info->balance_mutex);
4017 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02004018out:
4019 btrfs_free_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04004020 return ret;
4021}
4022
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004023int btrfs_pause_balance(struct btrfs_fs_info *fs_info)
4024{
4025 int ret = 0;
4026
4027 mutex_lock(&fs_info->balance_mutex);
4028 if (!fs_info->balance_ctl) {
4029 mutex_unlock(&fs_info->balance_mutex);
4030 return -ENOTCONN;
4031 }
4032
4033 if (atomic_read(&fs_info->balance_running)) {
4034 atomic_inc(&fs_info->balance_pause_req);
4035 mutex_unlock(&fs_info->balance_mutex);
4036
4037 wait_event(fs_info->balance_wait_q,
4038 atomic_read(&fs_info->balance_running) == 0);
4039
4040 mutex_lock(&fs_info->balance_mutex);
4041 /* we are good with balance_ctl ripped off from under us */
4042 BUG_ON(atomic_read(&fs_info->balance_running));
4043 atomic_dec(&fs_info->balance_pause_req);
4044 } else {
4045 ret = -ENOTCONN;
4046 }
4047
4048 mutex_unlock(&fs_info->balance_mutex);
4049 return ret;
4050}
4051
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004052int btrfs_cancel_balance(struct btrfs_fs_info *fs_info)
4053{
Ilya Dryomove649e582013-10-10 20:40:21 +03004054 if (fs_info->sb->s_flags & MS_RDONLY)
4055 return -EROFS;
4056
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004057 mutex_lock(&fs_info->balance_mutex);
4058 if (!fs_info->balance_ctl) {
4059 mutex_unlock(&fs_info->balance_mutex);
4060 return -ENOTCONN;
4061 }
4062
4063 atomic_inc(&fs_info->balance_cancel_req);
4064 /*
4065 * if we are running just wait and return, balance item is
4066 * deleted in btrfs_balance in this case
4067 */
4068 if (atomic_read(&fs_info->balance_running)) {
4069 mutex_unlock(&fs_info->balance_mutex);
4070 wait_event(fs_info->balance_wait_q,
4071 atomic_read(&fs_info->balance_running) == 0);
4072 mutex_lock(&fs_info->balance_mutex);
4073 } else {
4074 /* __cancel_balance needs volume_mutex */
4075 mutex_unlock(&fs_info->balance_mutex);
4076 mutex_lock(&fs_info->volume_mutex);
4077 mutex_lock(&fs_info->balance_mutex);
4078
4079 if (fs_info->balance_ctl)
4080 __cancel_balance(fs_info);
4081
4082 mutex_unlock(&fs_info->volume_mutex);
4083 }
4084
4085 BUG_ON(fs_info->balance_ctl || atomic_read(&fs_info->balance_running));
4086 atomic_dec(&fs_info->balance_cancel_req);
4087 mutex_unlock(&fs_info->balance_mutex);
4088 return 0;
4089}
4090
Stefan Behrens803b2f52013-08-15 17:11:21 +02004091static int btrfs_uuid_scan_kthread(void *data)
4092{
4093 struct btrfs_fs_info *fs_info = data;
4094 struct btrfs_root *root = fs_info->tree_root;
4095 struct btrfs_key key;
4096 struct btrfs_key max_key;
4097 struct btrfs_path *path = NULL;
4098 int ret = 0;
4099 struct extent_buffer *eb;
4100 int slot;
4101 struct btrfs_root_item root_item;
4102 u32 item_size;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004103 struct btrfs_trans_handle *trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004104
4105 path = btrfs_alloc_path();
4106 if (!path) {
4107 ret = -ENOMEM;
4108 goto out;
4109 }
4110
4111 key.objectid = 0;
4112 key.type = BTRFS_ROOT_ITEM_KEY;
4113 key.offset = 0;
4114
4115 max_key.objectid = (u64)-1;
4116 max_key.type = BTRFS_ROOT_ITEM_KEY;
4117 max_key.offset = (u64)-1;
4118
Stefan Behrens803b2f52013-08-15 17:11:21 +02004119 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01004120 ret = btrfs_search_forward(root, &key, path, 0);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004121 if (ret) {
4122 if (ret > 0)
4123 ret = 0;
4124 break;
4125 }
4126
4127 if (key.type != BTRFS_ROOT_ITEM_KEY ||
4128 (key.objectid < BTRFS_FIRST_FREE_OBJECTID &&
4129 key.objectid != BTRFS_FS_TREE_OBJECTID) ||
4130 key.objectid > BTRFS_LAST_FREE_OBJECTID)
4131 goto skip;
4132
4133 eb = path->nodes[0];
4134 slot = path->slots[0];
4135 item_size = btrfs_item_size_nr(eb, slot);
4136 if (item_size < sizeof(root_item))
4137 goto skip;
4138
Stefan Behrens803b2f52013-08-15 17:11:21 +02004139 read_extent_buffer(eb, &root_item,
4140 btrfs_item_ptr_offset(eb, slot),
4141 (int)sizeof(root_item));
4142 if (btrfs_root_refs(&root_item) == 0)
4143 goto skip;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004144
4145 if (!btrfs_is_empty_uuid(root_item.uuid) ||
4146 !btrfs_is_empty_uuid(root_item.received_uuid)) {
4147 if (trans)
4148 goto update_tree;
4149
4150 btrfs_release_path(path);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004151 /*
4152 * 1 - subvol uuid item
4153 * 1 - received_subvol uuid item
4154 */
4155 trans = btrfs_start_transaction(fs_info->uuid_root, 2);
4156 if (IS_ERR(trans)) {
4157 ret = PTR_ERR(trans);
4158 break;
4159 }
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004160 continue;
4161 } else {
4162 goto skip;
4163 }
4164update_tree:
4165 if (!btrfs_is_empty_uuid(root_item.uuid)) {
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004166 ret = btrfs_uuid_tree_add(trans, fs_info,
Stefan Behrens803b2f52013-08-15 17:11:21 +02004167 root_item.uuid,
4168 BTRFS_UUID_KEY_SUBVOL,
4169 key.objectid);
4170 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004171 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004172 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004173 break;
4174 }
4175 }
4176
4177 if (!btrfs_is_empty_uuid(root_item.received_uuid)) {
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004178 ret = btrfs_uuid_tree_add(trans, fs_info,
Stefan Behrens803b2f52013-08-15 17:11:21 +02004179 root_item.received_uuid,
4180 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4181 key.objectid);
4182 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004183 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004184 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004185 break;
4186 }
4187 }
4188
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004189skip:
Stefan Behrens803b2f52013-08-15 17:11:21 +02004190 if (trans) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004191 ret = btrfs_end_transaction(trans);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004192 trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004193 if (ret)
4194 break;
4195 }
4196
Stefan Behrens803b2f52013-08-15 17:11:21 +02004197 btrfs_release_path(path);
4198 if (key.offset < (u64)-1) {
4199 key.offset++;
4200 } else if (key.type < BTRFS_ROOT_ITEM_KEY) {
4201 key.offset = 0;
4202 key.type = BTRFS_ROOT_ITEM_KEY;
4203 } else if (key.objectid < (u64)-1) {
4204 key.offset = 0;
4205 key.type = BTRFS_ROOT_ITEM_KEY;
4206 key.objectid++;
4207 } else {
4208 break;
4209 }
4210 cond_resched();
4211 }
4212
4213out:
4214 btrfs_free_path(path);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004215 if (trans && !IS_ERR(trans))
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004216 btrfs_end_transaction(trans);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004217 if (ret)
Frank Holtonefe120a2013-12-20 11:37:06 -05004218 btrfs_warn(fs_info, "btrfs_uuid_scan_kthread failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004219 else
Josef Bacikafcdd122016-09-02 15:40:02 -04004220 set_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004221 up(&fs_info->uuid_tree_rescan_sem);
4222 return 0;
4223}
4224
Stefan Behrens70f80172013-08-15 17:11:23 +02004225/*
4226 * Callback for btrfs_uuid_tree_iterate().
4227 * returns:
4228 * 0 check succeeded, the entry is not outdated.
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08004229 * < 0 if an error occurred.
Stefan Behrens70f80172013-08-15 17:11:23 +02004230 * > 0 if the check failed, which means the caller shall remove the entry.
4231 */
4232static int btrfs_check_uuid_tree_entry(struct btrfs_fs_info *fs_info,
4233 u8 *uuid, u8 type, u64 subid)
4234{
4235 struct btrfs_key key;
4236 int ret = 0;
4237 struct btrfs_root *subvol_root;
4238
4239 if (type != BTRFS_UUID_KEY_SUBVOL &&
4240 type != BTRFS_UUID_KEY_RECEIVED_SUBVOL)
4241 goto out;
4242
4243 key.objectid = subid;
4244 key.type = BTRFS_ROOT_ITEM_KEY;
4245 key.offset = (u64)-1;
4246 subvol_root = btrfs_read_fs_root_no_name(fs_info, &key);
4247 if (IS_ERR(subvol_root)) {
4248 ret = PTR_ERR(subvol_root);
4249 if (ret == -ENOENT)
4250 ret = 1;
4251 goto out;
4252 }
4253
4254 switch (type) {
4255 case BTRFS_UUID_KEY_SUBVOL:
4256 if (memcmp(uuid, subvol_root->root_item.uuid, BTRFS_UUID_SIZE))
4257 ret = 1;
4258 break;
4259 case BTRFS_UUID_KEY_RECEIVED_SUBVOL:
4260 if (memcmp(uuid, subvol_root->root_item.received_uuid,
4261 BTRFS_UUID_SIZE))
4262 ret = 1;
4263 break;
4264 }
4265
4266out:
4267 return ret;
4268}
4269
4270static int btrfs_uuid_rescan_kthread(void *data)
4271{
4272 struct btrfs_fs_info *fs_info = (struct btrfs_fs_info *)data;
4273 int ret;
4274
4275 /*
4276 * 1st step is to iterate through the existing UUID tree and
4277 * to delete all entries that contain outdated data.
4278 * 2nd step is to add all missing entries to the UUID tree.
4279 */
4280 ret = btrfs_uuid_tree_iterate(fs_info, btrfs_check_uuid_tree_entry);
4281 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004282 btrfs_warn(fs_info, "iterating uuid_tree failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004283 up(&fs_info->uuid_tree_rescan_sem);
4284 return ret;
4285 }
4286 return btrfs_uuid_scan_kthread(data);
4287}
4288
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004289int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info)
4290{
4291 struct btrfs_trans_handle *trans;
4292 struct btrfs_root *tree_root = fs_info->tree_root;
4293 struct btrfs_root *uuid_root;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004294 struct task_struct *task;
4295 int ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004296
4297 /*
4298 * 1 - root node
4299 * 1 - root item
4300 */
4301 trans = btrfs_start_transaction(tree_root, 2);
4302 if (IS_ERR(trans))
4303 return PTR_ERR(trans);
4304
4305 uuid_root = btrfs_create_tree(trans, fs_info,
4306 BTRFS_UUID_TREE_OBJECTID);
4307 if (IS_ERR(uuid_root)) {
David Sterba6d13f542015-04-24 19:12:01 +02004308 ret = PTR_ERR(uuid_root);
Jeff Mahoney66642832016-06-10 18:19:25 -04004309 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004310 btrfs_end_transaction(trans);
David Sterba6d13f542015-04-24 19:12:01 +02004311 return ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004312 }
4313
4314 fs_info->uuid_root = uuid_root;
4315
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004316 ret = btrfs_commit_transaction(trans);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004317 if (ret)
4318 return ret;
4319
4320 down(&fs_info->uuid_tree_rescan_sem);
4321 task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid");
4322 if (IS_ERR(task)) {
Stefan Behrens70f80172013-08-15 17:11:23 +02004323 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004324 btrfs_warn(fs_info, "failed to start uuid_scan task");
Stefan Behrens803b2f52013-08-15 17:11:21 +02004325 up(&fs_info->uuid_tree_rescan_sem);
4326 return PTR_ERR(task);
4327 }
4328
4329 return 0;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004330}
Stefan Behrens803b2f52013-08-15 17:11:21 +02004331
Stefan Behrens70f80172013-08-15 17:11:23 +02004332int btrfs_check_uuid_tree(struct btrfs_fs_info *fs_info)
4333{
4334 struct task_struct *task;
4335
4336 down(&fs_info->uuid_tree_rescan_sem);
4337 task = kthread_run(btrfs_uuid_rescan_kthread, fs_info, "btrfs-uuid");
4338 if (IS_ERR(task)) {
4339 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004340 btrfs_warn(fs_info, "failed to start uuid_rescan task");
Stefan Behrens70f80172013-08-15 17:11:23 +02004341 up(&fs_info->uuid_tree_rescan_sem);
4342 return PTR_ERR(task);
4343 }
4344
4345 return 0;
4346}
4347
Chris Mason8f18cf12008-04-25 16:53:30 -04004348/*
4349 * shrinking a device means finding all of the device extents past
4350 * the new size, and then following the back refs to the chunks.
4351 * The chunk relocation code actually frees the device extent
4352 */
4353int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
4354{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004355 struct btrfs_fs_info *fs_info = device->fs_info;
4356 struct btrfs_root *root = fs_info->dev_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04004357 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04004358 struct btrfs_dev_extent *dev_extent = NULL;
4359 struct btrfs_path *path;
4360 u64 length;
Chris Mason8f18cf12008-04-25 16:53:30 -04004361 u64 chunk_offset;
4362 int ret;
4363 int slot;
Josef Bacikba1bf482009-09-11 16:11:19 -04004364 int failed = 0;
4365 bool retried = false;
Filipe Manana53e489b2015-06-02 14:43:21 +01004366 bool checked_pending_chunks = false;
Chris Mason8f18cf12008-04-25 16:53:30 -04004367 struct extent_buffer *l;
4368 struct btrfs_key key;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004369 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04004370 u64 old_total = btrfs_super_total_bytes(super_copy);
Miao Xie7cc8e582014-09-03 21:35:38 +08004371 u64 old_size = btrfs_device_get_total_bytes(device);
4372 u64 diff = old_size - new_size;
Chris Mason8f18cf12008-04-25 16:53:30 -04004373
Stefan Behrens63a212a2012-11-05 18:29:28 +01004374 if (device->is_tgtdev_for_dev_replace)
4375 return -EINVAL;
4376
Chris Mason8f18cf12008-04-25 16:53:30 -04004377 path = btrfs_alloc_path();
4378 if (!path)
4379 return -ENOMEM;
4380
David Sterbae4058b52015-11-27 16:31:35 +01004381 path->reada = READA_FORWARD;
Chris Mason8f18cf12008-04-25 16:53:30 -04004382
David Sterba34441362016-10-04 19:34:27 +02004383 mutex_lock(&fs_info->chunk_mutex);
Chris Mason7d9eb122008-07-08 14:19:17 -04004384
Miao Xie7cc8e582014-09-03 21:35:38 +08004385 btrfs_device_set_total_bytes(device, new_size);
Josef Bacik2bf64752011-09-26 17:12:22 -04004386 if (device->writeable) {
Yan Zheng2b820322008-11-17 21:11:30 -05004387 device->fs_devices->total_rw_bytes -= diff;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004388 spin_lock(&fs_info->free_chunk_lock);
4389 fs_info->free_chunk_space -= diff;
4390 spin_unlock(&fs_info->free_chunk_lock);
Josef Bacik2bf64752011-09-26 17:12:22 -04004391 }
David Sterba34441362016-10-04 19:34:27 +02004392 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004393
Josef Bacikba1bf482009-09-11 16:11:19 -04004394again:
Chris Mason8f18cf12008-04-25 16:53:30 -04004395 key.objectid = device->devid;
4396 key.offset = (u64)-1;
4397 key.type = BTRFS_DEV_EXTENT_KEY;
4398
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004399 do {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004400 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004401 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004402 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004403 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004404 goto done;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004405 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004406
4407 ret = btrfs_previous_item(root, path, 0, key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004408 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004409 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004410 if (ret < 0)
4411 goto done;
4412 if (ret) {
4413 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02004414 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004415 break;
Chris Mason8f18cf12008-04-25 16:53:30 -04004416 }
4417
4418 l = path->nodes[0];
4419 slot = path->slots[0];
4420 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
4421
Josef Bacikba1bf482009-09-11 16:11:19 -04004422 if (key.objectid != device->devid) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004423 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004424 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004425 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004426 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004427
4428 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
4429 length = btrfs_dev_extent_length(l, dev_extent);
4430
Josef Bacikba1bf482009-09-11 16:11:19 -04004431 if (key.offset + length <= new_size) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004432 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004433 btrfs_release_path(path);
Chris Balld6397ba2009-04-27 07:29:03 -04004434 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004435 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004436
Chris Mason8f18cf12008-04-25 16:53:30 -04004437 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
David Sterbab3b4aa72011-04-21 01:20:15 +02004438 btrfs_release_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04004439
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004440 ret = btrfs_relocate_chunk(fs_info, chunk_offset);
4441 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacikba1bf482009-09-11 16:11:19 -04004442 if (ret && ret != -ENOSPC)
Chris Mason8f18cf12008-04-25 16:53:30 -04004443 goto done;
Josef Bacikba1bf482009-09-11 16:11:19 -04004444 if (ret == -ENOSPC)
4445 failed++;
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004446 } while (key.offset-- > 0);
Josef Bacikba1bf482009-09-11 16:11:19 -04004447
4448 if (failed && !retried) {
4449 failed = 0;
4450 retried = true;
4451 goto again;
4452 } else if (failed && retried) {
4453 ret = -ENOSPC;
Josef Bacikba1bf482009-09-11 16:11:19 -04004454 goto done;
Chris Mason8f18cf12008-04-25 16:53:30 -04004455 }
4456
Chris Balld6397ba2009-04-27 07:29:03 -04004457 /* Shrinking succeeded, else we would be at "done". */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004458 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00004459 if (IS_ERR(trans)) {
4460 ret = PTR_ERR(trans);
4461 goto done;
4462 }
4463
David Sterba34441362016-10-04 19:34:27 +02004464 mutex_lock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004465
4466 /*
4467 * We checked in the above loop all device extents that were already in
4468 * the device tree. However before we have updated the device's
4469 * total_bytes to the new size, we might have had chunk allocations that
4470 * have not complete yet (new block groups attached to transaction
4471 * handles), and therefore their device extents were not yet in the
4472 * device tree and we missed them in the loop above. So if we have any
4473 * pending chunk using a device extent that overlaps the device range
4474 * that we can not use anymore, commit the current transaction and
4475 * repeat the search on the device tree - this way we guarantee we will
4476 * not have chunks using device extents that end beyond 'new_size'.
4477 */
4478 if (!checked_pending_chunks) {
4479 u64 start = new_size;
4480 u64 len = old_size - new_size;
4481
Jeff Mahoney499f3772015-06-15 09:41:17 -04004482 if (contains_pending_extent(trans->transaction, device,
4483 &start, len)) {
David Sterba34441362016-10-04 19:34:27 +02004484 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004485 checked_pending_chunks = true;
4486 failed = 0;
4487 retried = false;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004488 ret = btrfs_commit_transaction(trans);
Filipe Manana53e489b2015-06-02 14:43:21 +01004489 if (ret)
4490 goto done;
4491 goto again;
4492 }
4493 }
4494
Miao Xie7cc8e582014-09-03 21:35:38 +08004495 btrfs_device_set_disk_total_bytes(device, new_size);
Miao Xie935e5cc2014-09-03 21:35:33 +08004496 if (list_empty(&device->resized_list))
4497 list_add_tail(&device->resized_list,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004498 &fs_info->fs_devices->resized_devices);
Chris Balld6397ba2009-04-27 07:29:03 -04004499
Chris Balld6397ba2009-04-27 07:29:03 -04004500 WARN_ON(diff > old_total);
4501 btrfs_set_super_total_bytes(super_copy, old_total - diff);
David Sterba34441362016-10-04 19:34:27 +02004502 mutex_unlock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08004503
4504 /* Now btrfs_update_device() will change the on-disk size. */
4505 ret = btrfs_update_device(trans, device);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004506 btrfs_end_transaction(trans);
Chris Mason8f18cf12008-04-25 16:53:30 -04004507done:
4508 btrfs_free_path(path);
Filipe Manana53e489b2015-06-02 14:43:21 +01004509 if (ret) {
David Sterba34441362016-10-04 19:34:27 +02004510 mutex_lock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004511 btrfs_device_set_total_bytes(device, old_size);
4512 if (device->writeable)
4513 device->fs_devices->total_rw_bytes += diff;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004514 spin_lock(&fs_info->free_chunk_lock);
4515 fs_info->free_chunk_space += diff;
4516 spin_unlock(&fs_info->free_chunk_lock);
David Sterba34441362016-10-04 19:34:27 +02004517 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004518 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004519 return ret;
4520}
4521
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004522static int btrfs_add_system_chunk(struct btrfs_fs_info *fs_info,
Chris Mason0b86a832008-03-24 15:01:56 -04004523 struct btrfs_key *key,
4524 struct btrfs_chunk *chunk, int item_size)
4525{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004526 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason0b86a832008-03-24 15:01:56 -04004527 struct btrfs_disk_key disk_key;
4528 u32 array_size;
4529 u8 *ptr;
4530
David Sterba34441362016-10-04 19:34:27 +02004531 mutex_lock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04004532 array_size = btrfs_super_sys_array_size(super_copy);
Gui Hecheng5f43f862014-04-21 20:13:11 +08004533 if (array_size + item_size + sizeof(disk_key)
Miao Xiefe48a5c2014-09-03 21:35:39 +08004534 > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE) {
David Sterba34441362016-10-04 19:34:27 +02004535 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04004536 return -EFBIG;
Miao Xiefe48a5c2014-09-03 21:35:39 +08004537 }
Chris Mason0b86a832008-03-24 15:01:56 -04004538
4539 ptr = super_copy->sys_chunk_array + array_size;
4540 btrfs_cpu_key_to_disk(&disk_key, key);
4541 memcpy(ptr, &disk_key, sizeof(disk_key));
4542 ptr += sizeof(disk_key);
4543 memcpy(ptr, chunk, item_size);
4544 item_size += sizeof(disk_key);
4545 btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
David Sterba34441362016-10-04 19:34:27 +02004546 mutex_unlock(&fs_info->chunk_mutex);
Miao Xiefe48a5c2014-09-03 21:35:39 +08004547
Chris Mason0b86a832008-03-24 15:01:56 -04004548 return 0;
4549}
4550
Miao Xieb2117a32011-01-05 10:07:28 +00004551/*
Arne Jansen73c5de02011-04-12 12:07:57 +02004552 * sort the devices in descending order by max_avail, total_avail
Miao Xieb2117a32011-01-05 10:07:28 +00004553 */
Arne Jansen73c5de02011-04-12 12:07:57 +02004554static int btrfs_cmp_device_info(const void *a, const void *b)
Miao Xieb2117a32011-01-05 10:07:28 +00004555{
Arne Jansen73c5de02011-04-12 12:07:57 +02004556 const struct btrfs_device_info *di_a = a;
4557 const struct btrfs_device_info *di_b = b;
Miao Xieb2117a32011-01-05 10:07:28 +00004558
Arne Jansen73c5de02011-04-12 12:07:57 +02004559 if (di_a->max_avail > di_b->max_avail)
4560 return -1;
4561 if (di_a->max_avail < di_b->max_avail)
4562 return 1;
4563 if (di_a->total_avail > di_b->total_avail)
4564 return -1;
4565 if (di_a->total_avail < di_b->total_avail)
4566 return 1;
Miao Xieb2117a32011-01-05 10:07:28 +00004567 return 0;
4568}
4569
David Woodhouse53b381b2013-01-29 18:40:14 -05004570static u32 find_raid56_stripe_len(u32 data_devices, u32 dev_stripe_target)
4571{
4572 /* TODO allow them to set a preferred stripe size */
Byongho Leeee221842015-12-15 01:42:10 +09004573 return SZ_64K;
David Woodhouse53b381b2013-01-29 18:40:14 -05004574}
4575
4576static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type)
4577{
Zhao Leiffe2d202015-01-20 15:11:44 +08004578 if (!(type & BTRFS_BLOCK_GROUP_RAID56_MASK))
David Woodhouse53b381b2013-01-29 18:40:14 -05004579 return;
4580
Miao Xieceda0862013-04-11 10:30:16 +00004581 btrfs_set_fs_incompat(info, RAID56);
David Woodhouse53b381b2013-01-29 18:40:14 -05004582}
4583
Jeff Mahoneyda170662016-06-15 09:22:56 -04004584#define BTRFS_MAX_DEVS(r) ((BTRFS_MAX_ITEM_SIZE(r->fs_info) \
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004585 - sizeof(struct btrfs_chunk)) \
4586 / sizeof(struct btrfs_stripe) + 1)
4587
4588#define BTRFS_MAX_DEVS_SYS_CHUNK ((BTRFS_SYSTEM_CHUNK_ARRAY_SIZE \
4589 - 2 * sizeof(struct btrfs_disk_key) \
4590 - 2 * sizeof(struct btrfs_chunk)) \
4591 / sizeof(struct btrfs_stripe) + 1)
4592
Miao Xieb2117a32011-01-05 10:07:28 +00004593static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
David Sterba72b468c2017-02-10 19:46:27 +01004594 u64 start, u64 type)
Miao Xieb2117a32011-01-05 10:07:28 +00004595{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004596 struct btrfs_fs_info *info = trans->fs_info;
Miao Xieb2117a32011-01-05 10:07:28 +00004597 struct btrfs_fs_devices *fs_devices = info->fs_devices;
4598 struct list_head *cur;
Arne Jansen73c5de02011-04-12 12:07:57 +02004599 struct map_lookup *map = NULL;
Miao Xieb2117a32011-01-05 10:07:28 +00004600 struct extent_map_tree *em_tree;
4601 struct extent_map *em;
Arne Jansen73c5de02011-04-12 12:07:57 +02004602 struct btrfs_device_info *devices_info = NULL;
4603 u64 total_avail;
4604 int num_stripes; /* total number of stripes to allocate */
David Woodhouse53b381b2013-01-29 18:40:14 -05004605 int data_stripes; /* number of stripes that count for
4606 block group size */
Arne Jansen73c5de02011-04-12 12:07:57 +02004607 int sub_stripes; /* sub_stripes info for map */
4608 int dev_stripes; /* stripes per dev */
4609 int devs_max; /* max devs to use */
4610 int devs_min; /* min devs needed */
4611 int devs_increment; /* ndevs has to be a multiple of this */
4612 int ncopies; /* how many copies to data has */
Miao Xieb2117a32011-01-05 10:07:28 +00004613 int ret;
Arne Jansen73c5de02011-04-12 12:07:57 +02004614 u64 max_stripe_size;
4615 u64 max_chunk_size;
4616 u64 stripe_size;
4617 u64 num_bytes;
David Woodhouse53b381b2013-01-29 18:40:14 -05004618 u64 raid_stripe_len = BTRFS_STRIPE_LEN;
Arne Jansen73c5de02011-04-12 12:07:57 +02004619 int ndevs;
4620 int i;
4621 int j;
Liu Bo31e50222012-11-21 14:18:10 +00004622 int index;
Miao Xieb2117a32011-01-05 10:07:28 +00004623
Ilya Dryomov0c460c02012-03-27 17:09:17 +03004624 BUG_ON(!alloc_profile_is_valid(type, 0));
Arne Jansen73c5de02011-04-12 12:07:57 +02004625
Miao Xieb2117a32011-01-05 10:07:28 +00004626 if (list_empty(&fs_devices->alloc_list))
4627 return -ENOSPC;
4628
Liu Bo31e50222012-11-21 14:18:10 +00004629 index = __get_raid_index(type);
Arne Jansen73c5de02011-04-12 12:07:57 +02004630
Liu Bo31e50222012-11-21 14:18:10 +00004631 sub_stripes = btrfs_raid_array[index].sub_stripes;
4632 dev_stripes = btrfs_raid_array[index].dev_stripes;
4633 devs_max = btrfs_raid_array[index].devs_max;
4634 devs_min = btrfs_raid_array[index].devs_min;
4635 devs_increment = btrfs_raid_array[index].devs_increment;
4636 ncopies = btrfs_raid_array[index].ncopies;
Arne Jansen73c5de02011-04-12 12:07:57 +02004637
4638 if (type & BTRFS_BLOCK_GROUP_DATA) {
Byongho Leeee221842015-12-15 01:42:10 +09004639 max_stripe_size = SZ_1G;
Arne Jansen73c5de02011-04-12 12:07:57 +02004640 max_chunk_size = 10 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004641 if (!devs_max)
4642 devs_max = BTRFS_MAX_DEVS(info->chunk_root);
Arne Jansen73c5de02011-04-12 12:07:57 +02004643 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason11003732012-01-06 15:47:38 -05004644 /* for larger filesystems, use larger metadata chunks */
Byongho Leeee221842015-12-15 01:42:10 +09004645 if (fs_devices->total_rw_bytes > 50ULL * SZ_1G)
4646 max_stripe_size = SZ_1G;
Chris Mason11003732012-01-06 15:47:38 -05004647 else
Byongho Leeee221842015-12-15 01:42:10 +09004648 max_stripe_size = SZ_256M;
Arne Jansen73c5de02011-04-12 12:07:57 +02004649 max_chunk_size = max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004650 if (!devs_max)
4651 devs_max = BTRFS_MAX_DEVS(info->chunk_root);
Arne Jansen73c5de02011-04-12 12:07:57 +02004652 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
Byongho Leeee221842015-12-15 01:42:10 +09004653 max_stripe_size = SZ_32M;
Arne Jansen73c5de02011-04-12 12:07:57 +02004654 max_chunk_size = 2 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004655 if (!devs_max)
4656 devs_max = BTRFS_MAX_DEVS_SYS_CHUNK;
Arne Jansen73c5de02011-04-12 12:07:57 +02004657 } else {
David Sterba351fd352014-05-15 16:48:20 +02004658 btrfs_err(info, "invalid chunk type 0x%llx requested",
Arne Jansen73c5de02011-04-12 12:07:57 +02004659 type);
4660 BUG_ON(1);
4661 }
4662
4663 /* we don't want a chunk larger than 10% of writeable space */
4664 max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1),
4665 max_chunk_size);
Miao Xieb2117a32011-01-05 10:07:28 +00004666
David Sterba31e818f2015-02-20 18:00:26 +01004667 devices_info = kcalloc(fs_devices->rw_devices, sizeof(*devices_info),
Miao Xieb2117a32011-01-05 10:07:28 +00004668 GFP_NOFS);
4669 if (!devices_info)
4670 return -ENOMEM;
4671
Arne Jansen73c5de02011-04-12 12:07:57 +02004672 cur = fs_devices->alloc_list.next;
4673
4674 /*
4675 * in the first pass through the devices list, we gather information
4676 * about the available holes on each device.
4677 */
4678 ndevs = 0;
4679 while (cur != &fs_devices->alloc_list) {
4680 struct btrfs_device *device;
4681 u64 max_avail;
4682 u64 dev_offset;
4683
4684 device = list_entry(cur, struct btrfs_device, dev_alloc_list);
4685
4686 cur = cur->next;
4687
4688 if (!device->writeable) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00004689 WARN(1, KERN_ERR
Frank Holtonefe120a2013-12-20 11:37:06 -05004690 "BTRFS: read-only device in alloc_list\n");
Arne Jansen73c5de02011-04-12 12:07:57 +02004691 continue;
4692 }
4693
Stefan Behrens63a212a2012-11-05 18:29:28 +01004694 if (!device->in_fs_metadata ||
4695 device->is_tgtdev_for_dev_replace)
Arne Jansen73c5de02011-04-12 12:07:57 +02004696 continue;
4697
4698 if (device->total_bytes > device->bytes_used)
4699 total_avail = device->total_bytes - device->bytes_used;
4700 else
4701 total_avail = 0;
liubo38c01b92011-08-02 02:39:03 +00004702
4703 /* If there is no space on this device, skip it. */
4704 if (total_avail == 0)
4705 continue;
Arne Jansen73c5de02011-04-12 12:07:57 +02004706
Josef Bacik6df9a952013-06-27 13:22:46 -04004707 ret = find_free_dev_extent(trans, device,
Arne Jansen73c5de02011-04-12 12:07:57 +02004708 max_stripe_size * dev_stripes,
4709 &dev_offset, &max_avail);
4710 if (ret && ret != -ENOSPC)
4711 goto error;
4712
4713 if (ret == 0)
4714 max_avail = max_stripe_size * dev_stripes;
4715
4716 if (max_avail < BTRFS_STRIPE_LEN * dev_stripes)
4717 continue;
4718
Eric Sandeen063d0062013-01-31 00:55:01 +00004719 if (ndevs == fs_devices->rw_devices) {
4720 WARN(1, "%s: found more than %llu devices\n",
4721 __func__, fs_devices->rw_devices);
4722 break;
4723 }
Arne Jansen73c5de02011-04-12 12:07:57 +02004724 devices_info[ndevs].dev_offset = dev_offset;
4725 devices_info[ndevs].max_avail = max_avail;
4726 devices_info[ndevs].total_avail = total_avail;
4727 devices_info[ndevs].dev = device;
4728 ++ndevs;
4729 }
4730
4731 /*
4732 * now sort the devices by hole size / available space
4733 */
4734 sort(devices_info, ndevs, sizeof(struct btrfs_device_info),
4735 btrfs_cmp_device_info, NULL);
4736
4737 /* round down to number of usable stripes */
4738 ndevs -= ndevs % devs_increment;
4739
4740 if (ndevs < devs_increment * sub_stripes || ndevs < devs_min) {
4741 ret = -ENOSPC;
4742 goto error;
4743 }
4744
4745 if (devs_max && ndevs > devs_max)
4746 ndevs = devs_max;
4747 /*
4748 * the primary goal is to maximize the number of stripes, so use as many
4749 * devices as possible, even if the stripes are not maximum sized.
4750 */
4751 stripe_size = devices_info[ndevs-1].max_avail;
4752 num_stripes = ndevs * dev_stripes;
4753
David Woodhouse53b381b2013-01-29 18:40:14 -05004754 /*
4755 * this will have to be fixed for RAID1 and RAID10 over
4756 * more drives
4757 */
4758 data_stripes = num_stripes / ncopies;
4759
David Woodhouse53b381b2013-01-29 18:40:14 -05004760 if (type & BTRFS_BLOCK_GROUP_RAID5) {
4761 raid_stripe_len = find_raid56_stripe_len(ndevs - 1,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004762 info->stripesize);
David Woodhouse53b381b2013-01-29 18:40:14 -05004763 data_stripes = num_stripes - 1;
4764 }
4765 if (type & BTRFS_BLOCK_GROUP_RAID6) {
4766 raid_stripe_len = find_raid56_stripe_len(ndevs - 2,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004767 info->stripesize);
David Woodhouse53b381b2013-01-29 18:40:14 -05004768 data_stripes = num_stripes - 2;
4769 }
Chris Mason86db2572013-02-20 16:23:40 -05004770
4771 /*
4772 * Use the number of data stripes to figure out how big this chunk
4773 * is really going to be in terms of logical address space,
4774 * and compare that answer with the max chunk size
4775 */
4776 if (stripe_size * data_stripes > max_chunk_size) {
4777 u64 mask = (1ULL << 24) - 1;
David Sterbab8b93ad2015-01-16 17:26:13 +01004778
4779 stripe_size = div_u64(max_chunk_size, data_stripes);
Chris Mason86db2572013-02-20 16:23:40 -05004780
4781 /* bump the answer up to a 16MB boundary */
4782 stripe_size = (stripe_size + mask) & ~mask;
4783
4784 /* but don't go higher than the limits we found
4785 * while searching for free extents
4786 */
4787 if (stripe_size > devices_info[ndevs-1].max_avail)
4788 stripe_size = devices_info[ndevs-1].max_avail;
4789 }
4790
David Sterbab8b93ad2015-01-16 17:26:13 +01004791 stripe_size = div_u64(stripe_size, dev_stripes);
Ilya Dryomov37db63a2012-04-13 17:05:08 +03004792
4793 /* align to BTRFS_STRIPE_LEN */
David Sterbab8b93ad2015-01-16 17:26:13 +01004794 stripe_size = div_u64(stripe_size, raid_stripe_len);
David Woodhouse53b381b2013-01-29 18:40:14 -05004795 stripe_size *= raid_stripe_len;
Arne Jansen73c5de02011-04-12 12:07:57 +02004796
Miao Xieb2117a32011-01-05 10:07:28 +00004797 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
4798 if (!map) {
4799 ret = -ENOMEM;
4800 goto error;
4801 }
4802 map->num_stripes = num_stripes;
Chris Mason9b3f68b2008-04-18 10:29:51 -04004803
Arne Jansen73c5de02011-04-12 12:07:57 +02004804 for (i = 0; i < ndevs; ++i) {
4805 for (j = 0; j < dev_stripes; ++j) {
4806 int s = i * dev_stripes + j;
4807 map->stripes[s].dev = devices_info[i].dev;
4808 map->stripes[s].physical = devices_info[i].dev_offset +
4809 j * stripe_size;
Chris Masona40a90a2008-04-18 11:55:51 -04004810 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004811 }
Jeff Mahoneyda170662016-06-15 09:22:56 -04004812 map->sector_size = info->sectorsize;
David Woodhouse53b381b2013-01-29 18:40:14 -05004813 map->stripe_len = raid_stripe_len;
4814 map->io_align = raid_stripe_len;
4815 map->io_width = raid_stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04004816 map->type = type;
Chris Mason321aecc2008-04-16 10:49:51 -04004817 map->sub_stripes = sub_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004818
David Woodhouse53b381b2013-01-29 18:40:14 -05004819 num_bytes = stripe_size * data_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004820
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004821 trace_btrfs_chunk_alloc(info, map, start, num_bytes);
liubo1abe9b82011-03-24 11:18:59 +00004822
David Sterba172ddd62011-04-21 00:48:27 +02004823 em = alloc_extent_map();
Yan Zheng2b820322008-11-17 21:11:30 -05004824 if (!em) {
Wang Shilong298a8f92014-06-19 10:42:52 +08004825 kfree(map);
Miao Xieb2117a32011-01-05 10:07:28 +00004826 ret = -ENOMEM;
4827 goto error;
Yan Zheng2b820322008-11-17 21:11:30 -05004828 }
Wang Shilong298a8f92014-06-19 10:42:52 +08004829 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Jeff Mahoney95617d62015-06-03 10:55:48 -04004830 em->map_lookup = map;
Yan Zheng2b820322008-11-17 21:11:30 -05004831 em->start = start;
Arne Jansen73c5de02011-04-12 12:07:57 +02004832 em->len = num_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04004833 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04004834 em->block_len = em->len;
Josef Bacik6df9a952013-06-27 13:22:46 -04004835 em->orig_block_len = stripe_size;
Chris Mason0b86a832008-03-24 15:01:56 -04004836
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004837 em_tree = &info->mapping_tree.map_tree;
Chris Mason890871b2009-09-02 16:24:52 -04004838 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004839 ret = add_extent_mapping(em_tree, em, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004840 if (!ret) {
4841 list_add_tail(&em->list, &trans->transaction->pending_chunks);
4842 atomic_inc(&em->refs);
4843 }
Chris Mason890871b2009-09-02 16:24:52 -04004844 write_unlock(&em_tree->lock);
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004845 if (ret) {
4846 free_extent_map(em);
Mark Fasheh1dd46022011-09-08 17:29:00 -07004847 goto error;
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004848 }
Yan Zheng2b820322008-11-17 21:11:30 -05004849
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004850 ret = btrfs_make_block_group(trans, info, 0, type,
Josef Bacik04487482013-01-29 15:03:37 -05004851 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4852 start, num_bytes);
Josef Bacik6df9a952013-06-27 13:22:46 -04004853 if (ret)
4854 goto error_del_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05004855
Miao Xie7cc8e582014-09-03 21:35:38 +08004856 for (i = 0; i < map->num_stripes; i++) {
4857 num_bytes = map->stripes[i].dev->bytes_used + stripe_size;
4858 btrfs_device_set_bytes_used(map->stripes[i].dev, num_bytes);
4859 }
Miao Xie43530c42014-09-03 21:35:36 +08004860
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004861 spin_lock(&info->free_chunk_lock);
4862 info->free_chunk_space -= (stripe_size * map->num_stripes);
4863 spin_unlock(&info->free_chunk_lock);
Miao Xie1c116182014-09-03 21:35:37 +08004864
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004865 free_extent_map(em);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004866 check_raid56_incompat_flag(info, type);
David Woodhouse53b381b2013-01-29 18:40:14 -05004867
Miao Xieb2117a32011-01-05 10:07:28 +00004868 kfree(devices_info);
Yan Zheng2b820322008-11-17 21:11:30 -05004869 return 0;
Miao Xieb2117a32011-01-05 10:07:28 +00004870
Josef Bacik6df9a952013-06-27 13:22:46 -04004871error_del_extent:
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004872 write_lock(&em_tree->lock);
4873 remove_extent_mapping(em_tree, em);
4874 write_unlock(&em_tree->lock);
4875
4876 /* One for our allocation */
4877 free_extent_map(em);
4878 /* One for the tree reference */
4879 free_extent_map(em);
Filipe Manana495e64f2014-12-02 18:07:30 +00004880 /* One for the pending_chunks list reference */
4881 free_extent_map(em);
Miao Xieb2117a32011-01-05 10:07:28 +00004882error:
Miao Xieb2117a32011-01-05 10:07:28 +00004883 kfree(devices_info);
4884 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004885}
4886
Josef Bacik6df9a952013-06-27 13:22:46 -04004887int btrfs_finish_chunk_alloc(struct btrfs_trans_handle *trans,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004888 struct btrfs_fs_info *fs_info,
Josef Bacik6df9a952013-06-27 13:22:46 -04004889 u64 chunk_offset, u64 chunk_size)
Yan Zheng2b820322008-11-17 21:11:30 -05004890{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004891 struct btrfs_root *extent_root = fs_info->extent_root;
4892 struct btrfs_root *chunk_root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05004893 struct btrfs_key key;
Yan Zheng2b820322008-11-17 21:11:30 -05004894 struct btrfs_device *device;
4895 struct btrfs_chunk *chunk;
4896 struct btrfs_stripe *stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004897 struct extent_map_tree *em_tree;
4898 struct extent_map *em;
4899 struct map_lookup *map;
4900 size_t item_size;
4901 u64 dev_offset;
4902 u64 stripe_size;
4903 int i = 0;
Chris Mason140e6392015-12-23 13:30:51 -08004904 int ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004905
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004906 em_tree = &fs_info->mapping_tree.map_tree;
Josef Bacik6df9a952013-06-27 13:22:46 -04004907 read_lock(&em_tree->lock);
4908 em = lookup_extent_mapping(em_tree, chunk_offset, chunk_size);
4909 read_unlock(&em_tree->lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004910
Josef Bacik6df9a952013-06-27 13:22:46 -04004911 if (!em) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004912 btrfs_crit(fs_info, "unable to find logical %Lu len %Lu",
Jeff Mahoney5d163e02016-09-20 10:05:00 -04004913 chunk_offset, chunk_size);
Josef Bacik6df9a952013-06-27 13:22:46 -04004914 return -EINVAL;
4915 }
4916
4917 if (em->start != chunk_offset || em->len != chunk_size) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004918 btrfs_crit(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04004919 "found a bad mapping, wanted %Lu-%Lu, found %Lu-%Lu",
4920 chunk_offset, chunk_size, em->start, em->len);
Josef Bacik6df9a952013-06-27 13:22:46 -04004921 free_extent_map(em);
4922 return -EINVAL;
4923 }
4924
Jeff Mahoney95617d62015-06-03 10:55:48 -04004925 map = em->map_lookup;
Josef Bacik6df9a952013-06-27 13:22:46 -04004926 item_size = btrfs_chunk_item_size(map->num_stripes);
4927 stripe_size = em->orig_block_len;
4928
4929 chunk = kzalloc(item_size, GFP_NOFS);
4930 if (!chunk) {
4931 ret = -ENOMEM;
4932 goto out;
4933 }
4934
Filipe Manana50460e32015-11-20 10:42:47 +00004935 /*
4936 * Take the device list mutex to prevent races with the final phase of
4937 * a device replace operation that replaces the device object associated
4938 * with the map's stripes, because the device object's id can change
4939 * at any time during that final phase of the device replace operation
4940 * (dev-replace.c:btrfs_dev_replace_finishing()).
4941 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004942 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Josef Bacik6df9a952013-06-27 13:22:46 -04004943 for (i = 0; i < map->num_stripes; i++) {
4944 device = map->stripes[i].dev;
4945 dev_offset = map->stripes[i].physical;
4946
Yan Zheng2b820322008-11-17 21:11:30 -05004947 ret = btrfs_update_device(trans, device);
Mark Fasheh3acd3952011-09-08 17:40:01 -07004948 if (ret)
Filipe Manana50460e32015-11-20 10:42:47 +00004949 break;
Josef Bacik6df9a952013-06-27 13:22:46 -04004950 ret = btrfs_alloc_dev_extent(trans, device,
4951 chunk_root->root_key.objectid,
4952 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4953 chunk_offset, dev_offset,
4954 stripe_size);
4955 if (ret)
Filipe Manana50460e32015-11-20 10:42:47 +00004956 break;
4957 }
4958 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004959 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Filipe Manana50460e32015-11-20 10:42:47 +00004960 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05004961 }
4962
Yan Zheng2b820322008-11-17 21:11:30 -05004963 stripe = &chunk->stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004964 for (i = 0; i < map->num_stripes; i++) {
4965 device = map->stripes[i].dev;
4966 dev_offset = map->stripes[i].physical;
Yan Zheng2b820322008-11-17 21:11:30 -05004967
4968 btrfs_set_stack_stripe_devid(stripe, device->devid);
4969 btrfs_set_stack_stripe_offset(stripe, dev_offset);
4970 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
4971 stripe++;
Yan Zheng2b820322008-11-17 21:11:30 -05004972 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004973 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05004974
4975 btrfs_set_stack_chunk_length(chunk, chunk_size);
4976 btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
4977 btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len);
4978 btrfs_set_stack_chunk_type(chunk, map->type);
4979 btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes);
4980 btrfs_set_stack_chunk_io_align(chunk, map->stripe_len);
4981 btrfs_set_stack_chunk_io_width(chunk, map->stripe_len);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004982 btrfs_set_stack_chunk_sector_size(chunk, fs_info->sectorsize);
Yan Zheng2b820322008-11-17 21:11:30 -05004983 btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes);
4984
4985 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
4986 key.type = BTRFS_CHUNK_ITEM_KEY;
4987 key.offset = chunk_offset;
4988
4989 ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004990 if (ret == 0 && map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
4991 /*
4992 * TODO: Cleanup of inserted chunk root in case of
4993 * failure.
4994 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004995 ret = btrfs_add_system_chunk(fs_info, &key, chunk, item_size);
Yan Zheng2b820322008-11-17 21:11:30 -05004996 }
liubo1abe9b82011-03-24 11:18:59 +00004997
Josef Bacik6df9a952013-06-27 13:22:46 -04004998out:
Yan Zheng2b820322008-11-17 21:11:30 -05004999 kfree(chunk);
Josef Bacik6df9a952013-06-27 13:22:46 -04005000 free_extent_map(em);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07005001 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05005002}
5003
5004/*
5005 * Chunk allocation falls into two parts. The first part does works
5006 * that make the new allocated chunk useable, but not do any operation
5007 * that modifies the chunk tree. The second part does the works that
5008 * require modifying the chunk tree. This division is important for the
5009 * bootstrap process of adding storage to a seed btrfs.
5010 */
5011int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005012 struct btrfs_fs_info *fs_info, u64 type)
Yan Zheng2b820322008-11-17 21:11:30 -05005013{
5014 u64 chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05005015
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005016 ASSERT(mutex_is_locked(&fs_info->chunk_mutex));
5017 chunk_offset = find_next_chunk(fs_info);
David Sterba72b468c2017-02-10 19:46:27 +01005018 return __btrfs_alloc_chunk(trans, chunk_offset, type);
Yan Zheng2b820322008-11-17 21:11:30 -05005019}
5020
Chris Masond3977122009-01-05 21:25:51 -05005021static noinline int init_first_rw_device(struct btrfs_trans_handle *trans,
David Sterbae4a4dce2017-02-10 19:49:01 +01005022 struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05005023{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005024 struct btrfs_root *extent_root = fs_info->extent_root;
Yan Zheng2b820322008-11-17 21:11:30 -05005025 u64 chunk_offset;
5026 u64 sys_chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05005027 u64 alloc_profile;
Yan Zheng2b820322008-11-17 21:11:30 -05005028 int ret;
5029
Josef Bacik6df9a952013-06-27 13:22:46 -04005030 chunk_offset = find_next_chunk(fs_info);
Miao Xiede98ced2013-01-29 10:13:12 +00005031 alloc_profile = btrfs_get_alloc_profile(extent_root, 0);
David Sterba72b468c2017-02-10 19:46:27 +01005032 ret = __btrfs_alloc_chunk(trans, chunk_offset, alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005033 if (ret)
5034 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05005035
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005036 sys_chunk_offset = find_next_chunk(fs_info);
Miao Xiede98ced2013-01-29 10:13:12 +00005037 alloc_profile = btrfs_get_alloc_profile(fs_info->chunk_root, 0);
David Sterba72b468c2017-02-10 19:46:27 +01005038 ret = __btrfs_alloc_chunk(trans, sys_chunk_offset, alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005039 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05005040}
5041
Miao Xied20983b2014-07-03 18:22:13 +08005042static inline int btrfs_chunk_max_errors(struct map_lookup *map)
5043{
5044 int max_errors;
5045
5046 if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
5047 BTRFS_BLOCK_GROUP_RAID10 |
5048 BTRFS_BLOCK_GROUP_RAID5 |
5049 BTRFS_BLOCK_GROUP_DUP)) {
5050 max_errors = 1;
5051 } else if (map->type & BTRFS_BLOCK_GROUP_RAID6) {
5052 max_errors = 2;
5053 } else {
5054 max_errors = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05005055 }
5056
Miao Xied20983b2014-07-03 18:22:13 +08005057 return max_errors;
Yan Zheng2b820322008-11-17 21:11:30 -05005058}
5059
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005060int btrfs_chunk_readonly(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Yan Zheng2b820322008-11-17 21:11:30 -05005061{
5062 struct extent_map *em;
5063 struct map_lookup *map;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005064 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Yan Zheng2b820322008-11-17 21:11:30 -05005065 int readonly = 0;
Miao Xied20983b2014-07-03 18:22:13 +08005066 int miss_ndevs = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05005067 int i;
5068
Chris Mason890871b2009-09-02 16:24:52 -04005069 read_lock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05005070 em = lookup_extent_mapping(&map_tree->map_tree, chunk_offset, 1);
Chris Mason890871b2009-09-02 16:24:52 -04005071 read_unlock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05005072 if (!em)
5073 return 1;
5074
Jeff Mahoney95617d62015-06-03 10:55:48 -04005075 map = em->map_lookup;
Yan Zheng2b820322008-11-17 21:11:30 -05005076 for (i = 0; i < map->num_stripes; i++) {
Miao Xied20983b2014-07-03 18:22:13 +08005077 if (map->stripes[i].dev->missing) {
5078 miss_ndevs++;
5079 continue;
5080 }
5081
Yan Zheng2b820322008-11-17 21:11:30 -05005082 if (!map->stripes[i].dev->writeable) {
5083 readonly = 1;
Miao Xied20983b2014-07-03 18:22:13 +08005084 goto end;
Yan Zheng2b820322008-11-17 21:11:30 -05005085 }
5086 }
Miao Xied20983b2014-07-03 18:22:13 +08005087
5088 /*
5089 * If the number of missing devices is larger than max errors,
5090 * we can not write the data into that chunk successfully, so
5091 * set it readonly.
5092 */
5093 if (miss_ndevs > btrfs_chunk_max_errors(map))
5094 readonly = 1;
5095end:
Yan Zheng2b820322008-11-17 21:11:30 -05005096 free_extent_map(em);
5097 return readonly;
Chris Mason0b86a832008-03-24 15:01:56 -04005098}
5099
5100void btrfs_mapping_init(struct btrfs_mapping_tree *tree)
5101{
David Sterbaa8067e02011-04-21 00:34:43 +02005102 extent_map_tree_init(&tree->map_tree);
Chris Mason0b86a832008-03-24 15:01:56 -04005103}
5104
5105void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree)
5106{
5107 struct extent_map *em;
5108
Chris Masond3977122009-01-05 21:25:51 -05005109 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04005110 write_lock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005111 em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1);
5112 if (em)
5113 remove_extent_mapping(&tree->map_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04005114 write_unlock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005115 if (!em)
5116 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005117 /* once for us */
5118 free_extent_map(em);
5119 /* once for the tree */
5120 free_extent_map(em);
5121 }
5122}
5123
Stefan Behrens5d964052012-11-05 14:59:07 +01005124int btrfs_num_copies(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
Chris Masonf1885912008-04-09 16:28:12 -04005125{
Stefan Behrens5d964052012-11-05 14:59:07 +01005126 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Masonf1885912008-04-09 16:28:12 -04005127 struct extent_map *em;
5128 struct map_lookup *map;
5129 struct extent_map_tree *em_tree = &map_tree->map_tree;
5130 int ret;
5131
Chris Mason890871b2009-09-02 16:24:52 -04005132 read_lock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04005133 em = lookup_extent_mapping(em_tree, logical, len);
Chris Mason890871b2009-09-02 16:24:52 -04005134 read_unlock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04005135
Josef Bacikfb7669b2013-04-23 10:53:18 -04005136 /*
5137 * We could return errors for these cases, but that could get ugly and
5138 * we'd probably do the same thing which is just not do anything else
5139 * and exit, so return 1 so the callers don't try to use other copies.
5140 */
5141 if (!em) {
David Sterba351fd352014-05-15 16:48:20 +02005142 btrfs_crit(fs_info, "No mapping for %Lu-%Lu", logical,
Josef Bacikfb7669b2013-04-23 10:53:18 -04005143 logical+len);
5144 return 1;
5145 }
5146
5147 if (em->start > logical || em->start + em->len < logical) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005148 btrfs_crit(fs_info, "Invalid mapping for %Lu-%Lu, got %Lu-%Lu",
5149 logical, logical+len, em->start,
5150 em->start + em->len);
Liu Bo7d3d1742013-09-29 10:33:16 +08005151 free_extent_map(em);
Josef Bacikfb7669b2013-04-23 10:53:18 -04005152 return 1;
5153 }
5154
Jeff Mahoney95617d62015-06-03 10:55:48 -04005155 map = em->map_lookup;
Chris Masonf1885912008-04-09 16:28:12 -04005156 if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1))
5157 ret = map->num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005158 else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
5159 ret = map->sub_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05005160 else if (map->type & BTRFS_BLOCK_GROUP_RAID5)
5161 ret = 2;
5162 else if (map->type & BTRFS_BLOCK_GROUP_RAID6)
5163 ret = 3;
Chris Masonf1885912008-04-09 16:28:12 -04005164 else
5165 ret = 1;
5166 free_extent_map(em);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005167
Liu Bo73beece2015-07-17 16:49:19 +08005168 btrfs_dev_replace_lock(&fs_info->dev_replace, 0);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005169 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace))
5170 ret++;
Liu Bo73beece2015-07-17 16:49:19 +08005171 btrfs_dev_replace_unlock(&fs_info->dev_replace, 0);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005172
Chris Masonf1885912008-04-09 16:28:12 -04005173 return ret;
5174}
5175
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005176unsigned long btrfs_full_stripe_len(struct btrfs_fs_info *fs_info,
David Woodhouse53b381b2013-01-29 18:40:14 -05005177 struct btrfs_mapping_tree *map_tree,
5178 u64 logical)
5179{
5180 struct extent_map *em;
5181 struct map_lookup *map;
5182 struct extent_map_tree *em_tree = &map_tree->map_tree;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005183 unsigned long len = fs_info->sectorsize;
David Woodhouse53b381b2013-01-29 18:40:14 -05005184
5185 read_lock(&em_tree->lock);
5186 em = lookup_extent_mapping(em_tree, logical, len);
5187 read_unlock(&em_tree->lock);
5188 BUG_ON(!em);
5189
5190 BUG_ON(em->start > logical || em->start + em->len < logical);
Jeff Mahoney95617d62015-06-03 10:55:48 -04005191 map = em->map_lookup;
Zhao Leiffe2d202015-01-20 15:11:44 +08005192 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
David Woodhouse53b381b2013-01-29 18:40:14 -05005193 len = map->stripe_len * nr_data_stripes(map);
David Woodhouse53b381b2013-01-29 18:40:14 -05005194 free_extent_map(em);
5195 return len;
5196}
5197
5198int btrfs_is_parity_mirror(struct btrfs_mapping_tree *map_tree,
5199 u64 logical, u64 len, int mirror_num)
5200{
5201 struct extent_map *em;
5202 struct map_lookup *map;
5203 struct extent_map_tree *em_tree = &map_tree->map_tree;
5204 int ret = 0;
5205
5206 read_lock(&em_tree->lock);
5207 em = lookup_extent_mapping(em_tree, logical, len);
5208 read_unlock(&em_tree->lock);
5209 BUG_ON(!em);
5210
5211 BUG_ON(em->start > logical || em->start + em->len < logical);
Jeff Mahoney95617d62015-06-03 10:55:48 -04005212 map = em->map_lookup;
Zhao Leiffe2d202015-01-20 15:11:44 +08005213 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
David Woodhouse53b381b2013-01-29 18:40:14 -05005214 ret = 1;
5215 free_extent_map(em);
5216 return ret;
5217}
5218
Stefan Behrens30d98612012-11-06 14:52:18 +01005219static int find_live_mirror(struct btrfs_fs_info *fs_info,
5220 struct map_lookup *map, int first, int num,
5221 int optimal, int dev_replace_is_ongoing)
Chris Masondfe25022008-05-13 13:46:40 -04005222{
5223 int i;
Stefan Behrens30d98612012-11-06 14:52:18 +01005224 int tolerance;
5225 struct btrfs_device *srcdev;
5226
5227 if (dev_replace_is_ongoing &&
5228 fs_info->dev_replace.cont_reading_from_srcdev_mode ==
5229 BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID)
5230 srcdev = fs_info->dev_replace.srcdev;
5231 else
5232 srcdev = NULL;
5233
5234 /*
5235 * try to avoid the drive that is the source drive for a
5236 * dev-replace procedure, only choose it if no other non-missing
5237 * mirror is available
5238 */
5239 for (tolerance = 0; tolerance < 2; tolerance++) {
5240 if (map->stripes[optimal].dev->bdev &&
5241 (tolerance || map->stripes[optimal].dev != srcdev))
5242 return optimal;
5243 for (i = first; i < first + num; i++) {
5244 if (map->stripes[i].dev->bdev &&
5245 (tolerance || map->stripes[i].dev != srcdev))
5246 return i;
5247 }
Chris Masondfe25022008-05-13 13:46:40 -04005248 }
Stefan Behrens30d98612012-11-06 14:52:18 +01005249
Chris Masondfe25022008-05-13 13:46:40 -04005250 /* we couldn't find one that doesn't fail. Just return something
5251 * and the io error handling code will clean up eventually
5252 */
5253 return optimal;
5254}
5255
David Woodhouse53b381b2013-01-29 18:40:14 -05005256static inline int parity_smaller(u64 a, u64 b)
5257{
5258 return a > b;
5259}
5260
5261/* Bubble-sort the stripe set to put the parity/syndrome stripes last */
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005262static void sort_parity_stripes(struct btrfs_bio *bbio, int num_stripes)
David Woodhouse53b381b2013-01-29 18:40:14 -05005263{
5264 struct btrfs_bio_stripe s;
5265 int i;
5266 u64 l;
5267 int again = 1;
5268
5269 while (again) {
5270 again = 0;
Zhao Leicc7539e2015-01-20 15:11:32 +08005271 for (i = 0; i < num_stripes - 1; i++) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005272 if (parity_smaller(bbio->raid_map[i],
5273 bbio->raid_map[i+1])) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005274 s = bbio->stripes[i];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005275 l = bbio->raid_map[i];
David Woodhouse53b381b2013-01-29 18:40:14 -05005276 bbio->stripes[i] = bbio->stripes[i+1];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005277 bbio->raid_map[i] = bbio->raid_map[i+1];
David Woodhouse53b381b2013-01-29 18:40:14 -05005278 bbio->stripes[i+1] = s;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005279 bbio->raid_map[i+1] = l;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005280
David Woodhouse53b381b2013-01-29 18:40:14 -05005281 again = 1;
5282 }
5283 }
5284 }
5285}
5286
Zhao Lei6e9606d2015-01-20 15:11:34 +08005287static struct btrfs_bio *alloc_btrfs_bio(int total_stripes, int real_stripes)
5288{
5289 struct btrfs_bio *bbio = kzalloc(
Chris Masone57cf212015-02-19 17:51:39 -08005290 /* the size of the btrfs_bio */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005291 sizeof(struct btrfs_bio) +
Chris Masone57cf212015-02-19 17:51:39 -08005292 /* plus the variable array for the stripes */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005293 sizeof(struct btrfs_bio_stripe) * (total_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005294 /* plus the variable array for the tgt dev */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005295 sizeof(int) * (real_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005296 /*
5297 * plus the raid_map, which includes both the tgt dev
5298 * and the stripes
5299 */
5300 sizeof(u64) * (total_stripes),
Michal Hocko277fb5f2015-08-19 14:17:41 +02005301 GFP_NOFS|__GFP_NOFAIL);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005302
5303 atomic_set(&bbio->error, 0);
Elena Reshetova140475a2017-03-03 10:55:10 +02005304 refcount_set(&bbio->refs, 1);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005305
5306 return bbio;
5307}
5308
5309void btrfs_get_bbio(struct btrfs_bio *bbio)
5310{
Elena Reshetova140475a2017-03-03 10:55:10 +02005311 WARN_ON(!refcount_read(&bbio->refs));
5312 refcount_inc(&bbio->refs);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005313}
5314
5315void btrfs_put_bbio(struct btrfs_bio *bbio)
5316{
5317 if (!bbio)
5318 return;
Elena Reshetova140475a2017-03-03 10:55:10 +02005319 if (refcount_dec_and_test(&bbio->refs))
Zhao Lei6e9606d2015-01-20 15:11:34 +08005320 kfree(bbio);
5321}
5322
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005323static int __btrfs_map_block(struct btrfs_fs_info *fs_info,
5324 enum btrfs_map_op op,
Chris Masonf2d8d742008-04-21 10:03:05 -04005325 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005326 struct btrfs_bio **bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005327 int mirror_num, int need_raid_map)
Chris Mason0b86a832008-03-24 15:01:56 -04005328{
5329 struct extent_map *em;
5330 struct map_lookup *map;
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005331 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Mason0b86a832008-03-24 15:01:56 -04005332 struct extent_map_tree *em_tree = &map_tree->map_tree;
5333 u64 offset;
Chris Mason593060d2008-03-25 16:50:33 -04005334 u64 stripe_offset;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005335 u64 stripe_end_offset;
Chris Mason593060d2008-03-25 16:50:33 -04005336 u64 stripe_nr;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005337 u64 stripe_nr_orig;
5338 u64 stripe_nr_end;
David Woodhouse53b381b2013-01-29 18:40:14 -05005339 u64 stripe_len;
David Sterba9d644a62015-02-20 18:42:11 +01005340 u32 stripe_index;
Chris Masoncea9e442008-04-09 16:28:12 -04005341 int i;
Li Zefande11cc12011-12-01 12:55:47 +08005342 int ret = 0;
Chris Masonf2d8d742008-04-21 10:03:05 -04005343 int num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04005344 int max_errors = 0;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005345 int tgtdev_indexes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005346 struct btrfs_bio *bbio = NULL;
Stefan Behrens472262f2012-11-06 14:43:46 +01005347 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
5348 int dev_replace_is_ongoing = 0;
5349 int num_alloc_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005350 int patch_the_first_stripe_for_dev_replace = 0;
5351 u64 physical_to_patch_in_first_stripe = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05005352 u64 raid56_full_stripe_start = (u64)-1;
Chris Mason0b86a832008-03-24 15:01:56 -04005353
Chris Mason890871b2009-09-02 16:24:52 -04005354 read_lock(&em_tree->lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005355 em = lookup_extent_mapping(em_tree, logical, *length);
Chris Mason890871b2009-09-02 16:24:52 -04005356 read_unlock(&em_tree->lock);
Chris Masonf2d8d742008-04-21 10:03:05 -04005357
Chris Mason3b951512008-04-17 11:29:12 -04005358 if (!em) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005359 btrfs_crit(fs_info, "unable to find logical %llu len %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005360 logical, *length);
Josef Bacik9bb91872013-04-19 23:45:33 -04005361 return -EINVAL;
Chris Mason3b951512008-04-17 11:29:12 -04005362 }
Chris Mason0b86a832008-03-24 15:01:56 -04005363
Josef Bacik9bb91872013-04-19 23:45:33 -04005364 if (em->start > logical || em->start + em->len < logical) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005365 btrfs_crit(fs_info,
5366 "found a bad mapping, wanted %Lu, found %Lu-%Lu",
5367 logical, em->start, em->start + em->len);
Liu Bo7d3d1742013-09-29 10:33:16 +08005368 free_extent_map(em);
Josef Bacik9bb91872013-04-19 23:45:33 -04005369 return -EINVAL;
5370 }
5371
Jeff Mahoney95617d62015-06-03 10:55:48 -04005372 map = em->map_lookup;
Chris Mason0b86a832008-03-24 15:01:56 -04005373 offset = logical - em->start;
Chris Mason593060d2008-03-25 16:50:33 -04005374
David Woodhouse53b381b2013-01-29 18:40:14 -05005375 stripe_len = map->stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04005376 stripe_nr = offset;
5377 /*
5378 * stripe_nr counts the total number of stripes we have to stride
5379 * to get to this block
5380 */
David Sterba47c57132015-02-20 18:43:47 +01005381 stripe_nr = div64_u64(stripe_nr, stripe_len);
Chris Mason593060d2008-03-25 16:50:33 -04005382
David Woodhouse53b381b2013-01-29 18:40:14 -05005383 stripe_offset = stripe_nr * stripe_len;
Josef Bacike042d1e2016-04-12 12:54:40 -04005384 if (offset < stripe_offset) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005385 btrfs_crit(fs_info,
5386 "stripe math has gone wrong, stripe_offset=%llu, offset=%llu, start=%llu, logical=%llu, stripe_len=%llu",
Josef Bacike042d1e2016-04-12 12:54:40 -04005387 stripe_offset, offset, em->start, logical,
5388 stripe_len);
5389 free_extent_map(em);
5390 return -EINVAL;
5391 }
Chris Mason593060d2008-03-25 16:50:33 -04005392
5393 /* stripe_offset is the offset of this block in its stripe*/
5394 stripe_offset = offset - stripe_offset;
5395
David Woodhouse53b381b2013-01-29 18:40:14 -05005396 /* if we're here for raid56, we need to know the stripe aligned start */
Zhao Leiffe2d202015-01-20 15:11:44 +08005397 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005398 unsigned long full_stripe_len = stripe_len * nr_data_stripes(map);
5399 raid56_full_stripe_start = offset;
5400
5401 /* allow a write of a full stripe, but make sure we don't
5402 * allow straddling of stripes
5403 */
David Sterba47c57132015-02-20 18:43:47 +01005404 raid56_full_stripe_start = div64_u64(raid56_full_stripe_start,
5405 full_stripe_len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005406 raid56_full_stripe_start *= full_stripe_len;
5407 }
5408
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005409 if (op == BTRFS_MAP_DISCARD) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005410 /* we don't discard raid56 yet */
Zhao Leiffe2d202015-01-20 15:11:44 +08005411 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005412 ret = -EOPNOTSUPP;
5413 goto out;
5414 }
Li Dongyangfce3bb92011-03-24 10:24:26 +00005415 *length = min_t(u64, em->len - offset, *length);
David Woodhouse53b381b2013-01-29 18:40:14 -05005416 } else if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
5417 u64 max_len;
5418 /* For writes to RAID[56], allow a full stripeset across all disks.
5419 For other RAID types and for RAID[56] reads, just allow a single
5420 stripe (on a single disk). */
Zhao Leiffe2d202015-01-20 15:11:44 +08005421 if ((map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005422 (op == BTRFS_MAP_WRITE)) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005423 max_len = stripe_len * nr_data_stripes(map) -
5424 (offset - raid56_full_stripe_start);
5425 } else {
5426 /* we limit the length of each bio to what fits in a stripe */
5427 max_len = stripe_len - stripe_offset;
5428 }
5429 *length = min_t(u64, em->len - offset, max_len);
Chris Masoncea9e442008-04-09 16:28:12 -04005430 } else {
5431 *length = em->len - offset;
5432 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005433
David Woodhouse53b381b2013-01-29 18:40:14 -05005434 /* This is for when we're called from btrfs_merge_bio_hook() and all
5435 it cares about is the length */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005436 if (!bbio_ret)
Chris Masoncea9e442008-04-09 16:28:12 -04005437 goto out;
5438
Liu Bo73beece2015-07-17 16:49:19 +08005439 btrfs_dev_replace_lock(dev_replace, 0);
Stefan Behrens472262f2012-11-06 14:43:46 +01005440 dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace);
5441 if (!dev_replace_is_ongoing)
Liu Bo73beece2015-07-17 16:49:19 +08005442 btrfs_dev_replace_unlock(dev_replace, 0);
5443 else
5444 btrfs_dev_replace_set_lock_blocking(dev_replace);
Stefan Behrens472262f2012-11-06 14:43:46 +01005445
Stefan Behrensad6d6202012-11-06 15:06:47 +01005446 if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 &&
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005447 op != BTRFS_MAP_WRITE && op != BTRFS_MAP_DISCARD &&
5448 op != BTRFS_MAP_GET_READ_MIRRORS && dev_replace->tgtdev != NULL) {
Stefan Behrensad6d6202012-11-06 15:06:47 +01005449 /*
5450 * in dev-replace case, for repair case (that's the only
5451 * case where the mirror is selected explicitly when
5452 * calling btrfs_map_block), blocks left of the left cursor
5453 * can also be read from the target drive.
5454 * For REQ_GET_READ_MIRRORS, the target drive is added as
5455 * the last one to the array of stripes. For READ, it also
5456 * needs to be supported using the same mirror number.
5457 * If the requested block is not left of the left cursor,
5458 * EIO is returned. This can happen because btrfs_num_copies()
5459 * returns one more in the dev-replace case.
5460 */
5461 u64 tmp_length = *length;
5462 struct btrfs_bio *tmp_bbio = NULL;
5463 int tmp_num_stripes;
5464 u64 srcdev_devid = dev_replace->srcdev->devid;
5465 int index_srcdev = 0;
5466 int found = 0;
5467 u64 physical_of_found = 0;
5468
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005469 ret = __btrfs_map_block(fs_info, BTRFS_MAP_GET_READ_MIRRORS,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005470 logical, &tmp_length, &tmp_bbio, 0, 0);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005471 if (ret) {
5472 WARN_ON(tmp_bbio != NULL);
5473 goto out;
5474 }
5475
5476 tmp_num_stripes = tmp_bbio->num_stripes;
5477 if (mirror_num > tmp_num_stripes) {
5478 /*
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005479 * BTRFS_MAP_GET_READ_MIRRORS does not contain this
Stefan Behrensad6d6202012-11-06 15:06:47 +01005480 * mirror, that means that the requested area
5481 * is not left of the left cursor
5482 */
5483 ret = -EIO;
Zhao Lei6e9606d2015-01-20 15:11:34 +08005484 btrfs_put_bbio(tmp_bbio);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005485 goto out;
5486 }
5487
5488 /*
5489 * process the rest of the function using the mirror_num
5490 * of the source drive. Therefore look it up first.
5491 * At the end, patch the device pointer to the one of the
5492 * target drive.
5493 */
5494 for (i = 0; i < tmp_num_stripes; i++) {
Zhao Lei94a97df2015-12-09 21:03:49 +08005495 if (tmp_bbio->stripes[i].dev->devid != srcdev_devid)
5496 continue;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005497
Zhao Lei94a97df2015-12-09 21:03:49 +08005498 /*
5499 * In case of DUP, in order to keep it simple, only add
5500 * the mirror with the lowest physical address
5501 */
5502 if (found &&
5503 physical_of_found <= tmp_bbio->stripes[i].physical)
5504 continue;
5505
5506 index_srcdev = i;
5507 found = 1;
5508 physical_of_found = tmp_bbio->stripes[i].physical;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005509 }
5510
Zhao Lei6e9606d2015-01-20 15:11:34 +08005511 btrfs_put_bbio(tmp_bbio);
Zhao Lei94a97df2015-12-09 21:03:49 +08005512
5513 if (!found) {
5514 WARN_ON(1);
5515 ret = -EIO;
5516 goto out;
5517 }
5518
5519 mirror_num = index_srcdev + 1;
5520 patch_the_first_stripe_for_dev_replace = 1;
5521 physical_to_patch_in_first_stripe = physical_of_found;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005522 } else if (mirror_num > map->num_stripes) {
5523 mirror_num = 0;
5524 }
5525
Chris Masonf2d8d742008-04-21 10:03:05 -04005526 num_stripes = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04005527 stripe_index = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005528 stripe_nr_orig = stripe_nr;
Qu Wenruofda28322013-02-26 08:10:22 +00005529 stripe_nr_end = ALIGN(offset + *length, map->stripe_len);
David Sterbab8b93ad2015-01-16 17:26:13 +01005530 stripe_nr_end = div_u64(stripe_nr_end, map->stripe_len);
Li Dongyangfce3bb92011-03-24 10:24:26 +00005531 stripe_end_offset = stripe_nr_end * map->stripe_len -
5532 (offset + *length);
David Woodhouse53b381b2013-01-29 18:40:14 -05005533
Li Dongyangfce3bb92011-03-24 10:24:26 +00005534 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005535 if (op == BTRFS_MAP_DISCARD)
Li Dongyangfce3bb92011-03-24 10:24:26 +00005536 num_stripes = min_t(u64, map->num_stripes,
5537 stripe_nr_end - stripe_nr_orig);
David Sterba47c57132015-02-20 18:43:47 +01005538 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5539 &stripe_index);
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005540 if (op != BTRFS_MAP_WRITE && op != BTRFS_MAP_DISCARD &&
5541 op != BTRFS_MAP_GET_READ_MIRRORS)
Miao Xie28e1cc72014-09-12 18:44:02 +08005542 mirror_num = 1;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005543 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005544 if (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_DISCARD ||
5545 op == BTRFS_MAP_GET_READ_MIRRORS)
Chris Masonf2d8d742008-04-21 10:03:05 -04005546 num_stripes = map->num_stripes;
Chris Mason2fff7342008-04-29 14:12:09 -04005547 else if (mirror_num)
Chris Masonf1885912008-04-09 16:28:12 -04005548 stripe_index = mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005549 else {
Stefan Behrens30d98612012-11-06 14:52:18 +01005550 stripe_index = find_live_mirror(fs_info, map, 0,
Chris Masondfe25022008-05-13 13:46:40 -04005551 map->num_stripes,
Stefan Behrens30d98612012-11-06 14:52:18 +01005552 current->pid % map->num_stripes,
5553 dev_replace_is_ongoing);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005554 mirror_num = stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005555 }
Chris Mason2fff7342008-04-29 14:12:09 -04005556
Chris Mason611f0e02008-04-03 16:29:03 -04005557 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005558 if (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_DISCARD ||
5559 op == BTRFS_MAP_GET_READ_MIRRORS) {
Chris Masonf2d8d742008-04-21 10:03:05 -04005560 num_stripes = map->num_stripes;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005561 } else if (mirror_num) {
Chris Masonf1885912008-04-09 16:28:12 -04005562 stripe_index = mirror_num - 1;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005563 } else {
5564 mirror_num = 1;
5565 }
Chris Mason2fff7342008-04-29 14:12:09 -04005566
Chris Mason321aecc2008-04-16 10:49:51 -04005567 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
David Sterba9d644a62015-02-20 18:42:11 +01005568 u32 factor = map->num_stripes / map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005569
David Sterba47c57132015-02-20 18:43:47 +01005570 stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index);
Chris Mason321aecc2008-04-16 10:49:51 -04005571 stripe_index *= map->sub_stripes;
5572
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005573 if (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS)
Chris Masonf2d8d742008-04-21 10:03:05 -04005574 num_stripes = map->sub_stripes;
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005575 else if (op == BTRFS_MAP_DISCARD)
Li Dongyangfce3bb92011-03-24 10:24:26 +00005576 num_stripes = min_t(u64, map->sub_stripes *
5577 (stripe_nr_end - stripe_nr_orig),
5578 map->num_stripes);
Chris Mason321aecc2008-04-16 10:49:51 -04005579 else if (mirror_num)
5580 stripe_index += mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005581 else {
Jan Schmidt3e743172012-04-27 12:41:45 -04005582 int old_stripe_index = stripe_index;
Stefan Behrens30d98612012-11-06 14:52:18 +01005583 stripe_index = find_live_mirror(fs_info, map,
5584 stripe_index,
Chris Masondfe25022008-05-13 13:46:40 -04005585 map->sub_stripes, stripe_index +
Stefan Behrens30d98612012-11-06 14:52:18 +01005586 current->pid % map->sub_stripes,
5587 dev_replace_is_ongoing);
Jan Schmidt3e743172012-04-27 12:41:45 -04005588 mirror_num = stripe_index - old_stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005589 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005590
Zhao Leiffe2d202015-01-20 15:11:44 +08005591 } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005592 if (need_raid_map &&
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005593 (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS ||
Miao Xieaf8e2d12014-10-23 14:42:50 +08005594 mirror_num > 1)) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005595 /* push stripe_nr back to the start of the full stripe */
David Sterbab8b93ad2015-01-16 17:26:13 +01005596 stripe_nr = div_u64(raid56_full_stripe_start,
5597 stripe_len * nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05005598
5599 /* RAID[56] write or recovery. Return all stripes */
5600 num_stripes = map->num_stripes;
5601 max_errors = nr_parity_stripes(map);
5602
David Woodhouse53b381b2013-01-29 18:40:14 -05005603 *length = map->stripe_len;
5604 stripe_index = 0;
5605 stripe_offset = 0;
5606 } else {
5607 /*
5608 * Mirror #0 or #1 means the original data block.
5609 * Mirror #2 is RAID5 parity block.
5610 * Mirror #3 is RAID6 Q block.
5611 */
David Sterba47c57132015-02-20 18:43:47 +01005612 stripe_nr = div_u64_rem(stripe_nr,
5613 nr_data_stripes(map), &stripe_index);
David Woodhouse53b381b2013-01-29 18:40:14 -05005614 if (mirror_num > 1)
5615 stripe_index = nr_data_stripes(map) +
5616 mirror_num - 2;
5617
5618 /* We distribute the parity blocks across stripes */
David Sterba47c57132015-02-20 18:43:47 +01005619 div_u64_rem(stripe_nr + stripe_index, map->num_stripes,
5620 &stripe_index);
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005621 if ((op != BTRFS_MAP_WRITE && op != BTRFS_MAP_DISCARD &&
5622 op != BTRFS_MAP_GET_READ_MIRRORS) && mirror_num <= 1)
Miao Xie28e1cc72014-09-12 18:44:02 +08005623 mirror_num = 1;
David Woodhouse53b381b2013-01-29 18:40:14 -05005624 }
Chris Mason8790d502008-04-03 16:29:03 -04005625 } else {
5626 /*
David Sterba47c57132015-02-20 18:43:47 +01005627 * after this, stripe_nr is the number of stripes on this
5628 * device we have to walk to find the data, and stripe_index is
5629 * the number of our device in the stripe array
Chris Mason8790d502008-04-03 16:29:03 -04005630 */
David Sterba47c57132015-02-20 18:43:47 +01005631 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5632 &stripe_index);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005633 mirror_num = stripe_index + 1;
Chris Mason8790d502008-04-03 16:29:03 -04005634 }
Josef Bacike042d1e2016-04-12 12:54:40 -04005635 if (stripe_index >= map->num_stripes) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005636 btrfs_crit(fs_info,
5637 "stripe index math went horribly wrong, got stripe_index=%u, num_stripes=%u",
Josef Bacike042d1e2016-04-12 12:54:40 -04005638 stripe_index, map->num_stripes);
5639 ret = -EINVAL;
5640 goto out;
5641 }
Chris Mason593060d2008-03-25 16:50:33 -04005642
Stefan Behrens472262f2012-11-06 14:43:46 +01005643 num_alloc_stripes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005644 if (dev_replace_is_ongoing) {
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005645 if (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_DISCARD)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005646 num_alloc_stripes <<= 1;
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005647 if (op == BTRFS_MAP_GET_READ_MIRRORS)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005648 num_alloc_stripes++;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005649 tgtdev_indexes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005650 }
Miao Xie2c8cdd62014-11-14 16:06:25 +08005651
Zhao Lei6e9606d2015-01-20 15:11:34 +08005652 bbio = alloc_btrfs_bio(num_alloc_stripes, tgtdev_indexes);
Li Zefande11cc12011-12-01 12:55:47 +08005653 if (!bbio) {
5654 ret = -ENOMEM;
5655 goto out;
5656 }
Miao Xie2c8cdd62014-11-14 16:06:25 +08005657 if (dev_replace_is_ongoing)
5658 bbio->tgtdev_map = (int *)(bbio->stripes + num_alloc_stripes);
Li Zefande11cc12011-12-01 12:55:47 +08005659
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005660 /* build raid_map */
Zhao Leiffe2d202015-01-20 15:11:44 +08005661 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK &&
Mike Christieb3d3fa52016-06-05 14:31:53 -05005662 need_raid_map &&
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005663 ((op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS) ||
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005664 mirror_num > 1)) {
5665 u64 tmp;
David Sterba9d644a62015-02-20 18:42:11 +01005666 unsigned rot;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005667
5668 bbio->raid_map = (u64 *)((void *)bbio->stripes +
5669 sizeof(struct btrfs_bio_stripe) *
5670 num_alloc_stripes +
5671 sizeof(int) * tgtdev_indexes);
5672
5673 /* Work out the disk rotation on this stripe-set */
David Sterba47c57132015-02-20 18:43:47 +01005674 div_u64_rem(stripe_nr, num_stripes, &rot);
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005675
5676 /* Fill in the logical address of each stripe */
5677 tmp = stripe_nr * nr_data_stripes(map);
5678 for (i = 0; i < nr_data_stripes(map); i++)
5679 bbio->raid_map[(i+rot) % num_stripes] =
5680 em->start + (tmp + i) * map->stripe_len;
5681
5682 bbio->raid_map[(i+rot) % map->num_stripes] = RAID5_P_STRIPE;
5683 if (map->type & BTRFS_BLOCK_GROUP_RAID6)
5684 bbio->raid_map[(i+rot+1) % num_stripes] =
5685 RAID6_Q_STRIPE;
5686 }
5687
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005688 if (op == BTRFS_MAP_DISCARD) {
David Sterba9d644a62015-02-20 18:42:11 +01005689 u32 factor = 0;
5690 u32 sub_stripes = 0;
Li Zefanec9ef7a2011-12-01 14:06:42 +08005691 u64 stripes_per_dev = 0;
5692 u32 remaining_stripes = 0;
Liu Bob89203f2012-04-12 16:03:56 -04005693 u32 last_stripe = 0;
Li Zefanec9ef7a2011-12-01 14:06:42 +08005694
5695 if (map->type &
5696 (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID10)) {
5697 if (map->type & BTRFS_BLOCK_GROUP_RAID0)
5698 sub_stripes = 1;
5699 else
5700 sub_stripes = map->sub_stripes;
5701
5702 factor = map->num_stripes / sub_stripes;
5703 stripes_per_dev = div_u64_rem(stripe_nr_end -
5704 stripe_nr_orig,
5705 factor,
5706 &remaining_stripes);
Liu Bob89203f2012-04-12 16:03:56 -04005707 div_u64_rem(stripe_nr_end - 1, factor, &last_stripe);
5708 last_stripe *= sub_stripes;
Li Zefanec9ef7a2011-12-01 14:06:42 +08005709 }
5710
Li Dongyangfce3bb92011-03-24 10:24:26 +00005711 for (i = 0; i < num_stripes; i++) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005712 bbio->stripes[i].physical =
Chris Masonf2d8d742008-04-21 10:03:05 -04005713 map->stripes[stripe_index].physical +
5714 stripe_offset + stripe_nr * map->stripe_len;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005715 bbio->stripes[i].dev = map->stripes[stripe_index].dev;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005716
Li Zefanec9ef7a2011-12-01 14:06:42 +08005717 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
5718 BTRFS_BLOCK_GROUP_RAID10)) {
5719 bbio->stripes[i].length = stripes_per_dev *
5720 map->stripe_len;
Liu Bob89203f2012-04-12 16:03:56 -04005721
Li Zefanec9ef7a2011-12-01 14:06:42 +08005722 if (i / sub_stripes < remaining_stripes)
5723 bbio->stripes[i].length +=
5724 map->stripe_len;
Liu Bob89203f2012-04-12 16:03:56 -04005725
5726 /*
5727 * Special for the first stripe and
5728 * the last stripe:
5729 *
5730 * |-------|...|-------|
5731 * |----------|
5732 * off end_off
5733 */
Li Zefanec9ef7a2011-12-01 14:06:42 +08005734 if (i < sub_stripes)
Jan Schmidta1d3c472011-08-04 17:15:33 +02005735 bbio->stripes[i].length -=
Li Dongyangfce3bb92011-03-24 10:24:26 +00005736 stripe_offset;
Liu Bob89203f2012-04-12 16:03:56 -04005737
5738 if (stripe_index >= last_stripe &&
5739 stripe_index <= (last_stripe +
5740 sub_stripes - 1))
Li Zefanec9ef7a2011-12-01 14:06:42 +08005741 bbio->stripes[i].length -=
5742 stripe_end_offset;
Liu Bob89203f2012-04-12 16:03:56 -04005743
Li Zefanec9ef7a2011-12-01 14:06:42 +08005744 if (i == sub_stripes - 1)
Li Dongyangfce3bb92011-03-24 10:24:26 +00005745 stripe_offset = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005746 } else
Jan Schmidta1d3c472011-08-04 17:15:33 +02005747 bbio->stripes[i].length = *length;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005748
5749 stripe_index++;
5750 if (stripe_index == map->num_stripes) {
5751 /* This could only happen for RAID0/10 */
5752 stripe_index = 0;
5753 stripe_nr++;
5754 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005755 }
Li Dongyangfce3bb92011-03-24 10:24:26 +00005756 } else {
5757 for (i = 0; i < num_stripes; i++) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005758 bbio->stripes[i].physical =
Linus Torvalds212a17a2011-03-28 15:31:05 -07005759 map->stripes[stripe_index].physical +
5760 stripe_offset +
5761 stripe_nr * map->stripe_len;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005762 bbio->stripes[i].dev =
Linus Torvalds212a17a2011-03-28 15:31:05 -07005763 map->stripes[stripe_index].dev;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005764 stripe_index++;
5765 }
Chris Mason593060d2008-03-25 16:50:33 -04005766 }
Li Zefande11cc12011-12-01 12:55:47 +08005767
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005768 if (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS)
Miao Xied20983b2014-07-03 18:22:13 +08005769 max_errors = btrfs_chunk_max_errors(map);
Li Zefande11cc12011-12-01 12:55:47 +08005770
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005771 if (bbio->raid_map)
5772 sort_parity_stripes(bbio, num_stripes);
Zhao Leicc7539e2015-01-20 15:11:32 +08005773
Miao Xie2c8cdd62014-11-14 16:06:25 +08005774 tgtdev_indexes = 0;
Mike Christieb3d3fa52016-06-05 14:31:53 -05005775 if (dev_replace_is_ongoing &&
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005776 (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_DISCARD) &&
Stefan Behrens472262f2012-11-06 14:43:46 +01005777 dev_replace->tgtdev != NULL) {
5778 int index_where_to_add;
5779 u64 srcdev_devid = dev_replace->srcdev->devid;
5780
5781 /*
5782 * duplicate the write operations while the dev replace
5783 * procedure is running. Since the copying of the old disk
5784 * to the new disk takes place at run time while the
5785 * filesystem is mounted writable, the regular write
5786 * operations to the old disk have to be duplicated to go
5787 * to the new disk as well.
5788 * Note that device->missing is handled by the caller, and
5789 * that the write to the old disk is already set up in the
5790 * stripes array.
5791 */
5792 index_where_to_add = num_stripes;
5793 for (i = 0; i < num_stripes; i++) {
5794 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5795 /* write to new disk, too */
5796 struct btrfs_bio_stripe *new =
5797 bbio->stripes + index_where_to_add;
5798 struct btrfs_bio_stripe *old =
5799 bbio->stripes + i;
5800
5801 new->physical = old->physical;
5802 new->length = old->length;
5803 new->dev = dev_replace->tgtdev;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005804 bbio->tgtdev_map[i] = index_where_to_add;
Stefan Behrens472262f2012-11-06 14:43:46 +01005805 index_where_to_add++;
5806 max_errors++;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005807 tgtdev_indexes++;
Stefan Behrens472262f2012-11-06 14:43:46 +01005808 }
5809 }
5810 num_stripes = index_where_to_add;
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005811 } else if (dev_replace_is_ongoing &&
5812 op == BTRFS_MAP_GET_READ_MIRRORS &&
Stefan Behrensad6d6202012-11-06 15:06:47 +01005813 dev_replace->tgtdev != NULL) {
5814 u64 srcdev_devid = dev_replace->srcdev->devid;
5815 int index_srcdev = 0;
5816 int found = 0;
5817 u64 physical_of_found = 0;
5818
5819 /*
5820 * During the dev-replace procedure, the target drive can
5821 * also be used to read data in case it is needed to repair
5822 * a corrupt block elsewhere. This is possible if the
5823 * requested area is left of the left cursor. In this area,
5824 * the target drive is a full copy of the source drive.
5825 */
5826 for (i = 0; i < num_stripes; i++) {
5827 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5828 /*
5829 * In case of DUP, in order to keep it
5830 * simple, only add the mirror with the
5831 * lowest physical address
5832 */
5833 if (found &&
5834 physical_of_found <=
5835 bbio->stripes[i].physical)
5836 continue;
5837 index_srcdev = i;
5838 found = 1;
5839 physical_of_found = bbio->stripes[i].physical;
5840 }
5841 }
5842 if (found) {
Filipe Manana22ab04e2016-05-18 20:29:44 +01005843 struct btrfs_bio_stripe *tgtdev_stripe =
5844 bbio->stripes + num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005845
Filipe Manana22ab04e2016-05-18 20:29:44 +01005846 tgtdev_stripe->physical = physical_of_found;
5847 tgtdev_stripe->length =
5848 bbio->stripes[index_srcdev].length;
5849 tgtdev_stripe->dev = dev_replace->tgtdev;
5850 bbio->tgtdev_map[index_srcdev] = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005851
Filipe Manana22ab04e2016-05-18 20:29:44 +01005852 tgtdev_indexes++;
5853 num_stripes++;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005854 }
Stefan Behrens472262f2012-11-06 14:43:46 +01005855 }
5856
Li Zefande11cc12011-12-01 12:55:47 +08005857 *bbio_ret = bbio;
Zhao Lei10f11902015-01-20 15:11:43 +08005858 bbio->map_type = map->type;
Li Zefande11cc12011-12-01 12:55:47 +08005859 bbio->num_stripes = num_stripes;
5860 bbio->max_errors = max_errors;
5861 bbio->mirror_num = mirror_num;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005862 bbio->num_tgtdevs = tgtdev_indexes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005863
5864 /*
5865 * this is the case that REQ_READ && dev_replace_is_ongoing &&
5866 * mirror_num == num_stripes + 1 && dev_replace target drive is
5867 * available as a mirror
5868 */
5869 if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) {
5870 WARN_ON(num_stripes > 1);
5871 bbio->stripes[0].dev = dev_replace->tgtdev;
5872 bbio->stripes[0].physical = physical_to_patch_in_first_stripe;
5873 bbio->mirror_num = map->num_stripes + 1;
5874 }
Chris Masoncea9e442008-04-09 16:28:12 -04005875out:
Liu Bo73beece2015-07-17 16:49:19 +08005876 if (dev_replace_is_ongoing) {
5877 btrfs_dev_replace_clear_lock_blocking(dev_replace);
5878 btrfs_dev_replace_unlock(dev_replace, 0);
5879 }
Chris Mason0b86a832008-03-24 15:01:56 -04005880 free_extent_map(em);
Li Zefande11cc12011-12-01 12:55:47 +08005881 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04005882}
5883
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005884int btrfs_map_block(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
Chris Masonf2d8d742008-04-21 10:03:05 -04005885 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005886 struct btrfs_bio **bbio_ret, int mirror_num)
Chris Masonf2d8d742008-04-21 10:03:05 -04005887{
Mike Christieb3d3fa52016-06-05 14:31:53 -05005888 return __btrfs_map_block(fs_info, op, logical, length, bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005889 mirror_num, 0);
Chris Masonf2d8d742008-04-21 10:03:05 -04005890}
5891
Miao Xieaf8e2d12014-10-23 14:42:50 +08005892/* For Scrub/replace */
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005893int btrfs_map_sblock(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
Miao Xieaf8e2d12014-10-23 14:42:50 +08005894 u64 logical, u64 *length,
5895 struct btrfs_bio **bbio_ret, int mirror_num,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005896 int need_raid_map)
Miao Xieaf8e2d12014-10-23 14:42:50 +08005897{
Mike Christieb3d3fa52016-06-05 14:31:53 -05005898 return __btrfs_map_block(fs_info, op, logical, length, bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005899 mirror_num, need_raid_map);
Miao Xieaf8e2d12014-10-23 14:42:50 +08005900}
5901
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04005902int btrfs_rmap_block(struct btrfs_fs_info *fs_info,
Yan Zhenga512bbf2008-12-08 16:46:26 -05005903 u64 chunk_start, u64 physical, u64 devid,
5904 u64 **logical, int *naddrs, int *stripe_len)
5905{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04005906 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005907 struct extent_map_tree *em_tree = &map_tree->map_tree;
5908 struct extent_map *em;
5909 struct map_lookup *map;
5910 u64 *buf;
5911 u64 bytenr;
5912 u64 length;
5913 u64 stripe_nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005914 u64 rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005915 int i, j, nr = 0;
5916
Chris Mason890871b2009-09-02 16:24:52 -04005917 read_lock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005918 em = lookup_extent_mapping(em_tree, chunk_start, 1);
Chris Mason890871b2009-09-02 16:24:52 -04005919 read_unlock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005920
Josef Bacik835d9742013-03-19 12:13:25 -04005921 if (!em) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04005922 btrfs_err(fs_info, "couldn't find em for chunk %Lu",
5923 chunk_start);
Josef Bacik835d9742013-03-19 12:13:25 -04005924 return -EIO;
5925 }
5926
5927 if (em->start != chunk_start) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04005928 btrfs_err(fs_info, "bad chunk start, em=%Lu, wanted=%Lu",
Josef Bacik835d9742013-03-19 12:13:25 -04005929 em->start, chunk_start);
5930 free_extent_map(em);
5931 return -EIO;
5932 }
Jeff Mahoney95617d62015-06-03 10:55:48 -04005933 map = em->map_lookup;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005934
5935 length = em->len;
David Woodhouse53b381b2013-01-29 18:40:14 -05005936 rmap_len = map->stripe_len;
5937
Yan Zhenga512bbf2008-12-08 16:46:26 -05005938 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
David Sterbab8b93ad2015-01-16 17:26:13 +01005939 length = div_u64(length, map->num_stripes / map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005940 else if (map->type & BTRFS_BLOCK_GROUP_RAID0)
David Sterbab8b93ad2015-01-16 17:26:13 +01005941 length = div_u64(length, map->num_stripes);
Zhao Leiffe2d202015-01-20 15:11:44 +08005942 else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Sterbab8b93ad2015-01-16 17:26:13 +01005943 length = div_u64(length, nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05005944 rmap_len = map->stripe_len * nr_data_stripes(map);
5945 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005946
David Sterba31e818f2015-02-20 18:00:26 +01005947 buf = kcalloc(map->num_stripes, sizeof(u64), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005948 BUG_ON(!buf); /* -ENOMEM */
Yan Zhenga512bbf2008-12-08 16:46:26 -05005949
5950 for (i = 0; i < map->num_stripes; i++) {
5951 if (devid && map->stripes[i].dev->devid != devid)
5952 continue;
5953 if (map->stripes[i].physical > physical ||
5954 map->stripes[i].physical + length <= physical)
5955 continue;
5956
5957 stripe_nr = physical - map->stripes[i].physical;
David Sterbab8b93ad2015-01-16 17:26:13 +01005958 stripe_nr = div_u64(stripe_nr, map->stripe_len);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005959
5960 if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
5961 stripe_nr = stripe_nr * map->num_stripes + i;
David Sterbab8b93ad2015-01-16 17:26:13 +01005962 stripe_nr = div_u64(stripe_nr, map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005963 } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
5964 stripe_nr = stripe_nr * map->num_stripes + i;
David Woodhouse53b381b2013-01-29 18:40:14 -05005965 } /* else if RAID[56], multiply by nr_data_stripes().
5966 * Alternatively, just use rmap_len below instead of
5967 * map->stripe_len */
5968
5969 bytenr = chunk_start + stripe_nr * rmap_len;
Chris Mason934d3752008-12-08 16:43:10 -05005970 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005971 for (j = 0; j < nr; j++) {
5972 if (buf[j] == bytenr)
5973 break;
5974 }
Chris Mason934d3752008-12-08 16:43:10 -05005975 if (j == nr) {
5976 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005977 buf[nr++] = bytenr;
Chris Mason934d3752008-12-08 16:43:10 -05005978 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005979 }
5980
Yan Zhenga512bbf2008-12-08 16:46:26 -05005981 *logical = buf;
5982 *naddrs = nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005983 *stripe_len = rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005984
5985 free_extent_map(em);
5986 return 0;
5987}
5988
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005989static inline void btrfs_end_bbio(struct btrfs_bio *bbio, struct bio *bio)
Miao Xie8408c712014-06-19 10:42:55 +08005990{
Mike Snitzer326e1db2015-05-22 09:14:03 -04005991 bio->bi_private = bbio->private;
5992 bio->bi_end_io = bbio->end_io;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005993 bio_endio(bio);
Mike Snitzer326e1db2015-05-22 09:14:03 -04005994
Zhao Lei6e9606d2015-01-20 15:11:34 +08005995 btrfs_put_bbio(bbio);
Miao Xie8408c712014-06-19 10:42:55 +08005996}
5997
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005998static void btrfs_end_bio(struct bio *bio)
Chris Mason8790d502008-04-03 16:29:03 -04005999{
Chris Mason9be33952013-05-17 18:30:14 -04006000 struct btrfs_bio *bbio = bio->bi_private;
Chris Mason7d2b4da2008-08-05 10:13:57 -04006001 int is_orig_bio = 0;
Chris Mason8790d502008-04-03 16:29:03 -04006002
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006003 if (bio->bi_error) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02006004 atomic_inc(&bbio->error);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006005 if (bio->bi_error == -EIO || bio->bi_error == -EREMOTEIO) {
Stefan Behrens442a4f62012-05-25 16:06:08 +02006006 unsigned int stripe_index =
Chris Mason9be33952013-05-17 18:30:14 -04006007 btrfs_io_bio(bio)->stripe_index;
Zhao Lei65f53332015-06-08 20:05:50 +08006008 struct btrfs_device *dev;
Stefan Behrens442a4f62012-05-25 16:06:08 +02006009
6010 BUG_ON(stripe_index >= bbio->num_stripes);
6011 dev = bbio->stripes[stripe_index].dev;
Stefan Behrens597a60f2012-06-14 16:42:31 +02006012 if (dev->bdev) {
Mike Christie37226b22016-06-05 14:31:52 -05006013 if (bio_op(bio) == REQ_OP_WRITE)
Stefan Behrens597a60f2012-06-14 16:42:31 +02006014 btrfs_dev_stat_inc(dev,
6015 BTRFS_DEV_STAT_WRITE_ERRS);
6016 else
6017 btrfs_dev_stat_inc(dev,
6018 BTRFS_DEV_STAT_READ_ERRS);
Christoph Hellwig70fd7612016-11-01 07:40:10 -06006019 if (bio->bi_opf & REQ_PREFLUSH)
Stefan Behrens597a60f2012-06-14 16:42:31 +02006020 btrfs_dev_stat_inc(dev,
6021 BTRFS_DEV_STAT_FLUSH_ERRS);
6022 btrfs_dev_stat_print_on_error(dev);
6023 }
Stefan Behrens442a4f62012-05-25 16:06:08 +02006024 }
6025 }
Chris Mason8790d502008-04-03 16:29:03 -04006026
Jan Schmidta1d3c472011-08-04 17:15:33 +02006027 if (bio == bbio->orig_bio)
Chris Mason7d2b4da2008-08-05 10:13:57 -04006028 is_orig_bio = 1;
6029
Miao Xiec404e0d2014-01-30 16:46:55 +08006030 btrfs_bio_counter_dec(bbio->fs_info);
6031
Jan Schmidta1d3c472011-08-04 17:15:33 +02006032 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Chris Mason7d2b4da2008-08-05 10:13:57 -04006033 if (!is_orig_bio) {
6034 bio_put(bio);
Jan Schmidta1d3c472011-08-04 17:15:33 +02006035 bio = bbio->orig_bio;
Chris Mason7d2b4da2008-08-05 10:13:57 -04006036 }
Muthu Kumarc7b22bb2014-01-08 14:19:52 -07006037
Chris Mason9be33952013-05-17 18:30:14 -04006038 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Chris Masona236aed2008-04-29 09:38:00 -04006039 /* only send an error to the higher layers if it is
David Woodhouse53b381b2013-01-29 18:40:14 -05006040 * beyond the tolerance of the btrfs bio
Chris Masona236aed2008-04-29 09:38:00 -04006041 */
Jan Schmidta1d3c472011-08-04 17:15:33 +02006042 if (atomic_read(&bbio->error) > bbio->max_errors) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006043 bio->bi_error = -EIO;
Chris Mason5dbc8fc2011-12-09 11:07:37 -05006044 } else {
Chris Mason1259ab72008-05-12 13:39:03 -04006045 /*
6046 * this bio is actually up to date, we didn't
6047 * go over the max number of errors
6048 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006049 bio->bi_error = 0;
Chris Mason1259ab72008-05-12 13:39:03 -04006050 }
Miao Xiec55f1392014-06-19 10:42:54 +08006051
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006052 btrfs_end_bbio(bbio, bio);
Chris Mason7d2b4da2008-08-05 10:13:57 -04006053 } else if (!is_orig_bio) {
Chris Mason8790d502008-04-03 16:29:03 -04006054 bio_put(bio);
6055 }
Chris Mason8790d502008-04-03 16:29:03 -04006056}
6057
Chris Mason8b712842008-06-11 16:50:36 -04006058/*
6059 * see run_scheduled_bios for a description of why bios are collected for
6060 * async submit.
6061 *
6062 * This will add one bio to the pending list for a device and make sure
6063 * the work struct is scheduled.
6064 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006065static noinline void btrfs_schedule_bio(struct btrfs_device *device,
Mike Christie4e49ea42016-06-05 14:31:41 -05006066 struct bio *bio)
Chris Mason8b712842008-06-11 16:50:36 -04006067{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006068 struct btrfs_fs_info *fs_info = device->fs_info;
Chris Mason8b712842008-06-11 16:50:36 -04006069 int should_queue = 1;
Chris Masonffbd5172009-04-20 15:50:09 -04006070 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04006071
David Woodhouse53b381b2013-01-29 18:40:14 -05006072 if (device->missing || !device->bdev) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006073 bio_io_error(bio);
David Woodhouse53b381b2013-01-29 18:40:14 -05006074 return;
6075 }
6076
Chris Mason8b712842008-06-11 16:50:36 -04006077 /* don't bother with additional async steps for reads, right now */
Mike Christie37226b22016-06-05 14:31:52 -05006078 if (bio_op(bio) == REQ_OP_READ) {
Chris Mason492bb6de2008-07-31 16:29:02 -04006079 bio_get(bio);
Mike Christie4e49ea42016-06-05 14:31:41 -05006080 btrfsic_submit_bio(bio);
Chris Mason492bb6de2008-07-31 16:29:02 -04006081 bio_put(bio);
Jeff Mahoney143bede2012-03-01 14:56:26 +01006082 return;
Chris Mason8b712842008-06-11 16:50:36 -04006083 }
6084
6085 /*
Chris Mason0986fe9e2008-08-15 15:34:15 -04006086 * nr_async_bios allows us to reliably return congestion to the
Chris Mason8b712842008-06-11 16:50:36 -04006087 * higher layers. Otherwise, the async bio makes it appear we have
6088 * made progress against dirty pages when we've really just put it
6089 * on a queue for later
6090 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006091 atomic_inc(&fs_info->nr_async_bios);
Chris Mason492bb6de2008-07-31 16:29:02 -04006092 WARN_ON(bio->bi_next);
Chris Mason8b712842008-06-11 16:50:36 -04006093 bio->bi_next = NULL;
Chris Mason8b712842008-06-11 16:50:36 -04006094
6095 spin_lock(&device->io_lock);
Christoph Hellwig67f055c2016-11-01 07:40:06 -06006096 if (op_is_sync(bio->bi_opf))
Chris Masonffbd5172009-04-20 15:50:09 -04006097 pending_bios = &device->pending_sync_bios;
6098 else
6099 pending_bios = &device->pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04006100
Chris Masonffbd5172009-04-20 15:50:09 -04006101 if (pending_bios->tail)
6102 pending_bios->tail->bi_next = bio;
Chris Mason8b712842008-06-11 16:50:36 -04006103
Chris Masonffbd5172009-04-20 15:50:09 -04006104 pending_bios->tail = bio;
6105 if (!pending_bios->head)
6106 pending_bios->head = bio;
Chris Mason8b712842008-06-11 16:50:36 -04006107 if (device->running_pending)
6108 should_queue = 0;
6109
6110 spin_unlock(&device->io_lock);
6111
6112 if (should_queue)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006113 btrfs_queue_work(fs_info->submit_workers, &device->work);
Chris Mason8b712842008-06-11 16:50:36 -04006114}
6115
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006116static void submit_stripe_bio(struct btrfs_bio *bbio, struct bio *bio,
6117 u64 physical, int dev_nr, int async)
Josef Bacikde1ee922012-10-19 16:50:56 -04006118{
6119 struct btrfs_device *dev = bbio->stripes[dev_nr].dev;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006120 struct btrfs_fs_info *fs_info = bbio->fs_info;
Josef Bacikde1ee922012-10-19 16:50:56 -04006121
6122 bio->bi_private = bbio;
Chris Mason9be33952013-05-17 18:30:14 -04006123 btrfs_io_bio(bio)->stripe_index = dev_nr;
Josef Bacikde1ee922012-10-19 16:50:56 -04006124 bio->bi_end_io = btrfs_end_bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006125 bio->bi_iter.bi_sector = physical >> 9;
Josef Bacikde1ee922012-10-19 16:50:56 -04006126#ifdef DEBUG
6127 {
6128 struct rcu_string *name;
6129
6130 rcu_read_lock();
6131 name = rcu_dereference(dev->name);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006132 btrfs_debug(fs_info,
6133 "btrfs_map_bio: rw %d 0x%x, sector=%llu, dev=%lu (%s id %llu), size=%u",
6134 bio_op(bio), bio->bi_opf,
6135 (u64)bio->bi_iter.bi_sector,
6136 (u_long)dev->bdev->bd_dev, name->str, dev->devid,
6137 bio->bi_iter.bi_size);
Josef Bacikde1ee922012-10-19 16:50:56 -04006138 rcu_read_unlock();
6139 }
6140#endif
6141 bio->bi_bdev = dev->bdev;
Miao Xiec404e0d2014-01-30 16:46:55 +08006142
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006143 btrfs_bio_counter_inc_noblocked(fs_info);
Miao Xiec404e0d2014-01-30 16:46:55 +08006144
Josef Bacikde1ee922012-10-19 16:50:56 -04006145 if (async)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006146 btrfs_schedule_bio(dev, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006147 else
Mike Christie4e49ea42016-06-05 14:31:41 -05006148 btrfsic_submit_bio(bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006149}
6150
Josef Bacikde1ee922012-10-19 16:50:56 -04006151static void bbio_error(struct btrfs_bio *bbio, struct bio *bio, u64 logical)
6152{
6153 atomic_inc(&bbio->error);
6154 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Nicholas D Steeves01327612016-05-19 21:18:45 -04006155 /* Should be the original bio. */
Miao Xie8408c712014-06-19 10:42:55 +08006156 WARN_ON(bio != bbio->orig_bio);
6157
Chris Mason9be33952013-05-17 18:30:14 -04006158 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006159 bio->bi_iter.bi_sector = logical >> 9;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006160 bio->bi_error = -EIO;
6161 btrfs_end_bbio(bbio, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006162 }
6163}
6164
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006165int btrfs_map_bio(struct btrfs_fs_info *fs_info, struct bio *bio,
Chris Mason8b712842008-06-11 16:50:36 -04006166 int mirror_num, int async_submit)
Chris Mason0b86a832008-03-24 15:01:56 -04006167{
Chris Mason0b86a832008-03-24 15:01:56 -04006168 struct btrfs_device *dev;
Chris Mason8790d502008-04-03 16:29:03 -04006169 struct bio *first_bio = bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006170 u64 logical = (u64)bio->bi_iter.bi_sector << 9;
Chris Mason0b86a832008-03-24 15:01:56 -04006171 u64 length = 0;
6172 u64 map_length;
Chris Mason0b86a832008-03-24 15:01:56 -04006173 int ret;
Zhao Lei08da7572015-02-12 15:42:16 +08006174 int dev_nr;
6175 int total_devs;
Jan Schmidta1d3c472011-08-04 17:15:33 +02006176 struct btrfs_bio *bbio = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006177
Kent Overstreet4f024f32013-10-11 15:44:27 -07006178 length = bio->bi_iter.bi_size;
Chris Mason0b86a832008-03-24 15:01:56 -04006179 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04006180
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006181 btrfs_bio_counter_inc_blocked(fs_info);
6182 ret = __btrfs_map_block(fs_info, bio_op(bio), logical,
Mike Christie37226b22016-06-05 14:31:52 -05006183 &map_length, &bbio, mirror_num, 1);
Miao Xiec404e0d2014-01-30 16:46:55 +08006184 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006185 btrfs_bio_counter_dec(fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006186 return ret;
Miao Xiec404e0d2014-01-30 16:46:55 +08006187 }
Chris Masoncea9e442008-04-09 16:28:12 -04006188
Jan Schmidta1d3c472011-08-04 17:15:33 +02006189 total_devs = bbio->num_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05006190 bbio->orig_bio = first_bio;
6191 bbio->private = first_bio->bi_private;
6192 bbio->end_io = first_bio->bi_end_io;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006193 bbio->fs_info = fs_info;
David Woodhouse53b381b2013-01-29 18:40:14 -05006194 atomic_set(&bbio->stripes_pending, bbio->num_stripes);
6195
Zhao Leiad1ba2a2015-12-15 18:18:09 +08006196 if ((bbio->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
Mike Christie37226b22016-06-05 14:31:52 -05006197 ((bio_op(bio) == REQ_OP_WRITE) || (mirror_num > 1))) {
David Woodhouse53b381b2013-01-29 18:40:14 -05006198 /* In this case, map_length has been set to the length of
6199 a single stripe; not the whole write */
Mike Christie37226b22016-06-05 14:31:52 -05006200 if (bio_op(bio) == REQ_OP_WRITE) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006201 ret = raid56_parity_write(fs_info, bio, bbio,
6202 map_length);
David Woodhouse53b381b2013-01-29 18:40:14 -05006203 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006204 ret = raid56_parity_recover(fs_info, bio, bbio,
6205 map_length, mirror_num, 1);
David Woodhouse53b381b2013-01-29 18:40:14 -05006206 }
Miao Xie42452152014-11-25 16:39:28 +08006207
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006208 btrfs_bio_counter_dec(fs_info);
Miao Xiec404e0d2014-01-30 16:46:55 +08006209 return ret;
David Woodhouse53b381b2013-01-29 18:40:14 -05006210 }
6211
Chris Masoncea9e442008-04-09 16:28:12 -04006212 if (map_length < length) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006213 btrfs_crit(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006214 "mapping failed logical %llu bio len %llu len %llu",
6215 logical, length, map_length);
Chris Masoncea9e442008-04-09 16:28:12 -04006216 BUG();
6217 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02006218
Zhao Lei08da7572015-02-12 15:42:16 +08006219 for (dev_nr = 0; dev_nr < total_devs; dev_nr++) {
Josef Bacikde1ee922012-10-19 16:50:56 -04006220 dev = bbio->stripes[dev_nr].dev;
Mike Christie37226b22016-06-05 14:31:52 -05006221 if (!dev || !dev->bdev ||
Liu Boa967efb2017-04-10 12:36:26 -07006222 (bio_op(first_bio) == REQ_OP_WRITE && !dev->writeable)) {
Josef Bacikde1ee922012-10-19 16:50:56 -04006223 bbio_error(bbio, first_bio, logical);
Josef Bacikde1ee922012-10-19 16:50:56 -04006224 continue;
6225 }
6226
Jan Schmidta1d3c472011-08-04 17:15:33 +02006227 if (dev_nr < total_devs - 1) {
Chris Mason9be33952013-05-17 18:30:14 -04006228 bio = btrfs_bio_clone(first_bio, GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006229 BUG_ON(!bio); /* -ENOMEM */
Mike Snitzer326e1db2015-05-22 09:14:03 -04006230 } else
Jan Schmidta1d3c472011-08-04 17:15:33 +02006231 bio = first_bio;
Josef Bacik606686e2012-06-04 14:03:51 -04006232
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006233 submit_stripe_bio(bbio, bio, bbio->stripes[dev_nr].physical,
6234 dev_nr, async_submit);
Chris Mason239b14b2008-03-24 15:02:07 -04006235 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006236 btrfs_bio_counter_dec(fs_info);
Chris Mason0b86a832008-03-24 15:01:56 -04006237 return 0;
6238}
6239
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006240struct btrfs_device *btrfs_find_device(struct btrfs_fs_info *fs_info, u64 devid,
Yan Zheng2b820322008-11-17 21:11:30 -05006241 u8 *uuid, u8 *fsid)
Chris Mason0b86a832008-03-24 15:01:56 -04006242{
Yan Zheng2b820322008-11-17 21:11:30 -05006243 struct btrfs_device *device;
6244 struct btrfs_fs_devices *cur_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006245
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006246 cur_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006247 while (cur_devices) {
6248 if (!fsid ||
6249 !memcmp(cur_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
6250 device = __find_device(&cur_devices->devices,
6251 devid, uuid);
6252 if (device)
6253 return device;
6254 }
6255 cur_devices = cur_devices->seed;
6256 }
6257 return NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006258}
6259
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006260static struct btrfs_device *add_missing_dev(struct btrfs_fs_devices *fs_devices,
Chris Masondfe25022008-05-13 13:46:40 -04006261 u64 devid, u8 *dev_uuid)
6262{
6263 struct btrfs_device *device;
Chris Masondfe25022008-05-13 13:46:40 -04006264
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006265 device = btrfs_alloc_device(NULL, &devid, dev_uuid);
6266 if (IS_ERR(device))
yanhai zhu7cbd8a82008-11-12 14:38:54 -05006267 return NULL;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006268
6269 list_add(&device->dev_list, &fs_devices->devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006270 device->fs_devices = fs_devices;
Chris Masondfe25022008-05-13 13:46:40 -04006271 fs_devices->num_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006272
6273 device->missing = 1;
Chris Masoncd02dca2010-12-13 14:56:23 -05006274 fs_devices->missing_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006275
Chris Masondfe25022008-05-13 13:46:40 -04006276 return device;
6277}
6278
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006279/**
6280 * btrfs_alloc_device - allocate struct btrfs_device
6281 * @fs_info: used only for generating a new devid, can be NULL if
6282 * devid is provided (i.e. @devid != NULL).
6283 * @devid: a pointer to devid for this device. If NULL a new devid
6284 * is generated.
6285 * @uuid: a pointer to UUID for this device. If NULL a new UUID
6286 * is generated.
6287 *
6288 * Return: a pointer to a new &struct btrfs_device on success; ERR_PTR()
6289 * on error. Returned struct is not linked onto any lists and can be
6290 * destroyed with kfree() right away.
6291 */
6292struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info,
6293 const u64 *devid,
6294 const u8 *uuid)
6295{
6296 struct btrfs_device *dev;
6297 u64 tmp;
6298
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05306299 if (WARN_ON(!devid && !fs_info))
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006300 return ERR_PTR(-EINVAL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006301
6302 dev = __alloc_device();
6303 if (IS_ERR(dev))
6304 return dev;
6305
6306 if (devid)
6307 tmp = *devid;
6308 else {
6309 int ret;
6310
6311 ret = find_next_devid(fs_info, &tmp);
6312 if (ret) {
6313 kfree(dev);
6314 return ERR_PTR(ret);
6315 }
6316 }
6317 dev->devid = tmp;
6318
6319 if (uuid)
6320 memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE);
6321 else
6322 generate_random_uuid(dev->uuid);
6323
Liu Bo9e0af232014-08-15 23:36:53 +08006324 btrfs_init_work(&dev->work, btrfs_submit_helper,
6325 pending_bios_fn, NULL, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006326
6327 return dev;
6328}
6329
Liu Boe06cd3d2016-06-03 12:05:15 -07006330/* Return -EIO if any error, otherwise return 0. */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006331static int btrfs_check_chunk_valid(struct btrfs_fs_info *fs_info,
Liu Boe06cd3d2016-06-03 12:05:15 -07006332 struct extent_buffer *leaf,
6333 struct btrfs_chunk *chunk, u64 logical)
6334{
6335 u64 length;
6336 u64 stripe_len;
6337 u16 num_stripes;
6338 u16 sub_stripes;
6339 u64 type;
6340
6341 length = btrfs_chunk_length(leaf, chunk);
6342 stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6343 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
6344 sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
6345 type = btrfs_chunk_type(leaf, chunk);
6346
6347 if (!num_stripes) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006348 btrfs_err(fs_info, "invalid chunk num_stripes: %u",
Liu Boe06cd3d2016-06-03 12:05:15 -07006349 num_stripes);
6350 return -EIO;
6351 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006352 if (!IS_ALIGNED(logical, fs_info->sectorsize)) {
6353 btrfs_err(fs_info, "invalid chunk logical %llu", logical);
Liu Boe06cd3d2016-06-03 12:05:15 -07006354 return -EIO;
6355 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006356 if (btrfs_chunk_sector_size(leaf, chunk) != fs_info->sectorsize) {
6357 btrfs_err(fs_info, "invalid chunk sectorsize %u",
Liu Boe06cd3d2016-06-03 12:05:15 -07006358 btrfs_chunk_sector_size(leaf, chunk));
6359 return -EIO;
6360 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006361 if (!length || !IS_ALIGNED(length, fs_info->sectorsize)) {
6362 btrfs_err(fs_info, "invalid chunk length %llu", length);
Liu Boe06cd3d2016-06-03 12:05:15 -07006363 return -EIO;
6364 }
6365 if (!is_power_of_2(stripe_len) || stripe_len != BTRFS_STRIPE_LEN) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006366 btrfs_err(fs_info, "invalid chunk stripe length: %llu",
Liu Boe06cd3d2016-06-03 12:05:15 -07006367 stripe_len);
6368 return -EIO;
6369 }
6370 if (~(BTRFS_BLOCK_GROUP_TYPE_MASK | BTRFS_BLOCK_GROUP_PROFILE_MASK) &
6371 type) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006372 btrfs_err(fs_info, "unrecognized chunk type: %llu",
Liu Boe06cd3d2016-06-03 12:05:15 -07006373 ~(BTRFS_BLOCK_GROUP_TYPE_MASK |
6374 BTRFS_BLOCK_GROUP_PROFILE_MASK) &
6375 btrfs_chunk_type(leaf, chunk));
6376 return -EIO;
6377 }
6378 if ((type & BTRFS_BLOCK_GROUP_RAID10 && sub_stripes != 2) ||
6379 (type & BTRFS_BLOCK_GROUP_RAID1 && num_stripes < 1) ||
6380 (type & BTRFS_BLOCK_GROUP_RAID5 && num_stripes < 2) ||
6381 (type & BTRFS_BLOCK_GROUP_RAID6 && num_stripes < 3) ||
6382 (type & BTRFS_BLOCK_GROUP_DUP && num_stripes > 2) ||
6383 ((type & BTRFS_BLOCK_GROUP_PROFILE_MASK) == 0 &&
6384 num_stripes != 1)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006385 btrfs_err(fs_info,
Liu Boe06cd3d2016-06-03 12:05:15 -07006386 "invalid num_stripes:sub_stripes %u:%u for profile %llu",
6387 num_stripes, sub_stripes,
6388 type & BTRFS_BLOCK_GROUP_PROFILE_MASK);
6389 return -EIO;
6390 }
6391
6392 return 0;
6393}
6394
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006395static int read_one_chunk(struct btrfs_fs_info *fs_info, struct btrfs_key *key,
Chris Mason0b86a832008-03-24 15:01:56 -04006396 struct extent_buffer *leaf,
6397 struct btrfs_chunk *chunk)
6398{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006399 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Mason0b86a832008-03-24 15:01:56 -04006400 struct map_lookup *map;
6401 struct extent_map *em;
6402 u64 logical;
6403 u64 length;
Qu Wenruof04b7722015-12-15 09:14:37 +08006404 u64 stripe_len;
Chris Mason0b86a832008-03-24 15:01:56 -04006405 u64 devid;
Chris Masona4437552008-04-18 10:29:38 -04006406 u8 uuid[BTRFS_UUID_SIZE];
Chris Mason593060d2008-03-25 16:50:33 -04006407 int num_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04006408 int ret;
Chris Mason593060d2008-03-25 16:50:33 -04006409 int i;
Chris Mason0b86a832008-03-24 15:01:56 -04006410
Chris Masone17cade2008-04-15 15:41:47 -04006411 logical = key->offset;
6412 length = btrfs_chunk_length(leaf, chunk);
Qu Wenruof04b7722015-12-15 09:14:37 +08006413 stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6414 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
Liu Boe06cd3d2016-06-03 12:05:15 -07006415
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006416 ret = btrfs_check_chunk_valid(fs_info, leaf, chunk, logical);
Liu Boe06cd3d2016-06-03 12:05:15 -07006417 if (ret)
6418 return ret;
Chris Masona061fc82008-05-07 11:43:44 -04006419
Chris Mason890871b2009-09-02 16:24:52 -04006420 read_lock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006421 em = lookup_extent_mapping(&map_tree->map_tree, logical, 1);
Chris Mason890871b2009-09-02 16:24:52 -04006422 read_unlock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006423
6424 /* already mapped? */
6425 if (em && em->start <= logical && em->start + em->len > logical) {
6426 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04006427 return 0;
6428 } else if (em) {
6429 free_extent_map(em);
6430 }
Chris Mason0b86a832008-03-24 15:01:56 -04006431
David Sterba172ddd62011-04-21 00:48:27 +02006432 em = alloc_extent_map();
Chris Mason0b86a832008-03-24 15:01:56 -04006433 if (!em)
6434 return -ENOMEM;
Chris Mason593060d2008-03-25 16:50:33 -04006435 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
Chris Mason0b86a832008-03-24 15:01:56 -04006436 if (!map) {
6437 free_extent_map(em);
6438 return -ENOMEM;
6439 }
6440
Wang Shilong298a8f92014-06-19 10:42:52 +08006441 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Jeff Mahoney95617d62015-06-03 10:55:48 -04006442 em->map_lookup = map;
Chris Mason0b86a832008-03-24 15:01:56 -04006443 em->start = logical;
6444 em->len = length;
Josef Bacik70c8a912012-10-11 16:54:30 -04006445 em->orig_start = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006446 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04006447 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04006448
Chris Mason593060d2008-03-25 16:50:33 -04006449 map->num_stripes = num_stripes;
6450 map->io_width = btrfs_chunk_io_width(leaf, chunk);
6451 map->io_align = btrfs_chunk_io_align(leaf, chunk);
6452 map->sector_size = btrfs_chunk_sector_size(leaf, chunk);
6453 map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6454 map->type = btrfs_chunk_type(leaf, chunk);
Chris Mason321aecc2008-04-16 10:49:51 -04006455 map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04006456 for (i = 0; i < num_stripes; i++) {
6457 map->stripes[i].physical =
6458 btrfs_stripe_offset_nr(leaf, chunk, i);
6459 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
Chris Masona4437552008-04-18 10:29:38 -04006460 read_extent_buffer(leaf, uuid, (unsigned long)
6461 btrfs_stripe_dev_uuid_nr(chunk, i),
6462 BTRFS_UUID_SIZE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006463 map->stripes[i].dev = btrfs_find_device(fs_info, devid,
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006464 uuid, NULL);
Jeff Mahoney3cdde222016-06-09 21:38:35 -04006465 if (!map->stripes[i].dev &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006466 !btrfs_test_opt(fs_info, DEGRADED)) {
Chris Mason593060d2008-03-25 16:50:33 -04006467 free_extent_map(em);
6468 return -EIO;
6469 }
Chris Masondfe25022008-05-13 13:46:40 -04006470 if (!map->stripes[i].dev) {
6471 map->stripes[i].dev =
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006472 add_missing_dev(fs_info->fs_devices, devid,
6473 uuid);
Chris Masondfe25022008-05-13 13:46:40 -04006474 if (!map->stripes[i].dev) {
Chris Masondfe25022008-05-13 13:46:40 -04006475 free_extent_map(em);
6476 return -EIO;
6477 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006478 btrfs_warn(fs_info, "devid %llu uuid %pU is missing",
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006479 devid, uuid);
Chris Masondfe25022008-05-13 13:46:40 -04006480 }
6481 map->stripes[i].dev->in_fs_metadata = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04006482 }
6483
Chris Mason890871b2009-09-02 16:24:52 -04006484 write_lock(&map_tree->map_tree.lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006485 ret = add_extent_mapping(&map_tree->map_tree, em, 0);
Chris Mason890871b2009-09-02 16:24:52 -04006486 write_unlock(&map_tree->map_tree.lock);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006487 BUG_ON(ret); /* Tree corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04006488 free_extent_map(em);
6489
6490 return 0;
6491}
6492
Jeff Mahoney143bede2012-03-01 14:56:26 +01006493static void fill_device_from_item(struct extent_buffer *leaf,
Chris Mason0b86a832008-03-24 15:01:56 -04006494 struct btrfs_dev_item *dev_item,
6495 struct btrfs_device *device)
6496{
6497 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04006498
6499 device->devid = btrfs_device_id(leaf, dev_item);
Chris Balld6397ba2009-04-27 07:29:03 -04006500 device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item);
6501 device->total_bytes = device->disk_total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08006502 device->commit_total_bytes = device->disk_total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04006503 device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
Miao Xiece7213c2014-09-03 21:35:34 +08006504 device->commit_bytes_used = device->bytes_used;
Chris Mason0b86a832008-03-24 15:01:56 -04006505 device->type = btrfs_device_type(leaf, dev_item);
6506 device->io_align = btrfs_device_io_align(leaf, dev_item);
6507 device->io_width = btrfs_device_io_width(leaf, dev_item);
6508 device->sector_size = btrfs_device_sector_size(leaf, dev_item);
Stefan Behrens8dabb742012-11-06 13:15:27 +01006509 WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID);
Stefan Behrens63a212a2012-11-05 18:29:28 +01006510 device->is_tgtdev_for_dev_replace = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006511
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006512 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04006513 read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006514}
6515
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006516static struct btrfs_fs_devices *open_seed_devices(struct btrfs_fs_info *fs_info,
Miao Xie5f375832014-09-03 21:35:46 +08006517 u8 *fsid)
Yan Zheng2b820322008-11-17 21:11:30 -05006518{
6519 struct btrfs_fs_devices *fs_devices;
6520 int ret;
6521
Li Zefanb367e472011-12-07 11:38:24 +08006522 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zheng2b820322008-11-17 21:11:30 -05006523
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006524 fs_devices = fs_info->fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05006525 while (fs_devices) {
Miao Xie5f375832014-09-03 21:35:46 +08006526 if (!memcmp(fs_devices->fsid, fsid, BTRFS_UUID_SIZE))
6527 return fs_devices;
6528
Yan Zheng2b820322008-11-17 21:11:30 -05006529 fs_devices = fs_devices->seed;
6530 }
6531
6532 fs_devices = find_fsid(fsid);
6533 if (!fs_devices) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006534 if (!btrfs_test_opt(fs_info, DEGRADED))
Miao Xie5f375832014-09-03 21:35:46 +08006535 return ERR_PTR(-ENOENT);
6536
6537 fs_devices = alloc_fs_devices(fsid);
6538 if (IS_ERR(fs_devices))
6539 return fs_devices;
6540
6541 fs_devices->seeding = 1;
6542 fs_devices->opened = 1;
6543 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006544 }
Yan Zhenge4404d62008-12-12 10:03:26 -05006545
6546 fs_devices = clone_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006547 if (IS_ERR(fs_devices))
6548 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006549
Christoph Hellwig97288f22008-12-02 06:36:09 -05006550 ret = __btrfs_open_devices(fs_devices, FMODE_READ,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006551 fs_info->bdev_holder);
Julia Lawall48d28232012-04-14 11:24:33 +02006552 if (ret) {
6553 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006554 fs_devices = ERR_PTR(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05006555 goto out;
Julia Lawall48d28232012-04-14 11:24:33 +02006556 }
Yan Zheng2b820322008-11-17 21:11:30 -05006557
6558 if (!fs_devices->seeding) {
6559 __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006560 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006561 fs_devices = ERR_PTR(-EINVAL);
Yan Zheng2b820322008-11-17 21:11:30 -05006562 goto out;
6563 }
6564
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006565 fs_devices->seed = fs_info->fs_devices->seed;
6566 fs_info->fs_devices->seed = fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006567out:
Miao Xie5f375832014-09-03 21:35:46 +08006568 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006569}
6570
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006571static int read_one_dev(struct btrfs_fs_info *fs_info,
Chris Mason0b86a832008-03-24 15:01:56 -04006572 struct extent_buffer *leaf,
6573 struct btrfs_dev_item *dev_item)
6574{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006575 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006576 struct btrfs_device *device;
6577 u64 devid;
6578 int ret;
Yan Zheng2b820322008-11-17 21:11:30 -05006579 u8 fs_uuid[BTRFS_UUID_SIZE];
Chris Masona4437552008-04-18 10:29:38 -04006580 u8 dev_uuid[BTRFS_UUID_SIZE];
6581
Chris Mason0b86a832008-03-24 15:01:56 -04006582 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006583 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Chris Masona4437552008-04-18 10:29:38 -04006584 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02006585 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05006586 BTRFS_UUID_SIZE);
6587
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006588 if (memcmp(fs_uuid, fs_info->fsid, BTRFS_UUID_SIZE)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006589 fs_devices = open_seed_devices(fs_info, fs_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006590 if (IS_ERR(fs_devices))
6591 return PTR_ERR(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05006592 }
6593
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006594 device = btrfs_find_device(fs_info, devid, dev_uuid, fs_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006595 if (!device) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006596 if (!btrfs_test_opt(fs_info, DEGRADED))
Yan Zheng2b820322008-11-17 21:11:30 -05006597 return -EIO;
6598
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006599 device = add_missing_dev(fs_devices, devid, dev_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006600 if (!device)
6601 return -ENOMEM;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006602 btrfs_warn(fs_info, "devid %llu uuid %pU missing",
Anand Jain33b97e42015-05-08 04:34:35 +08006603 devid, dev_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006604 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006605 if (!device->bdev && !btrfs_test_opt(fs_info, DEGRADED))
Miao Xie5f375832014-09-03 21:35:46 +08006606 return -EIO;
6607
6608 if(!device->bdev && !device->missing) {
Chris Masoncd02dca2010-12-13 14:56:23 -05006609 /*
6610 * this happens when a device that was properly setup
6611 * in the device info lists suddenly goes bad.
6612 * device->bdev is NULL, and so we have to set
6613 * device->missing to one here
6614 */
Miao Xie5f375832014-09-03 21:35:46 +08006615 device->fs_devices->missing_devices++;
Chris Masoncd02dca2010-12-13 14:56:23 -05006616 device->missing = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05006617 }
Miao Xie5f375832014-09-03 21:35:46 +08006618
6619 /* Move the device to its own fs_devices */
6620 if (device->fs_devices != fs_devices) {
6621 ASSERT(device->missing);
6622
6623 list_move(&device->dev_list, &fs_devices->devices);
6624 device->fs_devices->num_devices--;
6625 fs_devices->num_devices++;
6626
6627 device->fs_devices->missing_devices--;
6628 fs_devices->missing_devices++;
6629
6630 device->fs_devices = fs_devices;
6631 }
Yan Zheng2b820322008-11-17 21:11:30 -05006632 }
6633
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006634 if (device->fs_devices != fs_info->fs_devices) {
Yan Zheng2b820322008-11-17 21:11:30 -05006635 BUG_ON(device->writeable);
6636 if (device->generation !=
6637 btrfs_device_generation(leaf, dev_item))
6638 return -EINVAL;
Chris Mason6324fbf2008-03-24 15:01:59 -04006639 }
Chris Mason0b86a832008-03-24 15:01:56 -04006640
6641 fill_device_from_item(leaf, dev_item, device);
Chris Masondfe25022008-05-13 13:46:40 -04006642 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01006643 if (device->writeable && !device->is_tgtdev_for_dev_replace) {
Yan Zheng2b820322008-11-17 21:11:30 -05006644 device->fs_devices->total_rw_bytes += device->total_bytes;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006645 spin_lock(&fs_info->free_chunk_lock);
6646 fs_info->free_chunk_space += device->total_bytes -
Josef Bacik2bf64752011-09-26 17:12:22 -04006647 device->bytes_used;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006648 spin_unlock(&fs_info->free_chunk_lock);
Josef Bacik2bf64752011-09-26 17:12:22 -04006649 }
Chris Mason0b86a832008-03-24 15:01:56 -04006650 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006651 return ret;
6652}
6653
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04006654int btrfs_read_sys_array(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04006655{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04006656 struct btrfs_root *root = fs_info->tree_root;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006657 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Masona061fc82008-05-07 11:43:44 -04006658 struct extent_buffer *sb;
Chris Mason0b86a832008-03-24 15:01:56 -04006659 struct btrfs_disk_key *disk_key;
Chris Mason0b86a832008-03-24 15:01:56 -04006660 struct btrfs_chunk *chunk;
David Sterba1ffb22c2014-10-31 19:02:42 +01006661 u8 *array_ptr;
6662 unsigned long sb_array_offset;
Chris Mason84eed902008-04-25 09:04:37 -04006663 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006664 u32 num_stripes;
6665 u32 array_size;
6666 u32 len = 0;
David Sterba1ffb22c2014-10-31 19:02:42 +01006667 u32 cur_offset;
Liu Boe06cd3d2016-06-03 12:05:15 -07006668 u64 type;
Chris Mason84eed902008-04-25 09:04:37 -04006669 struct btrfs_key key;
Chris Mason0b86a832008-03-24 15:01:56 -04006670
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006671 ASSERT(BTRFS_SUPER_INFO_SIZE <= fs_info->nodesize);
David Sterbaa83fffb2014-06-15 02:39:54 +02006672 /*
6673 * This will create extent buffer of nodesize, superblock size is
6674 * fixed to BTRFS_SUPER_INFO_SIZE. If nodesize > sb size, this will
6675 * overallocate but we can keep it as-is, only the first page is used.
6676 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006677 sb = btrfs_find_create_tree_block(fs_info, BTRFS_SUPER_INFO_OFFSET);
Liu Boc871b0f2016-06-06 12:01:23 -07006678 if (IS_ERR(sb))
6679 return PTR_ERR(sb);
David Sterba4db8c522015-12-03 13:06:46 +01006680 set_extent_buffer_uptodate(sb);
Chris Mason85d4e462011-07-26 16:11:19 -04006681 btrfs_set_buffer_lockdep_class(root->root_key.objectid, sb, 0);
David Sterba8a334422011-10-07 18:06:13 +02006682 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04006683 * The sb extent buffer is artificial and just used to read the system array.
David Sterba4db8c522015-12-03 13:06:46 +01006684 * set_extent_buffer_uptodate() call does not properly mark all it's
David Sterba8a334422011-10-07 18:06:13 +02006685 * pages up-to-date when the page is larger: extent does not cover the
6686 * whole page and consequently check_page_uptodate does not find all
6687 * the page's extents up-to-date (the hole beyond sb),
6688 * write_extent_buffer then triggers a WARN_ON.
6689 *
6690 * Regular short extents go through mark_extent_buffer_dirty/writeback cycle,
6691 * but sb spans only this function. Add an explicit SetPageUptodate call
6692 * to silence the warning eg. on PowerPC 64.
6693 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006694 if (PAGE_SIZE > BTRFS_SUPER_INFO_SIZE)
Chris Mason727011e2010-08-06 13:21:20 -04006695 SetPageUptodate(sb->pages[0]);
Chris Mason4008c042009-02-12 14:09:45 -05006696
Chris Masona061fc82008-05-07 11:43:44 -04006697 write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006698 array_size = btrfs_super_sys_array_size(super_copy);
6699
David Sterba1ffb22c2014-10-31 19:02:42 +01006700 array_ptr = super_copy->sys_chunk_array;
6701 sb_array_offset = offsetof(struct btrfs_super_block, sys_chunk_array);
6702 cur_offset = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006703
David Sterba1ffb22c2014-10-31 19:02:42 +01006704 while (cur_offset < array_size) {
6705 disk_key = (struct btrfs_disk_key *)array_ptr;
David Sterbae3540ea2014-11-05 15:24:51 +01006706 len = sizeof(*disk_key);
6707 if (cur_offset + len > array_size)
6708 goto out_short_read;
6709
Chris Mason0b86a832008-03-24 15:01:56 -04006710 btrfs_disk_key_to_cpu(&key, disk_key);
6711
David Sterba1ffb22c2014-10-31 19:02:42 +01006712 array_ptr += len;
6713 sb_array_offset += len;
6714 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006715
Chris Mason0d81ba52008-03-24 15:02:07 -04006716 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
David Sterba1ffb22c2014-10-31 19:02:42 +01006717 chunk = (struct btrfs_chunk *)sb_array_offset;
David Sterbae3540ea2014-11-05 15:24:51 +01006718 /*
6719 * At least one btrfs_chunk with one stripe must be
6720 * present, exact stripe count check comes afterwards
6721 */
6722 len = btrfs_chunk_item_size(1);
6723 if (cur_offset + len > array_size)
6724 goto out_short_read;
6725
6726 num_stripes = btrfs_chunk_num_stripes(sb, chunk);
David Sterbaf5cdedd2015-11-30 17:27:06 +01006727 if (!num_stripes) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006728 btrfs_err(fs_info,
6729 "invalid number of stripes %u in sys_array at offset %u",
David Sterbaf5cdedd2015-11-30 17:27:06 +01006730 num_stripes, cur_offset);
6731 ret = -EIO;
6732 break;
6733 }
6734
Liu Boe06cd3d2016-06-03 12:05:15 -07006735 type = btrfs_chunk_type(sb, chunk);
6736 if ((type & BTRFS_BLOCK_GROUP_SYSTEM) == 0) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006737 btrfs_err(fs_info,
Liu Boe06cd3d2016-06-03 12:05:15 -07006738 "invalid chunk type %llu in sys_array at offset %u",
6739 type, cur_offset);
6740 ret = -EIO;
6741 break;
6742 }
6743
David Sterbae3540ea2014-11-05 15:24:51 +01006744 len = btrfs_chunk_item_size(num_stripes);
6745 if (cur_offset + len > array_size)
6746 goto out_short_read;
6747
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006748 ret = read_one_chunk(fs_info, &key, sb, chunk);
Chris Mason84eed902008-04-25 09:04:37 -04006749 if (ret)
6750 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006751 } else {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006752 btrfs_err(fs_info,
6753 "unexpected item type %u in sys_array at offset %u",
6754 (u32)key.type, cur_offset);
Chris Mason84eed902008-04-25 09:04:37 -04006755 ret = -EIO;
6756 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006757 }
David Sterba1ffb22c2014-10-31 19:02:42 +01006758 array_ptr += len;
6759 sb_array_offset += len;
6760 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006761 }
Liu Bod8651772016-06-03 17:41:42 -07006762 clear_extent_buffer_uptodate(sb);
Liu Bo1c8b5b62016-05-13 17:06:59 -07006763 free_extent_buffer_stale(sb);
Chris Mason84eed902008-04-25 09:04:37 -04006764 return ret;
David Sterbae3540ea2014-11-05 15:24:51 +01006765
6766out_short_read:
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006767 btrfs_err(fs_info, "sys_array too short to read %u bytes at offset %u",
David Sterbae3540ea2014-11-05 15:24:51 +01006768 len, cur_offset);
Liu Bod8651772016-06-03 17:41:42 -07006769 clear_extent_buffer_uptodate(sb);
Liu Bo1c8b5b62016-05-13 17:06:59 -07006770 free_extent_buffer_stale(sb);
David Sterbae3540ea2014-11-05 15:24:51 +01006771 return -EIO;
Chris Mason0b86a832008-03-24 15:01:56 -04006772}
6773
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04006774int btrfs_read_chunk_tree(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04006775{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04006776 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04006777 struct btrfs_path *path;
6778 struct extent_buffer *leaf;
6779 struct btrfs_key key;
6780 struct btrfs_key found_key;
6781 int ret;
6782 int slot;
Liu Bo99e3ecf2016-06-03 12:05:14 -07006783 u64 total_dev = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006784
Chris Mason0b86a832008-03-24 15:01:56 -04006785 path = btrfs_alloc_path();
6786 if (!path)
6787 return -ENOMEM;
6788
Li Zefanb367e472011-12-07 11:38:24 +08006789 mutex_lock(&uuid_mutex);
David Sterba34441362016-10-04 19:34:27 +02006790 mutex_lock(&fs_info->chunk_mutex);
Li Zefanb367e472011-12-07 11:38:24 +08006791
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006792 /*
6793 * Read all device items, and then all the chunk items. All
6794 * device items are found before any chunk item (their object id
6795 * is smaller than the lowest possible object id for a chunk
6796 * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID).
Chris Mason0b86a832008-03-24 15:01:56 -04006797 */
6798 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
6799 key.offset = 0;
6800 key.type = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006801 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Zhao Leiab593812010-03-25 12:34:49 +00006802 if (ret < 0)
6803 goto error;
Chris Masond3977122009-01-05 21:25:51 -05006804 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04006805 leaf = path->nodes[0];
6806 slot = path->slots[0];
6807 if (slot >= btrfs_header_nritems(leaf)) {
6808 ret = btrfs_next_leaf(root, path);
6809 if (ret == 0)
6810 continue;
6811 if (ret < 0)
6812 goto error;
6813 break;
6814 }
6815 btrfs_item_key_to_cpu(leaf, &found_key, slot);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006816 if (found_key.type == BTRFS_DEV_ITEM_KEY) {
6817 struct btrfs_dev_item *dev_item;
6818 dev_item = btrfs_item_ptr(leaf, slot,
Chris Mason0b86a832008-03-24 15:01:56 -04006819 struct btrfs_dev_item);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006820 ret = read_one_dev(fs_info, leaf, dev_item);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006821 if (ret)
6822 goto error;
Liu Bo99e3ecf2016-06-03 12:05:14 -07006823 total_dev++;
Chris Mason0b86a832008-03-24 15:01:56 -04006824 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
6825 struct btrfs_chunk *chunk;
6826 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006827 ret = read_one_chunk(fs_info, &found_key, leaf, chunk);
Yan Zheng2b820322008-11-17 21:11:30 -05006828 if (ret)
6829 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04006830 }
6831 path->slots[0]++;
6832 }
Liu Bo99e3ecf2016-06-03 12:05:14 -07006833
6834 /*
6835 * After loading chunk tree, we've got all device information,
6836 * do another round of validation checks.
6837 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006838 if (total_dev != fs_info->fs_devices->total_devices) {
6839 btrfs_err(fs_info,
Liu Bo99e3ecf2016-06-03 12:05:14 -07006840 "super_num_devices %llu mismatch with num_devices %llu found here",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006841 btrfs_super_num_devices(fs_info->super_copy),
Liu Bo99e3ecf2016-06-03 12:05:14 -07006842 total_dev);
6843 ret = -EINVAL;
6844 goto error;
6845 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006846 if (btrfs_super_total_bytes(fs_info->super_copy) <
6847 fs_info->fs_devices->total_rw_bytes) {
6848 btrfs_err(fs_info,
Liu Bo99e3ecf2016-06-03 12:05:14 -07006849 "super_total_bytes %llu mismatch with fs_devices total_rw_bytes %llu",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006850 btrfs_super_total_bytes(fs_info->super_copy),
6851 fs_info->fs_devices->total_rw_bytes);
Liu Bo99e3ecf2016-06-03 12:05:14 -07006852 ret = -EINVAL;
6853 goto error;
6854 }
Chris Mason0b86a832008-03-24 15:01:56 -04006855 ret = 0;
6856error:
David Sterba34441362016-10-04 19:34:27 +02006857 mutex_unlock(&fs_info->chunk_mutex);
Li Zefanb367e472011-12-07 11:38:24 +08006858 mutex_unlock(&uuid_mutex);
6859
Yan Zheng2b820322008-11-17 21:11:30 -05006860 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04006861 return ret;
6862}
Stefan Behrens442a4f62012-05-25 16:06:08 +02006863
Miao Xiecb517ea2013-05-15 07:48:19 +00006864void btrfs_init_devices_late(struct btrfs_fs_info *fs_info)
6865{
6866 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6867 struct btrfs_device *device;
6868
Liu Bo29cc83f2014-05-11 23:14:59 +08006869 while (fs_devices) {
6870 mutex_lock(&fs_devices->device_list_mutex);
6871 list_for_each_entry(device, &fs_devices->devices, dev_list)
Jeff Mahoneyfb456252016-06-22 18:54:56 -04006872 device->fs_info = fs_info;
Liu Bo29cc83f2014-05-11 23:14:59 +08006873 mutex_unlock(&fs_devices->device_list_mutex);
6874
6875 fs_devices = fs_devices->seed;
6876 }
Miao Xiecb517ea2013-05-15 07:48:19 +00006877}
6878
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006879static void __btrfs_reset_dev_stats(struct btrfs_device *dev)
6880{
6881 int i;
6882
6883 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6884 btrfs_dev_stat_reset(dev, i);
6885}
6886
6887int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info)
6888{
6889 struct btrfs_key key;
6890 struct btrfs_key found_key;
6891 struct btrfs_root *dev_root = fs_info->dev_root;
6892 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6893 struct extent_buffer *eb;
6894 int slot;
6895 int ret = 0;
6896 struct btrfs_device *device;
6897 struct btrfs_path *path = NULL;
6898 int i;
6899
6900 path = btrfs_alloc_path();
6901 if (!path) {
6902 ret = -ENOMEM;
6903 goto out;
6904 }
6905
6906 mutex_lock(&fs_devices->device_list_mutex);
6907 list_for_each_entry(device, &fs_devices->devices, dev_list) {
6908 int item_size;
6909 struct btrfs_dev_stats_item *ptr;
6910
David Sterba242e2952016-01-25 17:51:31 +01006911 key.objectid = BTRFS_DEV_STATS_OBJECTID;
6912 key.type = BTRFS_PERSISTENT_ITEM_KEY;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006913 key.offset = device->devid;
6914 ret = btrfs_search_slot(NULL, dev_root, &key, path, 0, 0);
6915 if (ret) {
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006916 __btrfs_reset_dev_stats(device);
6917 device->dev_stats_valid = 1;
6918 btrfs_release_path(path);
6919 continue;
6920 }
6921 slot = path->slots[0];
6922 eb = path->nodes[0];
6923 btrfs_item_key_to_cpu(eb, &found_key, slot);
6924 item_size = btrfs_item_size_nr(eb, slot);
6925
6926 ptr = btrfs_item_ptr(eb, slot,
6927 struct btrfs_dev_stats_item);
6928
6929 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
6930 if (item_size >= (1 + i) * sizeof(__le64))
6931 btrfs_dev_stat_set(device, i,
6932 btrfs_dev_stats_value(eb, ptr, i));
6933 else
6934 btrfs_dev_stat_reset(device, i);
6935 }
6936
6937 device->dev_stats_valid = 1;
6938 btrfs_dev_stat_print_on_load(device);
6939 btrfs_release_path(path);
6940 }
6941 mutex_unlock(&fs_devices->device_list_mutex);
6942
6943out:
6944 btrfs_free_path(path);
6945 return ret < 0 ? ret : 0;
6946}
6947
6948static int update_dev_stat_item(struct btrfs_trans_handle *trans,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04006949 struct btrfs_fs_info *fs_info,
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006950 struct btrfs_device *device)
6951{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04006952 struct btrfs_root *dev_root = fs_info->dev_root;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006953 struct btrfs_path *path;
6954 struct btrfs_key key;
6955 struct extent_buffer *eb;
6956 struct btrfs_dev_stats_item *ptr;
6957 int ret;
6958 int i;
6959
David Sterba242e2952016-01-25 17:51:31 +01006960 key.objectid = BTRFS_DEV_STATS_OBJECTID;
6961 key.type = BTRFS_PERSISTENT_ITEM_KEY;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006962 key.offset = device->devid;
6963
6964 path = btrfs_alloc_path();
David Sterbafa252992017-02-15 09:35:01 +01006965 if (!path)
6966 return -ENOMEM;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006967 ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1);
6968 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006969 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02006970 "error %d while searching for dev_stats item for device %s",
Josef Bacik606686e2012-06-04 14:03:51 -04006971 ret, rcu_str_deref(device->name));
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006972 goto out;
6973 }
6974
6975 if (ret == 0 &&
6976 btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) {
6977 /* need to delete old one and insert a new one */
6978 ret = btrfs_del_item(trans, dev_root, path);
6979 if (ret != 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006980 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02006981 "delete too small dev_stats item for device %s failed %d",
Josef Bacik606686e2012-06-04 14:03:51 -04006982 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006983 goto out;
6984 }
6985 ret = 1;
6986 }
6987
6988 if (ret == 1) {
6989 /* need to insert a new item */
6990 btrfs_release_path(path);
6991 ret = btrfs_insert_empty_item(trans, dev_root, path,
6992 &key, sizeof(*ptr));
6993 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006994 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02006995 "insert dev_stats item for device %s failed %d",
6996 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006997 goto out;
6998 }
6999 }
7000
7001 eb = path->nodes[0];
7002 ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item);
7003 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7004 btrfs_set_dev_stats_value(eb, ptr, i,
7005 btrfs_dev_stat_read(device, i));
7006 btrfs_mark_buffer_dirty(eb);
7007
7008out:
7009 btrfs_free_path(path);
7010 return ret;
7011}
7012
7013/*
7014 * called from commit_transaction. Writes all changed device stats to disk.
7015 */
7016int btrfs_run_dev_stats(struct btrfs_trans_handle *trans,
7017 struct btrfs_fs_info *fs_info)
7018{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007019 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7020 struct btrfs_device *device;
Miao Xieaddc3fa2014-07-24 11:37:11 +08007021 int stats_cnt;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007022 int ret = 0;
7023
7024 mutex_lock(&fs_devices->device_list_mutex);
7025 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Miao Xieaddc3fa2014-07-24 11:37:11 +08007026 if (!device->dev_stats_valid || !btrfs_dev_stats_dirty(device))
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007027 continue;
7028
Miao Xieaddc3fa2014-07-24 11:37:11 +08007029 stats_cnt = atomic_read(&device->dev_stats_ccnt);
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04007030 ret = update_dev_stat_item(trans, fs_info, device);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007031 if (!ret)
Miao Xieaddc3fa2014-07-24 11:37:11 +08007032 atomic_sub(stats_cnt, &device->dev_stats_ccnt);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007033 }
7034 mutex_unlock(&fs_devices->device_list_mutex);
7035
7036 return ret;
7037}
7038
Stefan Behrens442a4f62012-05-25 16:06:08 +02007039void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index)
7040{
7041 btrfs_dev_stat_inc(dev, index);
7042 btrfs_dev_stat_print_on_error(dev);
7043}
7044
Eric Sandeen48a3b632013-04-25 20:41:01 +00007045static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev)
Stefan Behrens442a4f62012-05-25 16:06:08 +02007046{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007047 if (!dev->dev_stats_valid)
7048 return;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04007049 btrfs_err_rl_in_rcu(dev->fs_info,
David Sterbab14af3b2015-10-08 10:43:10 +02007050 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04007051 rcu_str_deref(dev->name),
Stefan Behrens442a4f62012-05-25 16:06:08 +02007052 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
7053 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
7054 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
Frank Holtonefe120a2013-12-20 11:37:06 -05007055 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
7056 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
Stefan Behrens442a4f62012-05-25 16:06:08 +02007057}
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007058
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007059static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev)
7060{
Stefan Behrensa98cdb82012-07-17 09:02:11 -06007061 int i;
7062
7063 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7064 if (btrfs_dev_stat_read(dev, i) != 0)
7065 break;
7066 if (i == BTRFS_DEV_STAT_VALUES_MAX)
7067 return; /* all values == 0, suppress message */
7068
Jeff Mahoneyfb456252016-06-22 18:54:56 -04007069 btrfs_info_in_rcu(dev->fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007070 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04007071 rcu_str_deref(dev->name),
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007072 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
7073 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
7074 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
7075 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
7076 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
7077}
7078
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007079int btrfs_get_dev_stats(struct btrfs_fs_info *fs_info,
David Sterbab27f7c02012-06-22 06:30:39 -06007080 struct btrfs_ioctl_get_dev_stats *stats)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007081{
7082 struct btrfs_device *dev;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007083 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007084 int i;
7085
7086 mutex_lock(&fs_devices->device_list_mutex);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007087 dev = btrfs_find_device(fs_info, stats->devid, NULL, NULL);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007088 mutex_unlock(&fs_devices->device_list_mutex);
7089
7090 if (!dev) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007091 btrfs_warn(fs_info, "get dev_stats failed, device not found");
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007092 return -ENODEV;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007093 } else if (!dev->dev_stats_valid) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007094 btrfs_warn(fs_info, "get dev_stats failed, not yet valid");
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007095 return -ENODEV;
David Sterbab27f7c02012-06-22 06:30:39 -06007096 } else if (stats->flags & BTRFS_DEV_STATS_RESET) {
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007097 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
7098 if (stats->nr_items > i)
7099 stats->values[i] =
7100 btrfs_dev_stat_read_and_reset(dev, i);
7101 else
7102 btrfs_dev_stat_reset(dev, i);
7103 }
7104 } else {
7105 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7106 if (stats->nr_items > i)
7107 stats->values[i] = btrfs_dev_stat_read(dev, i);
7108 }
7109 if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX)
7110 stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX;
7111 return 0;
7112}
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007113
David Sterbada353f62017-02-14 17:55:53 +01007114void btrfs_scratch_superblocks(struct block_device *bdev, const char *device_path)
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007115{
7116 struct buffer_head *bh;
7117 struct btrfs_super_block *disk_super;
Anand Jain12b1c262015-08-14 18:32:59 +08007118 int copy_num;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007119
Anand Jain12b1c262015-08-14 18:32:59 +08007120 if (!bdev)
7121 return;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007122
Anand Jain12b1c262015-08-14 18:32:59 +08007123 for (copy_num = 0; copy_num < BTRFS_SUPER_MIRROR_MAX;
7124 copy_num++) {
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007125
Anand Jain12b1c262015-08-14 18:32:59 +08007126 if (btrfs_read_dev_one_super(bdev, copy_num, &bh))
7127 continue;
7128
7129 disk_super = (struct btrfs_super_block *)bh->b_data;
7130
7131 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
7132 set_buffer_dirty(bh);
7133 sync_dirty_buffer(bh);
7134 brelse(bh);
7135 }
7136
7137 /* Notify udev that device has changed */
7138 btrfs_kobject_uevent(bdev, KOBJ_CHANGE);
7139
7140 /* Update ctime/mtime for device path for libblkid */
7141 update_dev_time(device_path);
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007142}
Miao Xie935e5cc2014-09-03 21:35:33 +08007143
7144/*
7145 * Update the size of all devices, which is used for writing out the
7146 * super blocks.
7147 */
7148void btrfs_update_commit_device_size(struct btrfs_fs_info *fs_info)
7149{
7150 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7151 struct btrfs_device *curr, *next;
7152
7153 if (list_empty(&fs_devices->resized_devices))
7154 return;
7155
7156 mutex_lock(&fs_devices->device_list_mutex);
David Sterba34441362016-10-04 19:34:27 +02007157 mutex_lock(&fs_info->chunk_mutex);
Miao Xie935e5cc2014-09-03 21:35:33 +08007158 list_for_each_entry_safe(curr, next, &fs_devices->resized_devices,
7159 resized_list) {
7160 list_del_init(&curr->resized_list);
7161 curr->commit_total_bytes = curr->disk_total_bytes;
7162 }
David Sterba34441362016-10-04 19:34:27 +02007163 mutex_unlock(&fs_info->chunk_mutex);
Miao Xie935e5cc2014-09-03 21:35:33 +08007164 mutex_unlock(&fs_devices->device_list_mutex);
7165}
Miao Xiece7213c2014-09-03 21:35:34 +08007166
7167/* Must be invoked during the transaction commit */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007168void btrfs_update_commit_device_bytes_used(struct btrfs_fs_info *fs_info,
Miao Xiece7213c2014-09-03 21:35:34 +08007169 struct btrfs_transaction *transaction)
7170{
7171 struct extent_map *em;
7172 struct map_lookup *map;
7173 struct btrfs_device *dev;
7174 int i;
7175
7176 if (list_empty(&transaction->pending_chunks))
7177 return;
7178
7179 /* In order to kick the device replace finish process */
David Sterba34441362016-10-04 19:34:27 +02007180 mutex_lock(&fs_info->chunk_mutex);
Miao Xiece7213c2014-09-03 21:35:34 +08007181 list_for_each_entry(em, &transaction->pending_chunks, list) {
Jeff Mahoney95617d62015-06-03 10:55:48 -04007182 map = em->map_lookup;
Miao Xiece7213c2014-09-03 21:35:34 +08007183
7184 for (i = 0; i < map->num_stripes; i++) {
7185 dev = map->stripes[i].dev;
7186 dev->commit_bytes_used = dev->bytes_used;
7187 }
7188 }
David Sterba34441362016-10-04 19:34:27 +02007189 mutex_unlock(&fs_info->chunk_mutex);
Miao Xiece7213c2014-09-03 21:35:34 +08007190}
Anand Jain5a13f432015-03-10 06:38:31 +08007191
7192void btrfs_set_fs_info_ptr(struct btrfs_fs_info *fs_info)
7193{
7194 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7195 while (fs_devices) {
7196 fs_devices->fs_info = fs_info;
7197 fs_devices = fs_devices->seed;
7198 }
7199}
7200
7201void btrfs_reset_fs_info_ptr(struct btrfs_fs_info *fs_info)
7202{
7203 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7204 while (fs_devices) {
7205 fs_devices->fs_info = NULL;
7206 fs_devices = fs_devices->seed;
7207 }
7208}