blob: 1fac98728814334b4d2ab74216444f7c6c19429b [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
Chris Masonbedf7622009-04-03 10:32:58 -0400368 bdi = blk_get_backing_dev_info(device->bdev);
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 */
1728static void update_dev_time(char *path_name)
1729{
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
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001854int btrfs_rm_device(struct btrfs_fs_info *fs_info, char *device_path, u64 devid)
Anand Jainf1fa7f22016-02-13 10:01:33 +08001855{
1856 struct btrfs_device *device;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001857 struct btrfs_fs_devices *cur_devices;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001858 u64 num_devices;
Anand Jainf1fa7f22016-02-13 10:01:33 +08001859 int ret = 0;
1860 bool clear_super = false;
1861
1862 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001863
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001864 num_devices = fs_info->fs_devices->num_devices;
1865 btrfs_dev_replace_lock(&fs_info->dev_replace, 0);
1866 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
Chris Masona061fc82008-05-07 11:43:44 -04001867 WARN_ON(num_devices < 1);
1868 num_devices--;
1869 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001870 btrfs_dev_replace_unlock(&fs_info->dev_replace, 0);
Chris Masona061fc82008-05-07 11:43:44 -04001871
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001872 ret = btrfs_check_raid_min_devices(fs_info, num_devices - 1);
Anand Jainf1fa7f22016-02-13 10:01:33 +08001873 if (ret)
Chris Masona061fc82008-05-07 11:43:44 -04001874 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001875
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001876 ret = btrfs_find_device_by_devspec(fs_info, devid, device_path,
1877 &device);
Anand Jain24fc5722016-02-13 10:01:36 +08001878 if (ret)
Chris Masona061fc82008-05-07 11:43:44 -04001879 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05001880
Stefan Behrens63a212a2012-11-05 18:29:28 +01001881 if (device->is_tgtdev_for_dev_replace) {
Anand Jain183860f2013-05-17 10:52:45 +00001882 ret = BTRFS_ERROR_DEV_TGT_REPLACE;
Anand Jain24fc5722016-02-13 10:01:36 +08001883 goto out;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001884 }
1885
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001886 if (device->writeable && fs_info->fs_devices->rw_devices == 1) {
Anand Jain183860f2013-05-17 10:52:45 +00001887 ret = BTRFS_ERROR_DEV_ONLY_WRITABLE;
Anand Jain24fc5722016-02-13 10:01:36 +08001888 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05001889 }
1890
1891 if (device->writeable) {
David Sterba34441362016-10-04 19:34:27 +02001892 mutex_lock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001893 list_del_init(&device->dev_alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08001894 device->fs_devices->rw_devices--;
David Sterba34441362016-10-04 19:34:27 +02001895 mutex_unlock(&fs_info->chunk_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001896 clear_super = true;
Yan Zheng2b820322008-11-17 21:11:30 -05001897 }
Chris Masona061fc82008-05-07 11:43:44 -04001898
Carey Underwoodd7901552013-03-04 16:37:06 -06001899 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001900 ret = btrfs_shrink_device(device, 0);
Carey Underwoodd7901552013-03-04 16:37:06 -06001901 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001902 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001903 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001904
Stefan Behrens63a212a2012-11-05 18:29:28 +01001905 /*
1906 * TODO: the superblock still includes this device in its num_devices
1907 * counter although write_all_supers() is not locked out. This
1908 * could give a filesystem state which requires a degraded mount.
1909 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001910 ret = btrfs_rm_dev_item(fs_info, device);
Chris Masona061fc82008-05-07 11:43:44 -04001911 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001912 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001913
Yan Zheng2b820322008-11-17 21:11:30 -05001914 device->in_fs_metadata = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001915 btrfs_scrub_cancel_dev(fs_info, device);
Chris Masone5e9a522009-06-10 15:17:02 -04001916
1917 /*
1918 * the device list mutex makes sure that we don't change
1919 * the device list while someone else is writing out all
Filipe David Borba Mananad7306802013-08-09 15:41:36 +01001920 * the device supers. Whoever is writing all supers, should
1921 * lock the device list mutex before getting the number of
1922 * devices in the super block (super_copy). Conversely,
1923 * whoever updates the number of devices in the super block
1924 * (super_copy) should hold the device list mutex.
Chris Masone5e9a522009-06-10 15:17:02 -04001925 */
Xiao Guangrong1f781602011-04-20 10:09:16 +00001926
1927 cur_devices = device->fs_devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001928 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001929 list_del_rcu(&device->dev_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001930
Yan Zhenge4404d62008-12-12 10:03:26 -05001931 device->fs_devices->num_devices--;
Josef Bacik02db0842012-06-21 16:03:58 -04001932 device->fs_devices->total_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -05001933
Chris Masoncd02dca2010-12-13 14:56:23 -05001934 if (device->missing)
Miao Xie3a7d55c2014-07-16 18:38:01 +08001935 device->fs_devices->missing_devices--;
Chris Masoncd02dca2010-12-13 14:56:23 -05001936
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001937 btrfs_assign_next_active_device(fs_info, device, NULL);
Yan Zheng2b820322008-11-17 21:11:30 -05001938
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001939 if (device->bdev) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001940 device->fs_devices->open_devices--;
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001941 /* remove sysfs entry */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001942 btrfs_sysfs_rm_device_link(fs_info->fs_devices, device);
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001943 }
Anand Jain99994cd2014-06-03 11:36:00 +08001944
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001945 num_devices = btrfs_super_num_devices(fs_info->super_copy) - 1;
1946 btrfs_set_super_num_devices(fs_info->super_copy, num_devices);
1947 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001948
Jeff Mahoneycea67ab2016-09-20 08:50:21 -04001949 /*
1950 * at this point, the device is zero sized and detached from
1951 * the devices list. All that's left is to zero out the old
1952 * supers and free the device.
1953 */
1954 if (device->writeable)
1955 btrfs_scratch_superblocks(device->bdev, device->name->str);
1956
1957 btrfs_close_bdev(device);
1958 call_rcu(&device->rcu, free_device);
1959
Xiao Guangrong1f781602011-04-20 10:09:16 +00001960 if (cur_devices->open_devices == 0) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001961 struct btrfs_fs_devices *fs_devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001962 fs_devices = fs_info->fs_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05001963 while (fs_devices) {
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02001964 if (fs_devices->seed == cur_devices) {
1965 fs_devices->seed = cur_devices->seed;
Yan Zhenge4404d62008-12-12 10:03:26 -05001966 break;
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02001967 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001968 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05001969 }
Xiao Guangrong1f781602011-04-20 10:09:16 +00001970 cur_devices->seed = NULL;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001971 __btrfs_close_devices(cur_devices);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001972 free_fs_devices(cur_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001973 }
1974
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001975 fs_info->num_tolerated_disk_barrier_failures =
1976 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info);
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02001977
Chris Masona061fc82008-05-07 11:43:44 -04001978out:
1979 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001980 return ret;
Anand Jain24fc5722016-02-13 10:01:36 +08001981
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001982error_undo:
1983 if (device->writeable) {
David Sterba34441362016-10-04 19:34:27 +02001984 mutex_lock(&fs_info->chunk_mutex);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001985 list_add(&device->dev_alloc_list,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001986 &fs_info->fs_devices->alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08001987 device->fs_devices->rw_devices++;
David Sterba34441362016-10-04 19:34:27 +02001988 mutex_unlock(&fs_info->chunk_mutex);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001989 }
Anand Jain24fc5722016-02-13 10:01:36 +08001990 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001991}
1992
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08001993void btrfs_rm_dev_replace_remove_srcdev(struct btrfs_fs_info *fs_info,
1994 struct btrfs_device *srcdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01001995{
Anand Jaind51908c2014-08-13 14:24:19 +08001996 struct btrfs_fs_devices *fs_devices;
1997
Stefan Behrense93c89c2012-11-05 17:33:06 +01001998 WARN_ON(!mutex_is_locked(&fs_info->fs_devices->device_list_mutex));
Ilya Dryomov13572722013-10-02 20:41:01 +03001999
Anand Jain25e8e912014-08-20 10:56:56 +08002000 /*
2001 * in case of fs with no seed, srcdev->fs_devices will point
2002 * to fs_devices of fs_info. However when the dev being replaced is
2003 * a seed dev it will point to the seed's local fs_devices. In short
2004 * srcdev will have its correct fs_devices in both the cases.
2005 */
2006 fs_devices = srcdev->fs_devices;
Anand Jaind51908c2014-08-13 14:24:19 +08002007
Stefan Behrense93c89c2012-11-05 17:33:06 +01002008 list_del_rcu(&srcdev->dev_list);
2009 list_del_rcu(&srcdev->dev_alloc_list);
Anand Jaind51908c2014-08-13 14:24:19 +08002010 fs_devices->num_devices--;
Miao Xie82372bc2014-09-03 21:35:44 +08002011 if (srcdev->missing)
Anand Jaind51908c2014-08-13 14:24:19 +08002012 fs_devices->missing_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002013
Anand Jain48b3b9d2016-04-12 21:36:16 +08002014 if (srcdev->writeable)
Miao Xie82372bc2014-09-03 21:35:44 +08002015 fs_devices->rw_devices--;
Ilya Dryomov13572722013-10-02 20:41:01 +03002016
Miao Xie82372bc2014-09-03 21:35:44 +08002017 if (srcdev->bdev)
Anand Jaind51908c2014-08-13 14:24:19 +08002018 fs_devices->open_devices--;
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08002019}
2020
2021void btrfs_rm_dev_replace_free_srcdev(struct btrfs_fs_info *fs_info,
2022 struct btrfs_device *srcdev)
2023{
2024 struct btrfs_fs_devices *fs_devices = srcdev->fs_devices;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002025
Anand Jain48b3b9d2016-04-12 21:36:16 +08002026 if (srcdev->writeable) {
2027 /* zero out the old super if it is writable */
2028 btrfs_scratch_superblocks(srcdev->bdev, srcdev->name->str);
2029 }
Anand Jain14238812016-07-22 06:04:53 +08002030
2031 btrfs_close_bdev(srcdev);
2032
Stefan Behrense93c89c2012-11-05 17:33:06 +01002033 call_rcu(&srcdev->rcu, free_device);
Anand Jain94d5f0c2014-08-13 14:24:22 +08002034
2035 /*
2036 * unless fs_devices is seed fs, num_devices shouldn't go
2037 * zero
2038 */
2039 BUG_ON(!fs_devices->num_devices && !fs_devices->seeding);
2040
2041 /* if this is no devs we rather delete the fs_devices */
2042 if (!fs_devices->num_devices) {
2043 struct btrfs_fs_devices *tmp_fs_devices;
2044
2045 tmp_fs_devices = fs_info->fs_devices;
2046 while (tmp_fs_devices) {
2047 if (tmp_fs_devices->seed == fs_devices) {
2048 tmp_fs_devices->seed = fs_devices->seed;
2049 break;
2050 }
2051 tmp_fs_devices = tmp_fs_devices->seed;
2052 }
2053 fs_devices->seed = NULL;
Anand Jain8bef8402014-08-13 14:24:23 +08002054 __btrfs_close_devices(fs_devices);
2055 free_fs_devices(fs_devices);
Anand Jain94d5f0c2014-08-13 14:24:22 +08002056 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002057}
2058
2059void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
2060 struct btrfs_device *tgtdev)
2061{
Miao Xie67a2c452014-09-03 21:35:43 +08002062 mutex_lock(&uuid_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002063 WARN_ON(!tgtdev);
2064 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Anand Jaind2ff1b22015-03-10 06:38:42 +08002065
Anand Jain32576042015-08-14 18:32:49 +08002066 btrfs_sysfs_rm_device_link(fs_info->fs_devices, tgtdev);
Anand Jaind2ff1b22015-03-10 06:38:42 +08002067
Anand Jain779bf3f2016-04-18 16:51:23 +08002068 if (tgtdev->bdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01002069 fs_info->fs_devices->open_devices--;
Anand Jain779bf3f2016-04-18 16:51:23 +08002070
Stefan Behrense93c89c2012-11-05 17:33:06 +01002071 fs_info->fs_devices->num_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002072
Anand Jain88acff62016-05-03 17:44:43 +08002073 btrfs_assign_next_active_device(fs_info, tgtdev, NULL);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002074
Stefan Behrense93c89c2012-11-05 17:33:06 +01002075 list_del_rcu(&tgtdev->dev_list);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002076
2077 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Miao Xie67a2c452014-09-03 21:35:43 +08002078 mutex_unlock(&uuid_mutex);
Anand Jain779bf3f2016-04-18 16:51:23 +08002079
2080 /*
2081 * The update_dev_time() with in btrfs_scratch_superblocks()
2082 * may lead to a call to btrfs_show_devname() which will try
2083 * to hold device_list_mutex. And here this device
2084 * is already out of device list, so we don't have to hold
2085 * the device_list_mutex lock.
2086 */
2087 btrfs_scratch_superblocks(tgtdev->bdev, tgtdev->name->str);
Anand Jain14238812016-07-22 06:04:53 +08002088
2089 btrfs_close_bdev(tgtdev);
Anand Jain779bf3f2016-04-18 16:51:23 +08002090 call_rcu(&tgtdev->rcu, free_device);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002091}
2092
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002093static int btrfs_find_device_by_path(struct btrfs_fs_info *fs_info,
2094 char *device_path,
Eric Sandeen48a3b632013-04-25 20:41:01 +00002095 struct btrfs_device **device)
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002096{
2097 int ret = 0;
2098 struct btrfs_super_block *disk_super;
2099 u64 devid;
2100 u8 *dev_uuid;
2101 struct block_device *bdev;
2102 struct buffer_head *bh;
2103
2104 *device = NULL;
2105 ret = btrfs_get_bdev_and_sb(device_path, FMODE_READ,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002106 fs_info->bdev_holder, 0, &bdev, &bh);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002107 if (ret)
2108 return ret;
2109 disk_super = (struct btrfs_super_block *)bh->b_data;
2110 devid = btrfs_stack_device_id(&disk_super->dev_item);
2111 dev_uuid = disk_super->dev_item.uuid;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002112 *device = btrfs_find_device(fs_info, devid, dev_uuid, disk_super->fsid);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002113 brelse(bh);
2114 if (!*device)
2115 ret = -ENOENT;
2116 blkdev_put(bdev, FMODE_READ);
2117 return ret;
2118}
2119
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002120int btrfs_find_device_missing_or_by_path(struct btrfs_fs_info *fs_info,
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002121 char *device_path,
2122 struct btrfs_device **device)
2123{
2124 *device = NULL;
2125 if (strcmp(device_path, "missing") == 0) {
2126 struct list_head *devices;
2127 struct btrfs_device *tmp;
2128
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002129 devices = &fs_info->fs_devices->devices;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002130 /*
2131 * It is safe to read the devices since the volume_mutex
2132 * is held by the caller.
2133 */
2134 list_for_each_entry(tmp, devices, dev_list) {
2135 if (tmp->in_fs_metadata && !tmp->bdev) {
2136 *device = tmp;
2137 break;
2138 }
2139 }
2140
Anand Jaind74a6252015-08-14 18:32:56 +08002141 if (!*device)
2142 return BTRFS_ERROR_DEV_MISSING_NOT_FOUND;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002143
2144 return 0;
2145 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002146 return btrfs_find_device_by_path(fs_info, device_path, device);
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002147 }
2148}
2149
Yan Zheng2b820322008-11-17 21:11:30 -05002150/*
David Sterba5c5c0df2016-02-15 16:39:55 +01002151 * Lookup a device given by device id, or the path if the id is 0.
2152 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002153int btrfs_find_device_by_devspec(struct btrfs_fs_info *fs_info, u64 devid,
2154 char *devpath, struct btrfs_device **device)
Anand Jain24e04742016-02-13 10:01:35 +08002155{
2156 int ret;
2157
David Sterba5c5c0df2016-02-15 16:39:55 +01002158 if (devid) {
Anand Jain24e04742016-02-13 10:01:35 +08002159 ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002160 *device = btrfs_find_device(fs_info, devid, NULL, NULL);
Anand Jain24e04742016-02-13 10:01:35 +08002161 if (!*device)
2162 ret = -ENOENT;
2163 } else {
David Sterba5c5c0df2016-02-15 16:39:55 +01002164 if (!devpath || !devpath[0])
Anand Jainb3d1b152016-02-13 10:01:37 +08002165 return -EINVAL;
2166
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002167 ret = btrfs_find_device_missing_or_by_path(fs_info, devpath,
Anand Jain24e04742016-02-13 10:01:35 +08002168 device);
2169 }
2170 return ret;
2171}
2172
Yan Zheng2b820322008-11-17 21:11:30 -05002173/*
2174 * does all the dirty work required for changing file system's UUID.
2175 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002176static int btrfs_prepare_sprout(struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05002177{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002178 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002179 struct btrfs_fs_devices *old_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05002180 struct btrfs_fs_devices *seed_devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002181 struct btrfs_super_block *disk_super = fs_info->super_copy;
Yan Zheng2b820322008-11-17 21:11:30 -05002182 struct btrfs_device *device;
2183 u64 super_flags;
2184
2185 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zhenge4404d62008-12-12 10:03:26 -05002186 if (!fs_devices->seeding)
Yan Zheng2b820322008-11-17 21:11:30 -05002187 return -EINVAL;
2188
Ilya Dryomov2208a372013-08-12 14:33:03 +03002189 seed_devices = __alloc_fs_devices();
2190 if (IS_ERR(seed_devices))
2191 return PTR_ERR(seed_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002192
Yan Zhenge4404d62008-12-12 10:03:26 -05002193 old_devices = clone_fs_devices(fs_devices);
2194 if (IS_ERR(old_devices)) {
2195 kfree(seed_devices);
2196 return PTR_ERR(old_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002197 }
Yan Zhenge4404d62008-12-12 10:03:26 -05002198
Yan Zheng2b820322008-11-17 21:11:30 -05002199 list_add(&old_devices->list, &fs_uuids);
2200
Yan Zhenge4404d62008-12-12 10:03:26 -05002201 memcpy(seed_devices, fs_devices, sizeof(*seed_devices));
2202 seed_devices->opened = 1;
2203 INIT_LIST_HEAD(&seed_devices->devices);
2204 INIT_LIST_HEAD(&seed_devices->alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -04002205 mutex_init(&seed_devices->device_list_mutex);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00002206
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002207 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002208 list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices,
2209 synchronize_rcu);
Miao Xie2196d6e2014-09-03 21:35:41 +08002210 list_for_each_entry(device, &seed_devices->devices, dev_list)
Yan Zhenge4404d62008-12-12 10:03:26 -05002211 device->fs_devices = seed_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002212
David Sterba34441362016-10-04 19:34:27 +02002213 mutex_lock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08002214 list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list);
David Sterba34441362016-10-04 19:34:27 +02002215 mutex_unlock(&fs_info->chunk_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05002216
Yan Zheng2b820322008-11-17 21:11:30 -05002217 fs_devices->seeding = 0;
2218 fs_devices->num_devices = 0;
2219 fs_devices->open_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002220 fs_devices->missing_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002221 fs_devices->rotating = 0;
Yan Zhenge4404d62008-12-12 10:03:26 -05002222 fs_devices->seed = seed_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002223
2224 generate_random_uuid(fs_devices->fsid);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002225 memcpy(fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Yan Zheng2b820322008-11-17 21:11:30 -05002226 memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002227 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01002228
Yan Zheng2b820322008-11-17 21:11:30 -05002229 super_flags = btrfs_super_flags(disk_super) &
2230 ~BTRFS_SUPER_FLAG_SEEDING;
2231 btrfs_set_super_flags(disk_super, super_flags);
2232
2233 return 0;
2234}
2235
2236/*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002237 * Store the expected generation for seed devices in device items.
Yan Zheng2b820322008-11-17 21:11:30 -05002238 */
2239static int btrfs_finish_sprout(struct btrfs_trans_handle *trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002240 struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05002241{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002242 struct btrfs_root *root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05002243 struct btrfs_path *path;
2244 struct extent_buffer *leaf;
2245 struct btrfs_dev_item *dev_item;
2246 struct btrfs_device *device;
2247 struct btrfs_key key;
2248 u8 fs_uuid[BTRFS_UUID_SIZE];
2249 u8 dev_uuid[BTRFS_UUID_SIZE];
2250 u64 devid;
2251 int ret;
2252
2253 path = btrfs_alloc_path();
2254 if (!path)
2255 return -ENOMEM;
2256
Yan Zheng2b820322008-11-17 21:11:30 -05002257 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2258 key.offset = 0;
2259 key.type = BTRFS_DEV_ITEM_KEY;
2260
2261 while (1) {
2262 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2263 if (ret < 0)
2264 goto error;
2265
2266 leaf = path->nodes[0];
2267next_slot:
2268 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
2269 ret = btrfs_next_leaf(root, path);
2270 if (ret > 0)
2271 break;
2272 if (ret < 0)
2273 goto error;
2274 leaf = path->nodes[0];
2275 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02002276 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002277 continue;
2278 }
2279
2280 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2281 if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID ||
2282 key.type != BTRFS_DEV_ITEM_KEY)
2283 break;
2284
2285 dev_item = btrfs_item_ptr(leaf, path->slots[0],
2286 struct btrfs_dev_item);
2287 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02002288 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05002289 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02002290 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05002291 BTRFS_UUID_SIZE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002292 device = btrfs_find_device(fs_info, devid, dev_uuid, fs_uuid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002293 BUG_ON(!device); /* Logic error */
Yan Zheng2b820322008-11-17 21:11:30 -05002294
2295 if (device->fs_devices->seeding) {
2296 btrfs_set_device_generation(leaf, dev_item,
2297 device->generation);
2298 btrfs_mark_buffer_dirty(leaf);
2299 }
2300
2301 path->slots[0]++;
2302 goto next_slot;
2303 }
2304 ret = 0;
2305error:
2306 btrfs_free_path(path);
2307 return ret;
2308}
2309
Jeff Mahoney5112feb2016-06-21 20:16:08 -04002310int btrfs_init_new_device(struct btrfs_fs_info *fs_info, char *device_path)
Chris Mason788f20e2008-04-28 15:29:42 -04002311{
Jeff Mahoney5112feb2016-06-21 20:16:08 -04002312 struct btrfs_root *root = fs_info->dev_root;
Josef Bacikd5e20032011-08-04 14:52:27 +00002313 struct request_queue *q;
Chris Mason788f20e2008-04-28 15:29:42 -04002314 struct btrfs_trans_handle *trans;
2315 struct btrfs_device *device;
2316 struct block_device *bdev;
Chris Mason788f20e2008-04-28 15:29:42 -04002317 struct list_head *devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002318 struct super_block *sb = fs_info->sb;
Josef Bacik606686e2012-06-04 14:03:51 -04002319 struct rcu_string *name;
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002320 u64 tmp;
Yan Zheng2b820322008-11-17 21:11:30 -05002321 int seeding_dev = 0;
Chris Mason788f20e2008-04-28 15:29:42 -04002322 int ret = 0;
2323
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002324 if ((sb->s_flags & MS_RDONLY) && !fs_info->fs_devices->seeding)
Liu Bof8c5d0b2012-05-10 18:10:38 +08002325 return -EROFS;
Chris Mason788f20e2008-04-28 15:29:42 -04002326
Li Zefana5d16332011-12-07 20:08:40 -05002327 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002328 fs_info->bdev_holder);
Josef Bacik7f592032010-01-27 02:09:00 +00002329 if (IS_ERR(bdev))
2330 return PTR_ERR(bdev);
Chris Masona2135012008-06-25 16:01:30 -04002331
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002332 if (fs_info->fs_devices->seeding) {
Yan Zheng2b820322008-11-17 21:11:30 -05002333 seeding_dev = 1;
2334 down_write(&sb->s_umount);
2335 mutex_lock(&uuid_mutex);
2336 }
2337
Chris Mason8c8bee12008-09-29 11:19:10 -04002338 filemap_write_and_wait(bdev->bd_inode->i_mapping);
Chris Masona2135012008-06-25 16:01:30 -04002339
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002340 devices = &fs_info->fs_devices->devices;
Liu Bod25628b2012-11-14 14:35:30 +00002341
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002342 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05002343 list_for_each_entry(device, devices, dev_list) {
Chris Mason788f20e2008-04-28 15:29:42 -04002344 if (device->bdev == bdev) {
2345 ret = -EEXIST;
Liu Bod25628b2012-11-14 14:35:30 +00002346 mutex_unlock(
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002347 &fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002348 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002349 }
2350 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002351 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002352
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002353 device = btrfs_alloc_device(fs_info, NULL, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002354 if (IS_ERR(device)) {
Chris Mason788f20e2008-04-28 15:29:42 -04002355 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002356 ret = PTR_ERR(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002357 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002358 }
2359
David Sterba78f2c9e2016-02-11 14:25:38 +01002360 name = rcu_string_strdup(device_path, GFP_KERNEL);
Josef Bacik606686e2012-06-04 14:03:51 -04002361 if (!name) {
Chris Mason788f20e2008-04-28 15:29:42 -04002362 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002363 ret = -ENOMEM;
2364 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002365 }
Josef Bacik606686e2012-06-04 14:03:51 -04002366 rcu_assign_pointer(device->name, name);
Yan Zheng2b820322008-11-17 21:11:30 -05002367
Yan, Zhenga22285a2010-05-16 10:48:46 -04002368 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002369 if (IS_ERR(trans)) {
Josef Bacik606686e2012-06-04 14:03:51 -04002370 rcu_string_free(device->name);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002371 kfree(device);
2372 ret = PTR_ERR(trans);
2373 goto error;
2374 }
2375
Josef Bacikd5e20032011-08-04 14:52:27 +00002376 q = bdev_get_queue(bdev);
2377 if (blk_queue_discard(q))
2378 device->can_discard = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002379 device->writeable = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002380 device->generation = trans->transid;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002381 device->io_width = fs_info->sectorsize;
2382 device->io_align = fs_info->sectorsize;
2383 device->sector_size = fs_info->sectorsize;
Chris Mason788f20e2008-04-28 15:29:42 -04002384 device->total_bytes = i_size_read(bdev->bd_inode);
Yan Zheng2cc3c552009-06-04 09:23:50 -04002385 device->disk_total_bytes = device->total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08002386 device->commit_total_bytes = device->total_bytes;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002387 device->fs_info = fs_info;
Chris Mason788f20e2008-04-28 15:29:42 -04002388 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -04002389 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01002390 device->is_tgtdev_for_dev_replace = 0;
Ilya Dryomovfb01aa82011-02-15 18:12:57 +00002391 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002392 device->dev_stats_valid = 1;
Zheng Yan325cd4b2008-09-05 16:43:54 -04002393 set_blocksize(device->bdev, 4096);
2394
Yan Zheng2b820322008-11-17 21:11:30 -05002395 if (seeding_dev) {
2396 sb->s_flags &= ~MS_RDONLY;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002397 ret = btrfs_prepare_sprout(fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002398 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2b820322008-11-17 21:11:30 -05002399 }
2400
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002401 device->fs_devices = fs_info->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04002402
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002403 mutex_lock(&fs_info->fs_devices->device_list_mutex);
David Sterba34441362016-10-04 19:34:27 +02002404 mutex_lock(&fs_info->chunk_mutex);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002405 list_add_rcu(&device->dev_list, &fs_info->fs_devices->devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002406 list_add(&device->dev_alloc_list,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002407 &fs_info->fs_devices->alloc_list);
2408 fs_info->fs_devices->num_devices++;
2409 fs_info->fs_devices->open_devices++;
2410 fs_info->fs_devices->rw_devices++;
2411 fs_info->fs_devices->total_devices++;
2412 fs_info->fs_devices->total_rw_bytes += device->total_bytes;
Yan Zheng2b820322008-11-17 21:11:30 -05002413
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002414 spin_lock(&fs_info->free_chunk_lock);
2415 fs_info->free_chunk_space += device->total_bytes;
2416 spin_unlock(&fs_info->free_chunk_lock);
Josef Bacik2bf64752011-09-26 17:12:22 -04002417
Chris Masonc2898112009-06-10 09:51:32 -04002418 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002419 fs_info->fs_devices->rotating = 1;
Chris Masonc2898112009-06-10 09:51:32 -04002420
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002421 tmp = btrfs_super_total_bytes(fs_info->super_copy);
2422 btrfs_set_super_total_bytes(fs_info->super_copy,
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002423 tmp + device->total_bytes);
Chris Mason788f20e2008-04-28 15:29:42 -04002424
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002425 tmp = btrfs_super_num_devices(fs_info->super_copy);
2426 btrfs_set_super_num_devices(fs_info->super_copy, tmp + 1);
Anand Jain0d393762014-06-03 11:36:01 +08002427
2428 /* add sysfs device entry */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002429 btrfs_sysfs_add_device_link(fs_info->fs_devices, device);
Anand Jain0d393762014-06-03 11:36:01 +08002430
Miao Xie2196d6e2014-09-03 21:35:41 +08002431 /*
2432 * we've got more storage, clear any full flags on the space
2433 * infos
2434 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002435 btrfs_clear_space_info_full(fs_info);
Miao Xie2196d6e2014-09-03 21:35:41 +08002436
David Sterba34441362016-10-04 19:34:27 +02002437 mutex_unlock(&fs_info->chunk_mutex);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002438 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002439
Yan Zheng2b820322008-11-17 21:11:30 -05002440 if (seeding_dev) {
David Sterba34441362016-10-04 19:34:27 +02002441 mutex_lock(&fs_info->chunk_mutex);
David Sterbae4a4dce2017-02-10 19:49:01 +01002442 ret = init_first_rw_device(trans, fs_info);
David Sterba34441362016-10-04 19:34:27 +02002443 mutex_unlock(&fs_info->chunk_mutex);
David Sterba005d6422012-09-18 07:52:32 -06002444 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002445 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002446 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002447 }
Miao Xie2196d6e2014-09-03 21:35:41 +08002448 }
2449
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002450 ret = btrfs_add_device(trans, fs_info, device);
Miao Xie2196d6e2014-09-03 21:35:41 +08002451 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002452 btrfs_abort_transaction(trans, ret);
Miao Xie2196d6e2014-09-03 21:35:41 +08002453 goto error_trans;
2454 }
2455
2456 if (seeding_dev) {
2457 char fsid_buf[BTRFS_UUID_UNPARSED_SIZE];
2458
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002459 ret = btrfs_finish_sprout(trans, fs_info);
David Sterba005d6422012-09-18 07:52:32 -06002460 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002461 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002462 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002463 }
Anand Jainb2373f22014-06-03 11:36:03 +08002464
2465 /* Sprouting would change fsid of the mounted root,
2466 * so rename the fsid on the sysfs
2467 */
2468 snprintf(fsid_buf, BTRFS_UUID_UNPARSED_SIZE, "%pU",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002469 fs_info->fsid);
2470 if (kobject_rename(&fs_info->fs_devices->fsid_kobj, fsid_buf))
2471 btrfs_warn(fs_info,
2472 "sysfs: failed to create fsid for sprout");
Yan Zheng2b820322008-11-17 21:11:30 -05002473 }
2474
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002475 fs_info->num_tolerated_disk_barrier_failures =
2476 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002477 ret = btrfs_commit_transaction(trans);
Yan Zheng2b820322008-11-17 21:11:30 -05002478
2479 if (seeding_dev) {
2480 mutex_unlock(&uuid_mutex);
2481 up_write(&sb->s_umount);
2482
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002483 if (ret) /* transaction commit */
2484 return ret;
2485
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002486 ret = btrfs_relocate_sys_chunks(fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002487 if (ret < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002488 btrfs_handle_fs_error(fs_info, ret,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002489 "Failed to relocate sys chunks after device initialization. This can be fixed using the \"btrfs balance\" command.");
Miao Xie671415b2012-10-16 11:26:46 +00002490 trans = btrfs_attach_transaction(root);
2491 if (IS_ERR(trans)) {
2492 if (PTR_ERR(trans) == -ENOENT)
2493 return 0;
2494 return PTR_ERR(trans);
2495 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002496 ret = btrfs_commit_transaction(trans);
Yan Zheng2b820322008-11-17 21:11:30 -05002497 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002498
Qu Wenruo5a1972b2014-04-16 17:02:32 +08002499 /* Update ctime/mtime for libblkid */
2500 update_dev_time(device_path);
Chris Mason788f20e2008-04-28 15:29:42 -04002501 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002502
2503error_trans:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002504 btrfs_end_transaction(trans);
Josef Bacik606686e2012-06-04 14:03:51 -04002505 rcu_string_free(device->name);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002506 btrfs_sysfs_rm_device_link(fs_info->fs_devices, device);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002507 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002508error:
Tejun Heoe525fd82010-11-13 11:55:17 +01002509 blkdev_put(bdev, FMODE_EXCL);
Yan Zheng2b820322008-11-17 21:11:30 -05002510 if (seeding_dev) {
2511 mutex_unlock(&uuid_mutex);
2512 up_write(&sb->s_umount);
2513 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002514 return ret;
Chris Mason788f20e2008-04-28 15:29:42 -04002515}
2516
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002517int btrfs_init_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
2518 char *device_path,
Miao Xie1c433662014-09-03 21:35:32 +08002519 struct btrfs_device *srcdev,
Stefan Behrense93c89c2012-11-05 17:33:06 +01002520 struct btrfs_device **device_out)
2521{
2522 struct request_queue *q;
2523 struct btrfs_device *device;
2524 struct block_device *bdev;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002525 struct list_head *devices;
2526 struct rcu_string *name;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002527 u64 devid = BTRFS_DEV_REPLACE_DEVID;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002528 int ret = 0;
2529
2530 *device_out = NULL;
Miao Xie1c433662014-09-03 21:35:32 +08002531 if (fs_info->fs_devices->seeding) {
2532 btrfs_err(fs_info, "the filesystem is a seed filesystem!");
Stefan Behrense93c89c2012-11-05 17:33:06 +01002533 return -EINVAL;
Miao Xie1c433662014-09-03 21:35:32 +08002534 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002535
2536 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
2537 fs_info->bdev_holder);
Miao Xie1c433662014-09-03 21:35:32 +08002538 if (IS_ERR(bdev)) {
2539 btrfs_err(fs_info, "target device %s is invalid!", device_path);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002540 return PTR_ERR(bdev);
Miao Xie1c433662014-09-03 21:35:32 +08002541 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002542
2543 filemap_write_and_wait(bdev->bd_inode->i_mapping);
2544
2545 devices = &fs_info->fs_devices->devices;
2546 list_for_each_entry(device, devices, dev_list) {
2547 if (device->bdev == bdev) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002548 btrfs_err(fs_info,
2549 "target device is in the filesystem!");
Stefan Behrense93c89c2012-11-05 17:33:06 +01002550 ret = -EEXIST;
2551 goto error;
2552 }
2553 }
2554
Miao Xie1c433662014-09-03 21:35:32 +08002555
Miao Xie7cc8e582014-09-03 21:35:38 +08002556 if (i_size_read(bdev->bd_inode) <
2557 btrfs_device_get_total_bytes(srcdev)) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002558 btrfs_err(fs_info,
2559 "target device is smaller than source device!");
Miao Xie1c433662014-09-03 21:35:32 +08002560 ret = -EINVAL;
2561 goto error;
2562 }
2563
2564
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002565 device = btrfs_alloc_device(NULL, &devid, NULL);
2566 if (IS_ERR(device)) {
2567 ret = PTR_ERR(device);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002568 goto error;
2569 }
2570
2571 name = rcu_string_strdup(device_path, GFP_NOFS);
2572 if (!name) {
2573 kfree(device);
2574 ret = -ENOMEM;
2575 goto error;
2576 }
2577 rcu_assign_pointer(device->name, name);
2578
2579 q = bdev_get_queue(bdev);
2580 if (blk_queue_discard(q))
2581 device->can_discard = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002582 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002583 device->writeable = 1;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002584 device->generation = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002585 device->io_width = fs_info->sectorsize;
2586 device->io_align = fs_info->sectorsize;
2587 device->sector_size = fs_info->sectorsize;
Miao Xie7cc8e582014-09-03 21:35:38 +08002588 device->total_bytes = btrfs_device_get_total_bytes(srcdev);
2589 device->disk_total_bytes = btrfs_device_get_disk_total_bytes(srcdev);
2590 device->bytes_used = btrfs_device_get_bytes_used(srcdev);
Miao Xie935e5cc2014-09-03 21:35:33 +08002591 ASSERT(list_empty(&srcdev->resized_list));
2592 device->commit_total_bytes = srcdev->commit_total_bytes;
Miao Xiece7213c2014-09-03 21:35:34 +08002593 device->commit_bytes_used = device->bytes_used;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002594 device->fs_info = fs_info;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002595 device->bdev = bdev;
2596 device->in_fs_metadata = 1;
2597 device->is_tgtdev_for_dev_replace = 1;
2598 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002599 device->dev_stats_valid = 1;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002600 set_blocksize(device->bdev, 4096);
2601 device->fs_devices = fs_info->fs_devices;
2602 list_add(&device->dev_list, &fs_info->fs_devices->devices);
2603 fs_info->fs_devices->num_devices++;
2604 fs_info->fs_devices->open_devices++;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002605 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002606
2607 *device_out = device;
2608 return ret;
2609
2610error:
2611 blkdev_put(bdev, FMODE_EXCL);
2612 return ret;
2613}
2614
2615void btrfs_init_dev_replace_tgtdev_for_resume(struct btrfs_fs_info *fs_info,
2616 struct btrfs_device *tgtdev)
2617{
Jeff Mahoneyda170662016-06-15 09:22:56 -04002618 u32 sectorsize = fs_info->sectorsize;
2619
Stefan Behrense93c89c2012-11-05 17:33:06 +01002620 WARN_ON(fs_info->fs_devices->rw_devices == 0);
Jeff Mahoneyda170662016-06-15 09:22:56 -04002621 tgtdev->io_width = sectorsize;
2622 tgtdev->io_align = sectorsize;
2623 tgtdev->sector_size = sectorsize;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002624 tgtdev->fs_info = fs_info;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002625 tgtdev->in_fs_metadata = 1;
2626}
2627
Chris Masond3977122009-01-05 21:25:51 -05002628static noinline int btrfs_update_device(struct btrfs_trans_handle *trans,
2629 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04002630{
2631 int ret;
2632 struct btrfs_path *path;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002633 struct btrfs_root *root = device->fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04002634 struct btrfs_dev_item *dev_item;
2635 struct extent_buffer *leaf;
2636 struct btrfs_key key;
2637
Chris Mason0b86a832008-03-24 15:01:56 -04002638 path = btrfs_alloc_path();
2639 if (!path)
2640 return -ENOMEM;
2641
2642 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2643 key.type = BTRFS_DEV_ITEM_KEY;
2644 key.offset = device->devid;
2645
2646 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2647 if (ret < 0)
2648 goto out;
2649
2650 if (ret > 0) {
2651 ret = -ENOENT;
2652 goto out;
2653 }
2654
2655 leaf = path->nodes[0];
2656 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
2657
2658 btrfs_set_device_id(leaf, dev_item, device->devid);
2659 btrfs_set_device_type(leaf, dev_item, device->type);
2660 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
2661 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
2662 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08002663 btrfs_set_device_total_bytes(leaf, dev_item,
2664 btrfs_device_get_disk_total_bytes(device));
2665 btrfs_set_device_bytes_used(leaf, dev_item,
2666 btrfs_device_get_bytes_used(device));
Chris Mason0b86a832008-03-24 15:01:56 -04002667 btrfs_mark_buffer_dirty(leaf);
2668
2669out:
2670 btrfs_free_path(path);
2671 return ret;
2672}
2673
Miao Xie2196d6e2014-09-03 21:35:41 +08002674int btrfs_grow_device(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04002675 struct btrfs_device *device, u64 new_size)
2676{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002677 struct btrfs_fs_info *fs_info = device->fs_info;
2678 struct btrfs_super_block *super_copy = fs_info->super_copy;
Miao Xie935e5cc2014-09-03 21:35:33 +08002679 struct btrfs_fs_devices *fs_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002680 u64 old_total;
2681 u64 diff;
Chris Mason8f18cf12008-04-25 16:53:30 -04002682
Yan Zheng2b820322008-11-17 21:11:30 -05002683 if (!device->writeable)
2684 return -EACCES;
Miao Xie2196d6e2014-09-03 21:35:41 +08002685
David Sterba34441362016-10-04 19:34:27 +02002686 mutex_lock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08002687 old_total = btrfs_super_total_bytes(super_copy);
2688 diff = new_size - device->total_bytes;
2689
Stefan Behrens63a212a2012-11-05 18:29:28 +01002690 if (new_size <= device->total_bytes ||
Miao Xie2196d6e2014-09-03 21:35:41 +08002691 device->is_tgtdev_for_dev_replace) {
David Sterba34441362016-10-04 19:34:27 +02002692 mutex_unlock(&fs_info->chunk_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002693 return -EINVAL;
Miao Xie2196d6e2014-09-03 21:35:41 +08002694 }
Yan Zheng2b820322008-11-17 21:11:30 -05002695
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002696 fs_devices = fs_info->fs_devices;
Chris Mason8f18cf12008-04-25 16:53:30 -04002697
2698 btrfs_set_super_total_bytes(super_copy, old_total + diff);
Yan Zheng2b820322008-11-17 21:11:30 -05002699 device->fs_devices->total_rw_bytes += diff;
2700
Miao Xie7cc8e582014-09-03 21:35:38 +08002701 btrfs_device_set_total_bytes(device, new_size);
2702 btrfs_device_set_disk_total_bytes(device, new_size);
Jeff Mahoneyfb456252016-06-22 18:54:56 -04002703 btrfs_clear_space_info_full(device->fs_info);
Miao Xie935e5cc2014-09-03 21:35:33 +08002704 if (list_empty(&device->resized_list))
2705 list_add_tail(&device->resized_list,
2706 &fs_devices->resized_devices);
David Sterba34441362016-10-04 19:34:27 +02002707 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason4184ea72009-03-10 12:39:20 -04002708
Chris Mason8f18cf12008-04-25 16:53:30 -04002709 return btrfs_update_device(trans, device);
2710}
2711
2712static int btrfs_free_chunk(struct btrfs_trans_handle *trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002713 struct btrfs_fs_info *fs_info, u64 chunk_objectid,
Chris Mason8f18cf12008-04-25 16:53:30 -04002714 u64 chunk_offset)
2715{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002716 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04002717 int ret;
2718 struct btrfs_path *path;
2719 struct btrfs_key key;
2720
Chris Mason8f18cf12008-04-25 16:53:30 -04002721 path = btrfs_alloc_path();
2722 if (!path)
2723 return -ENOMEM;
2724
2725 key.objectid = chunk_objectid;
2726 key.offset = chunk_offset;
2727 key.type = BTRFS_CHUNK_ITEM_KEY;
2728
2729 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002730 if (ret < 0)
2731 goto out;
2732 else if (ret > 0) { /* Logic error or corruption */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002733 btrfs_handle_fs_error(fs_info, -ENOENT,
2734 "Failed lookup while freeing chunk.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002735 ret = -ENOENT;
2736 goto out;
2737 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002738
2739 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002740 if (ret < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002741 btrfs_handle_fs_error(fs_info, ret,
2742 "Failed to delete chunk item.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002743out:
Chris Mason8f18cf12008-04-25 16:53:30 -04002744 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00002745 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002746}
2747
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002748static int btrfs_del_sys_chunk(struct btrfs_fs_info *fs_info,
2749 u64 chunk_objectid, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002750{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002751 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04002752 struct btrfs_disk_key *disk_key;
2753 struct btrfs_chunk *chunk;
2754 u8 *ptr;
2755 int ret = 0;
2756 u32 num_stripes;
2757 u32 array_size;
2758 u32 len = 0;
2759 u32 cur;
2760 struct btrfs_key key;
2761
David Sterba34441362016-10-04 19:34:27 +02002762 mutex_lock(&fs_info->chunk_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04002763 array_size = btrfs_super_sys_array_size(super_copy);
2764
2765 ptr = super_copy->sys_chunk_array;
2766 cur = 0;
2767
2768 while (cur < array_size) {
2769 disk_key = (struct btrfs_disk_key *)ptr;
2770 btrfs_disk_key_to_cpu(&key, disk_key);
2771
2772 len = sizeof(*disk_key);
2773
2774 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
2775 chunk = (struct btrfs_chunk *)(ptr + len);
2776 num_stripes = btrfs_stack_chunk_num_stripes(chunk);
2777 len += btrfs_chunk_item_size(num_stripes);
2778 } else {
2779 ret = -EIO;
2780 break;
2781 }
2782 if (key.objectid == chunk_objectid &&
2783 key.offset == chunk_offset) {
2784 memmove(ptr, ptr + len, array_size - (cur + len));
2785 array_size -= len;
2786 btrfs_set_super_sys_array_size(super_copy, array_size);
2787 } else {
2788 ptr += len;
2789 cur += len;
2790 }
2791 }
David Sterba34441362016-10-04 19:34:27 +02002792 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04002793 return ret;
2794}
2795
Josef Bacik47ab2a62014-09-18 11:20:02 -04002796int btrfs_remove_chunk(struct btrfs_trans_handle *trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002797 struct btrfs_fs_info *fs_info, u64 chunk_offset)
Josef Bacik47ab2a62014-09-18 11:20:02 -04002798{
2799 struct extent_map_tree *em_tree;
2800 struct extent_map *em;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002801 struct map_lookup *map;
2802 u64 dev_extent_len = 0;
2803 u64 chunk_objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002804 int i, ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002805 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002806
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002807 em_tree = &fs_info->mapping_tree.map_tree;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002808
2809 read_lock(&em_tree->lock);
2810 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
2811 read_unlock(&em_tree->lock);
2812
2813 if (!em || em->start > chunk_offset ||
2814 em->start + em->len < chunk_offset) {
2815 /*
2816 * This is a logic error, but we don't want to just rely on the
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08002817 * user having built with ASSERT enabled, so if ASSERT doesn't
Josef Bacik47ab2a62014-09-18 11:20:02 -04002818 * do anything we still error out.
2819 */
2820 ASSERT(0);
2821 if (em)
2822 free_extent_map(em);
2823 return -EINVAL;
2824 }
Jeff Mahoney95617d62015-06-03 10:55:48 -04002825 map = em->map_lookup;
David Sterba34441362016-10-04 19:34:27 +02002826 mutex_lock(&fs_info->chunk_mutex);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002827 check_system_chunk(trans, fs_info, map->type);
David Sterba34441362016-10-04 19:34:27 +02002828 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002829
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002830 /*
2831 * Take the device list mutex to prevent races with the final phase of
2832 * a device replace operation that replaces the device object associated
2833 * with map stripes (dev-replace.c:btrfs_dev_replace_finishing()).
2834 */
2835 mutex_lock(&fs_devices->device_list_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002836 for (i = 0; i < map->num_stripes; i++) {
2837 struct btrfs_device *device = map->stripes[i].dev;
2838 ret = btrfs_free_dev_extent(trans, device,
2839 map->stripes[i].physical,
2840 &dev_extent_len);
2841 if (ret) {
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002842 mutex_unlock(&fs_devices->device_list_mutex);
Jeff Mahoney66642832016-06-10 18:19:25 -04002843 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002844 goto out;
2845 }
2846
2847 if (device->bytes_used > 0) {
David Sterba34441362016-10-04 19:34:27 +02002848 mutex_lock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002849 btrfs_device_set_bytes_used(device,
2850 device->bytes_used - dev_extent_len);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002851 spin_lock(&fs_info->free_chunk_lock);
2852 fs_info->free_chunk_space += dev_extent_len;
2853 spin_unlock(&fs_info->free_chunk_lock);
2854 btrfs_clear_space_info_full(fs_info);
David Sterba34441362016-10-04 19:34:27 +02002855 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002856 }
2857
2858 if (map->stripes[i].dev) {
2859 ret = btrfs_update_device(trans, map->stripes[i].dev);
2860 if (ret) {
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002861 mutex_unlock(&fs_devices->device_list_mutex);
Jeff Mahoney66642832016-06-10 18:19:25 -04002862 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002863 goto out;
2864 }
2865 }
2866 }
Filipe Manana57ba4cb2016-05-20 04:34:23 +01002867 mutex_unlock(&fs_devices->device_list_mutex);
2868
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002869 ret = btrfs_free_chunk(trans, fs_info, chunk_objectid, chunk_offset);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002870 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002871 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002872 goto out;
2873 }
2874
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002875 trace_btrfs_chunk_free(fs_info, map, chunk_offset, em->len);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002876
2877 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002878 ret = btrfs_del_sys_chunk(fs_info, chunk_objectid,
2879 chunk_offset);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002880 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002881 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002882 goto out;
2883 }
2884 }
2885
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002886 ret = btrfs_remove_block_group(trans, fs_info, chunk_offset, em);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002887 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002888 btrfs_abort_transaction(trans, ret);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002889 goto out;
2890 }
2891
Josef Bacik47ab2a62014-09-18 11:20:02 -04002892out:
2893 /* once for us */
2894 free_extent_map(em);
Chris Mason8f18cf12008-04-25 16:53:30 -04002895 return ret;
2896}
2897
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002898static int btrfs_relocate_chunk(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002899{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002900 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason19c4d2f2016-10-10 13:43:31 -07002901 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04002902 int ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002903
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002904 /*
2905 * Prevent races with automatic removal of unused block groups.
2906 * After we relocate and before we remove the chunk with offset
2907 * chunk_offset, automatic removal of the block group can kick in,
2908 * resulting in a failure when calling btrfs_remove_chunk() below.
2909 *
2910 * Make sure to acquire this mutex before doing a tree search (dev
2911 * or chunk trees) to find chunks. Otherwise the cleaner kthread might
2912 * call btrfs_remove_chunk() (through btrfs_delete_unused_bgs()) after
2913 * we release the path used to search the chunk/dev tree and before
2914 * the current task acquires this mutex and calls us.
2915 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002916 ASSERT(mutex_is_locked(&fs_info->delete_unused_bgs_mutex));
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002917
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002918 ret = btrfs_can_relocate(fs_info, chunk_offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04002919 if (ret)
2920 return -ENOSPC;
2921
Chris Mason8f18cf12008-04-25 16:53:30 -04002922 /* step one, relocate all the extents inside this chunk */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002923 btrfs_scrub_pause(fs_info);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002924 ret = btrfs_relocate_block_group(fs_info, chunk_offset);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002925 btrfs_scrub_continue(fs_info);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002926 if (ret)
2927 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002928
Chris Mason19c4d2f2016-10-10 13:43:31 -07002929 trans = btrfs_start_trans_remove_block_group(root->fs_info,
2930 chunk_offset);
2931 if (IS_ERR(trans)) {
2932 ret = PTR_ERR(trans);
2933 btrfs_handle_fs_error(root->fs_info, ret, NULL);
2934 return ret;
2935 }
Naohiro Aota5d8eb6f2016-09-02 16:46:32 +09002936
Chris Mason19c4d2f2016-10-10 13:43:31 -07002937 /*
2938 * step two, delete the device extents and the
2939 * chunk tree entries
2940 */
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04002941 ret = btrfs_remove_chunk(trans, fs_info, chunk_offset);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002942 btrfs_end_transaction(trans);
Chris Mason19c4d2f2016-10-10 13:43:31 -07002943 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002944}
2945
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002946static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05002947{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002948 struct btrfs_root *chunk_root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05002949 struct btrfs_path *path;
2950 struct extent_buffer *leaf;
2951 struct btrfs_chunk *chunk;
2952 struct btrfs_key key;
2953 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05002954 u64 chunk_type;
Josef Bacikba1bf482009-09-11 16:11:19 -04002955 bool retried = false;
2956 int failed = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05002957 int ret;
2958
2959 path = btrfs_alloc_path();
2960 if (!path)
2961 return -ENOMEM;
2962
Josef Bacikba1bf482009-09-11 16:11:19 -04002963again:
Yan Zheng2b820322008-11-17 21:11:30 -05002964 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2965 key.offset = (u64)-1;
2966 key.type = BTRFS_CHUNK_ITEM_KEY;
2967
2968 while (1) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002969 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002970 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002971 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002972 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002973 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002974 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002975 BUG_ON(ret == 0); /* Corruption */
Yan Zheng2b820322008-11-17 21:11:30 -05002976
2977 ret = btrfs_previous_item(chunk_root, path, key.objectid,
2978 key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002979 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002980 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002981 if (ret < 0)
2982 goto error;
2983 if (ret > 0)
2984 break;
2985
2986 leaf = path->nodes[0];
2987 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2988
2989 chunk = btrfs_item_ptr(leaf, path->slots[0],
2990 struct btrfs_chunk);
2991 chunk_type = btrfs_chunk_type(leaf, chunk);
David Sterbab3b4aa72011-04-21 01:20:15 +02002992 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002993
2994 if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002995 ret = btrfs_relocate_chunk(fs_info, found_key.offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04002996 if (ret == -ENOSPC)
2997 failed++;
HIMANGI SARAOGI14586652014-07-09 03:51:41 +05302998 else
2999 BUG_ON(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05003000 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003001 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05003002
3003 if (found_key.offset == 0)
3004 break;
3005 key.offset = found_key.offset - 1;
3006 }
3007 ret = 0;
Josef Bacikba1bf482009-09-11 16:11:19 -04003008 if (failed && !retried) {
3009 failed = 0;
3010 retried = true;
3011 goto again;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303012 } else if (WARN_ON(failed && retried)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04003013 ret = -ENOSPC;
3014 }
Yan Zheng2b820322008-11-17 21:11:30 -05003015error:
3016 btrfs_free_path(path);
3017 return ret;
3018}
3019
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003020static int insert_balance_item(struct btrfs_fs_info *fs_info,
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003021 struct btrfs_balance_control *bctl)
3022{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003023 struct btrfs_root *root = fs_info->tree_root;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003024 struct btrfs_trans_handle *trans;
3025 struct btrfs_balance_item *item;
3026 struct btrfs_disk_balance_args disk_bargs;
3027 struct btrfs_path *path;
3028 struct extent_buffer *leaf;
3029 struct btrfs_key key;
3030 int ret, err;
3031
3032 path = btrfs_alloc_path();
3033 if (!path)
3034 return -ENOMEM;
3035
3036 trans = btrfs_start_transaction(root, 0);
3037 if (IS_ERR(trans)) {
3038 btrfs_free_path(path);
3039 return PTR_ERR(trans);
3040 }
3041
3042 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003043 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003044 key.offset = 0;
3045
3046 ret = btrfs_insert_empty_item(trans, root, path, &key,
3047 sizeof(*item));
3048 if (ret)
3049 goto out;
3050
3051 leaf = path->nodes[0];
3052 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
3053
David Sterbab159fa22016-11-08 18:09:03 +01003054 memzero_extent_buffer(leaf, (unsigned long)item, sizeof(*item));
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003055
3056 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data);
3057 btrfs_set_balance_data(leaf, item, &disk_bargs);
3058 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta);
3059 btrfs_set_balance_meta(leaf, item, &disk_bargs);
3060 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys);
3061 btrfs_set_balance_sys(leaf, item, &disk_bargs);
3062
3063 btrfs_set_balance_flags(leaf, item, bctl->flags);
3064
3065 btrfs_mark_buffer_dirty(leaf);
3066out:
3067 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003068 err = btrfs_commit_transaction(trans);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003069 if (err && !ret)
3070 ret = err;
3071 return ret;
3072}
3073
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003074static int del_balance_item(struct btrfs_fs_info *fs_info)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003075{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003076 struct btrfs_root *root = fs_info->tree_root;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003077 struct btrfs_trans_handle *trans;
3078 struct btrfs_path *path;
3079 struct btrfs_key key;
3080 int ret, err;
3081
3082 path = btrfs_alloc_path();
3083 if (!path)
3084 return -ENOMEM;
3085
3086 trans = btrfs_start_transaction(root, 0);
3087 if (IS_ERR(trans)) {
3088 btrfs_free_path(path);
3089 return PTR_ERR(trans);
3090 }
3091
3092 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003093 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003094 key.offset = 0;
3095
3096 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
3097 if (ret < 0)
3098 goto out;
3099 if (ret > 0) {
3100 ret = -ENOENT;
3101 goto out;
3102 }
3103
3104 ret = btrfs_del_item(trans, root, path);
3105out:
3106 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003107 err = btrfs_commit_transaction(trans);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003108 if (err && !ret)
3109 ret = err;
3110 return ret;
3111}
3112
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003113/*
Ilya Dryomov59641012012-01-16 22:04:48 +02003114 * This is a heuristic used to reduce the number of chunks balanced on
3115 * resume after balance was interrupted.
3116 */
3117static void update_balance_args(struct btrfs_balance_control *bctl)
3118{
3119 /*
3120 * Turn on soft mode for chunk types that were being converted.
3121 */
3122 if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)
3123 bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT;
3124 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)
3125 bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT;
3126 if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)
3127 bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT;
3128
3129 /*
3130 * Turn on usage filter if is not already used. The idea is
3131 * that chunks that we have already balanced should be
3132 * reasonably full. Don't do it for chunks that are being
3133 * converted - that will keep us from relocating unconverted
3134 * (albeit full) chunks.
3135 */
3136 if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003137 !(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003138 !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3139 bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE;
3140 bctl->data.usage = 90;
3141 }
3142 if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003143 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003144 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3145 bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE;
3146 bctl->sys.usage = 90;
3147 }
3148 if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003149 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003150 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3151 bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE;
3152 bctl->meta.usage = 90;
3153 }
3154}
3155
3156/*
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003157 * Should be called with both balance and volume mutexes held to
3158 * serialize other volume operations (add_dev/rm_dev/resize) with
3159 * restriper. Same goes for unset_balance_control.
3160 */
3161static void set_balance_control(struct btrfs_balance_control *bctl)
3162{
3163 struct btrfs_fs_info *fs_info = bctl->fs_info;
3164
3165 BUG_ON(fs_info->balance_ctl);
3166
3167 spin_lock(&fs_info->balance_lock);
3168 fs_info->balance_ctl = bctl;
3169 spin_unlock(&fs_info->balance_lock);
3170}
3171
3172static void unset_balance_control(struct btrfs_fs_info *fs_info)
3173{
3174 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3175
3176 BUG_ON(!fs_info->balance_ctl);
3177
3178 spin_lock(&fs_info->balance_lock);
3179 fs_info->balance_ctl = NULL;
3180 spin_unlock(&fs_info->balance_lock);
3181
3182 kfree(bctl);
3183}
3184
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003185/*
3186 * Balance filters. Return 1 if chunk should be filtered out
3187 * (should not be balanced).
3188 */
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003189static int chunk_profiles_filter(u64 chunk_type,
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003190 struct btrfs_balance_args *bargs)
3191{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003192 chunk_type = chunk_to_extended(chunk_type) &
3193 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003194
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003195 if (bargs->profiles & chunk_type)
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003196 return 0;
3197
3198 return 1;
3199}
3200
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003201static int chunk_usage_range_filter(struct btrfs_fs_info *fs_info, u64 chunk_offset,
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003202 struct btrfs_balance_args *bargs)
3203{
3204 struct btrfs_block_group_cache *cache;
David Sterbabc309462015-10-20 18:22:13 +02003205 u64 chunk_used;
3206 u64 user_thresh_min;
3207 u64 user_thresh_max;
3208 int ret = 1;
3209
3210 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3211 chunk_used = btrfs_block_group_used(&cache->item);
3212
3213 if (bargs->usage_min == 0)
3214 user_thresh_min = 0;
3215 else
3216 user_thresh_min = div_factor_fine(cache->key.offset,
3217 bargs->usage_min);
3218
3219 if (bargs->usage_max == 0)
3220 user_thresh_max = 1;
3221 else if (bargs->usage_max > 100)
3222 user_thresh_max = cache->key.offset;
3223 else
3224 user_thresh_max = div_factor_fine(cache->key.offset,
3225 bargs->usage_max);
3226
3227 if (user_thresh_min <= chunk_used && chunk_used < user_thresh_max)
3228 ret = 0;
3229
3230 btrfs_put_block_group(cache);
3231 return ret;
3232}
3233
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003234static int chunk_usage_filter(struct btrfs_fs_info *fs_info,
David Sterbabc309462015-10-20 18:22:13 +02003235 u64 chunk_offset, struct btrfs_balance_args *bargs)
3236{
3237 struct btrfs_block_group_cache *cache;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003238 u64 chunk_used, user_thresh;
3239 int ret = 1;
3240
3241 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3242 chunk_used = btrfs_block_group_used(&cache->item);
3243
David Sterbabc309462015-10-20 18:22:13 +02003244 if (bargs->usage_min == 0)
Ilya Dryomov3e39cea2013-02-12 16:28:59 +00003245 user_thresh = 1;
Ilya Dryomova105bb82013-01-21 15:15:56 +02003246 else if (bargs->usage > 100)
3247 user_thresh = cache->key.offset;
3248 else
3249 user_thresh = div_factor_fine(cache->key.offset,
3250 bargs->usage);
3251
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003252 if (chunk_used < user_thresh)
3253 ret = 0;
3254
3255 btrfs_put_block_group(cache);
3256 return ret;
3257}
3258
Ilya Dryomov409d4042012-01-16 22:04:47 +02003259static int chunk_devid_filter(struct extent_buffer *leaf,
3260 struct btrfs_chunk *chunk,
3261 struct btrfs_balance_args *bargs)
3262{
3263 struct btrfs_stripe *stripe;
3264 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3265 int i;
3266
3267 for (i = 0; i < num_stripes; i++) {
3268 stripe = btrfs_stripe_nr(chunk, i);
3269 if (btrfs_stripe_devid(leaf, stripe) == bargs->devid)
3270 return 0;
3271 }
3272
3273 return 1;
3274}
3275
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003276/* [pstart, pend) */
3277static int chunk_drange_filter(struct extent_buffer *leaf,
3278 struct btrfs_chunk *chunk,
3279 u64 chunk_offset,
3280 struct btrfs_balance_args *bargs)
3281{
3282 struct btrfs_stripe *stripe;
3283 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3284 u64 stripe_offset;
3285 u64 stripe_length;
3286 int factor;
3287 int i;
3288
3289 if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID))
3290 return 0;
3291
3292 if (btrfs_chunk_type(leaf, chunk) & (BTRFS_BLOCK_GROUP_DUP |
David Woodhouse53b381b2013-01-29 18:40:14 -05003293 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)) {
3294 factor = num_stripes / 2;
3295 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID5) {
3296 factor = num_stripes - 1;
3297 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID6) {
3298 factor = num_stripes - 2;
3299 } else {
3300 factor = num_stripes;
3301 }
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003302
3303 for (i = 0; i < num_stripes; i++) {
3304 stripe = btrfs_stripe_nr(chunk, i);
3305 if (btrfs_stripe_devid(leaf, stripe) != bargs->devid)
3306 continue;
3307
3308 stripe_offset = btrfs_stripe_offset(leaf, stripe);
3309 stripe_length = btrfs_chunk_length(leaf, chunk);
David Sterbab8b93ad2015-01-16 17:26:13 +01003310 stripe_length = div_u64(stripe_length, factor);
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003311
3312 if (stripe_offset < bargs->pend &&
3313 stripe_offset + stripe_length > bargs->pstart)
3314 return 0;
3315 }
3316
3317 return 1;
3318}
3319
Ilya Dryomovea671762012-01-16 22:04:48 +02003320/* [vstart, vend) */
3321static int chunk_vrange_filter(struct extent_buffer *leaf,
3322 struct btrfs_chunk *chunk,
3323 u64 chunk_offset,
3324 struct btrfs_balance_args *bargs)
3325{
3326 if (chunk_offset < bargs->vend &&
3327 chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart)
3328 /* at least part of the chunk is inside this vrange */
3329 return 0;
3330
3331 return 1;
3332}
3333
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003334static int chunk_stripes_range_filter(struct extent_buffer *leaf,
3335 struct btrfs_chunk *chunk,
3336 struct btrfs_balance_args *bargs)
3337{
3338 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3339
3340 if (bargs->stripes_min <= num_stripes
3341 && num_stripes <= bargs->stripes_max)
3342 return 0;
3343
3344 return 1;
3345}
3346
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003347static int chunk_soft_convert_filter(u64 chunk_type,
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003348 struct btrfs_balance_args *bargs)
3349{
3350 if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT))
3351 return 0;
3352
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003353 chunk_type = chunk_to_extended(chunk_type) &
3354 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003355
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003356 if (bargs->target == chunk_type)
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003357 return 1;
3358
3359 return 0;
3360}
3361
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003362static int should_balance_chunk(struct btrfs_fs_info *fs_info,
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003363 struct extent_buffer *leaf,
3364 struct btrfs_chunk *chunk, u64 chunk_offset)
3365{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003366 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003367 struct btrfs_balance_args *bargs = NULL;
3368 u64 chunk_type = btrfs_chunk_type(leaf, chunk);
3369
3370 /* type filter */
3371 if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) &
3372 (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) {
3373 return 0;
3374 }
3375
3376 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3377 bargs = &bctl->data;
3378 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3379 bargs = &bctl->sys;
3380 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3381 bargs = &bctl->meta;
3382
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003383 /* profiles filter */
3384 if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) &&
3385 chunk_profiles_filter(chunk_type, bargs)) {
3386 return 0;
3387 }
3388
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003389 /* usage filter */
3390 if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003391 chunk_usage_filter(fs_info, chunk_offset, bargs)) {
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003392 return 0;
David Sterbabc309462015-10-20 18:22:13 +02003393 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003394 chunk_usage_range_filter(fs_info, chunk_offset, bargs)) {
David Sterbabc309462015-10-20 18:22:13 +02003395 return 0;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003396 }
3397
Ilya Dryomov409d4042012-01-16 22:04:47 +02003398 /* devid filter */
3399 if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) &&
3400 chunk_devid_filter(leaf, chunk, bargs)) {
3401 return 0;
3402 }
3403
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003404 /* drange filter, makes sense only with devid filter */
3405 if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) &&
3406 chunk_drange_filter(leaf, chunk, chunk_offset, bargs)) {
3407 return 0;
3408 }
3409
Ilya Dryomovea671762012-01-16 22:04:48 +02003410 /* vrange filter */
3411 if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) &&
3412 chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) {
3413 return 0;
3414 }
3415
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003416 /* stripes filter */
3417 if ((bargs->flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE) &&
3418 chunk_stripes_range_filter(leaf, chunk, bargs)) {
3419 return 0;
3420 }
3421
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003422 /* soft profile changing mode */
3423 if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) &&
3424 chunk_soft_convert_filter(chunk_type, bargs)) {
3425 return 0;
3426 }
3427
David Sterba7d824b62014-05-07 17:37:51 +02003428 /*
3429 * limited by count, must be the last filter
3430 */
3431 if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT)) {
3432 if (bargs->limit == 0)
3433 return 0;
3434 else
3435 bargs->limit--;
David Sterba12907fc2015-10-10 17:16:50 +02003436 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE)) {
3437 /*
3438 * Same logic as the 'limit' filter; the minimum cannot be
Nicholas D Steeves01327612016-05-19 21:18:45 -04003439 * determined here because we do not have the global information
David Sterba12907fc2015-10-10 17:16:50 +02003440 * about the count of all chunks that satisfy the filters.
3441 */
3442 if (bargs->limit_max == 0)
3443 return 0;
3444 else
3445 bargs->limit_max--;
David Sterba7d824b62014-05-07 17:37:51 +02003446 }
3447
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003448 return 1;
3449}
3450
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003451static int __btrfs_balance(struct btrfs_fs_info *fs_info)
Chris Masonec44a352008-04-28 15:29:52 -04003452{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003453 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003454 struct btrfs_root *chunk_root = fs_info->chunk_root;
3455 struct btrfs_root *dev_root = fs_info->dev_root;
3456 struct list_head *devices;
Chris Masonec44a352008-04-28 15:29:52 -04003457 struct btrfs_device *device;
3458 u64 old_size;
3459 u64 size_to_free;
David Sterba12907fc2015-10-10 17:16:50 +02003460 u64 chunk_type;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003461 struct btrfs_chunk *chunk;
Liu Bo5a488b92016-07-12 11:24:21 -07003462 struct btrfs_path *path = NULL;
Chris Masonec44a352008-04-28 15:29:52 -04003463 struct btrfs_key key;
Chris Masonec44a352008-04-28 15:29:52 -04003464 struct btrfs_key found_key;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003465 struct btrfs_trans_handle *trans;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003466 struct extent_buffer *leaf;
3467 int slot;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003468 int ret;
3469 int enospc_errors = 0;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003470 bool counting = true;
David Sterba12907fc2015-10-10 17:16:50 +02003471 /* The single value limit and min/max limits use the same bytes in the */
David Sterba7d824b62014-05-07 17:37:51 +02003472 u64 limit_data = bctl->data.limit;
3473 u64 limit_meta = bctl->meta.limit;
3474 u64 limit_sys = bctl->sys.limit;
David Sterba12907fc2015-10-10 17:16:50 +02003475 u32 count_data = 0;
3476 u32 count_meta = 0;
3477 u32 count_sys = 0;
Zhao Lei2c9fe832015-11-09 11:51:32 +08003478 int chunk_reserved = 0;
Liu Bocf25ce52015-12-14 18:29:32 -08003479 u64 bytes_used = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003480
Chris Masonec44a352008-04-28 15:29:52 -04003481 /* step one make some room on all the devices */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003482 devices = &fs_info->fs_devices->devices;
Qinghuang Fengc6e30872009-01-21 10:59:08 -05003483 list_for_each_entry(device, devices, dev_list) {
Miao Xie7cc8e582014-09-03 21:35:38 +08003484 old_size = btrfs_device_get_total_bytes(device);
Chris Masonec44a352008-04-28 15:29:52 -04003485 size_to_free = div_factor(old_size, 1);
Byongho Leeee221842015-12-15 01:42:10 +09003486 size_to_free = min_t(u64, size_to_free, SZ_1M);
Yan Zheng2b820322008-11-17 21:11:30 -05003487 if (!device->writeable ||
Miao Xie7cc8e582014-09-03 21:35:38 +08003488 btrfs_device_get_total_bytes(device) -
3489 btrfs_device_get_bytes_used(device) > size_to_free ||
Stefan Behrens63a212a2012-11-05 18:29:28 +01003490 device->is_tgtdev_for_dev_replace)
Chris Masonec44a352008-04-28 15:29:52 -04003491 continue;
3492
3493 ret = btrfs_shrink_device(device, old_size - size_to_free);
Josef Bacikba1bf482009-09-11 16:11:19 -04003494 if (ret == -ENOSPC)
3495 break;
Liu Bo5a488b92016-07-12 11:24:21 -07003496 if (ret) {
3497 /* btrfs_shrink_device never returns ret > 0 */
3498 WARN_ON(ret > 0);
3499 goto error;
3500 }
Chris Masonec44a352008-04-28 15:29:52 -04003501
Yan, Zhenga22285a2010-05-16 10:48:46 -04003502 trans = btrfs_start_transaction(dev_root, 0);
Liu Bo5a488b92016-07-12 11:24:21 -07003503 if (IS_ERR(trans)) {
3504 ret = PTR_ERR(trans);
3505 btrfs_info_in_rcu(fs_info,
3506 "resize: unable to start transaction after shrinking device %s (error %d), old size %llu, new size %llu",
3507 rcu_str_deref(device->name), ret,
3508 old_size, old_size - size_to_free);
3509 goto error;
3510 }
Chris Masonec44a352008-04-28 15:29:52 -04003511
3512 ret = btrfs_grow_device(trans, device, old_size);
Liu Bo5a488b92016-07-12 11:24:21 -07003513 if (ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003514 btrfs_end_transaction(trans);
Liu Bo5a488b92016-07-12 11:24:21 -07003515 /* btrfs_grow_device never returns ret > 0 */
3516 WARN_ON(ret > 0);
3517 btrfs_info_in_rcu(fs_info,
3518 "resize: unable to grow device after shrinking device %s (error %d), old size %llu, new size %llu",
3519 rcu_str_deref(device->name), ret,
3520 old_size, old_size - size_to_free);
3521 goto error;
3522 }
Chris Masonec44a352008-04-28 15:29:52 -04003523
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003524 btrfs_end_transaction(trans);
Chris Masonec44a352008-04-28 15:29:52 -04003525 }
3526
3527 /* step two, relocate all the chunks */
3528 path = btrfs_alloc_path();
Mark Fasheh17e9f792011-07-12 11:10:23 -07003529 if (!path) {
3530 ret = -ENOMEM;
3531 goto error;
3532 }
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003533
3534 /* zero out stat counters */
3535 spin_lock(&fs_info->balance_lock);
3536 memset(&bctl->stat, 0, sizeof(bctl->stat));
3537 spin_unlock(&fs_info->balance_lock);
3538again:
David Sterba7d824b62014-05-07 17:37:51 +02003539 if (!counting) {
David Sterba12907fc2015-10-10 17:16:50 +02003540 /*
3541 * The single value limit and min/max limits use the same bytes
3542 * in the
3543 */
David Sterba7d824b62014-05-07 17:37:51 +02003544 bctl->data.limit = limit_data;
3545 bctl->meta.limit = limit_meta;
3546 bctl->sys.limit = limit_sys;
3547 }
Chris Masonec44a352008-04-28 15:29:52 -04003548 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
3549 key.offset = (u64)-1;
3550 key.type = BTRFS_CHUNK_ITEM_KEY;
3551
Chris Masond3977122009-01-05 21:25:51 -05003552 while (1) {
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003553 if ((!counting && atomic_read(&fs_info->balance_pause_req)) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003554 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003555 ret = -ECANCELED;
3556 goto error;
3557 }
3558
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003559 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003560 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003561 if (ret < 0) {
3562 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003563 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003564 }
Chris Masonec44a352008-04-28 15:29:52 -04003565
3566 /*
3567 * this shouldn't happen, it means the last relocate
3568 * failed
3569 */
3570 if (ret == 0)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003571 BUG(); /* FIXME break ? */
Chris Masonec44a352008-04-28 15:29:52 -04003572
3573 ret = btrfs_previous_item(chunk_root, path, 0,
3574 BTRFS_CHUNK_ITEM_KEY);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003575 if (ret) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003576 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003577 ret = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003578 break;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003579 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003580
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003581 leaf = path->nodes[0];
3582 slot = path->slots[0];
3583 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3584
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003585 if (found_key.objectid != key.objectid) {
3586 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003587 break;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003588 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003589
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003590 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
David Sterba12907fc2015-10-10 17:16:50 +02003591 chunk_type = btrfs_chunk_type(leaf, chunk);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003592
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003593 if (!counting) {
3594 spin_lock(&fs_info->balance_lock);
3595 bctl->stat.considered++;
3596 spin_unlock(&fs_info->balance_lock);
3597 }
3598
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003599 ret = should_balance_chunk(fs_info, leaf, chunk,
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003600 found_key.offset);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003601
David Sterbab3b4aa72011-04-21 01:20:15 +02003602 btrfs_release_path(path);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003603 if (!ret) {
3604 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003605 goto loop;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003606 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003607
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003608 if (counting) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003609 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003610 spin_lock(&fs_info->balance_lock);
3611 bctl->stat.expected++;
3612 spin_unlock(&fs_info->balance_lock);
David Sterba12907fc2015-10-10 17:16:50 +02003613
3614 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3615 count_data++;
3616 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3617 count_sys++;
3618 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3619 count_meta++;
3620
3621 goto loop;
3622 }
3623
3624 /*
3625 * Apply limit_min filter, no need to check if the LIMITS
3626 * filter is used, limit_min is 0 by default
3627 */
3628 if (((chunk_type & BTRFS_BLOCK_GROUP_DATA) &&
3629 count_data < bctl->data.limit_min)
3630 || ((chunk_type & BTRFS_BLOCK_GROUP_METADATA) &&
3631 count_meta < bctl->meta.limit_min)
3632 || ((chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) &&
3633 count_sys < bctl->sys.limit_min)) {
3634 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003635 goto loop;
3636 }
3637
Liu Bocf25ce52015-12-14 18:29:32 -08003638 ASSERT(fs_info->data_sinfo);
3639 spin_lock(&fs_info->data_sinfo->lock);
3640 bytes_used = fs_info->data_sinfo->bytes_used;
3641 spin_unlock(&fs_info->data_sinfo->lock);
3642
3643 if ((chunk_type & BTRFS_BLOCK_GROUP_DATA) &&
3644 !chunk_reserved && !bytes_used) {
Zhao Lei2c9fe832015-11-09 11:51:32 +08003645 trans = btrfs_start_transaction(chunk_root, 0);
3646 if (IS_ERR(trans)) {
3647 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
3648 ret = PTR_ERR(trans);
3649 goto error;
3650 }
3651
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003652 ret = btrfs_force_chunk_alloc(trans, fs_info,
Zhao Lei2c9fe832015-11-09 11:51:32 +08003653 BTRFS_BLOCK_GROUP_DATA);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003654 btrfs_end_transaction(trans);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003655 if (ret < 0) {
3656 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
3657 goto error;
3658 }
Zhao Lei2c9fe832015-11-09 11:51:32 +08003659 chunk_reserved = 1;
3660 }
3661
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04003662 ret = btrfs_relocate_chunk(fs_info, found_key.offset);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003663 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacik508794e2011-07-02 21:24:41 +00003664 if (ret && ret != -ENOSPC)
3665 goto error;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003666 if (ret == -ENOSPC) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003667 enospc_errors++;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003668 } else {
3669 spin_lock(&fs_info->balance_lock);
3670 bctl->stat.completed++;
3671 spin_unlock(&fs_info->balance_lock);
3672 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003673loop:
Ilya Dryomov795a3322013-08-27 13:50:44 +03003674 if (found_key.offset == 0)
3675 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04003676 key.offset = found_key.offset - 1;
Chris Masonec44a352008-04-28 15:29:52 -04003677 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003678
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003679 if (counting) {
3680 btrfs_release_path(path);
3681 counting = false;
3682 goto again;
3683 }
Chris Masonec44a352008-04-28 15:29:52 -04003684error:
3685 btrfs_free_path(path);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003686 if (enospc_errors) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003687 btrfs_info(fs_info, "%d enospc errors during balance",
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003688 enospc_errors);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003689 if (!ret)
3690 ret = -ENOSPC;
3691 }
3692
Chris Masonec44a352008-04-28 15:29:52 -04003693 return ret;
3694}
3695
Ilya Dryomov0c460c02012-03-27 17:09:17 +03003696/**
3697 * alloc_profile_is_valid - see if a given profile is valid and reduced
3698 * @flags: profile to validate
3699 * @extended: if true @flags is treated as an extended profile
3700 */
3701static int alloc_profile_is_valid(u64 flags, int extended)
3702{
3703 u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK :
3704 BTRFS_BLOCK_GROUP_PROFILE_MASK);
3705
3706 flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK;
3707
3708 /* 1) check that all other bits are zeroed */
3709 if (flags & ~mask)
3710 return 0;
3711
3712 /* 2) see if profile is reduced */
3713 if (flags == 0)
3714 return !extended; /* "0" is valid for usual profiles */
3715
3716 /* true if exactly one bit set */
3717 return (flags & (flags - 1)) == 0;
3718}
3719
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003720static inline int balance_need_close(struct btrfs_fs_info *fs_info)
3721{
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003722 /* cancel requested || normal exit path */
3723 return atomic_read(&fs_info->balance_cancel_req) ||
3724 (atomic_read(&fs_info->balance_pause_req) == 0 &&
3725 atomic_read(&fs_info->balance_cancel_req) == 0);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003726}
3727
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003728static void __cancel_balance(struct btrfs_fs_info *fs_info)
3729{
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003730 int ret;
3731
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003732 unset_balance_control(fs_info);
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003733 ret = del_balance_item(fs_info);
Liu Bo0f788c52013-03-04 16:25:40 +00003734 if (ret)
Anand Jain34d97002016-03-16 16:43:06 +08003735 btrfs_handle_fs_error(fs_info, ret, NULL);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003736
3737 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003738}
3739
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003740/* Non-zero return value signifies invalidity */
3741static inline int validate_convert_profile(struct btrfs_balance_args *bctl_arg,
3742 u64 allowed)
3743{
3744 return ((bctl_arg->flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3745 (!alloc_profile_is_valid(bctl_arg->target, 1) ||
3746 (bctl_arg->target & ~allowed)));
3747}
3748
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003749/*
3750 * Should be called with both balance and volume mutexes held
3751 */
3752int btrfs_balance(struct btrfs_balance_control *bctl,
3753 struct btrfs_ioctl_balance_args *bargs)
3754{
3755 struct btrfs_fs_info *fs_info = bctl->fs_info;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003756 u64 allowed;
Ilya Dryomove4837f82012-03-27 17:09:17 +03003757 int mixed = 0;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003758 int ret;
Stefan Behrens8dabb742012-11-06 13:15:27 +01003759 u64 num_devices;
Miao Xiede98ced2013-01-29 10:13:12 +00003760 unsigned seq;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003761
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003762 if (btrfs_fs_closing(fs_info) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003763 atomic_read(&fs_info->balance_pause_req) ||
3764 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003765 ret = -EINVAL;
3766 goto out;
3767 }
3768
Ilya Dryomove4837f82012-03-27 17:09:17 +03003769 allowed = btrfs_super_incompat_flags(fs_info->super_copy);
3770 if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
3771 mixed = 1;
3772
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003773 /*
3774 * In case of mixed groups both data and meta should be picked,
3775 * and identical options should be given for both of them.
3776 */
Ilya Dryomove4837f82012-03-27 17:09:17 +03003777 allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA;
3778 if (mixed && (bctl->flags & allowed)) {
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003779 if (!(bctl->flags & BTRFS_BALANCE_DATA) ||
3780 !(bctl->flags & BTRFS_BALANCE_METADATA) ||
3781 memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003782 btrfs_err(fs_info,
3783 "with mixed groups data and metadata balance options must be the same");
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003784 ret = -EINVAL;
3785 goto out;
3786 }
3787 }
3788
Stefan Behrens8dabb742012-11-06 13:15:27 +01003789 num_devices = fs_info->fs_devices->num_devices;
Liu Bo73beece2015-07-17 16:49:19 +08003790 btrfs_dev_replace_lock(&fs_info->dev_replace, 0);
Stefan Behrens8dabb742012-11-06 13:15:27 +01003791 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
3792 BUG_ON(num_devices < 1);
3793 num_devices--;
3794 }
Liu Bo73beece2015-07-17 16:49:19 +08003795 btrfs_dev_replace_unlock(&fs_info->dev_replace, 0);
Austin S. Hemmelgarn88be1592016-03-23 14:22:59 -04003796 allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE | BTRFS_BLOCK_GROUP_DUP;
3797 if (num_devices > 1)
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003798 allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1);
Andreas Philipp8250dab2013-05-11 11:13:03 +00003799 if (num_devices > 2)
3800 allowed |= BTRFS_BLOCK_GROUP_RAID5;
3801 if (num_devices > 3)
3802 allowed |= (BTRFS_BLOCK_GROUP_RAID10 |
3803 BTRFS_BLOCK_GROUP_RAID6);
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003804 if (validate_convert_profile(&bctl->data, allowed)) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003805 btrfs_err(fs_info,
3806 "unable to start balance with target data profile %llu",
3807 bctl->data.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003808 ret = -EINVAL;
3809 goto out;
3810 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003811 if (validate_convert_profile(&bctl->meta, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003812 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003813 "unable to start balance with target metadata profile %llu",
3814 bctl->meta.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003815 ret = -EINVAL;
3816 goto out;
3817 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003818 if (validate_convert_profile(&bctl->sys, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003819 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003820 "unable to start balance with target system profile %llu",
3821 bctl->sys.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003822 ret = -EINVAL;
3823 goto out;
3824 }
3825
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003826 /* allow to reduce meta or sys integrity only if force set */
3827 allowed = BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05003828 BTRFS_BLOCK_GROUP_RAID10 |
3829 BTRFS_BLOCK_GROUP_RAID5 |
3830 BTRFS_BLOCK_GROUP_RAID6;
Miao Xiede98ced2013-01-29 10:13:12 +00003831 do {
3832 seq = read_seqbegin(&fs_info->profiles_lock);
3833
3834 if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3835 (fs_info->avail_system_alloc_bits & allowed) &&
3836 !(bctl->sys.target & allowed)) ||
3837 ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3838 (fs_info->avail_metadata_alloc_bits & allowed) &&
3839 !(bctl->meta.target & allowed))) {
3840 if (bctl->flags & BTRFS_BALANCE_FORCE) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003841 btrfs_info(fs_info,
3842 "force reducing metadata integrity");
Miao Xiede98ced2013-01-29 10:13:12 +00003843 } else {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003844 btrfs_err(fs_info,
3845 "balance will reduce metadata integrity, use force if you want this");
Miao Xiede98ced2013-01-29 10:13:12 +00003846 ret = -EINVAL;
3847 goto out;
3848 }
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003849 }
Miao Xiede98ced2013-01-29 10:13:12 +00003850 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003851
Sam Tygieree592d02016-01-06 08:46:12 +00003852 if (btrfs_get_num_tolerated_disk_barrier_failures(bctl->meta.target) <
3853 btrfs_get_num_tolerated_disk_barrier_failures(bctl->data.target)) {
3854 btrfs_warn(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003855 "metadata profile 0x%llx has lower redundancy than data profile 0x%llx",
3856 bctl->meta.target, bctl->data.target);
Sam Tygieree592d02016-01-06 08:46:12 +00003857 }
3858
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003859 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
Zhao Lei943c6e92015-08-19 15:54:15 +08003860 fs_info->num_tolerated_disk_barrier_failures = min(
3861 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info),
3862 btrfs_get_num_tolerated_disk_barrier_failures(
3863 bctl->sys.target));
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003864 }
3865
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04003866 ret = insert_balance_item(fs_info, bctl);
Ilya Dryomov59641012012-01-16 22:04:48 +02003867 if (ret && ret != -EEXIST)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003868 goto out;
3869
Ilya Dryomov59641012012-01-16 22:04:48 +02003870 if (!(bctl->flags & BTRFS_BALANCE_RESUME)) {
3871 BUG_ON(ret == -EEXIST);
3872 set_balance_control(bctl);
3873 } else {
3874 BUG_ON(ret != -EEXIST);
3875 spin_lock(&fs_info->balance_lock);
3876 update_balance_args(bctl);
3877 spin_unlock(&fs_info->balance_lock);
3878 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003879
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003880 atomic_inc(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003881 mutex_unlock(&fs_info->balance_mutex);
3882
3883 ret = __btrfs_balance(fs_info);
3884
3885 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003886 atomic_dec(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003887
Ilya Dryomovbf023ec2013-02-12 16:27:46 +00003888 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3889 fs_info->num_tolerated_disk_barrier_failures =
3890 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info);
3891 }
3892
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003893 if (bargs) {
3894 memset(bargs, 0, sizeof(*bargs));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003895 update_ioctl_balance_args(fs_info, 0, bargs);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003896 }
3897
Ilya Dryomov3a01aa72013-03-06 01:57:55 -07003898 if ((ret && ret != -ECANCELED && ret != -ENOSPC) ||
3899 balance_need_close(fs_info)) {
3900 __cancel_balance(fs_info);
3901 }
3902
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003903 wake_up(&fs_info->balance_wait_q);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003904
3905 return ret;
3906out:
Ilya Dryomov59641012012-01-16 22:04:48 +02003907 if (bctl->flags & BTRFS_BALANCE_RESUME)
3908 __cancel_balance(fs_info);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003909 else {
Ilya Dryomov59641012012-01-16 22:04:48 +02003910 kfree(bctl);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003911 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
3912 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003913 return ret;
3914}
3915
3916static int balance_kthread(void *data)
3917{
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003918 struct btrfs_fs_info *fs_info = data;
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003919 int ret = 0;
Ilya Dryomov59641012012-01-16 22:04:48 +02003920
3921 mutex_lock(&fs_info->volume_mutex);
3922 mutex_lock(&fs_info->balance_mutex);
3923
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003924 if (fs_info->balance_ctl) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003925 btrfs_info(fs_info, "continuing balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003926 ret = btrfs_balance(fs_info->balance_ctl, NULL);
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003927 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003928
3929 mutex_unlock(&fs_info->balance_mutex);
3930 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003931
Ilya Dryomov59641012012-01-16 22:04:48 +02003932 return ret;
3933}
3934
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003935int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info)
3936{
3937 struct task_struct *tsk;
3938
3939 spin_lock(&fs_info->balance_lock);
3940 if (!fs_info->balance_ctl) {
3941 spin_unlock(&fs_info->balance_lock);
3942 return 0;
3943 }
3944 spin_unlock(&fs_info->balance_lock);
3945
Jeff Mahoney3cdde222016-06-09 21:38:35 -04003946 if (btrfs_test_opt(fs_info, SKIP_BALANCE)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003947 btrfs_info(fs_info, "force skipping balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003948 return 0;
3949 }
3950
3951 tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance");
Sachin Kamatcd633972013-07-15 16:52:18 +05303952 return PTR_ERR_OR_ZERO(tsk);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003953}
3954
Ilya Dryomov68310a52012-06-22 12:24:12 -06003955int btrfs_recover_balance(struct btrfs_fs_info *fs_info)
Ilya Dryomov59641012012-01-16 22:04:48 +02003956{
Ilya Dryomov59641012012-01-16 22:04:48 +02003957 struct btrfs_balance_control *bctl;
3958 struct btrfs_balance_item *item;
3959 struct btrfs_disk_balance_args disk_bargs;
3960 struct btrfs_path *path;
3961 struct extent_buffer *leaf;
3962 struct btrfs_key key;
3963 int ret;
3964
3965 path = btrfs_alloc_path();
3966 if (!path)
3967 return -ENOMEM;
3968
Ilya Dryomov68310a52012-06-22 12:24:12 -06003969 key.objectid = BTRFS_BALANCE_OBJECTID;
David Sterbac479cb42016-01-25 17:51:31 +01003970 key.type = BTRFS_TEMPORARY_ITEM_KEY;
Ilya Dryomov68310a52012-06-22 12:24:12 -06003971 key.offset = 0;
3972
3973 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
3974 if (ret < 0)
3975 goto out;
3976 if (ret > 0) { /* ret = -ENOENT; */
3977 ret = 0;
3978 goto out;
3979 }
3980
Ilya Dryomov59641012012-01-16 22:04:48 +02003981 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
3982 if (!bctl) {
3983 ret = -ENOMEM;
3984 goto out;
3985 }
3986
Ilya Dryomov59641012012-01-16 22:04:48 +02003987 leaf = path->nodes[0];
3988 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
3989
Ilya Dryomov68310a52012-06-22 12:24:12 -06003990 bctl->fs_info = fs_info;
3991 bctl->flags = btrfs_balance_flags(leaf, item);
3992 bctl->flags |= BTRFS_BALANCE_RESUME;
Ilya Dryomov59641012012-01-16 22:04:48 +02003993
3994 btrfs_balance_data(leaf, item, &disk_bargs);
3995 btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs);
3996 btrfs_balance_meta(leaf, item, &disk_bargs);
3997 btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs);
3998 btrfs_balance_sys(leaf, item, &disk_bargs);
3999 btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs);
4000
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004001 WARN_ON(atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1));
4002
Ilya Dryomov68310a52012-06-22 12:24:12 -06004003 mutex_lock(&fs_info->volume_mutex);
4004 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02004005
Ilya Dryomov68310a52012-06-22 12:24:12 -06004006 set_balance_control(bctl);
4007
4008 mutex_unlock(&fs_info->balance_mutex);
4009 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02004010out:
4011 btrfs_free_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04004012 return ret;
4013}
4014
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004015int btrfs_pause_balance(struct btrfs_fs_info *fs_info)
4016{
4017 int ret = 0;
4018
4019 mutex_lock(&fs_info->balance_mutex);
4020 if (!fs_info->balance_ctl) {
4021 mutex_unlock(&fs_info->balance_mutex);
4022 return -ENOTCONN;
4023 }
4024
4025 if (atomic_read(&fs_info->balance_running)) {
4026 atomic_inc(&fs_info->balance_pause_req);
4027 mutex_unlock(&fs_info->balance_mutex);
4028
4029 wait_event(fs_info->balance_wait_q,
4030 atomic_read(&fs_info->balance_running) == 0);
4031
4032 mutex_lock(&fs_info->balance_mutex);
4033 /* we are good with balance_ctl ripped off from under us */
4034 BUG_ON(atomic_read(&fs_info->balance_running));
4035 atomic_dec(&fs_info->balance_pause_req);
4036 } else {
4037 ret = -ENOTCONN;
4038 }
4039
4040 mutex_unlock(&fs_info->balance_mutex);
4041 return ret;
4042}
4043
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004044int btrfs_cancel_balance(struct btrfs_fs_info *fs_info)
4045{
Ilya Dryomove649e582013-10-10 20:40:21 +03004046 if (fs_info->sb->s_flags & MS_RDONLY)
4047 return -EROFS;
4048
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004049 mutex_lock(&fs_info->balance_mutex);
4050 if (!fs_info->balance_ctl) {
4051 mutex_unlock(&fs_info->balance_mutex);
4052 return -ENOTCONN;
4053 }
4054
4055 atomic_inc(&fs_info->balance_cancel_req);
4056 /*
4057 * if we are running just wait and return, balance item is
4058 * deleted in btrfs_balance in this case
4059 */
4060 if (atomic_read(&fs_info->balance_running)) {
4061 mutex_unlock(&fs_info->balance_mutex);
4062 wait_event(fs_info->balance_wait_q,
4063 atomic_read(&fs_info->balance_running) == 0);
4064 mutex_lock(&fs_info->balance_mutex);
4065 } else {
4066 /* __cancel_balance needs volume_mutex */
4067 mutex_unlock(&fs_info->balance_mutex);
4068 mutex_lock(&fs_info->volume_mutex);
4069 mutex_lock(&fs_info->balance_mutex);
4070
4071 if (fs_info->balance_ctl)
4072 __cancel_balance(fs_info);
4073
4074 mutex_unlock(&fs_info->volume_mutex);
4075 }
4076
4077 BUG_ON(fs_info->balance_ctl || atomic_read(&fs_info->balance_running));
4078 atomic_dec(&fs_info->balance_cancel_req);
4079 mutex_unlock(&fs_info->balance_mutex);
4080 return 0;
4081}
4082
Stefan Behrens803b2f52013-08-15 17:11:21 +02004083static int btrfs_uuid_scan_kthread(void *data)
4084{
4085 struct btrfs_fs_info *fs_info = data;
4086 struct btrfs_root *root = fs_info->tree_root;
4087 struct btrfs_key key;
4088 struct btrfs_key max_key;
4089 struct btrfs_path *path = NULL;
4090 int ret = 0;
4091 struct extent_buffer *eb;
4092 int slot;
4093 struct btrfs_root_item root_item;
4094 u32 item_size;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004095 struct btrfs_trans_handle *trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004096
4097 path = btrfs_alloc_path();
4098 if (!path) {
4099 ret = -ENOMEM;
4100 goto out;
4101 }
4102
4103 key.objectid = 0;
4104 key.type = BTRFS_ROOT_ITEM_KEY;
4105 key.offset = 0;
4106
4107 max_key.objectid = (u64)-1;
4108 max_key.type = BTRFS_ROOT_ITEM_KEY;
4109 max_key.offset = (u64)-1;
4110
Stefan Behrens803b2f52013-08-15 17:11:21 +02004111 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01004112 ret = btrfs_search_forward(root, &key, path, 0);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004113 if (ret) {
4114 if (ret > 0)
4115 ret = 0;
4116 break;
4117 }
4118
4119 if (key.type != BTRFS_ROOT_ITEM_KEY ||
4120 (key.objectid < BTRFS_FIRST_FREE_OBJECTID &&
4121 key.objectid != BTRFS_FS_TREE_OBJECTID) ||
4122 key.objectid > BTRFS_LAST_FREE_OBJECTID)
4123 goto skip;
4124
4125 eb = path->nodes[0];
4126 slot = path->slots[0];
4127 item_size = btrfs_item_size_nr(eb, slot);
4128 if (item_size < sizeof(root_item))
4129 goto skip;
4130
Stefan Behrens803b2f52013-08-15 17:11:21 +02004131 read_extent_buffer(eb, &root_item,
4132 btrfs_item_ptr_offset(eb, slot),
4133 (int)sizeof(root_item));
4134 if (btrfs_root_refs(&root_item) == 0)
4135 goto skip;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004136
4137 if (!btrfs_is_empty_uuid(root_item.uuid) ||
4138 !btrfs_is_empty_uuid(root_item.received_uuid)) {
4139 if (trans)
4140 goto update_tree;
4141
4142 btrfs_release_path(path);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004143 /*
4144 * 1 - subvol uuid item
4145 * 1 - received_subvol uuid item
4146 */
4147 trans = btrfs_start_transaction(fs_info->uuid_root, 2);
4148 if (IS_ERR(trans)) {
4149 ret = PTR_ERR(trans);
4150 break;
4151 }
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004152 continue;
4153 } else {
4154 goto skip;
4155 }
4156update_tree:
4157 if (!btrfs_is_empty_uuid(root_item.uuid)) {
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004158 ret = btrfs_uuid_tree_add(trans, fs_info,
Stefan Behrens803b2f52013-08-15 17:11:21 +02004159 root_item.uuid,
4160 BTRFS_UUID_KEY_SUBVOL,
4161 key.objectid);
4162 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004163 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004164 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004165 break;
4166 }
4167 }
4168
4169 if (!btrfs_is_empty_uuid(root_item.received_uuid)) {
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004170 ret = btrfs_uuid_tree_add(trans, fs_info,
Stefan Behrens803b2f52013-08-15 17:11:21 +02004171 root_item.received_uuid,
4172 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4173 key.objectid);
4174 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004175 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004176 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004177 break;
4178 }
4179 }
4180
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004181skip:
Stefan Behrens803b2f52013-08-15 17:11:21 +02004182 if (trans) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004183 ret = btrfs_end_transaction(trans);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004184 trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004185 if (ret)
4186 break;
4187 }
4188
Stefan Behrens803b2f52013-08-15 17:11:21 +02004189 btrfs_release_path(path);
4190 if (key.offset < (u64)-1) {
4191 key.offset++;
4192 } else if (key.type < BTRFS_ROOT_ITEM_KEY) {
4193 key.offset = 0;
4194 key.type = BTRFS_ROOT_ITEM_KEY;
4195 } else if (key.objectid < (u64)-1) {
4196 key.offset = 0;
4197 key.type = BTRFS_ROOT_ITEM_KEY;
4198 key.objectid++;
4199 } else {
4200 break;
4201 }
4202 cond_resched();
4203 }
4204
4205out:
4206 btrfs_free_path(path);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004207 if (trans && !IS_ERR(trans))
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004208 btrfs_end_transaction(trans);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004209 if (ret)
Frank Holtonefe120a2013-12-20 11:37:06 -05004210 btrfs_warn(fs_info, "btrfs_uuid_scan_kthread failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004211 else
Josef Bacikafcdd122016-09-02 15:40:02 -04004212 set_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004213 up(&fs_info->uuid_tree_rescan_sem);
4214 return 0;
4215}
4216
Stefan Behrens70f80172013-08-15 17:11:23 +02004217/*
4218 * Callback for btrfs_uuid_tree_iterate().
4219 * returns:
4220 * 0 check succeeded, the entry is not outdated.
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08004221 * < 0 if an error occurred.
Stefan Behrens70f80172013-08-15 17:11:23 +02004222 * > 0 if the check failed, which means the caller shall remove the entry.
4223 */
4224static int btrfs_check_uuid_tree_entry(struct btrfs_fs_info *fs_info,
4225 u8 *uuid, u8 type, u64 subid)
4226{
4227 struct btrfs_key key;
4228 int ret = 0;
4229 struct btrfs_root *subvol_root;
4230
4231 if (type != BTRFS_UUID_KEY_SUBVOL &&
4232 type != BTRFS_UUID_KEY_RECEIVED_SUBVOL)
4233 goto out;
4234
4235 key.objectid = subid;
4236 key.type = BTRFS_ROOT_ITEM_KEY;
4237 key.offset = (u64)-1;
4238 subvol_root = btrfs_read_fs_root_no_name(fs_info, &key);
4239 if (IS_ERR(subvol_root)) {
4240 ret = PTR_ERR(subvol_root);
4241 if (ret == -ENOENT)
4242 ret = 1;
4243 goto out;
4244 }
4245
4246 switch (type) {
4247 case BTRFS_UUID_KEY_SUBVOL:
4248 if (memcmp(uuid, subvol_root->root_item.uuid, BTRFS_UUID_SIZE))
4249 ret = 1;
4250 break;
4251 case BTRFS_UUID_KEY_RECEIVED_SUBVOL:
4252 if (memcmp(uuid, subvol_root->root_item.received_uuid,
4253 BTRFS_UUID_SIZE))
4254 ret = 1;
4255 break;
4256 }
4257
4258out:
4259 return ret;
4260}
4261
4262static int btrfs_uuid_rescan_kthread(void *data)
4263{
4264 struct btrfs_fs_info *fs_info = (struct btrfs_fs_info *)data;
4265 int ret;
4266
4267 /*
4268 * 1st step is to iterate through the existing UUID tree and
4269 * to delete all entries that contain outdated data.
4270 * 2nd step is to add all missing entries to the UUID tree.
4271 */
4272 ret = btrfs_uuid_tree_iterate(fs_info, btrfs_check_uuid_tree_entry);
4273 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004274 btrfs_warn(fs_info, "iterating uuid_tree failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004275 up(&fs_info->uuid_tree_rescan_sem);
4276 return ret;
4277 }
4278 return btrfs_uuid_scan_kthread(data);
4279}
4280
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004281int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info)
4282{
4283 struct btrfs_trans_handle *trans;
4284 struct btrfs_root *tree_root = fs_info->tree_root;
4285 struct btrfs_root *uuid_root;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004286 struct task_struct *task;
4287 int ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004288
4289 /*
4290 * 1 - root node
4291 * 1 - root item
4292 */
4293 trans = btrfs_start_transaction(tree_root, 2);
4294 if (IS_ERR(trans))
4295 return PTR_ERR(trans);
4296
4297 uuid_root = btrfs_create_tree(trans, fs_info,
4298 BTRFS_UUID_TREE_OBJECTID);
4299 if (IS_ERR(uuid_root)) {
David Sterba6d13f542015-04-24 19:12:01 +02004300 ret = PTR_ERR(uuid_root);
Jeff Mahoney66642832016-06-10 18:19:25 -04004301 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004302 btrfs_end_transaction(trans);
David Sterba6d13f542015-04-24 19:12:01 +02004303 return ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004304 }
4305
4306 fs_info->uuid_root = uuid_root;
4307
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004308 ret = btrfs_commit_transaction(trans);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004309 if (ret)
4310 return ret;
4311
4312 down(&fs_info->uuid_tree_rescan_sem);
4313 task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid");
4314 if (IS_ERR(task)) {
Stefan Behrens70f80172013-08-15 17:11:23 +02004315 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004316 btrfs_warn(fs_info, "failed to start uuid_scan task");
Stefan Behrens803b2f52013-08-15 17:11:21 +02004317 up(&fs_info->uuid_tree_rescan_sem);
4318 return PTR_ERR(task);
4319 }
4320
4321 return 0;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004322}
Stefan Behrens803b2f52013-08-15 17:11:21 +02004323
Stefan Behrens70f80172013-08-15 17:11:23 +02004324int btrfs_check_uuid_tree(struct btrfs_fs_info *fs_info)
4325{
4326 struct task_struct *task;
4327
4328 down(&fs_info->uuid_tree_rescan_sem);
4329 task = kthread_run(btrfs_uuid_rescan_kthread, fs_info, "btrfs-uuid");
4330 if (IS_ERR(task)) {
4331 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004332 btrfs_warn(fs_info, "failed to start uuid_rescan task");
Stefan Behrens70f80172013-08-15 17:11:23 +02004333 up(&fs_info->uuid_tree_rescan_sem);
4334 return PTR_ERR(task);
4335 }
4336
4337 return 0;
4338}
4339
Chris Mason8f18cf12008-04-25 16:53:30 -04004340/*
4341 * shrinking a device means finding all of the device extents past
4342 * the new size, and then following the back refs to the chunks.
4343 * The chunk relocation code actually frees the device extent
4344 */
4345int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
4346{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004347 struct btrfs_fs_info *fs_info = device->fs_info;
4348 struct btrfs_root *root = fs_info->dev_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04004349 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04004350 struct btrfs_dev_extent *dev_extent = NULL;
4351 struct btrfs_path *path;
4352 u64 length;
Chris Mason8f18cf12008-04-25 16:53:30 -04004353 u64 chunk_offset;
4354 int ret;
4355 int slot;
Josef Bacikba1bf482009-09-11 16:11:19 -04004356 int failed = 0;
4357 bool retried = false;
Filipe Manana53e489b2015-06-02 14:43:21 +01004358 bool checked_pending_chunks = false;
Chris Mason8f18cf12008-04-25 16:53:30 -04004359 struct extent_buffer *l;
4360 struct btrfs_key key;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004361 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04004362 u64 old_total = btrfs_super_total_bytes(super_copy);
Miao Xie7cc8e582014-09-03 21:35:38 +08004363 u64 old_size = btrfs_device_get_total_bytes(device);
4364 u64 diff = old_size - new_size;
Chris Mason8f18cf12008-04-25 16:53:30 -04004365
Stefan Behrens63a212a2012-11-05 18:29:28 +01004366 if (device->is_tgtdev_for_dev_replace)
4367 return -EINVAL;
4368
Chris Mason8f18cf12008-04-25 16:53:30 -04004369 path = btrfs_alloc_path();
4370 if (!path)
4371 return -ENOMEM;
4372
David Sterbae4058b52015-11-27 16:31:35 +01004373 path->reada = READA_FORWARD;
Chris Mason8f18cf12008-04-25 16:53:30 -04004374
David Sterba34441362016-10-04 19:34:27 +02004375 mutex_lock(&fs_info->chunk_mutex);
Chris Mason7d9eb122008-07-08 14:19:17 -04004376
Miao Xie7cc8e582014-09-03 21:35:38 +08004377 btrfs_device_set_total_bytes(device, new_size);
Josef Bacik2bf64752011-09-26 17:12:22 -04004378 if (device->writeable) {
Yan Zheng2b820322008-11-17 21:11:30 -05004379 device->fs_devices->total_rw_bytes -= diff;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004380 spin_lock(&fs_info->free_chunk_lock);
4381 fs_info->free_chunk_space -= diff;
4382 spin_unlock(&fs_info->free_chunk_lock);
Josef Bacik2bf64752011-09-26 17:12:22 -04004383 }
David Sterba34441362016-10-04 19:34:27 +02004384 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004385
Josef Bacikba1bf482009-09-11 16:11:19 -04004386again:
Chris Mason8f18cf12008-04-25 16:53:30 -04004387 key.objectid = device->devid;
4388 key.offset = (u64)-1;
4389 key.type = BTRFS_DEV_EXTENT_KEY;
4390
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004391 do {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004392 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004393 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004394 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004395 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004396 goto done;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004397 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004398
4399 ret = btrfs_previous_item(root, path, 0, key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004400 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004401 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004402 if (ret < 0)
4403 goto done;
4404 if (ret) {
4405 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02004406 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004407 break;
Chris Mason8f18cf12008-04-25 16:53:30 -04004408 }
4409
4410 l = path->nodes[0];
4411 slot = path->slots[0];
4412 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
4413
Josef Bacikba1bf482009-09-11 16:11:19 -04004414 if (key.objectid != device->devid) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004415 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004416 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004417 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004418 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004419
4420 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
4421 length = btrfs_dev_extent_length(l, dev_extent);
4422
Josef Bacikba1bf482009-09-11 16:11:19 -04004423 if (key.offset + length <= new_size) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004424 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004425 btrfs_release_path(path);
Chris Balld6397ba2009-04-27 07:29:03 -04004426 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004427 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004428
Chris Mason8f18cf12008-04-25 16:53:30 -04004429 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
David Sterbab3b4aa72011-04-21 01:20:15 +02004430 btrfs_release_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04004431
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004432 ret = btrfs_relocate_chunk(fs_info, chunk_offset);
4433 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacikba1bf482009-09-11 16:11:19 -04004434 if (ret && ret != -ENOSPC)
Chris Mason8f18cf12008-04-25 16:53:30 -04004435 goto done;
Josef Bacikba1bf482009-09-11 16:11:19 -04004436 if (ret == -ENOSPC)
4437 failed++;
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004438 } while (key.offset-- > 0);
Josef Bacikba1bf482009-09-11 16:11:19 -04004439
4440 if (failed && !retried) {
4441 failed = 0;
4442 retried = true;
4443 goto again;
4444 } else if (failed && retried) {
4445 ret = -ENOSPC;
Josef Bacikba1bf482009-09-11 16:11:19 -04004446 goto done;
Chris Mason8f18cf12008-04-25 16:53:30 -04004447 }
4448
Chris Balld6397ba2009-04-27 07:29:03 -04004449 /* Shrinking succeeded, else we would be at "done". */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004450 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00004451 if (IS_ERR(trans)) {
4452 ret = PTR_ERR(trans);
4453 goto done;
4454 }
4455
David Sterba34441362016-10-04 19:34:27 +02004456 mutex_lock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004457
4458 /*
4459 * We checked in the above loop all device extents that were already in
4460 * the device tree. However before we have updated the device's
4461 * total_bytes to the new size, we might have had chunk allocations that
4462 * have not complete yet (new block groups attached to transaction
4463 * handles), and therefore their device extents were not yet in the
4464 * device tree and we missed them in the loop above. So if we have any
4465 * pending chunk using a device extent that overlaps the device range
4466 * that we can not use anymore, commit the current transaction and
4467 * repeat the search on the device tree - this way we guarantee we will
4468 * not have chunks using device extents that end beyond 'new_size'.
4469 */
4470 if (!checked_pending_chunks) {
4471 u64 start = new_size;
4472 u64 len = old_size - new_size;
4473
Jeff Mahoney499f3772015-06-15 09:41:17 -04004474 if (contains_pending_extent(trans->transaction, device,
4475 &start, len)) {
David Sterba34441362016-10-04 19:34:27 +02004476 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004477 checked_pending_chunks = true;
4478 failed = 0;
4479 retried = false;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004480 ret = btrfs_commit_transaction(trans);
Filipe Manana53e489b2015-06-02 14:43:21 +01004481 if (ret)
4482 goto done;
4483 goto again;
4484 }
4485 }
4486
Miao Xie7cc8e582014-09-03 21:35:38 +08004487 btrfs_device_set_disk_total_bytes(device, new_size);
Miao Xie935e5cc2014-09-03 21:35:33 +08004488 if (list_empty(&device->resized_list))
4489 list_add_tail(&device->resized_list,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004490 &fs_info->fs_devices->resized_devices);
Chris Balld6397ba2009-04-27 07:29:03 -04004491
Chris Balld6397ba2009-04-27 07:29:03 -04004492 WARN_ON(diff > old_total);
4493 btrfs_set_super_total_bytes(super_copy, old_total - diff);
David Sterba34441362016-10-04 19:34:27 +02004494 mutex_unlock(&fs_info->chunk_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08004495
4496 /* Now btrfs_update_device() will change the on-disk size. */
4497 ret = btrfs_update_device(trans, device);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004498 btrfs_end_transaction(trans);
Chris Mason8f18cf12008-04-25 16:53:30 -04004499done:
4500 btrfs_free_path(path);
Filipe Manana53e489b2015-06-02 14:43:21 +01004501 if (ret) {
David Sterba34441362016-10-04 19:34:27 +02004502 mutex_lock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004503 btrfs_device_set_total_bytes(device, old_size);
4504 if (device->writeable)
4505 device->fs_devices->total_rw_bytes += diff;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004506 spin_lock(&fs_info->free_chunk_lock);
4507 fs_info->free_chunk_space += diff;
4508 spin_unlock(&fs_info->free_chunk_lock);
David Sterba34441362016-10-04 19:34:27 +02004509 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana53e489b2015-06-02 14:43:21 +01004510 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004511 return ret;
4512}
4513
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004514static int btrfs_add_system_chunk(struct btrfs_fs_info *fs_info,
Chris Mason0b86a832008-03-24 15:01:56 -04004515 struct btrfs_key *key,
4516 struct btrfs_chunk *chunk, int item_size)
4517{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004518 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Mason0b86a832008-03-24 15:01:56 -04004519 struct btrfs_disk_key disk_key;
4520 u32 array_size;
4521 u8 *ptr;
4522
David Sterba34441362016-10-04 19:34:27 +02004523 mutex_lock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04004524 array_size = btrfs_super_sys_array_size(super_copy);
Gui Hecheng5f43f862014-04-21 20:13:11 +08004525 if (array_size + item_size + sizeof(disk_key)
Miao Xiefe48a5c2014-09-03 21:35:39 +08004526 > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE) {
David Sterba34441362016-10-04 19:34:27 +02004527 mutex_unlock(&fs_info->chunk_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04004528 return -EFBIG;
Miao Xiefe48a5c2014-09-03 21:35:39 +08004529 }
Chris Mason0b86a832008-03-24 15:01:56 -04004530
4531 ptr = super_copy->sys_chunk_array + array_size;
4532 btrfs_cpu_key_to_disk(&disk_key, key);
4533 memcpy(ptr, &disk_key, sizeof(disk_key));
4534 ptr += sizeof(disk_key);
4535 memcpy(ptr, chunk, item_size);
4536 item_size += sizeof(disk_key);
4537 btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
David Sterba34441362016-10-04 19:34:27 +02004538 mutex_unlock(&fs_info->chunk_mutex);
Miao Xiefe48a5c2014-09-03 21:35:39 +08004539
Chris Mason0b86a832008-03-24 15:01:56 -04004540 return 0;
4541}
4542
Miao Xieb2117a32011-01-05 10:07:28 +00004543/*
Arne Jansen73c5de02011-04-12 12:07:57 +02004544 * sort the devices in descending order by max_avail, total_avail
Miao Xieb2117a32011-01-05 10:07:28 +00004545 */
Arne Jansen73c5de02011-04-12 12:07:57 +02004546static int btrfs_cmp_device_info(const void *a, const void *b)
Miao Xieb2117a32011-01-05 10:07:28 +00004547{
Arne Jansen73c5de02011-04-12 12:07:57 +02004548 const struct btrfs_device_info *di_a = a;
4549 const struct btrfs_device_info *di_b = b;
Miao Xieb2117a32011-01-05 10:07:28 +00004550
Arne Jansen73c5de02011-04-12 12:07:57 +02004551 if (di_a->max_avail > di_b->max_avail)
4552 return -1;
4553 if (di_a->max_avail < di_b->max_avail)
4554 return 1;
4555 if (di_a->total_avail > di_b->total_avail)
4556 return -1;
4557 if (di_a->total_avail < di_b->total_avail)
4558 return 1;
Miao Xieb2117a32011-01-05 10:07:28 +00004559 return 0;
4560}
4561
David Woodhouse53b381b2013-01-29 18:40:14 -05004562static u32 find_raid56_stripe_len(u32 data_devices, u32 dev_stripe_target)
4563{
4564 /* TODO allow them to set a preferred stripe size */
Byongho Leeee221842015-12-15 01:42:10 +09004565 return SZ_64K;
David Woodhouse53b381b2013-01-29 18:40:14 -05004566}
4567
4568static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type)
4569{
Zhao Leiffe2d202015-01-20 15:11:44 +08004570 if (!(type & BTRFS_BLOCK_GROUP_RAID56_MASK))
David Woodhouse53b381b2013-01-29 18:40:14 -05004571 return;
4572
Miao Xieceda0862013-04-11 10:30:16 +00004573 btrfs_set_fs_incompat(info, RAID56);
David Woodhouse53b381b2013-01-29 18:40:14 -05004574}
4575
Jeff Mahoneyda170662016-06-15 09:22:56 -04004576#define BTRFS_MAX_DEVS(r) ((BTRFS_MAX_ITEM_SIZE(r->fs_info) \
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004577 - sizeof(struct btrfs_chunk)) \
4578 / sizeof(struct btrfs_stripe) + 1)
4579
4580#define BTRFS_MAX_DEVS_SYS_CHUNK ((BTRFS_SYSTEM_CHUNK_ARRAY_SIZE \
4581 - 2 * sizeof(struct btrfs_disk_key) \
4582 - 2 * sizeof(struct btrfs_chunk)) \
4583 / sizeof(struct btrfs_stripe) + 1)
4584
Miao Xieb2117a32011-01-05 10:07:28 +00004585static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
David Sterba72b468c2017-02-10 19:46:27 +01004586 u64 start, u64 type)
Miao Xieb2117a32011-01-05 10:07:28 +00004587{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004588 struct btrfs_fs_info *info = trans->fs_info;
Miao Xieb2117a32011-01-05 10:07:28 +00004589 struct btrfs_fs_devices *fs_devices = info->fs_devices;
4590 struct list_head *cur;
Arne Jansen73c5de02011-04-12 12:07:57 +02004591 struct map_lookup *map = NULL;
Miao Xieb2117a32011-01-05 10:07:28 +00004592 struct extent_map_tree *em_tree;
4593 struct extent_map *em;
Arne Jansen73c5de02011-04-12 12:07:57 +02004594 struct btrfs_device_info *devices_info = NULL;
4595 u64 total_avail;
4596 int num_stripes; /* total number of stripes to allocate */
David Woodhouse53b381b2013-01-29 18:40:14 -05004597 int data_stripes; /* number of stripes that count for
4598 block group size */
Arne Jansen73c5de02011-04-12 12:07:57 +02004599 int sub_stripes; /* sub_stripes info for map */
4600 int dev_stripes; /* stripes per dev */
4601 int devs_max; /* max devs to use */
4602 int devs_min; /* min devs needed */
4603 int devs_increment; /* ndevs has to be a multiple of this */
4604 int ncopies; /* how many copies to data has */
Miao Xieb2117a32011-01-05 10:07:28 +00004605 int ret;
Arne Jansen73c5de02011-04-12 12:07:57 +02004606 u64 max_stripe_size;
4607 u64 max_chunk_size;
4608 u64 stripe_size;
4609 u64 num_bytes;
David Woodhouse53b381b2013-01-29 18:40:14 -05004610 u64 raid_stripe_len = BTRFS_STRIPE_LEN;
Arne Jansen73c5de02011-04-12 12:07:57 +02004611 int ndevs;
4612 int i;
4613 int j;
Liu Bo31e50222012-11-21 14:18:10 +00004614 int index;
Miao Xieb2117a32011-01-05 10:07:28 +00004615
Ilya Dryomov0c460c02012-03-27 17:09:17 +03004616 BUG_ON(!alloc_profile_is_valid(type, 0));
Arne Jansen73c5de02011-04-12 12:07:57 +02004617
Miao Xieb2117a32011-01-05 10:07:28 +00004618 if (list_empty(&fs_devices->alloc_list))
4619 return -ENOSPC;
4620
Liu Bo31e50222012-11-21 14:18:10 +00004621 index = __get_raid_index(type);
Arne Jansen73c5de02011-04-12 12:07:57 +02004622
Liu Bo31e50222012-11-21 14:18:10 +00004623 sub_stripes = btrfs_raid_array[index].sub_stripes;
4624 dev_stripes = btrfs_raid_array[index].dev_stripes;
4625 devs_max = btrfs_raid_array[index].devs_max;
4626 devs_min = btrfs_raid_array[index].devs_min;
4627 devs_increment = btrfs_raid_array[index].devs_increment;
4628 ncopies = btrfs_raid_array[index].ncopies;
Arne Jansen73c5de02011-04-12 12:07:57 +02004629
4630 if (type & BTRFS_BLOCK_GROUP_DATA) {
Byongho Leeee221842015-12-15 01:42:10 +09004631 max_stripe_size = SZ_1G;
Arne Jansen73c5de02011-04-12 12:07:57 +02004632 max_chunk_size = 10 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004633 if (!devs_max)
4634 devs_max = BTRFS_MAX_DEVS(info->chunk_root);
Arne Jansen73c5de02011-04-12 12:07:57 +02004635 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason11003732012-01-06 15:47:38 -05004636 /* for larger filesystems, use larger metadata chunks */
Byongho Leeee221842015-12-15 01:42:10 +09004637 if (fs_devices->total_rw_bytes > 50ULL * SZ_1G)
4638 max_stripe_size = SZ_1G;
Chris Mason11003732012-01-06 15:47:38 -05004639 else
Byongho Leeee221842015-12-15 01:42:10 +09004640 max_stripe_size = SZ_256M;
Arne Jansen73c5de02011-04-12 12:07:57 +02004641 max_chunk_size = max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004642 if (!devs_max)
4643 devs_max = BTRFS_MAX_DEVS(info->chunk_root);
Arne Jansen73c5de02011-04-12 12:07:57 +02004644 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
Byongho Leeee221842015-12-15 01:42:10 +09004645 max_stripe_size = SZ_32M;
Arne Jansen73c5de02011-04-12 12:07:57 +02004646 max_chunk_size = 2 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004647 if (!devs_max)
4648 devs_max = BTRFS_MAX_DEVS_SYS_CHUNK;
Arne Jansen73c5de02011-04-12 12:07:57 +02004649 } else {
David Sterba351fd352014-05-15 16:48:20 +02004650 btrfs_err(info, "invalid chunk type 0x%llx requested",
Arne Jansen73c5de02011-04-12 12:07:57 +02004651 type);
4652 BUG_ON(1);
4653 }
4654
4655 /* we don't want a chunk larger than 10% of writeable space */
4656 max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1),
4657 max_chunk_size);
Miao Xieb2117a32011-01-05 10:07:28 +00004658
David Sterba31e818f2015-02-20 18:00:26 +01004659 devices_info = kcalloc(fs_devices->rw_devices, sizeof(*devices_info),
Miao Xieb2117a32011-01-05 10:07:28 +00004660 GFP_NOFS);
4661 if (!devices_info)
4662 return -ENOMEM;
4663
Arne Jansen73c5de02011-04-12 12:07:57 +02004664 cur = fs_devices->alloc_list.next;
4665
4666 /*
4667 * in the first pass through the devices list, we gather information
4668 * about the available holes on each device.
4669 */
4670 ndevs = 0;
4671 while (cur != &fs_devices->alloc_list) {
4672 struct btrfs_device *device;
4673 u64 max_avail;
4674 u64 dev_offset;
4675
4676 device = list_entry(cur, struct btrfs_device, dev_alloc_list);
4677
4678 cur = cur->next;
4679
4680 if (!device->writeable) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00004681 WARN(1, KERN_ERR
Frank Holtonefe120a2013-12-20 11:37:06 -05004682 "BTRFS: read-only device in alloc_list\n");
Arne Jansen73c5de02011-04-12 12:07:57 +02004683 continue;
4684 }
4685
Stefan Behrens63a212a2012-11-05 18:29:28 +01004686 if (!device->in_fs_metadata ||
4687 device->is_tgtdev_for_dev_replace)
Arne Jansen73c5de02011-04-12 12:07:57 +02004688 continue;
4689
4690 if (device->total_bytes > device->bytes_used)
4691 total_avail = device->total_bytes - device->bytes_used;
4692 else
4693 total_avail = 0;
liubo38c01b92011-08-02 02:39:03 +00004694
4695 /* If there is no space on this device, skip it. */
4696 if (total_avail == 0)
4697 continue;
Arne Jansen73c5de02011-04-12 12:07:57 +02004698
Josef Bacik6df9a952013-06-27 13:22:46 -04004699 ret = find_free_dev_extent(trans, device,
Arne Jansen73c5de02011-04-12 12:07:57 +02004700 max_stripe_size * dev_stripes,
4701 &dev_offset, &max_avail);
4702 if (ret && ret != -ENOSPC)
4703 goto error;
4704
4705 if (ret == 0)
4706 max_avail = max_stripe_size * dev_stripes;
4707
4708 if (max_avail < BTRFS_STRIPE_LEN * dev_stripes)
4709 continue;
4710
Eric Sandeen063d0062013-01-31 00:55:01 +00004711 if (ndevs == fs_devices->rw_devices) {
4712 WARN(1, "%s: found more than %llu devices\n",
4713 __func__, fs_devices->rw_devices);
4714 break;
4715 }
Arne Jansen73c5de02011-04-12 12:07:57 +02004716 devices_info[ndevs].dev_offset = dev_offset;
4717 devices_info[ndevs].max_avail = max_avail;
4718 devices_info[ndevs].total_avail = total_avail;
4719 devices_info[ndevs].dev = device;
4720 ++ndevs;
4721 }
4722
4723 /*
4724 * now sort the devices by hole size / available space
4725 */
4726 sort(devices_info, ndevs, sizeof(struct btrfs_device_info),
4727 btrfs_cmp_device_info, NULL);
4728
4729 /* round down to number of usable stripes */
4730 ndevs -= ndevs % devs_increment;
4731
4732 if (ndevs < devs_increment * sub_stripes || ndevs < devs_min) {
4733 ret = -ENOSPC;
4734 goto error;
4735 }
4736
4737 if (devs_max && ndevs > devs_max)
4738 ndevs = devs_max;
4739 /*
4740 * the primary goal is to maximize the number of stripes, so use as many
4741 * devices as possible, even if the stripes are not maximum sized.
4742 */
4743 stripe_size = devices_info[ndevs-1].max_avail;
4744 num_stripes = ndevs * dev_stripes;
4745
David Woodhouse53b381b2013-01-29 18:40:14 -05004746 /*
4747 * this will have to be fixed for RAID1 and RAID10 over
4748 * more drives
4749 */
4750 data_stripes = num_stripes / ncopies;
4751
David Woodhouse53b381b2013-01-29 18:40:14 -05004752 if (type & BTRFS_BLOCK_GROUP_RAID5) {
4753 raid_stripe_len = find_raid56_stripe_len(ndevs - 1,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004754 info->stripesize);
David Woodhouse53b381b2013-01-29 18:40:14 -05004755 data_stripes = num_stripes - 1;
4756 }
4757 if (type & BTRFS_BLOCK_GROUP_RAID6) {
4758 raid_stripe_len = find_raid56_stripe_len(ndevs - 2,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004759 info->stripesize);
David Woodhouse53b381b2013-01-29 18:40:14 -05004760 data_stripes = num_stripes - 2;
4761 }
Chris Mason86db2572013-02-20 16:23:40 -05004762
4763 /*
4764 * Use the number of data stripes to figure out how big this chunk
4765 * is really going to be in terms of logical address space,
4766 * and compare that answer with the max chunk size
4767 */
4768 if (stripe_size * data_stripes > max_chunk_size) {
4769 u64 mask = (1ULL << 24) - 1;
David Sterbab8b93ad2015-01-16 17:26:13 +01004770
4771 stripe_size = div_u64(max_chunk_size, data_stripes);
Chris Mason86db2572013-02-20 16:23:40 -05004772
4773 /* bump the answer up to a 16MB boundary */
4774 stripe_size = (stripe_size + mask) & ~mask;
4775
4776 /* but don't go higher than the limits we found
4777 * while searching for free extents
4778 */
4779 if (stripe_size > devices_info[ndevs-1].max_avail)
4780 stripe_size = devices_info[ndevs-1].max_avail;
4781 }
4782
David Sterbab8b93ad2015-01-16 17:26:13 +01004783 stripe_size = div_u64(stripe_size, dev_stripes);
Ilya Dryomov37db63a2012-04-13 17:05:08 +03004784
4785 /* align to BTRFS_STRIPE_LEN */
David Sterbab8b93ad2015-01-16 17:26:13 +01004786 stripe_size = div_u64(stripe_size, raid_stripe_len);
David Woodhouse53b381b2013-01-29 18:40:14 -05004787 stripe_size *= raid_stripe_len;
Arne Jansen73c5de02011-04-12 12:07:57 +02004788
Miao Xieb2117a32011-01-05 10:07:28 +00004789 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
4790 if (!map) {
4791 ret = -ENOMEM;
4792 goto error;
4793 }
4794 map->num_stripes = num_stripes;
Chris Mason9b3f68b2008-04-18 10:29:51 -04004795
Arne Jansen73c5de02011-04-12 12:07:57 +02004796 for (i = 0; i < ndevs; ++i) {
4797 for (j = 0; j < dev_stripes; ++j) {
4798 int s = i * dev_stripes + j;
4799 map->stripes[s].dev = devices_info[i].dev;
4800 map->stripes[s].physical = devices_info[i].dev_offset +
4801 j * stripe_size;
Chris Masona40a90a2008-04-18 11:55:51 -04004802 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004803 }
Jeff Mahoneyda170662016-06-15 09:22:56 -04004804 map->sector_size = info->sectorsize;
David Woodhouse53b381b2013-01-29 18:40:14 -05004805 map->stripe_len = raid_stripe_len;
4806 map->io_align = raid_stripe_len;
4807 map->io_width = raid_stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04004808 map->type = type;
Chris Mason321aecc2008-04-16 10:49:51 -04004809 map->sub_stripes = sub_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004810
David Woodhouse53b381b2013-01-29 18:40:14 -05004811 num_bytes = stripe_size * data_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004812
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004813 trace_btrfs_chunk_alloc(info, map, start, num_bytes);
liubo1abe9b82011-03-24 11:18:59 +00004814
David Sterba172ddd62011-04-21 00:48:27 +02004815 em = alloc_extent_map();
Yan Zheng2b820322008-11-17 21:11:30 -05004816 if (!em) {
Wang Shilong298a8f92014-06-19 10:42:52 +08004817 kfree(map);
Miao Xieb2117a32011-01-05 10:07:28 +00004818 ret = -ENOMEM;
4819 goto error;
Yan Zheng2b820322008-11-17 21:11:30 -05004820 }
Wang Shilong298a8f92014-06-19 10:42:52 +08004821 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Jeff Mahoney95617d62015-06-03 10:55:48 -04004822 em->map_lookup = map;
Yan Zheng2b820322008-11-17 21:11:30 -05004823 em->start = start;
Arne Jansen73c5de02011-04-12 12:07:57 +02004824 em->len = num_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04004825 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04004826 em->block_len = em->len;
Josef Bacik6df9a952013-06-27 13:22:46 -04004827 em->orig_block_len = stripe_size;
Chris Mason0b86a832008-03-24 15:01:56 -04004828
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004829 em_tree = &info->mapping_tree.map_tree;
Chris Mason890871b2009-09-02 16:24:52 -04004830 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004831 ret = add_extent_mapping(em_tree, em, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004832 if (!ret) {
4833 list_add_tail(&em->list, &trans->transaction->pending_chunks);
4834 atomic_inc(&em->refs);
4835 }
Chris Mason890871b2009-09-02 16:24:52 -04004836 write_unlock(&em_tree->lock);
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004837 if (ret) {
4838 free_extent_map(em);
Mark Fasheh1dd46022011-09-08 17:29:00 -07004839 goto error;
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004840 }
Yan Zheng2b820322008-11-17 21:11:30 -05004841
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004842 ret = btrfs_make_block_group(trans, info, 0, type,
Josef Bacik04487482013-01-29 15:03:37 -05004843 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4844 start, num_bytes);
Josef Bacik6df9a952013-06-27 13:22:46 -04004845 if (ret)
4846 goto error_del_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05004847
Miao Xie7cc8e582014-09-03 21:35:38 +08004848 for (i = 0; i < map->num_stripes; i++) {
4849 num_bytes = map->stripes[i].dev->bytes_used + stripe_size;
4850 btrfs_device_set_bytes_used(map->stripes[i].dev, num_bytes);
4851 }
Miao Xie43530c42014-09-03 21:35:36 +08004852
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004853 spin_lock(&info->free_chunk_lock);
4854 info->free_chunk_space -= (stripe_size * map->num_stripes);
4855 spin_unlock(&info->free_chunk_lock);
Miao Xie1c116182014-09-03 21:35:37 +08004856
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004857 free_extent_map(em);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004858 check_raid56_incompat_flag(info, type);
David Woodhouse53b381b2013-01-29 18:40:14 -05004859
Miao Xieb2117a32011-01-05 10:07:28 +00004860 kfree(devices_info);
Yan Zheng2b820322008-11-17 21:11:30 -05004861 return 0;
Miao Xieb2117a32011-01-05 10:07:28 +00004862
Josef Bacik6df9a952013-06-27 13:22:46 -04004863error_del_extent:
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004864 write_lock(&em_tree->lock);
4865 remove_extent_mapping(em_tree, em);
4866 write_unlock(&em_tree->lock);
4867
4868 /* One for our allocation */
4869 free_extent_map(em);
4870 /* One for the tree reference */
4871 free_extent_map(em);
Filipe Manana495e64f2014-12-02 18:07:30 +00004872 /* One for the pending_chunks list reference */
4873 free_extent_map(em);
Miao Xieb2117a32011-01-05 10:07:28 +00004874error:
Miao Xieb2117a32011-01-05 10:07:28 +00004875 kfree(devices_info);
4876 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004877}
4878
Josef Bacik6df9a952013-06-27 13:22:46 -04004879int btrfs_finish_chunk_alloc(struct btrfs_trans_handle *trans,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004880 struct btrfs_fs_info *fs_info,
Josef Bacik6df9a952013-06-27 13:22:46 -04004881 u64 chunk_offset, u64 chunk_size)
Yan Zheng2b820322008-11-17 21:11:30 -05004882{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004883 struct btrfs_root *extent_root = fs_info->extent_root;
4884 struct btrfs_root *chunk_root = fs_info->chunk_root;
Yan Zheng2b820322008-11-17 21:11:30 -05004885 struct btrfs_key key;
Yan Zheng2b820322008-11-17 21:11:30 -05004886 struct btrfs_device *device;
4887 struct btrfs_chunk *chunk;
4888 struct btrfs_stripe *stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004889 struct extent_map_tree *em_tree;
4890 struct extent_map *em;
4891 struct map_lookup *map;
4892 size_t item_size;
4893 u64 dev_offset;
4894 u64 stripe_size;
4895 int i = 0;
Chris Mason140e6392015-12-23 13:30:51 -08004896 int ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004897
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004898 em_tree = &fs_info->mapping_tree.map_tree;
Josef Bacik6df9a952013-06-27 13:22:46 -04004899 read_lock(&em_tree->lock);
4900 em = lookup_extent_mapping(em_tree, chunk_offset, chunk_size);
4901 read_unlock(&em_tree->lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004902
Josef Bacik6df9a952013-06-27 13:22:46 -04004903 if (!em) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004904 btrfs_crit(fs_info, "unable to find logical %Lu len %Lu",
Jeff Mahoney5d163e02016-09-20 10:05:00 -04004905 chunk_offset, chunk_size);
Josef Bacik6df9a952013-06-27 13:22:46 -04004906 return -EINVAL;
4907 }
4908
4909 if (em->start != chunk_offset || em->len != chunk_size) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004910 btrfs_crit(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04004911 "found a bad mapping, wanted %Lu-%Lu, found %Lu-%Lu",
4912 chunk_offset, chunk_size, em->start, em->len);
Josef Bacik6df9a952013-06-27 13:22:46 -04004913 free_extent_map(em);
4914 return -EINVAL;
4915 }
4916
Jeff Mahoney95617d62015-06-03 10:55:48 -04004917 map = em->map_lookup;
Josef Bacik6df9a952013-06-27 13:22:46 -04004918 item_size = btrfs_chunk_item_size(map->num_stripes);
4919 stripe_size = em->orig_block_len;
4920
4921 chunk = kzalloc(item_size, GFP_NOFS);
4922 if (!chunk) {
4923 ret = -ENOMEM;
4924 goto out;
4925 }
4926
Filipe Manana50460e32015-11-20 10:42:47 +00004927 /*
4928 * Take the device list mutex to prevent races with the final phase of
4929 * a device replace operation that replaces the device object associated
4930 * with the map's stripes, because the device object's id can change
4931 * at any time during that final phase of the device replace operation
4932 * (dev-replace.c:btrfs_dev_replace_finishing()).
4933 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004934 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Josef Bacik6df9a952013-06-27 13:22:46 -04004935 for (i = 0; i < map->num_stripes; i++) {
4936 device = map->stripes[i].dev;
4937 dev_offset = map->stripes[i].physical;
4938
Yan Zheng2b820322008-11-17 21:11:30 -05004939 ret = btrfs_update_device(trans, device);
Mark Fasheh3acd3952011-09-08 17:40:01 -07004940 if (ret)
Filipe Manana50460e32015-11-20 10:42:47 +00004941 break;
Josef Bacik6df9a952013-06-27 13:22:46 -04004942 ret = btrfs_alloc_dev_extent(trans, device,
4943 chunk_root->root_key.objectid,
4944 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4945 chunk_offset, dev_offset,
4946 stripe_size);
4947 if (ret)
Filipe Manana50460e32015-11-20 10:42:47 +00004948 break;
4949 }
4950 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004951 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Filipe Manana50460e32015-11-20 10:42:47 +00004952 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05004953 }
4954
Yan Zheng2b820322008-11-17 21:11:30 -05004955 stripe = &chunk->stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004956 for (i = 0; i < map->num_stripes; i++) {
4957 device = map->stripes[i].dev;
4958 dev_offset = map->stripes[i].physical;
Yan Zheng2b820322008-11-17 21:11:30 -05004959
4960 btrfs_set_stack_stripe_devid(stripe, device->devid);
4961 btrfs_set_stack_stripe_offset(stripe, dev_offset);
4962 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
4963 stripe++;
Yan Zheng2b820322008-11-17 21:11:30 -05004964 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004965 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05004966
4967 btrfs_set_stack_chunk_length(chunk, chunk_size);
4968 btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
4969 btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len);
4970 btrfs_set_stack_chunk_type(chunk, map->type);
4971 btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes);
4972 btrfs_set_stack_chunk_io_align(chunk, map->stripe_len);
4973 btrfs_set_stack_chunk_io_width(chunk, map->stripe_len);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004974 btrfs_set_stack_chunk_sector_size(chunk, fs_info->sectorsize);
Yan Zheng2b820322008-11-17 21:11:30 -05004975 btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes);
4976
4977 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
4978 key.type = BTRFS_CHUNK_ITEM_KEY;
4979 key.offset = chunk_offset;
4980
4981 ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004982 if (ret == 0 && map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
4983 /*
4984 * TODO: Cleanup of inserted chunk root in case of
4985 * failure.
4986 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004987 ret = btrfs_add_system_chunk(fs_info, &key, chunk, item_size);
Yan Zheng2b820322008-11-17 21:11:30 -05004988 }
liubo1abe9b82011-03-24 11:18:59 +00004989
Josef Bacik6df9a952013-06-27 13:22:46 -04004990out:
Yan Zheng2b820322008-11-17 21:11:30 -05004991 kfree(chunk);
Josef Bacik6df9a952013-06-27 13:22:46 -04004992 free_extent_map(em);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004993 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004994}
4995
4996/*
4997 * Chunk allocation falls into two parts. The first part does works
4998 * that make the new allocated chunk useable, but not do any operation
4999 * that modifies the chunk tree. The second part does the works that
5000 * require modifying the chunk tree. This division is important for the
5001 * bootstrap process of adding storage to a seed btrfs.
5002 */
5003int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005004 struct btrfs_fs_info *fs_info, u64 type)
Yan Zheng2b820322008-11-17 21:11:30 -05005005{
5006 u64 chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05005007
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005008 ASSERT(mutex_is_locked(&fs_info->chunk_mutex));
5009 chunk_offset = find_next_chunk(fs_info);
David Sterba72b468c2017-02-10 19:46:27 +01005010 return __btrfs_alloc_chunk(trans, chunk_offset, type);
Yan Zheng2b820322008-11-17 21:11:30 -05005011}
5012
Chris Masond3977122009-01-05 21:25:51 -05005013static noinline int init_first_rw_device(struct btrfs_trans_handle *trans,
David Sterbae4a4dce2017-02-10 19:49:01 +01005014 struct btrfs_fs_info *fs_info)
Yan Zheng2b820322008-11-17 21:11:30 -05005015{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005016 struct btrfs_root *extent_root = fs_info->extent_root;
Yan Zheng2b820322008-11-17 21:11:30 -05005017 u64 chunk_offset;
5018 u64 sys_chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05005019 u64 alloc_profile;
Yan Zheng2b820322008-11-17 21:11:30 -05005020 int ret;
5021
Josef Bacik6df9a952013-06-27 13:22:46 -04005022 chunk_offset = find_next_chunk(fs_info);
Miao Xiede98ced2013-01-29 10:13:12 +00005023 alloc_profile = btrfs_get_alloc_profile(extent_root, 0);
David Sterba72b468c2017-02-10 19:46:27 +01005024 ret = __btrfs_alloc_chunk(trans, chunk_offset, alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005025 if (ret)
5026 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05005027
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005028 sys_chunk_offset = find_next_chunk(fs_info);
Miao Xiede98ced2013-01-29 10:13:12 +00005029 alloc_profile = btrfs_get_alloc_profile(fs_info->chunk_root, 0);
David Sterba72b468c2017-02-10 19:46:27 +01005030 ret = __btrfs_alloc_chunk(trans, sys_chunk_offset, alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005031 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05005032}
5033
Miao Xied20983b2014-07-03 18:22:13 +08005034static inline int btrfs_chunk_max_errors(struct map_lookup *map)
5035{
5036 int max_errors;
5037
5038 if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
5039 BTRFS_BLOCK_GROUP_RAID10 |
5040 BTRFS_BLOCK_GROUP_RAID5 |
5041 BTRFS_BLOCK_GROUP_DUP)) {
5042 max_errors = 1;
5043 } else if (map->type & BTRFS_BLOCK_GROUP_RAID6) {
5044 max_errors = 2;
5045 } else {
5046 max_errors = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05005047 }
5048
Miao Xied20983b2014-07-03 18:22:13 +08005049 return max_errors;
Yan Zheng2b820322008-11-17 21:11:30 -05005050}
5051
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005052int btrfs_chunk_readonly(struct btrfs_fs_info *fs_info, u64 chunk_offset)
Yan Zheng2b820322008-11-17 21:11:30 -05005053{
5054 struct extent_map *em;
5055 struct map_lookup *map;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005056 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Yan Zheng2b820322008-11-17 21:11:30 -05005057 int readonly = 0;
Miao Xied20983b2014-07-03 18:22:13 +08005058 int miss_ndevs = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05005059 int i;
5060
Chris Mason890871b2009-09-02 16:24:52 -04005061 read_lock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05005062 em = lookup_extent_mapping(&map_tree->map_tree, chunk_offset, 1);
Chris Mason890871b2009-09-02 16:24:52 -04005063 read_unlock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05005064 if (!em)
5065 return 1;
5066
Jeff Mahoney95617d62015-06-03 10:55:48 -04005067 map = em->map_lookup;
Yan Zheng2b820322008-11-17 21:11:30 -05005068 for (i = 0; i < map->num_stripes; i++) {
Miao Xied20983b2014-07-03 18:22:13 +08005069 if (map->stripes[i].dev->missing) {
5070 miss_ndevs++;
5071 continue;
5072 }
5073
Yan Zheng2b820322008-11-17 21:11:30 -05005074 if (!map->stripes[i].dev->writeable) {
5075 readonly = 1;
Miao Xied20983b2014-07-03 18:22:13 +08005076 goto end;
Yan Zheng2b820322008-11-17 21:11:30 -05005077 }
5078 }
Miao Xied20983b2014-07-03 18:22:13 +08005079
5080 /*
5081 * If the number of missing devices is larger than max errors,
5082 * we can not write the data into that chunk successfully, so
5083 * set it readonly.
5084 */
5085 if (miss_ndevs > btrfs_chunk_max_errors(map))
5086 readonly = 1;
5087end:
Yan Zheng2b820322008-11-17 21:11:30 -05005088 free_extent_map(em);
5089 return readonly;
Chris Mason0b86a832008-03-24 15:01:56 -04005090}
5091
5092void btrfs_mapping_init(struct btrfs_mapping_tree *tree)
5093{
David Sterbaa8067e02011-04-21 00:34:43 +02005094 extent_map_tree_init(&tree->map_tree);
Chris Mason0b86a832008-03-24 15:01:56 -04005095}
5096
5097void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree)
5098{
5099 struct extent_map *em;
5100
Chris Masond3977122009-01-05 21:25:51 -05005101 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04005102 write_lock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005103 em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1);
5104 if (em)
5105 remove_extent_mapping(&tree->map_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04005106 write_unlock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005107 if (!em)
5108 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005109 /* once for us */
5110 free_extent_map(em);
5111 /* once for the tree */
5112 free_extent_map(em);
5113 }
5114}
5115
Stefan Behrens5d964052012-11-05 14:59:07 +01005116int btrfs_num_copies(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
Chris Masonf1885912008-04-09 16:28:12 -04005117{
Stefan Behrens5d964052012-11-05 14:59:07 +01005118 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Masonf1885912008-04-09 16:28:12 -04005119 struct extent_map *em;
5120 struct map_lookup *map;
5121 struct extent_map_tree *em_tree = &map_tree->map_tree;
5122 int ret;
5123
Chris Mason890871b2009-09-02 16:24:52 -04005124 read_lock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04005125 em = lookup_extent_mapping(em_tree, logical, len);
Chris Mason890871b2009-09-02 16:24:52 -04005126 read_unlock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04005127
Josef Bacikfb7669b2013-04-23 10:53:18 -04005128 /*
5129 * We could return errors for these cases, but that could get ugly and
5130 * we'd probably do the same thing which is just not do anything else
5131 * and exit, so return 1 so the callers don't try to use other copies.
5132 */
5133 if (!em) {
David Sterba351fd352014-05-15 16:48:20 +02005134 btrfs_crit(fs_info, "No mapping for %Lu-%Lu", logical,
Josef Bacikfb7669b2013-04-23 10:53:18 -04005135 logical+len);
5136 return 1;
5137 }
5138
5139 if (em->start > logical || em->start + em->len < logical) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005140 btrfs_crit(fs_info, "Invalid mapping for %Lu-%Lu, got %Lu-%Lu",
5141 logical, logical+len, em->start,
5142 em->start + em->len);
Liu Bo7d3d1742013-09-29 10:33:16 +08005143 free_extent_map(em);
Josef Bacikfb7669b2013-04-23 10:53:18 -04005144 return 1;
5145 }
5146
Jeff Mahoney95617d62015-06-03 10:55:48 -04005147 map = em->map_lookup;
Chris Masonf1885912008-04-09 16:28:12 -04005148 if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1))
5149 ret = map->num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005150 else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
5151 ret = map->sub_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05005152 else if (map->type & BTRFS_BLOCK_GROUP_RAID5)
5153 ret = 2;
5154 else if (map->type & BTRFS_BLOCK_GROUP_RAID6)
5155 ret = 3;
Chris Masonf1885912008-04-09 16:28:12 -04005156 else
5157 ret = 1;
5158 free_extent_map(em);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005159
Liu Bo73beece2015-07-17 16:49:19 +08005160 btrfs_dev_replace_lock(&fs_info->dev_replace, 0);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005161 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace))
5162 ret++;
Liu Bo73beece2015-07-17 16:49:19 +08005163 btrfs_dev_replace_unlock(&fs_info->dev_replace, 0);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005164
Chris Masonf1885912008-04-09 16:28:12 -04005165 return ret;
5166}
5167
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005168unsigned long btrfs_full_stripe_len(struct btrfs_fs_info *fs_info,
David Woodhouse53b381b2013-01-29 18:40:14 -05005169 struct btrfs_mapping_tree *map_tree,
5170 u64 logical)
5171{
5172 struct extent_map *em;
5173 struct map_lookup *map;
5174 struct extent_map_tree *em_tree = &map_tree->map_tree;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005175 unsigned long len = fs_info->sectorsize;
David Woodhouse53b381b2013-01-29 18:40:14 -05005176
5177 read_lock(&em_tree->lock);
5178 em = lookup_extent_mapping(em_tree, logical, len);
5179 read_unlock(&em_tree->lock);
5180 BUG_ON(!em);
5181
5182 BUG_ON(em->start > logical || em->start + em->len < logical);
Jeff Mahoney95617d62015-06-03 10:55:48 -04005183 map = em->map_lookup;
Zhao Leiffe2d202015-01-20 15:11:44 +08005184 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
David Woodhouse53b381b2013-01-29 18:40:14 -05005185 len = map->stripe_len * nr_data_stripes(map);
David Woodhouse53b381b2013-01-29 18:40:14 -05005186 free_extent_map(em);
5187 return len;
5188}
5189
5190int btrfs_is_parity_mirror(struct btrfs_mapping_tree *map_tree,
5191 u64 logical, u64 len, int mirror_num)
5192{
5193 struct extent_map *em;
5194 struct map_lookup *map;
5195 struct extent_map_tree *em_tree = &map_tree->map_tree;
5196 int ret = 0;
5197
5198 read_lock(&em_tree->lock);
5199 em = lookup_extent_mapping(em_tree, logical, len);
5200 read_unlock(&em_tree->lock);
5201 BUG_ON(!em);
5202
5203 BUG_ON(em->start > logical || em->start + em->len < logical);
Jeff Mahoney95617d62015-06-03 10:55:48 -04005204 map = em->map_lookup;
Zhao Leiffe2d202015-01-20 15:11:44 +08005205 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
David Woodhouse53b381b2013-01-29 18:40:14 -05005206 ret = 1;
5207 free_extent_map(em);
5208 return ret;
5209}
5210
Stefan Behrens30d98612012-11-06 14:52:18 +01005211static int find_live_mirror(struct btrfs_fs_info *fs_info,
5212 struct map_lookup *map, int first, int num,
5213 int optimal, int dev_replace_is_ongoing)
Chris Masondfe25022008-05-13 13:46:40 -04005214{
5215 int i;
Stefan Behrens30d98612012-11-06 14:52:18 +01005216 int tolerance;
5217 struct btrfs_device *srcdev;
5218
5219 if (dev_replace_is_ongoing &&
5220 fs_info->dev_replace.cont_reading_from_srcdev_mode ==
5221 BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID)
5222 srcdev = fs_info->dev_replace.srcdev;
5223 else
5224 srcdev = NULL;
5225
5226 /*
5227 * try to avoid the drive that is the source drive for a
5228 * dev-replace procedure, only choose it if no other non-missing
5229 * mirror is available
5230 */
5231 for (tolerance = 0; tolerance < 2; tolerance++) {
5232 if (map->stripes[optimal].dev->bdev &&
5233 (tolerance || map->stripes[optimal].dev != srcdev))
5234 return optimal;
5235 for (i = first; i < first + num; i++) {
5236 if (map->stripes[i].dev->bdev &&
5237 (tolerance || map->stripes[i].dev != srcdev))
5238 return i;
5239 }
Chris Masondfe25022008-05-13 13:46:40 -04005240 }
Stefan Behrens30d98612012-11-06 14:52:18 +01005241
Chris Masondfe25022008-05-13 13:46:40 -04005242 /* we couldn't find one that doesn't fail. Just return something
5243 * and the io error handling code will clean up eventually
5244 */
5245 return optimal;
5246}
5247
David Woodhouse53b381b2013-01-29 18:40:14 -05005248static inline int parity_smaller(u64 a, u64 b)
5249{
5250 return a > b;
5251}
5252
5253/* Bubble-sort the stripe set to put the parity/syndrome stripes last */
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005254static void sort_parity_stripes(struct btrfs_bio *bbio, int num_stripes)
David Woodhouse53b381b2013-01-29 18:40:14 -05005255{
5256 struct btrfs_bio_stripe s;
5257 int i;
5258 u64 l;
5259 int again = 1;
5260
5261 while (again) {
5262 again = 0;
Zhao Leicc7539e2015-01-20 15:11:32 +08005263 for (i = 0; i < num_stripes - 1; i++) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005264 if (parity_smaller(bbio->raid_map[i],
5265 bbio->raid_map[i+1])) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005266 s = bbio->stripes[i];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005267 l = bbio->raid_map[i];
David Woodhouse53b381b2013-01-29 18:40:14 -05005268 bbio->stripes[i] = bbio->stripes[i+1];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005269 bbio->raid_map[i] = bbio->raid_map[i+1];
David Woodhouse53b381b2013-01-29 18:40:14 -05005270 bbio->stripes[i+1] = s;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005271 bbio->raid_map[i+1] = l;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005272
David Woodhouse53b381b2013-01-29 18:40:14 -05005273 again = 1;
5274 }
5275 }
5276 }
5277}
5278
Zhao Lei6e9606d2015-01-20 15:11:34 +08005279static struct btrfs_bio *alloc_btrfs_bio(int total_stripes, int real_stripes)
5280{
5281 struct btrfs_bio *bbio = kzalloc(
Chris Masone57cf212015-02-19 17:51:39 -08005282 /* the size of the btrfs_bio */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005283 sizeof(struct btrfs_bio) +
Chris Masone57cf212015-02-19 17:51:39 -08005284 /* plus the variable array for the stripes */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005285 sizeof(struct btrfs_bio_stripe) * (total_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005286 /* plus the variable array for the tgt dev */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005287 sizeof(int) * (real_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005288 /*
5289 * plus the raid_map, which includes both the tgt dev
5290 * and the stripes
5291 */
5292 sizeof(u64) * (total_stripes),
Michal Hocko277fb5f2015-08-19 14:17:41 +02005293 GFP_NOFS|__GFP_NOFAIL);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005294
5295 atomic_set(&bbio->error, 0);
5296 atomic_set(&bbio->refs, 1);
5297
5298 return bbio;
5299}
5300
5301void btrfs_get_bbio(struct btrfs_bio *bbio)
5302{
5303 WARN_ON(!atomic_read(&bbio->refs));
5304 atomic_inc(&bbio->refs);
5305}
5306
5307void btrfs_put_bbio(struct btrfs_bio *bbio)
5308{
5309 if (!bbio)
5310 return;
5311 if (atomic_dec_and_test(&bbio->refs))
5312 kfree(bbio);
5313}
5314
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005315static int __btrfs_map_block(struct btrfs_fs_info *fs_info,
5316 enum btrfs_map_op op,
Chris Masonf2d8d742008-04-21 10:03:05 -04005317 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005318 struct btrfs_bio **bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005319 int mirror_num, int need_raid_map)
Chris Mason0b86a832008-03-24 15:01:56 -04005320{
5321 struct extent_map *em;
5322 struct map_lookup *map;
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005323 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Mason0b86a832008-03-24 15:01:56 -04005324 struct extent_map_tree *em_tree = &map_tree->map_tree;
5325 u64 offset;
Chris Mason593060d2008-03-25 16:50:33 -04005326 u64 stripe_offset;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005327 u64 stripe_end_offset;
Chris Mason593060d2008-03-25 16:50:33 -04005328 u64 stripe_nr;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005329 u64 stripe_nr_orig;
5330 u64 stripe_nr_end;
David Woodhouse53b381b2013-01-29 18:40:14 -05005331 u64 stripe_len;
David Sterba9d644a62015-02-20 18:42:11 +01005332 u32 stripe_index;
Chris Masoncea9e442008-04-09 16:28:12 -04005333 int i;
Li Zefande11cc12011-12-01 12:55:47 +08005334 int ret = 0;
Chris Masonf2d8d742008-04-21 10:03:05 -04005335 int num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04005336 int max_errors = 0;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005337 int tgtdev_indexes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005338 struct btrfs_bio *bbio = NULL;
Stefan Behrens472262f2012-11-06 14:43:46 +01005339 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
5340 int dev_replace_is_ongoing = 0;
5341 int num_alloc_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005342 int patch_the_first_stripe_for_dev_replace = 0;
5343 u64 physical_to_patch_in_first_stripe = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05005344 u64 raid56_full_stripe_start = (u64)-1;
Chris Mason0b86a832008-03-24 15:01:56 -04005345
Chris Mason890871b2009-09-02 16:24:52 -04005346 read_lock(&em_tree->lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005347 em = lookup_extent_mapping(em_tree, logical, *length);
Chris Mason890871b2009-09-02 16:24:52 -04005348 read_unlock(&em_tree->lock);
Chris Masonf2d8d742008-04-21 10:03:05 -04005349
Chris Mason3b951512008-04-17 11:29:12 -04005350 if (!em) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005351 btrfs_crit(fs_info, "unable to find logical %llu len %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005352 logical, *length);
Josef Bacik9bb91872013-04-19 23:45:33 -04005353 return -EINVAL;
Chris Mason3b951512008-04-17 11:29:12 -04005354 }
Chris Mason0b86a832008-03-24 15:01:56 -04005355
Josef Bacik9bb91872013-04-19 23:45:33 -04005356 if (em->start > logical || em->start + em->len < logical) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005357 btrfs_crit(fs_info,
5358 "found a bad mapping, wanted %Lu, found %Lu-%Lu",
5359 logical, em->start, em->start + em->len);
Liu Bo7d3d1742013-09-29 10:33:16 +08005360 free_extent_map(em);
Josef Bacik9bb91872013-04-19 23:45:33 -04005361 return -EINVAL;
5362 }
5363
Jeff Mahoney95617d62015-06-03 10:55:48 -04005364 map = em->map_lookup;
Chris Mason0b86a832008-03-24 15:01:56 -04005365 offset = logical - em->start;
Chris Mason593060d2008-03-25 16:50:33 -04005366
David Woodhouse53b381b2013-01-29 18:40:14 -05005367 stripe_len = map->stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04005368 stripe_nr = offset;
5369 /*
5370 * stripe_nr counts the total number of stripes we have to stride
5371 * to get to this block
5372 */
David Sterba47c57132015-02-20 18:43:47 +01005373 stripe_nr = div64_u64(stripe_nr, stripe_len);
Chris Mason593060d2008-03-25 16:50:33 -04005374
David Woodhouse53b381b2013-01-29 18:40:14 -05005375 stripe_offset = stripe_nr * stripe_len;
Josef Bacike042d1e2016-04-12 12:54:40 -04005376 if (offset < stripe_offset) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005377 btrfs_crit(fs_info,
5378 "stripe math has gone wrong, stripe_offset=%llu, offset=%llu, start=%llu, logical=%llu, stripe_len=%llu",
Josef Bacike042d1e2016-04-12 12:54:40 -04005379 stripe_offset, offset, em->start, logical,
5380 stripe_len);
5381 free_extent_map(em);
5382 return -EINVAL;
5383 }
Chris Mason593060d2008-03-25 16:50:33 -04005384
5385 /* stripe_offset is the offset of this block in its stripe*/
5386 stripe_offset = offset - stripe_offset;
5387
David Woodhouse53b381b2013-01-29 18:40:14 -05005388 /* if we're here for raid56, we need to know the stripe aligned start */
Zhao Leiffe2d202015-01-20 15:11:44 +08005389 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005390 unsigned long full_stripe_len = stripe_len * nr_data_stripes(map);
5391 raid56_full_stripe_start = offset;
5392
5393 /* allow a write of a full stripe, but make sure we don't
5394 * allow straddling of stripes
5395 */
David Sterba47c57132015-02-20 18:43:47 +01005396 raid56_full_stripe_start = div64_u64(raid56_full_stripe_start,
5397 full_stripe_len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005398 raid56_full_stripe_start *= full_stripe_len;
5399 }
5400
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005401 if (op == BTRFS_MAP_DISCARD) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005402 /* we don't discard raid56 yet */
Zhao Leiffe2d202015-01-20 15:11:44 +08005403 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005404 ret = -EOPNOTSUPP;
5405 goto out;
5406 }
Li Dongyangfce3bb92011-03-24 10:24:26 +00005407 *length = min_t(u64, em->len - offset, *length);
David Woodhouse53b381b2013-01-29 18:40:14 -05005408 } else if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
5409 u64 max_len;
5410 /* For writes to RAID[56], allow a full stripeset across all disks.
5411 For other RAID types and for RAID[56] reads, just allow a single
5412 stripe (on a single disk). */
Zhao Leiffe2d202015-01-20 15:11:44 +08005413 if ((map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005414 (op == BTRFS_MAP_WRITE)) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005415 max_len = stripe_len * nr_data_stripes(map) -
5416 (offset - raid56_full_stripe_start);
5417 } else {
5418 /* we limit the length of each bio to what fits in a stripe */
5419 max_len = stripe_len - stripe_offset;
5420 }
5421 *length = min_t(u64, em->len - offset, max_len);
Chris Masoncea9e442008-04-09 16:28:12 -04005422 } else {
5423 *length = em->len - offset;
5424 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005425
David Woodhouse53b381b2013-01-29 18:40:14 -05005426 /* This is for when we're called from btrfs_merge_bio_hook() and all
5427 it cares about is the length */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005428 if (!bbio_ret)
Chris Masoncea9e442008-04-09 16:28:12 -04005429 goto out;
5430
Liu Bo73beece2015-07-17 16:49:19 +08005431 btrfs_dev_replace_lock(dev_replace, 0);
Stefan Behrens472262f2012-11-06 14:43:46 +01005432 dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace);
5433 if (!dev_replace_is_ongoing)
Liu Bo73beece2015-07-17 16:49:19 +08005434 btrfs_dev_replace_unlock(dev_replace, 0);
5435 else
5436 btrfs_dev_replace_set_lock_blocking(dev_replace);
Stefan Behrens472262f2012-11-06 14:43:46 +01005437
Stefan Behrensad6d6202012-11-06 15:06:47 +01005438 if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 &&
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005439 op != BTRFS_MAP_WRITE && op != BTRFS_MAP_DISCARD &&
5440 op != BTRFS_MAP_GET_READ_MIRRORS && dev_replace->tgtdev != NULL) {
Stefan Behrensad6d6202012-11-06 15:06:47 +01005441 /*
5442 * in dev-replace case, for repair case (that's the only
5443 * case where the mirror is selected explicitly when
5444 * calling btrfs_map_block), blocks left of the left cursor
5445 * can also be read from the target drive.
5446 * For REQ_GET_READ_MIRRORS, the target drive is added as
5447 * the last one to the array of stripes. For READ, it also
5448 * needs to be supported using the same mirror number.
5449 * If the requested block is not left of the left cursor,
5450 * EIO is returned. This can happen because btrfs_num_copies()
5451 * returns one more in the dev-replace case.
5452 */
5453 u64 tmp_length = *length;
5454 struct btrfs_bio *tmp_bbio = NULL;
5455 int tmp_num_stripes;
5456 u64 srcdev_devid = dev_replace->srcdev->devid;
5457 int index_srcdev = 0;
5458 int found = 0;
5459 u64 physical_of_found = 0;
5460
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005461 ret = __btrfs_map_block(fs_info, BTRFS_MAP_GET_READ_MIRRORS,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005462 logical, &tmp_length, &tmp_bbio, 0, 0);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005463 if (ret) {
5464 WARN_ON(tmp_bbio != NULL);
5465 goto out;
5466 }
5467
5468 tmp_num_stripes = tmp_bbio->num_stripes;
5469 if (mirror_num > tmp_num_stripes) {
5470 /*
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005471 * BTRFS_MAP_GET_READ_MIRRORS does not contain this
Stefan Behrensad6d6202012-11-06 15:06:47 +01005472 * mirror, that means that the requested area
5473 * is not left of the left cursor
5474 */
5475 ret = -EIO;
Zhao Lei6e9606d2015-01-20 15:11:34 +08005476 btrfs_put_bbio(tmp_bbio);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005477 goto out;
5478 }
5479
5480 /*
5481 * process the rest of the function using the mirror_num
5482 * of the source drive. Therefore look it up first.
5483 * At the end, patch the device pointer to the one of the
5484 * target drive.
5485 */
5486 for (i = 0; i < tmp_num_stripes; i++) {
Zhao Lei94a97df2015-12-09 21:03:49 +08005487 if (tmp_bbio->stripes[i].dev->devid != srcdev_devid)
5488 continue;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005489
Zhao Lei94a97df2015-12-09 21:03:49 +08005490 /*
5491 * In case of DUP, in order to keep it simple, only add
5492 * the mirror with the lowest physical address
5493 */
5494 if (found &&
5495 physical_of_found <= tmp_bbio->stripes[i].physical)
5496 continue;
5497
5498 index_srcdev = i;
5499 found = 1;
5500 physical_of_found = tmp_bbio->stripes[i].physical;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005501 }
5502
Zhao Lei6e9606d2015-01-20 15:11:34 +08005503 btrfs_put_bbio(tmp_bbio);
Zhao Lei94a97df2015-12-09 21:03:49 +08005504
5505 if (!found) {
5506 WARN_ON(1);
5507 ret = -EIO;
5508 goto out;
5509 }
5510
5511 mirror_num = index_srcdev + 1;
5512 patch_the_first_stripe_for_dev_replace = 1;
5513 physical_to_patch_in_first_stripe = physical_of_found;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005514 } else if (mirror_num > map->num_stripes) {
5515 mirror_num = 0;
5516 }
5517
Chris Masonf2d8d742008-04-21 10:03:05 -04005518 num_stripes = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04005519 stripe_index = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005520 stripe_nr_orig = stripe_nr;
Qu Wenruofda28322013-02-26 08:10:22 +00005521 stripe_nr_end = ALIGN(offset + *length, map->stripe_len);
David Sterbab8b93ad2015-01-16 17:26:13 +01005522 stripe_nr_end = div_u64(stripe_nr_end, map->stripe_len);
Li Dongyangfce3bb92011-03-24 10:24:26 +00005523 stripe_end_offset = stripe_nr_end * map->stripe_len -
5524 (offset + *length);
David Woodhouse53b381b2013-01-29 18:40:14 -05005525
Li Dongyangfce3bb92011-03-24 10:24:26 +00005526 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005527 if (op == BTRFS_MAP_DISCARD)
Li Dongyangfce3bb92011-03-24 10:24:26 +00005528 num_stripes = min_t(u64, map->num_stripes,
5529 stripe_nr_end - stripe_nr_orig);
David Sterba47c57132015-02-20 18:43:47 +01005530 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5531 &stripe_index);
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005532 if (op != BTRFS_MAP_WRITE && op != BTRFS_MAP_DISCARD &&
5533 op != BTRFS_MAP_GET_READ_MIRRORS)
Miao Xie28e1cc72014-09-12 18:44:02 +08005534 mirror_num = 1;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005535 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005536 if (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_DISCARD ||
5537 op == BTRFS_MAP_GET_READ_MIRRORS)
Chris Masonf2d8d742008-04-21 10:03:05 -04005538 num_stripes = map->num_stripes;
Chris Mason2fff7342008-04-29 14:12:09 -04005539 else if (mirror_num)
Chris Masonf1885912008-04-09 16:28:12 -04005540 stripe_index = mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005541 else {
Stefan Behrens30d98612012-11-06 14:52:18 +01005542 stripe_index = find_live_mirror(fs_info, map, 0,
Chris Masondfe25022008-05-13 13:46:40 -04005543 map->num_stripes,
Stefan Behrens30d98612012-11-06 14:52:18 +01005544 current->pid % map->num_stripes,
5545 dev_replace_is_ongoing);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005546 mirror_num = stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005547 }
Chris Mason2fff7342008-04-29 14:12:09 -04005548
Chris Mason611f0e02008-04-03 16:29:03 -04005549 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005550 if (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_DISCARD ||
5551 op == BTRFS_MAP_GET_READ_MIRRORS) {
Chris Masonf2d8d742008-04-21 10:03:05 -04005552 num_stripes = map->num_stripes;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005553 } else if (mirror_num) {
Chris Masonf1885912008-04-09 16:28:12 -04005554 stripe_index = mirror_num - 1;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005555 } else {
5556 mirror_num = 1;
5557 }
Chris Mason2fff7342008-04-29 14:12:09 -04005558
Chris Mason321aecc2008-04-16 10:49:51 -04005559 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
David Sterba9d644a62015-02-20 18:42:11 +01005560 u32 factor = map->num_stripes / map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005561
David Sterba47c57132015-02-20 18:43:47 +01005562 stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index);
Chris Mason321aecc2008-04-16 10:49:51 -04005563 stripe_index *= map->sub_stripes;
5564
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005565 if (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS)
Chris Masonf2d8d742008-04-21 10:03:05 -04005566 num_stripes = map->sub_stripes;
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005567 else if (op == BTRFS_MAP_DISCARD)
Li Dongyangfce3bb92011-03-24 10:24:26 +00005568 num_stripes = min_t(u64, map->sub_stripes *
5569 (stripe_nr_end - stripe_nr_orig),
5570 map->num_stripes);
Chris Mason321aecc2008-04-16 10:49:51 -04005571 else if (mirror_num)
5572 stripe_index += mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005573 else {
Jan Schmidt3e743172012-04-27 12:41:45 -04005574 int old_stripe_index = stripe_index;
Stefan Behrens30d98612012-11-06 14:52:18 +01005575 stripe_index = find_live_mirror(fs_info, map,
5576 stripe_index,
Chris Masondfe25022008-05-13 13:46:40 -04005577 map->sub_stripes, stripe_index +
Stefan Behrens30d98612012-11-06 14:52:18 +01005578 current->pid % map->sub_stripes,
5579 dev_replace_is_ongoing);
Jan Schmidt3e743172012-04-27 12:41:45 -04005580 mirror_num = stripe_index - old_stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005581 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005582
Zhao Leiffe2d202015-01-20 15:11:44 +08005583 } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005584 if (need_raid_map &&
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005585 (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS ||
Miao Xieaf8e2d12014-10-23 14:42:50 +08005586 mirror_num > 1)) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005587 /* push stripe_nr back to the start of the full stripe */
David Sterbab8b93ad2015-01-16 17:26:13 +01005588 stripe_nr = div_u64(raid56_full_stripe_start,
5589 stripe_len * nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05005590
5591 /* RAID[56] write or recovery. Return all stripes */
5592 num_stripes = map->num_stripes;
5593 max_errors = nr_parity_stripes(map);
5594
David Woodhouse53b381b2013-01-29 18:40:14 -05005595 *length = map->stripe_len;
5596 stripe_index = 0;
5597 stripe_offset = 0;
5598 } else {
5599 /*
5600 * Mirror #0 or #1 means the original data block.
5601 * Mirror #2 is RAID5 parity block.
5602 * Mirror #3 is RAID6 Q block.
5603 */
David Sterba47c57132015-02-20 18:43:47 +01005604 stripe_nr = div_u64_rem(stripe_nr,
5605 nr_data_stripes(map), &stripe_index);
David Woodhouse53b381b2013-01-29 18:40:14 -05005606 if (mirror_num > 1)
5607 stripe_index = nr_data_stripes(map) +
5608 mirror_num - 2;
5609
5610 /* We distribute the parity blocks across stripes */
David Sterba47c57132015-02-20 18:43:47 +01005611 div_u64_rem(stripe_nr + stripe_index, map->num_stripes,
5612 &stripe_index);
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005613 if ((op != BTRFS_MAP_WRITE && op != BTRFS_MAP_DISCARD &&
5614 op != BTRFS_MAP_GET_READ_MIRRORS) && mirror_num <= 1)
Miao Xie28e1cc72014-09-12 18:44:02 +08005615 mirror_num = 1;
David Woodhouse53b381b2013-01-29 18:40:14 -05005616 }
Chris Mason8790d502008-04-03 16:29:03 -04005617 } else {
5618 /*
David Sterba47c57132015-02-20 18:43:47 +01005619 * after this, stripe_nr is the number of stripes on this
5620 * device we have to walk to find the data, and stripe_index is
5621 * the number of our device in the stripe array
Chris Mason8790d502008-04-03 16:29:03 -04005622 */
David Sterba47c57132015-02-20 18:43:47 +01005623 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5624 &stripe_index);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005625 mirror_num = stripe_index + 1;
Chris Mason8790d502008-04-03 16:29:03 -04005626 }
Josef Bacike042d1e2016-04-12 12:54:40 -04005627 if (stripe_index >= map->num_stripes) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005628 btrfs_crit(fs_info,
5629 "stripe index math went horribly wrong, got stripe_index=%u, num_stripes=%u",
Josef Bacike042d1e2016-04-12 12:54:40 -04005630 stripe_index, map->num_stripes);
5631 ret = -EINVAL;
5632 goto out;
5633 }
Chris Mason593060d2008-03-25 16:50:33 -04005634
Stefan Behrens472262f2012-11-06 14:43:46 +01005635 num_alloc_stripes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005636 if (dev_replace_is_ongoing) {
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005637 if (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_DISCARD)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005638 num_alloc_stripes <<= 1;
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005639 if (op == BTRFS_MAP_GET_READ_MIRRORS)
Stefan Behrensad6d6202012-11-06 15:06:47 +01005640 num_alloc_stripes++;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005641 tgtdev_indexes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005642 }
Miao Xie2c8cdd62014-11-14 16:06:25 +08005643
Zhao Lei6e9606d2015-01-20 15:11:34 +08005644 bbio = alloc_btrfs_bio(num_alloc_stripes, tgtdev_indexes);
Li Zefande11cc12011-12-01 12:55:47 +08005645 if (!bbio) {
5646 ret = -ENOMEM;
5647 goto out;
5648 }
Miao Xie2c8cdd62014-11-14 16:06:25 +08005649 if (dev_replace_is_ongoing)
5650 bbio->tgtdev_map = (int *)(bbio->stripes + num_alloc_stripes);
Li Zefande11cc12011-12-01 12:55:47 +08005651
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005652 /* build raid_map */
Zhao Leiffe2d202015-01-20 15:11:44 +08005653 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK &&
Mike Christieb3d3fa52016-06-05 14:31:53 -05005654 need_raid_map &&
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005655 ((op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS) ||
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005656 mirror_num > 1)) {
5657 u64 tmp;
David Sterba9d644a62015-02-20 18:42:11 +01005658 unsigned rot;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005659
5660 bbio->raid_map = (u64 *)((void *)bbio->stripes +
5661 sizeof(struct btrfs_bio_stripe) *
5662 num_alloc_stripes +
5663 sizeof(int) * tgtdev_indexes);
5664
5665 /* Work out the disk rotation on this stripe-set */
David Sterba47c57132015-02-20 18:43:47 +01005666 div_u64_rem(stripe_nr, num_stripes, &rot);
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005667
5668 /* Fill in the logical address of each stripe */
5669 tmp = stripe_nr * nr_data_stripes(map);
5670 for (i = 0; i < nr_data_stripes(map); i++)
5671 bbio->raid_map[(i+rot) % num_stripes] =
5672 em->start + (tmp + i) * map->stripe_len;
5673
5674 bbio->raid_map[(i+rot) % map->num_stripes] = RAID5_P_STRIPE;
5675 if (map->type & BTRFS_BLOCK_GROUP_RAID6)
5676 bbio->raid_map[(i+rot+1) % num_stripes] =
5677 RAID6_Q_STRIPE;
5678 }
5679
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005680 if (op == BTRFS_MAP_DISCARD) {
David Sterba9d644a62015-02-20 18:42:11 +01005681 u32 factor = 0;
5682 u32 sub_stripes = 0;
Li Zefanec9ef7a2011-12-01 14:06:42 +08005683 u64 stripes_per_dev = 0;
5684 u32 remaining_stripes = 0;
Liu Bob89203f2012-04-12 16:03:56 -04005685 u32 last_stripe = 0;
Li Zefanec9ef7a2011-12-01 14:06:42 +08005686
5687 if (map->type &
5688 (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID10)) {
5689 if (map->type & BTRFS_BLOCK_GROUP_RAID0)
5690 sub_stripes = 1;
5691 else
5692 sub_stripes = map->sub_stripes;
5693
5694 factor = map->num_stripes / sub_stripes;
5695 stripes_per_dev = div_u64_rem(stripe_nr_end -
5696 stripe_nr_orig,
5697 factor,
5698 &remaining_stripes);
Liu Bob89203f2012-04-12 16:03:56 -04005699 div_u64_rem(stripe_nr_end - 1, factor, &last_stripe);
5700 last_stripe *= sub_stripes;
Li Zefanec9ef7a2011-12-01 14:06:42 +08005701 }
5702
Li Dongyangfce3bb92011-03-24 10:24:26 +00005703 for (i = 0; i < num_stripes; i++) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005704 bbio->stripes[i].physical =
Chris Masonf2d8d742008-04-21 10:03:05 -04005705 map->stripes[stripe_index].physical +
5706 stripe_offset + stripe_nr * map->stripe_len;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005707 bbio->stripes[i].dev = map->stripes[stripe_index].dev;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005708
Li Zefanec9ef7a2011-12-01 14:06:42 +08005709 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
5710 BTRFS_BLOCK_GROUP_RAID10)) {
5711 bbio->stripes[i].length = stripes_per_dev *
5712 map->stripe_len;
Liu Bob89203f2012-04-12 16:03:56 -04005713
Li Zefanec9ef7a2011-12-01 14:06:42 +08005714 if (i / sub_stripes < remaining_stripes)
5715 bbio->stripes[i].length +=
5716 map->stripe_len;
Liu Bob89203f2012-04-12 16:03:56 -04005717
5718 /*
5719 * Special for the first stripe and
5720 * the last stripe:
5721 *
5722 * |-------|...|-------|
5723 * |----------|
5724 * off end_off
5725 */
Li Zefanec9ef7a2011-12-01 14:06:42 +08005726 if (i < sub_stripes)
Jan Schmidta1d3c472011-08-04 17:15:33 +02005727 bbio->stripes[i].length -=
Li Dongyangfce3bb92011-03-24 10:24:26 +00005728 stripe_offset;
Liu Bob89203f2012-04-12 16:03:56 -04005729
5730 if (stripe_index >= last_stripe &&
5731 stripe_index <= (last_stripe +
5732 sub_stripes - 1))
Li Zefanec9ef7a2011-12-01 14:06:42 +08005733 bbio->stripes[i].length -=
5734 stripe_end_offset;
Liu Bob89203f2012-04-12 16:03:56 -04005735
Li Zefanec9ef7a2011-12-01 14:06:42 +08005736 if (i == sub_stripes - 1)
Li Dongyangfce3bb92011-03-24 10:24:26 +00005737 stripe_offset = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005738 } else
Jan Schmidta1d3c472011-08-04 17:15:33 +02005739 bbio->stripes[i].length = *length;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005740
5741 stripe_index++;
5742 if (stripe_index == map->num_stripes) {
5743 /* This could only happen for RAID0/10 */
5744 stripe_index = 0;
5745 stripe_nr++;
5746 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005747 }
Li Dongyangfce3bb92011-03-24 10:24:26 +00005748 } else {
5749 for (i = 0; i < num_stripes; i++) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005750 bbio->stripes[i].physical =
Linus Torvalds212a17a2011-03-28 15:31:05 -07005751 map->stripes[stripe_index].physical +
5752 stripe_offset +
5753 stripe_nr * map->stripe_len;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005754 bbio->stripes[i].dev =
Linus Torvalds212a17a2011-03-28 15:31:05 -07005755 map->stripes[stripe_index].dev;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005756 stripe_index++;
5757 }
Chris Mason593060d2008-03-25 16:50:33 -04005758 }
Li Zefande11cc12011-12-01 12:55:47 +08005759
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005760 if (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS)
Miao Xied20983b2014-07-03 18:22:13 +08005761 max_errors = btrfs_chunk_max_errors(map);
Li Zefande11cc12011-12-01 12:55:47 +08005762
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005763 if (bbio->raid_map)
5764 sort_parity_stripes(bbio, num_stripes);
Zhao Leicc7539e2015-01-20 15:11:32 +08005765
Miao Xie2c8cdd62014-11-14 16:06:25 +08005766 tgtdev_indexes = 0;
Mike Christieb3d3fa52016-06-05 14:31:53 -05005767 if (dev_replace_is_ongoing &&
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005768 (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_DISCARD) &&
Stefan Behrens472262f2012-11-06 14:43:46 +01005769 dev_replace->tgtdev != NULL) {
5770 int index_where_to_add;
5771 u64 srcdev_devid = dev_replace->srcdev->devid;
5772
5773 /*
5774 * duplicate the write operations while the dev replace
5775 * procedure is running. Since the copying of the old disk
5776 * to the new disk takes place at run time while the
5777 * filesystem is mounted writable, the regular write
5778 * operations to the old disk have to be duplicated to go
5779 * to the new disk as well.
5780 * Note that device->missing is handled by the caller, and
5781 * that the write to the old disk is already set up in the
5782 * stripes array.
5783 */
5784 index_where_to_add = num_stripes;
5785 for (i = 0; i < num_stripes; i++) {
5786 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5787 /* write to new disk, too */
5788 struct btrfs_bio_stripe *new =
5789 bbio->stripes + index_where_to_add;
5790 struct btrfs_bio_stripe *old =
5791 bbio->stripes + i;
5792
5793 new->physical = old->physical;
5794 new->length = old->length;
5795 new->dev = dev_replace->tgtdev;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005796 bbio->tgtdev_map[i] = index_where_to_add;
Stefan Behrens472262f2012-11-06 14:43:46 +01005797 index_where_to_add++;
5798 max_errors++;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005799 tgtdev_indexes++;
Stefan Behrens472262f2012-11-06 14:43:46 +01005800 }
5801 }
5802 num_stripes = index_where_to_add;
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005803 } else if (dev_replace_is_ongoing &&
5804 op == BTRFS_MAP_GET_READ_MIRRORS &&
Stefan Behrensad6d6202012-11-06 15:06:47 +01005805 dev_replace->tgtdev != NULL) {
5806 u64 srcdev_devid = dev_replace->srcdev->devid;
5807 int index_srcdev = 0;
5808 int found = 0;
5809 u64 physical_of_found = 0;
5810
5811 /*
5812 * During the dev-replace procedure, the target drive can
5813 * also be used to read data in case it is needed to repair
5814 * a corrupt block elsewhere. This is possible if the
5815 * requested area is left of the left cursor. In this area,
5816 * the target drive is a full copy of the source drive.
5817 */
5818 for (i = 0; i < num_stripes; i++) {
5819 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5820 /*
5821 * In case of DUP, in order to keep it
5822 * simple, only add the mirror with the
5823 * lowest physical address
5824 */
5825 if (found &&
5826 physical_of_found <=
5827 bbio->stripes[i].physical)
5828 continue;
5829 index_srcdev = i;
5830 found = 1;
5831 physical_of_found = bbio->stripes[i].physical;
5832 }
5833 }
5834 if (found) {
Filipe Manana22ab04e2016-05-18 20:29:44 +01005835 struct btrfs_bio_stripe *tgtdev_stripe =
5836 bbio->stripes + num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005837
Filipe Manana22ab04e2016-05-18 20:29:44 +01005838 tgtdev_stripe->physical = physical_of_found;
5839 tgtdev_stripe->length =
5840 bbio->stripes[index_srcdev].length;
5841 tgtdev_stripe->dev = dev_replace->tgtdev;
5842 bbio->tgtdev_map[index_srcdev] = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005843
Filipe Manana22ab04e2016-05-18 20:29:44 +01005844 tgtdev_indexes++;
5845 num_stripes++;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005846 }
Stefan Behrens472262f2012-11-06 14:43:46 +01005847 }
5848
Li Zefande11cc12011-12-01 12:55:47 +08005849 *bbio_ret = bbio;
Zhao Lei10f11902015-01-20 15:11:43 +08005850 bbio->map_type = map->type;
Li Zefande11cc12011-12-01 12:55:47 +08005851 bbio->num_stripes = num_stripes;
5852 bbio->max_errors = max_errors;
5853 bbio->mirror_num = mirror_num;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005854 bbio->num_tgtdevs = tgtdev_indexes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005855
5856 /*
5857 * this is the case that REQ_READ && dev_replace_is_ongoing &&
5858 * mirror_num == num_stripes + 1 && dev_replace target drive is
5859 * available as a mirror
5860 */
5861 if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) {
5862 WARN_ON(num_stripes > 1);
5863 bbio->stripes[0].dev = dev_replace->tgtdev;
5864 bbio->stripes[0].physical = physical_to_patch_in_first_stripe;
5865 bbio->mirror_num = map->num_stripes + 1;
5866 }
Chris Masoncea9e442008-04-09 16:28:12 -04005867out:
Liu Bo73beece2015-07-17 16:49:19 +08005868 if (dev_replace_is_ongoing) {
5869 btrfs_dev_replace_clear_lock_blocking(dev_replace);
5870 btrfs_dev_replace_unlock(dev_replace, 0);
5871 }
Chris Mason0b86a832008-03-24 15:01:56 -04005872 free_extent_map(em);
Li Zefande11cc12011-12-01 12:55:47 +08005873 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04005874}
5875
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005876int btrfs_map_block(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
Chris Masonf2d8d742008-04-21 10:03:05 -04005877 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005878 struct btrfs_bio **bbio_ret, int mirror_num)
Chris Masonf2d8d742008-04-21 10:03:05 -04005879{
Mike Christieb3d3fa52016-06-05 14:31:53 -05005880 return __btrfs_map_block(fs_info, op, logical, length, bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005881 mirror_num, 0);
Chris Masonf2d8d742008-04-21 10:03:05 -04005882}
5883
Miao Xieaf8e2d12014-10-23 14:42:50 +08005884/* For Scrub/replace */
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02005885int btrfs_map_sblock(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
Miao Xieaf8e2d12014-10-23 14:42:50 +08005886 u64 logical, u64 *length,
5887 struct btrfs_bio **bbio_ret, int mirror_num,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005888 int need_raid_map)
Miao Xieaf8e2d12014-10-23 14:42:50 +08005889{
Mike Christieb3d3fa52016-06-05 14:31:53 -05005890 return __btrfs_map_block(fs_info, op, logical, length, bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005891 mirror_num, need_raid_map);
Miao Xieaf8e2d12014-10-23 14:42:50 +08005892}
5893
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04005894int btrfs_rmap_block(struct btrfs_fs_info *fs_info,
Yan Zhenga512bbf2008-12-08 16:46:26 -05005895 u64 chunk_start, u64 physical, u64 devid,
5896 u64 **logical, int *naddrs, int *stripe_len)
5897{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04005898 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005899 struct extent_map_tree *em_tree = &map_tree->map_tree;
5900 struct extent_map *em;
5901 struct map_lookup *map;
5902 u64 *buf;
5903 u64 bytenr;
5904 u64 length;
5905 u64 stripe_nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005906 u64 rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005907 int i, j, nr = 0;
5908
Chris Mason890871b2009-09-02 16:24:52 -04005909 read_lock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005910 em = lookup_extent_mapping(em_tree, chunk_start, 1);
Chris Mason890871b2009-09-02 16:24:52 -04005911 read_unlock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005912
Josef Bacik835d9742013-03-19 12:13:25 -04005913 if (!em) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04005914 btrfs_err(fs_info, "couldn't find em for chunk %Lu",
5915 chunk_start);
Josef Bacik835d9742013-03-19 12:13:25 -04005916 return -EIO;
5917 }
5918
5919 if (em->start != chunk_start) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04005920 btrfs_err(fs_info, "bad chunk start, em=%Lu, wanted=%Lu",
Josef Bacik835d9742013-03-19 12:13:25 -04005921 em->start, chunk_start);
5922 free_extent_map(em);
5923 return -EIO;
5924 }
Jeff Mahoney95617d62015-06-03 10:55:48 -04005925 map = em->map_lookup;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005926
5927 length = em->len;
David Woodhouse53b381b2013-01-29 18:40:14 -05005928 rmap_len = map->stripe_len;
5929
Yan Zhenga512bbf2008-12-08 16:46:26 -05005930 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
David Sterbab8b93ad2015-01-16 17:26:13 +01005931 length = div_u64(length, map->num_stripes / map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005932 else if (map->type & BTRFS_BLOCK_GROUP_RAID0)
David Sterbab8b93ad2015-01-16 17:26:13 +01005933 length = div_u64(length, map->num_stripes);
Zhao Leiffe2d202015-01-20 15:11:44 +08005934 else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Sterbab8b93ad2015-01-16 17:26:13 +01005935 length = div_u64(length, nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05005936 rmap_len = map->stripe_len * nr_data_stripes(map);
5937 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005938
David Sterba31e818f2015-02-20 18:00:26 +01005939 buf = kcalloc(map->num_stripes, sizeof(u64), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005940 BUG_ON(!buf); /* -ENOMEM */
Yan Zhenga512bbf2008-12-08 16:46:26 -05005941
5942 for (i = 0; i < map->num_stripes; i++) {
5943 if (devid && map->stripes[i].dev->devid != devid)
5944 continue;
5945 if (map->stripes[i].physical > physical ||
5946 map->stripes[i].physical + length <= physical)
5947 continue;
5948
5949 stripe_nr = physical - map->stripes[i].physical;
David Sterbab8b93ad2015-01-16 17:26:13 +01005950 stripe_nr = div_u64(stripe_nr, map->stripe_len);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005951
5952 if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
5953 stripe_nr = stripe_nr * map->num_stripes + i;
David Sterbab8b93ad2015-01-16 17:26:13 +01005954 stripe_nr = div_u64(stripe_nr, map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005955 } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
5956 stripe_nr = stripe_nr * map->num_stripes + i;
David Woodhouse53b381b2013-01-29 18:40:14 -05005957 } /* else if RAID[56], multiply by nr_data_stripes().
5958 * Alternatively, just use rmap_len below instead of
5959 * map->stripe_len */
5960
5961 bytenr = chunk_start + stripe_nr * rmap_len;
Chris Mason934d3752008-12-08 16:43:10 -05005962 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005963 for (j = 0; j < nr; j++) {
5964 if (buf[j] == bytenr)
5965 break;
5966 }
Chris Mason934d3752008-12-08 16:43:10 -05005967 if (j == nr) {
5968 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005969 buf[nr++] = bytenr;
Chris Mason934d3752008-12-08 16:43:10 -05005970 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005971 }
5972
Yan Zhenga512bbf2008-12-08 16:46:26 -05005973 *logical = buf;
5974 *naddrs = nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005975 *stripe_len = rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005976
5977 free_extent_map(em);
5978 return 0;
5979}
5980
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005981static inline void btrfs_end_bbio(struct btrfs_bio *bbio, struct bio *bio)
Miao Xie8408c712014-06-19 10:42:55 +08005982{
Mike Snitzer326e1db2015-05-22 09:14:03 -04005983 bio->bi_private = bbio->private;
5984 bio->bi_end_io = bbio->end_io;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005985 bio_endio(bio);
Mike Snitzer326e1db2015-05-22 09:14:03 -04005986
Zhao Lei6e9606d2015-01-20 15:11:34 +08005987 btrfs_put_bbio(bbio);
Miao Xie8408c712014-06-19 10:42:55 +08005988}
5989
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005990static void btrfs_end_bio(struct bio *bio)
Chris Mason8790d502008-04-03 16:29:03 -04005991{
Chris Mason9be33952013-05-17 18:30:14 -04005992 struct btrfs_bio *bbio = bio->bi_private;
Chris Mason7d2b4da2008-08-05 10:13:57 -04005993 int is_orig_bio = 0;
Chris Mason8790d502008-04-03 16:29:03 -04005994
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005995 if (bio->bi_error) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005996 atomic_inc(&bbio->error);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005997 if (bio->bi_error == -EIO || bio->bi_error == -EREMOTEIO) {
Stefan Behrens442a4f62012-05-25 16:06:08 +02005998 unsigned int stripe_index =
Chris Mason9be33952013-05-17 18:30:14 -04005999 btrfs_io_bio(bio)->stripe_index;
Zhao Lei65f53332015-06-08 20:05:50 +08006000 struct btrfs_device *dev;
Stefan Behrens442a4f62012-05-25 16:06:08 +02006001
6002 BUG_ON(stripe_index >= bbio->num_stripes);
6003 dev = bbio->stripes[stripe_index].dev;
Stefan Behrens597a60f2012-06-14 16:42:31 +02006004 if (dev->bdev) {
Mike Christie37226b22016-06-05 14:31:52 -05006005 if (bio_op(bio) == REQ_OP_WRITE)
Stefan Behrens597a60f2012-06-14 16:42:31 +02006006 btrfs_dev_stat_inc(dev,
6007 BTRFS_DEV_STAT_WRITE_ERRS);
6008 else
6009 btrfs_dev_stat_inc(dev,
6010 BTRFS_DEV_STAT_READ_ERRS);
Christoph Hellwig70fd7612016-11-01 07:40:10 -06006011 if (bio->bi_opf & REQ_PREFLUSH)
Stefan Behrens597a60f2012-06-14 16:42:31 +02006012 btrfs_dev_stat_inc(dev,
6013 BTRFS_DEV_STAT_FLUSH_ERRS);
6014 btrfs_dev_stat_print_on_error(dev);
6015 }
Stefan Behrens442a4f62012-05-25 16:06:08 +02006016 }
6017 }
Chris Mason8790d502008-04-03 16:29:03 -04006018
Jan Schmidta1d3c472011-08-04 17:15:33 +02006019 if (bio == bbio->orig_bio)
Chris Mason7d2b4da2008-08-05 10:13:57 -04006020 is_orig_bio = 1;
6021
Miao Xiec404e0d2014-01-30 16:46:55 +08006022 btrfs_bio_counter_dec(bbio->fs_info);
6023
Jan Schmidta1d3c472011-08-04 17:15:33 +02006024 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Chris Mason7d2b4da2008-08-05 10:13:57 -04006025 if (!is_orig_bio) {
6026 bio_put(bio);
Jan Schmidta1d3c472011-08-04 17:15:33 +02006027 bio = bbio->orig_bio;
Chris Mason7d2b4da2008-08-05 10:13:57 -04006028 }
Muthu Kumarc7b22bb2014-01-08 14:19:52 -07006029
Chris Mason9be33952013-05-17 18:30:14 -04006030 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Chris Masona236aed2008-04-29 09:38:00 -04006031 /* only send an error to the higher layers if it is
David Woodhouse53b381b2013-01-29 18:40:14 -05006032 * beyond the tolerance of the btrfs bio
Chris Masona236aed2008-04-29 09:38:00 -04006033 */
Jan Schmidta1d3c472011-08-04 17:15:33 +02006034 if (atomic_read(&bbio->error) > bbio->max_errors) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006035 bio->bi_error = -EIO;
Chris Mason5dbc8fc2011-12-09 11:07:37 -05006036 } else {
Chris Mason1259ab72008-05-12 13:39:03 -04006037 /*
6038 * this bio is actually up to date, we didn't
6039 * go over the max number of errors
6040 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006041 bio->bi_error = 0;
Chris Mason1259ab72008-05-12 13:39:03 -04006042 }
Miao Xiec55f1392014-06-19 10:42:54 +08006043
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006044 btrfs_end_bbio(bbio, bio);
Chris Mason7d2b4da2008-08-05 10:13:57 -04006045 } else if (!is_orig_bio) {
Chris Mason8790d502008-04-03 16:29:03 -04006046 bio_put(bio);
6047 }
Chris Mason8790d502008-04-03 16:29:03 -04006048}
6049
Chris Mason8b712842008-06-11 16:50:36 -04006050/*
6051 * see run_scheduled_bios for a description of why bios are collected for
6052 * async submit.
6053 *
6054 * This will add one bio to the pending list for a device and make sure
6055 * the work struct is scheduled.
6056 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006057static noinline void btrfs_schedule_bio(struct btrfs_device *device,
Mike Christie4e49ea42016-06-05 14:31:41 -05006058 struct bio *bio)
Chris Mason8b712842008-06-11 16:50:36 -04006059{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006060 struct btrfs_fs_info *fs_info = device->fs_info;
Chris Mason8b712842008-06-11 16:50:36 -04006061 int should_queue = 1;
Chris Masonffbd5172009-04-20 15:50:09 -04006062 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04006063
David Woodhouse53b381b2013-01-29 18:40:14 -05006064 if (device->missing || !device->bdev) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006065 bio_io_error(bio);
David Woodhouse53b381b2013-01-29 18:40:14 -05006066 return;
6067 }
6068
Chris Mason8b712842008-06-11 16:50:36 -04006069 /* don't bother with additional async steps for reads, right now */
Mike Christie37226b22016-06-05 14:31:52 -05006070 if (bio_op(bio) == REQ_OP_READ) {
Chris Mason492bb6de2008-07-31 16:29:02 -04006071 bio_get(bio);
Mike Christie4e49ea42016-06-05 14:31:41 -05006072 btrfsic_submit_bio(bio);
Chris Mason492bb6de2008-07-31 16:29:02 -04006073 bio_put(bio);
Jeff Mahoney143bede2012-03-01 14:56:26 +01006074 return;
Chris Mason8b712842008-06-11 16:50:36 -04006075 }
6076
6077 /*
Chris Mason0986fe9e2008-08-15 15:34:15 -04006078 * nr_async_bios allows us to reliably return congestion to the
Chris Mason8b712842008-06-11 16:50:36 -04006079 * higher layers. Otherwise, the async bio makes it appear we have
6080 * made progress against dirty pages when we've really just put it
6081 * on a queue for later
6082 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006083 atomic_inc(&fs_info->nr_async_bios);
Chris Mason492bb6de2008-07-31 16:29:02 -04006084 WARN_ON(bio->bi_next);
Chris Mason8b712842008-06-11 16:50:36 -04006085 bio->bi_next = NULL;
Chris Mason8b712842008-06-11 16:50:36 -04006086
6087 spin_lock(&device->io_lock);
Christoph Hellwig67f055c2016-11-01 07:40:06 -06006088 if (op_is_sync(bio->bi_opf))
Chris Masonffbd5172009-04-20 15:50:09 -04006089 pending_bios = &device->pending_sync_bios;
6090 else
6091 pending_bios = &device->pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04006092
Chris Masonffbd5172009-04-20 15:50:09 -04006093 if (pending_bios->tail)
6094 pending_bios->tail->bi_next = bio;
Chris Mason8b712842008-06-11 16:50:36 -04006095
Chris Masonffbd5172009-04-20 15:50:09 -04006096 pending_bios->tail = bio;
6097 if (!pending_bios->head)
6098 pending_bios->head = bio;
Chris Mason8b712842008-06-11 16:50:36 -04006099 if (device->running_pending)
6100 should_queue = 0;
6101
6102 spin_unlock(&device->io_lock);
6103
6104 if (should_queue)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006105 btrfs_queue_work(fs_info->submit_workers, &device->work);
Chris Mason8b712842008-06-11 16:50:36 -04006106}
6107
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006108static void submit_stripe_bio(struct btrfs_bio *bbio, struct bio *bio,
6109 u64 physical, int dev_nr, int async)
Josef Bacikde1ee922012-10-19 16:50:56 -04006110{
6111 struct btrfs_device *dev = bbio->stripes[dev_nr].dev;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006112 struct btrfs_fs_info *fs_info = bbio->fs_info;
Josef Bacikde1ee922012-10-19 16:50:56 -04006113
6114 bio->bi_private = bbio;
Chris Mason9be33952013-05-17 18:30:14 -04006115 btrfs_io_bio(bio)->stripe_index = dev_nr;
Josef Bacikde1ee922012-10-19 16:50:56 -04006116 bio->bi_end_io = btrfs_end_bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006117 bio->bi_iter.bi_sector = physical >> 9;
Josef Bacikde1ee922012-10-19 16:50:56 -04006118#ifdef DEBUG
6119 {
6120 struct rcu_string *name;
6121
6122 rcu_read_lock();
6123 name = rcu_dereference(dev->name);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006124 btrfs_debug(fs_info,
6125 "btrfs_map_bio: rw %d 0x%x, sector=%llu, dev=%lu (%s id %llu), size=%u",
6126 bio_op(bio), bio->bi_opf,
6127 (u64)bio->bi_iter.bi_sector,
6128 (u_long)dev->bdev->bd_dev, name->str, dev->devid,
6129 bio->bi_iter.bi_size);
Josef Bacikde1ee922012-10-19 16:50:56 -04006130 rcu_read_unlock();
6131 }
6132#endif
6133 bio->bi_bdev = dev->bdev;
Miao Xiec404e0d2014-01-30 16:46:55 +08006134
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006135 btrfs_bio_counter_inc_noblocked(fs_info);
Miao Xiec404e0d2014-01-30 16:46:55 +08006136
Josef Bacikde1ee922012-10-19 16:50:56 -04006137 if (async)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006138 btrfs_schedule_bio(dev, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006139 else
Mike Christie4e49ea42016-06-05 14:31:41 -05006140 btrfsic_submit_bio(bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006141}
6142
Josef Bacikde1ee922012-10-19 16:50:56 -04006143static void bbio_error(struct btrfs_bio *bbio, struct bio *bio, u64 logical)
6144{
6145 atomic_inc(&bbio->error);
6146 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Nicholas D Steeves01327612016-05-19 21:18:45 -04006147 /* Should be the original bio. */
Miao Xie8408c712014-06-19 10:42:55 +08006148 WARN_ON(bio != bbio->orig_bio);
6149
Chris Mason9be33952013-05-17 18:30:14 -04006150 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006151 bio->bi_iter.bi_sector = logical >> 9;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006152 bio->bi_error = -EIO;
6153 btrfs_end_bbio(bbio, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006154 }
6155}
6156
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006157int btrfs_map_bio(struct btrfs_fs_info *fs_info, struct bio *bio,
Chris Mason8b712842008-06-11 16:50:36 -04006158 int mirror_num, int async_submit)
Chris Mason0b86a832008-03-24 15:01:56 -04006159{
Chris Mason0b86a832008-03-24 15:01:56 -04006160 struct btrfs_device *dev;
Chris Mason8790d502008-04-03 16:29:03 -04006161 struct bio *first_bio = bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006162 u64 logical = (u64)bio->bi_iter.bi_sector << 9;
Chris Mason0b86a832008-03-24 15:01:56 -04006163 u64 length = 0;
6164 u64 map_length;
Chris Mason0b86a832008-03-24 15:01:56 -04006165 int ret;
Zhao Lei08da7572015-02-12 15:42:16 +08006166 int dev_nr;
6167 int total_devs;
Jan Schmidta1d3c472011-08-04 17:15:33 +02006168 struct btrfs_bio *bbio = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006169
Kent Overstreet4f024f32013-10-11 15:44:27 -07006170 length = bio->bi_iter.bi_size;
Chris Mason0b86a832008-03-24 15:01:56 -04006171 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04006172
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006173 btrfs_bio_counter_inc_blocked(fs_info);
6174 ret = __btrfs_map_block(fs_info, bio_op(bio), logical,
Mike Christie37226b22016-06-05 14:31:52 -05006175 &map_length, &bbio, mirror_num, 1);
Miao Xiec404e0d2014-01-30 16:46:55 +08006176 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006177 btrfs_bio_counter_dec(fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006178 return ret;
Miao Xiec404e0d2014-01-30 16:46:55 +08006179 }
Chris Masoncea9e442008-04-09 16:28:12 -04006180
Jan Schmidta1d3c472011-08-04 17:15:33 +02006181 total_devs = bbio->num_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05006182 bbio->orig_bio = first_bio;
6183 bbio->private = first_bio->bi_private;
6184 bbio->end_io = first_bio->bi_end_io;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006185 bbio->fs_info = fs_info;
David Woodhouse53b381b2013-01-29 18:40:14 -05006186 atomic_set(&bbio->stripes_pending, bbio->num_stripes);
6187
Zhao Leiad1ba2a2015-12-15 18:18:09 +08006188 if ((bbio->map_type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
Mike Christie37226b22016-06-05 14:31:52 -05006189 ((bio_op(bio) == REQ_OP_WRITE) || (mirror_num > 1))) {
David Woodhouse53b381b2013-01-29 18:40:14 -05006190 /* In this case, map_length has been set to the length of
6191 a single stripe; not the whole write */
Mike Christie37226b22016-06-05 14:31:52 -05006192 if (bio_op(bio) == REQ_OP_WRITE) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006193 ret = raid56_parity_write(fs_info, bio, bbio,
6194 map_length);
David Woodhouse53b381b2013-01-29 18:40:14 -05006195 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006196 ret = raid56_parity_recover(fs_info, bio, bbio,
6197 map_length, mirror_num, 1);
David Woodhouse53b381b2013-01-29 18:40:14 -05006198 }
Miao Xie42452152014-11-25 16:39:28 +08006199
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006200 btrfs_bio_counter_dec(fs_info);
Miao Xiec404e0d2014-01-30 16:46:55 +08006201 return ret;
David Woodhouse53b381b2013-01-29 18:40:14 -05006202 }
6203
Chris Masoncea9e442008-04-09 16:28:12 -04006204 if (map_length < length) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006205 btrfs_crit(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006206 "mapping failed logical %llu bio len %llu len %llu",
6207 logical, length, map_length);
Chris Masoncea9e442008-04-09 16:28:12 -04006208 BUG();
6209 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02006210
Zhao Lei08da7572015-02-12 15:42:16 +08006211 for (dev_nr = 0; dev_nr < total_devs; dev_nr++) {
Josef Bacikde1ee922012-10-19 16:50:56 -04006212 dev = bbio->stripes[dev_nr].dev;
Mike Christie37226b22016-06-05 14:31:52 -05006213 if (!dev || !dev->bdev ||
6214 (bio_op(bio) == REQ_OP_WRITE && !dev->writeable)) {
Josef Bacikde1ee922012-10-19 16:50:56 -04006215 bbio_error(bbio, first_bio, logical);
Josef Bacikde1ee922012-10-19 16:50:56 -04006216 continue;
6217 }
6218
Jan Schmidta1d3c472011-08-04 17:15:33 +02006219 if (dev_nr < total_devs - 1) {
Chris Mason9be33952013-05-17 18:30:14 -04006220 bio = btrfs_bio_clone(first_bio, GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006221 BUG_ON(!bio); /* -ENOMEM */
Mike Snitzer326e1db2015-05-22 09:14:03 -04006222 } else
Jan Schmidta1d3c472011-08-04 17:15:33 +02006223 bio = first_bio;
Josef Bacik606686e2012-06-04 14:03:51 -04006224
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006225 submit_stripe_bio(bbio, bio, bbio->stripes[dev_nr].physical,
6226 dev_nr, async_submit);
Chris Mason239b14b2008-03-24 15:02:07 -04006227 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006228 btrfs_bio_counter_dec(fs_info);
Chris Mason0b86a832008-03-24 15:01:56 -04006229 return 0;
6230}
6231
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006232struct btrfs_device *btrfs_find_device(struct btrfs_fs_info *fs_info, u64 devid,
Yan Zheng2b820322008-11-17 21:11:30 -05006233 u8 *uuid, u8 *fsid)
Chris Mason0b86a832008-03-24 15:01:56 -04006234{
Yan Zheng2b820322008-11-17 21:11:30 -05006235 struct btrfs_device *device;
6236 struct btrfs_fs_devices *cur_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006237
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006238 cur_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006239 while (cur_devices) {
6240 if (!fsid ||
6241 !memcmp(cur_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
6242 device = __find_device(&cur_devices->devices,
6243 devid, uuid);
6244 if (device)
6245 return device;
6246 }
6247 cur_devices = cur_devices->seed;
6248 }
6249 return NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006250}
6251
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006252static struct btrfs_device *add_missing_dev(struct btrfs_fs_devices *fs_devices,
Chris Masondfe25022008-05-13 13:46:40 -04006253 u64 devid, u8 *dev_uuid)
6254{
6255 struct btrfs_device *device;
Chris Masondfe25022008-05-13 13:46:40 -04006256
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006257 device = btrfs_alloc_device(NULL, &devid, dev_uuid);
6258 if (IS_ERR(device))
yanhai zhu7cbd8a82008-11-12 14:38:54 -05006259 return NULL;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006260
6261 list_add(&device->dev_list, &fs_devices->devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006262 device->fs_devices = fs_devices;
Chris Masondfe25022008-05-13 13:46:40 -04006263 fs_devices->num_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006264
6265 device->missing = 1;
Chris Masoncd02dca2010-12-13 14:56:23 -05006266 fs_devices->missing_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006267
Chris Masondfe25022008-05-13 13:46:40 -04006268 return device;
6269}
6270
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006271/**
6272 * btrfs_alloc_device - allocate struct btrfs_device
6273 * @fs_info: used only for generating a new devid, can be NULL if
6274 * devid is provided (i.e. @devid != NULL).
6275 * @devid: a pointer to devid for this device. If NULL a new devid
6276 * is generated.
6277 * @uuid: a pointer to UUID for this device. If NULL a new UUID
6278 * is generated.
6279 *
6280 * Return: a pointer to a new &struct btrfs_device on success; ERR_PTR()
6281 * on error. Returned struct is not linked onto any lists and can be
6282 * destroyed with kfree() right away.
6283 */
6284struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info,
6285 const u64 *devid,
6286 const u8 *uuid)
6287{
6288 struct btrfs_device *dev;
6289 u64 tmp;
6290
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05306291 if (WARN_ON(!devid && !fs_info))
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006292 return ERR_PTR(-EINVAL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006293
6294 dev = __alloc_device();
6295 if (IS_ERR(dev))
6296 return dev;
6297
6298 if (devid)
6299 tmp = *devid;
6300 else {
6301 int ret;
6302
6303 ret = find_next_devid(fs_info, &tmp);
6304 if (ret) {
6305 kfree(dev);
6306 return ERR_PTR(ret);
6307 }
6308 }
6309 dev->devid = tmp;
6310
6311 if (uuid)
6312 memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE);
6313 else
6314 generate_random_uuid(dev->uuid);
6315
Liu Bo9e0af232014-08-15 23:36:53 +08006316 btrfs_init_work(&dev->work, btrfs_submit_helper,
6317 pending_bios_fn, NULL, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006318
6319 return dev;
6320}
6321
Liu Boe06cd3d2016-06-03 12:05:15 -07006322/* Return -EIO if any error, otherwise return 0. */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006323static int btrfs_check_chunk_valid(struct btrfs_fs_info *fs_info,
Liu Boe06cd3d2016-06-03 12:05:15 -07006324 struct extent_buffer *leaf,
6325 struct btrfs_chunk *chunk, u64 logical)
6326{
6327 u64 length;
6328 u64 stripe_len;
6329 u16 num_stripes;
6330 u16 sub_stripes;
6331 u64 type;
6332
6333 length = btrfs_chunk_length(leaf, chunk);
6334 stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6335 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
6336 sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
6337 type = btrfs_chunk_type(leaf, chunk);
6338
6339 if (!num_stripes) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006340 btrfs_err(fs_info, "invalid chunk num_stripes: %u",
Liu Boe06cd3d2016-06-03 12:05:15 -07006341 num_stripes);
6342 return -EIO;
6343 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006344 if (!IS_ALIGNED(logical, fs_info->sectorsize)) {
6345 btrfs_err(fs_info, "invalid chunk logical %llu", logical);
Liu Boe06cd3d2016-06-03 12:05:15 -07006346 return -EIO;
6347 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006348 if (btrfs_chunk_sector_size(leaf, chunk) != fs_info->sectorsize) {
6349 btrfs_err(fs_info, "invalid chunk sectorsize %u",
Liu Boe06cd3d2016-06-03 12:05:15 -07006350 btrfs_chunk_sector_size(leaf, chunk));
6351 return -EIO;
6352 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006353 if (!length || !IS_ALIGNED(length, fs_info->sectorsize)) {
6354 btrfs_err(fs_info, "invalid chunk length %llu", length);
Liu Boe06cd3d2016-06-03 12:05:15 -07006355 return -EIO;
6356 }
6357 if (!is_power_of_2(stripe_len) || stripe_len != BTRFS_STRIPE_LEN) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006358 btrfs_err(fs_info, "invalid chunk stripe length: %llu",
Liu Boe06cd3d2016-06-03 12:05:15 -07006359 stripe_len);
6360 return -EIO;
6361 }
6362 if (~(BTRFS_BLOCK_GROUP_TYPE_MASK | BTRFS_BLOCK_GROUP_PROFILE_MASK) &
6363 type) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006364 btrfs_err(fs_info, "unrecognized chunk type: %llu",
Liu Boe06cd3d2016-06-03 12:05:15 -07006365 ~(BTRFS_BLOCK_GROUP_TYPE_MASK |
6366 BTRFS_BLOCK_GROUP_PROFILE_MASK) &
6367 btrfs_chunk_type(leaf, chunk));
6368 return -EIO;
6369 }
6370 if ((type & BTRFS_BLOCK_GROUP_RAID10 && sub_stripes != 2) ||
6371 (type & BTRFS_BLOCK_GROUP_RAID1 && num_stripes < 1) ||
6372 (type & BTRFS_BLOCK_GROUP_RAID5 && num_stripes < 2) ||
6373 (type & BTRFS_BLOCK_GROUP_RAID6 && num_stripes < 3) ||
6374 (type & BTRFS_BLOCK_GROUP_DUP && num_stripes > 2) ||
6375 ((type & BTRFS_BLOCK_GROUP_PROFILE_MASK) == 0 &&
6376 num_stripes != 1)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006377 btrfs_err(fs_info,
Liu Boe06cd3d2016-06-03 12:05:15 -07006378 "invalid num_stripes:sub_stripes %u:%u for profile %llu",
6379 num_stripes, sub_stripes,
6380 type & BTRFS_BLOCK_GROUP_PROFILE_MASK);
6381 return -EIO;
6382 }
6383
6384 return 0;
6385}
6386
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006387static int read_one_chunk(struct btrfs_fs_info *fs_info, struct btrfs_key *key,
Chris Mason0b86a832008-03-24 15:01:56 -04006388 struct extent_buffer *leaf,
6389 struct btrfs_chunk *chunk)
6390{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006391 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Mason0b86a832008-03-24 15:01:56 -04006392 struct map_lookup *map;
6393 struct extent_map *em;
6394 u64 logical;
6395 u64 length;
Qu Wenruof04b7722015-12-15 09:14:37 +08006396 u64 stripe_len;
Chris Mason0b86a832008-03-24 15:01:56 -04006397 u64 devid;
Chris Masona4437552008-04-18 10:29:38 -04006398 u8 uuid[BTRFS_UUID_SIZE];
Chris Mason593060d2008-03-25 16:50:33 -04006399 int num_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04006400 int ret;
Chris Mason593060d2008-03-25 16:50:33 -04006401 int i;
Chris Mason0b86a832008-03-24 15:01:56 -04006402
Chris Masone17cade2008-04-15 15:41:47 -04006403 logical = key->offset;
6404 length = btrfs_chunk_length(leaf, chunk);
Qu Wenruof04b7722015-12-15 09:14:37 +08006405 stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6406 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
Liu Boe06cd3d2016-06-03 12:05:15 -07006407
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006408 ret = btrfs_check_chunk_valid(fs_info, leaf, chunk, logical);
Liu Boe06cd3d2016-06-03 12:05:15 -07006409 if (ret)
6410 return ret;
Chris Masona061fc82008-05-07 11:43:44 -04006411
Chris Mason890871b2009-09-02 16:24:52 -04006412 read_lock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006413 em = lookup_extent_mapping(&map_tree->map_tree, logical, 1);
Chris Mason890871b2009-09-02 16:24:52 -04006414 read_unlock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006415
6416 /* already mapped? */
6417 if (em && em->start <= logical && em->start + em->len > logical) {
6418 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04006419 return 0;
6420 } else if (em) {
6421 free_extent_map(em);
6422 }
Chris Mason0b86a832008-03-24 15:01:56 -04006423
David Sterba172ddd62011-04-21 00:48:27 +02006424 em = alloc_extent_map();
Chris Mason0b86a832008-03-24 15:01:56 -04006425 if (!em)
6426 return -ENOMEM;
Chris Mason593060d2008-03-25 16:50:33 -04006427 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
Chris Mason0b86a832008-03-24 15:01:56 -04006428 if (!map) {
6429 free_extent_map(em);
6430 return -ENOMEM;
6431 }
6432
Wang Shilong298a8f92014-06-19 10:42:52 +08006433 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Jeff Mahoney95617d62015-06-03 10:55:48 -04006434 em->map_lookup = map;
Chris Mason0b86a832008-03-24 15:01:56 -04006435 em->start = logical;
6436 em->len = length;
Josef Bacik70c8a912012-10-11 16:54:30 -04006437 em->orig_start = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006438 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04006439 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04006440
Chris Mason593060d2008-03-25 16:50:33 -04006441 map->num_stripes = num_stripes;
6442 map->io_width = btrfs_chunk_io_width(leaf, chunk);
6443 map->io_align = btrfs_chunk_io_align(leaf, chunk);
6444 map->sector_size = btrfs_chunk_sector_size(leaf, chunk);
6445 map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6446 map->type = btrfs_chunk_type(leaf, chunk);
Chris Mason321aecc2008-04-16 10:49:51 -04006447 map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04006448 for (i = 0; i < num_stripes; i++) {
6449 map->stripes[i].physical =
6450 btrfs_stripe_offset_nr(leaf, chunk, i);
6451 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
Chris Masona4437552008-04-18 10:29:38 -04006452 read_extent_buffer(leaf, uuid, (unsigned long)
6453 btrfs_stripe_dev_uuid_nr(chunk, i),
6454 BTRFS_UUID_SIZE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006455 map->stripes[i].dev = btrfs_find_device(fs_info, devid,
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006456 uuid, NULL);
Jeff Mahoney3cdde222016-06-09 21:38:35 -04006457 if (!map->stripes[i].dev &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006458 !btrfs_test_opt(fs_info, DEGRADED)) {
Chris Mason593060d2008-03-25 16:50:33 -04006459 free_extent_map(em);
6460 return -EIO;
6461 }
Chris Masondfe25022008-05-13 13:46:40 -04006462 if (!map->stripes[i].dev) {
6463 map->stripes[i].dev =
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006464 add_missing_dev(fs_info->fs_devices, devid,
6465 uuid);
Chris Masondfe25022008-05-13 13:46:40 -04006466 if (!map->stripes[i].dev) {
Chris Masondfe25022008-05-13 13:46:40 -04006467 free_extent_map(em);
6468 return -EIO;
6469 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006470 btrfs_warn(fs_info, "devid %llu uuid %pU is missing",
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006471 devid, uuid);
Chris Masondfe25022008-05-13 13:46:40 -04006472 }
6473 map->stripes[i].dev->in_fs_metadata = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04006474 }
6475
Chris Mason890871b2009-09-02 16:24:52 -04006476 write_lock(&map_tree->map_tree.lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006477 ret = add_extent_mapping(&map_tree->map_tree, em, 0);
Chris Mason890871b2009-09-02 16:24:52 -04006478 write_unlock(&map_tree->map_tree.lock);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006479 BUG_ON(ret); /* Tree corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04006480 free_extent_map(em);
6481
6482 return 0;
6483}
6484
Jeff Mahoney143bede2012-03-01 14:56:26 +01006485static void fill_device_from_item(struct extent_buffer *leaf,
Chris Mason0b86a832008-03-24 15:01:56 -04006486 struct btrfs_dev_item *dev_item,
6487 struct btrfs_device *device)
6488{
6489 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04006490
6491 device->devid = btrfs_device_id(leaf, dev_item);
Chris Balld6397ba2009-04-27 07:29:03 -04006492 device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item);
6493 device->total_bytes = device->disk_total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08006494 device->commit_total_bytes = device->disk_total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04006495 device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
Miao Xiece7213c2014-09-03 21:35:34 +08006496 device->commit_bytes_used = device->bytes_used;
Chris Mason0b86a832008-03-24 15:01:56 -04006497 device->type = btrfs_device_type(leaf, dev_item);
6498 device->io_align = btrfs_device_io_align(leaf, dev_item);
6499 device->io_width = btrfs_device_io_width(leaf, dev_item);
6500 device->sector_size = btrfs_device_sector_size(leaf, dev_item);
Stefan Behrens8dabb742012-11-06 13:15:27 +01006501 WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID);
Stefan Behrens63a212a2012-11-05 18:29:28 +01006502 device->is_tgtdev_for_dev_replace = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006503
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006504 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04006505 read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006506}
6507
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006508static struct btrfs_fs_devices *open_seed_devices(struct btrfs_fs_info *fs_info,
Miao Xie5f375832014-09-03 21:35:46 +08006509 u8 *fsid)
Yan Zheng2b820322008-11-17 21:11:30 -05006510{
6511 struct btrfs_fs_devices *fs_devices;
6512 int ret;
6513
Li Zefanb367e472011-12-07 11:38:24 +08006514 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zheng2b820322008-11-17 21:11:30 -05006515
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006516 fs_devices = fs_info->fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05006517 while (fs_devices) {
Miao Xie5f375832014-09-03 21:35:46 +08006518 if (!memcmp(fs_devices->fsid, fsid, BTRFS_UUID_SIZE))
6519 return fs_devices;
6520
Yan Zheng2b820322008-11-17 21:11:30 -05006521 fs_devices = fs_devices->seed;
6522 }
6523
6524 fs_devices = find_fsid(fsid);
6525 if (!fs_devices) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006526 if (!btrfs_test_opt(fs_info, DEGRADED))
Miao Xie5f375832014-09-03 21:35:46 +08006527 return ERR_PTR(-ENOENT);
6528
6529 fs_devices = alloc_fs_devices(fsid);
6530 if (IS_ERR(fs_devices))
6531 return fs_devices;
6532
6533 fs_devices->seeding = 1;
6534 fs_devices->opened = 1;
6535 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006536 }
Yan Zhenge4404d62008-12-12 10:03:26 -05006537
6538 fs_devices = clone_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006539 if (IS_ERR(fs_devices))
6540 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006541
Christoph Hellwig97288f22008-12-02 06:36:09 -05006542 ret = __btrfs_open_devices(fs_devices, FMODE_READ,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006543 fs_info->bdev_holder);
Julia Lawall48d28232012-04-14 11:24:33 +02006544 if (ret) {
6545 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006546 fs_devices = ERR_PTR(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05006547 goto out;
Julia Lawall48d28232012-04-14 11:24:33 +02006548 }
Yan Zheng2b820322008-11-17 21:11:30 -05006549
6550 if (!fs_devices->seeding) {
6551 __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006552 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006553 fs_devices = ERR_PTR(-EINVAL);
Yan Zheng2b820322008-11-17 21:11:30 -05006554 goto out;
6555 }
6556
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006557 fs_devices->seed = fs_info->fs_devices->seed;
6558 fs_info->fs_devices->seed = fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006559out:
Miao Xie5f375832014-09-03 21:35:46 +08006560 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006561}
6562
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006563static int read_one_dev(struct btrfs_fs_info *fs_info,
Chris Mason0b86a832008-03-24 15:01:56 -04006564 struct extent_buffer *leaf,
6565 struct btrfs_dev_item *dev_item)
6566{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006567 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006568 struct btrfs_device *device;
6569 u64 devid;
6570 int ret;
Yan Zheng2b820322008-11-17 21:11:30 -05006571 u8 fs_uuid[BTRFS_UUID_SIZE];
Chris Masona4437552008-04-18 10:29:38 -04006572 u8 dev_uuid[BTRFS_UUID_SIZE];
6573
Chris Mason0b86a832008-03-24 15:01:56 -04006574 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006575 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Chris Masona4437552008-04-18 10:29:38 -04006576 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02006577 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05006578 BTRFS_UUID_SIZE);
6579
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006580 if (memcmp(fs_uuid, fs_info->fsid, BTRFS_UUID_SIZE)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006581 fs_devices = open_seed_devices(fs_info, fs_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006582 if (IS_ERR(fs_devices))
6583 return PTR_ERR(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05006584 }
6585
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006586 device = btrfs_find_device(fs_info, devid, dev_uuid, fs_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006587 if (!device) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006588 if (!btrfs_test_opt(fs_info, DEGRADED))
Yan Zheng2b820322008-11-17 21:11:30 -05006589 return -EIO;
6590
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006591 device = add_missing_dev(fs_devices, devid, dev_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006592 if (!device)
6593 return -ENOMEM;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006594 btrfs_warn(fs_info, "devid %llu uuid %pU missing",
Anand Jain33b97e42015-05-08 04:34:35 +08006595 devid, dev_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006596 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006597 if (!device->bdev && !btrfs_test_opt(fs_info, DEGRADED))
Miao Xie5f375832014-09-03 21:35:46 +08006598 return -EIO;
6599
6600 if(!device->bdev && !device->missing) {
Chris Masoncd02dca2010-12-13 14:56:23 -05006601 /*
6602 * this happens when a device that was properly setup
6603 * in the device info lists suddenly goes bad.
6604 * device->bdev is NULL, and so we have to set
6605 * device->missing to one here
6606 */
Miao Xie5f375832014-09-03 21:35:46 +08006607 device->fs_devices->missing_devices++;
Chris Masoncd02dca2010-12-13 14:56:23 -05006608 device->missing = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05006609 }
Miao Xie5f375832014-09-03 21:35:46 +08006610
6611 /* Move the device to its own fs_devices */
6612 if (device->fs_devices != fs_devices) {
6613 ASSERT(device->missing);
6614
6615 list_move(&device->dev_list, &fs_devices->devices);
6616 device->fs_devices->num_devices--;
6617 fs_devices->num_devices++;
6618
6619 device->fs_devices->missing_devices--;
6620 fs_devices->missing_devices++;
6621
6622 device->fs_devices = fs_devices;
6623 }
Yan Zheng2b820322008-11-17 21:11:30 -05006624 }
6625
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006626 if (device->fs_devices != fs_info->fs_devices) {
Yan Zheng2b820322008-11-17 21:11:30 -05006627 BUG_ON(device->writeable);
6628 if (device->generation !=
6629 btrfs_device_generation(leaf, dev_item))
6630 return -EINVAL;
Chris Mason6324fbf2008-03-24 15:01:59 -04006631 }
Chris Mason0b86a832008-03-24 15:01:56 -04006632
6633 fill_device_from_item(leaf, dev_item, device);
Chris Masondfe25022008-05-13 13:46:40 -04006634 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01006635 if (device->writeable && !device->is_tgtdev_for_dev_replace) {
Yan Zheng2b820322008-11-17 21:11:30 -05006636 device->fs_devices->total_rw_bytes += device->total_bytes;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006637 spin_lock(&fs_info->free_chunk_lock);
6638 fs_info->free_chunk_space += device->total_bytes -
Josef Bacik2bf64752011-09-26 17:12:22 -04006639 device->bytes_used;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006640 spin_unlock(&fs_info->free_chunk_lock);
Josef Bacik2bf64752011-09-26 17:12:22 -04006641 }
Chris Mason0b86a832008-03-24 15:01:56 -04006642 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006643 return ret;
6644}
6645
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04006646int btrfs_read_sys_array(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04006647{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04006648 struct btrfs_root *root = fs_info->tree_root;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006649 struct btrfs_super_block *super_copy = fs_info->super_copy;
Chris Masona061fc82008-05-07 11:43:44 -04006650 struct extent_buffer *sb;
Chris Mason0b86a832008-03-24 15:01:56 -04006651 struct btrfs_disk_key *disk_key;
Chris Mason0b86a832008-03-24 15:01:56 -04006652 struct btrfs_chunk *chunk;
David Sterba1ffb22c2014-10-31 19:02:42 +01006653 u8 *array_ptr;
6654 unsigned long sb_array_offset;
Chris Mason84eed902008-04-25 09:04:37 -04006655 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006656 u32 num_stripes;
6657 u32 array_size;
6658 u32 len = 0;
David Sterba1ffb22c2014-10-31 19:02:42 +01006659 u32 cur_offset;
Liu Boe06cd3d2016-06-03 12:05:15 -07006660 u64 type;
Chris Mason84eed902008-04-25 09:04:37 -04006661 struct btrfs_key key;
Chris Mason0b86a832008-03-24 15:01:56 -04006662
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006663 ASSERT(BTRFS_SUPER_INFO_SIZE <= fs_info->nodesize);
David Sterbaa83fffb2014-06-15 02:39:54 +02006664 /*
6665 * This will create extent buffer of nodesize, superblock size is
6666 * fixed to BTRFS_SUPER_INFO_SIZE. If nodesize > sb size, this will
6667 * overallocate but we can keep it as-is, only the first page is used.
6668 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006669 sb = btrfs_find_create_tree_block(fs_info, BTRFS_SUPER_INFO_OFFSET);
Liu Boc871b0f2016-06-06 12:01:23 -07006670 if (IS_ERR(sb))
6671 return PTR_ERR(sb);
David Sterba4db8c522015-12-03 13:06:46 +01006672 set_extent_buffer_uptodate(sb);
Chris Mason85d4e462011-07-26 16:11:19 -04006673 btrfs_set_buffer_lockdep_class(root->root_key.objectid, sb, 0);
David Sterba8a334422011-10-07 18:06:13 +02006674 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04006675 * The sb extent buffer is artificial and just used to read the system array.
David Sterba4db8c522015-12-03 13:06:46 +01006676 * set_extent_buffer_uptodate() call does not properly mark all it's
David Sterba8a334422011-10-07 18:06:13 +02006677 * pages up-to-date when the page is larger: extent does not cover the
6678 * whole page and consequently check_page_uptodate does not find all
6679 * the page's extents up-to-date (the hole beyond sb),
6680 * write_extent_buffer then triggers a WARN_ON.
6681 *
6682 * Regular short extents go through mark_extent_buffer_dirty/writeback cycle,
6683 * but sb spans only this function. Add an explicit SetPageUptodate call
6684 * to silence the warning eg. on PowerPC 64.
6685 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006686 if (PAGE_SIZE > BTRFS_SUPER_INFO_SIZE)
Chris Mason727011e2010-08-06 13:21:20 -04006687 SetPageUptodate(sb->pages[0]);
Chris Mason4008c042009-02-12 14:09:45 -05006688
Chris Masona061fc82008-05-07 11:43:44 -04006689 write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006690 array_size = btrfs_super_sys_array_size(super_copy);
6691
David Sterba1ffb22c2014-10-31 19:02:42 +01006692 array_ptr = super_copy->sys_chunk_array;
6693 sb_array_offset = offsetof(struct btrfs_super_block, sys_chunk_array);
6694 cur_offset = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006695
David Sterba1ffb22c2014-10-31 19:02:42 +01006696 while (cur_offset < array_size) {
6697 disk_key = (struct btrfs_disk_key *)array_ptr;
David Sterbae3540ea2014-11-05 15:24:51 +01006698 len = sizeof(*disk_key);
6699 if (cur_offset + len > array_size)
6700 goto out_short_read;
6701
Chris Mason0b86a832008-03-24 15:01:56 -04006702 btrfs_disk_key_to_cpu(&key, disk_key);
6703
David Sterba1ffb22c2014-10-31 19:02:42 +01006704 array_ptr += len;
6705 sb_array_offset += len;
6706 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006707
Chris Mason0d81ba52008-03-24 15:02:07 -04006708 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
David Sterba1ffb22c2014-10-31 19:02:42 +01006709 chunk = (struct btrfs_chunk *)sb_array_offset;
David Sterbae3540ea2014-11-05 15:24:51 +01006710 /*
6711 * At least one btrfs_chunk with one stripe must be
6712 * present, exact stripe count check comes afterwards
6713 */
6714 len = btrfs_chunk_item_size(1);
6715 if (cur_offset + len > array_size)
6716 goto out_short_read;
6717
6718 num_stripes = btrfs_chunk_num_stripes(sb, chunk);
David Sterbaf5cdedd2015-11-30 17:27:06 +01006719 if (!num_stripes) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006720 btrfs_err(fs_info,
6721 "invalid number of stripes %u in sys_array at offset %u",
David Sterbaf5cdedd2015-11-30 17:27:06 +01006722 num_stripes, cur_offset);
6723 ret = -EIO;
6724 break;
6725 }
6726
Liu Boe06cd3d2016-06-03 12:05:15 -07006727 type = btrfs_chunk_type(sb, chunk);
6728 if ((type & BTRFS_BLOCK_GROUP_SYSTEM) == 0) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006729 btrfs_err(fs_info,
Liu Boe06cd3d2016-06-03 12:05:15 -07006730 "invalid chunk type %llu in sys_array at offset %u",
6731 type, cur_offset);
6732 ret = -EIO;
6733 break;
6734 }
6735
David Sterbae3540ea2014-11-05 15:24:51 +01006736 len = btrfs_chunk_item_size(num_stripes);
6737 if (cur_offset + len > array_size)
6738 goto out_short_read;
6739
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006740 ret = read_one_chunk(fs_info, &key, sb, chunk);
Chris Mason84eed902008-04-25 09:04:37 -04006741 if (ret)
6742 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006743 } else {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006744 btrfs_err(fs_info,
6745 "unexpected item type %u in sys_array at offset %u",
6746 (u32)key.type, cur_offset);
Chris Mason84eed902008-04-25 09:04:37 -04006747 ret = -EIO;
6748 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006749 }
David Sterba1ffb22c2014-10-31 19:02:42 +01006750 array_ptr += len;
6751 sb_array_offset += len;
6752 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006753 }
Liu Bod8651772016-06-03 17:41:42 -07006754 clear_extent_buffer_uptodate(sb);
Liu Bo1c8b5b62016-05-13 17:06:59 -07006755 free_extent_buffer_stale(sb);
Chris Mason84eed902008-04-25 09:04:37 -04006756 return ret;
David Sterbae3540ea2014-11-05 15:24:51 +01006757
6758out_short_read:
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04006759 btrfs_err(fs_info, "sys_array too short to read %u bytes at offset %u",
David Sterbae3540ea2014-11-05 15:24:51 +01006760 len, cur_offset);
Liu Bod8651772016-06-03 17:41:42 -07006761 clear_extent_buffer_uptodate(sb);
Liu Bo1c8b5b62016-05-13 17:06:59 -07006762 free_extent_buffer_stale(sb);
David Sterbae3540ea2014-11-05 15:24:51 +01006763 return -EIO;
Chris Mason0b86a832008-03-24 15:01:56 -04006764}
6765
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04006766int btrfs_read_chunk_tree(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04006767{
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04006768 struct btrfs_root *root = fs_info->chunk_root;
Chris Mason0b86a832008-03-24 15:01:56 -04006769 struct btrfs_path *path;
6770 struct extent_buffer *leaf;
6771 struct btrfs_key key;
6772 struct btrfs_key found_key;
6773 int ret;
6774 int slot;
Liu Bo99e3ecf2016-06-03 12:05:14 -07006775 u64 total_dev = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006776
Chris Mason0b86a832008-03-24 15:01:56 -04006777 path = btrfs_alloc_path();
6778 if (!path)
6779 return -ENOMEM;
6780
Li Zefanb367e472011-12-07 11:38:24 +08006781 mutex_lock(&uuid_mutex);
David Sterba34441362016-10-04 19:34:27 +02006782 mutex_lock(&fs_info->chunk_mutex);
Li Zefanb367e472011-12-07 11:38:24 +08006783
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006784 /*
6785 * Read all device items, and then all the chunk items. All
6786 * device items are found before any chunk item (their object id
6787 * is smaller than the lowest possible object id for a chunk
6788 * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID).
Chris Mason0b86a832008-03-24 15:01:56 -04006789 */
6790 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
6791 key.offset = 0;
6792 key.type = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006793 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Zhao Leiab593812010-03-25 12:34:49 +00006794 if (ret < 0)
6795 goto error;
Chris Masond3977122009-01-05 21:25:51 -05006796 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04006797 leaf = path->nodes[0];
6798 slot = path->slots[0];
6799 if (slot >= btrfs_header_nritems(leaf)) {
6800 ret = btrfs_next_leaf(root, path);
6801 if (ret == 0)
6802 continue;
6803 if (ret < 0)
6804 goto error;
6805 break;
6806 }
6807 btrfs_item_key_to_cpu(leaf, &found_key, slot);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006808 if (found_key.type == BTRFS_DEV_ITEM_KEY) {
6809 struct btrfs_dev_item *dev_item;
6810 dev_item = btrfs_item_ptr(leaf, slot,
Chris Mason0b86a832008-03-24 15:01:56 -04006811 struct btrfs_dev_item);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006812 ret = read_one_dev(fs_info, leaf, dev_item);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006813 if (ret)
6814 goto error;
Liu Bo99e3ecf2016-06-03 12:05:14 -07006815 total_dev++;
Chris Mason0b86a832008-03-24 15:01:56 -04006816 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
6817 struct btrfs_chunk *chunk;
6818 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006819 ret = read_one_chunk(fs_info, &found_key, leaf, chunk);
Yan Zheng2b820322008-11-17 21:11:30 -05006820 if (ret)
6821 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04006822 }
6823 path->slots[0]++;
6824 }
Liu Bo99e3ecf2016-06-03 12:05:14 -07006825
6826 /*
6827 * After loading chunk tree, we've got all device information,
6828 * do another round of validation checks.
6829 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006830 if (total_dev != fs_info->fs_devices->total_devices) {
6831 btrfs_err(fs_info,
Liu Bo99e3ecf2016-06-03 12:05:14 -07006832 "super_num_devices %llu mismatch with num_devices %llu found here",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006833 btrfs_super_num_devices(fs_info->super_copy),
Liu Bo99e3ecf2016-06-03 12:05:14 -07006834 total_dev);
6835 ret = -EINVAL;
6836 goto error;
6837 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006838 if (btrfs_super_total_bytes(fs_info->super_copy) <
6839 fs_info->fs_devices->total_rw_bytes) {
6840 btrfs_err(fs_info,
Liu Bo99e3ecf2016-06-03 12:05:14 -07006841 "super_total_bytes %llu mismatch with fs_devices total_rw_bytes %llu",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006842 btrfs_super_total_bytes(fs_info->super_copy),
6843 fs_info->fs_devices->total_rw_bytes);
Liu Bo99e3ecf2016-06-03 12:05:14 -07006844 ret = -EINVAL;
6845 goto error;
6846 }
Chris Mason0b86a832008-03-24 15:01:56 -04006847 ret = 0;
6848error:
David Sterba34441362016-10-04 19:34:27 +02006849 mutex_unlock(&fs_info->chunk_mutex);
Li Zefanb367e472011-12-07 11:38:24 +08006850 mutex_unlock(&uuid_mutex);
6851
Yan Zheng2b820322008-11-17 21:11:30 -05006852 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04006853 return ret;
6854}
Stefan Behrens442a4f62012-05-25 16:06:08 +02006855
Miao Xiecb517ea2013-05-15 07:48:19 +00006856void btrfs_init_devices_late(struct btrfs_fs_info *fs_info)
6857{
6858 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6859 struct btrfs_device *device;
6860
Liu Bo29cc83f2014-05-11 23:14:59 +08006861 while (fs_devices) {
6862 mutex_lock(&fs_devices->device_list_mutex);
6863 list_for_each_entry(device, &fs_devices->devices, dev_list)
Jeff Mahoneyfb456252016-06-22 18:54:56 -04006864 device->fs_info = fs_info;
Liu Bo29cc83f2014-05-11 23:14:59 +08006865 mutex_unlock(&fs_devices->device_list_mutex);
6866
6867 fs_devices = fs_devices->seed;
6868 }
Miao Xiecb517ea2013-05-15 07:48:19 +00006869}
6870
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006871static void __btrfs_reset_dev_stats(struct btrfs_device *dev)
6872{
6873 int i;
6874
6875 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6876 btrfs_dev_stat_reset(dev, i);
6877}
6878
6879int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info)
6880{
6881 struct btrfs_key key;
6882 struct btrfs_key found_key;
6883 struct btrfs_root *dev_root = fs_info->dev_root;
6884 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6885 struct extent_buffer *eb;
6886 int slot;
6887 int ret = 0;
6888 struct btrfs_device *device;
6889 struct btrfs_path *path = NULL;
6890 int i;
6891
6892 path = btrfs_alloc_path();
6893 if (!path) {
6894 ret = -ENOMEM;
6895 goto out;
6896 }
6897
6898 mutex_lock(&fs_devices->device_list_mutex);
6899 list_for_each_entry(device, &fs_devices->devices, dev_list) {
6900 int item_size;
6901 struct btrfs_dev_stats_item *ptr;
6902
David Sterba242e2952016-01-25 17:51:31 +01006903 key.objectid = BTRFS_DEV_STATS_OBJECTID;
6904 key.type = BTRFS_PERSISTENT_ITEM_KEY;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006905 key.offset = device->devid;
6906 ret = btrfs_search_slot(NULL, dev_root, &key, path, 0, 0);
6907 if (ret) {
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006908 __btrfs_reset_dev_stats(device);
6909 device->dev_stats_valid = 1;
6910 btrfs_release_path(path);
6911 continue;
6912 }
6913 slot = path->slots[0];
6914 eb = path->nodes[0];
6915 btrfs_item_key_to_cpu(eb, &found_key, slot);
6916 item_size = btrfs_item_size_nr(eb, slot);
6917
6918 ptr = btrfs_item_ptr(eb, slot,
6919 struct btrfs_dev_stats_item);
6920
6921 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
6922 if (item_size >= (1 + i) * sizeof(__le64))
6923 btrfs_dev_stat_set(device, i,
6924 btrfs_dev_stats_value(eb, ptr, i));
6925 else
6926 btrfs_dev_stat_reset(device, i);
6927 }
6928
6929 device->dev_stats_valid = 1;
6930 btrfs_dev_stat_print_on_load(device);
6931 btrfs_release_path(path);
6932 }
6933 mutex_unlock(&fs_devices->device_list_mutex);
6934
6935out:
6936 btrfs_free_path(path);
6937 return ret < 0 ? ret : 0;
6938}
6939
6940static int update_dev_stat_item(struct btrfs_trans_handle *trans,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04006941 struct btrfs_fs_info *fs_info,
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006942 struct btrfs_device *device)
6943{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04006944 struct btrfs_root *dev_root = fs_info->dev_root;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006945 struct btrfs_path *path;
6946 struct btrfs_key key;
6947 struct extent_buffer *eb;
6948 struct btrfs_dev_stats_item *ptr;
6949 int ret;
6950 int i;
6951
David Sterba242e2952016-01-25 17:51:31 +01006952 key.objectid = BTRFS_DEV_STATS_OBJECTID;
6953 key.type = BTRFS_PERSISTENT_ITEM_KEY;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006954 key.offset = device->devid;
6955
6956 path = btrfs_alloc_path();
6957 BUG_ON(!path);
6958 ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1);
6959 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006960 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02006961 "error %d while searching for dev_stats item for device %s",
Josef Bacik606686e2012-06-04 14:03:51 -04006962 ret, rcu_str_deref(device->name));
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006963 goto out;
6964 }
6965
6966 if (ret == 0 &&
6967 btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) {
6968 /* need to delete old one and insert a new one */
6969 ret = btrfs_del_item(trans, dev_root, path);
6970 if (ret != 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006971 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02006972 "delete too small dev_stats item for device %s failed %d",
Josef Bacik606686e2012-06-04 14:03:51 -04006973 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006974 goto out;
6975 }
6976 ret = 1;
6977 }
6978
6979 if (ret == 1) {
6980 /* need to insert a new item */
6981 btrfs_release_path(path);
6982 ret = btrfs_insert_empty_item(trans, dev_root, path,
6983 &key, sizeof(*ptr));
6984 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006985 btrfs_warn_in_rcu(fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02006986 "insert dev_stats item for device %s failed %d",
6987 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006988 goto out;
6989 }
6990 }
6991
6992 eb = path->nodes[0];
6993 ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item);
6994 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6995 btrfs_set_dev_stats_value(eb, ptr, i,
6996 btrfs_dev_stat_read(device, i));
6997 btrfs_mark_buffer_dirty(eb);
6998
6999out:
7000 btrfs_free_path(path);
7001 return ret;
7002}
7003
7004/*
7005 * called from commit_transaction. Writes all changed device stats to disk.
7006 */
7007int btrfs_run_dev_stats(struct btrfs_trans_handle *trans,
7008 struct btrfs_fs_info *fs_info)
7009{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007010 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7011 struct btrfs_device *device;
Miao Xieaddc3fa2014-07-24 11:37:11 +08007012 int stats_cnt;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007013 int ret = 0;
7014
7015 mutex_lock(&fs_devices->device_list_mutex);
7016 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Miao Xieaddc3fa2014-07-24 11:37:11 +08007017 if (!device->dev_stats_valid || !btrfs_dev_stats_dirty(device))
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007018 continue;
7019
Miao Xieaddc3fa2014-07-24 11:37:11 +08007020 stats_cnt = atomic_read(&device->dev_stats_ccnt);
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04007021 ret = update_dev_stat_item(trans, fs_info, device);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007022 if (!ret)
Miao Xieaddc3fa2014-07-24 11:37:11 +08007023 atomic_sub(stats_cnt, &device->dev_stats_ccnt);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007024 }
7025 mutex_unlock(&fs_devices->device_list_mutex);
7026
7027 return ret;
7028}
7029
Stefan Behrens442a4f62012-05-25 16:06:08 +02007030void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index)
7031{
7032 btrfs_dev_stat_inc(dev, index);
7033 btrfs_dev_stat_print_on_error(dev);
7034}
7035
Eric Sandeen48a3b632013-04-25 20:41:01 +00007036static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev)
Stefan Behrens442a4f62012-05-25 16:06:08 +02007037{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007038 if (!dev->dev_stats_valid)
7039 return;
Jeff Mahoneyfb456252016-06-22 18:54:56 -04007040 btrfs_err_rl_in_rcu(dev->fs_info,
David Sterbab14af3b2015-10-08 10:43:10 +02007041 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04007042 rcu_str_deref(dev->name),
Stefan Behrens442a4f62012-05-25 16:06:08 +02007043 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
7044 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
7045 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
Frank Holtonefe120a2013-12-20 11:37:06 -05007046 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
7047 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
Stefan Behrens442a4f62012-05-25 16:06:08 +02007048}
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007049
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007050static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev)
7051{
Stefan Behrensa98cdb82012-07-17 09:02:11 -06007052 int i;
7053
7054 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7055 if (btrfs_dev_stat_read(dev, i) != 0)
7056 break;
7057 if (i == BTRFS_DEV_STAT_VALUES_MAX)
7058 return; /* all values == 0, suppress message */
7059
Jeff Mahoneyfb456252016-06-22 18:54:56 -04007060 btrfs_info_in_rcu(dev->fs_info,
David Sterbaecaeb142015-10-08 09:01:03 +02007061 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04007062 rcu_str_deref(dev->name),
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007063 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
7064 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
7065 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
7066 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
7067 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
7068}
7069
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007070int btrfs_get_dev_stats(struct btrfs_fs_info *fs_info,
David Sterbab27f7c02012-06-22 06:30:39 -06007071 struct btrfs_ioctl_get_dev_stats *stats)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007072{
7073 struct btrfs_device *dev;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007074 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007075 int i;
7076
7077 mutex_lock(&fs_devices->device_list_mutex);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007078 dev = btrfs_find_device(fs_info, stats->devid, NULL, NULL);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007079 mutex_unlock(&fs_devices->device_list_mutex);
7080
7081 if (!dev) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007082 btrfs_warn(fs_info, "get dev_stats failed, device not found");
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007083 return -ENODEV;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007084 } else if (!dev->dev_stats_valid) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007085 btrfs_warn(fs_info, "get dev_stats failed, not yet valid");
Stefan Behrens733f4fb2012-05-25 16:06:10 +02007086 return -ENODEV;
David Sterbab27f7c02012-06-22 06:30:39 -06007087 } else if (stats->flags & BTRFS_DEV_STATS_RESET) {
Stefan Behrensc11d2c22012-05-25 16:06:09 +02007088 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
7089 if (stats->nr_items > i)
7090 stats->values[i] =
7091 btrfs_dev_stat_read_and_reset(dev, i);
7092 else
7093 btrfs_dev_stat_reset(dev, i);
7094 }
7095 } else {
7096 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
7097 if (stats->nr_items > i)
7098 stats->values[i] = btrfs_dev_stat_read(dev, i);
7099 }
7100 if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX)
7101 stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX;
7102 return 0;
7103}
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007104
Anand Jain12b1c262015-08-14 18:32:59 +08007105void btrfs_scratch_superblocks(struct block_device *bdev, char *device_path)
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007106{
7107 struct buffer_head *bh;
7108 struct btrfs_super_block *disk_super;
Anand Jain12b1c262015-08-14 18:32:59 +08007109 int copy_num;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007110
Anand Jain12b1c262015-08-14 18:32:59 +08007111 if (!bdev)
7112 return;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007113
Anand Jain12b1c262015-08-14 18:32:59 +08007114 for (copy_num = 0; copy_num < BTRFS_SUPER_MIRROR_MAX;
7115 copy_num++) {
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007116
Anand Jain12b1c262015-08-14 18:32:59 +08007117 if (btrfs_read_dev_one_super(bdev, copy_num, &bh))
7118 continue;
7119
7120 disk_super = (struct btrfs_super_block *)bh->b_data;
7121
7122 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
7123 set_buffer_dirty(bh);
7124 sync_dirty_buffer(bh);
7125 brelse(bh);
7126 }
7127
7128 /* Notify udev that device has changed */
7129 btrfs_kobject_uevent(bdev, KOBJ_CHANGE);
7130
7131 /* Update ctime/mtime for device path for libblkid */
7132 update_dev_time(device_path);
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01007133}
Miao Xie935e5cc2014-09-03 21:35:33 +08007134
7135/*
7136 * Update the size of all devices, which is used for writing out the
7137 * super blocks.
7138 */
7139void btrfs_update_commit_device_size(struct btrfs_fs_info *fs_info)
7140{
7141 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7142 struct btrfs_device *curr, *next;
7143
7144 if (list_empty(&fs_devices->resized_devices))
7145 return;
7146
7147 mutex_lock(&fs_devices->device_list_mutex);
David Sterba34441362016-10-04 19:34:27 +02007148 mutex_lock(&fs_info->chunk_mutex);
Miao Xie935e5cc2014-09-03 21:35:33 +08007149 list_for_each_entry_safe(curr, next, &fs_devices->resized_devices,
7150 resized_list) {
7151 list_del_init(&curr->resized_list);
7152 curr->commit_total_bytes = curr->disk_total_bytes;
7153 }
David Sterba34441362016-10-04 19:34:27 +02007154 mutex_unlock(&fs_info->chunk_mutex);
Miao Xie935e5cc2014-09-03 21:35:33 +08007155 mutex_unlock(&fs_devices->device_list_mutex);
7156}
Miao Xiece7213c2014-09-03 21:35:34 +08007157
7158/* Must be invoked during the transaction commit */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007159void btrfs_update_commit_device_bytes_used(struct btrfs_fs_info *fs_info,
Miao Xiece7213c2014-09-03 21:35:34 +08007160 struct btrfs_transaction *transaction)
7161{
7162 struct extent_map *em;
7163 struct map_lookup *map;
7164 struct btrfs_device *dev;
7165 int i;
7166
7167 if (list_empty(&transaction->pending_chunks))
7168 return;
7169
7170 /* In order to kick the device replace finish process */
David Sterba34441362016-10-04 19:34:27 +02007171 mutex_lock(&fs_info->chunk_mutex);
Miao Xiece7213c2014-09-03 21:35:34 +08007172 list_for_each_entry(em, &transaction->pending_chunks, list) {
Jeff Mahoney95617d62015-06-03 10:55:48 -04007173 map = em->map_lookup;
Miao Xiece7213c2014-09-03 21:35:34 +08007174
7175 for (i = 0; i < map->num_stripes; i++) {
7176 dev = map->stripes[i].dev;
7177 dev->commit_bytes_used = dev->bytes_used;
7178 }
7179 }
David Sterba34441362016-10-04 19:34:27 +02007180 mutex_unlock(&fs_info->chunk_mutex);
Miao Xiece7213c2014-09-03 21:35:34 +08007181}
Anand Jain5a13f432015-03-10 06:38:31 +08007182
7183void btrfs_set_fs_info_ptr(struct btrfs_fs_info *fs_info)
7184{
7185 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
7186 while (fs_devices) {
7187 fs_devices->fs_info = fs_info;
7188 fs_devices = fs_devices->seed;
7189 }
7190}
7191
7192void btrfs_reset_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 = NULL;
7197 fs_devices = fs_devices->seed;
7198 }
7199}