blob: 9f5d167398801efeb7d79fbcca48b1ded28daabc [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);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300235 INIT_RADIX_TREE(&dev->reada_zones, GFP_NOFS & ~__GFP_WAIT);
236 INIT_RADIX_TREE(&dev->reada_extents, GFP_NOFS & ~__GFP_WAIT);
237
238 return dev;
239}
240
Chris Masona1b32a52008-09-05 16:09:51 -0400241static noinline struct btrfs_device *__find_device(struct list_head *head,
242 u64 devid, u8 *uuid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400243{
244 struct btrfs_device *dev;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400245
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500246 list_for_each_entry(dev, head, dev_list) {
Chris Masona4437552008-04-18 10:29:38 -0400247 if (dev->devid == devid &&
Chris Mason8f18cf12008-04-25 16:53:30 -0400248 (!uuid || !memcmp(dev->uuid, uuid, BTRFS_UUID_SIZE))) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400249 return dev;
Chris Masona4437552008-04-18 10:29:38 -0400250 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400251 }
252 return NULL;
253}
254
Chris Masona1b32a52008-09-05 16:09:51 -0400255static noinline struct btrfs_fs_devices *find_fsid(u8 *fsid)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400256{
Chris Mason8a4b83c2008-03-24 15:02:07 -0400257 struct btrfs_fs_devices *fs_devices;
258
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500259 list_for_each_entry(fs_devices, &fs_uuids, list) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400260 if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0)
261 return fs_devices;
262 }
263 return NULL;
264}
265
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100266static int
267btrfs_get_bdev_and_sb(const char *device_path, fmode_t flags, void *holder,
268 int flush, struct block_device **bdev,
269 struct buffer_head **bh)
270{
271 int ret;
272
273 *bdev = blkdev_get_by_path(device_path, flags, holder);
274
275 if (IS_ERR(*bdev)) {
276 ret = PTR_ERR(*bdev);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100277 goto error;
278 }
279
280 if (flush)
281 filemap_write_and_wait((*bdev)->bd_inode->i_mapping);
282 ret = set_blocksize(*bdev, 4096);
283 if (ret) {
284 blkdev_put(*bdev, flags);
285 goto error;
286 }
287 invalidate_bdev(*bdev);
288 *bh = btrfs_read_dev_super(*bdev);
Anand Jain92fc03f2015-08-14 18:32:51 +0800289 if (IS_ERR(*bh)) {
290 ret = PTR_ERR(*bh);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100291 blkdev_put(*bdev, flags);
292 goto error;
293 }
294
295 return 0;
296
297error:
298 *bdev = NULL;
299 *bh = NULL;
300 return ret;
301}
302
Chris Masonffbd5172009-04-20 15:50:09 -0400303static void requeue_list(struct btrfs_pending_bios *pending_bios,
304 struct bio *head, struct bio *tail)
305{
306
307 struct bio *old_head;
308
309 old_head = pending_bios->head;
310 pending_bios->head = head;
311 if (pending_bios->tail)
312 tail->bi_next = old_head;
313 else
314 pending_bios->tail = tail;
315}
316
Chris Mason8b712842008-06-11 16:50:36 -0400317/*
318 * we try to collect pending bios for a device so we don't get a large
319 * number of procs sending bios down to the same device. This greatly
320 * improves the schedulers ability to collect and merge the bios.
321 *
322 * But, it also turns into a long list of bios to process and that is sure
323 * to eventually make the worker thread block. The solution here is to
324 * make some progress and then put this work struct back at the end of
325 * the list if the block device is congested. This way, multiple devices
326 * can make progress from a single worker thread.
327 */
Jeff Mahoney143bede2012-03-01 14:56:26 +0100328static noinline void run_scheduled_bios(struct btrfs_device *device)
Chris Mason8b712842008-06-11 16:50:36 -0400329{
330 struct bio *pending;
331 struct backing_dev_info *bdi;
Chris Masonb64a2852008-08-20 13:39:41 -0400332 struct btrfs_fs_info *fs_info;
Chris Masonffbd5172009-04-20 15:50:09 -0400333 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -0400334 struct bio *tail;
335 struct bio *cur;
336 int again = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400337 unsigned long num_run;
Chris Masond644d8a2009-06-09 15:59:22 -0400338 unsigned long batch_run = 0;
Chris Masonb64a2852008-08-20 13:39:41 -0400339 unsigned long limit;
Chris Masonb765ead2009-04-03 10:27:10 -0400340 unsigned long last_waited = 0;
Chris Masond84275c2009-06-09 15:39:08 -0400341 int force_reg = 0;
Miao Xie0e588852011-08-05 09:32:37 +0000342 int sync_pending = 0;
Chris Mason211588a2011-04-19 20:12:40 -0400343 struct blk_plug plug;
344
345 /*
346 * this function runs all the bios we've collected for
347 * a particular device. We don't want to wander off to
348 * another device without first sending all of these down.
349 * So, setup a plug here and finish it off before we return
350 */
351 blk_start_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400352
Chris Masonbedf7622009-04-03 10:32:58 -0400353 bdi = blk_get_backing_dev_info(device->bdev);
Chris Masonb64a2852008-08-20 13:39:41 -0400354 fs_info = device->dev_root->fs_info;
355 limit = btrfs_async_submit_limit(fs_info);
356 limit = limit * 2 / 3;
357
Chris Mason8b712842008-06-11 16:50:36 -0400358loop:
359 spin_lock(&device->io_lock);
360
Chris Masona6837052009-02-04 09:19:41 -0500361loop_lock:
Chris Masond84275c2009-06-09 15:39:08 -0400362 num_run = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400363
Chris Mason8b712842008-06-11 16:50:36 -0400364 /* take all the bios off the list at once and process them
365 * later on (without the lock held). But, remember the
366 * tail and other pointers so the bios can be properly reinserted
367 * into the list if we hit congestion
368 */
Chris Masond84275c2009-06-09 15:39:08 -0400369 if (!force_reg && device->pending_sync_bios.head) {
Chris Masonffbd5172009-04-20 15:50:09 -0400370 pending_bios = &device->pending_sync_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400371 force_reg = 1;
372 } else {
Chris Masonffbd5172009-04-20 15:50:09 -0400373 pending_bios = &device->pending_bios;
Chris Masond84275c2009-06-09 15:39:08 -0400374 force_reg = 0;
375 }
Chris Masonffbd5172009-04-20 15:50:09 -0400376
377 pending = pending_bios->head;
378 tail = pending_bios->tail;
Chris Mason8b712842008-06-11 16:50:36 -0400379 WARN_ON(pending && !tail);
Chris Mason8b712842008-06-11 16:50:36 -0400380
381 /*
382 * if pending was null this time around, no bios need processing
383 * at all and we can stop. Otherwise it'll loop back up again
384 * and do an additional check so no bios are missed.
385 *
386 * device->running_pending is used to synchronize with the
387 * schedule_bio code.
388 */
Chris Masonffbd5172009-04-20 15:50:09 -0400389 if (device->pending_sync_bios.head == NULL &&
390 device->pending_bios.head == NULL) {
Chris Mason8b712842008-06-11 16:50:36 -0400391 again = 0;
392 device->running_pending = 0;
Chris Masonffbd5172009-04-20 15:50:09 -0400393 } else {
394 again = 1;
395 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400396 }
Chris Masonffbd5172009-04-20 15:50:09 -0400397
398 pending_bios->head = NULL;
399 pending_bios->tail = NULL;
400
Chris Mason8b712842008-06-11 16:50:36 -0400401 spin_unlock(&device->io_lock);
402
Chris Masond3977122009-01-05 21:25:51 -0500403 while (pending) {
Chris Masonffbd5172009-04-20 15:50:09 -0400404
405 rmb();
Chris Masond84275c2009-06-09 15:39:08 -0400406 /* we want to work on both lists, but do more bios on the
407 * sync list than the regular list
408 */
409 if ((num_run > 32 &&
410 pending_bios != &device->pending_sync_bios &&
411 device->pending_sync_bios.head) ||
412 (num_run > 64 && pending_bios == &device->pending_sync_bios &&
413 device->pending_bios.head)) {
Chris Masonffbd5172009-04-20 15:50:09 -0400414 spin_lock(&device->io_lock);
415 requeue_list(pending_bios, pending, tail);
416 goto loop_lock;
417 }
418
Chris Mason8b712842008-06-11 16:50:36 -0400419 cur = pending;
420 pending = pending->bi_next;
421 cur->bi_next = NULL;
Chris Masonb64a2852008-08-20 13:39:41 -0400422
David Sterbaee863952015-02-16 19:41:40 +0100423 /*
424 * atomic_dec_return implies a barrier for waitqueue_active
425 */
Josef Bacik66657b32012-08-01 15:36:24 -0400426 if (atomic_dec_return(&fs_info->nr_async_bios) < limit &&
Chris Masonb64a2852008-08-20 13:39:41 -0400427 waitqueue_active(&fs_info->async_submit_wait))
428 wake_up(&fs_info->async_submit_wait);
Chris Mason492bb6de2008-07-31 16:29:02 -0400429
Jens Axboedac56212015-04-17 16:23:59 -0600430 BUG_ON(atomic_read(&cur->__bi_cnt) == 0);
Chris Masond644d8a2009-06-09 15:59:22 -0400431
Chris Mason2ab1ba62011-08-04 14:28:36 -0400432 /*
433 * if we're doing the sync list, record that our
434 * plug has some sync requests on it
435 *
436 * If we're doing the regular list and there are
437 * sync requests sitting around, unplug before
438 * we add more
439 */
440 if (pending_bios == &device->pending_sync_bios) {
441 sync_pending = 1;
442 } else if (sync_pending) {
443 blk_finish_plug(&plug);
444 blk_start_plug(&plug);
445 sync_pending = 0;
446 }
447
Stefan Behrens21adbd52011-11-09 13:44:05 +0100448 btrfsic_submit_bio(cur->bi_rw, cur);
Chris Mason5ff7ba32010-03-15 10:21:30 -0400449 num_run++;
450 batch_run++;
David Sterba853d8ec2015-01-08 15:15:19 +0100451
452 cond_resched();
Chris Mason8b712842008-06-11 16:50:36 -0400453
454 /*
455 * we made progress, there is more work to do and the bdi
456 * is now congested. Back off and let other work structs
457 * run instead
458 */
Chris Mason57fd5a52009-08-07 09:59:15 -0400459 if (pending && bdi_write_congested(bdi) && batch_run > 8 &&
Chris Mason5f2cc082008-11-07 18:22:45 -0500460 fs_info->fs_devices->open_devices > 1) {
Chris Masonb765ead2009-04-03 10:27:10 -0400461 struct io_context *ioc;
Chris Mason8b712842008-06-11 16:50:36 -0400462
Chris Masonb765ead2009-04-03 10:27:10 -0400463 ioc = current->io_context;
464
465 /*
466 * the main goal here is that we don't want to
467 * block if we're going to be able to submit
468 * more requests without blocking.
469 *
470 * This code does two great things, it pokes into
471 * the elevator code from a filesystem _and_
472 * it makes assumptions about how batching works.
473 */
474 if (ioc && ioc->nr_batch_requests > 0 &&
475 time_before(jiffies, ioc->last_waited + HZ/50UL) &&
476 (last_waited == 0 ||
477 ioc->last_waited == last_waited)) {
478 /*
479 * we want to go through our batch of
480 * requests and stop. So, we copy out
481 * the ioc->last_waited time and test
482 * against it before looping
483 */
484 last_waited = ioc->last_waited;
David Sterba853d8ec2015-01-08 15:15:19 +0100485 cond_resched();
Chris Masonb765ead2009-04-03 10:27:10 -0400486 continue;
487 }
Chris Mason8b712842008-06-11 16:50:36 -0400488 spin_lock(&device->io_lock);
Chris Masonffbd5172009-04-20 15:50:09 -0400489 requeue_list(pending_bios, pending, tail);
Chris Masona6837052009-02-04 09:19:41 -0500490 device->running_pending = 1;
Chris Mason8b712842008-06-11 16:50:36 -0400491
492 spin_unlock(&device->io_lock);
Qu Wenruoa8c93d42014-02-28 10:46:08 +0800493 btrfs_queue_work(fs_info->submit_workers,
494 &device->work);
Chris Mason8b712842008-06-11 16:50:36 -0400495 goto done;
496 }
Chris Masond85c8a6f2011-12-15 15:38:41 -0500497 /* unplug every 64 requests just for good measure */
498 if (batch_run % 64 == 0) {
499 blk_finish_plug(&plug);
500 blk_start_plug(&plug);
501 sync_pending = 0;
502 }
Chris Mason8b712842008-06-11 16:50:36 -0400503 }
Chris Masonffbd5172009-04-20 15:50:09 -0400504
Chris Mason51684082010-03-10 15:33:32 -0500505 cond_resched();
506 if (again)
507 goto loop;
508
509 spin_lock(&device->io_lock);
510 if (device->pending_bios.head || device->pending_sync_bios.head)
511 goto loop_lock;
512 spin_unlock(&device->io_lock);
513
Chris Mason8b712842008-06-11 16:50:36 -0400514done:
Chris Mason211588a2011-04-19 20:12:40 -0400515 blk_finish_plug(&plug);
Chris Mason8b712842008-06-11 16:50:36 -0400516}
517
Christoph Hellwigb2950862008-12-02 09:54:17 -0500518static void pending_bios_fn(struct btrfs_work *work)
Chris Mason8b712842008-06-11 16:50:36 -0400519{
520 struct btrfs_device *device;
521
522 device = container_of(work, struct btrfs_device, work);
523 run_scheduled_bios(device);
524}
525
Anand Jain4fde46f2015-06-17 21:10:48 +0800526
527void btrfs_free_stale_device(struct btrfs_device *cur_dev)
528{
529 struct btrfs_fs_devices *fs_devs;
530 struct btrfs_device *dev;
531
532 if (!cur_dev->name)
533 return;
534
535 list_for_each_entry(fs_devs, &fs_uuids, list) {
536 int del = 1;
537
538 if (fs_devs->opened)
539 continue;
540 if (fs_devs->seeding)
541 continue;
542
543 list_for_each_entry(dev, &fs_devs->devices, dev_list) {
544
545 if (dev == cur_dev)
546 continue;
547 if (!dev->name)
548 continue;
549
550 /*
551 * Todo: This won't be enough. What if the same device
552 * comes back (with new uuid and) with its mapper path?
553 * But for now, this does help as mostly an admin will
554 * either use mapper or non mapper path throughout.
555 */
556 rcu_read_lock();
557 del = strcmp(rcu_str_deref(dev->name),
558 rcu_str_deref(cur_dev->name));
559 rcu_read_unlock();
560 if (!del)
561 break;
562 }
563
564 if (!del) {
565 /* delete the stale device */
566 if (fs_devs->num_devices == 1) {
567 btrfs_sysfs_remove_fsid(fs_devs);
568 list_del(&fs_devs->list);
569 free_fs_devices(fs_devs);
570 } else {
571 fs_devs->num_devices--;
572 list_del(&dev->dev_list);
573 rcu_string_free(dev->name);
574 kfree(dev);
575 }
576 break;
577 }
578 }
579}
580
David Sterba60999ca2014-03-26 18:26:36 +0100581/*
582 * Add new device to list of registered devices
583 *
584 * Returns:
585 * 1 - first time device is seen
586 * 0 - device already known
587 * < 0 - error
588 */
Chris Masona1b32a52008-09-05 16:09:51 -0400589static noinline int device_list_add(const char *path,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400590 struct btrfs_super_block *disk_super,
591 u64 devid, struct btrfs_fs_devices **fs_devices_ret)
592{
593 struct btrfs_device *device;
594 struct btrfs_fs_devices *fs_devices;
Josef Bacik606686e2012-06-04 14:03:51 -0400595 struct rcu_string *name;
David Sterba60999ca2014-03-26 18:26:36 +0100596 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400597 u64 found_transid = btrfs_super_generation(disk_super);
598
599 fs_devices = find_fsid(disk_super->fsid);
600 if (!fs_devices) {
Ilya Dryomov2208a372013-08-12 14:33:03 +0300601 fs_devices = alloc_fs_devices(disk_super->fsid);
602 if (IS_ERR(fs_devices))
603 return PTR_ERR(fs_devices);
604
Chris Mason8a4b83c2008-03-24 15:02:07 -0400605 list_add(&fs_devices->list, &fs_uuids);
Ilya Dryomov2208a372013-08-12 14:33:03 +0300606
Chris Mason8a4b83c2008-03-24 15:02:07 -0400607 device = NULL;
608 } else {
Chris Masona4437552008-04-18 10:29:38 -0400609 device = __find_device(&fs_devices->devices, devid,
610 disk_super->dev_item.uuid);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400611 }
Miao Xie443f24f2014-07-24 11:37:15 +0800612
Chris Mason8a4b83c2008-03-24 15:02:07 -0400613 if (!device) {
Yan Zheng2b820322008-11-17 21:11:30 -0500614 if (fs_devices->opened)
615 return -EBUSY;
616
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300617 device = btrfs_alloc_device(NULL, &devid,
618 disk_super->dev_item.uuid);
619 if (IS_ERR(device)) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400620 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300621 return PTR_ERR(device);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400622 }
Josef Bacik606686e2012-06-04 14:03:51 -0400623
624 name = rcu_string_strdup(path, GFP_NOFS);
625 if (!name) {
Chris Mason8a4b83c2008-03-24 15:02:07 -0400626 kfree(device);
627 return -ENOMEM;
628 }
Josef Bacik606686e2012-06-04 14:03:51 -0400629 rcu_assign_pointer(device->name, name);
Arne Jansen90519d62011-05-23 14:30:00 +0200630
Chris Masone5e9a522009-06-10 15:17:02 -0400631 mutex_lock(&fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000632 list_add_rcu(&device->dev_list, &fs_devices->devices);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +0100633 fs_devices->num_devices++;
Chris Masone5e9a522009-06-10 15:17:02 -0400634 mutex_unlock(&fs_devices->device_list_mutex);
635
David Sterba60999ca2014-03-26 18:26:36 +0100636 ret = 1;
Yan Zheng2b820322008-11-17 21:11:30 -0500637 device->fs_devices = fs_devices;
Josef Bacik606686e2012-06-04 14:03:51 -0400638 } else if (!device->name || strcmp(device->name->str, path)) {
Anand Jainb96de002014-07-03 18:22:05 +0800639 /*
640 * When FS is already mounted.
641 * 1. If you are here and if the device->name is NULL that
642 * means this device was missing at time of FS mount.
643 * 2. If you are here and if the device->name is different
644 * from 'path' that means either
645 * a. The same device disappeared and reappeared with
646 * different name. or
647 * b. The missing-disk-which-was-replaced, has
648 * reappeared now.
649 *
650 * We must allow 1 and 2a above. But 2b would be a spurious
651 * and unintentional.
652 *
653 * Further in case of 1 and 2a above, the disk at 'path'
654 * would have missed some transaction when it was away and
655 * in case of 2a the stale bdev has to be updated as well.
656 * 2b must not be allowed at all time.
657 */
658
659 /*
Chris Mason0f23ae72014-09-18 07:49:05 -0700660 * For now, we do allow update to btrfs_fs_device through the
661 * btrfs dev scan cli after FS has been mounted. We're still
662 * tracking a problem where systems fail mount by subvolume id
663 * when we reject replacement on a mounted FS.
Anand Jainb96de002014-07-03 18:22:05 +0800664 */
Chris Mason0f23ae72014-09-18 07:49:05 -0700665 if (!fs_devices->opened && found_transid < device->generation) {
Anand Jain77bdae42014-07-03 18:22:06 +0800666 /*
667 * That is if the FS is _not_ mounted and if you
668 * are here, that means there is more than one
669 * disk with same uuid and devid.We keep the one
670 * with larger generation number or the last-in if
671 * generation are equal.
672 */
Chris Mason0f23ae72014-09-18 07:49:05 -0700673 return -EEXIST;
Anand Jain77bdae42014-07-03 18:22:06 +0800674 }
Anand Jainb96de002014-07-03 18:22:05 +0800675
Josef Bacik606686e2012-06-04 14:03:51 -0400676 name = rcu_string_strdup(path, GFP_NOFS);
TARUISI Hiroaki3a0524d2010-02-09 06:36:45 +0000677 if (!name)
678 return -ENOMEM;
Josef Bacik606686e2012-06-04 14:03:51 -0400679 rcu_string_free(device->name);
680 rcu_assign_pointer(device->name, name);
Chris Masoncd02dca2010-12-13 14:56:23 -0500681 if (device->missing) {
682 fs_devices->missing_devices--;
683 device->missing = 0;
684 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400685 }
686
Anand Jain77bdae42014-07-03 18:22:06 +0800687 /*
688 * Unmount does not free the btrfs_device struct but would zero
689 * generation along with most of the other members. So just update
690 * it back. We need it to pick the disk with largest generation
691 * (as above).
692 */
693 if (!fs_devices->opened)
694 device->generation = found_transid;
695
Anand Jain4fde46f2015-06-17 21:10:48 +0800696 /*
697 * if there is new btrfs on an already registered device,
698 * then remove the stale device entry.
699 */
700 btrfs_free_stale_device(device);
701
Chris Mason8a4b83c2008-03-24 15:02:07 -0400702 *fs_devices_ret = fs_devices;
David Sterba60999ca2014-03-26 18:26:36 +0100703
704 return ret;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400705}
706
Yan Zhenge4404d62008-12-12 10:03:26 -0500707static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig)
708{
709 struct btrfs_fs_devices *fs_devices;
710 struct btrfs_device *device;
711 struct btrfs_device *orig_dev;
712
Ilya Dryomov2208a372013-08-12 14:33:03 +0300713 fs_devices = alloc_fs_devices(orig->fsid);
714 if (IS_ERR(fs_devices))
715 return fs_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -0500716
Miao Xieadbbb862014-09-03 21:35:42 +0800717 mutex_lock(&orig->device_list_mutex);
Josef Bacik02db0842012-06-21 16:03:58 -0400718 fs_devices->total_devices = orig->total_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -0500719
Xiao Guangrong46224702011-04-20 10:08:47 +0000720 /* We have held the volume lock, it is safe to get the devices. */
Yan Zhenge4404d62008-12-12 10:03:26 -0500721 list_for_each_entry(orig_dev, &orig->devices, dev_list) {
Josef Bacik606686e2012-06-04 14:03:51 -0400722 struct rcu_string *name;
723
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300724 device = btrfs_alloc_device(NULL, &orig_dev->devid,
725 orig_dev->uuid);
726 if (IS_ERR(device))
Yan Zhenge4404d62008-12-12 10:03:26 -0500727 goto error;
728
Josef Bacik606686e2012-06-04 14:03:51 -0400729 /*
730 * This is ok to do without rcu read locked because we hold the
731 * uuid mutex so nothing we touch in here is going to disappear.
732 */
Anand Jaine755f782014-06-30 17:12:47 +0800733 if (orig_dev->name) {
734 name = rcu_string_strdup(orig_dev->name->str, GFP_NOFS);
735 if (!name) {
736 kfree(device);
737 goto error;
738 }
739 rcu_assign_pointer(device->name, name);
Julia Lawallfd2696f2009-09-29 13:51:04 -0400740 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500741
Yan Zhenge4404d62008-12-12 10:03:26 -0500742 list_add(&device->dev_list, &fs_devices->devices);
743 device->fs_devices = fs_devices;
744 fs_devices->num_devices++;
745 }
Miao Xieadbbb862014-09-03 21:35:42 +0800746 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500747 return fs_devices;
748error:
Miao Xieadbbb862014-09-03 21:35:42 +0800749 mutex_unlock(&orig->device_list_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500750 free_fs_devices(fs_devices);
751 return ERR_PTR(-ENOMEM);
752}
753
Eric Sandeen9eaed212014-08-01 18:12:35 -0500754void btrfs_close_extra_devices(struct btrfs_fs_devices *fs_devices, int step)
Chris Masondfe25022008-05-13 13:46:40 -0400755{
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500756 struct btrfs_device *device, *next;
Miao Xie443f24f2014-07-24 11:37:15 +0800757 struct btrfs_device *latest_dev = NULL;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500758
Chris Masondfe25022008-05-13 13:46:40 -0400759 mutex_lock(&uuid_mutex);
760again:
Xiao Guangrong46224702011-04-20 10:08:47 +0000761 /* This is the initialized path, it is safe to release the devices. */
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500762 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Chris Masona6b0d5c2012-02-20 20:53:43 -0500763 if (device->in_fs_metadata) {
Stefan Behrens63a212a2012-11-05 18:29:28 +0100764 if (!device->is_tgtdev_for_dev_replace &&
Miao Xie443f24f2014-07-24 11:37:15 +0800765 (!latest_dev ||
766 device->generation > latest_dev->generation)) {
767 latest_dev = device;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500768 }
Yan Zheng2b820322008-11-17 21:11:30 -0500769 continue;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500770 }
Yan Zheng2b820322008-11-17 21:11:30 -0500771
Stefan Behrens8dabb742012-11-06 13:15:27 +0100772 if (device->devid == BTRFS_DEV_REPLACE_DEVID) {
773 /*
774 * In the first step, keep the device which has
775 * the correct fsid and the devid that is used
776 * for the dev_replace procedure.
777 * In the second step, the dev_replace state is
778 * read from the device tree and it is known
779 * whether the procedure is really active or
780 * not, which means whether this device is
781 * used or whether it should be removed.
782 */
783 if (step == 0 || device->is_tgtdev_for_dev_replace) {
784 continue;
785 }
786 }
Yan Zheng2b820322008-11-17 21:11:30 -0500787 if (device->bdev) {
Tejun Heod4d77622010-11-13 11:55:18 +0100788 blkdev_put(device->bdev, device->mode);
Yan Zheng2b820322008-11-17 21:11:30 -0500789 device->bdev = NULL;
790 fs_devices->open_devices--;
791 }
792 if (device->writeable) {
793 list_del_init(&device->dev_alloc_list);
794 device->writeable = 0;
Stefan Behrens8dabb742012-11-06 13:15:27 +0100795 if (!device->is_tgtdev_for_dev_replace)
796 fs_devices->rw_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -0500797 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500798 list_del_init(&device->dev_list);
799 fs_devices->num_devices--;
Josef Bacik606686e2012-06-04 14:03:51 -0400800 rcu_string_free(device->name);
Yan Zhenge4404d62008-12-12 10:03:26 -0500801 kfree(device);
Chris Masondfe25022008-05-13 13:46:40 -0400802 }
Yan Zheng2b820322008-11-17 21:11:30 -0500803
804 if (fs_devices->seed) {
805 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -0500806 goto again;
807 }
808
Miao Xie443f24f2014-07-24 11:37:15 +0800809 fs_devices->latest_bdev = latest_dev->bdev;
Chris Masona6b0d5c2012-02-20 20:53:43 -0500810
Chris Masondfe25022008-05-13 13:46:40 -0400811 mutex_unlock(&uuid_mutex);
Chris Masondfe25022008-05-13 13:46:40 -0400812}
Chris Masona0af4692008-05-13 16:03:06 -0400813
Xiao Guangrong1f781602011-04-20 10:09:16 +0000814static void __free_device(struct work_struct *work)
815{
816 struct btrfs_device *device;
817
818 device = container_of(work, struct btrfs_device, rcu_work);
819
820 if (device->bdev)
821 blkdev_put(device->bdev, device->mode);
822
Josef Bacik606686e2012-06-04 14:03:51 -0400823 rcu_string_free(device->name);
Xiao Guangrong1f781602011-04-20 10:09:16 +0000824 kfree(device);
825}
826
827static void free_device(struct rcu_head *head)
828{
829 struct btrfs_device *device;
830
831 device = container_of(head, struct btrfs_device, rcu);
832
833 INIT_WORK(&device->rcu_work, __free_device);
834 schedule_work(&device->rcu_work);
835}
836
Yan Zheng2b820322008-11-17 21:11:30 -0500837static int __btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400838{
Sasha Levin2037a092015-05-12 19:31:37 -0400839 struct btrfs_device *device, *tmp;
Yan Zhenge4404d62008-12-12 10:03:26 -0500840
Yan Zheng2b820322008-11-17 21:11:30 -0500841 if (--fs_devices->opened > 0)
842 return 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400843
Xiao Guangrongc9513ed2011-04-20 10:07:30 +0000844 mutex_lock(&fs_devices->device_list_mutex);
Sasha Levin2037a092015-05-12 19:31:37 -0400845 list_for_each_entry_safe(device, tmp, &fs_devices->devices, dev_list) {
Anand Jainf190aa42015-08-14 18:33:05 +0800846 btrfs_close_one_device(device);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400847 }
Xiao Guangrongc9513ed2011-04-20 10:07:30 +0000848 mutex_unlock(&fs_devices->device_list_mutex);
849
Yan Zhenge4404d62008-12-12 10:03:26 -0500850 WARN_ON(fs_devices->open_devices);
851 WARN_ON(fs_devices->rw_devices);
Yan Zheng2b820322008-11-17 21:11:30 -0500852 fs_devices->opened = 0;
853 fs_devices->seeding = 0;
Yan Zheng2b820322008-11-17 21:11:30 -0500854
Chris Mason8a4b83c2008-03-24 15:02:07 -0400855 return 0;
856}
857
Yan Zheng2b820322008-11-17 21:11:30 -0500858int btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
859{
Yan Zhenge4404d62008-12-12 10:03:26 -0500860 struct btrfs_fs_devices *seed_devices = NULL;
Yan Zheng2b820322008-11-17 21:11:30 -0500861 int ret;
862
863 mutex_lock(&uuid_mutex);
864 ret = __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -0500865 if (!fs_devices->opened) {
866 seed_devices = fs_devices->seed;
867 fs_devices->seed = NULL;
868 }
Yan Zheng2b820322008-11-17 21:11:30 -0500869 mutex_unlock(&uuid_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -0500870
871 while (seed_devices) {
872 fs_devices = seed_devices;
873 seed_devices = fs_devices->seed;
874 __btrfs_close_devices(fs_devices);
875 free_fs_devices(fs_devices);
876 }
Eric Sandeenbc178622013-03-09 15:18:39 +0000877 /*
878 * Wait for rcu kworkers under __btrfs_close_devices
879 * to finish all blkdev_puts so device is really
880 * free when umount is done.
881 */
882 rcu_barrier();
Yan Zheng2b820322008-11-17 21:11:30 -0500883 return ret;
884}
885
Yan Zhenge4404d62008-12-12 10:03:26 -0500886static int __btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
887 fmode_t flags, void *holder)
Chris Mason8a4b83c2008-03-24 15:02:07 -0400888{
Josef Bacikd5e20032011-08-04 14:52:27 +0000889 struct request_queue *q;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400890 struct block_device *bdev;
891 struct list_head *head = &fs_devices->devices;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400892 struct btrfs_device *device;
Miao Xie443f24f2014-07-24 11:37:15 +0800893 struct btrfs_device *latest_dev = NULL;
Chris Masona0af4692008-05-13 16:03:06 -0400894 struct buffer_head *bh;
895 struct btrfs_super_block *disk_super;
Chris Masona0af4692008-05-13 16:03:06 -0400896 u64 devid;
Yan Zheng2b820322008-11-17 21:11:30 -0500897 int seeding = 1;
Chris Masona0af4692008-05-13 16:03:06 -0400898 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400899
Tejun Heod4d77622010-11-13 11:55:18 +0100900 flags |= FMODE_EXCL;
901
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500902 list_for_each_entry(device, head, dev_list) {
Chris Masonc1c4d912008-05-08 15:05:58 -0400903 if (device->bdev)
904 continue;
Chris Masondfe25022008-05-13 13:46:40 -0400905 if (!device->name)
906 continue;
907
Eric Sandeenf63e0cc2013-04-04 20:45:08 +0000908 /* Just open everything we can; ignore failures here */
909 if (btrfs_get_bdev_and_sb(device->name->str, flags, holder, 1,
910 &bdev, &bh))
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +0100911 continue;
Chris Masona0af4692008-05-13 16:03:06 -0400912
913 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +0000914 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masona0af4692008-05-13 16:03:06 -0400915 if (devid != device->devid)
916 goto error_brelse;
917
Yan Zheng2b820322008-11-17 21:11:30 -0500918 if (memcmp(device->uuid, disk_super->dev_item.uuid,
919 BTRFS_UUID_SIZE))
920 goto error_brelse;
921
922 device->generation = btrfs_super_generation(disk_super);
Miao Xie443f24f2014-07-24 11:37:15 +0800923 if (!latest_dev ||
924 device->generation > latest_dev->generation)
925 latest_dev = device;
Chris Masona0af4692008-05-13 16:03:06 -0400926
Yan Zheng2b820322008-11-17 21:11:30 -0500927 if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) {
928 device->writeable = 0;
929 } else {
930 device->writeable = !bdev_read_only(bdev);
931 seeding = 0;
932 }
933
Josef Bacikd5e20032011-08-04 14:52:27 +0000934 q = bdev_get_queue(bdev);
Miao Xie90180da2014-09-03 21:35:30 +0800935 if (blk_queue_discard(q))
Josef Bacikd5e20032011-08-04 14:52:27 +0000936 device->can_discard = 1;
Josef Bacikd5e20032011-08-04 14:52:27 +0000937
Chris Mason8a4b83c2008-03-24 15:02:07 -0400938 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -0400939 device->in_fs_metadata = 0;
Chris Mason15916de2008-11-19 21:17:22 -0500940 device->mode = flags;
941
Chris Masonc2898112009-06-10 09:51:32 -0400942 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
943 fs_devices->rotating = 1;
944
Chris Masona0af4692008-05-13 16:03:06 -0400945 fs_devices->open_devices++;
Ilya Dryomov55e50e42013-09-01 18:56:44 +0300946 if (device->writeable &&
947 device->devid != BTRFS_DEV_REPLACE_DEVID) {
Yan Zheng2b820322008-11-17 21:11:30 -0500948 fs_devices->rw_devices++;
949 list_add(&device->dev_alloc_list,
950 &fs_devices->alloc_list);
951 }
Xiao Guangrong4f6c9322011-04-20 10:06:40 +0000952 brelse(bh);
Chris Masona0af4692008-05-13 16:03:06 -0400953 continue;
Chris Masona061fc82008-05-07 11:43:44 -0400954
Chris Masona0af4692008-05-13 16:03:06 -0400955error_brelse:
956 brelse(bh);
Tejun Heod4d77622010-11-13 11:55:18 +0100957 blkdev_put(bdev, flags);
Chris Masona0af4692008-05-13 16:03:06 -0400958 continue;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400959 }
Chris Masona0af4692008-05-13 16:03:06 -0400960 if (fs_devices->open_devices == 0) {
Ilya Dryomov20bcd642011-10-20 00:06:20 +0300961 ret = -EINVAL;
Chris Masona0af4692008-05-13 16:03:06 -0400962 goto out;
963 }
Yan Zheng2b820322008-11-17 21:11:30 -0500964 fs_devices->seeding = seeding;
965 fs_devices->opened = 1;
Miao Xie443f24f2014-07-24 11:37:15 +0800966 fs_devices->latest_bdev = latest_dev->bdev;
Yan Zheng2b820322008-11-17 21:11:30 -0500967 fs_devices->total_rw_bytes = 0;
Chris Masona0af4692008-05-13 16:03:06 -0400968out:
Yan Zheng2b820322008-11-17 21:11:30 -0500969 return ret;
970}
971
972int btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
Christoph Hellwig97288f22008-12-02 06:36:09 -0500973 fmode_t flags, void *holder)
Yan Zheng2b820322008-11-17 21:11:30 -0500974{
975 int ret;
976
977 mutex_lock(&uuid_mutex);
978 if (fs_devices->opened) {
Yan Zhenge4404d62008-12-12 10:03:26 -0500979 fs_devices->opened++;
980 ret = 0;
Yan Zheng2b820322008-11-17 21:11:30 -0500981 } else {
Chris Mason15916de2008-11-19 21:17:22 -0500982 ret = __btrfs_open_devices(fs_devices, flags, holder);
Yan Zheng2b820322008-11-17 21:11:30 -0500983 }
Chris Mason8a4b83c2008-03-24 15:02:07 -0400984 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400985 return ret;
986}
987
David Sterba6f60cbd2013-02-15 11:31:02 -0700988/*
989 * Look for a btrfs signature on a device. This may be called out of the mount path
990 * and we are not allowed to call set_blocksize during the scan. The superblock
991 * is read via pagecache
992 */
Christoph Hellwig97288f22008-12-02 06:36:09 -0500993int btrfs_scan_one_device(const char *path, fmode_t flags, void *holder,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400994 struct btrfs_fs_devices **fs_devices_ret)
995{
996 struct btrfs_super_block *disk_super;
997 struct block_device *bdev;
David Sterba6f60cbd2013-02-15 11:31:02 -0700998 struct page *page;
999 void *p;
1000 int ret = -EINVAL;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001001 u64 devid;
Chris Masonf2984462008-04-10 16:19:33 -04001002 u64 transid;
Josef Bacik02db0842012-06-21 16:03:58 -04001003 u64 total_devices;
David Sterba6f60cbd2013-02-15 11:31:02 -07001004 u64 bytenr;
1005 pgoff_t index;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001006
David Sterba6f60cbd2013-02-15 11:31:02 -07001007 /*
1008 * we would like to check all the supers, but that would make
1009 * a btrfs mount succeed after a mkfs from a different FS.
1010 * So, we need to add a special mount option to scan for
1011 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
1012 */
1013 bytenr = btrfs_sb_offset(0);
Tejun Heod4d77622010-11-13 11:55:18 +01001014 flags |= FMODE_EXCL;
Al Viro10f63272011-11-17 15:05:22 -05001015 mutex_lock(&uuid_mutex);
David Sterba6f60cbd2013-02-15 11:31:02 -07001016
1017 bdev = blkdev_get_by_path(path, flags, holder);
1018
1019 if (IS_ERR(bdev)) {
1020 ret = PTR_ERR(bdev);
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001021 goto error;
David Sterba6f60cbd2013-02-15 11:31:02 -07001022 }
1023
1024 /* make sure our super fits in the device */
1025 if (bytenr + PAGE_CACHE_SIZE >= i_size_read(bdev->bd_inode))
1026 goto error_bdev_put;
1027
1028 /* make sure our super fits in the page */
1029 if (sizeof(*disk_super) > PAGE_CACHE_SIZE)
1030 goto error_bdev_put;
1031
1032 /* make sure our super doesn't straddle pages on disk */
1033 index = bytenr >> PAGE_CACHE_SHIFT;
1034 if ((bytenr + sizeof(*disk_super) - 1) >> PAGE_CACHE_SHIFT != index)
1035 goto error_bdev_put;
1036
1037 /* pull in the page with our super */
1038 page = read_cache_page_gfp(bdev->bd_inode->i_mapping,
1039 index, GFP_NOFS);
1040
1041 if (IS_ERR_OR_NULL(page))
1042 goto error_bdev_put;
1043
1044 p = kmap(page);
1045
1046 /* align our pointer to the offset of the super block */
1047 disk_super = p + (bytenr & ~PAGE_CACHE_MASK);
1048
1049 if (btrfs_super_bytenr(disk_super) != bytenr ||
Qu Wenruo3cae2102013-07-16 11:19:18 +08001050 btrfs_super_magic(disk_super) != BTRFS_MAGIC)
David Sterba6f60cbd2013-02-15 11:31:02 -07001051 goto error_unmap;
1052
Xiao Guangronga3438322010-01-06 11:48:18 +00001053 devid = btrfs_stack_device_id(&disk_super->dev_item);
Chris Masonf2984462008-04-10 16:19:33 -04001054 transid = btrfs_super_generation(disk_super);
Josef Bacik02db0842012-06-21 16:03:58 -04001055 total_devices = btrfs_super_num_devices(disk_super);
David Sterba6f60cbd2013-02-15 11:31:02 -07001056
Chris Mason8a4b83c2008-03-24 15:02:07 -04001057 ret = device_list_add(path, disk_super, devid, fs_devices_ret);
David Sterba60999ca2014-03-26 18:26:36 +01001058 if (ret > 0) {
1059 if (disk_super->label[0]) {
1060 if (disk_super->label[BTRFS_LABEL_SIZE - 1])
1061 disk_super->label[BTRFS_LABEL_SIZE - 1] = '\0';
1062 printk(KERN_INFO "BTRFS: device label %s ", disk_super->label);
1063 } else {
1064 printk(KERN_INFO "BTRFS: device fsid %pU ", disk_super->fsid);
1065 }
1066
1067 printk(KERN_CONT "devid %llu transid %llu %s\n", devid, transid, path);
1068 ret = 0;
1069 }
Josef Bacik02db0842012-06-21 16:03:58 -04001070 if (!ret && fs_devices_ret)
1071 (*fs_devices_ret)->total_devices = total_devices;
David Sterba6f60cbd2013-02-15 11:31:02 -07001072
1073error_unmap:
1074 kunmap(page);
1075 page_cache_release(page);
1076
1077error_bdev_put:
Tejun Heod4d77622010-11-13 11:55:18 +01001078 blkdev_put(bdev, flags);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001079error:
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001080 mutex_unlock(&uuid_mutex);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001081 return ret;
1082}
Chris Mason0b86a832008-03-24 15:01:56 -04001083
Miao Xie6d07bce2011-01-05 10:07:31 +00001084/* helper to account the used device space in the range */
1085int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start,
1086 u64 end, u64 *length)
Chris Mason0b86a832008-03-24 15:01:56 -04001087{
1088 struct btrfs_key key;
1089 struct btrfs_root *root = device->dev_root;
Miao Xie6d07bce2011-01-05 10:07:31 +00001090 struct btrfs_dev_extent *dev_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05001091 struct btrfs_path *path;
Miao Xie6d07bce2011-01-05 10:07:31 +00001092 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001093 int ret;
Miao Xie6d07bce2011-01-05 10:07:31 +00001094 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001095 struct extent_buffer *l;
1096
Miao Xie6d07bce2011-01-05 10:07:31 +00001097 *length = 0;
1098
Stefan Behrens63a212a2012-11-05 18:29:28 +01001099 if (start >= device->total_bytes || device->is_tgtdev_for_dev_replace)
Miao Xie6d07bce2011-01-05 10:07:31 +00001100 return 0;
1101
Yan Zheng2b820322008-11-17 21:11:30 -05001102 path = btrfs_alloc_path();
1103 if (!path)
1104 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -04001105 path->reada = 2;
Chris Mason8f18cf12008-04-25 16:53:30 -04001106
Chris Mason0b86a832008-03-24 15:01:56 -04001107 key.objectid = device->devid;
Miao Xie6d07bce2011-01-05 10:07:31 +00001108 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001109 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie6d07bce2011-01-05 10:07:31 +00001110
1111 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001112 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001113 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -04001114 if (ret > 0) {
1115 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1116 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001117 goto out;
Yan Zheng1fcbac52009-07-24 11:06:53 -04001118 }
Miao Xie6d07bce2011-01-05 10:07:31 +00001119
Chris Mason0b86a832008-03-24 15:01:56 -04001120 while (1) {
1121 l = path->nodes[0];
1122 slot = path->slots[0];
1123 if (slot >= btrfs_header_nritems(l)) {
1124 ret = btrfs_next_leaf(root, path);
1125 if (ret == 0)
1126 continue;
1127 if (ret < 0)
Miao Xie6d07bce2011-01-05 10:07:31 +00001128 goto out;
1129
1130 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001131 }
1132 btrfs_item_key_to_cpu(l, &key, slot);
1133
1134 if (key.objectid < device->devid)
1135 goto next;
1136
1137 if (key.objectid > device->devid)
Miao Xie6d07bce2011-01-05 10:07:31 +00001138 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001139
David Sterba962a2982014-06-04 18:41:45 +02001140 if (key.type != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -04001141 goto next;
Chris Mason0b86a832008-03-24 15:01:56 -04001142
Chris Mason0b86a832008-03-24 15:01:56 -04001143 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie6d07bce2011-01-05 10:07:31 +00001144 extent_end = key.offset + btrfs_dev_extent_length(l,
1145 dev_extent);
1146 if (key.offset <= start && extent_end > end) {
1147 *length = end - start + 1;
1148 break;
1149 } else if (key.offset <= start && extent_end > start)
1150 *length += extent_end - start;
1151 else if (key.offset > start && extent_end <= end)
1152 *length += extent_end - key.offset;
1153 else if (key.offset > start && key.offset <= end) {
1154 *length += end - key.offset + 1;
1155 break;
1156 } else if (key.offset > end)
1157 break;
1158
1159next:
1160 path->slots[0]++;
1161 }
1162 ret = 0;
1163out:
1164 btrfs_free_path(path);
1165 return ret;
1166}
1167
Jeff Mahoney499f3772015-06-15 09:41:17 -04001168static int contains_pending_extent(struct btrfs_transaction *transaction,
Josef Bacik6df9a952013-06-27 13:22:46 -04001169 struct btrfs_device *device,
1170 u64 *start, u64 len)
1171{
Jeff Mahoney499f3772015-06-15 09:41:17 -04001172 struct btrfs_fs_info *fs_info = device->dev_root->fs_info;
Josef Bacik6df9a952013-06-27 13:22:46 -04001173 struct extent_map *em;
Jeff Mahoney499f3772015-06-15 09:41:17 -04001174 struct list_head *search_list = &fs_info->pinned_chunks;
Josef Bacik6df9a952013-06-27 13:22:46 -04001175 int ret = 0;
Forrest Liu1b984502015-02-09 17:30:47 +08001176 u64 physical_start = *start;
Josef Bacik6df9a952013-06-27 13:22:46 -04001177
Jeff Mahoney499f3772015-06-15 09:41:17 -04001178 if (transaction)
1179 search_list = &transaction->pending_chunks;
Filipe Manana04216822014-11-27 21:14:15 +00001180again:
1181 list_for_each_entry(em, search_list, list) {
Josef Bacik6df9a952013-06-27 13:22:46 -04001182 struct map_lookup *map;
1183 int i;
1184
1185 map = (struct map_lookup *)em->bdev;
1186 for (i = 0; i < map->num_stripes; i++) {
Filipe Mananac152b632015-05-14 10:46:03 +01001187 u64 end;
1188
Josef Bacik6df9a952013-06-27 13:22:46 -04001189 if (map->stripes[i].dev != device)
1190 continue;
Forrest Liu1b984502015-02-09 17:30:47 +08001191 if (map->stripes[i].physical >= physical_start + len ||
Josef Bacik6df9a952013-06-27 13:22:46 -04001192 map->stripes[i].physical + em->orig_block_len <=
Forrest Liu1b984502015-02-09 17:30:47 +08001193 physical_start)
Josef Bacik6df9a952013-06-27 13:22:46 -04001194 continue;
Filipe Mananac152b632015-05-14 10:46:03 +01001195 /*
1196 * Make sure that while processing the pinned list we do
1197 * not override our *start with a lower value, because
1198 * we can have pinned chunks that fall within this
1199 * device hole and that have lower physical addresses
1200 * than the pending chunks we processed before. If we
1201 * do not take this special care we can end up getting
1202 * 2 pending chunks that start at the same physical
1203 * device offsets because the end offset of a pinned
1204 * chunk can be equal to the start offset of some
1205 * pending chunk.
1206 */
1207 end = map->stripes[i].physical + em->orig_block_len;
1208 if (end > *start) {
1209 *start = end;
1210 ret = 1;
1211 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001212 }
1213 }
Jeff Mahoney499f3772015-06-15 09:41:17 -04001214 if (search_list != &fs_info->pinned_chunks) {
1215 search_list = &fs_info->pinned_chunks;
Filipe Manana04216822014-11-27 21:14:15 +00001216 goto again;
1217 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001218
1219 return ret;
1220}
1221
1222
Chris Mason0b86a832008-03-24 15:01:56 -04001223/*
Jeff Mahoney499f3772015-06-15 09:41:17 -04001224 * find_free_dev_extent_start - find free space in the specified device
1225 * @device: the device which we search the free space in
1226 * @num_bytes: the size of the free space that we need
1227 * @search_start: the position from which to begin the search
1228 * @start: store the start of the free space.
1229 * @len: the size of the free space. that we find, or the size
1230 * of the max free space if we don't find suitable free space
Miao Xie7bfc8372011-01-05 10:07:26 +00001231 *
Chris Mason0b86a832008-03-24 15:01:56 -04001232 * this uses a pretty simple search, the expectation is that it is
1233 * called very infrequently and that a given device has a small number
1234 * of extents
Miao Xie7bfc8372011-01-05 10:07:26 +00001235 *
1236 * @start is used to store the start of the free space if we find. But if we
1237 * don't find suitable free space, it will be used to store the start position
1238 * of the max free space.
1239 *
1240 * @len is used to store the size of the free space that we find.
1241 * But if we don't find suitable free space, it is used to store the size of
1242 * the max free space.
Chris Mason0b86a832008-03-24 15:01:56 -04001243 */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001244int find_free_dev_extent_start(struct btrfs_transaction *transaction,
1245 struct btrfs_device *device, u64 num_bytes,
1246 u64 search_start, u64 *start, u64 *len)
Chris Mason0b86a832008-03-24 15:01:56 -04001247{
1248 struct btrfs_key key;
1249 struct btrfs_root *root = device->dev_root;
Miao Xie7bfc8372011-01-05 10:07:26 +00001250 struct btrfs_dev_extent *dev_extent;
Chris Mason0b86a832008-03-24 15:01:56 -04001251 struct btrfs_path *path;
Miao Xie7bfc8372011-01-05 10:07:26 +00001252 u64 hole_size;
1253 u64 max_hole_start;
1254 u64 max_hole_size;
1255 u64 extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001256 u64 search_end = device->total_bytes;
1257 int ret;
Miao Xie7bfc8372011-01-05 10:07:26 +00001258 int slot;
Chris Mason0b86a832008-03-24 15:01:56 -04001259 struct extent_buffer *l;
1260
Josef Bacik6df9a952013-06-27 13:22:46 -04001261 path = btrfs_alloc_path();
1262 if (!path)
1263 return -ENOMEM;
Zhao Leif2ab7612015-02-16 18:52:17 +08001264
Miao Xie7bfc8372011-01-05 10:07:26 +00001265 max_hole_start = search_start;
1266 max_hole_size = 0;
1267
Zhao Leif2ab7612015-02-16 18:52:17 +08001268again:
Stefan Behrens63a212a2012-11-05 18:29:28 +01001269 if (search_start >= search_end || device->is_tgtdev_for_dev_replace) {
Miao Xie7bfc8372011-01-05 10:07:26 +00001270 ret = -ENOSPC;
Josef Bacik6df9a952013-06-27 13:22:46 -04001271 goto out;
Miao Xie7bfc8372011-01-05 10:07:26 +00001272 }
1273
Miao Xie7bfc8372011-01-05 10:07:26 +00001274 path->reada = 2;
Josef Bacik6df9a952013-06-27 13:22:46 -04001275 path->search_commit_root = 1;
1276 path->skip_locking = 1;
Miao Xie7bfc8372011-01-05 10:07:26 +00001277
Chris Mason0b86a832008-03-24 15:01:56 -04001278 key.objectid = device->devid;
1279 key.offset = search_start;
1280 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie7bfc8372011-01-05 10:07:26 +00001281
Li Zefan125ccb02011-12-08 15:07:24 +08001282 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001283 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001284 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001285 if (ret > 0) {
1286 ret = btrfs_previous_item(root, path, key.objectid, key.type);
1287 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001288 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001289 }
Miao Xie7bfc8372011-01-05 10:07:26 +00001290
Chris Mason0b86a832008-03-24 15:01:56 -04001291 while (1) {
1292 l = path->nodes[0];
1293 slot = path->slots[0];
1294 if (slot >= btrfs_header_nritems(l)) {
1295 ret = btrfs_next_leaf(root, path);
1296 if (ret == 0)
1297 continue;
1298 if (ret < 0)
Miao Xie7bfc8372011-01-05 10:07:26 +00001299 goto out;
1300
1301 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001302 }
1303 btrfs_item_key_to_cpu(l, &key, slot);
1304
1305 if (key.objectid < device->devid)
1306 goto next;
1307
1308 if (key.objectid > device->devid)
Miao Xie7bfc8372011-01-05 10:07:26 +00001309 break;
Chris Mason0b86a832008-03-24 15:01:56 -04001310
David Sterba962a2982014-06-04 18:41:45 +02001311 if (key.type != BTRFS_DEV_EXTENT_KEY)
Chris Mason0b86a832008-03-24 15:01:56 -04001312 goto next;
1313
Miao Xie7bfc8372011-01-05 10:07:26 +00001314 if (key.offset > search_start) {
1315 hole_size = key.offset - search_start;
1316
Josef Bacik6df9a952013-06-27 13:22:46 -04001317 /*
1318 * Have to check before we set max_hole_start, otherwise
1319 * we could end up sending back this offset anyway.
1320 */
Jeff Mahoney499f3772015-06-15 09:41:17 -04001321 if (contains_pending_extent(transaction, device,
Josef Bacik6df9a952013-06-27 13:22:46 -04001322 &search_start,
Forrest Liu1b984502015-02-09 17:30:47 +08001323 hole_size)) {
1324 if (key.offset >= search_start) {
1325 hole_size = key.offset - search_start;
1326 } else {
1327 WARN_ON_ONCE(1);
1328 hole_size = 0;
1329 }
1330 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001331
Miao Xie7bfc8372011-01-05 10:07:26 +00001332 if (hole_size > max_hole_size) {
1333 max_hole_start = search_start;
1334 max_hole_size = hole_size;
1335 }
1336
1337 /*
1338 * If this free space is greater than which we need,
1339 * it must be the max free space that we have found
1340 * until now, so max_hole_start must point to the start
1341 * of this free space and the length of this free space
1342 * is stored in max_hole_size. Thus, we return
1343 * max_hole_start and max_hole_size and go back to the
1344 * caller.
1345 */
1346 if (hole_size >= num_bytes) {
1347 ret = 0;
1348 goto out;
1349 }
1350 }
1351
Chris Mason0b86a832008-03-24 15:01:56 -04001352 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
Miao Xie7bfc8372011-01-05 10:07:26 +00001353 extent_end = key.offset + btrfs_dev_extent_length(l,
1354 dev_extent);
1355 if (extent_end > search_start)
1356 search_start = extent_end;
Chris Mason0b86a832008-03-24 15:01:56 -04001357next:
1358 path->slots[0]++;
1359 cond_resched();
1360 }
Chris Mason0b86a832008-03-24 15:01:56 -04001361
liubo38c01b92011-08-02 02:39:03 +00001362 /*
1363 * At this point, search_start should be the end of
1364 * allocated dev extents, and when shrinking the device,
1365 * search_end may be smaller than search_start.
1366 */
Zhao Leif2ab7612015-02-16 18:52:17 +08001367 if (search_end > search_start) {
liubo38c01b92011-08-02 02:39:03 +00001368 hole_size = search_end - search_start;
1369
Jeff Mahoney499f3772015-06-15 09:41:17 -04001370 if (contains_pending_extent(transaction, device, &search_start,
Zhao Leif2ab7612015-02-16 18:52:17 +08001371 hole_size)) {
1372 btrfs_release_path(path);
1373 goto again;
1374 }
Chris Mason0b86a832008-03-24 15:01:56 -04001375
Zhao Leif2ab7612015-02-16 18:52:17 +08001376 if (hole_size > max_hole_size) {
1377 max_hole_start = search_start;
1378 max_hole_size = hole_size;
1379 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001380 }
1381
Miao Xie7bfc8372011-01-05 10:07:26 +00001382 /* See above. */
Zhao Leif2ab7612015-02-16 18:52:17 +08001383 if (max_hole_size < num_bytes)
Miao Xie7bfc8372011-01-05 10:07:26 +00001384 ret = -ENOSPC;
1385 else
1386 ret = 0;
1387
1388out:
Yan Zheng2b820322008-11-17 21:11:30 -05001389 btrfs_free_path(path);
Miao Xie7bfc8372011-01-05 10:07:26 +00001390 *start = max_hole_start;
Miao Xieb2117a32011-01-05 10:07:28 +00001391 if (len)
Miao Xie7bfc8372011-01-05 10:07:26 +00001392 *len = max_hole_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001393 return ret;
1394}
1395
Jeff Mahoney499f3772015-06-15 09:41:17 -04001396int find_free_dev_extent(struct btrfs_trans_handle *trans,
1397 struct btrfs_device *device, u64 num_bytes,
1398 u64 *start, u64 *len)
1399{
1400 struct btrfs_root *root = device->dev_root;
1401 u64 search_start;
1402
1403 /* FIXME use last free of some kind */
1404
1405 /*
1406 * we don't want to overwrite the superblock on the drive,
1407 * so we make sure to start at an offset of at least 1MB
1408 */
1409 search_start = max(root->fs_info->alloc_start, 1024ull * 1024);
1410 return find_free_dev_extent_start(trans->transaction, device,
1411 num_bytes, search_start, start, len);
1412}
1413
Christoph Hellwigb2950862008-12-02 09:54:17 -05001414static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04001415 struct btrfs_device *device,
Miao Xie2196d6e2014-09-03 21:35:41 +08001416 u64 start, u64 *dev_extent_len)
Chris Mason8f18cf12008-04-25 16:53:30 -04001417{
1418 int ret;
1419 struct btrfs_path *path;
1420 struct btrfs_root *root = device->dev_root;
1421 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001422 struct btrfs_key found_key;
1423 struct extent_buffer *leaf = NULL;
1424 struct btrfs_dev_extent *extent = NULL;
Chris Mason8f18cf12008-04-25 16:53:30 -04001425
1426 path = btrfs_alloc_path();
1427 if (!path)
1428 return -ENOMEM;
1429
1430 key.objectid = device->devid;
1431 key.offset = start;
1432 key.type = BTRFS_DEV_EXTENT_KEY;
Miao Xie924cd8f2011-11-10 20:45:04 -05001433again:
Chris Mason8f18cf12008-04-25 16:53:30 -04001434 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Chris Masona061fc82008-05-07 11:43:44 -04001435 if (ret > 0) {
1436 ret = btrfs_previous_item(root, path, key.objectid,
1437 BTRFS_DEV_EXTENT_KEY);
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001438 if (ret)
1439 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001440 leaf = path->nodes[0];
1441 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1442 extent = btrfs_item_ptr(leaf, path->slots[0],
1443 struct btrfs_dev_extent);
1444 BUG_ON(found_key.offset > start || found_key.offset +
1445 btrfs_dev_extent_length(leaf, extent) < start);
Miao Xie924cd8f2011-11-10 20:45:04 -05001446 key = found_key;
1447 btrfs_release_path(path);
1448 goto again;
Chris Masona061fc82008-05-07 11:43:44 -04001449 } else if (ret == 0) {
1450 leaf = path->nodes[0];
1451 extent = btrfs_item_ptr(leaf, path->slots[0],
1452 struct btrfs_dev_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001453 } else {
Anand Jaina4553fe2015-09-25 14:43:01 +08001454 btrfs_std_error(root->fs_info, ret, "Slot search failed");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001455 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001456 }
Chris Mason8f18cf12008-04-25 16:53:30 -04001457
Miao Xie2196d6e2014-09-03 21:35:41 +08001458 *dev_extent_len = btrfs_dev_extent_length(leaf, extent);
1459
Chris Mason8f18cf12008-04-25 16:53:30 -04001460 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001461 if (ret) {
Anand Jaina4553fe2015-09-25 14:43:01 +08001462 btrfs_std_error(root->fs_info, ret,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001463 "Failed to remove dev extent item");
Zhao Lei13212b52015-02-12 14:18:17 +08001464 } else {
Josef Bacik3204d332015-09-24 10:46:10 -04001465 set_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001466 }
Tsutomu Itohb0b802d2011-05-19 07:03:42 +00001467out:
Chris Mason8f18cf12008-04-25 16:53:30 -04001468 btrfs_free_path(path);
1469 return ret;
1470}
1471
Eric Sandeen48a3b632013-04-25 20:41:01 +00001472static int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans,
1473 struct btrfs_device *device,
1474 u64 chunk_tree, u64 chunk_objectid,
1475 u64 chunk_offset, u64 start, u64 num_bytes)
Chris Mason0b86a832008-03-24 15:01:56 -04001476{
1477 int ret;
1478 struct btrfs_path *path;
1479 struct btrfs_root *root = device->dev_root;
1480 struct btrfs_dev_extent *extent;
1481 struct extent_buffer *leaf;
1482 struct btrfs_key key;
1483
Chris Masondfe25022008-05-13 13:46:40 -04001484 WARN_ON(!device->in_fs_metadata);
Stefan Behrens63a212a2012-11-05 18:29:28 +01001485 WARN_ON(device->is_tgtdev_for_dev_replace);
Chris Mason0b86a832008-03-24 15:01:56 -04001486 path = btrfs_alloc_path();
1487 if (!path)
1488 return -ENOMEM;
1489
Chris Mason0b86a832008-03-24 15:01:56 -04001490 key.objectid = device->devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001491 key.offset = start;
Chris Mason0b86a832008-03-24 15:01:56 -04001492 key.type = BTRFS_DEV_EXTENT_KEY;
1493 ret = btrfs_insert_empty_item(trans, root, path, &key,
1494 sizeof(*extent));
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001495 if (ret)
1496 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04001497
1498 leaf = path->nodes[0];
1499 extent = btrfs_item_ptr(leaf, path->slots[0],
1500 struct btrfs_dev_extent);
Chris Masone17cade2008-04-15 15:41:47 -04001501 btrfs_set_dev_extent_chunk_tree(leaf, extent, chunk_tree);
1502 btrfs_set_dev_extent_chunk_objectid(leaf, extent, chunk_objectid);
1503 btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset);
1504
1505 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
Geert Uytterhoeven231e88f2013-08-20 13:20:13 +02001506 btrfs_dev_extent_chunk_tree_uuid(extent), BTRFS_UUID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04001507
Chris Mason0b86a832008-03-24 15:01:56 -04001508 btrfs_set_dev_extent_length(leaf, extent, num_bytes);
1509 btrfs_mark_buffer_dirty(leaf);
Mark Fasheh2cdcecb2011-09-08 17:14:32 -07001510out:
Chris Mason0b86a832008-03-24 15:01:56 -04001511 btrfs_free_path(path);
1512 return ret;
1513}
1514
Josef Bacik6df9a952013-06-27 13:22:46 -04001515static u64 find_next_chunk(struct btrfs_fs_info *fs_info)
Chris Mason0b86a832008-03-24 15:01:56 -04001516{
Josef Bacik6df9a952013-06-27 13:22:46 -04001517 struct extent_map_tree *em_tree;
1518 struct extent_map *em;
1519 struct rb_node *n;
1520 u64 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001521
Josef Bacik6df9a952013-06-27 13:22:46 -04001522 em_tree = &fs_info->mapping_tree.map_tree;
1523 read_lock(&em_tree->lock);
1524 n = rb_last(&em_tree->map);
1525 if (n) {
1526 em = rb_entry(n, struct extent_map, rb_node);
1527 ret = em->start + em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04001528 }
Josef Bacik6df9a952013-06-27 13:22:46 -04001529 read_unlock(&em_tree->lock);
1530
Chris Mason0b86a832008-03-24 15:01:56 -04001531 return ret;
1532}
1533
Ilya Dryomov53f10652013-08-12 14:33:01 +03001534static noinline int find_next_devid(struct btrfs_fs_info *fs_info,
1535 u64 *devid_ret)
Chris Mason0b86a832008-03-24 15:01:56 -04001536{
1537 int ret;
1538 struct btrfs_key key;
1539 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05001540 struct btrfs_path *path;
1541
Yan Zheng2b820322008-11-17 21:11:30 -05001542 path = btrfs_alloc_path();
1543 if (!path)
1544 return -ENOMEM;
Chris Mason0b86a832008-03-24 15:01:56 -04001545
1546 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1547 key.type = BTRFS_DEV_ITEM_KEY;
1548 key.offset = (u64)-1;
1549
Ilya Dryomov53f10652013-08-12 14:33:01 +03001550 ret = btrfs_search_slot(NULL, fs_info->chunk_root, &key, path, 0, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001551 if (ret < 0)
1552 goto error;
1553
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001554 BUG_ON(ret == 0); /* Corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04001555
Ilya Dryomov53f10652013-08-12 14:33:01 +03001556 ret = btrfs_previous_item(fs_info->chunk_root, path,
1557 BTRFS_DEV_ITEMS_OBJECTID,
Chris Mason0b86a832008-03-24 15:01:56 -04001558 BTRFS_DEV_ITEM_KEY);
1559 if (ret) {
Ilya Dryomov53f10652013-08-12 14:33:01 +03001560 *devid_ret = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001561 } else {
1562 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1563 path->slots[0]);
Ilya Dryomov53f10652013-08-12 14:33:01 +03001564 *devid_ret = found_key.offset + 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001565 }
1566 ret = 0;
1567error:
Yan Zheng2b820322008-11-17 21:11:30 -05001568 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04001569 return ret;
1570}
1571
1572/*
1573 * the device information is stored in the chunk root
1574 * the btrfs_device struct should be fully filled in
1575 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001576static int btrfs_add_device(struct btrfs_trans_handle *trans,
1577 struct btrfs_root *root,
1578 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04001579{
1580 int ret;
1581 struct btrfs_path *path;
1582 struct btrfs_dev_item *dev_item;
1583 struct extent_buffer *leaf;
1584 struct btrfs_key key;
1585 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04001586
1587 root = root->fs_info->chunk_root;
1588
1589 path = btrfs_alloc_path();
1590 if (!path)
1591 return -ENOMEM;
1592
Chris Mason0b86a832008-03-24 15:01:56 -04001593 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1594 key.type = BTRFS_DEV_ITEM_KEY;
Yan Zheng2b820322008-11-17 21:11:30 -05001595 key.offset = device->devid;
Chris Mason0b86a832008-03-24 15:01:56 -04001596
1597 ret = btrfs_insert_empty_item(trans, root, path, &key,
Chris Mason0d81ba52008-03-24 15:02:07 -04001598 sizeof(*dev_item));
Chris Mason0b86a832008-03-24 15:01:56 -04001599 if (ret)
1600 goto out;
1601
1602 leaf = path->nodes[0];
1603 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
1604
1605 btrfs_set_device_id(leaf, dev_item, device->devid);
Yan Zheng2b820322008-11-17 21:11:30 -05001606 btrfs_set_device_generation(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001607 btrfs_set_device_type(leaf, dev_item, device->type);
1608 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
1609 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
1610 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08001611 btrfs_set_device_total_bytes(leaf, dev_item,
1612 btrfs_device_get_disk_total_bytes(device));
1613 btrfs_set_device_bytes_used(leaf, dev_item,
1614 btrfs_device_get_bytes_used(device));
Chris Masone17cade2008-04-15 15:41:47 -04001615 btrfs_set_device_group(leaf, dev_item, 0);
1616 btrfs_set_device_seek_speed(leaf, dev_item, 0);
1617 btrfs_set_device_bandwidth(leaf, dev_item, 0);
Chris Masonc3027eb2008-12-08 16:40:21 -05001618 btrfs_set_device_start_offset(leaf, dev_item, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04001619
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02001620 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04001621 write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02001622 ptr = btrfs_device_fsid(dev_item);
Yan Zheng2b820322008-11-17 21:11:30 -05001623 write_extent_buffer(leaf, root->fs_info->fsid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04001624 btrfs_mark_buffer_dirty(leaf);
Chris Mason0b86a832008-03-24 15:01:56 -04001625
Yan Zheng2b820322008-11-17 21:11:30 -05001626 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04001627out:
1628 btrfs_free_path(path);
1629 return ret;
1630}
Chris Mason8f18cf12008-04-25 16:53:30 -04001631
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001632/*
1633 * Function to update ctime/mtime for a given device path.
1634 * Mainly used for ctime/mtime based probe like libblkid.
1635 */
1636static void update_dev_time(char *path_name)
1637{
1638 struct file *filp;
1639
1640 filp = filp_open(path_name, O_RDWR, 0);
Al Viro98af5922014-12-14 02:59:17 -05001641 if (IS_ERR(filp))
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001642 return;
1643 file_update_time(filp);
1644 filp_close(filp, NULL);
1645 return;
1646}
1647
Chris Masona061fc82008-05-07 11:43:44 -04001648static int btrfs_rm_dev_item(struct btrfs_root *root,
1649 struct btrfs_device *device)
1650{
1651 int ret;
1652 struct btrfs_path *path;
Chris Masona061fc82008-05-07 11:43:44 -04001653 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001654 struct btrfs_trans_handle *trans;
1655
1656 root = root->fs_info->chunk_root;
1657
1658 path = btrfs_alloc_path();
1659 if (!path)
1660 return -ENOMEM;
1661
Yan, Zhenga22285a2010-05-16 10:48:46 -04001662 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001663 if (IS_ERR(trans)) {
1664 btrfs_free_path(path);
1665 return PTR_ERR(trans);
1666 }
Chris Masona061fc82008-05-07 11:43:44 -04001667 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1668 key.type = BTRFS_DEV_ITEM_KEY;
1669 key.offset = device->devid;
1670
1671 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1672 if (ret < 0)
1673 goto out;
1674
1675 if (ret > 0) {
1676 ret = -ENOENT;
1677 goto out;
1678 }
1679
1680 ret = btrfs_del_item(trans, root, path);
1681 if (ret)
1682 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001683out:
1684 btrfs_free_path(path);
1685 btrfs_commit_transaction(trans, root);
1686 return ret;
1687}
1688
1689int btrfs_rm_device(struct btrfs_root *root, char *device_path)
1690{
1691 struct btrfs_device *device;
Yan Zheng2b820322008-11-17 21:11:30 -05001692 struct btrfs_device *next_device;
Chris Masona061fc82008-05-07 11:43:44 -04001693 struct block_device *bdev;
Chris Masondfe25022008-05-13 13:46:40 -04001694 struct buffer_head *bh = NULL;
Chris Masona061fc82008-05-07 11:43:44 -04001695 struct btrfs_super_block *disk_super;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001696 struct btrfs_fs_devices *cur_devices;
Chris Masona061fc82008-05-07 11:43:44 -04001697 u64 all_avail;
1698 u64 devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001699 u64 num_devices;
1700 u8 *dev_uuid;
Miao Xiede98ced2013-01-29 10:13:12 +00001701 unsigned seq;
Chris Masona061fc82008-05-07 11:43:44 -04001702 int ret = 0;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001703 bool clear_super = false;
Chris Masona061fc82008-05-07 11:43:44 -04001704
Chris Masona061fc82008-05-07 11:43:44 -04001705 mutex_lock(&uuid_mutex);
1706
Miao Xiede98ced2013-01-29 10:13:12 +00001707 do {
1708 seq = read_seqbegin(&root->fs_info->profiles_lock);
1709
1710 all_avail = root->fs_info->avail_data_alloc_bits |
1711 root->fs_info->avail_system_alloc_bits |
1712 root->fs_info->avail_metadata_alloc_bits;
1713 } while (read_seqretry(&root->fs_info->profiles_lock, seq));
Chris Masona061fc82008-05-07 11:43:44 -04001714
Stefan Behrens8dabb742012-11-06 13:15:27 +01001715 num_devices = root->fs_info->fs_devices->num_devices;
1716 btrfs_dev_replace_lock(&root->fs_info->dev_replace);
1717 if (btrfs_dev_replace_is_ongoing(&root->fs_info->dev_replace)) {
1718 WARN_ON(num_devices < 1);
1719 num_devices--;
1720 }
1721 btrfs_dev_replace_unlock(&root->fs_info->dev_replace);
1722
1723 if ((all_avail & BTRFS_BLOCK_GROUP_RAID10) && num_devices <= 4) {
Anand Jain183860f2013-05-17 10:52:45 +00001724 ret = BTRFS_ERROR_DEV_RAID10_MIN_NOT_MET;
Chris Masona061fc82008-05-07 11:43:44 -04001725 goto out;
1726 }
1727
Stefan Behrens8dabb742012-11-06 13:15:27 +01001728 if ((all_avail & BTRFS_BLOCK_GROUP_RAID1) && num_devices <= 2) {
Anand Jain183860f2013-05-17 10:52:45 +00001729 ret = BTRFS_ERROR_DEV_RAID1_MIN_NOT_MET;
Chris Masona061fc82008-05-07 11:43:44 -04001730 goto out;
1731 }
1732
David Woodhouse53b381b2013-01-29 18:40:14 -05001733 if ((all_avail & BTRFS_BLOCK_GROUP_RAID5) &&
1734 root->fs_info->fs_devices->rw_devices <= 2) {
Anand Jain183860f2013-05-17 10:52:45 +00001735 ret = BTRFS_ERROR_DEV_RAID5_MIN_NOT_MET;
David Woodhouse53b381b2013-01-29 18:40:14 -05001736 goto out;
1737 }
1738 if ((all_avail & BTRFS_BLOCK_GROUP_RAID6) &&
1739 root->fs_info->fs_devices->rw_devices <= 3) {
Anand Jain183860f2013-05-17 10:52:45 +00001740 ret = BTRFS_ERROR_DEV_RAID6_MIN_NOT_MET;
David Woodhouse53b381b2013-01-29 18:40:14 -05001741 goto out;
1742 }
1743
Chris Masondfe25022008-05-13 13:46:40 -04001744 if (strcmp(device_path, "missing") == 0) {
Chris Masondfe25022008-05-13 13:46:40 -04001745 struct list_head *devices;
1746 struct btrfs_device *tmp;
Chris Masona061fc82008-05-07 11:43:44 -04001747
Chris Masondfe25022008-05-13 13:46:40 -04001748 device = NULL;
1749 devices = &root->fs_info->fs_devices->devices;
Xiao Guangrong46224702011-04-20 10:08:47 +00001750 /*
1751 * It is safe to read the devices since the volume_mutex
1752 * is held.
1753 */
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001754 list_for_each_entry(tmp, devices, dev_list) {
Stefan Behrens63a212a2012-11-05 18:29:28 +01001755 if (tmp->in_fs_metadata &&
1756 !tmp->is_tgtdev_for_dev_replace &&
1757 !tmp->bdev) {
Chris Masondfe25022008-05-13 13:46:40 -04001758 device = tmp;
1759 break;
1760 }
1761 }
1762 bdev = NULL;
1763 bh = NULL;
1764 disk_super = NULL;
1765 if (!device) {
Anand Jain183860f2013-05-17 10:52:45 +00001766 ret = BTRFS_ERROR_DEV_MISSING_NOT_FOUND;
Chris Masondfe25022008-05-13 13:46:40 -04001767 goto out;
1768 }
Chris Masondfe25022008-05-13 13:46:40 -04001769 } else {
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001770 ret = btrfs_get_bdev_and_sb(device_path,
Lukas Czernercc975eb2012-12-07 10:09:19 +00001771 FMODE_WRITE | FMODE_EXCL,
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001772 root->fs_info->bdev_holder, 0,
1773 &bdev, &bh);
1774 if (ret)
Chris Masondfe25022008-05-13 13:46:40 -04001775 goto out;
Chris Masondfe25022008-05-13 13:46:40 -04001776 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +00001777 devid = btrfs_stack_device_id(&disk_super->dev_item);
Yan Zheng2b820322008-11-17 21:11:30 -05001778 dev_uuid = disk_super->dev_item.uuid;
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001779 device = btrfs_find_device(root->fs_info, devid, dev_uuid,
Yan Zheng2b820322008-11-17 21:11:30 -05001780 disk_super->fsid);
Chris Masondfe25022008-05-13 13:46:40 -04001781 if (!device) {
1782 ret = -ENOENT;
1783 goto error_brelse;
1784 }
Chris Masondfe25022008-05-13 13:46:40 -04001785 }
Yan Zheng2b820322008-11-17 21:11:30 -05001786
Stefan Behrens63a212a2012-11-05 18:29:28 +01001787 if (device->is_tgtdev_for_dev_replace) {
Anand Jain183860f2013-05-17 10:52:45 +00001788 ret = BTRFS_ERROR_DEV_TGT_REPLACE;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001789 goto error_brelse;
1790 }
1791
Yan Zheng2b820322008-11-17 21:11:30 -05001792 if (device->writeable && root->fs_info->fs_devices->rw_devices == 1) {
Anand Jain183860f2013-05-17 10:52:45 +00001793 ret = BTRFS_ERROR_DEV_ONLY_WRITABLE;
Yan Zheng2b820322008-11-17 21:11:30 -05001794 goto error_brelse;
1795 }
1796
1797 if (device->writeable) {
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001798 lock_chunks(root);
Yan Zheng2b820322008-11-17 21:11:30 -05001799 list_del_init(&device->dev_alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08001800 device->fs_devices->rw_devices--;
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001801 unlock_chunks(root);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001802 clear_super = true;
Yan Zheng2b820322008-11-17 21:11:30 -05001803 }
Chris Masona061fc82008-05-07 11:43:44 -04001804
Carey Underwoodd7901552013-03-04 16:37:06 -06001805 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001806 ret = btrfs_shrink_device(device, 0);
Carey Underwoodd7901552013-03-04 16:37:06 -06001807 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001808 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001809 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001810
Stefan Behrens63a212a2012-11-05 18:29:28 +01001811 /*
1812 * TODO: the superblock still includes this device in its num_devices
1813 * counter although write_all_supers() is not locked out. This
1814 * could give a filesystem state which requires a degraded mount.
1815 */
Chris Masona061fc82008-05-07 11:43:44 -04001816 ret = btrfs_rm_dev_item(root->fs_info->chunk_root, device);
1817 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001818 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001819
Yan Zheng2b820322008-11-17 21:11:30 -05001820 device->in_fs_metadata = 0;
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001821 btrfs_scrub_cancel_dev(root->fs_info, device);
Chris Masone5e9a522009-06-10 15:17:02 -04001822
1823 /*
1824 * the device list mutex makes sure that we don't change
1825 * the device list while someone else is writing out all
Filipe David Borba Mananad7306802013-08-09 15:41:36 +01001826 * the device supers. Whoever is writing all supers, should
1827 * lock the device list mutex before getting the number of
1828 * devices in the super block (super_copy). Conversely,
1829 * whoever updates the number of devices in the super block
1830 * (super_copy) should hold the device list mutex.
Chris Masone5e9a522009-06-10 15:17:02 -04001831 */
Xiao Guangrong1f781602011-04-20 10:09:16 +00001832
1833 cur_devices = device->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04001834 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001835 list_del_rcu(&device->dev_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001836
Yan Zhenge4404d62008-12-12 10:03:26 -05001837 device->fs_devices->num_devices--;
Josef Bacik02db0842012-06-21 16:03:58 -04001838 device->fs_devices->total_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -05001839
Chris Masoncd02dca2010-12-13 14:56:23 -05001840 if (device->missing)
Miao Xie3a7d55c2014-07-16 18:38:01 +08001841 device->fs_devices->missing_devices--;
Chris Masoncd02dca2010-12-13 14:56:23 -05001842
Yan Zheng2b820322008-11-17 21:11:30 -05001843 next_device = list_entry(root->fs_info->fs_devices->devices.next,
1844 struct btrfs_device, dev_list);
1845 if (device->bdev == root->fs_info->sb->s_bdev)
1846 root->fs_info->sb->s_bdev = next_device->bdev;
1847 if (device->bdev == root->fs_info->fs_devices->latest_bdev)
1848 root->fs_info->fs_devices->latest_bdev = next_device->bdev;
1849
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001850 if (device->bdev) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001851 device->fs_devices->open_devices--;
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001852 /* remove sysfs entry */
Anand Jain32576042015-08-14 18:32:49 +08001853 btrfs_sysfs_rm_device_link(root->fs_info->fs_devices, device);
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001854 }
Anand Jain99994cd2014-06-03 11:36:00 +08001855
Xiao Guangrong1f781602011-04-20 10:09:16 +00001856 call_rcu(&device->rcu, free_device);
Yan Zhenge4404d62008-12-12 10:03:26 -05001857
David Sterba6c417612011-04-13 15:41:04 +02001858 num_devices = btrfs_super_num_devices(root->fs_info->super_copy) - 1;
1859 btrfs_set_super_num_devices(root->fs_info->super_copy, num_devices);
Filipe David Borba Mananad7306802013-08-09 15:41:36 +01001860 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001861
Xiao Guangrong1f781602011-04-20 10:09:16 +00001862 if (cur_devices->open_devices == 0) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001863 struct btrfs_fs_devices *fs_devices;
1864 fs_devices = root->fs_info->fs_devices;
1865 while (fs_devices) {
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02001866 if (fs_devices->seed == cur_devices) {
1867 fs_devices->seed = cur_devices->seed;
Yan Zhenge4404d62008-12-12 10:03:26 -05001868 break;
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02001869 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001870 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05001871 }
Xiao Guangrong1f781602011-04-20 10:09:16 +00001872 cur_devices->seed = NULL;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001873 __btrfs_close_devices(cur_devices);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001874 free_fs_devices(cur_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001875 }
1876
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02001877 root->fs_info->num_tolerated_disk_barrier_failures =
1878 btrfs_calc_num_tolerated_disk_barrier_failures(root->fs_info);
1879
Yan Zheng2b820322008-11-17 21:11:30 -05001880 /*
1881 * at this point, the device is zero sized. We want to
1882 * remove it from the devices list and zero out the old super
1883 */
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001884 if (clear_super && disk_super) {
Anand Jain4d90d282014-04-06 12:59:07 +08001885 u64 bytenr;
1886 int i;
1887
Chris Masondfe25022008-05-13 13:46:40 -04001888 /* make sure this device isn't detected as part of
1889 * the FS anymore
1890 */
1891 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
1892 set_buffer_dirty(bh);
1893 sync_dirty_buffer(bh);
Anand Jain4d90d282014-04-06 12:59:07 +08001894
1895 /* clear the mirror copies of super block on the disk
1896 * being removed, 0th copy is been taken care above and
1897 * the below would take of the rest
1898 */
1899 for (i = 1; i < BTRFS_SUPER_MIRROR_MAX; i++) {
1900 bytenr = btrfs_sb_offset(i);
1901 if (bytenr + BTRFS_SUPER_INFO_SIZE >=
1902 i_size_read(bdev->bd_inode))
1903 break;
1904
1905 brelse(bh);
1906 bh = __bread(bdev, bytenr / 4096,
1907 BTRFS_SUPER_INFO_SIZE);
1908 if (!bh)
1909 continue;
1910
1911 disk_super = (struct btrfs_super_block *)bh->b_data;
1912
1913 if (btrfs_super_bytenr(disk_super) != bytenr ||
1914 btrfs_super_magic(disk_super) != BTRFS_MAGIC) {
1915 continue;
1916 }
1917 memset(&disk_super->magic, 0,
1918 sizeof(disk_super->magic));
1919 set_buffer_dirty(bh);
1920 sync_dirty_buffer(bh);
1921 }
Chris Masondfe25022008-05-13 13:46:40 -04001922 }
Chris Masona061fc82008-05-07 11:43:44 -04001923
Chris Masona061fc82008-05-07 11:43:44 -04001924 ret = 0;
Chris Masona061fc82008-05-07 11:43:44 -04001925
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001926 if (bdev) {
1927 /* Notify udev that device has changed */
Eric Sandeen3c911602013-01-31 00:55:02 +00001928 btrfs_kobject_uevent(bdev, KOBJ_CHANGE);
Lukas Czernerb8b8ff52012-12-06 19:25:48 +00001929
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001930 /* Update ctime/mtime for device path for libblkid */
1931 update_dev_time(device_path);
1932 }
1933
Chris Masona061fc82008-05-07 11:43:44 -04001934error_brelse:
1935 brelse(bh);
Chris Masondfe25022008-05-13 13:46:40 -04001936 if (bdev)
Tejun Heoe525fd82010-11-13 11:55:17 +01001937 blkdev_put(bdev, FMODE_READ | FMODE_EXCL);
Chris Masona061fc82008-05-07 11:43:44 -04001938out:
1939 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001940 return ret;
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001941error_undo:
1942 if (device->writeable) {
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001943 lock_chunks(root);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001944 list_add(&device->dev_alloc_list,
1945 &root->fs_info->fs_devices->alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08001946 device->fs_devices->rw_devices++;
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001947 unlock_chunks(root);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001948 }
1949 goto error_brelse;
Chris Masona061fc82008-05-07 11:43:44 -04001950}
1951
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08001952void btrfs_rm_dev_replace_remove_srcdev(struct btrfs_fs_info *fs_info,
1953 struct btrfs_device *srcdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01001954{
Anand Jaind51908c2014-08-13 14:24:19 +08001955 struct btrfs_fs_devices *fs_devices;
1956
Stefan Behrense93c89c2012-11-05 17:33:06 +01001957 WARN_ON(!mutex_is_locked(&fs_info->fs_devices->device_list_mutex));
Ilya Dryomov13572722013-10-02 20:41:01 +03001958
Anand Jain25e8e912014-08-20 10:56:56 +08001959 /*
1960 * in case of fs with no seed, srcdev->fs_devices will point
1961 * to fs_devices of fs_info. However when the dev being replaced is
1962 * a seed dev it will point to the seed's local fs_devices. In short
1963 * srcdev will have its correct fs_devices in both the cases.
1964 */
1965 fs_devices = srcdev->fs_devices;
Anand Jaind51908c2014-08-13 14:24:19 +08001966
Stefan Behrense93c89c2012-11-05 17:33:06 +01001967 list_del_rcu(&srcdev->dev_list);
1968 list_del_rcu(&srcdev->dev_alloc_list);
Anand Jaind51908c2014-08-13 14:24:19 +08001969 fs_devices->num_devices--;
Miao Xie82372bc2014-09-03 21:35:44 +08001970 if (srcdev->missing)
Anand Jaind51908c2014-08-13 14:24:19 +08001971 fs_devices->missing_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01001972
Miao Xie82372bc2014-09-03 21:35:44 +08001973 if (srcdev->writeable) {
1974 fs_devices->rw_devices--;
1975 /* zero out the old super if it is writable */
Anand Jain12b1c262015-08-14 18:32:59 +08001976 btrfs_scratch_superblocks(srcdev->bdev,
1977 rcu_str_deref(srcdev->name));
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) {
Anand Jain12b1c262015-08-14 18:32:59 +08002027 btrfs_scratch_superblocks(tgtdev->bdev,
2028 rcu_str_deref(tgtdev->name));
Stefan Behrense93c89c2012-11-05 17:33:06 +01002029 fs_info->fs_devices->open_devices--;
2030 }
2031 fs_info->fs_devices->num_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002032
2033 next_device = list_entry(fs_info->fs_devices->devices.next,
2034 struct btrfs_device, dev_list);
2035 if (tgtdev->bdev == fs_info->sb->s_bdev)
2036 fs_info->sb->s_bdev = next_device->bdev;
2037 if (tgtdev->bdev == fs_info->fs_devices->latest_bdev)
2038 fs_info->fs_devices->latest_bdev = next_device->bdev;
2039 list_del_rcu(&tgtdev->dev_list);
2040
2041 call_rcu(&tgtdev->rcu, free_device);
2042
2043 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Miao Xie67a2c452014-09-03 21:35:43 +08002044 mutex_unlock(&uuid_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002045}
2046
Eric Sandeen48a3b632013-04-25 20:41:01 +00002047static int btrfs_find_device_by_path(struct btrfs_root *root, char *device_path,
2048 struct btrfs_device **device)
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002049{
2050 int ret = 0;
2051 struct btrfs_super_block *disk_super;
2052 u64 devid;
2053 u8 *dev_uuid;
2054 struct block_device *bdev;
2055 struct buffer_head *bh;
2056
2057 *device = NULL;
2058 ret = btrfs_get_bdev_and_sb(device_path, FMODE_READ,
2059 root->fs_info->bdev_holder, 0, &bdev, &bh);
2060 if (ret)
2061 return ret;
2062 disk_super = (struct btrfs_super_block *)bh->b_data;
2063 devid = btrfs_stack_device_id(&disk_super->dev_item);
2064 dev_uuid = disk_super->dev_item.uuid;
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002065 *device = btrfs_find_device(root->fs_info, devid, dev_uuid,
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002066 disk_super->fsid);
2067 brelse(bh);
2068 if (!*device)
2069 ret = -ENOENT;
2070 blkdev_put(bdev, FMODE_READ);
2071 return ret;
2072}
2073
2074int btrfs_find_device_missing_or_by_path(struct btrfs_root *root,
2075 char *device_path,
2076 struct btrfs_device **device)
2077{
2078 *device = NULL;
2079 if (strcmp(device_path, "missing") == 0) {
2080 struct list_head *devices;
2081 struct btrfs_device *tmp;
2082
2083 devices = &root->fs_info->fs_devices->devices;
2084 /*
2085 * It is safe to read the devices since the volume_mutex
2086 * is held by the caller.
2087 */
2088 list_for_each_entry(tmp, devices, dev_list) {
2089 if (tmp->in_fs_metadata && !tmp->bdev) {
2090 *device = tmp;
2091 break;
2092 }
2093 }
2094
Anand Jaind74a6252015-08-14 18:32:56 +08002095 if (!*device)
2096 return BTRFS_ERROR_DEV_MISSING_NOT_FOUND;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002097
2098 return 0;
2099 } else {
2100 return btrfs_find_device_by_path(root, device_path, device);
2101 }
2102}
2103
Yan Zheng2b820322008-11-17 21:11:30 -05002104/*
2105 * does all the dirty work required for changing file system's UUID.
2106 */
Li Zefan125ccb02011-12-08 15:07:24 +08002107static int btrfs_prepare_sprout(struct btrfs_root *root)
Yan Zheng2b820322008-11-17 21:11:30 -05002108{
2109 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2110 struct btrfs_fs_devices *old_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05002111 struct btrfs_fs_devices *seed_devices;
David Sterba6c417612011-04-13 15:41:04 +02002112 struct btrfs_super_block *disk_super = root->fs_info->super_copy;
Yan Zheng2b820322008-11-17 21:11:30 -05002113 struct btrfs_device *device;
2114 u64 super_flags;
2115
2116 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zhenge4404d62008-12-12 10:03:26 -05002117 if (!fs_devices->seeding)
Yan Zheng2b820322008-11-17 21:11:30 -05002118 return -EINVAL;
2119
Ilya Dryomov2208a372013-08-12 14:33:03 +03002120 seed_devices = __alloc_fs_devices();
2121 if (IS_ERR(seed_devices))
2122 return PTR_ERR(seed_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002123
Yan Zhenge4404d62008-12-12 10:03:26 -05002124 old_devices = clone_fs_devices(fs_devices);
2125 if (IS_ERR(old_devices)) {
2126 kfree(seed_devices);
2127 return PTR_ERR(old_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002128 }
Yan Zhenge4404d62008-12-12 10:03:26 -05002129
Yan Zheng2b820322008-11-17 21:11:30 -05002130 list_add(&old_devices->list, &fs_uuids);
2131
Yan Zhenge4404d62008-12-12 10:03:26 -05002132 memcpy(seed_devices, fs_devices, sizeof(*seed_devices));
2133 seed_devices->opened = 1;
2134 INIT_LIST_HEAD(&seed_devices->devices);
2135 INIT_LIST_HEAD(&seed_devices->alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -04002136 mutex_init(&seed_devices->device_list_mutex);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00002137
2138 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002139 list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices,
2140 synchronize_rcu);
Miao Xie2196d6e2014-09-03 21:35:41 +08002141 list_for_each_entry(device, &seed_devices->devices, dev_list)
Yan Zhenge4404d62008-12-12 10:03:26 -05002142 device->fs_devices = seed_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002143
2144 lock_chunks(root);
2145 list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list);
2146 unlock_chunks(root);
Yan Zhenge4404d62008-12-12 10:03:26 -05002147
Yan Zheng2b820322008-11-17 21:11:30 -05002148 fs_devices->seeding = 0;
2149 fs_devices->num_devices = 0;
2150 fs_devices->open_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002151 fs_devices->missing_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002152 fs_devices->rotating = 0;
Yan Zhenge4404d62008-12-12 10:03:26 -05002153 fs_devices->seed = seed_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002154
2155 generate_random_uuid(fs_devices->fsid);
2156 memcpy(root->fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
2157 memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01002158 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
2159
Yan Zheng2b820322008-11-17 21:11:30 -05002160 super_flags = btrfs_super_flags(disk_super) &
2161 ~BTRFS_SUPER_FLAG_SEEDING;
2162 btrfs_set_super_flags(disk_super, super_flags);
2163
2164 return 0;
2165}
2166
2167/*
2168 * strore the expected generation for seed devices in device items.
2169 */
2170static int btrfs_finish_sprout(struct btrfs_trans_handle *trans,
2171 struct btrfs_root *root)
2172{
2173 struct btrfs_path *path;
2174 struct extent_buffer *leaf;
2175 struct btrfs_dev_item *dev_item;
2176 struct btrfs_device *device;
2177 struct btrfs_key key;
2178 u8 fs_uuid[BTRFS_UUID_SIZE];
2179 u8 dev_uuid[BTRFS_UUID_SIZE];
2180 u64 devid;
2181 int ret;
2182
2183 path = btrfs_alloc_path();
2184 if (!path)
2185 return -ENOMEM;
2186
2187 root = root->fs_info->chunk_root;
2188 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2189 key.offset = 0;
2190 key.type = BTRFS_DEV_ITEM_KEY;
2191
2192 while (1) {
2193 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2194 if (ret < 0)
2195 goto error;
2196
2197 leaf = path->nodes[0];
2198next_slot:
2199 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
2200 ret = btrfs_next_leaf(root, path);
2201 if (ret > 0)
2202 break;
2203 if (ret < 0)
2204 goto error;
2205 leaf = path->nodes[0];
2206 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02002207 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002208 continue;
2209 }
2210
2211 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2212 if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID ||
2213 key.type != BTRFS_DEV_ITEM_KEY)
2214 break;
2215
2216 dev_item = btrfs_item_ptr(leaf, path->slots[0],
2217 struct btrfs_dev_item);
2218 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02002219 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05002220 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02002221 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05002222 BTRFS_UUID_SIZE);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002223 device = btrfs_find_device(root->fs_info, devid, dev_uuid,
2224 fs_uuid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002225 BUG_ON(!device); /* Logic error */
Yan Zheng2b820322008-11-17 21:11:30 -05002226
2227 if (device->fs_devices->seeding) {
2228 btrfs_set_device_generation(leaf, dev_item,
2229 device->generation);
2230 btrfs_mark_buffer_dirty(leaf);
2231 }
2232
2233 path->slots[0]++;
2234 goto next_slot;
2235 }
2236 ret = 0;
2237error:
2238 btrfs_free_path(path);
2239 return ret;
2240}
2241
Chris Mason788f20e2008-04-28 15:29:42 -04002242int btrfs_init_new_device(struct btrfs_root *root, char *device_path)
2243{
Josef Bacikd5e20032011-08-04 14:52:27 +00002244 struct request_queue *q;
Chris Mason788f20e2008-04-28 15:29:42 -04002245 struct btrfs_trans_handle *trans;
2246 struct btrfs_device *device;
2247 struct block_device *bdev;
Chris Mason788f20e2008-04-28 15:29:42 -04002248 struct list_head *devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002249 struct super_block *sb = root->fs_info->sb;
Josef Bacik606686e2012-06-04 14:03:51 -04002250 struct rcu_string *name;
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002251 u64 tmp;
Yan Zheng2b820322008-11-17 21:11:30 -05002252 int seeding_dev = 0;
Chris Mason788f20e2008-04-28 15:29:42 -04002253 int ret = 0;
2254
Yan Zheng2b820322008-11-17 21:11:30 -05002255 if ((sb->s_flags & MS_RDONLY) && !root->fs_info->fs_devices->seeding)
Liu Bof8c5d0b2012-05-10 18:10:38 +08002256 return -EROFS;
Chris Mason788f20e2008-04-28 15:29:42 -04002257
Li Zefana5d16332011-12-07 20:08:40 -05002258 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
Tejun Heod4d77622010-11-13 11:55:18 +01002259 root->fs_info->bdev_holder);
Josef Bacik7f592032010-01-27 02:09:00 +00002260 if (IS_ERR(bdev))
2261 return PTR_ERR(bdev);
Chris Masona2135012008-06-25 16:01:30 -04002262
Yan Zheng2b820322008-11-17 21:11:30 -05002263 if (root->fs_info->fs_devices->seeding) {
2264 seeding_dev = 1;
2265 down_write(&sb->s_umount);
2266 mutex_lock(&uuid_mutex);
2267 }
2268
Chris Mason8c8bee12008-09-29 11:19:10 -04002269 filemap_write_and_wait(bdev->bd_inode->i_mapping);
Chris Masona2135012008-06-25 16:01:30 -04002270
Chris Mason788f20e2008-04-28 15:29:42 -04002271 devices = &root->fs_info->fs_devices->devices;
Liu Bod25628b2012-11-14 14:35:30 +00002272
2273 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05002274 list_for_each_entry(device, devices, dev_list) {
Chris Mason788f20e2008-04-28 15:29:42 -04002275 if (device->bdev == bdev) {
2276 ret = -EEXIST;
Liu Bod25628b2012-11-14 14:35:30 +00002277 mutex_unlock(
2278 &root->fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002279 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002280 }
2281 }
Liu Bod25628b2012-11-14 14:35:30 +00002282 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002283
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002284 device = btrfs_alloc_device(root->fs_info, NULL, NULL);
2285 if (IS_ERR(device)) {
Chris Mason788f20e2008-04-28 15:29:42 -04002286 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002287 ret = PTR_ERR(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002288 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002289 }
2290
Josef Bacik606686e2012-06-04 14:03:51 -04002291 name = rcu_string_strdup(device_path, GFP_NOFS);
2292 if (!name) {
Chris Mason788f20e2008-04-28 15:29:42 -04002293 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002294 ret = -ENOMEM;
2295 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002296 }
Josef Bacik606686e2012-06-04 14:03:51 -04002297 rcu_assign_pointer(device->name, name);
Yan Zheng2b820322008-11-17 21:11:30 -05002298
Yan, Zhenga22285a2010-05-16 10:48:46 -04002299 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002300 if (IS_ERR(trans)) {
Josef Bacik606686e2012-06-04 14:03:51 -04002301 rcu_string_free(device->name);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002302 kfree(device);
2303 ret = PTR_ERR(trans);
2304 goto error;
2305 }
2306
Josef Bacikd5e20032011-08-04 14:52:27 +00002307 q = bdev_get_queue(bdev);
2308 if (blk_queue_discard(q))
2309 device->can_discard = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002310 device->writeable = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002311 device->generation = trans->transid;
Chris Mason788f20e2008-04-28 15:29:42 -04002312 device->io_width = root->sectorsize;
2313 device->io_align = root->sectorsize;
2314 device->sector_size = root->sectorsize;
2315 device->total_bytes = i_size_read(bdev->bd_inode);
Yan Zheng2cc3c552009-06-04 09:23:50 -04002316 device->disk_total_bytes = device->total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08002317 device->commit_total_bytes = device->total_bytes;
Chris Mason788f20e2008-04-28 15:29:42 -04002318 device->dev_root = root->fs_info->dev_root;
2319 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -04002320 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01002321 device->is_tgtdev_for_dev_replace = 0;
Ilya Dryomovfb01aa82011-02-15 18:12:57 +00002322 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002323 device->dev_stats_valid = 1;
Zheng Yan325cd4b2008-09-05 16:43:54 -04002324 set_blocksize(device->bdev, 4096);
2325
Yan Zheng2b820322008-11-17 21:11:30 -05002326 if (seeding_dev) {
2327 sb->s_flags &= ~MS_RDONLY;
Li Zefan125ccb02011-12-08 15:07:24 +08002328 ret = btrfs_prepare_sprout(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002329 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2b820322008-11-17 21:11:30 -05002330 }
2331
2332 device->fs_devices = root->fs_info->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04002333
Chris Masone5e9a522009-06-10 15:17:02 -04002334 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08002335 lock_chunks(root);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002336 list_add_rcu(&device->dev_list, &root->fs_info->fs_devices->devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002337 list_add(&device->dev_alloc_list,
2338 &root->fs_info->fs_devices->alloc_list);
2339 root->fs_info->fs_devices->num_devices++;
2340 root->fs_info->fs_devices->open_devices++;
2341 root->fs_info->fs_devices->rw_devices++;
Josef Bacik02db0842012-06-21 16:03:58 -04002342 root->fs_info->fs_devices->total_devices++;
Yan Zheng2b820322008-11-17 21:11:30 -05002343 root->fs_info->fs_devices->total_rw_bytes += device->total_bytes;
2344
Josef Bacik2bf64752011-09-26 17:12:22 -04002345 spin_lock(&root->fs_info->free_chunk_lock);
2346 root->fs_info->free_chunk_space += device->total_bytes;
2347 spin_unlock(&root->fs_info->free_chunk_lock);
2348
Chris Masonc2898112009-06-10 09:51:32 -04002349 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
2350 root->fs_info->fs_devices->rotating = 1;
2351
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002352 tmp = btrfs_super_total_bytes(root->fs_info->super_copy);
David Sterba6c417612011-04-13 15:41:04 +02002353 btrfs_set_super_total_bytes(root->fs_info->super_copy,
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002354 tmp + device->total_bytes);
Chris Mason788f20e2008-04-28 15:29:42 -04002355
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002356 tmp = btrfs_super_num_devices(root->fs_info->super_copy);
David Sterba6c417612011-04-13 15:41:04 +02002357 btrfs_set_super_num_devices(root->fs_info->super_copy,
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002358 tmp + 1);
Anand Jain0d393762014-06-03 11:36:01 +08002359
2360 /* add sysfs device entry */
Anand Jaine3bd6972015-08-14 18:32:48 +08002361 btrfs_sysfs_add_device_link(root->fs_info->fs_devices, device);
Anand Jain0d393762014-06-03 11:36:01 +08002362
Miao Xie2196d6e2014-09-03 21:35:41 +08002363 /*
2364 * we've got more storage, clear any full flags on the space
2365 * infos
2366 */
2367 btrfs_clear_space_info_full(root->fs_info);
2368
2369 unlock_chunks(root);
Chris Masone5e9a522009-06-10 15:17:02 -04002370 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002371
Yan Zheng2b820322008-11-17 21:11:30 -05002372 if (seeding_dev) {
Miao Xie2196d6e2014-09-03 21:35:41 +08002373 lock_chunks(root);
Yan Zheng2b820322008-11-17 21:11:30 -05002374 ret = init_first_rw_device(trans, root, device);
Miao Xie2196d6e2014-09-03 21:35:41 +08002375 unlock_chunks(root);
David Sterba005d6422012-09-18 07:52:32 -06002376 if (ret) {
2377 btrfs_abort_transaction(trans, root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002378 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002379 }
Miao Xie2196d6e2014-09-03 21:35:41 +08002380 }
2381
2382 ret = btrfs_add_device(trans, root, device);
2383 if (ret) {
2384 btrfs_abort_transaction(trans, root, ret);
2385 goto error_trans;
2386 }
2387
2388 if (seeding_dev) {
2389 char fsid_buf[BTRFS_UUID_UNPARSED_SIZE];
2390
Yan Zheng2b820322008-11-17 21:11:30 -05002391 ret = btrfs_finish_sprout(trans, root);
David Sterba005d6422012-09-18 07:52:32 -06002392 if (ret) {
2393 btrfs_abort_transaction(trans, root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002394 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002395 }
Anand Jainb2373f22014-06-03 11:36:03 +08002396
2397 /* Sprouting would change fsid of the mounted root,
2398 * so rename the fsid on the sysfs
2399 */
2400 snprintf(fsid_buf, BTRFS_UUID_UNPARSED_SIZE, "%pU",
2401 root->fs_info->fsid);
Anand Jainc1b7e472015-08-14 18:32:50 +08002402 if (kobject_rename(&root->fs_info->fs_devices->fsid_kobj,
Anand Jain2e7910d2015-03-10 06:38:29 +08002403 fsid_buf))
David Sterbaf14d1042015-10-08 11:37:06 +02002404 btrfs_warn(root->fs_info,
2405 "sysfs: failed to create fsid for sprout");
Yan Zheng2b820322008-11-17 21:11:30 -05002406 }
2407
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02002408 root->fs_info->num_tolerated_disk_barrier_failures =
2409 btrfs_calc_num_tolerated_disk_barrier_failures(root->fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002410 ret = btrfs_commit_transaction(trans, root);
Yan Zheng2b820322008-11-17 21:11:30 -05002411
2412 if (seeding_dev) {
2413 mutex_unlock(&uuid_mutex);
2414 up_write(&sb->s_umount);
2415
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002416 if (ret) /* transaction commit */
2417 return ret;
2418
Yan Zheng2b820322008-11-17 21:11:30 -05002419 ret = btrfs_relocate_sys_chunks(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002420 if (ret < 0)
Anand Jaina4553fe2015-09-25 14:43:01 +08002421 btrfs_std_error(root->fs_info, ret,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002422 "Failed to relocate sys chunks after "
2423 "device initialization. This can be fixed "
2424 "using the \"btrfs balance\" command.");
Miao Xie671415b2012-10-16 11:26:46 +00002425 trans = btrfs_attach_transaction(root);
2426 if (IS_ERR(trans)) {
2427 if (PTR_ERR(trans) == -ENOENT)
2428 return 0;
2429 return PTR_ERR(trans);
2430 }
2431 ret = btrfs_commit_transaction(trans, root);
Yan Zheng2b820322008-11-17 21:11:30 -05002432 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002433
Qu Wenruo5a1972b2014-04-16 17:02:32 +08002434 /* Update ctime/mtime for libblkid */
2435 update_dev_time(device_path);
Chris Mason788f20e2008-04-28 15:29:42 -04002436 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002437
2438error_trans:
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002439 btrfs_end_transaction(trans, root);
Josef Bacik606686e2012-06-04 14:03:51 -04002440 rcu_string_free(device->name);
Anand Jain32576042015-08-14 18:32:49 +08002441 btrfs_sysfs_rm_device_link(root->fs_info->fs_devices, device);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002442 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002443error:
Tejun Heoe525fd82010-11-13 11:55:17 +01002444 blkdev_put(bdev, FMODE_EXCL);
Yan Zheng2b820322008-11-17 21:11:30 -05002445 if (seeding_dev) {
2446 mutex_unlock(&uuid_mutex);
2447 up_write(&sb->s_umount);
2448 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002449 return ret;
Chris Mason788f20e2008-04-28 15:29:42 -04002450}
2451
Stefan Behrense93c89c2012-11-05 17:33:06 +01002452int btrfs_init_dev_replace_tgtdev(struct btrfs_root *root, char *device_path,
Miao Xie1c433662014-09-03 21:35:32 +08002453 struct btrfs_device *srcdev,
Stefan Behrense93c89c2012-11-05 17:33:06 +01002454 struct btrfs_device **device_out)
2455{
2456 struct request_queue *q;
2457 struct btrfs_device *device;
2458 struct block_device *bdev;
2459 struct btrfs_fs_info *fs_info = root->fs_info;
2460 struct list_head *devices;
2461 struct rcu_string *name;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002462 u64 devid = BTRFS_DEV_REPLACE_DEVID;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002463 int ret = 0;
2464
2465 *device_out = NULL;
Miao Xie1c433662014-09-03 21:35:32 +08002466 if (fs_info->fs_devices->seeding) {
2467 btrfs_err(fs_info, "the filesystem is a seed filesystem!");
Stefan Behrense93c89c2012-11-05 17:33:06 +01002468 return -EINVAL;
Miao Xie1c433662014-09-03 21:35:32 +08002469 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002470
2471 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
2472 fs_info->bdev_holder);
Miao Xie1c433662014-09-03 21:35:32 +08002473 if (IS_ERR(bdev)) {
2474 btrfs_err(fs_info, "target device %s is invalid!", device_path);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002475 return PTR_ERR(bdev);
Miao Xie1c433662014-09-03 21:35:32 +08002476 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002477
2478 filemap_write_and_wait(bdev->bd_inode->i_mapping);
2479
2480 devices = &fs_info->fs_devices->devices;
2481 list_for_each_entry(device, devices, dev_list) {
2482 if (device->bdev == bdev) {
Miao Xie1c433662014-09-03 21:35:32 +08002483 btrfs_err(fs_info, "target device is in the filesystem!");
Stefan Behrense93c89c2012-11-05 17:33:06 +01002484 ret = -EEXIST;
2485 goto error;
2486 }
2487 }
2488
Miao Xie1c433662014-09-03 21:35:32 +08002489
Miao Xie7cc8e582014-09-03 21:35:38 +08002490 if (i_size_read(bdev->bd_inode) <
2491 btrfs_device_get_total_bytes(srcdev)) {
Miao Xie1c433662014-09-03 21:35:32 +08002492 btrfs_err(fs_info, "target device is smaller than source device!");
2493 ret = -EINVAL;
2494 goto error;
2495 }
2496
2497
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002498 device = btrfs_alloc_device(NULL, &devid, NULL);
2499 if (IS_ERR(device)) {
2500 ret = PTR_ERR(device);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002501 goto error;
2502 }
2503
2504 name = rcu_string_strdup(device_path, GFP_NOFS);
2505 if (!name) {
2506 kfree(device);
2507 ret = -ENOMEM;
2508 goto error;
2509 }
2510 rcu_assign_pointer(device->name, name);
2511
2512 q = bdev_get_queue(bdev);
2513 if (blk_queue_discard(q))
2514 device->can_discard = 1;
2515 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
2516 device->writeable = 1;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002517 device->generation = 0;
2518 device->io_width = root->sectorsize;
2519 device->io_align = root->sectorsize;
2520 device->sector_size = root->sectorsize;
Miao Xie7cc8e582014-09-03 21:35:38 +08002521 device->total_bytes = btrfs_device_get_total_bytes(srcdev);
2522 device->disk_total_bytes = btrfs_device_get_disk_total_bytes(srcdev);
2523 device->bytes_used = btrfs_device_get_bytes_used(srcdev);
Miao Xie935e5cc2014-09-03 21:35:33 +08002524 ASSERT(list_empty(&srcdev->resized_list));
2525 device->commit_total_bytes = srcdev->commit_total_bytes;
Miao Xiece7213c2014-09-03 21:35:34 +08002526 device->commit_bytes_used = device->bytes_used;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002527 device->dev_root = fs_info->dev_root;
2528 device->bdev = bdev;
2529 device->in_fs_metadata = 1;
2530 device->is_tgtdev_for_dev_replace = 1;
2531 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002532 device->dev_stats_valid = 1;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002533 set_blocksize(device->bdev, 4096);
2534 device->fs_devices = fs_info->fs_devices;
2535 list_add(&device->dev_list, &fs_info->fs_devices->devices);
2536 fs_info->fs_devices->num_devices++;
2537 fs_info->fs_devices->open_devices++;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002538 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
2539
2540 *device_out = device;
2541 return ret;
2542
2543error:
2544 blkdev_put(bdev, FMODE_EXCL);
2545 return ret;
2546}
2547
2548void btrfs_init_dev_replace_tgtdev_for_resume(struct btrfs_fs_info *fs_info,
2549 struct btrfs_device *tgtdev)
2550{
2551 WARN_ON(fs_info->fs_devices->rw_devices == 0);
2552 tgtdev->io_width = fs_info->dev_root->sectorsize;
2553 tgtdev->io_align = fs_info->dev_root->sectorsize;
2554 tgtdev->sector_size = fs_info->dev_root->sectorsize;
2555 tgtdev->dev_root = fs_info->dev_root;
2556 tgtdev->in_fs_metadata = 1;
2557}
2558
Chris Masond3977122009-01-05 21:25:51 -05002559static noinline int btrfs_update_device(struct btrfs_trans_handle *trans,
2560 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04002561{
2562 int ret;
2563 struct btrfs_path *path;
2564 struct btrfs_root *root;
2565 struct btrfs_dev_item *dev_item;
2566 struct extent_buffer *leaf;
2567 struct btrfs_key key;
2568
2569 root = device->dev_root->fs_info->chunk_root;
2570
2571 path = btrfs_alloc_path();
2572 if (!path)
2573 return -ENOMEM;
2574
2575 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2576 key.type = BTRFS_DEV_ITEM_KEY;
2577 key.offset = device->devid;
2578
2579 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2580 if (ret < 0)
2581 goto out;
2582
2583 if (ret > 0) {
2584 ret = -ENOENT;
2585 goto out;
2586 }
2587
2588 leaf = path->nodes[0];
2589 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
2590
2591 btrfs_set_device_id(leaf, dev_item, device->devid);
2592 btrfs_set_device_type(leaf, dev_item, device->type);
2593 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
2594 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
2595 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08002596 btrfs_set_device_total_bytes(leaf, dev_item,
2597 btrfs_device_get_disk_total_bytes(device));
2598 btrfs_set_device_bytes_used(leaf, dev_item,
2599 btrfs_device_get_bytes_used(device));
Chris Mason0b86a832008-03-24 15:01:56 -04002600 btrfs_mark_buffer_dirty(leaf);
2601
2602out:
2603 btrfs_free_path(path);
2604 return ret;
2605}
2606
Miao Xie2196d6e2014-09-03 21:35:41 +08002607int btrfs_grow_device(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04002608 struct btrfs_device *device, u64 new_size)
2609{
2610 struct btrfs_super_block *super_copy =
David Sterba6c417612011-04-13 15:41:04 +02002611 device->dev_root->fs_info->super_copy;
Miao Xie935e5cc2014-09-03 21:35:33 +08002612 struct btrfs_fs_devices *fs_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002613 u64 old_total;
2614 u64 diff;
Chris Mason8f18cf12008-04-25 16:53:30 -04002615
Yan Zheng2b820322008-11-17 21:11:30 -05002616 if (!device->writeable)
2617 return -EACCES;
Miao Xie2196d6e2014-09-03 21:35:41 +08002618
2619 lock_chunks(device->dev_root);
2620 old_total = btrfs_super_total_bytes(super_copy);
2621 diff = new_size - device->total_bytes;
2622
Stefan Behrens63a212a2012-11-05 18:29:28 +01002623 if (new_size <= device->total_bytes ||
Miao Xie2196d6e2014-09-03 21:35:41 +08002624 device->is_tgtdev_for_dev_replace) {
2625 unlock_chunks(device->dev_root);
Yan Zheng2b820322008-11-17 21:11:30 -05002626 return -EINVAL;
Miao Xie2196d6e2014-09-03 21:35:41 +08002627 }
Yan Zheng2b820322008-11-17 21:11:30 -05002628
Miao Xie935e5cc2014-09-03 21:35:33 +08002629 fs_devices = device->dev_root->fs_info->fs_devices;
Chris Mason8f18cf12008-04-25 16:53:30 -04002630
2631 btrfs_set_super_total_bytes(super_copy, old_total + diff);
Yan Zheng2b820322008-11-17 21:11:30 -05002632 device->fs_devices->total_rw_bytes += diff;
2633
Miao Xie7cc8e582014-09-03 21:35:38 +08002634 btrfs_device_set_total_bytes(device, new_size);
2635 btrfs_device_set_disk_total_bytes(device, new_size);
Chris Mason4184ea72009-03-10 12:39:20 -04002636 btrfs_clear_space_info_full(device->dev_root->fs_info);
Miao Xie935e5cc2014-09-03 21:35:33 +08002637 if (list_empty(&device->resized_list))
2638 list_add_tail(&device->resized_list,
2639 &fs_devices->resized_devices);
Miao Xie2196d6e2014-09-03 21:35:41 +08002640 unlock_chunks(device->dev_root);
Chris Mason4184ea72009-03-10 12:39:20 -04002641
Chris Mason8f18cf12008-04-25 16:53:30 -04002642 return btrfs_update_device(trans, device);
2643}
2644
2645static int btrfs_free_chunk(struct btrfs_trans_handle *trans,
Zhao Leia688a042015-02-09 20:31:44 +08002646 struct btrfs_root *root, u64 chunk_objectid,
Chris Mason8f18cf12008-04-25 16:53:30 -04002647 u64 chunk_offset)
2648{
2649 int ret;
2650 struct btrfs_path *path;
2651 struct btrfs_key key;
2652
2653 root = root->fs_info->chunk_root;
2654 path = btrfs_alloc_path();
2655 if (!path)
2656 return -ENOMEM;
2657
2658 key.objectid = chunk_objectid;
2659 key.offset = chunk_offset;
2660 key.type = BTRFS_CHUNK_ITEM_KEY;
2661
2662 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002663 if (ret < 0)
2664 goto out;
2665 else if (ret > 0) { /* Logic error or corruption */
Anand Jaina4553fe2015-09-25 14:43:01 +08002666 btrfs_std_error(root->fs_info, -ENOENT,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002667 "Failed lookup while freeing chunk.");
2668 ret = -ENOENT;
2669 goto out;
2670 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002671
2672 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002673 if (ret < 0)
Anand Jaina4553fe2015-09-25 14:43:01 +08002674 btrfs_std_error(root->fs_info, ret,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002675 "Failed to delete chunk item.");
2676out:
Chris Mason8f18cf12008-04-25 16:53:30 -04002677 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00002678 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002679}
2680
Christoph Hellwigb2950862008-12-02 09:54:17 -05002681static int btrfs_del_sys_chunk(struct btrfs_root *root, u64 chunk_objectid, u64
Chris Mason8f18cf12008-04-25 16:53:30 -04002682 chunk_offset)
2683{
David Sterba6c417612011-04-13 15:41:04 +02002684 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04002685 struct btrfs_disk_key *disk_key;
2686 struct btrfs_chunk *chunk;
2687 u8 *ptr;
2688 int ret = 0;
2689 u32 num_stripes;
2690 u32 array_size;
2691 u32 len = 0;
2692 u32 cur;
2693 struct btrfs_key key;
2694
Miao Xie2196d6e2014-09-03 21:35:41 +08002695 lock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04002696 array_size = btrfs_super_sys_array_size(super_copy);
2697
2698 ptr = super_copy->sys_chunk_array;
2699 cur = 0;
2700
2701 while (cur < array_size) {
2702 disk_key = (struct btrfs_disk_key *)ptr;
2703 btrfs_disk_key_to_cpu(&key, disk_key);
2704
2705 len = sizeof(*disk_key);
2706
2707 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
2708 chunk = (struct btrfs_chunk *)(ptr + len);
2709 num_stripes = btrfs_stack_chunk_num_stripes(chunk);
2710 len += btrfs_chunk_item_size(num_stripes);
2711 } else {
2712 ret = -EIO;
2713 break;
2714 }
2715 if (key.objectid == chunk_objectid &&
2716 key.offset == chunk_offset) {
2717 memmove(ptr, ptr + len, array_size - (cur + len));
2718 array_size -= len;
2719 btrfs_set_super_sys_array_size(super_copy, array_size);
2720 } else {
2721 ptr += len;
2722 cur += len;
2723 }
2724 }
Miao Xie2196d6e2014-09-03 21:35:41 +08002725 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04002726 return ret;
2727}
2728
Josef Bacik47ab2a62014-09-18 11:20:02 -04002729int btrfs_remove_chunk(struct btrfs_trans_handle *trans,
2730 struct btrfs_root *root, u64 chunk_offset)
2731{
2732 struct extent_map_tree *em_tree;
2733 struct extent_map *em;
2734 struct btrfs_root *extent_root = root->fs_info->extent_root;
2735 struct map_lookup *map;
2736 u64 dev_extent_len = 0;
2737 u64 chunk_objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002738 int i, ret = 0;
2739
2740 /* Just in case */
2741 root = root->fs_info->chunk_root;
2742 em_tree = &root->fs_info->mapping_tree.map_tree;
2743
2744 read_lock(&em_tree->lock);
2745 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
2746 read_unlock(&em_tree->lock);
2747
2748 if (!em || em->start > chunk_offset ||
2749 em->start + em->len < chunk_offset) {
2750 /*
2751 * This is a logic error, but we don't want to just rely on the
2752 * user having built with ASSERT enabled, so if ASSERT doens't
2753 * do anything we still error out.
2754 */
2755 ASSERT(0);
2756 if (em)
2757 free_extent_map(em);
2758 return -EINVAL;
2759 }
2760 map = (struct map_lookup *)em->bdev;
Filipe Manana39c2d7f2015-05-20 14:01:55 +01002761 lock_chunks(root->fs_info->chunk_root);
Filipe Manana4617ea32015-06-09 17:48:21 +01002762 check_system_chunk(trans, extent_root, map->type);
Filipe Manana39c2d7f2015-05-20 14:01:55 +01002763 unlock_chunks(root->fs_info->chunk_root);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002764
2765 for (i = 0; i < map->num_stripes; i++) {
2766 struct btrfs_device *device = map->stripes[i].dev;
2767 ret = btrfs_free_dev_extent(trans, device,
2768 map->stripes[i].physical,
2769 &dev_extent_len);
2770 if (ret) {
2771 btrfs_abort_transaction(trans, root, ret);
2772 goto out;
2773 }
2774
2775 if (device->bytes_used > 0) {
2776 lock_chunks(root);
2777 btrfs_device_set_bytes_used(device,
2778 device->bytes_used - dev_extent_len);
2779 spin_lock(&root->fs_info->free_chunk_lock);
2780 root->fs_info->free_chunk_space += dev_extent_len;
2781 spin_unlock(&root->fs_info->free_chunk_lock);
2782 btrfs_clear_space_info_full(root->fs_info);
2783 unlock_chunks(root);
2784 }
2785
2786 if (map->stripes[i].dev) {
2787 ret = btrfs_update_device(trans, map->stripes[i].dev);
2788 if (ret) {
2789 btrfs_abort_transaction(trans, root, ret);
2790 goto out;
2791 }
2792 }
2793 }
Zhao Leia688a042015-02-09 20:31:44 +08002794 ret = btrfs_free_chunk(trans, root, chunk_objectid, chunk_offset);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002795 if (ret) {
2796 btrfs_abort_transaction(trans, root, ret);
2797 goto out;
2798 }
2799
2800 trace_btrfs_chunk_free(root, map, chunk_offset, em->len);
2801
2802 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
2803 ret = btrfs_del_sys_chunk(root, chunk_objectid, chunk_offset);
2804 if (ret) {
2805 btrfs_abort_transaction(trans, root, ret);
2806 goto out;
2807 }
2808 }
2809
Filipe Manana04216822014-11-27 21:14:15 +00002810 ret = btrfs_remove_block_group(trans, extent_root, chunk_offset, em);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002811 if (ret) {
2812 btrfs_abort_transaction(trans, extent_root, ret);
2813 goto out;
2814 }
2815
Josef Bacik47ab2a62014-09-18 11:20:02 -04002816out:
2817 /* once for us */
2818 free_extent_map(em);
Chris Mason8f18cf12008-04-25 16:53:30 -04002819 return ret;
2820}
2821
Zhaoleidc2ee4e2015-08-05 18:00:04 +08002822static int btrfs_relocate_chunk(struct btrfs_root *root, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002823{
Chris Mason8f18cf12008-04-25 16:53:30 -04002824 struct btrfs_root *extent_root;
2825 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04002826 int ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002827
2828 root = root->fs_info->chunk_root;
2829 extent_root = root->fs_info->extent_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04002830
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002831 /*
2832 * Prevent races with automatic removal of unused block groups.
2833 * After we relocate and before we remove the chunk with offset
2834 * chunk_offset, automatic removal of the block group can kick in,
2835 * resulting in a failure when calling btrfs_remove_chunk() below.
2836 *
2837 * Make sure to acquire this mutex before doing a tree search (dev
2838 * or chunk trees) to find chunks. Otherwise the cleaner kthread might
2839 * call btrfs_remove_chunk() (through btrfs_delete_unused_bgs()) after
2840 * we release the path used to search the chunk/dev tree and before
2841 * the current task acquires this mutex and calls us.
2842 */
2843 ASSERT(mutex_is_locked(&root->fs_info->delete_unused_bgs_mutex));
2844
Josef Bacikba1bf482009-09-11 16:11:19 -04002845 ret = btrfs_can_relocate(extent_root, chunk_offset);
2846 if (ret)
2847 return -ENOSPC;
2848
Chris Mason8f18cf12008-04-25 16:53:30 -04002849 /* step one, relocate all the extents inside this chunk */
Zhaolei55e3a602015-08-05 16:43:30 +08002850 btrfs_scrub_pause(root);
Zheng Yan1a40e232008-09-26 10:09:34 -04002851 ret = btrfs_relocate_block_group(extent_root, chunk_offset);
Zhaolei55e3a602015-08-05 16:43:30 +08002852 btrfs_scrub_continue(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002853 if (ret)
2854 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002855
Yan, Zhenga22285a2010-05-16 10:48:46 -04002856 trans = btrfs_start_transaction(root, 0);
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) &&
3062 !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3063 bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE;
3064 bctl->data.usage = 90;
3065 }
3066 if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) &&
3067 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3068 bctl->sys.flags |= BTRFS_BALANCE_ARGS_USAGE;
3069 bctl->sys.usage = 90;
3070 }
3071 if (!(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE) &&
3072 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3073 bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE;
3074 bctl->meta.usage = 90;
3075 }
3076}
3077
3078/*
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003079 * Should be called with both balance and volume mutexes held to
3080 * serialize other volume operations (add_dev/rm_dev/resize) with
3081 * restriper. Same goes for unset_balance_control.
3082 */
3083static void set_balance_control(struct btrfs_balance_control *bctl)
3084{
3085 struct btrfs_fs_info *fs_info = bctl->fs_info;
3086
3087 BUG_ON(fs_info->balance_ctl);
3088
3089 spin_lock(&fs_info->balance_lock);
3090 fs_info->balance_ctl = bctl;
3091 spin_unlock(&fs_info->balance_lock);
3092}
3093
3094static void unset_balance_control(struct btrfs_fs_info *fs_info)
3095{
3096 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3097
3098 BUG_ON(!fs_info->balance_ctl);
3099
3100 spin_lock(&fs_info->balance_lock);
3101 fs_info->balance_ctl = NULL;
3102 spin_unlock(&fs_info->balance_lock);
3103
3104 kfree(bctl);
3105}
3106
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003107/*
3108 * Balance filters. Return 1 if chunk should be filtered out
3109 * (should not be balanced).
3110 */
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003111static int chunk_profiles_filter(u64 chunk_type,
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003112 struct btrfs_balance_args *bargs)
3113{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003114 chunk_type = chunk_to_extended(chunk_type) &
3115 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003116
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003117 if (bargs->profiles & chunk_type)
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003118 return 0;
3119
3120 return 1;
3121}
3122
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003123static int chunk_usage_filter(struct btrfs_fs_info *fs_info, u64 chunk_offset,
3124 struct btrfs_balance_args *bargs)
3125{
3126 struct btrfs_block_group_cache *cache;
3127 u64 chunk_used, user_thresh;
3128 int ret = 1;
3129
3130 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3131 chunk_used = btrfs_block_group_used(&cache->item);
3132
Ilya Dryomova105bb82013-01-21 15:15:56 +02003133 if (bargs->usage == 0)
Ilya Dryomov3e39cea2013-02-12 16:28:59 +00003134 user_thresh = 1;
Ilya Dryomova105bb82013-01-21 15:15:56 +02003135 else if (bargs->usage > 100)
3136 user_thresh = cache->key.offset;
3137 else
3138 user_thresh = div_factor_fine(cache->key.offset,
3139 bargs->usage);
3140
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003141 if (chunk_used < user_thresh)
3142 ret = 0;
3143
3144 btrfs_put_block_group(cache);
3145 return ret;
3146}
3147
Ilya Dryomov409d4042012-01-16 22:04:47 +02003148static int chunk_devid_filter(struct extent_buffer *leaf,
3149 struct btrfs_chunk *chunk,
3150 struct btrfs_balance_args *bargs)
3151{
3152 struct btrfs_stripe *stripe;
3153 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3154 int i;
3155
3156 for (i = 0; i < num_stripes; i++) {
3157 stripe = btrfs_stripe_nr(chunk, i);
3158 if (btrfs_stripe_devid(leaf, stripe) == bargs->devid)
3159 return 0;
3160 }
3161
3162 return 1;
3163}
3164
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003165/* [pstart, pend) */
3166static int chunk_drange_filter(struct extent_buffer *leaf,
3167 struct btrfs_chunk *chunk,
3168 u64 chunk_offset,
3169 struct btrfs_balance_args *bargs)
3170{
3171 struct btrfs_stripe *stripe;
3172 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3173 u64 stripe_offset;
3174 u64 stripe_length;
3175 int factor;
3176 int i;
3177
3178 if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID))
3179 return 0;
3180
3181 if (btrfs_chunk_type(leaf, chunk) & (BTRFS_BLOCK_GROUP_DUP |
David Woodhouse53b381b2013-01-29 18:40:14 -05003182 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)) {
3183 factor = num_stripes / 2;
3184 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID5) {
3185 factor = num_stripes - 1;
3186 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID6) {
3187 factor = num_stripes - 2;
3188 } else {
3189 factor = num_stripes;
3190 }
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003191
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 continue;
3196
3197 stripe_offset = btrfs_stripe_offset(leaf, stripe);
3198 stripe_length = btrfs_chunk_length(leaf, chunk);
David Sterbab8b93ad2015-01-16 17:26:13 +01003199 stripe_length = div_u64(stripe_length, factor);
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003200
3201 if (stripe_offset < bargs->pend &&
3202 stripe_offset + stripe_length > bargs->pstart)
3203 return 0;
3204 }
3205
3206 return 1;
3207}
3208
Ilya Dryomovea671762012-01-16 22:04:48 +02003209/* [vstart, vend) */
3210static int chunk_vrange_filter(struct extent_buffer *leaf,
3211 struct btrfs_chunk *chunk,
3212 u64 chunk_offset,
3213 struct btrfs_balance_args *bargs)
3214{
3215 if (chunk_offset < bargs->vend &&
3216 chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart)
3217 /* at least part of the chunk is inside this vrange */
3218 return 0;
3219
3220 return 1;
3221}
3222
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003223static int chunk_stripes_range_filter(struct extent_buffer *leaf,
3224 struct btrfs_chunk *chunk,
3225 struct btrfs_balance_args *bargs)
3226{
3227 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3228
3229 if (bargs->stripes_min <= num_stripes
3230 && num_stripes <= bargs->stripes_max)
3231 return 0;
3232
3233 return 1;
3234}
3235
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003236static int chunk_soft_convert_filter(u64 chunk_type,
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003237 struct btrfs_balance_args *bargs)
3238{
3239 if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT))
3240 return 0;
3241
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003242 chunk_type = chunk_to_extended(chunk_type) &
3243 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003244
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003245 if (bargs->target == chunk_type)
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003246 return 1;
3247
3248 return 0;
3249}
3250
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003251static int should_balance_chunk(struct btrfs_root *root,
3252 struct extent_buffer *leaf,
3253 struct btrfs_chunk *chunk, u64 chunk_offset)
3254{
3255 struct btrfs_balance_control *bctl = root->fs_info->balance_ctl;
3256 struct btrfs_balance_args *bargs = NULL;
3257 u64 chunk_type = btrfs_chunk_type(leaf, chunk);
3258
3259 /* type filter */
3260 if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) &
3261 (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) {
3262 return 0;
3263 }
3264
3265 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3266 bargs = &bctl->data;
3267 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3268 bargs = &bctl->sys;
3269 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3270 bargs = &bctl->meta;
3271
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003272 /* profiles filter */
3273 if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) &&
3274 chunk_profiles_filter(chunk_type, bargs)) {
3275 return 0;
3276 }
3277
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003278 /* usage filter */
3279 if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) &&
3280 chunk_usage_filter(bctl->fs_info, chunk_offset, bargs)) {
3281 return 0;
3282 }
3283
Ilya Dryomov409d4042012-01-16 22:04:47 +02003284 /* devid filter */
3285 if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) &&
3286 chunk_devid_filter(leaf, chunk, bargs)) {
3287 return 0;
3288 }
3289
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003290 /* drange filter, makes sense only with devid filter */
3291 if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) &&
3292 chunk_drange_filter(leaf, chunk, chunk_offset, bargs)) {
3293 return 0;
3294 }
3295
Ilya Dryomovea671762012-01-16 22:04:48 +02003296 /* vrange filter */
3297 if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) &&
3298 chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) {
3299 return 0;
3300 }
3301
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003302 /* stripes filter */
3303 if ((bargs->flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE) &&
3304 chunk_stripes_range_filter(leaf, chunk, bargs)) {
3305 return 0;
3306 }
3307
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003308 /* soft profile changing mode */
3309 if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) &&
3310 chunk_soft_convert_filter(chunk_type, bargs)) {
3311 return 0;
3312 }
3313
David Sterba7d824b62014-05-07 17:37:51 +02003314 /*
3315 * limited by count, must be the last filter
3316 */
3317 if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT)) {
3318 if (bargs->limit == 0)
3319 return 0;
3320 else
3321 bargs->limit--;
David Sterba12907fc2015-10-10 17:16:50 +02003322 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE)) {
3323 /*
3324 * Same logic as the 'limit' filter; the minimum cannot be
3325 * determined here because we do not have the global informatoin
3326 * about the count of all chunks that satisfy the filters.
3327 */
3328 if (bargs->limit_max == 0)
3329 return 0;
3330 else
3331 bargs->limit_max--;
David Sterba7d824b62014-05-07 17:37:51 +02003332 }
3333
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003334 return 1;
3335}
3336
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003337static int __btrfs_balance(struct btrfs_fs_info *fs_info)
Chris Masonec44a352008-04-28 15:29:52 -04003338{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003339 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003340 struct btrfs_root *chunk_root = fs_info->chunk_root;
3341 struct btrfs_root *dev_root = fs_info->dev_root;
3342 struct list_head *devices;
Chris Masonec44a352008-04-28 15:29:52 -04003343 struct btrfs_device *device;
3344 u64 old_size;
3345 u64 size_to_free;
David Sterba12907fc2015-10-10 17:16:50 +02003346 u64 chunk_type;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003347 struct btrfs_chunk *chunk;
Chris Masonec44a352008-04-28 15:29:52 -04003348 struct btrfs_path *path;
3349 struct btrfs_key key;
Chris Masonec44a352008-04-28 15:29:52 -04003350 struct btrfs_key found_key;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003351 struct btrfs_trans_handle *trans;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003352 struct extent_buffer *leaf;
3353 int slot;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003354 int ret;
3355 int enospc_errors = 0;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003356 bool counting = true;
David Sterba12907fc2015-10-10 17:16:50 +02003357 /* The single value limit and min/max limits use the same bytes in the */
David Sterba7d824b62014-05-07 17:37:51 +02003358 u64 limit_data = bctl->data.limit;
3359 u64 limit_meta = bctl->meta.limit;
3360 u64 limit_sys = bctl->sys.limit;
David Sterba12907fc2015-10-10 17:16:50 +02003361 u32 count_data = 0;
3362 u32 count_meta = 0;
3363 u32 count_sys = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003364
Chris Masonec44a352008-04-28 15:29:52 -04003365 /* step one make some room on all the devices */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003366 devices = &fs_info->fs_devices->devices;
Qinghuang Fengc6e30872009-01-21 10:59:08 -05003367 list_for_each_entry(device, devices, dev_list) {
Miao Xie7cc8e582014-09-03 21:35:38 +08003368 old_size = btrfs_device_get_total_bytes(device);
Chris Masonec44a352008-04-28 15:29:52 -04003369 size_to_free = div_factor(old_size, 1);
3370 size_to_free = min(size_to_free, (u64)1 * 1024 * 1024);
Yan Zheng2b820322008-11-17 21:11:30 -05003371 if (!device->writeable ||
Miao Xie7cc8e582014-09-03 21:35:38 +08003372 btrfs_device_get_total_bytes(device) -
3373 btrfs_device_get_bytes_used(device) > size_to_free ||
Stefan Behrens63a212a2012-11-05 18:29:28 +01003374 device->is_tgtdev_for_dev_replace)
Chris Masonec44a352008-04-28 15:29:52 -04003375 continue;
3376
3377 ret = btrfs_shrink_device(device, old_size - size_to_free);
Josef Bacikba1bf482009-09-11 16:11:19 -04003378 if (ret == -ENOSPC)
3379 break;
Chris Masonec44a352008-04-28 15:29:52 -04003380 BUG_ON(ret);
3381
Yan, Zhenga22285a2010-05-16 10:48:46 -04003382 trans = btrfs_start_transaction(dev_root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00003383 BUG_ON(IS_ERR(trans));
Chris Masonec44a352008-04-28 15:29:52 -04003384
3385 ret = btrfs_grow_device(trans, device, old_size);
3386 BUG_ON(ret);
3387
3388 btrfs_end_transaction(trans, dev_root);
3389 }
3390
3391 /* step two, relocate all the chunks */
3392 path = btrfs_alloc_path();
Mark Fasheh17e9f792011-07-12 11:10:23 -07003393 if (!path) {
3394 ret = -ENOMEM;
3395 goto error;
3396 }
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003397
3398 /* zero out stat counters */
3399 spin_lock(&fs_info->balance_lock);
3400 memset(&bctl->stat, 0, sizeof(bctl->stat));
3401 spin_unlock(&fs_info->balance_lock);
3402again:
David Sterba7d824b62014-05-07 17:37:51 +02003403 if (!counting) {
David Sterba12907fc2015-10-10 17:16:50 +02003404 /*
3405 * The single value limit and min/max limits use the same bytes
3406 * in the
3407 */
David Sterba7d824b62014-05-07 17:37:51 +02003408 bctl->data.limit = limit_data;
3409 bctl->meta.limit = limit_meta;
3410 bctl->sys.limit = limit_sys;
3411 }
Chris Masonec44a352008-04-28 15:29:52 -04003412 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
3413 key.offset = (u64)-1;
3414 key.type = BTRFS_CHUNK_ITEM_KEY;
3415
Chris Masond3977122009-01-05 21:25:51 -05003416 while (1) {
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003417 if ((!counting && atomic_read(&fs_info->balance_pause_req)) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003418 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003419 ret = -ECANCELED;
3420 goto error;
3421 }
3422
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003423 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003424 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003425 if (ret < 0) {
3426 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003427 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003428 }
Chris Masonec44a352008-04-28 15:29:52 -04003429
3430 /*
3431 * this shouldn't happen, it means the last relocate
3432 * failed
3433 */
3434 if (ret == 0)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003435 BUG(); /* FIXME break ? */
Chris Masonec44a352008-04-28 15:29:52 -04003436
3437 ret = btrfs_previous_item(chunk_root, path, 0,
3438 BTRFS_CHUNK_ITEM_KEY);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003439 if (ret) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003440 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003441 ret = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003442 break;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003443 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003444
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003445 leaf = path->nodes[0];
3446 slot = path->slots[0];
3447 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3448
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003449 if (found_key.objectid != key.objectid) {
3450 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003451 break;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003452 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003453
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003454 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
David Sterba12907fc2015-10-10 17:16:50 +02003455 chunk_type = btrfs_chunk_type(leaf, chunk);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003456
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003457 if (!counting) {
3458 spin_lock(&fs_info->balance_lock);
3459 bctl->stat.considered++;
3460 spin_unlock(&fs_info->balance_lock);
3461 }
3462
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003463 ret = should_balance_chunk(chunk_root, leaf, chunk,
3464 found_key.offset);
David Sterbab3b4aa72011-04-21 01:20:15 +02003465 btrfs_release_path(path);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003466 if (!ret) {
3467 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003468 goto loop;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003469 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003470
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003471 if (counting) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003472 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003473 spin_lock(&fs_info->balance_lock);
3474 bctl->stat.expected++;
3475 spin_unlock(&fs_info->balance_lock);
David Sterba12907fc2015-10-10 17:16:50 +02003476
3477 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3478 count_data++;
3479 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3480 count_sys++;
3481 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3482 count_meta++;
3483
3484 goto loop;
3485 }
3486
3487 /*
3488 * Apply limit_min filter, no need to check if the LIMITS
3489 * filter is used, limit_min is 0 by default
3490 */
3491 if (((chunk_type & BTRFS_BLOCK_GROUP_DATA) &&
3492 count_data < bctl->data.limit_min)
3493 || ((chunk_type & BTRFS_BLOCK_GROUP_METADATA) &&
3494 count_meta < bctl->meta.limit_min)
3495 || ((chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) &&
3496 count_sys < bctl->sys.limit_min)) {
3497 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003498 goto loop;
3499 }
3500
Chris Masonec44a352008-04-28 15:29:52 -04003501 ret = btrfs_relocate_chunk(chunk_root,
Chris Masonec44a352008-04-28 15:29:52 -04003502 found_key.offset);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003503 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacik508794e2011-07-02 21:24:41 +00003504 if (ret && ret != -ENOSPC)
3505 goto error;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003506 if (ret == -ENOSPC) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003507 enospc_errors++;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003508 } else {
3509 spin_lock(&fs_info->balance_lock);
3510 bctl->stat.completed++;
3511 spin_unlock(&fs_info->balance_lock);
3512 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003513loop:
Ilya Dryomov795a3322013-08-27 13:50:44 +03003514 if (found_key.offset == 0)
3515 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04003516 key.offset = found_key.offset - 1;
Chris Masonec44a352008-04-28 15:29:52 -04003517 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003518
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003519 if (counting) {
3520 btrfs_release_path(path);
3521 counting = false;
3522 goto again;
3523 }
Chris Masonec44a352008-04-28 15:29:52 -04003524error:
3525 btrfs_free_path(path);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003526 if (enospc_errors) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003527 btrfs_info(fs_info, "%d enospc errors during balance",
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003528 enospc_errors);
3529 if (!ret)
3530 ret = -ENOSPC;
3531 }
3532
Chris Masonec44a352008-04-28 15:29:52 -04003533 return ret;
3534}
3535
Ilya Dryomov0c460c02012-03-27 17:09:17 +03003536/**
3537 * alloc_profile_is_valid - see if a given profile is valid and reduced
3538 * @flags: profile to validate
3539 * @extended: if true @flags is treated as an extended profile
3540 */
3541static int alloc_profile_is_valid(u64 flags, int extended)
3542{
3543 u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK :
3544 BTRFS_BLOCK_GROUP_PROFILE_MASK);
3545
3546 flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK;
3547
3548 /* 1) check that all other bits are zeroed */
3549 if (flags & ~mask)
3550 return 0;
3551
3552 /* 2) see if profile is reduced */
3553 if (flags == 0)
3554 return !extended; /* "0" is valid for usual profiles */
3555
3556 /* true if exactly one bit set */
3557 return (flags & (flags - 1)) == 0;
3558}
3559
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003560static inline int balance_need_close(struct btrfs_fs_info *fs_info)
3561{
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003562 /* cancel requested || normal exit path */
3563 return atomic_read(&fs_info->balance_cancel_req) ||
3564 (atomic_read(&fs_info->balance_pause_req) == 0 &&
3565 atomic_read(&fs_info->balance_cancel_req) == 0);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003566}
3567
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003568static void __cancel_balance(struct btrfs_fs_info *fs_info)
3569{
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003570 int ret;
3571
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003572 unset_balance_control(fs_info);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003573 ret = del_balance_item(fs_info->tree_root);
Liu Bo0f788c52013-03-04 16:25:40 +00003574 if (ret)
Anand Jaina4553fe2015-09-25 14:43:01 +08003575 btrfs_std_error(fs_info, ret, NULL);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003576
3577 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003578}
3579
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003580/* Non-zero return value signifies invalidity */
3581static inline int validate_convert_profile(struct btrfs_balance_args *bctl_arg,
3582 u64 allowed)
3583{
3584 return ((bctl_arg->flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3585 (!alloc_profile_is_valid(bctl_arg->target, 1) ||
3586 (bctl_arg->target & ~allowed)));
3587}
3588
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003589/*
3590 * Should be called with both balance and volume mutexes held
3591 */
3592int btrfs_balance(struct btrfs_balance_control *bctl,
3593 struct btrfs_ioctl_balance_args *bargs)
3594{
3595 struct btrfs_fs_info *fs_info = bctl->fs_info;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003596 u64 allowed;
Ilya Dryomove4837f82012-03-27 17:09:17 +03003597 int mixed = 0;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003598 int ret;
Stefan Behrens8dabb742012-11-06 13:15:27 +01003599 u64 num_devices;
Miao Xiede98ced2013-01-29 10:13:12 +00003600 unsigned seq;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003601
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003602 if (btrfs_fs_closing(fs_info) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003603 atomic_read(&fs_info->balance_pause_req) ||
3604 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003605 ret = -EINVAL;
3606 goto out;
3607 }
3608
Ilya Dryomove4837f82012-03-27 17:09:17 +03003609 allowed = btrfs_super_incompat_flags(fs_info->super_copy);
3610 if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
3611 mixed = 1;
3612
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003613 /*
3614 * In case of mixed groups both data and meta should be picked,
3615 * and identical options should be given for both of them.
3616 */
Ilya Dryomove4837f82012-03-27 17:09:17 +03003617 allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA;
3618 if (mixed && (bctl->flags & allowed)) {
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003619 if (!(bctl->flags & BTRFS_BALANCE_DATA) ||
3620 !(bctl->flags & BTRFS_BALANCE_METADATA) ||
3621 memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003622 btrfs_err(fs_info, "with mixed groups data and "
3623 "metadata balance options must be the same");
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003624 ret = -EINVAL;
3625 goto out;
3626 }
3627 }
3628
Stefan Behrens8dabb742012-11-06 13:15:27 +01003629 num_devices = fs_info->fs_devices->num_devices;
3630 btrfs_dev_replace_lock(&fs_info->dev_replace);
3631 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
3632 BUG_ON(num_devices < 1);
3633 num_devices--;
3634 }
3635 btrfs_dev_replace_unlock(&fs_info->dev_replace);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003636 allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE;
Stefan Behrens8dabb742012-11-06 13:15:27 +01003637 if (num_devices == 1)
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003638 allowed |= BTRFS_BLOCK_GROUP_DUP;
Andreas Philipp8250dab2013-05-11 11:13:03 +00003639 else if (num_devices > 1)
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003640 allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1);
Andreas Philipp8250dab2013-05-11 11:13:03 +00003641 if (num_devices > 2)
3642 allowed |= BTRFS_BLOCK_GROUP_RAID5;
3643 if (num_devices > 3)
3644 allowed |= (BTRFS_BLOCK_GROUP_RAID10 |
3645 BTRFS_BLOCK_GROUP_RAID6);
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003646 if (validate_convert_profile(&bctl->data, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003647 btrfs_err(fs_info, "unable to start balance with target "
3648 "data profile %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003649 bctl->data.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003650 ret = -EINVAL;
3651 goto out;
3652 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003653 if (validate_convert_profile(&bctl->meta, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003654 btrfs_err(fs_info,
3655 "unable to start balance with target metadata profile %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003656 bctl->meta.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003657 ret = -EINVAL;
3658 goto out;
3659 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003660 if (validate_convert_profile(&bctl->sys, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003661 btrfs_err(fs_info,
3662 "unable to start balance with target system profile %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003663 bctl->sys.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003664 ret = -EINVAL;
3665 goto out;
3666 }
3667
Ilya Dryomove4837f82012-03-27 17:09:17 +03003668 /* allow dup'ed data chunks only in mixed mode */
3669 if (!mixed && (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
Ilya Dryomov6728b192012-03-27 17:09:17 +03003670 (bctl->data.target & BTRFS_BLOCK_GROUP_DUP)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003671 btrfs_err(fs_info, "dup for data is not allowed");
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003672 ret = -EINVAL;
3673 goto out;
3674 }
3675
3676 /* allow to reduce meta or sys integrity only if force set */
3677 allowed = BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05003678 BTRFS_BLOCK_GROUP_RAID10 |
3679 BTRFS_BLOCK_GROUP_RAID5 |
3680 BTRFS_BLOCK_GROUP_RAID6;
Miao Xiede98ced2013-01-29 10:13:12 +00003681 do {
3682 seq = read_seqbegin(&fs_info->profiles_lock);
3683
3684 if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3685 (fs_info->avail_system_alloc_bits & allowed) &&
3686 !(bctl->sys.target & allowed)) ||
3687 ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3688 (fs_info->avail_metadata_alloc_bits & allowed) &&
3689 !(bctl->meta.target & allowed))) {
3690 if (bctl->flags & BTRFS_BALANCE_FORCE) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003691 btrfs_info(fs_info, "force reducing metadata integrity");
Miao Xiede98ced2013-01-29 10:13:12 +00003692 } else {
Frank Holtonefe120a2013-12-20 11:37:06 -05003693 btrfs_err(fs_info, "balance will reduce metadata "
3694 "integrity, use force if you want this");
Miao Xiede98ced2013-01-29 10:13:12 +00003695 ret = -EINVAL;
3696 goto out;
3697 }
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003698 }
Miao Xiede98ced2013-01-29 10:13:12 +00003699 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003700
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003701 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
Zhao Lei943c6e92015-08-19 15:54:15 +08003702 fs_info->num_tolerated_disk_barrier_failures = min(
3703 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info),
3704 btrfs_get_num_tolerated_disk_barrier_failures(
3705 bctl->sys.target));
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003706 }
3707
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003708 ret = insert_balance_item(fs_info->tree_root, bctl);
Ilya Dryomov59641012012-01-16 22:04:48 +02003709 if (ret && ret != -EEXIST)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003710 goto out;
3711
Ilya Dryomov59641012012-01-16 22:04:48 +02003712 if (!(bctl->flags & BTRFS_BALANCE_RESUME)) {
3713 BUG_ON(ret == -EEXIST);
3714 set_balance_control(bctl);
3715 } else {
3716 BUG_ON(ret != -EEXIST);
3717 spin_lock(&fs_info->balance_lock);
3718 update_balance_args(bctl);
3719 spin_unlock(&fs_info->balance_lock);
3720 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003721
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003722 atomic_inc(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003723 mutex_unlock(&fs_info->balance_mutex);
3724
3725 ret = __btrfs_balance(fs_info);
3726
3727 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003728 atomic_dec(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003729
Ilya Dryomovbf023ec2013-02-12 16:27:46 +00003730 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3731 fs_info->num_tolerated_disk_barrier_failures =
3732 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info);
3733 }
3734
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003735 if (bargs) {
3736 memset(bargs, 0, sizeof(*bargs));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003737 update_ioctl_balance_args(fs_info, 0, bargs);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003738 }
3739
Ilya Dryomov3a01aa72013-03-06 01:57:55 -07003740 if ((ret && ret != -ECANCELED && ret != -ENOSPC) ||
3741 balance_need_close(fs_info)) {
3742 __cancel_balance(fs_info);
3743 }
3744
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003745 wake_up(&fs_info->balance_wait_q);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003746
3747 return ret;
3748out:
Ilya Dryomov59641012012-01-16 22:04:48 +02003749 if (bctl->flags & BTRFS_BALANCE_RESUME)
3750 __cancel_balance(fs_info);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003751 else {
Ilya Dryomov59641012012-01-16 22:04:48 +02003752 kfree(bctl);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003753 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
3754 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003755 return ret;
3756}
3757
3758static int balance_kthread(void *data)
3759{
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003760 struct btrfs_fs_info *fs_info = data;
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003761 int ret = 0;
Ilya Dryomov59641012012-01-16 22:04:48 +02003762
3763 mutex_lock(&fs_info->volume_mutex);
3764 mutex_lock(&fs_info->balance_mutex);
3765
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003766 if (fs_info->balance_ctl) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003767 btrfs_info(fs_info, "continuing balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003768 ret = btrfs_balance(fs_info->balance_ctl, NULL);
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003769 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003770
3771 mutex_unlock(&fs_info->balance_mutex);
3772 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003773
Ilya Dryomov59641012012-01-16 22:04:48 +02003774 return ret;
3775}
3776
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003777int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info)
3778{
3779 struct task_struct *tsk;
3780
3781 spin_lock(&fs_info->balance_lock);
3782 if (!fs_info->balance_ctl) {
3783 spin_unlock(&fs_info->balance_lock);
3784 return 0;
3785 }
3786 spin_unlock(&fs_info->balance_lock);
3787
3788 if (btrfs_test_opt(fs_info->tree_root, SKIP_BALANCE)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003789 btrfs_info(fs_info, "force skipping balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003790 return 0;
3791 }
3792
3793 tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance");
Sachin Kamatcd633972013-07-15 16:52:18 +05303794 return PTR_ERR_OR_ZERO(tsk);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003795}
3796
Ilya Dryomov68310a52012-06-22 12:24:12 -06003797int btrfs_recover_balance(struct btrfs_fs_info *fs_info)
Ilya Dryomov59641012012-01-16 22:04:48 +02003798{
Ilya Dryomov59641012012-01-16 22:04:48 +02003799 struct btrfs_balance_control *bctl;
3800 struct btrfs_balance_item *item;
3801 struct btrfs_disk_balance_args disk_bargs;
3802 struct btrfs_path *path;
3803 struct extent_buffer *leaf;
3804 struct btrfs_key key;
3805 int ret;
3806
3807 path = btrfs_alloc_path();
3808 if (!path)
3809 return -ENOMEM;
3810
Ilya Dryomov68310a52012-06-22 12:24:12 -06003811 key.objectid = BTRFS_BALANCE_OBJECTID;
3812 key.type = BTRFS_BALANCE_ITEM_KEY;
3813 key.offset = 0;
3814
3815 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
3816 if (ret < 0)
3817 goto out;
3818 if (ret > 0) { /* ret = -ENOENT; */
3819 ret = 0;
3820 goto out;
3821 }
3822
Ilya Dryomov59641012012-01-16 22:04:48 +02003823 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
3824 if (!bctl) {
3825 ret = -ENOMEM;
3826 goto out;
3827 }
3828
Ilya Dryomov59641012012-01-16 22:04:48 +02003829 leaf = path->nodes[0];
3830 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
3831
Ilya Dryomov68310a52012-06-22 12:24:12 -06003832 bctl->fs_info = fs_info;
3833 bctl->flags = btrfs_balance_flags(leaf, item);
3834 bctl->flags |= BTRFS_BALANCE_RESUME;
Ilya Dryomov59641012012-01-16 22:04:48 +02003835
3836 btrfs_balance_data(leaf, item, &disk_bargs);
3837 btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs);
3838 btrfs_balance_meta(leaf, item, &disk_bargs);
3839 btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs);
3840 btrfs_balance_sys(leaf, item, &disk_bargs);
3841 btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs);
3842
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003843 WARN_ON(atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1));
3844
Ilya Dryomov68310a52012-06-22 12:24:12 -06003845 mutex_lock(&fs_info->volume_mutex);
3846 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02003847
Ilya Dryomov68310a52012-06-22 12:24:12 -06003848 set_balance_control(bctl);
3849
3850 mutex_unlock(&fs_info->balance_mutex);
3851 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02003852out:
3853 btrfs_free_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04003854 return ret;
3855}
3856
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003857int btrfs_pause_balance(struct btrfs_fs_info *fs_info)
3858{
3859 int ret = 0;
3860
3861 mutex_lock(&fs_info->balance_mutex);
3862 if (!fs_info->balance_ctl) {
3863 mutex_unlock(&fs_info->balance_mutex);
3864 return -ENOTCONN;
3865 }
3866
3867 if (atomic_read(&fs_info->balance_running)) {
3868 atomic_inc(&fs_info->balance_pause_req);
3869 mutex_unlock(&fs_info->balance_mutex);
3870
3871 wait_event(fs_info->balance_wait_q,
3872 atomic_read(&fs_info->balance_running) == 0);
3873
3874 mutex_lock(&fs_info->balance_mutex);
3875 /* we are good with balance_ctl ripped off from under us */
3876 BUG_ON(atomic_read(&fs_info->balance_running));
3877 atomic_dec(&fs_info->balance_pause_req);
3878 } else {
3879 ret = -ENOTCONN;
3880 }
3881
3882 mutex_unlock(&fs_info->balance_mutex);
3883 return ret;
3884}
3885
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003886int btrfs_cancel_balance(struct btrfs_fs_info *fs_info)
3887{
Ilya Dryomove649e582013-10-10 20:40:21 +03003888 if (fs_info->sb->s_flags & MS_RDONLY)
3889 return -EROFS;
3890
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003891 mutex_lock(&fs_info->balance_mutex);
3892 if (!fs_info->balance_ctl) {
3893 mutex_unlock(&fs_info->balance_mutex);
3894 return -ENOTCONN;
3895 }
3896
3897 atomic_inc(&fs_info->balance_cancel_req);
3898 /*
3899 * if we are running just wait and return, balance item is
3900 * deleted in btrfs_balance in this case
3901 */
3902 if (atomic_read(&fs_info->balance_running)) {
3903 mutex_unlock(&fs_info->balance_mutex);
3904 wait_event(fs_info->balance_wait_q,
3905 atomic_read(&fs_info->balance_running) == 0);
3906 mutex_lock(&fs_info->balance_mutex);
3907 } else {
3908 /* __cancel_balance needs volume_mutex */
3909 mutex_unlock(&fs_info->balance_mutex);
3910 mutex_lock(&fs_info->volume_mutex);
3911 mutex_lock(&fs_info->balance_mutex);
3912
3913 if (fs_info->balance_ctl)
3914 __cancel_balance(fs_info);
3915
3916 mutex_unlock(&fs_info->volume_mutex);
3917 }
3918
3919 BUG_ON(fs_info->balance_ctl || atomic_read(&fs_info->balance_running));
3920 atomic_dec(&fs_info->balance_cancel_req);
3921 mutex_unlock(&fs_info->balance_mutex);
3922 return 0;
3923}
3924
Stefan Behrens803b2f52013-08-15 17:11:21 +02003925static int btrfs_uuid_scan_kthread(void *data)
3926{
3927 struct btrfs_fs_info *fs_info = data;
3928 struct btrfs_root *root = fs_info->tree_root;
3929 struct btrfs_key key;
3930 struct btrfs_key max_key;
3931 struct btrfs_path *path = NULL;
3932 int ret = 0;
3933 struct extent_buffer *eb;
3934 int slot;
3935 struct btrfs_root_item root_item;
3936 u32 item_size;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01003937 struct btrfs_trans_handle *trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02003938
3939 path = btrfs_alloc_path();
3940 if (!path) {
3941 ret = -ENOMEM;
3942 goto out;
3943 }
3944
3945 key.objectid = 0;
3946 key.type = BTRFS_ROOT_ITEM_KEY;
3947 key.offset = 0;
3948
3949 max_key.objectid = (u64)-1;
3950 max_key.type = BTRFS_ROOT_ITEM_KEY;
3951 max_key.offset = (u64)-1;
3952
Stefan Behrens803b2f52013-08-15 17:11:21 +02003953 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01003954 ret = btrfs_search_forward(root, &key, path, 0);
Stefan Behrens803b2f52013-08-15 17:11:21 +02003955 if (ret) {
3956 if (ret > 0)
3957 ret = 0;
3958 break;
3959 }
3960
3961 if (key.type != BTRFS_ROOT_ITEM_KEY ||
3962 (key.objectid < BTRFS_FIRST_FREE_OBJECTID &&
3963 key.objectid != BTRFS_FS_TREE_OBJECTID) ||
3964 key.objectid > BTRFS_LAST_FREE_OBJECTID)
3965 goto skip;
3966
3967 eb = path->nodes[0];
3968 slot = path->slots[0];
3969 item_size = btrfs_item_size_nr(eb, slot);
3970 if (item_size < sizeof(root_item))
3971 goto skip;
3972
Stefan Behrens803b2f52013-08-15 17:11:21 +02003973 read_extent_buffer(eb, &root_item,
3974 btrfs_item_ptr_offset(eb, slot),
3975 (int)sizeof(root_item));
3976 if (btrfs_root_refs(&root_item) == 0)
3977 goto skip;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01003978
3979 if (!btrfs_is_empty_uuid(root_item.uuid) ||
3980 !btrfs_is_empty_uuid(root_item.received_uuid)) {
3981 if (trans)
3982 goto update_tree;
3983
3984 btrfs_release_path(path);
Stefan Behrens803b2f52013-08-15 17:11:21 +02003985 /*
3986 * 1 - subvol uuid item
3987 * 1 - received_subvol uuid item
3988 */
3989 trans = btrfs_start_transaction(fs_info->uuid_root, 2);
3990 if (IS_ERR(trans)) {
3991 ret = PTR_ERR(trans);
3992 break;
3993 }
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01003994 continue;
3995 } else {
3996 goto skip;
3997 }
3998update_tree:
3999 if (!btrfs_is_empty_uuid(root_item.uuid)) {
Stefan Behrens803b2f52013-08-15 17:11:21 +02004000 ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root,
4001 root_item.uuid,
4002 BTRFS_UUID_KEY_SUBVOL,
4003 key.objectid);
4004 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004005 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004006 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004007 break;
4008 }
4009 }
4010
4011 if (!btrfs_is_empty_uuid(root_item.received_uuid)) {
Stefan Behrens803b2f52013-08-15 17:11:21 +02004012 ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root,
4013 root_item.received_uuid,
4014 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4015 key.objectid);
4016 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004017 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004018 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004019 break;
4020 }
4021 }
4022
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004023skip:
Stefan Behrens803b2f52013-08-15 17:11:21 +02004024 if (trans) {
4025 ret = btrfs_end_transaction(trans, fs_info->uuid_root);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004026 trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004027 if (ret)
4028 break;
4029 }
4030
Stefan Behrens803b2f52013-08-15 17:11:21 +02004031 btrfs_release_path(path);
4032 if (key.offset < (u64)-1) {
4033 key.offset++;
4034 } else if (key.type < BTRFS_ROOT_ITEM_KEY) {
4035 key.offset = 0;
4036 key.type = BTRFS_ROOT_ITEM_KEY;
4037 } else if (key.objectid < (u64)-1) {
4038 key.offset = 0;
4039 key.type = BTRFS_ROOT_ITEM_KEY;
4040 key.objectid++;
4041 } else {
4042 break;
4043 }
4044 cond_resched();
4045 }
4046
4047out:
4048 btrfs_free_path(path);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004049 if (trans && !IS_ERR(trans))
4050 btrfs_end_transaction(trans, fs_info->uuid_root);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004051 if (ret)
Frank Holtonefe120a2013-12-20 11:37:06 -05004052 btrfs_warn(fs_info, "btrfs_uuid_scan_kthread failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004053 else
4054 fs_info->update_uuid_tree_gen = 1;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004055 up(&fs_info->uuid_tree_rescan_sem);
4056 return 0;
4057}
4058
Stefan Behrens70f80172013-08-15 17:11:23 +02004059/*
4060 * Callback for btrfs_uuid_tree_iterate().
4061 * returns:
4062 * 0 check succeeded, the entry is not outdated.
4063 * < 0 if an error occured.
4064 * > 0 if the check failed, which means the caller shall remove the entry.
4065 */
4066static int btrfs_check_uuid_tree_entry(struct btrfs_fs_info *fs_info,
4067 u8 *uuid, u8 type, u64 subid)
4068{
4069 struct btrfs_key key;
4070 int ret = 0;
4071 struct btrfs_root *subvol_root;
4072
4073 if (type != BTRFS_UUID_KEY_SUBVOL &&
4074 type != BTRFS_UUID_KEY_RECEIVED_SUBVOL)
4075 goto out;
4076
4077 key.objectid = subid;
4078 key.type = BTRFS_ROOT_ITEM_KEY;
4079 key.offset = (u64)-1;
4080 subvol_root = btrfs_read_fs_root_no_name(fs_info, &key);
4081 if (IS_ERR(subvol_root)) {
4082 ret = PTR_ERR(subvol_root);
4083 if (ret == -ENOENT)
4084 ret = 1;
4085 goto out;
4086 }
4087
4088 switch (type) {
4089 case BTRFS_UUID_KEY_SUBVOL:
4090 if (memcmp(uuid, subvol_root->root_item.uuid, BTRFS_UUID_SIZE))
4091 ret = 1;
4092 break;
4093 case BTRFS_UUID_KEY_RECEIVED_SUBVOL:
4094 if (memcmp(uuid, subvol_root->root_item.received_uuid,
4095 BTRFS_UUID_SIZE))
4096 ret = 1;
4097 break;
4098 }
4099
4100out:
4101 return ret;
4102}
4103
4104static int btrfs_uuid_rescan_kthread(void *data)
4105{
4106 struct btrfs_fs_info *fs_info = (struct btrfs_fs_info *)data;
4107 int ret;
4108
4109 /*
4110 * 1st step is to iterate through the existing UUID tree and
4111 * to delete all entries that contain outdated data.
4112 * 2nd step is to add all missing entries to the UUID tree.
4113 */
4114 ret = btrfs_uuid_tree_iterate(fs_info, btrfs_check_uuid_tree_entry);
4115 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004116 btrfs_warn(fs_info, "iterating uuid_tree failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004117 up(&fs_info->uuid_tree_rescan_sem);
4118 return ret;
4119 }
4120 return btrfs_uuid_scan_kthread(data);
4121}
4122
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004123int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info)
4124{
4125 struct btrfs_trans_handle *trans;
4126 struct btrfs_root *tree_root = fs_info->tree_root;
4127 struct btrfs_root *uuid_root;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004128 struct task_struct *task;
4129 int ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004130
4131 /*
4132 * 1 - root node
4133 * 1 - root item
4134 */
4135 trans = btrfs_start_transaction(tree_root, 2);
4136 if (IS_ERR(trans))
4137 return PTR_ERR(trans);
4138
4139 uuid_root = btrfs_create_tree(trans, fs_info,
4140 BTRFS_UUID_TREE_OBJECTID);
4141 if (IS_ERR(uuid_root)) {
David Sterba6d13f542015-04-24 19:12:01 +02004142 ret = PTR_ERR(uuid_root);
4143 btrfs_abort_transaction(trans, tree_root, ret);
4144 return ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004145 }
4146
4147 fs_info->uuid_root = uuid_root;
4148
Stefan Behrens803b2f52013-08-15 17:11:21 +02004149 ret = btrfs_commit_transaction(trans, tree_root);
4150 if (ret)
4151 return ret;
4152
4153 down(&fs_info->uuid_tree_rescan_sem);
4154 task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid");
4155 if (IS_ERR(task)) {
Stefan Behrens70f80172013-08-15 17:11:23 +02004156 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004157 btrfs_warn(fs_info, "failed to start uuid_scan task");
Stefan Behrens803b2f52013-08-15 17:11:21 +02004158 up(&fs_info->uuid_tree_rescan_sem);
4159 return PTR_ERR(task);
4160 }
4161
4162 return 0;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004163}
Stefan Behrens803b2f52013-08-15 17:11:21 +02004164
Stefan Behrens70f80172013-08-15 17:11:23 +02004165int btrfs_check_uuid_tree(struct btrfs_fs_info *fs_info)
4166{
4167 struct task_struct *task;
4168
4169 down(&fs_info->uuid_tree_rescan_sem);
4170 task = kthread_run(btrfs_uuid_rescan_kthread, fs_info, "btrfs-uuid");
4171 if (IS_ERR(task)) {
4172 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004173 btrfs_warn(fs_info, "failed to start uuid_rescan task");
Stefan Behrens70f80172013-08-15 17:11:23 +02004174 up(&fs_info->uuid_tree_rescan_sem);
4175 return PTR_ERR(task);
4176 }
4177
4178 return 0;
4179}
4180
Chris Mason8f18cf12008-04-25 16:53:30 -04004181/*
4182 * shrinking a device means finding all of the device extents past
4183 * the new size, and then following the back refs to the chunks.
4184 * The chunk relocation code actually frees the device extent
4185 */
4186int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
4187{
4188 struct btrfs_trans_handle *trans;
4189 struct btrfs_root *root = device->dev_root;
4190 struct btrfs_dev_extent *dev_extent = NULL;
4191 struct btrfs_path *path;
4192 u64 length;
Chris Mason8f18cf12008-04-25 16:53:30 -04004193 u64 chunk_offset;
4194 int ret;
4195 int slot;
Josef Bacikba1bf482009-09-11 16:11:19 -04004196 int failed = 0;
4197 bool retried = false;
Filipe Manana53e489b2015-06-02 14:43:21 +01004198 bool checked_pending_chunks = false;
Chris Mason8f18cf12008-04-25 16:53:30 -04004199 struct extent_buffer *l;
4200 struct btrfs_key key;
David Sterba6c417612011-04-13 15:41:04 +02004201 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04004202 u64 old_total = btrfs_super_total_bytes(super_copy);
Miao Xie7cc8e582014-09-03 21:35:38 +08004203 u64 old_size = btrfs_device_get_total_bytes(device);
4204 u64 diff = old_size - new_size;
Chris Mason8f18cf12008-04-25 16:53:30 -04004205
Stefan Behrens63a212a2012-11-05 18:29:28 +01004206 if (device->is_tgtdev_for_dev_replace)
4207 return -EINVAL;
4208
Chris Mason8f18cf12008-04-25 16:53:30 -04004209 path = btrfs_alloc_path();
4210 if (!path)
4211 return -ENOMEM;
4212
Chris Mason8f18cf12008-04-25 16:53:30 -04004213 path->reada = 2;
4214
Chris Mason7d9eb122008-07-08 14:19:17 -04004215 lock_chunks(root);
4216
Miao Xie7cc8e582014-09-03 21:35:38 +08004217 btrfs_device_set_total_bytes(device, new_size);
Josef Bacik2bf64752011-09-26 17:12:22 -04004218 if (device->writeable) {
Yan Zheng2b820322008-11-17 21:11:30 -05004219 device->fs_devices->total_rw_bytes -= diff;
Josef Bacik2bf64752011-09-26 17:12:22 -04004220 spin_lock(&root->fs_info->free_chunk_lock);
4221 root->fs_info->free_chunk_space -= diff;
4222 spin_unlock(&root->fs_info->free_chunk_lock);
4223 }
Chris Mason7d9eb122008-07-08 14:19:17 -04004224 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04004225
Josef Bacikba1bf482009-09-11 16:11:19 -04004226again:
Chris Mason8f18cf12008-04-25 16:53:30 -04004227 key.objectid = device->devid;
4228 key.offset = (u64)-1;
4229 key.type = BTRFS_DEV_EXTENT_KEY;
4230
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004231 do {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004232 mutex_lock(&root->fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004233 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004234 if (ret < 0) {
4235 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004236 goto done;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004237 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004238
4239 ret = btrfs_previous_item(root, path, 0, key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004240 if (ret)
4241 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004242 if (ret < 0)
4243 goto done;
4244 if (ret) {
4245 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02004246 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004247 break;
Chris Mason8f18cf12008-04-25 16:53:30 -04004248 }
4249
4250 l = path->nodes[0];
4251 slot = path->slots[0];
4252 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
4253
Josef Bacikba1bf482009-09-11 16:11:19 -04004254 if (key.objectid != device->devid) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004255 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004256 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004257 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004258 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004259
4260 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
4261 length = btrfs_dev_extent_length(l, dev_extent);
4262
Josef Bacikba1bf482009-09-11 16:11:19 -04004263 if (key.offset + length <= new_size) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004264 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004265 btrfs_release_path(path);
Chris Balld6397ba2009-04-27 07:29:03 -04004266 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004267 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004268
Chris Mason8f18cf12008-04-25 16:53:30 -04004269 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
David Sterbab3b4aa72011-04-21 01:20:15 +02004270 btrfs_release_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04004271
Zhaoleidc2ee4e2015-08-05 18:00:04 +08004272 ret = btrfs_relocate_chunk(root, chunk_offset);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004273 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Josef Bacikba1bf482009-09-11 16:11:19 -04004274 if (ret && ret != -ENOSPC)
Chris Mason8f18cf12008-04-25 16:53:30 -04004275 goto done;
Josef Bacikba1bf482009-09-11 16:11:19 -04004276 if (ret == -ENOSPC)
4277 failed++;
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004278 } while (key.offset-- > 0);
Josef Bacikba1bf482009-09-11 16:11:19 -04004279
4280 if (failed && !retried) {
4281 failed = 0;
4282 retried = true;
4283 goto again;
4284 } else if (failed && retried) {
4285 ret = -ENOSPC;
Josef Bacikba1bf482009-09-11 16:11:19 -04004286 goto done;
Chris Mason8f18cf12008-04-25 16:53:30 -04004287 }
4288
Chris Balld6397ba2009-04-27 07:29:03 -04004289 /* Shrinking succeeded, else we would be at "done". */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004290 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00004291 if (IS_ERR(trans)) {
4292 ret = PTR_ERR(trans);
4293 goto done;
4294 }
4295
Chris Balld6397ba2009-04-27 07:29:03 -04004296 lock_chunks(root);
Filipe Manana53e489b2015-06-02 14:43:21 +01004297
4298 /*
4299 * We checked in the above loop all device extents that were already in
4300 * the device tree. However before we have updated the device's
4301 * total_bytes to the new size, we might have had chunk allocations that
4302 * have not complete yet (new block groups attached to transaction
4303 * handles), and therefore their device extents were not yet in the
4304 * device tree and we missed them in the loop above. So if we have any
4305 * pending chunk using a device extent that overlaps the device range
4306 * that we can not use anymore, commit the current transaction and
4307 * repeat the search on the device tree - this way we guarantee we will
4308 * not have chunks using device extents that end beyond 'new_size'.
4309 */
4310 if (!checked_pending_chunks) {
4311 u64 start = new_size;
4312 u64 len = old_size - new_size;
4313
Jeff Mahoney499f3772015-06-15 09:41:17 -04004314 if (contains_pending_extent(trans->transaction, device,
4315 &start, len)) {
Filipe Manana53e489b2015-06-02 14:43:21 +01004316 unlock_chunks(root);
4317 checked_pending_chunks = true;
4318 failed = 0;
4319 retried = false;
4320 ret = btrfs_commit_transaction(trans, root);
4321 if (ret)
4322 goto done;
4323 goto again;
4324 }
4325 }
4326
Miao Xie7cc8e582014-09-03 21:35:38 +08004327 btrfs_device_set_disk_total_bytes(device, new_size);
Miao Xie935e5cc2014-09-03 21:35:33 +08004328 if (list_empty(&device->resized_list))
4329 list_add_tail(&device->resized_list,
4330 &root->fs_info->fs_devices->resized_devices);
Chris Balld6397ba2009-04-27 07:29:03 -04004331
Chris Balld6397ba2009-04-27 07:29:03 -04004332 WARN_ON(diff > old_total);
4333 btrfs_set_super_total_bytes(super_copy, old_total - diff);
4334 unlock_chunks(root);
Miao Xie2196d6e2014-09-03 21:35:41 +08004335
4336 /* Now btrfs_update_device() will change the on-disk size. */
4337 ret = btrfs_update_device(trans, device);
Chris Balld6397ba2009-04-27 07:29:03 -04004338 btrfs_end_transaction(trans, root);
Chris Mason8f18cf12008-04-25 16:53:30 -04004339done:
4340 btrfs_free_path(path);
Filipe Manana53e489b2015-06-02 14:43:21 +01004341 if (ret) {
4342 lock_chunks(root);
4343 btrfs_device_set_total_bytes(device, old_size);
4344 if (device->writeable)
4345 device->fs_devices->total_rw_bytes += diff;
4346 spin_lock(&root->fs_info->free_chunk_lock);
4347 root->fs_info->free_chunk_space += diff;
4348 spin_unlock(&root->fs_info->free_chunk_lock);
4349 unlock_chunks(root);
4350 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004351 return ret;
4352}
4353
Li Zefan125ccb02011-12-08 15:07:24 +08004354static int btrfs_add_system_chunk(struct btrfs_root *root,
Chris Mason0b86a832008-03-24 15:01:56 -04004355 struct btrfs_key *key,
4356 struct btrfs_chunk *chunk, int item_size)
4357{
David Sterba6c417612011-04-13 15:41:04 +02004358 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason0b86a832008-03-24 15:01:56 -04004359 struct btrfs_disk_key disk_key;
4360 u32 array_size;
4361 u8 *ptr;
4362
Miao Xiefe48a5c2014-09-03 21:35:39 +08004363 lock_chunks(root);
Chris Mason0b86a832008-03-24 15:01:56 -04004364 array_size = btrfs_super_sys_array_size(super_copy);
Gui Hecheng5f43f862014-04-21 20:13:11 +08004365 if (array_size + item_size + sizeof(disk_key)
Miao Xiefe48a5c2014-09-03 21:35:39 +08004366 > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE) {
4367 unlock_chunks(root);
Chris Mason0b86a832008-03-24 15:01:56 -04004368 return -EFBIG;
Miao Xiefe48a5c2014-09-03 21:35:39 +08004369 }
Chris Mason0b86a832008-03-24 15:01:56 -04004370
4371 ptr = super_copy->sys_chunk_array + array_size;
4372 btrfs_cpu_key_to_disk(&disk_key, key);
4373 memcpy(ptr, &disk_key, sizeof(disk_key));
4374 ptr += sizeof(disk_key);
4375 memcpy(ptr, chunk, item_size);
4376 item_size += sizeof(disk_key);
4377 btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
Miao Xiefe48a5c2014-09-03 21:35:39 +08004378 unlock_chunks(root);
4379
Chris Mason0b86a832008-03-24 15:01:56 -04004380 return 0;
4381}
4382
Miao Xieb2117a32011-01-05 10:07:28 +00004383/*
Arne Jansen73c5de02011-04-12 12:07:57 +02004384 * sort the devices in descending order by max_avail, total_avail
Miao Xieb2117a32011-01-05 10:07:28 +00004385 */
Arne Jansen73c5de02011-04-12 12:07:57 +02004386static int btrfs_cmp_device_info(const void *a, const void *b)
Miao Xieb2117a32011-01-05 10:07:28 +00004387{
Arne Jansen73c5de02011-04-12 12:07:57 +02004388 const struct btrfs_device_info *di_a = a;
4389 const struct btrfs_device_info *di_b = b;
Miao Xieb2117a32011-01-05 10:07:28 +00004390
Arne Jansen73c5de02011-04-12 12:07:57 +02004391 if (di_a->max_avail > di_b->max_avail)
4392 return -1;
4393 if (di_a->max_avail < di_b->max_avail)
4394 return 1;
4395 if (di_a->total_avail > di_b->total_avail)
4396 return -1;
4397 if (di_a->total_avail < di_b->total_avail)
4398 return 1;
Miao Xieb2117a32011-01-05 10:07:28 +00004399 return 0;
4400}
4401
David Woodhouse53b381b2013-01-29 18:40:14 -05004402static u32 find_raid56_stripe_len(u32 data_devices, u32 dev_stripe_target)
4403{
4404 /* TODO allow them to set a preferred stripe size */
4405 return 64 * 1024;
4406}
4407
4408static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type)
4409{
Zhao Leiffe2d202015-01-20 15:11:44 +08004410 if (!(type & BTRFS_BLOCK_GROUP_RAID56_MASK))
David Woodhouse53b381b2013-01-29 18:40:14 -05004411 return;
4412
Miao Xieceda0862013-04-11 10:30:16 +00004413 btrfs_set_fs_incompat(info, RAID56);
David Woodhouse53b381b2013-01-29 18:40:14 -05004414}
4415
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004416#define BTRFS_MAX_DEVS(r) ((BTRFS_LEAF_DATA_SIZE(r) \
4417 - sizeof(struct btrfs_item) \
4418 - sizeof(struct btrfs_chunk)) \
4419 / sizeof(struct btrfs_stripe) + 1)
4420
4421#define BTRFS_MAX_DEVS_SYS_CHUNK ((BTRFS_SYSTEM_CHUNK_ARRAY_SIZE \
4422 - 2 * sizeof(struct btrfs_disk_key) \
4423 - 2 * sizeof(struct btrfs_chunk)) \
4424 / sizeof(struct btrfs_stripe) + 1)
4425
Miao Xieb2117a32011-01-05 10:07:28 +00004426static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
Josef Bacik6df9a952013-06-27 13:22:46 -04004427 struct btrfs_root *extent_root, u64 start,
4428 u64 type)
Miao Xieb2117a32011-01-05 10:07:28 +00004429{
4430 struct btrfs_fs_info *info = extent_root->fs_info;
Miao Xieb2117a32011-01-05 10:07:28 +00004431 struct btrfs_fs_devices *fs_devices = info->fs_devices;
4432 struct list_head *cur;
Arne Jansen73c5de02011-04-12 12:07:57 +02004433 struct map_lookup *map = NULL;
Miao Xieb2117a32011-01-05 10:07:28 +00004434 struct extent_map_tree *em_tree;
4435 struct extent_map *em;
Arne Jansen73c5de02011-04-12 12:07:57 +02004436 struct btrfs_device_info *devices_info = NULL;
4437 u64 total_avail;
4438 int num_stripes; /* total number of stripes to allocate */
David Woodhouse53b381b2013-01-29 18:40:14 -05004439 int data_stripes; /* number of stripes that count for
4440 block group size */
Arne Jansen73c5de02011-04-12 12:07:57 +02004441 int sub_stripes; /* sub_stripes info for map */
4442 int dev_stripes; /* stripes per dev */
4443 int devs_max; /* max devs to use */
4444 int devs_min; /* min devs needed */
4445 int devs_increment; /* ndevs has to be a multiple of this */
4446 int ncopies; /* how many copies to data has */
Miao Xieb2117a32011-01-05 10:07:28 +00004447 int ret;
Arne Jansen73c5de02011-04-12 12:07:57 +02004448 u64 max_stripe_size;
4449 u64 max_chunk_size;
4450 u64 stripe_size;
4451 u64 num_bytes;
David Woodhouse53b381b2013-01-29 18:40:14 -05004452 u64 raid_stripe_len = BTRFS_STRIPE_LEN;
Arne Jansen73c5de02011-04-12 12:07:57 +02004453 int ndevs;
4454 int i;
4455 int j;
Liu Bo31e50222012-11-21 14:18:10 +00004456 int index;
Miao Xieb2117a32011-01-05 10:07:28 +00004457
Ilya Dryomov0c460c02012-03-27 17:09:17 +03004458 BUG_ON(!alloc_profile_is_valid(type, 0));
Arne Jansen73c5de02011-04-12 12:07:57 +02004459
Miao Xieb2117a32011-01-05 10:07:28 +00004460 if (list_empty(&fs_devices->alloc_list))
4461 return -ENOSPC;
4462
Liu Bo31e50222012-11-21 14:18:10 +00004463 index = __get_raid_index(type);
Arne Jansen73c5de02011-04-12 12:07:57 +02004464
Liu Bo31e50222012-11-21 14:18:10 +00004465 sub_stripes = btrfs_raid_array[index].sub_stripes;
4466 dev_stripes = btrfs_raid_array[index].dev_stripes;
4467 devs_max = btrfs_raid_array[index].devs_max;
4468 devs_min = btrfs_raid_array[index].devs_min;
4469 devs_increment = btrfs_raid_array[index].devs_increment;
4470 ncopies = btrfs_raid_array[index].ncopies;
Arne Jansen73c5de02011-04-12 12:07:57 +02004471
4472 if (type & BTRFS_BLOCK_GROUP_DATA) {
4473 max_stripe_size = 1024 * 1024 * 1024;
4474 max_chunk_size = 10 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004475 if (!devs_max)
4476 devs_max = BTRFS_MAX_DEVS(info->chunk_root);
Arne Jansen73c5de02011-04-12 12:07:57 +02004477 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason11003732012-01-06 15:47:38 -05004478 /* for larger filesystems, use larger metadata chunks */
4479 if (fs_devices->total_rw_bytes > 50ULL * 1024 * 1024 * 1024)
4480 max_stripe_size = 1024 * 1024 * 1024;
4481 else
4482 max_stripe_size = 256 * 1024 * 1024;
Arne Jansen73c5de02011-04-12 12:07:57 +02004483 max_chunk_size = max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004484 if (!devs_max)
4485 devs_max = BTRFS_MAX_DEVS(info->chunk_root);
Arne Jansen73c5de02011-04-12 12:07:57 +02004486 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
Chris Mason96bdc7d2012-01-16 08:13:11 -05004487 max_stripe_size = 32 * 1024 * 1024;
Arne Jansen73c5de02011-04-12 12:07:57 +02004488 max_chunk_size = 2 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004489 if (!devs_max)
4490 devs_max = BTRFS_MAX_DEVS_SYS_CHUNK;
Arne Jansen73c5de02011-04-12 12:07:57 +02004491 } else {
David Sterba351fd352014-05-15 16:48:20 +02004492 btrfs_err(info, "invalid chunk type 0x%llx requested",
Arne Jansen73c5de02011-04-12 12:07:57 +02004493 type);
4494 BUG_ON(1);
4495 }
4496
4497 /* we don't want a chunk larger than 10% of writeable space */
4498 max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1),
4499 max_chunk_size);
Miao Xieb2117a32011-01-05 10:07:28 +00004500
David Sterba31e818f2015-02-20 18:00:26 +01004501 devices_info = kcalloc(fs_devices->rw_devices, sizeof(*devices_info),
Miao Xieb2117a32011-01-05 10:07:28 +00004502 GFP_NOFS);
4503 if (!devices_info)
4504 return -ENOMEM;
4505
Arne Jansen73c5de02011-04-12 12:07:57 +02004506 cur = fs_devices->alloc_list.next;
4507
4508 /*
4509 * in the first pass through the devices list, we gather information
4510 * about the available holes on each device.
4511 */
4512 ndevs = 0;
4513 while (cur != &fs_devices->alloc_list) {
4514 struct btrfs_device *device;
4515 u64 max_avail;
4516 u64 dev_offset;
4517
4518 device = list_entry(cur, struct btrfs_device, dev_alloc_list);
4519
4520 cur = cur->next;
4521
4522 if (!device->writeable) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00004523 WARN(1, KERN_ERR
Frank Holtonefe120a2013-12-20 11:37:06 -05004524 "BTRFS: read-only device in alloc_list\n");
Arne Jansen73c5de02011-04-12 12:07:57 +02004525 continue;
4526 }
4527
Stefan Behrens63a212a2012-11-05 18:29:28 +01004528 if (!device->in_fs_metadata ||
4529 device->is_tgtdev_for_dev_replace)
Arne Jansen73c5de02011-04-12 12:07:57 +02004530 continue;
4531
4532 if (device->total_bytes > device->bytes_used)
4533 total_avail = device->total_bytes - device->bytes_used;
4534 else
4535 total_avail = 0;
liubo38c01b92011-08-02 02:39:03 +00004536
4537 /* If there is no space on this device, skip it. */
4538 if (total_avail == 0)
4539 continue;
Arne Jansen73c5de02011-04-12 12:07:57 +02004540
Josef Bacik6df9a952013-06-27 13:22:46 -04004541 ret = find_free_dev_extent(trans, device,
Arne Jansen73c5de02011-04-12 12:07:57 +02004542 max_stripe_size * dev_stripes,
4543 &dev_offset, &max_avail);
4544 if (ret && ret != -ENOSPC)
4545 goto error;
4546
4547 if (ret == 0)
4548 max_avail = max_stripe_size * dev_stripes;
4549
4550 if (max_avail < BTRFS_STRIPE_LEN * dev_stripes)
4551 continue;
4552
Eric Sandeen063d0062013-01-31 00:55:01 +00004553 if (ndevs == fs_devices->rw_devices) {
4554 WARN(1, "%s: found more than %llu devices\n",
4555 __func__, fs_devices->rw_devices);
4556 break;
4557 }
Arne Jansen73c5de02011-04-12 12:07:57 +02004558 devices_info[ndevs].dev_offset = dev_offset;
4559 devices_info[ndevs].max_avail = max_avail;
4560 devices_info[ndevs].total_avail = total_avail;
4561 devices_info[ndevs].dev = device;
4562 ++ndevs;
4563 }
4564
4565 /*
4566 * now sort the devices by hole size / available space
4567 */
4568 sort(devices_info, ndevs, sizeof(struct btrfs_device_info),
4569 btrfs_cmp_device_info, NULL);
4570
4571 /* round down to number of usable stripes */
4572 ndevs -= ndevs % devs_increment;
4573
4574 if (ndevs < devs_increment * sub_stripes || ndevs < devs_min) {
4575 ret = -ENOSPC;
4576 goto error;
4577 }
4578
4579 if (devs_max && ndevs > devs_max)
4580 ndevs = devs_max;
4581 /*
4582 * the primary goal is to maximize the number of stripes, so use as many
4583 * devices as possible, even if the stripes are not maximum sized.
4584 */
4585 stripe_size = devices_info[ndevs-1].max_avail;
4586 num_stripes = ndevs * dev_stripes;
4587
David Woodhouse53b381b2013-01-29 18:40:14 -05004588 /*
4589 * this will have to be fixed for RAID1 and RAID10 over
4590 * more drives
4591 */
4592 data_stripes = num_stripes / ncopies;
4593
David Woodhouse53b381b2013-01-29 18:40:14 -05004594 if (type & BTRFS_BLOCK_GROUP_RAID5) {
4595 raid_stripe_len = find_raid56_stripe_len(ndevs - 1,
4596 btrfs_super_stripesize(info->super_copy));
4597 data_stripes = num_stripes - 1;
4598 }
4599 if (type & BTRFS_BLOCK_GROUP_RAID6) {
4600 raid_stripe_len = find_raid56_stripe_len(ndevs - 2,
4601 btrfs_super_stripesize(info->super_copy));
4602 data_stripes = num_stripes - 2;
4603 }
Chris Mason86db2572013-02-20 16:23:40 -05004604
4605 /*
4606 * Use the number of data stripes to figure out how big this chunk
4607 * is really going to be in terms of logical address space,
4608 * and compare that answer with the max chunk size
4609 */
4610 if (stripe_size * data_stripes > max_chunk_size) {
4611 u64 mask = (1ULL << 24) - 1;
David Sterbab8b93ad2015-01-16 17:26:13 +01004612
4613 stripe_size = div_u64(max_chunk_size, data_stripes);
Chris Mason86db2572013-02-20 16:23:40 -05004614
4615 /* bump the answer up to a 16MB boundary */
4616 stripe_size = (stripe_size + mask) & ~mask;
4617
4618 /* but don't go higher than the limits we found
4619 * while searching for free extents
4620 */
4621 if (stripe_size > devices_info[ndevs-1].max_avail)
4622 stripe_size = devices_info[ndevs-1].max_avail;
4623 }
4624
David Sterbab8b93ad2015-01-16 17:26:13 +01004625 stripe_size = div_u64(stripe_size, dev_stripes);
Ilya Dryomov37db63a2012-04-13 17:05:08 +03004626
4627 /* align to BTRFS_STRIPE_LEN */
David Sterbab8b93ad2015-01-16 17:26:13 +01004628 stripe_size = div_u64(stripe_size, raid_stripe_len);
David Woodhouse53b381b2013-01-29 18:40:14 -05004629 stripe_size *= raid_stripe_len;
Arne Jansen73c5de02011-04-12 12:07:57 +02004630
Miao Xieb2117a32011-01-05 10:07:28 +00004631 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
4632 if (!map) {
4633 ret = -ENOMEM;
4634 goto error;
4635 }
4636 map->num_stripes = num_stripes;
Chris Mason9b3f68b2008-04-18 10:29:51 -04004637
Arne Jansen73c5de02011-04-12 12:07:57 +02004638 for (i = 0; i < ndevs; ++i) {
4639 for (j = 0; j < dev_stripes; ++j) {
4640 int s = i * dev_stripes + j;
4641 map->stripes[s].dev = devices_info[i].dev;
4642 map->stripes[s].physical = devices_info[i].dev_offset +
4643 j * stripe_size;
Chris Masona40a90a2008-04-18 11:55:51 -04004644 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004645 }
Chris Mason593060d2008-03-25 16:50:33 -04004646 map->sector_size = extent_root->sectorsize;
David Woodhouse53b381b2013-01-29 18:40:14 -05004647 map->stripe_len = raid_stripe_len;
4648 map->io_align = raid_stripe_len;
4649 map->io_width = raid_stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04004650 map->type = type;
Chris Mason321aecc2008-04-16 10:49:51 -04004651 map->sub_stripes = sub_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004652
David Woodhouse53b381b2013-01-29 18:40:14 -05004653 num_bytes = stripe_size * data_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004654
Arne Jansen73c5de02011-04-12 12:07:57 +02004655 trace_btrfs_chunk_alloc(info->chunk_root, map, start, num_bytes);
liubo1abe9b82011-03-24 11:18:59 +00004656
David Sterba172ddd62011-04-21 00:48:27 +02004657 em = alloc_extent_map();
Yan Zheng2b820322008-11-17 21:11:30 -05004658 if (!em) {
Wang Shilong298a8f92014-06-19 10:42:52 +08004659 kfree(map);
Miao Xieb2117a32011-01-05 10:07:28 +00004660 ret = -ENOMEM;
4661 goto error;
Yan Zheng2b820322008-11-17 21:11:30 -05004662 }
Wang Shilong298a8f92014-06-19 10:42:52 +08004663 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Chris Mason0b86a832008-03-24 15:01:56 -04004664 em->bdev = (struct block_device *)map;
Yan Zheng2b820322008-11-17 21:11:30 -05004665 em->start = start;
Arne Jansen73c5de02011-04-12 12:07:57 +02004666 em->len = num_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04004667 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04004668 em->block_len = em->len;
Josef Bacik6df9a952013-06-27 13:22:46 -04004669 em->orig_block_len = stripe_size;
Chris Mason0b86a832008-03-24 15:01:56 -04004670
Chris Mason0b86a832008-03-24 15:01:56 -04004671 em_tree = &extent_root->fs_info->mapping_tree.map_tree;
Chris Mason890871b2009-09-02 16:24:52 -04004672 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004673 ret = add_extent_mapping(em_tree, em, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004674 if (!ret) {
4675 list_add_tail(&em->list, &trans->transaction->pending_chunks);
4676 atomic_inc(&em->refs);
4677 }
Chris Mason890871b2009-09-02 16:24:52 -04004678 write_unlock(&em_tree->lock);
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004679 if (ret) {
4680 free_extent_map(em);
Mark Fasheh1dd46022011-09-08 17:29:00 -07004681 goto error;
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004682 }
Yan Zheng2b820322008-11-17 21:11:30 -05004683
Josef Bacik04487482013-01-29 15:03:37 -05004684 ret = btrfs_make_block_group(trans, extent_root, 0, type,
4685 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4686 start, num_bytes);
Josef Bacik6df9a952013-06-27 13:22:46 -04004687 if (ret)
4688 goto error_del_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05004689
Miao Xie7cc8e582014-09-03 21:35:38 +08004690 for (i = 0; i < map->num_stripes; i++) {
4691 num_bytes = map->stripes[i].dev->bytes_used + stripe_size;
4692 btrfs_device_set_bytes_used(map->stripes[i].dev, num_bytes);
4693 }
Miao Xie43530c42014-09-03 21:35:36 +08004694
Miao Xie1c116182014-09-03 21:35:37 +08004695 spin_lock(&extent_root->fs_info->free_chunk_lock);
4696 extent_root->fs_info->free_chunk_space -= (stripe_size *
4697 map->num_stripes);
4698 spin_unlock(&extent_root->fs_info->free_chunk_lock);
4699
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004700 free_extent_map(em);
David Woodhouse53b381b2013-01-29 18:40:14 -05004701 check_raid56_incompat_flag(extent_root->fs_info, type);
4702
Miao Xieb2117a32011-01-05 10:07:28 +00004703 kfree(devices_info);
Yan Zheng2b820322008-11-17 21:11:30 -05004704 return 0;
Miao Xieb2117a32011-01-05 10:07:28 +00004705
Josef Bacik6df9a952013-06-27 13:22:46 -04004706error_del_extent:
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004707 write_lock(&em_tree->lock);
4708 remove_extent_mapping(em_tree, em);
4709 write_unlock(&em_tree->lock);
4710
4711 /* One for our allocation */
4712 free_extent_map(em);
4713 /* One for the tree reference */
4714 free_extent_map(em);
Filipe Manana495e64f2014-12-02 18:07:30 +00004715 /* One for the pending_chunks list reference */
4716 free_extent_map(em);
Miao Xieb2117a32011-01-05 10:07:28 +00004717error:
Miao Xieb2117a32011-01-05 10:07:28 +00004718 kfree(devices_info);
4719 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004720}
4721
Josef Bacik6df9a952013-06-27 13:22:46 -04004722int btrfs_finish_chunk_alloc(struct btrfs_trans_handle *trans,
Yan Zheng2b820322008-11-17 21:11:30 -05004723 struct btrfs_root *extent_root,
Josef Bacik6df9a952013-06-27 13:22:46 -04004724 u64 chunk_offset, u64 chunk_size)
Yan Zheng2b820322008-11-17 21:11:30 -05004725{
Yan Zheng2b820322008-11-17 21:11:30 -05004726 struct btrfs_key key;
4727 struct btrfs_root *chunk_root = extent_root->fs_info->chunk_root;
4728 struct btrfs_device *device;
4729 struct btrfs_chunk *chunk;
4730 struct btrfs_stripe *stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004731 struct extent_map_tree *em_tree;
4732 struct extent_map *em;
4733 struct map_lookup *map;
4734 size_t item_size;
4735 u64 dev_offset;
4736 u64 stripe_size;
4737 int i = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004738 int ret;
4739
Josef Bacik6df9a952013-06-27 13:22:46 -04004740 em_tree = &extent_root->fs_info->mapping_tree.map_tree;
4741 read_lock(&em_tree->lock);
4742 em = lookup_extent_mapping(em_tree, chunk_offset, chunk_size);
4743 read_unlock(&em_tree->lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004744
Josef Bacik6df9a952013-06-27 13:22:46 -04004745 if (!em) {
4746 btrfs_crit(extent_root->fs_info, "unable to find logical "
4747 "%Lu len %Lu", chunk_offset, chunk_size);
4748 return -EINVAL;
4749 }
4750
4751 if (em->start != chunk_offset || em->len != chunk_size) {
4752 btrfs_crit(extent_root->fs_info, "found a bad mapping, wanted"
David Sterba351fd352014-05-15 16:48:20 +02004753 " %Lu-%Lu, found %Lu-%Lu", chunk_offset,
Josef Bacik6df9a952013-06-27 13:22:46 -04004754 chunk_size, em->start, em->len);
4755 free_extent_map(em);
4756 return -EINVAL;
4757 }
4758
4759 map = (struct map_lookup *)em->bdev;
4760 item_size = btrfs_chunk_item_size(map->num_stripes);
4761 stripe_size = em->orig_block_len;
4762
4763 chunk = kzalloc(item_size, GFP_NOFS);
4764 if (!chunk) {
4765 ret = -ENOMEM;
4766 goto out;
4767 }
4768
4769 for (i = 0; i < map->num_stripes; i++) {
4770 device = map->stripes[i].dev;
4771 dev_offset = map->stripes[i].physical;
4772
Yan Zheng2b820322008-11-17 21:11:30 -05004773 ret = btrfs_update_device(trans, device);
Mark Fasheh3acd3952011-09-08 17:40:01 -07004774 if (ret)
Josef Bacik6df9a952013-06-27 13:22:46 -04004775 goto out;
4776 ret = btrfs_alloc_dev_extent(trans, device,
4777 chunk_root->root_key.objectid,
4778 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4779 chunk_offset, dev_offset,
4780 stripe_size);
4781 if (ret)
4782 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05004783 }
4784
Yan Zheng2b820322008-11-17 21:11:30 -05004785 stripe = &chunk->stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004786 for (i = 0; i < map->num_stripes; i++) {
4787 device = map->stripes[i].dev;
4788 dev_offset = map->stripes[i].physical;
Yan Zheng2b820322008-11-17 21:11:30 -05004789
4790 btrfs_set_stack_stripe_devid(stripe, device->devid);
4791 btrfs_set_stack_stripe_offset(stripe, dev_offset);
4792 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
4793 stripe++;
Yan Zheng2b820322008-11-17 21:11:30 -05004794 }
4795
4796 btrfs_set_stack_chunk_length(chunk, chunk_size);
4797 btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
4798 btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len);
4799 btrfs_set_stack_chunk_type(chunk, map->type);
4800 btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes);
4801 btrfs_set_stack_chunk_io_align(chunk, map->stripe_len);
4802 btrfs_set_stack_chunk_io_width(chunk, map->stripe_len);
4803 btrfs_set_stack_chunk_sector_size(chunk, extent_root->sectorsize);
4804 btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes);
4805
4806 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
4807 key.type = BTRFS_CHUNK_ITEM_KEY;
4808 key.offset = chunk_offset;
4809
4810 ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004811 if (ret == 0 && map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
4812 /*
4813 * TODO: Cleanup of inserted chunk root in case of
4814 * failure.
4815 */
Li Zefan125ccb02011-12-08 15:07:24 +08004816 ret = btrfs_add_system_chunk(chunk_root, &key, chunk,
Yan Zheng2b820322008-11-17 21:11:30 -05004817 item_size);
Yan Zheng2b820322008-11-17 21:11:30 -05004818 }
liubo1abe9b82011-03-24 11:18:59 +00004819
Josef Bacik6df9a952013-06-27 13:22:46 -04004820out:
Yan Zheng2b820322008-11-17 21:11:30 -05004821 kfree(chunk);
Josef Bacik6df9a952013-06-27 13:22:46 -04004822 free_extent_map(em);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004823 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004824}
4825
4826/*
4827 * Chunk allocation falls into two parts. The first part does works
4828 * that make the new allocated chunk useable, but not do any operation
4829 * that modifies the chunk tree. The second part does the works that
4830 * require modifying the chunk tree. This division is important for the
4831 * bootstrap process of adding storage to a seed btrfs.
4832 */
4833int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
4834 struct btrfs_root *extent_root, u64 type)
4835{
4836 u64 chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05004837
Filipe Mananaa9629592015-05-18 19:11:40 +01004838 ASSERT(mutex_is_locked(&extent_root->fs_info->chunk_mutex));
Josef Bacik6df9a952013-06-27 13:22:46 -04004839 chunk_offset = find_next_chunk(extent_root->fs_info);
4840 return __btrfs_alloc_chunk(trans, extent_root, chunk_offset, type);
Yan Zheng2b820322008-11-17 21:11:30 -05004841}
4842
Chris Masond3977122009-01-05 21:25:51 -05004843static noinline int init_first_rw_device(struct btrfs_trans_handle *trans,
Yan Zheng2b820322008-11-17 21:11:30 -05004844 struct btrfs_root *root,
4845 struct btrfs_device *device)
4846{
4847 u64 chunk_offset;
4848 u64 sys_chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05004849 u64 alloc_profile;
Yan Zheng2b820322008-11-17 21:11:30 -05004850 struct btrfs_fs_info *fs_info = root->fs_info;
4851 struct btrfs_root *extent_root = fs_info->extent_root;
4852 int ret;
4853
Josef Bacik6df9a952013-06-27 13:22:46 -04004854 chunk_offset = find_next_chunk(fs_info);
Miao Xiede98ced2013-01-29 10:13:12 +00004855 alloc_profile = btrfs_get_alloc_profile(extent_root, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004856 ret = __btrfs_alloc_chunk(trans, extent_root, chunk_offset,
4857 alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004858 if (ret)
4859 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004860
Josef Bacik6df9a952013-06-27 13:22:46 -04004861 sys_chunk_offset = find_next_chunk(root->fs_info);
Miao Xiede98ced2013-01-29 10:13:12 +00004862 alloc_profile = btrfs_get_alloc_profile(fs_info->chunk_root, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004863 ret = __btrfs_alloc_chunk(trans, extent_root, sys_chunk_offset,
4864 alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004865 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004866}
4867
Miao Xied20983b2014-07-03 18:22:13 +08004868static inline int btrfs_chunk_max_errors(struct map_lookup *map)
4869{
4870 int max_errors;
4871
4872 if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
4873 BTRFS_BLOCK_GROUP_RAID10 |
4874 BTRFS_BLOCK_GROUP_RAID5 |
4875 BTRFS_BLOCK_GROUP_DUP)) {
4876 max_errors = 1;
4877 } else if (map->type & BTRFS_BLOCK_GROUP_RAID6) {
4878 max_errors = 2;
4879 } else {
4880 max_errors = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004881 }
4882
Miao Xied20983b2014-07-03 18:22:13 +08004883 return max_errors;
Yan Zheng2b820322008-11-17 21:11:30 -05004884}
4885
4886int btrfs_chunk_readonly(struct btrfs_root *root, u64 chunk_offset)
4887{
4888 struct extent_map *em;
4889 struct map_lookup *map;
4890 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
4891 int readonly = 0;
Miao Xied20983b2014-07-03 18:22:13 +08004892 int miss_ndevs = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004893 int i;
4894
Chris Mason890871b2009-09-02 16:24:52 -04004895 read_lock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004896 em = lookup_extent_mapping(&map_tree->map_tree, chunk_offset, 1);
Chris Mason890871b2009-09-02 16:24:52 -04004897 read_unlock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004898 if (!em)
4899 return 1;
4900
4901 map = (struct map_lookup *)em->bdev;
4902 for (i = 0; i < map->num_stripes; i++) {
Miao Xied20983b2014-07-03 18:22:13 +08004903 if (map->stripes[i].dev->missing) {
4904 miss_ndevs++;
4905 continue;
4906 }
4907
Yan Zheng2b820322008-11-17 21:11:30 -05004908 if (!map->stripes[i].dev->writeable) {
4909 readonly = 1;
Miao Xied20983b2014-07-03 18:22:13 +08004910 goto end;
Yan Zheng2b820322008-11-17 21:11:30 -05004911 }
4912 }
Miao Xied20983b2014-07-03 18:22:13 +08004913
4914 /*
4915 * If the number of missing devices is larger than max errors,
4916 * we can not write the data into that chunk successfully, so
4917 * set it readonly.
4918 */
4919 if (miss_ndevs > btrfs_chunk_max_errors(map))
4920 readonly = 1;
4921end:
Yan Zheng2b820322008-11-17 21:11:30 -05004922 free_extent_map(em);
4923 return readonly;
Chris Mason0b86a832008-03-24 15:01:56 -04004924}
4925
4926void btrfs_mapping_init(struct btrfs_mapping_tree *tree)
4927{
David Sterbaa8067e02011-04-21 00:34:43 +02004928 extent_map_tree_init(&tree->map_tree);
Chris Mason0b86a832008-03-24 15:01:56 -04004929}
4930
4931void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree)
4932{
4933 struct extent_map *em;
4934
Chris Masond3977122009-01-05 21:25:51 -05004935 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04004936 write_lock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04004937 em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1);
4938 if (em)
4939 remove_extent_mapping(&tree->map_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04004940 write_unlock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04004941 if (!em)
4942 break;
Chris Mason0b86a832008-03-24 15:01:56 -04004943 /* once for us */
4944 free_extent_map(em);
4945 /* once for the tree */
4946 free_extent_map(em);
4947 }
4948}
4949
Stefan Behrens5d964052012-11-05 14:59:07 +01004950int btrfs_num_copies(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
Chris Masonf1885912008-04-09 16:28:12 -04004951{
Stefan Behrens5d964052012-11-05 14:59:07 +01004952 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Masonf1885912008-04-09 16:28:12 -04004953 struct extent_map *em;
4954 struct map_lookup *map;
4955 struct extent_map_tree *em_tree = &map_tree->map_tree;
4956 int ret;
4957
Chris Mason890871b2009-09-02 16:24:52 -04004958 read_lock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04004959 em = lookup_extent_mapping(em_tree, logical, len);
Chris Mason890871b2009-09-02 16:24:52 -04004960 read_unlock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04004961
Josef Bacikfb7669b2013-04-23 10:53:18 -04004962 /*
4963 * We could return errors for these cases, but that could get ugly and
4964 * we'd probably do the same thing which is just not do anything else
4965 * and exit, so return 1 so the callers don't try to use other copies.
4966 */
4967 if (!em) {
David Sterba351fd352014-05-15 16:48:20 +02004968 btrfs_crit(fs_info, "No mapping for %Lu-%Lu", logical,
Josef Bacikfb7669b2013-04-23 10:53:18 -04004969 logical+len);
4970 return 1;
4971 }
4972
4973 if (em->start > logical || em->start + em->len < logical) {
David Sterbaccf39f92013-07-11 15:41:11 +02004974 btrfs_crit(fs_info, "Invalid mapping for %Lu-%Lu, got "
David Sterba351fd352014-05-15 16:48:20 +02004975 "%Lu-%Lu", logical, logical+len, em->start,
Josef Bacikfb7669b2013-04-23 10:53:18 -04004976 em->start + em->len);
Liu Bo7d3d1742013-09-29 10:33:16 +08004977 free_extent_map(em);
Josef Bacikfb7669b2013-04-23 10:53:18 -04004978 return 1;
4979 }
4980
Chris Masonf1885912008-04-09 16:28:12 -04004981 map = (struct map_lookup *)em->bdev;
4982 if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1))
4983 ret = map->num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04004984 else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
4985 ret = map->sub_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05004986 else if (map->type & BTRFS_BLOCK_GROUP_RAID5)
4987 ret = 2;
4988 else if (map->type & BTRFS_BLOCK_GROUP_RAID6)
4989 ret = 3;
Chris Masonf1885912008-04-09 16:28:12 -04004990 else
4991 ret = 1;
4992 free_extent_map(em);
Stefan Behrensad6d6202012-11-06 15:06:47 +01004993
4994 btrfs_dev_replace_lock(&fs_info->dev_replace);
4995 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace))
4996 ret++;
4997 btrfs_dev_replace_unlock(&fs_info->dev_replace);
4998
Chris Masonf1885912008-04-09 16:28:12 -04004999 return ret;
5000}
5001
David Woodhouse53b381b2013-01-29 18:40:14 -05005002unsigned long btrfs_full_stripe_len(struct btrfs_root *root,
5003 struct btrfs_mapping_tree *map_tree,
5004 u64 logical)
5005{
5006 struct extent_map *em;
5007 struct map_lookup *map;
5008 struct extent_map_tree *em_tree = &map_tree->map_tree;
5009 unsigned long len = root->sectorsize;
5010
5011 read_lock(&em_tree->lock);
5012 em = lookup_extent_mapping(em_tree, logical, len);
5013 read_unlock(&em_tree->lock);
5014 BUG_ON(!em);
5015
5016 BUG_ON(em->start > logical || em->start + em->len < logical);
5017 map = (struct map_lookup *)em->bdev;
Zhao Leiffe2d202015-01-20 15:11:44 +08005018 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
David Woodhouse53b381b2013-01-29 18:40:14 -05005019 len = map->stripe_len * nr_data_stripes(map);
David Woodhouse53b381b2013-01-29 18:40:14 -05005020 free_extent_map(em);
5021 return len;
5022}
5023
5024int btrfs_is_parity_mirror(struct btrfs_mapping_tree *map_tree,
5025 u64 logical, u64 len, int mirror_num)
5026{
5027 struct extent_map *em;
5028 struct map_lookup *map;
5029 struct extent_map_tree *em_tree = &map_tree->map_tree;
5030 int ret = 0;
5031
5032 read_lock(&em_tree->lock);
5033 em = lookup_extent_mapping(em_tree, logical, len);
5034 read_unlock(&em_tree->lock);
5035 BUG_ON(!em);
5036
5037 BUG_ON(em->start > logical || em->start + em->len < logical);
5038 map = (struct map_lookup *)em->bdev;
Zhao Leiffe2d202015-01-20 15:11:44 +08005039 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
David Woodhouse53b381b2013-01-29 18:40:14 -05005040 ret = 1;
5041 free_extent_map(em);
5042 return ret;
5043}
5044
Stefan Behrens30d98612012-11-06 14:52:18 +01005045static int find_live_mirror(struct btrfs_fs_info *fs_info,
5046 struct map_lookup *map, int first, int num,
5047 int optimal, int dev_replace_is_ongoing)
Chris Masondfe25022008-05-13 13:46:40 -04005048{
5049 int i;
Stefan Behrens30d98612012-11-06 14:52:18 +01005050 int tolerance;
5051 struct btrfs_device *srcdev;
5052
5053 if (dev_replace_is_ongoing &&
5054 fs_info->dev_replace.cont_reading_from_srcdev_mode ==
5055 BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID)
5056 srcdev = fs_info->dev_replace.srcdev;
5057 else
5058 srcdev = NULL;
5059
5060 /*
5061 * try to avoid the drive that is the source drive for a
5062 * dev-replace procedure, only choose it if no other non-missing
5063 * mirror is available
5064 */
5065 for (tolerance = 0; tolerance < 2; tolerance++) {
5066 if (map->stripes[optimal].dev->bdev &&
5067 (tolerance || map->stripes[optimal].dev != srcdev))
5068 return optimal;
5069 for (i = first; i < first + num; i++) {
5070 if (map->stripes[i].dev->bdev &&
5071 (tolerance || map->stripes[i].dev != srcdev))
5072 return i;
5073 }
Chris Masondfe25022008-05-13 13:46:40 -04005074 }
Stefan Behrens30d98612012-11-06 14:52:18 +01005075
Chris Masondfe25022008-05-13 13:46:40 -04005076 /* we couldn't find one that doesn't fail. Just return something
5077 * and the io error handling code will clean up eventually
5078 */
5079 return optimal;
5080}
5081
David Woodhouse53b381b2013-01-29 18:40:14 -05005082static inline int parity_smaller(u64 a, u64 b)
5083{
5084 return a > b;
5085}
5086
5087/* Bubble-sort the stripe set to put the parity/syndrome stripes last */
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005088static void sort_parity_stripes(struct btrfs_bio *bbio, int num_stripes)
David Woodhouse53b381b2013-01-29 18:40:14 -05005089{
5090 struct btrfs_bio_stripe s;
5091 int i;
5092 u64 l;
5093 int again = 1;
5094
5095 while (again) {
5096 again = 0;
Zhao Leicc7539e2015-01-20 15:11:32 +08005097 for (i = 0; i < num_stripes - 1; i++) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005098 if (parity_smaller(bbio->raid_map[i],
5099 bbio->raid_map[i+1])) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005100 s = bbio->stripes[i];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005101 l = bbio->raid_map[i];
David Woodhouse53b381b2013-01-29 18:40:14 -05005102 bbio->stripes[i] = bbio->stripes[i+1];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005103 bbio->raid_map[i] = bbio->raid_map[i+1];
David Woodhouse53b381b2013-01-29 18:40:14 -05005104 bbio->stripes[i+1] = s;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005105 bbio->raid_map[i+1] = l;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005106
David Woodhouse53b381b2013-01-29 18:40:14 -05005107 again = 1;
5108 }
5109 }
5110 }
5111}
5112
Zhao Lei6e9606d2015-01-20 15:11:34 +08005113static struct btrfs_bio *alloc_btrfs_bio(int total_stripes, int real_stripes)
5114{
5115 struct btrfs_bio *bbio = kzalloc(
Chris Masone57cf212015-02-19 17:51:39 -08005116 /* the size of the btrfs_bio */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005117 sizeof(struct btrfs_bio) +
Chris Masone57cf212015-02-19 17:51:39 -08005118 /* plus the variable array for the stripes */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005119 sizeof(struct btrfs_bio_stripe) * (total_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005120 /* plus the variable array for the tgt dev */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005121 sizeof(int) * (real_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005122 /*
5123 * plus the raid_map, which includes both the tgt dev
5124 * and the stripes
5125 */
5126 sizeof(u64) * (total_stripes),
Michal Hocko277fb5f2015-08-19 14:17:41 +02005127 GFP_NOFS|__GFP_NOFAIL);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005128
5129 atomic_set(&bbio->error, 0);
5130 atomic_set(&bbio->refs, 1);
5131
5132 return bbio;
5133}
5134
5135void btrfs_get_bbio(struct btrfs_bio *bbio)
5136{
5137 WARN_ON(!atomic_read(&bbio->refs));
5138 atomic_inc(&bbio->refs);
5139}
5140
5141void btrfs_put_bbio(struct btrfs_bio *bbio)
5142{
5143 if (!bbio)
5144 return;
5145 if (atomic_dec_and_test(&bbio->refs))
5146 kfree(bbio);
5147}
5148
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005149static int __btrfs_map_block(struct btrfs_fs_info *fs_info, int rw,
Chris Masonf2d8d742008-04-21 10:03:05 -04005150 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005151 struct btrfs_bio **bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005152 int mirror_num, int need_raid_map)
Chris Mason0b86a832008-03-24 15:01:56 -04005153{
5154 struct extent_map *em;
5155 struct map_lookup *map;
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005156 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Mason0b86a832008-03-24 15:01:56 -04005157 struct extent_map_tree *em_tree = &map_tree->map_tree;
5158 u64 offset;
Chris Mason593060d2008-03-25 16:50:33 -04005159 u64 stripe_offset;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005160 u64 stripe_end_offset;
Chris Mason593060d2008-03-25 16:50:33 -04005161 u64 stripe_nr;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005162 u64 stripe_nr_orig;
5163 u64 stripe_nr_end;
David Woodhouse53b381b2013-01-29 18:40:14 -05005164 u64 stripe_len;
David Sterba9d644a62015-02-20 18:42:11 +01005165 u32 stripe_index;
Chris Masoncea9e442008-04-09 16:28:12 -04005166 int i;
Li Zefande11cc12011-12-01 12:55:47 +08005167 int ret = 0;
Chris Masonf2d8d742008-04-21 10:03:05 -04005168 int num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04005169 int max_errors = 0;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005170 int tgtdev_indexes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005171 struct btrfs_bio *bbio = NULL;
Stefan Behrens472262f2012-11-06 14:43:46 +01005172 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
5173 int dev_replace_is_ongoing = 0;
5174 int num_alloc_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005175 int patch_the_first_stripe_for_dev_replace = 0;
5176 u64 physical_to_patch_in_first_stripe = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05005177 u64 raid56_full_stripe_start = (u64)-1;
Chris Mason0b86a832008-03-24 15:01:56 -04005178
Chris Mason890871b2009-09-02 16:24:52 -04005179 read_lock(&em_tree->lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005180 em = lookup_extent_mapping(em_tree, logical, *length);
Chris Mason890871b2009-09-02 16:24:52 -04005181 read_unlock(&em_tree->lock);
Chris Masonf2d8d742008-04-21 10:03:05 -04005182
Chris Mason3b951512008-04-17 11:29:12 -04005183 if (!em) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005184 btrfs_crit(fs_info, "unable to find logical %llu len %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005185 logical, *length);
Josef Bacik9bb91872013-04-19 23:45:33 -04005186 return -EINVAL;
Chris Mason3b951512008-04-17 11:29:12 -04005187 }
Chris Mason0b86a832008-03-24 15:01:56 -04005188
Josef Bacik9bb91872013-04-19 23:45:33 -04005189 if (em->start > logical || em->start + em->len < logical) {
5190 btrfs_crit(fs_info, "found a bad mapping, wanted %Lu, "
David Sterba351fd352014-05-15 16:48:20 +02005191 "found %Lu-%Lu", logical, em->start,
Josef Bacik9bb91872013-04-19 23:45:33 -04005192 em->start + em->len);
Liu Bo7d3d1742013-09-29 10:33:16 +08005193 free_extent_map(em);
Josef Bacik9bb91872013-04-19 23:45:33 -04005194 return -EINVAL;
5195 }
5196
Chris Mason0b86a832008-03-24 15:01:56 -04005197 map = (struct map_lookup *)em->bdev;
5198 offset = logical - em->start;
Chris Mason593060d2008-03-25 16:50:33 -04005199
David Woodhouse53b381b2013-01-29 18:40:14 -05005200 stripe_len = map->stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04005201 stripe_nr = offset;
5202 /*
5203 * stripe_nr counts the total number of stripes we have to stride
5204 * to get to this block
5205 */
David Sterba47c57132015-02-20 18:43:47 +01005206 stripe_nr = div64_u64(stripe_nr, stripe_len);
Chris Mason593060d2008-03-25 16:50:33 -04005207
David Woodhouse53b381b2013-01-29 18:40:14 -05005208 stripe_offset = stripe_nr * stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04005209 BUG_ON(offset < stripe_offset);
5210
5211 /* stripe_offset is the offset of this block in its stripe*/
5212 stripe_offset = offset - stripe_offset;
5213
David Woodhouse53b381b2013-01-29 18:40:14 -05005214 /* if we're here for raid56, we need to know the stripe aligned start */
Zhao Leiffe2d202015-01-20 15:11:44 +08005215 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005216 unsigned long full_stripe_len = stripe_len * nr_data_stripes(map);
5217 raid56_full_stripe_start = offset;
5218
5219 /* allow a write of a full stripe, but make sure we don't
5220 * allow straddling of stripes
5221 */
David Sterba47c57132015-02-20 18:43:47 +01005222 raid56_full_stripe_start = div64_u64(raid56_full_stripe_start,
5223 full_stripe_len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005224 raid56_full_stripe_start *= full_stripe_len;
5225 }
5226
5227 if (rw & REQ_DISCARD) {
5228 /* we don't discard raid56 yet */
Zhao Leiffe2d202015-01-20 15:11:44 +08005229 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005230 ret = -EOPNOTSUPP;
5231 goto out;
5232 }
Li Dongyangfce3bb92011-03-24 10:24:26 +00005233 *length = min_t(u64, em->len - offset, *length);
David Woodhouse53b381b2013-01-29 18:40:14 -05005234 } else if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
5235 u64 max_len;
5236 /* For writes to RAID[56], allow a full stripeset across all disks.
5237 For other RAID types and for RAID[56] reads, just allow a single
5238 stripe (on a single disk). */
Zhao Leiffe2d202015-01-20 15:11:44 +08005239 if ((map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
David Woodhouse53b381b2013-01-29 18:40:14 -05005240 (rw & REQ_WRITE)) {
5241 max_len = stripe_len * nr_data_stripes(map) -
5242 (offset - raid56_full_stripe_start);
5243 } else {
5244 /* we limit the length of each bio to what fits in a stripe */
5245 max_len = stripe_len - stripe_offset;
5246 }
5247 *length = min_t(u64, em->len - offset, max_len);
Chris Masoncea9e442008-04-09 16:28:12 -04005248 } else {
5249 *length = em->len - offset;
5250 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005251
David Woodhouse53b381b2013-01-29 18:40:14 -05005252 /* This is for when we're called from btrfs_merge_bio_hook() and all
5253 it cares about is the length */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005254 if (!bbio_ret)
Chris Masoncea9e442008-04-09 16:28:12 -04005255 goto out;
5256
Stefan Behrens472262f2012-11-06 14:43:46 +01005257 btrfs_dev_replace_lock(dev_replace);
5258 dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace);
5259 if (!dev_replace_is_ongoing)
5260 btrfs_dev_replace_unlock(dev_replace);
5261
Stefan Behrensad6d6202012-11-06 15:06:47 +01005262 if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 &&
5263 !(rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)) &&
5264 dev_replace->tgtdev != NULL) {
5265 /*
5266 * in dev-replace case, for repair case (that's the only
5267 * case where the mirror is selected explicitly when
5268 * calling btrfs_map_block), blocks left of the left cursor
5269 * can also be read from the target drive.
5270 * For REQ_GET_READ_MIRRORS, the target drive is added as
5271 * the last one to the array of stripes. For READ, it also
5272 * needs to be supported using the same mirror number.
5273 * If the requested block is not left of the left cursor,
5274 * EIO is returned. This can happen because btrfs_num_copies()
5275 * returns one more in the dev-replace case.
5276 */
5277 u64 tmp_length = *length;
5278 struct btrfs_bio *tmp_bbio = NULL;
5279 int tmp_num_stripes;
5280 u64 srcdev_devid = dev_replace->srcdev->devid;
5281 int index_srcdev = 0;
5282 int found = 0;
5283 u64 physical_of_found = 0;
5284
5285 ret = __btrfs_map_block(fs_info, REQ_GET_READ_MIRRORS,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005286 logical, &tmp_length, &tmp_bbio, 0, 0);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005287 if (ret) {
5288 WARN_ON(tmp_bbio != NULL);
5289 goto out;
5290 }
5291
5292 tmp_num_stripes = tmp_bbio->num_stripes;
5293 if (mirror_num > tmp_num_stripes) {
5294 /*
5295 * REQ_GET_READ_MIRRORS does not contain this
5296 * mirror, that means that the requested area
5297 * is not left of the left cursor
5298 */
5299 ret = -EIO;
Zhao Lei6e9606d2015-01-20 15:11:34 +08005300 btrfs_put_bbio(tmp_bbio);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005301 goto out;
5302 }
5303
5304 /*
5305 * process the rest of the function using the mirror_num
5306 * of the source drive. Therefore look it up first.
5307 * At the end, patch the device pointer to the one of the
5308 * target drive.
5309 */
5310 for (i = 0; i < tmp_num_stripes; i++) {
5311 if (tmp_bbio->stripes[i].dev->devid == srcdev_devid) {
5312 /*
5313 * In case of DUP, in order to keep it
5314 * simple, only add the mirror with the
5315 * lowest physical address
5316 */
5317 if (found &&
5318 physical_of_found <=
5319 tmp_bbio->stripes[i].physical)
5320 continue;
5321 index_srcdev = i;
5322 found = 1;
5323 physical_of_found =
5324 tmp_bbio->stripes[i].physical;
5325 }
5326 }
5327
5328 if (found) {
5329 mirror_num = index_srcdev + 1;
5330 patch_the_first_stripe_for_dev_replace = 1;
5331 physical_to_patch_in_first_stripe = physical_of_found;
5332 } else {
5333 WARN_ON(1);
5334 ret = -EIO;
Zhao Lei6e9606d2015-01-20 15:11:34 +08005335 btrfs_put_bbio(tmp_bbio);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005336 goto out;
5337 }
5338
Zhao Lei6e9606d2015-01-20 15:11:34 +08005339 btrfs_put_bbio(tmp_bbio);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005340 } else if (mirror_num > map->num_stripes) {
5341 mirror_num = 0;
5342 }
5343
Chris Masonf2d8d742008-04-21 10:03:05 -04005344 num_stripes = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04005345 stripe_index = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005346 stripe_nr_orig = stripe_nr;
Qu Wenruofda28322013-02-26 08:10:22 +00005347 stripe_nr_end = ALIGN(offset + *length, map->stripe_len);
David Sterbab8b93ad2015-01-16 17:26:13 +01005348 stripe_nr_end = div_u64(stripe_nr_end, map->stripe_len);
Li Dongyangfce3bb92011-03-24 10:24:26 +00005349 stripe_end_offset = stripe_nr_end * map->stripe_len -
5350 (offset + *length);
David Woodhouse53b381b2013-01-29 18:40:14 -05005351
Li Dongyangfce3bb92011-03-24 10:24:26 +00005352 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
5353 if (rw & REQ_DISCARD)
5354 num_stripes = min_t(u64, map->num_stripes,
5355 stripe_nr_end - stripe_nr_orig);
David Sterba47c57132015-02-20 18:43:47 +01005356 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5357 &stripe_index);
Miao Xie28e1cc72014-09-12 18:44:02 +08005358 if (!(rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)))
5359 mirror_num = 1;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005360 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01005361 if (rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS))
Chris Masonf2d8d742008-04-21 10:03:05 -04005362 num_stripes = map->num_stripes;
Chris Mason2fff7342008-04-29 14:12:09 -04005363 else if (mirror_num)
Chris Masonf1885912008-04-09 16:28:12 -04005364 stripe_index = mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005365 else {
Stefan Behrens30d98612012-11-06 14:52:18 +01005366 stripe_index = find_live_mirror(fs_info, map, 0,
Chris Masondfe25022008-05-13 13:46:40 -04005367 map->num_stripes,
Stefan Behrens30d98612012-11-06 14:52:18 +01005368 current->pid % map->num_stripes,
5369 dev_replace_is_ongoing);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005370 mirror_num = stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005371 }
Chris Mason2fff7342008-04-29 14:12:09 -04005372
Chris Mason611f0e02008-04-03 16:29:03 -04005373 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01005374 if (rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)) {
Chris Masonf2d8d742008-04-21 10:03:05 -04005375 num_stripes = map->num_stripes;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005376 } else if (mirror_num) {
Chris Masonf1885912008-04-09 16:28:12 -04005377 stripe_index = mirror_num - 1;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005378 } else {
5379 mirror_num = 1;
5380 }
Chris Mason2fff7342008-04-29 14:12:09 -04005381
Chris Mason321aecc2008-04-16 10:49:51 -04005382 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
David Sterba9d644a62015-02-20 18:42:11 +01005383 u32 factor = map->num_stripes / map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005384
David Sterba47c57132015-02-20 18:43:47 +01005385 stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index);
Chris Mason321aecc2008-04-16 10:49:51 -04005386 stripe_index *= map->sub_stripes;
5387
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01005388 if (rw & (REQ_WRITE | REQ_GET_READ_MIRRORS))
Chris Masonf2d8d742008-04-21 10:03:05 -04005389 num_stripes = map->sub_stripes;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005390 else if (rw & REQ_DISCARD)
5391 num_stripes = min_t(u64, map->sub_stripes *
5392 (stripe_nr_end - stripe_nr_orig),
5393 map->num_stripes);
Chris Mason321aecc2008-04-16 10:49:51 -04005394 else if (mirror_num)
5395 stripe_index += mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005396 else {
Jan Schmidt3e743172012-04-27 12:41:45 -04005397 int old_stripe_index = stripe_index;
Stefan Behrens30d98612012-11-06 14:52:18 +01005398 stripe_index = find_live_mirror(fs_info, map,
5399 stripe_index,
Chris Masondfe25022008-05-13 13:46:40 -04005400 map->sub_stripes, stripe_index +
Stefan Behrens30d98612012-11-06 14:52:18 +01005401 current->pid % map->sub_stripes,
5402 dev_replace_is_ongoing);
Jan Schmidt3e743172012-04-27 12:41:45 -04005403 mirror_num = stripe_index - old_stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005404 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005405
Zhao Leiffe2d202015-01-20 15:11:44 +08005406 } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005407 if (need_raid_map &&
Miao Xieaf8e2d12014-10-23 14:42:50 +08005408 ((rw & (REQ_WRITE | REQ_GET_READ_MIRRORS)) ||
5409 mirror_num > 1)) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005410 /* push stripe_nr back to the start of the full stripe */
David Sterbab8b93ad2015-01-16 17:26:13 +01005411 stripe_nr = div_u64(raid56_full_stripe_start,
5412 stripe_len * nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05005413
5414 /* RAID[56] write or recovery. Return all stripes */
5415 num_stripes = map->num_stripes;
5416 max_errors = nr_parity_stripes(map);
5417
David Woodhouse53b381b2013-01-29 18:40:14 -05005418 *length = map->stripe_len;
5419 stripe_index = 0;
5420 stripe_offset = 0;
5421 } else {
5422 /*
5423 * Mirror #0 or #1 means the original data block.
5424 * Mirror #2 is RAID5 parity block.
5425 * Mirror #3 is RAID6 Q block.
5426 */
David Sterba47c57132015-02-20 18:43:47 +01005427 stripe_nr = div_u64_rem(stripe_nr,
5428 nr_data_stripes(map), &stripe_index);
David Woodhouse53b381b2013-01-29 18:40:14 -05005429 if (mirror_num > 1)
5430 stripe_index = nr_data_stripes(map) +
5431 mirror_num - 2;
5432
5433 /* We distribute the parity blocks across stripes */
David Sterba47c57132015-02-20 18:43:47 +01005434 div_u64_rem(stripe_nr + stripe_index, map->num_stripes,
5435 &stripe_index);
Miao Xie28e1cc72014-09-12 18:44:02 +08005436 if (!(rw & (REQ_WRITE | REQ_DISCARD |
5437 REQ_GET_READ_MIRRORS)) && mirror_num <= 1)
5438 mirror_num = 1;
David Woodhouse53b381b2013-01-29 18:40:14 -05005439 }
Chris Mason8790d502008-04-03 16:29:03 -04005440 } else {
5441 /*
David Sterba47c57132015-02-20 18:43:47 +01005442 * after this, stripe_nr is the number of stripes on this
5443 * device we have to walk to find the data, and stripe_index is
5444 * the number of our device in the stripe array
Chris Mason8790d502008-04-03 16:29:03 -04005445 */
David Sterba47c57132015-02-20 18:43:47 +01005446 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5447 &stripe_index);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005448 mirror_num = stripe_index + 1;
Chris Mason8790d502008-04-03 16:29:03 -04005449 }
Chris Mason593060d2008-03-25 16:50:33 -04005450 BUG_ON(stripe_index >= map->num_stripes);
Chris Mason593060d2008-03-25 16:50:33 -04005451
Stefan Behrens472262f2012-11-06 14:43:46 +01005452 num_alloc_stripes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005453 if (dev_replace_is_ongoing) {
5454 if (rw & (REQ_WRITE | REQ_DISCARD))
5455 num_alloc_stripes <<= 1;
5456 if (rw & REQ_GET_READ_MIRRORS)
5457 num_alloc_stripes++;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005458 tgtdev_indexes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005459 }
Miao Xie2c8cdd62014-11-14 16:06:25 +08005460
Zhao Lei6e9606d2015-01-20 15:11:34 +08005461 bbio = alloc_btrfs_bio(num_alloc_stripes, tgtdev_indexes);
Li Zefande11cc12011-12-01 12:55:47 +08005462 if (!bbio) {
5463 ret = -ENOMEM;
5464 goto out;
5465 }
Miao Xie2c8cdd62014-11-14 16:06:25 +08005466 if (dev_replace_is_ongoing)
5467 bbio->tgtdev_map = (int *)(bbio->stripes + num_alloc_stripes);
Li Zefande11cc12011-12-01 12:55:47 +08005468
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005469 /* build raid_map */
Zhao Leiffe2d202015-01-20 15:11:44 +08005470 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK &&
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005471 need_raid_map && ((rw & (REQ_WRITE | REQ_GET_READ_MIRRORS)) ||
5472 mirror_num > 1)) {
5473 u64 tmp;
David Sterba9d644a62015-02-20 18:42:11 +01005474 unsigned rot;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005475
5476 bbio->raid_map = (u64 *)((void *)bbio->stripes +
5477 sizeof(struct btrfs_bio_stripe) *
5478 num_alloc_stripes +
5479 sizeof(int) * tgtdev_indexes);
5480
5481 /* Work out the disk rotation on this stripe-set */
David Sterba47c57132015-02-20 18:43:47 +01005482 div_u64_rem(stripe_nr, num_stripes, &rot);
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005483
5484 /* Fill in the logical address of each stripe */
5485 tmp = stripe_nr * nr_data_stripes(map);
5486 for (i = 0; i < nr_data_stripes(map); i++)
5487 bbio->raid_map[(i+rot) % num_stripes] =
5488 em->start + (tmp + i) * map->stripe_len;
5489
5490 bbio->raid_map[(i+rot) % map->num_stripes] = RAID5_P_STRIPE;
5491 if (map->type & BTRFS_BLOCK_GROUP_RAID6)
5492 bbio->raid_map[(i+rot+1) % num_stripes] =
5493 RAID6_Q_STRIPE;
5494 }
5495
Li Dongyangfce3bb92011-03-24 10:24:26 +00005496 if (rw & REQ_DISCARD) {
David Sterba9d644a62015-02-20 18:42:11 +01005497 u32 factor = 0;
5498 u32 sub_stripes = 0;
Li Zefanec9ef7a2011-12-01 14:06:42 +08005499 u64 stripes_per_dev = 0;
5500 u32 remaining_stripes = 0;
Liu Bob89203f2012-04-12 16:03:56 -04005501 u32 last_stripe = 0;
Li Zefanec9ef7a2011-12-01 14:06:42 +08005502
5503 if (map->type &
5504 (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID10)) {
5505 if (map->type & BTRFS_BLOCK_GROUP_RAID0)
5506 sub_stripes = 1;
5507 else
5508 sub_stripes = map->sub_stripes;
5509
5510 factor = map->num_stripes / sub_stripes;
5511 stripes_per_dev = div_u64_rem(stripe_nr_end -
5512 stripe_nr_orig,
5513 factor,
5514 &remaining_stripes);
Liu Bob89203f2012-04-12 16:03:56 -04005515 div_u64_rem(stripe_nr_end - 1, factor, &last_stripe);
5516 last_stripe *= sub_stripes;
Li Zefanec9ef7a2011-12-01 14:06:42 +08005517 }
5518
Li Dongyangfce3bb92011-03-24 10:24:26 +00005519 for (i = 0; i < num_stripes; i++) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005520 bbio->stripes[i].physical =
Chris Masonf2d8d742008-04-21 10:03:05 -04005521 map->stripes[stripe_index].physical +
5522 stripe_offset + stripe_nr * map->stripe_len;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005523 bbio->stripes[i].dev = map->stripes[stripe_index].dev;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005524
Li Zefanec9ef7a2011-12-01 14:06:42 +08005525 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
5526 BTRFS_BLOCK_GROUP_RAID10)) {
5527 bbio->stripes[i].length = stripes_per_dev *
5528 map->stripe_len;
Liu Bob89203f2012-04-12 16:03:56 -04005529
Li Zefanec9ef7a2011-12-01 14:06:42 +08005530 if (i / sub_stripes < remaining_stripes)
5531 bbio->stripes[i].length +=
5532 map->stripe_len;
Liu Bob89203f2012-04-12 16:03:56 -04005533
5534 /*
5535 * Special for the first stripe and
5536 * the last stripe:
5537 *
5538 * |-------|...|-------|
5539 * |----------|
5540 * off end_off
5541 */
Li Zefanec9ef7a2011-12-01 14:06:42 +08005542 if (i < sub_stripes)
Jan Schmidta1d3c472011-08-04 17:15:33 +02005543 bbio->stripes[i].length -=
Li Dongyangfce3bb92011-03-24 10:24:26 +00005544 stripe_offset;
Liu Bob89203f2012-04-12 16:03:56 -04005545
5546 if (stripe_index >= last_stripe &&
5547 stripe_index <= (last_stripe +
5548 sub_stripes - 1))
Li Zefanec9ef7a2011-12-01 14:06:42 +08005549 bbio->stripes[i].length -=
5550 stripe_end_offset;
Liu Bob89203f2012-04-12 16:03:56 -04005551
Li Zefanec9ef7a2011-12-01 14:06:42 +08005552 if (i == sub_stripes - 1)
Li Dongyangfce3bb92011-03-24 10:24:26 +00005553 stripe_offset = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005554 } else
Jan Schmidta1d3c472011-08-04 17:15:33 +02005555 bbio->stripes[i].length = *length;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005556
5557 stripe_index++;
5558 if (stripe_index == map->num_stripes) {
5559 /* This could only happen for RAID0/10 */
5560 stripe_index = 0;
5561 stripe_nr++;
5562 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005563 }
Li Dongyangfce3bb92011-03-24 10:24:26 +00005564 } else {
5565 for (i = 0; i < num_stripes; i++) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005566 bbio->stripes[i].physical =
Linus Torvalds212a17a2011-03-28 15:31:05 -07005567 map->stripes[stripe_index].physical +
5568 stripe_offset +
5569 stripe_nr * map->stripe_len;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005570 bbio->stripes[i].dev =
Linus Torvalds212a17a2011-03-28 15:31:05 -07005571 map->stripes[stripe_index].dev;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005572 stripe_index++;
5573 }
Chris Mason593060d2008-03-25 16:50:33 -04005574 }
Li Zefande11cc12011-12-01 12:55:47 +08005575
Miao Xied20983b2014-07-03 18:22:13 +08005576 if (rw & (REQ_WRITE | REQ_GET_READ_MIRRORS))
5577 max_errors = btrfs_chunk_max_errors(map);
Li Zefande11cc12011-12-01 12:55:47 +08005578
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005579 if (bbio->raid_map)
5580 sort_parity_stripes(bbio, num_stripes);
Zhao Leicc7539e2015-01-20 15:11:32 +08005581
Miao Xie2c8cdd62014-11-14 16:06:25 +08005582 tgtdev_indexes = 0;
Stefan Behrens472262f2012-11-06 14:43:46 +01005583 if (dev_replace_is_ongoing && (rw & (REQ_WRITE | REQ_DISCARD)) &&
5584 dev_replace->tgtdev != NULL) {
5585 int index_where_to_add;
5586 u64 srcdev_devid = dev_replace->srcdev->devid;
5587
5588 /*
5589 * duplicate the write operations while the dev replace
5590 * procedure is running. Since the copying of the old disk
5591 * to the new disk takes place at run time while the
5592 * filesystem is mounted writable, the regular write
5593 * operations to the old disk have to be duplicated to go
5594 * to the new disk as well.
5595 * Note that device->missing is handled by the caller, and
5596 * that the write to the old disk is already set up in the
5597 * stripes array.
5598 */
5599 index_where_to_add = num_stripes;
5600 for (i = 0; i < num_stripes; i++) {
5601 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5602 /* write to new disk, too */
5603 struct btrfs_bio_stripe *new =
5604 bbio->stripes + index_where_to_add;
5605 struct btrfs_bio_stripe *old =
5606 bbio->stripes + i;
5607
5608 new->physical = old->physical;
5609 new->length = old->length;
5610 new->dev = dev_replace->tgtdev;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005611 bbio->tgtdev_map[i] = index_where_to_add;
Stefan Behrens472262f2012-11-06 14:43:46 +01005612 index_where_to_add++;
5613 max_errors++;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005614 tgtdev_indexes++;
Stefan Behrens472262f2012-11-06 14:43:46 +01005615 }
5616 }
5617 num_stripes = index_where_to_add;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005618 } else if (dev_replace_is_ongoing && (rw & REQ_GET_READ_MIRRORS) &&
5619 dev_replace->tgtdev != NULL) {
5620 u64 srcdev_devid = dev_replace->srcdev->devid;
5621 int index_srcdev = 0;
5622 int found = 0;
5623 u64 physical_of_found = 0;
5624
5625 /*
5626 * During the dev-replace procedure, the target drive can
5627 * also be used to read data in case it is needed to repair
5628 * a corrupt block elsewhere. This is possible if the
5629 * requested area is left of the left cursor. In this area,
5630 * the target drive is a full copy of the source drive.
5631 */
5632 for (i = 0; i < num_stripes; i++) {
5633 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5634 /*
5635 * In case of DUP, in order to keep it
5636 * simple, only add the mirror with the
5637 * lowest physical address
5638 */
5639 if (found &&
5640 physical_of_found <=
5641 bbio->stripes[i].physical)
5642 continue;
5643 index_srcdev = i;
5644 found = 1;
5645 physical_of_found = bbio->stripes[i].physical;
5646 }
5647 }
5648 if (found) {
David Sterba258ece02015-02-24 19:45:15 +01005649 if (physical_of_found + map->stripe_len <=
Stefan Behrensad6d6202012-11-06 15:06:47 +01005650 dev_replace->cursor_left) {
5651 struct btrfs_bio_stripe *tgtdev_stripe =
5652 bbio->stripes + num_stripes;
5653
5654 tgtdev_stripe->physical = physical_of_found;
5655 tgtdev_stripe->length =
5656 bbio->stripes[index_srcdev].length;
5657 tgtdev_stripe->dev = dev_replace->tgtdev;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005658 bbio->tgtdev_map[index_srcdev] = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005659
Miao Xie2c8cdd62014-11-14 16:06:25 +08005660 tgtdev_indexes++;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005661 num_stripes++;
5662 }
5663 }
Stefan Behrens472262f2012-11-06 14:43:46 +01005664 }
5665
Li Zefande11cc12011-12-01 12:55:47 +08005666 *bbio_ret = bbio;
Zhao Lei10f11902015-01-20 15:11:43 +08005667 bbio->map_type = map->type;
Li Zefande11cc12011-12-01 12:55:47 +08005668 bbio->num_stripes = num_stripes;
5669 bbio->max_errors = max_errors;
5670 bbio->mirror_num = mirror_num;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005671 bbio->num_tgtdevs = tgtdev_indexes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005672
5673 /*
5674 * this is the case that REQ_READ && dev_replace_is_ongoing &&
5675 * mirror_num == num_stripes + 1 && dev_replace target drive is
5676 * available as a mirror
5677 */
5678 if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) {
5679 WARN_ON(num_stripes > 1);
5680 bbio->stripes[0].dev = dev_replace->tgtdev;
5681 bbio->stripes[0].physical = physical_to_patch_in_first_stripe;
5682 bbio->mirror_num = map->num_stripes + 1;
5683 }
Chris Masoncea9e442008-04-09 16:28:12 -04005684out:
Stefan Behrens472262f2012-11-06 14:43:46 +01005685 if (dev_replace_is_ongoing)
5686 btrfs_dev_replace_unlock(dev_replace);
Chris Mason0b86a832008-03-24 15:01:56 -04005687 free_extent_map(em);
Li Zefande11cc12011-12-01 12:55:47 +08005688 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04005689}
5690
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005691int btrfs_map_block(struct btrfs_fs_info *fs_info, int rw,
Chris Masonf2d8d742008-04-21 10:03:05 -04005692 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005693 struct btrfs_bio **bbio_ret, int mirror_num)
Chris Masonf2d8d742008-04-21 10:03:05 -04005694{
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005695 return __btrfs_map_block(fs_info, rw, logical, length, bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005696 mirror_num, 0);
Chris Masonf2d8d742008-04-21 10:03:05 -04005697}
5698
Miao Xieaf8e2d12014-10-23 14:42:50 +08005699/* For Scrub/replace */
5700int btrfs_map_sblock(struct btrfs_fs_info *fs_info, int rw,
5701 u64 logical, u64 *length,
5702 struct btrfs_bio **bbio_ret, int mirror_num,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005703 int need_raid_map)
Miao Xieaf8e2d12014-10-23 14:42:50 +08005704{
5705 return __btrfs_map_block(fs_info, rw, logical, length, bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005706 mirror_num, need_raid_map);
Miao Xieaf8e2d12014-10-23 14:42:50 +08005707}
5708
Yan Zhenga512bbf2008-12-08 16:46:26 -05005709int btrfs_rmap_block(struct btrfs_mapping_tree *map_tree,
5710 u64 chunk_start, u64 physical, u64 devid,
5711 u64 **logical, int *naddrs, int *stripe_len)
5712{
5713 struct extent_map_tree *em_tree = &map_tree->map_tree;
5714 struct extent_map *em;
5715 struct map_lookup *map;
5716 u64 *buf;
5717 u64 bytenr;
5718 u64 length;
5719 u64 stripe_nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005720 u64 rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005721 int i, j, nr = 0;
5722
Chris Mason890871b2009-09-02 16:24:52 -04005723 read_lock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005724 em = lookup_extent_mapping(em_tree, chunk_start, 1);
Chris Mason890871b2009-09-02 16:24:52 -04005725 read_unlock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005726
Josef Bacik835d9742013-03-19 12:13:25 -04005727 if (!em) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005728 printk(KERN_ERR "BTRFS: couldn't find em for chunk %Lu\n",
Josef Bacik835d9742013-03-19 12:13:25 -04005729 chunk_start);
5730 return -EIO;
5731 }
5732
5733 if (em->start != chunk_start) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005734 printk(KERN_ERR "BTRFS: bad chunk start, em=%Lu, wanted=%Lu\n",
Josef Bacik835d9742013-03-19 12:13:25 -04005735 em->start, chunk_start);
5736 free_extent_map(em);
5737 return -EIO;
5738 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005739 map = (struct map_lookup *)em->bdev;
5740
5741 length = em->len;
David Woodhouse53b381b2013-01-29 18:40:14 -05005742 rmap_len = map->stripe_len;
5743
Yan Zhenga512bbf2008-12-08 16:46:26 -05005744 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
David Sterbab8b93ad2015-01-16 17:26:13 +01005745 length = div_u64(length, map->num_stripes / map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005746 else if (map->type & BTRFS_BLOCK_GROUP_RAID0)
David Sterbab8b93ad2015-01-16 17:26:13 +01005747 length = div_u64(length, map->num_stripes);
Zhao Leiffe2d202015-01-20 15:11:44 +08005748 else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Sterbab8b93ad2015-01-16 17:26:13 +01005749 length = div_u64(length, nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05005750 rmap_len = map->stripe_len * nr_data_stripes(map);
5751 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005752
David Sterba31e818f2015-02-20 18:00:26 +01005753 buf = kcalloc(map->num_stripes, sizeof(u64), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005754 BUG_ON(!buf); /* -ENOMEM */
Yan Zhenga512bbf2008-12-08 16:46:26 -05005755
5756 for (i = 0; i < map->num_stripes; i++) {
5757 if (devid && map->stripes[i].dev->devid != devid)
5758 continue;
5759 if (map->stripes[i].physical > physical ||
5760 map->stripes[i].physical + length <= physical)
5761 continue;
5762
5763 stripe_nr = physical - map->stripes[i].physical;
David Sterbab8b93ad2015-01-16 17:26:13 +01005764 stripe_nr = div_u64(stripe_nr, map->stripe_len);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005765
5766 if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
5767 stripe_nr = stripe_nr * map->num_stripes + i;
David Sterbab8b93ad2015-01-16 17:26:13 +01005768 stripe_nr = div_u64(stripe_nr, map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005769 } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
5770 stripe_nr = stripe_nr * map->num_stripes + i;
David Woodhouse53b381b2013-01-29 18:40:14 -05005771 } /* else if RAID[56], multiply by nr_data_stripes().
5772 * Alternatively, just use rmap_len below instead of
5773 * map->stripe_len */
5774
5775 bytenr = chunk_start + stripe_nr * rmap_len;
Chris Mason934d3752008-12-08 16:43:10 -05005776 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005777 for (j = 0; j < nr; j++) {
5778 if (buf[j] == bytenr)
5779 break;
5780 }
Chris Mason934d3752008-12-08 16:43:10 -05005781 if (j == nr) {
5782 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005783 buf[nr++] = bytenr;
Chris Mason934d3752008-12-08 16:43:10 -05005784 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005785 }
5786
Yan Zhenga512bbf2008-12-08 16:46:26 -05005787 *logical = buf;
5788 *naddrs = nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005789 *stripe_len = rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005790
5791 free_extent_map(em);
5792 return 0;
5793}
5794
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005795static inline void btrfs_end_bbio(struct btrfs_bio *bbio, struct bio *bio)
Miao Xie8408c712014-06-19 10:42:55 +08005796{
Mike Snitzer326e1db2015-05-22 09:14:03 -04005797 bio->bi_private = bbio->private;
5798 bio->bi_end_io = bbio->end_io;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005799 bio_endio(bio);
Mike Snitzer326e1db2015-05-22 09:14:03 -04005800
Zhao Lei6e9606d2015-01-20 15:11:34 +08005801 btrfs_put_bbio(bbio);
Miao Xie8408c712014-06-19 10:42:55 +08005802}
5803
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005804static void btrfs_end_bio(struct bio *bio)
Chris Mason8790d502008-04-03 16:29:03 -04005805{
Chris Mason9be33952013-05-17 18:30:14 -04005806 struct btrfs_bio *bbio = bio->bi_private;
Chris Mason7d2b4da2008-08-05 10:13:57 -04005807 int is_orig_bio = 0;
Chris Mason8790d502008-04-03 16:29:03 -04005808
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005809 if (bio->bi_error) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005810 atomic_inc(&bbio->error);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005811 if (bio->bi_error == -EIO || bio->bi_error == -EREMOTEIO) {
Stefan Behrens442a4f62012-05-25 16:06:08 +02005812 unsigned int stripe_index =
Chris Mason9be33952013-05-17 18:30:14 -04005813 btrfs_io_bio(bio)->stripe_index;
Zhao Lei65f53332015-06-08 20:05:50 +08005814 struct btrfs_device *dev;
Stefan Behrens442a4f62012-05-25 16:06:08 +02005815
5816 BUG_ON(stripe_index >= bbio->num_stripes);
5817 dev = bbio->stripes[stripe_index].dev;
Stefan Behrens597a60f2012-06-14 16:42:31 +02005818 if (dev->bdev) {
5819 if (bio->bi_rw & WRITE)
5820 btrfs_dev_stat_inc(dev,
5821 BTRFS_DEV_STAT_WRITE_ERRS);
5822 else
5823 btrfs_dev_stat_inc(dev,
5824 BTRFS_DEV_STAT_READ_ERRS);
5825 if ((bio->bi_rw & WRITE_FLUSH) == WRITE_FLUSH)
5826 btrfs_dev_stat_inc(dev,
5827 BTRFS_DEV_STAT_FLUSH_ERRS);
5828 btrfs_dev_stat_print_on_error(dev);
5829 }
Stefan Behrens442a4f62012-05-25 16:06:08 +02005830 }
5831 }
Chris Mason8790d502008-04-03 16:29:03 -04005832
Jan Schmidta1d3c472011-08-04 17:15:33 +02005833 if (bio == bbio->orig_bio)
Chris Mason7d2b4da2008-08-05 10:13:57 -04005834 is_orig_bio = 1;
5835
Miao Xiec404e0d2014-01-30 16:46:55 +08005836 btrfs_bio_counter_dec(bbio->fs_info);
5837
Jan Schmidta1d3c472011-08-04 17:15:33 +02005838 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Chris Mason7d2b4da2008-08-05 10:13:57 -04005839 if (!is_orig_bio) {
5840 bio_put(bio);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005841 bio = bbio->orig_bio;
Chris Mason7d2b4da2008-08-05 10:13:57 -04005842 }
Muthu Kumarc7b22bb2014-01-08 14:19:52 -07005843
Chris Mason9be33952013-05-17 18:30:14 -04005844 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Chris Masona236aed2008-04-29 09:38:00 -04005845 /* only send an error to the higher layers if it is
David Woodhouse53b381b2013-01-29 18:40:14 -05005846 * beyond the tolerance of the btrfs bio
Chris Masona236aed2008-04-29 09:38:00 -04005847 */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005848 if (atomic_read(&bbio->error) > bbio->max_errors) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005849 bio->bi_error = -EIO;
Chris Mason5dbc8fc2011-12-09 11:07:37 -05005850 } else {
Chris Mason1259ab72008-05-12 13:39:03 -04005851 /*
5852 * this bio is actually up to date, we didn't
5853 * go over the max number of errors
5854 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005855 bio->bi_error = 0;
Chris Mason1259ab72008-05-12 13:39:03 -04005856 }
Miao Xiec55f1392014-06-19 10:42:54 +08005857
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005858 btrfs_end_bbio(bbio, bio);
Chris Mason7d2b4da2008-08-05 10:13:57 -04005859 } else if (!is_orig_bio) {
Chris Mason8790d502008-04-03 16:29:03 -04005860 bio_put(bio);
5861 }
Chris Mason8790d502008-04-03 16:29:03 -04005862}
5863
Chris Mason8b712842008-06-11 16:50:36 -04005864/*
5865 * see run_scheduled_bios for a description of why bios are collected for
5866 * async submit.
5867 *
5868 * This will add one bio to the pending list for a device and make sure
5869 * the work struct is scheduled.
5870 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00005871static noinline void btrfs_schedule_bio(struct btrfs_root *root,
5872 struct btrfs_device *device,
5873 int rw, struct bio *bio)
Chris Mason8b712842008-06-11 16:50:36 -04005874{
5875 int should_queue = 1;
Chris Masonffbd5172009-04-20 15:50:09 -04005876 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04005877
David Woodhouse53b381b2013-01-29 18:40:14 -05005878 if (device->missing || !device->bdev) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005879 bio_io_error(bio);
David Woodhouse53b381b2013-01-29 18:40:14 -05005880 return;
5881 }
5882
Chris Mason8b712842008-06-11 16:50:36 -04005883 /* don't bother with additional async steps for reads, right now */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02005884 if (!(rw & REQ_WRITE)) {
Chris Mason492bb6de2008-07-31 16:29:02 -04005885 bio_get(bio);
Stefan Behrens21adbd52011-11-09 13:44:05 +01005886 btrfsic_submit_bio(rw, bio);
Chris Mason492bb6de2008-07-31 16:29:02 -04005887 bio_put(bio);
Jeff Mahoney143bede2012-03-01 14:56:26 +01005888 return;
Chris Mason8b712842008-06-11 16:50:36 -04005889 }
5890
5891 /*
Chris Mason0986fe9e2008-08-15 15:34:15 -04005892 * nr_async_bios allows us to reliably return congestion to the
Chris Mason8b712842008-06-11 16:50:36 -04005893 * higher layers. Otherwise, the async bio makes it appear we have
5894 * made progress against dirty pages when we've really just put it
5895 * on a queue for later
5896 */
Chris Mason0986fe9e2008-08-15 15:34:15 -04005897 atomic_inc(&root->fs_info->nr_async_bios);
Chris Mason492bb6de2008-07-31 16:29:02 -04005898 WARN_ON(bio->bi_next);
Chris Mason8b712842008-06-11 16:50:36 -04005899 bio->bi_next = NULL;
5900 bio->bi_rw |= rw;
5901
5902 spin_lock(&device->io_lock);
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02005903 if (bio->bi_rw & REQ_SYNC)
Chris Masonffbd5172009-04-20 15:50:09 -04005904 pending_bios = &device->pending_sync_bios;
5905 else
5906 pending_bios = &device->pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04005907
Chris Masonffbd5172009-04-20 15:50:09 -04005908 if (pending_bios->tail)
5909 pending_bios->tail->bi_next = bio;
Chris Mason8b712842008-06-11 16:50:36 -04005910
Chris Masonffbd5172009-04-20 15:50:09 -04005911 pending_bios->tail = bio;
5912 if (!pending_bios->head)
5913 pending_bios->head = bio;
Chris Mason8b712842008-06-11 16:50:36 -04005914 if (device->running_pending)
5915 should_queue = 0;
5916
5917 spin_unlock(&device->io_lock);
5918
5919 if (should_queue)
Qu Wenruoa8c93d42014-02-28 10:46:08 +08005920 btrfs_queue_work(root->fs_info->submit_workers,
5921 &device->work);
Chris Mason8b712842008-06-11 16:50:36 -04005922}
5923
Josef Bacikde1ee922012-10-19 16:50:56 -04005924static void submit_stripe_bio(struct btrfs_root *root, struct btrfs_bio *bbio,
5925 struct bio *bio, u64 physical, int dev_nr,
5926 int rw, int async)
5927{
5928 struct btrfs_device *dev = bbio->stripes[dev_nr].dev;
5929
5930 bio->bi_private = bbio;
Chris Mason9be33952013-05-17 18:30:14 -04005931 btrfs_io_bio(bio)->stripe_index = dev_nr;
Josef Bacikde1ee922012-10-19 16:50:56 -04005932 bio->bi_end_io = btrfs_end_bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07005933 bio->bi_iter.bi_sector = physical >> 9;
Josef Bacikde1ee922012-10-19 16:50:56 -04005934#ifdef DEBUG
5935 {
5936 struct rcu_string *name;
5937
5938 rcu_read_lock();
5939 name = rcu_dereference(dev->name);
Masanari Iidad1423242012-10-31 15:16:32 +00005940 pr_debug("btrfs_map_bio: rw %d, sector=%llu, dev=%lu "
Josef Bacikde1ee922012-10-19 16:50:56 -04005941 "(%s id %llu), size=%u\n", rw,
Fabian Frederick1b6e4462014-09-24 20:23:05 +02005942 (u64)bio->bi_iter.bi_sector, (u_long)dev->bdev->bd_dev,
5943 name->str, dev->devid, bio->bi_iter.bi_size);
Josef Bacikde1ee922012-10-19 16:50:56 -04005944 rcu_read_unlock();
5945 }
5946#endif
5947 bio->bi_bdev = dev->bdev;
Miao Xiec404e0d2014-01-30 16:46:55 +08005948
5949 btrfs_bio_counter_inc_noblocked(root->fs_info);
5950
Josef Bacikde1ee922012-10-19 16:50:56 -04005951 if (async)
David Woodhouse53b381b2013-01-29 18:40:14 -05005952 btrfs_schedule_bio(root, dev, rw, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04005953 else
5954 btrfsic_submit_bio(rw, bio);
5955}
5956
Josef Bacikde1ee922012-10-19 16:50:56 -04005957static void bbio_error(struct btrfs_bio *bbio, struct bio *bio, u64 logical)
5958{
5959 atomic_inc(&bbio->error);
5960 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Miao Xie8408c712014-06-19 10:42:55 +08005961 /* Shoud be the original bio. */
5962 WARN_ON(bio != bbio->orig_bio);
5963
Chris Mason9be33952013-05-17 18:30:14 -04005964 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Kent Overstreet4f024f32013-10-11 15:44:27 -07005965 bio->bi_iter.bi_sector = logical >> 9;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005966 bio->bi_error = -EIO;
5967 btrfs_end_bbio(bbio, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04005968 }
5969}
5970
Chris Masonf1885912008-04-09 16:28:12 -04005971int btrfs_map_bio(struct btrfs_root *root, int rw, struct bio *bio,
Chris Mason8b712842008-06-11 16:50:36 -04005972 int mirror_num, int async_submit)
Chris Mason0b86a832008-03-24 15:01:56 -04005973{
Chris Mason0b86a832008-03-24 15:01:56 -04005974 struct btrfs_device *dev;
Chris Mason8790d502008-04-03 16:29:03 -04005975 struct bio *first_bio = bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07005976 u64 logical = (u64)bio->bi_iter.bi_sector << 9;
Chris Mason0b86a832008-03-24 15:01:56 -04005977 u64 length = 0;
5978 u64 map_length;
Chris Mason0b86a832008-03-24 15:01:56 -04005979 int ret;
Zhao Lei08da7572015-02-12 15:42:16 +08005980 int dev_nr;
5981 int total_devs;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005982 struct btrfs_bio *bbio = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04005983
Kent Overstreet4f024f32013-10-11 15:44:27 -07005984 length = bio->bi_iter.bi_size;
Chris Mason0b86a832008-03-24 15:01:56 -04005985 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04005986
Miao Xiec404e0d2014-01-30 16:46:55 +08005987 btrfs_bio_counter_inc_blocked(root->fs_info);
David Woodhouse53b381b2013-01-29 18:40:14 -05005988 ret = __btrfs_map_block(root->fs_info, rw, logical, &map_length, &bbio,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005989 mirror_num, 1);
Miao Xiec404e0d2014-01-30 16:46:55 +08005990 if (ret) {
5991 btrfs_bio_counter_dec(root->fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005992 return ret;
Miao Xiec404e0d2014-01-30 16:46:55 +08005993 }
Chris Masoncea9e442008-04-09 16:28:12 -04005994
Jan Schmidta1d3c472011-08-04 17:15:33 +02005995 total_devs = bbio->num_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05005996 bbio->orig_bio = first_bio;
5997 bbio->private = first_bio->bi_private;
5998 bbio->end_io = first_bio->bi_end_io;
Miao Xiec404e0d2014-01-30 16:46:55 +08005999 bbio->fs_info = root->fs_info;
David Woodhouse53b381b2013-01-29 18:40:14 -05006000 atomic_set(&bbio->stripes_pending, bbio->num_stripes);
6001
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006002 if (bbio->raid_map) {
David Woodhouse53b381b2013-01-29 18:40:14 -05006003 /* In this case, map_length has been set to the length of
6004 a single stripe; not the whole write */
6005 if (rw & WRITE) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006006 ret = raid56_parity_write(root, bio, bbio, map_length);
David Woodhouse53b381b2013-01-29 18:40:14 -05006007 } else {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006008 ret = raid56_parity_recover(root, bio, bbio, map_length,
Miao Xie42452152014-11-25 16:39:28 +08006009 mirror_num, 1);
David Woodhouse53b381b2013-01-29 18:40:14 -05006010 }
Miao Xie42452152014-11-25 16:39:28 +08006011
Miao Xiec404e0d2014-01-30 16:46:55 +08006012 btrfs_bio_counter_dec(root->fs_info);
6013 return ret;
David Woodhouse53b381b2013-01-29 18:40:14 -05006014 }
6015
Chris Masoncea9e442008-04-09 16:28:12 -04006016 if (map_length < length) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006017 btrfs_crit(root->fs_info, "mapping failed logical %llu bio len %llu len %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006018 logical, length, map_length);
Chris Masoncea9e442008-04-09 16:28:12 -04006019 BUG();
6020 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02006021
Zhao Lei08da7572015-02-12 15:42:16 +08006022 for (dev_nr = 0; dev_nr < total_devs; dev_nr++) {
Josef Bacikde1ee922012-10-19 16:50:56 -04006023 dev = bbio->stripes[dev_nr].dev;
6024 if (!dev || !dev->bdev || (rw & WRITE && !dev->writeable)) {
6025 bbio_error(bbio, first_bio, logical);
Josef Bacikde1ee922012-10-19 16:50:56 -04006026 continue;
6027 }
6028
Jan Schmidta1d3c472011-08-04 17:15:33 +02006029 if (dev_nr < total_devs - 1) {
Chris Mason9be33952013-05-17 18:30:14 -04006030 bio = btrfs_bio_clone(first_bio, GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006031 BUG_ON(!bio); /* -ENOMEM */
Mike Snitzer326e1db2015-05-22 09:14:03 -04006032 } else
Jan Schmidta1d3c472011-08-04 17:15:33 +02006033 bio = first_bio;
Josef Bacik606686e2012-06-04 14:03:51 -04006034
Josef Bacikde1ee922012-10-19 16:50:56 -04006035 submit_stripe_bio(root, bbio, bio,
6036 bbio->stripes[dev_nr].physical, dev_nr, rw,
6037 async_submit);
Chris Mason239b14b2008-03-24 15:02:07 -04006038 }
Miao Xiec404e0d2014-01-30 16:46:55 +08006039 btrfs_bio_counter_dec(root->fs_info);
Chris Mason0b86a832008-03-24 15:01:56 -04006040 return 0;
6041}
6042
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006043struct btrfs_device *btrfs_find_device(struct btrfs_fs_info *fs_info, u64 devid,
Yan Zheng2b820322008-11-17 21:11:30 -05006044 u8 *uuid, u8 *fsid)
Chris Mason0b86a832008-03-24 15:01:56 -04006045{
Yan Zheng2b820322008-11-17 21:11:30 -05006046 struct btrfs_device *device;
6047 struct btrfs_fs_devices *cur_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006048
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006049 cur_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006050 while (cur_devices) {
6051 if (!fsid ||
6052 !memcmp(cur_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
6053 device = __find_device(&cur_devices->devices,
6054 devid, uuid);
6055 if (device)
6056 return device;
6057 }
6058 cur_devices = cur_devices->seed;
6059 }
6060 return NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006061}
6062
Chris Masondfe25022008-05-13 13:46:40 -04006063static struct btrfs_device *add_missing_dev(struct btrfs_root *root,
Miao Xie5f375832014-09-03 21:35:46 +08006064 struct btrfs_fs_devices *fs_devices,
Chris Masondfe25022008-05-13 13:46:40 -04006065 u64 devid, u8 *dev_uuid)
6066{
6067 struct btrfs_device *device;
Chris Masondfe25022008-05-13 13:46:40 -04006068
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006069 device = btrfs_alloc_device(NULL, &devid, dev_uuid);
6070 if (IS_ERR(device))
yanhai zhu7cbd8a82008-11-12 14:38:54 -05006071 return NULL;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006072
6073 list_add(&device->dev_list, &fs_devices->devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006074 device->fs_devices = fs_devices;
Chris Masondfe25022008-05-13 13:46:40 -04006075 fs_devices->num_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006076
6077 device->missing = 1;
Chris Masoncd02dca2010-12-13 14:56:23 -05006078 fs_devices->missing_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006079
Chris Masondfe25022008-05-13 13:46:40 -04006080 return device;
6081}
6082
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006083/**
6084 * btrfs_alloc_device - allocate struct btrfs_device
6085 * @fs_info: used only for generating a new devid, can be NULL if
6086 * devid is provided (i.e. @devid != NULL).
6087 * @devid: a pointer to devid for this device. If NULL a new devid
6088 * is generated.
6089 * @uuid: a pointer to UUID for this device. If NULL a new UUID
6090 * is generated.
6091 *
6092 * Return: a pointer to a new &struct btrfs_device on success; ERR_PTR()
6093 * on error. Returned struct is not linked onto any lists and can be
6094 * destroyed with kfree() right away.
6095 */
6096struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info,
6097 const u64 *devid,
6098 const u8 *uuid)
6099{
6100 struct btrfs_device *dev;
6101 u64 tmp;
6102
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05306103 if (WARN_ON(!devid && !fs_info))
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006104 return ERR_PTR(-EINVAL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006105
6106 dev = __alloc_device();
6107 if (IS_ERR(dev))
6108 return dev;
6109
6110 if (devid)
6111 tmp = *devid;
6112 else {
6113 int ret;
6114
6115 ret = find_next_devid(fs_info, &tmp);
6116 if (ret) {
6117 kfree(dev);
6118 return ERR_PTR(ret);
6119 }
6120 }
6121 dev->devid = tmp;
6122
6123 if (uuid)
6124 memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE);
6125 else
6126 generate_random_uuid(dev->uuid);
6127
Liu Bo9e0af232014-08-15 23:36:53 +08006128 btrfs_init_work(&dev->work, btrfs_submit_helper,
6129 pending_bios_fn, NULL, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006130
6131 return dev;
6132}
6133
Chris Mason0b86a832008-03-24 15:01:56 -04006134static int read_one_chunk(struct btrfs_root *root, struct btrfs_key *key,
6135 struct extent_buffer *leaf,
6136 struct btrfs_chunk *chunk)
6137{
6138 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
6139 struct map_lookup *map;
6140 struct extent_map *em;
6141 u64 logical;
6142 u64 length;
6143 u64 devid;
Chris Masona4437552008-04-18 10:29:38 -04006144 u8 uuid[BTRFS_UUID_SIZE];
Chris Mason593060d2008-03-25 16:50:33 -04006145 int num_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04006146 int ret;
Chris Mason593060d2008-03-25 16:50:33 -04006147 int i;
Chris Mason0b86a832008-03-24 15:01:56 -04006148
Chris Masone17cade2008-04-15 15:41:47 -04006149 logical = key->offset;
6150 length = btrfs_chunk_length(leaf, chunk);
Chris Masona061fc82008-05-07 11:43:44 -04006151
Chris Mason890871b2009-09-02 16:24:52 -04006152 read_lock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006153 em = lookup_extent_mapping(&map_tree->map_tree, logical, 1);
Chris Mason890871b2009-09-02 16:24:52 -04006154 read_unlock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006155
6156 /* already mapped? */
6157 if (em && em->start <= logical && em->start + em->len > logical) {
6158 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04006159 return 0;
6160 } else if (em) {
6161 free_extent_map(em);
6162 }
Chris Mason0b86a832008-03-24 15:01:56 -04006163
David Sterba172ddd62011-04-21 00:48:27 +02006164 em = alloc_extent_map();
Chris Mason0b86a832008-03-24 15:01:56 -04006165 if (!em)
6166 return -ENOMEM;
Chris Mason593060d2008-03-25 16:50:33 -04006167 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
6168 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
Chris Mason0b86a832008-03-24 15:01:56 -04006169 if (!map) {
6170 free_extent_map(em);
6171 return -ENOMEM;
6172 }
6173
Wang Shilong298a8f92014-06-19 10:42:52 +08006174 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Chris Mason0b86a832008-03-24 15:01:56 -04006175 em->bdev = (struct block_device *)map;
6176 em->start = logical;
6177 em->len = length;
Josef Bacik70c8a912012-10-11 16:54:30 -04006178 em->orig_start = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006179 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04006180 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04006181
Chris Mason593060d2008-03-25 16:50:33 -04006182 map->num_stripes = num_stripes;
6183 map->io_width = btrfs_chunk_io_width(leaf, chunk);
6184 map->io_align = btrfs_chunk_io_align(leaf, chunk);
6185 map->sector_size = btrfs_chunk_sector_size(leaf, chunk);
6186 map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6187 map->type = btrfs_chunk_type(leaf, chunk);
Chris Mason321aecc2008-04-16 10:49:51 -04006188 map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04006189 for (i = 0; i < num_stripes; i++) {
6190 map->stripes[i].physical =
6191 btrfs_stripe_offset_nr(leaf, chunk, i);
6192 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
Chris Masona4437552008-04-18 10:29:38 -04006193 read_extent_buffer(leaf, uuid, (unsigned long)
6194 btrfs_stripe_dev_uuid_nr(chunk, i),
6195 BTRFS_UUID_SIZE);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006196 map->stripes[i].dev = btrfs_find_device(root->fs_info, devid,
6197 uuid, NULL);
Chris Masondfe25022008-05-13 13:46:40 -04006198 if (!map->stripes[i].dev && !btrfs_test_opt(root, DEGRADED)) {
Chris Mason593060d2008-03-25 16:50:33 -04006199 free_extent_map(em);
6200 return -EIO;
6201 }
Chris Masondfe25022008-05-13 13:46:40 -04006202 if (!map->stripes[i].dev) {
6203 map->stripes[i].dev =
Miao Xie5f375832014-09-03 21:35:46 +08006204 add_missing_dev(root, root->fs_info->fs_devices,
6205 devid, uuid);
Chris Masondfe25022008-05-13 13:46:40 -04006206 if (!map->stripes[i].dev) {
Chris Masondfe25022008-05-13 13:46:40 -04006207 free_extent_map(em);
6208 return -EIO;
6209 }
Anand Jain816fceb2015-04-27 12:46:18 +08006210 btrfs_warn(root->fs_info, "devid %llu uuid %pU is missing",
6211 devid, uuid);
Chris Masondfe25022008-05-13 13:46:40 -04006212 }
6213 map->stripes[i].dev->in_fs_metadata = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04006214 }
6215
Chris Mason890871b2009-09-02 16:24:52 -04006216 write_lock(&map_tree->map_tree.lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006217 ret = add_extent_mapping(&map_tree->map_tree, em, 0);
Chris Mason890871b2009-09-02 16:24:52 -04006218 write_unlock(&map_tree->map_tree.lock);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006219 BUG_ON(ret); /* Tree corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04006220 free_extent_map(em);
6221
6222 return 0;
6223}
6224
Jeff Mahoney143bede2012-03-01 14:56:26 +01006225static void fill_device_from_item(struct extent_buffer *leaf,
Chris Mason0b86a832008-03-24 15:01:56 -04006226 struct btrfs_dev_item *dev_item,
6227 struct btrfs_device *device)
6228{
6229 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04006230
6231 device->devid = btrfs_device_id(leaf, dev_item);
Chris Balld6397ba2009-04-27 07:29:03 -04006232 device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item);
6233 device->total_bytes = device->disk_total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08006234 device->commit_total_bytes = device->disk_total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04006235 device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
Miao Xiece7213c2014-09-03 21:35:34 +08006236 device->commit_bytes_used = device->bytes_used;
Chris Mason0b86a832008-03-24 15:01:56 -04006237 device->type = btrfs_device_type(leaf, dev_item);
6238 device->io_align = btrfs_device_io_align(leaf, dev_item);
6239 device->io_width = btrfs_device_io_width(leaf, dev_item);
6240 device->sector_size = btrfs_device_sector_size(leaf, dev_item);
Stefan Behrens8dabb742012-11-06 13:15:27 +01006241 WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID);
Stefan Behrens63a212a2012-11-05 18:29:28 +01006242 device->is_tgtdev_for_dev_replace = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006243
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006244 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04006245 read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006246}
6247
Miao Xie5f375832014-09-03 21:35:46 +08006248static struct btrfs_fs_devices *open_seed_devices(struct btrfs_root *root,
6249 u8 *fsid)
Yan Zheng2b820322008-11-17 21:11:30 -05006250{
6251 struct btrfs_fs_devices *fs_devices;
6252 int ret;
6253
Li Zefanb367e472011-12-07 11:38:24 +08006254 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zheng2b820322008-11-17 21:11:30 -05006255
6256 fs_devices = root->fs_info->fs_devices->seed;
6257 while (fs_devices) {
Miao Xie5f375832014-09-03 21:35:46 +08006258 if (!memcmp(fs_devices->fsid, fsid, BTRFS_UUID_SIZE))
6259 return fs_devices;
6260
Yan Zheng2b820322008-11-17 21:11:30 -05006261 fs_devices = fs_devices->seed;
6262 }
6263
6264 fs_devices = find_fsid(fsid);
6265 if (!fs_devices) {
Miao Xie5f375832014-09-03 21:35:46 +08006266 if (!btrfs_test_opt(root, DEGRADED))
6267 return ERR_PTR(-ENOENT);
6268
6269 fs_devices = alloc_fs_devices(fsid);
6270 if (IS_ERR(fs_devices))
6271 return fs_devices;
6272
6273 fs_devices->seeding = 1;
6274 fs_devices->opened = 1;
6275 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006276 }
Yan Zhenge4404d62008-12-12 10:03:26 -05006277
6278 fs_devices = clone_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006279 if (IS_ERR(fs_devices))
6280 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006281
Christoph Hellwig97288f22008-12-02 06:36:09 -05006282 ret = __btrfs_open_devices(fs_devices, FMODE_READ,
Chris Mason15916de2008-11-19 21:17:22 -05006283 root->fs_info->bdev_holder);
Julia Lawall48d28232012-04-14 11:24:33 +02006284 if (ret) {
6285 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006286 fs_devices = ERR_PTR(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05006287 goto out;
Julia Lawall48d28232012-04-14 11:24:33 +02006288 }
Yan Zheng2b820322008-11-17 21:11:30 -05006289
6290 if (!fs_devices->seeding) {
6291 __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006292 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006293 fs_devices = ERR_PTR(-EINVAL);
Yan Zheng2b820322008-11-17 21:11:30 -05006294 goto out;
6295 }
6296
6297 fs_devices->seed = root->fs_info->fs_devices->seed;
6298 root->fs_info->fs_devices->seed = fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006299out:
Miao Xie5f375832014-09-03 21:35:46 +08006300 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006301}
6302
Chris Mason0d81ba52008-03-24 15:02:07 -04006303static int read_one_dev(struct btrfs_root *root,
Chris Mason0b86a832008-03-24 15:01:56 -04006304 struct extent_buffer *leaf,
6305 struct btrfs_dev_item *dev_item)
6306{
Miao Xie5f375832014-09-03 21:35:46 +08006307 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006308 struct btrfs_device *device;
6309 u64 devid;
6310 int ret;
Yan Zheng2b820322008-11-17 21:11:30 -05006311 u8 fs_uuid[BTRFS_UUID_SIZE];
Chris Masona4437552008-04-18 10:29:38 -04006312 u8 dev_uuid[BTRFS_UUID_SIZE];
6313
Chris Mason0b86a832008-03-24 15:01:56 -04006314 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006315 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Chris Masona4437552008-04-18 10:29:38 -04006316 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02006317 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05006318 BTRFS_UUID_SIZE);
6319
6320 if (memcmp(fs_uuid, root->fs_info->fsid, BTRFS_UUID_SIZE)) {
Miao Xie5f375832014-09-03 21:35:46 +08006321 fs_devices = open_seed_devices(root, fs_uuid);
6322 if (IS_ERR(fs_devices))
6323 return PTR_ERR(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05006324 }
6325
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006326 device = btrfs_find_device(root->fs_info, devid, dev_uuid, fs_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006327 if (!device) {
Yan Zhenge4404d62008-12-12 10:03:26 -05006328 if (!btrfs_test_opt(root, DEGRADED))
Yan Zheng2b820322008-11-17 21:11:30 -05006329 return -EIO;
6330
Miao Xie5f375832014-09-03 21:35:46 +08006331 device = add_missing_dev(root, fs_devices, devid, dev_uuid);
6332 if (!device)
6333 return -ENOMEM;
Anand Jain33b97e42015-05-08 04:34:35 +08006334 btrfs_warn(root->fs_info, "devid %llu uuid %pU missing",
6335 devid, dev_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006336 } else {
6337 if (!device->bdev && !btrfs_test_opt(root, DEGRADED))
6338 return -EIO;
6339
6340 if(!device->bdev && !device->missing) {
Chris Masoncd02dca2010-12-13 14:56:23 -05006341 /*
6342 * this happens when a device that was properly setup
6343 * in the device info lists suddenly goes bad.
6344 * device->bdev is NULL, and so we have to set
6345 * device->missing to one here
6346 */
Miao Xie5f375832014-09-03 21:35:46 +08006347 device->fs_devices->missing_devices++;
Chris Masoncd02dca2010-12-13 14:56:23 -05006348 device->missing = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05006349 }
Miao Xie5f375832014-09-03 21:35:46 +08006350
6351 /* Move the device to its own fs_devices */
6352 if (device->fs_devices != fs_devices) {
6353 ASSERT(device->missing);
6354
6355 list_move(&device->dev_list, &fs_devices->devices);
6356 device->fs_devices->num_devices--;
6357 fs_devices->num_devices++;
6358
6359 device->fs_devices->missing_devices--;
6360 fs_devices->missing_devices++;
6361
6362 device->fs_devices = fs_devices;
6363 }
Yan Zheng2b820322008-11-17 21:11:30 -05006364 }
6365
6366 if (device->fs_devices != root->fs_info->fs_devices) {
6367 BUG_ON(device->writeable);
6368 if (device->generation !=
6369 btrfs_device_generation(leaf, dev_item))
6370 return -EINVAL;
Chris Mason6324fbf2008-03-24 15:01:59 -04006371 }
Chris Mason0b86a832008-03-24 15:01:56 -04006372
6373 fill_device_from_item(leaf, dev_item, device);
Chris Masondfe25022008-05-13 13:46:40 -04006374 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01006375 if (device->writeable && !device->is_tgtdev_for_dev_replace) {
Yan Zheng2b820322008-11-17 21:11:30 -05006376 device->fs_devices->total_rw_bytes += device->total_bytes;
Josef Bacik2bf64752011-09-26 17:12:22 -04006377 spin_lock(&root->fs_info->free_chunk_lock);
6378 root->fs_info->free_chunk_space += device->total_bytes -
6379 device->bytes_used;
6380 spin_unlock(&root->fs_info->free_chunk_lock);
6381 }
Chris Mason0b86a832008-03-24 15:01:56 -04006382 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006383 return ret;
6384}
6385
Yan Zhenge4404d62008-12-12 10:03:26 -05006386int btrfs_read_sys_array(struct btrfs_root *root)
Chris Mason0b86a832008-03-24 15:01:56 -04006387{
David Sterba6c417612011-04-13 15:41:04 +02006388 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Masona061fc82008-05-07 11:43:44 -04006389 struct extent_buffer *sb;
Chris Mason0b86a832008-03-24 15:01:56 -04006390 struct btrfs_disk_key *disk_key;
Chris Mason0b86a832008-03-24 15:01:56 -04006391 struct btrfs_chunk *chunk;
David Sterba1ffb22c2014-10-31 19:02:42 +01006392 u8 *array_ptr;
6393 unsigned long sb_array_offset;
Chris Mason84eed902008-04-25 09:04:37 -04006394 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006395 u32 num_stripes;
6396 u32 array_size;
6397 u32 len = 0;
David Sterba1ffb22c2014-10-31 19:02:42 +01006398 u32 cur_offset;
Chris Mason84eed902008-04-25 09:04:37 -04006399 struct btrfs_key key;
Chris Mason0b86a832008-03-24 15:01:56 -04006400
David Sterbaa83fffb2014-06-15 02:39:54 +02006401 ASSERT(BTRFS_SUPER_INFO_SIZE <= root->nodesize);
6402 /*
6403 * This will create extent buffer of nodesize, superblock size is
6404 * fixed to BTRFS_SUPER_INFO_SIZE. If nodesize > sb size, this will
6405 * overallocate but we can keep it as-is, only the first page is used.
6406 */
6407 sb = btrfs_find_create_tree_block(root, BTRFS_SUPER_INFO_OFFSET);
Chris Masona061fc82008-05-07 11:43:44 -04006408 if (!sb)
6409 return -ENOMEM;
6410 btrfs_set_buffer_uptodate(sb);
Chris Mason85d4e462011-07-26 16:11:19 -04006411 btrfs_set_buffer_lockdep_class(root->root_key.objectid, sb, 0);
David Sterba8a334422011-10-07 18:06:13 +02006412 /*
6413 * The sb extent buffer is artifical and just used to read the system array.
6414 * btrfs_set_buffer_uptodate() call does not properly mark all it's
6415 * pages up-to-date when the page is larger: extent does not cover the
6416 * whole page and consequently check_page_uptodate does not find all
6417 * the page's extents up-to-date (the hole beyond sb),
6418 * write_extent_buffer then triggers a WARN_ON.
6419 *
6420 * Regular short extents go through mark_extent_buffer_dirty/writeback cycle,
6421 * but sb spans only this function. Add an explicit SetPageUptodate call
6422 * to silence the warning eg. on PowerPC 64.
6423 */
6424 if (PAGE_CACHE_SIZE > BTRFS_SUPER_INFO_SIZE)
Chris Mason727011e2010-08-06 13:21:20 -04006425 SetPageUptodate(sb->pages[0]);
Chris Mason4008c042009-02-12 14:09:45 -05006426
Chris Masona061fc82008-05-07 11:43:44 -04006427 write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006428 array_size = btrfs_super_sys_array_size(super_copy);
6429
David Sterba1ffb22c2014-10-31 19:02:42 +01006430 array_ptr = super_copy->sys_chunk_array;
6431 sb_array_offset = offsetof(struct btrfs_super_block, sys_chunk_array);
6432 cur_offset = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006433
David Sterba1ffb22c2014-10-31 19:02:42 +01006434 while (cur_offset < array_size) {
6435 disk_key = (struct btrfs_disk_key *)array_ptr;
David Sterbae3540ea2014-11-05 15:24:51 +01006436 len = sizeof(*disk_key);
6437 if (cur_offset + len > array_size)
6438 goto out_short_read;
6439
Chris Mason0b86a832008-03-24 15:01:56 -04006440 btrfs_disk_key_to_cpu(&key, disk_key);
6441
David Sterba1ffb22c2014-10-31 19:02:42 +01006442 array_ptr += len;
6443 sb_array_offset += len;
6444 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006445
Chris Mason0d81ba52008-03-24 15:02:07 -04006446 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
David Sterba1ffb22c2014-10-31 19:02:42 +01006447 chunk = (struct btrfs_chunk *)sb_array_offset;
David Sterbae3540ea2014-11-05 15:24:51 +01006448 /*
6449 * At least one btrfs_chunk with one stripe must be
6450 * present, exact stripe count check comes afterwards
6451 */
6452 len = btrfs_chunk_item_size(1);
6453 if (cur_offset + len > array_size)
6454 goto out_short_read;
6455
6456 num_stripes = btrfs_chunk_num_stripes(sb, chunk);
6457 len = btrfs_chunk_item_size(num_stripes);
6458 if (cur_offset + len > array_size)
6459 goto out_short_read;
6460
Chris Mason0d81ba52008-03-24 15:02:07 -04006461 ret = read_one_chunk(root, &key, sb, chunk);
Chris Mason84eed902008-04-25 09:04:37 -04006462 if (ret)
6463 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006464 } else {
Chris Mason84eed902008-04-25 09:04:37 -04006465 ret = -EIO;
6466 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006467 }
David Sterba1ffb22c2014-10-31 19:02:42 +01006468 array_ptr += len;
6469 sb_array_offset += len;
6470 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006471 }
Chris Masona061fc82008-05-07 11:43:44 -04006472 free_extent_buffer(sb);
Chris Mason84eed902008-04-25 09:04:37 -04006473 return ret;
David Sterbae3540ea2014-11-05 15:24:51 +01006474
6475out_short_read:
6476 printk(KERN_ERR "BTRFS: sys_array too short to read %u bytes at offset %u\n",
6477 len, cur_offset);
6478 free_extent_buffer(sb);
6479 return -EIO;
Chris Mason0b86a832008-03-24 15:01:56 -04006480}
6481
6482int btrfs_read_chunk_tree(struct btrfs_root *root)
6483{
6484 struct btrfs_path *path;
6485 struct extent_buffer *leaf;
6486 struct btrfs_key key;
6487 struct btrfs_key found_key;
6488 int ret;
6489 int slot;
6490
6491 root = root->fs_info->chunk_root;
6492
6493 path = btrfs_alloc_path();
6494 if (!path)
6495 return -ENOMEM;
6496
Li Zefanb367e472011-12-07 11:38:24 +08006497 mutex_lock(&uuid_mutex);
6498 lock_chunks(root);
6499
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006500 /*
6501 * Read all device items, and then all the chunk items. All
6502 * device items are found before any chunk item (their object id
6503 * is smaller than the lowest possible object id for a chunk
6504 * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID).
Chris Mason0b86a832008-03-24 15:01:56 -04006505 */
6506 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
6507 key.offset = 0;
6508 key.type = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006509 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Zhao Leiab593812010-03-25 12:34:49 +00006510 if (ret < 0)
6511 goto error;
Chris Masond3977122009-01-05 21:25:51 -05006512 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04006513 leaf = path->nodes[0];
6514 slot = path->slots[0];
6515 if (slot >= btrfs_header_nritems(leaf)) {
6516 ret = btrfs_next_leaf(root, path);
6517 if (ret == 0)
6518 continue;
6519 if (ret < 0)
6520 goto error;
6521 break;
6522 }
6523 btrfs_item_key_to_cpu(leaf, &found_key, slot);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006524 if (found_key.type == BTRFS_DEV_ITEM_KEY) {
6525 struct btrfs_dev_item *dev_item;
6526 dev_item = btrfs_item_ptr(leaf, slot,
Chris Mason0b86a832008-03-24 15:01:56 -04006527 struct btrfs_dev_item);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006528 ret = read_one_dev(root, leaf, dev_item);
6529 if (ret)
6530 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04006531 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
6532 struct btrfs_chunk *chunk;
6533 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
6534 ret = read_one_chunk(root, &found_key, leaf, chunk);
Yan Zheng2b820322008-11-17 21:11:30 -05006535 if (ret)
6536 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04006537 }
6538 path->slots[0]++;
6539 }
Chris Mason0b86a832008-03-24 15:01:56 -04006540 ret = 0;
6541error:
Li Zefanb367e472011-12-07 11:38:24 +08006542 unlock_chunks(root);
6543 mutex_unlock(&uuid_mutex);
6544
Yan Zheng2b820322008-11-17 21:11:30 -05006545 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04006546 return ret;
6547}
Stefan Behrens442a4f62012-05-25 16:06:08 +02006548
Miao Xiecb517ea2013-05-15 07:48:19 +00006549void btrfs_init_devices_late(struct btrfs_fs_info *fs_info)
6550{
6551 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6552 struct btrfs_device *device;
6553
Liu Bo29cc83f2014-05-11 23:14:59 +08006554 while (fs_devices) {
6555 mutex_lock(&fs_devices->device_list_mutex);
6556 list_for_each_entry(device, &fs_devices->devices, dev_list)
6557 device->dev_root = fs_info->dev_root;
6558 mutex_unlock(&fs_devices->device_list_mutex);
6559
6560 fs_devices = fs_devices->seed;
6561 }
Miao Xiecb517ea2013-05-15 07:48:19 +00006562}
6563
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006564static void __btrfs_reset_dev_stats(struct btrfs_device *dev)
6565{
6566 int i;
6567
6568 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6569 btrfs_dev_stat_reset(dev, i);
6570}
6571
6572int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info)
6573{
6574 struct btrfs_key key;
6575 struct btrfs_key found_key;
6576 struct btrfs_root *dev_root = fs_info->dev_root;
6577 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6578 struct extent_buffer *eb;
6579 int slot;
6580 int ret = 0;
6581 struct btrfs_device *device;
6582 struct btrfs_path *path = NULL;
6583 int i;
6584
6585 path = btrfs_alloc_path();
6586 if (!path) {
6587 ret = -ENOMEM;
6588 goto out;
6589 }
6590
6591 mutex_lock(&fs_devices->device_list_mutex);
6592 list_for_each_entry(device, &fs_devices->devices, dev_list) {
6593 int item_size;
6594 struct btrfs_dev_stats_item *ptr;
6595
6596 key.objectid = 0;
6597 key.type = BTRFS_DEV_STATS_KEY;
6598 key.offset = device->devid;
6599 ret = btrfs_search_slot(NULL, dev_root, &key, path, 0, 0);
6600 if (ret) {
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006601 __btrfs_reset_dev_stats(device);
6602 device->dev_stats_valid = 1;
6603 btrfs_release_path(path);
6604 continue;
6605 }
6606 slot = path->slots[0];
6607 eb = path->nodes[0];
6608 btrfs_item_key_to_cpu(eb, &found_key, slot);
6609 item_size = btrfs_item_size_nr(eb, slot);
6610
6611 ptr = btrfs_item_ptr(eb, slot,
6612 struct btrfs_dev_stats_item);
6613
6614 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
6615 if (item_size >= (1 + i) * sizeof(__le64))
6616 btrfs_dev_stat_set(device, i,
6617 btrfs_dev_stats_value(eb, ptr, i));
6618 else
6619 btrfs_dev_stat_reset(device, i);
6620 }
6621
6622 device->dev_stats_valid = 1;
6623 btrfs_dev_stat_print_on_load(device);
6624 btrfs_release_path(path);
6625 }
6626 mutex_unlock(&fs_devices->device_list_mutex);
6627
6628out:
6629 btrfs_free_path(path);
6630 return ret < 0 ? ret : 0;
6631}
6632
6633static int update_dev_stat_item(struct btrfs_trans_handle *trans,
6634 struct btrfs_root *dev_root,
6635 struct btrfs_device *device)
6636{
6637 struct btrfs_path *path;
6638 struct btrfs_key key;
6639 struct extent_buffer *eb;
6640 struct btrfs_dev_stats_item *ptr;
6641 int ret;
6642 int i;
6643
6644 key.objectid = 0;
6645 key.type = BTRFS_DEV_STATS_KEY;
6646 key.offset = device->devid;
6647
6648 path = btrfs_alloc_path();
6649 BUG_ON(!path);
6650 ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1);
6651 if (ret < 0) {
David Sterbaecaeb142015-10-08 09:01:03 +02006652 btrfs_warn_in_rcu(dev_root->fs_info,
6653 "error %d while searching for dev_stats item for device %s",
Josef Bacik606686e2012-06-04 14:03:51 -04006654 ret, rcu_str_deref(device->name));
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006655 goto out;
6656 }
6657
6658 if (ret == 0 &&
6659 btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) {
6660 /* need to delete old one and insert a new one */
6661 ret = btrfs_del_item(trans, dev_root, path);
6662 if (ret != 0) {
David Sterbaecaeb142015-10-08 09:01:03 +02006663 btrfs_warn_in_rcu(dev_root->fs_info,
6664 "delete too small dev_stats item for device %s failed %d",
Josef Bacik606686e2012-06-04 14:03:51 -04006665 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006666 goto out;
6667 }
6668 ret = 1;
6669 }
6670
6671 if (ret == 1) {
6672 /* need to insert a new item */
6673 btrfs_release_path(path);
6674 ret = btrfs_insert_empty_item(trans, dev_root, path,
6675 &key, sizeof(*ptr));
6676 if (ret < 0) {
David Sterbaecaeb142015-10-08 09:01:03 +02006677 btrfs_warn_in_rcu(dev_root->fs_info,
6678 "insert dev_stats item for device %s failed %d",
6679 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006680 goto out;
6681 }
6682 }
6683
6684 eb = path->nodes[0];
6685 ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item);
6686 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6687 btrfs_set_dev_stats_value(eb, ptr, i,
6688 btrfs_dev_stat_read(device, i));
6689 btrfs_mark_buffer_dirty(eb);
6690
6691out:
6692 btrfs_free_path(path);
6693 return ret;
6694}
6695
6696/*
6697 * called from commit_transaction. Writes all changed device stats to disk.
6698 */
6699int btrfs_run_dev_stats(struct btrfs_trans_handle *trans,
6700 struct btrfs_fs_info *fs_info)
6701{
6702 struct btrfs_root *dev_root = fs_info->dev_root;
6703 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6704 struct btrfs_device *device;
Miao Xieaddc3fa2014-07-24 11:37:11 +08006705 int stats_cnt;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006706 int ret = 0;
6707
6708 mutex_lock(&fs_devices->device_list_mutex);
6709 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Miao Xieaddc3fa2014-07-24 11:37:11 +08006710 if (!device->dev_stats_valid || !btrfs_dev_stats_dirty(device))
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006711 continue;
6712
Miao Xieaddc3fa2014-07-24 11:37:11 +08006713 stats_cnt = atomic_read(&device->dev_stats_ccnt);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006714 ret = update_dev_stat_item(trans, dev_root, device);
6715 if (!ret)
Miao Xieaddc3fa2014-07-24 11:37:11 +08006716 atomic_sub(stats_cnt, &device->dev_stats_ccnt);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006717 }
6718 mutex_unlock(&fs_devices->device_list_mutex);
6719
6720 return ret;
6721}
6722
Stefan Behrens442a4f62012-05-25 16:06:08 +02006723void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index)
6724{
6725 btrfs_dev_stat_inc(dev, index);
6726 btrfs_dev_stat_print_on_error(dev);
6727}
6728
Eric Sandeen48a3b632013-04-25 20:41:01 +00006729static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev)
Stefan Behrens442a4f62012-05-25 16:06:08 +02006730{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006731 if (!dev->dev_stats_valid)
6732 return;
David Sterbab14af3b2015-10-08 10:43:10 +02006733 btrfs_err_rl_in_rcu(dev->dev_root->fs_info,
6734 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04006735 rcu_str_deref(dev->name),
Stefan Behrens442a4f62012-05-25 16:06:08 +02006736 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
6737 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
6738 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
Frank Holtonefe120a2013-12-20 11:37:06 -05006739 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
6740 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
Stefan Behrens442a4f62012-05-25 16:06:08 +02006741}
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006742
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006743static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev)
6744{
Stefan Behrensa98cdb82012-07-17 09:02:11 -06006745 int i;
6746
6747 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6748 if (btrfs_dev_stat_read(dev, i) != 0)
6749 break;
6750 if (i == BTRFS_DEV_STAT_VALUES_MAX)
6751 return; /* all values == 0, suppress message */
6752
David Sterbaecaeb142015-10-08 09:01:03 +02006753 btrfs_info_in_rcu(dev->dev_root->fs_info,
6754 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04006755 rcu_str_deref(dev->name),
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006756 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
6757 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
6758 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
6759 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
6760 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
6761}
6762
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006763int btrfs_get_dev_stats(struct btrfs_root *root,
David Sterbab27f7c02012-06-22 06:30:39 -06006764 struct btrfs_ioctl_get_dev_stats *stats)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006765{
6766 struct btrfs_device *dev;
6767 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
6768 int i;
6769
6770 mutex_lock(&fs_devices->device_list_mutex);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006771 dev = btrfs_find_device(root->fs_info, stats->devid, NULL, NULL);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006772 mutex_unlock(&fs_devices->device_list_mutex);
6773
6774 if (!dev) {
Frank Holtonefe120a2013-12-20 11:37:06 -05006775 btrfs_warn(root->fs_info, "get dev_stats failed, device not found");
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006776 return -ENODEV;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006777 } else if (!dev->dev_stats_valid) {
Frank Holtonefe120a2013-12-20 11:37:06 -05006778 btrfs_warn(root->fs_info, "get dev_stats failed, not yet valid");
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006779 return -ENODEV;
David Sterbab27f7c02012-06-22 06:30:39 -06006780 } else if (stats->flags & BTRFS_DEV_STATS_RESET) {
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006781 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
6782 if (stats->nr_items > i)
6783 stats->values[i] =
6784 btrfs_dev_stat_read_and_reset(dev, i);
6785 else
6786 btrfs_dev_stat_reset(dev, i);
6787 }
6788 } else {
6789 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6790 if (stats->nr_items > i)
6791 stats->values[i] = btrfs_dev_stat_read(dev, i);
6792 }
6793 if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX)
6794 stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX;
6795 return 0;
6796}
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006797
Anand Jain12b1c262015-08-14 18:32:59 +08006798void btrfs_scratch_superblocks(struct block_device *bdev, char *device_path)
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006799{
6800 struct buffer_head *bh;
6801 struct btrfs_super_block *disk_super;
Anand Jain12b1c262015-08-14 18:32:59 +08006802 int copy_num;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006803
Anand Jain12b1c262015-08-14 18:32:59 +08006804 if (!bdev)
6805 return;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006806
Anand Jain12b1c262015-08-14 18:32:59 +08006807 for (copy_num = 0; copy_num < BTRFS_SUPER_MIRROR_MAX;
6808 copy_num++) {
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006809
Anand Jain12b1c262015-08-14 18:32:59 +08006810 if (btrfs_read_dev_one_super(bdev, copy_num, &bh))
6811 continue;
6812
6813 disk_super = (struct btrfs_super_block *)bh->b_data;
6814
6815 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
6816 set_buffer_dirty(bh);
6817 sync_dirty_buffer(bh);
6818 brelse(bh);
6819 }
6820
6821 /* Notify udev that device has changed */
6822 btrfs_kobject_uevent(bdev, KOBJ_CHANGE);
6823
6824 /* Update ctime/mtime for device path for libblkid */
6825 update_dev_time(device_path);
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006826}
Miao Xie935e5cc2014-09-03 21:35:33 +08006827
6828/*
6829 * Update the size of all devices, which is used for writing out the
6830 * super blocks.
6831 */
6832void btrfs_update_commit_device_size(struct btrfs_fs_info *fs_info)
6833{
6834 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6835 struct btrfs_device *curr, *next;
6836
6837 if (list_empty(&fs_devices->resized_devices))
6838 return;
6839
6840 mutex_lock(&fs_devices->device_list_mutex);
6841 lock_chunks(fs_info->dev_root);
6842 list_for_each_entry_safe(curr, next, &fs_devices->resized_devices,
6843 resized_list) {
6844 list_del_init(&curr->resized_list);
6845 curr->commit_total_bytes = curr->disk_total_bytes;
6846 }
6847 unlock_chunks(fs_info->dev_root);
6848 mutex_unlock(&fs_devices->device_list_mutex);
6849}
Miao Xiece7213c2014-09-03 21:35:34 +08006850
6851/* Must be invoked during the transaction commit */
6852void btrfs_update_commit_device_bytes_used(struct btrfs_root *root,
6853 struct btrfs_transaction *transaction)
6854{
6855 struct extent_map *em;
6856 struct map_lookup *map;
6857 struct btrfs_device *dev;
6858 int i;
6859
6860 if (list_empty(&transaction->pending_chunks))
6861 return;
6862
6863 /* In order to kick the device replace finish process */
6864 lock_chunks(root);
6865 list_for_each_entry(em, &transaction->pending_chunks, list) {
6866 map = (struct map_lookup *)em->bdev;
6867
6868 for (i = 0; i < map->num_stripes; i++) {
6869 dev = map->stripes[i].dev;
6870 dev->commit_bytes_used = dev->bytes_used;
6871 }
6872 }
6873 unlock_chunks(root);
6874}
Anand Jain5a13f432015-03-10 06:38:31 +08006875
6876void btrfs_set_fs_info_ptr(struct btrfs_fs_info *fs_info)
6877{
6878 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6879 while (fs_devices) {
6880 fs_devices->fs_info = fs_info;
6881 fs_devices = fs_devices->seed;
6882 }
6883}
6884
6885void btrfs_reset_fs_info_ptr(struct btrfs_fs_info *fs_info)
6886{
6887 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6888 while (fs_devices) {
6889 fs_devices->fs_info = NULL;
6890 fs_devices = fs_devices->seed;
6891 }
6892}
Anand Jainf190aa42015-08-14 18:33:05 +08006893
6894void btrfs_close_one_device(struct btrfs_device *device)
6895{
6896 struct btrfs_fs_devices *fs_devices = device->fs_devices;
6897 struct btrfs_device *new_device;
6898 struct rcu_string *name;
6899
6900 if (device->bdev)
6901 fs_devices->open_devices--;
6902
6903 if (device->writeable &&
6904 device->devid != BTRFS_DEV_REPLACE_DEVID) {
6905 list_del_init(&device->dev_alloc_list);
6906 fs_devices->rw_devices--;
6907 }
6908
6909 if (device->missing)
6910 fs_devices->missing_devices--;
6911
6912 new_device = btrfs_alloc_device(NULL, &device->devid,
6913 device->uuid);
6914 BUG_ON(IS_ERR(new_device)); /* -ENOMEM */
6915
6916 /* Safe because we are under uuid_mutex */
6917 if (device->name) {
6918 name = rcu_string_strdup(device->name->str, GFP_NOFS);
6919 BUG_ON(!name); /* -ENOMEM */
6920 rcu_assign_pointer(new_device->name, name);
6921 }
6922
6923 list_replace_rcu(&device->dev_list, &new_device->dev_list);
6924 new_device->fs_devices = device->fs_devices;
6925
6926 call_rcu(&device->rcu, free_device);
6927}