]> git.ipfire.org Git - people/ms/linux.git/blame - fs/btrfs/disk-io.c
Btrfs: set plug for fsync
[people/ms/linux.git] / fs / btrfs / disk-io.c
CommitLineData
6cbd5570
CM
1/*
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
e20d96d6 19#include <linux/fs.h>
d98237b3 20#include <linux/blkdev.h>
87cbda5c 21#include <linux/scatterlist.h>
22b0ebda 22#include <linux/swap.h>
0f7d52f4 23#include <linux/radix-tree.h>
35b7e476 24#include <linux/writeback.h>
d397712b 25#include <linux/buffer_head.h>
ce9adaa5 26#include <linux/workqueue.h>
a74a4b97 27#include <linux/kthread.h>
5a0e3ad6 28#include <linux/slab.h>
784b4e29 29#include <linux/migrate.h>
7a36ddec 30#include <linux/ratelimit.h>
6463fe58 31#include <linux/uuid.h>
803b2f54 32#include <linux/semaphore.h>
7e75bf3f 33#include <asm/unaligned.h>
eb60ceac
CM
34#include "ctree.h"
35#include "disk-io.h"
0b947aff 36#include "hash.h"
e089f05c 37#include "transaction.h"
0f7d52f4 38#include "btrfs_inode.h"
0b86a832 39#include "volumes.h"
db94535d 40#include "print-tree.h"
925baedd 41#include "locking.h"
e02119d5 42#include "tree-log.h"
fa9c0d79 43#include "free-space-cache.h"
70f6d82e 44#include "free-space-tree.h"
581bb050 45#include "inode-map.h"
21adbd5c 46#include "check-integrity.h"
606686ee 47#include "rcu-string.h"
8dabb742 48#include "dev-replace.h"
53b381b3 49#include "raid56.h"
5ac1d209 50#include "sysfs.h"
fcebe456 51#include "qgroup.h"
ebb8765b 52#include "compression.h"
557ea5dd 53#include "tree-checker.h"
fd708b81 54#include "ref-verify.h"
eb60ceac 55
de0022b9
JB
56#ifdef CONFIG_X86
57#include <asm/cpufeature.h>
58#endif
59
319e4d06
QW
60#define BTRFS_SUPER_FLAG_SUPP (BTRFS_HEADER_FLAG_WRITTEN |\
61 BTRFS_HEADER_FLAG_RELOC |\
62 BTRFS_SUPER_FLAG_ERROR |\
63 BTRFS_SUPER_FLAG_SEEDING |\
64 BTRFS_SUPER_FLAG_METADUMP)
65
e8c9f186 66static const struct extent_io_ops btree_extent_io_ops;
8b712842 67static void end_workqueue_fn(struct btrfs_work *work);
4df27c4d 68static void free_fs_root(struct btrfs_root *root);
3d3a126a 69static int btrfs_check_super_valid(struct btrfs_fs_info *fs_info);
143bede5 70static void btrfs_destroy_ordered_extents(struct btrfs_root *root);
acce952b 71static int btrfs_destroy_delayed_refs(struct btrfs_transaction *trans,
2ff7e61e 72 struct btrfs_fs_info *fs_info);
143bede5 73static void btrfs_destroy_delalloc_inodes(struct btrfs_root *root);
2ff7e61e 74static int btrfs_destroy_marked_extents(struct btrfs_fs_info *fs_info,
acce952b 75 struct extent_io_tree *dirty_pages,
76 int mark);
2ff7e61e 77static int btrfs_destroy_pinned_extent(struct btrfs_fs_info *fs_info,
acce952b 78 struct extent_io_tree *pinned_extents);
2ff7e61e
JM
79static int btrfs_cleanup_transaction(struct btrfs_fs_info *fs_info);
80static void btrfs_error_commit_super(struct btrfs_fs_info *fs_info);
ce9adaa5 81
d352ac68 82/*
97eb6b69
DS
83 * btrfs_end_io_wq structs are used to do processing in task context when an IO
84 * is complete. This is used during reads to verify checksums, and it is used
d352ac68
CM
85 * by writes to insert metadata for new file extents after IO is complete.
86 */
97eb6b69 87struct btrfs_end_io_wq {
ce9adaa5
CM
88 struct bio *bio;
89 bio_end_io_t *end_io;
90 void *private;
91 struct btrfs_fs_info *info;
4e4cbee9 92 blk_status_t status;
bfebd8b5 93 enum btrfs_wq_endio_type metadata;
8b712842 94 struct btrfs_work work;
ce9adaa5 95};
0da5468f 96
97eb6b69
DS
97static struct kmem_cache *btrfs_end_io_wq_cache;
98
99int __init btrfs_end_io_wq_init(void)
100{
101 btrfs_end_io_wq_cache = kmem_cache_create("btrfs_end_io_wq",
102 sizeof(struct btrfs_end_io_wq),
103 0,
fba4b697 104 SLAB_MEM_SPREAD,
97eb6b69
DS
105 NULL);
106 if (!btrfs_end_io_wq_cache)
107 return -ENOMEM;
108 return 0;
109}
110
111void btrfs_end_io_wq_exit(void)
112{
5598e900 113 kmem_cache_destroy(btrfs_end_io_wq_cache);
97eb6b69
DS
114}
115
d352ac68
CM
116/*
117 * async submit bios are used to offload expensive checksumming
118 * onto the worker threads. They checksum file and metadata bios
119 * just before they are sent down the IO stack.
120 */
44b8bd7e 121struct async_submit_bio {
c6100a4b
JB
122 void *private_data;
123 struct btrfs_fs_info *fs_info;
44b8bd7e 124 struct bio *bio;
4a69a410
CM
125 extent_submit_bio_hook_t *submit_bio_start;
126 extent_submit_bio_hook_t *submit_bio_done;
44b8bd7e 127 int mirror_num;
c8b97818 128 unsigned long bio_flags;
eaf25d93
CM
129 /*
130 * bio_offset is optional, can be used if the pages in the bio
131 * can't tell us where in the file the bio should go
132 */
133 u64 bio_offset;
8b712842 134 struct btrfs_work work;
4e4cbee9 135 blk_status_t status;
44b8bd7e
CM
136};
137
85d4e461
CM
138/*
139 * Lockdep class keys for extent_buffer->lock's in this root. For a given
140 * eb, the lockdep key is determined by the btrfs_root it belongs to and
141 * the level the eb occupies in the tree.
142 *
143 * Different roots are used for different purposes and may nest inside each
144 * other and they require separate keysets. As lockdep keys should be
145 * static, assign keysets according to the purpose of the root as indicated
146 * by btrfs_root->objectid. This ensures that all special purpose roots
147 * have separate keysets.
4008c04a 148 *
85d4e461
CM
149 * Lock-nesting across peer nodes is always done with the immediate parent
150 * node locked thus preventing deadlock. As lockdep doesn't know this, use
151 * subclass to avoid triggering lockdep warning in such cases.
4008c04a 152 *
85d4e461
CM
153 * The key is set by the readpage_end_io_hook after the buffer has passed
154 * csum validation but before the pages are unlocked. It is also set by
155 * btrfs_init_new_buffer on freshly allocated blocks.
4008c04a 156 *
85d4e461
CM
157 * We also add a check to make sure the highest level of the tree is the
158 * same as our lockdep setup here. If BTRFS_MAX_LEVEL changes, this code
159 * needs update as well.
4008c04a
CM
160 */
161#ifdef CONFIG_DEBUG_LOCK_ALLOC
162# if BTRFS_MAX_LEVEL != 8
163# error
164# endif
85d4e461
CM
165
166static struct btrfs_lockdep_keyset {
167 u64 id; /* root objectid */
168 const char *name_stem; /* lock name stem */
169 char names[BTRFS_MAX_LEVEL + 1][20];
170 struct lock_class_key keys[BTRFS_MAX_LEVEL + 1];
171} btrfs_lockdep_keysets[] = {
172 { .id = BTRFS_ROOT_TREE_OBJECTID, .name_stem = "root" },
173 { .id = BTRFS_EXTENT_TREE_OBJECTID, .name_stem = "extent" },
174 { .id = BTRFS_CHUNK_TREE_OBJECTID, .name_stem = "chunk" },
175 { .id = BTRFS_DEV_TREE_OBJECTID, .name_stem = "dev" },
176 { .id = BTRFS_FS_TREE_OBJECTID, .name_stem = "fs" },
177 { .id = BTRFS_CSUM_TREE_OBJECTID, .name_stem = "csum" },
60b62978 178 { .id = BTRFS_QUOTA_TREE_OBJECTID, .name_stem = "quota" },
85d4e461
CM
179 { .id = BTRFS_TREE_LOG_OBJECTID, .name_stem = "log" },
180 { .id = BTRFS_TREE_RELOC_OBJECTID, .name_stem = "treloc" },
181 { .id = BTRFS_DATA_RELOC_TREE_OBJECTID, .name_stem = "dreloc" },
13fd8da9 182 { .id = BTRFS_UUID_TREE_OBJECTID, .name_stem = "uuid" },
6b20e0ad 183 { .id = BTRFS_FREE_SPACE_TREE_OBJECTID, .name_stem = "free-space" },
85d4e461 184 { .id = 0, .name_stem = "tree" },
4008c04a 185};
85d4e461
CM
186
187void __init btrfs_init_lockdep(void)
188{
189 int i, j;
190
191 /* initialize lockdep class names */
192 for (i = 0; i < ARRAY_SIZE(btrfs_lockdep_keysets); i++) {
193 struct btrfs_lockdep_keyset *ks = &btrfs_lockdep_keysets[i];
194
195 for (j = 0; j < ARRAY_SIZE(ks->names); j++)
196 snprintf(ks->names[j], sizeof(ks->names[j]),
197 "btrfs-%s-%02d", ks->name_stem, j);
198 }
199}
200
201void btrfs_set_buffer_lockdep_class(u64 objectid, struct extent_buffer *eb,
202 int level)
203{
204 struct btrfs_lockdep_keyset *ks;
205
206 BUG_ON(level >= ARRAY_SIZE(ks->keys));
207
208 /* find the matching keyset, id 0 is the default entry */
209 for (ks = btrfs_lockdep_keysets; ks->id; ks++)
210 if (ks->id == objectid)
211 break;
212
213 lockdep_set_class_and_name(&eb->lock,
214 &ks->keys[level], ks->names[level]);
215}
216
4008c04a
CM
217#endif
218
d352ac68
CM
219/*
220 * extents on the btree inode are pretty simple, there's one extent
221 * that covers the entire device
222 */
6af49dbd 223struct extent_map *btree_get_extent(struct btrfs_inode *inode,
306e16ce 224 struct page *page, size_t pg_offset, u64 start, u64 len,
b2950863 225 int create)
7eccb903 226{
fc4f21b1
NB
227 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
228 struct extent_map_tree *em_tree = &inode->extent_tree;
5f39d397
CM
229 struct extent_map *em;
230 int ret;
231
890871be 232 read_lock(&em_tree->lock);
d1310b2e 233 em = lookup_extent_mapping(em_tree, start, len);
a061fc8d 234 if (em) {
0b246afa 235 em->bdev = fs_info->fs_devices->latest_bdev;
890871be 236 read_unlock(&em_tree->lock);
5f39d397 237 goto out;
a061fc8d 238 }
890871be 239 read_unlock(&em_tree->lock);
7b13b7b1 240
172ddd60 241 em = alloc_extent_map();
5f39d397
CM
242 if (!em) {
243 em = ERR_PTR(-ENOMEM);
244 goto out;
245 }
246 em->start = 0;
0afbaf8c 247 em->len = (u64)-1;
c8b97818 248 em->block_len = (u64)-1;
5f39d397 249 em->block_start = 0;
0b246afa 250 em->bdev = fs_info->fs_devices->latest_bdev;
d1310b2e 251
890871be 252 write_lock(&em_tree->lock);
09a2a8f9 253 ret = add_extent_mapping(em_tree, em, 0);
5f39d397
CM
254 if (ret == -EEXIST) {
255 free_extent_map(em);
7b13b7b1 256 em = lookup_extent_mapping(em_tree, start, len);
b4f359ab 257 if (!em)
0433f20d 258 em = ERR_PTR(-EIO);
5f39d397 259 } else if (ret) {
7b13b7b1 260 free_extent_map(em);
0433f20d 261 em = ERR_PTR(ret);
5f39d397 262 }
890871be 263 write_unlock(&em_tree->lock);
7b13b7b1 264
5f39d397
CM
265out:
266 return em;
7eccb903
CM
267}
268
9ed57367 269u32 btrfs_csum_data(const char *data, u32 seed, size_t len)
19c00ddc 270{
0b947aff 271 return btrfs_crc32c(seed, data, len);
19c00ddc
CM
272}
273
0b5e3daf 274void btrfs_csum_final(u32 crc, u8 *result)
19c00ddc 275{
7e75bf3f 276 put_unaligned_le32(~crc, result);
19c00ddc
CM
277}
278
d352ac68
CM
279/*
280 * compute the csum for a btree block, and either verify it or write it
281 * into the csum field of the block.
282 */
01d58472
DD
283static int csum_tree_block(struct btrfs_fs_info *fs_info,
284 struct extent_buffer *buf,
19c00ddc
CM
285 int verify)
286{
01d58472 287 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
607d432d 288 char *result = NULL;
19c00ddc
CM
289 unsigned long len;
290 unsigned long cur_len;
291 unsigned long offset = BTRFS_CSUM_SIZE;
19c00ddc
CM
292 char *kaddr;
293 unsigned long map_start;
294 unsigned long map_len;
295 int err;
296 u32 crc = ~(u32)0;
607d432d 297 unsigned long inline_result;
19c00ddc
CM
298
299 len = buf->len - offset;
d397712b 300 while (len > 0) {
19c00ddc 301 err = map_private_extent_buffer(buf, offset, 32,
a6591715 302 &kaddr, &map_start, &map_len);
d397712b 303 if (err)
8bd98f0e 304 return err;
19c00ddc 305 cur_len = min(len, map_len - (offset - map_start));
b0496686 306 crc = btrfs_csum_data(kaddr + offset - map_start,
19c00ddc
CM
307 crc, cur_len);
308 len -= cur_len;
309 offset += cur_len;
19c00ddc 310 }
607d432d 311 if (csum_size > sizeof(inline_result)) {
31e818fe 312 result = kzalloc(csum_size, GFP_NOFS);
607d432d 313 if (!result)
8bd98f0e 314 return -ENOMEM;
607d432d
JB
315 } else {
316 result = (char *)&inline_result;
317 }
318
19c00ddc
CM
319 btrfs_csum_final(crc, result);
320
321 if (verify) {
607d432d 322 if (memcmp_extent_buffer(buf, result, 0, csum_size)) {
e4204ded
CM
323 u32 val;
324 u32 found = 0;
607d432d 325 memcpy(&found, result, csum_size);
e4204ded 326
607d432d 327 read_extent_buffer(buf, &val, 0, csum_size);
94647322 328 btrfs_warn_rl(fs_info,
5d163e0e 329 "%s checksum verify failed on %llu wanted %X found %X level %d",
01d58472 330 fs_info->sb->s_id, buf->start,
efe120a0 331 val, found, btrfs_header_level(buf));
607d432d
JB
332 if (result != (char *)&inline_result)
333 kfree(result);
8bd98f0e 334 return -EUCLEAN;
19c00ddc
CM
335 }
336 } else {
607d432d 337 write_extent_buffer(buf, result, 0, csum_size);
19c00ddc 338 }
607d432d
JB
339 if (result != (char *)&inline_result)
340 kfree(result);
19c00ddc
CM
341 return 0;
342}
343
d352ac68
CM
344/*
345 * we can't consider a given block up to date unless the transid of the
346 * block matches the transid in the parent node's pointer. This is how we
347 * detect blocks that either didn't get written at all or got written
348 * in the wrong place.
349 */
1259ab75 350static int verify_parent_transid(struct extent_io_tree *io_tree,
b9fab919
CM
351 struct extent_buffer *eb, u64 parent_transid,
352 int atomic)
1259ab75 353{
2ac55d41 354 struct extent_state *cached_state = NULL;
1259ab75 355 int ret;
2755a0de 356 bool need_lock = (current->journal_info == BTRFS_SEND_TRANS_STUB);
1259ab75
CM
357
358 if (!parent_transid || btrfs_header_generation(eb) == parent_transid)
359 return 0;
360
b9fab919
CM
361 if (atomic)
362 return -EAGAIN;
363
a26e8c9f
JB
364 if (need_lock) {
365 btrfs_tree_read_lock(eb);
366 btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK);
367 }
368
2ac55d41 369 lock_extent_bits(io_tree, eb->start, eb->start + eb->len - 1,
ff13db41 370 &cached_state);
0b32f4bb 371 if (extent_buffer_uptodate(eb) &&
1259ab75
CM
372 btrfs_header_generation(eb) == parent_transid) {
373 ret = 0;
374 goto out;
375 }
94647322
DS
376 btrfs_err_rl(eb->fs_info,
377 "parent transid verify failed on %llu wanted %llu found %llu",
378 eb->start,
29549aec 379 parent_transid, btrfs_header_generation(eb));
1259ab75 380 ret = 1;
a26e8c9f
JB
381
382 /*
383 * Things reading via commit roots that don't have normal protection,
384 * like send, can have a really old block in cache that may point at a
01327610 385 * block that has been freed and re-allocated. So don't clear uptodate
a26e8c9f
JB
386 * if we find an eb that is under IO (dirty/writeback) because we could
387 * end up reading in the stale data and then writing it back out and
388 * making everybody very sad.
389 */
390 if (!extent_buffer_under_io(eb))
391 clear_extent_buffer_uptodate(eb);
33958dc6 392out:
2ac55d41
JB
393 unlock_extent_cached(io_tree, eb->start, eb->start + eb->len - 1,
394 &cached_state, GFP_NOFS);
472b909f
JB
395 if (need_lock)
396 btrfs_tree_read_unlock_blocking(eb);
1259ab75 397 return ret;
1259ab75
CM
398}
399
1104a885
DS
400/*
401 * Return 0 if the superblock checksum type matches the checksum value of that
402 * algorithm. Pass the raw disk superblock data.
403 */
ab8d0fc4
JM
404static int btrfs_check_super_csum(struct btrfs_fs_info *fs_info,
405 char *raw_disk_sb)
1104a885
DS
406{
407 struct btrfs_super_block *disk_sb =
408 (struct btrfs_super_block *)raw_disk_sb;
409 u16 csum_type = btrfs_super_csum_type(disk_sb);
410 int ret = 0;
411
412 if (csum_type == BTRFS_CSUM_TYPE_CRC32) {
413 u32 crc = ~(u32)0;
414 const int csum_size = sizeof(crc);
415 char result[csum_size];
416
417 /*
418 * The super_block structure does not span the whole
419 * BTRFS_SUPER_INFO_SIZE range, we expect that the unused space
01327610 420 * is filled with zeros and is included in the checksum.
1104a885
DS
421 */
422 crc = btrfs_csum_data(raw_disk_sb + BTRFS_CSUM_SIZE,
423 crc, BTRFS_SUPER_INFO_SIZE - BTRFS_CSUM_SIZE);
424 btrfs_csum_final(crc, result);
425
426 if (memcmp(raw_disk_sb, result, csum_size))
427 ret = 1;
428 }
429
430 if (csum_type >= ARRAY_SIZE(btrfs_csum_sizes)) {
ab8d0fc4 431 btrfs_err(fs_info, "unsupported checksum algorithm %u",
1104a885
DS
432 csum_type);
433 ret = 1;
434 }
435
436 return ret;
437}
438
d352ac68
CM
439/*
440 * helper to read a given tree block, doing retries as required when
441 * the checksums don't match and we have alternate mirrors to try.
442 */
2ff7e61e 443static int btree_read_extent_buffer_pages(struct btrfs_fs_info *fs_info,
f188591e 444 struct extent_buffer *eb,
8436ea91 445 u64 parent_transid)
f188591e
CM
446{
447 struct extent_io_tree *io_tree;
ea466794 448 int failed = 0;
f188591e
CM
449 int ret;
450 int num_copies = 0;
451 int mirror_num = 0;
ea466794 452 int failed_mirror = 0;
f188591e 453
a826d6dc 454 clear_bit(EXTENT_BUFFER_CORRUPT, &eb->bflags);
0b246afa 455 io_tree = &BTRFS_I(fs_info->btree_inode)->io_tree;
f188591e 456 while (1) {
8436ea91 457 ret = read_extent_buffer_pages(io_tree, eb, WAIT_COMPLETE,
6af49dbd 458 mirror_num);
256dd1bb
SB
459 if (!ret) {
460 if (!verify_parent_transid(io_tree, eb,
b9fab919 461 parent_transid, 0))
256dd1bb
SB
462 break;
463 else
464 ret = -EIO;
465 }
d397712b 466
a826d6dc
JB
467 /*
468 * This buffer's crc is fine, but its contents are corrupted, so
469 * there is no reason to read the other copies, they won't be
470 * any less wrong.
471 */
472 if (test_bit(EXTENT_BUFFER_CORRUPT, &eb->bflags))
ea466794
JB
473 break;
474
0b246afa 475 num_copies = btrfs_num_copies(fs_info,
f188591e 476 eb->start, eb->len);
4235298e 477 if (num_copies == 1)
ea466794 478 break;
4235298e 479
5cf1ab56
JB
480 if (!failed_mirror) {
481 failed = 1;
482 failed_mirror = eb->read_mirror;
483 }
484
f188591e 485 mirror_num++;
ea466794
JB
486 if (mirror_num == failed_mirror)
487 mirror_num++;
488
4235298e 489 if (mirror_num > num_copies)
ea466794 490 break;
f188591e 491 }
ea466794 492
c0901581 493 if (failed && !ret && failed_mirror)
2ff7e61e 494 repair_eb_io_failure(fs_info, eb, failed_mirror);
ea466794
JB
495
496 return ret;
f188591e 497}
19c00ddc 498
d352ac68 499/*
d397712b
CM
500 * checksum a dirty tree block before IO. This has extra checks to make sure
501 * we only fill in the checksum field in the first page of a multi-page block
d352ac68 502 */
d397712b 503
01d58472 504static int csum_dirty_buffer(struct btrfs_fs_info *fs_info, struct page *page)
19c00ddc 505{
4eee4fa4 506 u64 start = page_offset(page);
19c00ddc 507 u64 found_start;
19c00ddc 508 struct extent_buffer *eb;
f188591e 509
4f2de97a
JB
510 eb = (struct extent_buffer *)page->private;
511 if (page != eb->pages[0])
512 return 0;
0f805531 513
19c00ddc 514 found_start = btrfs_header_bytenr(eb);
0f805531
AL
515 /*
516 * Please do not consolidate these warnings into a single if.
517 * It is useful to know what went wrong.
518 */
519 if (WARN_ON(found_start != start))
520 return -EUCLEAN;
521 if (WARN_ON(!PageUptodate(page)))
522 return -EUCLEAN;
523
524 ASSERT(memcmp_extent_buffer(eb, fs_info->fsid,
525 btrfs_header_fsid(), BTRFS_FSID_SIZE) == 0);
526
8bd98f0e 527 return csum_tree_block(fs_info, eb, 0);
19c00ddc
CM
528}
529
01d58472 530static int check_tree_block_fsid(struct btrfs_fs_info *fs_info,
2b82032c
YZ
531 struct extent_buffer *eb)
532{
01d58472 533 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
44880fdc 534 u8 fsid[BTRFS_FSID_SIZE];
2b82032c
YZ
535 int ret = 1;
536
0a4e5586 537 read_extent_buffer(eb, fsid, btrfs_header_fsid(), BTRFS_FSID_SIZE);
2b82032c
YZ
538 while (fs_devices) {
539 if (!memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE)) {
540 ret = 0;
541 break;
542 }
543 fs_devices = fs_devices->seed;
544 }
545 return ret;
546}
547
facc8a22
MX
548static int btree_readpage_end_io_hook(struct btrfs_io_bio *io_bio,
549 u64 phy_offset, struct page *page,
550 u64 start, u64 end, int mirror)
ce9adaa5 551{
ce9adaa5
CM
552 u64 found_start;
553 int found_level;
ce9adaa5
CM
554 struct extent_buffer *eb;
555 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
02873e43 556 struct btrfs_fs_info *fs_info = root->fs_info;
f188591e 557 int ret = 0;
727011e0 558 int reads_done;
ce9adaa5 559
ce9adaa5
CM
560 if (!page->private)
561 goto out;
d397712b 562
4f2de97a 563 eb = (struct extent_buffer *)page->private;
d397712b 564
0b32f4bb
JB
565 /* the pending IO might have been the only thing that kept this buffer
566 * in memory. Make sure we have a ref for all this other checks
567 */
568 extent_buffer_get(eb);
569
570 reads_done = atomic_dec_and_test(&eb->io_pages);
727011e0
CM
571 if (!reads_done)
572 goto err;
f188591e 573
5cf1ab56 574 eb->read_mirror = mirror;
656f30db 575 if (test_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags)) {
ea466794
JB
576 ret = -EIO;
577 goto err;
578 }
579
ce9adaa5 580 found_start = btrfs_header_bytenr(eb);
727011e0 581 if (found_start != eb->start) {
02873e43
ZL
582 btrfs_err_rl(fs_info, "bad tree block start %llu %llu",
583 found_start, eb->start);
f188591e 584 ret = -EIO;
ce9adaa5
CM
585 goto err;
586 }
02873e43
ZL
587 if (check_tree_block_fsid(fs_info, eb)) {
588 btrfs_err_rl(fs_info, "bad fsid on block %llu",
589 eb->start);
1259ab75
CM
590 ret = -EIO;
591 goto err;
592 }
ce9adaa5 593 found_level = btrfs_header_level(eb);
1c24c3ce 594 if (found_level >= BTRFS_MAX_LEVEL) {
02873e43
ZL
595 btrfs_err(fs_info, "bad tree block level %d",
596 (int)btrfs_header_level(eb));
1c24c3ce
JB
597 ret = -EIO;
598 goto err;
599 }
ce9adaa5 600
85d4e461
CM
601 btrfs_set_buffer_lockdep_class(btrfs_header_owner(eb),
602 eb, found_level);
4008c04a 603
02873e43 604 ret = csum_tree_block(fs_info, eb, 1);
8bd98f0e 605 if (ret)
a826d6dc 606 goto err;
a826d6dc
JB
607
608 /*
609 * If this is a leaf block and it is corrupt, set the corrupt bit so
610 * that we don't try and read the other copies of this block, just
611 * return -EIO.
612 */
69fc6cbb 613 if (found_level == 0 && btrfs_check_leaf_full(root, eb)) {
a826d6dc
JB
614 set_bit(EXTENT_BUFFER_CORRUPT, &eb->bflags);
615 ret = -EIO;
616 }
ce9adaa5 617
557ea5dd 618 if (found_level > 0 && btrfs_check_node(root, eb))
053ab70f
LB
619 ret = -EIO;
620
0b32f4bb
JB
621 if (!ret)
622 set_extent_buffer_uptodate(eb);
ce9adaa5 623err:
79fb65a1
JB
624 if (reads_done &&
625 test_and_clear_bit(EXTENT_BUFFER_READAHEAD, &eb->bflags))
d48d71aa 626 btree_readahead_hook(eb, ret);
4bb31e92 627
53b381b3
DW
628 if (ret) {
629 /*
630 * our io error hook is going to dec the io pages
631 * again, we have to make sure it has something
632 * to decrement
633 */
634 atomic_inc(&eb->io_pages);
0b32f4bb 635 clear_extent_buffer_uptodate(eb);
53b381b3 636 }
0b32f4bb 637 free_extent_buffer(eb);
ce9adaa5 638out:
f188591e 639 return ret;
ce9adaa5
CM
640}
641
ea466794 642static int btree_io_failed_hook(struct page *page, int failed_mirror)
4bb31e92 643{
4bb31e92 644 struct extent_buffer *eb;
4bb31e92 645
4f2de97a 646 eb = (struct extent_buffer *)page->private;
656f30db 647 set_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
5cf1ab56 648 eb->read_mirror = failed_mirror;
53b381b3 649 atomic_dec(&eb->io_pages);
ea466794 650 if (test_and_clear_bit(EXTENT_BUFFER_READAHEAD, &eb->bflags))
d48d71aa 651 btree_readahead_hook(eb, -EIO);
4bb31e92
AJ
652 return -EIO; /* we fixed nothing */
653}
654
4246a0b6 655static void end_workqueue_bio(struct bio *bio)
ce9adaa5 656{
97eb6b69 657 struct btrfs_end_io_wq *end_io_wq = bio->bi_private;
ce9adaa5 658 struct btrfs_fs_info *fs_info;
9e0af237
LB
659 struct btrfs_workqueue *wq;
660 btrfs_work_func_t func;
ce9adaa5 661
ce9adaa5 662 fs_info = end_io_wq->info;
4e4cbee9 663 end_io_wq->status = bio->bi_status;
d20f7043 664
37226b21 665 if (bio_op(bio) == REQ_OP_WRITE) {
9e0af237
LB
666 if (end_io_wq->metadata == BTRFS_WQ_ENDIO_METADATA) {
667 wq = fs_info->endio_meta_write_workers;
668 func = btrfs_endio_meta_write_helper;
669 } else if (end_io_wq->metadata == BTRFS_WQ_ENDIO_FREE_SPACE) {
670 wq = fs_info->endio_freespace_worker;
671 func = btrfs_freespace_write_helper;
672 } else if (end_io_wq->metadata == BTRFS_WQ_ENDIO_RAID56) {
673 wq = fs_info->endio_raid56_workers;
674 func = btrfs_endio_raid56_helper;
675 } else {
676 wq = fs_info->endio_write_workers;
677 func = btrfs_endio_write_helper;
678 }
d20f7043 679 } else {
8b110e39
MX
680 if (unlikely(end_io_wq->metadata ==
681 BTRFS_WQ_ENDIO_DIO_REPAIR)) {
682 wq = fs_info->endio_repair_workers;
683 func = btrfs_endio_repair_helper;
684 } else if (end_io_wq->metadata == BTRFS_WQ_ENDIO_RAID56) {
9e0af237
LB
685 wq = fs_info->endio_raid56_workers;
686 func = btrfs_endio_raid56_helper;
687 } else if (end_io_wq->metadata) {
688 wq = fs_info->endio_meta_workers;
689 func = btrfs_endio_meta_helper;
690 } else {
691 wq = fs_info->endio_workers;
692 func = btrfs_endio_helper;
693 }
d20f7043 694 }
9e0af237
LB
695
696 btrfs_init_work(&end_io_wq->work, func, end_workqueue_fn, NULL, NULL);
697 btrfs_queue_work(wq, &end_io_wq->work);
ce9adaa5
CM
698}
699
4e4cbee9 700blk_status_t btrfs_bio_wq_end_io(struct btrfs_fs_info *info, struct bio *bio,
bfebd8b5 701 enum btrfs_wq_endio_type metadata)
0b86a832 702{
97eb6b69 703 struct btrfs_end_io_wq *end_io_wq;
8b110e39 704
97eb6b69 705 end_io_wq = kmem_cache_alloc(btrfs_end_io_wq_cache, GFP_NOFS);
ce9adaa5 706 if (!end_io_wq)
4e4cbee9 707 return BLK_STS_RESOURCE;
ce9adaa5
CM
708
709 end_io_wq->private = bio->bi_private;
710 end_io_wq->end_io = bio->bi_end_io;
22c59948 711 end_io_wq->info = info;
4e4cbee9 712 end_io_wq->status = 0;
ce9adaa5 713 end_io_wq->bio = bio;
22c59948 714 end_io_wq->metadata = metadata;
ce9adaa5
CM
715
716 bio->bi_private = end_io_wq;
717 bio->bi_end_io = end_workqueue_bio;
22c59948
CM
718 return 0;
719}
720
b64a2851 721unsigned long btrfs_async_submit_limit(struct btrfs_fs_info *info)
0986fe9e 722{
4854ddd0 723 unsigned long limit = min_t(unsigned long,
5cdc7ad3 724 info->thread_pool_size,
4854ddd0
CM
725 info->fs_devices->open_devices);
726 return 256 * limit;
727}
0986fe9e 728
4a69a410
CM
729static void run_one_async_start(struct btrfs_work *work)
730{
4a69a410 731 struct async_submit_bio *async;
4e4cbee9 732 blk_status_t ret;
4a69a410
CM
733
734 async = container_of(work, struct async_submit_bio, work);
c6100a4b 735 ret = async->submit_bio_start(async->private_data, async->bio,
79787eaa
JM
736 async->mirror_num, async->bio_flags,
737 async->bio_offset);
738 if (ret)
4e4cbee9 739 async->status = ret;
4a69a410
CM
740}
741
742static void run_one_async_done(struct btrfs_work *work)
8b712842 743{
8b712842
CM
744 struct async_submit_bio *async;
745
746 async = container_of(work, struct async_submit_bio, work);
4854ddd0 747
bb7ab3b9 748 /* If an error occurred we just want to clean up the bio and move on */
4e4cbee9
CH
749 if (async->status) {
750 async->bio->bi_status = async->status;
4246a0b6 751 bio_endio(async->bio);
79787eaa
JM
752 return;
753 }
754
c6100a4b 755 async->submit_bio_done(async->private_data, async->bio, async->mirror_num,
81a75f67 756 async->bio_flags, async->bio_offset);
4a69a410
CM
757}
758
759static void run_one_async_free(struct btrfs_work *work)
760{
761 struct async_submit_bio *async;
762
763 async = container_of(work, struct async_submit_bio, work);
8b712842
CM
764 kfree(async);
765}
766
8c27cb35
LT
767blk_status_t btrfs_wq_submit_bio(struct btrfs_fs_info *fs_info, struct bio *bio,
768 int mirror_num, unsigned long bio_flags,
769 u64 bio_offset, void *private_data,
770 extent_submit_bio_hook_t *submit_bio_start,
771 extent_submit_bio_hook_t *submit_bio_done)
44b8bd7e
CM
772{
773 struct async_submit_bio *async;
774
775 async = kmalloc(sizeof(*async), GFP_NOFS);
776 if (!async)
4e4cbee9 777 return BLK_STS_RESOURCE;
44b8bd7e 778
c6100a4b
JB
779 async->private_data = private_data;
780 async->fs_info = fs_info;
44b8bd7e
CM
781 async->bio = bio;
782 async->mirror_num = mirror_num;
4a69a410
CM
783 async->submit_bio_start = submit_bio_start;
784 async->submit_bio_done = submit_bio_done;
785
9e0af237 786 btrfs_init_work(&async->work, btrfs_worker_helper, run_one_async_start,
5cdc7ad3 787 run_one_async_done, run_one_async_free);
4a69a410 788
c8b97818 789 async->bio_flags = bio_flags;
eaf25d93 790 async->bio_offset = bio_offset;
8c8bee1d 791
4e4cbee9 792 async->status = 0;
79787eaa 793
67f055c7 794 if (op_is_sync(bio->bi_opf))
5cdc7ad3 795 btrfs_set_work_high_priority(&async->work);
d313d7a3 796
5cdc7ad3 797 btrfs_queue_work(fs_info->workers, &async->work);
44b8bd7e
CM
798 return 0;
799}
800
4e4cbee9 801static blk_status_t btree_csum_one_bio(struct bio *bio)
ce3ed71a 802{
2c30c71b 803 struct bio_vec *bvec;
ce3ed71a 804 struct btrfs_root *root;
2c30c71b 805 int i, ret = 0;
ce3ed71a 806
c09abff8 807 ASSERT(!bio_flagged(bio, BIO_CLONED));
2c30c71b 808 bio_for_each_segment_all(bvec, bio, i) {
ce3ed71a 809 root = BTRFS_I(bvec->bv_page->mapping->host)->root;
01d58472 810 ret = csum_dirty_buffer(root->fs_info, bvec->bv_page);
79787eaa
JM
811 if (ret)
812 break;
ce3ed71a 813 }
2c30c71b 814
4e4cbee9 815 return errno_to_blk_status(ret);
ce3ed71a
CM
816}
817
8c27cb35
LT
818static blk_status_t __btree_submit_bio_start(void *private_data, struct bio *bio,
819 int mirror_num, unsigned long bio_flags,
820 u64 bio_offset)
22c59948 821{
8b712842
CM
822 /*
823 * when we're called for a write, we're already in the async
5443be45 824 * submission context. Just jump into btrfs_map_bio
8b712842 825 */
79787eaa 826 return btree_csum_one_bio(bio);
4a69a410 827}
22c59948 828
8c27cb35
LT
829static blk_status_t __btree_submit_bio_done(void *private_data, struct bio *bio,
830 int mirror_num, unsigned long bio_flags,
831 u64 bio_offset)
4a69a410 832{
c6100a4b 833 struct inode *inode = private_data;
4e4cbee9 834 blk_status_t ret;
61891923 835
8b712842 836 /*
4a69a410
CM
837 * when we're called for a write, we're already in the async
838 * submission context. Just jump into btrfs_map_bio
8b712842 839 */
2ff7e61e 840 ret = btrfs_map_bio(btrfs_sb(inode->i_sb), bio, mirror_num, 1);
4246a0b6 841 if (ret) {
4e4cbee9 842 bio->bi_status = ret;
4246a0b6
CH
843 bio_endio(bio);
844 }
61891923 845 return ret;
0b86a832
CM
846}
847
18fdc679 848static int check_async_write(struct btrfs_inode *bi)
de0022b9 849{
6300463b
LB
850 if (atomic_read(&bi->sync_writers))
851 return 0;
de0022b9 852#ifdef CONFIG_X86
bc696ca0 853 if (static_cpu_has(X86_FEATURE_XMM4_2))
de0022b9
JB
854 return 0;
855#endif
856 return 1;
857}
858
8c27cb35
LT
859static blk_status_t btree_submit_bio_hook(void *private_data, struct bio *bio,
860 int mirror_num, unsigned long bio_flags,
861 u64 bio_offset)
44b8bd7e 862{
c6100a4b 863 struct inode *inode = private_data;
0b246afa 864 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
18fdc679 865 int async = check_async_write(BTRFS_I(inode));
4e4cbee9 866 blk_status_t ret;
cad321ad 867
37226b21 868 if (bio_op(bio) != REQ_OP_WRITE) {
4a69a410
CM
869 /*
870 * called for a read, do the setup so that checksum validation
871 * can happen in the async kernel threads
872 */
0b246afa
JM
873 ret = btrfs_bio_wq_end_io(fs_info, bio,
874 BTRFS_WQ_ENDIO_METADATA);
1d4284bd 875 if (ret)
61891923 876 goto out_w_error;
2ff7e61e 877 ret = btrfs_map_bio(fs_info, bio, mirror_num, 0);
de0022b9
JB
878 } else if (!async) {
879 ret = btree_csum_one_bio(bio);
880 if (ret)
61891923 881 goto out_w_error;
2ff7e61e 882 ret = btrfs_map_bio(fs_info, bio, mirror_num, 0);
61891923
SB
883 } else {
884 /*
885 * kthread helpers are used to submit writes so that
886 * checksumming can happen in parallel across all CPUs
887 */
c6100a4b
JB
888 ret = btrfs_wq_submit_bio(fs_info, bio, mirror_num, 0,
889 bio_offset, private_data,
61891923
SB
890 __btree_submit_bio_start,
891 __btree_submit_bio_done);
44b8bd7e 892 }
d313d7a3 893
4246a0b6
CH
894 if (ret)
895 goto out_w_error;
896 return 0;
897
61891923 898out_w_error:
4e4cbee9 899 bio->bi_status = ret;
4246a0b6 900 bio_endio(bio);
61891923 901 return ret;
44b8bd7e
CM
902}
903
3dd1462e 904#ifdef CONFIG_MIGRATION
784b4e29 905static int btree_migratepage(struct address_space *mapping,
a6bc32b8
MG
906 struct page *newpage, struct page *page,
907 enum migrate_mode mode)
784b4e29
CM
908{
909 /*
910 * we can't safely write a btree page from here,
911 * we haven't done the locking hook
912 */
913 if (PageDirty(page))
914 return -EAGAIN;
915 /*
916 * Buffers may be managed in a filesystem specific way.
917 * We must have no buffers or drop them.
918 */
919 if (page_has_private(page) &&
920 !try_to_release_page(page, GFP_KERNEL))
921 return -EAGAIN;
a6bc32b8 922 return migrate_page(mapping, newpage, page, mode);
784b4e29 923}
3dd1462e 924#endif
784b4e29 925
0da5468f
CM
926
927static int btree_writepages(struct address_space *mapping,
928 struct writeback_control *wbc)
929{
e2d84521
MX
930 struct btrfs_fs_info *fs_info;
931 int ret;
932
d8d5f3e1 933 if (wbc->sync_mode == WB_SYNC_NONE) {
448d640b
CM
934
935 if (wbc->for_kupdate)
936 return 0;
937
e2d84521 938 fs_info = BTRFS_I(mapping->host)->root->fs_info;
b9473439 939 /* this is a bit racy, but that's ok */
e2d84521
MX
940 ret = percpu_counter_compare(&fs_info->dirty_metadata_bytes,
941 BTRFS_DIRTY_METADATA_THRESH);
942 if (ret < 0)
793955bc 943 return 0;
793955bc 944 }
0b32f4bb 945 return btree_write_cache_pages(mapping, wbc);
0da5468f
CM
946}
947
b2950863 948static int btree_readpage(struct file *file, struct page *page)
5f39d397 949{
d1310b2e
CM
950 struct extent_io_tree *tree;
951 tree = &BTRFS_I(page->mapping->host)->io_tree;
8ddc7d9c 952 return extent_read_full_page(tree, page, btree_get_extent, 0);
5f39d397 953}
22b0ebda 954
70dec807 955static int btree_releasepage(struct page *page, gfp_t gfp_flags)
5f39d397 956{
98509cfc 957 if (PageWriteback(page) || PageDirty(page))
d397712b 958 return 0;
0c4e538b 959
f7a52a40 960 return try_release_extent_buffer(page);
d98237b3
CM
961}
962
d47992f8
LC
963static void btree_invalidatepage(struct page *page, unsigned int offset,
964 unsigned int length)
d98237b3 965{
d1310b2e
CM
966 struct extent_io_tree *tree;
967 tree = &BTRFS_I(page->mapping->host)->io_tree;
5f39d397
CM
968 extent_invalidatepage(tree, page, offset);
969 btree_releasepage(page, GFP_NOFS);
9ad6b7bc 970 if (PagePrivate(page)) {
efe120a0
FH
971 btrfs_warn(BTRFS_I(page->mapping->host)->root->fs_info,
972 "page private not zero on page %llu",
973 (unsigned long long)page_offset(page));
9ad6b7bc
CM
974 ClearPagePrivate(page);
975 set_page_private(page, 0);
09cbfeaf 976 put_page(page);
9ad6b7bc 977 }
d98237b3
CM
978}
979
0b32f4bb
JB
980static int btree_set_page_dirty(struct page *page)
981{
bb146eb2 982#ifdef DEBUG
0b32f4bb
JB
983 struct extent_buffer *eb;
984
985 BUG_ON(!PagePrivate(page));
986 eb = (struct extent_buffer *)page->private;
987 BUG_ON(!eb);
988 BUG_ON(!test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
989 BUG_ON(!atomic_read(&eb->refs));
990 btrfs_assert_tree_locked(eb);
bb146eb2 991#endif
0b32f4bb
JB
992 return __set_page_dirty_nobuffers(page);
993}
994
7f09410b 995static const struct address_space_operations btree_aops = {
d98237b3 996 .readpage = btree_readpage,
0da5468f 997 .writepages = btree_writepages,
5f39d397
CM
998 .releasepage = btree_releasepage,
999 .invalidatepage = btree_invalidatepage,
5a92bc88 1000#ifdef CONFIG_MIGRATION
784b4e29 1001 .migratepage = btree_migratepage,
5a92bc88 1002#endif
0b32f4bb 1003 .set_page_dirty = btree_set_page_dirty,
d98237b3
CM
1004};
1005
2ff7e61e 1006void readahead_tree_block(struct btrfs_fs_info *fs_info, u64 bytenr)
090d1875 1007{
5f39d397 1008 struct extent_buffer *buf = NULL;
2ff7e61e 1009 struct inode *btree_inode = fs_info->btree_inode;
090d1875 1010
2ff7e61e 1011 buf = btrfs_find_create_tree_block(fs_info, bytenr);
c871b0f2 1012 if (IS_ERR(buf))
6197d86e 1013 return;
d1310b2e 1014 read_extent_buffer_pages(&BTRFS_I(btree_inode)->io_tree,
6af49dbd 1015 buf, WAIT_NONE, 0);
5f39d397 1016 free_extent_buffer(buf);
090d1875
CM
1017}
1018
2ff7e61e 1019int reada_tree_block_flagged(struct btrfs_fs_info *fs_info, u64 bytenr,
ab0fff03
AJ
1020 int mirror_num, struct extent_buffer **eb)
1021{
1022 struct extent_buffer *buf = NULL;
2ff7e61e 1023 struct inode *btree_inode = fs_info->btree_inode;
ab0fff03
AJ
1024 struct extent_io_tree *io_tree = &BTRFS_I(btree_inode)->io_tree;
1025 int ret;
1026
2ff7e61e 1027 buf = btrfs_find_create_tree_block(fs_info, bytenr);
c871b0f2 1028 if (IS_ERR(buf))
ab0fff03
AJ
1029 return 0;
1030
1031 set_bit(EXTENT_BUFFER_READAHEAD, &buf->bflags);
1032
8436ea91 1033 ret = read_extent_buffer_pages(io_tree, buf, WAIT_PAGE_LOCK,
6af49dbd 1034 mirror_num);
ab0fff03
AJ
1035 if (ret) {
1036 free_extent_buffer(buf);
1037 return ret;
1038 }
1039
1040 if (test_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags)) {
1041 free_extent_buffer(buf);
1042 return -EIO;
0b32f4bb 1043 } else if (extent_buffer_uptodate(buf)) {
ab0fff03
AJ
1044 *eb = buf;
1045 } else {
1046 free_extent_buffer(buf);
1047 }
1048 return 0;
1049}
1050
2ff7e61e
JM
1051struct extent_buffer *btrfs_find_create_tree_block(
1052 struct btrfs_fs_info *fs_info,
1053 u64 bytenr)
0999df54 1054{
0b246afa
JM
1055 if (btrfs_is_testing(fs_info))
1056 return alloc_test_extent_buffer(fs_info, bytenr);
1057 return alloc_extent_buffer(fs_info, bytenr);
0999df54
CM
1058}
1059
1060
e02119d5
CM
1061int btrfs_write_tree_block(struct extent_buffer *buf)
1062{
727011e0 1063 return filemap_fdatawrite_range(buf->pages[0]->mapping, buf->start,
8aa38c31 1064 buf->start + buf->len - 1);
e02119d5
CM
1065}
1066
3189ff77 1067void btrfs_wait_tree_block_writeback(struct extent_buffer *buf)
e02119d5 1068{
3189ff77
JL
1069 filemap_fdatawait_range(buf->pages[0]->mapping,
1070 buf->start, buf->start + buf->len - 1);
e02119d5
CM
1071}
1072
2ff7e61e 1073struct extent_buffer *read_tree_block(struct btrfs_fs_info *fs_info, u64 bytenr,
ce86cd59 1074 u64 parent_transid)
0999df54
CM
1075{
1076 struct extent_buffer *buf = NULL;
0999df54
CM
1077 int ret;
1078
2ff7e61e 1079 buf = btrfs_find_create_tree_block(fs_info, bytenr);
c871b0f2
LB
1080 if (IS_ERR(buf))
1081 return buf;
0999df54 1082
2ff7e61e 1083 ret = btree_read_extent_buffer_pages(fs_info, buf, parent_transid);
0f0fe8f7
FDBM
1084 if (ret) {
1085 free_extent_buffer(buf);
64c043de 1086 return ERR_PTR(ret);
0f0fe8f7 1087 }
5f39d397 1088 return buf;
ce9adaa5 1089
eb60ceac
CM
1090}
1091
7c302b49 1092void clean_tree_block(struct btrfs_fs_info *fs_info,
d5c13f92 1093 struct extent_buffer *buf)
ed2ff2cb 1094{
55c69072 1095 if (btrfs_header_generation(buf) ==
e2d84521 1096 fs_info->running_transaction->transid) {
b9447ef8 1097 btrfs_assert_tree_locked(buf);
b4ce94de 1098
b9473439 1099 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &buf->bflags)) {
104b4e51
NB
1100 percpu_counter_add_batch(&fs_info->dirty_metadata_bytes,
1101 -buf->len,
1102 fs_info->dirty_metadata_batch);
ed7b63eb
JB
1103 /* ugh, clear_extent_buffer_dirty needs to lock the page */
1104 btrfs_set_lock_blocking(buf);
1105 clear_extent_buffer_dirty(buf);
1106 }
925baedd 1107 }
5f39d397
CM
1108}
1109
8257b2dc
MX
1110static struct btrfs_subvolume_writers *btrfs_alloc_subvolume_writers(void)
1111{
1112 struct btrfs_subvolume_writers *writers;
1113 int ret;
1114
1115 writers = kmalloc(sizeof(*writers), GFP_NOFS);
1116 if (!writers)
1117 return ERR_PTR(-ENOMEM);
1118
908c7f19 1119 ret = percpu_counter_init(&writers->counter, 0, GFP_KERNEL);
8257b2dc
MX
1120 if (ret < 0) {
1121 kfree(writers);
1122 return ERR_PTR(ret);
1123 }
1124
1125 init_waitqueue_head(&writers->wait);
1126 return writers;
1127}
1128
1129static void
1130btrfs_free_subvolume_writers(struct btrfs_subvolume_writers *writers)
1131{
1132 percpu_counter_destroy(&writers->counter);
1133 kfree(writers);
1134}
1135
da17066c 1136static void __setup_root(struct btrfs_root *root, struct btrfs_fs_info *fs_info,
143bede5 1137 u64 objectid)
d97e63b6 1138{
7c0260ee 1139 bool dummy = test_bit(BTRFS_FS_STATE_DUMMY_FS_INFO, &fs_info->fs_state);
cfaa7295 1140 root->node = NULL;
a28ec197 1141 root->commit_root = NULL;
27cdeb70 1142 root->state = 0;
d68fc57b 1143 root->orphan_cleanup_state = 0;
0b86a832 1144
0f7d52f4
CM
1145 root->objectid = objectid;
1146 root->last_trans = 0;
13a8a7c8 1147 root->highest_objectid = 0;
eb73c1b7 1148 root->nr_delalloc_inodes = 0;
199c2a9c 1149 root->nr_ordered_extents = 0;
58176a96 1150 root->name = NULL;
6bef4d31 1151 root->inode_tree = RB_ROOT;
16cdcec7 1152 INIT_RADIX_TREE(&root->delayed_nodes_tree, GFP_ATOMIC);
f0486c68 1153 root->block_rsv = NULL;
d68fc57b 1154 root->orphan_block_rsv = NULL;
0b86a832
CM
1155
1156 INIT_LIST_HEAD(&root->dirty_list);
5d4f98a2 1157 INIT_LIST_HEAD(&root->root_list);
eb73c1b7
MX
1158 INIT_LIST_HEAD(&root->delalloc_inodes);
1159 INIT_LIST_HEAD(&root->delalloc_root);
199c2a9c
MX
1160 INIT_LIST_HEAD(&root->ordered_extents);
1161 INIT_LIST_HEAD(&root->ordered_root);
2ab28f32
JB
1162 INIT_LIST_HEAD(&root->logged_list[0]);
1163 INIT_LIST_HEAD(&root->logged_list[1]);
d68fc57b 1164 spin_lock_init(&root->orphan_lock);
5d4f98a2 1165 spin_lock_init(&root->inode_lock);
eb73c1b7 1166 spin_lock_init(&root->delalloc_lock);
199c2a9c 1167 spin_lock_init(&root->ordered_extent_lock);
f0486c68 1168 spin_lock_init(&root->accounting_lock);
2ab28f32
JB
1169 spin_lock_init(&root->log_extents_lock[0]);
1170 spin_lock_init(&root->log_extents_lock[1]);
a2135011 1171 mutex_init(&root->objectid_mutex);
e02119d5 1172 mutex_init(&root->log_mutex);
31f3d255 1173 mutex_init(&root->ordered_extent_mutex);
573bfb72 1174 mutex_init(&root->delalloc_mutex);
7237f183
YZ
1175 init_waitqueue_head(&root->log_writer_wait);
1176 init_waitqueue_head(&root->log_commit_wait[0]);
1177 init_waitqueue_head(&root->log_commit_wait[1]);
8b050d35
MX
1178 INIT_LIST_HEAD(&root->log_ctxs[0]);
1179 INIT_LIST_HEAD(&root->log_ctxs[1]);
7237f183
YZ
1180 atomic_set(&root->log_commit[0], 0);
1181 atomic_set(&root->log_commit[1], 0);
1182 atomic_set(&root->log_writers, 0);
2ecb7923 1183 atomic_set(&root->log_batch, 0);
8a35d95f 1184 atomic_set(&root->orphan_inodes, 0);
0700cea7 1185 refcount_set(&root->refs, 1);
ea14b57f 1186 atomic_set(&root->will_be_snapshotted, 0);
ce0dcee6 1187 atomic64_set(&root->qgroup_meta_rsv, 0);
7237f183 1188 root->log_transid = 0;
d1433deb 1189 root->log_transid_committed = -1;
257c62e1 1190 root->last_log_commit = 0;
7c0260ee 1191 if (!dummy)
c6100a4b 1192 extent_io_tree_init(&root->dirty_log_pages, NULL);
017e5369 1193
3768f368
CM
1194 memset(&root->root_key, 0, sizeof(root->root_key));
1195 memset(&root->root_item, 0, sizeof(root->root_item));
6702ed49 1196 memset(&root->defrag_progress, 0, sizeof(root->defrag_progress));
7c0260ee 1197 if (!dummy)
06ea65a3
JB
1198 root->defrag_trans_start = fs_info->generation;
1199 else
1200 root->defrag_trans_start = 0;
4d775673 1201 root->root_key.objectid = objectid;
0ee5dc67 1202 root->anon_dev = 0;
8ea05e3a 1203
5f3ab90a 1204 spin_lock_init(&root->root_item_lock);
3768f368
CM
1205}
1206
74e4d827
DS
1207static struct btrfs_root *btrfs_alloc_root(struct btrfs_fs_info *fs_info,
1208 gfp_t flags)
6f07e42e 1209{
74e4d827 1210 struct btrfs_root *root = kzalloc(sizeof(*root), flags);
6f07e42e
AV
1211 if (root)
1212 root->fs_info = fs_info;
1213 return root;
1214}
1215
06ea65a3
JB
1216#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
1217/* Should only be used by the testing infrastructure */
da17066c 1218struct btrfs_root *btrfs_alloc_dummy_root(struct btrfs_fs_info *fs_info)
06ea65a3
JB
1219{
1220 struct btrfs_root *root;
1221
7c0260ee
JM
1222 if (!fs_info)
1223 return ERR_PTR(-EINVAL);
1224
1225 root = btrfs_alloc_root(fs_info, GFP_KERNEL);
06ea65a3
JB
1226 if (!root)
1227 return ERR_PTR(-ENOMEM);
da17066c 1228
b9ef22de 1229 /* We don't use the stripesize in selftest, set it as sectorsize */
da17066c 1230 __setup_root(root, fs_info, BTRFS_ROOT_TREE_OBJECTID);
faa2dbf0 1231 root->alloc_bytenr = 0;
06ea65a3
JB
1232
1233 return root;
1234}
1235#endif
1236
20897f5c
AJ
1237struct btrfs_root *btrfs_create_tree(struct btrfs_trans_handle *trans,
1238 struct btrfs_fs_info *fs_info,
1239 u64 objectid)
1240{
1241 struct extent_buffer *leaf;
1242 struct btrfs_root *tree_root = fs_info->tree_root;
1243 struct btrfs_root *root;
1244 struct btrfs_key key;
1245 int ret = 0;
33d85fda 1246 uuid_le uuid = NULL_UUID_LE;
20897f5c 1247
74e4d827 1248 root = btrfs_alloc_root(fs_info, GFP_KERNEL);
20897f5c
AJ
1249 if (!root)
1250 return ERR_PTR(-ENOMEM);
1251
da17066c 1252 __setup_root(root, fs_info, objectid);
20897f5c
AJ
1253 root->root_key.objectid = objectid;
1254 root->root_key.type = BTRFS_ROOT_ITEM_KEY;
1255 root->root_key.offset = 0;
1256
4d75f8a9 1257 leaf = btrfs_alloc_tree_block(trans, root, 0, objectid, NULL, 0, 0, 0);
20897f5c
AJ
1258 if (IS_ERR(leaf)) {
1259 ret = PTR_ERR(leaf);
1dd05682 1260 leaf = NULL;
20897f5c
AJ
1261 goto fail;
1262 }
1263
b159fa28 1264 memzero_extent_buffer(leaf, 0, sizeof(struct btrfs_header));
20897f5c
AJ
1265 btrfs_set_header_bytenr(leaf, leaf->start);
1266 btrfs_set_header_generation(leaf, trans->transid);
1267 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
1268 btrfs_set_header_owner(leaf, objectid);
1269 root->node = leaf;
1270
d24ee97b
DS
1271 write_extent_buffer_fsid(leaf, fs_info->fsid);
1272 write_extent_buffer_chunk_tree_uuid(leaf, fs_info->chunk_tree_uuid);
20897f5c
AJ
1273 btrfs_mark_buffer_dirty(leaf);
1274
1275 root->commit_root = btrfs_root_node(root);
27cdeb70 1276 set_bit(BTRFS_ROOT_TRACK_DIRTY, &root->state);
20897f5c
AJ
1277
1278 root->root_item.flags = 0;
1279 root->root_item.byte_limit = 0;
1280 btrfs_set_root_bytenr(&root->root_item, leaf->start);
1281 btrfs_set_root_generation(&root->root_item, trans->transid);
1282 btrfs_set_root_level(&root->root_item, 0);
1283 btrfs_set_root_refs(&root->root_item, 1);
1284 btrfs_set_root_used(&root->root_item, leaf->len);
1285 btrfs_set_root_last_snapshot(&root->root_item, 0);
1286 btrfs_set_root_dirid(&root->root_item, 0);
33d85fda
QW
1287 if (is_fstree(objectid))
1288 uuid_le_gen(&uuid);
6463fe58 1289 memcpy(root->root_item.uuid, uuid.b, BTRFS_UUID_SIZE);
20897f5c
AJ
1290 root->root_item.drop_level = 0;
1291
1292 key.objectid = objectid;
1293 key.type = BTRFS_ROOT_ITEM_KEY;
1294 key.offset = 0;
1295 ret = btrfs_insert_root(trans, tree_root, &key, &root->root_item);
1296 if (ret)
1297 goto fail;
1298
1299 btrfs_tree_unlock(leaf);
1300
1dd05682
TI
1301 return root;
1302
20897f5c 1303fail:
1dd05682
TI
1304 if (leaf) {
1305 btrfs_tree_unlock(leaf);
59885b39 1306 free_extent_buffer(root->commit_root);
1dd05682
TI
1307 free_extent_buffer(leaf);
1308 }
1309 kfree(root);
20897f5c 1310
1dd05682 1311 return ERR_PTR(ret);
20897f5c
AJ
1312}
1313
7237f183
YZ
1314static struct btrfs_root *alloc_log_tree(struct btrfs_trans_handle *trans,
1315 struct btrfs_fs_info *fs_info)
0f7d52f4
CM
1316{
1317 struct btrfs_root *root;
7237f183 1318 struct extent_buffer *leaf;
e02119d5 1319
74e4d827 1320 root = btrfs_alloc_root(fs_info, GFP_NOFS);
e02119d5 1321 if (!root)
7237f183 1322 return ERR_PTR(-ENOMEM);
e02119d5 1323
da17066c 1324 __setup_root(root, fs_info, BTRFS_TREE_LOG_OBJECTID);
e02119d5
CM
1325
1326 root->root_key.objectid = BTRFS_TREE_LOG_OBJECTID;
1327 root->root_key.type = BTRFS_ROOT_ITEM_KEY;
1328 root->root_key.offset = BTRFS_TREE_LOG_OBJECTID;
27cdeb70 1329
7237f183 1330 /*
27cdeb70
MX
1331 * DON'T set REF_COWS for log trees
1332 *
7237f183
YZ
1333 * log trees do not get reference counted because they go away
1334 * before a real commit is actually done. They do store pointers
1335 * to file data extents, and those reference counts still get
1336 * updated (along with back refs to the log tree).
1337 */
e02119d5 1338
4d75f8a9
DS
1339 leaf = btrfs_alloc_tree_block(trans, root, 0, BTRFS_TREE_LOG_OBJECTID,
1340 NULL, 0, 0, 0);
7237f183
YZ
1341 if (IS_ERR(leaf)) {
1342 kfree(root);
1343 return ERR_CAST(leaf);
1344 }
e02119d5 1345
b159fa28 1346 memzero_extent_buffer(leaf, 0, sizeof(struct btrfs_header));
5d4f98a2
YZ
1347 btrfs_set_header_bytenr(leaf, leaf->start);
1348 btrfs_set_header_generation(leaf, trans->transid);
1349 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
1350 btrfs_set_header_owner(leaf, BTRFS_TREE_LOG_OBJECTID);
7237f183 1351 root->node = leaf;
e02119d5 1352
0b246afa 1353 write_extent_buffer_fsid(root->node, fs_info->fsid);
e02119d5
CM
1354 btrfs_mark_buffer_dirty(root->node);
1355 btrfs_tree_unlock(root->node);
7237f183
YZ
1356 return root;
1357}
1358
1359int btrfs_init_log_root_tree(struct btrfs_trans_handle *trans,
1360 struct btrfs_fs_info *fs_info)
1361{
1362 struct btrfs_root *log_root;
1363
1364 log_root = alloc_log_tree(trans, fs_info);
1365 if (IS_ERR(log_root))
1366 return PTR_ERR(log_root);
1367 WARN_ON(fs_info->log_root_tree);
1368 fs_info->log_root_tree = log_root;
1369 return 0;
1370}
1371
1372int btrfs_add_log_tree(struct btrfs_trans_handle *trans,
1373 struct btrfs_root *root)
1374{
0b246afa 1375 struct btrfs_fs_info *fs_info = root->fs_info;
7237f183
YZ
1376 struct btrfs_root *log_root;
1377 struct btrfs_inode_item *inode_item;
1378
0b246afa 1379 log_root = alloc_log_tree(trans, fs_info);
7237f183
YZ
1380 if (IS_ERR(log_root))
1381 return PTR_ERR(log_root);
1382
1383 log_root->last_trans = trans->transid;
1384 log_root->root_key.offset = root->root_key.objectid;
1385
1386 inode_item = &log_root->root_item.inode;
3cae210f
QW
1387 btrfs_set_stack_inode_generation(inode_item, 1);
1388 btrfs_set_stack_inode_size(inode_item, 3);
1389 btrfs_set_stack_inode_nlink(inode_item, 1);
da17066c 1390 btrfs_set_stack_inode_nbytes(inode_item,
0b246afa 1391 fs_info->nodesize);
3cae210f 1392 btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755);
7237f183 1393
5d4f98a2 1394 btrfs_set_root_node(&log_root->root_item, log_root->node);
7237f183
YZ
1395
1396 WARN_ON(root->log_root);
1397 root->log_root = log_root;
1398 root->log_transid = 0;
d1433deb 1399 root->log_transid_committed = -1;
257c62e1 1400 root->last_log_commit = 0;
e02119d5
CM
1401 return 0;
1402}
1403
35a3621b
SB
1404static struct btrfs_root *btrfs_read_tree_root(struct btrfs_root *tree_root,
1405 struct btrfs_key *key)
e02119d5
CM
1406{
1407 struct btrfs_root *root;
1408 struct btrfs_fs_info *fs_info = tree_root->fs_info;
0f7d52f4 1409 struct btrfs_path *path;
84234f3a 1410 u64 generation;
cb517eab 1411 int ret;
0f7d52f4 1412
cb517eab
MX
1413 path = btrfs_alloc_path();
1414 if (!path)
0f7d52f4 1415 return ERR_PTR(-ENOMEM);
cb517eab 1416
74e4d827 1417 root = btrfs_alloc_root(fs_info, GFP_NOFS);
cb517eab
MX
1418 if (!root) {
1419 ret = -ENOMEM;
1420 goto alloc_fail;
0f7d52f4
CM
1421 }
1422
da17066c 1423 __setup_root(root, fs_info, key->objectid);
0f7d52f4 1424
cb517eab
MX
1425 ret = btrfs_find_root(tree_root, key, path,
1426 &root->root_item, &root->root_key);
0f7d52f4 1427 if (ret) {
13a8a7c8
YZ
1428 if (ret > 0)
1429 ret = -ENOENT;
cb517eab 1430 goto find_fail;
0f7d52f4 1431 }
13a8a7c8 1432
84234f3a 1433 generation = btrfs_root_generation(&root->root_item);
2ff7e61e
JM
1434 root->node = read_tree_block(fs_info,
1435 btrfs_root_bytenr(&root->root_item),
ce86cd59 1436 generation);
64c043de
LB
1437 if (IS_ERR(root->node)) {
1438 ret = PTR_ERR(root->node);
cb517eab
MX
1439 goto find_fail;
1440 } else if (!btrfs_buffer_uptodate(root->node, generation, 0)) {
1441 ret = -EIO;
64c043de
LB
1442 free_extent_buffer(root->node);
1443 goto find_fail;
416bc658 1444 }
5d4f98a2 1445 root->commit_root = btrfs_root_node(root);
13a8a7c8 1446out:
cb517eab
MX
1447 btrfs_free_path(path);
1448 return root;
1449
cb517eab
MX
1450find_fail:
1451 kfree(root);
1452alloc_fail:
1453 root = ERR_PTR(ret);
1454 goto out;
1455}
1456
1457struct btrfs_root *btrfs_read_fs_root(struct btrfs_root *tree_root,
1458 struct btrfs_key *location)
1459{
1460 struct btrfs_root *root;
1461
1462 root = btrfs_read_tree_root(tree_root, location);
1463 if (IS_ERR(root))
1464 return root;
1465
1466 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
27cdeb70 1467 set_bit(BTRFS_ROOT_REF_COWS, &root->state);
08fe4db1
LZ
1468 btrfs_check_and_init_root_item(&root->root_item);
1469 }
13a8a7c8 1470
5eda7b5e
CM
1471 return root;
1472}
1473
cb517eab
MX
1474int btrfs_init_fs_root(struct btrfs_root *root)
1475{
1476 int ret;
8257b2dc 1477 struct btrfs_subvolume_writers *writers;
cb517eab
MX
1478
1479 root->free_ino_ctl = kzalloc(sizeof(*root->free_ino_ctl), GFP_NOFS);
1480 root->free_ino_pinned = kzalloc(sizeof(*root->free_ino_pinned),
1481 GFP_NOFS);
1482 if (!root->free_ino_pinned || !root->free_ino_ctl) {
1483 ret = -ENOMEM;
1484 goto fail;
1485 }
1486
8257b2dc
MX
1487 writers = btrfs_alloc_subvolume_writers();
1488 if (IS_ERR(writers)) {
1489 ret = PTR_ERR(writers);
1490 goto fail;
1491 }
1492 root->subv_writers = writers;
1493
cb517eab 1494 btrfs_init_free_ino_ctl(root);
57cdc8db
DS
1495 spin_lock_init(&root->ino_cache_lock);
1496 init_waitqueue_head(&root->ino_cache_wait);
cb517eab
MX
1497
1498 ret = get_anon_bdev(&root->anon_dev);
1499 if (ret)
876d2cf1 1500 goto fail;
f32e48e9
CR
1501
1502 mutex_lock(&root->objectid_mutex);
1503 ret = btrfs_find_highest_objectid(root,
1504 &root->highest_objectid);
1505 if (ret) {
1506 mutex_unlock(&root->objectid_mutex);
876d2cf1 1507 goto fail;
f32e48e9
CR
1508 }
1509
1510 ASSERT(root->highest_objectid <= BTRFS_LAST_FREE_OBJECTID);
1511
1512 mutex_unlock(&root->objectid_mutex);
1513
cb517eab
MX
1514 return 0;
1515fail:
876d2cf1 1516 /* the caller is responsible to call free_fs_root */
cb517eab
MX
1517 return ret;
1518}
1519
35bbb97f
JM
1520struct btrfs_root *btrfs_lookup_fs_root(struct btrfs_fs_info *fs_info,
1521 u64 root_id)
cb517eab
MX
1522{
1523 struct btrfs_root *root;
1524
1525 spin_lock(&fs_info->fs_roots_radix_lock);
1526 root = radix_tree_lookup(&fs_info->fs_roots_radix,
1527 (unsigned long)root_id);
1528 spin_unlock(&fs_info->fs_roots_radix_lock);
1529 return root;
1530}
1531
1532int btrfs_insert_fs_root(struct btrfs_fs_info *fs_info,
1533 struct btrfs_root *root)
1534{
1535 int ret;
1536
e1860a77 1537 ret = radix_tree_preload(GFP_NOFS);
cb517eab
MX
1538 if (ret)
1539 return ret;
1540
1541 spin_lock(&fs_info->fs_roots_radix_lock);
1542 ret = radix_tree_insert(&fs_info->fs_roots_radix,
1543 (unsigned long)root->root_key.objectid,
1544 root);
1545 if (ret == 0)
27cdeb70 1546 set_bit(BTRFS_ROOT_IN_RADIX, &root->state);
cb517eab
MX
1547 spin_unlock(&fs_info->fs_roots_radix_lock);
1548 radix_tree_preload_end();
1549
1550 return ret;
1551}
1552
c00869f1
MX
1553struct btrfs_root *btrfs_get_fs_root(struct btrfs_fs_info *fs_info,
1554 struct btrfs_key *location,
1555 bool check_ref)
5eda7b5e
CM
1556{
1557 struct btrfs_root *root;
381cf658 1558 struct btrfs_path *path;
1d4c08e0 1559 struct btrfs_key key;
5eda7b5e
CM
1560 int ret;
1561
edbd8d4e
CM
1562 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
1563 return fs_info->tree_root;
1564 if (location->objectid == BTRFS_EXTENT_TREE_OBJECTID)
1565 return fs_info->extent_root;
8f18cf13
CM
1566 if (location->objectid == BTRFS_CHUNK_TREE_OBJECTID)
1567 return fs_info->chunk_root;
1568 if (location->objectid == BTRFS_DEV_TREE_OBJECTID)
1569 return fs_info->dev_root;
0403e47e
YZ
1570 if (location->objectid == BTRFS_CSUM_TREE_OBJECTID)
1571 return fs_info->csum_root;
bcef60f2
AJ
1572 if (location->objectid == BTRFS_QUOTA_TREE_OBJECTID)
1573 return fs_info->quota_root ? fs_info->quota_root :
1574 ERR_PTR(-ENOENT);
f7a81ea4
SB
1575 if (location->objectid == BTRFS_UUID_TREE_OBJECTID)
1576 return fs_info->uuid_root ? fs_info->uuid_root :
1577 ERR_PTR(-ENOENT);
70f6d82e
OS
1578 if (location->objectid == BTRFS_FREE_SPACE_TREE_OBJECTID)
1579 return fs_info->free_space_root ? fs_info->free_space_root :
1580 ERR_PTR(-ENOENT);
4df27c4d 1581again:
cb517eab 1582 root = btrfs_lookup_fs_root(fs_info, location->objectid);
48475471 1583 if (root) {
c00869f1 1584 if (check_ref && btrfs_root_refs(&root->root_item) == 0)
48475471 1585 return ERR_PTR(-ENOENT);
5eda7b5e 1586 return root;
48475471 1587 }
5eda7b5e 1588
cb517eab 1589 root = btrfs_read_fs_root(fs_info->tree_root, location);
5eda7b5e
CM
1590 if (IS_ERR(root))
1591 return root;
3394e160 1592
c00869f1 1593 if (check_ref && btrfs_root_refs(&root->root_item) == 0) {
cb517eab 1594 ret = -ENOENT;
581bb050 1595 goto fail;
35a30d7c 1596 }
581bb050 1597
cb517eab 1598 ret = btrfs_init_fs_root(root);
ac08aedf
CM
1599 if (ret)
1600 goto fail;
3394e160 1601
381cf658
DS
1602 path = btrfs_alloc_path();
1603 if (!path) {
1604 ret = -ENOMEM;
1605 goto fail;
1606 }
1d4c08e0
DS
1607 key.objectid = BTRFS_ORPHAN_OBJECTID;
1608 key.type = BTRFS_ORPHAN_ITEM_KEY;
1609 key.offset = location->objectid;
1610
1611 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
381cf658 1612 btrfs_free_path(path);
d68fc57b
YZ
1613 if (ret < 0)
1614 goto fail;
1615 if (ret == 0)
27cdeb70 1616 set_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &root->state);
d68fc57b 1617
cb517eab 1618 ret = btrfs_insert_fs_root(fs_info, root);
0f7d52f4 1619 if (ret) {
4df27c4d
YZ
1620 if (ret == -EEXIST) {
1621 free_fs_root(root);
1622 goto again;
1623 }
1624 goto fail;
0f7d52f4 1625 }
edbd8d4e 1626 return root;
4df27c4d
YZ
1627fail:
1628 free_fs_root(root);
1629 return ERR_PTR(ret);
edbd8d4e
CM
1630}
1631
04160088
CM
1632static int btrfs_congested_fn(void *congested_data, int bdi_bits)
1633{
1634 struct btrfs_fs_info *info = (struct btrfs_fs_info *)congested_data;
1635 int ret = 0;
04160088
CM
1636 struct btrfs_device *device;
1637 struct backing_dev_info *bdi;
b7967db7 1638
1f78160c
XG
1639 rcu_read_lock();
1640 list_for_each_entry_rcu(device, &info->fs_devices->devices, dev_list) {
dfe25020
CM
1641 if (!device->bdev)
1642 continue;
efa7c9f9 1643 bdi = device->bdev->bd_bdi;
ff9ea323 1644 if (bdi_congested(bdi, bdi_bits)) {
04160088
CM
1645 ret = 1;
1646 break;
1647 }
1648 }
1f78160c 1649 rcu_read_unlock();
04160088
CM
1650 return ret;
1651}
1652
8b712842
CM
1653/*
1654 * called by the kthread helper functions to finally call the bio end_io
1655 * functions. This is where read checksum verification actually happens
1656 */
1657static void end_workqueue_fn(struct btrfs_work *work)
ce9adaa5 1658{
ce9adaa5 1659 struct bio *bio;
97eb6b69 1660 struct btrfs_end_io_wq *end_io_wq;
ce9adaa5 1661
97eb6b69 1662 end_io_wq = container_of(work, struct btrfs_end_io_wq, work);
8b712842 1663 bio = end_io_wq->bio;
ce9adaa5 1664
4e4cbee9 1665 bio->bi_status = end_io_wq->status;
8b712842
CM
1666 bio->bi_private = end_io_wq->private;
1667 bio->bi_end_io = end_io_wq->end_io;
97eb6b69 1668 kmem_cache_free(btrfs_end_io_wq_cache, end_io_wq);
4246a0b6 1669 bio_endio(bio);
44b8bd7e
CM
1670}
1671
a74a4b97
CM
1672static int cleaner_kthread(void *arg)
1673{
1674 struct btrfs_root *root = arg;
0b246afa 1675 struct btrfs_fs_info *fs_info = root->fs_info;
d0278245 1676 int again;
da288d28 1677 struct btrfs_trans_handle *trans;
a74a4b97
CM
1678
1679 do {
d0278245 1680 again = 0;
a74a4b97 1681
d0278245 1682 /* Make the cleaner go to sleep early. */
2ff7e61e 1683 if (btrfs_need_cleaner_sleep(fs_info))
d0278245
MX
1684 goto sleep;
1685
90c711ab
ZB
1686 /*
1687 * Do not do anything if we might cause open_ctree() to block
1688 * before we have finished mounting the filesystem.
1689 */
0b246afa 1690 if (!test_bit(BTRFS_FS_OPEN, &fs_info->flags))
90c711ab
ZB
1691 goto sleep;
1692
0b246afa 1693 if (!mutex_trylock(&fs_info->cleaner_mutex))
d0278245
MX
1694 goto sleep;
1695
dc7f370c
MX
1696 /*
1697 * Avoid the problem that we change the status of the fs
1698 * during the above check and trylock.
1699 */
2ff7e61e 1700 if (btrfs_need_cleaner_sleep(fs_info)) {
0b246afa 1701 mutex_unlock(&fs_info->cleaner_mutex);
dc7f370c 1702 goto sleep;
76dda93c 1703 }
a74a4b97 1704
0b246afa 1705 mutex_lock(&fs_info->cleaner_delayed_iput_mutex);
2ff7e61e 1706 btrfs_run_delayed_iputs(fs_info);
0b246afa 1707 mutex_unlock(&fs_info->cleaner_delayed_iput_mutex);
c2d6cb16 1708
d0278245 1709 again = btrfs_clean_one_deleted_snapshot(root);
0b246afa 1710 mutex_unlock(&fs_info->cleaner_mutex);
d0278245
MX
1711
1712 /*
05323cd1
MX
1713 * The defragger has dealt with the R/O remount and umount,
1714 * needn't do anything special here.
d0278245 1715 */
0b246afa 1716 btrfs_run_defrag_inodes(fs_info);
67c5e7d4
FM
1717
1718 /*
1719 * Acquires fs_info->delete_unused_bgs_mutex to avoid racing
1720 * with relocation (btrfs_relocate_chunk) and relocation
1721 * acquires fs_info->cleaner_mutex (btrfs_relocate_block_group)
1722 * after acquiring fs_info->delete_unused_bgs_mutex. So we
1723 * can't hold, nor need to, fs_info->cleaner_mutex when deleting
1724 * unused block groups.
1725 */
0b246afa 1726 btrfs_delete_unused_bgs(fs_info);
d0278245 1727sleep:
838fe188 1728 if (!again) {
a74a4b97 1729 set_current_state(TASK_INTERRUPTIBLE);
8929ecfa
YZ
1730 if (!kthread_should_stop())
1731 schedule();
a74a4b97
CM
1732 __set_current_state(TASK_RUNNING);
1733 }
1734 } while (!kthread_should_stop());
da288d28
FM
1735
1736 /*
1737 * Transaction kthread is stopped before us and wakes us up.
1738 * However we might have started a new transaction and COWed some
1739 * tree blocks when deleting unused block groups for example. So
1740 * make sure we commit the transaction we started to have a clean
1741 * shutdown when evicting the btree inode - if it has dirty pages
1742 * when we do the final iput() on it, eviction will trigger a
1743 * writeback for it which will fail with null pointer dereferences
1744 * since work queues and other resources were already released and
1745 * destroyed by the time the iput/eviction/writeback is made.
1746 */
1747 trans = btrfs_attach_transaction(root);
1748 if (IS_ERR(trans)) {
1749 if (PTR_ERR(trans) != -ENOENT)
0b246afa 1750 btrfs_err(fs_info,
da288d28
FM
1751 "cleaner transaction attach returned %ld",
1752 PTR_ERR(trans));
1753 } else {
1754 int ret;
1755
3a45bb20 1756 ret = btrfs_commit_transaction(trans);
da288d28 1757 if (ret)
0b246afa 1758 btrfs_err(fs_info,
da288d28
FM
1759 "cleaner open transaction commit returned %d",
1760 ret);
1761 }
1762
a74a4b97
CM
1763 return 0;
1764}
1765
1766static int transaction_kthread(void *arg)
1767{
1768 struct btrfs_root *root = arg;
0b246afa 1769 struct btrfs_fs_info *fs_info = root->fs_info;
a74a4b97
CM
1770 struct btrfs_trans_handle *trans;
1771 struct btrfs_transaction *cur;
8929ecfa 1772 u64 transid;
a74a4b97
CM
1773 unsigned long now;
1774 unsigned long delay;
914b2007 1775 bool cannot_commit;
a74a4b97
CM
1776
1777 do {
914b2007 1778 cannot_commit = false;
0b246afa
JM
1779 delay = HZ * fs_info->commit_interval;
1780 mutex_lock(&fs_info->transaction_kthread_mutex);
a74a4b97 1781
0b246afa
JM
1782 spin_lock(&fs_info->trans_lock);
1783 cur = fs_info->running_transaction;
a74a4b97 1784 if (!cur) {
0b246afa 1785 spin_unlock(&fs_info->trans_lock);
a74a4b97
CM
1786 goto sleep;
1787 }
31153d81 1788
a74a4b97 1789 now = get_seconds();
4a9d8bde 1790 if (cur->state < TRANS_STATE_BLOCKED &&
8b87dc17 1791 (now < cur->start_time ||
0b246afa
JM
1792 now - cur->start_time < fs_info->commit_interval)) {
1793 spin_unlock(&fs_info->trans_lock);
a74a4b97
CM
1794 delay = HZ * 5;
1795 goto sleep;
1796 }
8929ecfa 1797 transid = cur->transid;
0b246afa 1798 spin_unlock(&fs_info->trans_lock);
56bec294 1799
79787eaa 1800 /* If the file system is aborted, this will always fail. */
354aa0fb 1801 trans = btrfs_attach_transaction(root);
914b2007 1802 if (IS_ERR(trans)) {
354aa0fb
MX
1803 if (PTR_ERR(trans) != -ENOENT)
1804 cannot_commit = true;
79787eaa 1805 goto sleep;
914b2007 1806 }
8929ecfa 1807 if (transid == trans->transid) {
3a45bb20 1808 btrfs_commit_transaction(trans);
8929ecfa 1809 } else {
3a45bb20 1810 btrfs_end_transaction(trans);
8929ecfa 1811 }
a74a4b97 1812sleep:
0b246afa
JM
1813 wake_up_process(fs_info->cleaner_kthread);
1814 mutex_unlock(&fs_info->transaction_kthread_mutex);
a74a4b97 1815
4e121c06 1816 if (unlikely(test_bit(BTRFS_FS_STATE_ERROR,
0b246afa 1817 &fs_info->fs_state)))
2ff7e61e 1818 btrfs_cleanup_transaction(fs_info);
ce63f891
JK
1819 set_current_state(TASK_INTERRUPTIBLE);
1820 if (!kthread_should_stop() &&
0b246afa 1821 (!btrfs_transaction_blocked(fs_info) ||
ce63f891
JK
1822 cannot_commit))
1823 schedule_timeout(delay);
1824 __set_current_state(TASK_RUNNING);
a74a4b97
CM
1825 } while (!kthread_should_stop());
1826 return 0;
1827}
1828
af31f5e5
CM
1829/*
1830 * this will find the highest generation in the array of
1831 * root backups. The index of the highest array is returned,
1832 * or -1 if we can't find anything.
1833 *
1834 * We check to make sure the array is valid by comparing the
1835 * generation of the latest root in the array with the generation
1836 * in the super block. If they don't match we pitch it.
1837 */
1838static int find_newest_super_backup(struct btrfs_fs_info *info, u64 newest_gen)
1839{
1840 u64 cur;
1841 int newest_index = -1;
1842 struct btrfs_root_backup *root_backup;
1843 int i;
1844
1845 for (i = 0; i < BTRFS_NUM_BACKUP_ROOTS; i++) {
1846 root_backup = info->super_copy->super_roots + i;
1847 cur = btrfs_backup_tree_root_gen(root_backup);
1848 if (cur == newest_gen)
1849 newest_index = i;
1850 }
1851
1852 /* check to see if we actually wrapped around */
1853 if (newest_index == BTRFS_NUM_BACKUP_ROOTS - 1) {
1854 root_backup = info->super_copy->super_roots;
1855 cur = btrfs_backup_tree_root_gen(root_backup);
1856 if (cur == newest_gen)
1857 newest_index = 0;
1858 }
1859 return newest_index;
1860}
1861
1862
1863/*
1864 * find the oldest backup so we know where to store new entries
1865 * in the backup array. This will set the backup_root_index
1866 * field in the fs_info struct
1867 */
1868static void find_oldest_super_backup(struct btrfs_fs_info *info,
1869 u64 newest_gen)
1870{
1871 int newest_index = -1;
1872
1873 newest_index = find_newest_super_backup(info, newest_gen);
1874 /* if there was garbage in there, just move along */
1875 if (newest_index == -1) {
1876 info->backup_root_index = 0;
1877 } else {
1878 info->backup_root_index = (newest_index + 1) % BTRFS_NUM_BACKUP_ROOTS;
1879 }
1880}
1881
1882/*
1883 * copy all the root pointers into the super backup array.
1884 * this will bump the backup pointer by one when it is
1885 * done
1886 */
1887static void backup_super_roots(struct btrfs_fs_info *info)
1888{
1889 int next_backup;
1890 struct btrfs_root_backup *root_backup;
1891 int last_backup;
1892
1893 next_backup = info->backup_root_index;
1894 last_backup = (next_backup + BTRFS_NUM_BACKUP_ROOTS - 1) %
1895 BTRFS_NUM_BACKUP_ROOTS;
1896
1897 /*
1898 * just overwrite the last backup if we're at the same generation
1899 * this happens only at umount
1900 */
1901 root_backup = info->super_for_commit->super_roots + last_backup;
1902 if (btrfs_backup_tree_root_gen(root_backup) ==
1903 btrfs_header_generation(info->tree_root->node))
1904 next_backup = last_backup;
1905
1906 root_backup = info->super_for_commit->super_roots + next_backup;
1907
1908 /*
1909 * make sure all of our padding and empty slots get zero filled
1910 * regardless of which ones we use today
1911 */
1912 memset(root_backup, 0, sizeof(*root_backup));
1913
1914 info->backup_root_index = (next_backup + 1) % BTRFS_NUM_BACKUP_ROOTS;
1915
1916 btrfs_set_backup_tree_root(root_backup, info->tree_root->node->start);
1917 btrfs_set_backup_tree_root_gen(root_backup,
1918 btrfs_header_generation(info->tree_root->node));
1919
1920 btrfs_set_backup_tree_root_level(root_backup,
1921 btrfs_header_level(info->tree_root->node));
1922
1923 btrfs_set_backup_chunk_root(root_backup, info->chunk_root->node->start);
1924 btrfs_set_backup_chunk_root_gen(root_backup,
1925 btrfs_header_generation(info->chunk_root->node));
1926 btrfs_set_backup_chunk_root_level(root_backup,
1927 btrfs_header_level(info->chunk_root->node));
1928
1929 btrfs_set_backup_extent_root(root_backup, info->extent_root->node->start);
1930 btrfs_set_backup_extent_root_gen(root_backup,
1931 btrfs_header_generation(info->extent_root->node));
1932 btrfs_set_backup_extent_root_level(root_backup,
1933 btrfs_header_level(info->extent_root->node));
1934
7c7e82a7
CM
1935 /*
1936 * we might commit during log recovery, which happens before we set
1937 * the fs_root. Make sure it is valid before we fill it in.
1938 */
1939 if (info->fs_root && info->fs_root->node) {
1940 btrfs_set_backup_fs_root(root_backup,
1941 info->fs_root->node->start);
1942 btrfs_set_backup_fs_root_gen(root_backup,
af31f5e5 1943 btrfs_header_generation(info->fs_root->node));
7c7e82a7 1944 btrfs_set_backup_fs_root_level(root_backup,
af31f5e5 1945 btrfs_header_level(info->fs_root->node));
7c7e82a7 1946 }
af31f5e5
CM
1947
1948 btrfs_set_backup_dev_root(root_backup, info->dev_root->node->start);
1949 btrfs_set_backup_dev_root_gen(root_backup,
1950 btrfs_header_generation(info->dev_root->node));
1951 btrfs_set_backup_dev_root_level(root_backup,
1952 btrfs_header_level(info->dev_root->node));
1953
1954 btrfs_set_backup_csum_root(root_backup, info->csum_root->node->start);
1955 btrfs_set_backup_csum_root_gen(root_backup,
1956 btrfs_header_generation(info->csum_root->node));
1957 btrfs_set_backup_csum_root_level(root_backup,
1958 btrfs_header_level(info->csum_root->node));
1959
1960 btrfs_set_backup_total_bytes(root_backup,
1961 btrfs_super_total_bytes(info->super_copy));
1962 btrfs_set_backup_bytes_used(root_backup,
1963 btrfs_super_bytes_used(info->super_copy));
1964 btrfs_set_backup_num_devices(root_backup,
1965 btrfs_super_num_devices(info->super_copy));
1966
1967 /*
1968 * if we don't copy this out to the super_copy, it won't get remembered
1969 * for the next commit
1970 */
1971 memcpy(&info->super_copy->super_roots,
1972 &info->super_for_commit->super_roots,
1973 sizeof(*root_backup) * BTRFS_NUM_BACKUP_ROOTS);
1974}
1975
1976/*
1977 * this copies info out of the root backup array and back into
1978 * the in-memory super block. It is meant to help iterate through
1979 * the array, so you send it the number of backups you've already
1980 * tried and the last backup index you used.
1981 *
1982 * this returns -1 when it has tried all the backups
1983 */
1984static noinline int next_root_backup(struct btrfs_fs_info *info,
1985 struct btrfs_super_block *super,
1986 int *num_backups_tried, int *backup_index)
1987{
1988 struct btrfs_root_backup *root_backup;
1989 int newest = *backup_index;
1990
1991 if (*num_backups_tried == 0) {
1992 u64 gen = btrfs_super_generation(super);
1993
1994 newest = find_newest_super_backup(info, gen);
1995 if (newest == -1)
1996 return -1;
1997
1998 *backup_index = newest;
1999 *num_backups_tried = 1;
2000 } else if (*num_backups_tried == BTRFS_NUM_BACKUP_ROOTS) {
2001 /* we've tried all the backups, all done */
2002 return -1;
2003 } else {
2004 /* jump to the next oldest backup */
2005 newest = (*backup_index + BTRFS_NUM_BACKUP_ROOTS - 1) %
2006 BTRFS_NUM_BACKUP_ROOTS;
2007 *backup_index = newest;
2008 *num_backups_tried += 1;
2009 }
2010 root_backup = super->super_roots + newest;
2011
2012 btrfs_set_super_generation(super,
2013 btrfs_backup_tree_root_gen(root_backup));
2014 btrfs_set_super_root(super, btrfs_backup_tree_root(root_backup));
2015 btrfs_set_super_root_level(super,
2016 btrfs_backup_tree_root_level(root_backup));
2017 btrfs_set_super_bytes_used(super, btrfs_backup_bytes_used(root_backup));
2018
2019 /*
2020 * fixme: the total bytes and num_devices need to match or we should
2021 * need a fsck
2022 */
2023 btrfs_set_super_total_bytes(super, btrfs_backup_total_bytes(root_backup));
2024 btrfs_set_super_num_devices(super, btrfs_backup_num_devices(root_backup));
2025 return 0;
2026}
2027
7abadb64
LB
2028/* helper to cleanup workers */
2029static void btrfs_stop_all_workers(struct btrfs_fs_info *fs_info)
2030{
dc6e3209 2031 btrfs_destroy_workqueue(fs_info->fixup_workers);
afe3d242 2032 btrfs_destroy_workqueue(fs_info->delalloc_workers);
5cdc7ad3 2033 btrfs_destroy_workqueue(fs_info->workers);
fccb5d86 2034 btrfs_destroy_workqueue(fs_info->endio_workers);
fccb5d86 2035 btrfs_destroy_workqueue(fs_info->endio_raid56_workers);
8b110e39 2036 btrfs_destroy_workqueue(fs_info->endio_repair_workers);
d05a33ac 2037 btrfs_destroy_workqueue(fs_info->rmw_workers);
fccb5d86
QW
2038 btrfs_destroy_workqueue(fs_info->endio_write_workers);
2039 btrfs_destroy_workqueue(fs_info->endio_freespace_worker);
a8c93d4e 2040 btrfs_destroy_workqueue(fs_info->submit_workers);
5b3bc44e 2041 btrfs_destroy_workqueue(fs_info->delayed_workers);
e66f0bb1 2042 btrfs_destroy_workqueue(fs_info->caching_workers);
736cfa15 2043 btrfs_destroy_workqueue(fs_info->readahead_workers);
a44903ab 2044 btrfs_destroy_workqueue(fs_info->flush_workers);
fc97fab0 2045 btrfs_destroy_workqueue(fs_info->qgroup_rescan_workers);
a79b7d4b 2046 btrfs_destroy_workqueue(fs_info->extent_workers);
a9b9477d
FM
2047 /*
2048 * Now that all other work queues are destroyed, we can safely destroy
2049 * the queues used for metadata I/O, since tasks from those other work
2050 * queues can do metadata I/O operations.
2051 */
2052 btrfs_destroy_workqueue(fs_info->endio_meta_workers);
2053 btrfs_destroy_workqueue(fs_info->endio_meta_write_workers);
7abadb64
LB
2054}
2055
2e9f5954
R
2056static void free_root_extent_buffers(struct btrfs_root *root)
2057{
2058 if (root) {
2059 free_extent_buffer(root->node);
2060 free_extent_buffer(root->commit_root);
2061 root->node = NULL;
2062 root->commit_root = NULL;
2063 }
2064}
2065
af31f5e5
CM
2066/* helper to cleanup tree roots */
2067static void free_root_pointers(struct btrfs_fs_info *info, int chunk_root)
2068{
2e9f5954 2069 free_root_extent_buffers(info->tree_root);
655b09fe 2070
2e9f5954
R
2071 free_root_extent_buffers(info->dev_root);
2072 free_root_extent_buffers(info->extent_root);
2073 free_root_extent_buffers(info->csum_root);
2074 free_root_extent_buffers(info->quota_root);
2075 free_root_extent_buffers(info->uuid_root);
2076 if (chunk_root)
2077 free_root_extent_buffers(info->chunk_root);
70f6d82e 2078 free_root_extent_buffers(info->free_space_root);
af31f5e5
CM
2079}
2080
faa2dbf0 2081void btrfs_free_fs_roots(struct btrfs_fs_info *fs_info)
171f6537
JB
2082{
2083 int ret;
2084 struct btrfs_root *gang[8];
2085 int i;
2086
2087 while (!list_empty(&fs_info->dead_roots)) {
2088 gang[0] = list_entry(fs_info->dead_roots.next,
2089 struct btrfs_root, root_list);
2090 list_del(&gang[0]->root_list);
2091
27cdeb70 2092 if (test_bit(BTRFS_ROOT_IN_RADIX, &gang[0]->state)) {
cb517eab 2093 btrfs_drop_and_free_fs_root(fs_info, gang[0]);
171f6537
JB
2094 } else {
2095 free_extent_buffer(gang[0]->node);
2096 free_extent_buffer(gang[0]->commit_root);
b0feb9d9 2097 btrfs_put_fs_root(gang[0]);
171f6537
JB
2098 }
2099 }
2100
2101 while (1) {
2102 ret = radix_tree_gang_lookup(&fs_info->fs_roots_radix,
2103 (void **)gang, 0,
2104 ARRAY_SIZE(gang));
2105 if (!ret)
2106 break;
2107 for (i = 0; i < ret; i++)
cb517eab 2108 btrfs_drop_and_free_fs_root(fs_info, gang[i]);
171f6537 2109 }
1a4319cc
LB
2110
2111 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) {
2112 btrfs_free_log_root_tree(NULL, fs_info);
2ff7e61e 2113 btrfs_destroy_pinned_extent(fs_info, fs_info->pinned_extents);
1a4319cc 2114 }
171f6537 2115}
af31f5e5 2116
638aa7ed
ES
2117static void btrfs_init_scrub(struct btrfs_fs_info *fs_info)
2118{
2119 mutex_init(&fs_info->scrub_lock);
2120 atomic_set(&fs_info->scrubs_running, 0);
2121 atomic_set(&fs_info->scrub_pause_req, 0);
2122 atomic_set(&fs_info->scrubs_paused, 0);
2123 atomic_set(&fs_info->scrub_cancel_req, 0);
2124 init_waitqueue_head(&fs_info->scrub_pause_wait);
2125 fs_info->scrub_workers_refcnt = 0;
2126}
2127
779a65a4
ES
2128static void btrfs_init_balance(struct btrfs_fs_info *fs_info)
2129{
2130 spin_lock_init(&fs_info->balance_lock);
2131 mutex_init(&fs_info->balance_mutex);
2132 atomic_set(&fs_info->balance_running, 0);
2133 atomic_set(&fs_info->balance_pause_req, 0);
2134 atomic_set(&fs_info->balance_cancel_req, 0);
2135 fs_info->balance_ctl = NULL;
2136 init_waitqueue_head(&fs_info->balance_wait_q);
2137}
2138
6bccf3ab 2139static void btrfs_init_btree_inode(struct btrfs_fs_info *fs_info)
f37938e0 2140{
2ff7e61e
JM
2141 struct inode *inode = fs_info->btree_inode;
2142
2143 inode->i_ino = BTRFS_BTREE_INODE_OBJECTID;
2144 set_nlink(inode, 1);
f37938e0
ES
2145 /*
2146 * we set the i_size on the btree inode to the max possible int.
2147 * the real end of the address space is determined by all of
2148 * the devices in the system
2149 */
2ff7e61e
JM
2150 inode->i_size = OFFSET_MAX;
2151 inode->i_mapping->a_ops = &btree_aops;
f37938e0 2152
2ff7e61e 2153 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
c6100a4b 2154 extent_io_tree_init(&BTRFS_I(inode)->io_tree, inode);
2ff7e61e
JM
2155 BTRFS_I(inode)->io_tree.track_uptodate = 0;
2156 extent_map_tree_init(&BTRFS_I(inode)->extent_tree);
f37938e0 2157
2ff7e61e 2158 BTRFS_I(inode)->io_tree.ops = &btree_extent_io_ops;
f37938e0 2159
2ff7e61e
JM
2160 BTRFS_I(inode)->root = fs_info->tree_root;
2161 memset(&BTRFS_I(inode)->location, 0, sizeof(struct btrfs_key));
2162 set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags);
2163 btrfs_insert_inode_hash(inode);
f37938e0
ES
2164}
2165
ad618368
ES
2166static void btrfs_init_dev_replace_locks(struct btrfs_fs_info *fs_info)
2167{
2168 fs_info->dev_replace.lock_owner = 0;
2169 atomic_set(&fs_info->dev_replace.nesting_level, 0);
2170 mutex_init(&fs_info->dev_replace.lock_finishing_cancel_unmount);
73beece9
LB
2171 rwlock_init(&fs_info->dev_replace.lock);
2172 atomic_set(&fs_info->dev_replace.read_locks, 0);
2173 atomic_set(&fs_info->dev_replace.blocking_readers, 0);
ad618368 2174 init_waitqueue_head(&fs_info->replace_wait);
73beece9 2175 init_waitqueue_head(&fs_info->dev_replace.read_lock_wq);
ad618368
ES
2176}
2177
f9e92e40
ES
2178static void btrfs_init_qgroup(struct btrfs_fs_info *fs_info)
2179{
2180 spin_lock_init(&fs_info->qgroup_lock);
2181 mutex_init(&fs_info->qgroup_ioctl_lock);
2182 fs_info->qgroup_tree = RB_ROOT;
2183 fs_info->qgroup_op_tree = RB_ROOT;
2184 INIT_LIST_HEAD(&fs_info->dirty_qgroups);
2185 fs_info->qgroup_seq = 1;
f9e92e40 2186 fs_info->qgroup_ulist = NULL;
d2c609b8 2187 fs_info->qgroup_rescan_running = false;
f9e92e40
ES
2188 mutex_init(&fs_info->qgroup_rescan_lock);
2189}
2190
2a458198
ES
2191static int btrfs_init_workqueues(struct btrfs_fs_info *fs_info,
2192 struct btrfs_fs_devices *fs_devices)
2193{
2194 int max_active = fs_info->thread_pool_size;
6f011058 2195 unsigned int flags = WQ_MEM_RECLAIM | WQ_FREEZABLE | WQ_UNBOUND;
2a458198
ES
2196
2197 fs_info->workers =
cb001095
JM
2198 btrfs_alloc_workqueue(fs_info, "worker",
2199 flags | WQ_HIGHPRI, max_active, 16);
2a458198
ES
2200
2201 fs_info->delalloc_workers =
cb001095
JM
2202 btrfs_alloc_workqueue(fs_info, "delalloc",
2203 flags, max_active, 2);
2a458198
ES
2204
2205 fs_info->flush_workers =
cb001095
JM
2206 btrfs_alloc_workqueue(fs_info, "flush_delalloc",
2207 flags, max_active, 0);
2a458198
ES
2208
2209 fs_info->caching_workers =
cb001095 2210 btrfs_alloc_workqueue(fs_info, "cache", flags, max_active, 0);
2a458198
ES
2211
2212 /*
2213 * a higher idle thresh on the submit workers makes it much more
2214 * likely that bios will be send down in a sane order to the
2215 * devices
2216 */
2217 fs_info->submit_workers =
cb001095 2218 btrfs_alloc_workqueue(fs_info, "submit", flags,
2a458198
ES
2219 min_t(u64, fs_devices->num_devices,
2220 max_active), 64);
2221
2222 fs_info->fixup_workers =
cb001095 2223 btrfs_alloc_workqueue(fs_info, "fixup", flags, 1, 0);
2a458198
ES
2224
2225 /*
2226 * endios are largely parallel and should have a very
2227 * low idle thresh
2228 */
2229 fs_info->endio_workers =
cb001095 2230 btrfs_alloc_workqueue(fs_info, "endio", flags, max_active, 4);
2a458198 2231 fs_info->endio_meta_workers =
cb001095
JM
2232 btrfs_alloc_workqueue(fs_info, "endio-meta", flags,
2233 max_active, 4);
2a458198 2234 fs_info->endio_meta_write_workers =
cb001095
JM
2235 btrfs_alloc_workqueue(fs_info, "endio-meta-write", flags,
2236 max_active, 2);
2a458198 2237 fs_info->endio_raid56_workers =
cb001095
JM
2238 btrfs_alloc_workqueue(fs_info, "endio-raid56", flags,
2239 max_active, 4);
2a458198 2240 fs_info->endio_repair_workers =
cb001095 2241 btrfs_alloc_workqueue(fs_info, "endio-repair", flags, 1, 0);
2a458198 2242 fs_info->rmw_workers =
cb001095 2243 btrfs_alloc_workqueue(fs_info, "rmw", flags, max_active, 2);
2a458198 2244 fs_info->endio_write_workers =
cb001095
JM
2245 btrfs_alloc_workqueue(fs_info, "endio-write", flags,
2246 max_active, 2);
2a458198 2247 fs_info->endio_freespace_worker =
cb001095
JM
2248 btrfs_alloc_workqueue(fs_info, "freespace-write", flags,
2249 max_active, 0);
2a458198 2250 fs_info->delayed_workers =
cb001095
JM
2251 btrfs_alloc_workqueue(fs_info, "delayed-meta", flags,
2252 max_active, 0);
2a458198 2253 fs_info->readahead_workers =
cb001095
JM
2254 btrfs_alloc_workqueue(fs_info, "readahead", flags,
2255 max_active, 2);
2a458198 2256 fs_info->qgroup_rescan_workers =
cb001095 2257 btrfs_alloc_workqueue(fs_info, "qgroup-rescan", flags, 1, 0);
2a458198 2258 fs_info->extent_workers =
cb001095 2259 btrfs_alloc_workqueue(fs_info, "extent-refs", flags,
2a458198
ES
2260 min_t(u64, fs_devices->num_devices,
2261 max_active), 8);
2262
2263 if (!(fs_info->workers && fs_info->delalloc_workers &&
2264 fs_info->submit_workers && fs_info->flush_workers &&
2265 fs_info->endio_workers && fs_info->endio_meta_workers &&
2266 fs_info->endio_meta_write_workers &&
2267 fs_info->endio_repair_workers &&
2268 fs_info->endio_write_workers && fs_info->endio_raid56_workers &&
2269 fs_info->endio_freespace_worker && fs_info->rmw_workers &&
2270 fs_info->caching_workers && fs_info->readahead_workers &&
2271 fs_info->fixup_workers && fs_info->delayed_workers &&
2272 fs_info->extent_workers &&
2273 fs_info->qgroup_rescan_workers)) {
2274 return -ENOMEM;
2275 }
2276
2277 return 0;
2278}
2279
63443bf5
ES
2280static int btrfs_replay_log(struct btrfs_fs_info *fs_info,
2281 struct btrfs_fs_devices *fs_devices)
2282{
2283 int ret;
63443bf5
ES
2284 struct btrfs_root *log_tree_root;
2285 struct btrfs_super_block *disk_super = fs_info->super_copy;
2286 u64 bytenr = btrfs_super_log_root(disk_super);
2287
2288 if (fs_devices->rw_devices == 0) {
f14d104d 2289 btrfs_warn(fs_info, "log replay required on RO media");
63443bf5
ES
2290 return -EIO;
2291 }
2292
74e4d827 2293 log_tree_root = btrfs_alloc_root(fs_info, GFP_KERNEL);
63443bf5
ES
2294 if (!log_tree_root)
2295 return -ENOMEM;
2296
da17066c 2297 __setup_root(log_tree_root, fs_info, BTRFS_TREE_LOG_OBJECTID);
63443bf5 2298
2ff7e61e
JM
2299 log_tree_root->node = read_tree_block(fs_info, bytenr,
2300 fs_info->generation + 1);
64c043de 2301 if (IS_ERR(log_tree_root->node)) {
f14d104d 2302 btrfs_warn(fs_info, "failed to read log tree");
0eeff236 2303 ret = PTR_ERR(log_tree_root->node);
64c043de 2304 kfree(log_tree_root);
0eeff236 2305 return ret;
64c043de 2306 } else if (!extent_buffer_uptodate(log_tree_root->node)) {
f14d104d 2307 btrfs_err(fs_info, "failed to read log tree");
63443bf5
ES
2308 free_extent_buffer(log_tree_root->node);
2309 kfree(log_tree_root);
2310 return -EIO;
2311 }
2312 /* returns with log_tree_root freed on success */
2313 ret = btrfs_recover_log_trees(log_tree_root);
2314 if (ret) {
0b246afa
JM
2315 btrfs_handle_fs_error(fs_info, ret,
2316 "Failed to recover log tree");
63443bf5
ES
2317 free_extent_buffer(log_tree_root->node);
2318 kfree(log_tree_root);
2319 return ret;
2320 }
2321
bc98a42c 2322 if (sb_rdonly(fs_info->sb)) {
6bccf3ab 2323 ret = btrfs_commit_super(fs_info);
63443bf5
ES
2324 if (ret)
2325 return ret;
2326 }
2327
2328 return 0;
2329}
2330
6bccf3ab 2331static int btrfs_read_roots(struct btrfs_fs_info *fs_info)
4bbcaa64 2332{
6bccf3ab 2333 struct btrfs_root *tree_root = fs_info->tree_root;
a4f3d2c4 2334 struct btrfs_root *root;
4bbcaa64
ES
2335 struct btrfs_key location;
2336 int ret;
2337
6bccf3ab
JM
2338 BUG_ON(!fs_info->tree_root);
2339
4bbcaa64
ES
2340 location.objectid = BTRFS_EXTENT_TREE_OBJECTID;
2341 location.type = BTRFS_ROOT_ITEM_KEY;
2342 location.offset = 0;
2343
a4f3d2c4
DS
2344 root = btrfs_read_tree_root(tree_root, &location);
2345 if (IS_ERR(root))
2346 return PTR_ERR(root);
2347 set_bit(BTRFS_ROOT_TRACK_DIRTY, &root->state);
2348 fs_info->extent_root = root;
4bbcaa64
ES
2349
2350 location.objectid = BTRFS_DEV_TREE_OBJECTID;
a4f3d2c4
DS
2351 root = btrfs_read_tree_root(tree_root, &location);
2352 if (IS_ERR(root))
2353 return PTR_ERR(root);
2354 set_bit(BTRFS_ROOT_TRACK_DIRTY, &root->state);
2355 fs_info->dev_root = root;
4bbcaa64
ES
2356 btrfs_init_devices_late(fs_info);
2357
2358 location.objectid = BTRFS_CSUM_TREE_OBJECTID;
a4f3d2c4
DS
2359 root = btrfs_read_tree_root(tree_root, &location);
2360 if (IS_ERR(root))
2361 return PTR_ERR(root);
2362 set_bit(BTRFS_ROOT_TRACK_DIRTY, &root->state);
2363 fs_info->csum_root = root;
4bbcaa64
ES
2364
2365 location.objectid = BTRFS_QUOTA_TREE_OBJECTID;
a4f3d2c4
DS
2366 root = btrfs_read_tree_root(tree_root, &location);
2367 if (!IS_ERR(root)) {
2368 set_bit(BTRFS_ROOT_TRACK_DIRTY, &root->state);
afcdd129 2369 set_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags);
a4f3d2c4 2370 fs_info->quota_root = root;
4bbcaa64
ES
2371 }
2372
2373 location.objectid = BTRFS_UUID_TREE_OBJECTID;
a4f3d2c4
DS
2374 root = btrfs_read_tree_root(tree_root, &location);
2375 if (IS_ERR(root)) {
2376 ret = PTR_ERR(root);
4bbcaa64
ES
2377 if (ret != -ENOENT)
2378 return ret;
2379 } else {
a4f3d2c4
DS
2380 set_bit(BTRFS_ROOT_TRACK_DIRTY, &root->state);
2381 fs_info->uuid_root = root;
4bbcaa64
ES
2382 }
2383
70f6d82e
OS
2384 if (btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE)) {
2385 location.objectid = BTRFS_FREE_SPACE_TREE_OBJECTID;
2386 root = btrfs_read_tree_root(tree_root, &location);
2387 if (IS_ERR(root))
2388 return PTR_ERR(root);
2389 set_bit(BTRFS_ROOT_TRACK_DIRTY, &root->state);
2390 fs_info->free_space_root = root;
2391 }
2392
4bbcaa64
ES
2393 return 0;
2394}
2395
ad2b2c80
AV
2396int open_ctree(struct super_block *sb,
2397 struct btrfs_fs_devices *fs_devices,
2398 char *options)
2e635a27 2399{
db94535d
CM
2400 u32 sectorsize;
2401 u32 nodesize;
87ee04eb 2402 u32 stripesize;
84234f3a 2403 u64 generation;
f2b636e8 2404 u64 features;
3de4586c 2405 struct btrfs_key location;
a061fc8d 2406 struct buffer_head *bh;
4d34b278 2407 struct btrfs_super_block *disk_super;
815745cf 2408 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
f84a8bd6 2409 struct btrfs_root *tree_root;
4d34b278 2410 struct btrfs_root *chunk_root;
eb60ceac 2411 int ret;
e58ca020 2412 int err = -EINVAL;
af31f5e5
CM
2413 int num_backups_tried = 0;
2414 int backup_index = 0;
5cdc7ad3 2415 int max_active;
6675df31 2416 int clear_free_space_tree = 0;
4543df7e 2417
74e4d827
DS
2418 tree_root = fs_info->tree_root = btrfs_alloc_root(fs_info, GFP_KERNEL);
2419 chunk_root = fs_info->chunk_root = btrfs_alloc_root(fs_info, GFP_KERNEL);
cb517eab 2420 if (!tree_root || !chunk_root) {
39279cc3
CM
2421 err = -ENOMEM;
2422 goto fail;
2423 }
76dda93c
YZ
2424
2425 ret = init_srcu_struct(&fs_info->subvol_srcu);
2426 if (ret) {
2427 err = ret;
2428 goto fail;
2429 }
2430
908c7f19 2431 ret = percpu_counter_init(&fs_info->dirty_metadata_bytes, 0, GFP_KERNEL);
e2d84521
MX
2432 if (ret) {
2433 err = ret;
9e11ceee 2434 goto fail_srcu;
e2d84521 2435 }
09cbfeaf 2436 fs_info->dirty_metadata_batch = PAGE_SIZE *
e2d84521
MX
2437 (1 + ilog2(nr_cpu_ids));
2438
908c7f19 2439 ret = percpu_counter_init(&fs_info->delalloc_bytes, 0, GFP_KERNEL);
963d678b
MX
2440 if (ret) {
2441 err = ret;
2442 goto fail_dirty_metadata_bytes;
2443 }
2444
908c7f19 2445 ret = percpu_counter_init(&fs_info->bio_counter, 0, GFP_KERNEL);
c404e0dc
MX
2446 if (ret) {
2447 err = ret;
2448 goto fail_delalloc_bytes;
2449 }
2450
76dda93c 2451 INIT_RADIX_TREE(&fs_info->fs_roots_radix, GFP_ATOMIC);
f28491e0 2452 INIT_RADIX_TREE(&fs_info->buffer_radix, GFP_ATOMIC);
8fd17795 2453 INIT_LIST_HEAD(&fs_info->trans_list);
facda1e7 2454 INIT_LIST_HEAD(&fs_info->dead_roots);
24bbcf04 2455 INIT_LIST_HEAD(&fs_info->delayed_iputs);
eb73c1b7 2456 INIT_LIST_HEAD(&fs_info->delalloc_roots);
11833d66 2457 INIT_LIST_HEAD(&fs_info->caching_block_groups);
eb73c1b7 2458 spin_lock_init(&fs_info->delalloc_root_lock);
a4abeea4 2459 spin_lock_init(&fs_info->trans_lock);
76dda93c 2460 spin_lock_init(&fs_info->fs_roots_radix_lock);
24bbcf04 2461 spin_lock_init(&fs_info->delayed_iput_lock);
4cb5300b 2462 spin_lock_init(&fs_info->defrag_inodes_lock);
f29021b2 2463 spin_lock_init(&fs_info->tree_mod_seq_lock);
ceda0864 2464 spin_lock_init(&fs_info->super_lock);
fcebe456 2465 spin_lock_init(&fs_info->qgroup_op_lock);
f28491e0 2466 spin_lock_init(&fs_info->buffer_lock);
47ab2a6c 2467 spin_lock_init(&fs_info->unused_bgs_lock);
f29021b2 2468 rwlock_init(&fs_info->tree_mod_log_lock);
d7c15171 2469 mutex_init(&fs_info->unused_bg_unpin_mutex);
67c5e7d4 2470 mutex_init(&fs_info->delete_unused_bgs_mutex);
7585717f 2471 mutex_init(&fs_info->reloc_mutex);
573bfb72 2472 mutex_init(&fs_info->delalloc_root_mutex);
c2d6cb16 2473 mutex_init(&fs_info->cleaner_delayed_iput_mutex);
de98ced9 2474 seqlock_init(&fs_info->profiles_lock);
19c00ddc 2475
0b86a832 2476 INIT_LIST_HEAD(&fs_info->dirty_cowonly_roots);
6324fbf3 2477 INIT_LIST_HEAD(&fs_info->space_info);
f29021b2 2478 INIT_LIST_HEAD(&fs_info->tree_mod_seq_list);
47ab2a6c 2479 INIT_LIST_HEAD(&fs_info->unused_bgs);
0b86a832 2480 btrfs_mapping_init(&fs_info->mapping_tree);
66d8f3dd
MX
2481 btrfs_init_block_rsv(&fs_info->global_block_rsv,
2482 BTRFS_BLOCK_RSV_GLOBAL);
66d8f3dd
MX
2483 btrfs_init_block_rsv(&fs_info->trans_block_rsv, BTRFS_BLOCK_RSV_TRANS);
2484 btrfs_init_block_rsv(&fs_info->chunk_block_rsv, BTRFS_BLOCK_RSV_CHUNK);
2485 btrfs_init_block_rsv(&fs_info->empty_block_rsv, BTRFS_BLOCK_RSV_EMPTY);
2486 btrfs_init_block_rsv(&fs_info->delayed_block_rsv,
2487 BTRFS_BLOCK_RSV_DELOPS);
771ed689 2488 atomic_set(&fs_info->async_delalloc_pages, 0);
4cb5300b 2489 atomic_set(&fs_info->defrag_running, 0);
fcebe456 2490 atomic_set(&fs_info->qgroup_op_seq, 0);
2fefd558 2491 atomic_set(&fs_info->reada_works_cnt, 0);
fc36ed7e 2492 atomic64_set(&fs_info->tree_mod_seq, 0);
e20d96d6 2493 fs_info->sb = sb;
95ac567a 2494 fs_info->max_inline = BTRFS_DEFAULT_MAX_INLINE;
9ed74f2d 2495 fs_info->metadata_ratio = 0;
4cb5300b 2496 fs_info->defrag_inodes = RB_ROOT;
a5ed45f8 2497 atomic64_set(&fs_info->free_chunk_space, 0);
f29021b2 2498 fs_info->tree_mod_log = RB_ROOT;
8b87dc17 2499 fs_info->commit_interval = BTRFS_DEFAULT_COMMIT_INTERVAL;
f8c269d7 2500 fs_info->avg_delayed_ref_runtime = NSEC_PER_SEC >> 6; /* div by 64 */
90519d66 2501 /* readahead state */
d0164adc 2502 INIT_RADIX_TREE(&fs_info->reada_tree, GFP_NOFS & ~__GFP_DIRECT_RECLAIM);
90519d66 2503 spin_lock_init(&fs_info->reada_lock);
fd708b81 2504 btrfs_init_ref_verify(fs_info);
c8b97818 2505
b34b086c
CM
2506 fs_info->thread_pool_size = min_t(unsigned long,
2507 num_online_cpus() + 2, 8);
0afbaf8c 2508
199c2a9c
MX
2509 INIT_LIST_HEAD(&fs_info->ordered_roots);
2510 spin_lock_init(&fs_info->ordered_root_lock);
69fe2d75
JB
2511
2512 fs_info->btree_inode = new_inode(sb);
2513 if (!fs_info->btree_inode) {
2514 err = -ENOMEM;
2515 goto fail_bio_counter;
2516 }
2517 mapping_set_gfp_mask(fs_info->btree_inode->i_mapping, GFP_NOFS);
2518
16cdcec7 2519 fs_info->delayed_root = kmalloc(sizeof(struct btrfs_delayed_root),
74e4d827 2520 GFP_KERNEL);
16cdcec7
MX
2521 if (!fs_info->delayed_root) {
2522 err = -ENOMEM;
2523 goto fail_iput;
2524 }
2525 btrfs_init_delayed_root(fs_info->delayed_root);
3eaa2885 2526
638aa7ed 2527 btrfs_init_scrub(fs_info);
21adbd5c
SB
2528#ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
2529 fs_info->check_integrity_print_mask = 0;
2530#endif
779a65a4 2531 btrfs_init_balance(fs_info);
21c7e756 2532 btrfs_init_async_reclaim_work(&fs_info->async_reclaim_work);
a2de733c 2533
9f6d2510
DS
2534 sb->s_blocksize = BTRFS_BDEV_BLOCKSIZE;
2535 sb->s_blocksize_bits = blksize_bits(BTRFS_BDEV_BLOCKSIZE);
a061fc8d 2536
6bccf3ab 2537 btrfs_init_btree_inode(fs_info);
76dda93c 2538
0f9dd46c 2539 spin_lock_init(&fs_info->block_group_cache_lock);
6bef4d31 2540 fs_info->block_group_cache_tree = RB_ROOT;
a1897fdd 2541 fs_info->first_logical_byte = (u64)-1;
0f9dd46c 2542
c6100a4b
JB
2543 extent_io_tree_init(&fs_info->freed_extents[0], NULL);
2544 extent_io_tree_init(&fs_info->freed_extents[1], NULL);
11833d66 2545 fs_info->pinned_extents = &fs_info->freed_extents[0];
afcdd129 2546 set_bit(BTRFS_FS_BARRIER, &fs_info->flags);
39279cc3 2547
5a3f23d5 2548 mutex_init(&fs_info->ordered_operations_mutex);
e02119d5 2549 mutex_init(&fs_info->tree_log_mutex);
925baedd 2550 mutex_init(&fs_info->chunk_mutex);
a74a4b97
CM
2551 mutex_init(&fs_info->transaction_kthread_mutex);
2552 mutex_init(&fs_info->cleaner_mutex);
7d9eb12c 2553 mutex_init(&fs_info->volume_mutex);
1bbc621e 2554 mutex_init(&fs_info->ro_block_group_mutex);
9e351cc8 2555 init_rwsem(&fs_info->commit_root_sem);
c71bf099 2556 init_rwsem(&fs_info->cleanup_work_sem);
76dda93c 2557 init_rwsem(&fs_info->subvol_sem);
803b2f54 2558 sema_init(&fs_info->uuid_tree_rescan_sem, 1);
fa9c0d79 2559
ad618368 2560 btrfs_init_dev_replace_locks(fs_info);
f9e92e40 2561 btrfs_init_qgroup(fs_info);
416ac51d 2562
fa9c0d79
CM
2563 btrfs_init_free_cluster(&fs_info->meta_alloc_cluster);
2564 btrfs_init_free_cluster(&fs_info->data_alloc_cluster);
2565
e6dcd2dc 2566 init_waitqueue_head(&fs_info->transaction_throttle);
f9295749 2567 init_waitqueue_head(&fs_info->transaction_wait);
bb9c12c9 2568 init_waitqueue_head(&fs_info->transaction_blocked_wait);
4854ddd0 2569 init_waitqueue_head(&fs_info->async_submit_wait);
3768f368 2570
04216820
FM
2571 INIT_LIST_HEAD(&fs_info->pinned_chunks);
2572
da17066c
JM
2573 /* Usable values until the real ones are cached from the superblock */
2574 fs_info->nodesize = 4096;
2575 fs_info->sectorsize = 4096;
2576 fs_info->stripesize = 4096;
2577
53b381b3
DW
2578 ret = btrfs_alloc_stripe_hash_table(fs_info);
2579 if (ret) {
83c8266a 2580 err = ret;
53b381b3
DW
2581 goto fail_alloc;
2582 }
2583
da17066c 2584 __setup_root(tree_root, fs_info, BTRFS_ROOT_TREE_OBJECTID);
7eccb903 2585
3c4bb26b 2586 invalidate_bdev(fs_devices->latest_bdev);
1104a885
DS
2587
2588 /*
2589 * Read super block and check the signature bytes only
2590 */
a512bbf8 2591 bh = btrfs_read_dev_super(fs_devices->latest_bdev);
92fc03fb
AJ
2592 if (IS_ERR(bh)) {
2593 err = PTR_ERR(bh);
16cdcec7 2594 goto fail_alloc;
20b45077 2595 }
39279cc3 2596
1104a885
DS
2597 /*
2598 * We want to check superblock checksum, the type is stored inside.
2599 * Pass the whole disk block of size BTRFS_SUPER_INFO_SIZE (4k).
2600 */
ab8d0fc4 2601 if (btrfs_check_super_csum(fs_info, bh->b_data)) {
05135f59 2602 btrfs_err(fs_info, "superblock checksum mismatch");
1104a885 2603 err = -EINVAL;
b2acdddf 2604 brelse(bh);
1104a885
DS
2605 goto fail_alloc;
2606 }
2607
2608 /*
2609 * super_copy is zeroed at allocation time and we never touch the
2610 * following bytes up to INFO_SIZE, the checksum is calculated from
2611 * the whole block of INFO_SIZE
2612 */
6c41761f
DS
2613 memcpy(fs_info->super_copy, bh->b_data, sizeof(*fs_info->super_copy));
2614 memcpy(fs_info->super_for_commit, fs_info->super_copy,
2615 sizeof(*fs_info->super_for_commit));
a061fc8d 2616 brelse(bh);
5f39d397 2617
6c41761f 2618 memcpy(fs_info->fsid, fs_info->super_copy->fsid, BTRFS_FSID_SIZE);
0b86a832 2619
3d3a126a 2620 ret = btrfs_check_super_valid(fs_info);
1104a885 2621 if (ret) {
05135f59 2622 btrfs_err(fs_info, "superblock contains fatal errors");
1104a885
DS
2623 err = -EINVAL;
2624 goto fail_alloc;
2625 }
2626
6c41761f 2627 disk_super = fs_info->super_copy;
0f7d52f4 2628 if (!btrfs_super_root(disk_super))
16cdcec7 2629 goto fail_alloc;
0f7d52f4 2630
acce952b 2631 /* check FS state, whether FS is broken. */
87533c47
MX
2632 if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_ERROR)
2633 set_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state);
acce952b 2634
af31f5e5
CM
2635 /*
2636 * run through our array of backup supers and setup
2637 * our ring pointer to the oldest one
2638 */
2639 generation = btrfs_super_generation(disk_super);
2640 find_oldest_super_backup(fs_info, generation);
2641
75e7cb7f
LB
2642 /*
2643 * In the long term, we'll store the compression type in the super
2644 * block, and it'll be used for per file compression control.
2645 */
2646 fs_info->compress_type = BTRFS_COMPRESS_ZLIB;
2647
2ff7e61e 2648 ret = btrfs_parse_options(fs_info, options, sb->s_flags);
2b82032c
YZ
2649 if (ret) {
2650 err = ret;
16cdcec7 2651 goto fail_alloc;
2b82032c 2652 }
dfe25020 2653
f2b636e8
JB
2654 features = btrfs_super_incompat_flags(disk_super) &
2655 ~BTRFS_FEATURE_INCOMPAT_SUPP;
2656 if (features) {
05135f59
DS
2657 btrfs_err(fs_info,
2658 "cannot mount because of unsupported optional features (%llx)",
2659 features);
f2b636e8 2660 err = -EINVAL;
16cdcec7 2661 goto fail_alloc;
f2b636e8
JB
2662 }
2663
5d4f98a2 2664 features = btrfs_super_incompat_flags(disk_super);
a6fa6fae 2665 features |= BTRFS_FEATURE_INCOMPAT_MIXED_BACKREF;
0b246afa 2666 if (fs_info->compress_type == BTRFS_COMPRESS_LZO)
a6fa6fae 2667 features |= BTRFS_FEATURE_INCOMPAT_COMPRESS_LZO;
5c1aab1d
NT
2668 else if (fs_info->compress_type == BTRFS_COMPRESS_ZSTD)
2669 features |= BTRFS_FEATURE_INCOMPAT_COMPRESS_ZSTD;
727011e0 2670
3173a18f 2671 if (features & BTRFS_FEATURE_INCOMPAT_SKINNY_METADATA)
05135f59 2672 btrfs_info(fs_info, "has skinny extents");
3173a18f 2673
727011e0
CM
2674 /*
2675 * flag our filesystem as having big metadata blocks if
2676 * they are bigger than the page size
2677 */
09cbfeaf 2678 if (btrfs_super_nodesize(disk_super) > PAGE_SIZE) {
727011e0 2679 if (!(features & BTRFS_FEATURE_INCOMPAT_BIG_METADATA))
05135f59
DS
2680 btrfs_info(fs_info,
2681 "flagging fs with big metadata feature");
727011e0
CM
2682 features |= BTRFS_FEATURE_INCOMPAT_BIG_METADATA;
2683 }
2684
bc3f116f 2685 nodesize = btrfs_super_nodesize(disk_super);
bc3f116f 2686 sectorsize = btrfs_super_sectorsize(disk_super);
b7f67055 2687 stripesize = sectorsize;
707e8a07 2688 fs_info->dirty_metadata_batch = nodesize * (1 + ilog2(nr_cpu_ids));
963d678b 2689 fs_info->delalloc_batch = sectorsize * 512 * (1 + ilog2(nr_cpu_ids));
bc3f116f 2690
da17066c
JM
2691 /* Cache block sizes */
2692 fs_info->nodesize = nodesize;
2693 fs_info->sectorsize = sectorsize;
2694 fs_info->stripesize = stripesize;
2695
bc3f116f
CM
2696 /*
2697 * mixed block groups end up with duplicate but slightly offset
2698 * extent buffers for the same range. It leads to corruptions
2699 */
2700 if ((features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS) &&
707e8a07 2701 (sectorsize != nodesize)) {
05135f59
DS
2702 btrfs_err(fs_info,
2703"unequal nodesize/sectorsize (%u != %u) are not allowed for mixed block groups",
2704 nodesize, sectorsize);
bc3f116f
CM
2705 goto fail_alloc;
2706 }
2707
ceda0864
MX
2708 /*
2709 * Needn't use the lock because there is no other task which will
2710 * update the flag.
2711 */
a6fa6fae 2712 btrfs_set_super_incompat_flags(disk_super, features);
5d4f98a2 2713
f2b636e8
JB
2714 features = btrfs_super_compat_ro_flags(disk_super) &
2715 ~BTRFS_FEATURE_COMPAT_RO_SUPP;
bc98a42c 2716 if (!sb_rdonly(sb) && features) {
05135f59
DS
2717 btrfs_err(fs_info,
2718 "cannot mount read-write because of unsupported optional features (%llx)",
c1c9ff7c 2719 features);
f2b636e8 2720 err = -EINVAL;
16cdcec7 2721 goto fail_alloc;
f2b636e8 2722 }
61d92c32 2723
5cdc7ad3 2724 max_active = fs_info->thread_pool_size;
61d92c32 2725
2a458198
ES
2726 ret = btrfs_init_workqueues(fs_info, fs_devices);
2727 if (ret) {
2728 err = ret;
0dc3b84a
JB
2729 goto fail_sb_buffer;
2730 }
4543df7e 2731
9e11ceee
JK
2732 sb->s_bdi->congested_fn = btrfs_congested_fn;
2733 sb->s_bdi->congested_data = fs_info;
2734 sb->s_bdi->capabilities |= BDI_CAP_CGROUP_WRITEBACK;
d4417e22 2735 sb->s_bdi->ra_pages = VM_MAX_READAHEAD * SZ_1K / PAGE_SIZE;
9e11ceee
JK
2736 sb->s_bdi->ra_pages *= btrfs_super_num_devices(disk_super);
2737 sb->s_bdi->ra_pages = max(sb->s_bdi->ra_pages, SZ_4M / PAGE_SIZE);
4575c9cc 2738
a061fc8d
CM
2739 sb->s_blocksize = sectorsize;
2740 sb->s_blocksize_bits = blksize_bits(sectorsize);
ee87cf5e 2741 memcpy(&sb->s_uuid, fs_info->fsid, BTRFS_FSID_SIZE);
db94535d 2742
925baedd 2743 mutex_lock(&fs_info->chunk_mutex);
6bccf3ab 2744 ret = btrfs_read_sys_array(fs_info);
925baedd 2745 mutex_unlock(&fs_info->chunk_mutex);
84eed90f 2746 if (ret) {
05135f59 2747 btrfs_err(fs_info, "failed to read the system array: %d", ret);
5d4f98a2 2748 goto fail_sb_buffer;
84eed90f 2749 }
0b86a832 2750
84234f3a 2751 generation = btrfs_super_chunk_root_generation(disk_super);
0b86a832 2752
da17066c 2753 __setup_root(chunk_root, fs_info, BTRFS_CHUNK_TREE_OBJECTID);
0b86a832 2754
2ff7e61e 2755 chunk_root->node = read_tree_block(fs_info,
0b86a832 2756 btrfs_super_chunk_root(disk_super),
ce86cd59 2757 generation);
64c043de
LB
2758 if (IS_ERR(chunk_root->node) ||
2759 !extent_buffer_uptodate(chunk_root->node)) {
05135f59 2760 btrfs_err(fs_info, "failed to read chunk root");
e5fffbac 2761 if (!IS_ERR(chunk_root->node))
2762 free_extent_buffer(chunk_root->node);
95ab1f64 2763 chunk_root->node = NULL;
af31f5e5 2764 goto fail_tree_roots;
83121942 2765 }
5d4f98a2
YZ
2766 btrfs_set_root_node(&chunk_root->root_item, chunk_root->node);
2767 chunk_root->commit_root = btrfs_root_node(chunk_root);
0b86a832 2768
e17cade2 2769 read_extent_buffer(chunk_root->node, fs_info->chunk_tree_uuid,
b308bc2f 2770 btrfs_header_chunk_tree_uuid(chunk_root->node), BTRFS_UUID_SIZE);
e17cade2 2771
5b4aacef 2772 ret = btrfs_read_chunk_tree(fs_info);
2b82032c 2773 if (ret) {
05135f59 2774 btrfs_err(fs_info, "failed to read chunk tree: %d", ret);
af31f5e5 2775 goto fail_tree_roots;
2b82032c 2776 }
0b86a832 2777
8dabb742
SB
2778 /*
2779 * keep the device that is marked to be the target device for the
2780 * dev_replace procedure
2781 */
9eaed21e 2782 btrfs_close_extra_devices(fs_devices, 0);
dfe25020 2783
a6b0d5c8 2784 if (!fs_devices->latest_bdev) {
05135f59 2785 btrfs_err(fs_info, "failed to read devices");
a6b0d5c8
CM
2786 goto fail_tree_roots;
2787 }
2788
af31f5e5 2789retry_root_backup:
84234f3a 2790 generation = btrfs_super_generation(disk_super);
0b86a832 2791
2ff7e61e 2792 tree_root->node = read_tree_block(fs_info,
db94535d 2793 btrfs_super_root(disk_super),
ce86cd59 2794 generation);
64c043de
LB
2795 if (IS_ERR(tree_root->node) ||
2796 !extent_buffer_uptodate(tree_root->node)) {
05135f59 2797 btrfs_warn(fs_info, "failed to read tree root");
e5fffbac 2798 if (!IS_ERR(tree_root->node))
2799 free_extent_buffer(tree_root->node);
95ab1f64 2800 tree_root->node = NULL;
af31f5e5 2801 goto recovery_tree_root;
83121942 2802 }
af31f5e5 2803
5d4f98a2
YZ
2804 btrfs_set_root_node(&tree_root->root_item, tree_root->node);
2805 tree_root->commit_root = btrfs_root_node(tree_root);
69e9c6c6 2806 btrfs_set_root_refs(&tree_root->root_item, 1);
db94535d 2807
f32e48e9
CR
2808 mutex_lock(&tree_root->objectid_mutex);
2809 ret = btrfs_find_highest_objectid(tree_root,
2810 &tree_root->highest_objectid);
2811 if (ret) {
2812 mutex_unlock(&tree_root->objectid_mutex);
2813 goto recovery_tree_root;
2814 }
2815
2816 ASSERT(tree_root->highest_objectid <= BTRFS_LAST_FREE_OBJECTID);
2817
2818 mutex_unlock(&tree_root->objectid_mutex);
2819
6bccf3ab 2820 ret = btrfs_read_roots(fs_info);
4bbcaa64 2821 if (ret)
af31f5e5 2822 goto recovery_tree_root;
f7a81ea4 2823
8929ecfa
YZ
2824 fs_info->generation = generation;
2825 fs_info->last_trans_committed = generation;
8929ecfa 2826
68310a5e
ID
2827 ret = btrfs_recover_balance(fs_info);
2828 if (ret) {
05135f59 2829 btrfs_err(fs_info, "failed to recover balance: %d", ret);
68310a5e
ID
2830 goto fail_block_groups;
2831 }
2832
733f4fbb
SB
2833 ret = btrfs_init_dev_stats(fs_info);
2834 if (ret) {
05135f59 2835 btrfs_err(fs_info, "failed to init dev_stats: %d", ret);
733f4fbb
SB
2836 goto fail_block_groups;
2837 }
2838
8dabb742
SB
2839 ret = btrfs_init_dev_replace(fs_info);
2840 if (ret) {
05135f59 2841 btrfs_err(fs_info, "failed to init dev_replace: %d", ret);
8dabb742
SB
2842 goto fail_block_groups;
2843 }
2844
9eaed21e 2845 btrfs_close_extra_devices(fs_devices, 1);
8dabb742 2846
b7c35e81
AJ
2847 ret = btrfs_sysfs_add_fsid(fs_devices, NULL);
2848 if (ret) {
05135f59
DS
2849 btrfs_err(fs_info, "failed to init sysfs fsid interface: %d",
2850 ret);
b7c35e81
AJ
2851 goto fail_block_groups;
2852 }
2853
2854 ret = btrfs_sysfs_add_device(fs_devices);
2855 if (ret) {
05135f59
DS
2856 btrfs_err(fs_info, "failed to init sysfs device interface: %d",
2857 ret);
b7c35e81
AJ
2858 goto fail_fsdev_sysfs;
2859 }
2860
96f3136e 2861 ret = btrfs_sysfs_add_mounted(fs_info);
c59021f8 2862 if (ret) {
05135f59 2863 btrfs_err(fs_info, "failed to init sysfs interface: %d", ret);
b7c35e81 2864 goto fail_fsdev_sysfs;
c59021f8 2865 }
2866
c59021f8 2867 ret = btrfs_init_space_info(fs_info);
2868 if (ret) {
05135f59 2869 btrfs_err(fs_info, "failed to initialize space info: %d", ret);
2365dd3c 2870 goto fail_sysfs;
c59021f8 2871 }
2872
5b4aacef 2873 ret = btrfs_read_block_groups(fs_info);
1b1d1f66 2874 if (ret) {
05135f59 2875 btrfs_err(fs_info, "failed to read block groups: %d", ret);
2365dd3c 2876 goto fail_sysfs;
1b1d1f66 2877 }
4330e183 2878
0f0d1272 2879 if (!sb_rdonly(sb) && !btrfs_check_rw_degradable(fs_info)) {
05135f59 2880 btrfs_warn(fs_info,
4330e183 2881 "writeable mount is not allowed due to too many missing devices");
2365dd3c 2882 goto fail_sysfs;
292fd7fc 2883 }
9078a3e1 2884
a74a4b97
CM
2885 fs_info->cleaner_kthread = kthread_run(cleaner_kthread, tree_root,
2886 "btrfs-cleaner");
57506d50 2887 if (IS_ERR(fs_info->cleaner_kthread))
2365dd3c 2888 goto fail_sysfs;
a74a4b97
CM
2889
2890 fs_info->transaction_kthread = kthread_run(transaction_kthread,
2891 tree_root,
2892 "btrfs-transaction");
57506d50 2893 if (IS_ERR(fs_info->transaction_kthread))
3f157a2f 2894 goto fail_cleaner;
a74a4b97 2895
583b7231 2896 if (!btrfs_test_opt(fs_info, NOSSD) &&
c289811c 2897 !fs_info->fs_devices->rotating) {
583b7231 2898 btrfs_set_and_info(fs_info, SSD, "enabling ssd optimizations");
c289811c
CM
2899 }
2900
572d9ab7 2901 /*
01327610 2902 * Mount does not set all options immediately, we can do it now and do
572d9ab7
DS
2903 * not have to wait for transaction commit
2904 */
2905 btrfs_apply_pending_changes(fs_info);
3818aea2 2906
21adbd5c 2907#ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
0b246afa 2908 if (btrfs_test_opt(fs_info, CHECK_INTEGRITY)) {
2ff7e61e 2909 ret = btrfsic_mount(fs_info, fs_devices,
0b246afa 2910 btrfs_test_opt(fs_info,
21adbd5c
SB
2911 CHECK_INTEGRITY_INCLUDING_EXTENT_DATA) ?
2912 1 : 0,
2913 fs_info->check_integrity_print_mask);
2914 if (ret)
05135f59
DS
2915 btrfs_warn(fs_info,
2916 "failed to initialize integrity check module: %d",
2917 ret);
21adbd5c
SB
2918 }
2919#endif
bcef60f2
AJ
2920 ret = btrfs_read_qgroup_config(fs_info);
2921 if (ret)
2922 goto fail_trans_kthread;
21adbd5c 2923
fd708b81
JB
2924 if (btrfs_build_ref_tree(fs_info))
2925 btrfs_err(fs_info, "couldn't build ref tree");
2926
96da0919
QW
2927 /* do not make disk changes in broken FS or nologreplay is given */
2928 if (btrfs_super_log_root(disk_super) != 0 &&
0b246afa 2929 !btrfs_test_opt(fs_info, NOLOGREPLAY)) {
63443bf5 2930 ret = btrfs_replay_log(fs_info, fs_devices);
79787eaa 2931 if (ret) {
63443bf5 2932 err = ret;
28c16cbb 2933 goto fail_qgroup;
79787eaa 2934 }
e02119d5 2935 }
1a40e23b 2936
6bccf3ab 2937 ret = btrfs_find_orphan_roots(fs_info);
79787eaa 2938 if (ret)
28c16cbb 2939 goto fail_qgroup;
76dda93c 2940
bc98a42c 2941 if (!sb_rdonly(sb)) {
d68fc57b 2942 ret = btrfs_cleanup_fs_roots(fs_info);
44c44af2 2943 if (ret)
28c16cbb 2944 goto fail_qgroup;
90c711ab
ZB
2945
2946 mutex_lock(&fs_info->cleaner_mutex);
5d4f98a2 2947 ret = btrfs_recover_relocation(tree_root);
90c711ab 2948 mutex_unlock(&fs_info->cleaner_mutex);
d7ce5843 2949 if (ret < 0) {
05135f59
DS
2950 btrfs_warn(fs_info, "failed to recover relocation: %d",
2951 ret);
d7ce5843 2952 err = -EINVAL;
bcef60f2 2953 goto fail_qgroup;
d7ce5843 2954 }
7c2ca468 2955 }
1a40e23b 2956
3de4586c
CM
2957 location.objectid = BTRFS_FS_TREE_OBJECTID;
2958 location.type = BTRFS_ROOT_ITEM_KEY;
cb517eab 2959 location.offset = 0;
3de4586c 2960
3de4586c 2961 fs_info->fs_root = btrfs_read_fs_root_no_name(fs_info, &location);
3140c9a3
DC
2962 if (IS_ERR(fs_info->fs_root)) {
2963 err = PTR_ERR(fs_info->fs_root);
bcef60f2 2964 goto fail_qgroup;
3140c9a3 2965 }
c289811c 2966
bc98a42c 2967 if (sb_rdonly(sb))
2b6ba629 2968 return 0;
59641015 2969
f8d468a1
OS
2970 if (btrfs_test_opt(fs_info, CLEAR_CACHE) &&
2971 btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE)) {
6675df31
OS
2972 clear_free_space_tree = 1;
2973 } else if (btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE) &&
2974 !btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE_VALID)) {
2975 btrfs_warn(fs_info, "free space tree is invalid");
2976 clear_free_space_tree = 1;
2977 }
2978
2979 if (clear_free_space_tree) {
f8d468a1
OS
2980 btrfs_info(fs_info, "clearing free space tree");
2981 ret = btrfs_clear_free_space_tree(fs_info);
2982 if (ret) {
2983 btrfs_warn(fs_info,
2984 "failed to clear free space tree: %d", ret);
6bccf3ab 2985 close_ctree(fs_info);
f8d468a1
OS
2986 return ret;
2987 }
2988 }
2989
0b246afa 2990 if (btrfs_test_opt(fs_info, FREE_SPACE_TREE) &&
511711af 2991 !btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE)) {
05135f59 2992 btrfs_info(fs_info, "creating free space tree");
511711af
CM
2993 ret = btrfs_create_free_space_tree(fs_info);
2994 if (ret) {
05135f59
DS
2995 btrfs_warn(fs_info,
2996 "failed to create free space tree: %d", ret);
6bccf3ab 2997 close_ctree(fs_info);
511711af
CM
2998 return ret;
2999 }
3000 }
3001
2b6ba629
ID
3002 down_read(&fs_info->cleanup_work_sem);
3003 if ((ret = btrfs_orphan_cleanup(fs_info->fs_root)) ||
3004 (ret = btrfs_orphan_cleanup(fs_info->tree_root))) {
e3acc2a6 3005 up_read(&fs_info->cleanup_work_sem);
6bccf3ab 3006 close_ctree(fs_info);
2b6ba629
ID
3007 return ret;
3008 }
3009 up_read(&fs_info->cleanup_work_sem);
59641015 3010
2b6ba629
ID
3011 ret = btrfs_resume_balance_async(fs_info);
3012 if (ret) {
05135f59 3013 btrfs_warn(fs_info, "failed to resume balance: %d", ret);
6bccf3ab 3014 close_ctree(fs_info);
2b6ba629 3015 return ret;
e3acc2a6
JB
3016 }
3017
8dabb742
SB
3018 ret = btrfs_resume_dev_replace_async(fs_info);
3019 if (ret) {
05135f59 3020 btrfs_warn(fs_info, "failed to resume device replace: %d", ret);
6bccf3ab 3021 close_ctree(fs_info);
8dabb742
SB
3022 return ret;
3023 }
3024
b382a324
JS
3025 btrfs_qgroup_rescan_resume(fs_info);
3026
4bbcaa64 3027 if (!fs_info->uuid_root) {
05135f59 3028 btrfs_info(fs_info, "creating UUID tree");
f7a81ea4
SB
3029 ret = btrfs_create_uuid_tree(fs_info);
3030 if (ret) {
05135f59
DS
3031 btrfs_warn(fs_info,
3032 "failed to create the UUID tree: %d", ret);
6bccf3ab 3033 close_ctree(fs_info);
f7a81ea4
SB
3034 return ret;
3035 }
0b246afa 3036 } else if (btrfs_test_opt(fs_info, RESCAN_UUID_TREE) ||
4bbcaa64
ES
3037 fs_info->generation !=
3038 btrfs_super_uuid_tree_generation(disk_super)) {
05135f59 3039 btrfs_info(fs_info, "checking UUID tree");
70f80175
SB
3040 ret = btrfs_check_uuid_tree(fs_info);
3041 if (ret) {
05135f59
DS
3042 btrfs_warn(fs_info,
3043 "failed to check the UUID tree: %d", ret);
6bccf3ab 3044 close_ctree(fs_info);
70f80175
SB
3045 return ret;
3046 }
3047 } else {
afcdd129 3048 set_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags);
f7a81ea4 3049 }
afcdd129 3050 set_bit(BTRFS_FS_OPEN, &fs_info->flags);
47ab2a6c 3051
8dcddfa0
QW
3052 /*
3053 * backuproot only affect mount behavior, and if open_ctree succeeded,
3054 * no need to keep the flag
3055 */
3056 btrfs_clear_opt(fs_info->mount_opt, USEBACKUPROOT);
3057
ad2b2c80 3058 return 0;
39279cc3 3059
bcef60f2
AJ
3060fail_qgroup:
3061 btrfs_free_qgroup_config(fs_info);
7c2ca468
CM
3062fail_trans_kthread:
3063 kthread_stop(fs_info->transaction_kthread);
2ff7e61e 3064 btrfs_cleanup_transaction(fs_info);
faa2dbf0 3065 btrfs_free_fs_roots(fs_info);
3f157a2f 3066fail_cleaner:
a74a4b97 3067 kthread_stop(fs_info->cleaner_kthread);
7c2ca468
CM
3068
3069 /*
3070 * make sure we're done with the btree inode before we stop our
3071 * kthreads
3072 */
3073 filemap_write_and_wait(fs_info->btree_inode->i_mapping);
7c2ca468 3074
2365dd3c 3075fail_sysfs:
6618a59b 3076 btrfs_sysfs_remove_mounted(fs_info);
2365dd3c 3077
b7c35e81
AJ
3078fail_fsdev_sysfs:
3079 btrfs_sysfs_remove_fsid(fs_info->fs_devices);
3080
1b1d1f66 3081fail_block_groups:
54067ae9 3082 btrfs_put_block_group_cache(fs_info);
af31f5e5
CM
3083
3084fail_tree_roots:
3085 free_root_pointers(fs_info, 1);
2b8195bb 3086 invalidate_inode_pages2(fs_info->btree_inode->i_mapping);
af31f5e5 3087
39279cc3 3088fail_sb_buffer:
7abadb64 3089 btrfs_stop_all_workers(fs_info);
5cdd7db6 3090 btrfs_free_block_groups(fs_info);
16cdcec7 3091fail_alloc:
4543df7e 3092fail_iput:
586e46e2
ID
3093 btrfs_mapping_tree_free(&fs_info->mapping_tree);
3094
4543df7e 3095 iput(fs_info->btree_inode);
c404e0dc
MX
3096fail_bio_counter:
3097 percpu_counter_destroy(&fs_info->bio_counter);
963d678b
MX
3098fail_delalloc_bytes:
3099 percpu_counter_destroy(&fs_info->delalloc_bytes);
e2d84521
MX
3100fail_dirty_metadata_bytes:
3101 percpu_counter_destroy(&fs_info->dirty_metadata_bytes);
76dda93c
YZ
3102fail_srcu:
3103 cleanup_srcu_struct(&fs_info->subvol_srcu);
7e662854 3104fail:
53b381b3 3105 btrfs_free_stripe_hash_table(fs_info);
586e46e2 3106 btrfs_close_devices(fs_info->fs_devices);
ad2b2c80 3107 return err;
af31f5e5
CM
3108
3109recovery_tree_root:
0b246afa 3110 if (!btrfs_test_opt(fs_info, USEBACKUPROOT))
af31f5e5
CM
3111 goto fail_tree_roots;
3112
3113 free_root_pointers(fs_info, 0);
3114
3115 /* don't use the log in recovery mode, it won't be valid */
3116 btrfs_set_super_log_root(disk_super, 0);
3117
3118 /* we can't trust the free space cache either */
3119 btrfs_set_opt(fs_info->mount_opt, CLEAR_CACHE);
3120
3121 ret = next_root_backup(fs_info, fs_info->super_copy,
3122 &num_backups_tried, &backup_index);
3123 if (ret == -1)
3124 goto fail_block_groups;
3125 goto retry_root_backup;
eb60ceac
CM
3126}
3127
f2984462
CM
3128static void btrfs_end_buffer_write_sync(struct buffer_head *bh, int uptodate)
3129{
f2984462
CM
3130 if (uptodate) {
3131 set_buffer_uptodate(bh);
3132 } else {
442a4f63
SB
3133 struct btrfs_device *device = (struct btrfs_device *)
3134 bh->b_private;
3135
fb456252 3136 btrfs_warn_rl_in_rcu(device->fs_info,
b14af3b4 3137 "lost page write due to IO error on %s",
606686ee 3138 rcu_str_deref(device->name));
01327610 3139 /* note, we don't set_buffer_write_io_error because we have
1259ab75
CM
3140 * our own ways of dealing with the IO errors
3141 */
f2984462 3142 clear_buffer_uptodate(bh);
442a4f63 3143 btrfs_dev_stat_inc_and_print(device, BTRFS_DEV_STAT_WRITE_ERRS);
f2984462
CM
3144 }
3145 unlock_buffer(bh);
3146 put_bh(bh);
3147}
3148
29c36d72
AJ
3149int btrfs_read_dev_one_super(struct block_device *bdev, int copy_num,
3150 struct buffer_head **bh_ret)
3151{
3152 struct buffer_head *bh;
3153 struct btrfs_super_block *super;
3154 u64 bytenr;
3155
3156 bytenr = btrfs_sb_offset(copy_num);
3157 if (bytenr + BTRFS_SUPER_INFO_SIZE >= i_size_read(bdev->bd_inode))
3158 return -EINVAL;
3159
9f6d2510 3160 bh = __bread(bdev, bytenr / BTRFS_BDEV_BLOCKSIZE, BTRFS_SUPER_INFO_SIZE);
29c36d72
AJ
3161 /*
3162 * If we fail to read from the underlying devices, as of now
3163 * the best option we have is to mark it EIO.
3164 */
3165 if (!bh)
3166 return -EIO;
3167
3168 super = (struct btrfs_super_block *)bh->b_data;
3169 if (btrfs_super_bytenr(super) != bytenr ||
3170 btrfs_super_magic(super) != BTRFS_MAGIC) {
3171 brelse(bh);
3172 return -EINVAL;
3173 }
3174
3175 *bh_ret = bh;
3176 return 0;
3177}
3178
3179
a512bbf8
YZ
3180struct buffer_head *btrfs_read_dev_super(struct block_device *bdev)
3181{
3182 struct buffer_head *bh;
3183 struct buffer_head *latest = NULL;
3184 struct btrfs_super_block *super;
3185 int i;
3186 u64 transid = 0;
92fc03fb 3187 int ret = -EINVAL;
a512bbf8
YZ
3188
3189 /* we would like to check all the supers, but that would make
3190 * a btrfs mount succeed after a mkfs from a different FS.
3191 * So, we need to add a special mount option to scan for
3192 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
3193 */
3194 for (i = 0; i < 1; i++) {
29c36d72
AJ
3195 ret = btrfs_read_dev_one_super(bdev, i, &bh);
3196 if (ret)
a512bbf8
YZ
3197 continue;
3198
3199 super = (struct btrfs_super_block *)bh->b_data;
a512bbf8
YZ
3200
3201 if (!latest || btrfs_super_generation(super) > transid) {
3202 brelse(latest);
3203 latest = bh;
3204 transid = btrfs_super_generation(super);
3205 } else {
3206 brelse(bh);
3207 }
3208 }
92fc03fb
AJ
3209
3210 if (!latest)
3211 return ERR_PTR(ret);
3212
a512bbf8
YZ
3213 return latest;
3214}
3215
4eedeb75 3216/*
abbb3b8e
DS
3217 * Write superblock @sb to the @device. Do not wait for completion, all the
3218 * buffer heads we write are pinned.
4eedeb75 3219 *
abbb3b8e
DS
3220 * Write @max_mirrors copies of the superblock, where 0 means default that fit
3221 * the expected device size at commit time. Note that max_mirrors must be
3222 * same for write and wait phases.
4eedeb75 3223 *
abbb3b8e 3224 * Return number of errors when buffer head is not found or submission fails.
4eedeb75 3225 */
a512bbf8 3226static int write_dev_supers(struct btrfs_device *device,
abbb3b8e 3227 struct btrfs_super_block *sb, int max_mirrors)
a512bbf8
YZ
3228{
3229 struct buffer_head *bh;
3230 int i;
3231 int ret;
3232 int errors = 0;
3233 u32 crc;
3234 u64 bytenr;
1b9e619c 3235 int op_flags;
a512bbf8
YZ
3236
3237 if (max_mirrors == 0)
3238 max_mirrors = BTRFS_SUPER_MIRROR_MAX;
3239
a512bbf8
YZ
3240 for (i = 0; i < max_mirrors; i++) {
3241 bytenr = btrfs_sb_offset(i);
935e5cc9
MX
3242 if (bytenr + BTRFS_SUPER_INFO_SIZE >=
3243 device->commit_total_bytes)
a512bbf8
YZ
3244 break;
3245
abbb3b8e 3246 btrfs_set_super_bytenr(sb, bytenr);
4eedeb75 3247
abbb3b8e
DS
3248 crc = ~(u32)0;
3249 crc = btrfs_csum_data((const char *)sb + BTRFS_CSUM_SIZE, crc,
3250 BTRFS_SUPER_INFO_SIZE - BTRFS_CSUM_SIZE);
3251 btrfs_csum_final(crc, sb->csum);
4eedeb75 3252
abbb3b8e 3253 /* One reference for us, and we leave it for the caller */
9f6d2510 3254 bh = __getblk(device->bdev, bytenr / BTRFS_BDEV_BLOCKSIZE,
abbb3b8e
DS
3255 BTRFS_SUPER_INFO_SIZE);
3256 if (!bh) {
3257 btrfs_err(device->fs_info,
3258 "couldn't get super buffer head for bytenr %llu",
3259 bytenr);
3260 errors++;
4eedeb75 3261 continue;
abbb3b8e 3262 }
634554dc 3263
abbb3b8e 3264 memcpy(bh->b_data, sb, BTRFS_SUPER_INFO_SIZE);
a512bbf8 3265
abbb3b8e
DS
3266 /* one reference for submit_bh */
3267 get_bh(bh);
4eedeb75 3268
abbb3b8e
DS
3269 set_buffer_uptodate(bh);
3270 lock_buffer(bh);
3271 bh->b_end_io = btrfs_end_buffer_write_sync;
3272 bh->b_private = device;
a512bbf8 3273
387125fc
CM
3274 /*
3275 * we fua the first super. The others we allow
3276 * to go down lazy.
3277 */
1b9e619c
OS
3278 op_flags = REQ_SYNC | REQ_META | REQ_PRIO;
3279 if (i == 0 && !btrfs_test_opt(device->fs_info, NOBARRIER))
3280 op_flags |= REQ_FUA;
3281 ret = btrfsic_submit_bh(REQ_OP_WRITE, op_flags, bh);
4eedeb75 3282 if (ret)
a512bbf8 3283 errors++;
a512bbf8
YZ
3284 }
3285 return errors < i ? 0 : -1;
3286}
3287
abbb3b8e
DS
3288/*
3289 * Wait for write completion of superblocks done by write_dev_supers,
3290 * @max_mirrors same for write and wait phases.
3291 *
3292 * Return number of errors when buffer head is not found or not marked up to
3293 * date.
3294 */
3295static int wait_dev_supers(struct btrfs_device *device, int max_mirrors)
3296{
3297 struct buffer_head *bh;
3298 int i;
3299 int errors = 0;
3300 u64 bytenr;
3301
3302 if (max_mirrors == 0)
3303 max_mirrors = BTRFS_SUPER_MIRROR_MAX;
3304
3305 for (i = 0; i < max_mirrors; i++) {
3306 bytenr = btrfs_sb_offset(i);
3307 if (bytenr + BTRFS_SUPER_INFO_SIZE >=
3308 device->commit_total_bytes)
3309 break;
3310
9f6d2510
DS
3311 bh = __find_get_block(device->bdev,
3312 bytenr / BTRFS_BDEV_BLOCKSIZE,
abbb3b8e
DS
3313 BTRFS_SUPER_INFO_SIZE);
3314 if (!bh) {
3315 errors++;
3316 continue;
3317 }
3318 wait_on_buffer(bh);
3319 if (!buffer_uptodate(bh))
3320 errors++;
3321
3322 /* drop our reference */
3323 brelse(bh);
3324
3325 /* drop the reference from the writing run */
3326 brelse(bh);
3327 }
3328
3329 return errors < i ? 0 : -1;
3330}
3331
387125fc
CM
3332/*
3333 * endio for the write_dev_flush, this will wake anyone waiting
3334 * for the barrier when it is done
3335 */
4246a0b6 3336static void btrfs_end_empty_barrier(struct bio *bio)
387125fc 3337{
e0ae9994 3338 complete(bio->bi_private);
387125fc
CM
3339}
3340
3341/*
4fc6441a
AJ
3342 * Submit a flush request to the device if it supports it. Error handling is
3343 * done in the waiting counterpart.
387125fc 3344 */
4fc6441a 3345static void write_dev_flush(struct btrfs_device *device)
387125fc 3346{
c2a9c7ab 3347 struct request_queue *q = bdev_get_queue(device->bdev);
e0ae9994 3348 struct bio *bio = device->flush_bio;
387125fc 3349
c2a9c7ab 3350 if (!test_bit(QUEUE_FLAG_WC, &q->queue_flags))
4fc6441a 3351 return;
387125fc 3352
e0ae9994 3353 bio_reset(bio);
387125fc 3354 bio->bi_end_io = btrfs_end_empty_barrier;
74d46992 3355 bio_set_dev(bio, device->bdev);
8d910125 3356 bio->bi_opf = REQ_OP_WRITE | REQ_SYNC | REQ_PREFLUSH;
387125fc
CM
3357 init_completion(&device->flush_wait);
3358 bio->bi_private = &device->flush_wait;
387125fc 3359
43a01111 3360 btrfsic_submit_bio(bio);
e0ae9994 3361 device->flush_bio_sent = 1;
4fc6441a 3362}
387125fc 3363
4fc6441a
AJ
3364/*
3365 * If the flush bio has been submitted by write_dev_flush, wait for it.
3366 */
8c27cb35 3367static blk_status_t wait_dev_flush(struct btrfs_device *device)
4fc6441a 3368{
4fc6441a 3369 struct bio *bio = device->flush_bio;
387125fc 3370
e0ae9994 3371 if (!device->flush_bio_sent)
58efbc9f 3372 return BLK_STS_OK;
387125fc 3373
e0ae9994 3374 device->flush_bio_sent = 0;
2980d574 3375 wait_for_completion_io(&device->flush_wait);
387125fc 3376
8c27cb35 3377 return bio->bi_status;
387125fc 3378}
387125fc 3379
d10b82fe 3380static int check_barrier_error(struct btrfs_fs_info *fs_info)
401b41e5 3381{
d10b82fe 3382 if (!btrfs_check_rw_degradable(fs_info))
401b41e5 3383 return -EIO;
387125fc
CM
3384 return 0;
3385}
3386
3387/*
3388 * send an empty flush down to each device in parallel,
3389 * then wait for them
3390 */
3391static int barrier_all_devices(struct btrfs_fs_info *info)
3392{
3393 struct list_head *head;
3394 struct btrfs_device *dev;
5af3e8cc 3395 int errors_wait = 0;
4e4cbee9 3396 blk_status_t ret;
387125fc 3397
1538e6c5 3398 lockdep_assert_held(&info->fs_devices->device_list_mutex);
387125fc
CM
3399 /* send down all the barriers */
3400 head = &info->fs_devices->devices;
1538e6c5 3401 list_for_each_entry(dev, head, dev_list) {
f88ba6a2
HS
3402 if (dev->missing)
3403 continue;
cea7c8bf 3404 if (!dev->bdev)
387125fc 3405 continue;
387125fc
CM
3406 if (!dev->in_fs_metadata || !dev->writeable)
3407 continue;
3408
4fc6441a 3409 write_dev_flush(dev);
58efbc9f 3410 dev->last_flush_error = BLK_STS_OK;
387125fc
CM
3411 }
3412
3413 /* wait for all the barriers */
1538e6c5 3414 list_for_each_entry(dev, head, dev_list) {
f88ba6a2
HS
3415 if (dev->missing)
3416 continue;
387125fc 3417 if (!dev->bdev) {
5af3e8cc 3418 errors_wait++;
387125fc
CM
3419 continue;
3420 }
3421 if (!dev->in_fs_metadata || !dev->writeable)
3422 continue;
3423
4fc6441a 3424 ret = wait_dev_flush(dev);
401b41e5
AJ
3425 if (ret) {
3426 dev->last_flush_error = ret;
66b4993e
DS
3427 btrfs_dev_stat_inc_and_print(dev,
3428 BTRFS_DEV_STAT_FLUSH_ERRS);
5af3e8cc 3429 errors_wait++;
401b41e5
AJ
3430 }
3431 }
3432
cea7c8bf 3433 if (errors_wait) {
401b41e5
AJ
3434 /*
3435 * At some point we need the status of all disks
3436 * to arrive at the volume status. So error checking
3437 * is being pushed to a separate loop.
3438 */
d10b82fe 3439 return check_barrier_error(info);
387125fc 3440 }
387125fc
CM
3441 return 0;
3442}
3443
943c6e99
ZL
3444int btrfs_get_num_tolerated_disk_barrier_failures(u64 flags)
3445{
8789f4fe
ZL
3446 int raid_type;
3447 int min_tolerated = INT_MAX;
943c6e99 3448
8789f4fe
ZL
3449 if ((flags & BTRFS_BLOCK_GROUP_PROFILE_MASK) == 0 ||
3450 (flags & BTRFS_AVAIL_ALLOC_BIT_SINGLE))
3451 min_tolerated = min(min_tolerated,
3452 btrfs_raid_array[BTRFS_RAID_SINGLE].
3453 tolerated_failures);
943c6e99 3454
8789f4fe
ZL
3455 for (raid_type = 0; raid_type < BTRFS_NR_RAID_TYPES; raid_type++) {
3456 if (raid_type == BTRFS_RAID_SINGLE)
3457 continue;
3458 if (!(flags & btrfs_raid_group[raid_type]))
3459 continue;
3460 min_tolerated = min(min_tolerated,
3461 btrfs_raid_array[raid_type].
3462 tolerated_failures);
3463 }
943c6e99 3464
8789f4fe 3465 if (min_tolerated == INT_MAX) {
ab8d0fc4 3466 pr_warn("BTRFS: unknown raid flag: %llu", flags);
8789f4fe
ZL
3467 min_tolerated = 0;
3468 }
3469
3470 return min_tolerated;
943c6e99
ZL
3471}
3472
eece6a9c 3473int write_all_supers(struct btrfs_fs_info *fs_info, int max_mirrors)
f2984462 3474{
e5e9a520 3475 struct list_head *head;
f2984462 3476 struct btrfs_device *dev;
a061fc8d 3477 struct btrfs_super_block *sb;
f2984462 3478 struct btrfs_dev_item *dev_item;
f2984462
CM
3479 int ret;
3480 int do_barriers;
a236aed1
CM
3481 int max_errors;
3482 int total_errors = 0;
a061fc8d 3483 u64 flags;
f2984462 3484
0b246afa 3485 do_barriers = !btrfs_test_opt(fs_info, NOBARRIER);
fed3b381
LB
3486
3487 /*
3488 * max_mirrors == 0 indicates we're from commit_transaction,
3489 * not from fsync where the tree roots in fs_info have not
3490 * been consistent on disk.
3491 */
3492 if (max_mirrors == 0)
3493 backup_super_roots(fs_info);
f2984462 3494
0b246afa 3495 sb = fs_info->super_for_commit;
a061fc8d 3496 dev_item = &sb->dev_item;
e5e9a520 3497
0b246afa
JM
3498 mutex_lock(&fs_info->fs_devices->device_list_mutex);
3499 head = &fs_info->fs_devices->devices;
3500 max_errors = btrfs_super_num_devices(fs_info->super_copy) - 1;
387125fc 3501
5af3e8cc 3502 if (do_barriers) {
0b246afa 3503 ret = barrier_all_devices(fs_info);
5af3e8cc
SB
3504 if (ret) {
3505 mutex_unlock(
0b246afa
JM
3506 &fs_info->fs_devices->device_list_mutex);
3507 btrfs_handle_fs_error(fs_info, ret,
3508 "errors while submitting device barriers.");
5af3e8cc
SB
3509 return ret;
3510 }
3511 }
387125fc 3512
1538e6c5 3513 list_for_each_entry(dev, head, dev_list) {
dfe25020
CM
3514 if (!dev->bdev) {
3515 total_errors++;
3516 continue;
3517 }
2b82032c 3518 if (!dev->in_fs_metadata || !dev->writeable)
dfe25020
CM
3519 continue;
3520
2b82032c 3521 btrfs_set_stack_device_generation(dev_item, 0);
a061fc8d
CM
3522 btrfs_set_stack_device_type(dev_item, dev->type);
3523 btrfs_set_stack_device_id(dev_item, dev->devid);
7df69d3e 3524 btrfs_set_stack_device_total_bytes(dev_item,
935e5cc9 3525 dev->commit_total_bytes);
ce7213c7
MX
3526 btrfs_set_stack_device_bytes_used(dev_item,
3527 dev->commit_bytes_used);
a061fc8d
CM
3528 btrfs_set_stack_device_io_align(dev_item, dev->io_align);
3529 btrfs_set_stack_device_io_width(dev_item, dev->io_width);
3530 btrfs_set_stack_device_sector_size(dev_item, dev->sector_size);
3531 memcpy(dev_item->uuid, dev->uuid, BTRFS_UUID_SIZE);
44880fdc 3532 memcpy(dev_item->fsid, dev->fs_devices->fsid, BTRFS_FSID_SIZE);
a512bbf8 3533
a061fc8d
CM
3534 flags = btrfs_super_flags(sb);
3535 btrfs_set_super_flags(sb, flags | BTRFS_HEADER_FLAG_WRITTEN);
3536
abbb3b8e 3537 ret = write_dev_supers(dev, sb, max_mirrors);
a236aed1
CM
3538 if (ret)
3539 total_errors++;
f2984462 3540 }
a236aed1 3541 if (total_errors > max_errors) {
0b246afa
JM
3542 btrfs_err(fs_info, "%d errors while writing supers",
3543 total_errors);
3544 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
79787eaa 3545
9d565ba4 3546 /* FUA is masked off if unsupported and can't be the reason */
0b246afa
JM
3547 btrfs_handle_fs_error(fs_info, -EIO,
3548 "%d errors while writing supers",
3549 total_errors);
9d565ba4 3550 return -EIO;
a236aed1 3551 }
f2984462 3552
a512bbf8 3553 total_errors = 0;
1538e6c5 3554 list_for_each_entry(dev, head, dev_list) {
dfe25020
CM
3555 if (!dev->bdev)
3556 continue;
2b82032c 3557 if (!dev->in_fs_metadata || !dev->writeable)
dfe25020
CM
3558 continue;
3559
abbb3b8e 3560 ret = wait_dev_supers(dev, max_mirrors);
a512bbf8
YZ
3561 if (ret)
3562 total_errors++;
f2984462 3563 }
0b246afa 3564 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
a236aed1 3565 if (total_errors > max_errors) {
0b246afa
JM
3566 btrfs_handle_fs_error(fs_info, -EIO,
3567 "%d errors while writing supers",
3568 total_errors);
79787eaa 3569 return -EIO;
a236aed1 3570 }
f2984462
CM
3571 return 0;
3572}
3573
cb517eab
MX
3574/* Drop a fs root from the radix tree and free it. */
3575void btrfs_drop_and_free_fs_root(struct btrfs_fs_info *fs_info,
3576 struct btrfs_root *root)
2619ba1f 3577{
4df27c4d 3578 spin_lock(&fs_info->fs_roots_radix_lock);
2619ba1f
CM
3579 radix_tree_delete(&fs_info->fs_roots_radix,
3580 (unsigned long)root->root_key.objectid);
4df27c4d 3581 spin_unlock(&fs_info->fs_roots_radix_lock);
76dda93c
YZ
3582
3583 if (btrfs_root_refs(&root->root_item) == 0)
3584 synchronize_srcu(&fs_info->subvol_srcu);
3585
1c1ea4f7 3586 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) {
3321719e 3587 btrfs_free_log(NULL, root);
1c1ea4f7
LB
3588 if (root->reloc_root) {
3589 free_extent_buffer(root->reloc_root->node);
3590 free_extent_buffer(root->reloc_root->commit_root);
3591 btrfs_put_fs_root(root->reloc_root);
3592 root->reloc_root = NULL;
3593 }
3594 }
3321719e 3595
faa2dbf0
JB
3596 if (root->free_ino_pinned)
3597 __btrfs_remove_free_space_cache(root->free_ino_pinned);
3598 if (root->free_ino_ctl)
3599 __btrfs_remove_free_space_cache(root->free_ino_ctl);
4df27c4d 3600 free_fs_root(root);
4df27c4d
YZ
3601}
3602
3603static void free_fs_root(struct btrfs_root *root)
3604{
57cdc8db 3605 iput(root->ino_cache_inode);
4df27c4d 3606 WARN_ON(!RB_EMPTY_ROOT(&root->inode_tree));
2ff7e61e 3607 btrfs_free_block_rsv(root->fs_info, root->orphan_block_rsv);
1cb048f5 3608 root->orphan_block_rsv = NULL;
0ee5dc67
AV
3609 if (root->anon_dev)
3610 free_anon_bdev(root->anon_dev);
8257b2dc
MX
3611 if (root->subv_writers)
3612 btrfs_free_subvolume_writers(root->subv_writers);
4df27c4d
YZ
3613 free_extent_buffer(root->node);
3614 free_extent_buffer(root->commit_root);
581bb050
LZ
3615 kfree(root->free_ino_ctl);
3616 kfree(root->free_ino_pinned);
d397712b 3617 kfree(root->name);
b0feb9d9 3618 btrfs_put_fs_root(root);
2619ba1f
CM
3619}
3620
cb517eab
MX
3621void btrfs_free_fs_root(struct btrfs_root *root)
3622{
3623 free_fs_root(root);
2619ba1f
CM
3624}
3625
c146afad 3626int btrfs_cleanup_fs_roots(struct btrfs_fs_info *fs_info)
cfaa7295 3627{
c146afad
YZ
3628 u64 root_objectid = 0;
3629 struct btrfs_root *gang[8];
65d33fd7
QW
3630 int i = 0;
3631 int err = 0;
3632 unsigned int ret = 0;
3633 int index;
e089f05c 3634
c146afad 3635 while (1) {
65d33fd7 3636 index = srcu_read_lock(&fs_info->subvol_srcu);
c146afad
YZ
3637 ret = radix_tree_gang_lookup(&fs_info->fs_roots_radix,
3638 (void **)gang, root_objectid,
3639 ARRAY_SIZE(gang));
65d33fd7
QW
3640 if (!ret) {
3641 srcu_read_unlock(&fs_info->subvol_srcu, index);
c146afad 3642 break;
65d33fd7 3643 }
5d4f98a2 3644 root_objectid = gang[ret - 1]->root_key.objectid + 1;
65d33fd7 3645
c146afad 3646 for (i = 0; i < ret; i++) {
65d33fd7
QW
3647 /* Avoid to grab roots in dead_roots */
3648 if (btrfs_root_refs(&gang[i]->root_item) == 0) {
3649 gang[i] = NULL;
3650 continue;
3651 }
3652 /* grab all the search result for later use */
3653 gang[i] = btrfs_grab_fs_root(gang[i]);
3654 }
3655 srcu_read_unlock(&fs_info->subvol_srcu, index);
66b4ffd1 3656
65d33fd7
QW
3657 for (i = 0; i < ret; i++) {
3658 if (!gang[i])
3659 continue;
c146afad 3660 root_objectid = gang[i]->root_key.objectid;
66b4ffd1
JB
3661 err = btrfs_orphan_cleanup(gang[i]);
3662 if (err)
65d33fd7
QW
3663 break;
3664 btrfs_put_fs_root(gang[i]);
c146afad
YZ
3665 }
3666 root_objectid++;
3667 }
65d33fd7
QW
3668
3669 /* release the uncleaned roots due to error */
3670 for (; i < ret; i++) {
3671 if (gang[i])
3672 btrfs_put_fs_root(gang[i]);
3673 }
3674 return err;
c146afad 3675}
a2135011 3676
6bccf3ab 3677int btrfs_commit_super(struct btrfs_fs_info *fs_info)
c146afad 3678{
6bccf3ab 3679 struct btrfs_root *root = fs_info->tree_root;
c146afad 3680 struct btrfs_trans_handle *trans;
a74a4b97 3681
0b246afa 3682 mutex_lock(&fs_info->cleaner_mutex);
2ff7e61e 3683 btrfs_run_delayed_iputs(fs_info);
0b246afa
JM
3684 mutex_unlock(&fs_info->cleaner_mutex);
3685 wake_up_process(fs_info->cleaner_kthread);
c71bf099
YZ
3686
3687 /* wait until ongoing cleanup work done */
0b246afa
JM
3688 down_write(&fs_info->cleanup_work_sem);
3689 up_write(&fs_info->cleanup_work_sem);
c71bf099 3690
7a7eaa40 3691 trans = btrfs_join_transaction(root);
3612b495
TI
3692 if (IS_ERR(trans))
3693 return PTR_ERR(trans);
3a45bb20 3694 return btrfs_commit_transaction(trans);
c146afad
YZ
3695}
3696
6bccf3ab 3697void close_ctree(struct btrfs_fs_info *fs_info)
c146afad 3698{
6bccf3ab 3699 struct btrfs_root *root = fs_info->tree_root;
c146afad
YZ
3700 int ret;
3701
afcdd129 3702 set_bit(BTRFS_FS_CLOSING_START, &fs_info->flags);
c146afad 3703
7343dd61 3704 /* wait for the qgroup rescan worker to stop */
d06f23d6 3705 btrfs_qgroup_wait_for_completion(fs_info, false);
7343dd61 3706
803b2f54
SB
3707 /* wait for the uuid_scan task to finish */
3708 down(&fs_info->uuid_tree_rescan_sem);
3709 /* avoid complains from lockdep et al., set sem back to initial state */
3710 up(&fs_info->uuid_tree_rescan_sem);
3711
837d5b6e 3712 /* pause restriper - we want to resume on mount */
aa1b8cd4 3713 btrfs_pause_balance(fs_info);
837d5b6e 3714
8dabb742
SB
3715 btrfs_dev_replace_suspend_for_unmount(fs_info);
3716
aa1b8cd4 3717 btrfs_scrub_cancel(fs_info);
4cb5300b
CM
3718
3719 /* wait for any defraggers to finish */
3720 wait_event(fs_info->transaction_wait,
3721 (atomic_read(&fs_info->defrag_running) == 0));
3722
3723 /* clear out the rbtree of defraggable inodes */
26176e7c 3724 btrfs_cleanup_defrag_inodes(fs_info);
4cb5300b 3725
21c7e756
MX
3726 cancel_work_sync(&fs_info->async_reclaim_work);
3727
bc98a42c 3728 if (!sb_rdonly(fs_info->sb)) {
e44163e1
JM
3729 /*
3730 * If the cleaner thread is stopped and there are
3731 * block groups queued for removal, the deletion will be
3732 * skipped when we quit the cleaner thread.
3733 */
0b246afa 3734 btrfs_delete_unused_bgs(fs_info);
e44163e1 3735
6bccf3ab 3736 ret = btrfs_commit_super(fs_info);
acce952b 3737 if (ret)
04892340 3738 btrfs_err(fs_info, "commit super ret %d", ret);
acce952b 3739 }
3740
87533c47 3741 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
2ff7e61e 3742 btrfs_error_commit_super(fs_info);
0f7d52f4 3743
e3029d9f
AV
3744 kthread_stop(fs_info->transaction_kthread);
3745 kthread_stop(fs_info->cleaner_kthread);
8929ecfa 3746
afcdd129 3747 set_bit(BTRFS_FS_CLOSING_DONE, &fs_info->flags);
f25784b3 3748
04892340 3749 btrfs_free_qgroup_config(fs_info);
bcef60f2 3750
963d678b 3751 if (percpu_counter_sum(&fs_info->delalloc_bytes)) {
04892340 3752 btrfs_info(fs_info, "at unmount delalloc count %lld",
963d678b 3753 percpu_counter_sum(&fs_info->delalloc_bytes));
b0c68f8b 3754 }
bcc63abb 3755
6618a59b 3756 btrfs_sysfs_remove_mounted(fs_info);
b7c35e81 3757 btrfs_sysfs_remove_fsid(fs_info->fs_devices);
5ac1d209 3758
faa2dbf0 3759 btrfs_free_fs_roots(fs_info);
d10c5f31 3760
1a4319cc
LB
3761 btrfs_put_block_group_cache(fs_info);
3762
de348ee0
WS
3763 /*
3764 * we must make sure there is not any read request to
3765 * submit after we stopping all workers.
3766 */
3767 invalidate_inode_pages2(fs_info->btree_inode->i_mapping);
96192499
JB
3768 btrfs_stop_all_workers(fs_info);
3769
5cdd7db6
FM
3770 btrfs_free_block_groups(fs_info);
3771
afcdd129 3772 clear_bit(BTRFS_FS_OPEN, &fs_info->flags);
13e6c37b 3773 free_root_pointers(fs_info, 1);
9ad6b7bc 3774
13e6c37b 3775 iput(fs_info->btree_inode);
d6bfde87 3776
21adbd5c 3777#ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
0b246afa 3778 if (btrfs_test_opt(fs_info, CHECK_INTEGRITY))
2ff7e61e 3779 btrfsic_unmount(fs_info->fs_devices);
21adbd5c
SB
3780#endif
3781
dfe25020 3782 btrfs_close_devices(fs_info->fs_devices);
0b86a832 3783 btrfs_mapping_tree_free(&fs_info->mapping_tree);
b248a415 3784
e2d84521 3785 percpu_counter_destroy(&fs_info->dirty_metadata_bytes);
963d678b 3786 percpu_counter_destroy(&fs_info->delalloc_bytes);
c404e0dc 3787 percpu_counter_destroy(&fs_info->bio_counter);
76dda93c 3788 cleanup_srcu_struct(&fs_info->subvol_srcu);
0b86a832 3789
53b381b3 3790 btrfs_free_stripe_hash_table(fs_info);
fd708b81 3791 btrfs_free_ref_cache(fs_info);
53b381b3 3792
cdfb080e 3793 __btrfs_free_block_rsv(root->orphan_block_rsv);
1cb048f5 3794 root->orphan_block_rsv = NULL;
04216820 3795
04216820
FM
3796 while (!list_empty(&fs_info->pinned_chunks)) {
3797 struct extent_map *em;
3798
3799 em = list_first_entry(&fs_info->pinned_chunks,
3800 struct extent_map, list);
3801 list_del_init(&em->list);
3802 free_extent_map(em);
3803 }
eb60ceac
CM
3804}
3805
b9fab919
CM
3806int btrfs_buffer_uptodate(struct extent_buffer *buf, u64 parent_transid,
3807 int atomic)
5f39d397 3808{
1259ab75 3809 int ret;
727011e0 3810 struct inode *btree_inode = buf->pages[0]->mapping->host;
1259ab75 3811
0b32f4bb 3812 ret = extent_buffer_uptodate(buf);
1259ab75
CM
3813 if (!ret)
3814 return ret;
3815
3816 ret = verify_parent_transid(&BTRFS_I(btree_inode)->io_tree, buf,
b9fab919
CM
3817 parent_transid, atomic);
3818 if (ret == -EAGAIN)
3819 return ret;
1259ab75 3820 return !ret;
5f39d397
CM
3821}
3822
5f39d397
CM
3823void btrfs_mark_buffer_dirty(struct extent_buffer *buf)
3824{
0b246afa 3825 struct btrfs_fs_info *fs_info;
06ea65a3 3826 struct btrfs_root *root;
5f39d397 3827 u64 transid = btrfs_header_generation(buf);
b9473439 3828 int was_dirty;
b4ce94de 3829
06ea65a3
JB
3830#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
3831 /*
3832 * This is a fast path so only do this check if we have sanity tests
3833 * enabled. Normal people shouldn't be marking dummy buffers as dirty
3834 * outside of the sanity tests.
3835 */
3836 if (unlikely(test_bit(EXTENT_BUFFER_DUMMY, &buf->bflags)))
3837 return;
3838#endif
3839 root = BTRFS_I(buf->pages[0]->mapping->host)->root;
0b246afa 3840 fs_info = root->fs_info;
b9447ef8 3841 btrfs_assert_tree_locked(buf);
0b246afa 3842 if (transid != fs_info->generation)
5d163e0e 3843 WARN(1, KERN_CRIT "btrfs transid mismatch buffer %llu, found %llu running %llu\n",
0b246afa 3844 buf->start, transid, fs_info->generation);
0b32f4bb 3845 was_dirty = set_extent_buffer_dirty(buf);
e2d84521 3846 if (!was_dirty)
104b4e51
NB
3847 percpu_counter_add_batch(&fs_info->dirty_metadata_bytes,
3848 buf->len,
3849 fs_info->dirty_metadata_batch);
1f21ef0a 3850#ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
69fc6cbb
QW
3851 /*
3852 * Since btrfs_mark_buffer_dirty() can be called with item pointer set
3853 * but item data not updated.
3854 * So here we should only check item pointers, not item data.
3855 */
3856 if (btrfs_header_level(buf) == 0 &&
3857 btrfs_check_leaf_relaxed(root, buf)) {
a4f78750 3858 btrfs_print_leaf(buf);
1f21ef0a
FM
3859 ASSERT(0);
3860 }
3861#endif
eb60ceac
CM
3862}
3863
2ff7e61e 3864static void __btrfs_btree_balance_dirty(struct btrfs_fs_info *fs_info,
b53d3f5d 3865 int flush_delayed)
16cdcec7
MX
3866{
3867 /*
3868 * looks as though older kernels can get into trouble with
3869 * this code, they end up stuck in balance_dirty_pages forever
3870 */
e2d84521 3871 int ret;
16cdcec7
MX
3872
3873 if (current->flags & PF_MEMALLOC)
3874 return;
3875
b53d3f5d 3876 if (flush_delayed)
2ff7e61e 3877 btrfs_balance_delayed_items(fs_info);
16cdcec7 3878
0b246afa 3879 ret = percpu_counter_compare(&fs_info->dirty_metadata_bytes,
e2d84521
MX
3880 BTRFS_DIRTY_METADATA_THRESH);
3881 if (ret > 0) {
0b246afa 3882 balance_dirty_pages_ratelimited(fs_info->btree_inode->i_mapping);
16cdcec7 3883 }
16cdcec7
MX
3884}
3885
2ff7e61e 3886void btrfs_btree_balance_dirty(struct btrfs_fs_info *fs_info)
35b7e476 3887{
2ff7e61e 3888 __btrfs_btree_balance_dirty(fs_info, 1);
b53d3f5d 3889}
585ad2c3 3890
2ff7e61e 3891void btrfs_btree_balance_dirty_nodelay(struct btrfs_fs_info *fs_info)
b53d3f5d 3892{
2ff7e61e 3893 __btrfs_btree_balance_dirty(fs_info, 0);
35b7e476 3894}
6b80053d 3895
ca7a79ad 3896int btrfs_read_buffer(struct extent_buffer *buf, u64 parent_transid)
6b80053d 3897{
727011e0 3898 struct btrfs_root *root = BTRFS_I(buf->pages[0]->mapping->host)->root;
2ff7e61e
JM
3899 struct btrfs_fs_info *fs_info = root->fs_info;
3900
3901 return btree_read_extent_buffer_pages(fs_info, buf, parent_transid);
6b80053d 3902}
0da5468f 3903
3d3a126a 3904static int btrfs_check_super_valid(struct btrfs_fs_info *fs_info)
acce952b 3905{
c926093e 3906 struct btrfs_super_block *sb = fs_info->super_copy;
319e4d06
QW
3907 u64 nodesize = btrfs_super_nodesize(sb);
3908 u64 sectorsize = btrfs_super_sectorsize(sb);
c926093e
DS
3909 int ret = 0;
3910
319e4d06 3911 if (btrfs_super_magic(sb) != BTRFS_MAGIC) {
ab8d0fc4 3912 btrfs_err(fs_info, "no valid FS found");
319e4d06
QW
3913 ret = -EINVAL;
3914 }
3915 if (btrfs_super_flags(sb) & ~BTRFS_SUPER_FLAG_SUPP)
ab8d0fc4 3916 btrfs_warn(fs_info, "unrecognized super flag: %llu",
319e4d06 3917 btrfs_super_flags(sb) & ~BTRFS_SUPER_FLAG_SUPP);
21e7626b 3918 if (btrfs_super_root_level(sb) >= BTRFS_MAX_LEVEL) {
ab8d0fc4 3919 btrfs_err(fs_info, "tree_root level too big: %d >= %d",
21e7626b 3920 btrfs_super_root_level(sb), BTRFS_MAX_LEVEL);
c926093e
DS
3921 ret = -EINVAL;
3922 }
21e7626b 3923 if (btrfs_super_chunk_root_level(sb) >= BTRFS_MAX_LEVEL) {
ab8d0fc4 3924 btrfs_err(fs_info, "chunk_root level too big: %d >= %d",
21e7626b 3925 btrfs_super_chunk_root_level(sb), BTRFS_MAX_LEVEL);
c926093e
DS
3926 ret = -EINVAL;
3927 }
21e7626b 3928 if (btrfs_super_log_root_level(sb) >= BTRFS_MAX_LEVEL) {
ab8d0fc4 3929 btrfs_err(fs_info, "log_root level too big: %d >= %d",
21e7626b 3930 btrfs_super_log_root_level(sb), BTRFS_MAX_LEVEL);
c926093e
DS
3931 ret = -EINVAL;
3932 }
3933
1104a885 3934 /*
319e4d06
QW
3935 * Check sectorsize and nodesize first, other check will need it.
3936 * Check all possible sectorsize(4K, 8K, 16K, 32K, 64K) here.
1104a885 3937 */
319e4d06
QW
3938 if (!is_power_of_2(sectorsize) || sectorsize < 4096 ||
3939 sectorsize > BTRFS_MAX_METADATA_BLOCKSIZE) {
ab8d0fc4 3940 btrfs_err(fs_info, "invalid sectorsize %llu", sectorsize);
319e4d06
QW
3941 ret = -EINVAL;
3942 }
3943 /* Only PAGE SIZE is supported yet */
09cbfeaf 3944 if (sectorsize != PAGE_SIZE) {
ab8d0fc4
JM
3945 btrfs_err(fs_info,
3946 "sectorsize %llu not supported yet, only support %lu",
3947 sectorsize, PAGE_SIZE);
319e4d06
QW
3948 ret = -EINVAL;
3949 }
3950 if (!is_power_of_2(nodesize) || nodesize < sectorsize ||
3951 nodesize > BTRFS_MAX_METADATA_BLOCKSIZE) {
ab8d0fc4 3952 btrfs_err(fs_info, "invalid nodesize %llu", nodesize);
319e4d06
QW
3953 ret = -EINVAL;
3954 }
3955 if (nodesize != le32_to_cpu(sb->__unused_leafsize)) {
ab8d0fc4
JM
3956 btrfs_err(fs_info, "invalid leafsize %u, should be %llu",
3957 le32_to_cpu(sb->__unused_leafsize), nodesize);
319e4d06
QW
3958 ret = -EINVAL;
3959 }
3960
3961 /* Root alignment check */
3962 if (!IS_ALIGNED(btrfs_super_root(sb), sectorsize)) {
ab8d0fc4
JM
3963 btrfs_warn(fs_info, "tree_root block unaligned: %llu",
3964 btrfs_super_root(sb));
319e4d06
QW
3965 ret = -EINVAL;
3966 }
3967 if (!IS_ALIGNED(btrfs_super_chunk_root(sb), sectorsize)) {
ab8d0fc4
JM
3968 btrfs_warn(fs_info, "chunk_root block unaligned: %llu",
3969 btrfs_super_chunk_root(sb));
75d6ad38
DS
3970 ret = -EINVAL;
3971 }
319e4d06 3972 if (!IS_ALIGNED(btrfs_super_log_root(sb), sectorsize)) {
ab8d0fc4
JM
3973 btrfs_warn(fs_info, "log_root block unaligned: %llu",
3974 btrfs_super_log_root(sb));
75d6ad38
DS
3975 ret = -EINVAL;
3976 }
3977
44880fdc 3978 if (memcmp(fs_info->fsid, sb->dev_item.fsid, BTRFS_FSID_SIZE) != 0) {
ab8d0fc4
JM
3979 btrfs_err(fs_info,
3980 "dev_item UUID does not match fsid: %pU != %pU",
3981 fs_info->fsid, sb->dev_item.fsid);
c926093e
DS
3982 ret = -EINVAL;
3983 }
3984
3985 /*
3986 * Hint to catch really bogus numbers, bitflips or so, more exact checks are
3987 * done later
3988 */
99e3ecfc
LB
3989 if (btrfs_super_bytes_used(sb) < 6 * btrfs_super_nodesize(sb)) {
3990 btrfs_err(fs_info, "bytes_used is too small %llu",
ab8d0fc4 3991 btrfs_super_bytes_used(sb));
99e3ecfc
LB
3992 ret = -EINVAL;
3993 }
b7f67055 3994 if (!is_power_of_2(btrfs_super_stripesize(sb))) {
99e3ecfc 3995 btrfs_err(fs_info, "invalid stripesize %u",
ab8d0fc4 3996 btrfs_super_stripesize(sb));
99e3ecfc
LB
3997 ret = -EINVAL;
3998 }
21e7626b 3999 if (btrfs_super_num_devices(sb) > (1UL << 31))
ab8d0fc4
JM
4000 btrfs_warn(fs_info, "suspicious number of devices: %llu",
4001 btrfs_super_num_devices(sb));
75d6ad38 4002 if (btrfs_super_num_devices(sb) == 0) {
ab8d0fc4 4003 btrfs_err(fs_info, "number of devices is 0");
75d6ad38
DS
4004 ret = -EINVAL;
4005 }
c926093e 4006
21e7626b 4007 if (btrfs_super_bytenr(sb) != BTRFS_SUPER_INFO_OFFSET) {
ab8d0fc4
JM
4008 btrfs_err(fs_info, "super offset mismatch %llu != %u",
4009 btrfs_super_bytenr(sb), BTRFS_SUPER_INFO_OFFSET);
c926093e
DS
4010 ret = -EINVAL;
4011 }
4012
ce7fca5f
DS
4013 /*
4014 * Obvious sys_chunk_array corruptions, it must hold at least one key
4015 * and one chunk
4016 */
4017 if (btrfs_super_sys_array_size(sb) > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE) {
ab8d0fc4
JM
4018 btrfs_err(fs_info, "system chunk array too big %u > %u",
4019 btrfs_super_sys_array_size(sb),
4020 BTRFS_SYSTEM_CHUNK_ARRAY_SIZE);
ce7fca5f
DS
4021 ret = -EINVAL;
4022 }
4023 if (btrfs_super_sys_array_size(sb) < sizeof(struct btrfs_disk_key)
4024 + sizeof(struct btrfs_chunk)) {
ab8d0fc4
JM
4025 btrfs_err(fs_info, "system chunk array too small %u < %zu",
4026 btrfs_super_sys_array_size(sb),
4027 sizeof(struct btrfs_disk_key)
4028 + sizeof(struct btrfs_chunk));
ce7fca5f
DS
4029 ret = -EINVAL;
4030 }
4031
c926093e
DS
4032 /*
4033 * The generation is a global counter, we'll trust it more than the others
4034 * but it's still possible that it's the one that's wrong.
4035 */
21e7626b 4036 if (btrfs_super_generation(sb) < btrfs_super_chunk_root_generation(sb))
ab8d0fc4
JM
4037 btrfs_warn(fs_info,
4038 "suspicious: generation < chunk_root_generation: %llu < %llu",
4039 btrfs_super_generation(sb),
4040 btrfs_super_chunk_root_generation(sb));
21e7626b
DS
4041 if (btrfs_super_generation(sb) < btrfs_super_cache_generation(sb)
4042 && btrfs_super_cache_generation(sb) != (u64)-1)
ab8d0fc4
JM
4043 btrfs_warn(fs_info,
4044 "suspicious: generation < cache_generation: %llu < %llu",
4045 btrfs_super_generation(sb),
4046 btrfs_super_cache_generation(sb));
c926093e
DS
4047
4048 return ret;
acce952b 4049}
4050
2ff7e61e 4051static void btrfs_error_commit_super(struct btrfs_fs_info *fs_info)
acce952b 4052{
0b246afa 4053 mutex_lock(&fs_info->cleaner_mutex);
2ff7e61e 4054 btrfs_run_delayed_iputs(fs_info);
0b246afa 4055 mutex_unlock(&fs_info->cleaner_mutex);
acce952b 4056
0b246afa
JM
4057 down_write(&fs_info->cleanup_work_sem);
4058 up_write(&fs_info->cleanup_work_sem);
acce952b 4059
4060 /* cleanup FS via transaction */
2ff7e61e 4061 btrfs_cleanup_transaction(fs_info);
acce952b 4062}
4063
143bede5 4064static void btrfs_destroy_ordered_extents(struct btrfs_root *root)
acce952b 4065{
acce952b 4066 struct btrfs_ordered_extent *ordered;
acce952b 4067
199c2a9c 4068 spin_lock(&root->ordered_extent_lock);
779880ef
JB
4069 /*
4070 * This will just short circuit the ordered completion stuff which will
4071 * make sure the ordered extent gets properly cleaned up.
4072 */
199c2a9c 4073 list_for_each_entry(ordered, &root->ordered_extents,
779880ef
JB
4074 root_extent_list)
4075 set_bit(BTRFS_ORDERED_IOERR, &ordered->flags);
199c2a9c
MX
4076 spin_unlock(&root->ordered_extent_lock);
4077}
4078
4079static void btrfs_destroy_all_ordered_extents(struct btrfs_fs_info *fs_info)
4080{
4081 struct btrfs_root *root;
4082 struct list_head splice;
4083
4084 INIT_LIST_HEAD(&splice);
4085
4086 spin_lock(&fs_info->ordered_root_lock);
4087 list_splice_init(&fs_info->ordered_roots, &splice);
4088 while (!list_empty(&splice)) {
4089 root = list_first_entry(&splice, struct btrfs_root,
4090 ordered_root);
1de2cfde
JB
4091 list_move_tail(&root->ordered_root,
4092 &fs_info->ordered_roots);
199c2a9c 4093
2a85d9ca 4094 spin_unlock(&fs_info->ordered_root_lock);
199c2a9c
MX
4095 btrfs_destroy_ordered_extents(root);
4096
2a85d9ca
LB
4097 cond_resched();
4098 spin_lock(&fs_info->ordered_root_lock);
199c2a9c
MX
4099 }
4100 spin_unlock(&fs_info->ordered_root_lock);
acce952b 4101}
4102
35a3621b 4103static int btrfs_destroy_delayed_refs(struct btrfs_transaction *trans,
2ff7e61e 4104 struct btrfs_fs_info *fs_info)
acce952b 4105{
4106 struct rb_node *node;
4107 struct btrfs_delayed_ref_root *delayed_refs;
4108 struct btrfs_delayed_ref_node *ref;
4109 int ret = 0;
4110
4111 delayed_refs = &trans->delayed_refs;
4112
4113 spin_lock(&delayed_refs->lock);
d7df2c79 4114 if (atomic_read(&delayed_refs->num_entries) == 0) {
cfece4db 4115 spin_unlock(&delayed_refs->lock);
0b246afa 4116 btrfs_info(fs_info, "delayed_refs has NO entry");
acce952b 4117 return ret;
4118 }
4119
d7df2c79
JB
4120 while ((node = rb_first(&delayed_refs->href_root)) != NULL) {
4121 struct btrfs_delayed_ref_head *head;
0e0adbcf 4122 struct rb_node *n;
e78417d1 4123 bool pin_bytes = false;
acce952b 4124
d7df2c79
JB
4125 head = rb_entry(node, struct btrfs_delayed_ref_head,
4126 href_node);
4127 if (!mutex_trylock(&head->mutex)) {
d278850e 4128 refcount_inc(&head->refs);
d7df2c79 4129 spin_unlock(&delayed_refs->lock);
eb12db69 4130
d7df2c79 4131 mutex_lock(&head->mutex);
e78417d1 4132 mutex_unlock(&head->mutex);
d278850e 4133 btrfs_put_delayed_ref_head(head);
d7df2c79
JB
4134 spin_lock(&delayed_refs->lock);
4135 continue;
4136 }
4137 spin_lock(&head->lock);
0e0adbcf
JB
4138 while ((n = rb_first(&head->ref_tree)) != NULL) {
4139 ref = rb_entry(n, struct btrfs_delayed_ref_node,
4140 ref_node);
d7df2c79 4141 ref->in_tree = 0;
0e0adbcf
JB
4142 rb_erase(&ref->ref_node, &head->ref_tree);
4143 RB_CLEAR_NODE(&ref->ref_node);
1d57ee94
WX
4144 if (!list_empty(&ref->add_list))
4145 list_del(&ref->add_list);
d7df2c79
JB
4146 atomic_dec(&delayed_refs->num_entries);
4147 btrfs_put_delayed_ref(ref);
e78417d1 4148 }
d7df2c79
JB
4149 if (head->must_insert_reserved)
4150 pin_bytes = true;
4151 btrfs_free_delayed_extent_op(head->extent_op);
4152 delayed_refs->num_heads--;
4153 if (head->processing == 0)
4154 delayed_refs->num_heads_ready--;
4155 atomic_dec(&delayed_refs->num_entries);
d7df2c79 4156 rb_erase(&head->href_node, &delayed_refs->href_root);
d278850e 4157 RB_CLEAR_NODE(&head->href_node);
d7df2c79
JB
4158 spin_unlock(&head->lock);
4159 spin_unlock(&delayed_refs->lock);
4160 mutex_unlock(&head->mutex);
acce952b 4161
d7df2c79 4162 if (pin_bytes)
d278850e
JB
4163 btrfs_pin_extent(fs_info, head->bytenr,
4164 head->num_bytes, 1);
4165 btrfs_put_delayed_ref_head(head);
acce952b 4166 cond_resched();
4167 spin_lock(&delayed_refs->lock);
4168 }
4169
4170 spin_unlock(&delayed_refs->lock);
4171
4172 return ret;
4173}
4174
143bede5 4175static void btrfs_destroy_delalloc_inodes(struct btrfs_root *root)
acce952b 4176{
4177 struct btrfs_inode *btrfs_inode;
4178 struct list_head splice;
4179
4180 INIT_LIST_HEAD(&splice);
4181
eb73c1b7
MX
4182 spin_lock(&root->delalloc_lock);
4183 list_splice_init(&root->delalloc_inodes, &splice);
acce952b 4184
4185 while (!list_empty(&splice)) {
eb73c1b7
MX
4186 btrfs_inode = list_first_entry(&splice, struct btrfs_inode,
4187 delalloc_inodes);
acce952b 4188
4189 list_del_init(&btrfs_inode->delalloc_inodes);
df0af1a5
MX
4190 clear_bit(BTRFS_INODE_IN_DELALLOC_LIST,
4191 &btrfs_inode->runtime_flags);
eb73c1b7 4192 spin_unlock(&root->delalloc_lock);
acce952b 4193
4194 btrfs_invalidate_inodes(btrfs_inode->root);
b216cbfb 4195
eb73c1b7 4196 spin_lock(&root->delalloc_lock);
acce952b 4197 }
4198
eb73c1b7
MX
4199 spin_unlock(&root->delalloc_lock);
4200}
4201
4202static void btrfs_destroy_all_delalloc_inodes(struct btrfs_fs_info *fs_info)
4203{
4204 struct btrfs_root *root;
4205 struct list_head splice;
4206
4207 INIT_LIST_HEAD(&splice);
4208
4209 spin_lock(&fs_info->delalloc_root_lock);
4210 list_splice_init(&fs_info->delalloc_roots, &splice);
4211 while (!list_empty(&splice)) {
4212 root = list_first_entry(&splice, struct btrfs_root,
4213 delalloc_root);
4214 list_del_init(&root->delalloc_root);
4215 root = btrfs_grab_fs_root(root);
4216 BUG_ON(!root);
4217 spin_unlock(&fs_info->delalloc_root_lock);
4218
4219 btrfs_destroy_delalloc_inodes(root);
4220 btrfs_put_fs_root(root);
4221
4222 spin_lock(&fs_info->delalloc_root_lock);
4223 }
4224 spin_unlock(&fs_info->delalloc_root_lock);
acce952b 4225}
4226
2ff7e61e 4227static int btrfs_destroy_marked_extents(struct btrfs_fs_info *fs_info,
acce952b 4228 struct extent_io_tree *dirty_pages,
4229 int mark)
4230{
4231 int ret;
acce952b 4232 struct extent_buffer *eb;
4233 u64 start = 0;
4234 u64 end;
acce952b 4235
4236 while (1) {
4237 ret = find_first_extent_bit(dirty_pages, start, &start, &end,
e6138876 4238 mark, NULL);
acce952b 4239 if (ret)
4240 break;
4241
91166212 4242 clear_extent_bits(dirty_pages, start, end, mark);
acce952b 4243 while (start <= end) {
0b246afa
JM
4244 eb = find_extent_buffer(fs_info, start);
4245 start += fs_info->nodesize;
fd8b2b61 4246 if (!eb)
acce952b 4247 continue;
fd8b2b61 4248 wait_on_extent_buffer_writeback(eb);
acce952b 4249
fd8b2b61
JB
4250 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY,
4251 &eb->bflags))
4252 clear_extent_buffer_dirty(eb);
4253 free_extent_buffer_stale(eb);
acce952b 4254 }
4255 }
4256
4257 return ret;
4258}
4259
2ff7e61e 4260static int btrfs_destroy_pinned_extent(struct btrfs_fs_info *fs_info,
acce952b 4261 struct extent_io_tree *pinned_extents)
4262{
4263 struct extent_io_tree *unpin;
4264 u64 start;
4265 u64 end;
4266 int ret;
ed0eaa14 4267 bool loop = true;
acce952b 4268
4269 unpin = pinned_extents;
ed0eaa14 4270again:
acce952b 4271 while (1) {
4272 ret = find_first_extent_bit(unpin, 0, &start, &end,
e6138876 4273 EXTENT_DIRTY, NULL);
acce952b 4274 if (ret)
4275 break;
4276
af6f8f60 4277 clear_extent_dirty(unpin, start, end);
2ff7e61e 4278 btrfs_error_unpin_extent_range(fs_info, start, end);
acce952b 4279 cond_resched();
4280 }
4281
ed0eaa14 4282 if (loop) {
0b246afa
JM
4283 if (unpin == &fs_info->freed_extents[0])
4284 unpin = &fs_info->freed_extents[1];
ed0eaa14 4285 else
0b246afa 4286 unpin = &fs_info->freed_extents[0];
ed0eaa14
LB
4287 loop = false;
4288 goto again;
4289 }
4290
acce952b 4291 return 0;
4292}
4293
c79a1751
LB
4294static void btrfs_cleanup_bg_io(struct btrfs_block_group_cache *cache)
4295{
4296 struct inode *inode;
4297
4298 inode = cache->io_ctl.inode;
4299 if (inode) {
4300 invalidate_inode_pages2(inode->i_mapping);
4301 BTRFS_I(inode)->generation = 0;
4302 cache->io_ctl.inode = NULL;
4303 iput(inode);
4304 }
4305 btrfs_put_block_group(cache);
4306}
4307
4308void btrfs_cleanup_dirty_bgs(struct btrfs_transaction *cur_trans,
2ff7e61e 4309 struct btrfs_fs_info *fs_info)
c79a1751
LB
4310{
4311 struct btrfs_block_group_cache *cache;
4312
4313 spin_lock(&cur_trans->dirty_bgs_lock);
4314 while (!list_empty(&cur_trans->dirty_bgs)) {
4315 cache = list_first_entry(&cur_trans->dirty_bgs,
4316 struct btrfs_block_group_cache,
4317 dirty_list);
4318 if (!cache) {
0b246afa 4319 btrfs_err(fs_info, "orphan block group dirty_bgs list");
c79a1751
LB
4320 spin_unlock(&cur_trans->dirty_bgs_lock);
4321 return;
4322 }
4323
4324 if (!list_empty(&cache->io_list)) {
4325 spin_unlock(&cur_trans->dirty_bgs_lock);
4326 list_del_init(&cache->io_list);
4327 btrfs_cleanup_bg_io(cache);
4328 spin_lock(&cur_trans->dirty_bgs_lock);
4329 }
4330
4331 list_del_init(&cache->dirty_list);
4332 spin_lock(&cache->lock);
4333 cache->disk_cache_state = BTRFS_DC_ERROR;
4334 spin_unlock(&cache->lock);
4335
4336 spin_unlock(&cur_trans->dirty_bgs_lock);
4337 btrfs_put_block_group(cache);
4338 spin_lock(&cur_trans->dirty_bgs_lock);
4339 }
4340 spin_unlock(&cur_trans->dirty_bgs_lock);
4341
4342 while (!list_empty(&cur_trans->io_bgs)) {
4343 cache = list_first_entry(&cur_trans->io_bgs,
4344 struct btrfs_block_group_cache,
4345 io_list);
4346 if (!cache) {
0b246afa 4347 btrfs_err(fs_info, "orphan block group on io_bgs list");
c79a1751
LB
4348 return;
4349 }
4350
4351 list_del_init(&cache->io_list);
4352 spin_lock(&cache->lock);
4353 cache->disk_cache_state = BTRFS_DC_ERROR;
4354 spin_unlock(&cache->lock);
4355 btrfs_cleanup_bg_io(cache);
4356 }
4357}
4358
49b25e05 4359void btrfs_cleanup_one_transaction(struct btrfs_transaction *cur_trans,
2ff7e61e 4360 struct btrfs_fs_info *fs_info)
49b25e05 4361{
2ff7e61e 4362 btrfs_cleanup_dirty_bgs(cur_trans, fs_info);
c79a1751
LB
4363 ASSERT(list_empty(&cur_trans->dirty_bgs));
4364 ASSERT(list_empty(&cur_trans->io_bgs));
4365
2ff7e61e 4366 btrfs_destroy_delayed_refs(cur_trans, fs_info);
49b25e05 4367
4a9d8bde 4368 cur_trans->state = TRANS_STATE_COMMIT_START;
0b246afa 4369 wake_up(&fs_info->transaction_blocked_wait);
49b25e05 4370
4a9d8bde 4371 cur_trans->state = TRANS_STATE_UNBLOCKED;
0b246afa 4372 wake_up(&fs_info->transaction_wait);
49b25e05 4373
ccdf9b30
JM
4374 btrfs_destroy_delayed_inodes(fs_info);
4375 btrfs_assert_delayed_root_empty(fs_info);
49b25e05 4376
2ff7e61e 4377 btrfs_destroy_marked_extents(fs_info, &cur_trans->dirty_pages,
49b25e05 4378 EXTENT_DIRTY);
2ff7e61e 4379 btrfs_destroy_pinned_extent(fs_info,
0b246afa 4380 fs_info->pinned_extents);
49b25e05 4381
4a9d8bde
MX
4382 cur_trans->state =TRANS_STATE_COMPLETED;
4383 wake_up(&cur_trans->commit_wait);
49b25e05
JM
4384}
4385
2ff7e61e 4386static int btrfs_cleanup_transaction(struct btrfs_fs_info *fs_info)
acce952b 4387{
4388 struct btrfs_transaction *t;
acce952b 4389
0b246afa 4390 mutex_lock(&fs_info->transaction_kthread_mutex);
acce952b 4391
0b246afa
JM
4392 spin_lock(&fs_info->trans_lock);
4393 while (!list_empty(&fs_info->trans_list)) {
4394 t = list_first_entry(&fs_info->trans_list,
724e2315
JB
4395 struct btrfs_transaction, list);
4396 if (t->state >= TRANS_STATE_COMMIT_START) {
9b64f57d 4397 refcount_inc(&t->use_count);
0b246afa 4398 spin_unlock(&fs_info->trans_lock);
2ff7e61e 4399 btrfs_wait_for_commit(fs_info, t->transid);
724e2315 4400 btrfs_put_transaction(t);
0b246afa 4401 spin_lock(&fs_info->trans_lock);
724e2315
JB
4402 continue;
4403 }
0b246afa 4404 if (t == fs_info->running_transaction) {
724e2315 4405 t->state = TRANS_STATE_COMMIT_DOING;
0b246afa 4406 spin_unlock(&fs_info->trans_lock);
724e2315
JB
4407 /*
4408 * We wait for 0 num_writers since we don't hold a trans
4409 * handle open currently for this transaction.
4410 */
4411 wait_event(t->writer_wait,
4412 atomic_read(&t->num_writers) == 0);
4413 } else {
0b246afa 4414 spin_unlock(&fs_info->trans_lock);
724e2315 4415 }
2ff7e61e 4416 btrfs_cleanup_one_transaction(t, fs_info);
4a9d8bde 4417
0b246afa
JM
4418 spin_lock(&fs_info->trans_lock);
4419 if (t == fs_info->running_transaction)
4420 fs_info->running_transaction = NULL;
acce952b 4421 list_del_init(&t->list);
0b246afa 4422 spin_unlock(&fs_info->trans_lock);
acce952b 4423
724e2315 4424 btrfs_put_transaction(t);
2ff7e61e 4425 trace_btrfs_transaction_commit(fs_info->tree_root);
0b246afa 4426 spin_lock(&fs_info->trans_lock);
724e2315 4427 }
0b246afa
JM
4428 spin_unlock(&fs_info->trans_lock);
4429 btrfs_destroy_all_ordered_extents(fs_info);
ccdf9b30
JM
4430 btrfs_destroy_delayed_inodes(fs_info);
4431 btrfs_assert_delayed_root_empty(fs_info);
2ff7e61e 4432 btrfs_destroy_pinned_extent(fs_info, fs_info->pinned_extents);
0b246afa
JM
4433 btrfs_destroy_all_delalloc_inodes(fs_info);
4434 mutex_unlock(&fs_info->transaction_kthread_mutex);
acce952b 4435
4436 return 0;
4437}
4438
c6100a4b
JB
4439static struct btrfs_fs_info *btree_fs_info(void *private_data)
4440{
4441 struct inode *inode = private_data;
4442 return btrfs_sb(inode->i_sb);
4443}
4444
e8c9f186 4445static const struct extent_io_ops btree_extent_io_ops = {
4d53dddb 4446 /* mandatory callbacks */
0b86a832 4447 .submit_bio_hook = btree_submit_bio_hook,
4d53dddb 4448 .readpage_end_io_hook = btree_readpage_end_io_hook,
239b14b3
CM
4449 /* note we're sharing with inode.c for the merge bio hook */
4450 .merge_bio_hook = btrfs_merge_bio_hook,
20a7db8a 4451 .readpage_io_failed_hook = btree_io_failed_hook,
c6100a4b
JB
4452 .set_range_writeback = btrfs_set_range_writeback,
4453 .tree_fs_info = btree_fs_info,
4d53dddb
DS
4454
4455 /* optional callbacks */
0da5468f 4456};