blob: 21fbcedb654258ce3c0185399ff7daa27b325c29 [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 Mason788f20e2008-04-28 15:29:42 -040023#include <linux/random.h>
Chris Masonb765ead2009-04-03 10:27:10 -040024#include <linux/iocontext.h>
Ben Hutchings6f88a442010-12-29 14:55:03 +000025#include <linux/capability.h>
Stefan Behrens442a4f62012-05-25 16:06:08 +020026#include <linux/ratelimit.h>
Ilya Dryomov59641012012-01-16 22:04:48 +020027#include <linux/kthread.h>
David Woodhouse53b381b2013-01-29 18:40:14 -050028#include <linux/raid/pq.h>
Stefan Behrens803b2f52013-08-15 17:11:21 +020029#include <linux/semaphore.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
111const u64 const btrfs_raid_group[BTRFS_NR_RAID_TYPES] = {
112 [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
Yan Zheng2b820322008-11-17 21:11:30 -0500121static int init_first_rw_device(struct btrfs_trans_handle *trans,
122 struct btrfs_root *root,
123 struct btrfs_device *device);
124static int btrfs_relocate_sys_chunks(struct btrfs_root *root);
Stefan Behrens733f4fb2012-05-25 16:06:10 +0200125static void __btrfs_reset_dev_stats(struct btrfs_device *dev);
Eric Sandeen48a3b632013-04-25 20:41:01 +0000126static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev);
Stefan Behrens733f4fb2012-05-25 16:06:10 +0200127static void btrfs_dev_stat_print_on_load(struct btrfs_device *device);
Yan Zheng2b820322008-11-17 21:11:30 -0500128
Miao Xie67a2c452014-09-03 21:35:43 +0800129DEFINE_MUTEX(uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400130static LIST_HEAD(fs_uuids);
Anand Jainc73eccf2015-03-10 06:38:30 +0800131struct list_head *btrfs_get_fs_uuids(void)
132{
133 return &fs_uuids;
134}
Chris Mason8a4b83c2008-03-24 15:02:07 -0400135
Ilya Dryomov2208a372013-08-12 14:33:03 +0300136static struct btrfs_fs_devices *__alloc_fs_devices(void)
137{
138 struct btrfs_fs_devices *fs_devs;
139
140 fs_devs = kzalloc(sizeof(*fs_devs), GFP_NOFS);
141 if (!fs_devs)
142 return ERR_PTR(-ENOMEM);
143
144 mutex_init(&fs_devs->device_list_mutex);
145
146 INIT_LIST_HEAD(&fs_devs->devices);
Miao Xie935e5cc2014-09-03 21:35:33 +0800147 INIT_LIST_HEAD(&fs_devs->resized_devices);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300148 INIT_LIST_HEAD(&fs_devs->alloc_list);
149 INIT_LIST_HEAD(&fs_devs->list);
150
151 return fs_devs;
152}
153
154/**
155 * alloc_fs_devices - allocate struct btrfs_fs_devices
156 * @fsid: a pointer to UUID for this FS. If NULL a new UUID is
157 * generated.
158 *
159 * Return: a pointer to a new &struct btrfs_fs_devices on success;
160 * ERR_PTR() on error. Returned struct is not linked onto any lists and
161 * can be destroyed with kfree() right away.
162 */
163static struct btrfs_fs_devices *alloc_fs_devices(const u8 *fsid)
164{
165 struct btrfs_fs_devices *fs_devs;
166
167 fs_devs = __alloc_fs_devices();
168 if (IS_ERR(fs_devs))
169 return fs_devs;
170
171 if (fsid)
172 memcpy(fs_devs->fsid, fsid, BTRFS_FSID_SIZE);
173 else
174 generate_random_uuid(fs_devs->fsid);
175
176 return fs_devs;
177}
178
Yan Zhenge4404d62008-12-12 10:03:26 -0500179static void free_fs_devices(struct btrfs_fs_devices *fs_devices)
180{
181 struct btrfs_device *device;
182 WARN_ON(fs_devices->opened);
183 while (!list_empty(&fs_devices->devices)) {
184 device = list_entry(fs_devices->devices.next,
185 struct btrfs_device, dev_list);
186 list_del(&device->dev_list);
Josef Bacik606686e2012-06-04 14:03:51 -0400187 rcu_string_free(device->name);
Yan Zhenge4404d62008-12-12 10:03:26 -0500188 kfree(device);
189 }
190 kfree(fs_devices);
191}
192
Lukas Czernerb8b8ff52012-12-06 19:25:48 +0000193static void btrfs_kobject_uevent(struct block_device *bdev,
194 enum kobject_action action)
195{
196 int ret;
197
198 ret = kobject_uevent(&disk_to_dev(bdev->bd_disk)->kobj, action);
199 if (ret)
Frank Holtonefe120a2013-12-20 11:37:06 -0500200 pr_warn("BTRFS: Sending event '%d' to kobject: '%s' (%p): failed\n",
Lukas Czernerb8b8ff52012-12-06 19:25:48 +0000201 action,
202 kobject_name(&disk_to_dev(bdev->bd_disk)->kobj),
203 &disk_to_dev(bdev->bd_disk)->kobj);
204}
205
Jeff Mahoney143bede2012-03-01 14:56:26 +0100206void btrfs_cleanup_fs_uuids(void)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400207{
208 struct btrfs_fs_devices *fs_devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400209
Yan Zheng2b820322008-11-17 21:11:30 -0500210 while (!list_empty(&fs_uuids)) {
211 fs_devices = list_entry(fs_uuids.next,
212 struct btrfs_fs_devices, list);
213 list_del(&fs_devices->list);
Yan Zhenge4404d62008-12-12 10:03:26 -0500214 free_fs_devices(fs_devices);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400215 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400216}
217
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300218static struct btrfs_device *__alloc_device(void)
219{
220 struct btrfs_device *dev;
221
222 dev = kzalloc(sizeof(*dev), GFP_NOFS);
223 if (!dev)
224 return ERR_PTR(-ENOMEM);
225
226 INIT_LIST_HEAD(&dev->dev_list);
227 INIT_LIST_HEAD(&dev->dev_alloc_list);
Miao Xie935e5cc2014-09-03 21:35:33 +0800228 INIT_LIST_HEAD(&dev->resized_list);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300229
230 spin_lock_init(&dev->io_lock);
231
232 spin_lock_init(&dev->reada_lock);
233 atomic_set(&dev->reada_in_flight, 0);
Miao Xieaddc3fa2014-07-24 11:37:11 +0800234 atomic_set(&dev->dev_stats_ccnt, 0);
Sebastian Andrzej Siewior546bed62016-01-15 14:37:15 +0100235 btrfs_device_data_ordered_init(dev);
Mel Gormand0164ad2015-11-06 16:28:21 -0800236 INIT_RADIX_TREE(&dev->reada_zones, GFP_NOFS & ~__GFP_DIRECT_RECLAIM);
237 INIT_RADIX_TREE(&dev->reada_extents, GFP_NOFS & ~__GFP_DIRECT_RECLAIM);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300238
239 return dev;
240}
241
Chris Masona1b32a52008-09-05 16:09:51 -0400242static noinline struct btrfs_device *__find_device(struct list_head *head,
243 u64 devid, u8 *uuid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400244{
245 struct btrfs_device *dev;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400246
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500247 list_for_each_entry(dev, head, dev_list) {
Chris Masona4437552008-04-18 10:29:38 -0400248 if (dev->devid == devid &&
Chris Mason8f18cf12008-04-25 16:53:30 -0400249 (!uuid || !memcmp(dev->uuid, uuid, BTRFS_UUID_SIZE))) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400250 return dev;
Chris Masona4437552008-04-18 10:29:38 -0400251 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400252 }
253 return NULL;
254}
255
Chris Masona1b32a52008-09-05 16:09:51 -0400256static noinline struct btrfs_fs_devices *find_fsid(u8 *fsid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400257{
Chris Mason8a4b83c2008-03-24 15:02:07 -0400258 struct btrfs_fs_devices *fs_devices;
259
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500260 list_for_each_entry(fs_devices, &fs_uuids, list) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400261 if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0)
262 return fs_devices;
263 }
264 return NULL;
265}
266
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100267static int
268btrfs_get_bdev_and_sb(const char *device_path, fmode_t flags, void *holder,
269 int flush, struct block_device **bdev,
270 struct buffer_head **bh)
271{
272 int ret;
273
274 *bdev = blkdev_get_by_path(device_path, flags, holder);
275
276 if (IS_ERR(*bdev)) {
277 ret = PTR_ERR(*bdev);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100278 goto error;
279 }
280
281 if (flush)
282 filemap_write_and_wait((*bdev)->bd_inode->i_mapping);
283 ret = set_blocksize(*bdev, 4096);
284 if (ret) {
285 blkdev_put(*bdev, flags);
286 goto error;
287 }
288 invalidate_bdev(*bdev);
289 *bh = btrfs_read_dev_super(*bdev);
Anand Jain92fc03f2015-08-14 18:32:51 +0800290 if (IS_ERR(*bh)) {
291 ret = PTR_ERR(*bh);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100292 blkdev_put(*bdev, flags);
293 goto error;
294 }
295
296 return 0;
297
298error:
299 *bdev = NULL;
300 *bh = NULL;
301 return ret;
302}
303
Chris Masonffbd5172009-04-20 15:50:09 -0400304static void requeue_list(struct btrfs_pending_bios *pending_bios,
305 struct bio *head, struct bio *tail)
306{
307
308 struct bio *old_head;
309
310 old_head = pending_bios->head;
311 pending_bios->head = head;
312 if (pending_bios->tail)
313 tail->bi_next = old_head;
314 else
315 pending_bios->tail = tail;
316}
317
Chris Mason8b712842008-06-11 16:50:36 -0400318/*
319 * we try to collect pending bios for a device so we don't get a large
320 * number of procs sending bios down to the same device. This greatly
321 * improves the schedulers ability to collect and merge the bios.
322 *
323 * But, it also turns into a long list of bios to process and that is sure
324 * to eventually make the worker thread block. The solution here is to
325 * make some progress and then put this work struct back at the end of
326 * the list if the block device is congested. This way, multiple devices
327 * can make progress from a single worker thread.
328 */
Jeff Mahoney143bede2012-03-01 14:56:26 +0100329static noinline void run_scheduled_bios(struct btrfs_device *device)
Chris Mason8b712842008-06-11 16:50:36 -0400330{
331 struct bio *pending;
332 struct backing_dev_info *bdi;
Chris Masonb64a2852008-08-20 13:39:41 -0400333 struct btrfs_fs_info *fs_info;
Chris Masonffbd5172009-04-20 15:50:09 -0400334 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -0400335 struct bio *tail;
336 struct bio *cur;
337 int again = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400338 unsigned long num_run;
Chris Masond644d8a2009-06-09 15:59:22 -0400339 unsigned long batch_run = 0;
Chris Masonb64a2852008-08-20 13:39:41 -0400340 unsigned long limit;
Chris Masonb765ead2009-04-03 10:27:10 -0400341 unsigned long last_waited = 0;
Chris Masond84275c2009-06-09 15:39:08 -0400342 int force_reg = 0;
Miao Xie0e588852011-08-05 09:32:37 +0000343 int sync_pending = 0;
Chris Mason211588a2011-04-19 20:12:40 -0400344 struct blk_plug plug;
345
346 /*
347 * this function runs all the bios we've collected for
348 * a particular device. We don't want to wander off to
349 * another device without first sending all of these down.
350 * So, setup a plug here and finish it off before we return
351 */
352 blk_start_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400353
Chris Masonbedf7622009-04-03 10:32:58 -0400354 bdi = blk_get_backing_dev_info(device->bdev);
Chris Masonb64a2852008-08-20 13:39:41 -0400355 fs_info = device->dev_root->fs_info;
356 limit = btrfs_async_submit_limit(fs_info);
357 limit = limit * 2 / 3;
358
Chris Mason8b712842008-06-11 16:50:36 -0400359loop:
360 spin_lock(&device->io_lock);
361
Chris Masona6837052009-02-04 09:19:41 -0500362loop_lock:
Chris Masond84275c2009-06-09 15:39:08 -0400363 num_run = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400364
Chris Mason8b712842008-06-11 16:50:36 -0400365 /* take all the bios off the list at once and process them
366 * later on (without the lock held). But, remember the
367 * tail and other pointers so the bios can be properly reinserted
368 * into the list if we hit congestion
369 */
Chris Masond84275c2009-06-09 15:39:08 -0400370 if (!force_reg && device->pending_sync_bios.head) {
Chris Masonffbd5172009-04-20 15:50:09 -0400371 pending_bios = &device->pending_sync_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400372 force_reg = 1;
373 } else {
Chris Masonffbd5172009-04-20 15:50:09 -0400374 pending_bios = &device->pending_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400375 force_reg = 0;
376 }
Chris Masonffbd5172009-04-20 15:50:09 -0400377
378 pending = pending_bios->head;
379 tail = pending_bios->tail;
Chris Mason8b712842008-06-11 16:50:36 -0400380 WARN_ON(pending && !tail);
Chris Mason8b712842008-06-11 16:50:36 -0400381
382 /*
383 * if pending was null this time around, no bios need processing
384 * at all and we can stop. Otherwise it'll loop back up again
385 * and do an additional check so no bios are missed.
386 *
387 * device->running_pending is used to synchronize with the
388 * schedule_bio code.
389 */
Chris Masonffbd5172009-04-20 15:50:09 -0400390 if (device->pending_sync_bios.head == NULL &&
391 device->pending_bios.head == NULL) {
Chris Mason8b712842008-06-11 16:50:36 -0400392 again = 0;
393 device->running_pending = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400394 } else {
395 again = 1;
396 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400397 }
Chris Masonffbd5172009-04-20 15:50:09 -0400398
399 pending_bios->head = NULL;
400 pending_bios->tail = NULL;
401
Chris Mason8b712842008-06-11 16:50:36 -0400402 spin_unlock(&device->io_lock);
403
Chris Masond3977122009-01-05 21:25:51 -0500404 while (pending) {
Chris Masonffbd5172009-04-20 15:50:09 -0400405
406 rmb();
Chris Masond84275c2009-06-09 15:39:08 -0400407 /* we want to work on both lists, but do more bios on the
408 * sync list than the regular list
409 */
410 if ((num_run > 32 &&
411 pending_bios != &device->pending_sync_bios &&
412 device->pending_sync_bios.head) ||
413 (num_run > 64 && pending_bios == &device->pending_sync_bios &&
414 device->pending_bios.head)) {
Chris Masonffbd5172009-04-20 15:50:09 -0400415 spin_lock(&device->io_lock);
416 requeue_list(pending_bios, pending, tail);
417 goto loop_lock;
418 }
419
Chris Mason8b712842008-06-11 16:50:36 -0400420 cur = pending;
421 pending = pending->bi_next;
422 cur->bi_next = NULL;
Chris Masonb64a2852008-08-20 13:39:41 -0400423
David Sterbaee863952015-02-16 19:41:40 +0100424 /*
425 * atomic_dec_return implies a barrier for waitqueue_active
426 */
Josef Bacik66657b32012-08-01 15:36:24 -0400427 if (atomic_dec_return(&fs_info->nr_async_bios) < limit &&
Chris Masonb64a2852008-08-20 13:39:41 -0400428 waitqueue_active(&fs_info->async_submit_wait))
429 wake_up(&fs_info->async_submit_wait);
Chris Mason492bb6de2008-07-31 16:29:02 -0400430
Jens Axboedac56212015-04-17 16:23:59 -0600431 BUG_ON(atomic_read(&cur->__bi_cnt) == 0);
Chris Masond644d8a2009-06-09 15:59:22 -0400432
Chris Mason2ab1ba62011-08-04 14:28:36 -0400433 /*
434 * if we're doing the sync list, record that our
435 * plug has some sync requests on it
436 *
437 * If we're doing the regular list and there are
438 * sync requests sitting around, unplug before
439 * we add more
440 */
441 if (pending_bios == &device->pending_sync_bios) {
442 sync_pending = 1;
443 } else if (sync_pending) {
444 blk_finish_plug(&plug);
445 blk_start_plug(&plug);
446 sync_pending = 0;
447 }
448
Stefan Behrens21adbd52011-11-09 13:44:05 +0100449 btrfsic_submit_bio(cur->bi_rw, cur);
Chris Mason5ff7ba32010-03-15 10:21:30 -0400450 num_run++;
451 batch_run++;
David Sterba853d8ec2015-01-08 15:15:19 +0100452
453 cond_resched();
Chris Mason8b712842008-06-11 16:50:36 -0400454
455 /*
456 * we made progress, there is more work to do and the bdi
457 * is now congested. Back off and let other work structs
458 * run instead
459 */
Chris Mason57fd5a52009-08-07 09:59:15 -0400460 if (pending && bdi_write_congested(bdi) && batch_run > 8 &&
Chris Mason5f2cc082008-11-07 18:22:45 -0500461 fs_info->fs_devices->open_devices > 1) {
Chris Masonb765ead2009-04-03 10:27:10 -0400462 struct io_context *ioc;
Chris Mason8b712842008-06-11 16:50:36 -0400463
Chris Masonb765ead2009-04-03 10:27:10 -0400464 ioc = current->io_context;
465
466 /*
467 * the main goal here is that we don't want to
468 * block if we're going to be able to submit
469 * more requests without blocking.
470 *
471 * This code does two great things, it pokes into
472 * the elevator code from a filesystem _and_
473 * it makes assumptions about how batching works.
474 */
475 if (ioc && ioc->nr_batch_requests > 0 &&
476 time_before(jiffies, ioc->last_waited + HZ/50UL) &&
477 (last_waited == 0 ||
478 ioc->last_waited == last_waited)) {
479 /*
480 * we want to go through our batch of
481 * requests and stop. So, we copy out
482 * the ioc->last_waited time and test
483 * against it before looping
484 */
485 last_waited = ioc->last_waited;
David Sterba853d8ec2015-01-08 15:15:19 +0100486 cond_resched();
Chris Masonb765ead2009-04-03 10:27:10 -0400487 continue;
488 }
Chris Mason8b712842008-06-11 16:50:36 -0400489 spin_lock(&device->io_lock);
Chris Masonffbd5172009-04-20 15:50:09 -0400490 requeue_list(pending_bios, pending, tail);
Chris Masona6837052009-02-04 09:19:41 -0500491 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400492
493 spin_unlock(&device->io_lock);
Qu Wenruoa8c93d42014-02-28 10:46:08 +0800494 btrfs_queue_work(fs_info->submit_workers,
495 &device->work);
Chris Mason8b712842008-06-11 16:50:36 -0400496 goto done;
497 }
Chris Masond85c8a6f2011-12-15 15:38:41 -0500498 /* unplug every 64 requests just for good measure */
499 if (batch_run % 64 == 0) {
500 blk_finish_plug(&plug);
501 blk_start_plug(&plug);
502 sync_pending = 0;
503 }
Chris Mason8b712842008-06-11 16:50:36 -0400504 }
Chris Masonffbd5172009-04-20 15:50:09 -0400505
Chris Mason51684082010-03-10 15:33:32 -0500506 cond_resched();
507 if (again)
508 goto loop;
509
510 spin_lock(&device->io_lock);
511 if (device->pending_bios.head || device->pending_sync_bios.head)
512 goto loop_lock;
513 spin_unlock(&device->io_lock);
514
Chris Mason8b712842008-06-11 16:50:36 -0400515done:
Chris Mason211588a2011-04-19 20:12:40 -0400516 blk_finish_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400517}
518
Christoph Hellwigb2950862008-12-02 09:54:17 -0500519static void pending_bios_fn(struct btrfs_work *work)
Chris Mason8b712842008-06-11 16:50:36 -0400520{
521 struct btrfs_device *device;
522
523 device = container_of(work, struct btrfs_device, work);
524 run_scheduled_bios(device);
525}
526
Anand Jain4fde46f2015-06-17 21:10:48 +0800527
528void btrfs_free_stale_device(struct btrfs_device *cur_dev)
529{
530 struct btrfs_fs_devices *fs_devs;
531 struct btrfs_device *dev;
532
533 if (!cur_dev->name)
534 return;
535
536 list_for_each_entry(fs_devs, &fs_uuids, list) {
537 int del = 1;
538
539 if (fs_devs->opened)
540 continue;
541 if (fs_devs->seeding)
542 continue;
543
544 list_for_each_entry(dev, &fs_devs->devices, dev_list) {
545
546 if (dev == cur_dev)
547 continue;
548 if (!dev->name)
549 continue;
550
551 /*
552 * Todo: This won't be enough. What if the same device
553 * comes back (with new uuid and) with its mapper path?
554 * But for now, this does help as mostly an admin will
555 * either use mapper or non mapper path throughout.
556 */
557 rcu_read_lock();
558 del = strcmp(rcu_str_deref(dev->name),
559 rcu_str_deref(cur_dev->name));
560 rcu_read_unlock();
561 if (!del)
562 break;
563 }
564
565 if (!del) {
566 /* delete the stale device */
567 if (fs_devs->num_devices == 1) {
568 btrfs_sysfs_remove_fsid(fs_devs);
569 list_del(&fs_devs->list);
570 free_fs_devices(fs_devs);
571 } else {
572 fs_devs->num_devices--;
573 list_del(&dev->dev_list);
574 rcu_string_free(dev->name);
575 kfree(dev);
576 }
577 break;
578 }
579 }
580}
581
David Sterba60999ca2014-03-26 18:26:36 +0100582/*
583 * Add new device to list of registered devices
584 *
585 * Returns:
586 * 1 - first time device is seen
587 * 0 - device already known
588 * < 0 - error
589 */
Chris Masona1b32a52008-09-05 16:09:51 -0400590static noinline int device_list_add(const char *path,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400591 struct btrfs_super_block *disk_super,
592 u64 devid, struct btrfs_fs_devices **fs_devices_ret)
593{
594 struct btrfs_device *device;
595 struct btrfs_fs_devices *fs_devices;
Josef Bacik606686e2012-06-04 14:03:51 -0400596 struct rcu_string *name;
David Sterba60999ca2014-03-26 18:26:36 +0100597 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400598 u64 found_transid = btrfs_super_generation(disk_super);
599
600 fs_devices = find_fsid(disk_super->fsid);
601 if (!fs_devices) {
Ilya Dryomov2208a372013-08-12 14:33:03 +0300602 fs_devices = alloc_fs_devices(disk_super->fsid);
603 if (IS_ERR(fs_devices))
604 return PTR_ERR(fs_devices);
605
Chris Mason8a4b83c2008-03-24 15:02:07 -0400606 list_add(&fs_devices->list, &fs_uuids);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300607
Chris Mason8a4b83c2008-03-24 15:02:07 -0400608 device = NULL;
609 } else {
Chris Masona4437552008-04-18 10:29:38 -0400610 device = __find_device(&fs_devices->devices, devid,
611 disk_super->dev_item.uuid);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400612 }
Miao Xie443f24f2014-07-24 11:37:15 +0800613
Chris Mason8a4b83c2008-03-24 15:02:07 -0400614 if (!device) {
Yan Zheng2b820322008-11-17 21:11:30 -0500615 if (fs_devices->opened)
616 return -EBUSY;
617
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300618 device = btrfs_alloc_device(NULL, &devid,
619 disk_super->dev_item.uuid);
620 if (IS_ERR(device)) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400621 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300622 return PTR_ERR(device);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400623 }
Josef Bacik606686e2012-06-04 14:03:51 -0400624
625 name = rcu_string_strdup(path, GFP_NOFS);
626 if (!name) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400627 kfree(device);
628 return -ENOMEM;
629 }
Josef Bacik606686e2012-06-04 14:03:51 -0400630 rcu_assign_pointer(device->name, name);
Arne Jansen90519d62011-05-23 14:30:00 +0200631
Chris Masone5e9a522009-06-10 15:17:02 -0400632 mutex_lock(&fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000633 list_add_rcu(&device->dev_list, &fs_devices->devices);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +0100634 fs_devices->num_devices++;
Chris Masone5e9a522009-06-10 15:17:02 -0400635 mutex_unlock(&fs_devices->device_list_mutex);
636
David Sterba60999ca2014-03-26 18:26:36 +0100637 ret = 1;
Yan Zheng2b820322008-11-17 21:11:30 -0500638 device->fs_devices = fs_devices;
Josef Bacik606686e2012-06-04 14:03:51 -0400639 } else if (!device->name || strcmp(device->name->str, path)) {
Anand Jainb96de002014-07-03 18:22:05 +0800640 /*
641 * When FS is already mounted.
642 * 1. If you are here and if the device->name is NULL that
643 * means this device was missing at time of FS mount.
644 * 2. If you are here and if the device->name is different
645 * from 'path' that means either
646 * a. The same device disappeared and reappeared with
647 * different name. or
648 * b. The missing-disk-which-was-replaced, has
649 * reappeared now.
650 *
651 * We must allow 1 and 2a above. But 2b would be a spurious
652 * and unintentional.
653 *
654 * Further in case of 1 and 2a above, the disk at 'path'
655 * would have missed some transaction when it was away and
656 * in case of 2a the stale bdev has to be updated as well.
657 * 2b must not be allowed at all time.
658 */
659
660 /*
Chris Mason0f23ae72014-09-18 07:49:05 -0700661 * For now, we do allow update to btrfs_fs_device through the
662 * btrfs dev scan cli after FS has been mounted. We're still
663 * tracking a problem where systems fail mount by subvolume id
664 * when we reject replacement on a mounted FS.
Anand Jainb96de002014-07-03 18:22:05 +0800665 */
Chris Mason0f23ae72014-09-18 07:49:05 -0700666 if (!fs_devices->opened && found_transid < device->generation) {
Anand Jain77bdae42014-07-03 18:22:06 +0800667 /*
668 * That is if the FS is _not_ mounted and if you
669 * are here, that means there is more than one
670 * disk with same uuid and devid.We keep the one
671 * with larger generation number or the last-in if
672 * generation are equal.
673 */
Chris Mason0f23ae72014-09-18 07:49:05 -0700674 return -EEXIST;
Anand Jain77bdae42014-07-03 18:22:06 +0800675 }
Anand Jainb96de002014-07-03 18:22:05 +0800676
Josef Bacik606686e2012-06-04 14:03:51 -0400677 name = rcu_string_strdup(path, GFP_NOFS);
TARUISI Hiroaki3a0524d2010-02-09 06:36:45 +0000678 if (!name)
679 return -ENOMEM;
Josef Bacik606686e2012-06-04 14:03:51 -0400680 rcu_string_free(device->name);
681 rcu_assign_pointer(device->name, name);
Chris Masoncd02dca2010-12-13 14:56:23 -0500682 if (device->missing) {
683 fs_devices->missing_devices--;
684 device->missing = 0;
685 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400686 }
687
Anand Jain77bdae42014-07-03 18:22:06 +0800688 /*
689 * Unmount does not free the btrfs_device struct but would zero
690 * generation along with most of the other members. So just update
691 * it back. We need it to pick the disk with largest generation
692 * (as above).
693 */
694 if (!fs_devices->opened)
695 device->generation = found_transid;
696
Anand Jain4fde46f2015-06-17 21:10:48 +0800697 /*
698 * if there is new btrfs on an already registered device,
699 * then remove the stale device entry.
700 */
701 btrfs_free_stale_device(device);
702
Chris Mason8a4b83c2008-03-24 15:02:07 -0400703 *fs_devices_ret = fs_devices;
David Sterba60999ca2014-03-26 18:26:36 +0100704
705 return ret;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400706}
707
Yan Zhenge4404d62008-12-12 10:03:26 -0500708static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig)
709{
710 struct btrfs_fs_devices *fs_devices;
711 struct btrfs_device *device;
712 struct btrfs_device *orig_dev;
713
Ilya Dryomov2208a372013-08-12 14:33:03 +0300714 fs_devices = alloc_fs_devices(orig->fsid);
715 if (IS_ERR(fs_devices))
716 return fs_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -0500717
Miao Xieadbbb862014-09-03 21:35:42 +0800718 mutex_lock(&orig->device_list_mutex);
Josef Bacik02db0842012-06-21 16:03:58 -0400719 fs_devices->total_devices = orig->total_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -0500720
Xiao Guangrong46224702011-04-20 10:08:47 +0000721 /* We have held the volume lock, it is safe to get the devices. */
Yan Zhenge4404d62008-12-12 10:03:26 -0500722 list_for_each_entry(orig_dev, &orig->devices, dev_list) {
Josef Bacik606686e2012-06-04 14:03:51 -0400723 struct rcu_string *name;
724
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300725 device = btrfs_alloc_device(NULL, &orig_dev->devid,
726 orig_dev->uuid);
727 if (IS_ERR(device))
Yan Zhenge4404d62008-12-12 10:03:26 -0500728 goto error;
729
Josef Bacik606686e2012-06-04 14:03:51 -0400730 /*
731 * This is ok to do without rcu read locked because we hold the
732 * uuid mutex so nothing we touch in here is going to disappear.
733 */
Anand Jaine755f782014-06-30 17:12:47 +0800734 if (orig_dev->name) {
735 name = rcu_string_strdup(orig_dev->name->str, GFP_NOFS);
736 if (!name) {
737 kfree(device);
738 goto error;
739 }
740 rcu_assign_pointer(device->name, name);
Julia Lawallfd2696f2009-09-29 13:51:04 -0400741 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500742
Yan Zhenge4404d62008-12-12 10:03:26 -0500743 list_add(&device->dev_list, &fs_devices->devices);
744 device->fs_devices = fs_devices;
745 fs_devices->num_devices++;
746 }
Miao Xieadbbb862014-09-03 21:35:42 +0800747 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500748 return fs_devices;
749error:
Miao Xieadbbb862014-09-03 21:35:42 +0800750 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500751 free_fs_devices(fs_devices);
752 return ERR_PTR(-ENOMEM);
753}
754
Eric Sandeen9eaed212014-08-01 18:12:35 -0500755void btrfs_close_extra_devices(struct btrfs_fs_devices *fs_devices, int step)
Chris Masondfe25022008-05-13 13:46:40 -0400756{
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500757 struct btrfs_device *device, *next;
Miao Xie443f24f2014-07-24 11:37:15 +0800758 struct btrfs_device *latest_dev = NULL;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500759
Chris Masondfe25022008-05-13 13:46:40 -0400760 mutex_lock(&uuid_mutex);
761again:
Xiao Guangrong46224702011-04-20 10:08:47 +0000762 /* This is the initialized path, it is safe to release the devices. */
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500763 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Chris Masona6b0d5c2012-02-20 20:53:43 -0500764 if (device->in_fs_metadata) {
Stefan Behrens63a212a2012-11-05 18:29:28 +0100765 if (!device->is_tgtdev_for_dev_replace &&
Miao Xie443f24f2014-07-24 11:37:15 +0800766 (!latest_dev ||
767 device->generation > latest_dev->generation)) {
768 latest_dev = device;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500769 }
Yan Zheng2b820322008-11-17 21:11:30 -0500770 continue;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500771 }
Yan Zheng2b820322008-11-17 21:11:30 -0500772
Stefan Behrens8dabb742012-11-06 13:15:27 +0100773 if (device->devid == BTRFS_DEV_REPLACE_DEVID) {
774 /*
775 * In the first step, keep the device which has
776 * the correct fsid and the devid that is used
777 * for the dev_replace procedure.
778 * In the second step, the dev_replace state is
779 * read from the device tree and it is known
780 * whether the procedure is really active or
781 * not, which means whether this device is
782 * used or whether it should be removed.
783 */
784 if (step == 0 || device->is_tgtdev_for_dev_replace) {
785 continue;
786 }
787 }
Yan Zheng2b820322008-11-17 21:11:30 -0500788 if (device->bdev) {
Tejun Heod4d77622010-11-13 11:55:18 +0100789 blkdev_put(device->bdev, device->mode);
Yan Zheng2b820322008-11-17 21:11:30 -0500790 device->bdev = NULL;
791 fs_devices->open_devices--;
792 }
793 if (device->writeable) {
794 list_del_init(&device->dev_alloc_list);
795 device->writeable = 0;
Stefan Behrens8dabb742012-11-06 13:15:27 +0100796 if (!device->is_tgtdev_for_dev_replace)
797 fs_devices->rw_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -0500798 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500799 list_del_init(&device->dev_list);
800 fs_devices->num_devices--;
Josef Bacik606686e2012-06-04 14:03:51 -0400801 rcu_string_free(device->name);
Yan Zhenge4404d62008-12-12 10:03:26 -0500802 kfree(device);
Chris Masondfe25022008-05-13 13:46:40 -0400803 }
Yan Zheng2b820322008-11-17 21:11:30 -0500804
805 if (fs_devices->seed) {
806 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -0500807 goto again;
808 }
809
Miao Xie443f24f2014-07-24 11:37:15 +0800810 fs_devices->latest_bdev = latest_dev->bdev;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500811
Chris Masondfe25022008-05-13 13:46:40 -0400812 mutex_unlock(&uuid_mutex);
Chris Masondfe25022008-05-13 13:46:40 -0400813}
Chris Masona0af4692008-05-13 16:03:06 -0400814
Xiao Guangrong1f781602011-04-20 10:09:16 +0000815static void __free_device(struct work_struct *work)
816{
817 struct btrfs_device *device;
818
819 device = container_of(work, struct btrfs_device, rcu_work);
820
821 if (device->bdev)
822 blkdev_put(device->bdev, device->mode);
823
Josef Bacik606686e2012-06-04 14:03:51 -0400824 rcu_string_free(device->name);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000825 kfree(device);
826}
827
828static void free_device(struct rcu_head *head)
829{
830 struct btrfs_device *device;
831
832 device = container_of(head, struct btrfs_device, rcu);
833
834 INIT_WORK(&device->rcu_work, __free_device);
835 schedule_work(&device->rcu_work);
836}
837
Yan Zheng2b820322008-11-17 21:11:30 -0500838static int __btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400839{
Sasha Levin2037a092015-05-12 19:31:37 -0400840 struct btrfs_device *device, *tmp;
Yan Zhenge4404d62008-12-12 10:03:26 -0500841
Yan Zheng2b820322008-11-17 21:11:30 -0500842 if (--fs_devices->opened > 0)
843 return 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400844
Xiao Guangrongc9513ed2011-04-20 10:07:30 +0000845 mutex_lock(&fs_devices->device_list_mutex);
Sasha Levin2037a092015-05-12 19:31:37 -0400846 list_for_each_entry_safe(device, tmp, &fs_devices->devices, dev_list) {
Anand Jainf190aa42015-08-14 18:33:05 +0800847 btrfs_close_one_device(device);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400848 }
Xiao Guangrongc9513ed2011-04-20 10:07:30 +0000849 mutex_unlock(&fs_devices->device_list_mutex);
850
Yan Zhenge4404d62008-12-12 10:03:26 -0500851 WARN_ON(fs_devices->open_devices);
852 WARN_ON(fs_devices->rw_devices);
Yan Zheng2b820322008-11-17 21:11:30 -0500853 fs_devices->opened = 0;
854 fs_devices->seeding = 0;
Yan Zheng2b820322008-11-17 21:11:30 -0500855
Chris Mason8a4b83c2008-03-24 15:02:07 -0400856 return 0;
857}
858
Yan Zheng2b820322008-11-17 21:11:30 -0500859int btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
860{
Yan Zhenge4404d62008-12-12 10:03:26 -0500861 struct btrfs_fs_devices *seed_devices = NULL;
Yan Zheng2b820322008-11-17 21:11:30 -0500862 int ret;
863
864 mutex_lock(&uuid_mutex);
865 ret = __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -0500866 if (!fs_devices->opened) {
867 seed_devices = fs_devices->seed;
868 fs_devices->seed = NULL;
869 }
Yan Zheng2b820322008-11-17 21:11:30 -0500870 mutex_unlock(&uuid_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500871
872 while (seed_devices) {
873 fs_devices = seed_devices;
874 seed_devices = fs_devices->seed;
875 __btrfs_close_devices(fs_devices);
876 free_fs_devices(fs_devices);
877 }
Eric Sandeenbc178622013-03-09 15:18:39 +0000878 /*
879 * Wait for rcu kworkers under __btrfs_close_devices
880 * to finish all blkdev_puts so device is really
881 * free when umount is done.
882 */
883 rcu_barrier();
Yan Zheng2b820322008-11-17 21:11:30 -0500884 return ret;
885}
886
Yan Zhenge4404d62008-12-12 10:03:26 -0500887static int __btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
888 fmode_t flags, void *holder)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400889{
Josef Bacikd5e20032011-08-04 14:52:27 +0000890 struct request_queue *q;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400891 struct block_device *bdev;
892 struct list_head *head = &fs_devices->devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400893 struct btrfs_device *device;
Miao Xie443f24f2014-07-24 11:37:15 +0800894 struct btrfs_device *latest_dev = NULL;
Chris Masona0af4692008-05-13 16:03:06 -0400895 struct buffer_head *bh;
896 struct btrfs_super_block *disk_super;
Chris Masona0af4692008-05-13 16:03:06 -0400897 u64 devid;
Yan Zheng2b820322008-11-17 21:11:30 -0500898 int seeding = 1;
Chris Masona0af4692008-05-13 16:03:06 -0400899 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400900
Tejun Heod4d77622010-11-13 11:55:18 +0100901 flags |= FMODE_EXCL;
902
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500903 list_for_each_entry(device, head, dev_list) {
Chris Masonc1c4d912008-05-08 15:05:58 -0400904 if (device->bdev)
905 continue;
Chris Masondfe25022008-05-13 13:46:40 -0400906 if (!device->name)
907 continue;
908
Eric Sandeenf63e0cc2013-04-04 20:45:08 +0000909 /* Just open everything we can; ignore failures here */
910 if (btrfs_get_bdev_and_sb(device->name->str, flags, holder, 1,
911 &bdev, &bh))
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100912 continue;
Chris Masona0af4692008-05-13 16:03:06 -0400913
914 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +0000915 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masona0af4692008-05-13 16:03:06 -0400916 if (devid != device->devid)
917 goto error_brelse;
918
Yan Zheng2b820322008-11-17 21:11:30 -0500919 if (memcmp(device->uuid, disk_super->dev_item.uuid,
920 BTRFS_UUID_SIZE))
921 goto error_brelse;
922
923 device->generation = btrfs_super_generation(disk_super);
Miao Xie443f24f2014-07-24 11:37:15 +0800924 if (!latest_dev ||
925 device->generation > latest_dev->generation)
926 latest_dev = device;
Chris Masona0af4692008-05-13 16:03:06 -0400927
Yan Zheng2b820322008-11-17 21:11:30 -0500928 if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) {
929 device->writeable = 0;
930 } else {
931 device->writeable = !bdev_read_only(bdev);
932 seeding = 0;
933 }
934
Josef Bacikd5e20032011-08-04 14:52:27 +0000935 q = bdev_get_queue(bdev);
Miao Xie90180da2014-09-03 21:35:30 +0800936 if (blk_queue_discard(q))
Josef Bacikd5e20032011-08-04 14:52:27 +0000937 device->can_discard = 1;
Josef Bacikd5e20032011-08-04 14:52:27 +0000938
Chris Mason8a4b83c2008-03-24 15:02:07 -0400939 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -0400940 device->in_fs_metadata = 0;
Chris Mason15916de2008-11-19 21:17:22 -0500941 device->mode = flags;
942
Chris Masonc2898112009-06-10 09:51:32 -0400943 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
944 fs_devices->rotating = 1;
945
Chris Masona0af4692008-05-13 16:03:06 -0400946 fs_devices->open_devices++;
Ilya Dryomov55e50e42013-09-01 18:56:44 +0300947 if (device->writeable &&
948 device->devid != BTRFS_DEV_REPLACE_DEVID) {
Yan Zheng2b820322008-11-17 21:11:30 -0500949 fs_devices->rw_devices++;
950 list_add(&device->dev_alloc_list,
951 &fs_devices->alloc_list);
952 }
Xiao Guangrong4f6c9322011-04-20 10:06:40 +0000953 brelse(bh);
Chris Masona0af4692008-05-13 16:03:06 -0400954 continue;
Chris Masona061fc82008-05-07 11:43:44 -0400955
Chris Masona0af4692008-05-13 16:03:06 -0400956error_brelse:
957 brelse(bh);
Tejun Heod4d77622010-11-13 11:55:18 +0100958 blkdev_put(bdev, flags);
Chris Masona0af4692008-05-13 16:03:06 -0400959 continue;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400960 }
Chris Masona0af4692008-05-13 16:03:06 -0400961 if (fs_devices->open_devices == 0) {
Ilya Dryomov20bcd642011-10-20 00:06:20 +0300962 ret = -EINVAL;
Chris Masona0af4692008-05-13 16:03:06 -0400963 goto out;
964 }
Yan Zheng2b820322008-11-17 21:11:30 -0500965 fs_devices->seeding = seeding;
966 fs_devices->opened = 1;
Miao Xie443f24f2014-07-24 11:37:15 +0800967 fs_devices->latest_bdev = latest_dev->bdev;
Yan Zheng2b820322008-11-17 21:11:30 -0500968 fs_devices->total_rw_bytes = 0;
Chris Masona0af4692008-05-13 16:03:06 -0400969out:
Yan Zheng2b820322008-11-17 21:11:30 -0500970 return ret;
971}
972
973int btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
Christoph Hellwig97288f22008-12-02 06:36:09 -0500974 fmode_t flags, void *holder)
Yan Zheng2b820322008-11-17 21:11:30 -0500975{
976 int ret;
977
978 mutex_lock(&uuid_mutex);
979 if (fs_devices->opened) {
Yan Zhenge4404d62008-12-12 10:03:26 -0500980 fs_devices->opened++;
981 ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -0500982 } else {
Chris Mason15916de2008-11-19 21:17:22 -0500983 ret = __btrfs_open_devices(fs_devices, flags, holder);
Yan Zheng2b820322008-11-17 21:11:30 -0500984 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400985 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400986 return ret;
987}
988
David Sterba6f60cbd2013-02-15 11:31:02 -0700989/*
990 * Look for a btrfs signature on a device. This may be called out of the mount path
991 * and we are not allowed to call set_blocksize during the scan. The superblock
992 * is read via pagecache
993 */
Christoph Hellwig97288f22008-12-02 06:36:09 -0500994int btrfs_scan_one_device(const char *path, fmode_t flags, void *holder,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400995 struct btrfs_fs_devices **fs_devices_ret)
996{
997 struct btrfs_super_block *disk_super;
998 struct block_device *bdev;
David Sterba6f60cbd2013-02-15 11:31:02 -0700999 struct page *page;
1000 void *p;
1001 int ret = -EINVAL;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001002 u64 devid;
Chris Masonf2984462008-04-10 16:19:33 -04001003 u64 transid;
Josef Bacik02db0842012-06-21 16:03:58 -04001004 u64 total_devices;
David Sterba6f60cbd2013-02-15 11:31:02 -07001005 u64 bytenr;
1006 pgoff_t index;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001007
David Sterba6f60cbd2013-02-15 11:31:02 -07001008 /*
1009 * we would like to check all the supers, but that would make
1010 * a btrfs mount succeed after a mkfs from a different FS.
1011 * So, we need to add a special mount option to scan for
1012 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
1013 */
1014 bytenr = btrfs_sb_offset(0);
Tejun Heod4d77622010-11-13 11:55:18 +01001015 flags |= FMODE_EXCL;
Al Viro10f63272011-11-17 15:05:22 -05001016 mutex_lock(&uuid_mutex);
David Sterba6f60cbd2013-02-15 11:31:02 -07001017
1018 bdev = blkdev_get_by_path(path, flags, holder);
1019
1020 if (IS_ERR(bdev)) {
1021 ret = PTR_ERR(bdev);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001022 goto error;
David Sterba6f60cbd2013-02-15 11:31:02 -07001023 }
1024
1025 /* make sure our super fits in the device */
1026 if (bytenr + PAGE_CACHE_SIZE >= i_size_read(bdev->bd_inode))
1027 goto error_bdev_put;
1028
1029 /* make sure our super fits in the page */
1030 if (sizeof(*disk_super) > PAGE_CACHE_SIZE)
1031 goto error_bdev_put;
1032
1033 /* make sure our super doesn't straddle pages on disk */
1034 index = bytenr >> PAGE_CACHE_SHIFT;
1035 if ((bytenr + sizeof(*disk_super) - 1) >> PAGE_CACHE_SHIFT != index)
1036 goto error_bdev_put;
1037
1038 /* pull in the page with our super */
1039 page = read_cache_page_gfp(bdev->bd_inode->i_mapping,
1040 index, GFP_NOFS);
1041
1042 if (IS_ERR_OR_NULL(page))
1043 goto error_bdev_put;
1044
1045 p = kmap(page);
1046
1047 /* align our pointer to the offset of the super block */
1048 disk_super = p + (bytenr & ~PAGE_CACHE_MASK);
1049
1050 if (btrfs_super_bytenr(disk_super) != bytenr ||
Qu Wenruo3cae2102013-07-16 11:19:18 +08001051 btrfs_super_magic(disk_super) != BTRFS_MAGIC)
David Sterba6f60cbd2013-02-15 11:31:02 -07001052 goto error_unmap;
1053
Xiao Guangronga3438322010-01-06 11:48:18 +00001054 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masonf2984462008-04-10 16:19:33 -04001055 transid = btrfs_super_generation(disk_super);
Josef Bacik02db0842012-06-21 16:03:58 -04001056 total_devices = btrfs_super_num_devices(disk_super);
David Sterba6f60cbd2013-02-15 11:31:02 -07001057
Chris Mason8a4b83c2008-03-24 15:02:07 -04001058 ret = device_list_add(path, disk_super, devid, fs_devices_ret);
David Sterba60999ca2014-03-26 18:26:36 +01001059 if (ret > 0) {
1060 if (disk_super->label[0]) {
1061 if (disk_super->label[BTRFS_LABEL_SIZE - 1])
1062 disk_super->label[BTRFS_LABEL_SIZE - 1] = '\0';
1063 printk(KERN_INFO "BTRFS: device label %s ", disk_super->label);
1064 } else {
1065 printk(KERN_INFO "BTRFS: device fsid %pU ", disk_super->fsid);
1066 }
1067
1068 printk(KERN_CONT "devid %llu transid %llu %s\n", devid, transid, path);
1069 ret = 0;
1070 }
Josef Bacik02db0842012-06-21 16:03:58 -04001071 if (!ret && fs_devices_ret)
1072 (*fs_devices_ret)->total_devices = total_devices;
David Sterba6f60cbd2013-02-15 11:31:02 -07001073
1074error_unmap:
1075 kunmap(page);
1076 page_cache_release(page);
1077
1078error_bdev_put:
Tejun Heod4d77622010-11-13 11:55:18 +01001079 blkdev_put(bdev, flags);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001080error:
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001081 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001082 return ret;
1083}
Chris Mason0b86a832008-03-24 15:01:56 -04001084
Miao Xie6d07bce2011-01-05 10:07:31 +00001085/* helper to account the used device space in the range */
1086int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start,
1087 u64 end, u64 *length)
Chris Mason0b86a832008-03-24 15:01:56 -04001088{
1089 struct btrfs_key key;
1090 struct btrfs_root *root = device->dev_root;
Miao Xie6d07bce2011-01-05 10:07:31 +00001091 struct btrfs_dev_extent *dev_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05001092 struct btrfs_path *path;
Miao Xie6d07bce2011-01-05 10:07:31 +00001093 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001094 int ret;
Miao Xie6d07bce2011-01-05 10:07:31 +00001095 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001096 struct extent_buffer *l;
1097
Miao Xie6d07bce2011-01-05 10:07:31 +00001098 *length = 0;
1099
Stefan Behrens63a212a2012-11-05 18:29:28 +01001100 if (start >= device->total_bytes || device->is_tgtdev_for_dev_replace)
Miao Xie6d07bce2011-01-05 10:07:31 +00001101 return 0;
1102
Yan Zheng2b820322008-11-17 21:11:30 -05001103 path = btrfs_alloc_path();
1104 if (!path)
1105 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +01001106 path->reada = READA_FORWARD;
Chris Mason8f18cf12008-04-25 16:53:30 -04001107
Chris Mason0b86a832008-03-24 15:01:56 -04001108 key.objectid = device->devid;
Miao Xie6d07bce2011-01-05 10:07:31 +00001109 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001110 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie6d07bce2011-01-05 10:07:31 +00001111
1112 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001113 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001114 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -04001115 if (ret > 0) {
1116 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1117 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001118 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -04001119 }
Miao Xie6d07bce2011-01-05 10:07:31 +00001120
Chris Mason0b86a832008-03-24 15:01:56 -04001121 while (1) {
1122 l = path->nodes[0];
1123 slot = path->slots[0];
1124 if (slot >= btrfs_header_nritems(l)) {
1125 ret = btrfs_next_leaf(root, path);
1126 if (ret == 0)
1127 continue;
1128 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001129 goto out;
1130
1131 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001132 }
1133 btrfs_item_key_to_cpu(l, &key, slot);
1134
1135 if (key.objectid < device->devid)
1136 goto next;
1137
1138 if (key.objectid > device->devid)
Miao Xie6d07bce2011-01-05 10:07:31 +00001139 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001140
David Sterba962a2982014-06-04 18:41:45 +02001141 if (key.type != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -04001142 goto next;
Chris Mason0b86a832008-03-24 15:01:56 -04001143
Chris Mason0b86a832008-03-24 15:01:56 -04001144 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie6d07bce2011-01-05 10:07:31 +00001145 extent_end = key.offset + btrfs_dev_extent_length(l,
1146 dev_extent);
1147 if (key.offset <= start && extent_end > end) {
1148 *length = end - start + 1;
1149 break;
1150 } else if (key.offset <= start && extent_end > start)
1151 *length += extent_end - start;
1152 else if (key.offset > start && extent_end <= end)
1153 *length += extent_end - key.offset;
1154 else if (key.offset > start && key.offset <= end) {
1155 *length += end - key.offset + 1;
1156 break;
1157 } else if (key.offset > end)
1158 break;
1159
1160next:
1161 path->slots[0]++;
1162 }
1163 ret = 0;
1164out:
1165 btrfs_free_path(path);
1166 return ret;
1167}
1168
Jeff Mahoney499f3772015-06-15 09:41:17 -04001169static int contains_pending_extent(struct btrfs_transaction *transaction,
Josef Bacik6df9a952013-06-27 13:22:46 -04001170 struct btrfs_device *device,
1171 u64 *start, u64 len)
1172{
Jeff Mahoney499f3772015-06-15 09:41:17 -04001173 struct btrfs_fs_info *fs_info = device->dev_root->fs_info;
Josef Bacik6df9a952013-06-27 13:22:46 -04001174 struct extent_map *em;
Jeff Mahoney499f3772015-06-15 09:41:17 -04001175 struct list_head *search_list = &fs_info->pinned_chunks;
Josef Bacik6df9a952013-06-27 13:22:46 -04001176 int ret = 0;
Forrest Liu1b984502015-02-09 17:30:47 +08001177 u64 physical_start = *start;
Josef Bacik6df9a952013-06-27 13:22:46 -04001178
Jeff Mahoney499f3772015-06-15 09:41:17 -04001179 if (transaction)
1180 search_list = &transaction->pending_chunks;
Filipe Manana04216822014-11-27 21:14:15 +00001181again:
1182 list_for_each_entry(em, search_list, list) {
Josef Bacik6df9a952013-06-27 13:22:46 -04001183 struct map_lookup *map;
1184 int i;
1185
1186 map = (struct map_lookup *)em->bdev;
1187 for (i = 0; i < map->num_stripes; i++) {
Filipe Mananac152b632015-05-14 10:46:03 +01001188 u64 end;
1189
Josef Bacik6df9a952013-06-27 13:22:46 -04001190 if (map->stripes[i].dev != device)
1191 continue;
Forrest Liu1b984502015-02-09 17:30:47 +08001192 if (map->stripes[i].physical >= physical_start + len ||
Josef Bacik6df9a952013-06-27 13:22:46 -04001193 map->stripes[i].physical + em->orig_block_len <=
Forrest Liu1b984502015-02-09 17:30:47 +08001194 physical_start)
Josef Bacik6df9a952013-06-27 13:22:46 -04001195 continue;
Filipe Mananac152b632015-05-14 10:46:03 +01001196 /*
1197 * Make sure that while processing the pinned list we do
1198 * not override our *start with a lower value, because
1199 * we can have pinned chunks that fall within this
1200 * device hole and that have lower physical addresses
1201 * than the pending chunks we processed before. If we
1202 * do not take this special care we can end up getting
1203 * 2 pending chunks that start at the same physical
1204 * device offsets because the end offset of a pinned
1205 * chunk can be equal to the start offset of some
1206 * pending chunk.
1207 */
1208 end = map->stripes[i].physical + em->orig_block_len;
1209 if (end > *start) {
1210 *start = end;
1211 ret = 1;
1212 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001213 }
1214 }
Jeff Mahoney499f3772015-06-15 09:41:17 -04001215 if (search_list != &fs_info->pinned_chunks) {
1216 search_list = &fs_info->pinned_chunks;
Filipe Manana04216822014-11-27 21:14:15 +00001217 goto again;
1218 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001219
1220 return ret;
1221}
1222
1223
Chris Mason0b86a832008-03-24 15:01:56 -04001224/*
Jeff Mahoney499f3772015-06-15 09:41:17 -04001225 * find_free_dev_extent_start - find free space in the specified device
1226 * @device: the device which we search the free space in
1227 * @num_bytes: the size of the free space that we need
1228 * @search_start: the position from which to begin the search
1229 * @start: store the start of the free space.
1230 * @len: the size of the free space. that we find, or the size
1231 * of the max free space if we don't find suitable free space
Miao Xie7bfc8372011-01-05 10:07:26 +00001232 *
Chris Mason0b86a832008-03-24 15:01:56 -04001233 * this uses a pretty simple search, the expectation is that it is
1234 * called very infrequently and that a given device has a small number
1235 * of extents
Miao Xie7bfc8372011-01-05 10:07:26 +00001236 *
1237 * @start is used to store the start of the free space if we find. But if we
1238 * don't find suitable free space, it will be used to store the start position
1239 * of the max free space.
1240 *
1241 * @len is used to store the size of the free space that we find.
1242 * But if we don't find suitable free space, it is used to store the size of
1243 * the max free space.
Chris Mason0b86a832008-03-24 15:01:56 -04001244 */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001245int find_free_dev_extent_start(struct btrfs_transaction *transaction,
1246 struct btrfs_device *device, u64 num_bytes,
1247 u64 search_start, u64 *start, u64 *len)
Chris Mason0b86a832008-03-24 15:01:56 -04001248{
1249 struct btrfs_key key;
1250 struct btrfs_root *root = device->dev_root;
Miao Xie7bfc8372011-01-05 10:07:26 +00001251 struct btrfs_dev_extent *dev_extent;
Chris Mason0b86a832008-03-24 15:01:56 -04001252 struct btrfs_path *path;
Miao Xie7bfc8372011-01-05 10:07:26 +00001253 u64 hole_size;
1254 u64 max_hole_start;
1255 u64 max_hole_size;
1256 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001257 u64 search_end = device->total_bytes;
1258 int ret;
Miao Xie7bfc8372011-01-05 10:07:26 +00001259 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001260 struct extent_buffer *l;
1261
Josef Bacik6df9a952013-06-27 13:22:46 -04001262 path = btrfs_alloc_path();
1263 if (!path)
1264 return -ENOMEM;
Zhao Leif2ab7612015-02-16 18:52:17 +08001265
Miao Xie7bfc8372011-01-05 10:07:26 +00001266 max_hole_start = search_start;
1267 max_hole_size = 0;
1268
Zhao Leif2ab7612015-02-16 18:52:17 +08001269again:
Stefan Behrens63a212a2012-11-05 18:29:28 +01001270 if (search_start >= search_end || device->is_tgtdev_for_dev_replace) {
Miao Xie7bfc8372011-01-05 10:07:26 +00001271 ret = -ENOSPC;
Josef Bacik6df9a952013-06-27 13:22:46 -04001272 goto out;
Miao Xie7bfc8372011-01-05 10:07:26 +00001273 }
1274
David Sterbae4058b52015-11-27 16:31:35 +01001275 path->reada = READA_FORWARD;
Josef Bacik6df9a952013-06-27 13:22:46 -04001276 path->search_commit_root = 1;
1277 path->skip_locking = 1;
Miao Xie7bfc8372011-01-05 10:07:26 +00001278
Chris Mason0b86a832008-03-24 15:01:56 -04001279 key.objectid = device->devid;
1280 key.offset = search_start;
1281 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie7bfc8372011-01-05 10:07:26 +00001282
Li Zefan125ccb02011-12-08 15:07:24 +08001283 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001284 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001285 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001286 if (ret > 0) {
1287 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1288 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001289 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001290 }
Miao Xie7bfc8372011-01-05 10:07:26 +00001291
Chris Mason0b86a832008-03-24 15:01:56 -04001292 while (1) {
1293 l = path->nodes[0];
1294 slot = path->slots[0];
1295 if (slot >= btrfs_header_nritems(l)) {
1296 ret = btrfs_next_leaf(root, path);
1297 if (ret == 0)
1298 continue;
1299 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001300 goto out;
1301
1302 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001303 }
1304 btrfs_item_key_to_cpu(l, &key, slot);
1305
1306 if (key.objectid < device->devid)
1307 goto next;
1308
1309 if (key.objectid > device->devid)
Miao Xie7bfc8372011-01-05 10:07:26 +00001310 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001311
David Sterba962a2982014-06-04 18:41:45 +02001312 if (key.type != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -04001313 goto next;
1314
Miao Xie7bfc8372011-01-05 10:07:26 +00001315 if (key.offset > search_start) {
1316 hole_size = key.offset - search_start;
1317
Josef Bacik6df9a952013-06-27 13:22:46 -04001318 /*
1319 * Have to check before we set max_hole_start, otherwise
1320 * we could end up sending back this offset anyway.
1321 */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001322 if (contains_pending_extent(transaction, device,
Josef Bacik6df9a952013-06-27 13:22:46 -04001323 &search_start,
Forrest Liu1b984502015-02-09 17:30:47 +08001324 hole_size)) {
1325 if (key.offset >= search_start) {
1326 hole_size = key.offset - search_start;
1327 } else {
1328 WARN_ON_ONCE(1);
1329 hole_size = 0;
1330 }
1331 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001332
Miao Xie7bfc8372011-01-05 10:07:26 +00001333 if (hole_size > max_hole_size) {
1334 max_hole_start = search_start;
1335 max_hole_size = hole_size;
1336 }
1337
1338 /*
1339 * If this free space is greater than which we need,
1340 * it must be the max free space that we have found
1341 * until now, so max_hole_start must point to the start
1342 * of this free space and the length of this free space
1343 * is stored in max_hole_size. Thus, we return
1344 * max_hole_start and max_hole_size and go back to the
1345 * caller.
1346 */
1347 if (hole_size >= num_bytes) {
1348 ret = 0;
1349 goto out;
1350 }
1351 }
1352
Chris Mason0b86a832008-03-24 15:01:56 -04001353 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie7bfc8372011-01-05 10:07:26 +00001354 extent_end = key.offset + btrfs_dev_extent_length(l,
1355 dev_extent);
1356 if (extent_end > search_start)
1357 search_start = extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001358next:
1359 path->slots[0]++;
1360 cond_resched();
1361 }
Chris Mason0b86a832008-03-24 15:01:56 -04001362
liubo38c01b92011-08-02 02:39:03 +00001363 /*
1364 * At this point, search_start should be the end of
1365 * allocated dev extents, and when shrinking the device,
1366 * search_end may be smaller than search_start.
1367 */
Zhao Leif2ab7612015-02-16 18:52:17 +08001368 if (search_end > search_start) {
liubo38c01b92011-08-02 02:39:03 +00001369 hole_size = search_end - search_start;
1370
Jeff Mahoney499f3772015-06-15 09:41:17 -04001371 if (contains_pending_extent(transaction, device, &search_start,
Zhao Leif2ab7612015-02-16 18:52:17 +08001372 hole_size)) {
1373 btrfs_release_path(path);
1374 goto again;
1375 }
Chris Mason0b86a832008-03-24 15:01:56 -04001376
Zhao Leif2ab7612015-02-16 18:52:17 +08001377 if (hole_size > max_hole_size) {
1378 max_hole_start = search_start;
1379 max_hole_size = hole_size;
1380 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001381 }
1382
Miao Xie7bfc8372011-01-05 10:07:26 +00001383 /* See above. */
Zhao Leif2ab7612015-02-16 18:52:17 +08001384 if (max_hole_size < num_bytes)
Miao Xie7bfc8372011-01-05 10:07:26 +00001385 ret = -ENOSPC;
1386 else
1387 ret = 0;
1388
1389out:
Yan Zheng2b820322008-11-17 21:11:30 -05001390 btrfs_free_path(path);
Miao Xie7bfc8372011-01-05 10:07:26 +00001391 *start = max_hole_start;
Miao Xieb2117a32011-01-05 10:07:28 +00001392 if (len)
Miao Xie7bfc8372011-01-05 10:07:26 +00001393 *len = max_hole_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001394 return ret;
1395}
1396
Jeff Mahoney499f3772015-06-15 09:41:17 -04001397int find_free_dev_extent(struct btrfs_trans_handle *trans,
1398 struct btrfs_device *device, u64 num_bytes,
1399 u64 *start, u64 *len)
1400{
1401 struct btrfs_root *root = device->dev_root;
1402 u64 search_start;
1403
1404 /* FIXME use last free of some kind */
1405
1406 /*
1407 * we don't want to overwrite the superblock on the drive,
1408 * so we make sure to start at an offset of at least 1MB
1409 */
1410 search_start = max(root->fs_info->alloc_start, 1024ull * 1024);
1411 return find_free_dev_extent_start(trans->transaction, device,
1412 num_bytes, search_start, start, len);
1413}
1414
Christoph Hellwigb2950862008-12-02 09:54:17 -05001415static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04001416 struct btrfs_device *device,
Miao Xie2196d6e2014-09-03 21:35:41 +08001417 u64 start, u64 *dev_extent_len)
Chris Mason8f18cf12008-04-25 16:53:30 -04001418{
1419 int ret;
1420 struct btrfs_path *path;
1421 struct btrfs_root *root = device->dev_root;
1422 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001423 struct btrfs_key found_key;
1424 struct extent_buffer *leaf = NULL;
1425 struct btrfs_dev_extent *extent = NULL;
Chris Mason8f18cf12008-04-25 16:53:30 -04001426
1427 path = btrfs_alloc_path();
1428 if (!path)
1429 return -ENOMEM;
1430
1431 key.objectid = device->devid;
1432 key.offset = start;
1433 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie924cd8f2011-11-10 20:45:04 -05001434again:
Chris Mason8f18cf12008-04-25 16:53:30 -04001435 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Chris Masona061fc82008-05-07 11:43:44 -04001436 if (ret > 0) {
1437 ret = btrfs_previous_item(root, path, key.objectid,
1438 BTRFS_DEV_EXTENT_KEY);
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001439 if (ret)
1440 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001441 leaf = path->nodes[0];
1442 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1443 extent = btrfs_item_ptr(leaf, path->slots[0],
1444 struct btrfs_dev_extent);
1445 BUG_ON(found_key.offset > start || found_key.offset +
1446 btrfs_dev_extent_length(leaf, extent) < start);
Miao Xie924cd8f2011-11-10 20:45:04 -05001447 key = found_key;
1448 btrfs_release_path(path);
1449 goto again;
Chris Masona061fc82008-05-07 11:43:44 -04001450 } else if (ret == 0) {
1451 leaf = path->nodes[0];
1452 extent = btrfs_item_ptr(leaf, path->slots[0],
1453 struct btrfs_dev_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001454 } else {
Anand Jaina4553fe2015-09-25 14:43:01 +08001455 btrfs_std_error(root->fs_info, ret, "Slot search failed");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001456 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001457 }
Chris Mason8f18cf12008-04-25 16:53:30 -04001458
Miao Xie2196d6e2014-09-03 21:35:41 +08001459 *dev_extent_len = btrfs_dev_extent_length(leaf, extent);
1460
Chris Mason8f18cf12008-04-25 16:53:30 -04001461 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001462 if (ret) {
Anand Jaina4553fe2015-09-25 14:43:01 +08001463 btrfs_std_error(root->fs_info, ret,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001464 "Failed to remove dev extent item");
Zhao Lei13212b52015-02-12 14:18:17 +08001465 } else {
Josef Bacik3204d332015-09-24 10:46:10 -04001466 set_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001467 }
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001468out:
Chris Mason8f18cf12008-04-25 16:53:30 -04001469 btrfs_free_path(path);
1470 return ret;
1471}
1472
Eric Sandeen48a3b632013-04-25 20:41:01 +00001473static int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans,
1474 struct btrfs_device *device,
1475 u64 chunk_tree, u64 chunk_objectid,
1476 u64 chunk_offset, u64 start, u64 num_bytes)
Chris Mason0b86a832008-03-24 15:01:56 -04001477{
1478 int ret;
1479 struct btrfs_path *path;
1480 struct btrfs_root *root = device->dev_root;
1481 struct btrfs_dev_extent *extent;
1482 struct extent_buffer *leaf;
1483 struct btrfs_key key;
1484
Chris Masondfe25022008-05-13 13:46:40 -04001485 WARN_ON(!device->in_fs_metadata);
Stefan Behrens63a212a2012-11-05 18:29:28 +01001486 WARN_ON(device->is_tgtdev_for_dev_replace);
Chris Mason0b86a832008-03-24 15:01:56 -04001487 path = btrfs_alloc_path();
1488 if (!path)
1489 return -ENOMEM;
1490
Chris Mason0b86a832008-03-24 15:01:56 -04001491 key.objectid = device->devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001492 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001493 key.type = BTRFS_DEV_EXTENT_KEY;
1494 ret = btrfs_insert_empty_item(trans, root, path, &key,
1495 sizeof(*extent));
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001496 if (ret)
1497 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001498
1499 leaf = path->nodes[0];
1500 extent = btrfs_item_ptr(leaf, path->slots[0],
1501 struct btrfs_dev_extent);
Chris Masone17cade2008-04-15 15:41:47 -04001502 btrfs_set_dev_extent_chunk_tree(leaf, extent, chunk_tree);
1503 btrfs_set_dev_extent_chunk_objectid(leaf, extent, chunk_objectid);
1504 btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset);
1505
1506 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
Geert Uytterhoeven231e88f2013-08-20 13:20:13 +02001507 btrfs_dev_extent_chunk_tree_uuid(extent), BTRFS_UUID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04001508
Chris Mason0b86a832008-03-24 15:01:56 -04001509 btrfs_set_dev_extent_length(leaf, extent, num_bytes);
1510 btrfs_mark_buffer_dirty(leaf);
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001511out:
Chris Mason0b86a832008-03-24 15:01:56 -04001512 btrfs_free_path(path);
1513 return ret;
1514}
1515
Josef Bacik6df9a952013-06-27 13:22:46 -04001516static u64 find_next_chunk(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04001517{
Josef Bacik6df9a952013-06-27 13:22:46 -04001518 struct extent_map_tree *em_tree;
1519 struct extent_map *em;
1520 struct rb_node *n;
1521 u64 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001522
Josef Bacik6df9a952013-06-27 13:22:46 -04001523 em_tree = &fs_info->mapping_tree.map_tree;
1524 read_lock(&em_tree->lock);
1525 n = rb_last(&em_tree->map);
1526 if (n) {
1527 em = rb_entry(n, struct extent_map, rb_node);
1528 ret = em->start + em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04001529 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001530 read_unlock(&em_tree->lock);
1531
Chris Mason0b86a832008-03-24 15:01:56 -04001532 return ret;
1533}
1534
Ilya Dryomov53f10652013-08-12 14:33:01 +03001535static noinline int find_next_devid(struct btrfs_fs_info *fs_info,
1536 u64 *devid_ret)
Chris Mason0b86a832008-03-24 15:01:56 -04001537{
1538 int ret;
1539 struct btrfs_key key;
1540 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05001541 struct btrfs_path *path;
1542
Yan Zheng2b820322008-11-17 21:11:30 -05001543 path = btrfs_alloc_path();
1544 if (!path)
1545 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -04001546
1547 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1548 key.type = BTRFS_DEV_ITEM_KEY;
1549 key.offset = (u64)-1;
1550
Ilya Dryomov53f10652013-08-12 14:33:01 +03001551 ret = btrfs_search_slot(NULL, fs_info->chunk_root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001552 if (ret < 0)
1553 goto error;
1554
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001555 BUG_ON(ret == 0); /* Corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04001556
Ilya Dryomov53f10652013-08-12 14:33:01 +03001557 ret = btrfs_previous_item(fs_info->chunk_root, path,
1558 BTRFS_DEV_ITEMS_OBJECTID,
Chris Mason0b86a832008-03-24 15:01:56 -04001559 BTRFS_DEV_ITEM_KEY);
1560 if (ret) {
Ilya Dryomov53f10652013-08-12 14:33:01 +03001561 *devid_ret = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001562 } else {
1563 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1564 path->slots[0]);
Ilya Dryomov53f10652013-08-12 14:33:01 +03001565 *devid_ret = found_key.offset + 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001566 }
1567 ret = 0;
1568error:
Yan Zheng2b820322008-11-17 21:11:30 -05001569 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04001570 return ret;
1571}
1572
1573/*
1574 * the device information is stored in the chunk root
1575 * the btrfs_device struct should be fully filled in
1576 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001577static int btrfs_add_device(struct btrfs_trans_handle *trans,
1578 struct btrfs_root *root,
1579 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04001580{
1581 int ret;
1582 struct btrfs_path *path;
1583 struct btrfs_dev_item *dev_item;
1584 struct extent_buffer *leaf;
1585 struct btrfs_key key;
1586 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04001587
1588 root = root->fs_info->chunk_root;
1589
1590 path = btrfs_alloc_path();
1591 if (!path)
1592 return -ENOMEM;
1593
Chris Mason0b86a832008-03-24 15:01:56 -04001594 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1595 key.type = BTRFS_DEV_ITEM_KEY;
Yan Zheng2b820322008-11-17 21:11:30 -05001596 key.offset = device->devid;
Chris Mason0b86a832008-03-24 15:01:56 -04001597
1598 ret = btrfs_insert_empty_item(trans, root, path, &key,
Chris Mason0d81ba52008-03-24 15:02:07 -04001599 sizeof(*dev_item));
Chris Mason0b86a832008-03-24 15:01:56 -04001600 if (ret)
1601 goto out;
1602
1603 leaf = path->nodes[0];
1604 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1605
1606 btrfs_set_device_id(leaf, dev_item, device->devid);
Yan Zheng2b820322008-11-17 21:11:30 -05001607 btrfs_set_device_generation(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001608 btrfs_set_device_type(leaf, dev_item, device->type);
1609 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1610 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1611 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08001612 btrfs_set_device_total_bytes(leaf, dev_item,
1613 btrfs_device_get_disk_total_bytes(device));
1614 btrfs_set_device_bytes_used(leaf, dev_item,
1615 btrfs_device_get_bytes_used(device));
Chris Masone17cade2008-04-15 15:41:47 -04001616 btrfs_set_device_group(leaf, dev_item, 0);
1617 btrfs_set_device_seek_speed(leaf, dev_item, 0);
1618 btrfs_set_device_bandwidth(leaf, dev_item, 0);
Chris Masonc3027eb2008-12-08 16:40:21 -05001619 btrfs_set_device_start_offset(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001620
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02001621 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04001622 write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02001623 ptr = btrfs_device_fsid(dev_item);
Yan Zheng2b820322008-11-17 21:11:30 -05001624 write_extent_buffer(leaf, root->fs_info->fsid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001625 btrfs_mark_buffer_dirty(leaf);
Chris Mason0b86a832008-03-24 15:01:56 -04001626
Yan Zheng2b820322008-11-17 21:11:30 -05001627 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001628out:
1629 btrfs_free_path(path);
1630 return ret;
1631}
Chris Mason8f18cf12008-04-25 16:53:30 -04001632
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001633/*
1634 * Function to update ctime/mtime for a given device path.
1635 * Mainly used for ctime/mtime based probe like libblkid.
1636 */
1637static void update_dev_time(char *path_name)
1638{
1639 struct file *filp;
1640
1641 filp = filp_open(path_name, O_RDWR, 0);
Al Viro98af5922014-12-14 02:59:17 -05001642 if (IS_ERR(filp))
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001643 return;
1644 file_update_time(filp);
1645 filp_close(filp, NULL);
1646 return;
1647}
1648
Chris Masona061fc82008-05-07 11:43:44 -04001649static int btrfs_rm_dev_item(struct btrfs_root *root,
1650 struct btrfs_device *device)
1651{
1652 int ret;
1653 struct btrfs_path *path;
Chris Masona061fc82008-05-07 11:43:44 -04001654 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001655 struct btrfs_trans_handle *trans;
1656
1657 root = root->fs_info->chunk_root;
1658
1659 path = btrfs_alloc_path();
1660 if (!path)
1661 return -ENOMEM;
1662
Yan, Zhenga22285a2010-05-16 10:48:46 -04001663 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001664 if (IS_ERR(trans)) {
1665 btrfs_free_path(path);
1666 return PTR_ERR(trans);
1667 }
Chris Masona061fc82008-05-07 11:43:44 -04001668 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1669 key.type = BTRFS_DEV_ITEM_KEY;
1670 key.offset = device->devid;
1671
1672 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1673 if (ret < 0)
1674 goto out;
1675
1676 if (ret > 0) {
1677 ret = -ENOENT;
1678 goto out;
1679 }
1680
1681 ret = btrfs_del_item(trans, root, path);
1682 if (ret)
1683 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001684out:
1685 btrfs_free_path(path);
1686 btrfs_commit_transaction(trans, root);
1687 return ret;
1688}
1689
1690int btrfs_rm_device(struct btrfs_root *root, char *device_path)
1691{
1692 struct btrfs_device *device;
Yan Zheng2b820322008-11-17 21:11:30 -05001693 struct btrfs_device *next_device;
Chris Masona061fc82008-05-07 11:43:44 -04001694 struct block_device *bdev;
Chris Masondfe25022008-05-13 13:46:40 -04001695 struct buffer_head *bh = NULL;
Chris Masona061fc82008-05-07 11:43:44 -04001696 struct btrfs_super_block *disk_super;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001697 struct btrfs_fs_devices *cur_devices;
Chris Masona061fc82008-05-07 11:43:44 -04001698 u64 all_avail;
1699 u64 devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001700 u64 num_devices;
1701 u8 *dev_uuid;
Miao Xiede98ced2013-01-29 10:13:12 +00001702 unsigned seq;
Chris Masona061fc82008-05-07 11:43:44 -04001703 int ret = 0;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001704 bool clear_super = false;
Chris Masona061fc82008-05-07 11:43:44 -04001705
Chris Masona061fc82008-05-07 11:43:44 -04001706 mutex_lock(&uuid_mutex);
1707
Miao Xiede98ced2013-01-29 10:13:12 +00001708 do {
1709 seq = read_seqbegin(&root->fs_info->profiles_lock);
1710
1711 all_avail = root->fs_info->avail_data_alloc_bits |
1712 root->fs_info->avail_system_alloc_bits |
1713 root->fs_info->avail_metadata_alloc_bits;
1714 } while (read_seqretry(&root->fs_info->profiles_lock, seq));
Chris Masona061fc82008-05-07 11:43:44 -04001715
Stefan Behrens8dabb742012-11-06 13:15:27 +01001716 num_devices = root->fs_info->fs_devices->num_devices;
1717 btrfs_dev_replace_lock(&root->fs_info->dev_replace);
1718 if (btrfs_dev_replace_is_ongoing(&root->fs_info->dev_replace)) {
1719 WARN_ON(num_devices < 1);
1720 num_devices--;
1721 }
1722 btrfs_dev_replace_unlock(&root->fs_info->dev_replace);
1723
1724 if ((all_avail & BTRFS_BLOCK_GROUP_RAID10) && num_devices <= 4) {
Anand Jain183860f2013-05-17 10:52:45 +00001725 ret = BTRFS_ERROR_DEV_RAID10_MIN_NOT_MET;
Chris Masona061fc82008-05-07 11:43:44 -04001726 goto out;
1727 }
1728
Stefan Behrens8dabb742012-11-06 13:15:27 +01001729 if ((all_avail & BTRFS_BLOCK_GROUP_RAID1) && num_devices <= 2) {
Anand Jain183860f2013-05-17 10:52:45 +00001730 ret = BTRFS_ERROR_DEV_RAID1_MIN_NOT_MET;
Chris Masona061fc82008-05-07 11:43:44 -04001731 goto out;
1732 }
1733
David Woodhouse53b381b2013-01-29 18:40:14 -05001734 if ((all_avail & BTRFS_BLOCK_GROUP_RAID5) &&
1735 root->fs_info->fs_devices->rw_devices <= 2) {
Anand Jain183860f2013-05-17 10:52:45 +00001736 ret = BTRFS_ERROR_DEV_RAID5_MIN_NOT_MET;
David Woodhouse53b381b2013-01-29 18:40:14 -05001737 goto out;
1738 }
1739 if ((all_avail & BTRFS_BLOCK_GROUP_RAID6) &&
1740 root->fs_info->fs_devices->rw_devices <= 3) {
Anand Jain183860f2013-05-17 10:52:45 +00001741 ret = BTRFS_ERROR_DEV_RAID6_MIN_NOT_MET;
David Woodhouse53b381b2013-01-29 18:40:14 -05001742 goto out;
1743 }
1744
Chris Masondfe25022008-05-13 13:46:40 -04001745 if (strcmp(device_path, "missing") == 0) {
Chris Masondfe25022008-05-13 13:46:40 -04001746 struct list_head *devices;
1747 struct btrfs_device *tmp;
Chris Masona061fc82008-05-07 11:43:44 -04001748
Chris Masondfe25022008-05-13 13:46:40 -04001749 device = NULL;
1750 devices = &root->fs_info->fs_devices->devices;
Xiao Guangrong46224702011-04-20 10:08:47 +00001751 /*
1752 * It is safe to read the devices since the volume_mutex
1753 * is held.
1754 */
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001755 list_for_each_entry(tmp, devices, dev_list) {
Stefan Behrens63a212a2012-11-05 18:29:28 +01001756 if (tmp->in_fs_metadata &&
1757 !tmp->is_tgtdev_for_dev_replace &&
1758 !tmp->bdev) {
Chris Masondfe25022008-05-13 13:46:40 -04001759 device = tmp;
1760 break;
1761 }
1762 }
1763 bdev = NULL;
1764 bh = NULL;
1765 disk_super = NULL;
1766 if (!device) {
Anand Jain183860f2013-05-17 10:52:45 +00001767 ret = BTRFS_ERROR_DEV_MISSING_NOT_FOUND;
Chris Masondfe25022008-05-13 13:46:40 -04001768 goto out;
1769 }
Chris Masondfe25022008-05-13 13:46:40 -04001770 } else {
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001771 ret = btrfs_get_bdev_and_sb(device_path,
Lukas Czernercc975eb2012-12-07 10:09:19 +00001772 FMODE_WRITE | FMODE_EXCL,
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001773 root->fs_info->bdev_holder, 0,
1774 &bdev, &bh);
1775 if (ret)
Chris Masondfe25022008-05-13 13:46:40 -04001776 goto out;
Chris Masondfe25022008-05-13 13:46:40 -04001777 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +00001778 devid = btrfs_stack_device_id(&disk_super->dev_item);
Yan Zheng2b820322008-11-17 21:11:30 -05001779 dev_uuid = disk_super->dev_item.uuid;
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001780 device = btrfs_find_device(root->fs_info, devid, dev_uuid,
Yan Zheng2b820322008-11-17 21:11:30 -05001781 disk_super->fsid);
Chris Masondfe25022008-05-13 13:46:40 -04001782 if (!device) {
1783 ret = -ENOENT;
1784 goto error_brelse;
1785 }
Chris Masondfe25022008-05-13 13:46:40 -04001786 }
Yan Zheng2b820322008-11-17 21:11:30 -05001787
Stefan Behrens63a212a2012-11-05 18:29:28 +01001788 if (device->is_tgtdev_for_dev_replace) {
Anand Jain183860f2013-05-17 10:52:45 +00001789 ret = BTRFS_ERROR_DEV_TGT_REPLACE;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001790 goto error_brelse;
1791 }
1792
Yan Zheng2b820322008-11-17 21:11:30 -05001793 if (device->writeable && root->fs_info->fs_devices->rw_devices == 1) {
Anand Jain183860f2013-05-17 10:52:45 +00001794 ret = BTRFS_ERROR_DEV_ONLY_WRITABLE;
Yan Zheng2b820322008-11-17 21:11:30 -05001795 goto error_brelse;
1796 }
1797
1798 if (device->writeable) {
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001799 lock_chunks(root);
Yan Zheng2b820322008-11-17 21:11:30 -05001800 list_del_init(&device->dev_alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08001801 device->fs_devices->rw_devices--;
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001802 unlock_chunks(root);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001803 clear_super = true;
Yan Zheng2b820322008-11-17 21:11:30 -05001804 }
Chris Masona061fc82008-05-07 11:43:44 -04001805
Carey Underwoodd7901552013-03-04 16:37:06 -06001806 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001807 ret = btrfs_shrink_device(device, 0);
Carey Underwoodd7901552013-03-04 16:37:06 -06001808 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001809 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001810 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001811
Stefan Behrens63a212a2012-11-05 18:29:28 +01001812 /*
1813 * TODO: the superblock still includes this device in its num_devices
1814 * counter although write_all_supers() is not locked out. This
1815 * could give a filesystem state which requires a degraded mount.
1816 */
Chris Masona061fc82008-05-07 11:43:44 -04001817 ret = btrfs_rm_dev_item(root->fs_info->chunk_root, device);
1818 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001819 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001820
Yan Zheng2b820322008-11-17 21:11:30 -05001821 device->in_fs_metadata = 0;
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001822 btrfs_scrub_cancel_dev(root->fs_info, device);
Chris Masone5e9a522009-06-10 15:17:02 -04001823
1824 /*
1825 * the device list mutex makes sure that we don't change
1826 * the device list while someone else is writing out all
Filipe David Borba Mananad7306802013-08-09 15:41:36 +01001827 * the device supers. Whoever is writing all supers, should
1828 * lock the device list mutex before getting the number of
1829 * devices in the super block (super_copy). Conversely,
1830 * whoever updates the number of devices in the super block
1831 * (super_copy) should hold the device list mutex.
Chris Masone5e9a522009-06-10 15:17:02 -04001832 */
Xiao Guangrong1f781602011-04-20 10:09:16 +00001833
1834 cur_devices = device->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04001835 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001836 list_del_rcu(&device->dev_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001837
Yan Zhenge4404d62008-12-12 10:03:26 -05001838 device->fs_devices->num_devices--;
Josef Bacik02db0842012-06-21 16:03:58 -04001839 device->fs_devices->total_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -05001840
Chris Masoncd02dca2010-12-13 14:56:23 -05001841 if (device->missing)
Miao Xie3a7d55c2014-07-16 18:38:01 +08001842 device->fs_devices->missing_devices--;
Chris Masoncd02dca2010-12-13 14:56:23 -05001843
Yan Zheng2b820322008-11-17 21:11:30 -05001844 next_device = list_entry(root->fs_info->fs_devices->devices.next,
1845 struct btrfs_device, dev_list);
1846 if (device->bdev == root->fs_info->sb->s_bdev)
1847 root->fs_info->sb->s_bdev = next_device->bdev;
1848 if (device->bdev == root->fs_info->fs_devices->latest_bdev)
1849 root->fs_info->fs_devices->latest_bdev = next_device->bdev;
1850
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001851 if (device->bdev) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001852 device->fs_devices->open_devices--;
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001853 /* remove sysfs entry */
Anand Jain32576042015-08-14 18:32:49 +08001854 btrfs_sysfs_rm_device_link(root->fs_info->fs_devices, device);
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001855 }
Anand Jain99994cd2014-06-03 11:36:00 +08001856
Xiao Guangrong1f781602011-04-20 10:09:16 +00001857 call_rcu(&device->rcu, free_device);
Yan Zhenge4404d62008-12-12 10:03:26 -05001858
David Sterba6c417612011-04-13 15:41:04 +02001859 num_devices = btrfs_super_num_devices(root->fs_info->super_copy) - 1;
1860 btrfs_set_super_num_devices(root->fs_info->super_copy, num_devices);
Filipe David Borba Mananad7306802013-08-09 15:41:36 +01001861 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001862
Xiao Guangrong1f781602011-04-20 10:09:16 +00001863 if (cur_devices->open_devices == 0) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001864 struct btrfs_fs_devices *fs_devices;
1865 fs_devices = root->fs_info->fs_devices;
1866 while (fs_devices) {
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02001867 if (fs_devices->seed == cur_devices) {
1868 fs_devices->seed = cur_devices->seed;
Yan Zhenge4404d62008-12-12 10:03:26 -05001869 break;
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02001870 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001871 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05001872 }
Xiao Guangrong1f781602011-04-20 10:09:16 +00001873 cur_devices->seed = NULL;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001874 __btrfs_close_devices(cur_devices);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001875 free_fs_devices(cur_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001876 }
1877
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02001878 root->fs_info->num_tolerated_disk_barrier_failures =
1879 btrfs_calc_num_tolerated_disk_barrier_failures(root->fs_info);
1880
Yan Zheng2b820322008-11-17 21:11:30 -05001881 /*
1882 * at this point, the device is zero sized. We want to
1883 * remove it from the devices list and zero out the old super
1884 */
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001885 if (clear_super && disk_super) {
Anand Jain4d90d282014-04-06 12:59:07 +08001886 u64 bytenr;
1887 int i;
1888
Chris Masondfe25022008-05-13 13:46:40 -04001889 /* make sure this device isn't detected as part of
1890 * the FS anymore
1891 */
1892 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
1893 set_buffer_dirty(bh);
1894 sync_dirty_buffer(bh);
Anand Jain4d90d282014-04-06 12:59:07 +08001895
1896 /* clear the mirror copies of super block on the disk
1897 * being removed, 0th copy is been taken care above and
1898 * the below would take of the rest
1899 */
1900 for (i = 1; i < BTRFS_SUPER_MIRROR_MAX; i++) {
1901 bytenr = btrfs_sb_offset(i);
1902 if (bytenr + BTRFS_SUPER_INFO_SIZE >=
1903 i_size_read(bdev->bd_inode))
1904 break;
1905
1906 brelse(bh);
1907 bh = __bread(bdev, bytenr / 4096,
1908 BTRFS_SUPER_INFO_SIZE);
1909 if (!bh)
1910 continue;
1911
1912 disk_super = (struct btrfs_super_block *)bh->b_data;
1913
1914 if (btrfs_super_bytenr(disk_super) != bytenr ||
1915 btrfs_super_magic(disk_super) != BTRFS_MAGIC) {
1916 continue;
1917 }
1918 memset(&disk_super->magic, 0,
1919 sizeof(disk_super->magic));
1920 set_buffer_dirty(bh);
1921 sync_dirty_buffer(bh);
1922 }
Chris Masondfe25022008-05-13 13:46:40 -04001923 }
Chris Masona061fc82008-05-07 11:43:44 -04001924
Chris Masona061fc82008-05-07 11:43:44 -04001925 ret = 0;
Chris Masona061fc82008-05-07 11:43:44 -04001926
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001927 if (bdev) {
1928 /* Notify udev that device has changed */
Eric Sandeen3c911602013-01-31 00:55:02 +00001929 btrfs_kobject_uevent(bdev, KOBJ_CHANGE);
Lukas Czernerb8b8ff52012-12-06 19:25:48 +00001930
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001931 /* Update ctime/mtime for device path for libblkid */
1932 update_dev_time(device_path);
1933 }
1934
Chris Masona061fc82008-05-07 11:43:44 -04001935error_brelse:
1936 brelse(bh);
Chris Masondfe25022008-05-13 13:46:40 -04001937 if (bdev)
Tejun Heoe525fd82010-11-13 11:55:17 +01001938 blkdev_put(bdev, FMODE_READ | FMODE_EXCL);
Chris Masona061fc82008-05-07 11:43:44 -04001939out:
1940 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001941 return ret;
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001942error_undo:
1943 if (device->writeable) {
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001944 lock_chunks(root);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001945 list_add(&device->dev_alloc_list,
1946 &root->fs_info->fs_devices->alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08001947 device->fs_devices->rw_devices++;
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001948 unlock_chunks(root);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001949 }
1950 goto error_brelse;
Chris Masona061fc82008-05-07 11:43:44 -04001951}
1952
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08001953void btrfs_rm_dev_replace_remove_srcdev(struct btrfs_fs_info *fs_info,
1954 struct btrfs_device *srcdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01001955{
Anand Jaind51908c2014-08-13 14:24:19 +08001956 struct btrfs_fs_devices *fs_devices;
1957
Stefan Behrense93c89c2012-11-05 17:33:06 +01001958 WARN_ON(!mutex_is_locked(&fs_info->fs_devices->device_list_mutex));
Ilya Dryomov13572722013-10-02 20:41:01 +03001959
Anand Jain25e8e912014-08-20 10:56:56 +08001960 /*
1961 * in case of fs with no seed, srcdev->fs_devices will point
1962 * to fs_devices of fs_info. However when the dev being replaced is
1963 * a seed dev it will point to the seed's local fs_devices. In short
1964 * srcdev will have its correct fs_devices in both the cases.
1965 */
1966 fs_devices = srcdev->fs_devices;
Anand Jaind51908c2014-08-13 14:24:19 +08001967
Stefan Behrense93c89c2012-11-05 17:33:06 +01001968 list_del_rcu(&srcdev->dev_list);
1969 list_del_rcu(&srcdev->dev_alloc_list);
Anand Jaind51908c2014-08-13 14:24:19 +08001970 fs_devices->num_devices--;
Miao Xie82372bc2014-09-03 21:35:44 +08001971 if (srcdev->missing)
Anand Jaind51908c2014-08-13 14:24:19 +08001972 fs_devices->missing_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01001973
Miao Xie82372bc2014-09-03 21:35:44 +08001974 if (srcdev->writeable) {
1975 fs_devices->rw_devices--;
1976 /* zero out the old super if it is writable */
David Sterba31388ab2015-11-19 11:35:17 +01001977 btrfs_scratch_superblocks(srcdev->bdev, srcdev->name->str);
Ilya Dryomov13572722013-10-02 20:41:01 +03001978 }
1979
Miao Xie82372bc2014-09-03 21:35:44 +08001980 if (srcdev->bdev)
Anand Jaind51908c2014-08-13 14:24:19 +08001981 fs_devices->open_devices--;
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08001982}
1983
1984void btrfs_rm_dev_replace_free_srcdev(struct btrfs_fs_info *fs_info,
1985 struct btrfs_device *srcdev)
1986{
1987 struct btrfs_fs_devices *fs_devices = srcdev->fs_devices;
Stefan Behrense93c89c2012-11-05 17:33:06 +01001988
Stefan Behrense93c89c2012-11-05 17:33:06 +01001989 call_rcu(&srcdev->rcu, free_device);
Anand Jain94d5f0c2014-08-13 14:24:22 +08001990
1991 /*
1992 * unless fs_devices is seed fs, num_devices shouldn't go
1993 * zero
1994 */
1995 BUG_ON(!fs_devices->num_devices && !fs_devices->seeding);
1996
1997 /* if this is no devs we rather delete the fs_devices */
1998 if (!fs_devices->num_devices) {
1999 struct btrfs_fs_devices *tmp_fs_devices;
2000
2001 tmp_fs_devices = fs_info->fs_devices;
2002 while (tmp_fs_devices) {
2003 if (tmp_fs_devices->seed == fs_devices) {
2004 tmp_fs_devices->seed = fs_devices->seed;
2005 break;
2006 }
2007 tmp_fs_devices = tmp_fs_devices->seed;
2008 }
2009 fs_devices->seed = NULL;
Anand Jain8bef8402014-08-13 14:24:23 +08002010 __btrfs_close_devices(fs_devices);
2011 free_fs_devices(fs_devices);
Anand Jain94d5f0c2014-08-13 14:24:22 +08002012 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002013}
2014
2015void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
2016 struct btrfs_device *tgtdev)
2017{
2018 struct btrfs_device *next_device;
2019
Miao Xie67a2c452014-09-03 21:35:43 +08002020 mutex_lock(&uuid_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002021 WARN_ON(!tgtdev);
2022 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Anand Jaind2ff1b22015-03-10 06:38:42 +08002023
Anand Jain32576042015-08-14 18:32:49 +08002024 btrfs_sysfs_rm_device_link(fs_info->fs_devices, tgtdev);
Anand Jaind2ff1b22015-03-10 06:38:42 +08002025
Stefan Behrense93c89c2012-11-05 17:33:06 +01002026 if (tgtdev->bdev) {
David Sterba31388ab2015-11-19 11:35:17 +01002027 btrfs_scratch_superblocks(tgtdev->bdev, tgtdev->name->str);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002028 fs_info->fs_devices->open_devices--;
2029 }
2030 fs_info->fs_devices->num_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002031
2032 next_device = list_entry(fs_info->fs_devices->devices.next,
2033 struct btrfs_device, dev_list);
2034 if (tgtdev->bdev == fs_info->sb->s_bdev)
2035 fs_info->sb->s_bdev = next_device->bdev;
2036 if (tgtdev->bdev == fs_info->fs_devices->latest_bdev)
2037 fs_info->fs_devices->latest_bdev = next_device->bdev;
2038 list_del_rcu(&tgtdev->dev_list);
2039
2040 call_rcu(&tgtdev->rcu, free_device);
2041
2042 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Miao Xie67a2c452014-09-03 21:35:43 +08002043 mutex_unlock(&uuid_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002044}
2045
Eric Sandeen48a3b632013-04-25 20:41:01 +00002046static int btrfs_find_device_by_path(struct btrfs_root *root, char *device_path,
2047 struct btrfs_device **device)
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002048{
2049 int ret = 0;
2050 struct btrfs_super_block *disk_super;
2051 u64 devid;
2052 u8 *dev_uuid;
2053 struct block_device *bdev;
2054 struct buffer_head *bh;
2055
2056 *device = NULL;
2057 ret = btrfs_get_bdev_and_sb(device_path, FMODE_READ,
2058 root->fs_info->bdev_holder, 0, &bdev, &bh);
2059 if (ret)
2060 return ret;
2061 disk_super = (struct btrfs_super_block *)bh->b_data;
2062 devid = btrfs_stack_device_id(&disk_super->dev_item);
2063 dev_uuid = disk_super->dev_item.uuid;
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002064 *device = btrfs_find_device(root->fs_info, devid, dev_uuid,
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002065 disk_super->fsid);
2066 brelse(bh);
2067 if (!*device)
2068 ret = -ENOENT;
2069 blkdev_put(bdev, FMODE_READ);
2070 return ret;
2071}
2072
2073int btrfs_find_device_missing_or_by_path(struct btrfs_root *root,
2074 char *device_path,
2075 struct btrfs_device **device)
2076{
2077 *device = NULL;
2078 if (strcmp(device_path, "missing") == 0) {
2079 struct list_head *devices;
2080 struct btrfs_device *tmp;
2081
2082 devices = &root->fs_info->fs_devices->devices;
2083 /*
2084 * It is safe to read the devices since the volume_mutex
2085 * is held by the caller.
2086 */
2087 list_for_each_entry(tmp, devices, dev_list) {
2088 if (tmp->in_fs_metadata && !tmp->bdev) {
2089 *device = tmp;
2090 break;
2091 }
2092 }
2093
Anand Jaind74a6252015-08-14 18:32:56 +08002094 if (!*device)
2095 return BTRFS_ERROR_DEV_MISSING_NOT_FOUND;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002096
2097 return 0;
2098 } else {
2099 return btrfs_find_device_by_path(root, device_path, device);
2100 }
2101}
2102
Yan Zheng2b820322008-11-17 21:11:30 -05002103/*
2104 * does all the dirty work required for changing file system's UUID.
2105 */
Li Zefan125ccb02011-12-08 15:07:24 +08002106static int btrfs_prepare_sprout(struct btrfs_root *root)
Yan Zheng2b820322008-11-17 21:11:30 -05002107{
2108 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2109 struct btrfs_fs_devices *old_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05002110 struct btrfs_fs_devices *seed_devices;
David Sterba6c417612011-04-13 15:41:04 +02002111 struct btrfs_super_block *disk_super = root->fs_info->super_copy;
Yan Zheng2b820322008-11-17 21:11:30 -05002112 struct btrfs_device *device;
2113 u64 super_flags;
2114
2115 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zhenge4404d62008-12-12 10:03:26 -05002116 if (!fs_devices->seeding)
Yan Zheng2b820322008-11-17 21:11:30 -05002117 return -EINVAL;
2118
Ilya Dryomov2208a372013-08-12 14:33:03 +03002119 seed_devices = __alloc_fs_devices();
2120 if (IS_ERR(seed_devices))
2121 return PTR_ERR(seed_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002122
Yan Zhenge4404d62008-12-12 10:03:26 -05002123 old_devices = clone_fs_devices(fs_devices);
2124 if (IS_ERR(old_devices)) {
2125 kfree(seed_devices);
2126 return PTR_ERR(old_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002127 }
Yan Zhenge4404d62008-12-12 10:03:26 -05002128
Yan Zheng2b820322008-11-17 21:11:30 -05002129 list_add(&old_devices->list, &fs_uuids);
2130
Yan Zhenge4404d62008-12-12 10:03:26 -05002131 memcpy(seed_devices, fs_devices, sizeof(*seed_devices));
2132 seed_devices->opened = 1;
2133 INIT_LIST_HEAD(&seed_devices->devices);
2134 INIT_LIST_HEAD(&seed_devices->alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -04002135 mutex_init(&seed_devices->device_list_mutex);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00002136
2137 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002138 list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices,
2139 synchronize_rcu);
Miao Xie2196d6e2014-09-03 21:35:41 +08002140 list_for_each_entry(device, &seed_devices->devices, dev_list)
Yan Zhenge4404d62008-12-12 10:03:26 -05002141 device->fs_devices = seed_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002142
2143 lock_chunks(root);
2144 list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list);
2145 unlock_chunks(root);
Yan Zhenge4404d62008-12-12 10:03:26 -05002146
Yan Zheng2b820322008-11-17 21:11:30 -05002147 fs_devices->seeding = 0;
2148 fs_devices->num_devices = 0;
2149 fs_devices->open_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002150 fs_devices->missing_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002151 fs_devices->rotating = 0;
Yan Zhenge4404d62008-12-12 10:03:26 -05002152 fs_devices->seed = seed_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002153
2154 generate_random_uuid(fs_devices->fsid);
2155 memcpy(root->fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
2156 memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01002157 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
2158
Yan Zheng2b820322008-11-17 21:11:30 -05002159 super_flags = btrfs_super_flags(disk_super) &
2160 ~BTRFS_SUPER_FLAG_SEEDING;
2161 btrfs_set_super_flags(disk_super, super_flags);
2162
2163 return 0;
2164}
2165
2166/*
2167 * strore the expected generation for seed devices in device items.
2168 */
2169static int btrfs_finish_sprout(struct btrfs_trans_handle *trans,
2170 struct btrfs_root *root)
2171{
2172 struct btrfs_path *path;
2173 struct extent_buffer *leaf;
2174 struct btrfs_dev_item *dev_item;
2175 struct btrfs_device *device;
2176 struct btrfs_key key;
2177 u8 fs_uuid[BTRFS_UUID_SIZE];
2178 u8 dev_uuid[BTRFS_UUID_SIZE];
2179 u64 devid;
2180 int ret;
2181
2182 path = btrfs_alloc_path();
2183 if (!path)
2184 return -ENOMEM;
2185
2186 root = root->fs_info->chunk_root;
2187 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2188 key.offset = 0;
2189 key.type = BTRFS_DEV_ITEM_KEY;
2190
2191 while (1) {
2192 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2193 if (ret < 0)
2194 goto error;
2195
2196 leaf = path->nodes[0];
2197next_slot:
2198 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
2199 ret = btrfs_next_leaf(root, path);
2200 if (ret > 0)
2201 break;
2202 if (ret < 0)
2203 goto error;
2204 leaf = path->nodes[0];
2205 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02002206 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002207 continue;
2208 }
2209
2210 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2211 if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID ||
2212 key.type != BTRFS_DEV_ITEM_KEY)
2213 break;
2214
2215 dev_item = btrfs_item_ptr(leaf, path->slots[0],
2216 struct btrfs_dev_item);
2217 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02002218 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05002219 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02002220 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05002221 BTRFS_UUID_SIZE);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002222 device = btrfs_find_device(root->fs_info, devid, dev_uuid,
2223 fs_uuid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002224 BUG_ON(!device); /* Logic error */
Yan Zheng2b820322008-11-17 21:11:30 -05002225
2226 if (device->fs_devices->seeding) {
2227 btrfs_set_device_generation(leaf, dev_item,
2228 device->generation);
2229 btrfs_mark_buffer_dirty(leaf);
2230 }
2231
2232 path->slots[0]++;
2233 goto next_slot;
2234 }
2235 ret = 0;
2236error:
2237 btrfs_free_path(path);
2238 return ret;
2239}
2240
Chris Mason788f20e2008-04-28 15:29:42 -04002241int btrfs_init_new_device(struct btrfs_root *root, char *device_path)
2242{
Josef Bacikd5e20032011-08-04 14:52:27 +00002243 struct request_queue *q;
Chris Mason788f20e2008-04-28 15:29:42 -04002244 struct btrfs_trans_handle *trans;
2245 struct btrfs_device *device;
2246 struct block_device *bdev;
Chris Mason788f20e2008-04-28 15:29:42 -04002247 struct list_head *devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002248 struct super_block *sb = root->fs_info->sb;
Josef Bacik606686e2012-06-04 14:03:51 -04002249 struct rcu_string *name;
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002250 u64 tmp;
Yan Zheng2b820322008-11-17 21:11:30 -05002251 int seeding_dev = 0;
Chris Mason788f20e2008-04-28 15:29:42 -04002252 int ret = 0;
2253
Yan Zheng2b820322008-11-17 21:11:30 -05002254 if ((sb->s_flags & MS_RDONLY) && !root->fs_info->fs_devices->seeding)
Liu Bof8c5d0b2012-05-10 18:10:38 +08002255 return -EROFS;
Chris Mason788f20e2008-04-28 15:29:42 -04002256
Li Zefana5d16332011-12-07 20:08:40 -05002257 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
Tejun Heod4d77622010-11-13 11:55:18 +01002258 root->fs_info->bdev_holder);
Josef Bacik7f592032010-01-27 02:09:00 +00002259 if (IS_ERR(bdev))
2260 return PTR_ERR(bdev);
Chris Masona2135012008-06-25 16:01:30 -04002261
Yan Zheng2b820322008-11-17 21:11:30 -05002262 if (root->fs_info->fs_devices->seeding) {
2263 seeding_dev = 1;
2264 down_write(&sb->s_umount);
2265 mutex_lock(&uuid_mutex);
2266 }
2267
Chris Mason8c8bee12008-09-29 11:19:10 -04002268 filemap_write_and_wait(bdev->bd_inode->i_mapping);
Chris Masona2135012008-06-25 16:01:30 -04002269
Chris Mason788f20e2008-04-28 15:29:42 -04002270 devices = &root->fs_info->fs_devices->devices;
Liu Bod25628b2012-11-14 14:35:30 +00002271
2272 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05002273 list_for_each_entry(device, devices, dev_list) {
Chris Mason788f20e2008-04-28 15:29:42 -04002274 if (device->bdev == bdev) {
2275 ret = -EEXIST;
Liu Bod25628b2012-11-14 14:35:30 +00002276 mutex_unlock(
2277 &root->fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002278 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002279 }
2280 }
Liu Bod25628b2012-11-14 14:35:30 +00002281 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002282
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002283 device = btrfs_alloc_device(root->fs_info, NULL, NULL);
2284 if (IS_ERR(device)) {
Chris Mason788f20e2008-04-28 15:29:42 -04002285 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002286 ret = PTR_ERR(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002287 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002288 }
2289
Josef Bacik606686e2012-06-04 14:03:51 -04002290 name = rcu_string_strdup(device_path, GFP_NOFS);
2291 if (!name) {
Chris Mason788f20e2008-04-28 15:29:42 -04002292 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002293 ret = -ENOMEM;
2294 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002295 }
Josef Bacik606686e2012-06-04 14:03:51 -04002296 rcu_assign_pointer(device->name, name);
Yan Zheng2b820322008-11-17 21:11:30 -05002297
Yan, Zhenga22285a2010-05-16 10:48:46 -04002298 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002299 if (IS_ERR(trans)) {
Josef Bacik606686e2012-06-04 14:03:51 -04002300 rcu_string_free(device->name);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002301 kfree(device);
2302 ret = PTR_ERR(trans);
2303 goto error;
2304 }
2305
Josef Bacikd5e20032011-08-04 14:52:27 +00002306 q = bdev_get_queue(bdev);
2307 if (blk_queue_discard(q))
2308 device->can_discard = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002309 device->writeable = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002310 device->generation = trans->transid;
Chris Mason788f20e2008-04-28 15:29:42 -04002311 device->io_width = root->sectorsize;
2312 device->io_align = root->sectorsize;
2313 device->sector_size = root->sectorsize;
2314 device->total_bytes = i_size_read(bdev->bd_inode);
Yan Zheng2cc3c552009-06-04 09:23:50 -04002315 device->disk_total_bytes = device->total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08002316 device->commit_total_bytes = device->total_bytes;
Chris Mason788f20e2008-04-28 15:29:42 -04002317 device->dev_root = root->fs_info->dev_root;
2318 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -04002319 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01002320 device->is_tgtdev_for_dev_replace = 0;
Ilya Dryomovfb01aa82011-02-15 18:12:57 +00002321 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002322 device->dev_stats_valid = 1;
Zheng Yan325cd4b2008-09-05 16:43:54 -04002323 set_blocksize(device->bdev, 4096);
2324
Yan Zheng2b820322008-11-17 21:11:30 -05002325 if (seeding_dev) {
2326 sb->s_flags &= ~MS_RDONLY;
Li Zefan125ccb02011-12-08 15:07:24 +08002327 ret = btrfs_prepare_sprout(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002328 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2b820322008-11-17 21:11:30 -05002329 }
2330
2331 device->fs_devices = root->fs_info->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04002332
Chris Masone5e9a522009-06-10 15:17:02 -04002333 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08002334 lock_chunks(root);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002335 list_add_rcu(&device->dev_list, &root->fs_info->fs_devices->devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002336 list_add(&device->dev_alloc_list,
2337 &root->fs_info->fs_devices->alloc_list);
2338 root->fs_info->fs_devices->num_devices++;
2339 root->fs_info->fs_devices->open_devices++;
2340 root->fs_info->fs_devices->rw_devices++;
Josef Bacik02db0842012-06-21 16:03:58 -04002341 root->fs_info->fs_devices->total_devices++;
Yan Zheng2b820322008-11-17 21:11:30 -05002342 root->fs_info->fs_devices->total_rw_bytes += device->total_bytes;
2343
Josef Bacik2bf64752011-09-26 17:12:22 -04002344 spin_lock(&root->fs_info->free_chunk_lock);
2345 root->fs_info->free_chunk_space += device->total_bytes;
2346 spin_unlock(&root->fs_info->free_chunk_lock);
2347
Chris Masonc2898112009-06-10 09:51:32 -04002348 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
2349 root->fs_info->fs_devices->rotating = 1;
2350
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002351 tmp = btrfs_super_total_bytes(root->fs_info->super_copy);
David Sterba6c417612011-04-13 15:41:04 +02002352 btrfs_set_super_total_bytes(root->fs_info->super_copy,
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002353 tmp + device->total_bytes);
Chris Mason788f20e2008-04-28 15:29:42 -04002354
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002355 tmp = btrfs_super_num_devices(root->fs_info->super_copy);
David Sterba6c417612011-04-13 15:41:04 +02002356 btrfs_set_super_num_devices(root->fs_info->super_copy,
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002357 tmp + 1);
Anand Jain0d393762014-06-03 11:36:01 +08002358
2359 /* add sysfs device entry */
Anand Jaine3bd6972015-08-14 18:32:48 +08002360 btrfs_sysfs_add_device_link(root->fs_info->fs_devices, device);
Anand Jain0d393762014-06-03 11:36:01 +08002361
Miao Xie2196d6e2014-09-03 21:35:41 +08002362 /*
2363 * we've got more storage, clear any full flags on the space
2364 * infos
2365 */
2366 btrfs_clear_space_info_full(root->fs_info);
2367
2368 unlock_chunks(root);
Chris Masone5e9a522009-06-10 15:17:02 -04002369 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002370
Yan Zheng2b820322008-11-17 21:11:30 -05002371 if (seeding_dev) {
Miao Xie2196d6e2014-09-03 21:35:41 +08002372 lock_chunks(root);
Yan Zheng2b820322008-11-17 21:11:30 -05002373 ret = init_first_rw_device(trans, root, device);
Miao Xie2196d6e2014-09-03 21:35:41 +08002374 unlock_chunks(root);
David Sterba005d6422012-09-18 07:52:32 -06002375 if (ret) {
2376 btrfs_abort_transaction(trans, root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002377 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002378 }
Miao Xie2196d6e2014-09-03 21:35:41 +08002379 }
2380
2381 ret = btrfs_add_device(trans, root, device);
2382 if (ret) {
2383 btrfs_abort_transaction(trans, root, ret);
2384 goto error_trans;
2385 }
2386
2387 if (seeding_dev) {
2388 char fsid_buf[BTRFS_UUID_UNPARSED_SIZE];
2389
Yan Zheng2b820322008-11-17 21:11:30 -05002390 ret = btrfs_finish_sprout(trans, root);
David Sterba005d6422012-09-18 07:52:32 -06002391 if (ret) {
2392 btrfs_abort_transaction(trans, root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002393 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002394 }
Anand Jainb2373f22014-06-03 11:36:03 +08002395
2396 /* Sprouting would change fsid of the mounted root,
2397 * so rename the fsid on the sysfs
2398 */
2399 snprintf(fsid_buf, BTRFS_UUID_UNPARSED_SIZE, "%pU",
2400 root->fs_info->fsid);
Anand Jainc1b7e472015-08-14 18:32:50 +08002401 if (kobject_rename(&root->fs_info->fs_devices->fsid_kobj,
Anand Jain2e7910d2015-03-10 06:38:29 +08002402 fsid_buf))
David Sterbaf14d1042015-10-08 11:37:06 +02002403 btrfs_warn(root->fs_info,
2404 "sysfs: failed to create fsid for sprout");
Yan Zheng2b820322008-11-17 21:11:30 -05002405 }
2406
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02002407 root->fs_info->num_tolerated_disk_barrier_failures =
2408 btrfs_calc_num_tolerated_disk_barrier_failures(root->fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002409 ret = btrfs_commit_transaction(trans, root);
Yan Zheng2b820322008-11-17 21:11:30 -05002410
2411 if (seeding_dev) {
2412 mutex_unlock(&uuid_mutex);
2413 up_write(&sb->s_umount);
2414
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002415 if (ret) /* transaction commit */
2416 return ret;
2417
Yan Zheng2b820322008-11-17 21:11:30 -05002418 ret = btrfs_relocate_sys_chunks(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002419 if (ret < 0)
Anand Jaina4553fe2015-09-25 14:43:01 +08002420 btrfs_std_error(root->fs_info, ret,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002421 "Failed to relocate sys chunks after "
2422 "device initialization. This can be fixed "
2423 "using the \"btrfs balance\" command.");
Miao Xie671415b2012-10-16 11:26:46 +00002424 trans = btrfs_attach_transaction(root);
2425 if (IS_ERR(trans)) {
2426 if (PTR_ERR(trans) == -ENOENT)
2427 return 0;
2428 return PTR_ERR(trans);
2429 }
2430 ret = btrfs_commit_transaction(trans, root);
Yan Zheng2b820322008-11-17 21:11:30 -05002431 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002432
Qu Wenruo5a1972b2014-04-16 17:02:32 +08002433 /* Update ctime/mtime for libblkid */
2434 update_dev_time(device_path);
Chris Mason788f20e2008-04-28 15:29:42 -04002435 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002436
2437error_trans:
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002438 btrfs_end_transaction(trans, root);
Josef Bacik606686e2012-06-04 14:03:51 -04002439 rcu_string_free(device->name);
Anand Jain32576042015-08-14 18:32:49 +08002440 btrfs_sysfs_rm_device_link(root->fs_info->fs_devices, device);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002441 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002442error:
Tejun Heoe525fd82010-11-13 11:55:17 +01002443 blkdev_put(bdev, FMODE_EXCL);
Yan Zheng2b820322008-11-17 21:11:30 -05002444 if (seeding_dev) {
2445 mutex_unlock(&uuid_mutex);
2446 up_write(&sb->s_umount);
2447 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002448 return ret;
Chris Mason788f20e2008-04-28 15:29:42 -04002449}
2450
Stefan Behrense93c89c2012-11-05 17:33:06 +01002451int btrfs_init_dev_replace_tgtdev(struct btrfs_root *root, char *device_path,
Miao Xie1c433662014-09-03 21:35:32 +08002452 struct btrfs_device *srcdev,
Stefan Behrense93c89c2012-11-05 17:33:06 +01002453 struct btrfs_device **device_out)
2454{
2455 struct request_queue *q;
2456 struct btrfs_device *device;
2457 struct block_device *bdev;
2458 struct btrfs_fs_info *fs_info = root->fs_info;
2459 struct list_head *devices;
2460 struct rcu_string *name;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002461 u64 devid = BTRFS_DEV_REPLACE_DEVID;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002462 int ret = 0;
2463
2464 *device_out = NULL;
Miao Xie1c433662014-09-03 21:35:32 +08002465 if (fs_info->fs_devices->seeding) {
2466 btrfs_err(fs_info, "the filesystem is a seed filesystem!");
Stefan Behrense93c89c2012-11-05 17:33:06 +01002467 return -EINVAL;
Miao Xie1c433662014-09-03 21:35:32 +08002468 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002469
2470 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
2471 fs_info->bdev_holder);
Miao Xie1c433662014-09-03 21:35:32 +08002472 if (IS_ERR(bdev)) {
2473 btrfs_err(fs_info, "target device %s is invalid!", device_path);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002474 return PTR_ERR(bdev);
Miao Xie1c433662014-09-03 21:35:32 +08002475 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002476
2477 filemap_write_and_wait(bdev->bd_inode->i_mapping);
2478
2479 devices = &fs_info->fs_devices->devices;
2480 list_for_each_entry(device, devices, dev_list) {
2481 if (device->bdev == bdev) {
Miao Xie1c433662014-09-03 21:35:32 +08002482 btrfs_err(fs_info, "target device is in the filesystem!");
Stefan Behrense93c89c2012-11-05 17:33:06 +01002483 ret = -EEXIST;
2484 goto error;
2485 }
2486 }
2487
Miao Xie1c433662014-09-03 21:35:32 +08002488
Miao Xie7cc8e582014-09-03 21:35:38 +08002489 if (i_size_read(bdev->bd_inode) <
2490 btrfs_device_get_total_bytes(srcdev)) {
Miao Xie1c433662014-09-03 21:35:32 +08002491 btrfs_err(fs_info, "target device is smaller than source device!");
2492 ret = -EINVAL;
2493 goto error;
2494 }
2495
2496
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002497 device = btrfs_alloc_device(NULL, &devid, NULL);
2498 if (IS_ERR(device)) {
2499 ret = PTR_ERR(device);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002500 goto error;
2501 }
2502
2503 name = rcu_string_strdup(device_path, GFP_NOFS);
2504 if (!name) {
2505 kfree(device);
2506 ret = -ENOMEM;
2507 goto error;
2508 }
2509 rcu_assign_pointer(device->name, name);
2510
2511 q = bdev_get_queue(bdev);
2512 if (blk_queue_discard(q))
2513 device->can_discard = 1;
2514 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
2515 device->writeable = 1;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002516 device->generation = 0;
2517 device->io_width = root->sectorsize;
2518 device->io_align = root->sectorsize;
2519 device->sector_size = root->sectorsize;
Miao Xie7cc8e582014-09-03 21:35:38 +08002520 device->total_bytes = btrfs_device_get_total_bytes(srcdev);
2521 device->disk_total_bytes = btrfs_device_get_disk_total_bytes(srcdev);
2522 device->bytes_used = btrfs_device_get_bytes_used(srcdev);
Miao Xie935e5cc2014-09-03 21:35:33 +08002523 ASSERT(list_empty(&srcdev->resized_list));
2524 device->commit_total_bytes = srcdev->commit_total_bytes;
Miao Xiece7213c2014-09-03 21:35:34 +08002525 device->commit_bytes_used = device->bytes_used;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002526 device->dev_root = fs_info->dev_root;
2527 device->bdev = bdev;
2528 device->in_fs_metadata = 1;
2529 device->is_tgtdev_for_dev_replace = 1;
2530 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002531 device->dev_stats_valid = 1;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002532 set_blocksize(device->bdev, 4096);
2533 device->fs_devices = fs_info->fs_devices;
2534 list_add(&device->dev_list, &fs_info->fs_devices->devices);
2535 fs_info->fs_devices->num_devices++;
2536 fs_info->fs_devices->open_devices++;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002537 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
2538
2539 *device_out = device;
2540 return ret;
2541
2542error:
2543 blkdev_put(bdev, FMODE_EXCL);
2544 return ret;
2545}
2546
2547void btrfs_init_dev_replace_tgtdev_for_resume(struct btrfs_fs_info *fs_info,
2548 struct btrfs_device *tgtdev)
2549{
2550 WARN_ON(fs_info->fs_devices->rw_devices == 0);
2551 tgtdev->io_width = fs_info->dev_root->sectorsize;
2552 tgtdev->io_align = fs_info->dev_root->sectorsize;
2553 tgtdev->sector_size = fs_info->dev_root->sectorsize;
2554 tgtdev->dev_root = fs_info->dev_root;
2555 tgtdev->in_fs_metadata = 1;
2556}
2557
Chris Masond3977122009-01-05 21:25:51 -05002558static noinline int btrfs_update_device(struct btrfs_trans_handle *trans,
2559 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04002560{
2561 int ret;
2562 struct btrfs_path *path;
2563 struct btrfs_root *root;
2564 struct btrfs_dev_item *dev_item;
2565 struct extent_buffer *leaf;
2566 struct btrfs_key key;
2567
2568 root = device->dev_root->fs_info->chunk_root;
2569
2570 path = btrfs_alloc_path();
2571 if (!path)
2572 return -ENOMEM;
2573
2574 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2575 key.type = BTRFS_DEV_ITEM_KEY;
2576 key.offset = device->devid;
2577
2578 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2579 if (ret < 0)
2580 goto out;
2581
2582 if (ret > 0) {
2583 ret = -ENOENT;
2584 goto out;
2585 }
2586
2587 leaf = path->nodes[0];
2588 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
2589
2590 btrfs_set_device_id(leaf, dev_item, device->devid);
2591 btrfs_set_device_type(leaf, dev_item, device->type);
2592 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
2593 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
2594 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08002595 btrfs_set_device_total_bytes(leaf, dev_item,
2596 btrfs_device_get_disk_total_bytes(device));
2597 btrfs_set_device_bytes_used(leaf, dev_item,
2598 btrfs_device_get_bytes_used(device));
Chris Mason0b86a832008-03-24 15:01:56 -04002599 btrfs_mark_buffer_dirty(leaf);
2600
2601out:
2602 btrfs_free_path(path);
2603 return ret;
2604}
2605
Miao Xie2196d6e2014-09-03 21:35:41 +08002606int btrfs_grow_device(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04002607 struct btrfs_device *device, u64 new_size)
2608{
2609 struct btrfs_super_block *super_copy =
David Sterba6c417612011-04-13 15:41:04 +02002610 device->dev_root->fs_info->super_copy;
Miao Xie935e5cc2014-09-03 21:35:33 +08002611 struct btrfs_fs_devices *fs_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002612 u64 old_total;
2613 u64 diff;
Chris Mason8f18cf12008-04-25 16:53:30 -04002614
Yan Zheng2b820322008-11-17 21:11:30 -05002615 if (!device->writeable)
2616 return -EACCES;
Miao Xie2196d6e2014-09-03 21:35:41 +08002617
2618 lock_chunks(device->dev_root);
2619 old_total = btrfs_super_total_bytes(super_copy);
2620 diff = new_size - device->total_bytes;
2621
Stefan Behrens63a212a2012-11-05 18:29:28 +01002622 if (new_size <= device->total_bytes ||
Miao Xie2196d6e2014-09-03 21:35:41 +08002623 device->is_tgtdev_for_dev_replace) {
2624 unlock_chunks(device->dev_root);
Yan Zheng2b820322008-11-17 21:11:30 -05002625 return -EINVAL;
Miao Xie2196d6e2014-09-03 21:35:41 +08002626 }
Yan Zheng2b820322008-11-17 21:11:30 -05002627
Miao Xie935e5cc2014-09-03 21:35:33 +08002628 fs_devices = device->dev_root->fs_info->fs_devices;
Chris Mason8f18cf12008-04-25 16:53:30 -04002629
2630 btrfs_set_super_total_bytes(super_copy, old_total + diff);
Yan Zheng2b820322008-11-17 21:11:30 -05002631 device->fs_devices->total_rw_bytes += diff;
2632
Miao Xie7cc8e582014-09-03 21:35:38 +08002633 btrfs_device_set_total_bytes(device, new_size);
2634 btrfs_device_set_disk_total_bytes(device, new_size);
Chris Mason4184ea72009-03-10 12:39:20 -04002635 btrfs_clear_space_info_full(device->dev_root->fs_info);
Miao Xie935e5cc2014-09-03 21:35:33 +08002636 if (list_empty(&device->resized_list))
2637 list_add_tail(&device->resized_list,
2638 &fs_devices->resized_devices);
Miao Xie2196d6e2014-09-03 21:35:41 +08002639 unlock_chunks(device->dev_root);
Chris Mason4184ea72009-03-10 12:39:20 -04002640
Chris Mason8f18cf12008-04-25 16:53:30 -04002641 return btrfs_update_device(trans, device);
2642}
2643
2644static int btrfs_free_chunk(struct btrfs_trans_handle *trans,
Zhao Leia688a042015-02-09 20:31:44 +08002645 struct btrfs_root *root, u64 chunk_objectid,
Chris Mason8f18cf12008-04-25 16:53:30 -04002646 u64 chunk_offset)
2647{
2648 int ret;
2649 struct btrfs_path *path;
2650 struct btrfs_key key;
2651
2652 root = root->fs_info->chunk_root;
2653 path = btrfs_alloc_path();
2654 if (!path)
2655 return -ENOMEM;
2656
2657 key.objectid = chunk_objectid;
2658 key.offset = chunk_offset;
2659 key.type = BTRFS_CHUNK_ITEM_KEY;
2660
2661 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002662 if (ret < 0)
2663 goto out;
2664 else if (ret > 0) { /* Logic error or corruption */
Anand Jaina4553fe2015-09-25 14:43:01 +08002665 btrfs_std_error(root->fs_info, -ENOENT,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002666 "Failed lookup while freeing chunk.");
2667 ret = -ENOENT;
2668 goto out;
2669 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002670
2671 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002672 if (ret < 0)
Anand Jaina4553fe2015-09-25 14:43:01 +08002673 btrfs_std_error(root->fs_info, ret,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002674 "Failed to delete chunk item.");
2675out:
Chris Mason8f18cf12008-04-25 16:53:30 -04002676 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00002677 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002678}
2679
Christoph Hellwigb2950862008-12-02 09:54:17 -05002680static int btrfs_del_sys_chunk(struct btrfs_root *root, u64 chunk_objectid, u64
Chris Mason8f18cf12008-04-25 16:53:30 -04002681 chunk_offset)
2682{
David Sterba6c417612011-04-13 15:41:04 +02002683 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04002684 struct btrfs_disk_key *disk_key;
2685 struct btrfs_chunk *chunk;
2686 u8 *ptr;
2687 int ret = 0;
2688 u32 num_stripes;
2689 u32 array_size;
2690 u32 len = 0;
2691 u32 cur;
2692 struct btrfs_key key;
2693
Miao Xie2196d6e2014-09-03 21:35:41 +08002694 lock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04002695 array_size = btrfs_super_sys_array_size(super_copy);
2696
2697 ptr = super_copy->sys_chunk_array;
2698 cur = 0;
2699
2700 while (cur < array_size) {
2701 disk_key = (struct btrfs_disk_key *)ptr;
2702 btrfs_disk_key_to_cpu(&key, disk_key);
2703
2704 len = sizeof(*disk_key);
2705
2706 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
2707 chunk = (struct btrfs_chunk *)(ptr + len);
2708 num_stripes = btrfs_stack_chunk_num_stripes(chunk);
2709 len += btrfs_chunk_item_size(num_stripes);
2710 } else {
2711 ret = -EIO;
2712 break;
2713 }
2714 if (key.objectid == chunk_objectid &&
2715 key.offset == chunk_offset) {
2716 memmove(ptr, ptr + len, array_size - (cur + len));
2717 array_size -= len;
2718 btrfs_set_super_sys_array_size(super_copy, array_size);
2719 } else {
2720 ptr += len;
2721 cur += len;
2722 }
2723 }
Miao Xie2196d6e2014-09-03 21:35:41 +08002724 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04002725 return ret;
2726}
2727
Josef Bacik47ab2a62014-09-18 11:20:02 -04002728int btrfs_remove_chunk(struct btrfs_trans_handle *trans,
2729 struct btrfs_root *root, u64 chunk_offset)
2730{
2731 struct extent_map_tree *em_tree;
2732 struct extent_map *em;
2733 struct btrfs_root *extent_root = root->fs_info->extent_root;
2734 struct map_lookup *map;
2735 u64 dev_extent_len = 0;
2736 u64 chunk_objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002737 int i, ret = 0;
2738
2739 /* Just in case */
2740 root = root->fs_info->chunk_root;
2741 em_tree = &root->fs_info->mapping_tree.map_tree;
2742
2743 read_lock(&em_tree->lock);
2744 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
2745 read_unlock(&em_tree->lock);
2746
2747 if (!em || em->start > chunk_offset ||
2748 em->start + em->len < chunk_offset) {
2749 /*
2750 * This is a logic error, but we don't want to just rely on the
2751 * user having built with ASSERT enabled, so if ASSERT doens't
2752 * do anything we still error out.
2753 */
2754 ASSERT(0);
2755 if (em)
2756 free_extent_map(em);
2757 return -EINVAL;
2758 }
2759 map = (struct map_lookup *)em->bdev;
Filipe Manana39c2d7f2015-05-20 14:01:55 +01002760 lock_chunks(root->fs_info->chunk_root);
Filipe Manana4617ea32015-06-09 17:48:21 +01002761 check_system_chunk(trans, extent_root, map->type);
Filipe Manana39c2d7f2015-05-20 14:01:55 +01002762 unlock_chunks(root->fs_info->chunk_root);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002763
2764 for (i = 0; i < map->num_stripes; i++) {
2765 struct btrfs_device *device = map->stripes[i].dev;
2766 ret = btrfs_free_dev_extent(trans, device,
2767 map->stripes[i].physical,
2768 &dev_extent_len);
2769 if (ret) {
2770 btrfs_abort_transaction(trans, root, ret);
2771 goto out;
2772 }
2773
2774 if (device->bytes_used > 0) {
2775 lock_chunks(root);
2776 btrfs_device_set_bytes_used(device,
2777 device->bytes_used - dev_extent_len);
2778 spin_lock(&root->fs_info->free_chunk_lock);
2779 root->fs_info->free_chunk_space += dev_extent_len;
2780 spin_unlock(&root->fs_info->free_chunk_lock);
2781 btrfs_clear_space_info_full(root->fs_info);
2782 unlock_chunks(root);
2783 }
2784
2785 if (map->stripes[i].dev) {
2786 ret = btrfs_update_device(trans, map->stripes[i].dev);
2787 if (ret) {
2788 btrfs_abort_transaction(trans, root, ret);
2789 goto out;
2790 }
2791 }
2792 }
Zhao Leia688a042015-02-09 20:31:44 +08002793 ret = btrfs_free_chunk(trans, root, chunk_objectid, chunk_offset);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002794 if (ret) {
2795 btrfs_abort_transaction(trans, root, ret);
2796 goto out;
2797 }
2798
2799 trace_btrfs_chunk_free(root, map, chunk_offset, em->len);
2800
2801 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
2802 ret = btrfs_del_sys_chunk(root, chunk_objectid, chunk_offset);
2803 if (ret) {
2804 btrfs_abort_transaction(trans, root, ret);
2805 goto out;
2806 }
2807 }
2808
Filipe Manana04216822014-11-27 21:14:15 +00002809 ret = btrfs_remove_block_group(trans, extent_root, chunk_offset, em);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002810 if (ret) {
2811 btrfs_abort_transaction(trans, extent_root, ret);
2812 goto out;
2813 }
2814
Josef Bacik47ab2a62014-09-18 11:20:02 -04002815out:
2816 /* once for us */
2817 free_extent_map(em);
Chris Mason8f18cf12008-04-25 16:53:30 -04002818 return ret;
2819}
2820
Zhaoleidc2ee4e2015-08-05 18:00:04 +08002821static int btrfs_relocate_chunk(struct btrfs_root *root, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002822{
Chris Mason8f18cf12008-04-25 16:53:30 -04002823 struct btrfs_root *extent_root;
2824 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04002825 int ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002826
2827 root = root->fs_info->chunk_root;
2828 extent_root = root->fs_info->extent_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04002829
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002830 /*
2831 * Prevent races with automatic removal of unused block groups.
2832 * After we relocate and before we remove the chunk with offset
2833 * chunk_offset, automatic removal of the block group can kick in,
2834 * resulting in a failure when calling btrfs_remove_chunk() below.
2835 *
2836 * Make sure to acquire this mutex before doing a tree search (dev
2837 * or chunk trees) to find chunks. Otherwise the cleaner kthread might
2838 * call btrfs_remove_chunk() (through btrfs_delete_unused_bgs()) after
2839 * we release the path used to search the chunk/dev tree and before
2840 * the current task acquires this mutex and calls us.
2841 */
2842 ASSERT(mutex_is_locked(&root->fs_info->delete_unused_bgs_mutex));
2843
Josef Bacikba1bf482009-09-11 16:11:19 -04002844 ret = btrfs_can_relocate(extent_root, chunk_offset);
2845 if (ret)
2846 return -ENOSPC;
2847
Chris Mason8f18cf12008-04-25 16:53:30 -04002848 /* step one, relocate all the extents inside this chunk */
Zhaolei55e3a602015-08-05 16:43:30 +08002849 btrfs_scrub_pause(root);
Zheng Yan1a40e232008-09-26 10:09:34 -04002850 ret = btrfs_relocate_block_group(extent_root, chunk_offset);
Zhaolei55e3a602015-08-05 16:43:30 +08002851 btrfs_scrub_continue(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002852 if (ret)
2853 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002854
Filipe Manana7fd01182015-11-13 23:57:17 +00002855 trans = btrfs_start_trans_remove_block_group(root->fs_info,
2856 chunk_offset);
Liu Bo0f788c52013-03-04 16:25:40 +00002857 if (IS_ERR(trans)) {
2858 ret = PTR_ERR(trans);
Anand Jaina4553fe2015-09-25 14:43:01 +08002859 btrfs_std_error(root->fs_info, ret, NULL);
Liu Bo0f788c52013-03-04 16:25:40 +00002860 return ret;
2861 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002862
2863 /*
2864 * step two, delete the device extents and the
2865 * chunk tree entries
2866 */
Josef Bacik47ab2a62014-09-18 11:20:02 -04002867 ret = btrfs_remove_chunk(trans, root, chunk_offset);
Chris Mason8f18cf12008-04-25 16:53:30 -04002868 btrfs_end_transaction(trans, root);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002869 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002870}
2871
Yan Zheng2b820322008-11-17 21:11:30 -05002872static int btrfs_relocate_sys_chunks(struct btrfs_root *root)
2873{
2874 struct btrfs_root *chunk_root = root->fs_info->chunk_root;
2875 struct btrfs_path *path;
2876 struct extent_buffer *leaf;
2877 struct btrfs_chunk *chunk;
2878 struct btrfs_key key;
2879 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05002880 u64 chunk_type;
Josef Bacikba1bf482009-09-11 16:11:19 -04002881 bool retried = false;
2882 int failed = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05002883 int ret;
2884
2885 path = btrfs_alloc_path();
2886 if (!path)
2887 return -ENOMEM;
2888
Josef Bacikba1bf482009-09-11 16:11:19 -04002889again:
Yan Zheng2b820322008-11-17 21:11:30 -05002890 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2891 key.offset = (u64)-1;
2892 key.type = BTRFS_CHUNK_ITEM_KEY;
2893
2894 while (1) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002895 mutex_lock(&root->fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002896 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002897 if (ret < 0) {
2898 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002899 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002900 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002901 BUG_ON(ret == 0); /* Corruption */
Yan Zheng2b820322008-11-17 21:11:30 -05002902
2903 ret = btrfs_previous_item(chunk_root, path, key.objectid,
2904 key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002905 if (ret)
2906 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002907 if (ret < 0)
2908 goto error;
2909 if (ret > 0)
2910 break;
2911
2912 leaf = path->nodes[0];
2913 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2914
2915 chunk = btrfs_item_ptr(leaf, path->slots[0],
2916 struct btrfs_chunk);
2917 chunk_type = btrfs_chunk_type(leaf, chunk);
David Sterbab3b4aa72011-04-21 01:20:15 +02002918 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002919
2920 if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) {
Zhao Leia688a042015-02-09 20:31:44 +08002921 ret = btrfs_relocate_chunk(chunk_root,
Yan Zheng2b820322008-11-17 21:11:30 -05002922 found_key.offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04002923 if (ret == -ENOSPC)
2924 failed++;
HIMANGI SARAOGI14586652014-07-09 03:51:41 +05302925 else
2926 BUG_ON(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05002927 }
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002928 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002929
2930 if (found_key.offset == 0)
2931 break;
2932 key.offset = found_key.offset - 1;
2933 }
2934 ret = 0;
Josef Bacikba1bf482009-09-11 16:11:19 -04002935 if (failed && !retried) {
2936 failed = 0;
2937 retried = true;
2938 goto again;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05302939 } else if (WARN_ON(failed && retried)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04002940 ret = -ENOSPC;
2941 }
Yan Zheng2b820322008-11-17 21:11:30 -05002942error:
2943 btrfs_free_path(path);
2944 return ret;
2945}
2946
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02002947static int insert_balance_item(struct btrfs_root *root,
2948 struct btrfs_balance_control *bctl)
2949{
2950 struct btrfs_trans_handle *trans;
2951 struct btrfs_balance_item *item;
2952 struct btrfs_disk_balance_args disk_bargs;
2953 struct btrfs_path *path;
2954 struct extent_buffer *leaf;
2955 struct btrfs_key key;
2956 int ret, err;
2957
2958 path = btrfs_alloc_path();
2959 if (!path)
2960 return -ENOMEM;
2961
2962 trans = btrfs_start_transaction(root, 0);
2963 if (IS_ERR(trans)) {
2964 btrfs_free_path(path);
2965 return PTR_ERR(trans);
2966 }
2967
2968 key.objectid = BTRFS_BALANCE_OBJECTID;
2969 key.type = BTRFS_BALANCE_ITEM_KEY;
2970 key.offset = 0;
2971
2972 ret = btrfs_insert_empty_item(trans, root, path, &key,
2973 sizeof(*item));
2974 if (ret)
2975 goto out;
2976
2977 leaf = path->nodes[0];
2978 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
2979
2980 memset_extent_buffer(leaf, 0, (unsigned long)item, sizeof(*item));
2981
2982 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data);
2983 btrfs_set_balance_data(leaf, item, &disk_bargs);
2984 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta);
2985 btrfs_set_balance_meta(leaf, item, &disk_bargs);
2986 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys);
2987 btrfs_set_balance_sys(leaf, item, &disk_bargs);
2988
2989 btrfs_set_balance_flags(leaf, item, bctl->flags);
2990
2991 btrfs_mark_buffer_dirty(leaf);
2992out:
2993 btrfs_free_path(path);
2994 err = btrfs_commit_transaction(trans, root);
2995 if (err && !ret)
2996 ret = err;
2997 return ret;
2998}
2999
3000static int del_balance_item(struct btrfs_root *root)
3001{
3002 struct btrfs_trans_handle *trans;
3003 struct btrfs_path *path;
3004 struct btrfs_key key;
3005 int ret, err;
3006
3007 path = btrfs_alloc_path();
3008 if (!path)
3009 return -ENOMEM;
3010
3011 trans = btrfs_start_transaction(root, 0);
3012 if (IS_ERR(trans)) {
3013 btrfs_free_path(path);
3014 return PTR_ERR(trans);
3015 }
3016
3017 key.objectid = BTRFS_BALANCE_OBJECTID;
3018 key.type = BTRFS_BALANCE_ITEM_KEY;
3019 key.offset = 0;
3020
3021 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
3022 if (ret < 0)
3023 goto out;
3024 if (ret > 0) {
3025 ret = -ENOENT;
3026 goto out;
3027 }
3028
3029 ret = btrfs_del_item(trans, root, path);
3030out:
3031 btrfs_free_path(path);
3032 err = btrfs_commit_transaction(trans, root);
3033 if (err && !ret)
3034 ret = err;
3035 return ret;
3036}
3037
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003038/*
Ilya Dryomov59641012012-01-16 22:04:48 +02003039 * This is a heuristic used to reduce the number of chunks balanced on
3040 * resume after balance was interrupted.
3041 */
3042static void update_balance_args(struct btrfs_balance_control *bctl)
3043{
3044 /*
3045 * Turn on soft mode for chunk types that were being converted.
3046 */
3047 if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)
3048 bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT;
3049 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)
3050 bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT;
3051 if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)
3052 bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT;
3053
3054 /*
3055 * Turn on usage filter if is not already used. The idea is
3056 * that chunks that we have already balanced should be
3057 * reasonably full. Don't do it for chunks that are being
3058 * converted - that will keep us from relocating unconverted
3059 * (albeit full) chunks.
3060 */
3061 if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003062 !(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003063 !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3064 bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE;
3065 bctl->data.usage = 90;
3066 }
3067 if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003068 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003069 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3070 bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE;
3071 bctl->sys.usage = 90;
3072 }
3073 if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003074 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003075 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3076 bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE;
3077 bctl->meta.usage = 90;
3078 }
3079}
3080
3081/*
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003082 * Should be called with both balance and volume mutexes held to
3083 * serialize other volume operations (add_dev/rm_dev/resize) with
3084 * restriper. Same goes for unset_balance_control.
3085 */
3086static void set_balance_control(struct btrfs_balance_control *bctl)
3087{
3088 struct btrfs_fs_info *fs_info = bctl->fs_info;
3089
3090 BUG_ON(fs_info->balance_ctl);
3091
3092 spin_lock(&fs_info->balance_lock);
3093 fs_info->balance_ctl = bctl;
3094 spin_unlock(&fs_info->balance_lock);
3095}
3096
3097static void unset_balance_control(struct btrfs_fs_info *fs_info)
3098{
3099 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3100
3101 BUG_ON(!fs_info->balance_ctl);
3102
3103 spin_lock(&fs_info->balance_lock);
3104 fs_info->balance_ctl = NULL;
3105 spin_unlock(&fs_info->balance_lock);
3106
3107 kfree(bctl);
3108}
3109
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003110/*
3111 * Balance filters. Return 1 if chunk should be filtered out
3112 * (should not be balanced).
3113 */
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003114static int chunk_profiles_filter(u64 chunk_type,
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003115 struct btrfs_balance_args *bargs)
3116{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003117 chunk_type = chunk_to_extended(chunk_type) &
3118 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003119
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003120 if (bargs->profiles & chunk_type)
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003121 return 0;
3122
3123 return 1;
3124}
3125
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003126static int chunk_usage_range_filter(struct btrfs_fs_info *fs_info, u64 chunk_offset,
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003127 struct btrfs_balance_args *bargs)
3128{
3129 struct btrfs_block_group_cache *cache;
David Sterbabc309462015-10-20 18:22:13 +02003130 u64 chunk_used;
3131 u64 user_thresh_min;
3132 u64 user_thresh_max;
3133 int ret = 1;
3134
3135 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3136 chunk_used = btrfs_block_group_used(&cache->item);
3137
3138 if (bargs->usage_min == 0)
3139 user_thresh_min = 0;
3140 else
3141 user_thresh_min = div_factor_fine(cache->key.offset,
3142 bargs->usage_min);
3143
3144 if (bargs->usage_max == 0)
3145 user_thresh_max = 1;
3146 else if (bargs->usage_max > 100)
3147 user_thresh_max = cache->key.offset;
3148 else
3149 user_thresh_max = div_factor_fine(cache->key.offset,
3150 bargs->usage_max);
3151
3152 if (user_thresh_min <= chunk_used && chunk_used < user_thresh_max)
3153 ret = 0;
3154
3155 btrfs_put_block_group(cache);
3156 return ret;
3157}
3158
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003159static int chunk_usage_filter(struct btrfs_fs_info *fs_info,
David Sterbabc309462015-10-20 18:22:13 +02003160 u64 chunk_offset, struct btrfs_balance_args *bargs)
3161{
3162 struct btrfs_block_group_cache *cache;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003163 u64 chunk_used, user_thresh;
3164 int ret = 1;
3165
3166 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3167 chunk_used = btrfs_block_group_used(&cache->item);
3168
David Sterbabc309462015-10-20 18:22:13 +02003169 if (bargs->usage_min == 0)
Ilya Dryomov3e39cea2013-02-12 16:28:59 +00003170 user_thresh = 1;
Ilya Dryomova105bb82013-01-21 15:15:56 +02003171 else if (bargs->usage > 100)
3172 user_thresh = cache->key.offset;
3173 else
3174 user_thresh = div_factor_fine(cache->key.offset,
3175 bargs->usage);
3176
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003177 if (chunk_used < user_thresh)
3178 ret = 0;
3179
3180 btrfs_put_block_group(cache);
3181 return ret;
3182}
3183
Ilya Dryomov409d4042012-01-16 22:04:47 +02003184static int chunk_devid_filter(struct extent_buffer *leaf,
3185 struct btrfs_chunk *chunk,
3186 struct btrfs_balance_args *bargs)
3187{
3188 struct btrfs_stripe *stripe;
3189 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3190 int i;
3191
3192 for (i = 0; i < num_stripes; i++) {
3193 stripe = btrfs_stripe_nr(chunk, i);
3194 if (btrfs_stripe_devid(leaf, stripe) == bargs->devid)
3195 return 0;
3196 }
3197
3198 return 1;
3199}
3200
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003201/* [pstart, pend) */
3202static int chunk_drange_filter(struct extent_buffer *leaf,
3203 struct btrfs_chunk *chunk,
3204 u64 chunk_offset,
3205 struct btrfs_balance_args *bargs)
3206{
3207 struct btrfs_stripe *stripe;
3208 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3209 u64 stripe_offset;
3210 u64 stripe_length;
3211 int factor;
3212 int i;
3213
3214 if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID))
3215 return 0;
3216
3217 if (btrfs_chunk_type(leaf, chunk) & (BTRFS_BLOCK_GROUP_DUP |
David Woodhouse53b381b2013-01-29 18:40:14 -05003218 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)) {
3219 factor = num_stripes / 2;
3220 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID5) {
3221 factor = num_stripes - 1;
3222 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID6) {
3223 factor = num_stripes - 2;
3224 } else {
3225 factor = num_stripes;
3226 }
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003227
3228 for (i = 0; i < num_stripes; i++) {
3229 stripe = btrfs_stripe_nr(chunk, i);
3230 if (btrfs_stripe_devid(leaf, stripe) != bargs->devid)
3231 continue;
3232
3233 stripe_offset = btrfs_stripe_offset(leaf, stripe);
3234 stripe_length = btrfs_chunk_length(leaf, chunk);
David Sterbab8b93ad2015-01-16 17:26:13 +01003235 stripe_length = div_u64(stripe_length, factor);
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003236
3237 if (stripe_offset < bargs->pend &&
3238 stripe_offset + stripe_length > bargs->pstart)
3239 return 0;
3240 }
3241
3242 return 1;
3243}
3244
Ilya Dryomovea671762012-01-16 22:04:48 +02003245/* [vstart, vend) */
3246static int chunk_vrange_filter(struct extent_buffer *leaf,
3247 struct btrfs_chunk *chunk,
3248 u64 chunk_offset,
3249 struct btrfs_balance_args *bargs)
3250{
3251 if (chunk_offset < bargs->vend &&
3252 chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart)
3253 /* at least part of the chunk is inside this vrange */
3254 return 0;
3255
3256 return 1;
3257}
3258
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003259static int chunk_stripes_range_filter(struct extent_buffer *leaf,
3260 struct btrfs_chunk *chunk,
3261 struct btrfs_balance_args *bargs)
3262{
3263 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3264
3265 if (bargs->stripes_min <= num_stripes
3266 && num_stripes <= bargs->stripes_max)
3267 return 0;
3268
3269 return 1;
3270}
3271
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003272static int chunk_soft_convert_filter(u64 chunk_type,
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003273 struct btrfs_balance_args *bargs)
3274{
3275 if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT))
3276 return 0;
3277
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003278 chunk_type = chunk_to_extended(chunk_type) &
3279 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003280
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003281 if (bargs->target == chunk_type)
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003282 return 1;
3283
3284 return 0;
3285}
3286
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003287static int should_balance_chunk(struct btrfs_root *root,
3288 struct extent_buffer *leaf,
3289 struct btrfs_chunk *chunk, u64 chunk_offset)
3290{
3291 struct btrfs_balance_control *bctl = root->fs_info->balance_ctl;
3292 struct btrfs_balance_args *bargs = NULL;
3293 u64 chunk_type = btrfs_chunk_type(leaf, chunk);
3294
3295 /* type filter */
3296 if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) &
3297 (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) {
3298 return 0;
3299 }
3300
3301 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3302 bargs = &bctl->data;
3303 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3304 bargs = &bctl->sys;
3305 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3306 bargs = &bctl->meta;
3307
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003308 /* profiles filter */
3309 if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) &&
3310 chunk_profiles_filter(chunk_type, bargs)) {
3311 return 0;
3312 }
3313
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003314 /* usage filter */
3315 if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) &&
3316 chunk_usage_filter(bctl->fs_info, chunk_offset, bargs)) {
3317 return 0;
David Sterbabc309462015-10-20 18:22:13 +02003318 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
3319 chunk_usage_range_filter(bctl->fs_info, chunk_offset, bargs)) {
3320 return 0;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003321 }
3322
Ilya Dryomov409d4042012-01-16 22:04:47 +02003323 /* devid filter */
3324 if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) &&
3325 chunk_devid_filter(leaf, chunk, bargs)) {
3326 return 0;
3327 }
3328
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003329 /* drange filter, makes sense only with devid filter */
3330 if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) &&
3331 chunk_drange_filter(leaf, chunk, chunk_offset, bargs)) {
3332 return 0;
3333 }
3334
Ilya Dryomovea671762012-01-16 22:04:48 +02003335 /* vrange filter */
3336 if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) &&
3337 chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) {
3338 return 0;
3339 }
3340
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003341 /* stripes filter */
3342 if ((bargs->flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE) &&
3343 chunk_stripes_range_filter(leaf, chunk, bargs)) {
3344 return 0;
3345 }
3346
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003347 /* soft profile changing mode */
3348 if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) &&
3349 chunk_soft_convert_filter(chunk_type, bargs)) {
3350 return 0;
3351 }
3352
David Sterba7d824b62014-05-07 17:37:51 +02003353 /*
3354 * limited by count, must be the last filter
3355 */
3356 if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT)) {
3357 if (bargs->limit == 0)
3358 return 0;
3359 else
3360 bargs->limit--;
David Sterba12907fc2015-10-10 17:16:50 +02003361 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE)) {
3362 /*
3363 * Same logic as the 'limit' filter; the minimum cannot be
3364 * determined here because we do not have the global informatoin
3365 * about the count of all chunks that satisfy the filters.
3366 */
3367 if (bargs->limit_max == 0)
3368 return 0;
3369 else
3370 bargs->limit_max--;
David Sterba7d824b62014-05-07 17:37:51 +02003371 }
3372
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003373 return 1;
3374}
3375
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003376static int __btrfs_balance(struct btrfs_fs_info *fs_info)
Chris Masonec44a352008-04-28 15:29:52 -04003377{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003378 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003379 struct btrfs_root *chunk_root = fs_info->chunk_root;
3380 struct btrfs_root *dev_root = fs_info->dev_root;
3381 struct list_head *devices;
Chris Masonec44a352008-04-28 15:29:52 -04003382 struct btrfs_device *device;
3383 u64 old_size;
3384 u64 size_to_free;
David Sterba12907fc2015-10-10 17:16:50 +02003385 u64 chunk_type;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003386 struct btrfs_chunk *chunk;
Chris Masonec44a352008-04-28 15:29:52 -04003387 struct btrfs_path *path;
3388 struct btrfs_key key;
Chris Masonec44a352008-04-28 15:29:52 -04003389 struct btrfs_key found_key;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003390 struct btrfs_trans_handle *trans;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003391 struct extent_buffer *leaf;
3392 int slot;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003393 int ret;
3394 int enospc_errors = 0;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003395 bool counting = true;
David Sterba12907fc2015-10-10 17:16:50 +02003396 /* The single value limit and min/max limits use the same bytes in the */
David Sterba7d824b62014-05-07 17:37:51 +02003397 u64 limit_data = bctl->data.limit;
3398 u64 limit_meta = bctl->meta.limit;
3399 u64 limit_sys = bctl->sys.limit;
David Sterba12907fc2015-10-10 17:16:50 +02003400 u32 count_data = 0;
3401 u32 count_meta = 0;
3402 u32 count_sys = 0;
Zhao Lei2c9fe832015-11-09 11:51:32 +08003403 int chunk_reserved = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003404
Chris Masonec44a352008-04-28 15:29:52 -04003405 /* step one make some room on all the devices */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003406 devices = &fs_info->fs_devices->devices;
Qinghuang Fengc6e30872009-01-21 10:59:08 -05003407 list_for_each_entry(device, devices, dev_list) {
Miao Xie7cc8e582014-09-03 21:35:38 +08003408 old_size = btrfs_device_get_total_bytes(device);
Chris Masonec44a352008-04-28 15:29:52 -04003409 size_to_free = div_factor(old_size, 1);
3410 size_to_free = min(size_to_free, (u64)1 * 1024 * 1024);
Yan Zheng2b820322008-11-17 21:11:30 -05003411 if (!device->writeable ||
Miao Xie7cc8e582014-09-03 21:35:38 +08003412 btrfs_device_get_total_bytes(device) -
3413 btrfs_device_get_bytes_used(device) > size_to_free ||
Stefan Behrens63a212a2012-11-05 18:29:28 +01003414 device->is_tgtdev_for_dev_replace)
Chris Masonec44a352008-04-28 15:29:52 -04003415 continue;
3416
3417 ret = btrfs_shrink_device(device, old_size - size_to_free);
Josef Bacikba1bf482009-09-11 16:11:19 -04003418 if (ret == -ENOSPC)
3419 break;
Chris Masonec44a352008-04-28 15:29:52 -04003420 BUG_ON(ret);
3421
Yan, Zhenga22285a2010-05-16 10:48:46 -04003422 trans = btrfs_start_transaction(dev_root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00003423 BUG_ON(IS_ERR(trans));
Chris Masonec44a352008-04-28 15:29:52 -04003424
3425 ret = btrfs_grow_device(trans, device, old_size);
3426 BUG_ON(ret);
3427
3428 btrfs_end_transaction(trans, dev_root);
3429 }
3430
3431 /* step two, relocate all the chunks */
3432 path = btrfs_alloc_path();
Mark Fasheh17e9f792011-07-12 11:10:23 -07003433 if (!path) {
3434 ret = -ENOMEM;
3435 goto error;
3436 }
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003437
3438 /* zero out stat counters */
3439 spin_lock(&fs_info->balance_lock);
3440 memset(&bctl->stat, 0, sizeof(bctl->stat));
3441 spin_unlock(&fs_info->balance_lock);
3442again:
David Sterba7d824b62014-05-07 17:37:51 +02003443 if (!counting) {
David Sterba12907fc2015-10-10 17:16:50 +02003444 /*
3445 * The single value limit and min/max limits use the same bytes
3446 * in the
3447 */
David Sterba7d824b62014-05-07 17:37:51 +02003448 bctl->data.limit = limit_data;
3449 bctl->meta.limit = limit_meta;
3450 bctl->sys.limit = limit_sys;
3451 }
Chris Masonec44a352008-04-28 15:29:52 -04003452 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
3453 key.offset = (u64)-1;
3454 key.type = BTRFS_CHUNK_ITEM_KEY;
3455
Chris Masond3977122009-01-05 21:25:51 -05003456 while (1) {
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003457 if ((!counting && atomic_read(&fs_info->balance_pause_req)) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003458 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003459 ret = -ECANCELED;
3460 goto error;
3461 }
3462
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003463 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003464 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003465 if (ret < 0) {
3466 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003467 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003468 }
Chris Masonec44a352008-04-28 15:29:52 -04003469
3470 /*
3471 * this shouldn't happen, it means the last relocate
3472 * failed
3473 */
3474 if (ret == 0)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003475 BUG(); /* FIXME break ? */
Chris Masonec44a352008-04-28 15:29:52 -04003476
3477 ret = btrfs_previous_item(chunk_root, path, 0,
3478 BTRFS_CHUNK_ITEM_KEY);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003479 if (ret) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003480 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003481 ret = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003482 break;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003483 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003484
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003485 leaf = path->nodes[0];
3486 slot = path->slots[0];
3487 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3488
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003489 if (found_key.objectid != key.objectid) {
3490 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003491 break;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003492 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003493
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003494 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
David Sterba12907fc2015-10-10 17:16:50 +02003495 chunk_type = btrfs_chunk_type(leaf, chunk);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003496
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003497 if (!counting) {
3498 spin_lock(&fs_info->balance_lock);
3499 bctl->stat.considered++;
3500 spin_unlock(&fs_info->balance_lock);
3501 }
3502
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003503 ret = should_balance_chunk(chunk_root, leaf, chunk,
3504 found_key.offset);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003505
David Sterbab3b4aa72011-04-21 01:20:15 +02003506 btrfs_release_path(path);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003507 if (!ret) {
3508 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003509 goto loop;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003510 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003511
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003512 if (counting) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003513 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003514 spin_lock(&fs_info->balance_lock);
3515 bctl->stat.expected++;
3516 spin_unlock(&fs_info->balance_lock);
David Sterba12907fc2015-10-10 17:16:50 +02003517
3518 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3519 count_data++;
3520 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3521 count_sys++;
3522 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3523 count_meta++;
3524
3525 goto loop;
3526 }
3527
3528 /*
3529 * Apply limit_min filter, no need to check if the LIMITS
3530 * filter is used, limit_min is 0 by default
3531 */
3532 if (((chunk_type & BTRFS_BLOCK_GROUP_DATA) &&
3533 count_data < bctl->data.limit_min)
3534 || ((chunk_type & BTRFS_BLOCK_GROUP_METADATA) &&
3535 count_meta < bctl->meta.limit_min)
3536 || ((chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) &&
3537 count_sys < bctl->sys.limit_min)) {
3538 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003539 goto loop;
3540 }
3541
Zhao Lei2c9fe832015-11-09 11:51:32 +08003542 if ((chunk_type & BTRFS_BLOCK_GROUP_DATA) && !chunk_reserved) {
3543 trans = btrfs_start_transaction(chunk_root, 0);
3544 if (IS_ERR(trans)) {
3545 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
3546 ret = PTR_ERR(trans);
3547 goto error;
3548 }
3549
3550 ret = btrfs_force_chunk_alloc(trans, chunk_root,
3551 BTRFS_BLOCK_GROUP_DATA);
Filipe Manana8a7d6562015-12-10 11:08:59 +00003552 btrfs_end_transaction(trans, chunk_root);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003553 if (ret < 0) {
3554 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
3555 goto error;
3556 }
Zhao Lei2c9fe832015-11-09 11:51:32 +08003557 chunk_reserved = 1;
3558 }
3559
Chris Masonec44a352008-04-28 15:29:52 -04003560 ret = btrfs_relocate_chunk(chunk_root,
Chris Masonec44a352008-04-28 15:29:52 -04003561 found_key.offset);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003562 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacik508794e2011-07-02 21:24:41 +00003563 if (ret && ret != -ENOSPC)
3564 goto error;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003565 if (ret == -ENOSPC) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003566 enospc_errors++;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003567 } else {
3568 spin_lock(&fs_info->balance_lock);
3569 bctl->stat.completed++;
3570 spin_unlock(&fs_info->balance_lock);
3571 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003572loop:
Ilya Dryomov795a3322013-08-27 13:50:44 +03003573 if (found_key.offset == 0)
3574 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04003575 key.offset = found_key.offset - 1;
Chris Masonec44a352008-04-28 15:29:52 -04003576 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003577
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003578 if (counting) {
3579 btrfs_release_path(path);
3580 counting = false;
3581 goto again;
3582 }
Chris Masonec44a352008-04-28 15:29:52 -04003583error:
3584 btrfs_free_path(path);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003585 if (enospc_errors) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003586 btrfs_info(fs_info, "%d enospc errors during balance",
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003587 enospc_errors);
3588 if (!ret)
3589 ret = -ENOSPC;
3590 }
3591
Chris Masonec44a352008-04-28 15:29:52 -04003592 return ret;
3593}
3594
Ilya Dryomov0c460c02012-03-27 17:09:17 +03003595/**
3596 * alloc_profile_is_valid - see if a given profile is valid and reduced
3597 * @flags: profile to validate
3598 * @extended: if true @flags is treated as an extended profile
3599 */
3600static int alloc_profile_is_valid(u64 flags, int extended)
3601{
3602 u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK :
3603 BTRFS_BLOCK_GROUP_PROFILE_MASK);
3604
3605 flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK;
3606
3607 /* 1) check that all other bits are zeroed */
3608 if (flags & ~mask)
3609 return 0;
3610
3611 /* 2) see if profile is reduced */
3612 if (flags == 0)
3613 return !extended; /* "0" is valid for usual profiles */
3614
3615 /* true if exactly one bit set */
3616 return (flags & (flags - 1)) == 0;
3617}
3618
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003619static inline int balance_need_close(struct btrfs_fs_info *fs_info)
3620{
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003621 /* cancel requested || normal exit path */
3622 return atomic_read(&fs_info->balance_cancel_req) ||
3623 (atomic_read(&fs_info->balance_pause_req) == 0 &&
3624 atomic_read(&fs_info->balance_cancel_req) == 0);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003625}
3626
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003627static void __cancel_balance(struct btrfs_fs_info *fs_info)
3628{
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003629 int ret;
3630
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003631 unset_balance_control(fs_info);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003632 ret = del_balance_item(fs_info->tree_root);
Liu Bo0f788c52013-03-04 16:25:40 +00003633 if (ret)
Anand Jaina4553fe2015-09-25 14:43:01 +08003634 btrfs_std_error(fs_info, ret, NULL);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003635
3636 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003637}
3638
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003639/* Non-zero return value signifies invalidity */
3640static inline int validate_convert_profile(struct btrfs_balance_args *bctl_arg,
3641 u64 allowed)
3642{
3643 return ((bctl_arg->flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3644 (!alloc_profile_is_valid(bctl_arg->target, 1) ||
3645 (bctl_arg->target & ~allowed)));
3646}
3647
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003648/*
3649 * Should be called with both balance and volume mutexes held
3650 */
3651int btrfs_balance(struct btrfs_balance_control *bctl,
3652 struct btrfs_ioctl_balance_args *bargs)
3653{
3654 struct btrfs_fs_info *fs_info = bctl->fs_info;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003655 u64 allowed;
Ilya Dryomove4837f82012-03-27 17:09:17 +03003656 int mixed = 0;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003657 int ret;
Stefan Behrens8dabb742012-11-06 13:15:27 +01003658 u64 num_devices;
Miao Xiede98ced2013-01-29 10:13:12 +00003659 unsigned seq;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003660
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003661 if (btrfs_fs_closing(fs_info) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003662 atomic_read(&fs_info->balance_pause_req) ||
3663 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003664 ret = -EINVAL;
3665 goto out;
3666 }
3667
Ilya Dryomove4837f82012-03-27 17:09:17 +03003668 allowed = btrfs_super_incompat_flags(fs_info->super_copy);
3669 if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
3670 mixed = 1;
3671
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003672 /*
3673 * In case of mixed groups both data and meta should be picked,
3674 * and identical options should be given for both of them.
3675 */
Ilya Dryomove4837f82012-03-27 17:09:17 +03003676 allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA;
3677 if (mixed && (bctl->flags & allowed)) {
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003678 if (!(bctl->flags & BTRFS_BALANCE_DATA) ||
3679 !(bctl->flags & BTRFS_BALANCE_METADATA) ||
3680 memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003681 btrfs_err(fs_info, "with mixed groups data and "
3682 "metadata balance options must be the same");
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003683 ret = -EINVAL;
3684 goto out;
3685 }
3686 }
3687
Stefan Behrens8dabb742012-11-06 13:15:27 +01003688 num_devices = fs_info->fs_devices->num_devices;
3689 btrfs_dev_replace_lock(&fs_info->dev_replace);
3690 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
3691 BUG_ON(num_devices < 1);
3692 num_devices--;
3693 }
3694 btrfs_dev_replace_unlock(&fs_info->dev_replace);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003695 allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE;
Stefan Behrens8dabb742012-11-06 13:15:27 +01003696 if (num_devices == 1)
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003697 allowed |= BTRFS_BLOCK_GROUP_DUP;
Andreas Philipp8250dab2013-05-11 11:13:03 +00003698 else if (num_devices > 1)
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003699 allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1);
Andreas Philipp8250dab2013-05-11 11:13:03 +00003700 if (num_devices > 2)
3701 allowed |= BTRFS_BLOCK_GROUP_RAID5;
3702 if (num_devices > 3)
3703 allowed |= (BTRFS_BLOCK_GROUP_RAID10 |
3704 BTRFS_BLOCK_GROUP_RAID6);
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003705 if (validate_convert_profile(&bctl->data, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003706 btrfs_err(fs_info, "unable to start balance with target "
3707 "data profile %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003708 bctl->data.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003709 ret = -EINVAL;
3710 goto out;
3711 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003712 if (validate_convert_profile(&bctl->meta, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003713 btrfs_err(fs_info,
3714 "unable to start balance with target metadata profile %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003715 bctl->meta.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003716 ret = -EINVAL;
3717 goto out;
3718 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003719 if (validate_convert_profile(&bctl->sys, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003720 btrfs_err(fs_info,
3721 "unable to start balance with target system profile %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003722 bctl->sys.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003723 ret = -EINVAL;
3724 goto out;
3725 }
3726
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003727 /* allow to reduce meta or sys integrity only if force set */
3728 allowed = BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05003729 BTRFS_BLOCK_GROUP_RAID10 |
3730 BTRFS_BLOCK_GROUP_RAID5 |
3731 BTRFS_BLOCK_GROUP_RAID6;
Miao Xiede98ced2013-01-29 10:13:12 +00003732 do {
3733 seq = read_seqbegin(&fs_info->profiles_lock);
3734
3735 if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3736 (fs_info->avail_system_alloc_bits & allowed) &&
3737 !(bctl->sys.target & allowed)) ||
3738 ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3739 (fs_info->avail_metadata_alloc_bits & allowed) &&
3740 !(bctl->meta.target & allowed))) {
3741 if (bctl->flags & BTRFS_BALANCE_FORCE) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003742 btrfs_info(fs_info, "force reducing metadata integrity");
Miao Xiede98ced2013-01-29 10:13:12 +00003743 } else {
Frank Holtonefe120a2013-12-20 11:37:06 -05003744 btrfs_err(fs_info, "balance will reduce metadata "
3745 "integrity, use force if you want this");
Miao Xiede98ced2013-01-29 10:13:12 +00003746 ret = -EINVAL;
3747 goto out;
3748 }
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003749 }
Miao Xiede98ced2013-01-29 10:13:12 +00003750 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003751
Sam Tygieree592d02016-01-06 08:46:12 +00003752 if (btrfs_get_num_tolerated_disk_barrier_failures(bctl->meta.target) <
3753 btrfs_get_num_tolerated_disk_barrier_failures(bctl->data.target)) {
3754 btrfs_warn(fs_info,
3755 "metatdata profile 0x%llx has lower redundancy than data profile 0x%llx",
3756 bctl->meta.target, bctl->data.target);
3757 }
3758
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003759 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
Zhao Lei943c6e92015-08-19 15:54:15 +08003760 fs_info->num_tolerated_disk_barrier_failures = min(
3761 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info),
3762 btrfs_get_num_tolerated_disk_barrier_failures(
3763 bctl->sys.target));
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003764 }
3765
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003766 ret = insert_balance_item(fs_info->tree_root, bctl);
Ilya Dryomov59641012012-01-16 22:04:48 +02003767 if (ret && ret != -EEXIST)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003768 goto out;
3769
Ilya Dryomov59641012012-01-16 22:04:48 +02003770 if (!(bctl->flags & BTRFS_BALANCE_RESUME)) {
3771 BUG_ON(ret == -EEXIST);
3772 set_balance_control(bctl);
3773 } else {
3774 BUG_ON(ret != -EEXIST);
3775 spin_lock(&fs_info->balance_lock);
3776 update_balance_args(bctl);
3777 spin_unlock(&fs_info->balance_lock);
3778 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003779
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003780 atomic_inc(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003781 mutex_unlock(&fs_info->balance_mutex);
3782
3783 ret = __btrfs_balance(fs_info);
3784
3785 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003786 atomic_dec(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003787
Ilya Dryomovbf023ec2013-02-12 16:27:46 +00003788 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3789 fs_info->num_tolerated_disk_barrier_failures =
3790 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info);
3791 }
3792
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003793 if (bargs) {
3794 memset(bargs, 0, sizeof(*bargs));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003795 update_ioctl_balance_args(fs_info, 0, bargs);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003796 }
3797
Ilya Dryomov3a01aa72013-03-06 01:57:55 -07003798 if ((ret && ret != -ECANCELED && ret != -ENOSPC) ||
3799 balance_need_close(fs_info)) {
3800 __cancel_balance(fs_info);
3801 }
3802
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003803 wake_up(&fs_info->balance_wait_q);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003804
3805 return ret;
3806out:
Ilya Dryomov59641012012-01-16 22:04:48 +02003807 if (bctl->flags & BTRFS_BALANCE_RESUME)
3808 __cancel_balance(fs_info);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003809 else {
Ilya Dryomov59641012012-01-16 22:04:48 +02003810 kfree(bctl);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003811 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
3812 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003813 return ret;
3814}
3815
3816static int balance_kthread(void *data)
3817{
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003818 struct btrfs_fs_info *fs_info = data;
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003819 int ret = 0;
Ilya Dryomov59641012012-01-16 22:04:48 +02003820
3821 mutex_lock(&fs_info->volume_mutex);
3822 mutex_lock(&fs_info->balance_mutex);
3823
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003824 if (fs_info->balance_ctl) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003825 btrfs_info(fs_info, "continuing balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003826 ret = btrfs_balance(fs_info->balance_ctl, NULL);
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003827 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003828
3829 mutex_unlock(&fs_info->balance_mutex);
3830 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003831
Ilya Dryomov59641012012-01-16 22:04:48 +02003832 return ret;
3833}
3834
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003835int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info)
3836{
3837 struct task_struct *tsk;
3838
3839 spin_lock(&fs_info->balance_lock);
3840 if (!fs_info->balance_ctl) {
3841 spin_unlock(&fs_info->balance_lock);
3842 return 0;
3843 }
3844 spin_unlock(&fs_info->balance_lock);
3845
3846 if (btrfs_test_opt(fs_info->tree_root, SKIP_BALANCE)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003847 btrfs_info(fs_info, "force skipping balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003848 return 0;
3849 }
3850
3851 tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance");
Sachin Kamatcd633972013-07-15 16:52:18 +05303852 return PTR_ERR_OR_ZERO(tsk);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003853}
3854
Ilya Dryomov68310a52012-06-22 12:24:12 -06003855int btrfs_recover_balance(struct btrfs_fs_info *fs_info)
Ilya Dryomov59641012012-01-16 22:04:48 +02003856{
Ilya Dryomov59641012012-01-16 22:04:48 +02003857 struct btrfs_balance_control *bctl;
3858 struct btrfs_balance_item *item;
3859 struct btrfs_disk_balance_args disk_bargs;
3860 struct btrfs_path *path;
3861 struct extent_buffer *leaf;
3862 struct btrfs_key key;
3863 int ret;
3864
3865 path = btrfs_alloc_path();
3866 if (!path)
3867 return -ENOMEM;
3868
Ilya Dryomov68310a52012-06-22 12:24:12 -06003869 key.objectid = BTRFS_BALANCE_OBJECTID;
3870 key.type = BTRFS_BALANCE_ITEM_KEY;
3871 key.offset = 0;
3872
3873 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
3874 if (ret < 0)
3875 goto out;
3876 if (ret > 0) { /* ret = -ENOENT; */
3877 ret = 0;
3878 goto out;
3879 }
3880
Ilya Dryomov59641012012-01-16 22:04:48 +02003881 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
3882 if (!bctl) {
3883 ret = -ENOMEM;
3884 goto out;
3885 }
3886
Ilya Dryomov59641012012-01-16 22:04:48 +02003887 leaf = path->nodes[0];
3888 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
3889
Ilya Dryomov68310a52012-06-22 12:24:12 -06003890 bctl->fs_info = fs_info;
3891 bctl->flags = btrfs_balance_flags(leaf, item);
3892 bctl->flags |= BTRFS_BALANCE_RESUME;
Ilya Dryomov59641012012-01-16 22:04:48 +02003893
3894 btrfs_balance_data(leaf, item, &disk_bargs);
3895 btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs);
3896 btrfs_balance_meta(leaf, item, &disk_bargs);
3897 btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs);
3898 btrfs_balance_sys(leaf, item, &disk_bargs);
3899 btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs);
3900
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003901 WARN_ON(atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1));
3902
Ilya Dryomov68310a52012-06-22 12:24:12 -06003903 mutex_lock(&fs_info->volume_mutex);
3904 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02003905
Ilya Dryomov68310a52012-06-22 12:24:12 -06003906 set_balance_control(bctl);
3907
3908 mutex_unlock(&fs_info->balance_mutex);
3909 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02003910out:
3911 btrfs_free_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04003912 return ret;
3913}
3914
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003915int btrfs_pause_balance(struct btrfs_fs_info *fs_info)
3916{
3917 int ret = 0;
3918
3919 mutex_lock(&fs_info->balance_mutex);
3920 if (!fs_info->balance_ctl) {
3921 mutex_unlock(&fs_info->balance_mutex);
3922 return -ENOTCONN;
3923 }
3924
3925 if (atomic_read(&fs_info->balance_running)) {
3926 atomic_inc(&fs_info->balance_pause_req);
3927 mutex_unlock(&fs_info->balance_mutex);
3928
3929 wait_event(fs_info->balance_wait_q,
3930 atomic_read(&fs_info->balance_running) == 0);
3931
3932 mutex_lock(&fs_info->balance_mutex);
3933 /* we are good with balance_ctl ripped off from under us */
3934 BUG_ON(atomic_read(&fs_info->balance_running));
3935 atomic_dec(&fs_info->balance_pause_req);
3936 } else {
3937 ret = -ENOTCONN;
3938 }
3939
3940 mutex_unlock(&fs_info->balance_mutex);
3941 return ret;
3942}
3943
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003944int btrfs_cancel_balance(struct btrfs_fs_info *fs_info)
3945{
Ilya Dryomove649e582013-10-10 20:40:21 +03003946 if (fs_info->sb->s_flags & MS_RDONLY)
3947 return -EROFS;
3948
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003949 mutex_lock(&fs_info->balance_mutex);
3950 if (!fs_info->balance_ctl) {
3951 mutex_unlock(&fs_info->balance_mutex);
3952 return -ENOTCONN;
3953 }
3954
3955 atomic_inc(&fs_info->balance_cancel_req);
3956 /*
3957 * if we are running just wait and return, balance item is
3958 * deleted in btrfs_balance in this case
3959 */
3960 if (atomic_read(&fs_info->balance_running)) {
3961 mutex_unlock(&fs_info->balance_mutex);
3962 wait_event(fs_info->balance_wait_q,
3963 atomic_read(&fs_info->balance_running) == 0);
3964 mutex_lock(&fs_info->balance_mutex);
3965 } else {
3966 /* __cancel_balance needs volume_mutex */
3967 mutex_unlock(&fs_info->balance_mutex);
3968 mutex_lock(&fs_info->volume_mutex);
3969 mutex_lock(&fs_info->balance_mutex);
3970
3971 if (fs_info->balance_ctl)
3972 __cancel_balance(fs_info);
3973
3974 mutex_unlock(&fs_info->volume_mutex);
3975 }
3976
3977 BUG_ON(fs_info->balance_ctl || atomic_read(&fs_info->balance_running));
3978 atomic_dec(&fs_info->balance_cancel_req);
3979 mutex_unlock(&fs_info->balance_mutex);
3980 return 0;
3981}
3982
Stefan Behrens803b2f52013-08-15 17:11:21 +02003983static int btrfs_uuid_scan_kthread(void *data)
3984{
3985 struct btrfs_fs_info *fs_info = data;
3986 struct btrfs_root *root = fs_info->tree_root;
3987 struct btrfs_key key;
3988 struct btrfs_key max_key;
3989 struct btrfs_path *path = NULL;
3990 int ret = 0;
3991 struct extent_buffer *eb;
3992 int slot;
3993 struct btrfs_root_item root_item;
3994 u32 item_size;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01003995 struct btrfs_trans_handle *trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02003996
3997 path = btrfs_alloc_path();
3998 if (!path) {
3999 ret = -ENOMEM;
4000 goto out;
4001 }
4002
4003 key.objectid = 0;
4004 key.type = BTRFS_ROOT_ITEM_KEY;
4005 key.offset = 0;
4006
4007 max_key.objectid = (u64)-1;
4008 max_key.type = BTRFS_ROOT_ITEM_KEY;
4009 max_key.offset = (u64)-1;
4010
Stefan Behrens803b2f52013-08-15 17:11:21 +02004011 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01004012 ret = btrfs_search_forward(root, &key, path, 0);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004013 if (ret) {
4014 if (ret > 0)
4015 ret = 0;
4016 break;
4017 }
4018
4019 if (key.type != BTRFS_ROOT_ITEM_KEY ||
4020 (key.objectid < BTRFS_FIRST_FREE_OBJECTID &&
4021 key.objectid != BTRFS_FS_TREE_OBJECTID) ||
4022 key.objectid > BTRFS_LAST_FREE_OBJECTID)
4023 goto skip;
4024
4025 eb = path->nodes[0];
4026 slot = path->slots[0];
4027 item_size = btrfs_item_size_nr(eb, slot);
4028 if (item_size < sizeof(root_item))
4029 goto skip;
4030
Stefan Behrens803b2f52013-08-15 17:11:21 +02004031 read_extent_buffer(eb, &root_item,
4032 btrfs_item_ptr_offset(eb, slot),
4033 (int)sizeof(root_item));
4034 if (btrfs_root_refs(&root_item) == 0)
4035 goto skip;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004036
4037 if (!btrfs_is_empty_uuid(root_item.uuid) ||
4038 !btrfs_is_empty_uuid(root_item.received_uuid)) {
4039 if (trans)
4040 goto update_tree;
4041
4042 btrfs_release_path(path);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004043 /*
4044 * 1 - subvol uuid item
4045 * 1 - received_subvol uuid item
4046 */
4047 trans = btrfs_start_transaction(fs_info->uuid_root, 2);
4048 if (IS_ERR(trans)) {
4049 ret = PTR_ERR(trans);
4050 break;
4051 }
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004052 continue;
4053 } else {
4054 goto skip;
4055 }
4056update_tree:
4057 if (!btrfs_is_empty_uuid(root_item.uuid)) {
Stefan Behrens803b2f52013-08-15 17:11:21 +02004058 ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root,
4059 root_item.uuid,
4060 BTRFS_UUID_KEY_SUBVOL,
4061 key.objectid);
4062 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004063 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004064 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004065 break;
4066 }
4067 }
4068
4069 if (!btrfs_is_empty_uuid(root_item.received_uuid)) {
Stefan Behrens803b2f52013-08-15 17:11:21 +02004070 ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root,
4071 root_item.received_uuid,
4072 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4073 key.objectid);
4074 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004075 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004076 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004077 break;
4078 }
4079 }
4080
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004081skip:
Stefan Behrens803b2f52013-08-15 17:11:21 +02004082 if (trans) {
4083 ret = btrfs_end_transaction(trans, fs_info->uuid_root);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004084 trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004085 if (ret)
4086 break;
4087 }
4088
Stefan Behrens803b2f52013-08-15 17:11:21 +02004089 btrfs_release_path(path);
4090 if (key.offset < (u64)-1) {
4091 key.offset++;
4092 } else if (key.type < BTRFS_ROOT_ITEM_KEY) {
4093 key.offset = 0;
4094 key.type = BTRFS_ROOT_ITEM_KEY;
4095 } else if (key.objectid < (u64)-1) {
4096 key.offset = 0;
4097 key.type = BTRFS_ROOT_ITEM_KEY;
4098 key.objectid++;
4099 } else {
4100 break;
4101 }
4102 cond_resched();
4103 }
4104
4105out:
4106 btrfs_free_path(path);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004107 if (trans && !IS_ERR(trans))
4108 btrfs_end_transaction(trans, fs_info->uuid_root);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004109 if (ret)
Frank Holtonefe120a2013-12-20 11:37:06 -05004110 btrfs_warn(fs_info, "btrfs_uuid_scan_kthread failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004111 else
4112 fs_info->update_uuid_tree_gen = 1;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004113 up(&fs_info->uuid_tree_rescan_sem);
4114 return 0;
4115}
4116
Stefan Behrens70f80172013-08-15 17:11:23 +02004117/*
4118 * Callback for btrfs_uuid_tree_iterate().
4119 * returns:
4120 * 0 check succeeded, the entry is not outdated.
4121 * < 0 if an error occured.
4122 * > 0 if the check failed, which means the caller shall remove the entry.
4123 */
4124static int btrfs_check_uuid_tree_entry(struct btrfs_fs_info *fs_info,
4125 u8 *uuid, u8 type, u64 subid)
4126{
4127 struct btrfs_key key;
4128 int ret = 0;
4129 struct btrfs_root *subvol_root;
4130
4131 if (type != BTRFS_UUID_KEY_SUBVOL &&
4132 type != BTRFS_UUID_KEY_RECEIVED_SUBVOL)
4133 goto out;
4134
4135 key.objectid = subid;
4136 key.type = BTRFS_ROOT_ITEM_KEY;
4137 key.offset = (u64)-1;
4138 subvol_root = btrfs_read_fs_root_no_name(fs_info, &key);
4139 if (IS_ERR(subvol_root)) {
4140 ret = PTR_ERR(subvol_root);
4141 if (ret == -ENOENT)
4142 ret = 1;
4143 goto out;
4144 }
4145
4146 switch (type) {
4147 case BTRFS_UUID_KEY_SUBVOL:
4148 if (memcmp(uuid, subvol_root->root_item.uuid, BTRFS_UUID_SIZE))
4149 ret = 1;
4150 break;
4151 case BTRFS_UUID_KEY_RECEIVED_SUBVOL:
4152 if (memcmp(uuid, subvol_root->root_item.received_uuid,
4153 BTRFS_UUID_SIZE))
4154 ret = 1;
4155 break;
4156 }
4157
4158out:
4159 return ret;
4160}
4161
4162static int btrfs_uuid_rescan_kthread(void *data)
4163{
4164 struct btrfs_fs_info *fs_info = (struct btrfs_fs_info *)data;
4165 int ret;
4166
4167 /*
4168 * 1st step is to iterate through the existing UUID tree and
4169 * to delete all entries that contain outdated data.
4170 * 2nd step is to add all missing entries to the UUID tree.
4171 */
4172 ret = btrfs_uuid_tree_iterate(fs_info, btrfs_check_uuid_tree_entry);
4173 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004174 btrfs_warn(fs_info, "iterating uuid_tree failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004175 up(&fs_info->uuid_tree_rescan_sem);
4176 return ret;
4177 }
4178 return btrfs_uuid_scan_kthread(data);
4179}
4180
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004181int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info)
4182{
4183 struct btrfs_trans_handle *trans;
4184 struct btrfs_root *tree_root = fs_info->tree_root;
4185 struct btrfs_root *uuid_root;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004186 struct task_struct *task;
4187 int ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004188
4189 /*
4190 * 1 - root node
4191 * 1 - root item
4192 */
4193 trans = btrfs_start_transaction(tree_root, 2);
4194 if (IS_ERR(trans))
4195 return PTR_ERR(trans);
4196
4197 uuid_root = btrfs_create_tree(trans, fs_info,
4198 BTRFS_UUID_TREE_OBJECTID);
4199 if (IS_ERR(uuid_root)) {
David Sterba6d13f542015-04-24 19:12:01 +02004200 ret = PTR_ERR(uuid_root);
4201 btrfs_abort_transaction(trans, tree_root, ret);
4202 return ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004203 }
4204
4205 fs_info->uuid_root = uuid_root;
4206
Stefan Behrens803b2f52013-08-15 17:11:21 +02004207 ret = btrfs_commit_transaction(trans, tree_root);
4208 if (ret)
4209 return ret;
4210
4211 down(&fs_info->uuid_tree_rescan_sem);
4212 task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid");
4213 if (IS_ERR(task)) {
Stefan Behrens70f80172013-08-15 17:11:23 +02004214 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004215 btrfs_warn(fs_info, "failed to start uuid_scan task");
Stefan Behrens803b2f52013-08-15 17:11:21 +02004216 up(&fs_info->uuid_tree_rescan_sem);
4217 return PTR_ERR(task);
4218 }
4219
4220 return 0;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004221}
Stefan Behrens803b2f52013-08-15 17:11:21 +02004222
Stefan Behrens70f80172013-08-15 17:11:23 +02004223int btrfs_check_uuid_tree(struct btrfs_fs_info *fs_info)
4224{
4225 struct task_struct *task;
4226
4227 down(&fs_info->uuid_tree_rescan_sem);
4228 task = kthread_run(btrfs_uuid_rescan_kthread, fs_info, "btrfs-uuid");
4229 if (IS_ERR(task)) {
4230 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004231 btrfs_warn(fs_info, "failed to start uuid_rescan task");
Stefan Behrens70f80172013-08-15 17:11:23 +02004232 up(&fs_info->uuid_tree_rescan_sem);
4233 return PTR_ERR(task);
4234 }
4235
4236 return 0;
4237}
4238
Chris Mason8f18cf12008-04-25 16:53:30 -04004239/*
4240 * shrinking a device means finding all of the device extents past
4241 * the new size, and then following the back refs to the chunks.
4242 * The chunk relocation code actually frees the device extent
4243 */
4244int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
4245{
4246 struct btrfs_trans_handle *trans;
4247 struct btrfs_root *root = device->dev_root;
4248 struct btrfs_dev_extent *dev_extent = NULL;
4249 struct btrfs_path *path;
4250 u64 length;
Chris Mason8f18cf12008-04-25 16:53:30 -04004251 u64 chunk_offset;
4252 int ret;
4253 int slot;
Josef Bacikba1bf482009-09-11 16:11:19 -04004254 int failed = 0;
4255 bool retried = false;
Filipe Manana53e489b2015-06-02 14:43:21 +01004256 bool checked_pending_chunks = false;
Chris Mason8f18cf12008-04-25 16:53:30 -04004257 struct extent_buffer *l;
4258 struct btrfs_key key;
David Sterba6c417612011-04-13 15:41:04 +02004259 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04004260 u64 old_total = btrfs_super_total_bytes(super_copy);
Miao Xie7cc8e582014-09-03 21:35:38 +08004261 u64 old_size = btrfs_device_get_total_bytes(device);
4262 u64 diff = old_size - new_size;
Chris Mason8f18cf12008-04-25 16:53:30 -04004263
Stefan Behrens63a212a2012-11-05 18:29:28 +01004264 if (device->is_tgtdev_for_dev_replace)
4265 return -EINVAL;
4266
Chris Mason8f18cf12008-04-25 16:53:30 -04004267 path = btrfs_alloc_path();
4268 if (!path)
4269 return -ENOMEM;
4270
David Sterbae4058b52015-11-27 16:31:35 +01004271 path->reada = READA_FORWARD;
Chris Mason8f18cf12008-04-25 16:53:30 -04004272
Chris Mason7d9eb122008-07-08 14:19:17 -04004273 lock_chunks(root);
4274
Miao Xie7cc8e582014-09-03 21:35:38 +08004275 btrfs_device_set_total_bytes(device, new_size);
Josef Bacik2bf64752011-09-26 17:12:22 -04004276 if (device->writeable) {
Yan Zheng2b820322008-11-17 21:11:30 -05004277 device->fs_devices->total_rw_bytes -= diff;
Josef Bacik2bf64752011-09-26 17:12:22 -04004278 spin_lock(&root->fs_info->free_chunk_lock);
4279 root->fs_info->free_chunk_space -= diff;
4280 spin_unlock(&root->fs_info->free_chunk_lock);
4281 }
Chris Mason7d9eb122008-07-08 14:19:17 -04004282 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04004283
Josef Bacikba1bf482009-09-11 16:11:19 -04004284again:
Chris Mason8f18cf12008-04-25 16:53:30 -04004285 key.objectid = device->devid;
4286 key.offset = (u64)-1;
4287 key.type = BTRFS_DEV_EXTENT_KEY;
4288
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004289 do {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004290 mutex_lock(&root->fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004291 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004292 if (ret < 0) {
4293 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004294 goto done;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004295 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004296
4297 ret = btrfs_previous_item(root, path, 0, key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004298 if (ret)
4299 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004300 if (ret < 0)
4301 goto done;
4302 if (ret) {
4303 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02004304 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004305 break;
Chris Mason8f18cf12008-04-25 16:53:30 -04004306 }
4307
4308 l = path->nodes[0];
4309 slot = path->slots[0];
4310 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
4311
Josef Bacikba1bf482009-09-11 16:11:19 -04004312 if (key.objectid != device->devid) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004313 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004314 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004315 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004316 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004317
4318 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
4319 length = btrfs_dev_extent_length(l, dev_extent);
4320
Josef Bacikba1bf482009-09-11 16:11:19 -04004321 if (key.offset + length <= new_size) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004322 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004323 btrfs_release_path(path);
Chris Balld6397ba2009-04-27 07:29:03 -04004324 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004325 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004326
Chris Mason8f18cf12008-04-25 16:53:30 -04004327 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
David Sterbab3b4aa72011-04-21 01:20:15 +02004328 btrfs_release_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04004329
Zhaoleidc2ee4e2015-08-05 18:00:04 +08004330 ret = btrfs_relocate_chunk(root, chunk_offset);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004331 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Josef Bacikba1bf482009-09-11 16:11:19 -04004332 if (ret && ret != -ENOSPC)
Chris Mason8f18cf12008-04-25 16:53:30 -04004333 goto done;
Josef Bacikba1bf482009-09-11 16:11:19 -04004334 if (ret == -ENOSPC)
4335 failed++;
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004336 } while (key.offset-- > 0);
Josef Bacikba1bf482009-09-11 16:11:19 -04004337
4338 if (failed && !retried) {
4339 failed = 0;
4340 retried = true;
4341 goto again;
4342 } else if (failed && retried) {
4343 ret = -ENOSPC;
Josef Bacikba1bf482009-09-11 16:11:19 -04004344 goto done;
Chris Mason8f18cf12008-04-25 16:53:30 -04004345 }
4346
Chris Balld6397ba2009-04-27 07:29:03 -04004347 /* Shrinking succeeded, else we would be at "done". */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004348 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00004349 if (IS_ERR(trans)) {
4350 ret = PTR_ERR(trans);
4351 goto done;
4352 }
4353
Chris Balld6397ba2009-04-27 07:29:03 -04004354 lock_chunks(root);
Filipe Manana53e489b2015-06-02 14:43:21 +01004355
4356 /*
4357 * We checked in the above loop all device extents that were already in
4358 * the device tree. However before we have updated the device's
4359 * total_bytes to the new size, we might have had chunk allocations that
4360 * have not complete yet (new block groups attached to transaction
4361 * handles), and therefore their device extents were not yet in the
4362 * device tree and we missed them in the loop above. So if we have any
4363 * pending chunk using a device extent that overlaps the device range
4364 * that we can not use anymore, commit the current transaction and
4365 * repeat the search on the device tree - this way we guarantee we will
4366 * not have chunks using device extents that end beyond 'new_size'.
4367 */
4368 if (!checked_pending_chunks) {
4369 u64 start = new_size;
4370 u64 len = old_size - new_size;
4371
Jeff Mahoney499f3772015-06-15 09:41:17 -04004372 if (contains_pending_extent(trans->transaction, device,
4373 &start, len)) {
Filipe Manana53e489b2015-06-02 14:43:21 +01004374 unlock_chunks(root);
4375 checked_pending_chunks = true;
4376 failed = 0;
4377 retried = false;
4378 ret = btrfs_commit_transaction(trans, root);
4379 if (ret)
4380 goto done;
4381 goto again;
4382 }
4383 }
4384
Miao Xie7cc8e582014-09-03 21:35:38 +08004385 btrfs_device_set_disk_total_bytes(device, new_size);
Miao Xie935e5cc2014-09-03 21:35:33 +08004386 if (list_empty(&device->resized_list))
4387 list_add_tail(&device->resized_list,
4388 &root->fs_info->fs_devices->resized_devices);
Chris Balld6397ba2009-04-27 07:29:03 -04004389
Chris Balld6397ba2009-04-27 07:29:03 -04004390 WARN_ON(diff > old_total);
4391 btrfs_set_super_total_bytes(super_copy, old_total - diff);
4392 unlock_chunks(root);
Miao Xie2196d6e2014-09-03 21:35:41 +08004393
4394 /* Now btrfs_update_device() will change the on-disk size. */
4395 ret = btrfs_update_device(trans, device);
Chris Balld6397ba2009-04-27 07:29:03 -04004396 btrfs_end_transaction(trans, root);
Chris Mason8f18cf12008-04-25 16:53:30 -04004397done:
4398 btrfs_free_path(path);
Filipe Manana53e489b2015-06-02 14:43:21 +01004399 if (ret) {
4400 lock_chunks(root);
4401 btrfs_device_set_total_bytes(device, old_size);
4402 if (device->writeable)
4403 device->fs_devices->total_rw_bytes += diff;
4404 spin_lock(&root->fs_info->free_chunk_lock);
4405 root->fs_info->free_chunk_space += diff;
4406 spin_unlock(&root->fs_info->free_chunk_lock);
4407 unlock_chunks(root);
4408 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004409 return ret;
4410}
4411
Li Zefan125ccb02011-12-08 15:07:24 +08004412static int btrfs_add_system_chunk(struct btrfs_root *root,
Chris Mason0b86a832008-03-24 15:01:56 -04004413 struct btrfs_key *key,
4414 struct btrfs_chunk *chunk, int item_size)
4415{
David Sterba6c417612011-04-13 15:41:04 +02004416 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason0b86a832008-03-24 15:01:56 -04004417 struct btrfs_disk_key disk_key;
4418 u32 array_size;
4419 u8 *ptr;
4420
Miao Xiefe48a5c2014-09-03 21:35:39 +08004421 lock_chunks(root);
Chris Mason0b86a832008-03-24 15:01:56 -04004422 array_size = btrfs_super_sys_array_size(super_copy);
Gui Hecheng5f43f862014-04-21 20:13:11 +08004423 if (array_size + item_size + sizeof(disk_key)
Miao Xiefe48a5c2014-09-03 21:35:39 +08004424 > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE) {
4425 unlock_chunks(root);
Chris Mason0b86a832008-03-24 15:01:56 -04004426 return -EFBIG;
Miao Xiefe48a5c2014-09-03 21:35:39 +08004427 }
Chris Mason0b86a832008-03-24 15:01:56 -04004428
4429 ptr = super_copy->sys_chunk_array + array_size;
4430 btrfs_cpu_key_to_disk(&disk_key, key);
4431 memcpy(ptr, &disk_key, sizeof(disk_key));
4432 ptr += sizeof(disk_key);
4433 memcpy(ptr, chunk, item_size);
4434 item_size += sizeof(disk_key);
4435 btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
Miao Xiefe48a5c2014-09-03 21:35:39 +08004436 unlock_chunks(root);
4437
Chris Mason0b86a832008-03-24 15:01:56 -04004438 return 0;
4439}
4440
Miao Xieb2117a32011-01-05 10:07:28 +00004441/*
Arne Jansen73c5de02011-04-12 12:07:57 +02004442 * sort the devices in descending order by max_avail, total_avail
Miao Xieb2117a32011-01-05 10:07:28 +00004443 */
Arne Jansen73c5de02011-04-12 12:07:57 +02004444static int btrfs_cmp_device_info(const void *a, const void *b)
Miao Xieb2117a32011-01-05 10:07:28 +00004445{
Arne Jansen73c5de02011-04-12 12:07:57 +02004446 const struct btrfs_device_info *di_a = a;
4447 const struct btrfs_device_info *di_b = b;
Miao Xieb2117a32011-01-05 10:07:28 +00004448
Arne Jansen73c5de02011-04-12 12:07:57 +02004449 if (di_a->max_avail > di_b->max_avail)
4450 return -1;
4451 if (di_a->max_avail < di_b->max_avail)
4452 return 1;
4453 if (di_a->total_avail > di_b->total_avail)
4454 return -1;
4455 if (di_a->total_avail < di_b->total_avail)
4456 return 1;
Miao Xieb2117a32011-01-05 10:07:28 +00004457 return 0;
4458}
4459
David Woodhouse53b381b2013-01-29 18:40:14 -05004460static u32 find_raid56_stripe_len(u32 data_devices, u32 dev_stripe_target)
4461{
4462 /* TODO allow them to set a preferred stripe size */
4463 return 64 * 1024;
4464}
4465
4466static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type)
4467{
Zhao Leiffe2d202015-01-20 15:11:44 +08004468 if (!(type & BTRFS_BLOCK_GROUP_RAID56_MASK))
David Woodhouse53b381b2013-01-29 18:40:14 -05004469 return;
4470
Miao Xieceda0862013-04-11 10:30:16 +00004471 btrfs_set_fs_incompat(info, RAID56);
David Woodhouse53b381b2013-01-29 18:40:14 -05004472}
4473
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004474#define BTRFS_MAX_DEVS(r) ((BTRFS_LEAF_DATA_SIZE(r) \
4475 - sizeof(struct btrfs_item) \
4476 - sizeof(struct btrfs_chunk)) \
4477 / sizeof(struct btrfs_stripe) + 1)
4478
4479#define BTRFS_MAX_DEVS_SYS_CHUNK ((BTRFS_SYSTEM_CHUNK_ARRAY_SIZE \
4480 - 2 * sizeof(struct btrfs_disk_key) \
4481 - 2 * sizeof(struct btrfs_chunk)) \
4482 / sizeof(struct btrfs_stripe) + 1)
4483
Miao Xieb2117a32011-01-05 10:07:28 +00004484static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
Josef Bacik6df9a952013-06-27 13:22:46 -04004485 struct btrfs_root *extent_root, u64 start,
4486 u64 type)
Miao Xieb2117a32011-01-05 10:07:28 +00004487{
4488 struct btrfs_fs_info *info = extent_root->fs_info;
Miao Xieb2117a32011-01-05 10:07:28 +00004489 struct btrfs_fs_devices *fs_devices = info->fs_devices;
4490 struct list_head *cur;
Arne Jansen73c5de02011-04-12 12:07:57 +02004491 struct map_lookup *map = NULL;
Miao Xieb2117a32011-01-05 10:07:28 +00004492 struct extent_map_tree *em_tree;
4493 struct extent_map *em;
Arne Jansen73c5de02011-04-12 12:07:57 +02004494 struct btrfs_device_info *devices_info = NULL;
4495 u64 total_avail;
4496 int num_stripes; /* total number of stripes to allocate */
David Woodhouse53b381b2013-01-29 18:40:14 -05004497 int data_stripes; /* number of stripes that count for
4498 block group size */
Arne Jansen73c5de02011-04-12 12:07:57 +02004499 int sub_stripes; /* sub_stripes info for map */
4500 int dev_stripes; /* stripes per dev */
4501 int devs_max; /* max devs to use */
4502 int devs_min; /* min devs needed */
4503 int devs_increment; /* ndevs has to be a multiple of this */
4504 int ncopies; /* how many copies to data has */
Miao Xieb2117a32011-01-05 10:07:28 +00004505 int ret;
Arne Jansen73c5de02011-04-12 12:07:57 +02004506 u64 max_stripe_size;
4507 u64 max_chunk_size;
4508 u64 stripe_size;
4509 u64 num_bytes;
David Woodhouse53b381b2013-01-29 18:40:14 -05004510 u64 raid_stripe_len = BTRFS_STRIPE_LEN;
Arne Jansen73c5de02011-04-12 12:07:57 +02004511 int ndevs;
4512 int i;
4513 int j;
Liu Bo31e50222012-11-21 14:18:10 +00004514 int index;
Miao Xieb2117a32011-01-05 10:07:28 +00004515
Ilya Dryomov0c460c02012-03-27 17:09:17 +03004516 BUG_ON(!alloc_profile_is_valid(type, 0));
Arne Jansen73c5de02011-04-12 12:07:57 +02004517
Miao Xieb2117a32011-01-05 10:07:28 +00004518 if (list_empty(&fs_devices->alloc_list))
4519 return -ENOSPC;
4520
Liu Bo31e50222012-11-21 14:18:10 +00004521 index = __get_raid_index(type);
Arne Jansen73c5de02011-04-12 12:07:57 +02004522
Liu Bo31e50222012-11-21 14:18:10 +00004523 sub_stripes = btrfs_raid_array[index].sub_stripes;
4524 dev_stripes = btrfs_raid_array[index].dev_stripes;
4525 devs_max = btrfs_raid_array[index].devs_max;
4526 devs_min = btrfs_raid_array[index].devs_min;
4527 devs_increment = btrfs_raid_array[index].devs_increment;
4528 ncopies = btrfs_raid_array[index].ncopies;
Arne Jansen73c5de02011-04-12 12:07:57 +02004529
4530 if (type & BTRFS_BLOCK_GROUP_DATA) {
4531 max_stripe_size = 1024 * 1024 * 1024;
4532 max_chunk_size = 10 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004533 if (!devs_max)
4534 devs_max = BTRFS_MAX_DEVS(info->chunk_root);
Arne Jansen73c5de02011-04-12 12:07:57 +02004535 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason11003732012-01-06 15:47:38 -05004536 /* for larger filesystems, use larger metadata chunks */
4537 if (fs_devices->total_rw_bytes > 50ULL * 1024 * 1024 * 1024)
4538 max_stripe_size = 1024 * 1024 * 1024;
4539 else
4540 max_stripe_size = 256 * 1024 * 1024;
Arne Jansen73c5de02011-04-12 12:07:57 +02004541 max_chunk_size = max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004542 if (!devs_max)
4543 devs_max = BTRFS_MAX_DEVS(info->chunk_root);
Arne Jansen73c5de02011-04-12 12:07:57 +02004544 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
Chris Mason96bdc7d2012-01-16 08:13:11 -05004545 max_stripe_size = 32 * 1024 * 1024;
Arne Jansen73c5de02011-04-12 12:07:57 +02004546 max_chunk_size = 2 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004547 if (!devs_max)
4548 devs_max = BTRFS_MAX_DEVS_SYS_CHUNK;
Arne Jansen73c5de02011-04-12 12:07:57 +02004549 } else {
David Sterba351fd352014-05-15 16:48:20 +02004550 btrfs_err(info, "invalid chunk type 0x%llx requested",
Arne Jansen73c5de02011-04-12 12:07:57 +02004551 type);
4552 BUG_ON(1);
4553 }
4554
4555 /* we don't want a chunk larger than 10% of writeable space */
4556 max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1),
4557 max_chunk_size);
Miao Xieb2117a32011-01-05 10:07:28 +00004558
David Sterba31e818f2015-02-20 18:00:26 +01004559 devices_info = kcalloc(fs_devices->rw_devices, sizeof(*devices_info),
Miao Xieb2117a32011-01-05 10:07:28 +00004560 GFP_NOFS);
4561 if (!devices_info)
4562 return -ENOMEM;
4563
Arne Jansen73c5de02011-04-12 12:07:57 +02004564 cur = fs_devices->alloc_list.next;
4565
4566 /*
4567 * in the first pass through the devices list, we gather information
4568 * about the available holes on each device.
4569 */
4570 ndevs = 0;
4571 while (cur != &fs_devices->alloc_list) {
4572 struct btrfs_device *device;
4573 u64 max_avail;
4574 u64 dev_offset;
4575
4576 device = list_entry(cur, struct btrfs_device, dev_alloc_list);
4577
4578 cur = cur->next;
4579
4580 if (!device->writeable) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00004581 WARN(1, KERN_ERR
Frank Holtonefe120a2013-12-20 11:37:06 -05004582 "BTRFS: read-only device in alloc_list\n");
Arne Jansen73c5de02011-04-12 12:07:57 +02004583 continue;
4584 }
4585
Stefan Behrens63a212a2012-11-05 18:29:28 +01004586 if (!device->in_fs_metadata ||
4587 device->is_tgtdev_for_dev_replace)
Arne Jansen73c5de02011-04-12 12:07:57 +02004588 continue;
4589
4590 if (device->total_bytes > device->bytes_used)
4591 total_avail = device->total_bytes - device->bytes_used;
4592 else
4593 total_avail = 0;
liubo38c01b92011-08-02 02:39:03 +00004594
4595 /* If there is no space on this device, skip it. */
4596 if (total_avail == 0)
4597 continue;
Arne Jansen73c5de02011-04-12 12:07:57 +02004598
Josef Bacik6df9a952013-06-27 13:22:46 -04004599 ret = find_free_dev_extent(trans, device,
Arne Jansen73c5de02011-04-12 12:07:57 +02004600 max_stripe_size * dev_stripes,
4601 &dev_offset, &max_avail);
4602 if (ret && ret != -ENOSPC)
4603 goto error;
4604
4605 if (ret == 0)
4606 max_avail = max_stripe_size * dev_stripes;
4607
4608 if (max_avail < BTRFS_STRIPE_LEN * dev_stripes)
4609 continue;
4610
Eric Sandeen063d0062013-01-31 00:55:01 +00004611 if (ndevs == fs_devices->rw_devices) {
4612 WARN(1, "%s: found more than %llu devices\n",
4613 __func__, fs_devices->rw_devices);
4614 break;
4615 }
Arne Jansen73c5de02011-04-12 12:07:57 +02004616 devices_info[ndevs].dev_offset = dev_offset;
4617 devices_info[ndevs].max_avail = max_avail;
4618 devices_info[ndevs].total_avail = total_avail;
4619 devices_info[ndevs].dev = device;
4620 ++ndevs;
4621 }
4622
4623 /*
4624 * now sort the devices by hole size / available space
4625 */
4626 sort(devices_info, ndevs, sizeof(struct btrfs_device_info),
4627 btrfs_cmp_device_info, NULL);
4628
4629 /* round down to number of usable stripes */
4630 ndevs -= ndevs % devs_increment;
4631
4632 if (ndevs < devs_increment * sub_stripes || ndevs < devs_min) {
4633 ret = -ENOSPC;
4634 goto error;
4635 }
4636
4637 if (devs_max && ndevs > devs_max)
4638 ndevs = devs_max;
4639 /*
4640 * the primary goal is to maximize the number of stripes, so use as many
4641 * devices as possible, even if the stripes are not maximum sized.
4642 */
4643 stripe_size = devices_info[ndevs-1].max_avail;
4644 num_stripes = ndevs * dev_stripes;
4645
David Woodhouse53b381b2013-01-29 18:40:14 -05004646 /*
4647 * this will have to be fixed for RAID1 and RAID10 over
4648 * more drives
4649 */
4650 data_stripes = num_stripes / ncopies;
4651
David Woodhouse53b381b2013-01-29 18:40:14 -05004652 if (type & BTRFS_BLOCK_GROUP_RAID5) {
4653 raid_stripe_len = find_raid56_stripe_len(ndevs - 1,
4654 btrfs_super_stripesize(info->super_copy));
4655 data_stripes = num_stripes - 1;
4656 }
4657 if (type & BTRFS_BLOCK_GROUP_RAID6) {
4658 raid_stripe_len = find_raid56_stripe_len(ndevs - 2,
4659 btrfs_super_stripesize(info->super_copy));
4660 data_stripes = num_stripes - 2;
4661 }
Chris Mason86db2572013-02-20 16:23:40 -05004662
4663 /*
4664 * Use the number of data stripes to figure out how big this chunk
4665 * is really going to be in terms of logical address space,
4666 * and compare that answer with the max chunk size
4667 */
4668 if (stripe_size * data_stripes > max_chunk_size) {
4669 u64 mask = (1ULL << 24) - 1;
David Sterbab8b93ad2015-01-16 17:26:13 +01004670
4671 stripe_size = div_u64(max_chunk_size, data_stripes);
Chris Mason86db2572013-02-20 16:23:40 -05004672
4673 /* bump the answer up to a 16MB boundary */
4674 stripe_size = (stripe_size + mask) & ~mask;
4675
4676 /* but don't go higher than the limits we found
4677 * while searching for free extents
4678 */
4679 if (stripe_size > devices_info[ndevs-1].max_avail)
4680 stripe_size = devices_info[ndevs-1].max_avail;
4681 }
4682
David Sterbab8b93ad2015-01-16 17:26:13 +01004683 stripe_size = div_u64(stripe_size, dev_stripes);
Ilya Dryomov37db63a2012-04-13 17:05:08 +03004684
4685 /* align to BTRFS_STRIPE_LEN */
David Sterbab8b93ad2015-01-16 17:26:13 +01004686 stripe_size = div_u64(stripe_size, raid_stripe_len);
David Woodhouse53b381b2013-01-29 18:40:14 -05004687 stripe_size *= raid_stripe_len;
Arne Jansen73c5de02011-04-12 12:07:57 +02004688
Miao Xieb2117a32011-01-05 10:07:28 +00004689 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
4690 if (!map) {
4691 ret = -ENOMEM;
4692 goto error;
4693 }
4694 map->num_stripes = num_stripes;
Chris Mason9b3f68b2008-04-18 10:29:51 -04004695
Arne Jansen73c5de02011-04-12 12:07:57 +02004696 for (i = 0; i < ndevs; ++i) {
4697 for (j = 0; j < dev_stripes; ++j) {
4698 int s = i * dev_stripes + j;
4699 map->stripes[s].dev = devices_info[i].dev;
4700 map->stripes[s].physical = devices_info[i].dev_offset +
4701 j * stripe_size;
Chris Masona40a90a2008-04-18 11:55:51 -04004702 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004703 }
Chris Mason593060d2008-03-25 16:50:33 -04004704 map->sector_size = extent_root->sectorsize;
David Woodhouse53b381b2013-01-29 18:40:14 -05004705 map->stripe_len = raid_stripe_len;
4706 map->io_align = raid_stripe_len;
4707 map->io_width = raid_stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04004708 map->type = type;
Chris Mason321aecc2008-04-16 10:49:51 -04004709 map->sub_stripes = sub_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004710
David Woodhouse53b381b2013-01-29 18:40:14 -05004711 num_bytes = stripe_size * data_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004712
Arne Jansen73c5de02011-04-12 12:07:57 +02004713 trace_btrfs_chunk_alloc(info->chunk_root, map, start, num_bytes);
liubo1abe9b82011-03-24 11:18:59 +00004714
David Sterba172ddd62011-04-21 00:48:27 +02004715 em = alloc_extent_map();
Yan Zheng2b820322008-11-17 21:11:30 -05004716 if (!em) {
Wang Shilong298a8f92014-06-19 10:42:52 +08004717 kfree(map);
Miao Xieb2117a32011-01-05 10:07:28 +00004718 ret = -ENOMEM;
4719 goto error;
Yan Zheng2b820322008-11-17 21:11:30 -05004720 }
Wang Shilong298a8f92014-06-19 10:42:52 +08004721 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Chris Mason0b86a832008-03-24 15:01:56 -04004722 em->bdev = (struct block_device *)map;
Yan Zheng2b820322008-11-17 21:11:30 -05004723 em->start = start;
Arne Jansen73c5de02011-04-12 12:07:57 +02004724 em->len = num_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04004725 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04004726 em->block_len = em->len;
Josef Bacik6df9a952013-06-27 13:22:46 -04004727 em->orig_block_len = stripe_size;
Chris Mason0b86a832008-03-24 15:01:56 -04004728
Chris Mason0b86a832008-03-24 15:01:56 -04004729 em_tree = &extent_root->fs_info->mapping_tree.map_tree;
Chris Mason890871b2009-09-02 16:24:52 -04004730 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004731 ret = add_extent_mapping(em_tree, em, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004732 if (!ret) {
4733 list_add_tail(&em->list, &trans->transaction->pending_chunks);
4734 atomic_inc(&em->refs);
4735 }
Chris Mason890871b2009-09-02 16:24:52 -04004736 write_unlock(&em_tree->lock);
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004737 if (ret) {
4738 free_extent_map(em);
Mark Fasheh1dd46022011-09-08 17:29:00 -07004739 goto error;
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004740 }
Yan Zheng2b820322008-11-17 21:11:30 -05004741
Josef Bacik04487482013-01-29 15:03:37 -05004742 ret = btrfs_make_block_group(trans, extent_root, 0, type,
4743 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4744 start, num_bytes);
Josef Bacik6df9a952013-06-27 13:22:46 -04004745 if (ret)
4746 goto error_del_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05004747
Miao Xie7cc8e582014-09-03 21:35:38 +08004748 for (i = 0; i < map->num_stripes; i++) {
4749 num_bytes = map->stripes[i].dev->bytes_used + stripe_size;
4750 btrfs_device_set_bytes_used(map->stripes[i].dev, num_bytes);
4751 }
Miao Xie43530c42014-09-03 21:35:36 +08004752
Miao Xie1c116182014-09-03 21:35:37 +08004753 spin_lock(&extent_root->fs_info->free_chunk_lock);
4754 extent_root->fs_info->free_chunk_space -= (stripe_size *
4755 map->num_stripes);
4756 spin_unlock(&extent_root->fs_info->free_chunk_lock);
4757
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004758 free_extent_map(em);
David Woodhouse53b381b2013-01-29 18:40:14 -05004759 check_raid56_incompat_flag(extent_root->fs_info, type);
4760
Miao Xieb2117a32011-01-05 10:07:28 +00004761 kfree(devices_info);
Yan Zheng2b820322008-11-17 21:11:30 -05004762 return 0;
Miao Xieb2117a32011-01-05 10:07:28 +00004763
Josef Bacik6df9a952013-06-27 13:22:46 -04004764error_del_extent:
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004765 write_lock(&em_tree->lock);
4766 remove_extent_mapping(em_tree, em);
4767 write_unlock(&em_tree->lock);
4768
4769 /* One for our allocation */
4770 free_extent_map(em);
4771 /* One for the tree reference */
4772 free_extent_map(em);
Filipe Manana495e64f2014-12-02 18:07:30 +00004773 /* One for the pending_chunks list reference */
4774 free_extent_map(em);
Miao Xieb2117a32011-01-05 10:07:28 +00004775error:
Miao Xieb2117a32011-01-05 10:07:28 +00004776 kfree(devices_info);
4777 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004778}
4779
Josef Bacik6df9a952013-06-27 13:22:46 -04004780int btrfs_finish_chunk_alloc(struct btrfs_trans_handle *trans,
Yan Zheng2b820322008-11-17 21:11:30 -05004781 struct btrfs_root *extent_root,
Josef Bacik6df9a952013-06-27 13:22:46 -04004782 u64 chunk_offset, u64 chunk_size)
Yan Zheng2b820322008-11-17 21:11:30 -05004783{
Yan Zheng2b820322008-11-17 21:11:30 -05004784 struct btrfs_key key;
4785 struct btrfs_root *chunk_root = extent_root->fs_info->chunk_root;
4786 struct btrfs_device *device;
4787 struct btrfs_chunk *chunk;
4788 struct btrfs_stripe *stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004789 struct extent_map_tree *em_tree;
4790 struct extent_map *em;
4791 struct map_lookup *map;
4792 size_t item_size;
4793 u64 dev_offset;
4794 u64 stripe_size;
4795 int i = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004796 int ret;
4797
Josef Bacik6df9a952013-06-27 13:22:46 -04004798 em_tree = &extent_root->fs_info->mapping_tree.map_tree;
4799 read_lock(&em_tree->lock);
4800 em = lookup_extent_mapping(em_tree, chunk_offset, chunk_size);
4801 read_unlock(&em_tree->lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004802
Josef Bacik6df9a952013-06-27 13:22:46 -04004803 if (!em) {
4804 btrfs_crit(extent_root->fs_info, "unable to find logical "
4805 "%Lu len %Lu", chunk_offset, chunk_size);
4806 return -EINVAL;
4807 }
4808
4809 if (em->start != chunk_offset || em->len != chunk_size) {
4810 btrfs_crit(extent_root->fs_info, "found a bad mapping, wanted"
David Sterba351fd352014-05-15 16:48:20 +02004811 " %Lu-%Lu, found %Lu-%Lu", chunk_offset,
Josef Bacik6df9a952013-06-27 13:22:46 -04004812 chunk_size, em->start, em->len);
4813 free_extent_map(em);
4814 return -EINVAL;
4815 }
4816
4817 map = (struct map_lookup *)em->bdev;
4818 item_size = btrfs_chunk_item_size(map->num_stripes);
4819 stripe_size = em->orig_block_len;
4820
4821 chunk = kzalloc(item_size, GFP_NOFS);
4822 if (!chunk) {
4823 ret = -ENOMEM;
4824 goto out;
4825 }
4826
4827 for (i = 0; i < map->num_stripes; i++) {
4828 device = map->stripes[i].dev;
4829 dev_offset = map->stripes[i].physical;
4830
Yan Zheng2b820322008-11-17 21:11:30 -05004831 ret = btrfs_update_device(trans, device);
Mark Fasheh3acd3952011-09-08 17:40:01 -07004832 if (ret)
Josef Bacik6df9a952013-06-27 13:22:46 -04004833 goto out;
4834 ret = btrfs_alloc_dev_extent(trans, device,
4835 chunk_root->root_key.objectid,
4836 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4837 chunk_offset, dev_offset,
4838 stripe_size);
4839 if (ret)
4840 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05004841 }
4842
Yan Zheng2b820322008-11-17 21:11:30 -05004843 stripe = &chunk->stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004844 for (i = 0; i < map->num_stripes; i++) {
4845 device = map->stripes[i].dev;
4846 dev_offset = map->stripes[i].physical;
Yan Zheng2b820322008-11-17 21:11:30 -05004847
4848 btrfs_set_stack_stripe_devid(stripe, device->devid);
4849 btrfs_set_stack_stripe_offset(stripe, dev_offset);
4850 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
4851 stripe++;
Yan Zheng2b820322008-11-17 21:11:30 -05004852 }
4853
4854 btrfs_set_stack_chunk_length(chunk, chunk_size);
4855 btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
4856 btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len);
4857 btrfs_set_stack_chunk_type(chunk, map->type);
4858 btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes);
4859 btrfs_set_stack_chunk_io_align(chunk, map->stripe_len);
4860 btrfs_set_stack_chunk_io_width(chunk, map->stripe_len);
4861 btrfs_set_stack_chunk_sector_size(chunk, extent_root->sectorsize);
4862 btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes);
4863
4864 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
4865 key.type = BTRFS_CHUNK_ITEM_KEY;
4866 key.offset = chunk_offset;
4867
4868 ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004869 if (ret == 0 && map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
4870 /*
4871 * TODO: Cleanup of inserted chunk root in case of
4872 * failure.
4873 */
Li Zefan125ccb02011-12-08 15:07:24 +08004874 ret = btrfs_add_system_chunk(chunk_root, &key, chunk,
Yan Zheng2b820322008-11-17 21:11:30 -05004875 item_size);
Yan Zheng2b820322008-11-17 21:11:30 -05004876 }
liubo1abe9b82011-03-24 11:18:59 +00004877
Josef Bacik6df9a952013-06-27 13:22:46 -04004878out:
Yan Zheng2b820322008-11-17 21:11:30 -05004879 kfree(chunk);
Josef Bacik6df9a952013-06-27 13:22:46 -04004880 free_extent_map(em);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004881 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004882}
4883
4884/*
4885 * Chunk allocation falls into two parts. The first part does works
4886 * that make the new allocated chunk useable, but not do any operation
4887 * that modifies the chunk tree. The second part does the works that
4888 * require modifying the chunk tree. This division is important for the
4889 * bootstrap process of adding storage to a seed btrfs.
4890 */
4891int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
4892 struct btrfs_root *extent_root, u64 type)
4893{
4894 u64 chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05004895
Filipe Mananaa9629592015-05-18 19:11:40 +01004896 ASSERT(mutex_is_locked(&extent_root->fs_info->chunk_mutex));
Josef Bacik6df9a952013-06-27 13:22:46 -04004897 chunk_offset = find_next_chunk(extent_root->fs_info);
4898 return __btrfs_alloc_chunk(trans, extent_root, chunk_offset, type);
Yan Zheng2b820322008-11-17 21:11:30 -05004899}
4900
Chris Masond3977122009-01-05 21:25:51 -05004901static noinline int init_first_rw_device(struct btrfs_trans_handle *trans,
Yan Zheng2b820322008-11-17 21:11:30 -05004902 struct btrfs_root *root,
4903 struct btrfs_device *device)
4904{
4905 u64 chunk_offset;
4906 u64 sys_chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05004907 u64 alloc_profile;
Yan Zheng2b820322008-11-17 21:11:30 -05004908 struct btrfs_fs_info *fs_info = root->fs_info;
4909 struct btrfs_root *extent_root = fs_info->extent_root;
4910 int ret;
4911
Josef Bacik6df9a952013-06-27 13:22:46 -04004912 chunk_offset = find_next_chunk(fs_info);
Miao Xiede98ced2013-01-29 10:13:12 +00004913 alloc_profile = btrfs_get_alloc_profile(extent_root, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004914 ret = __btrfs_alloc_chunk(trans, extent_root, chunk_offset,
4915 alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004916 if (ret)
4917 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004918
Josef Bacik6df9a952013-06-27 13:22:46 -04004919 sys_chunk_offset = find_next_chunk(root->fs_info);
Miao Xiede98ced2013-01-29 10:13:12 +00004920 alloc_profile = btrfs_get_alloc_profile(fs_info->chunk_root, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004921 ret = __btrfs_alloc_chunk(trans, extent_root, sys_chunk_offset,
4922 alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004923 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004924}
4925
Miao Xied20983b2014-07-03 18:22:13 +08004926static inline int btrfs_chunk_max_errors(struct map_lookup *map)
4927{
4928 int max_errors;
4929
4930 if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
4931 BTRFS_BLOCK_GROUP_RAID10 |
4932 BTRFS_BLOCK_GROUP_RAID5 |
4933 BTRFS_BLOCK_GROUP_DUP)) {
4934 max_errors = 1;
4935 } else if (map->type & BTRFS_BLOCK_GROUP_RAID6) {
4936 max_errors = 2;
4937 } else {
4938 max_errors = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004939 }
4940
Miao Xied20983b2014-07-03 18:22:13 +08004941 return max_errors;
Yan Zheng2b820322008-11-17 21:11:30 -05004942}
4943
4944int btrfs_chunk_readonly(struct btrfs_root *root, u64 chunk_offset)
4945{
4946 struct extent_map *em;
4947 struct map_lookup *map;
4948 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
4949 int readonly = 0;
Miao Xied20983b2014-07-03 18:22:13 +08004950 int miss_ndevs = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004951 int i;
4952
Chris Mason890871b2009-09-02 16:24:52 -04004953 read_lock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004954 em = lookup_extent_mapping(&map_tree->map_tree, chunk_offset, 1);
Chris Mason890871b2009-09-02 16:24:52 -04004955 read_unlock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004956 if (!em)
4957 return 1;
4958
4959 map = (struct map_lookup *)em->bdev;
4960 for (i = 0; i < map->num_stripes; i++) {
Miao Xied20983b2014-07-03 18:22:13 +08004961 if (map->stripes[i].dev->missing) {
4962 miss_ndevs++;
4963 continue;
4964 }
4965
Yan Zheng2b820322008-11-17 21:11:30 -05004966 if (!map->stripes[i].dev->writeable) {
4967 readonly = 1;
Miao Xied20983b2014-07-03 18:22:13 +08004968 goto end;
Yan Zheng2b820322008-11-17 21:11:30 -05004969 }
4970 }
Miao Xied20983b2014-07-03 18:22:13 +08004971
4972 /*
4973 * If the number of missing devices is larger than max errors,
4974 * we can not write the data into that chunk successfully, so
4975 * set it readonly.
4976 */
4977 if (miss_ndevs > btrfs_chunk_max_errors(map))
4978 readonly = 1;
4979end:
Yan Zheng2b820322008-11-17 21:11:30 -05004980 free_extent_map(em);
4981 return readonly;
Chris Mason0b86a832008-03-24 15:01:56 -04004982}
4983
4984void btrfs_mapping_init(struct btrfs_mapping_tree *tree)
4985{
David Sterbaa8067e02011-04-21 00:34:43 +02004986 extent_map_tree_init(&tree->map_tree);
Chris Mason0b86a832008-03-24 15:01:56 -04004987}
4988
4989void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree)
4990{
4991 struct extent_map *em;
4992
Chris Masond3977122009-01-05 21:25:51 -05004993 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04004994 write_lock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04004995 em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1);
4996 if (em)
4997 remove_extent_mapping(&tree->map_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04004998 write_unlock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04004999 if (!em)
5000 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005001 /* once for us */
5002 free_extent_map(em);
5003 /* once for the tree */
5004 free_extent_map(em);
5005 }
5006}
5007
Stefan Behrens5d964052012-11-05 14:59:07 +01005008int btrfs_num_copies(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
Chris Masonf1885912008-04-09 16:28:12 -04005009{
Stefan Behrens5d964052012-11-05 14:59:07 +01005010 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Masonf1885912008-04-09 16:28:12 -04005011 struct extent_map *em;
5012 struct map_lookup *map;
5013 struct extent_map_tree *em_tree = &map_tree->map_tree;
5014 int ret;
5015
Chris Mason890871b2009-09-02 16:24:52 -04005016 read_lock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04005017 em = lookup_extent_mapping(em_tree, logical, len);
Chris Mason890871b2009-09-02 16:24:52 -04005018 read_unlock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04005019
Josef Bacikfb7669b2013-04-23 10:53:18 -04005020 /*
5021 * We could return errors for these cases, but that could get ugly and
5022 * we'd probably do the same thing which is just not do anything else
5023 * and exit, so return 1 so the callers don't try to use other copies.
5024 */
5025 if (!em) {
David Sterba351fd352014-05-15 16:48:20 +02005026 btrfs_crit(fs_info, "No mapping for %Lu-%Lu", logical,
Josef Bacikfb7669b2013-04-23 10:53:18 -04005027 logical+len);
5028 return 1;
5029 }
5030
5031 if (em->start > logical || em->start + em->len < logical) {
David Sterbaccf39f92013-07-11 15:41:11 +02005032 btrfs_crit(fs_info, "Invalid mapping for %Lu-%Lu, got "
David Sterba351fd352014-05-15 16:48:20 +02005033 "%Lu-%Lu", logical, logical+len, em->start,
Josef Bacikfb7669b2013-04-23 10:53:18 -04005034 em->start + em->len);
Liu Bo7d3d1742013-09-29 10:33:16 +08005035 free_extent_map(em);
Josef Bacikfb7669b2013-04-23 10:53:18 -04005036 return 1;
5037 }
5038
Chris Masonf1885912008-04-09 16:28:12 -04005039 map = (struct map_lookup *)em->bdev;
5040 if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1))
5041 ret = map->num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005042 else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
5043 ret = map->sub_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05005044 else if (map->type & BTRFS_BLOCK_GROUP_RAID5)
5045 ret = 2;
5046 else if (map->type & BTRFS_BLOCK_GROUP_RAID6)
5047 ret = 3;
Chris Masonf1885912008-04-09 16:28:12 -04005048 else
5049 ret = 1;
5050 free_extent_map(em);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005051
5052 btrfs_dev_replace_lock(&fs_info->dev_replace);
5053 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace))
5054 ret++;
5055 btrfs_dev_replace_unlock(&fs_info->dev_replace);
5056
Chris Masonf1885912008-04-09 16:28:12 -04005057 return ret;
5058}
5059
David Woodhouse53b381b2013-01-29 18:40:14 -05005060unsigned long btrfs_full_stripe_len(struct btrfs_root *root,
5061 struct btrfs_mapping_tree *map_tree,
5062 u64 logical)
5063{
5064 struct extent_map *em;
5065 struct map_lookup *map;
5066 struct extent_map_tree *em_tree = &map_tree->map_tree;
5067 unsigned long len = root->sectorsize;
5068
5069 read_lock(&em_tree->lock);
5070 em = lookup_extent_mapping(em_tree, logical, len);
5071 read_unlock(&em_tree->lock);
5072 BUG_ON(!em);
5073
5074 BUG_ON(em->start > logical || em->start + em->len < logical);
5075 map = (struct map_lookup *)em->bdev;
Zhao Leiffe2d202015-01-20 15:11:44 +08005076 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
David Woodhouse53b381b2013-01-29 18:40:14 -05005077 len = map->stripe_len * nr_data_stripes(map);
David Woodhouse53b381b2013-01-29 18:40:14 -05005078 free_extent_map(em);
5079 return len;
5080}
5081
5082int btrfs_is_parity_mirror(struct btrfs_mapping_tree *map_tree,
5083 u64 logical, u64 len, int mirror_num)
5084{
5085 struct extent_map *em;
5086 struct map_lookup *map;
5087 struct extent_map_tree *em_tree = &map_tree->map_tree;
5088 int ret = 0;
5089
5090 read_lock(&em_tree->lock);
5091 em = lookup_extent_mapping(em_tree, logical, len);
5092 read_unlock(&em_tree->lock);
5093 BUG_ON(!em);
5094
5095 BUG_ON(em->start > logical || em->start + em->len < logical);
5096 map = (struct map_lookup *)em->bdev;
Zhao Leiffe2d202015-01-20 15:11:44 +08005097 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
David Woodhouse53b381b2013-01-29 18:40:14 -05005098 ret = 1;
5099 free_extent_map(em);
5100 return ret;
5101}
5102
Stefan Behrens30d98612012-11-06 14:52:18 +01005103static int find_live_mirror(struct btrfs_fs_info *fs_info,
5104 struct map_lookup *map, int first, int num,
5105 int optimal, int dev_replace_is_ongoing)
Chris Masondfe25022008-05-13 13:46:40 -04005106{
5107 int i;
Stefan Behrens30d98612012-11-06 14:52:18 +01005108 int tolerance;
5109 struct btrfs_device *srcdev;
5110
5111 if (dev_replace_is_ongoing &&
5112 fs_info->dev_replace.cont_reading_from_srcdev_mode ==
5113 BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID)
5114 srcdev = fs_info->dev_replace.srcdev;
5115 else
5116 srcdev = NULL;
5117
5118 /*
5119 * try to avoid the drive that is the source drive for a
5120 * dev-replace procedure, only choose it if no other non-missing
5121 * mirror is available
5122 */
5123 for (tolerance = 0; tolerance < 2; tolerance++) {
5124 if (map->stripes[optimal].dev->bdev &&
5125 (tolerance || map->stripes[optimal].dev != srcdev))
5126 return optimal;
5127 for (i = first; i < first + num; i++) {
5128 if (map->stripes[i].dev->bdev &&
5129 (tolerance || map->stripes[i].dev != srcdev))
5130 return i;
5131 }
Chris Masondfe25022008-05-13 13:46:40 -04005132 }
Stefan Behrens30d98612012-11-06 14:52:18 +01005133
Chris Masondfe25022008-05-13 13:46:40 -04005134 /* we couldn't find one that doesn't fail. Just return something
5135 * and the io error handling code will clean up eventually
5136 */
5137 return optimal;
5138}
5139
David Woodhouse53b381b2013-01-29 18:40:14 -05005140static inline int parity_smaller(u64 a, u64 b)
5141{
5142 return a > b;
5143}
5144
5145/* Bubble-sort the stripe set to put the parity/syndrome stripes last */
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005146static void sort_parity_stripes(struct btrfs_bio *bbio, int num_stripes)
David Woodhouse53b381b2013-01-29 18:40:14 -05005147{
5148 struct btrfs_bio_stripe s;
5149 int i;
5150 u64 l;
5151 int again = 1;
5152
5153 while (again) {
5154 again = 0;
Zhao Leicc7539e2015-01-20 15:11:32 +08005155 for (i = 0; i < num_stripes - 1; i++) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005156 if (parity_smaller(bbio->raid_map[i],
5157 bbio->raid_map[i+1])) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005158 s = bbio->stripes[i];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005159 l = bbio->raid_map[i];
David Woodhouse53b381b2013-01-29 18:40:14 -05005160 bbio->stripes[i] = bbio->stripes[i+1];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005161 bbio->raid_map[i] = bbio->raid_map[i+1];
David Woodhouse53b381b2013-01-29 18:40:14 -05005162 bbio->stripes[i+1] = s;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005163 bbio->raid_map[i+1] = l;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005164
David Woodhouse53b381b2013-01-29 18:40:14 -05005165 again = 1;
5166 }
5167 }
5168 }
5169}
5170
Zhao Lei6e9606d2015-01-20 15:11:34 +08005171static struct btrfs_bio *alloc_btrfs_bio(int total_stripes, int real_stripes)
5172{
5173 struct btrfs_bio *bbio = kzalloc(
Chris Masone57cf212015-02-19 17:51:39 -08005174 /* the size of the btrfs_bio */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005175 sizeof(struct btrfs_bio) +
Chris Masone57cf212015-02-19 17:51:39 -08005176 /* plus the variable array for the stripes */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005177 sizeof(struct btrfs_bio_stripe) * (total_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005178 /* plus the variable array for the tgt dev */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005179 sizeof(int) * (real_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005180 /*
5181 * plus the raid_map, which includes both the tgt dev
5182 * and the stripes
5183 */
5184 sizeof(u64) * (total_stripes),
Michal Hocko277fb5f2015-08-19 14:17:41 +02005185 GFP_NOFS|__GFP_NOFAIL);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005186
5187 atomic_set(&bbio->error, 0);
5188 atomic_set(&bbio->refs, 1);
5189
5190 return bbio;
5191}
5192
5193void btrfs_get_bbio(struct btrfs_bio *bbio)
5194{
5195 WARN_ON(!atomic_read(&bbio->refs));
5196 atomic_inc(&bbio->refs);
5197}
5198
5199void btrfs_put_bbio(struct btrfs_bio *bbio)
5200{
5201 if (!bbio)
5202 return;
5203 if (atomic_dec_and_test(&bbio->refs))
5204 kfree(bbio);
5205}
5206
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005207static int __btrfs_map_block(struct btrfs_fs_info *fs_info, int rw,
Chris Masonf2d8d742008-04-21 10:03:05 -04005208 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005209 struct btrfs_bio **bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005210 int mirror_num, int need_raid_map)
Chris Mason0b86a832008-03-24 15:01:56 -04005211{
5212 struct extent_map *em;
5213 struct map_lookup *map;
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005214 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Mason0b86a832008-03-24 15:01:56 -04005215 struct extent_map_tree *em_tree = &map_tree->map_tree;
5216 u64 offset;
Chris Mason593060d2008-03-25 16:50:33 -04005217 u64 stripe_offset;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005218 u64 stripe_end_offset;
Chris Mason593060d2008-03-25 16:50:33 -04005219 u64 stripe_nr;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005220 u64 stripe_nr_orig;
5221 u64 stripe_nr_end;
David Woodhouse53b381b2013-01-29 18:40:14 -05005222 u64 stripe_len;
David Sterba9d644a62015-02-20 18:42:11 +01005223 u32 stripe_index;
Chris Masoncea9e442008-04-09 16:28:12 -04005224 int i;
Li Zefande11cc12011-12-01 12:55:47 +08005225 int ret = 0;
Chris Masonf2d8d742008-04-21 10:03:05 -04005226 int num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04005227 int max_errors = 0;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005228 int tgtdev_indexes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005229 struct btrfs_bio *bbio = NULL;
Stefan Behrens472262f2012-11-06 14:43:46 +01005230 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
5231 int dev_replace_is_ongoing = 0;
5232 int num_alloc_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005233 int patch_the_first_stripe_for_dev_replace = 0;
5234 u64 physical_to_patch_in_first_stripe = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05005235 u64 raid56_full_stripe_start = (u64)-1;
Chris Mason0b86a832008-03-24 15:01:56 -04005236
Chris Mason890871b2009-09-02 16:24:52 -04005237 read_lock(&em_tree->lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005238 em = lookup_extent_mapping(em_tree, logical, *length);
Chris Mason890871b2009-09-02 16:24:52 -04005239 read_unlock(&em_tree->lock);
Chris Masonf2d8d742008-04-21 10:03:05 -04005240
Chris Mason3b951512008-04-17 11:29:12 -04005241 if (!em) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005242 btrfs_crit(fs_info, "unable to find logical %llu len %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005243 logical, *length);
Josef Bacik9bb91872013-04-19 23:45:33 -04005244 return -EINVAL;
Chris Mason3b951512008-04-17 11:29:12 -04005245 }
Chris Mason0b86a832008-03-24 15:01:56 -04005246
Josef Bacik9bb91872013-04-19 23:45:33 -04005247 if (em->start > logical || em->start + em->len < logical) {
5248 btrfs_crit(fs_info, "found a bad mapping, wanted %Lu, "
David Sterba351fd352014-05-15 16:48:20 +02005249 "found %Lu-%Lu", logical, em->start,
Josef Bacik9bb91872013-04-19 23:45:33 -04005250 em->start + em->len);
Liu Bo7d3d1742013-09-29 10:33:16 +08005251 free_extent_map(em);
Josef Bacik9bb91872013-04-19 23:45:33 -04005252 return -EINVAL;
5253 }
5254
Chris Mason0b86a832008-03-24 15:01:56 -04005255 map = (struct map_lookup *)em->bdev;
5256 offset = logical - em->start;
Chris Mason593060d2008-03-25 16:50:33 -04005257
David Woodhouse53b381b2013-01-29 18:40:14 -05005258 stripe_len = map->stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04005259 stripe_nr = offset;
5260 /*
5261 * stripe_nr counts the total number of stripes we have to stride
5262 * to get to this block
5263 */
David Sterba47c57132015-02-20 18:43:47 +01005264 stripe_nr = div64_u64(stripe_nr, stripe_len);
Chris Mason593060d2008-03-25 16:50:33 -04005265
David Woodhouse53b381b2013-01-29 18:40:14 -05005266 stripe_offset = stripe_nr * stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04005267 BUG_ON(offset < stripe_offset);
5268
5269 /* stripe_offset is the offset of this block in its stripe*/
5270 stripe_offset = offset - stripe_offset;
5271
David Woodhouse53b381b2013-01-29 18:40:14 -05005272 /* if we're here for raid56, we need to know the stripe aligned start */
Zhao Leiffe2d202015-01-20 15:11:44 +08005273 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005274 unsigned long full_stripe_len = stripe_len * nr_data_stripes(map);
5275 raid56_full_stripe_start = offset;
5276
5277 /* allow a write of a full stripe, but make sure we don't
5278 * allow straddling of stripes
5279 */
David Sterba47c57132015-02-20 18:43:47 +01005280 raid56_full_stripe_start = div64_u64(raid56_full_stripe_start,
5281 full_stripe_len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005282 raid56_full_stripe_start *= full_stripe_len;
5283 }
5284
5285 if (rw & REQ_DISCARD) {
5286 /* we don't discard raid56 yet */
Zhao Leiffe2d202015-01-20 15:11:44 +08005287 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005288 ret = -EOPNOTSUPP;
5289 goto out;
5290 }
Li Dongyangfce3bb92011-03-24 10:24:26 +00005291 *length = min_t(u64, em->len - offset, *length);
David Woodhouse53b381b2013-01-29 18:40:14 -05005292 } else if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
5293 u64 max_len;
5294 /* For writes to RAID[56], allow a full stripeset across all disks.
5295 For other RAID types and for RAID[56] reads, just allow a single
5296 stripe (on a single disk). */
Zhao Leiffe2d202015-01-20 15:11:44 +08005297 if ((map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
David Woodhouse53b381b2013-01-29 18:40:14 -05005298 (rw & REQ_WRITE)) {
5299 max_len = stripe_len * nr_data_stripes(map) -
5300 (offset - raid56_full_stripe_start);
5301 } else {
5302 /* we limit the length of each bio to what fits in a stripe */
5303 max_len = stripe_len - stripe_offset;
5304 }
5305 *length = min_t(u64, em->len - offset, max_len);
Chris Masoncea9e442008-04-09 16:28:12 -04005306 } else {
5307 *length = em->len - offset;
5308 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005309
David Woodhouse53b381b2013-01-29 18:40:14 -05005310 /* This is for when we're called from btrfs_merge_bio_hook() and all
5311 it cares about is the length */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005312 if (!bbio_ret)
Chris Masoncea9e442008-04-09 16:28:12 -04005313 goto out;
5314
Stefan Behrens472262f2012-11-06 14:43:46 +01005315 btrfs_dev_replace_lock(dev_replace);
5316 dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace);
5317 if (!dev_replace_is_ongoing)
5318 btrfs_dev_replace_unlock(dev_replace);
5319
Stefan Behrensad6d6202012-11-06 15:06:47 +01005320 if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 &&
5321 !(rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)) &&
5322 dev_replace->tgtdev != NULL) {
5323 /*
5324 * in dev-replace case, for repair case (that's the only
5325 * case where the mirror is selected explicitly when
5326 * calling btrfs_map_block), blocks left of the left cursor
5327 * can also be read from the target drive.
5328 * For REQ_GET_READ_MIRRORS, the target drive is added as
5329 * the last one to the array of stripes. For READ, it also
5330 * needs to be supported using the same mirror number.
5331 * If the requested block is not left of the left cursor,
5332 * EIO is returned. This can happen because btrfs_num_copies()
5333 * returns one more in the dev-replace case.
5334 */
5335 u64 tmp_length = *length;
5336 struct btrfs_bio *tmp_bbio = NULL;
5337 int tmp_num_stripes;
5338 u64 srcdev_devid = dev_replace->srcdev->devid;
5339 int index_srcdev = 0;
5340 int found = 0;
5341 u64 physical_of_found = 0;
5342
5343 ret = __btrfs_map_block(fs_info, REQ_GET_READ_MIRRORS,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005344 logical, &tmp_length, &tmp_bbio, 0, 0);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005345 if (ret) {
5346 WARN_ON(tmp_bbio != NULL);
5347 goto out;
5348 }
5349
5350 tmp_num_stripes = tmp_bbio->num_stripes;
5351 if (mirror_num > tmp_num_stripes) {
5352 /*
5353 * REQ_GET_READ_MIRRORS does not contain this
5354 * mirror, that means that the requested area
5355 * is not left of the left cursor
5356 */
5357 ret = -EIO;
Zhao Lei6e9606d2015-01-20 15:11:34 +08005358 btrfs_put_bbio(tmp_bbio);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005359 goto out;
5360 }
5361
5362 /*
5363 * process the rest of the function using the mirror_num
5364 * of the source drive. Therefore look it up first.
5365 * At the end, patch the device pointer to the one of the
5366 * target drive.
5367 */
5368 for (i = 0; i < tmp_num_stripes; i++) {
5369 if (tmp_bbio->stripes[i].dev->devid == srcdev_devid) {
5370 /*
5371 * In case of DUP, in order to keep it
5372 * simple, only add the mirror with the
5373 * lowest physical address
5374 */
5375 if (found &&
5376 physical_of_found <=
5377 tmp_bbio->stripes[i].physical)
5378 continue;
5379 index_srcdev = i;
5380 found = 1;
5381 physical_of_found =
5382 tmp_bbio->stripes[i].physical;
5383 }
5384 }
5385
5386 if (found) {
5387 mirror_num = index_srcdev + 1;
5388 patch_the_first_stripe_for_dev_replace = 1;
5389 physical_to_patch_in_first_stripe = physical_of_found;
5390 } else {
5391 WARN_ON(1);
5392 ret = -EIO;
Zhao Lei6e9606d2015-01-20 15:11:34 +08005393 btrfs_put_bbio(tmp_bbio);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005394 goto out;
5395 }
5396
Zhao Lei6e9606d2015-01-20 15:11:34 +08005397 btrfs_put_bbio(tmp_bbio);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005398 } else if (mirror_num > map->num_stripes) {
5399 mirror_num = 0;
5400 }
5401
Chris Masonf2d8d742008-04-21 10:03:05 -04005402 num_stripes = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04005403 stripe_index = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005404 stripe_nr_orig = stripe_nr;
Qu Wenruofda28322013-02-26 08:10:22 +00005405 stripe_nr_end = ALIGN(offset + *length, map->stripe_len);
David Sterbab8b93ad2015-01-16 17:26:13 +01005406 stripe_nr_end = div_u64(stripe_nr_end, map->stripe_len);
Li Dongyangfce3bb92011-03-24 10:24:26 +00005407 stripe_end_offset = stripe_nr_end * map->stripe_len -
5408 (offset + *length);
David Woodhouse53b381b2013-01-29 18:40:14 -05005409
Li Dongyangfce3bb92011-03-24 10:24:26 +00005410 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
5411 if (rw & REQ_DISCARD)
5412 num_stripes = min_t(u64, map->num_stripes,
5413 stripe_nr_end - stripe_nr_orig);
David Sterba47c57132015-02-20 18:43:47 +01005414 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5415 &stripe_index);
Miao Xie28e1cc72014-09-12 18:44:02 +08005416 if (!(rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)))
5417 mirror_num = 1;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005418 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01005419 if (rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS))
Chris Masonf2d8d742008-04-21 10:03:05 -04005420 num_stripes = map->num_stripes;
Chris Mason2fff7342008-04-29 14:12:09 -04005421 else if (mirror_num)
Chris Masonf1885912008-04-09 16:28:12 -04005422 stripe_index = mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005423 else {
Stefan Behrens30d98612012-11-06 14:52:18 +01005424 stripe_index = find_live_mirror(fs_info, map, 0,
Chris Masondfe25022008-05-13 13:46:40 -04005425 map->num_stripes,
Stefan Behrens30d98612012-11-06 14:52:18 +01005426 current->pid % map->num_stripes,
5427 dev_replace_is_ongoing);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005428 mirror_num = stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005429 }
Chris Mason2fff7342008-04-29 14:12:09 -04005430
Chris Mason611f0e02008-04-03 16:29:03 -04005431 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01005432 if (rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)) {
Chris Masonf2d8d742008-04-21 10:03:05 -04005433 num_stripes = map->num_stripes;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005434 } else if (mirror_num) {
Chris Masonf1885912008-04-09 16:28:12 -04005435 stripe_index = mirror_num - 1;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005436 } else {
5437 mirror_num = 1;
5438 }
Chris Mason2fff7342008-04-29 14:12:09 -04005439
Chris Mason321aecc2008-04-16 10:49:51 -04005440 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
David Sterba9d644a62015-02-20 18:42:11 +01005441 u32 factor = map->num_stripes / map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005442
David Sterba47c57132015-02-20 18:43:47 +01005443 stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index);
Chris Mason321aecc2008-04-16 10:49:51 -04005444 stripe_index *= map->sub_stripes;
5445
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01005446 if (rw & (REQ_WRITE | REQ_GET_READ_MIRRORS))
Chris Masonf2d8d742008-04-21 10:03:05 -04005447 num_stripes = map->sub_stripes;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005448 else if (rw & REQ_DISCARD)
5449 num_stripes = min_t(u64, map->sub_stripes *
5450 (stripe_nr_end - stripe_nr_orig),
5451 map->num_stripes);
Chris Mason321aecc2008-04-16 10:49:51 -04005452 else if (mirror_num)
5453 stripe_index += mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005454 else {
Jan Schmidt3e743172012-04-27 12:41:45 -04005455 int old_stripe_index = stripe_index;
Stefan Behrens30d98612012-11-06 14:52:18 +01005456 stripe_index = find_live_mirror(fs_info, map,
5457 stripe_index,
Chris Masondfe25022008-05-13 13:46:40 -04005458 map->sub_stripes, stripe_index +
Stefan Behrens30d98612012-11-06 14:52:18 +01005459 current->pid % map->sub_stripes,
5460 dev_replace_is_ongoing);
Jan Schmidt3e743172012-04-27 12:41:45 -04005461 mirror_num = stripe_index - old_stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005462 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005463
Zhao Leiffe2d202015-01-20 15:11:44 +08005464 } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005465 if (need_raid_map &&
Miao Xieaf8e2d12014-10-23 14:42:50 +08005466 ((rw & (REQ_WRITE | REQ_GET_READ_MIRRORS)) ||
5467 mirror_num > 1)) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005468 /* push stripe_nr back to the start of the full stripe */
David Sterbab8b93ad2015-01-16 17:26:13 +01005469 stripe_nr = div_u64(raid56_full_stripe_start,
5470 stripe_len * nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05005471
5472 /* RAID[56] write or recovery. Return all stripes */
5473 num_stripes = map->num_stripes;
5474 max_errors = nr_parity_stripes(map);
5475
David Woodhouse53b381b2013-01-29 18:40:14 -05005476 *length = map->stripe_len;
5477 stripe_index = 0;
5478 stripe_offset = 0;
5479 } else {
5480 /*
5481 * Mirror #0 or #1 means the original data block.
5482 * Mirror #2 is RAID5 parity block.
5483 * Mirror #3 is RAID6 Q block.
5484 */
David Sterba47c57132015-02-20 18:43:47 +01005485 stripe_nr = div_u64_rem(stripe_nr,
5486 nr_data_stripes(map), &stripe_index);
David Woodhouse53b381b2013-01-29 18:40:14 -05005487 if (mirror_num > 1)
5488 stripe_index = nr_data_stripes(map) +
5489 mirror_num - 2;
5490
5491 /* We distribute the parity blocks across stripes */
David Sterba47c57132015-02-20 18:43:47 +01005492 div_u64_rem(stripe_nr + stripe_index, map->num_stripes,
5493 &stripe_index);
Miao Xie28e1cc72014-09-12 18:44:02 +08005494 if (!(rw & (REQ_WRITE | REQ_DISCARD |
5495 REQ_GET_READ_MIRRORS)) && mirror_num <= 1)
5496 mirror_num = 1;
David Woodhouse53b381b2013-01-29 18:40:14 -05005497 }
Chris Mason8790d502008-04-03 16:29:03 -04005498 } else {
5499 /*
David Sterba47c57132015-02-20 18:43:47 +01005500 * after this, stripe_nr is the number of stripes on this
5501 * device we have to walk to find the data, and stripe_index is
5502 * the number of our device in the stripe array
Chris Mason8790d502008-04-03 16:29:03 -04005503 */
David Sterba47c57132015-02-20 18:43:47 +01005504 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5505 &stripe_index);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005506 mirror_num = stripe_index + 1;
Chris Mason8790d502008-04-03 16:29:03 -04005507 }
Chris Mason593060d2008-03-25 16:50:33 -04005508 BUG_ON(stripe_index >= map->num_stripes);
Chris Mason593060d2008-03-25 16:50:33 -04005509
Stefan Behrens472262f2012-11-06 14:43:46 +01005510 num_alloc_stripes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005511 if (dev_replace_is_ongoing) {
5512 if (rw & (REQ_WRITE | REQ_DISCARD))
5513 num_alloc_stripes <<= 1;
5514 if (rw & REQ_GET_READ_MIRRORS)
5515 num_alloc_stripes++;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005516 tgtdev_indexes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005517 }
Miao Xie2c8cdd62014-11-14 16:06:25 +08005518
Zhao Lei6e9606d2015-01-20 15:11:34 +08005519 bbio = alloc_btrfs_bio(num_alloc_stripes, tgtdev_indexes);
Li Zefande11cc12011-12-01 12:55:47 +08005520 if (!bbio) {
5521 ret = -ENOMEM;
5522 goto out;
5523 }
Miao Xie2c8cdd62014-11-14 16:06:25 +08005524 if (dev_replace_is_ongoing)
5525 bbio->tgtdev_map = (int *)(bbio->stripes + num_alloc_stripes);
Li Zefande11cc12011-12-01 12:55:47 +08005526
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005527 /* build raid_map */
Zhao Leiffe2d202015-01-20 15:11:44 +08005528 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK &&
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005529 need_raid_map && ((rw & (REQ_WRITE | REQ_GET_READ_MIRRORS)) ||
5530 mirror_num > 1)) {
5531 u64 tmp;
David Sterba9d644a62015-02-20 18:42:11 +01005532 unsigned rot;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005533
5534 bbio->raid_map = (u64 *)((void *)bbio->stripes +
5535 sizeof(struct btrfs_bio_stripe) *
5536 num_alloc_stripes +
5537 sizeof(int) * tgtdev_indexes);
5538
5539 /* Work out the disk rotation on this stripe-set */
David Sterba47c57132015-02-20 18:43:47 +01005540 div_u64_rem(stripe_nr, num_stripes, &rot);
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005541
5542 /* Fill in the logical address of each stripe */
5543 tmp = stripe_nr * nr_data_stripes(map);
5544 for (i = 0; i < nr_data_stripes(map); i++)
5545 bbio->raid_map[(i+rot) % num_stripes] =
5546 em->start + (tmp + i) * map->stripe_len;
5547
5548 bbio->raid_map[(i+rot) % map->num_stripes] = RAID5_P_STRIPE;
5549 if (map->type & BTRFS_BLOCK_GROUP_RAID6)
5550 bbio->raid_map[(i+rot+1) % num_stripes] =
5551 RAID6_Q_STRIPE;
5552 }
5553
Li Dongyangfce3bb92011-03-24 10:24:26 +00005554 if (rw & REQ_DISCARD) {
David Sterba9d644a62015-02-20 18:42:11 +01005555 u32 factor = 0;
5556 u32 sub_stripes = 0;
Li Zefanec9ef7a2011-12-01 14:06:42 +08005557 u64 stripes_per_dev = 0;
5558 u32 remaining_stripes = 0;
Liu Bob89203f2012-04-12 16:03:56 -04005559 u32 last_stripe = 0;
Li Zefanec9ef7a2011-12-01 14:06:42 +08005560
5561 if (map->type &
5562 (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID10)) {
5563 if (map->type & BTRFS_BLOCK_GROUP_RAID0)
5564 sub_stripes = 1;
5565 else
5566 sub_stripes = map->sub_stripes;
5567
5568 factor = map->num_stripes / sub_stripes;
5569 stripes_per_dev = div_u64_rem(stripe_nr_end -
5570 stripe_nr_orig,
5571 factor,
5572 &remaining_stripes);
Liu Bob89203f2012-04-12 16:03:56 -04005573 div_u64_rem(stripe_nr_end - 1, factor, &last_stripe);
5574 last_stripe *= sub_stripes;
Li Zefanec9ef7a2011-12-01 14:06:42 +08005575 }
5576
Li Dongyangfce3bb92011-03-24 10:24:26 +00005577 for (i = 0; i < num_stripes; i++) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005578 bbio->stripes[i].physical =
Chris Masonf2d8d742008-04-21 10:03:05 -04005579 map->stripes[stripe_index].physical +
5580 stripe_offset + stripe_nr * map->stripe_len;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005581 bbio->stripes[i].dev = map->stripes[stripe_index].dev;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005582
Li Zefanec9ef7a2011-12-01 14:06:42 +08005583 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
5584 BTRFS_BLOCK_GROUP_RAID10)) {
5585 bbio->stripes[i].length = stripes_per_dev *
5586 map->stripe_len;
Liu Bob89203f2012-04-12 16:03:56 -04005587
Li Zefanec9ef7a2011-12-01 14:06:42 +08005588 if (i / sub_stripes < remaining_stripes)
5589 bbio->stripes[i].length +=
5590 map->stripe_len;
Liu Bob89203f2012-04-12 16:03:56 -04005591
5592 /*
5593 * Special for the first stripe and
5594 * the last stripe:
5595 *
5596 * |-------|...|-------|
5597 * |----------|
5598 * off end_off
5599 */
Li Zefanec9ef7a2011-12-01 14:06:42 +08005600 if (i < sub_stripes)
Jan Schmidta1d3c472011-08-04 17:15:33 +02005601 bbio->stripes[i].length -=
Li Dongyangfce3bb92011-03-24 10:24:26 +00005602 stripe_offset;
Liu Bob89203f2012-04-12 16:03:56 -04005603
5604 if (stripe_index >= last_stripe &&
5605 stripe_index <= (last_stripe +
5606 sub_stripes - 1))
Li Zefanec9ef7a2011-12-01 14:06:42 +08005607 bbio->stripes[i].length -=
5608 stripe_end_offset;
Liu Bob89203f2012-04-12 16:03:56 -04005609
Li Zefanec9ef7a2011-12-01 14:06:42 +08005610 if (i == sub_stripes - 1)
Li Dongyangfce3bb92011-03-24 10:24:26 +00005611 stripe_offset = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005612 } else
Jan Schmidta1d3c472011-08-04 17:15:33 +02005613 bbio->stripes[i].length = *length;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005614
5615 stripe_index++;
5616 if (stripe_index == map->num_stripes) {
5617 /* This could only happen for RAID0/10 */
5618 stripe_index = 0;
5619 stripe_nr++;
5620 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005621 }
Li Dongyangfce3bb92011-03-24 10:24:26 +00005622 } else {
5623 for (i = 0; i < num_stripes; i++) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005624 bbio->stripes[i].physical =
Linus Torvalds212a17a2011-03-28 15:31:05 -07005625 map->stripes[stripe_index].physical +
5626 stripe_offset +
5627 stripe_nr * map->stripe_len;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005628 bbio->stripes[i].dev =
Linus Torvalds212a17a2011-03-28 15:31:05 -07005629 map->stripes[stripe_index].dev;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005630 stripe_index++;
5631 }
Chris Mason593060d2008-03-25 16:50:33 -04005632 }
Li Zefande11cc12011-12-01 12:55:47 +08005633
Miao Xied20983b2014-07-03 18:22:13 +08005634 if (rw & (REQ_WRITE | REQ_GET_READ_MIRRORS))
5635 max_errors = btrfs_chunk_max_errors(map);
Li Zefande11cc12011-12-01 12:55:47 +08005636
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005637 if (bbio->raid_map)
5638 sort_parity_stripes(bbio, num_stripes);
Zhao Leicc7539e2015-01-20 15:11:32 +08005639
Miao Xie2c8cdd62014-11-14 16:06:25 +08005640 tgtdev_indexes = 0;
Stefan Behrens472262f2012-11-06 14:43:46 +01005641 if (dev_replace_is_ongoing && (rw & (REQ_WRITE | REQ_DISCARD)) &&
5642 dev_replace->tgtdev != NULL) {
5643 int index_where_to_add;
5644 u64 srcdev_devid = dev_replace->srcdev->devid;
5645
5646 /*
5647 * duplicate the write operations while the dev replace
5648 * procedure is running. Since the copying of the old disk
5649 * to the new disk takes place at run time while the
5650 * filesystem is mounted writable, the regular write
5651 * operations to the old disk have to be duplicated to go
5652 * to the new disk as well.
5653 * Note that device->missing is handled by the caller, and
5654 * that the write to the old disk is already set up in the
5655 * stripes array.
5656 */
5657 index_where_to_add = num_stripes;
5658 for (i = 0; i < num_stripes; i++) {
5659 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5660 /* write to new disk, too */
5661 struct btrfs_bio_stripe *new =
5662 bbio->stripes + index_where_to_add;
5663 struct btrfs_bio_stripe *old =
5664 bbio->stripes + i;
5665
5666 new->physical = old->physical;
5667 new->length = old->length;
5668 new->dev = dev_replace->tgtdev;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005669 bbio->tgtdev_map[i] = index_where_to_add;
Stefan Behrens472262f2012-11-06 14:43:46 +01005670 index_where_to_add++;
5671 max_errors++;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005672 tgtdev_indexes++;
Stefan Behrens472262f2012-11-06 14:43:46 +01005673 }
5674 }
5675 num_stripes = index_where_to_add;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005676 } else if (dev_replace_is_ongoing && (rw & REQ_GET_READ_MIRRORS) &&
5677 dev_replace->tgtdev != NULL) {
5678 u64 srcdev_devid = dev_replace->srcdev->devid;
5679 int index_srcdev = 0;
5680 int found = 0;
5681 u64 physical_of_found = 0;
5682
5683 /*
5684 * During the dev-replace procedure, the target drive can
5685 * also be used to read data in case it is needed to repair
5686 * a corrupt block elsewhere. This is possible if the
5687 * requested area is left of the left cursor. In this area,
5688 * the target drive is a full copy of the source drive.
5689 */
5690 for (i = 0; i < num_stripes; i++) {
5691 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5692 /*
5693 * In case of DUP, in order to keep it
5694 * simple, only add the mirror with the
5695 * lowest physical address
5696 */
5697 if (found &&
5698 physical_of_found <=
5699 bbio->stripes[i].physical)
5700 continue;
5701 index_srcdev = i;
5702 found = 1;
5703 physical_of_found = bbio->stripes[i].physical;
5704 }
5705 }
5706 if (found) {
David Sterba258ece02015-02-24 19:45:15 +01005707 if (physical_of_found + map->stripe_len <=
Stefan Behrensad6d6202012-11-06 15:06:47 +01005708 dev_replace->cursor_left) {
5709 struct btrfs_bio_stripe *tgtdev_stripe =
5710 bbio->stripes + num_stripes;
5711
5712 tgtdev_stripe->physical = physical_of_found;
5713 tgtdev_stripe->length =
5714 bbio->stripes[index_srcdev].length;
5715 tgtdev_stripe->dev = dev_replace->tgtdev;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005716 bbio->tgtdev_map[index_srcdev] = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005717
Miao Xie2c8cdd62014-11-14 16:06:25 +08005718 tgtdev_indexes++;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005719 num_stripes++;
5720 }
5721 }
Stefan Behrens472262f2012-11-06 14:43:46 +01005722 }
5723
Li Zefande11cc12011-12-01 12:55:47 +08005724 *bbio_ret = bbio;
Zhao Lei10f11902015-01-20 15:11:43 +08005725 bbio->map_type = map->type;
Li Zefande11cc12011-12-01 12:55:47 +08005726 bbio->num_stripes = num_stripes;
5727 bbio->max_errors = max_errors;
5728 bbio->mirror_num = mirror_num;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005729 bbio->num_tgtdevs = tgtdev_indexes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005730
5731 /*
5732 * this is the case that REQ_READ && dev_replace_is_ongoing &&
5733 * mirror_num == num_stripes + 1 && dev_replace target drive is
5734 * available as a mirror
5735 */
5736 if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) {
5737 WARN_ON(num_stripes > 1);
5738 bbio->stripes[0].dev = dev_replace->tgtdev;
5739 bbio->stripes[0].physical = physical_to_patch_in_first_stripe;
5740 bbio->mirror_num = map->num_stripes + 1;
5741 }
Chris Masoncea9e442008-04-09 16:28:12 -04005742out:
Stefan Behrens472262f2012-11-06 14:43:46 +01005743 if (dev_replace_is_ongoing)
5744 btrfs_dev_replace_unlock(dev_replace);
Chris Mason0b86a832008-03-24 15:01:56 -04005745 free_extent_map(em);
Li Zefande11cc12011-12-01 12:55:47 +08005746 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04005747}
5748
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005749int btrfs_map_block(struct btrfs_fs_info *fs_info, int rw,
Chris Masonf2d8d742008-04-21 10:03:05 -04005750 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005751 struct btrfs_bio **bbio_ret, int mirror_num)
Chris Masonf2d8d742008-04-21 10:03:05 -04005752{
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005753 return __btrfs_map_block(fs_info, rw, logical, length, bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005754 mirror_num, 0);
Chris Masonf2d8d742008-04-21 10:03:05 -04005755}
5756
Miao Xieaf8e2d12014-10-23 14:42:50 +08005757/* For Scrub/replace */
5758int btrfs_map_sblock(struct btrfs_fs_info *fs_info, int rw,
5759 u64 logical, u64 *length,
5760 struct btrfs_bio **bbio_ret, int mirror_num,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005761 int need_raid_map)
Miao Xieaf8e2d12014-10-23 14:42:50 +08005762{
5763 return __btrfs_map_block(fs_info, rw, logical, length, bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005764 mirror_num, need_raid_map);
Miao Xieaf8e2d12014-10-23 14:42:50 +08005765}
5766
Yan Zhenga512bbf2008-12-08 16:46:26 -05005767int btrfs_rmap_block(struct btrfs_mapping_tree *map_tree,
5768 u64 chunk_start, u64 physical, u64 devid,
5769 u64 **logical, int *naddrs, int *stripe_len)
5770{
5771 struct extent_map_tree *em_tree = &map_tree->map_tree;
5772 struct extent_map *em;
5773 struct map_lookup *map;
5774 u64 *buf;
5775 u64 bytenr;
5776 u64 length;
5777 u64 stripe_nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005778 u64 rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005779 int i, j, nr = 0;
5780
Chris Mason890871b2009-09-02 16:24:52 -04005781 read_lock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005782 em = lookup_extent_mapping(em_tree, chunk_start, 1);
Chris Mason890871b2009-09-02 16:24:52 -04005783 read_unlock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005784
Josef Bacik835d9742013-03-19 12:13:25 -04005785 if (!em) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005786 printk(KERN_ERR "BTRFS: couldn't find em for chunk %Lu\n",
Josef Bacik835d9742013-03-19 12:13:25 -04005787 chunk_start);
5788 return -EIO;
5789 }
5790
5791 if (em->start != chunk_start) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005792 printk(KERN_ERR "BTRFS: bad chunk start, em=%Lu, wanted=%Lu\n",
Josef Bacik835d9742013-03-19 12:13:25 -04005793 em->start, chunk_start);
5794 free_extent_map(em);
5795 return -EIO;
5796 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005797 map = (struct map_lookup *)em->bdev;
5798
5799 length = em->len;
David Woodhouse53b381b2013-01-29 18:40:14 -05005800 rmap_len = map->stripe_len;
5801
Yan Zhenga512bbf2008-12-08 16:46:26 -05005802 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
David Sterbab8b93ad2015-01-16 17:26:13 +01005803 length = div_u64(length, map->num_stripes / map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005804 else if (map->type & BTRFS_BLOCK_GROUP_RAID0)
David Sterbab8b93ad2015-01-16 17:26:13 +01005805 length = div_u64(length, map->num_stripes);
Zhao Leiffe2d202015-01-20 15:11:44 +08005806 else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Sterbab8b93ad2015-01-16 17:26:13 +01005807 length = div_u64(length, nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05005808 rmap_len = map->stripe_len * nr_data_stripes(map);
5809 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005810
David Sterba31e818f2015-02-20 18:00:26 +01005811 buf = kcalloc(map->num_stripes, sizeof(u64), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005812 BUG_ON(!buf); /* -ENOMEM */
Yan Zhenga512bbf2008-12-08 16:46:26 -05005813
5814 for (i = 0; i < map->num_stripes; i++) {
5815 if (devid && map->stripes[i].dev->devid != devid)
5816 continue;
5817 if (map->stripes[i].physical > physical ||
5818 map->stripes[i].physical + length <= physical)
5819 continue;
5820
5821 stripe_nr = physical - map->stripes[i].physical;
David Sterbab8b93ad2015-01-16 17:26:13 +01005822 stripe_nr = div_u64(stripe_nr, map->stripe_len);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005823
5824 if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
5825 stripe_nr = stripe_nr * map->num_stripes + i;
David Sterbab8b93ad2015-01-16 17:26:13 +01005826 stripe_nr = div_u64(stripe_nr, map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005827 } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
5828 stripe_nr = stripe_nr * map->num_stripes + i;
David Woodhouse53b381b2013-01-29 18:40:14 -05005829 } /* else if RAID[56], multiply by nr_data_stripes().
5830 * Alternatively, just use rmap_len below instead of
5831 * map->stripe_len */
5832
5833 bytenr = chunk_start + stripe_nr * rmap_len;
Chris Mason934d3752008-12-08 16:43:10 -05005834 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005835 for (j = 0; j < nr; j++) {
5836 if (buf[j] == bytenr)
5837 break;
5838 }
Chris Mason934d3752008-12-08 16:43:10 -05005839 if (j == nr) {
5840 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005841 buf[nr++] = bytenr;
Chris Mason934d3752008-12-08 16:43:10 -05005842 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005843 }
5844
Yan Zhenga512bbf2008-12-08 16:46:26 -05005845 *logical = buf;
5846 *naddrs = nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005847 *stripe_len = rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005848
5849 free_extent_map(em);
5850 return 0;
5851}
5852
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005853static inline void btrfs_end_bbio(struct btrfs_bio *bbio, struct bio *bio)
Miao Xie8408c712014-06-19 10:42:55 +08005854{
Mike Snitzer326e1db2015-05-22 09:14:03 -04005855 bio->bi_private = bbio->private;
5856 bio->bi_end_io = bbio->end_io;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005857 bio_endio(bio);
Mike Snitzer326e1db2015-05-22 09:14:03 -04005858
Zhao Lei6e9606d2015-01-20 15:11:34 +08005859 btrfs_put_bbio(bbio);
Miao Xie8408c712014-06-19 10:42:55 +08005860}
5861
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005862static void btrfs_end_bio(struct bio *bio)
Chris Mason8790d502008-04-03 16:29:03 -04005863{
Chris Mason9be33952013-05-17 18:30:14 -04005864 struct btrfs_bio *bbio = bio->bi_private;
Chris Mason7d2b4da2008-08-05 10:13:57 -04005865 int is_orig_bio = 0;
Chris Mason8790d502008-04-03 16:29:03 -04005866
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005867 if (bio->bi_error) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005868 atomic_inc(&bbio->error);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005869 if (bio->bi_error == -EIO || bio->bi_error == -EREMOTEIO) {
Stefan Behrens442a4f62012-05-25 16:06:08 +02005870 unsigned int stripe_index =
Chris Mason9be33952013-05-17 18:30:14 -04005871 btrfs_io_bio(bio)->stripe_index;
Zhao Lei65f53332015-06-08 20:05:50 +08005872 struct btrfs_device *dev;
Stefan Behrens442a4f62012-05-25 16:06:08 +02005873
5874 BUG_ON(stripe_index >= bbio->num_stripes);
5875 dev = bbio->stripes[stripe_index].dev;
Stefan Behrens597a60f2012-06-14 16:42:31 +02005876 if (dev->bdev) {
5877 if (bio->bi_rw & WRITE)
5878 btrfs_dev_stat_inc(dev,
5879 BTRFS_DEV_STAT_WRITE_ERRS);
5880 else
5881 btrfs_dev_stat_inc(dev,
5882 BTRFS_DEV_STAT_READ_ERRS);
5883 if ((bio->bi_rw & WRITE_FLUSH) == WRITE_FLUSH)
5884 btrfs_dev_stat_inc(dev,
5885 BTRFS_DEV_STAT_FLUSH_ERRS);
5886 btrfs_dev_stat_print_on_error(dev);
5887 }
Stefan Behrens442a4f62012-05-25 16:06:08 +02005888 }
5889 }
Chris Mason8790d502008-04-03 16:29:03 -04005890
Jan Schmidta1d3c472011-08-04 17:15:33 +02005891 if (bio == bbio->orig_bio)
Chris Mason7d2b4da2008-08-05 10:13:57 -04005892 is_orig_bio = 1;
5893
Miao Xiec404e0d2014-01-30 16:46:55 +08005894 btrfs_bio_counter_dec(bbio->fs_info);
5895
Jan Schmidta1d3c472011-08-04 17:15:33 +02005896 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Chris Mason7d2b4da2008-08-05 10:13:57 -04005897 if (!is_orig_bio) {
5898 bio_put(bio);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005899 bio = bbio->orig_bio;
Chris Mason7d2b4da2008-08-05 10:13:57 -04005900 }
Muthu Kumarc7b22bb2014-01-08 14:19:52 -07005901
Chris Mason9be33952013-05-17 18:30:14 -04005902 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Chris Masona236aed2008-04-29 09:38:00 -04005903 /* only send an error to the higher layers if it is
David Woodhouse53b381b2013-01-29 18:40:14 -05005904 * beyond the tolerance of the btrfs bio
Chris Masona236aed2008-04-29 09:38:00 -04005905 */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005906 if (atomic_read(&bbio->error) > bbio->max_errors) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005907 bio->bi_error = -EIO;
Chris Mason5dbc8fc2011-12-09 11:07:37 -05005908 } else {
Chris Mason1259ab72008-05-12 13:39:03 -04005909 /*
5910 * this bio is actually up to date, we didn't
5911 * go over the max number of errors
5912 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005913 bio->bi_error = 0;
Chris Mason1259ab72008-05-12 13:39:03 -04005914 }
Miao Xiec55f1392014-06-19 10:42:54 +08005915
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005916 btrfs_end_bbio(bbio, bio);
Chris Mason7d2b4da2008-08-05 10:13:57 -04005917 } else if (!is_orig_bio) {
Chris Mason8790d502008-04-03 16:29:03 -04005918 bio_put(bio);
5919 }
Chris Mason8790d502008-04-03 16:29:03 -04005920}
5921
Chris Mason8b712842008-06-11 16:50:36 -04005922/*
5923 * see run_scheduled_bios for a description of why bios are collected for
5924 * async submit.
5925 *
5926 * This will add one bio to the pending list for a device and make sure
5927 * the work struct is scheduled.
5928 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00005929static noinline void btrfs_schedule_bio(struct btrfs_root *root,
5930 struct btrfs_device *device,
5931 int rw, struct bio *bio)
Chris Mason8b712842008-06-11 16:50:36 -04005932{
5933 int should_queue = 1;
Chris Masonffbd5172009-04-20 15:50:09 -04005934 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04005935
David Woodhouse53b381b2013-01-29 18:40:14 -05005936 if (device->missing || !device->bdev) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005937 bio_io_error(bio);
David Woodhouse53b381b2013-01-29 18:40:14 -05005938 return;
5939 }
5940
Chris Mason8b712842008-06-11 16:50:36 -04005941 /* don't bother with additional async steps for reads, right now */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02005942 if (!(rw & REQ_WRITE)) {
Chris Mason492bb6de2008-07-31 16:29:02 -04005943 bio_get(bio);
Stefan Behrens21adbd52011-11-09 13:44:05 +01005944 btrfsic_submit_bio(rw, bio);
Chris Mason492bb6de2008-07-31 16:29:02 -04005945 bio_put(bio);
Jeff Mahoney143bede2012-03-01 14:56:26 +01005946 return;
Chris Mason8b712842008-06-11 16:50:36 -04005947 }
5948
5949 /*
Chris Mason0986fe9e2008-08-15 15:34:15 -04005950 * nr_async_bios allows us to reliably return congestion to the
Chris Mason8b712842008-06-11 16:50:36 -04005951 * higher layers. Otherwise, the async bio makes it appear we have
5952 * made progress against dirty pages when we've really just put it
5953 * on a queue for later
5954 */
Chris Mason0986fe9e2008-08-15 15:34:15 -04005955 atomic_inc(&root->fs_info->nr_async_bios);
Chris Mason492bb6de2008-07-31 16:29:02 -04005956 WARN_ON(bio->bi_next);
Chris Mason8b712842008-06-11 16:50:36 -04005957 bio->bi_next = NULL;
5958 bio->bi_rw |= rw;
5959
5960 spin_lock(&device->io_lock);
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02005961 if (bio->bi_rw & REQ_SYNC)
Chris Masonffbd5172009-04-20 15:50:09 -04005962 pending_bios = &device->pending_sync_bios;
5963 else
5964 pending_bios = &device->pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04005965
Chris Masonffbd5172009-04-20 15:50:09 -04005966 if (pending_bios->tail)
5967 pending_bios->tail->bi_next = bio;
Chris Mason8b712842008-06-11 16:50:36 -04005968
Chris Masonffbd5172009-04-20 15:50:09 -04005969 pending_bios->tail = bio;
5970 if (!pending_bios->head)
5971 pending_bios->head = bio;
Chris Mason8b712842008-06-11 16:50:36 -04005972 if (device->running_pending)
5973 should_queue = 0;
5974
5975 spin_unlock(&device->io_lock);
5976
5977 if (should_queue)
Qu Wenruoa8c93d42014-02-28 10:46:08 +08005978 btrfs_queue_work(root->fs_info->submit_workers,
5979 &device->work);
Chris Mason8b712842008-06-11 16:50:36 -04005980}
5981
Josef Bacikde1ee922012-10-19 16:50:56 -04005982static void submit_stripe_bio(struct btrfs_root *root, struct btrfs_bio *bbio,
5983 struct bio *bio, u64 physical, int dev_nr,
5984 int rw, int async)
5985{
5986 struct btrfs_device *dev = bbio->stripes[dev_nr].dev;
5987
5988 bio->bi_private = bbio;
Chris Mason9be33952013-05-17 18:30:14 -04005989 btrfs_io_bio(bio)->stripe_index = dev_nr;
Josef Bacikde1ee922012-10-19 16:50:56 -04005990 bio->bi_end_io = btrfs_end_bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07005991 bio->bi_iter.bi_sector = physical >> 9;
Josef Bacikde1ee922012-10-19 16:50:56 -04005992#ifdef DEBUG
5993 {
5994 struct rcu_string *name;
5995
5996 rcu_read_lock();
5997 name = rcu_dereference(dev->name);
Masanari Iidad1423242012-10-31 15:16:32 +00005998 pr_debug("btrfs_map_bio: rw %d, sector=%llu, dev=%lu "
Josef Bacikde1ee922012-10-19 16:50:56 -04005999 "(%s id %llu), size=%u\n", rw,
Fabian Frederick1b6e4462014-09-24 20:23:05 +02006000 (u64)bio->bi_iter.bi_sector, (u_long)dev->bdev->bd_dev,
6001 name->str, dev->devid, bio->bi_iter.bi_size);
Josef Bacikde1ee922012-10-19 16:50:56 -04006002 rcu_read_unlock();
6003 }
6004#endif
6005 bio->bi_bdev = dev->bdev;
Miao Xiec404e0d2014-01-30 16:46:55 +08006006
6007 btrfs_bio_counter_inc_noblocked(root->fs_info);
6008
Josef Bacikde1ee922012-10-19 16:50:56 -04006009 if (async)
David Woodhouse53b381b2013-01-29 18:40:14 -05006010 btrfs_schedule_bio(root, dev, rw, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006011 else
6012 btrfsic_submit_bio(rw, bio);
6013}
6014
Josef Bacikde1ee922012-10-19 16:50:56 -04006015static void bbio_error(struct btrfs_bio *bbio, struct bio *bio, u64 logical)
6016{
6017 atomic_inc(&bbio->error);
6018 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Miao Xie8408c712014-06-19 10:42:55 +08006019 /* Shoud be the original bio. */
6020 WARN_ON(bio != bbio->orig_bio);
6021
Chris Mason9be33952013-05-17 18:30:14 -04006022 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006023 bio->bi_iter.bi_sector = logical >> 9;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006024 bio->bi_error = -EIO;
6025 btrfs_end_bbio(bbio, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006026 }
6027}
6028
Chris Masonf1885912008-04-09 16:28:12 -04006029int btrfs_map_bio(struct btrfs_root *root, int rw, struct bio *bio,
Chris Mason8b712842008-06-11 16:50:36 -04006030 int mirror_num, int async_submit)
Chris Mason0b86a832008-03-24 15:01:56 -04006031{
Chris Mason0b86a832008-03-24 15:01:56 -04006032 struct btrfs_device *dev;
Chris Mason8790d502008-04-03 16:29:03 -04006033 struct bio *first_bio = bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006034 u64 logical = (u64)bio->bi_iter.bi_sector << 9;
Chris Mason0b86a832008-03-24 15:01:56 -04006035 u64 length = 0;
6036 u64 map_length;
Chris Mason0b86a832008-03-24 15:01:56 -04006037 int ret;
Zhao Lei08da7572015-02-12 15:42:16 +08006038 int dev_nr;
6039 int total_devs;
Jan Schmidta1d3c472011-08-04 17:15:33 +02006040 struct btrfs_bio *bbio = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006041
Kent Overstreet4f024f32013-10-11 15:44:27 -07006042 length = bio->bi_iter.bi_size;
Chris Mason0b86a832008-03-24 15:01:56 -04006043 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04006044
Miao Xiec404e0d2014-01-30 16:46:55 +08006045 btrfs_bio_counter_inc_blocked(root->fs_info);
David Woodhouse53b381b2013-01-29 18:40:14 -05006046 ret = __btrfs_map_block(root->fs_info, rw, logical, &map_length, &bbio,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006047 mirror_num, 1);
Miao Xiec404e0d2014-01-30 16:46:55 +08006048 if (ret) {
6049 btrfs_bio_counter_dec(root->fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006050 return ret;
Miao Xiec404e0d2014-01-30 16:46:55 +08006051 }
Chris Masoncea9e442008-04-09 16:28:12 -04006052
Jan Schmidta1d3c472011-08-04 17:15:33 +02006053 total_devs = bbio->num_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05006054 bbio->orig_bio = first_bio;
6055 bbio->private = first_bio->bi_private;
6056 bbio->end_io = first_bio->bi_end_io;
Miao Xiec404e0d2014-01-30 16:46:55 +08006057 bbio->fs_info = root->fs_info;
David Woodhouse53b381b2013-01-29 18:40:14 -05006058 atomic_set(&bbio->stripes_pending, bbio->num_stripes);
6059
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006060 if (bbio->raid_map) {
David Woodhouse53b381b2013-01-29 18:40:14 -05006061 /* In this case, map_length has been set to the length of
6062 a single stripe; not the whole write */
6063 if (rw & WRITE) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006064 ret = raid56_parity_write(root, bio, bbio, map_length);
David Woodhouse53b381b2013-01-29 18:40:14 -05006065 } else {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006066 ret = raid56_parity_recover(root, bio, bbio, map_length,
Miao Xie42452152014-11-25 16:39:28 +08006067 mirror_num, 1);
David Woodhouse53b381b2013-01-29 18:40:14 -05006068 }
Miao Xie42452152014-11-25 16:39:28 +08006069
Miao Xiec404e0d2014-01-30 16:46:55 +08006070 btrfs_bio_counter_dec(root->fs_info);
6071 return ret;
David Woodhouse53b381b2013-01-29 18:40:14 -05006072 }
6073
Chris Masoncea9e442008-04-09 16:28:12 -04006074 if (map_length < length) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006075 btrfs_crit(root->fs_info, "mapping failed logical %llu bio len %llu len %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006076 logical, length, map_length);
Chris Masoncea9e442008-04-09 16:28:12 -04006077 BUG();
6078 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02006079
Zhao Lei08da7572015-02-12 15:42:16 +08006080 for (dev_nr = 0; dev_nr < total_devs; dev_nr++) {
Josef Bacikde1ee922012-10-19 16:50:56 -04006081 dev = bbio->stripes[dev_nr].dev;
6082 if (!dev || !dev->bdev || (rw & WRITE && !dev->writeable)) {
6083 bbio_error(bbio, first_bio, logical);
Josef Bacikde1ee922012-10-19 16:50:56 -04006084 continue;
6085 }
6086
Jan Schmidta1d3c472011-08-04 17:15:33 +02006087 if (dev_nr < total_devs - 1) {
Chris Mason9be33952013-05-17 18:30:14 -04006088 bio = btrfs_bio_clone(first_bio, GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006089 BUG_ON(!bio); /* -ENOMEM */
Mike Snitzer326e1db2015-05-22 09:14:03 -04006090 } else
Jan Schmidta1d3c472011-08-04 17:15:33 +02006091 bio = first_bio;
Josef Bacik606686e2012-06-04 14:03:51 -04006092
Josef Bacikde1ee922012-10-19 16:50:56 -04006093 submit_stripe_bio(root, bbio, bio,
6094 bbio->stripes[dev_nr].physical, dev_nr, rw,
6095 async_submit);
Chris Mason239b14b2008-03-24 15:02:07 -04006096 }
Miao Xiec404e0d2014-01-30 16:46:55 +08006097 btrfs_bio_counter_dec(root->fs_info);
Chris Mason0b86a832008-03-24 15:01:56 -04006098 return 0;
6099}
6100
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006101struct btrfs_device *btrfs_find_device(struct btrfs_fs_info *fs_info, u64 devid,
Yan Zheng2b820322008-11-17 21:11:30 -05006102 u8 *uuid, u8 *fsid)
Chris Mason0b86a832008-03-24 15:01:56 -04006103{
Yan Zheng2b820322008-11-17 21:11:30 -05006104 struct btrfs_device *device;
6105 struct btrfs_fs_devices *cur_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006106
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006107 cur_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006108 while (cur_devices) {
6109 if (!fsid ||
6110 !memcmp(cur_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
6111 device = __find_device(&cur_devices->devices,
6112 devid, uuid);
6113 if (device)
6114 return device;
6115 }
6116 cur_devices = cur_devices->seed;
6117 }
6118 return NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006119}
6120
Chris Masondfe25022008-05-13 13:46:40 -04006121static struct btrfs_device *add_missing_dev(struct btrfs_root *root,
Miao Xie5f375832014-09-03 21:35:46 +08006122 struct btrfs_fs_devices *fs_devices,
Chris Masondfe25022008-05-13 13:46:40 -04006123 u64 devid, u8 *dev_uuid)
6124{
6125 struct btrfs_device *device;
Chris Masondfe25022008-05-13 13:46:40 -04006126
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006127 device = btrfs_alloc_device(NULL, &devid, dev_uuid);
6128 if (IS_ERR(device))
yanhai zhu7cbd8a82008-11-12 14:38:54 -05006129 return NULL;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006130
6131 list_add(&device->dev_list, &fs_devices->devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006132 device->fs_devices = fs_devices;
Chris Masondfe25022008-05-13 13:46:40 -04006133 fs_devices->num_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006134
6135 device->missing = 1;
Chris Masoncd02dca2010-12-13 14:56:23 -05006136 fs_devices->missing_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006137
Chris Masondfe25022008-05-13 13:46:40 -04006138 return device;
6139}
6140
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006141/**
6142 * btrfs_alloc_device - allocate struct btrfs_device
6143 * @fs_info: used only for generating a new devid, can be NULL if
6144 * devid is provided (i.e. @devid != NULL).
6145 * @devid: a pointer to devid for this device. If NULL a new devid
6146 * is generated.
6147 * @uuid: a pointer to UUID for this device. If NULL a new UUID
6148 * is generated.
6149 *
6150 * Return: a pointer to a new &struct btrfs_device on success; ERR_PTR()
6151 * on error. Returned struct is not linked onto any lists and can be
6152 * destroyed with kfree() right away.
6153 */
6154struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info,
6155 const u64 *devid,
6156 const u8 *uuid)
6157{
6158 struct btrfs_device *dev;
6159 u64 tmp;
6160
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05306161 if (WARN_ON(!devid && !fs_info))
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006162 return ERR_PTR(-EINVAL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006163
6164 dev = __alloc_device();
6165 if (IS_ERR(dev))
6166 return dev;
6167
6168 if (devid)
6169 tmp = *devid;
6170 else {
6171 int ret;
6172
6173 ret = find_next_devid(fs_info, &tmp);
6174 if (ret) {
6175 kfree(dev);
6176 return ERR_PTR(ret);
6177 }
6178 }
6179 dev->devid = tmp;
6180
6181 if (uuid)
6182 memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE);
6183 else
6184 generate_random_uuid(dev->uuid);
6185
Liu Bo9e0af232014-08-15 23:36:53 +08006186 btrfs_init_work(&dev->work, btrfs_submit_helper,
6187 pending_bios_fn, NULL, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006188
6189 return dev;
6190}
6191
Chris Mason0b86a832008-03-24 15:01:56 -04006192static int read_one_chunk(struct btrfs_root *root, struct btrfs_key *key,
6193 struct extent_buffer *leaf,
6194 struct btrfs_chunk *chunk)
6195{
6196 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
6197 struct map_lookup *map;
6198 struct extent_map *em;
6199 u64 logical;
6200 u64 length;
6201 u64 devid;
Chris Masona4437552008-04-18 10:29:38 -04006202 u8 uuid[BTRFS_UUID_SIZE];
Chris Mason593060d2008-03-25 16:50:33 -04006203 int num_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04006204 int ret;
Chris Mason593060d2008-03-25 16:50:33 -04006205 int i;
Chris Mason0b86a832008-03-24 15:01:56 -04006206
Chris Masone17cade2008-04-15 15:41:47 -04006207 logical = key->offset;
6208 length = btrfs_chunk_length(leaf, chunk);
Chris Masona061fc82008-05-07 11:43:44 -04006209
Chris Mason890871b2009-09-02 16:24:52 -04006210 read_lock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006211 em = lookup_extent_mapping(&map_tree->map_tree, logical, 1);
Chris Mason890871b2009-09-02 16:24:52 -04006212 read_unlock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006213
6214 /* already mapped? */
6215 if (em && em->start <= logical && em->start + em->len > logical) {
6216 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04006217 return 0;
6218 } else if (em) {
6219 free_extent_map(em);
6220 }
Chris Mason0b86a832008-03-24 15:01:56 -04006221
David Sterba172ddd62011-04-21 00:48:27 +02006222 em = alloc_extent_map();
Chris Mason0b86a832008-03-24 15:01:56 -04006223 if (!em)
6224 return -ENOMEM;
Chris Mason593060d2008-03-25 16:50:33 -04006225 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
6226 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
Chris Mason0b86a832008-03-24 15:01:56 -04006227 if (!map) {
6228 free_extent_map(em);
6229 return -ENOMEM;
6230 }
6231
Wang Shilong298a8f92014-06-19 10:42:52 +08006232 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Chris Mason0b86a832008-03-24 15:01:56 -04006233 em->bdev = (struct block_device *)map;
6234 em->start = logical;
6235 em->len = length;
Josef Bacik70c8a912012-10-11 16:54:30 -04006236 em->orig_start = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006237 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04006238 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04006239
Chris Mason593060d2008-03-25 16:50:33 -04006240 map->num_stripes = num_stripes;
6241 map->io_width = btrfs_chunk_io_width(leaf, chunk);
6242 map->io_align = btrfs_chunk_io_align(leaf, chunk);
6243 map->sector_size = btrfs_chunk_sector_size(leaf, chunk);
6244 map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6245 map->type = btrfs_chunk_type(leaf, chunk);
Chris Mason321aecc2008-04-16 10:49:51 -04006246 map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04006247 for (i = 0; i < num_stripes; i++) {
6248 map->stripes[i].physical =
6249 btrfs_stripe_offset_nr(leaf, chunk, i);
6250 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
Chris Masona4437552008-04-18 10:29:38 -04006251 read_extent_buffer(leaf, uuid, (unsigned long)
6252 btrfs_stripe_dev_uuid_nr(chunk, i),
6253 BTRFS_UUID_SIZE);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006254 map->stripes[i].dev = btrfs_find_device(root->fs_info, devid,
6255 uuid, NULL);
Chris Masondfe25022008-05-13 13:46:40 -04006256 if (!map->stripes[i].dev && !btrfs_test_opt(root, DEGRADED)) {
Chris Mason593060d2008-03-25 16:50:33 -04006257 free_extent_map(em);
6258 return -EIO;
6259 }
Chris Masondfe25022008-05-13 13:46:40 -04006260 if (!map->stripes[i].dev) {
6261 map->stripes[i].dev =
Miao Xie5f375832014-09-03 21:35:46 +08006262 add_missing_dev(root, root->fs_info->fs_devices,
6263 devid, uuid);
Chris Masondfe25022008-05-13 13:46:40 -04006264 if (!map->stripes[i].dev) {
Chris Masondfe25022008-05-13 13:46:40 -04006265 free_extent_map(em);
6266 return -EIO;
6267 }
Anand Jain816fceb2015-04-27 12:46:18 +08006268 btrfs_warn(root->fs_info, "devid %llu uuid %pU is missing",
6269 devid, uuid);
Chris Masondfe25022008-05-13 13:46:40 -04006270 }
6271 map->stripes[i].dev->in_fs_metadata = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04006272 }
6273
Chris Mason890871b2009-09-02 16:24:52 -04006274 write_lock(&map_tree->map_tree.lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006275 ret = add_extent_mapping(&map_tree->map_tree, em, 0);
Chris Mason890871b2009-09-02 16:24:52 -04006276 write_unlock(&map_tree->map_tree.lock);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006277 BUG_ON(ret); /* Tree corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04006278 free_extent_map(em);
6279
6280 return 0;
6281}
6282
Jeff Mahoney143bede2012-03-01 14:56:26 +01006283static void fill_device_from_item(struct extent_buffer *leaf,
Chris Mason0b86a832008-03-24 15:01:56 -04006284 struct btrfs_dev_item *dev_item,
6285 struct btrfs_device *device)
6286{
6287 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04006288
6289 device->devid = btrfs_device_id(leaf, dev_item);
Chris Balld6397ba2009-04-27 07:29:03 -04006290 device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item);
6291 device->total_bytes = device->disk_total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08006292 device->commit_total_bytes = device->disk_total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04006293 device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
Miao Xiece7213c2014-09-03 21:35:34 +08006294 device->commit_bytes_used = device->bytes_used;
Chris Mason0b86a832008-03-24 15:01:56 -04006295 device->type = btrfs_device_type(leaf, dev_item);
6296 device->io_align = btrfs_device_io_align(leaf, dev_item);
6297 device->io_width = btrfs_device_io_width(leaf, dev_item);
6298 device->sector_size = btrfs_device_sector_size(leaf, dev_item);
Stefan Behrens8dabb742012-11-06 13:15:27 +01006299 WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID);
Stefan Behrens63a212a2012-11-05 18:29:28 +01006300 device->is_tgtdev_for_dev_replace = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006301
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006302 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04006303 read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006304}
6305
Miao Xie5f375832014-09-03 21:35:46 +08006306static struct btrfs_fs_devices *open_seed_devices(struct btrfs_root *root,
6307 u8 *fsid)
Yan Zheng2b820322008-11-17 21:11:30 -05006308{
6309 struct btrfs_fs_devices *fs_devices;
6310 int ret;
6311
Li Zefanb367e472011-12-07 11:38:24 +08006312 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zheng2b820322008-11-17 21:11:30 -05006313
6314 fs_devices = root->fs_info->fs_devices->seed;
6315 while (fs_devices) {
Miao Xie5f375832014-09-03 21:35:46 +08006316 if (!memcmp(fs_devices->fsid, fsid, BTRFS_UUID_SIZE))
6317 return fs_devices;
6318
Yan Zheng2b820322008-11-17 21:11:30 -05006319 fs_devices = fs_devices->seed;
6320 }
6321
6322 fs_devices = find_fsid(fsid);
6323 if (!fs_devices) {
Miao Xie5f375832014-09-03 21:35:46 +08006324 if (!btrfs_test_opt(root, DEGRADED))
6325 return ERR_PTR(-ENOENT);
6326
6327 fs_devices = alloc_fs_devices(fsid);
6328 if (IS_ERR(fs_devices))
6329 return fs_devices;
6330
6331 fs_devices->seeding = 1;
6332 fs_devices->opened = 1;
6333 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006334 }
Yan Zhenge4404d62008-12-12 10:03:26 -05006335
6336 fs_devices = clone_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006337 if (IS_ERR(fs_devices))
6338 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006339
Christoph Hellwig97288f22008-12-02 06:36:09 -05006340 ret = __btrfs_open_devices(fs_devices, FMODE_READ,
Chris Mason15916de2008-11-19 21:17:22 -05006341 root->fs_info->bdev_holder);
Julia Lawall48d28232012-04-14 11:24:33 +02006342 if (ret) {
6343 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006344 fs_devices = ERR_PTR(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05006345 goto out;
Julia Lawall48d28232012-04-14 11:24:33 +02006346 }
Yan Zheng2b820322008-11-17 21:11:30 -05006347
6348 if (!fs_devices->seeding) {
6349 __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006350 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006351 fs_devices = ERR_PTR(-EINVAL);
Yan Zheng2b820322008-11-17 21:11:30 -05006352 goto out;
6353 }
6354
6355 fs_devices->seed = root->fs_info->fs_devices->seed;
6356 root->fs_info->fs_devices->seed = fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006357out:
Miao Xie5f375832014-09-03 21:35:46 +08006358 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006359}
6360
Chris Mason0d81ba52008-03-24 15:02:07 -04006361static int read_one_dev(struct btrfs_root *root,
Chris Mason0b86a832008-03-24 15:01:56 -04006362 struct extent_buffer *leaf,
6363 struct btrfs_dev_item *dev_item)
6364{
Miao Xie5f375832014-09-03 21:35:46 +08006365 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006366 struct btrfs_device *device;
6367 u64 devid;
6368 int ret;
Yan Zheng2b820322008-11-17 21:11:30 -05006369 u8 fs_uuid[BTRFS_UUID_SIZE];
Chris Masona4437552008-04-18 10:29:38 -04006370 u8 dev_uuid[BTRFS_UUID_SIZE];
6371
Chris Mason0b86a832008-03-24 15:01:56 -04006372 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006373 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Chris Masona4437552008-04-18 10:29:38 -04006374 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02006375 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05006376 BTRFS_UUID_SIZE);
6377
6378 if (memcmp(fs_uuid, root->fs_info->fsid, BTRFS_UUID_SIZE)) {
Miao Xie5f375832014-09-03 21:35:46 +08006379 fs_devices = open_seed_devices(root, fs_uuid);
6380 if (IS_ERR(fs_devices))
6381 return PTR_ERR(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05006382 }
6383
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006384 device = btrfs_find_device(root->fs_info, devid, dev_uuid, fs_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006385 if (!device) {
Yan Zhenge4404d62008-12-12 10:03:26 -05006386 if (!btrfs_test_opt(root, DEGRADED))
Yan Zheng2b820322008-11-17 21:11:30 -05006387 return -EIO;
6388
Miao Xie5f375832014-09-03 21:35:46 +08006389 device = add_missing_dev(root, fs_devices, devid, dev_uuid);
6390 if (!device)
6391 return -ENOMEM;
Anand Jain33b97e42015-05-08 04:34:35 +08006392 btrfs_warn(root->fs_info, "devid %llu uuid %pU missing",
6393 devid, dev_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006394 } else {
6395 if (!device->bdev && !btrfs_test_opt(root, DEGRADED))
6396 return -EIO;
6397
6398 if(!device->bdev && !device->missing) {
Chris Masoncd02dca2010-12-13 14:56:23 -05006399 /*
6400 * this happens when a device that was properly setup
6401 * in the device info lists suddenly goes bad.
6402 * device->bdev is NULL, and so we have to set
6403 * device->missing to one here
6404 */
Miao Xie5f375832014-09-03 21:35:46 +08006405 device->fs_devices->missing_devices++;
Chris Masoncd02dca2010-12-13 14:56:23 -05006406 device->missing = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05006407 }
Miao Xie5f375832014-09-03 21:35:46 +08006408
6409 /* Move the device to its own fs_devices */
6410 if (device->fs_devices != fs_devices) {
6411 ASSERT(device->missing);
6412
6413 list_move(&device->dev_list, &fs_devices->devices);
6414 device->fs_devices->num_devices--;
6415 fs_devices->num_devices++;
6416
6417 device->fs_devices->missing_devices--;
6418 fs_devices->missing_devices++;
6419
6420 device->fs_devices = fs_devices;
6421 }
Yan Zheng2b820322008-11-17 21:11:30 -05006422 }
6423
6424 if (device->fs_devices != root->fs_info->fs_devices) {
6425 BUG_ON(device->writeable);
6426 if (device->generation !=
6427 btrfs_device_generation(leaf, dev_item))
6428 return -EINVAL;
Chris Mason6324fbf2008-03-24 15:01:59 -04006429 }
Chris Mason0b86a832008-03-24 15:01:56 -04006430
6431 fill_device_from_item(leaf, dev_item, device);
Chris Masondfe25022008-05-13 13:46:40 -04006432 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01006433 if (device->writeable && !device->is_tgtdev_for_dev_replace) {
Yan Zheng2b820322008-11-17 21:11:30 -05006434 device->fs_devices->total_rw_bytes += device->total_bytes;
Josef Bacik2bf64752011-09-26 17:12:22 -04006435 spin_lock(&root->fs_info->free_chunk_lock);
6436 root->fs_info->free_chunk_space += device->total_bytes -
6437 device->bytes_used;
6438 spin_unlock(&root->fs_info->free_chunk_lock);
6439 }
Chris Mason0b86a832008-03-24 15:01:56 -04006440 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006441 return ret;
6442}
6443
Yan Zhenge4404d62008-12-12 10:03:26 -05006444int btrfs_read_sys_array(struct btrfs_root *root)
Chris Mason0b86a832008-03-24 15:01:56 -04006445{
David Sterba6c417612011-04-13 15:41:04 +02006446 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Masona061fc82008-05-07 11:43:44 -04006447 struct extent_buffer *sb;
Chris Mason0b86a832008-03-24 15:01:56 -04006448 struct btrfs_disk_key *disk_key;
Chris Mason0b86a832008-03-24 15:01:56 -04006449 struct btrfs_chunk *chunk;
David Sterba1ffb22c2014-10-31 19:02:42 +01006450 u8 *array_ptr;
6451 unsigned long sb_array_offset;
Chris Mason84eed902008-04-25 09:04:37 -04006452 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006453 u32 num_stripes;
6454 u32 array_size;
6455 u32 len = 0;
David Sterba1ffb22c2014-10-31 19:02:42 +01006456 u32 cur_offset;
Chris Mason84eed902008-04-25 09:04:37 -04006457 struct btrfs_key key;
Chris Mason0b86a832008-03-24 15:01:56 -04006458
David Sterbaa83fffb2014-06-15 02:39:54 +02006459 ASSERT(BTRFS_SUPER_INFO_SIZE <= root->nodesize);
6460 /*
6461 * This will create extent buffer of nodesize, superblock size is
6462 * fixed to BTRFS_SUPER_INFO_SIZE. If nodesize > sb size, this will
6463 * overallocate but we can keep it as-is, only the first page is used.
6464 */
6465 sb = btrfs_find_create_tree_block(root, BTRFS_SUPER_INFO_OFFSET);
Chris Masona061fc82008-05-07 11:43:44 -04006466 if (!sb)
6467 return -ENOMEM;
6468 btrfs_set_buffer_uptodate(sb);
Chris Mason85d4e462011-07-26 16:11:19 -04006469 btrfs_set_buffer_lockdep_class(root->root_key.objectid, sb, 0);
David Sterba8a334422011-10-07 18:06:13 +02006470 /*
6471 * The sb extent buffer is artifical and just used to read the system array.
6472 * btrfs_set_buffer_uptodate() call does not properly mark all it's
6473 * pages up-to-date when the page is larger: extent does not cover the
6474 * whole page and consequently check_page_uptodate does not find all
6475 * the page's extents up-to-date (the hole beyond sb),
6476 * write_extent_buffer then triggers a WARN_ON.
6477 *
6478 * Regular short extents go through mark_extent_buffer_dirty/writeback cycle,
6479 * but sb spans only this function. Add an explicit SetPageUptodate call
6480 * to silence the warning eg. on PowerPC 64.
6481 */
6482 if (PAGE_CACHE_SIZE > BTRFS_SUPER_INFO_SIZE)
Chris Mason727011e2010-08-06 13:21:20 -04006483 SetPageUptodate(sb->pages[0]);
Chris Mason4008c042009-02-12 14:09:45 -05006484
Chris Masona061fc82008-05-07 11:43:44 -04006485 write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006486 array_size = btrfs_super_sys_array_size(super_copy);
6487
David Sterba1ffb22c2014-10-31 19:02:42 +01006488 array_ptr = super_copy->sys_chunk_array;
6489 sb_array_offset = offsetof(struct btrfs_super_block, sys_chunk_array);
6490 cur_offset = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006491
David Sterba1ffb22c2014-10-31 19:02:42 +01006492 while (cur_offset < array_size) {
6493 disk_key = (struct btrfs_disk_key *)array_ptr;
David Sterbae3540ea2014-11-05 15:24:51 +01006494 len = sizeof(*disk_key);
6495 if (cur_offset + len > array_size)
6496 goto out_short_read;
6497
Chris Mason0b86a832008-03-24 15:01:56 -04006498 btrfs_disk_key_to_cpu(&key, disk_key);
6499
David Sterba1ffb22c2014-10-31 19:02:42 +01006500 array_ptr += len;
6501 sb_array_offset += len;
6502 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006503
Chris Mason0d81ba52008-03-24 15:02:07 -04006504 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
David Sterba1ffb22c2014-10-31 19:02:42 +01006505 chunk = (struct btrfs_chunk *)sb_array_offset;
David Sterbae3540ea2014-11-05 15:24:51 +01006506 /*
6507 * At least one btrfs_chunk with one stripe must be
6508 * present, exact stripe count check comes afterwards
6509 */
6510 len = btrfs_chunk_item_size(1);
6511 if (cur_offset + len > array_size)
6512 goto out_short_read;
6513
6514 num_stripes = btrfs_chunk_num_stripes(sb, chunk);
David Sterbaf5cdedd2015-11-30 17:27:06 +01006515 if (!num_stripes) {
6516 printk(KERN_ERR
6517 "BTRFS: invalid number of stripes %u in sys_array at offset %u\n",
6518 num_stripes, cur_offset);
6519 ret = -EIO;
6520 break;
6521 }
6522
David Sterbae3540ea2014-11-05 15:24:51 +01006523 len = btrfs_chunk_item_size(num_stripes);
6524 if (cur_offset + len > array_size)
6525 goto out_short_read;
6526
Chris Mason0d81ba52008-03-24 15:02:07 -04006527 ret = read_one_chunk(root, &key, sb, chunk);
Chris Mason84eed902008-04-25 09:04:37 -04006528 if (ret)
6529 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006530 } else {
David Sterba93a3d462015-11-30 17:27:09 +01006531 printk(KERN_ERR
6532 "BTRFS: unexpected item type %u in sys_array at offset %u\n",
6533 (u32)key.type, cur_offset);
Chris Mason84eed902008-04-25 09:04:37 -04006534 ret = -EIO;
6535 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006536 }
David Sterba1ffb22c2014-10-31 19:02:42 +01006537 array_ptr += len;
6538 sb_array_offset += len;
6539 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006540 }
Chris Masona061fc82008-05-07 11:43:44 -04006541 free_extent_buffer(sb);
Chris Mason84eed902008-04-25 09:04:37 -04006542 return ret;
David Sterbae3540ea2014-11-05 15:24:51 +01006543
6544out_short_read:
6545 printk(KERN_ERR "BTRFS: sys_array too short to read %u bytes at offset %u\n",
6546 len, cur_offset);
6547 free_extent_buffer(sb);
6548 return -EIO;
Chris Mason0b86a832008-03-24 15:01:56 -04006549}
6550
6551int btrfs_read_chunk_tree(struct btrfs_root *root)
6552{
6553 struct btrfs_path *path;
6554 struct extent_buffer *leaf;
6555 struct btrfs_key key;
6556 struct btrfs_key found_key;
6557 int ret;
6558 int slot;
6559
6560 root = root->fs_info->chunk_root;
6561
6562 path = btrfs_alloc_path();
6563 if (!path)
6564 return -ENOMEM;
6565
Li Zefanb367e472011-12-07 11:38:24 +08006566 mutex_lock(&uuid_mutex);
6567 lock_chunks(root);
6568
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006569 /*
6570 * Read all device items, and then all the chunk items. All
6571 * device items are found before any chunk item (their object id
6572 * is smaller than the lowest possible object id for a chunk
6573 * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID).
Chris Mason0b86a832008-03-24 15:01:56 -04006574 */
6575 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
6576 key.offset = 0;
6577 key.type = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006578 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Zhao Leiab593812010-03-25 12:34:49 +00006579 if (ret < 0)
6580 goto error;
Chris Masond3977122009-01-05 21:25:51 -05006581 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04006582 leaf = path->nodes[0];
6583 slot = path->slots[0];
6584 if (slot >= btrfs_header_nritems(leaf)) {
6585 ret = btrfs_next_leaf(root, path);
6586 if (ret == 0)
6587 continue;
6588 if (ret < 0)
6589 goto error;
6590 break;
6591 }
6592 btrfs_item_key_to_cpu(leaf, &found_key, slot);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006593 if (found_key.type == BTRFS_DEV_ITEM_KEY) {
6594 struct btrfs_dev_item *dev_item;
6595 dev_item = btrfs_item_ptr(leaf, slot,
Chris Mason0b86a832008-03-24 15:01:56 -04006596 struct btrfs_dev_item);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006597 ret = read_one_dev(root, leaf, dev_item);
6598 if (ret)
6599 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04006600 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
6601 struct btrfs_chunk *chunk;
6602 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
6603 ret = read_one_chunk(root, &found_key, leaf, chunk);
Yan Zheng2b820322008-11-17 21:11:30 -05006604 if (ret)
6605 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04006606 }
6607 path->slots[0]++;
6608 }
Chris Mason0b86a832008-03-24 15:01:56 -04006609 ret = 0;
6610error:
Li Zefanb367e472011-12-07 11:38:24 +08006611 unlock_chunks(root);
6612 mutex_unlock(&uuid_mutex);
6613
Yan Zheng2b820322008-11-17 21:11:30 -05006614 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04006615 return ret;
6616}
Stefan Behrens442a4f62012-05-25 16:06:08 +02006617
Miao Xiecb517ea2013-05-15 07:48:19 +00006618void btrfs_init_devices_late(struct btrfs_fs_info *fs_info)
6619{
6620 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6621 struct btrfs_device *device;
6622
Liu Bo29cc83f2014-05-11 23:14:59 +08006623 while (fs_devices) {
6624 mutex_lock(&fs_devices->device_list_mutex);
6625 list_for_each_entry(device, &fs_devices->devices, dev_list)
6626 device->dev_root = fs_info->dev_root;
6627 mutex_unlock(&fs_devices->device_list_mutex);
6628
6629 fs_devices = fs_devices->seed;
6630 }
Miao Xiecb517ea2013-05-15 07:48:19 +00006631}
6632
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006633static void __btrfs_reset_dev_stats(struct btrfs_device *dev)
6634{
6635 int i;
6636
6637 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6638 btrfs_dev_stat_reset(dev, i);
6639}
6640
6641int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info)
6642{
6643 struct btrfs_key key;
6644 struct btrfs_key found_key;
6645 struct btrfs_root *dev_root = fs_info->dev_root;
6646 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6647 struct extent_buffer *eb;
6648 int slot;
6649 int ret = 0;
6650 struct btrfs_device *device;
6651 struct btrfs_path *path = NULL;
6652 int i;
6653
6654 path = btrfs_alloc_path();
6655 if (!path) {
6656 ret = -ENOMEM;
6657 goto out;
6658 }
6659
6660 mutex_lock(&fs_devices->device_list_mutex);
6661 list_for_each_entry(device, &fs_devices->devices, dev_list) {
6662 int item_size;
6663 struct btrfs_dev_stats_item *ptr;
6664
6665 key.objectid = 0;
6666 key.type = BTRFS_DEV_STATS_KEY;
6667 key.offset = device->devid;
6668 ret = btrfs_search_slot(NULL, dev_root, &key, path, 0, 0);
6669 if (ret) {
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006670 __btrfs_reset_dev_stats(device);
6671 device->dev_stats_valid = 1;
6672 btrfs_release_path(path);
6673 continue;
6674 }
6675 slot = path->slots[0];
6676 eb = path->nodes[0];
6677 btrfs_item_key_to_cpu(eb, &found_key, slot);
6678 item_size = btrfs_item_size_nr(eb, slot);
6679
6680 ptr = btrfs_item_ptr(eb, slot,
6681 struct btrfs_dev_stats_item);
6682
6683 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
6684 if (item_size >= (1 + i) * sizeof(__le64))
6685 btrfs_dev_stat_set(device, i,
6686 btrfs_dev_stats_value(eb, ptr, i));
6687 else
6688 btrfs_dev_stat_reset(device, i);
6689 }
6690
6691 device->dev_stats_valid = 1;
6692 btrfs_dev_stat_print_on_load(device);
6693 btrfs_release_path(path);
6694 }
6695 mutex_unlock(&fs_devices->device_list_mutex);
6696
6697out:
6698 btrfs_free_path(path);
6699 return ret < 0 ? ret : 0;
6700}
6701
6702static int update_dev_stat_item(struct btrfs_trans_handle *trans,
6703 struct btrfs_root *dev_root,
6704 struct btrfs_device *device)
6705{
6706 struct btrfs_path *path;
6707 struct btrfs_key key;
6708 struct extent_buffer *eb;
6709 struct btrfs_dev_stats_item *ptr;
6710 int ret;
6711 int i;
6712
6713 key.objectid = 0;
6714 key.type = BTRFS_DEV_STATS_KEY;
6715 key.offset = device->devid;
6716
6717 path = btrfs_alloc_path();
6718 BUG_ON(!path);
6719 ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1);
6720 if (ret < 0) {
David Sterbaecaeb142015-10-08 09:01:03 +02006721 btrfs_warn_in_rcu(dev_root->fs_info,
6722 "error %d while searching for dev_stats item for device %s",
Josef Bacik606686e2012-06-04 14:03:51 -04006723 ret, rcu_str_deref(device->name));
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006724 goto out;
6725 }
6726
6727 if (ret == 0 &&
6728 btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) {
6729 /* need to delete old one and insert a new one */
6730 ret = btrfs_del_item(trans, dev_root, path);
6731 if (ret != 0) {
David Sterbaecaeb142015-10-08 09:01:03 +02006732 btrfs_warn_in_rcu(dev_root->fs_info,
6733 "delete too small dev_stats item for device %s failed %d",
Josef Bacik606686e2012-06-04 14:03:51 -04006734 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006735 goto out;
6736 }
6737 ret = 1;
6738 }
6739
6740 if (ret == 1) {
6741 /* need to insert a new item */
6742 btrfs_release_path(path);
6743 ret = btrfs_insert_empty_item(trans, dev_root, path,
6744 &key, sizeof(*ptr));
6745 if (ret < 0) {
David Sterbaecaeb142015-10-08 09:01:03 +02006746 btrfs_warn_in_rcu(dev_root->fs_info,
6747 "insert dev_stats item for device %s failed %d",
6748 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006749 goto out;
6750 }
6751 }
6752
6753 eb = path->nodes[0];
6754 ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item);
6755 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6756 btrfs_set_dev_stats_value(eb, ptr, i,
6757 btrfs_dev_stat_read(device, i));
6758 btrfs_mark_buffer_dirty(eb);
6759
6760out:
6761 btrfs_free_path(path);
6762 return ret;
6763}
6764
6765/*
6766 * called from commit_transaction. Writes all changed device stats to disk.
6767 */
6768int btrfs_run_dev_stats(struct btrfs_trans_handle *trans,
6769 struct btrfs_fs_info *fs_info)
6770{
6771 struct btrfs_root *dev_root = fs_info->dev_root;
6772 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6773 struct btrfs_device *device;
Miao Xieaddc3fa2014-07-24 11:37:11 +08006774 int stats_cnt;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006775 int ret = 0;
6776
6777 mutex_lock(&fs_devices->device_list_mutex);
6778 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Miao Xieaddc3fa2014-07-24 11:37:11 +08006779 if (!device->dev_stats_valid || !btrfs_dev_stats_dirty(device))
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006780 continue;
6781
Miao Xieaddc3fa2014-07-24 11:37:11 +08006782 stats_cnt = atomic_read(&device->dev_stats_ccnt);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006783 ret = update_dev_stat_item(trans, dev_root, device);
6784 if (!ret)
Miao Xieaddc3fa2014-07-24 11:37:11 +08006785 atomic_sub(stats_cnt, &device->dev_stats_ccnt);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006786 }
6787 mutex_unlock(&fs_devices->device_list_mutex);
6788
6789 return ret;
6790}
6791
Stefan Behrens442a4f62012-05-25 16:06:08 +02006792void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index)
6793{
6794 btrfs_dev_stat_inc(dev, index);
6795 btrfs_dev_stat_print_on_error(dev);
6796}
6797
Eric Sandeen48a3b632013-04-25 20:41:01 +00006798static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev)
Stefan Behrens442a4f62012-05-25 16:06:08 +02006799{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006800 if (!dev->dev_stats_valid)
6801 return;
David Sterbab14af3b2015-10-08 10:43:10 +02006802 btrfs_err_rl_in_rcu(dev->dev_root->fs_info,
6803 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04006804 rcu_str_deref(dev->name),
Stefan Behrens442a4f62012-05-25 16:06:08 +02006805 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
6806 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
6807 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
Frank Holtonefe120a2013-12-20 11:37:06 -05006808 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
6809 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
Stefan Behrens442a4f62012-05-25 16:06:08 +02006810}
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006811
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006812static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev)
6813{
Stefan Behrensa98cdb82012-07-17 09:02:11 -06006814 int i;
6815
6816 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6817 if (btrfs_dev_stat_read(dev, i) != 0)
6818 break;
6819 if (i == BTRFS_DEV_STAT_VALUES_MAX)
6820 return; /* all values == 0, suppress message */
6821
David Sterbaecaeb142015-10-08 09:01:03 +02006822 btrfs_info_in_rcu(dev->dev_root->fs_info,
6823 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04006824 rcu_str_deref(dev->name),
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006825 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
6826 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
6827 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
6828 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
6829 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
6830}
6831
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006832int btrfs_get_dev_stats(struct btrfs_root *root,
David Sterbab27f7c02012-06-22 06:30:39 -06006833 struct btrfs_ioctl_get_dev_stats *stats)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006834{
6835 struct btrfs_device *dev;
6836 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
6837 int i;
6838
6839 mutex_lock(&fs_devices->device_list_mutex);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006840 dev = btrfs_find_device(root->fs_info, stats->devid, NULL, NULL);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006841 mutex_unlock(&fs_devices->device_list_mutex);
6842
6843 if (!dev) {
Frank Holtonefe120a2013-12-20 11:37:06 -05006844 btrfs_warn(root->fs_info, "get dev_stats failed, device not found");
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006845 return -ENODEV;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006846 } else if (!dev->dev_stats_valid) {
Frank Holtonefe120a2013-12-20 11:37:06 -05006847 btrfs_warn(root->fs_info, "get dev_stats failed, not yet valid");
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006848 return -ENODEV;
David Sterbab27f7c02012-06-22 06:30:39 -06006849 } else if (stats->flags & BTRFS_DEV_STATS_RESET) {
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006850 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
6851 if (stats->nr_items > i)
6852 stats->values[i] =
6853 btrfs_dev_stat_read_and_reset(dev, i);
6854 else
6855 btrfs_dev_stat_reset(dev, i);
6856 }
6857 } else {
6858 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6859 if (stats->nr_items > i)
6860 stats->values[i] = btrfs_dev_stat_read(dev, i);
6861 }
6862 if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX)
6863 stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX;
6864 return 0;
6865}
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006866
Anand Jain12b1c262015-08-14 18:32:59 +08006867void btrfs_scratch_superblocks(struct block_device *bdev, char *device_path)
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006868{
6869 struct buffer_head *bh;
6870 struct btrfs_super_block *disk_super;
Anand Jain12b1c262015-08-14 18:32:59 +08006871 int copy_num;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006872
Anand Jain12b1c262015-08-14 18:32:59 +08006873 if (!bdev)
6874 return;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006875
Anand Jain12b1c262015-08-14 18:32:59 +08006876 for (copy_num = 0; copy_num < BTRFS_SUPER_MIRROR_MAX;
6877 copy_num++) {
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006878
Anand Jain12b1c262015-08-14 18:32:59 +08006879 if (btrfs_read_dev_one_super(bdev, copy_num, &bh))
6880 continue;
6881
6882 disk_super = (struct btrfs_super_block *)bh->b_data;
6883
6884 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
6885 set_buffer_dirty(bh);
6886 sync_dirty_buffer(bh);
6887 brelse(bh);
6888 }
6889
6890 /* Notify udev that device has changed */
6891 btrfs_kobject_uevent(bdev, KOBJ_CHANGE);
6892
6893 /* Update ctime/mtime for device path for libblkid */
6894 update_dev_time(device_path);
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006895}
Miao Xie935e5cc2014-09-03 21:35:33 +08006896
6897/*
6898 * Update the size of all devices, which is used for writing out the
6899 * super blocks.
6900 */
6901void btrfs_update_commit_device_size(struct btrfs_fs_info *fs_info)
6902{
6903 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6904 struct btrfs_device *curr, *next;
6905
6906 if (list_empty(&fs_devices->resized_devices))
6907 return;
6908
6909 mutex_lock(&fs_devices->device_list_mutex);
6910 lock_chunks(fs_info->dev_root);
6911 list_for_each_entry_safe(curr, next, &fs_devices->resized_devices,
6912 resized_list) {
6913 list_del_init(&curr->resized_list);
6914 curr->commit_total_bytes = curr->disk_total_bytes;
6915 }
6916 unlock_chunks(fs_info->dev_root);
6917 mutex_unlock(&fs_devices->device_list_mutex);
6918}
Miao Xiece7213c2014-09-03 21:35:34 +08006919
6920/* Must be invoked during the transaction commit */
6921void btrfs_update_commit_device_bytes_used(struct btrfs_root *root,
6922 struct btrfs_transaction *transaction)
6923{
6924 struct extent_map *em;
6925 struct map_lookup *map;
6926 struct btrfs_device *dev;
6927 int i;
6928
6929 if (list_empty(&transaction->pending_chunks))
6930 return;
6931
6932 /* In order to kick the device replace finish process */
6933 lock_chunks(root);
6934 list_for_each_entry(em, &transaction->pending_chunks, list) {
6935 map = (struct map_lookup *)em->bdev;
6936
6937 for (i = 0; i < map->num_stripes; i++) {
6938 dev = map->stripes[i].dev;
6939 dev->commit_bytes_used = dev->bytes_used;
6940 }
6941 }
6942 unlock_chunks(root);
6943}
Anand Jain5a13f432015-03-10 06:38:31 +08006944
6945void btrfs_set_fs_info_ptr(struct btrfs_fs_info *fs_info)
6946{
6947 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6948 while (fs_devices) {
6949 fs_devices->fs_info = fs_info;
6950 fs_devices = fs_devices->seed;
6951 }
6952}
6953
6954void btrfs_reset_fs_info_ptr(struct btrfs_fs_info *fs_info)
6955{
6956 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6957 while (fs_devices) {
6958 fs_devices->fs_info = NULL;
6959 fs_devices = fs_devices->seed;
6960 }
6961}
Anand Jainf190aa42015-08-14 18:33:05 +08006962
6963void btrfs_close_one_device(struct btrfs_device *device)
6964{
6965 struct btrfs_fs_devices *fs_devices = device->fs_devices;
6966 struct btrfs_device *new_device;
6967 struct rcu_string *name;
6968
6969 if (device->bdev)
6970 fs_devices->open_devices--;
6971
6972 if (device->writeable &&
6973 device->devid != BTRFS_DEV_REPLACE_DEVID) {
6974 list_del_init(&device->dev_alloc_list);
6975 fs_devices->rw_devices--;
6976 }
6977
6978 if (device->missing)
6979 fs_devices->missing_devices--;
6980
6981 new_device = btrfs_alloc_device(NULL, &device->devid,
6982 device->uuid);
6983 BUG_ON(IS_ERR(new_device)); /* -ENOMEM */
6984
6985 /* Safe because we are under uuid_mutex */
6986 if (device->name) {
6987 name = rcu_string_strdup(device->name->str, GFP_NOFS);
6988 BUG_ON(!name); /* -ENOMEM */
6989 rcu_assign_pointer(new_device->name, name);
6990 }
6991
6992 list_replace_rcu(&device->dev_list, &new_device->dev_list);
6993 new_device->fs_devices = device->fs_devices;
6994
6995 call_rcu(&device->rcu, free_device);
6996}