blob: 9cb78e31fc7694d5ea450cc57d51162b312bc118 [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);
Mel Gormand0164ad2015-11-06 16:28:21 -0800235 INIT_RADIX_TREE(&dev->reada_zones, GFP_NOFS & ~__GFP_DIRECT_RECLAIM);
236 INIT_RADIX_TREE(&dev->reada_extents, GFP_NOFS & ~__GFP_DIRECT_RECLAIM);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +0300237
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
Jeff Mahoney95617d62015-06-03 10:55:48 -04001185 map = em->map_lookup;
Josef Bacik6df9a952013-06-27 13:22:46 -04001186 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 */
Byongho Leeee221842015-12-15 01:42:10 +09001409 search_start = max_t(u64, root->fs_info->alloc_start, SZ_1M);
Jeff Mahoney499f3772015-06-15 09:41:17 -04001410 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);
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001645}
1646
Chris Masona061fc82008-05-07 11:43:44 -04001647static int btrfs_rm_dev_item(struct btrfs_root *root,
1648 struct btrfs_device *device)
1649{
1650 int ret;
1651 struct btrfs_path *path;
Chris Masona061fc82008-05-07 11:43:44 -04001652 struct btrfs_key key;
Chris Masona061fc82008-05-07 11:43:44 -04001653 struct btrfs_trans_handle *trans;
1654
1655 root = root->fs_info->chunk_root;
1656
1657 path = btrfs_alloc_path();
1658 if (!path)
1659 return -ENOMEM;
1660
Yan, Zhenga22285a2010-05-16 10:48:46 -04001661 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001662 if (IS_ERR(trans)) {
1663 btrfs_free_path(path);
1664 return PTR_ERR(trans);
1665 }
Chris Masona061fc82008-05-07 11:43:44 -04001666 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1667 key.type = BTRFS_DEV_ITEM_KEY;
1668 key.offset = device->devid;
1669
1670 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1671 if (ret < 0)
1672 goto out;
1673
1674 if (ret > 0) {
1675 ret = -ENOENT;
1676 goto out;
1677 }
1678
1679 ret = btrfs_del_item(trans, root, path);
1680 if (ret)
1681 goto out;
Chris Masona061fc82008-05-07 11:43:44 -04001682out:
1683 btrfs_free_path(path);
1684 btrfs_commit_transaction(trans, root);
1685 return ret;
1686}
1687
1688int btrfs_rm_device(struct btrfs_root *root, char *device_path)
1689{
1690 struct btrfs_device *device;
Yan Zheng2b820322008-11-17 21:11:30 -05001691 struct btrfs_device *next_device;
Chris Masona061fc82008-05-07 11:43:44 -04001692 struct block_device *bdev;
Chris Masondfe25022008-05-13 13:46:40 -04001693 struct buffer_head *bh = NULL;
Chris Masona061fc82008-05-07 11:43:44 -04001694 struct btrfs_super_block *disk_super;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001695 struct btrfs_fs_devices *cur_devices;
Chris Masona061fc82008-05-07 11:43:44 -04001696 u64 all_avail;
1697 u64 devid;
Yan Zheng2b820322008-11-17 21:11:30 -05001698 u64 num_devices;
1699 u8 *dev_uuid;
Miao Xiede98ced2013-01-29 10:13:12 +00001700 unsigned seq;
Chris Masona061fc82008-05-07 11:43:44 -04001701 int ret = 0;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001702 bool clear_super = false;
Chris Masona061fc82008-05-07 11:43:44 -04001703
Chris Masona061fc82008-05-07 11:43:44 -04001704 mutex_lock(&uuid_mutex);
1705
Miao Xiede98ced2013-01-29 10:13:12 +00001706 do {
1707 seq = read_seqbegin(&root->fs_info->profiles_lock);
1708
1709 all_avail = root->fs_info->avail_data_alloc_bits |
1710 root->fs_info->avail_system_alloc_bits |
1711 root->fs_info->avail_metadata_alloc_bits;
1712 } while (read_seqretry(&root->fs_info->profiles_lock, seq));
Chris Masona061fc82008-05-07 11:43:44 -04001713
Stefan Behrens8dabb742012-11-06 13:15:27 +01001714 num_devices = root->fs_info->fs_devices->num_devices;
1715 btrfs_dev_replace_lock(&root->fs_info->dev_replace);
1716 if (btrfs_dev_replace_is_ongoing(&root->fs_info->dev_replace)) {
1717 WARN_ON(num_devices < 1);
1718 num_devices--;
1719 }
1720 btrfs_dev_replace_unlock(&root->fs_info->dev_replace);
1721
1722 if ((all_avail & BTRFS_BLOCK_GROUP_RAID10) && num_devices <= 4) {
Anand Jain183860f2013-05-17 10:52:45 +00001723 ret = BTRFS_ERROR_DEV_RAID10_MIN_NOT_MET;
Chris Masona061fc82008-05-07 11:43:44 -04001724 goto out;
1725 }
1726
Stefan Behrens8dabb742012-11-06 13:15:27 +01001727 if ((all_avail & BTRFS_BLOCK_GROUP_RAID1) && num_devices <= 2) {
Anand Jain183860f2013-05-17 10:52:45 +00001728 ret = BTRFS_ERROR_DEV_RAID1_MIN_NOT_MET;
Chris Masona061fc82008-05-07 11:43:44 -04001729 goto out;
1730 }
1731
David Woodhouse53b381b2013-01-29 18:40:14 -05001732 if ((all_avail & BTRFS_BLOCK_GROUP_RAID5) &&
1733 root->fs_info->fs_devices->rw_devices <= 2) {
Anand Jain183860f2013-05-17 10:52:45 +00001734 ret = BTRFS_ERROR_DEV_RAID5_MIN_NOT_MET;
David Woodhouse53b381b2013-01-29 18:40:14 -05001735 goto out;
1736 }
1737 if ((all_avail & BTRFS_BLOCK_GROUP_RAID6) &&
1738 root->fs_info->fs_devices->rw_devices <= 3) {
Anand Jain183860f2013-05-17 10:52:45 +00001739 ret = BTRFS_ERROR_DEV_RAID6_MIN_NOT_MET;
David Woodhouse53b381b2013-01-29 18:40:14 -05001740 goto out;
1741 }
1742
Chris Masondfe25022008-05-13 13:46:40 -04001743 if (strcmp(device_path, "missing") == 0) {
Chris Masondfe25022008-05-13 13:46:40 -04001744 struct list_head *devices;
1745 struct btrfs_device *tmp;
Chris Masona061fc82008-05-07 11:43:44 -04001746
Chris Masondfe25022008-05-13 13:46:40 -04001747 device = NULL;
1748 devices = &root->fs_info->fs_devices->devices;
Xiao Guangrong46224702011-04-20 10:08:47 +00001749 /*
1750 * It is safe to read the devices since the volume_mutex
1751 * is held.
1752 */
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001753 list_for_each_entry(tmp, devices, dev_list) {
Stefan Behrens63a212a2012-11-05 18:29:28 +01001754 if (tmp->in_fs_metadata &&
1755 !tmp->is_tgtdev_for_dev_replace &&
1756 !tmp->bdev) {
Chris Masondfe25022008-05-13 13:46:40 -04001757 device = tmp;
1758 break;
1759 }
1760 }
1761 bdev = NULL;
1762 bh = NULL;
1763 disk_super = NULL;
1764 if (!device) {
Anand Jain183860f2013-05-17 10:52:45 +00001765 ret = BTRFS_ERROR_DEV_MISSING_NOT_FOUND;
Chris Masondfe25022008-05-13 13:46:40 -04001766 goto out;
1767 }
Chris Masondfe25022008-05-13 13:46:40 -04001768 } else {
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001769 ret = btrfs_get_bdev_and_sb(device_path,
Lukas Czernercc975eb2012-12-07 10:09:19 +00001770 FMODE_WRITE | FMODE_EXCL,
Stefan Behrensbeaf8ab2012-11-12 14:03:45 +01001771 root->fs_info->bdev_holder, 0,
1772 &bdev, &bh);
1773 if (ret)
Chris Masondfe25022008-05-13 13:46:40 -04001774 goto out;
Chris Masondfe25022008-05-13 13:46:40 -04001775 disk_super = (struct btrfs_super_block *)bh->b_data;
Xiao Guangronga3438322010-01-06 11:48:18 +00001776 devid = btrfs_stack_device_id(&disk_super->dev_item);
Yan Zheng2b820322008-11-17 21:11:30 -05001777 dev_uuid = disk_super->dev_item.uuid;
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001778 device = btrfs_find_device(root->fs_info, devid, dev_uuid,
Yan Zheng2b820322008-11-17 21:11:30 -05001779 disk_super->fsid);
Chris Masondfe25022008-05-13 13:46:40 -04001780 if (!device) {
1781 ret = -ENOENT;
1782 goto error_brelse;
1783 }
Chris Masondfe25022008-05-13 13:46:40 -04001784 }
Yan Zheng2b820322008-11-17 21:11:30 -05001785
Stefan Behrens63a212a2012-11-05 18:29:28 +01001786 if (device->is_tgtdev_for_dev_replace) {
Anand Jain183860f2013-05-17 10:52:45 +00001787 ret = BTRFS_ERROR_DEV_TGT_REPLACE;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001788 goto error_brelse;
1789 }
1790
Yan Zheng2b820322008-11-17 21:11:30 -05001791 if (device->writeable && root->fs_info->fs_devices->rw_devices == 1) {
Anand Jain183860f2013-05-17 10:52:45 +00001792 ret = BTRFS_ERROR_DEV_ONLY_WRITABLE;
Yan Zheng2b820322008-11-17 21:11:30 -05001793 goto error_brelse;
1794 }
1795
1796 if (device->writeable) {
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001797 lock_chunks(root);
Yan Zheng2b820322008-11-17 21:11:30 -05001798 list_del_init(&device->dev_alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08001799 device->fs_devices->rw_devices--;
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001800 unlock_chunks(root);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001801 clear_super = true;
Yan Zheng2b820322008-11-17 21:11:30 -05001802 }
Chris Masona061fc82008-05-07 11:43:44 -04001803
Carey Underwoodd7901552013-03-04 16:37:06 -06001804 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001805 ret = btrfs_shrink_device(device, 0);
Carey Underwoodd7901552013-03-04 16:37:06 -06001806 mutex_lock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001807 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001808 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001809
Stefan Behrens63a212a2012-11-05 18:29:28 +01001810 /*
1811 * TODO: the superblock still includes this device in its num_devices
1812 * counter although write_all_supers() is not locked out. This
1813 * could give a filesystem state which requires a degraded mount.
1814 */
Chris Masona061fc82008-05-07 11:43:44 -04001815 ret = btrfs_rm_dev_item(root->fs_info->chunk_root, device);
1816 if (ret)
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001817 goto error_undo;
Chris Masona061fc82008-05-07 11:43:44 -04001818
Yan Zheng2b820322008-11-17 21:11:30 -05001819 device->in_fs_metadata = 0;
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001820 btrfs_scrub_cancel_dev(root->fs_info, device);
Chris Masone5e9a522009-06-10 15:17:02 -04001821
1822 /*
1823 * the device list mutex makes sure that we don't change
1824 * the device list while someone else is writing out all
Filipe David Borba Mananad7306802013-08-09 15:41:36 +01001825 * the device supers. Whoever is writing all supers, should
1826 * lock the device list mutex before getting the number of
1827 * devices in the super block (super_copy). Conversely,
1828 * whoever updates the number of devices in the super block
1829 * (super_copy) should hold the device list mutex.
Chris Masone5e9a522009-06-10 15:17:02 -04001830 */
Xiao Guangrong1f781602011-04-20 10:09:16 +00001831
1832 cur_devices = device->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04001833 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001834 list_del_rcu(&device->dev_list);
Chris Masone5e9a522009-06-10 15:17:02 -04001835
Yan Zhenge4404d62008-12-12 10:03:26 -05001836 device->fs_devices->num_devices--;
Josef Bacik02db0842012-06-21 16:03:58 -04001837 device->fs_devices->total_devices--;
Yan Zheng2b820322008-11-17 21:11:30 -05001838
Chris Masoncd02dca2010-12-13 14:56:23 -05001839 if (device->missing)
Miao Xie3a7d55c2014-07-16 18:38:01 +08001840 device->fs_devices->missing_devices--;
Chris Masoncd02dca2010-12-13 14:56:23 -05001841
Yan Zheng2b820322008-11-17 21:11:30 -05001842 next_device = list_entry(root->fs_info->fs_devices->devices.next,
1843 struct btrfs_device, dev_list);
1844 if (device->bdev == root->fs_info->sb->s_bdev)
1845 root->fs_info->sb->s_bdev = next_device->bdev;
1846 if (device->bdev == root->fs_info->fs_devices->latest_bdev)
1847 root->fs_info->fs_devices->latest_bdev = next_device->bdev;
1848
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001849 if (device->bdev) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001850 device->fs_devices->open_devices--;
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001851 /* remove sysfs entry */
Anand Jain32576042015-08-14 18:32:49 +08001852 btrfs_sysfs_rm_device_link(root->fs_info->fs_devices, device);
Eric Sandeen0bfaa9c2014-07-07 12:34:49 -05001853 }
Anand Jain99994cd2014-06-03 11:36:00 +08001854
Xiao Guangrong1f781602011-04-20 10:09:16 +00001855 call_rcu(&device->rcu, free_device);
Yan Zhenge4404d62008-12-12 10:03:26 -05001856
David Sterba6c417612011-04-13 15:41:04 +02001857 num_devices = btrfs_super_num_devices(root->fs_info->super_copy) - 1;
1858 btrfs_set_super_num_devices(root->fs_info->super_copy, num_devices);
Filipe David Borba Mananad7306802013-08-09 15:41:36 +01001859 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05001860
Xiao Guangrong1f781602011-04-20 10:09:16 +00001861 if (cur_devices->open_devices == 0) {
Yan Zhenge4404d62008-12-12 10:03:26 -05001862 struct btrfs_fs_devices *fs_devices;
1863 fs_devices = root->fs_info->fs_devices;
1864 while (fs_devices) {
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02001865 if (fs_devices->seed == cur_devices) {
1866 fs_devices->seed = cur_devices->seed;
Yan Zhenge4404d62008-12-12 10:03:26 -05001867 break;
Rickard Strandqvist8321cf22014-05-22 22:43:43 +02001868 }
Yan Zhenge4404d62008-12-12 10:03:26 -05001869 fs_devices = fs_devices->seed;
Yan Zheng2b820322008-11-17 21:11:30 -05001870 }
Xiao Guangrong1f781602011-04-20 10:09:16 +00001871 cur_devices->seed = NULL;
Xiao Guangrong1f781602011-04-20 10:09:16 +00001872 __btrfs_close_devices(cur_devices);
Xiao Guangrong1f781602011-04-20 10:09:16 +00001873 free_fs_devices(cur_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05001874 }
1875
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02001876 root->fs_info->num_tolerated_disk_barrier_failures =
1877 btrfs_calc_num_tolerated_disk_barrier_failures(root->fs_info);
1878
Yan Zheng2b820322008-11-17 21:11:30 -05001879 /*
1880 * at this point, the device is zero sized. We want to
1881 * remove it from the devices list and zero out the old super
1882 */
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001883 if (clear_super && disk_super) {
Anand Jain4d90d282014-04-06 12:59:07 +08001884 u64 bytenr;
1885 int i;
1886
Chris Masondfe25022008-05-13 13:46:40 -04001887 /* make sure this device isn't detected as part of
1888 * the FS anymore
1889 */
1890 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
1891 set_buffer_dirty(bh);
1892 sync_dirty_buffer(bh);
Anand Jain4d90d282014-04-06 12:59:07 +08001893
1894 /* clear the mirror copies of super block on the disk
1895 * being removed, 0th copy is been taken care above and
1896 * the below would take of the rest
1897 */
1898 for (i = 1; i < BTRFS_SUPER_MIRROR_MAX; i++) {
1899 bytenr = btrfs_sb_offset(i);
1900 if (bytenr + BTRFS_SUPER_INFO_SIZE >=
1901 i_size_read(bdev->bd_inode))
1902 break;
1903
1904 brelse(bh);
1905 bh = __bread(bdev, bytenr / 4096,
1906 BTRFS_SUPER_INFO_SIZE);
1907 if (!bh)
1908 continue;
1909
1910 disk_super = (struct btrfs_super_block *)bh->b_data;
1911
1912 if (btrfs_super_bytenr(disk_super) != bytenr ||
1913 btrfs_super_magic(disk_super) != BTRFS_MAGIC) {
1914 continue;
1915 }
1916 memset(&disk_super->magic, 0,
1917 sizeof(disk_super->magic));
1918 set_buffer_dirty(bh);
1919 sync_dirty_buffer(bh);
1920 }
Chris Masondfe25022008-05-13 13:46:40 -04001921 }
Chris Masona061fc82008-05-07 11:43:44 -04001922
Chris Masona061fc82008-05-07 11:43:44 -04001923 ret = 0;
Chris Masona061fc82008-05-07 11:43:44 -04001924
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001925 if (bdev) {
1926 /* Notify udev that device has changed */
Eric Sandeen3c911602013-01-31 00:55:02 +00001927 btrfs_kobject_uevent(bdev, KOBJ_CHANGE);
Lukas Czernerb8b8ff52012-12-06 19:25:48 +00001928
Qu Wenruo5a1972b2014-04-16 17:02:32 +08001929 /* Update ctime/mtime for device path for libblkid */
1930 update_dev_time(device_path);
1931 }
1932
Chris Masona061fc82008-05-07 11:43:44 -04001933error_brelse:
1934 brelse(bh);
Chris Masondfe25022008-05-13 13:46:40 -04001935 if (bdev)
Tejun Heoe525fd82010-11-13 11:55:17 +01001936 blkdev_put(bdev, FMODE_READ | FMODE_EXCL);
Chris Masona061fc82008-05-07 11:43:44 -04001937out:
1938 mutex_unlock(&uuid_mutex);
Chris Masona061fc82008-05-07 11:43:44 -04001939 return ret;
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001940error_undo:
1941 if (device->writeable) {
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001942 lock_chunks(root);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001943 list_add(&device->dev_alloc_list,
1944 &root->fs_info->fs_devices->alloc_list);
Miao Xiec3929c32014-09-03 21:35:47 +08001945 device->fs_devices->rw_devices++;
Xiao Guangrong0c1daee2011-04-20 10:08:16 +00001946 unlock_chunks(root);
Ilya Dryomov9b3517e2011-02-15 18:14:25 +00001947 }
1948 goto error_brelse;
Chris Masona061fc82008-05-07 11:43:44 -04001949}
1950
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08001951void btrfs_rm_dev_replace_remove_srcdev(struct btrfs_fs_info *fs_info,
1952 struct btrfs_device *srcdev)
Stefan Behrense93c89c2012-11-05 17:33:06 +01001953{
Anand Jaind51908c2014-08-13 14:24:19 +08001954 struct btrfs_fs_devices *fs_devices;
1955
Stefan Behrense93c89c2012-11-05 17:33:06 +01001956 WARN_ON(!mutex_is_locked(&fs_info->fs_devices->device_list_mutex));
Ilya Dryomov13572722013-10-02 20:41:01 +03001957
Anand Jain25e8e912014-08-20 10:56:56 +08001958 /*
1959 * in case of fs with no seed, srcdev->fs_devices will point
1960 * to fs_devices of fs_info. However when the dev being replaced is
1961 * a seed dev it will point to the seed's local fs_devices. In short
1962 * srcdev will have its correct fs_devices in both the cases.
1963 */
1964 fs_devices = srcdev->fs_devices;
Anand Jaind51908c2014-08-13 14:24:19 +08001965
Stefan Behrense93c89c2012-11-05 17:33:06 +01001966 list_del_rcu(&srcdev->dev_list);
1967 list_del_rcu(&srcdev->dev_alloc_list);
Anand Jaind51908c2014-08-13 14:24:19 +08001968 fs_devices->num_devices--;
Miao Xie82372bc2014-09-03 21:35:44 +08001969 if (srcdev->missing)
Anand Jaind51908c2014-08-13 14:24:19 +08001970 fs_devices->missing_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01001971
Miao Xie82372bc2014-09-03 21:35:44 +08001972 if (srcdev->writeable) {
1973 fs_devices->rw_devices--;
1974 /* zero out the old super if it is writable */
David Sterba31388ab2015-11-19 11:35:17 +01001975 btrfs_scratch_superblocks(srcdev->bdev, srcdev->name->str);
Ilya Dryomov13572722013-10-02 20:41:01 +03001976 }
1977
Miao Xie82372bc2014-09-03 21:35:44 +08001978 if (srcdev->bdev)
Anand Jaind51908c2014-08-13 14:24:19 +08001979 fs_devices->open_devices--;
Qu Wenruo084b6e7c2014-10-30 16:52:31 +08001980}
1981
1982void btrfs_rm_dev_replace_free_srcdev(struct btrfs_fs_info *fs_info,
1983 struct btrfs_device *srcdev)
1984{
1985 struct btrfs_fs_devices *fs_devices = srcdev->fs_devices;
Stefan Behrense93c89c2012-11-05 17:33:06 +01001986
Stefan Behrense93c89c2012-11-05 17:33:06 +01001987 call_rcu(&srcdev->rcu, free_device);
Anand Jain94d5f0c2014-08-13 14:24:22 +08001988
1989 /*
1990 * unless fs_devices is seed fs, num_devices shouldn't go
1991 * zero
1992 */
1993 BUG_ON(!fs_devices->num_devices && !fs_devices->seeding);
1994
1995 /* if this is no devs we rather delete the fs_devices */
1996 if (!fs_devices->num_devices) {
1997 struct btrfs_fs_devices *tmp_fs_devices;
1998
1999 tmp_fs_devices = fs_info->fs_devices;
2000 while (tmp_fs_devices) {
2001 if (tmp_fs_devices->seed == fs_devices) {
2002 tmp_fs_devices->seed = fs_devices->seed;
2003 break;
2004 }
2005 tmp_fs_devices = tmp_fs_devices->seed;
2006 }
2007 fs_devices->seed = NULL;
Anand Jain8bef8402014-08-13 14:24:23 +08002008 __btrfs_close_devices(fs_devices);
2009 free_fs_devices(fs_devices);
Anand Jain94d5f0c2014-08-13 14:24:22 +08002010 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002011}
2012
2013void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
2014 struct btrfs_device *tgtdev)
2015{
2016 struct btrfs_device *next_device;
2017
Miao Xie67a2c452014-09-03 21:35:43 +08002018 mutex_lock(&uuid_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002019 WARN_ON(!tgtdev);
2020 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Anand Jaind2ff1b22015-03-10 06:38:42 +08002021
Anand Jain32576042015-08-14 18:32:49 +08002022 btrfs_sysfs_rm_device_link(fs_info->fs_devices, tgtdev);
Anand Jaind2ff1b22015-03-10 06:38:42 +08002023
Stefan Behrense93c89c2012-11-05 17:33:06 +01002024 if (tgtdev->bdev) {
David Sterba31388ab2015-11-19 11:35:17 +01002025 btrfs_scratch_superblocks(tgtdev->bdev, tgtdev->name->str);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002026 fs_info->fs_devices->open_devices--;
2027 }
2028 fs_info->fs_devices->num_devices--;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002029
2030 next_device = list_entry(fs_info->fs_devices->devices.next,
2031 struct btrfs_device, dev_list);
2032 if (tgtdev->bdev == fs_info->sb->s_bdev)
2033 fs_info->sb->s_bdev = next_device->bdev;
2034 if (tgtdev->bdev == fs_info->fs_devices->latest_bdev)
2035 fs_info->fs_devices->latest_bdev = next_device->bdev;
2036 list_del_rcu(&tgtdev->dev_list);
2037
2038 call_rcu(&tgtdev->rcu, free_device);
2039
2040 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Miao Xie67a2c452014-09-03 21:35:43 +08002041 mutex_unlock(&uuid_mutex);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002042}
2043
Eric Sandeen48a3b632013-04-25 20:41:01 +00002044static int btrfs_find_device_by_path(struct btrfs_root *root, char *device_path,
2045 struct btrfs_device **device)
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002046{
2047 int ret = 0;
2048 struct btrfs_super_block *disk_super;
2049 u64 devid;
2050 u8 *dev_uuid;
2051 struct block_device *bdev;
2052 struct buffer_head *bh;
2053
2054 *device = NULL;
2055 ret = btrfs_get_bdev_and_sb(device_path, FMODE_READ,
2056 root->fs_info->bdev_holder, 0, &bdev, &bh);
2057 if (ret)
2058 return ret;
2059 disk_super = (struct btrfs_super_block *)bh->b_data;
2060 devid = btrfs_stack_device_id(&disk_super->dev_item);
2061 dev_uuid = disk_super->dev_item.uuid;
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002062 *device = btrfs_find_device(root->fs_info, devid, dev_uuid,
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002063 disk_super->fsid);
2064 brelse(bh);
2065 if (!*device)
2066 ret = -ENOENT;
2067 blkdev_put(bdev, FMODE_READ);
2068 return ret;
2069}
2070
2071int btrfs_find_device_missing_or_by_path(struct btrfs_root *root,
2072 char *device_path,
2073 struct btrfs_device **device)
2074{
2075 *device = NULL;
2076 if (strcmp(device_path, "missing") == 0) {
2077 struct list_head *devices;
2078 struct btrfs_device *tmp;
2079
2080 devices = &root->fs_info->fs_devices->devices;
2081 /*
2082 * It is safe to read the devices since the volume_mutex
2083 * is held by the caller.
2084 */
2085 list_for_each_entry(tmp, devices, dev_list) {
2086 if (tmp->in_fs_metadata && !tmp->bdev) {
2087 *device = tmp;
2088 break;
2089 }
2090 }
2091
Anand Jaind74a6252015-08-14 18:32:56 +08002092 if (!*device)
2093 return BTRFS_ERROR_DEV_MISSING_NOT_FOUND;
Stefan Behrens7ba15b72012-11-05 14:42:30 +01002094
2095 return 0;
2096 } else {
2097 return btrfs_find_device_by_path(root, device_path, device);
2098 }
2099}
2100
Yan Zheng2b820322008-11-17 21:11:30 -05002101/*
2102 * does all the dirty work required for changing file system's UUID.
2103 */
Li Zefan125ccb02011-12-08 15:07:24 +08002104static int btrfs_prepare_sprout(struct btrfs_root *root)
Yan Zheng2b820322008-11-17 21:11:30 -05002105{
2106 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2107 struct btrfs_fs_devices *old_devices;
Yan Zhenge4404d62008-12-12 10:03:26 -05002108 struct btrfs_fs_devices *seed_devices;
David Sterba6c417612011-04-13 15:41:04 +02002109 struct btrfs_super_block *disk_super = root->fs_info->super_copy;
Yan Zheng2b820322008-11-17 21:11:30 -05002110 struct btrfs_device *device;
2111 u64 super_flags;
2112
2113 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zhenge4404d62008-12-12 10:03:26 -05002114 if (!fs_devices->seeding)
Yan Zheng2b820322008-11-17 21:11:30 -05002115 return -EINVAL;
2116
Ilya Dryomov2208a372013-08-12 14:33:03 +03002117 seed_devices = __alloc_fs_devices();
2118 if (IS_ERR(seed_devices))
2119 return PTR_ERR(seed_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002120
Yan Zhenge4404d62008-12-12 10:03:26 -05002121 old_devices = clone_fs_devices(fs_devices);
2122 if (IS_ERR(old_devices)) {
2123 kfree(seed_devices);
2124 return PTR_ERR(old_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002125 }
Yan Zhenge4404d62008-12-12 10:03:26 -05002126
Yan Zheng2b820322008-11-17 21:11:30 -05002127 list_add(&old_devices->list, &fs_uuids);
2128
Yan Zhenge4404d62008-12-12 10:03:26 -05002129 memcpy(seed_devices, fs_devices, sizeof(*seed_devices));
2130 seed_devices->opened = 1;
2131 INIT_LIST_HEAD(&seed_devices->devices);
2132 INIT_LIST_HEAD(&seed_devices->alloc_list);
Chris Masone5e9a522009-06-10 15:17:02 -04002133 mutex_init(&seed_devices->device_list_mutex);
Xiao Guangrongc9513ed2011-04-20 10:07:30 +00002134
2135 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002136 list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices,
2137 synchronize_rcu);
Miao Xie2196d6e2014-09-03 21:35:41 +08002138 list_for_each_entry(device, &seed_devices->devices, dev_list)
Yan Zhenge4404d62008-12-12 10:03:26 -05002139 device->fs_devices = seed_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002140
2141 lock_chunks(root);
2142 list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list);
2143 unlock_chunks(root);
Yan Zhenge4404d62008-12-12 10:03:26 -05002144
Yan Zheng2b820322008-11-17 21:11:30 -05002145 fs_devices->seeding = 0;
2146 fs_devices->num_devices = 0;
2147 fs_devices->open_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002148 fs_devices->missing_devices = 0;
Miao Xie69611ac2014-07-03 18:22:12 +08002149 fs_devices->rotating = 0;
Yan Zhenge4404d62008-12-12 10:03:26 -05002150 fs_devices->seed = seed_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002151
2152 generate_random_uuid(fs_devices->fsid);
2153 memcpy(root->fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
2154 memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01002155 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
2156
Yan Zheng2b820322008-11-17 21:11:30 -05002157 super_flags = btrfs_super_flags(disk_super) &
2158 ~BTRFS_SUPER_FLAG_SEEDING;
2159 btrfs_set_super_flags(disk_super, super_flags);
2160
2161 return 0;
2162}
2163
2164/*
2165 * strore the expected generation for seed devices in device items.
2166 */
2167static int btrfs_finish_sprout(struct btrfs_trans_handle *trans,
2168 struct btrfs_root *root)
2169{
2170 struct btrfs_path *path;
2171 struct extent_buffer *leaf;
2172 struct btrfs_dev_item *dev_item;
2173 struct btrfs_device *device;
2174 struct btrfs_key key;
2175 u8 fs_uuid[BTRFS_UUID_SIZE];
2176 u8 dev_uuid[BTRFS_UUID_SIZE];
2177 u64 devid;
2178 int ret;
2179
2180 path = btrfs_alloc_path();
2181 if (!path)
2182 return -ENOMEM;
2183
2184 root = root->fs_info->chunk_root;
2185 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2186 key.offset = 0;
2187 key.type = BTRFS_DEV_ITEM_KEY;
2188
2189 while (1) {
2190 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2191 if (ret < 0)
2192 goto error;
2193
2194 leaf = path->nodes[0];
2195next_slot:
2196 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
2197 ret = btrfs_next_leaf(root, path);
2198 if (ret > 0)
2199 break;
2200 if (ret < 0)
2201 goto error;
2202 leaf = path->nodes[0];
2203 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02002204 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002205 continue;
2206 }
2207
2208 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2209 if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID ||
2210 key.type != BTRFS_DEV_ITEM_KEY)
2211 break;
2212
2213 dev_item = btrfs_item_ptr(leaf, path->slots[0],
2214 struct btrfs_dev_item);
2215 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02002216 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05002217 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02002218 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05002219 BTRFS_UUID_SIZE);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002220 device = btrfs_find_device(root->fs_info, devid, dev_uuid,
2221 fs_uuid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002222 BUG_ON(!device); /* Logic error */
Yan Zheng2b820322008-11-17 21:11:30 -05002223
2224 if (device->fs_devices->seeding) {
2225 btrfs_set_device_generation(leaf, dev_item,
2226 device->generation);
2227 btrfs_mark_buffer_dirty(leaf);
2228 }
2229
2230 path->slots[0]++;
2231 goto next_slot;
2232 }
2233 ret = 0;
2234error:
2235 btrfs_free_path(path);
2236 return ret;
2237}
2238
Chris Mason788f20e2008-04-28 15:29:42 -04002239int btrfs_init_new_device(struct btrfs_root *root, char *device_path)
2240{
Josef Bacikd5e20032011-08-04 14:52:27 +00002241 struct request_queue *q;
Chris Mason788f20e2008-04-28 15:29:42 -04002242 struct btrfs_trans_handle *trans;
2243 struct btrfs_device *device;
2244 struct block_device *bdev;
Chris Mason788f20e2008-04-28 15:29:42 -04002245 struct list_head *devices;
Yan Zheng2b820322008-11-17 21:11:30 -05002246 struct super_block *sb = root->fs_info->sb;
Josef Bacik606686e2012-06-04 14:03:51 -04002247 struct rcu_string *name;
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002248 u64 tmp;
Yan Zheng2b820322008-11-17 21:11:30 -05002249 int seeding_dev = 0;
Chris Mason788f20e2008-04-28 15:29:42 -04002250 int ret = 0;
2251
Yan Zheng2b820322008-11-17 21:11:30 -05002252 if ((sb->s_flags & MS_RDONLY) && !root->fs_info->fs_devices->seeding)
Liu Bof8c5d0b2012-05-10 18:10:38 +08002253 return -EROFS;
Chris Mason788f20e2008-04-28 15:29:42 -04002254
Li Zefana5d16332011-12-07 20:08:40 -05002255 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
Tejun Heod4d77622010-11-13 11:55:18 +01002256 root->fs_info->bdev_holder);
Josef Bacik7f592032010-01-27 02:09:00 +00002257 if (IS_ERR(bdev))
2258 return PTR_ERR(bdev);
Chris Masona2135012008-06-25 16:01:30 -04002259
Yan Zheng2b820322008-11-17 21:11:30 -05002260 if (root->fs_info->fs_devices->seeding) {
2261 seeding_dev = 1;
2262 down_write(&sb->s_umount);
2263 mutex_lock(&uuid_mutex);
2264 }
2265
Chris Mason8c8bee12008-09-29 11:19:10 -04002266 filemap_write_and_wait(bdev->bd_inode->i_mapping);
Chris Masona2135012008-06-25 16:01:30 -04002267
Chris Mason788f20e2008-04-28 15:29:42 -04002268 devices = &root->fs_info->fs_devices->devices;
Liu Bod25628b2012-11-14 14:35:30 +00002269
2270 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05002271 list_for_each_entry(device, devices, dev_list) {
Chris Mason788f20e2008-04-28 15:29:42 -04002272 if (device->bdev == bdev) {
2273 ret = -EEXIST;
Liu Bod25628b2012-11-14 14:35:30 +00002274 mutex_unlock(
2275 &root->fs_info->fs_devices->device_list_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002276 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002277 }
2278 }
Liu Bod25628b2012-11-14 14:35:30 +00002279 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002280
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002281 device = btrfs_alloc_device(root->fs_info, NULL, NULL);
2282 if (IS_ERR(device)) {
Chris Mason788f20e2008-04-28 15:29:42 -04002283 /* we can safely leave the fs_devices entry around */
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002284 ret = PTR_ERR(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002285 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002286 }
2287
Josef Bacik606686e2012-06-04 14:03:51 -04002288 name = rcu_string_strdup(device_path, GFP_NOFS);
2289 if (!name) {
Chris Mason788f20e2008-04-28 15:29:42 -04002290 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002291 ret = -ENOMEM;
2292 goto error;
Chris Mason788f20e2008-04-28 15:29:42 -04002293 }
Josef Bacik606686e2012-06-04 14:03:51 -04002294 rcu_assign_pointer(device->name, name);
Yan Zheng2b820322008-11-17 21:11:30 -05002295
Yan, Zhenga22285a2010-05-16 10:48:46 -04002296 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002297 if (IS_ERR(trans)) {
Josef Bacik606686e2012-06-04 14:03:51 -04002298 rcu_string_free(device->name);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002299 kfree(device);
2300 ret = PTR_ERR(trans);
2301 goto error;
2302 }
2303
Josef Bacikd5e20032011-08-04 14:52:27 +00002304 q = bdev_get_queue(bdev);
2305 if (blk_queue_discard(q))
2306 device->can_discard = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002307 device->writeable = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05002308 device->generation = trans->transid;
Chris Mason788f20e2008-04-28 15:29:42 -04002309 device->io_width = root->sectorsize;
2310 device->io_align = root->sectorsize;
2311 device->sector_size = root->sectorsize;
2312 device->total_bytes = i_size_read(bdev->bd_inode);
Yan Zheng2cc3c552009-06-04 09:23:50 -04002313 device->disk_total_bytes = device->total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08002314 device->commit_total_bytes = device->total_bytes;
Chris Mason788f20e2008-04-28 15:29:42 -04002315 device->dev_root = root->fs_info->dev_root;
2316 device->bdev = bdev;
Chris Masondfe25022008-05-13 13:46:40 -04002317 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01002318 device->is_tgtdev_for_dev_replace = 0;
Ilya Dryomovfb01aa82011-02-15 18:12:57 +00002319 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002320 device->dev_stats_valid = 1;
Zheng Yan325cd4b2008-09-05 16:43:54 -04002321 set_blocksize(device->bdev, 4096);
2322
Yan Zheng2b820322008-11-17 21:11:30 -05002323 if (seeding_dev) {
2324 sb->s_flags &= ~MS_RDONLY;
Li Zefan125ccb02011-12-08 15:07:24 +08002325 ret = btrfs_prepare_sprout(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002326 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2b820322008-11-17 21:11:30 -05002327 }
2328
2329 device->fs_devices = root->fs_info->fs_devices;
Chris Masone5e9a522009-06-10 15:17:02 -04002330
Chris Masone5e9a522009-06-10 15:17:02 -04002331 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
Miao Xie2196d6e2014-09-03 21:35:41 +08002332 lock_chunks(root);
Xiao Guangrong1f781602011-04-20 10:09:16 +00002333 list_add_rcu(&device->dev_list, &root->fs_info->fs_devices->devices);
Yan Zheng2b820322008-11-17 21:11:30 -05002334 list_add(&device->dev_alloc_list,
2335 &root->fs_info->fs_devices->alloc_list);
2336 root->fs_info->fs_devices->num_devices++;
2337 root->fs_info->fs_devices->open_devices++;
2338 root->fs_info->fs_devices->rw_devices++;
Josef Bacik02db0842012-06-21 16:03:58 -04002339 root->fs_info->fs_devices->total_devices++;
Yan Zheng2b820322008-11-17 21:11:30 -05002340 root->fs_info->fs_devices->total_rw_bytes += device->total_bytes;
2341
Josef Bacik2bf64752011-09-26 17:12:22 -04002342 spin_lock(&root->fs_info->free_chunk_lock);
2343 root->fs_info->free_chunk_space += device->total_bytes;
2344 spin_unlock(&root->fs_info->free_chunk_lock);
2345
Chris Masonc2898112009-06-10 09:51:32 -04002346 if (!blk_queue_nonrot(bdev_get_queue(bdev)))
2347 root->fs_info->fs_devices->rotating = 1;
2348
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002349 tmp = btrfs_super_total_bytes(root->fs_info->super_copy);
David Sterba6c417612011-04-13 15:41:04 +02002350 btrfs_set_super_total_bytes(root->fs_info->super_copy,
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002351 tmp + device->total_bytes);
Chris Mason788f20e2008-04-28 15:29:42 -04002352
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002353 tmp = btrfs_super_num_devices(root->fs_info->super_copy);
David Sterba6c417612011-04-13 15:41:04 +02002354 btrfs_set_super_num_devices(root->fs_info->super_copy,
Anand Jain3c1dbdf2014-08-20 10:54:17 +08002355 tmp + 1);
Anand Jain0d393762014-06-03 11:36:01 +08002356
2357 /* add sysfs device entry */
Anand Jaine3bd6972015-08-14 18:32:48 +08002358 btrfs_sysfs_add_device_link(root->fs_info->fs_devices, device);
Anand Jain0d393762014-06-03 11:36:01 +08002359
Miao Xie2196d6e2014-09-03 21:35:41 +08002360 /*
2361 * we've got more storage, clear any full flags on the space
2362 * infos
2363 */
2364 btrfs_clear_space_info_full(root->fs_info);
2365
2366 unlock_chunks(root);
Chris Masone5e9a522009-06-10 15:17:02 -04002367 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
Chris Mason788f20e2008-04-28 15:29:42 -04002368
Yan Zheng2b820322008-11-17 21:11:30 -05002369 if (seeding_dev) {
Miao Xie2196d6e2014-09-03 21:35:41 +08002370 lock_chunks(root);
Yan Zheng2b820322008-11-17 21:11:30 -05002371 ret = init_first_rw_device(trans, root, device);
Miao Xie2196d6e2014-09-03 21:35:41 +08002372 unlock_chunks(root);
David Sterba005d6422012-09-18 07:52:32 -06002373 if (ret) {
2374 btrfs_abort_transaction(trans, root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002375 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002376 }
Miao Xie2196d6e2014-09-03 21:35:41 +08002377 }
2378
2379 ret = btrfs_add_device(trans, root, device);
2380 if (ret) {
2381 btrfs_abort_transaction(trans, root, ret);
2382 goto error_trans;
2383 }
2384
2385 if (seeding_dev) {
2386 char fsid_buf[BTRFS_UUID_UNPARSED_SIZE];
2387
Yan Zheng2b820322008-11-17 21:11:30 -05002388 ret = btrfs_finish_sprout(trans, root);
David Sterba005d6422012-09-18 07:52:32 -06002389 if (ret) {
2390 btrfs_abort_transaction(trans, root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002391 goto error_trans;
David Sterba005d6422012-09-18 07:52:32 -06002392 }
Anand Jainb2373f22014-06-03 11:36:03 +08002393
2394 /* Sprouting would change fsid of the mounted root,
2395 * so rename the fsid on the sysfs
2396 */
2397 snprintf(fsid_buf, BTRFS_UUID_UNPARSED_SIZE, "%pU",
2398 root->fs_info->fsid);
Anand Jainc1b7e472015-08-14 18:32:50 +08002399 if (kobject_rename(&root->fs_info->fs_devices->fsid_kobj,
Anand Jain2e7910d2015-03-10 06:38:29 +08002400 fsid_buf))
David Sterbaf14d1042015-10-08 11:37:06 +02002401 btrfs_warn(root->fs_info,
2402 "sysfs: failed to create fsid for sprout");
Yan Zheng2b820322008-11-17 21:11:30 -05002403 }
2404
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02002405 root->fs_info->num_tolerated_disk_barrier_failures =
2406 btrfs_calc_num_tolerated_disk_barrier_failures(root->fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002407 ret = btrfs_commit_transaction(trans, root);
Yan Zheng2b820322008-11-17 21:11:30 -05002408
2409 if (seeding_dev) {
2410 mutex_unlock(&uuid_mutex);
2411 up_write(&sb->s_umount);
2412
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002413 if (ret) /* transaction commit */
2414 return ret;
2415
Yan Zheng2b820322008-11-17 21:11:30 -05002416 ret = btrfs_relocate_sys_chunks(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002417 if (ret < 0)
Anand Jaina4553fe2015-09-25 14:43:01 +08002418 btrfs_std_error(root->fs_info, ret,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002419 "Failed to relocate sys chunks after "
2420 "device initialization. This can be fixed "
2421 "using the \"btrfs balance\" command.");
Miao Xie671415b2012-10-16 11:26:46 +00002422 trans = btrfs_attach_transaction(root);
2423 if (IS_ERR(trans)) {
2424 if (PTR_ERR(trans) == -ENOENT)
2425 return 0;
2426 return PTR_ERR(trans);
2427 }
2428 ret = btrfs_commit_transaction(trans, root);
Yan Zheng2b820322008-11-17 21:11:30 -05002429 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002430
Qu Wenruo5a1972b2014-04-16 17:02:32 +08002431 /* Update ctime/mtime for libblkid */
2432 update_dev_time(device_path);
Chris Mason788f20e2008-04-28 15:29:42 -04002433 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002434
2435error_trans:
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002436 btrfs_end_transaction(trans, root);
Josef Bacik606686e2012-06-04 14:03:51 -04002437 rcu_string_free(device->name);
Anand Jain32576042015-08-14 18:32:49 +08002438 btrfs_sysfs_rm_device_link(root->fs_info->fs_devices, device);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002439 kfree(device);
Yan Zheng2b820322008-11-17 21:11:30 -05002440error:
Tejun Heoe525fd82010-11-13 11:55:17 +01002441 blkdev_put(bdev, FMODE_EXCL);
Yan Zheng2b820322008-11-17 21:11:30 -05002442 if (seeding_dev) {
2443 mutex_unlock(&uuid_mutex);
2444 up_write(&sb->s_umount);
2445 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002446 return ret;
Chris Mason788f20e2008-04-28 15:29:42 -04002447}
2448
Stefan Behrense93c89c2012-11-05 17:33:06 +01002449int btrfs_init_dev_replace_tgtdev(struct btrfs_root *root, char *device_path,
Miao Xie1c433662014-09-03 21:35:32 +08002450 struct btrfs_device *srcdev,
Stefan Behrense93c89c2012-11-05 17:33:06 +01002451 struct btrfs_device **device_out)
2452{
2453 struct request_queue *q;
2454 struct btrfs_device *device;
2455 struct block_device *bdev;
2456 struct btrfs_fs_info *fs_info = root->fs_info;
2457 struct list_head *devices;
2458 struct rcu_string *name;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002459 u64 devid = BTRFS_DEV_REPLACE_DEVID;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002460 int ret = 0;
2461
2462 *device_out = NULL;
Miao Xie1c433662014-09-03 21:35:32 +08002463 if (fs_info->fs_devices->seeding) {
2464 btrfs_err(fs_info, "the filesystem is a seed filesystem!");
Stefan Behrense93c89c2012-11-05 17:33:06 +01002465 return -EINVAL;
Miao Xie1c433662014-09-03 21:35:32 +08002466 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002467
2468 bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
2469 fs_info->bdev_holder);
Miao Xie1c433662014-09-03 21:35:32 +08002470 if (IS_ERR(bdev)) {
2471 btrfs_err(fs_info, "target device %s is invalid!", device_path);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002472 return PTR_ERR(bdev);
Miao Xie1c433662014-09-03 21:35:32 +08002473 }
Stefan Behrense93c89c2012-11-05 17:33:06 +01002474
2475 filemap_write_and_wait(bdev->bd_inode->i_mapping);
2476
2477 devices = &fs_info->fs_devices->devices;
2478 list_for_each_entry(device, devices, dev_list) {
2479 if (device->bdev == bdev) {
Miao Xie1c433662014-09-03 21:35:32 +08002480 btrfs_err(fs_info, "target device is in the filesystem!");
Stefan Behrense93c89c2012-11-05 17:33:06 +01002481 ret = -EEXIST;
2482 goto error;
2483 }
2484 }
2485
Miao Xie1c433662014-09-03 21:35:32 +08002486
Miao Xie7cc8e582014-09-03 21:35:38 +08002487 if (i_size_read(bdev->bd_inode) <
2488 btrfs_device_get_total_bytes(srcdev)) {
Miao Xie1c433662014-09-03 21:35:32 +08002489 btrfs_err(fs_info, "target device is smaller than source device!");
2490 ret = -EINVAL;
2491 goto error;
2492 }
2493
2494
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03002495 device = btrfs_alloc_device(NULL, &devid, NULL);
2496 if (IS_ERR(device)) {
2497 ret = PTR_ERR(device);
Stefan Behrense93c89c2012-11-05 17:33:06 +01002498 goto error;
2499 }
2500
2501 name = rcu_string_strdup(device_path, GFP_NOFS);
2502 if (!name) {
2503 kfree(device);
2504 ret = -ENOMEM;
2505 goto error;
2506 }
2507 rcu_assign_pointer(device->name, name);
2508
2509 q = bdev_get_queue(bdev);
2510 if (blk_queue_discard(q))
2511 device->can_discard = 1;
2512 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
2513 device->writeable = 1;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002514 device->generation = 0;
2515 device->io_width = root->sectorsize;
2516 device->io_align = root->sectorsize;
2517 device->sector_size = root->sectorsize;
Miao Xie7cc8e582014-09-03 21:35:38 +08002518 device->total_bytes = btrfs_device_get_total_bytes(srcdev);
2519 device->disk_total_bytes = btrfs_device_get_disk_total_bytes(srcdev);
2520 device->bytes_used = btrfs_device_get_bytes_used(srcdev);
Miao Xie935e5cc2014-09-03 21:35:33 +08002521 ASSERT(list_empty(&srcdev->resized_list));
2522 device->commit_total_bytes = srcdev->commit_total_bytes;
Miao Xiece7213c2014-09-03 21:35:34 +08002523 device->commit_bytes_used = device->bytes_used;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002524 device->dev_root = fs_info->dev_root;
2525 device->bdev = bdev;
2526 device->in_fs_metadata = 1;
2527 device->is_tgtdev_for_dev_replace = 1;
2528 device->mode = FMODE_EXCL;
Stefan Behrens27087f32013-10-11 15:20:42 +02002529 device->dev_stats_valid = 1;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002530 set_blocksize(device->bdev, 4096);
2531 device->fs_devices = fs_info->fs_devices;
2532 list_add(&device->dev_list, &fs_info->fs_devices->devices);
2533 fs_info->fs_devices->num_devices++;
2534 fs_info->fs_devices->open_devices++;
Stefan Behrense93c89c2012-11-05 17:33:06 +01002535 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
2536
2537 *device_out = device;
2538 return ret;
2539
2540error:
2541 blkdev_put(bdev, FMODE_EXCL);
2542 return ret;
2543}
2544
2545void btrfs_init_dev_replace_tgtdev_for_resume(struct btrfs_fs_info *fs_info,
2546 struct btrfs_device *tgtdev)
2547{
2548 WARN_ON(fs_info->fs_devices->rw_devices == 0);
2549 tgtdev->io_width = fs_info->dev_root->sectorsize;
2550 tgtdev->io_align = fs_info->dev_root->sectorsize;
2551 tgtdev->sector_size = fs_info->dev_root->sectorsize;
2552 tgtdev->dev_root = fs_info->dev_root;
2553 tgtdev->in_fs_metadata = 1;
2554}
2555
Chris Masond3977122009-01-05 21:25:51 -05002556static noinline int btrfs_update_device(struct btrfs_trans_handle *trans,
2557 struct btrfs_device *device)
Chris Mason0b86a832008-03-24 15:01:56 -04002558{
2559 int ret;
2560 struct btrfs_path *path;
2561 struct btrfs_root *root;
2562 struct btrfs_dev_item *dev_item;
2563 struct extent_buffer *leaf;
2564 struct btrfs_key key;
2565
2566 root = device->dev_root->fs_info->chunk_root;
2567
2568 path = btrfs_alloc_path();
2569 if (!path)
2570 return -ENOMEM;
2571
2572 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2573 key.type = BTRFS_DEV_ITEM_KEY;
2574 key.offset = device->devid;
2575
2576 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2577 if (ret < 0)
2578 goto out;
2579
2580 if (ret > 0) {
2581 ret = -ENOENT;
2582 goto out;
2583 }
2584
2585 leaf = path->nodes[0];
2586 dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
2587
2588 btrfs_set_device_id(leaf, dev_item, device->devid);
2589 btrfs_set_device_type(leaf, dev_item, device->type);
2590 btrfs_set_device_io_align(leaf, dev_item, device->io_align);
2591 btrfs_set_device_io_width(leaf, dev_item, device->io_width);
2592 btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
Miao Xie7cc8e582014-09-03 21:35:38 +08002593 btrfs_set_device_total_bytes(leaf, dev_item,
2594 btrfs_device_get_disk_total_bytes(device));
2595 btrfs_set_device_bytes_used(leaf, dev_item,
2596 btrfs_device_get_bytes_used(device));
Chris Mason0b86a832008-03-24 15:01:56 -04002597 btrfs_mark_buffer_dirty(leaf);
2598
2599out:
2600 btrfs_free_path(path);
2601 return ret;
2602}
2603
Miao Xie2196d6e2014-09-03 21:35:41 +08002604int btrfs_grow_device(struct btrfs_trans_handle *trans,
Chris Mason8f18cf12008-04-25 16:53:30 -04002605 struct btrfs_device *device, u64 new_size)
2606{
2607 struct btrfs_super_block *super_copy =
David Sterba6c417612011-04-13 15:41:04 +02002608 device->dev_root->fs_info->super_copy;
Miao Xie935e5cc2014-09-03 21:35:33 +08002609 struct btrfs_fs_devices *fs_devices;
Miao Xie2196d6e2014-09-03 21:35:41 +08002610 u64 old_total;
2611 u64 diff;
Chris Mason8f18cf12008-04-25 16:53:30 -04002612
Yan Zheng2b820322008-11-17 21:11:30 -05002613 if (!device->writeable)
2614 return -EACCES;
Miao Xie2196d6e2014-09-03 21:35:41 +08002615
2616 lock_chunks(device->dev_root);
2617 old_total = btrfs_super_total_bytes(super_copy);
2618 diff = new_size - device->total_bytes;
2619
Stefan Behrens63a212a2012-11-05 18:29:28 +01002620 if (new_size <= device->total_bytes ||
Miao Xie2196d6e2014-09-03 21:35:41 +08002621 device->is_tgtdev_for_dev_replace) {
2622 unlock_chunks(device->dev_root);
Yan Zheng2b820322008-11-17 21:11:30 -05002623 return -EINVAL;
Miao Xie2196d6e2014-09-03 21:35:41 +08002624 }
Yan Zheng2b820322008-11-17 21:11:30 -05002625
Miao Xie935e5cc2014-09-03 21:35:33 +08002626 fs_devices = device->dev_root->fs_info->fs_devices;
Chris Mason8f18cf12008-04-25 16:53:30 -04002627
2628 btrfs_set_super_total_bytes(super_copy, old_total + diff);
Yan Zheng2b820322008-11-17 21:11:30 -05002629 device->fs_devices->total_rw_bytes += diff;
2630
Miao Xie7cc8e582014-09-03 21:35:38 +08002631 btrfs_device_set_total_bytes(device, new_size);
2632 btrfs_device_set_disk_total_bytes(device, new_size);
Chris Mason4184ea72009-03-10 12:39:20 -04002633 btrfs_clear_space_info_full(device->dev_root->fs_info);
Miao Xie935e5cc2014-09-03 21:35:33 +08002634 if (list_empty(&device->resized_list))
2635 list_add_tail(&device->resized_list,
2636 &fs_devices->resized_devices);
Miao Xie2196d6e2014-09-03 21:35:41 +08002637 unlock_chunks(device->dev_root);
Chris Mason4184ea72009-03-10 12:39:20 -04002638
Chris Mason8f18cf12008-04-25 16:53:30 -04002639 return btrfs_update_device(trans, device);
2640}
2641
2642static int btrfs_free_chunk(struct btrfs_trans_handle *trans,
Zhao Leia688a042015-02-09 20:31:44 +08002643 struct btrfs_root *root, u64 chunk_objectid,
Chris Mason8f18cf12008-04-25 16:53:30 -04002644 u64 chunk_offset)
2645{
2646 int ret;
2647 struct btrfs_path *path;
2648 struct btrfs_key key;
2649
2650 root = root->fs_info->chunk_root;
2651 path = btrfs_alloc_path();
2652 if (!path)
2653 return -ENOMEM;
2654
2655 key.objectid = chunk_objectid;
2656 key.offset = chunk_offset;
2657 key.type = BTRFS_CHUNK_ITEM_KEY;
2658
2659 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002660 if (ret < 0)
2661 goto out;
2662 else if (ret > 0) { /* Logic error or corruption */
Anand Jaina4553fe2015-09-25 14:43:01 +08002663 btrfs_std_error(root->fs_info, -ENOENT,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002664 "Failed lookup while freeing chunk.");
2665 ret = -ENOENT;
2666 goto out;
2667 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002668
2669 ret = btrfs_del_item(trans, root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002670 if (ret < 0)
Anand Jaina4553fe2015-09-25 14:43:01 +08002671 btrfs_std_error(root->fs_info, ret,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002672 "Failed to delete chunk item.");
2673out:
Chris Mason8f18cf12008-04-25 16:53:30 -04002674 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00002675 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002676}
2677
Christoph Hellwigb2950862008-12-02 09:54:17 -05002678static int btrfs_del_sys_chunk(struct btrfs_root *root, u64 chunk_objectid, u64
Chris Mason8f18cf12008-04-25 16:53:30 -04002679 chunk_offset)
2680{
David Sterba6c417612011-04-13 15:41:04 +02002681 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04002682 struct btrfs_disk_key *disk_key;
2683 struct btrfs_chunk *chunk;
2684 u8 *ptr;
2685 int ret = 0;
2686 u32 num_stripes;
2687 u32 array_size;
2688 u32 len = 0;
2689 u32 cur;
2690 struct btrfs_key key;
2691
Miao Xie2196d6e2014-09-03 21:35:41 +08002692 lock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04002693 array_size = btrfs_super_sys_array_size(super_copy);
2694
2695 ptr = super_copy->sys_chunk_array;
2696 cur = 0;
2697
2698 while (cur < array_size) {
2699 disk_key = (struct btrfs_disk_key *)ptr;
2700 btrfs_disk_key_to_cpu(&key, disk_key);
2701
2702 len = sizeof(*disk_key);
2703
2704 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
2705 chunk = (struct btrfs_chunk *)(ptr + len);
2706 num_stripes = btrfs_stack_chunk_num_stripes(chunk);
2707 len += btrfs_chunk_item_size(num_stripes);
2708 } else {
2709 ret = -EIO;
2710 break;
2711 }
2712 if (key.objectid == chunk_objectid &&
2713 key.offset == chunk_offset) {
2714 memmove(ptr, ptr + len, array_size - (cur + len));
2715 array_size -= len;
2716 btrfs_set_super_sys_array_size(super_copy, array_size);
2717 } else {
2718 ptr += len;
2719 cur += len;
2720 }
2721 }
Miao Xie2196d6e2014-09-03 21:35:41 +08002722 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04002723 return ret;
2724}
2725
Josef Bacik47ab2a62014-09-18 11:20:02 -04002726int btrfs_remove_chunk(struct btrfs_trans_handle *trans,
2727 struct btrfs_root *root, u64 chunk_offset)
2728{
2729 struct extent_map_tree *em_tree;
2730 struct extent_map *em;
2731 struct btrfs_root *extent_root = root->fs_info->extent_root;
2732 struct map_lookup *map;
2733 u64 dev_extent_len = 0;
2734 u64 chunk_objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
Josef Bacik47ab2a62014-09-18 11:20:02 -04002735 int i, ret = 0;
2736
2737 /* Just in case */
2738 root = root->fs_info->chunk_root;
2739 em_tree = &root->fs_info->mapping_tree.map_tree;
2740
2741 read_lock(&em_tree->lock);
2742 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
2743 read_unlock(&em_tree->lock);
2744
2745 if (!em || em->start > chunk_offset ||
2746 em->start + em->len < chunk_offset) {
2747 /*
2748 * This is a logic error, but we don't want to just rely on the
2749 * user having built with ASSERT enabled, so if ASSERT doens't
2750 * do anything we still error out.
2751 */
2752 ASSERT(0);
2753 if (em)
2754 free_extent_map(em);
2755 return -EINVAL;
2756 }
Jeff Mahoney95617d62015-06-03 10:55:48 -04002757 map = em->map_lookup;
Filipe Manana39c2d7f2015-05-20 14:01:55 +01002758 lock_chunks(root->fs_info->chunk_root);
Filipe Manana4617ea32015-06-09 17:48:21 +01002759 check_system_chunk(trans, extent_root, map->type);
Filipe Manana39c2d7f2015-05-20 14:01:55 +01002760 unlock_chunks(root->fs_info->chunk_root);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002761
2762 for (i = 0; i < map->num_stripes; i++) {
2763 struct btrfs_device *device = map->stripes[i].dev;
2764 ret = btrfs_free_dev_extent(trans, device,
2765 map->stripes[i].physical,
2766 &dev_extent_len);
2767 if (ret) {
2768 btrfs_abort_transaction(trans, root, ret);
2769 goto out;
2770 }
2771
2772 if (device->bytes_used > 0) {
2773 lock_chunks(root);
2774 btrfs_device_set_bytes_used(device,
2775 device->bytes_used - dev_extent_len);
2776 spin_lock(&root->fs_info->free_chunk_lock);
2777 root->fs_info->free_chunk_space += dev_extent_len;
2778 spin_unlock(&root->fs_info->free_chunk_lock);
2779 btrfs_clear_space_info_full(root->fs_info);
2780 unlock_chunks(root);
2781 }
2782
2783 if (map->stripes[i].dev) {
2784 ret = btrfs_update_device(trans, map->stripes[i].dev);
2785 if (ret) {
2786 btrfs_abort_transaction(trans, root, ret);
2787 goto out;
2788 }
2789 }
2790 }
Zhao Leia688a042015-02-09 20:31:44 +08002791 ret = btrfs_free_chunk(trans, root, chunk_objectid, chunk_offset);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002792 if (ret) {
2793 btrfs_abort_transaction(trans, root, ret);
2794 goto out;
2795 }
2796
2797 trace_btrfs_chunk_free(root, map, chunk_offset, em->len);
2798
2799 if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
2800 ret = btrfs_del_sys_chunk(root, chunk_objectid, chunk_offset);
2801 if (ret) {
2802 btrfs_abort_transaction(trans, root, ret);
2803 goto out;
2804 }
2805 }
2806
Filipe Manana04216822014-11-27 21:14:15 +00002807 ret = btrfs_remove_block_group(trans, extent_root, chunk_offset, em);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002808 if (ret) {
2809 btrfs_abort_transaction(trans, extent_root, ret);
2810 goto out;
2811 }
2812
Josef Bacik47ab2a62014-09-18 11:20:02 -04002813out:
2814 /* once for us */
2815 free_extent_map(em);
Chris Mason8f18cf12008-04-25 16:53:30 -04002816 return ret;
2817}
2818
Zhaoleidc2ee4e2015-08-05 18:00:04 +08002819static int btrfs_relocate_chunk(struct btrfs_root *root, u64 chunk_offset)
Chris Mason8f18cf12008-04-25 16:53:30 -04002820{
Chris Mason8f18cf12008-04-25 16:53:30 -04002821 struct btrfs_root *extent_root;
2822 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04002823 int ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002824
2825 root = root->fs_info->chunk_root;
2826 extent_root = root->fs_info->extent_root;
Chris Mason8f18cf12008-04-25 16:53:30 -04002827
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002828 /*
2829 * Prevent races with automatic removal of unused block groups.
2830 * After we relocate and before we remove the chunk with offset
2831 * chunk_offset, automatic removal of the block group can kick in,
2832 * resulting in a failure when calling btrfs_remove_chunk() below.
2833 *
2834 * Make sure to acquire this mutex before doing a tree search (dev
2835 * or chunk trees) to find chunks. Otherwise the cleaner kthread might
2836 * call btrfs_remove_chunk() (through btrfs_delete_unused_bgs()) after
2837 * we release the path used to search the chunk/dev tree and before
2838 * the current task acquires this mutex and calls us.
2839 */
2840 ASSERT(mutex_is_locked(&root->fs_info->delete_unused_bgs_mutex));
2841
Josef Bacikba1bf482009-09-11 16:11:19 -04002842 ret = btrfs_can_relocate(extent_root, chunk_offset);
2843 if (ret)
2844 return -ENOSPC;
2845
Chris Mason8f18cf12008-04-25 16:53:30 -04002846 /* step one, relocate all the extents inside this chunk */
Zhaolei55e3a602015-08-05 16:43:30 +08002847 btrfs_scrub_pause(root);
Zheng Yan1a40e232008-09-26 10:09:34 -04002848 ret = btrfs_relocate_block_group(extent_root, chunk_offset);
Zhaolei55e3a602015-08-05 16:43:30 +08002849 btrfs_scrub_continue(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002850 if (ret)
2851 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002852
Filipe Manana7fd01182015-11-13 23:57:17 +00002853 trans = btrfs_start_trans_remove_block_group(root->fs_info,
2854 chunk_offset);
Liu Bo0f788c52013-03-04 16:25:40 +00002855 if (IS_ERR(trans)) {
2856 ret = PTR_ERR(trans);
Anand Jaina4553fe2015-09-25 14:43:01 +08002857 btrfs_std_error(root->fs_info, ret, NULL);
Liu Bo0f788c52013-03-04 16:25:40 +00002858 return ret;
2859 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002860
2861 /*
2862 * step two, delete the device extents and the
2863 * chunk tree entries
2864 */
Josef Bacik47ab2a62014-09-18 11:20:02 -04002865 ret = btrfs_remove_chunk(trans, root, chunk_offset);
Chris Mason8f18cf12008-04-25 16:53:30 -04002866 btrfs_end_transaction(trans, root);
Josef Bacik47ab2a62014-09-18 11:20:02 -04002867 return ret;
Chris Mason8f18cf12008-04-25 16:53:30 -04002868}
2869
Yan Zheng2b820322008-11-17 21:11:30 -05002870static int btrfs_relocate_sys_chunks(struct btrfs_root *root)
2871{
2872 struct btrfs_root *chunk_root = root->fs_info->chunk_root;
2873 struct btrfs_path *path;
2874 struct extent_buffer *leaf;
2875 struct btrfs_chunk *chunk;
2876 struct btrfs_key key;
2877 struct btrfs_key found_key;
Yan Zheng2b820322008-11-17 21:11:30 -05002878 u64 chunk_type;
Josef Bacikba1bf482009-09-11 16:11:19 -04002879 bool retried = false;
2880 int failed = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05002881 int ret;
2882
2883 path = btrfs_alloc_path();
2884 if (!path)
2885 return -ENOMEM;
2886
Josef Bacikba1bf482009-09-11 16:11:19 -04002887again:
Yan Zheng2b820322008-11-17 21:11:30 -05002888 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2889 key.offset = (u64)-1;
2890 key.type = BTRFS_CHUNK_ITEM_KEY;
2891
2892 while (1) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002893 mutex_lock(&root->fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002894 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002895 if (ret < 0) {
2896 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002897 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002898 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002899 BUG_ON(ret == 0); /* Corruption */
Yan Zheng2b820322008-11-17 21:11:30 -05002900
2901 ret = btrfs_previous_item(chunk_root, path, key.objectid,
2902 key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002903 if (ret)
2904 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002905 if (ret < 0)
2906 goto error;
2907 if (ret > 0)
2908 break;
2909
2910 leaf = path->nodes[0];
2911 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2912
2913 chunk = btrfs_item_ptr(leaf, path->slots[0],
2914 struct btrfs_chunk);
2915 chunk_type = btrfs_chunk_type(leaf, chunk);
David Sterbab3b4aa72011-04-21 01:20:15 +02002916 btrfs_release_path(path);
Yan Zheng2b820322008-11-17 21:11:30 -05002917
2918 if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) {
Zhao Leia688a042015-02-09 20:31:44 +08002919 ret = btrfs_relocate_chunk(chunk_root,
Yan Zheng2b820322008-11-17 21:11:30 -05002920 found_key.offset);
Josef Bacikba1bf482009-09-11 16:11:19 -04002921 if (ret == -ENOSPC)
2922 failed++;
HIMANGI SARAOGI14586652014-07-09 03:51:41 +05302923 else
2924 BUG_ON(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05002925 }
Filipe Manana67c5e7d2015-06-11 00:58:53 +01002926 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Yan Zheng2b820322008-11-17 21:11:30 -05002927
2928 if (found_key.offset == 0)
2929 break;
2930 key.offset = found_key.offset - 1;
2931 }
2932 ret = 0;
Josef Bacikba1bf482009-09-11 16:11:19 -04002933 if (failed && !retried) {
2934 failed = 0;
2935 retried = true;
2936 goto again;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05302937 } else if (WARN_ON(failed && retried)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04002938 ret = -ENOSPC;
2939 }
Yan Zheng2b820322008-11-17 21:11:30 -05002940error:
2941 btrfs_free_path(path);
2942 return ret;
2943}
2944
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02002945static int insert_balance_item(struct btrfs_root *root,
2946 struct btrfs_balance_control *bctl)
2947{
2948 struct btrfs_trans_handle *trans;
2949 struct btrfs_balance_item *item;
2950 struct btrfs_disk_balance_args disk_bargs;
2951 struct btrfs_path *path;
2952 struct extent_buffer *leaf;
2953 struct btrfs_key key;
2954 int ret, err;
2955
2956 path = btrfs_alloc_path();
2957 if (!path)
2958 return -ENOMEM;
2959
2960 trans = btrfs_start_transaction(root, 0);
2961 if (IS_ERR(trans)) {
2962 btrfs_free_path(path);
2963 return PTR_ERR(trans);
2964 }
2965
2966 key.objectid = BTRFS_BALANCE_OBJECTID;
2967 key.type = BTRFS_BALANCE_ITEM_KEY;
2968 key.offset = 0;
2969
2970 ret = btrfs_insert_empty_item(trans, root, path, &key,
2971 sizeof(*item));
2972 if (ret)
2973 goto out;
2974
2975 leaf = path->nodes[0];
2976 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
2977
2978 memset_extent_buffer(leaf, 0, (unsigned long)item, sizeof(*item));
2979
2980 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->data);
2981 btrfs_set_balance_data(leaf, item, &disk_bargs);
2982 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->meta);
2983 btrfs_set_balance_meta(leaf, item, &disk_bargs);
2984 btrfs_cpu_balance_args_to_disk(&disk_bargs, &bctl->sys);
2985 btrfs_set_balance_sys(leaf, item, &disk_bargs);
2986
2987 btrfs_set_balance_flags(leaf, item, bctl->flags);
2988
2989 btrfs_mark_buffer_dirty(leaf);
2990out:
2991 btrfs_free_path(path);
2992 err = btrfs_commit_transaction(trans, root);
2993 if (err && !ret)
2994 ret = err;
2995 return ret;
2996}
2997
2998static int del_balance_item(struct btrfs_root *root)
2999{
3000 struct btrfs_trans_handle *trans;
3001 struct btrfs_path *path;
3002 struct btrfs_key key;
3003 int ret, err;
3004
3005 path = btrfs_alloc_path();
3006 if (!path)
3007 return -ENOMEM;
3008
3009 trans = btrfs_start_transaction(root, 0);
3010 if (IS_ERR(trans)) {
3011 btrfs_free_path(path);
3012 return PTR_ERR(trans);
3013 }
3014
3015 key.objectid = BTRFS_BALANCE_OBJECTID;
3016 key.type = BTRFS_BALANCE_ITEM_KEY;
3017 key.offset = 0;
3018
3019 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
3020 if (ret < 0)
3021 goto out;
3022 if (ret > 0) {
3023 ret = -ENOENT;
3024 goto out;
3025 }
3026
3027 ret = btrfs_del_item(trans, root, path);
3028out:
3029 btrfs_free_path(path);
3030 err = btrfs_commit_transaction(trans, root);
3031 if (err && !ret)
3032 ret = err;
3033 return ret;
3034}
3035
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003036/*
Ilya Dryomov59641012012-01-16 22:04:48 +02003037 * This is a heuristic used to reduce the number of chunks balanced on
3038 * resume after balance was interrupted.
3039 */
3040static void update_balance_args(struct btrfs_balance_control *bctl)
3041{
3042 /*
3043 * Turn on soft mode for chunk types that were being converted.
3044 */
3045 if (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)
3046 bctl->data.flags |= BTRFS_BALANCE_ARGS_SOFT;
3047 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT)
3048 bctl->sys.flags |= BTRFS_BALANCE_ARGS_SOFT;
3049 if (bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)
3050 bctl->meta.flags |= BTRFS_BALANCE_ARGS_SOFT;
3051
3052 /*
3053 * Turn on usage filter if is not already used. The idea is
3054 * that chunks that we have already balanced should be
3055 * reasonably full. Don't do it for chunks that are being
3056 * converted - that will keep us from relocating unconverted
3057 * (albeit full) chunks.
3058 */
3059 if (!(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003060 !(bctl->data.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003061 !(bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3062 bctl->data.flags |= BTRFS_BALANCE_ARGS_USAGE;
3063 bctl->data.usage = 90;
3064 }
3065 if (!(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE) &&
David Sterbabc309462015-10-20 18:22:13 +02003066 !(bctl->sys.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003067 !(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) &&
David Sterbabc309462015-10-20 18:22:13 +02003072 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
Ilya Dryomov59641012012-01-16 22:04:48 +02003073 !(bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT)) {
3074 bctl->meta.flags |= BTRFS_BALANCE_ARGS_USAGE;
3075 bctl->meta.usage = 90;
3076 }
3077}
3078
3079/*
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003080 * Should be called with both balance and volume mutexes held to
3081 * serialize other volume operations (add_dev/rm_dev/resize) with
3082 * restriper. Same goes for unset_balance_control.
3083 */
3084static void set_balance_control(struct btrfs_balance_control *bctl)
3085{
3086 struct btrfs_fs_info *fs_info = bctl->fs_info;
3087
3088 BUG_ON(fs_info->balance_ctl);
3089
3090 spin_lock(&fs_info->balance_lock);
3091 fs_info->balance_ctl = bctl;
3092 spin_unlock(&fs_info->balance_lock);
3093}
3094
3095static void unset_balance_control(struct btrfs_fs_info *fs_info)
3096{
3097 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3098
3099 BUG_ON(!fs_info->balance_ctl);
3100
3101 spin_lock(&fs_info->balance_lock);
3102 fs_info->balance_ctl = NULL;
3103 spin_unlock(&fs_info->balance_lock);
3104
3105 kfree(bctl);
3106}
3107
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003108/*
3109 * Balance filters. Return 1 if chunk should be filtered out
3110 * (should not be balanced).
3111 */
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003112static int chunk_profiles_filter(u64 chunk_type,
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003113 struct btrfs_balance_args *bargs)
3114{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003115 chunk_type = chunk_to_extended(chunk_type) &
3116 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003117
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003118 if (bargs->profiles & chunk_type)
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003119 return 0;
3120
3121 return 1;
3122}
3123
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003124static int chunk_usage_range_filter(struct btrfs_fs_info *fs_info, u64 chunk_offset,
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003125 struct btrfs_balance_args *bargs)
3126{
3127 struct btrfs_block_group_cache *cache;
David Sterbabc309462015-10-20 18:22:13 +02003128 u64 chunk_used;
3129 u64 user_thresh_min;
3130 u64 user_thresh_max;
3131 int ret = 1;
3132
3133 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3134 chunk_used = btrfs_block_group_used(&cache->item);
3135
3136 if (bargs->usage_min == 0)
3137 user_thresh_min = 0;
3138 else
3139 user_thresh_min = div_factor_fine(cache->key.offset,
3140 bargs->usage_min);
3141
3142 if (bargs->usage_max == 0)
3143 user_thresh_max = 1;
3144 else if (bargs->usage_max > 100)
3145 user_thresh_max = cache->key.offset;
3146 else
3147 user_thresh_max = div_factor_fine(cache->key.offset,
3148 bargs->usage_max);
3149
3150 if (user_thresh_min <= chunk_used && chunk_used < user_thresh_max)
3151 ret = 0;
3152
3153 btrfs_put_block_group(cache);
3154 return ret;
3155}
3156
Holger Hoffstättedba72cb2015-11-17 12:29:32 +01003157static int chunk_usage_filter(struct btrfs_fs_info *fs_info,
David Sterbabc309462015-10-20 18:22:13 +02003158 u64 chunk_offset, struct btrfs_balance_args *bargs)
3159{
3160 struct btrfs_block_group_cache *cache;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003161 u64 chunk_used, user_thresh;
3162 int ret = 1;
3163
3164 cache = btrfs_lookup_block_group(fs_info, chunk_offset);
3165 chunk_used = btrfs_block_group_used(&cache->item);
3166
David Sterbabc309462015-10-20 18:22:13 +02003167 if (bargs->usage_min == 0)
Ilya Dryomov3e39cea2013-02-12 16:28:59 +00003168 user_thresh = 1;
Ilya Dryomova105bb82013-01-21 15:15:56 +02003169 else if (bargs->usage > 100)
3170 user_thresh = cache->key.offset;
3171 else
3172 user_thresh = div_factor_fine(cache->key.offset,
3173 bargs->usage);
3174
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003175 if (chunk_used < user_thresh)
3176 ret = 0;
3177
3178 btrfs_put_block_group(cache);
3179 return ret;
3180}
3181
Ilya Dryomov409d4042012-01-16 22:04:47 +02003182static int chunk_devid_filter(struct extent_buffer *leaf,
3183 struct btrfs_chunk *chunk,
3184 struct btrfs_balance_args *bargs)
3185{
3186 struct btrfs_stripe *stripe;
3187 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3188 int i;
3189
3190 for (i = 0; i < num_stripes; i++) {
3191 stripe = btrfs_stripe_nr(chunk, i);
3192 if (btrfs_stripe_devid(leaf, stripe) == bargs->devid)
3193 return 0;
3194 }
3195
3196 return 1;
3197}
3198
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003199/* [pstart, pend) */
3200static int chunk_drange_filter(struct extent_buffer *leaf,
3201 struct btrfs_chunk *chunk,
3202 u64 chunk_offset,
3203 struct btrfs_balance_args *bargs)
3204{
3205 struct btrfs_stripe *stripe;
3206 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3207 u64 stripe_offset;
3208 u64 stripe_length;
3209 int factor;
3210 int i;
3211
3212 if (!(bargs->flags & BTRFS_BALANCE_ARGS_DEVID))
3213 return 0;
3214
3215 if (btrfs_chunk_type(leaf, chunk) & (BTRFS_BLOCK_GROUP_DUP |
David Woodhouse53b381b2013-01-29 18:40:14 -05003216 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10)) {
3217 factor = num_stripes / 2;
3218 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID5) {
3219 factor = num_stripes - 1;
3220 } else if (btrfs_chunk_type(leaf, chunk) & BTRFS_BLOCK_GROUP_RAID6) {
3221 factor = num_stripes - 2;
3222 } else {
3223 factor = num_stripes;
3224 }
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003225
3226 for (i = 0; i < num_stripes; i++) {
3227 stripe = btrfs_stripe_nr(chunk, i);
3228 if (btrfs_stripe_devid(leaf, stripe) != bargs->devid)
3229 continue;
3230
3231 stripe_offset = btrfs_stripe_offset(leaf, stripe);
3232 stripe_length = btrfs_chunk_length(leaf, chunk);
David Sterbab8b93ad2015-01-16 17:26:13 +01003233 stripe_length = div_u64(stripe_length, factor);
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003234
3235 if (stripe_offset < bargs->pend &&
3236 stripe_offset + stripe_length > bargs->pstart)
3237 return 0;
3238 }
3239
3240 return 1;
3241}
3242
Ilya Dryomovea671762012-01-16 22:04:48 +02003243/* [vstart, vend) */
3244static int chunk_vrange_filter(struct extent_buffer *leaf,
3245 struct btrfs_chunk *chunk,
3246 u64 chunk_offset,
3247 struct btrfs_balance_args *bargs)
3248{
3249 if (chunk_offset < bargs->vend &&
3250 chunk_offset + btrfs_chunk_length(leaf, chunk) > bargs->vstart)
3251 /* at least part of the chunk is inside this vrange */
3252 return 0;
3253
3254 return 1;
3255}
3256
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003257static int chunk_stripes_range_filter(struct extent_buffer *leaf,
3258 struct btrfs_chunk *chunk,
3259 struct btrfs_balance_args *bargs)
3260{
3261 int num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
3262
3263 if (bargs->stripes_min <= num_stripes
3264 && num_stripes <= bargs->stripes_max)
3265 return 0;
3266
3267 return 1;
3268}
3269
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003270static int chunk_soft_convert_filter(u64 chunk_type,
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003271 struct btrfs_balance_args *bargs)
3272{
3273 if (!(bargs->flags & BTRFS_BALANCE_ARGS_CONVERT))
3274 return 0;
3275
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003276 chunk_type = chunk_to_extended(chunk_type) &
3277 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003278
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003279 if (bargs->target == chunk_type)
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003280 return 1;
3281
3282 return 0;
3283}
3284
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003285static int should_balance_chunk(struct btrfs_root *root,
3286 struct extent_buffer *leaf,
3287 struct btrfs_chunk *chunk, u64 chunk_offset)
3288{
3289 struct btrfs_balance_control *bctl = root->fs_info->balance_ctl;
3290 struct btrfs_balance_args *bargs = NULL;
3291 u64 chunk_type = btrfs_chunk_type(leaf, chunk);
3292
3293 /* type filter */
3294 if (!((chunk_type & BTRFS_BLOCK_GROUP_TYPE_MASK) &
3295 (bctl->flags & BTRFS_BALANCE_TYPE_MASK))) {
3296 return 0;
3297 }
3298
3299 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3300 bargs = &bctl->data;
3301 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3302 bargs = &bctl->sys;
3303 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3304 bargs = &bctl->meta;
3305
Ilya Dryomoved25e9b2012-01-16 22:04:47 +02003306 /* profiles filter */
3307 if ((bargs->flags & BTRFS_BALANCE_ARGS_PROFILES) &&
3308 chunk_profiles_filter(chunk_type, bargs)) {
3309 return 0;
3310 }
3311
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003312 /* usage filter */
3313 if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE) &&
3314 chunk_usage_filter(bctl->fs_info, chunk_offset, bargs)) {
3315 return 0;
David Sterbabc309462015-10-20 18:22:13 +02003316 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_USAGE_RANGE) &&
3317 chunk_usage_range_filter(bctl->fs_info, chunk_offset, bargs)) {
3318 return 0;
Ilya Dryomov5ce5b3c2012-01-16 22:04:47 +02003319 }
3320
Ilya Dryomov409d4042012-01-16 22:04:47 +02003321 /* devid filter */
3322 if ((bargs->flags & BTRFS_BALANCE_ARGS_DEVID) &&
3323 chunk_devid_filter(leaf, chunk, bargs)) {
3324 return 0;
3325 }
3326
Ilya Dryomov94e60d52012-01-16 22:04:48 +02003327 /* drange filter, makes sense only with devid filter */
3328 if ((bargs->flags & BTRFS_BALANCE_ARGS_DRANGE) &&
3329 chunk_drange_filter(leaf, chunk, chunk_offset, bargs)) {
3330 return 0;
3331 }
3332
Ilya Dryomovea671762012-01-16 22:04:48 +02003333 /* vrange filter */
3334 if ((bargs->flags & BTRFS_BALANCE_ARGS_VRANGE) &&
3335 chunk_vrange_filter(leaf, chunk, chunk_offset, bargs)) {
3336 return 0;
3337 }
3338
Gabríel Arthúr Péturssondee32d02015-09-28 22:32:41 +00003339 /* stripes filter */
3340 if ((bargs->flags & BTRFS_BALANCE_ARGS_STRIPES_RANGE) &&
3341 chunk_stripes_range_filter(leaf, chunk, bargs)) {
3342 return 0;
3343 }
3344
Ilya Dryomovcfa4c962012-01-16 22:04:48 +02003345 /* soft profile changing mode */
3346 if ((bargs->flags & BTRFS_BALANCE_ARGS_SOFT) &&
3347 chunk_soft_convert_filter(chunk_type, bargs)) {
3348 return 0;
3349 }
3350
David Sterba7d824b62014-05-07 17:37:51 +02003351 /*
3352 * limited by count, must be the last filter
3353 */
3354 if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT)) {
3355 if (bargs->limit == 0)
3356 return 0;
3357 else
3358 bargs->limit--;
David Sterba12907fc2015-10-10 17:16:50 +02003359 } else if ((bargs->flags & BTRFS_BALANCE_ARGS_LIMIT_RANGE)) {
3360 /*
3361 * Same logic as the 'limit' filter; the minimum cannot be
3362 * determined here because we do not have the global informatoin
3363 * about the count of all chunks that satisfy the filters.
3364 */
3365 if (bargs->limit_max == 0)
3366 return 0;
3367 else
3368 bargs->limit_max--;
David Sterba7d824b62014-05-07 17:37:51 +02003369 }
3370
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003371 return 1;
3372}
3373
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003374static int __btrfs_balance(struct btrfs_fs_info *fs_info)
Chris Masonec44a352008-04-28 15:29:52 -04003375{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003376 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003377 struct btrfs_root *chunk_root = fs_info->chunk_root;
3378 struct btrfs_root *dev_root = fs_info->dev_root;
3379 struct list_head *devices;
Chris Masonec44a352008-04-28 15:29:52 -04003380 struct btrfs_device *device;
3381 u64 old_size;
3382 u64 size_to_free;
David Sterba12907fc2015-10-10 17:16:50 +02003383 u64 chunk_type;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003384 struct btrfs_chunk *chunk;
Chris Masonec44a352008-04-28 15:29:52 -04003385 struct btrfs_path *path;
3386 struct btrfs_key key;
Chris Masonec44a352008-04-28 15:29:52 -04003387 struct btrfs_key found_key;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003388 struct btrfs_trans_handle *trans;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003389 struct extent_buffer *leaf;
3390 int slot;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003391 int ret;
3392 int enospc_errors = 0;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003393 bool counting = true;
David Sterba12907fc2015-10-10 17:16:50 +02003394 /* The single value limit and min/max limits use the same bytes in the */
David Sterba7d824b62014-05-07 17:37:51 +02003395 u64 limit_data = bctl->data.limit;
3396 u64 limit_meta = bctl->meta.limit;
3397 u64 limit_sys = bctl->sys.limit;
David Sterba12907fc2015-10-10 17:16:50 +02003398 u32 count_data = 0;
3399 u32 count_meta = 0;
3400 u32 count_sys = 0;
Zhao Lei2c9fe832015-11-09 11:51:32 +08003401 int chunk_reserved = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003402
Chris Masonec44a352008-04-28 15:29:52 -04003403 /* step one make some room on all the devices */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003404 devices = &fs_info->fs_devices->devices;
Qinghuang Fengc6e30872009-01-21 10:59:08 -05003405 list_for_each_entry(device, devices, dev_list) {
Miao Xie7cc8e582014-09-03 21:35:38 +08003406 old_size = btrfs_device_get_total_bytes(device);
Chris Masonec44a352008-04-28 15:29:52 -04003407 size_to_free = div_factor(old_size, 1);
Byongho Leeee221842015-12-15 01:42:10 +09003408 size_to_free = min_t(u64, size_to_free, SZ_1M);
Yan Zheng2b820322008-11-17 21:11:30 -05003409 if (!device->writeable ||
Miao Xie7cc8e582014-09-03 21:35:38 +08003410 btrfs_device_get_total_bytes(device) -
3411 btrfs_device_get_bytes_used(device) > size_to_free ||
Stefan Behrens63a212a2012-11-05 18:29:28 +01003412 device->is_tgtdev_for_dev_replace)
Chris Masonec44a352008-04-28 15:29:52 -04003413 continue;
3414
3415 ret = btrfs_shrink_device(device, old_size - size_to_free);
Josef Bacikba1bf482009-09-11 16:11:19 -04003416 if (ret == -ENOSPC)
3417 break;
Chris Masonec44a352008-04-28 15:29:52 -04003418 BUG_ON(ret);
3419
Yan, Zhenga22285a2010-05-16 10:48:46 -04003420 trans = btrfs_start_transaction(dev_root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00003421 BUG_ON(IS_ERR(trans));
Chris Masonec44a352008-04-28 15:29:52 -04003422
3423 ret = btrfs_grow_device(trans, device, old_size);
3424 BUG_ON(ret);
3425
3426 btrfs_end_transaction(trans, dev_root);
3427 }
3428
3429 /* step two, relocate all the chunks */
3430 path = btrfs_alloc_path();
Mark Fasheh17e9f792011-07-12 11:10:23 -07003431 if (!path) {
3432 ret = -ENOMEM;
3433 goto error;
3434 }
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003435
3436 /* zero out stat counters */
3437 spin_lock(&fs_info->balance_lock);
3438 memset(&bctl->stat, 0, sizeof(bctl->stat));
3439 spin_unlock(&fs_info->balance_lock);
3440again:
David Sterba7d824b62014-05-07 17:37:51 +02003441 if (!counting) {
David Sterba12907fc2015-10-10 17:16:50 +02003442 /*
3443 * The single value limit and min/max limits use the same bytes
3444 * in the
3445 */
David Sterba7d824b62014-05-07 17:37:51 +02003446 bctl->data.limit = limit_data;
3447 bctl->meta.limit = limit_meta;
3448 bctl->sys.limit = limit_sys;
3449 }
Chris Masonec44a352008-04-28 15:29:52 -04003450 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
3451 key.offset = (u64)-1;
3452 key.type = BTRFS_CHUNK_ITEM_KEY;
3453
Chris Masond3977122009-01-05 21:25:51 -05003454 while (1) {
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003455 if ((!counting && atomic_read(&fs_info->balance_pause_req)) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003456 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003457 ret = -ECANCELED;
3458 goto error;
3459 }
3460
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003461 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003462 ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003463 if (ret < 0) {
3464 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003465 goto error;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003466 }
Chris Masonec44a352008-04-28 15:29:52 -04003467
3468 /*
3469 * this shouldn't happen, it means the last relocate
3470 * failed
3471 */
3472 if (ret == 0)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003473 BUG(); /* FIXME break ? */
Chris Masonec44a352008-04-28 15:29:52 -04003474
3475 ret = btrfs_previous_item(chunk_root, path, 0,
3476 BTRFS_CHUNK_ITEM_KEY);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003477 if (ret) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003478 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003479 ret = 0;
Chris Masonec44a352008-04-28 15:29:52 -04003480 break;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003481 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003482
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003483 leaf = path->nodes[0];
3484 slot = path->slots[0];
3485 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3486
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003487 if (found_key.objectid != key.objectid) {
3488 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Chris Masonec44a352008-04-28 15:29:52 -04003489 break;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003490 }
Chris Mason7d9eb122008-07-08 14:19:17 -04003491
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003492 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
David Sterba12907fc2015-10-10 17:16:50 +02003493 chunk_type = btrfs_chunk_type(leaf, chunk);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003494
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003495 if (!counting) {
3496 spin_lock(&fs_info->balance_lock);
3497 bctl->stat.considered++;
3498 spin_unlock(&fs_info->balance_lock);
3499 }
3500
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003501 ret = should_balance_chunk(chunk_root, leaf, chunk,
3502 found_key.offset);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003503
David Sterbab3b4aa72011-04-21 01:20:15 +02003504 btrfs_release_path(path);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003505 if (!ret) {
3506 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003507 goto loop;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003508 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003509
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003510 if (counting) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003511 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003512 spin_lock(&fs_info->balance_lock);
3513 bctl->stat.expected++;
3514 spin_unlock(&fs_info->balance_lock);
David Sterba12907fc2015-10-10 17:16:50 +02003515
3516 if (chunk_type & BTRFS_BLOCK_GROUP_DATA)
3517 count_data++;
3518 else if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM)
3519 count_sys++;
3520 else if (chunk_type & BTRFS_BLOCK_GROUP_METADATA)
3521 count_meta++;
3522
3523 goto loop;
3524 }
3525
3526 /*
3527 * Apply limit_min filter, no need to check if the LIMITS
3528 * filter is used, limit_min is 0 by default
3529 */
3530 if (((chunk_type & BTRFS_BLOCK_GROUP_DATA) &&
3531 count_data < bctl->data.limit_min)
3532 || ((chunk_type & BTRFS_BLOCK_GROUP_METADATA) &&
3533 count_meta < bctl->meta.limit_min)
3534 || ((chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) &&
3535 count_sys < bctl->sys.limit_min)) {
3536 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003537 goto loop;
3538 }
3539
Zhao Lei2c9fe832015-11-09 11:51:32 +08003540 if ((chunk_type & BTRFS_BLOCK_GROUP_DATA) && !chunk_reserved) {
3541 trans = btrfs_start_transaction(chunk_root, 0);
3542 if (IS_ERR(trans)) {
3543 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
3544 ret = PTR_ERR(trans);
3545 goto error;
3546 }
3547
3548 ret = btrfs_force_chunk_alloc(trans, chunk_root,
3549 BTRFS_BLOCK_GROUP_DATA);
Filipe Manana8a7d6562015-12-10 11:08:59 +00003550 btrfs_end_transaction(trans, chunk_root);
Zhao Lei2c9fe832015-11-09 11:51:32 +08003551 if (ret < 0) {
3552 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
3553 goto error;
3554 }
Zhao Lei2c9fe832015-11-09 11:51:32 +08003555 chunk_reserved = 1;
3556 }
3557
Chris Masonec44a352008-04-28 15:29:52 -04003558 ret = btrfs_relocate_chunk(chunk_root,
Chris Masonec44a352008-04-28 15:29:52 -04003559 found_key.offset);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01003560 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacik508794e2011-07-02 21:24:41 +00003561 if (ret && ret != -ENOSPC)
3562 goto error;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003563 if (ret == -ENOSPC) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003564 enospc_errors++;
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003565 } else {
3566 spin_lock(&fs_info->balance_lock);
3567 bctl->stat.completed++;
3568 spin_unlock(&fs_info->balance_lock);
3569 }
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003570loop:
Ilya Dryomov795a3322013-08-27 13:50:44 +03003571 if (found_key.offset == 0)
3572 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04003573 key.offset = found_key.offset - 1;
Chris Masonec44a352008-04-28 15:29:52 -04003574 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003575
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003576 if (counting) {
3577 btrfs_release_path(path);
3578 counting = false;
3579 goto again;
3580 }
Chris Masonec44a352008-04-28 15:29:52 -04003581error:
3582 btrfs_free_path(path);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003583 if (enospc_errors) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003584 btrfs_info(fs_info, "%d enospc errors during balance",
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003585 enospc_errors);
3586 if (!ret)
3587 ret = -ENOSPC;
3588 }
3589
Chris Masonec44a352008-04-28 15:29:52 -04003590 return ret;
3591}
3592
Ilya Dryomov0c460c02012-03-27 17:09:17 +03003593/**
3594 * alloc_profile_is_valid - see if a given profile is valid and reduced
3595 * @flags: profile to validate
3596 * @extended: if true @flags is treated as an extended profile
3597 */
3598static int alloc_profile_is_valid(u64 flags, int extended)
3599{
3600 u64 mask = (extended ? BTRFS_EXTENDED_PROFILE_MASK :
3601 BTRFS_BLOCK_GROUP_PROFILE_MASK);
3602
3603 flags &= ~BTRFS_BLOCK_GROUP_TYPE_MASK;
3604
3605 /* 1) check that all other bits are zeroed */
3606 if (flags & ~mask)
3607 return 0;
3608
3609 /* 2) see if profile is reduced */
3610 if (flags == 0)
3611 return !extended; /* "0" is valid for usual profiles */
3612
3613 /* true if exactly one bit set */
3614 return (flags & (flags - 1)) == 0;
3615}
3616
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003617static inline int balance_need_close(struct btrfs_fs_info *fs_info)
3618{
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003619 /* cancel requested || normal exit path */
3620 return atomic_read(&fs_info->balance_cancel_req) ||
3621 (atomic_read(&fs_info->balance_pause_req) == 0 &&
3622 atomic_read(&fs_info->balance_cancel_req) == 0);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003623}
3624
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003625static void __cancel_balance(struct btrfs_fs_info *fs_info)
3626{
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003627 int ret;
3628
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003629 unset_balance_control(fs_info);
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003630 ret = del_balance_item(fs_info->tree_root);
Liu Bo0f788c52013-03-04 16:25:40 +00003631 if (ret)
Anand Jaina4553fe2015-09-25 14:43:01 +08003632 btrfs_std_error(fs_info, ret, NULL);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003633
3634 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003635}
3636
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003637/* Non-zero return value signifies invalidity */
3638static inline int validate_convert_profile(struct btrfs_balance_args *bctl_arg,
3639 u64 allowed)
3640{
3641 return ((bctl_arg->flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3642 (!alloc_profile_is_valid(bctl_arg->target, 1) ||
3643 (bctl_arg->target & ~allowed)));
3644}
3645
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003646/*
3647 * Should be called with both balance and volume mutexes held
3648 */
3649int btrfs_balance(struct btrfs_balance_control *bctl,
3650 struct btrfs_ioctl_balance_args *bargs)
3651{
3652 struct btrfs_fs_info *fs_info = bctl->fs_info;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003653 u64 allowed;
Ilya Dryomove4837f82012-03-27 17:09:17 +03003654 int mixed = 0;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003655 int ret;
Stefan Behrens8dabb742012-11-06 13:15:27 +01003656 u64 num_devices;
Miao Xiede98ced2013-01-29 10:13:12 +00003657 unsigned seq;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003658
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003659 if (btrfs_fs_closing(fs_info) ||
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003660 atomic_read(&fs_info->balance_pause_req) ||
3661 atomic_read(&fs_info->balance_cancel_req)) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003662 ret = -EINVAL;
3663 goto out;
3664 }
3665
Ilya Dryomove4837f82012-03-27 17:09:17 +03003666 allowed = btrfs_super_incompat_flags(fs_info->super_copy);
3667 if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
3668 mixed = 1;
3669
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003670 /*
3671 * In case of mixed groups both data and meta should be picked,
3672 * and identical options should be given for both of them.
3673 */
Ilya Dryomove4837f82012-03-27 17:09:17 +03003674 allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA;
3675 if (mixed && (bctl->flags & allowed)) {
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003676 if (!(bctl->flags & BTRFS_BALANCE_DATA) ||
3677 !(bctl->flags & BTRFS_BALANCE_METADATA) ||
3678 memcmp(&bctl->data, &bctl->meta, sizeof(bctl->data))) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003679 btrfs_err(fs_info, "with mixed groups data and "
3680 "metadata balance options must be the same");
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003681 ret = -EINVAL;
3682 goto out;
3683 }
3684 }
3685
Stefan Behrens8dabb742012-11-06 13:15:27 +01003686 num_devices = fs_info->fs_devices->num_devices;
3687 btrfs_dev_replace_lock(&fs_info->dev_replace);
3688 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace)) {
3689 BUG_ON(num_devices < 1);
3690 num_devices--;
3691 }
3692 btrfs_dev_replace_unlock(&fs_info->dev_replace);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003693 allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE;
Stefan Behrens8dabb742012-11-06 13:15:27 +01003694 if (num_devices == 1)
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003695 allowed |= BTRFS_BLOCK_GROUP_DUP;
Andreas Philipp8250dab2013-05-11 11:13:03 +00003696 else if (num_devices > 1)
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003697 allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1);
Andreas Philipp8250dab2013-05-11 11:13:03 +00003698 if (num_devices > 2)
3699 allowed |= BTRFS_BLOCK_GROUP_RAID5;
3700 if (num_devices > 3)
3701 allowed |= (BTRFS_BLOCK_GROUP_RAID10 |
3702 BTRFS_BLOCK_GROUP_RAID6);
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003703 if (validate_convert_profile(&bctl->data, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003704 btrfs_err(fs_info, "unable to start balance with target "
3705 "data profile %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003706 bctl->data.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003707 ret = -EINVAL;
3708 goto out;
3709 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003710 if (validate_convert_profile(&bctl->meta, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003711 btrfs_err(fs_info,
3712 "unable to start balance with target metadata profile %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003713 bctl->meta.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003714 ret = -EINVAL;
3715 goto out;
3716 }
Alexandru Moisebdcd3c92015-09-22 20:02:25 +00003717 if (validate_convert_profile(&bctl->sys, allowed)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003718 btrfs_err(fs_info,
3719 "unable to start balance with target system profile %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003720 bctl->sys.target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003721 ret = -EINVAL;
3722 goto out;
3723 }
3724
Ilya Dryomove4837f82012-03-27 17:09:17 +03003725 /* allow dup'ed data chunks only in mixed mode */
3726 if (!mixed && (bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
Ilya Dryomov6728b192012-03-27 17:09:17 +03003727 (bctl->data.target & BTRFS_BLOCK_GROUP_DUP)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003728 btrfs_err(fs_info, "dup for data is not allowed");
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003729 ret = -EINVAL;
3730 goto out;
3731 }
3732
3733 /* allow to reduce meta or sys integrity only if force set */
3734 allowed = BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05003735 BTRFS_BLOCK_GROUP_RAID10 |
3736 BTRFS_BLOCK_GROUP_RAID5 |
3737 BTRFS_BLOCK_GROUP_RAID6;
Miao Xiede98ced2013-01-29 10:13:12 +00003738 do {
3739 seq = read_seqbegin(&fs_info->profiles_lock);
3740
3741 if (((bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3742 (fs_info->avail_system_alloc_bits & allowed) &&
3743 !(bctl->sys.target & allowed)) ||
3744 ((bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) &&
3745 (fs_info->avail_metadata_alloc_bits & allowed) &&
3746 !(bctl->meta.target & allowed))) {
3747 if (bctl->flags & BTRFS_BALANCE_FORCE) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003748 btrfs_info(fs_info, "force reducing metadata integrity");
Miao Xiede98ced2013-01-29 10:13:12 +00003749 } else {
Frank Holtonefe120a2013-12-20 11:37:06 -05003750 btrfs_err(fs_info, "balance will reduce metadata "
3751 "integrity, use force if you want this");
Miao Xiede98ced2013-01-29 10:13:12 +00003752 ret = -EINVAL;
3753 goto out;
3754 }
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003755 }
Miao Xiede98ced2013-01-29 10:13:12 +00003756 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003757
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003758 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
Zhao Lei943c6e92015-08-19 15:54:15 +08003759 fs_info->num_tolerated_disk_barrier_failures = min(
3760 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info),
3761 btrfs_get_num_tolerated_disk_barrier_failures(
3762 bctl->sys.target));
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003763 }
3764
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003765 ret = insert_balance_item(fs_info->tree_root, bctl);
Ilya Dryomov59641012012-01-16 22:04:48 +02003766 if (ret && ret != -EEXIST)
Ilya Dryomov0940ebf2012-01-16 22:04:48 +02003767 goto out;
3768
Ilya Dryomov59641012012-01-16 22:04:48 +02003769 if (!(bctl->flags & BTRFS_BALANCE_RESUME)) {
3770 BUG_ON(ret == -EEXIST);
3771 set_balance_control(bctl);
3772 } else {
3773 BUG_ON(ret != -EEXIST);
3774 spin_lock(&fs_info->balance_lock);
3775 update_balance_args(bctl);
3776 spin_unlock(&fs_info->balance_lock);
3777 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003778
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003779 atomic_inc(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003780 mutex_unlock(&fs_info->balance_mutex);
3781
3782 ret = __btrfs_balance(fs_info);
3783
3784 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003785 atomic_dec(&fs_info->balance_running);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003786
Ilya Dryomovbf023ec2013-02-12 16:27:46 +00003787 if (bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3788 fs_info->num_tolerated_disk_barrier_failures =
3789 btrfs_calc_num_tolerated_disk_barrier_failures(fs_info);
3790 }
3791
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003792 if (bargs) {
3793 memset(bargs, 0, sizeof(*bargs));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003794 update_ioctl_balance_args(fs_info, 0, bargs);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003795 }
3796
Ilya Dryomov3a01aa72013-03-06 01:57:55 -07003797 if ((ret && ret != -ECANCELED && ret != -ENOSPC) ||
3798 balance_need_close(fs_info)) {
3799 __cancel_balance(fs_info);
3800 }
3801
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003802 wake_up(&fs_info->balance_wait_q);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003803
3804 return ret;
3805out:
Ilya Dryomov59641012012-01-16 22:04:48 +02003806 if (bctl->flags & BTRFS_BALANCE_RESUME)
3807 __cancel_balance(fs_info);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003808 else {
Ilya Dryomov59641012012-01-16 22:04:48 +02003809 kfree(bctl);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003810 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
3811 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003812 return ret;
3813}
3814
3815static int balance_kthread(void *data)
3816{
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003817 struct btrfs_fs_info *fs_info = data;
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003818 int ret = 0;
Ilya Dryomov59641012012-01-16 22:04:48 +02003819
3820 mutex_lock(&fs_info->volume_mutex);
3821 mutex_lock(&fs_info->balance_mutex);
3822
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003823 if (fs_info->balance_ctl) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003824 btrfs_info(fs_info, "continuing balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003825 ret = btrfs_balance(fs_info->balance_ctl, NULL);
Ilya Dryomov9555c6c2012-01-16 22:04:48 +02003826 }
Ilya Dryomov59641012012-01-16 22:04:48 +02003827
3828 mutex_unlock(&fs_info->balance_mutex);
3829 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003830
Ilya Dryomov59641012012-01-16 22:04:48 +02003831 return ret;
3832}
3833
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003834int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info)
3835{
3836 struct task_struct *tsk;
3837
3838 spin_lock(&fs_info->balance_lock);
3839 if (!fs_info->balance_ctl) {
3840 spin_unlock(&fs_info->balance_lock);
3841 return 0;
3842 }
3843 spin_unlock(&fs_info->balance_lock);
3844
3845 if (btrfs_test_opt(fs_info->tree_root, SKIP_BALANCE)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003846 btrfs_info(fs_info, "force skipping balance");
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003847 return 0;
3848 }
3849
3850 tsk = kthread_run(balance_kthread, fs_info, "btrfs-balance");
Sachin Kamatcd633972013-07-15 16:52:18 +05303851 return PTR_ERR_OR_ZERO(tsk);
Ilya Dryomov2b6ba622012-06-22 12:24:13 -06003852}
3853
Ilya Dryomov68310a52012-06-22 12:24:12 -06003854int btrfs_recover_balance(struct btrfs_fs_info *fs_info)
Ilya Dryomov59641012012-01-16 22:04:48 +02003855{
Ilya Dryomov59641012012-01-16 22:04:48 +02003856 struct btrfs_balance_control *bctl;
3857 struct btrfs_balance_item *item;
3858 struct btrfs_disk_balance_args disk_bargs;
3859 struct btrfs_path *path;
3860 struct extent_buffer *leaf;
3861 struct btrfs_key key;
3862 int ret;
3863
3864 path = btrfs_alloc_path();
3865 if (!path)
3866 return -ENOMEM;
3867
Ilya Dryomov68310a52012-06-22 12:24:12 -06003868 key.objectid = BTRFS_BALANCE_OBJECTID;
3869 key.type = BTRFS_BALANCE_ITEM_KEY;
3870 key.offset = 0;
3871
3872 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
3873 if (ret < 0)
3874 goto out;
3875 if (ret > 0) { /* ret = -ENOENT; */
3876 ret = 0;
3877 goto out;
3878 }
3879
Ilya Dryomov59641012012-01-16 22:04:48 +02003880 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
3881 if (!bctl) {
3882 ret = -ENOMEM;
3883 goto out;
3884 }
3885
Ilya Dryomov59641012012-01-16 22:04:48 +02003886 leaf = path->nodes[0];
3887 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_balance_item);
3888
Ilya Dryomov68310a52012-06-22 12:24:12 -06003889 bctl->fs_info = fs_info;
3890 bctl->flags = btrfs_balance_flags(leaf, item);
3891 bctl->flags |= BTRFS_BALANCE_RESUME;
Ilya Dryomov59641012012-01-16 22:04:48 +02003892
3893 btrfs_balance_data(leaf, item, &disk_bargs);
3894 btrfs_disk_balance_args_to_cpu(&bctl->data, &disk_bargs);
3895 btrfs_balance_meta(leaf, item, &disk_bargs);
3896 btrfs_disk_balance_args_to_cpu(&bctl->meta, &disk_bargs);
3897 btrfs_balance_sys(leaf, item, &disk_bargs);
3898 btrfs_disk_balance_args_to_cpu(&bctl->sys, &disk_bargs);
3899
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003900 WARN_ON(atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1));
3901
Ilya Dryomov68310a52012-06-22 12:24:12 -06003902 mutex_lock(&fs_info->volume_mutex);
3903 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02003904
Ilya Dryomov68310a52012-06-22 12:24:12 -06003905 set_balance_control(bctl);
3906
3907 mutex_unlock(&fs_info->balance_mutex);
3908 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomov59641012012-01-16 22:04:48 +02003909out:
3910 btrfs_free_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04003911 return ret;
3912}
3913
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003914int btrfs_pause_balance(struct btrfs_fs_info *fs_info)
3915{
3916 int ret = 0;
3917
3918 mutex_lock(&fs_info->balance_mutex);
3919 if (!fs_info->balance_ctl) {
3920 mutex_unlock(&fs_info->balance_mutex);
3921 return -ENOTCONN;
3922 }
3923
3924 if (atomic_read(&fs_info->balance_running)) {
3925 atomic_inc(&fs_info->balance_pause_req);
3926 mutex_unlock(&fs_info->balance_mutex);
3927
3928 wait_event(fs_info->balance_wait_q,
3929 atomic_read(&fs_info->balance_running) == 0);
3930
3931 mutex_lock(&fs_info->balance_mutex);
3932 /* we are good with balance_ctl ripped off from under us */
3933 BUG_ON(atomic_read(&fs_info->balance_running));
3934 atomic_dec(&fs_info->balance_pause_req);
3935 } else {
3936 ret = -ENOTCONN;
3937 }
3938
3939 mutex_unlock(&fs_info->balance_mutex);
3940 return ret;
3941}
3942
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003943int btrfs_cancel_balance(struct btrfs_fs_info *fs_info)
3944{
Ilya Dryomove649e582013-10-10 20:40:21 +03003945 if (fs_info->sb->s_flags & MS_RDONLY)
3946 return -EROFS;
3947
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003948 mutex_lock(&fs_info->balance_mutex);
3949 if (!fs_info->balance_ctl) {
3950 mutex_unlock(&fs_info->balance_mutex);
3951 return -ENOTCONN;
3952 }
3953
3954 atomic_inc(&fs_info->balance_cancel_req);
3955 /*
3956 * if we are running just wait and return, balance item is
3957 * deleted in btrfs_balance in this case
3958 */
3959 if (atomic_read(&fs_info->balance_running)) {
3960 mutex_unlock(&fs_info->balance_mutex);
3961 wait_event(fs_info->balance_wait_q,
3962 atomic_read(&fs_info->balance_running) == 0);
3963 mutex_lock(&fs_info->balance_mutex);
3964 } else {
3965 /* __cancel_balance needs volume_mutex */
3966 mutex_unlock(&fs_info->balance_mutex);
3967 mutex_lock(&fs_info->volume_mutex);
3968 mutex_lock(&fs_info->balance_mutex);
3969
3970 if (fs_info->balance_ctl)
3971 __cancel_balance(fs_info);
3972
3973 mutex_unlock(&fs_info->volume_mutex);
3974 }
3975
3976 BUG_ON(fs_info->balance_ctl || atomic_read(&fs_info->balance_running));
3977 atomic_dec(&fs_info->balance_cancel_req);
3978 mutex_unlock(&fs_info->balance_mutex);
3979 return 0;
3980}
3981
Stefan Behrens803b2f52013-08-15 17:11:21 +02003982static int btrfs_uuid_scan_kthread(void *data)
3983{
3984 struct btrfs_fs_info *fs_info = data;
3985 struct btrfs_root *root = fs_info->tree_root;
3986 struct btrfs_key key;
3987 struct btrfs_key max_key;
3988 struct btrfs_path *path = NULL;
3989 int ret = 0;
3990 struct extent_buffer *eb;
3991 int slot;
3992 struct btrfs_root_item root_item;
3993 u32 item_size;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01003994 struct btrfs_trans_handle *trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02003995
3996 path = btrfs_alloc_path();
3997 if (!path) {
3998 ret = -ENOMEM;
3999 goto out;
4000 }
4001
4002 key.objectid = 0;
4003 key.type = BTRFS_ROOT_ITEM_KEY;
4004 key.offset = 0;
4005
4006 max_key.objectid = (u64)-1;
4007 max_key.type = BTRFS_ROOT_ITEM_KEY;
4008 max_key.offset = (u64)-1;
4009
Stefan Behrens803b2f52013-08-15 17:11:21 +02004010 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01004011 ret = btrfs_search_forward(root, &key, path, 0);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004012 if (ret) {
4013 if (ret > 0)
4014 ret = 0;
4015 break;
4016 }
4017
4018 if (key.type != BTRFS_ROOT_ITEM_KEY ||
4019 (key.objectid < BTRFS_FIRST_FREE_OBJECTID &&
4020 key.objectid != BTRFS_FS_TREE_OBJECTID) ||
4021 key.objectid > BTRFS_LAST_FREE_OBJECTID)
4022 goto skip;
4023
4024 eb = path->nodes[0];
4025 slot = path->slots[0];
4026 item_size = btrfs_item_size_nr(eb, slot);
4027 if (item_size < sizeof(root_item))
4028 goto skip;
4029
Stefan Behrens803b2f52013-08-15 17:11:21 +02004030 read_extent_buffer(eb, &root_item,
4031 btrfs_item_ptr_offset(eb, slot),
4032 (int)sizeof(root_item));
4033 if (btrfs_root_refs(&root_item) == 0)
4034 goto skip;
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004035
4036 if (!btrfs_is_empty_uuid(root_item.uuid) ||
4037 !btrfs_is_empty_uuid(root_item.received_uuid)) {
4038 if (trans)
4039 goto update_tree;
4040
4041 btrfs_release_path(path);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004042 /*
4043 * 1 - subvol uuid item
4044 * 1 - received_subvol uuid item
4045 */
4046 trans = btrfs_start_transaction(fs_info->uuid_root, 2);
4047 if (IS_ERR(trans)) {
4048 ret = PTR_ERR(trans);
4049 break;
4050 }
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004051 continue;
4052 } else {
4053 goto skip;
4054 }
4055update_tree:
4056 if (!btrfs_is_empty_uuid(root_item.uuid)) {
Stefan Behrens803b2f52013-08-15 17:11:21 +02004057 ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root,
4058 root_item.uuid,
4059 BTRFS_UUID_KEY_SUBVOL,
4060 key.objectid);
4061 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004062 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004063 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004064 break;
4065 }
4066 }
4067
4068 if (!btrfs_is_empty_uuid(root_item.received_uuid)) {
Stefan Behrens803b2f52013-08-15 17:11:21 +02004069 ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root,
4070 root_item.received_uuid,
4071 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4072 key.objectid);
4073 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004074 btrfs_warn(fs_info, "uuid_tree_add failed %d",
Stefan Behrens803b2f52013-08-15 17:11:21 +02004075 ret);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004076 break;
4077 }
4078 }
4079
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004080skip:
Stefan Behrens803b2f52013-08-15 17:11:21 +02004081 if (trans) {
4082 ret = btrfs_end_transaction(trans, fs_info->uuid_root);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004083 trans = NULL;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004084 if (ret)
4085 break;
4086 }
4087
Stefan Behrens803b2f52013-08-15 17:11:21 +02004088 btrfs_release_path(path);
4089 if (key.offset < (u64)-1) {
4090 key.offset++;
4091 } else if (key.type < BTRFS_ROOT_ITEM_KEY) {
4092 key.offset = 0;
4093 key.type = BTRFS_ROOT_ITEM_KEY;
4094 } else if (key.objectid < (u64)-1) {
4095 key.offset = 0;
4096 key.type = BTRFS_ROOT_ITEM_KEY;
4097 key.objectid++;
4098 } else {
4099 break;
4100 }
4101 cond_resched();
4102 }
4103
4104out:
4105 btrfs_free_path(path);
Filipe David Borba Mananaf45388f2013-08-28 10:28:34 +01004106 if (trans && !IS_ERR(trans))
4107 btrfs_end_transaction(trans, fs_info->uuid_root);
Stefan Behrens803b2f52013-08-15 17:11:21 +02004108 if (ret)
Frank Holtonefe120a2013-12-20 11:37:06 -05004109 btrfs_warn(fs_info, "btrfs_uuid_scan_kthread failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004110 else
4111 fs_info->update_uuid_tree_gen = 1;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004112 up(&fs_info->uuid_tree_rescan_sem);
4113 return 0;
4114}
4115
Stefan Behrens70f80172013-08-15 17:11:23 +02004116/*
4117 * Callback for btrfs_uuid_tree_iterate().
4118 * returns:
4119 * 0 check succeeded, the entry is not outdated.
4120 * < 0 if an error occured.
4121 * > 0 if the check failed, which means the caller shall remove the entry.
4122 */
4123static int btrfs_check_uuid_tree_entry(struct btrfs_fs_info *fs_info,
4124 u8 *uuid, u8 type, u64 subid)
4125{
4126 struct btrfs_key key;
4127 int ret = 0;
4128 struct btrfs_root *subvol_root;
4129
4130 if (type != BTRFS_UUID_KEY_SUBVOL &&
4131 type != BTRFS_UUID_KEY_RECEIVED_SUBVOL)
4132 goto out;
4133
4134 key.objectid = subid;
4135 key.type = BTRFS_ROOT_ITEM_KEY;
4136 key.offset = (u64)-1;
4137 subvol_root = btrfs_read_fs_root_no_name(fs_info, &key);
4138 if (IS_ERR(subvol_root)) {
4139 ret = PTR_ERR(subvol_root);
4140 if (ret == -ENOENT)
4141 ret = 1;
4142 goto out;
4143 }
4144
4145 switch (type) {
4146 case BTRFS_UUID_KEY_SUBVOL:
4147 if (memcmp(uuid, subvol_root->root_item.uuid, BTRFS_UUID_SIZE))
4148 ret = 1;
4149 break;
4150 case BTRFS_UUID_KEY_RECEIVED_SUBVOL:
4151 if (memcmp(uuid, subvol_root->root_item.received_uuid,
4152 BTRFS_UUID_SIZE))
4153 ret = 1;
4154 break;
4155 }
4156
4157out:
4158 return ret;
4159}
4160
4161static int btrfs_uuid_rescan_kthread(void *data)
4162{
4163 struct btrfs_fs_info *fs_info = (struct btrfs_fs_info *)data;
4164 int ret;
4165
4166 /*
4167 * 1st step is to iterate through the existing UUID tree and
4168 * to delete all entries that contain outdated data.
4169 * 2nd step is to add all missing entries to the UUID tree.
4170 */
4171 ret = btrfs_uuid_tree_iterate(fs_info, btrfs_check_uuid_tree_entry);
4172 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004173 btrfs_warn(fs_info, "iterating uuid_tree failed %d", ret);
Stefan Behrens70f80172013-08-15 17:11:23 +02004174 up(&fs_info->uuid_tree_rescan_sem);
4175 return ret;
4176 }
4177 return btrfs_uuid_scan_kthread(data);
4178}
4179
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004180int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info)
4181{
4182 struct btrfs_trans_handle *trans;
4183 struct btrfs_root *tree_root = fs_info->tree_root;
4184 struct btrfs_root *uuid_root;
Stefan Behrens803b2f52013-08-15 17:11:21 +02004185 struct task_struct *task;
4186 int ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004187
4188 /*
4189 * 1 - root node
4190 * 1 - root item
4191 */
4192 trans = btrfs_start_transaction(tree_root, 2);
4193 if (IS_ERR(trans))
4194 return PTR_ERR(trans);
4195
4196 uuid_root = btrfs_create_tree(trans, fs_info,
4197 BTRFS_UUID_TREE_OBJECTID);
4198 if (IS_ERR(uuid_root)) {
David Sterba6d13f542015-04-24 19:12:01 +02004199 ret = PTR_ERR(uuid_root);
4200 btrfs_abort_transaction(trans, tree_root, ret);
4201 return ret;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004202 }
4203
4204 fs_info->uuid_root = uuid_root;
4205
Stefan Behrens803b2f52013-08-15 17:11:21 +02004206 ret = btrfs_commit_transaction(trans, tree_root);
4207 if (ret)
4208 return ret;
4209
4210 down(&fs_info->uuid_tree_rescan_sem);
4211 task = kthread_run(btrfs_uuid_scan_kthread, fs_info, "btrfs-uuid");
4212 if (IS_ERR(task)) {
Stefan Behrens70f80172013-08-15 17:11:23 +02004213 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004214 btrfs_warn(fs_info, "failed to start uuid_scan task");
Stefan Behrens803b2f52013-08-15 17:11:21 +02004215 up(&fs_info->uuid_tree_rescan_sem);
4216 return PTR_ERR(task);
4217 }
4218
4219 return 0;
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004220}
Stefan Behrens803b2f52013-08-15 17:11:21 +02004221
Stefan Behrens70f80172013-08-15 17:11:23 +02004222int btrfs_check_uuid_tree(struct btrfs_fs_info *fs_info)
4223{
4224 struct task_struct *task;
4225
4226 down(&fs_info->uuid_tree_rescan_sem);
4227 task = kthread_run(btrfs_uuid_rescan_kthread, fs_info, "btrfs-uuid");
4228 if (IS_ERR(task)) {
4229 /* fs_info->update_uuid_tree_gen remains 0 in all error case */
Frank Holtonefe120a2013-12-20 11:37:06 -05004230 btrfs_warn(fs_info, "failed to start uuid_rescan task");
Stefan Behrens70f80172013-08-15 17:11:23 +02004231 up(&fs_info->uuid_tree_rescan_sem);
4232 return PTR_ERR(task);
4233 }
4234
4235 return 0;
4236}
4237
Chris Mason8f18cf12008-04-25 16:53:30 -04004238/*
4239 * shrinking a device means finding all of the device extents past
4240 * the new size, and then following the back refs to the chunks.
4241 * The chunk relocation code actually frees the device extent
4242 */
4243int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
4244{
4245 struct btrfs_trans_handle *trans;
4246 struct btrfs_root *root = device->dev_root;
4247 struct btrfs_dev_extent *dev_extent = NULL;
4248 struct btrfs_path *path;
4249 u64 length;
Chris Mason8f18cf12008-04-25 16:53:30 -04004250 u64 chunk_offset;
4251 int ret;
4252 int slot;
Josef Bacikba1bf482009-09-11 16:11:19 -04004253 int failed = 0;
4254 bool retried = false;
Filipe Manana53e489b2015-06-02 14:43:21 +01004255 bool checked_pending_chunks = false;
Chris Mason8f18cf12008-04-25 16:53:30 -04004256 struct extent_buffer *l;
4257 struct btrfs_key key;
David Sterba6c417612011-04-13 15:41:04 +02004258 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason8f18cf12008-04-25 16:53:30 -04004259 u64 old_total = btrfs_super_total_bytes(super_copy);
Miao Xie7cc8e582014-09-03 21:35:38 +08004260 u64 old_size = btrfs_device_get_total_bytes(device);
4261 u64 diff = old_size - new_size;
Chris Mason8f18cf12008-04-25 16:53:30 -04004262
Stefan Behrens63a212a2012-11-05 18:29:28 +01004263 if (device->is_tgtdev_for_dev_replace)
4264 return -EINVAL;
4265
Chris Mason8f18cf12008-04-25 16:53:30 -04004266 path = btrfs_alloc_path();
4267 if (!path)
4268 return -ENOMEM;
4269
Chris Mason8f18cf12008-04-25 16:53:30 -04004270 path->reada = 2;
4271
Chris Mason7d9eb122008-07-08 14:19:17 -04004272 lock_chunks(root);
4273
Miao Xie7cc8e582014-09-03 21:35:38 +08004274 btrfs_device_set_total_bytes(device, new_size);
Josef Bacik2bf64752011-09-26 17:12:22 -04004275 if (device->writeable) {
Yan Zheng2b820322008-11-17 21:11:30 -05004276 device->fs_devices->total_rw_bytes -= diff;
Josef Bacik2bf64752011-09-26 17:12:22 -04004277 spin_lock(&root->fs_info->free_chunk_lock);
4278 root->fs_info->free_chunk_space -= diff;
4279 spin_unlock(&root->fs_info->free_chunk_lock);
4280 }
Chris Mason7d9eb122008-07-08 14:19:17 -04004281 unlock_chunks(root);
Chris Mason8f18cf12008-04-25 16:53:30 -04004282
Josef Bacikba1bf482009-09-11 16:11:19 -04004283again:
Chris Mason8f18cf12008-04-25 16:53:30 -04004284 key.objectid = device->devid;
4285 key.offset = (u64)-1;
4286 key.type = BTRFS_DEV_EXTENT_KEY;
4287
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004288 do {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004289 mutex_lock(&root->fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004290 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004291 if (ret < 0) {
4292 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004293 goto done;
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004294 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004295
4296 ret = btrfs_previous_item(root, path, 0, key.type);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004297 if (ret)
4298 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04004299 if (ret < 0)
4300 goto done;
4301 if (ret) {
4302 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02004303 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004304 break;
Chris Mason8f18cf12008-04-25 16:53:30 -04004305 }
4306
4307 l = path->nodes[0];
4308 slot = path->slots[0];
4309 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
4310
Josef Bacikba1bf482009-09-11 16:11:19 -04004311 if (key.objectid != device->devid) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004312 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004313 btrfs_release_path(path);
Yan Zhengbf1fb512009-07-22 09:59:00 -04004314 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004315 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004316
4317 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
4318 length = btrfs_dev_extent_length(l, dev_extent);
4319
Josef Bacikba1bf482009-09-11 16:11:19 -04004320 if (key.offset + length <= new_size) {
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004321 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
David Sterbab3b4aa72011-04-21 01:20:15 +02004322 btrfs_release_path(path);
Chris Balld6397ba2009-04-27 07:29:03 -04004323 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04004324 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004325
Chris Mason8f18cf12008-04-25 16:53:30 -04004326 chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
David Sterbab3b4aa72011-04-21 01:20:15 +02004327 btrfs_release_path(path);
Chris Mason8f18cf12008-04-25 16:53:30 -04004328
Zhaoleidc2ee4e2015-08-05 18:00:04 +08004329 ret = btrfs_relocate_chunk(root, chunk_offset);
Filipe Manana67c5e7d2015-06-11 00:58:53 +01004330 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Josef Bacikba1bf482009-09-11 16:11:19 -04004331 if (ret && ret != -ENOSPC)
Chris Mason8f18cf12008-04-25 16:53:30 -04004332 goto done;
Josef Bacikba1bf482009-09-11 16:11:19 -04004333 if (ret == -ENOSPC)
4334 failed++;
Ilya Dryomov213e64d2012-03-27 17:09:18 +03004335 } while (key.offset-- > 0);
Josef Bacikba1bf482009-09-11 16:11:19 -04004336
4337 if (failed && !retried) {
4338 failed = 0;
4339 retried = true;
4340 goto again;
4341 } else if (failed && retried) {
4342 ret = -ENOSPC;
Josef Bacikba1bf482009-09-11 16:11:19 -04004343 goto done;
Chris Mason8f18cf12008-04-25 16:53:30 -04004344 }
4345
Chris Balld6397ba2009-04-27 07:29:03 -04004346 /* Shrinking succeeded, else we would be at "done". */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004347 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00004348 if (IS_ERR(trans)) {
4349 ret = PTR_ERR(trans);
4350 goto done;
4351 }
4352
Chris Balld6397ba2009-04-27 07:29:03 -04004353 lock_chunks(root);
Filipe Manana53e489b2015-06-02 14:43:21 +01004354
4355 /*
4356 * We checked in the above loop all device extents that were already in
4357 * the device tree. However before we have updated the device's
4358 * total_bytes to the new size, we might have had chunk allocations that
4359 * have not complete yet (new block groups attached to transaction
4360 * handles), and therefore their device extents were not yet in the
4361 * device tree and we missed them in the loop above. So if we have any
4362 * pending chunk using a device extent that overlaps the device range
4363 * that we can not use anymore, commit the current transaction and
4364 * repeat the search on the device tree - this way we guarantee we will
4365 * not have chunks using device extents that end beyond 'new_size'.
4366 */
4367 if (!checked_pending_chunks) {
4368 u64 start = new_size;
4369 u64 len = old_size - new_size;
4370
Jeff Mahoney499f3772015-06-15 09:41:17 -04004371 if (contains_pending_extent(trans->transaction, device,
4372 &start, len)) {
Filipe Manana53e489b2015-06-02 14:43:21 +01004373 unlock_chunks(root);
4374 checked_pending_chunks = true;
4375 failed = 0;
4376 retried = false;
4377 ret = btrfs_commit_transaction(trans, root);
4378 if (ret)
4379 goto done;
4380 goto again;
4381 }
4382 }
4383
Miao Xie7cc8e582014-09-03 21:35:38 +08004384 btrfs_device_set_disk_total_bytes(device, new_size);
Miao Xie935e5cc2014-09-03 21:35:33 +08004385 if (list_empty(&device->resized_list))
4386 list_add_tail(&device->resized_list,
4387 &root->fs_info->fs_devices->resized_devices);
Chris Balld6397ba2009-04-27 07:29:03 -04004388
Chris Balld6397ba2009-04-27 07:29:03 -04004389 WARN_ON(diff > old_total);
4390 btrfs_set_super_total_bytes(super_copy, old_total - diff);
4391 unlock_chunks(root);
Miao Xie2196d6e2014-09-03 21:35:41 +08004392
4393 /* Now btrfs_update_device() will change the on-disk size. */
4394 ret = btrfs_update_device(trans, device);
Chris Balld6397ba2009-04-27 07:29:03 -04004395 btrfs_end_transaction(trans, root);
Chris Mason8f18cf12008-04-25 16:53:30 -04004396done:
4397 btrfs_free_path(path);
Filipe Manana53e489b2015-06-02 14:43:21 +01004398 if (ret) {
4399 lock_chunks(root);
4400 btrfs_device_set_total_bytes(device, old_size);
4401 if (device->writeable)
4402 device->fs_devices->total_rw_bytes += diff;
4403 spin_lock(&root->fs_info->free_chunk_lock);
4404 root->fs_info->free_chunk_space += diff;
4405 spin_unlock(&root->fs_info->free_chunk_lock);
4406 unlock_chunks(root);
4407 }
Chris Mason8f18cf12008-04-25 16:53:30 -04004408 return ret;
4409}
4410
Li Zefan125ccb02011-12-08 15:07:24 +08004411static int btrfs_add_system_chunk(struct btrfs_root *root,
Chris Mason0b86a832008-03-24 15:01:56 -04004412 struct btrfs_key *key,
4413 struct btrfs_chunk *chunk, int item_size)
4414{
David Sterba6c417612011-04-13 15:41:04 +02004415 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Mason0b86a832008-03-24 15:01:56 -04004416 struct btrfs_disk_key disk_key;
4417 u32 array_size;
4418 u8 *ptr;
4419
Miao Xiefe48a5c2014-09-03 21:35:39 +08004420 lock_chunks(root);
Chris Mason0b86a832008-03-24 15:01:56 -04004421 array_size = btrfs_super_sys_array_size(super_copy);
Gui Hecheng5f43f862014-04-21 20:13:11 +08004422 if (array_size + item_size + sizeof(disk_key)
Miao Xiefe48a5c2014-09-03 21:35:39 +08004423 > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE) {
4424 unlock_chunks(root);
Chris Mason0b86a832008-03-24 15:01:56 -04004425 return -EFBIG;
Miao Xiefe48a5c2014-09-03 21:35:39 +08004426 }
Chris Mason0b86a832008-03-24 15:01:56 -04004427
4428 ptr = super_copy->sys_chunk_array + array_size;
4429 btrfs_cpu_key_to_disk(&disk_key, key);
4430 memcpy(ptr, &disk_key, sizeof(disk_key));
4431 ptr += sizeof(disk_key);
4432 memcpy(ptr, chunk, item_size);
4433 item_size += sizeof(disk_key);
4434 btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
Miao Xiefe48a5c2014-09-03 21:35:39 +08004435 unlock_chunks(root);
4436
Chris Mason0b86a832008-03-24 15:01:56 -04004437 return 0;
4438}
4439
Miao Xieb2117a32011-01-05 10:07:28 +00004440/*
Arne Jansen73c5de02011-04-12 12:07:57 +02004441 * sort the devices in descending order by max_avail, total_avail
Miao Xieb2117a32011-01-05 10:07:28 +00004442 */
Arne Jansen73c5de02011-04-12 12:07:57 +02004443static int btrfs_cmp_device_info(const void *a, const void *b)
Miao Xieb2117a32011-01-05 10:07:28 +00004444{
Arne Jansen73c5de02011-04-12 12:07:57 +02004445 const struct btrfs_device_info *di_a = a;
4446 const struct btrfs_device_info *di_b = b;
Miao Xieb2117a32011-01-05 10:07:28 +00004447
Arne Jansen73c5de02011-04-12 12:07:57 +02004448 if (di_a->max_avail > di_b->max_avail)
4449 return -1;
4450 if (di_a->max_avail < di_b->max_avail)
4451 return 1;
4452 if (di_a->total_avail > di_b->total_avail)
4453 return -1;
4454 if (di_a->total_avail < di_b->total_avail)
4455 return 1;
Miao Xieb2117a32011-01-05 10:07:28 +00004456 return 0;
4457}
4458
David Woodhouse53b381b2013-01-29 18:40:14 -05004459static u32 find_raid56_stripe_len(u32 data_devices, u32 dev_stripe_target)
4460{
4461 /* TODO allow them to set a preferred stripe size */
Byongho Leeee221842015-12-15 01:42:10 +09004462 return SZ_64K;
David Woodhouse53b381b2013-01-29 18:40:14 -05004463}
4464
4465static void check_raid56_incompat_flag(struct btrfs_fs_info *info, u64 type)
4466{
Zhao Leiffe2d202015-01-20 15:11:44 +08004467 if (!(type & BTRFS_BLOCK_GROUP_RAID56_MASK))
David Woodhouse53b381b2013-01-29 18:40:14 -05004468 return;
4469
Miao Xieceda0862013-04-11 10:30:16 +00004470 btrfs_set_fs_incompat(info, RAID56);
David Woodhouse53b381b2013-01-29 18:40:14 -05004471}
4472
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004473#define BTRFS_MAX_DEVS(r) ((BTRFS_LEAF_DATA_SIZE(r) \
4474 - sizeof(struct btrfs_item) \
4475 - sizeof(struct btrfs_chunk)) \
4476 / sizeof(struct btrfs_stripe) + 1)
4477
4478#define BTRFS_MAX_DEVS_SYS_CHUNK ((BTRFS_SYSTEM_CHUNK_ARRAY_SIZE \
4479 - 2 * sizeof(struct btrfs_disk_key) \
4480 - 2 * sizeof(struct btrfs_chunk)) \
4481 / sizeof(struct btrfs_stripe) + 1)
4482
Miao Xieb2117a32011-01-05 10:07:28 +00004483static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
Josef Bacik6df9a952013-06-27 13:22:46 -04004484 struct btrfs_root *extent_root, u64 start,
4485 u64 type)
Miao Xieb2117a32011-01-05 10:07:28 +00004486{
4487 struct btrfs_fs_info *info = extent_root->fs_info;
Miao Xieb2117a32011-01-05 10:07:28 +00004488 struct btrfs_fs_devices *fs_devices = info->fs_devices;
4489 struct list_head *cur;
Arne Jansen73c5de02011-04-12 12:07:57 +02004490 struct map_lookup *map = NULL;
Miao Xieb2117a32011-01-05 10:07:28 +00004491 struct extent_map_tree *em_tree;
4492 struct extent_map *em;
Arne Jansen73c5de02011-04-12 12:07:57 +02004493 struct btrfs_device_info *devices_info = NULL;
4494 u64 total_avail;
4495 int num_stripes; /* total number of stripes to allocate */
David Woodhouse53b381b2013-01-29 18:40:14 -05004496 int data_stripes; /* number of stripes that count for
4497 block group size */
Arne Jansen73c5de02011-04-12 12:07:57 +02004498 int sub_stripes; /* sub_stripes info for map */
4499 int dev_stripes; /* stripes per dev */
4500 int devs_max; /* max devs to use */
4501 int devs_min; /* min devs needed */
4502 int devs_increment; /* ndevs has to be a multiple of this */
4503 int ncopies; /* how many copies to data has */
Miao Xieb2117a32011-01-05 10:07:28 +00004504 int ret;
Arne Jansen73c5de02011-04-12 12:07:57 +02004505 u64 max_stripe_size;
4506 u64 max_chunk_size;
4507 u64 stripe_size;
4508 u64 num_bytes;
David Woodhouse53b381b2013-01-29 18:40:14 -05004509 u64 raid_stripe_len = BTRFS_STRIPE_LEN;
Arne Jansen73c5de02011-04-12 12:07:57 +02004510 int ndevs;
4511 int i;
4512 int j;
Liu Bo31e50222012-11-21 14:18:10 +00004513 int index;
Miao Xieb2117a32011-01-05 10:07:28 +00004514
Ilya Dryomov0c460c02012-03-27 17:09:17 +03004515 BUG_ON(!alloc_profile_is_valid(type, 0));
Arne Jansen73c5de02011-04-12 12:07:57 +02004516
Miao Xieb2117a32011-01-05 10:07:28 +00004517 if (list_empty(&fs_devices->alloc_list))
4518 return -ENOSPC;
4519
Liu Bo31e50222012-11-21 14:18:10 +00004520 index = __get_raid_index(type);
Arne Jansen73c5de02011-04-12 12:07:57 +02004521
Liu Bo31e50222012-11-21 14:18:10 +00004522 sub_stripes = btrfs_raid_array[index].sub_stripes;
4523 dev_stripes = btrfs_raid_array[index].dev_stripes;
4524 devs_max = btrfs_raid_array[index].devs_max;
4525 devs_min = btrfs_raid_array[index].devs_min;
4526 devs_increment = btrfs_raid_array[index].devs_increment;
4527 ncopies = btrfs_raid_array[index].ncopies;
Arne Jansen73c5de02011-04-12 12:07:57 +02004528
4529 if (type & BTRFS_BLOCK_GROUP_DATA) {
Byongho Leeee221842015-12-15 01:42:10 +09004530 max_stripe_size = SZ_1G;
Arne Jansen73c5de02011-04-12 12:07:57 +02004531 max_chunk_size = 10 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004532 if (!devs_max)
4533 devs_max = BTRFS_MAX_DEVS(info->chunk_root);
Arne Jansen73c5de02011-04-12 12:07:57 +02004534 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason11003732012-01-06 15:47:38 -05004535 /* for larger filesystems, use larger metadata chunks */
Byongho Leeee221842015-12-15 01:42:10 +09004536 if (fs_devices->total_rw_bytes > 50ULL * SZ_1G)
4537 max_stripe_size = SZ_1G;
Chris Mason11003732012-01-06 15:47:38 -05004538 else
Byongho Leeee221842015-12-15 01:42:10 +09004539 max_stripe_size = SZ_256M;
Arne Jansen73c5de02011-04-12 12:07:57 +02004540 max_chunk_size = max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004541 if (!devs_max)
4542 devs_max = BTRFS_MAX_DEVS(info->chunk_root);
Arne Jansen73c5de02011-04-12 12:07:57 +02004543 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
Byongho Leeee221842015-12-15 01:42:10 +09004544 max_stripe_size = SZ_32M;
Arne Jansen73c5de02011-04-12 12:07:57 +02004545 max_chunk_size = 2 * max_stripe_size;
Gui Hecheng23f8f9b2014-04-21 20:13:12 +08004546 if (!devs_max)
4547 devs_max = BTRFS_MAX_DEVS_SYS_CHUNK;
Arne Jansen73c5de02011-04-12 12:07:57 +02004548 } else {
David Sterba351fd352014-05-15 16:48:20 +02004549 btrfs_err(info, "invalid chunk type 0x%llx requested",
Arne Jansen73c5de02011-04-12 12:07:57 +02004550 type);
4551 BUG_ON(1);
4552 }
4553
4554 /* we don't want a chunk larger than 10% of writeable space */
4555 max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1),
4556 max_chunk_size);
Miao Xieb2117a32011-01-05 10:07:28 +00004557
David Sterba31e818f2015-02-20 18:00:26 +01004558 devices_info = kcalloc(fs_devices->rw_devices, sizeof(*devices_info),
Miao Xieb2117a32011-01-05 10:07:28 +00004559 GFP_NOFS);
4560 if (!devices_info)
4561 return -ENOMEM;
4562
Arne Jansen73c5de02011-04-12 12:07:57 +02004563 cur = fs_devices->alloc_list.next;
4564
4565 /*
4566 * in the first pass through the devices list, we gather information
4567 * about the available holes on each device.
4568 */
4569 ndevs = 0;
4570 while (cur != &fs_devices->alloc_list) {
4571 struct btrfs_device *device;
4572 u64 max_avail;
4573 u64 dev_offset;
4574
4575 device = list_entry(cur, struct btrfs_device, dev_alloc_list);
4576
4577 cur = cur->next;
4578
4579 if (!device->writeable) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00004580 WARN(1, KERN_ERR
Frank Holtonefe120a2013-12-20 11:37:06 -05004581 "BTRFS: read-only device in alloc_list\n");
Arne Jansen73c5de02011-04-12 12:07:57 +02004582 continue;
4583 }
4584
Stefan Behrens63a212a2012-11-05 18:29:28 +01004585 if (!device->in_fs_metadata ||
4586 device->is_tgtdev_for_dev_replace)
Arne Jansen73c5de02011-04-12 12:07:57 +02004587 continue;
4588
4589 if (device->total_bytes > device->bytes_used)
4590 total_avail = device->total_bytes - device->bytes_used;
4591 else
4592 total_avail = 0;
liubo38c01b92011-08-02 02:39:03 +00004593
4594 /* If there is no space on this device, skip it. */
4595 if (total_avail == 0)
4596 continue;
Arne Jansen73c5de02011-04-12 12:07:57 +02004597
Josef Bacik6df9a952013-06-27 13:22:46 -04004598 ret = find_free_dev_extent(trans, device,
Arne Jansen73c5de02011-04-12 12:07:57 +02004599 max_stripe_size * dev_stripes,
4600 &dev_offset, &max_avail);
4601 if (ret && ret != -ENOSPC)
4602 goto error;
4603
4604 if (ret == 0)
4605 max_avail = max_stripe_size * dev_stripes;
4606
4607 if (max_avail < BTRFS_STRIPE_LEN * dev_stripes)
4608 continue;
4609
Eric Sandeen063d0062013-01-31 00:55:01 +00004610 if (ndevs == fs_devices->rw_devices) {
4611 WARN(1, "%s: found more than %llu devices\n",
4612 __func__, fs_devices->rw_devices);
4613 break;
4614 }
Arne Jansen73c5de02011-04-12 12:07:57 +02004615 devices_info[ndevs].dev_offset = dev_offset;
4616 devices_info[ndevs].max_avail = max_avail;
4617 devices_info[ndevs].total_avail = total_avail;
4618 devices_info[ndevs].dev = device;
4619 ++ndevs;
4620 }
4621
4622 /*
4623 * now sort the devices by hole size / available space
4624 */
4625 sort(devices_info, ndevs, sizeof(struct btrfs_device_info),
4626 btrfs_cmp_device_info, NULL);
4627
4628 /* round down to number of usable stripes */
4629 ndevs -= ndevs % devs_increment;
4630
4631 if (ndevs < devs_increment * sub_stripes || ndevs < devs_min) {
4632 ret = -ENOSPC;
4633 goto error;
4634 }
4635
4636 if (devs_max && ndevs > devs_max)
4637 ndevs = devs_max;
4638 /*
4639 * the primary goal is to maximize the number of stripes, so use as many
4640 * devices as possible, even if the stripes are not maximum sized.
4641 */
4642 stripe_size = devices_info[ndevs-1].max_avail;
4643 num_stripes = ndevs * dev_stripes;
4644
David Woodhouse53b381b2013-01-29 18:40:14 -05004645 /*
4646 * this will have to be fixed for RAID1 and RAID10 over
4647 * more drives
4648 */
4649 data_stripes = num_stripes / ncopies;
4650
David Woodhouse53b381b2013-01-29 18:40:14 -05004651 if (type & BTRFS_BLOCK_GROUP_RAID5) {
4652 raid_stripe_len = find_raid56_stripe_len(ndevs - 1,
4653 btrfs_super_stripesize(info->super_copy));
4654 data_stripes = num_stripes - 1;
4655 }
4656 if (type & BTRFS_BLOCK_GROUP_RAID6) {
4657 raid_stripe_len = find_raid56_stripe_len(ndevs - 2,
4658 btrfs_super_stripesize(info->super_copy));
4659 data_stripes = num_stripes - 2;
4660 }
Chris Mason86db2572013-02-20 16:23:40 -05004661
4662 /*
4663 * Use the number of data stripes to figure out how big this chunk
4664 * is really going to be in terms of logical address space,
4665 * and compare that answer with the max chunk size
4666 */
4667 if (stripe_size * data_stripes > max_chunk_size) {
4668 u64 mask = (1ULL << 24) - 1;
David Sterbab8b93ad2015-01-16 17:26:13 +01004669
4670 stripe_size = div_u64(max_chunk_size, data_stripes);
Chris Mason86db2572013-02-20 16:23:40 -05004671
4672 /* bump the answer up to a 16MB boundary */
4673 stripe_size = (stripe_size + mask) & ~mask;
4674
4675 /* but don't go higher than the limits we found
4676 * while searching for free extents
4677 */
4678 if (stripe_size > devices_info[ndevs-1].max_avail)
4679 stripe_size = devices_info[ndevs-1].max_avail;
4680 }
4681
David Sterbab8b93ad2015-01-16 17:26:13 +01004682 stripe_size = div_u64(stripe_size, dev_stripes);
Ilya Dryomov37db63a2012-04-13 17:05:08 +03004683
4684 /* align to BTRFS_STRIPE_LEN */
David Sterbab8b93ad2015-01-16 17:26:13 +01004685 stripe_size = div_u64(stripe_size, raid_stripe_len);
David Woodhouse53b381b2013-01-29 18:40:14 -05004686 stripe_size *= raid_stripe_len;
Arne Jansen73c5de02011-04-12 12:07:57 +02004687
Miao Xieb2117a32011-01-05 10:07:28 +00004688 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
4689 if (!map) {
4690 ret = -ENOMEM;
4691 goto error;
4692 }
4693 map->num_stripes = num_stripes;
Chris Mason9b3f68b2008-04-18 10:29:51 -04004694
Arne Jansen73c5de02011-04-12 12:07:57 +02004695 for (i = 0; i < ndevs; ++i) {
4696 for (j = 0; j < dev_stripes; ++j) {
4697 int s = i * dev_stripes + j;
4698 map->stripes[s].dev = devices_info[i].dev;
4699 map->stripes[s].physical = devices_info[i].dev_offset +
4700 j * stripe_size;
Chris Masona40a90a2008-04-18 11:55:51 -04004701 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004702 }
Chris Mason593060d2008-03-25 16:50:33 -04004703 map->sector_size = extent_root->sectorsize;
David Woodhouse53b381b2013-01-29 18:40:14 -05004704 map->stripe_len = raid_stripe_len;
4705 map->io_align = raid_stripe_len;
4706 map->io_width = raid_stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04004707 map->type = type;
Chris Mason321aecc2008-04-16 10:49:51 -04004708 map->sub_stripes = sub_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004709
David Woodhouse53b381b2013-01-29 18:40:14 -05004710 num_bytes = stripe_size * data_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04004711
Arne Jansen73c5de02011-04-12 12:07:57 +02004712 trace_btrfs_chunk_alloc(info->chunk_root, map, start, num_bytes);
liubo1abe9b82011-03-24 11:18:59 +00004713
David Sterba172ddd62011-04-21 00:48:27 +02004714 em = alloc_extent_map();
Yan Zheng2b820322008-11-17 21:11:30 -05004715 if (!em) {
Wang Shilong298a8f92014-06-19 10:42:52 +08004716 kfree(map);
Miao Xieb2117a32011-01-05 10:07:28 +00004717 ret = -ENOMEM;
4718 goto error;
Yan Zheng2b820322008-11-17 21:11:30 -05004719 }
Wang Shilong298a8f92014-06-19 10:42:52 +08004720 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Jeff Mahoney95617d62015-06-03 10:55:48 -04004721 em->map_lookup = map;
Yan Zheng2b820322008-11-17 21:11:30 -05004722 em->start = start;
Arne Jansen73c5de02011-04-12 12:07:57 +02004723 em->len = num_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04004724 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04004725 em->block_len = em->len;
Josef Bacik6df9a952013-06-27 13:22:46 -04004726 em->orig_block_len = stripe_size;
Chris Mason0b86a832008-03-24 15:01:56 -04004727
Chris Mason0b86a832008-03-24 15:01:56 -04004728 em_tree = &extent_root->fs_info->mapping_tree.map_tree;
Chris Mason890871b2009-09-02 16:24:52 -04004729 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004730 ret = add_extent_mapping(em_tree, em, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004731 if (!ret) {
4732 list_add_tail(&em->list, &trans->transaction->pending_chunks);
4733 atomic_inc(&em->refs);
4734 }
Chris Mason890871b2009-09-02 16:24:52 -04004735 write_unlock(&em_tree->lock);
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004736 if (ret) {
4737 free_extent_map(em);
Mark Fasheh1dd46022011-09-08 17:29:00 -07004738 goto error;
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004739 }
Yan Zheng2b820322008-11-17 21:11:30 -05004740
Josef Bacik04487482013-01-29 15:03:37 -05004741 ret = btrfs_make_block_group(trans, extent_root, 0, type,
4742 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4743 start, num_bytes);
Josef Bacik6df9a952013-06-27 13:22:46 -04004744 if (ret)
4745 goto error_del_extent;
Yan Zheng2b820322008-11-17 21:11:30 -05004746
Miao Xie7cc8e582014-09-03 21:35:38 +08004747 for (i = 0; i < map->num_stripes; i++) {
4748 num_bytes = map->stripes[i].dev->bytes_used + stripe_size;
4749 btrfs_device_set_bytes_used(map->stripes[i].dev, num_bytes);
4750 }
Miao Xie43530c42014-09-03 21:35:36 +08004751
Miao Xie1c116182014-09-03 21:35:37 +08004752 spin_lock(&extent_root->fs_info->free_chunk_lock);
4753 extent_root->fs_info->free_chunk_space -= (stripe_size *
4754 map->num_stripes);
4755 spin_unlock(&extent_root->fs_info->free_chunk_lock);
4756
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004757 free_extent_map(em);
David Woodhouse53b381b2013-01-29 18:40:14 -05004758 check_raid56_incompat_flag(extent_root->fs_info, type);
4759
Miao Xieb2117a32011-01-05 10:07:28 +00004760 kfree(devices_info);
Yan Zheng2b820322008-11-17 21:11:30 -05004761 return 0;
Miao Xieb2117a32011-01-05 10:07:28 +00004762
Josef Bacik6df9a952013-06-27 13:22:46 -04004763error_del_extent:
Josef Bacik0f5d42b2013-01-31 10:23:04 -05004764 write_lock(&em_tree->lock);
4765 remove_extent_mapping(em_tree, em);
4766 write_unlock(&em_tree->lock);
4767
4768 /* One for our allocation */
4769 free_extent_map(em);
4770 /* One for the tree reference */
4771 free_extent_map(em);
Filipe Manana495e64f2014-12-02 18:07:30 +00004772 /* One for the pending_chunks list reference */
4773 free_extent_map(em);
Miao Xieb2117a32011-01-05 10:07:28 +00004774error:
Miao Xieb2117a32011-01-05 10:07:28 +00004775 kfree(devices_info);
4776 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004777}
4778
Josef Bacik6df9a952013-06-27 13:22:46 -04004779int btrfs_finish_chunk_alloc(struct btrfs_trans_handle *trans,
Yan Zheng2b820322008-11-17 21:11:30 -05004780 struct btrfs_root *extent_root,
Josef Bacik6df9a952013-06-27 13:22:46 -04004781 u64 chunk_offset, u64 chunk_size)
Yan Zheng2b820322008-11-17 21:11:30 -05004782{
Yan Zheng2b820322008-11-17 21:11:30 -05004783 struct btrfs_key key;
4784 struct btrfs_root *chunk_root = extent_root->fs_info->chunk_root;
4785 struct btrfs_device *device;
4786 struct btrfs_chunk *chunk;
4787 struct btrfs_stripe *stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004788 struct extent_map_tree *em_tree;
4789 struct extent_map *em;
4790 struct map_lookup *map;
4791 size_t item_size;
4792 u64 dev_offset;
4793 u64 stripe_size;
4794 int i = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004795 int ret;
4796
Josef Bacik6df9a952013-06-27 13:22:46 -04004797 em_tree = &extent_root->fs_info->mapping_tree.map_tree;
4798 read_lock(&em_tree->lock);
4799 em = lookup_extent_mapping(em_tree, chunk_offset, chunk_size);
4800 read_unlock(&em_tree->lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004801
Josef Bacik6df9a952013-06-27 13:22:46 -04004802 if (!em) {
4803 btrfs_crit(extent_root->fs_info, "unable to find logical "
4804 "%Lu len %Lu", chunk_offset, chunk_size);
4805 return -EINVAL;
4806 }
4807
4808 if (em->start != chunk_offset || em->len != chunk_size) {
4809 btrfs_crit(extent_root->fs_info, "found a bad mapping, wanted"
David Sterba351fd352014-05-15 16:48:20 +02004810 " %Lu-%Lu, found %Lu-%Lu", chunk_offset,
Josef Bacik6df9a952013-06-27 13:22:46 -04004811 chunk_size, em->start, em->len);
4812 free_extent_map(em);
4813 return -EINVAL;
4814 }
4815
Jeff Mahoney95617d62015-06-03 10:55:48 -04004816 map = em->map_lookup;
Josef Bacik6df9a952013-06-27 13:22:46 -04004817 item_size = btrfs_chunk_item_size(map->num_stripes);
4818 stripe_size = em->orig_block_len;
4819
4820 chunk = kzalloc(item_size, GFP_NOFS);
4821 if (!chunk) {
4822 ret = -ENOMEM;
4823 goto out;
4824 }
4825
4826 for (i = 0; i < map->num_stripes; i++) {
4827 device = map->stripes[i].dev;
4828 dev_offset = map->stripes[i].physical;
4829
Yan Zheng2b820322008-11-17 21:11:30 -05004830 ret = btrfs_update_device(trans, device);
Mark Fasheh3acd3952011-09-08 17:40:01 -07004831 if (ret)
Josef Bacik6df9a952013-06-27 13:22:46 -04004832 goto out;
4833 ret = btrfs_alloc_dev_extent(trans, device,
4834 chunk_root->root_key.objectid,
4835 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4836 chunk_offset, dev_offset,
4837 stripe_size);
4838 if (ret)
4839 goto out;
Yan Zheng2b820322008-11-17 21:11:30 -05004840 }
4841
Yan Zheng2b820322008-11-17 21:11:30 -05004842 stripe = &chunk->stripe;
Josef Bacik6df9a952013-06-27 13:22:46 -04004843 for (i = 0; i < map->num_stripes; i++) {
4844 device = map->stripes[i].dev;
4845 dev_offset = map->stripes[i].physical;
Yan Zheng2b820322008-11-17 21:11:30 -05004846
4847 btrfs_set_stack_stripe_devid(stripe, device->devid);
4848 btrfs_set_stack_stripe_offset(stripe, dev_offset);
4849 memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
4850 stripe++;
Yan Zheng2b820322008-11-17 21:11:30 -05004851 }
4852
4853 btrfs_set_stack_chunk_length(chunk, chunk_size);
4854 btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
4855 btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len);
4856 btrfs_set_stack_chunk_type(chunk, map->type);
4857 btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes);
4858 btrfs_set_stack_chunk_io_align(chunk, map->stripe_len);
4859 btrfs_set_stack_chunk_io_width(chunk, map->stripe_len);
4860 btrfs_set_stack_chunk_sector_size(chunk, extent_root->sectorsize);
4861 btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes);
4862
4863 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
4864 key.type = BTRFS_CHUNK_ITEM_KEY;
4865 key.offset = chunk_offset;
4866
4867 ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004868 if (ret == 0 && map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
4869 /*
4870 * TODO: Cleanup of inserted chunk root in case of
4871 * failure.
4872 */
Li Zefan125ccb02011-12-08 15:07:24 +08004873 ret = btrfs_add_system_chunk(chunk_root, &key, chunk,
Yan Zheng2b820322008-11-17 21:11:30 -05004874 item_size);
Yan Zheng2b820322008-11-17 21:11:30 -05004875 }
liubo1abe9b82011-03-24 11:18:59 +00004876
Josef Bacik6df9a952013-06-27 13:22:46 -04004877out:
Yan Zheng2b820322008-11-17 21:11:30 -05004878 kfree(chunk);
Josef Bacik6df9a952013-06-27 13:22:46 -04004879 free_extent_map(em);
Mark Fasheh4ed1d162011-08-10 12:32:10 -07004880 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004881}
4882
4883/*
4884 * Chunk allocation falls into two parts. The first part does works
4885 * that make the new allocated chunk useable, but not do any operation
4886 * that modifies the chunk tree. The second part does the works that
4887 * require modifying the chunk tree. This division is important for the
4888 * bootstrap process of adding storage to a seed btrfs.
4889 */
4890int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
4891 struct btrfs_root *extent_root, u64 type)
4892{
4893 u64 chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05004894
Filipe Mananaa9629592015-05-18 19:11:40 +01004895 ASSERT(mutex_is_locked(&extent_root->fs_info->chunk_mutex));
Josef Bacik6df9a952013-06-27 13:22:46 -04004896 chunk_offset = find_next_chunk(extent_root->fs_info);
4897 return __btrfs_alloc_chunk(trans, extent_root, chunk_offset, type);
Yan Zheng2b820322008-11-17 21:11:30 -05004898}
4899
Chris Masond3977122009-01-05 21:25:51 -05004900static noinline int init_first_rw_device(struct btrfs_trans_handle *trans,
Yan Zheng2b820322008-11-17 21:11:30 -05004901 struct btrfs_root *root,
4902 struct btrfs_device *device)
4903{
4904 u64 chunk_offset;
4905 u64 sys_chunk_offset;
Yan Zheng2b820322008-11-17 21:11:30 -05004906 u64 alloc_profile;
Yan Zheng2b820322008-11-17 21:11:30 -05004907 struct btrfs_fs_info *fs_info = root->fs_info;
4908 struct btrfs_root *extent_root = fs_info->extent_root;
4909 int ret;
4910
Josef Bacik6df9a952013-06-27 13:22:46 -04004911 chunk_offset = find_next_chunk(fs_info);
Miao Xiede98ced2013-01-29 10:13:12 +00004912 alloc_profile = btrfs_get_alloc_profile(extent_root, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004913 ret = __btrfs_alloc_chunk(trans, extent_root, chunk_offset,
4914 alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004915 if (ret)
4916 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004917
Josef Bacik6df9a952013-06-27 13:22:46 -04004918 sys_chunk_offset = find_next_chunk(root->fs_info);
Miao Xiede98ced2013-01-29 10:13:12 +00004919 alloc_profile = btrfs_get_alloc_profile(fs_info->chunk_root, 0);
Josef Bacik6df9a952013-06-27 13:22:46 -04004920 ret = __btrfs_alloc_chunk(trans, extent_root, sys_chunk_offset,
4921 alloc_profile);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004922 return ret;
Yan Zheng2b820322008-11-17 21:11:30 -05004923}
4924
Miao Xied20983b2014-07-03 18:22:13 +08004925static inline int btrfs_chunk_max_errors(struct map_lookup *map)
4926{
4927 int max_errors;
4928
4929 if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
4930 BTRFS_BLOCK_GROUP_RAID10 |
4931 BTRFS_BLOCK_GROUP_RAID5 |
4932 BTRFS_BLOCK_GROUP_DUP)) {
4933 max_errors = 1;
4934 } else if (map->type & BTRFS_BLOCK_GROUP_RAID6) {
4935 max_errors = 2;
4936 } else {
4937 max_errors = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004938 }
4939
Miao Xied20983b2014-07-03 18:22:13 +08004940 return max_errors;
Yan Zheng2b820322008-11-17 21:11:30 -05004941}
4942
4943int btrfs_chunk_readonly(struct btrfs_root *root, u64 chunk_offset)
4944{
4945 struct extent_map *em;
4946 struct map_lookup *map;
4947 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
4948 int readonly = 0;
Miao Xied20983b2014-07-03 18:22:13 +08004949 int miss_ndevs = 0;
Yan Zheng2b820322008-11-17 21:11:30 -05004950 int i;
4951
Chris Mason890871b2009-09-02 16:24:52 -04004952 read_lock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004953 em = lookup_extent_mapping(&map_tree->map_tree, chunk_offset, 1);
Chris Mason890871b2009-09-02 16:24:52 -04004954 read_unlock(&map_tree->map_tree.lock);
Yan Zheng2b820322008-11-17 21:11:30 -05004955 if (!em)
4956 return 1;
4957
Jeff Mahoney95617d62015-06-03 10:55:48 -04004958 map = em->map_lookup;
Yan Zheng2b820322008-11-17 21:11:30 -05004959 for (i = 0; i < map->num_stripes; i++) {
Miao Xied20983b2014-07-03 18:22:13 +08004960 if (map->stripes[i].dev->missing) {
4961 miss_ndevs++;
4962 continue;
4963 }
4964
Yan Zheng2b820322008-11-17 21:11:30 -05004965 if (!map->stripes[i].dev->writeable) {
4966 readonly = 1;
Miao Xied20983b2014-07-03 18:22:13 +08004967 goto end;
Yan Zheng2b820322008-11-17 21:11:30 -05004968 }
4969 }
Miao Xied20983b2014-07-03 18:22:13 +08004970
4971 /*
4972 * If the number of missing devices is larger than max errors,
4973 * we can not write the data into that chunk successfully, so
4974 * set it readonly.
4975 */
4976 if (miss_ndevs > btrfs_chunk_max_errors(map))
4977 readonly = 1;
4978end:
Yan Zheng2b820322008-11-17 21:11:30 -05004979 free_extent_map(em);
4980 return readonly;
Chris Mason0b86a832008-03-24 15:01:56 -04004981}
4982
4983void btrfs_mapping_init(struct btrfs_mapping_tree *tree)
4984{
David Sterbaa8067e02011-04-21 00:34:43 +02004985 extent_map_tree_init(&tree->map_tree);
Chris Mason0b86a832008-03-24 15:01:56 -04004986}
4987
4988void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree)
4989{
4990 struct extent_map *em;
4991
Chris Masond3977122009-01-05 21:25:51 -05004992 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04004993 write_lock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04004994 em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1);
4995 if (em)
4996 remove_extent_mapping(&tree->map_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04004997 write_unlock(&tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04004998 if (!em)
4999 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005000 /* once for us */
5001 free_extent_map(em);
5002 /* once for the tree */
5003 free_extent_map(em);
5004 }
5005}
5006
Stefan Behrens5d964052012-11-05 14:59:07 +01005007int btrfs_num_copies(struct btrfs_fs_info *fs_info, u64 logical, u64 len)
Chris Masonf1885912008-04-09 16:28:12 -04005008{
Stefan Behrens5d964052012-11-05 14:59:07 +01005009 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Masonf1885912008-04-09 16:28:12 -04005010 struct extent_map *em;
5011 struct map_lookup *map;
5012 struct extent_map_tree *em_tree = &map_tree->map_tree;
5013 int ret;
5014
Chris Mason890871b2009-09-02 16:24:52 -04005015 read_lock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04005016 em = lookup_extent_mapping(em_tree, logical, len);
Chris Mason890871b2009-09-02 16:24:52 -04005017 read_unlock(&em_tree->lock);
Chris Masonf1885912008-04-09 16:28:12 -04005018
Josef Bacikfb7669b2013-04-23 10:53:18 -04005019 /*
5020 * We could return errors for these cases, but that could get ugly and
5021 * we'd probably do the same thing which is just not do anything else
5022 * and exit, so return 1 so the callers don't try to use other copies.
5023 */
5024 if (!em) {
David Sterba351fd352014-05-15 16:48:20 +02005025 btrfs_crit(fs_info, "No mapping for %Lu-%Lu", logical,
Josef Bacikfb7669b2013-04-23 10:53:18 -04005026 logical+len);
5027 return 1;
5028 }
5029
5030 if (em->start > logical || em->start + em->len < logical) {
David Sterbaccf39f92013-07-11 15:41:11 +02005031 btrfs_crit(fs_info, "Invalid mapping for %Lu-%Lu, got "
David Sterba351fd352014-05-15 16:48:20 +02005032 "%Lu-%Lu", logical, logical+len, em->start,
Josef Bacikfb7669b2013-04-23 10:53:18 -04005033 em->start + em->len);
Liu Bo7d3d1742013-09-29 10:33:16 +08005034 free_extent_map(em);
Josef Bacikfb7669b2013-04-23 10:53:18 -04005035 return 1;
5036 }
5037
Jeff Mahoney95617d62015-06-03 10:55:48 -04005038 map = em->map_lookup;
Chris Masonf1885912008-04-09 16:28:12 -04005039 if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1))
5040 ret = map->num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005041 else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
5042 ret = map->sub_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05005043 else if (map->type & BTRFS_BLOCK_GROUP_RAID5)
5044 ret = 2;
5045 else if (map->type & BTRFS_BLOCK_GROUP_RAID6)
5046 ret = 3;
Chris Masonf1885912008-04-09 16:28:12 -04005047 else
5048 ret = 1;
5049 free_extent_map(em);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005050
5051 btrfs_dev_replace_lock(&fs_info->dev_replace);
5052 if (btrfs_dev_replace_is_ongoing(&fs_info->dev_replace))
5053 ret++;
5054 btrfs_dev_replace_unlock(&fs_info->dev_replace);
5055
Chris Masonf1885912008-04-09 16:28:12 -04005056 return ret;
5057}
5058
David Woodhouse53b381b2013-01-29 18:40:14 -05005059unsigned long btrfs_full_stripe_len(struct btrfs_root *root,
5060 struct btrfs_mapping_tree *map_tree,
5061 u64 logical)
5062{
5063 struct extent_map *em;
5064 struct map_lookup *map;
5065 struct extent_map_tree *em_tree = &map_tree->map_tree;
5066 unsigned long len = root->sectorsize;
5067
5068 read_lock(&em_tree->lock);
5069 em = lookup_extent_mapping(em_tree, logical, len);
5070 read_unlock(&em_tree->lock);
5071 BUG_ON(!em);
5072
5073 BUG_ON(em->start > logical || em->start + em->len < logical);
Jeff Mahoney95617d62015-06-03 10:55:48 -04005074 map = em->map_lookup;
Zhao Leiffe2d202015-01-20 15:11:44 +08005075 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
David Woodhouse53b381b2013-01-29 18:40:14 -05005076 len = map->stripe_len * nr_data_stripes(map);
David Woodhouse53b381b2013-01-29 18:40:14 -05005077 free_extent_map(em);
5078 return len;
5079}
5080
5081int btrfs_is_parity_mirror(struct btrfs_mapping_tree *map_tree,
5082 u64 logical, u64 len, int mirror_num)
5083{
5084 struct extent_map *em;
5085 struct map_lookup *map;
5086 struct extent_map_tree *em_tree = &map_tree->map_tree;
5087 int ret = 0;
5088
5089 read_lock(&em_tree->lock);
5090 em = lookup_extent_mapping(em_tree, logical, len);
5091 read_unlock(&em_tree->lock);
5092 BUG_ON(!em);
5093
5094 BUG_ON(em->start > logical || em->start + em->len < logical);
Jeff Mahoney95617d62015-06-03 10:55:48 -04005095 map = em->map_lookup;
Zhao Leiffe2d202015-01-20 15:11:44 +08005096 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK)
David Woodhouse53b381b2013-01-29 18:40:14 -05005097 ret = 1;
5098 free_extent_map(em);
5099 return ret;
5100}
5101
Stefan Behrens30d98612012-11-06 14:52:18 +01005102static int find_live_mirror(struct btrfs_fs_info *fs_info,
5103 struct map_lookup *map, int first, int num,
5104 int optimal, int dev_replace_is_ongoing)
Chris Masondfe25022008-05-13 13:46:40 -04005105{
5106 int i;
Stefan Behrens30d98612012-11-06 14:52:18 +01005107 int tolerance;
5108 struct btrfs_device *srcdev;
5109
5110 if (dev_replace_is_ongoing &&
5111 fs_info->dev_replace.cont_reading_from_srcdev_mode ==
5112 BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID)
5113 srcdev = fs_info->dev_replace.srcdev;
5114 else
5115 srcdev = NULL;
5116
5117 /*
5118 * try to avoid the drive that is the source drive for a
5119 * dev-replace procedure, only choose it if no other non-missing
5120 * mirror is available
5121 */
5122 for (tolerance = 0; tolerance < 2; tolerance++) {
5123 if (map->stripes[optimal].dev->bdev &&
5124 (tolerance || map->stripes[optimal].dev != srcdev))
5125 return optimal;
5126 for (i = first; i < first + num; i++) {
5127 if (map->stripes[i].dev->bdev &&
5128 (tolerance || map->stripes[i].dev != srcdev))
5129 return i;
5130 }
Chris Masondfe25022008-05-13 13:46:40 -04005131 }
Stefan Behrens30d98612012-11-06 14:52:18 +01005132
Chris Masondfe25022008-05-13 13:46:40 -04005133 /* we couldn't find one that doesn't fail. Just return something
5134 * and the io error handling code will clean up eventually
5135 */
5136 return optimal;
5137}
5138
David Woodhouse53b381b2013-01-29 18:40:14 -05005139static inline int parity_smaller(u64 a, u64 b)
5140{
5141 return a > b;
5142}
5143
5144/* Bubble-sort the stripe set to put the parity/syndrome stripes last */
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005145static void sort_parity_stripes(struct btrfs_bio *bbio, int num_stripes)
David Woodhouse53b381b2013-01-29 18:40:14 -05005146{
5147 struct btrfs_bio_stripe s;
5148 int i;
5149 u64 l;
5150 int again = 1;
5151
5152 while (again) {
5153 again = 0;
Zhao Leicc7539e2015-01-20 15:11:32 +08005154 for (i = 0; i < num_stripes - 1; i++) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005155 if (parity_smaller(bbio->raid_map[i],
5156 bbio->raid_map[i+1])) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005157 s = bbio->stripes[i];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005158 l = bbio->raid_map[i];
David Woodhouse53b381b2013-01-29 18:40:14 -05005159 bbio->stripes[i] = bbio->stripes[i+1];
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005160 bbio->raid_map[i] = bbio->raid_map[i+1];
David Woodhouse53b381b2013-01-29 18:40:14 -05005161 bbio->stripes[i+1] = s;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005162 bbio->raid_map[i+1] = l;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005163
David Woodhouse53b381b2013-01-29 18:40:14 -05005164 again = 1;
5165 }
5166 }
5167 }
5168}
5169
Zhao Lei6e9606d2015-01-20 15:11:34 +08005170static struct btrfs_bio *alloc_btrfs_bio(int total_stripes, int real_stripes)
5171{
5172 struct btrfs_bio *bbio = kzalloc(
Chris Masone57cf212015-02-19 17:51:39 -08005173 /* the size of the btrfs_bio */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005174 sizeof(struct btrfs_bio) +
Chris Masone57cf212015-02-19 17:51:39 -08005175 /* plus the variable array for the stripes */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005176 sizeof(struct btrfs_bio_stripe) * (total_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005177 /* plus the variable array for the tgt dev */
Zhao Lei6e9606d2015-01-20 15:11:34 +08005178 sizeof(int) * (real_stripes) +
Chris Masone57cf212015-02-19 17:51:39 -08005179 /*
5180 * plus the raid_map, which includes both the tgt dev
5181 * and the stripes
5182 */
5183 sizeof(u64) * (total_stripes),
Michal Hocko277fb5f2015-08-19 14:17:41 +02005184 GFP_NOFS|__GFP_NOFAIL);
Zhao Lei6e9606d2015-01-20 15:11:34 +08005185
5186 atomic_set(&bbio->error, 0);
5187 atomic_set(&bbio->refs, 1);
5188
5189 return bbio;
5190}
5191
5192void btrfs_get_bbio(struct btrfs_bio *bbio)
5193{
5194 WARN_ON(!atomic_read(&bbio->refs));
5195 atomic_inc(&bbio->refs);
5196}
5197
5198void btrfs_put_bbio(struct btrfs_bio *bbio)
5199{
5200 if (!bbio)
5201 return;
5202 if (atomic_dec_and_test(&bbio->refs))
5203 kfree(bbio);
5204}
5205
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005206static int __btrfs_map_block(struct btrfs_fs_info *fs_info, int rw,
Chris Masonf2d8d742008-04-21 10:03:05 -04005207 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005208 struct btrfs_bio **bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005209 int mirror_num, int need_raid_map)
Chris Mason0b86a832008-03-24 15:01:56 -04005210{
5211 struct extent_map *em;
5212 struct map_lookup *map;
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005213 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Chris Mason0b86a832008-03-24 15:01:56 -04005214 struct extent_map_tree *em_tree = &map_tree->map_tree;
5215 u64 offset;
Chris Mason593060d2008-03-25 16:50:33 -04005216 u64 stripe_offset;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005217 u64 stripe_end_offset;
Chris Mason593060d2008-03-25 16:50:33 -04005218 u64 stripe_nr;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005219 u64 stripe_nr_orig;
5220 u64 stripe_nr_end;
David Woodhouse53b381b2013-01-29 18:40:14 -05005221 u64 stripe_len;
David Sterba9d644a62015-02-20 18:42:11 +01005222 u32 stripe_index;
Chris Masoncea9e442008-04-09 16:28:12 -04005223 int i;
Li Zefande11cc12011-12-01 12:55:47 +08005224 int ret = 0;
Chris Masonf2d8d742008-04-21 10:03:05 -04005225 int num_stripes;
Chris Masona236aed2008-04-29 09:38:00 -04005226 int max_errors = 0;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005227 int tgtdev_indexes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005228 struct btrfs_bio *bbio = NULL;
Stefan Behrens472262f2012-11-06 14:43:46 +01005229 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
5230 int dev_replace_is_ongoing = 0;
5231 int num_alloc_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005232 int patch_the_first_stripe_for_dev_replace = 0;
5233 u64 physical_to_patch_in_first_stripe = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05005234 u64 raid56_full_stripe_start = (u64)-1;
Chris Mason0b86a832008-03-24 15:01:56 -04005235
Chris Mason890871b2009-09-02 16:24:52 -04005236 read_lock(&em_tree->lock);
Chris Mason0b86a832008-03-24 15:01:56 -04005237 em = lookup_extent_mapping(em_tree, logical, *length);
Chris Mason890871b2009-09-02 16:24:52 -04005238 read_unlock(&em_tree->lock);
Chris Masonf2d8d742008-04-21 10:03:05 -04005239
Chris Mason3b951512008-04-17 11:29:12 -04005240 if (!em) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005241 btrfs_crit(fs_info, "unable to find logical %llu len %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005242 logical, *length);
Josef Bacik9bb91872013-04-19 23:45:33 -04005243 return -EINVAL;
Chris Mason3b951512008-04-17 11:29:12 -04005244 }
Chris Mason0b86a832008-03-24 15:01:56 -04005245
Josef Bacik9bb91872013-04-19 23:45:33 -04005246 if (em->start > logical || em->start + em->len < logical) {
5247 btrfs_crit(fs_info, "found a bad mapping, wanted %Lu, "
David Sterba351fd352014-05-15 16:48:20 +02005248 "found %Lu-%Lu", logical, em->start,
Josef Bacik9bb91872013-04-19 23:45:33 -04005249 em->start + em->len);
Liu Bo7d3d1742013-09-29 10:33:16 +08005250 free_extent_map(em);
Josef Bacik9bb91872013-04-19 23:45:33 -04005251 return -EINVAL;
5252 }
5253
Jeff Mahoney95617d62015-06-03 10:55:48 -04005254 map = em->map_lookup;
Chris Mason0b86a832008-03-24 15:01:56 -04005255 offset = logical - em->start;
Chris Mason593060d2008-03-25 16:50:33 -04005256
David Woodhouse53b381b2013-01-29 18:40:14 -05005257 stripe_len = map->stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04005258 stripe_nr = offset;
5259 /*
5260 * stripe_nr counts the total number of stripes we have to stride
5261 * to get to this block
5262 */
David Sterba47c57132015-02-20 18:43:47 +01005263 stripe_nr = div64_u64(stripe_nr, stripe_len);
Chris Mason593060d2008-03-25 16:50:33 -04005264
David Woodhouse53b381b2013-01-29 18:40:14 -05005265 stripe_offset = stripe_nr * stripe_len;
Chris Mason593060d2008-03-25 16:50:33 -04005266 BUG_ON(offset < stripe_offset);
5267
5268 /* stripe_offset is the offset of this block in its stripe*/
5269 stripe_offset = offset - stripe_offset;
5270
David Woodhouse53b381b2013-01-29 18:40:14 -05005271 /* if we're here for raid56, we need to know the stripe aligned start */
Zhao Leiffe2d202015-01-20 15:11:44 +08005272 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005273 unsigned long full_stripe_len = stripe_len * nr_data_stripes(map);
5274 raid56_full_stripe_start = offset;
5275
5276 /* allow a write of a full stripe, but make sure we don't
5277 * allow straddling of stripes
5278 */
David Sterba47c57132015-02-20 18:43:47 +01005279 raid56_full_stripe_start = div64_u64(raid56_full_stripe_start,
5280 full_stripe_len);
David Woodhouse53b381b2013-01-29 18:40:14 -05005281 raid56_full_stripe_start *= full_stripe_len;
5282 }
5283
5284 if (rw & REQ_DISCARD) {
5285 /* we don't discard raid56 yet */
Zhao Leiffe2d202015-01-20 15:11:44 +08005286 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005287 ret = -EOPNOTSUPP;
5288 goto out;
5289 }
Li Dongyangfce3bb92011-03-24 10:24:26 +00005290 *length = min_t(u64, em->len - offset, *length);
David Woodhouse53b381b2013-01-29 18:40:14 -05005291 } else if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
5292 u64 max_len;
5293 /* For writes to RAID[56], allow a full stripeset across all disks.
5294 For other RAID types and for RAID[56] reads, just allow a single
5295 stripe (on a single disk). */
Zhao Leiffe2d202015-01-20 15:11:44 +08005296 if ((map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
David Woodhouse53b381b2013-01-29 18:40:14 -05005297 (rw & REQ_WRITE)) {
5298 max_len = stripe_len * nr_data_stripes(map) -
5299 (offset - raid56_full_stripe_start);
5300 } else {
5301 /* we limit the length of each bio to what fits in a stripe */
5302 max_len = stripe_len - stripe_offset;
5303 }
5304 *length = min_t(u64, em->len - offset, max_len);
Chris Masoncea9e442008-04-09 16:28:12 -04005305 } else {
5306 *length = em->len - offset;
5307 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005308
David Woodhouse53b381b2013-01-29 18:40:14 -05005309 /* This is for when we're called from btrfs_merge_bio_hook() and all
5310 it cares about is the length */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005311 if (!bbio_ret)
Chris Masoncea9e442008-04-09 16:28:12 -04005312 goto out;
5313
Stefan Behrens472262f2012-11-06 14:43:46 +01005314 btrfs_dev_replace_lock(dev_replace);
5315 dev_replace_is_ongoing = btrfs_dev_replace_is_ongoing(dev_replace);
5316 if (!dev_replace_is_ongoing)
5317 btrfs_dev_replace_unlock(dev_replace);
5318
Stefan Behrensad6d6202012-11-06 15:06:47 +01005319 if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 &&
5320 !(rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)) &&
5321 dev_replace->tgtdev != NULL) {
5322 /*
5323 * in dev-replace case, for repair case (that's the only
5324 * case where the mirror is selected explicitly when
5325 * calling btrfs_map_block), blocks left of the left cursor
5326 * can also be read from the target drive.
5327 * For REQ_GET_READ_MIRRORS, the target drive is added as
5328 * the last one to the array of stripes. For READ, it also
5329 * needs to be supported using the same mirror number.
5330 * If the requested block is not left of the left cursor,
5331 * EIO is returned. This can happen because btrfs_num_copies()
5332 * returns one more in the dev-replace case.
5333 */
5334 u64 tmp_length = *length;
5335 struct btrfs_bio *tmp_bbio = NULL;
5336 int tmp_num_stripes;
5337 u64 srcdev_devid = dev_replace->srcdev->devid;
5338 int index_srcdev = 0;
5339 int found = 0;
5340 u64 physical_of_found = 0;
5341
5342 ret = __btrfs_map_block(fs_info, REQ_GET_READ_MIRRORS,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005343 logical, &tmp_length, &tmp_bbio, 0, 0);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005344 if (ret) {
5345 WARN_ON(tmp_bbio != NULL);
5346 goto out;
5347 }
5348
5349 tmp_num_stripes = tmp_bbio->num_stripes;
5350 if (mirror_num > tmp_num_stripes) {
5351 /*
5352 * REQ_GET_READ_MIRRORS does not contain this
5353 * mirror, that means that the requested area
5354 * is not left of the left cursor
5355 */
5356 ret = -EIO;
Zhao Lei6e9606d2015-01-20 15:11:34 +08005357 btrfs_put_bbio(tmp_bbio);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005358 goto out;
5359 }
5360
5361 /*
5362 * process the rest of the function using the mirror_num
5363 * of the source drive. Therefore look it up first.
5364 * At the end, patch the device pointer to the one of the
5365 * target drive.
5366 */
5367 for (i = 0; i < tmp_num_stripes; i++) {
5368 if (tmp_bbio->stripes[i].dev->devid == srcdev_devid) {
5369 /*
5370 * In case of DUP, in order to keep it
5371 * simple, only add the mirror with the
5372 * lowest physical address
5373 */
5374 if (found &&
5375 physical_of_found <=
5376 tmp_bbio->stripes[i].physical)
5377 continue;
5378 index_srcdev = i;
5379 found = 1;
5380 physical_of_found =
5381 tmp_bbio->stripes[i].physical;
5382 }
5383 }
5384
5385 if (found) {
5386 mirror_num = index_srcdev + 1;
5387 patch_the_first_stripe_for_dev_replace = 1;
5388 physical_to_patch_in_first_stripe = physical_of_found;
5389 } else {
5390 WARN_ON(1);
5391 ret = -EIO;
Zhao Lei6e9606d2015-01-20 15:11:34 +08005392 btrfs_put_bbio(tmp_bbio);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005393 goto out;
5394 }
5395
Zhao Lei6e9606d2015-01-20 15:11:34 +08005396 btrfs_put_bbio(tmp_bbio);
Stefan Behrensad6d6202012-11-06 15:06:47 +01005397 } else if (mirror_num > map->num_stripes) {
5398 mirror_num = 0;
5399 }
5400
Chris Masonf2d8d742008-04-21 10:03:05 -04005401 num_stripes = 1;
Chris Masoncea9e442008-04-09 16:28:12 -04005402 stripe_index = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005403 stripe_nr_orig = stripe_nr;
Qu Wenruofda28322013-02-26 08:10:22 +00005404 stripe_nr_end = ALIGN(offset + *length, map->stripe_len);
David Sterbab8b93ad2015-01-16 17:26:13 +01005405 stripe_nr_end = div_u64(stripe_nr_end, map->stripe_len);
Li Dongyangfce3bb92011-03-24 10:24:26 +00005406 stripe_end_offset = stripe_nr_end * map->stripe_len -
5407 (offset + *length);
David Woodhouse53b381b2013-01-29 18:40:14 -05005408
Li Dongyangfce3bb92011-03-24 10:24:26 +00005409 if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
5410 if (rw & REQ_DISCARD)
5411 num_stripes = min_t(u64, map->num_stripes,
5412 stripe_nr_end - stripe_nr_orig);
David Sterba47c57132015-02-20 18:43:47 +01005413 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5414 &stripe_index);
Miao Xie28e1cc72014-09-12 18:44:02 +08005415 if (!(rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)))
5416 mirror_num = 1;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005417 } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01005418 if (rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS))
Chris Masonf2d8d742008-04-21 10:03:05 -04005419 num_stripes = map->num_stripes;
Chris Mason2fff7342008-04-29 14:12:09 -04005420 else if (mirror_num)
Chris Masonf1885912008-04-09 16:28:12 -04005421 stripe_index = mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005422 else {
Stefan Behrens30d98612012-11-06 14:52:18 +01005423 stripe_index = find_live_mirror(fs_info, map, 0,
Chris Masondfe25022008-05-13 13:46:40 -04005424 map->num_stripes,
Stefan Behrens30d98612012-11-06 14:52:18 +01005425 current->pid % map->num_stripes,
5426 dev_replace_is_ongoing);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005427 mirror_num = stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005428 }
Chris Mason2fff7342008-04-29 14:12:09 -04005429
Chris Mason611f0e02008-04-03 16:29:03 -04005430 } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01005431 if (rw & (REQ_WRITE | REQ_DISCARD | REQ_GET_READ_MIRRORS)) {
Chris Masonf2d8d742008-04-21 10:03:05 -04005432 num_stripes = map->num_stripes;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005433 } else if (mirror_num) {
Chris Masonf1885912008-04-09 16:28:12 -04005434 stripe_index = mirror_num - 1;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005435 } else {
5436 mirror_num = 1;
5437 }
Chris Mason2fff7342008-04-29 14:12:09 -04005438
Chris Mason321aecc2008-04-16 10:49:51 -04005439 } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
David Sterba9d644a62015-02-20 18:42:11 +01005440 u32 factor = map->num_stripes / map->sub_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -04005441
David Sterba47c57132015-02-20 18:43:47 +01005442 stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index);
Chris Mason321aecc2008-04-16 10:49:51 -04005443 stripe_index *= map->sub_stripes;
5444
Stefan Behrens29a8d9a2012-11-06 14:16:24 +01005445 if (rw & (REQ_WRITE | REQ_GET_READ_MIRRORS))
Chris Masonf2d8d742008-04-21 10:03:05 -04005446 num_stripes = map->sub_stripes;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005447 else if (rw & REQ_DISCARD)
5448 num_stripes = min_t(u64, map->sub_stripes *
5449 (stripe_nr_end - stripe_nr_orig),
5450 map->num_stripes);
Chris Mason321aecc2008-04-16 10:49:51 -04005451 else if (mirror_num)
5452 stripe_index += mirror_num - 1;
Chris Masondfe25022008-05-13 13:46:40 -04005453 else {
Jan Schmidt3e743172012-04-27 12:41:45 -04005454 int old_stripe_index = stripe_index;
Stefan Behrens30d98612012-11-06 14:52:18 +01005455 stripe_index = find_live_mirror(fs_info, map,
5456 stripe_index,
Chris Masondfe25022008-05-13 13:46:40 -04005457 map->sub_stripes, stripe_index +
Stefan Behrens30d98612012-11-06 14:52:18 +01005458 current->pid % map->sub_stripes,
5459 dev_replace_is_ongoing);
Jan Schmidt3e743172012-04-27 12:41:45 -04005460 mirror_num = stripe_index - old_stripe_index + 1;
Chris Masondfe25022008-05-13 13:46:40 -04005461 }
David Woodhouse53b381b2013-01-29 18:40:14 -05005462
Zhao Leiffe2d202015-01-20 15:11:44 +08005463 } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005464 if (need_raid_map &&
Miao Xieaf8e2d12014-10-23 14:42:50 +08005465 ((rw & (REQ_WRITE | REQ_GET_READ_MIRRORS)) ||
5466 mirror_num > 1)) {
David Woodhouse53b381b2013-01-29 18:40:14 -05005467 /* push stripe_nr back to the start of the full stripe */
David Sterbab8b93ad2015-01-16 17:26:13 +01005468 stripe_nr = div_u64(raid56_full_stripe_start,
5469 stripe_len * nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05005470
5471 /* RAID[56] write or recovery. Return all stripes */
5472 num_stripes = map->num_stripes;
5473 max_errors = nr_parity_stripes(map);
5474
David Woodhouse53b381b2013-01-29 18:40:14 -05005475 *length = map->stripe_len;
5476 stripe_index = 0;
5477 stripe_offset = 0;
5478 } else {
5479 /*
5480 * Mirror #0 or #1 means the original data block.
5481 * Mirror #2 is RAID5 parity block.
5482 * Mirror #3 is RAID6 Q block.
5483 */
David Sterba47c57132015-02-20 18:43:47 +01005484 stripe_nr = div_u64_rem(stripe_nr,
5485 nr_data_stripes(map), &stripe_index);
David Woodhouse53b381b2013-01-29 18:40:14 -05005486 if (mirror_num > 1)
5487 stripe_index = nr_data_stripes(map) +
5488 mirror_num - 2;
5489
5490 /* We distribute the parity blocks across stripes */
David Sterba47c57132015-02-20 18:43:47 +01005491 div_u64_rem(stripe_nr + stripe_index, map->num_stripes,
5492 &stripe_index);
Miao Xie28e1cc72014-09-12 18:44:02 +08005493 if (!(rw & (REQ_WRITE | REQ_DISCARD |
5494 REQ_GET_READ_MIRRORS)) && mirror_num <= 1)
5495 mirror_num = 1;
David Woodhouse53b381b2013-01-29 18:40:14 -05005496 }
Chris Mason8790d502008-04-03 16:29:03 -04005497 } else {
5498 /*
David Sterba47c57132015-02-20 18:43:47 +01005499 * after this, stripe_nr is the number of stripes on this
5500 * device we have to walk to find the data, and stripe_index is
5501 * the number of our device in the stripe array
Chris Mason8790d502008-04-03 16:29:03 -04005502 */
David Sterba47c57132015-02-20 18:43:47 +01005503 stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
5504 &stripe_index);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005505 mirror_num = stripe_index + 1;
Chris Mason8790d502008-04-03 16:29:03 -04005506 }
Chris Mason593060d2008-03-25 16:50:33 -04005507 BUG_ON(stripe_index >= map->num_stripes);
Chris Mason593060d2008-03-25 16:50:33 -04005508
Stefan Behrens472262f2012-11-06 14:43:46 +01005509 num_alloc_stripes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005510 if (dev_replace_is_ongoing) {
5511 if (rw & (REQ_WRITE | REQ_DISCARD))
5512 num_alloc_stripes <<= 1;
5513 if (rw & REQ_GET_READ_MIRRORS)
5514 num_alloc_stripes++;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005515 tgtdev_indexes = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005516 }
Miao Xie2c8cdd62014-11-14 16:06:25 +08005517
Zhao Lei6e9606d2015-01-20 15:11:34 +08005518 bbio = alloc_btrfs_bio(num_alloc_stripes, tgtdev_indexes);
Li Zefande11cc12011-12-01 12:55:47 +08005519 if (!bbio) {
5520 ret = -ENOMEM;
5521 goto out;
5522 }
Miao Xie2c8cdd62014-11-14 16:06:25 +08005523 if (dev_replace_is_ongoing)
5524 bbio->tgtdev_map = (int *)(bbio->stripes + num_alloc_stripes);
Li Zefande11cc12011-12-01 12:55:47 +08005525
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005526 /* build raid_map */
Zhao Leiffe2d202015-01-20 15:11:44 +08005527 if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK &&
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005528 need_raid_map && ((rw & (REQ_WRITE | REQ_GET_READ_MIRRORS)) ||
5529 mirror_num > 1)) {
5530 u64 tmp;
David Sterba9d644a62015-02-20 18:42:11 +01005531 unsigned rot;
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005532
5533 bbio->raid_map = (u64 *)((void *)bbio->stripes +
5534 sizeof(struct btrfs_bio_stripe) *
5535 num_alloc_stripes +
5536 sizeof(int) * tgtdev_indexes);
5537
5538 /* Work out the disk rotation on this stripe-set */
David Sterba47c57132015-02-20 18:43:47 +01005539 div_u64_rem(stripe_nr, num_stripes, &rot);
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005540
5541 /* Fill in the logical address of each stripe */
5542 tmp = stripe_nr * nr_data_stripes(map);
5543 for (i = 0; i < nr_data_stripes(map); i++)
5544 bbio->raid_map[(i+rot) % num_stripes] =
5545 em->start + (tmp + i) * map->stripe_len;
5546
5547 bbio->raid_map[(i+rot) % map->num_stripes] = RAID5_P_STRIPE;
5548 if (map->type & BTRFS_BLOCK_GROUP_RAID6)
5549 bbio->raid_map[(i+rot+1) % num_stripes] =
5550 RAID6_Q_STRIPE;
5551 }
5552
Li Dongyangfce3bb92011-03-24 10:24:26 +00005553 if (rw & REQ_DISCARD) {
David Sterba9d644a62015-02-20 18:42:11 +01005554 u32 factor = 0;
5555 u32 sub_stripes = 0;
Li Zefanec9ef7a2011-12-01 14:06:42 +08005556 u64 stripes_per_dev = 0;
5557 u32 remaining_stripes = 0;
Liu Bob89203f2012-04-12 16:03:56 -04005558 u32 last_stripe = 0;
Li Zefanec9ef7a2011-12-01 14:06:42 +08005559
5560 if (map->type &
5561 (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID10)) {
5562 if (map->type & BTRFS_BLOCK_GROUP_RAID0)
5563 sub_stripes = 1;
5564 else
5565 sub_stripes = map->sub_stripes;
5566
5567 factor = map->num_stripes / sub_stripes;
5568 stripes_per_dev = div_u64_rem(stripe_nr_end -
5569 stripe_nr_orig,
5570 factor,
5571 &remaining_stripes);
Liu Bob89203f2012-04-12 16:03:56 -04005572 div_u64_rem(stripe_nr_end - 1, factor, &last_stripe);
5573 last_stripe *= sub_stripes;
Li Zefanec9ef7a2011-12-01 14:06:42 +08005574 }
5575
Li Dongyangfce3bb92011-03-24 10:24:26 +00005576 for (i = 0; i < num_stripes; i++) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005577 bbio->stripes[i].physical =
Chris Masonf2d8d742008-04-21 10:03:05 -04005578 map->stripes[stripe_index].physical +
5579 stripe_offset + stripe_nr * map->stripe_len;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005580 bbio->stripes[i].dev = map->stripes[stripe_index].dev;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005581
Li Zefanec9ef7a2011-12-01 14:06:42 +08005582 if (map->type & (BTRFS_BLOCK_GROUP_RAID0 |
5583 BTRFS_BLOCK_GROUP_RAID10)) {
5584 bbio->stripes[i].length = stripes_per_dev *
5585 map->stripe_len;
Liu Bob89203f2012-04-12 16:03:56 -04005586
Li Zefanec9ef7a2011-12-01 14:06:42 +08005587 if (i / sub_stripes < remaining_stripes)
5588 bbio->stripes[i].length +=
5589 map->stripe_len;
Liu Bob89203f2012-04-12 16:03:56 -04005590
5591 /*
5592 * Special for the first stripe and
5593 * the last stripe:
5594 *
5595 * |-------|...|-------|
5596 * |----------|
5597 * off end_off
5598 */
Li Zefanec9ef7a2011-12-01 14:06:42 +08005599 if (i < sub_stripes)
Jan Schmidta1d3c472011-08-04 17:15:33 +02005600 bbio->stripes[i].length -=
Li Dongyangfce3bb92011-03-24 10:24:26 +00005601 stripe_offset;
Liu Bob89203f2012-04-12 16:03:56 -04005602
5603 if (stripe_index >= last_stripe &&
5604 stripe_index <= (last_stripe +
5605 sub_stripes - 1))
Li Zefanec9ef7a2011-12-01 14:06:42 +08005606 bbio->stripes[i].length -=
5607 stripe_end_offset;
Liu Bob89203f2012-04-12 16:03:56 -04005608
Li Zefanec9ef7a2011-12-01 14:06:42 +08005609 if (i == sub_stripes - 1)
Li Dongyangfce3bb92011-03-24 10:24:26 +00005610 stripe_offset = 0;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005611 } else
Jan Schmidta1d3c472011-08-04 17:15:33 +02005612 bbio->stripes[i].length = *length;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005613
5614 stripe_index++;
5615 if (stripe_index == map->num_stripes) {
5616 /* This could only happen for RAID0/10 */
5617 stripe_index = 0;
5618 stripe_nr++;
5619 }
Chris Masonf2d8d742008-04-21 10:03:05 -04005620 }
Li Dongyangfce3bb92011-03-24 10:24:26 +00005621 } else {
5622 for (i = 0; i < num_stripes; i++) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005623 bbio->stripes[i].physical =
Linus Torvalds212a17a2011-03-28 15:31:05 -07005624 map->stripes[stripe_index].physical +
5625 stripe_offset +
5626 stripe_nr * map->stripe_len;
Jan Schmidta1d3c472011-08-04 17:15:33 +02005627 bbio->stripes[i].dev =
Linus Torvalds212a17a2011-03-28 15:31:05 -07005628 map->stripes[stripe_index].dev;
Li Dongyangfce3bb92011-03-24 10:24:26 +00005629 stripe_index++;
5630 }
Chris Mason593060d2008-03-25 16:50:33 -04005631 }
Li Zefande11cc12011-12-01 12:55:47 +08005632
Miao Xied20983b2014-07-03 18:22:13 +08005633 if (rw & (REQ_WRITE | REQ_GET_READ_MIRRORS))
5634 max_errors = btrfs_chunk_max_errors(map);
Li Zefande11cc12011-12-01 12:55:47 +08005635
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005636 if (bbio->raid_map)
5637 sort_parity_stripes(bbio, num_stripes);
Zhao Leicc7539e2015-01-20 15:11:32 +08005638
Miao Xie2c8cdd62014-11-14 16:06:25 +08005639 tgtdev_indexes = 0;
Stefan Behrens472262f2012-11-06 14:43:46 +01005640 if (dev_replace_is_ongoing && (rw & (REQ_WRITE | REQ_DISCARD)) &&
5641 dev_replace->tgtdev != NULL) {
5642 int index_where_to_add;
5643 u64 srcdev_devid = dev_replace->srcdev->devid;
5644
5645 /*
5646 * duplicate the write operations while the dev replace
5647 * procedure is running. Since the copying of the old disk
5648 * to the new disk takes place at run time while the
5649 * filesystem is mounted writable, the regular write
5650 * operations to the old disk have to be duplicated to go
5651 * to the new disk as well.
5652 * Note that device->missing is handled by the caller, and
5653 * that the write to the old disk is already set up in the
5654 * stripes array.
5655 */
5656 index_where_to_add = num_stripes;
5657 for (i = 0; i < num_stripes; i++) {
5658 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5659 /* write to new disk, too */
5660 struct btrfs_bio_stripe *new =
5661 bbio->stripes + index_where_to_add;
5662 struct btrfs_bio_stripe *old =
5663 bbio->stripes + i;
5664
5665 new->physical = old->physical;
5666 new->length = old->length;
5667 new->dev = dev_replace->tgtdev;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005668 bbio->tgtdev_map[i] = index_where_to_add;
Stefan Behrens472262f2012-11-06 14:43:46 +01005669 index_where_to_add++;
5670 max_errors++;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005671 tgtdev_indexes++;
Stefan Behrens472262f2012-11-06 14:43:46 +01005672 }
5673 }
5674 num_stripes = index_where_to_add;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005675 } else if (dev_replace_is_ongoing && (rw & REQ_GET_READ_MIRRORS) &&
5676 dev_replace->tgtdev != NULL) {
5677 u64 srcdev_devid = dev_replace->srcdev->devid;
5678 int index_srcdev = 0;
5679 int found = 0;
5680 u64 physical_of_found = 0;
5681
5682 /*
5683 * During the dev-replace procedure, the target drive can
5684 * also be used to read data in case it is needed to repair
5685 * a corrupt block elsewhere. This is possible if the
5686 * requested area is left of the left cursor. In this area,
5687 * the target drive is a full copy of the source drive.
5688 */
5689 for (i = 0; i < num_stripes; i++) {
5690 if (bbio->stripes[i].dev->devid == srcdev_devid) {
5691 /*
5692 * In case of DUP, in order to keep it
5693 * simple, only add the mirror with the
5694 * lowest physical address
5695 */
5696 if (found &&
5697 physical_of_found <=
5698 bbio->stripes[i].physical)
5699 continue;
5700 index_srcdev = i;
5701 found = 1;
5702 physical_of_found = bbio->stripes[i].physical;
5703 }
5704 }
5705 if (found) {
David Sterba258ece02015-02-24 19:45:15 +01005706 if (physical_of_found + map->stripe_len <=
Stefan Behrensad6d6202012-11-06 15:06:47 +01005707 dev_replace->cursor_left) {
5708 struct btrfs_bio_stripe *tgtdev_stripe =
5709 bbio->stripes + num_stripes;
5710
5711 tgtdev_stripe->physical = physical_of_found;
5712 tgtdev_stripe->length =
5713 bbio->stripes[index_srcdev].length;
5714 tgtdev_stripe->dev = dev_replace->tgtdev;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005715 bbio->tgtdev_map[index_srcdev] = num_stripes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005716
Miao Xie2c8cdd62014-11-14 16:06:25 +08005717 tgtdev_indexes++;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005718 num_stripes++;
5719 }
5720 }
Stefan Behrens472262f2012-11-06 14:43:46 +01005721 }
5722
Li Zefande11cc12011-12-01 12:55:47 +08005723 *bbio_ret = bbio;
Zhao Lei10f11902015-01-20 15:11:43 +08005724 bbio->map_type = map->type;
Li Zefande11cc12011-12-01 12:55:47 +08005725 bbio->num_stripes = num_stripes;
5726 bbio->max_errors = max_errors;
5727 bbio->mirror_num = mirror_num;
Miao Xie2c8cdd62014-11-14 16:06:25 +08005728 bbio->num_tgtdevs = tgtdev_indexes;
Stefan Behrensad6d6202012-11-06 15:06:47 +01005729
5730 /*
5731 * this is the case that REQ_READ && dev_replace_is_ongoing &&
5732 * mirror_num == num_stripes + 1 && dev_replace target drive is
5733 * available as a mirror
5734 */
5735 if (patch_the_first_stripe_for_dev_replace && num_stripes > 0) {
5736 WARN_ON(num_stripes > 1);
5737 bbio->stripes[0].dev = dev_replace->tgtdev;
5738 bbio->stripes[0].physical = physical_to_patch_in_first_stripe;
5739 bbio->mirror_num = map->num_stripes + 1;
5740 }
Chris Masoncea9e442008-04-09 16:28:12 -04005741out:
Stefan Behrens472262f2012-11-06 14:43:46 +01005742 if (dev_replace_is_ongoing)
5743 btrfs_dev_replace_unlock(dev_replace);
Chris Mason0b86a832008-03-24 15:01:56 -04005744 free_extent_map(em);
Li Zefande11cc12011-12-01 12:55:47 +08005745 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -04005746}
5747
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005748int btrfs_map_block(struct btrfs_fs_info *fs_info, int rw,
Chris Masonf2d8d742008-04-21 10:03:05 -04005749 u64 logical, u64 *length,
Jan Schmidta1d3c472011-08-04 17:15:33 +02005750 struct btrfs_bio **bbio_ret, int mirror_num)
Chris Masonf2d8d742008-04-21 10:03:05 -04005751{
Stefan Behrens3ec706c2012-11-05 15:46:42 +01005752 return __btrfs_map_block(fs_info, rw, logical, length, bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005753 mirror_num, 0);
Chris Masonf2d8d742008-04-21 10:03:05 -04005754}
5755
Miao Xieaf8e2d12014-10-23 14:42:50 +08005756/* For Scrub/replace */
5757int btrfs_map_sblock(struct btrfs_fs_info *fs_info, int rw,
5758 u64 logical, u64 *length,
5759 struct btrfs_bio **bbio_ret, int mirror_num,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005760 int need_raid_map)
Miao Xieaf8e2d12014-10-23 14:42:50 +08005761{
5762 return __btrfs_map_block(fs_info, rw, logical, length, bbio_ret,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08005763 mirror_num, need_raid_map);
Miao Xieaf8e2d12014-10-23 14:42:50 +08005764}
5765
Yan Zhenga512bbf2008-12-08 16:46:26 -05005766int btrfs_rmap_block(struct btrfs_mapping_tree *map_tree,
5767 u64 chunk_start, u64 physical, u64 devid,
5768 u64 **logical, int *naddrs, int *stripe_len)
5769{
5770 struct extent_map_tree *em_tree = &map_tree->map_tree;
5771 struct extent_map *em;
5772 struct map_lookup *map;
5773 u64 *buf;
5774 u64 bytenr;
5775 u64 length;
5776 u64 stripe_nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005777 u64 rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005778 int i, j, nr = 0;
5779
Chris Mason890871b2009-09-02 16:24:52 -04005780 read_lock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005781 em = lookup_extent_mapping(em_tree, chunk_start, 1);
Chris Mason890871b2009-09-02 16:24:52 -04005782 read_unlock(&em_tree->lock);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005783
Josef Bacik835d9742013-03-19 12:13:25 -04005784 if (!em) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005785 printk(KERN_ERR "BTRFS: couldn't find em for chunk %Lu\n",
Josef Bacik835d9742013-03-19 12:13:25 -04005786 chunk_start);
5787 return -EIO;
5788 }
5789
5790 if (em->start != chunk_start) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005791 printk(KERN_ERR "BTRFS: bad chunk start, em=%Lu, wanted=%Lu\n",
Josef Bacik835d9742013-03-19 12:13:25 -04005792 em->start, chunk_start);
5793 free_extent_map(em);
5794 return -EIO;
5795 }
Jeff Mahoney95617d62015-06-03 10:55:48 -04005796 map = em->map_lookup;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005797
5798 length = em->len;
David Woodhouse53b381b2013-01-29 18:40:14 -05005799 rmap_len = map->stripe_len;
5800
Yan Zhenga512bbf2008-12-08 16:46:26 -05005801 if (map->type & BTRFS_BLOCK_GROUP_RAID10)
David Sterbab8b93ad2015-01-16 17:26:13 +01005802 length = div_u64(length, map->num_stripes / map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005803 else if (map->type & BTRFS_BLOCK_GROUP_RAID0)
David Sterbab8b93ad2015-01-16 17:26:13 +01005804 length = div_u64(length, map->num_stripes);
Zhao Leiffe2d202015-01-20 15:11:44 +08005805 else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
David Sterbab8b93ad2015-01-16 17:26:13 +01005806 length = div_u64(length, nr_data_stripes(map));
David Woodhouse53b381b2013-01-29 18:40:14 -05005807 rmap_len = map->stripe_len * nr_data_stripes(map);
5808 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005809
David Sterba31e818f2015-02-20 18:00:26 +01005810 buf = kcalloc(map->num_stripes, sizeof(u64), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005811 BUG_ON(!buf); /* -ENOMEM */
Yan Zhenga512bbf2008-12-08 16:46:26 -05005812
5813 for (i = 0; i < map->num_stripes; i++) {
5814 if (devid && map->stripes[i].dev->devid != devid)
5815 continue;
5816 if (map->stripes[i].physical > physical ||
5817 map->stripes[i].physical + length <= physical)
5818 continue;
5819
5820 stripe_nr = physical - map->stripes[i].physical;
David Sterbab8b93ad2015-01-16 17:26:13 +01005821 stripe_nr = div_u64(stripe_nr, map->stripe_len);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005822
5823 if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
5824 stripe_nr = stripe_nr * map->num_stripes + i;
David Sterbab8b93ad2015-01-16 17:26:13 +01005825 stripe_nr = div_u64(stripe_nr, map->sub_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005826 } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
5827 stripe_nr = stripe_nr * map->num_stripes + i;
David Woodhouse53b381b2013-01-29 18:40:14 -05005828 } /* else if RAID[56], multiply by nr_data_stripes().
5829 * Alternatively, just use rmap_len below instead of
5830 * map->stripe_len */
5831
5832 bytenr = chunk_start + stripe_nr * rmap_len;
Chris Mason934d3752008-12-08 16:43:10 -05005833 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005834 for (j = 0; j < nr; j++) {
5835 if (buf[j] == bytenr)
5836 break;
5837 }
Chris Mason934d3752008-12-08 16:43:10 -05005838 if (j == nr) {
5839 WARN_ON(nr >= map->num_stripes);
Yan Zhenga512bbf2008-12-08 16:46:26 -05005840 buf[nr++] = bytenr;
Chris Mason934d3752008-12-08 16:43:10 -05005841 }
Yan Zhenga512bbf2008-12-08 16:46:26 -05005842 }
5843
Yan Zhenga512bbf2008-12-08 16:46:26 -05005844 *logical = buf;
5845 *naddrs = nr;
David Woodhouse53b381b2013-01-29 18:40:14 -05005846 *stripe_len = rmap_len;
Yan Zhenga512bbf2008-12-08 16:46:26 -05005847
5848 free_extent_map(em);
5849 return 0;
5850}
5851
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005852static inline void btrfs_end_bbio(struct btrfs_bio *bbio, struct bio *bio)
Miao Xie8408c712014-06-19 10:42:55 +08005853{
Mike Snitzer326e1db2015-05-22 09:14:03 -04005854 bio->bi_private = bbio->private;
5855 bio->bi_end_io = bbio->end_io;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005856 bio_endio(bio);
Mike Snitzer326e1db2015-05-22 09:14:03 -04005857
Zhao Lei6e9606d2015-01-20 15:11:34 +08005858 btrfs_put_bbio(bbio);
Miao Xie8408c712014-06-19 10:42:55 +08005859}
5860
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005861static void btrfs_end_bio(struct bio *bio)
Chris Mason8790d502008-04-03 16:29:03 -04005862{
Chris Mason9be33952013-05-17 18:30:14 -04005863 struct btrfs_bio *bbio = bio->bi_private;
Chris Mason7d2b4da2008-08-05 10:13:57 -04005864 int is_orig_bio = 0;
Chris Mason8790d502008-04-03 16:29:03 -04005865
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005866 if (bio->bi_error) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02005867 atomic_inc(&bbio->error);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005868 if (bio->bi_error == -EIO || bio->bi_error == -EREMOTEIO) {
Stefan Behrens442a4f62012-05-25 16:06:08 +02005869 unsigned int stripe_index =
Chris Mason9be33952013-05-17 18:30:14 -04005870 btrfs_io_bio(bio)->stripe_index;
Zhao Lei65f53332015-06-08 20:05:50 +08005871 struct btrfs_device *dev;
Stefan Behrens442a4f62012-05-25 16:06:08 +02005872
5873 BUG_ON(stripe_index >= bbio->num_stripes);
5874 dev = bbio->stripes[stripe_index].dev;
Stefan Behrens597a60f2012-06-14 16:42:31 +02005875 if (dev->bdev) {
5876 if (bio->bi_rw & WRITE)
5877 btrfs_dev_stat_inc(dev,
5878 BTRFS_DEV_STAT_WRITE_ERRS);
5879 else
5880 btrfs_dev_stat_inc(dev,
5881 BTRFS_DEV_STAT_READ_ERRS);
5882 if ((bio->bi_rw & WRITE_FLUSH) == WRITE_FLUSH)
5883 btrfs_dev_stat_inc(dev,
5884 BTRFS_DEV_STAT_FLUSH_ERRS);
5885 btrfs_dev_stat_print_on_error(dev);
5886 }
Stefan Behrens442a4f62012-05-25 16:06:08 +02005887 }
5888 }
Chris Mason8790d502008-04-03 16:29:03 -04005889
Jan Schmidta1d3c472011-08-04 17:15:33 +02005890 if (bio == bbio->orig_bio)
Chris Mason7d2b4da2008-08-05 10:13:57 -04005891 is_orig_bio = 1;
5892
Miao Xiec404e0d2014-01-30 16:46:55 +08005893 btrfs_bio_counter_dec(bbio->fs_info);
5894
Jan Schmidta1d3c472011-08-04 17:15:33 +02005895 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Chris Mason7d2b4da2008-08-05 10:13:57 -04005896 if (!is_orig_bio) {
5897 bio_put(bio);
Jan Schmidta1d3c472011-08-04 17:15:33 +02005898 bio = bbio->orig_bio;
Chris Mason7d2b4da2008-08-05 10:13:57 -04005899 }
Muthu Kumarc7b22bb2014-01-08 14:19:52 -07005900
Chris Mason9be33952013-05-17 18:30:14 -04005901 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Chris Masona236aed2008-04-29 09:38:00 -04005902 /* only send an error to the higher layers if it is
David Woodhouse53b381b2013-01-29 18:40:14 -05005903 * beyond the tolerance of the btrfs bio
Chris Masona236aed2008-04-29 09:38:00 -04005904 */
Jan Schmidta1d3c472011-08-04 17:15:33 +02005905 if (atomic_read(&bbio->error) > bbio->max_errors) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005906 bio->bi_error = -EIO;
Chris Mason5dbc8fc2011-12-09 11:07:37 -05005907 } else {
Chris Mason1259ab72008-05-12 13:39:03 -04005908 /*
5909 * this bio is actually up to date, we didn't
5910 * go over the max number of errors
5911 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005912 bio->bi_error = 0;
Chris Mason1259ab72008-05-12 13:39:03 -04005913 }
Miao Xiec55f1392014-06-19 10:42:54 +08005914
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005915 btrfs_end_bbio(bbio, bio);
Chris Mason7d2b4da2008-08-05 10:13:57 -04005916 } else if (!is_orig_bio) {
Chris Mason8790d502008-04-03 16:29:03 -04005917 bio_put(bio);
5918 }
Chris Mason8790d502008-04-03 16:29:03 -04005919}
5920
Chris Mason8b712842008-06-11 16:50:36 -04005921/*
5922 * see run_scheduled_bios for a description of why bios are collected for
5923 * async submit.
5924 *
5925 * This will add one bio to the pending list for a device and make sure
5926 * the work struct is scheduled.
5927 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00005928static noinline void btrfs_schedule_bio(struct btrfs_root *root,
5929 struct btrfs_device *device,
5930 int rw, struct bio *bio)
Chris Mason8b712842008-06-11 16:50:36 -04005931{
5932 int should_queue = 1;
Chris Masonffbd5172009-04-20 15:50:09 -04005933 struct btrfs_pending_bios *pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04005934
David Woodhouse53b381b2013-01-29 18:40:14 -05005935 if (device->missing || !device->bdev) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005936 bio_io_error(bio);
David Woodhouse53b381b2013-01-29 18:40:14 -05005937 return;
5938 }
5939
Chris Mason8b712842008-06-11 16:50:36 -04005940 /* don't bother with additional async steps for reads, right now */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02005941 if (!(rw & REQ_WRITE)) {
Chris Mason492bb6de2008-07-31 16:29:02 -04005942 bio_get(bio);
Stefan Behrens21adbd52011-11-09 13:44:05 +01005943 btrfsic_submit_bio(rw, bio);
Chris Mason492bb6de2008-07-31 16:29:02 -04005944 bio_put(bio);
Jeff Mahoney143bede2012-03-01 14:56:26 +01005945 return;
Chris Mason8b712842008-06-11 16:50:36 -04005946 }
5947
5948 /*
Chris Mason0986fe9e2008-08-15 15:34:15 -04005949 * nr_async_bios allows us to reliably return congestion to the
Chris Mason8b712842008-06-11 16:50:36 -04005950 * higher layers. Otherwise, the async bio makes it appear we have
5951 * made progress against dirty pages when we've really just put it
5952 * on a queue for later
5953 */
Chris Mason0986fe9e2008-08-15 15:34:15 -04005954 atomic_inc(&root->fs_info->nr_async_bios);
Chris Mason492bb6de2008-07-31 16:29:02 -04005955 WARN_ON(bio->bi_next);
Chris Mason8b712842008-06-11 16:50:36 -04005956 bio->bi_next = NULL;
5957 bio->bi_rw |= rw;
5958
5959 spin_lock(&device->io_lock);
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02005960 if (bio->bi_rw & REQ_SYNC)
Chris Masonffbd5172009-04-20 15:50:09 -04005961 pending_bios = &device->pending_sync_bios;
5962 else
5963 pending_bios = &device->pending_bios;
Chris Mason8b712842008-06-11 16:50:36 -04005964
Chris Masonffbd5172009-04-20 15:50:09 -04005965 if (pending_bios->tail)
5966 pending_bios->tail->bi_next = bio;
Chris Mason8b712842008-06-11 16:50:36 -04005967
Chris Masonffbd5172009-04-20 15:50:09 -04005968 pending_bios->tail = bio;
5969 if (!pending_bios->head)
5970 pending_bios->head = bio;
Chris Mason8b712842008-06-11 16:50:36 -04005971 if (device->running_pending)
5972 should_queue = 0;
5973
5974 spin_unlock(&device->io_lock);
5975
5976 if (should_queue)
Qu Wenruoa8c93d42014-02-28 10:46:08 +08005977 btrfs_queue_work(root->fs_info->submit_workers,
5978 &device->work);
Chris Mason8b712842008-06-11 16:50:36 -04005979}
5980
Josef Bacikde1ee922012-10-19 16:50:56 -04005981static void submit_stripe_bio(struct btrfs_root *root, struct btrfs_bio *bbio,
5982 struct bio *bio, u64 physical, int dev_nr,
5983 int rw, int async)
5984{
5985 struct btrfs_device *dev = bbio->stripes[dev_nr].dev;
5986
5987 bio->bi_private = bbio;
Chris Mason9be33952013-05-17 18:30:14 -04005988 btrfs_io_bio(bio)->stripe_index = dev_nr;
Josef Bacikde1ee922012-10-19 16:50:56 -04005989 bio->bi_end_io = btrfs_end_bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07005990 bio->bi_iter.bi_sector = physical >> 9;
Josef Bacikde1ee922012-10-19 16:50:56 -04005991#ifdef DEBUG
5992 {
5993 struct rcu_string *name;
5994
5995 rcu_read_lock();
5996 name = rcu_dereference(dev->name);
Masanari Iidad1423242012-10-31 15:16:32 +00005997 pr_debug("btrfs_map_bio: rw %d, sector=%llu, dev=%lu "
Josef Bacikde1ee922012-10-19 16:50:56 -04005998 "(%s id %llu), size=%u\n", rw,
Fabian Frederick1b6e4462014-09-24 20:23:05 +02005999 (u64)bio->bi_iter.bi_sector, (u_long)dev->bdev->bd_dev,
6000 name->str, dev->devid, bio->bi_iter.bi_size);
Josef Bacikde1ee922012-10-19 16:50:56 -04006001 rcu_read_unlock();
6002 }
6003#endif
6004 bio->bi_bdev = dev->bdev;
Miao Xiec404e0d2014-01-30 16:46:55 +08006005
6006 btrfs_bio_counter_inc_noblocked(root->fs_info);
6007
Josef Bacikde1ee922012-10-19 16:50:56 -04006008 if (async)
David Woodhouse53b381b2013-01-29 18:40:14 -05006009 btrfs_schedule_bio(root, dev, rw, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006010 else
6011 btrfsic_submit_bio(rw, bio);
6012}
6013
Josef Bacikde1ee922012-10-19 16:50:56 -04006014static void bbio_error(struct btrfs_bio *bbio, struct bio *bio, u64 logical)
6015{
6016 atomic_inc(&bbio->error);
6017 if (atomic_dec_and_test(&bbio->stripes_pending)) {
Miao Xie8408c712014-06-19 10:42:55 +08006018 /* Shoud be the original bio. */
6019 WARN_ON(bio != bbio->orig_bio);
6020
Chris Mason9be33952013-05-17 18:30:14 -04006021 btrfs_io_bio(bio)->mirror_num = bbio->mirror_num;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006022 bio->bi_iter.bi_sector = logical >> 9;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006023 bio->bi_error = -EIO;
6024 btrfs_end_bbio(bbio, bio);
Josef Bacikde1ee922012-10-19 16:50:56 -04006025 }
6026}
6027
Chris Masonf1885912008-04-09 16:28:12 -04006028int btrfs_map_bio(struct btrfs_root *root, int rw, struct bio *bio,
Chris Mason8b712842008-06-11 16:50:36 -04006029 int mirror_num, int async_submit)
Chris Mason0b86a832008-03-24 15:01:56 -04006030{
Chris Mason0b86a832008-03-24 15:01:56 -04006031 struct btrfs_device *dev;
Chris Mason8790d502008-04-03 16:29:03 -04006032 struct bio *first_bio = bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07006033 u64 logical = (u64)bio->bi_iter.bi_sector << 9;
Chris Mason0b86a832008-03-24 15:01:56 -04006034 u64 length = 0;
6035 u64 map_length;
Chris Mason0b86a832008-03-24 15:01:56 -04006036 int ret;
Zhao Lei08da7572015-02-12 15:42:16 +08006037 int dev_nr;
6038 int total_devs;
Jan Schmidta1d3c472011-08-04 17:15:33 +02006039 struct btrfs_bio *bbio = NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006040
Kent Overstreet4f024f32013-10-11 15:44:27 -07006041 length = bio->bi_iter.bi_size;
Chris Mason0b86a832008-03-24 15:01:56 -04006042 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04006043
Miao Xiec404e0d2014-01-30 16:46:55 +08006044 btrfs_bio_counter_inc_blocked(root->fs_info);
David Woodhouse53b381b2013-01-29 18:40:14 -05006045 ret = __btrfs_map_block(root->fs_info, rw, logical, &map_length, &bbio,
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006046 mirror_num, 1);
Miao Xiec404e0d2014-01-30 16:46:55 +08006047 if (ret) {
6048 btrfs_bio_counter_dec(root->fs_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006049 return ret;
Miao Xiec404e0d2014-01-30 16:46:55 +08006050 }
Chris Masoncea9e442008-04-09 16:28:12 -04006051
Jan Schmidta1d3c472011-08-04 17:15:33 +02006052 total_devs = bbio->num_stripes;
David Woodhouse53b381b2013-01-29 18:40:14 -05006053 bbio->orig_bio = first_bio;
6054 bbio->private = first_bio->bi_private;
6055 bbio->end_io = first_bio->bi_end_io;
Miao Xiec404e0d2014-01-30 16:46:55 +08006056 bbio->fs_info = root->fs_info;
David Woodhouse53b381b2013-01-29 18:40:14 -05006057 atomic_set(&bbio->stripes_pending, bbio->num_stripes);
6058
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006059 if (bbio->raid_map) {
David Woodhouse53b381b2013-01-29 18:40:14 -05006060 /* In this case, map_length has been set to the length of
6061 a single stripe; not the whole write */
6062 if (rw & WRITE) {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006063 ret = raid56_parity_write(root, bio, bbio, map_length);
David Woodhouse53b381b2013-01-29 18:40:14 -05006064 } else {
Zhao Lei8e5cfb52015-01-20 15:11:33 +08006065 ret = raid56_parity_recover(root, bio, bbio, map_length,
Miao Xie42452152014-11-25 16:39:28 +08006066 mirror_num, 1);
David Woodhouse53b381b2013-01-29 18:40:14 -05006067 }
Miao Xie42452152014-11-25 16:39:28 +08006068
Miao Xiec404e0d2014-01-30 16:46:55 +08006069 btrfs_bio_counter_dec(root->fs_info);
6070 return ret;
David Woodhouse53b381b2013-01-29 18:40:14 -05006071 }
6072
Chris Masoncea9e442008-04-09 16:28:12 -04006073 if (map_length < length) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006074 btrfs_crit(root->fs_info, "mapping failed logical %llu bio len %llu len %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006075 logical, length, map_length);
Chris Masoncea9e442008-04-09 16:28:12 -04006076 BUG();
6077 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02006078
Zhao Lei08da7572015-02-12 15:42:16 +08006079 for (dev_nr = 0; dev_nr < total_devs; dev_nr++) {
Josef Bacikde1ee922012-10-19 16:50:56 -04006080 dev = bbio->stripes[dev_nr].dev;
6081 if (!dev || !dev->bdev || (rw & WRITE && !dev->writeable)) {
6082 bbio_error(bbio, first_bio, logical);
Josef Bacikde1ee922012-10-19 16:50:56 -04006083 continue;
6084 }
6085
Jan Schmidta1d3c472011-08-04 17:15:33 +02006086 if (dev_nr < total_devs - 1) {
Chris Mason9be33952013-05-17 18:30:14 -04006087 bio = btrfs_bio_clone(first_bio, GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006088 BUG_ON(!bio); /* -ENOMEM */
Mike Snitzer326e1db2015-05-22 09:14:03 -04006089 } else
Jan Schmidta1d3c472011-08-04 17:15:33 +02006090 bio = first_bio;
Josef Bacik606686e2012-06-04 14:03:51 -04006091
Josef Bacikde1ee922012-10-19 16:50:56 -04006092 submit_stripe_bio(root, bbio, bio,
6093 bbio->stripes[dev_nr].physical, dev_nr, rw,
6094 async_submit);
Chris Mason239b14b2008-03-24 15:02:07 -04006095 }
Miao Xiec404e0d2014-01-30 16:46:55 +08006096 btrfs_bio_counter_dec(root->fs_info);
Chris Mason0b86a832008-03-24 15:01:56 -04006097 return 0;
6098}
6099
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006100struct btrfs_device *btrfs_find_device(struct btrfs_fs_info *fs_info, u64 devid,
Yan Zheng2b820322008-11-17 21:11:30 -05006101 u8 *uuid, u8 *fsid)
Chris Mason0b86a832008-03-24 15:01:56 -04006102{
Yan Zheng2b820322008-11-17 21:11:30 -05006103 struct btrfs_device *device;
6104 struct btrfs_fs_devices *cur_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006105
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006106 cur_devices = fs_info->fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006107 while (cur_devices) {
6108 if (!fsid ||
6109 !memcmp(cur_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
6110 device = __find_device(&cur_devices->devices,
6111 devid, uuid);
6112 if (device)
6113 return device;
6114 }
6115 cur_devices = cur_devices->seed;
6116 }
6117 return NULL;
Chris Mason0b86a832008-03-24 15:01:56 -04006118}
6119
Chris Masondfe25022008-05-13 13:46:40 -04006120static struct btrfs_device *add_missing_dev(struct btrfs_root *root,
Miao Xie5f375832014-09-03 21:35:46 +08006121 struct btrfs_fs_devices *fs_devices,
Chris Masondfe25022008-05-13 13:46:40 -04006122 u64 devid, u8 *dev_uuid)
6123{
6124 struct btrfs_device *device;
Chris Masondfe25022008-05-13 13:46:40 -04006125
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006126 device = btrfs_alloc_device(NULL, &devid, dev_uuid);
6127 if (IS_ERR(device))
yanhai zhu7cbd8a82008-11-12 14:38:54 -05006128 return NULL;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006129
6130 list_add(&device->dev_list, &fs_devices->devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006131 device->fs_devices = fs_devices;
Chris Masondfe25022008-05-13 13:46:40 -04006132 fs_devices->num_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006133
6134 device->missing = 1;
Chris Masoncd02dca2010-12-13 14:56:23 -05006135 fs_devices->missing_devices++;
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006136
Chris Masondfe25022008-05-13 13:46:40 -04006137 return device;
6138}
6139
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006140/**
6141 * btrfs_alloc_device - allocate struct btrfs_device
6142 * @fs_info: used only for generating a new devid, can be NULL if
6143 * devid is provided (i.e. @devid != NULL).
6144 * @devid: a pointer to devid for this device. If NULL a new devid
6145 * is generated.
6146 * @uuid: a pointer to UUID for this device. If NULL a new UUID
6147 * is generated.
6148 *
6149 * Return: a pointer to a new &struct btrfs_device on success; ERR_PTR()
6150 * on error. Returned struct is not linked onto any lists and can be
6151 * destroyed with kfree() right away.
6152 */
6153struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info,
6154 const u64 *devid,
6155 const u8 *uuid)
6156{
6157 struct btrfs_device *dev;
6158 u64 tmp;
6159
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05306160 if (WARN_ON(!devid && !fs_info))
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006161 return ERR_PTR(-EINVAL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006162
6163 dev = __alloc_device();
6164 if (IS_ERR(dev))
6165 return dev;
6166
6167 if (devid)
6168 tmp = *devid;
6169 else {
6170 int ret;
6171
6172 ret = find_next_devid(fs_info, &tmp);
6173 if (ret) {
6174 kfree(dev);
6175 return ERR_PTR(ret);
6176 }
6177 }
6178 dev->devid = tmp;
6179
6180 if (uuid)
6181 memcpy(dev->uuid, uuid, BTRFS_UUID_SIZE);
6182 else
6183 generate_random_uuid(dev->uuid);
6184
Liu Bo9e0af232014-08-15 23:36:53 +08006185 btrfs_init_work(&dev->work, btrfs_submit_helper,
6186 pending_bios_fn, NULL, NULL);
Ilya Dryomov12bd2fc2013-08-23 13:20:17 +03006187
6188 return dev;
6189}
6190
Chris Mason0b86a832008-03-24 15:01:56 -04006191static int read_one_chunk(struct btrfs_root *root, struct btrfs_key *key,
6192 struct extent_buffer *leaf,
6193 struct btrfs_chunk *chunk)
6194{
6195 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
6196 struct map_lookup *map;
6197 struct extent_map *em;
6198 u64 logical;
6199 u64 length;
6200 u64 devid;
Chris Masona4437552008-04-18 10:29:38 -04006201 u8 uuid[BTRFS_UUID_SIZE];
Chris Mason593060d2008-03-25 16:50:33 -04006202 int num_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -04006203 int ret;
Chris Mason593060d2008-03-25 16:50:33 -04006204 int i;
Chris Mason0b86a832008-03-24 15:01:56 -04006205
Chris Masone17cade2008-04-15 15:41:47 -04006206 logical = key->offset;
6207 length = btrfs_chunk_length(leaf, chunk);
Chris Masona061fc82008-05-07 11:43:44 -04006208
Chris Mason890871b2009-09-02 16:24:52 -04006209 read_lock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006210 em = lookup_extent_mapping(&map_tree->map_tree, logical, 1);
Chris Mason890871b2009-09-02 16:24:52 -04006211 read_unlock(&map_tree->map_tree.lock);
Chris Mason0b86a832008-03-24 15:01:56 -04006212
6213 /* already mapped? */
6214 if (em && em->start <= logical && em->start + em->len > logical) {
6215 free_extent_map(em);
Chris Mason0b86a832008-03-24 15:01:56 -04006216 return 0;
6217 } else if (em) {
6218 free_extent_map(em);
6219 }
Chris Mason0b86a832008-03-24 15:01:56 -04006220
David Sterba172ddd62011-04-21 00:48:27 +02006221 em = alloc_extent_map();
Chris Mason0b86a832008-03-24 15:01:56 -04006222 if (!em)
6223 return -ENOMEM;
Chris Mason593060d2008-03-25 16:50:33 -04006224 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
6225 map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
Chris Mason0b86a832008-03-24 15:01:56 -04006226 if (!map) {
6227 free_extent_map(em);
6228 return -ENOMEM;
6229 }
6230
Wang Shilong298a8f92014-06-19 10:42:52 +08006231 set_bit(EXTENT_FLAG_FS_MAPPING, &em->flags);
Jeff Mahoney95617d62015-06-03 10:55:48 -04006232 em->map_lookup = map;
Chris Mason0b86a832008-03-24 15:01:56 -04006233 em->start = logical;
6234 em->len = length;
Josef Bacik70c8a912012-10-11 16:54:30 -04006235 em->orig_start = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006236 em->block_start = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04006237 em->block_len = em->len;
Chris Mason0b86a832008-03-24 15:01:56 -04006238
Chris Mason593060d2008-03-25 16:50:33 -04006239 map->num_stripes = num_stripes;
6240 map->io_width = btrfs_chunk_io_width(leaf, chunk);
6241 map->io_align = btrfs_chunk_io_align(leaf, chunk);
6242 map->sector_size = btrfs_chunk_sector_size(leaf, chunk);
6243 map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
6244 map->type = btrfs_chunk_type(leaf, chunk);
Chris Mason321aecc2008-04-16 10:49:51 -04006245 map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
Chris Mason593060d2008-03-25 16:50:33 -04006246 for (i = 0; i < num_stripes; i++) {
6247 map->stripes[i].physical =
6248 btrfs_stripe_offset_nr(leaf, chunk, i);
6249 devid = btrfs_stripe_devid_nr(leaf, chunk, i);
Chris Masona4437552008-04-18 10:29:38 -04006250 read_extent_buffer(leaf, uuid, (unsigned long)
6251 btrfs_stripe_dev_uuid_nr(chunk, i),
6252 BTRFS_UUID_SIZE);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006253 map->stripes[i].dev = btrfs_find_device(root->fs_info, devid,
6254 uuid, NULL);
Chris Masondfe25022008-05-13 13:46:40 -04006255 if (!map->stripes[i].dev && !btrfs_test_opt(root, DEGRADED)) {
Chris Mason593060d2008-03-25 16:50:33 -04006256 free_extent_map(em);
6257 return -EIO;
6258 }
Chris Masondfe25022008-05-13 13:46:40 -04006259 if (!map->stripes[i].dev) {
6260 map->stripes[i].dev =
Miao Xie5f375832014-09-03 21:35:46 +08006261 add_missing_dev(root, root->fs_info->fs_devices,
6262 devid, uuid);
Chris Masondfe25022008-05-13 13:46:40 -04006263 if (!map->stripes[i].dev) {
Chris Masondfe25022008-05-13 13:46:40 -04006264 free_extent_map(em);
6265 return -EIO;
6266 }
Anand Jain816fceb2015-04-27 12:46:18 +08006267 btrfs_warn(root->fs_info, "devid %llu uuid %pU is missing",
6268 devid, uuid);
Chris Masondfe25022008-05-13 13:46:40 -04006269 }
6270 map->stripes[i].dev->in_fs_metadata = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04006271 }
6272
Chris Mason890871b2009-09-02 16:24:52 -04006273 write_lock(&map_tree->map_tree.lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006274 ret = add_extent_mapping(&map_tree->map_tree, em, 0);
Chris Mason890871b2009-09-02 16:24:52 -04006275 write_unlock(&map_tree->map_tree.lock);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006276 BUG_ON(ret); /* Tree corruption */
Chris Mason0b86a832008-03-24 15:01:56 -04006277 free_extent_map(em);
6278
6279 return 0;
6280}
6281
Jeff Mahoney143bede2012-03-01 14:56:26 +01006282static void fill_device_from_item(struct extent_buffer *leaf,
Chris Mason0b86a832008-03-24 15:01:56 -04006283 struct btrfs_dev_item *dev_item,
6284 struct btrfs_device *device)
6285{
6286 unsigned long ptr;
Chris Mason0b86a832008-03-24 15:01:56 -04006287
6288 device->devid = btrfs_device_id(leaf, dev_item);
Chris Balld6397ba2009-04-27 07:29:03 -04006289 device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item);
6290 device->total_bytes = device->disk_total_bytes;
Miao Xie935e5cc2014-09-03 21:35:33 +08006291 device->commit_total_bytes = device->disk_total_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -04006292 device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
Miao Xiece7213c2014-09-03 21:35:34 +08006293 device->commit_bytes_used = device->bytes_used;
Chris Mason0b86a832008-03-24 15:01:56 -04006294 device->type = btrfs_device_type(leaf, dev_item);
6295 device->io_align = btrfs_device_io_align(leaf, dev_item);
6296 device->io_width = btrfs_device_io_width(leaf, dev_item);
6297 device->sector_size = btrfs_device_sector_size(leaf, dev_item);
Stefan Behrens8dabb742012-11-06 13:15:27 +01006298 WARN_ON(device->devid == BTRFS_DEV_REPLACE_DEVID);
Stefan Behrens63a212a2012-11-05 18:29:28 +01006299 device->is_tgtdev_for_dev_replace = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006300
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006301 ptr = btrfs_device_uuid(dev_item);
Chris Masone17cade2008-04-15 15:41:47 -04006302 read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006303}
6304
Miao Xie5f375832014-09-03 21:35:46 +08006305static struct btrfs_fs_devices *open_seed_devices(struct btrfs_root *root,
6306 u8 *fsid)
Yan Zheng2b820322008-11-17 21:11:30 -05006307{
6308 struct btrfs_fs_devices *fs_devices;
6309 int ret;
6310
Li Zefanb367e472011-12-07 11:38:24 +08006311 BUG_ON(!mutex_is_locked(&uuid_mutex));
Yan Zheng2b820322008-11-17 21:11:30 -05006312
6313 fs_devices = root->fs_info->fs_devices->seed;
6314 while (fs_devices) {
Miao Xie5f375832014-09-03 21:35:46 +08006315 if (!memcmp(fs_devices->fsid, fsid, BTRFS_UUID_SIZE))
6316 return fs_devices;
6317
Yan Zheng2b820322008-11-17 21:11:30 -05006318 fs_devices = fs_devices->seed;
6319 }
6320
6321 fs_devices = find_fsid(fsid);
6322 if (!fs_devices) {
Miao Xie5f375832014-09-03 21:35:46 +08006323 if (!btrfs_test_opt(root, DEGRADED))
6324 return ERR_PTR(-ENOENT);
6325
6326 fs_devices = alloc_fs_devices(fsid);
6327 if (IS_ERR(fs_devices))
6328 return fs_devices;
6329
6330 fs_devices->seeding = 1;
6331 fs_devices->opened = 1;
6332 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006333 }
Yan Zhenge4404d62008-12-12 10:03:26 -05006334
6335 fs_devices = clone_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006336 if (IS_ERR(fs_devices))
6337 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006338
Christoph Hellwig97288f22008-12-02 06:36:09 -05006339 ret = __btrfs_open_devices(fs_devices, FMODE_READ,
Chris Mason15916de2008-11-19 21:17:22 -05006340 root->fs_info->bdev_holder);
Julia Lawall48d28232012-04-14 11:24:33 +02006341 if (ret) {
6342 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006343 fs_devices = ERR_PTR(ret);
Yan Zheng2b820322008-11-17 21:11:30 -05006344 goto out;
Julia Lawall48d28232012-04-14 11:24:33 +02006345 }
Yan Zheng2b820322008-11-17 21:11:30 -05006346
6347 if (!fs_devices->seeding) {
6348 __btrfs_close_devices(fs_devices);
Yan Zhenge4404d62008-12-12 10:03:26 -05006349 free_fs_devices(fs_devices);
Miao Xie5f375832014-09-03 21:35:46 +08006350 fs_devices = ERR_PTR(-EINVAL);
Yan Zheng2b820322008-11-17 21:11:30 -05006351 goto out;
6352 }
6353
6354 fs_devices->seed = root->fs_info->fs_devices->seed;
6355 root->fs_info->fs_devices->seed = fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006356out:
Miao Xie5f375832014-09-03 21:35:46 +08006357 return fs_devices;
Yan Zheng2b820322008-11-17 21:11:30 -05006358}
6359
Chris Mason0d81ba52008-03-24 15:02:07 -04006360static int read_one_dev(struct btrfs_root *root,
Chris Mason0b86a832008-03-24 15:01:56 -04006361 struct extent_buffer *leaf,
6362 struct btrfs_dev_item *dev_item)
6363{
Miao Xie5f375832014-09-03 21:35:46 +08006364 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
Chris Mason0b86a832008-03-24 15:01:56 -04006365 struct btrfs_device *device;
6366 u64 devid;
6367 int ret;
Yan Zheng2b820322008-11-17 21:11:30 -05006368 u8 fs_uuid[BTRFS_UUID_SIZE];
Chris Masona4437552008-04-18 10:29:38 -04006369 u8 dev_uuid[BTRFS_UUID_SIZE];
6370
Chris Mason0b86a832008-03-24 15:01:56 -04006371 devid = btrfs_device_id(leaf, dev_item);
Geert Uytterhoeven410ba3a2013-08-20 13:20:11 +02006372 read_extent_buffer(leaf, dev_uuid, btrfs_device_uuid(dev_item),
Chris Masona4437552008-04-18 10:29:38 -04006373 BTRFS_UUID_SIZE);
Geert Uytterhoeven1473b242013-08-20 13:20:12 +02006374 read_extent_buffer(leaf, fs_uuid, btrfs_device_fsid(dev_item),
Yan Zheng2b820322008-11-17 21:11:30 -05006375 BTRFS_UUID_SIZE);
6376
6377 if (memcmp(fs_uuid, root->fs_info->fsid, BTRFS_UUID_SIZE)) {
Miao Xie5f375832014-09-03 21:35:46 +08006378 fs_devices = open_seed_devices(root, fs_uuid);
6379 if (IS_ERR(fs_devices))
6380 return PTR_ERR(fs_devices);
Yan Zheng2b820322008-11-17 21:11:30 -05006381 }
6382
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006383 device = btrfs_find_device(root->fs_info, devid, dev_uuid, fs_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006384 if (!device) {
Yan Zhenge4404d62008-12-12 10:03:26 -05006385 if (!btrfs_test_opt(root, DEGRADED))
Yan Zheng2b820322008-11-17 21:11:30 -05006386 return -EIO;
6387
Miao Xie5f375832014-09-03 21:35:46 +08006388 device = add_missing_dev(root, fs_devices, devid, dev_uuid);
6389 if (!device)
6390 return -ENOMEM;
Anand Jain33b97e42015-05-08 04:34:35 +08006391 btrfs_warn(root->fs_info, "devid %llu uuid %pU missing",
6392 devid, dev_uuid);
Miao Xie5f375832014-09-03 21:35:46 +08006393 } else {
6394 if (!device->bdev && !btrfs_test_opt(root, DEGRADED))
6395 return -EIO;
6396
6397 if(!device->bdev && !device->missing) {
Chris Masoncd02dca2010-12-13 14:56:23 -05006398 /*
6399 * this happens when a device that was properly setup
6400 * in the device info lists suddenly goes bad.
6401 * device->bdev is NULL, and so we have to set
6402 * device->missing to one here
6403 */
Miao Xie5f375832014-09-03 21:35:46 +08006404 device->fs_devices->missing_devices++;
Chris Masoncd02dca2010-12-13 14:56:23 -05006405 device->missing = 1;
Yan Zheng2b820322008-11-17 21:11:30 -05006406 }
Miao Xie5f375832014-09-03 21:35:46 +08006407
6408 /* Move the device to its own fs_devices */
6409 if (device->fs_devices != fs_devices) {
6410 ASSERT(device->missing);
6411
6412 list_move(&device->dev_list, &fs_devices->devices);
6413 device->fs_devices->num_devices--;
6414 fs_devices->num_devices++;
6415
6416 device->fs_devices->missing_devices--;
6417 fs_devices->missing_devices++;
6418
6419 device->fs_devices = fs_devices;
6420 }
Yan Zheng2b820322008-11-17 21:11:30 -05006421 }
6422
6423 if (device->fs_devices != root->fs_info->fs_devices) {
6424 BUG_ON(device->writeable);
6425 if (device->generation !=
6426 btrfs_device_generation(leaf, dev_item))
6427 return -EINVAL;
Chris Mason6324fbf2008-03-24 15:01:59 -04006428 }
Chris Mason0b86a832008-03-24 15:01:56 -04006429
6430 fill_device_from_item(leaf, dev_item, device);
Chris Masondfe25022008-05-13 13:46:40 -04006431 device->in_fs_metadata = 1;
Stefan Behrens63a212a2012-11-05 18:29:28 +01006432 if (device->writeable && !device->is_tgtdev_for_dev_replace) {
Yan Zheng2b820322008-11-17 21:11:30 -05006433 device->fs_devices->total_rw_bytes += device->total_bytes;
Josef Bacik2bf64752011-09-26 17:12:22 -04006434 spin_lock(&root->fs_info->free_chunk_lock);
6435 root->fs_info->free_chunk_space += device->total_bytes -
6436 device->bytes_used;
6437 spin_unlock(&root->fs_info->free_chunk_lock);
6438 }
Chris Mason0b86a832008-03-24 15:01:56 -04006439 ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006440 return ret;
6441}
6442
Yan Zhenge4404d62008-12-12 10:03:26 -05006443int btrfs_read_sys_array(struct btrfs_root *root)
Chris Mason0b86a832008-03-24 15:01:56 -04006444{
David Sterba6c417612011-04-13 15:41:04 +02006445 struct btrfs_super_block *super_copy = root->fs_info->super_copy;
Chris Masona061fc82008-05-07 11:43:44 -04006446 struct extent_buffer *sb;
Chris Mason0b86a832008-03-24 15:01:56 -04006447 struct btrfs_disk_key *disk_key;
Chris Mason0b86a832008-03-24 15:01:56 -04006448 struct btrfs_chunk *chunk;
David Sterba1ffb22c2014-10-31 19:02:42 +01006449 u8 *array_ptr;
6450 unsigned long sb_array_offset;
Chris Mason84eed902008-04-25 09:04:37 -04006451 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006452 u32 num_stripes;
6453 u32 array_size;
6454 u32 len = 0;
David Sterba1ffb22c2014-10-31 19:02:42 +01006455 u32 cur_offset;
Chris Mason84eed902008-04-25 09:04:37 -04006456 struct btrfs_key key;
Chris Mason0b86a832008-03-24 15:01:56 -04006457
David Sterbaa83fffb2014-06-15 02:39:54 +02006458 ASSERT(BTRFS_SUPER_INFO_SIZE <= root->nodesize);
6459 /*
6460 * This will create extent buffer of nodesize, superblock size is
6461 * fixed to BTRFS_SUPER_INFO_SIZE. If nodesize > sb size, this will
6462 * overallocate but we can keep it as-is, only the first page is used.
6463 */
6464 sb = btrfs_find_create_tree_block(root, BTRFS_SUPER_INFO_OFFSET);
Chris Masona061fc82008-05-07 11:43:44 -04006465 if (!sb)
6466 return -ENOMEM;
6467 btrfs_set_buffer_uptodate(sb);
Chris Mason85d4e462011-07-26 16:11:19 -04006468 btrfs_set_buffer_lockdep_class(root->root_key.objectid, sb, 0);
David Sterba8a334422011-10-07 18:06:13 +02006469 /*
6470 * The sb extent buffer is artifical and just used to read the system array.
6471 * btrfs_set_buffer_uptodate() call does not properly mark all it's
6472 * pages up-to-date when the page is larger: extent does not cover the
6473 * whole page and consequently check_page_uptodate does not find all
6474 * the page's extents up-to-date (the hole beyond sb),
6475 * write_extent_buffer then triggers a WARN_ON.
6476 *
6477 * Regular short extents go through mark_extent_buffer_dirty/writeback cycle,
6478 * but sb spans only this function. Add an explicit SetPageUptodate call
6479 * to silence the warning eg. on PowerPC 64.
6480 */
6481 if (PAGE_CACHE_SIZE > BTRFS_SUPER_INFO_SIZE)
Chris Mason727011e2010-08-06 13:21:20 -04006482 SetPageUptodate(sb->pages[0]);
Chris Mason4008c042009-02-12 14:09:45 -05006483
Chris Masona061fc82008-05-07 11:43:44 -04006484 write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE);
Chris Mason0b86a832008-03-24 15:01:56 -04006485 array_size = btrfs_super_sys_array_size(super_copy);
6486
David Sterba1ffb22c2014-10-31 19:02:42 +01006487 array_ptr = super_copy->sys_chunk_array;
6488 sb_array_offset = offsetof(struct btrfs_super_block, sys_chunk_array);
6489 cur_offset = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006490
David Sterba1ffb22c2014-10-31 19:02:42 +01006491 while (cur_offset < array_size) {
6492 disk_key = (struct btrfs_disk_key *)array_ptr;
David Sterbae3540ea2014-11-05 15:24:51 +01006493 len = sizeof(*disk_key);
6494 if (cur_offset + len > array_size)
6495 goto out_short_read;
6496
Chris Mason0b86a832008-03-24 15:01:56 -04006497 btrfs_disk_key_to_cpu(&key, disk_key);
6498
David Sterba1ffb22c2014-10-31 19:02:42 +01006499 array_ptr += len;
6500 sb_array_offset += len;
6501 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006502
Chris Mason0d81ba52008-03-24 15:02:07 -04006503 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
David Sterba1ffb22c2014-10-31 19:02:42 +01006504 chunk = (struct btrfs_chunk *)sb_array_offset;
David Sterbae3540ea2014-11-05 15:24:51 +01006505 /*
6506 * At least one btrfs_chunk with one stripe must be
6507 * present, exact stripe count check comes afterwards
6508 */
6509 len = btrfs_chunk_item_size(1);
6510 if (cur_offset + len > array_size)
6511 goto out_short_read;
6512
6513 num_stripes = btrfs_chunk_num_stripes(sb, chunk);
6514 len = btrfs_chunk_item_size(num_stripes);
6515 if (cur_offset + len > array_size)
6516 goto out_short_read;
6517
Chris Mason0d81ba52008-03-24 15:02:07 -04006518 ret = read_one_chunk(root, &key, sb, chunk);
Chris Mason84eed902008-04-25 09:04:37 -04006519 if (ret)
6520 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006521 } else {
Chris Mason84eed902008-04-25 09:04:37 -04006522 ret = -EIO;
6523 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006524 }
David Sterba1ffb22c2014-10-31 19:02:42 +01006525 array_ptr += len;
6526 sb_array_offset += len;
6527 cur_offset += len;
Chris Mason0b86a832008-03-24 15:01:56 -04006528 }
Chris Masona061fc82008-05-07 11:43:44 -04006529 free_extent_buffer(sb);
Chris Mason84eed902008-04-25 09:04:37 -04006530 return ret;
David Sterbae3540ea2014-11-05 15:24:51 +01006531
6532out_short_read:
6533 printk(KERN_ERR "BTRFS: sys_array too short to read %u bytes at offset %u\n",
6534 len, cur_offset);
6535 free_extent_buffer(sb);
6536 return -EIO;
Chris Mason0b86a832008-03-24 15:01:56 -04006537}
6538
6539int btrfs_read_chunk_tree(struct btrfs_root *root)
6540{
6541 struct btrfs_path *path;
6542 struct extent_buffer *leaf;
6543 struct btrfs_key key;
6544 struct btrfs_key found_key;
6545 int ret;
6546 int slot;
6547
6548 root = root->fs_info->chunk_root;
6549
6550 path = btrfs_alloc_path();
6551 if (!path)
6552 return -ENOMEM;
6553
Li Zefanb367e472011-12-07 11:38:24 +08006554 mutex_lock(&uuid_mutex);
6555 lock_chunks(root);
6556
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006557 /*
6558 * Read all device items, and then all the chunk items. All
6559 * device items are found before any chunk item (their object id
6560 * is smaller than the lowest possible object id for a chunk
6561 * item - BTRFS_FIRST_CHUNK_TREE_OBJECTID).
Chris Mason0b86a832008-03-24 15:01:56 -04006562 */
6563 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
6564 key.offset = 0;
6565 key.type = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006566 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Zhao Leiab593812010-03-25 12:34:49 +00006567 if (ret < 0)
6568 goto error;
Chris Masond3977122009-01-05 21:25:51 -05006569 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04006570 leaf = path->nodes[0];
6571 slot = path->slots[0];
6572 if (slot >= btrfs_header_nritems(leaf)) {
6573 ret = btrfs_next_leaf(root, path);
6574 if (ret == 0)
6575 continue;
6576 if (ret < 0)
6577 goto error;
6578 break;
6579 }
6580 btrfs_item_key_to_cpu(leaf, &found_key, slot);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006581 if (found_key.type == BTRFS_DEV_ITEM_KEY) {
6582 struct btrfs_dev_item *dev_item;
6583 dev_item = btrfs_item_ptr(leaf, slot,
Chris Mason0b86a832008-03-24 15:01:56 -04006584 struct btrfs_dev_item);
Filipe David Borba Manana395927a2013-07-30 12:03:04 +01006585 ret = read_one_dev(root, leaf, dev_item);
6586 if (ret)
6587 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04006588 } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
6589 struct btrfs_chunk *chunk;
6590 chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
6591 ret = read_one_chunk(root, &found_key, leaf, chunk);
Yan Zheng2b820322008-11-17 21:11:30 -05006592 if (ret)
6593 goto error;
Chris Mason0b86a832008-03-24 15:01:56 -04006594 }
6595 path->slots[0]++;
6596 }
Chris Mason0b86a832008-03-24 15:01:56 -04006597 ret = 0;
6598error:
Li Zefanb367e472011-12-07 11:38:24 +08006599 unlock_chunks(root);
6600 mutex_unlock(&uuid_mutex);
6601
Yan Zheng2b820322008-11-17 21:11:30 -05006602 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04006603 return ret;
6604}
Stefan Behrens442a4f62012-05-25 16:06:08 +02006605
Miao Xiecb517ea2013-05-15 07:48:19 +00006606void btrfs_init_devices_late(struct btrfs_fs_info *fs_info)
6607{
6608 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6609 struct btrfs_device *device;
6610
Liu Bo29cc83f2014-05-11 23:14:59 +08006611 while (fs_devices) {
6612 mutex_lock(&fs_devices->device_list_mutex);
6613 list_for_each_entry(device, &fs_devices->devices, dev_list)
6614 device->dev_root = fs_info->dev_root;
6615 mutex_unlock(&fs_devices->device_list_mutex);
6616
6617 fs_devices = fs_devices->seed;
6618 }
Miao Xiecb517ea2013-05-15 07:48:19 +00006619}
6620
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006621static void __btrfs_reset_dev_stats(struct btrfs_device *dev)
6622{
6623 int i;
6624
6625 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6626 btrfs_dev_stat_reset(dev, i);
6627}
6628
6629int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info)
6630{
6631 struct btrfs_key key;
6632 struct btrfs_key found_key;
6633 struct btrfs_root *dev_root = fs_info->dev_root;
6634 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6635 struct extent_buffer *eb;
6636 int slot;
6637 int ret = 0;
6638 struct btrfs_device *device;
6639 struct btrfs_path *path = NULL;
6640 int i;
6641
6642 path = btrfs_alloc_path();
6643 if (!path) {
6644 ret = -ENOMEM;
6645 goto out;
6646 }
6647
6648 mutex_lock(&fs_devices->device_list_mutex);
6649 list_for_each_entry(device, &fs_devices->devices, dev_list) {
6650 int item_size;
6651 struct btrfs_dev_stats_item *ptr;
6652
6653 key.objectid = 0;
6654 key.type = BTRFS_DEV_STATS_KEY;
6655 key.offset = device->devid;
6656 ret = btrfs_search_slot(NULL, dev_root, &key, path, 0, 0);
6657 if (ret) {
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006658 __btrfs_reset_dev_stats(device);
6659 device->dev_stats_valid = 1;
6660 btrfs_release_path(path);
6661 continue;
6662 }
6663 slot = path->slots[0];
6664 eb = path->nodes[0];
6665 btrfs_item_key_to_cpu(eb, &found_key, slot);
6666 item_size = btrfs_item_size_nr(eb, slot);
6667
6668 ptr = btrfs_item_ptr(eb, slot,
6669 struct btrfs_dev_stats_item);
6670
6671 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
6672 if (item_size >= (1 + i) * sizeof(__le64))
6673 btrfs_dev_stat_set(device, i,
6674 btrfs_dev_stats_value(eb, ptr, i));
6675 else
6676 btrfs_dev_stat_reset(device, i);
6677 }
6678
6679 device->dev_stats_valid = 1;
6680 btrfs_dev_stat_print_on_load(device);
6681 btrfs_release_path(path);
6682 }
6683 mutex_unlock(&fs_devices->device_list_mutex);
6684
6685out:
6686 btrfs_free_path(path);
6687 return ret < 0 ? ret : 0;
6688}
6689
6690static int update_dev_stat_item(struct btrfs_trans_handle *trans,
6691 struct btrfs_root *dev_root,
6692 struct btrfs_device *device)
6693{
6694 struct btrfs_path *path;
6695 struct btrfs_key key;
6696 struct extent_buffer *eb;
6697 struct btrfs_dev_stats_item *ptr;
6698 int ret;
6699 int i;
6700
6701 key.objectid = 0;
6702 key.type = BTRFS_DEV_STATS_KEY;
6703 key.offset = device->devid;
6704
6705 path = btrfs_alloc_path();
6706 BUG_ON(!path);
6707 ret = btrfs_search_slot(trans, dev_root, &key, path, -1, 1);
6708 if (ret < 0) {
David Sterbaecaeb142015-10-08 09:01:03 +02006709 btrfs_warn_in_rcu(dev_root->fs_info,
6710 "error %d while searching for dev_stats item for device %s",
Josef Bacik606686e2012-06-04 14:03:51 -04006711 ret, rcu_str_deref(device->name));
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006712 goto out;
6713 }
6714
6715 if (ret == 0 &&
6716 btrfs_item_size_nr(path->nodes[0], path->slots[0]) < sizeof(*ptr)) {
6717 /* need to delete old one and insert a new one */
6718 ret = btrfs_del_item(trans, dev_root, path);
6719 if (ret != 0) {
David Sterbaecaeb142015-10-08 09:01:03 +02006720 btrfs_warn_in_rcu(dev_root->fs_info,
6721 "delete too small dev_stats item for device %s failed %d",
Josef Bacik606686e2012-06-04 14:03:51 -04006722 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006723 goto out;
6724 }
6725 ret = 1;
6726 }
6727
6728 if (ret == 1) {
6729 /* need to insert a new item */
6730 btrfs_release_path(path);
6731 ret = btrfs_insert_empty_item(trans, dev_root, path,
6732 &key, sizeof(*ptr));
6733 if (ret < 0) {
David Sterbaecaeb142015-10-08 09:01:03 +02006734 btrfs_warn_in_rcu(dev_root->fs_info,
6735 "insert dev_stats item for device %s failed %d",
6736 rcu_str_deref(device->name), ret);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006737 goto out;
6738 }
6739 }
6740
6741 eb = path->nodes[0];
6742 ptr = btrfs_item_ptr(eb, path->slots[0], struct btrfs_dev_stats_item);
6743 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6744 btrfs_set_dev_stats_value(eb, ptr, i,
6745 btrfs_dev_stat_read(device, i));
6746 btrfs_mark_buffer_dirty(eb);
6747
6748out:
6749 btrfs_free_path(path);
6750 return ret;
6751}
6752
6753/*
6754 * called from commit_transaction. Writes all changed device stats to disk.
6755 */
6756int btrfs_run_dev_stats(struct btrfs_trans_handle *trans,
6757 struct btrfs_fs_info *fs_info)
6758{
6759 struct btrfs_root *dev_root = fs_info->dev_root;
6760 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6761 struct btrfs_device *device;
Miao Xieaddc3fa2014-07-24 11:37:11 +08006762 int stats_cnt;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006763 int ret = 0;
6764
6765 mutex_lock(&fs_devices->device_list_mutex);
6766 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Miao Xieaddc3fa2014-07-24 11:37:11 +08006767 if (!device->dev_stats_valid || !btrfs_dev_stats_dirty(device))
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006768 continue;
6769
Miao Xieaddc3fa2014-07-24 11:37:11 +08006770 stats_cnt = atomic_read(&device->dev_stats_ccnt);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006771 ret = update_dev_stat_item(trans, dev_root, device);
6772 if (!ret)
Miao Xieaddc3fa2014-07-24 11:37:11 +08006773 atomic_sub(stats_cnt, &device->dev_stats_ccnt);
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006774 }
6775 mutex_unlock(&fs_devices->device_list_mutex);
6776
6777 return ret;
6778}
6779
Stefan Behrens442a4f62012-05-25 16:06:08 +02006780void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index)
6781{
6782 btrfs_dev_stat_inc(dev, index);
6783 btrfs_dev_stat_print_on_error(dev);
6784}
6785
Eric Sandeen48a3b632013-04-25 20:41:01 +00006786static void btrfs_dev_stat_print_on_error(struct btrfs_device *dev)
Stefan Behrens442a4f62012-05-25 16:06:08 +02006787{
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006788 if (!dev->dev_stats_valid)
6789 return;
David Sterbab14af3b2015-10-08 10:43:10 +02006790 btrfs_err_rl_in_rcu(dev->dev_root->fs_info,
6791 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04006792 rcu_str_deref(dev->name),
Stefan Behrens442a4f62012-05-25 16:06:08 +02006793 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
6794 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
6795 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
Frank Holtonefe120a2013-12-20 11:37:06 -05006796 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
6797 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
Stefan Behrens442a4f62012-05-25 16:06:08 +02006798}
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006799
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006800static void btrfs_dev_stat_print_on_load(struct btrfs_device *dev)
6801{
Stefan Behrensa98cdb82012-07-17 09:02:11 -06006802 int i;
6803
6804 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6805 if (btrfs_dev_stat_read(dev, i) != 0)
6806 break;
6807 if (i == BTRFS_DEV_STAT_VALUES_MAX)
6808 return; /* all values == 0, suppress message */
6809
David Sterbaecaeb142015-10-08 09:01:03 +02006810 btrfs_info_in_rcu(dev->dev_root->fs_info,
6811 "bdev %s errs: wr %u, rd %u, flush %u, corrupt %u, gen %u",
Josef Bacik606686e2012-06-04 14:03:51 -04006812 rcu_str_deref(dev->name),
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006813 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_WRITE_ERRS),
6814 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_READ_ERRS),
6815 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_FLUSH_ERRS),
6816 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_CORRUPTION_ERRS),
6817 btrfs_dev_stat_read(dev, BTRFS_DEV_STAT_GENERATION_ERRS));
6818}
6819
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006820int btrfs_get_dev_stats(struct btrfs_root *root,
David Sterbab27f7c02012-06-22 06:30:39 -06006821 struct btrfs_ioctl_get_dev_stats *stats)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006822{
6823 struct btrfs_device *dev;
6824 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
6825 int i;
6826
6827 mutex_lock(&fs_devices->device_list_mutex);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01006828 dev = btrfs_find_device(root->fs_info, stats->devid, NULL, NULL);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006829 mutex_unlock(&fs_devices->device_list_mutex);
6830
6831 if (!dev) {
Frank Holtonefe120a2013-12-20 11:37:06 -05006832 btrfs_warn(root->fs_info, "get dev_stats failed, device not found");
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006833 return -ENODEV;
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006834 } else if (!dev->dev_stats_valid) {
Frank Holtonefe120a2013-12-20 11:37:06 -05006835 btrfs_warn(root->fs_info, "get dev_stats failed, not yet valid");
Stefan Behrens733f4fb2012-05-25 16:06:10 +02006836 return -ENODEV;
David Sterbab27f7c02012-06-22 06:30:39 -06006837 } else if (stats->flags & BTRFS_DEV_STATS_RESET) {
Stefan Behrensc11d2c22012-05-25 16:06:09 +02006838 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++) {
6839 if (stats->nr_items > i)
6840 stats->values[i] =
6841 btrfs_dev_stat_read_and_reset(dev, i);
6842 else
6843 btrfs_dev_stat_reset(dev, i);
6844 }
6845 } else {
6846 for (i = 0; i < BTRFS_DEV_STAT_VALUES_MAX; i++)
6847 if (stats->nr_items > i)
6848 stats->values[i] = btrfs_dev_stat_read(dev, i);
6849 }
6850 if (stats->nr_items > BTRFS_DEV_STAT_VALUES_MAX)
6851 stats->nr_items = BTRFS_DEV_STAT_VALUES_MAX;
6852 return 0;
6853}
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006854
Anand Jain12b1c262015-08-14 18:32:59 +08006855void btrfs_scratch_superblocks(struct block_device *bdev, char *device_path)
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006856{
6857 struct buffer_head *bh;
6858 struct btrfs_super_block *disk_super;
Anand Jain12b1c262015-08-14 18:32:59 +08006859 int copy_num;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006860
Anand Jain12b1c262015-08-14 18:32:59 +08006861 if (!bdev)
6862 return;
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006863
Anand Jain12b1c262015-08-14 18:32:59 +08006864 for (copy_num = 0; copy_num < BTRFS_SUPER_MIRROR_MAX;
6865 copy_num++) {
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006866
Anand Jain12b1c262015-08-14 18:32:59 +08006867 if (btrfs_read_dev_one_super(bdev, copy_num, &bh))
6868 continue;
6869
6870 disk_super = (struct btrfs_super_block *)bh->b_data;
6871
6872 memset(&disk_super->magic, 0, sizeof(disk_super->magic));
6873 set_buffer_dirty(bh);
6874 sync_dirty_buffer(bh);
6875 brelse(bh);
6876 }
6877
6878 /* Notify udev that device has changed */
6879 btrfs_kobject_uevent(bdev, KOBJ_CHANGE);
6880
6881 /* Update ctime/mtime for device path for libblkid */
6882 update_dev_time(device_path);
Stefan Behrensa8a6dab2012-11-05 15:50:14 +01006883}
Miao Xie935e5cc2014-09-03 21:35:33 +08006884
6885/*
6886 * Update the size of all devices, which is used for writing out the
6887 * super blocks.
6888 */
6889void btrfs_update_commit_device_size(struct btrfs_fs_info *fs_info)
6890{
6891 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6892 struct btrfs_device *curr, *next;
6893
6894 if (list_empty(&fs_devices->resized_devices))
6895 return;
6896
6897 mutex_lock(&fs_devices->device_list_mutex);
6898 lock_chunks(fs_info->dev_root);
6899 list_for_each_entry_safe(curr, next, &fs_devices->resized_devices,
6900 resized_list) {
6901 list_del_init(&curr->resized_list);
6902 curr->commit_total_bytes = curr->disk_total_bytes;
6903 }
6904 unlock_chunks(fs_info->dev_root);
6905 mutex_unlock(&fs_devices->device_list_mutex);
6906}
Miao Xiece7213c2014-09-03 21:35:34 +08006907
6908/* Must be invoked during the transaction commit */
6909void btrfs_update_commit_device_bytes_used(struct btrfs_root *root,
6910 struct btrfs_transaction *transaction)
6911{
6912 struct extent_map *em;
6913 struct map_lookup *map;
6914 struct btrfs_device *dev;
6915 int i;
6916
6917 if (list_empty(&transaction->pending_chunks))
6918 return;
6919
6920 /* In order to kick the device replace finish process */
6921 lock_chunks(root);
6922 list_for_each_entry(em, &transaction->pending_chunks, list) {
Jeff Mahoney95617d62015-06-03 10:55:48 -04006923 map = em->map_lookup;
Miao Xiece7213c2014-09-03 21:35:34 +08006924
6925 for (i = 0; i < map->num_stripes; i++) {
6926 dev = map->stripes[i].dev;
6927 dev->commit_bytes_used = dev->bytes_used;
6928 }
6929 }
6930 unlock_chunks(root);
6931}
Anand Jain5a13f432015-03-10 06:38:31 +08006932
6933void btrfs_set_fs_info_ptr(struct btrfs_fs_info *fs_info)
6934{
6935 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6936 while (fs_devices) {
6937 fs_devices->fs_info = fs_info;
6938 fs_devices = fs_devices->seed;
6939 }
6940}
6941
6942void btrfs_reset_fs_info_ptr(struct btrfs_fs_info *fs_info)
6943{
6944 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
6945 while (fs_devices) {
6946 fs_devices->fs_info = NULL;
6947 fs_devices = fs_devices->seed;
6948 }
6949}
Anand Jainf190aa42015-08-14 18:33:05 +08006950
6951void btrfs_close_one_device(struct btrfs_device *device)
6952{
6953 struct btrfs_fs_devices *fs_devices = device->fs_devices;
6954 struct btrfs_device *new_device;
6955 struct rcu_string *name;
6956
6957 if (device->bdev)
6958 fs_devices->open_devices--;
6959
6960 if (device->writeable &&
6961 device->devid != BTRFS_DEV_REPLACE_DEVID) {
6962 list_del_init(&device->dev_alloc_list);
6963 fs_devices->rw_devices--;
6964 }
6965
6966 if (device->missing)
6967 fs_devices->missing_devices--;
6968
6969 new_device = btrfs_alloc_device(NULL, &device->devid,
6970 device->uuid);
6971 BUG_ON(IS_ERR(new_device)); /* -ENOMEM */
6972
6973 /* Safe because we are under uuid_mutex */
6974 if (device->name) {
6975 name = rcu_string_strdup(device->name->str, GFP_NOFS);
6976 BUG_ON(!name); /* -ENOMEM */
6977 rcu_assign_pointer(new_device->name, name);
6978 }
6979
6980 list_replace_rcu(&device->dev_list, &new_device->dev_list);
6981 new_device->fs_devices = device->fs_devices;
6982
6983 call_rcu(&device->rcu, free_device);
6984}