xref: /openbmc/linux/fs/btrfs/disk-io.c (revision 00246528)
1c1d7c514SDavid Sterba // SPDX-License-Identifier: GPL-2.0
26cbd5570SChris Mason /*
36cbd5570SChris Mason  * Copyright (C) 2007 Oracle.  All rights reserved.
46cbd5570SChris Mason  */
56cbd5570SChris Mason 
6e20d96d6SChris Mason #include <linux/fs.h>
7d98237b3SChris Mason #include <linux/blkdev.h>
80f7d52f4SChris Mason #include <linux/radix-tree.h>
935b7e476SChris Mason #include <linux/writeback.h>
10d397712bSChris Mason #include <linux/buffer_head.h>
11ce9adaa5SChris Mason #include <linux/workqueue.h>
12a74a4b97SChris Mason #include <linux/kthread.h>
135a0e3ad6STejun Heo #include <linux/slab.h>
14784b4e29SChris Mason #include <linux/migrate.h>
157a36ddecSDavid Sterba #include <linux/ratelimit.h>
166463fe58SStefan Behrens #include <linux/uuid.h>
17803b2f54SStefan Behrens #include <linux/semaphore.h>
18540adea3SMasami Hiramatsu #include <linux/error-injection.h>
199678c543SNikolay Borisov #include <linux/crc32c.h>
20b89f6d1fSFilipe Manana #include <linux/sched/mm.h>
217e75bf3fSDavid Sterba #include <asm/unaligned.h>
226d97c6e3SJohannes Thumshirn #include <crypto/hash.h>
23eb60ceacSChris Mason #include "ctree.h"
24eb60ceacSChris Mason #include "disk-io.h"
25e089f05cSChris Mason #include "transaction.h"
260f7d52f4SChris Mason #include "btrfs_inode.h"
270b86a832SChris Mason #include "volumes.h"
28db94535dSChris Mason #include "print-tree.h"
29925baeddSChris Mason #include "locking.h"
30e02119d5SChris Mason #include "tree-log.h"
31fa9c0d79SChris Mason #include "free-space-cache.h"
3270f6d82eSOmar Sandoval #include "free-space-tree.h"
33581bb050SLi Zefan #include "inode-map.h"
3421adbd5cSStefan Behrens #include "check-integrity.h"
35606686eeSJosef Bacik #include "rcu-string.h"
368dabb742SStefan Behrens #include "dev-replace.h"
3753b381b3SDavid Woodhouse #include "raid56.h"
385ac1d209SJeff Mahoney #include "sysfs.h"
39fcebe456SJosef Bacik #include "qgroup.h"
40ebb8765bSAnand Jain #include "compression.h"
41557ea5ddSQu Wenruo #include "tree-checker.h"
42fd708b81SJosef Bacik #include "ref-verify.h"
43aac0023cSJosef Bacik #include "block-group.h"
44b0643e59SDennis Zhou #include "discard.h"
45eb60ceacSChris Mason 
46319e4d06SQu Wenruo #define BTRFS_SUPER_FLAG_SUPP	(BTRFS_HEADER_FLAG_WRITTEN |\
47319e4d06SQu Wenruo 				 BTRFS_HEADER_FLAG_RELOC |\
48319e4d06SQu Wenruo 				 BTRFS_SUPER_FLAG_ERROR |\
49319e4d06SQu Wenruo 				 BTRFS_SUPER_FLAG_SEEDING |\
50e2731e55SAnand Jain 				 BTRFS_SUPER_FLAG_METADUMP |\
51e2731e55SAnand Jain 				 BTRFS_SUPER_FLAG_METADUMP_V2)
52319e4d06SQu Wenruo 
53e8c9f186SDavid Sterba static const struct extent_io_ops btree_extent_io_ops;
548b712842SChris Mason static void end_workqueue_fn(struct btrfs_work *work);
55143bede5SJeff Mahoney static void btrfs_destroy_ordered_extents(struct btrfs_root *root);
56acce952bSliubo static int btrfs_destroy_delayed_refs(struct btrfs_transaction *trans,
572ff7e61eSJeff Mahoney 				      struct btrfs_fs_info *fs_info);
58143bede5SJeff Mahoney static void btrfs_destroy_delalloc_inodes(struct btrfs_root *root);
592ff7e61eSJeff Mahoney static int btrfs_destroy_marked_extents(struct btrfs_fs_info *fs_info,
60acce952bSliubo 					struct extent_io_tree *dirty_pages,
61acce952bSliubo 					int mark);
622ff7e61eSJeff Mahoney static int btrfs_destroy_pinned_extent(struct btrfs_fs_info *fs_info,
63acce952bSliubo 				       struct extent_io_tree *pinned_extents);
642ff7e61eSJeff Mahoney static int btrfs_cleanup_transaction(struct btrfs_fs_info *fs_info);
652ff7e61eSJeff Mahoney static void btrfs_error_commit_super(struct btrfs_fs_info *fs_info);
66ce9adaa5SChris Mason 
67d352ac68SChris Mason /*
6897eb6b69SDavid Sterba  * btrfs_end_io_wq structs are used to do processing in task context when an IO
6997eb6b69SDavid Sterba  * is complete.  This is used during reads to verify checksums, and it is used
70d352ac68SChris Mason  * by writes to insert metadata for new file extents after IO is complete.
71d352ac68SChris Mason  */
7297eb6b69SDavid Sterba struct btrfs_end_io_wq {
73ce9adaa5SChris Mason 	struct bio *bio;
74ce9adaa5SChris Mason 	bio_end_io_t *end_io;
75ce9adaa5SChris Mason 	void *private;
76ce9adaa5SChris Mason 	struct btrfs_fs_info *info;
774e4cbee9SChristoph Hellwig 	blk_status_t status;
78bfebd8b5SDavid Sterba 	enum btrfs_wq_endio_type metadata;
798b712842SChris Mason 	struct btrfs_work work;
80ce9adaa5SChris Mason };
810da5468fSChris Mason 
8297eb6b69SDavid Sterba static struct kmem_cache *btrfs_end_io_wq_cache;
8397eb6b69SDavid Sterba 
8497eb6b69SDavid Sterba int __init btrfs_end_io_wq_init(void)
8597eb6b69SDavid Sterba {
8697eb6b69SDavid Sterba 	btrfs_end_io_wq_cache = kmem_cache_create("btrfs_end_io_wq",
8797eb6b69SDavid Sterba 					sizeof(struct btrfs_end_io_wq),
8897eb6b69SDavid Sterba 					0,
89fba4b697SNikolay Borisov 					SLAB_MEM_SPREAD,
9097eb6b69SDavid Sterba 					NULL);
9197eb6b69SDavid Sterba 	if (!btrfs_end_io_wq_cache)
9297eb6b69SDavid Sterba 		return -ENOMEM;
9397eb6b69SDavid Sterba 	return 0;
9497eb6b69SDavid Sterba }
9597eb6b69SDavid Sterba 
96e67c718bSDavid Sterba void __cold btrfs_end_io_wq_exit(void)
9797eb6b69SDavid Sterba {
9897eb6b69SDavid Sterba 	kmem_cache_destroy(btrfs_end_io_wq_cache);
9997eb6b69SDavid Sterba }
10097eb6b69SDavid Sterba 
101141386e1SJosef Bacik static void btrfs_free_csum_hash(struct btrfs_fs_info *fs_info)
102141386e1SJosef Bacik {
103141386e1SJosef Bacik 	if (fs_info->csum_shash)
104141386e1SJosef Bacik 		crypto_free_shash(fs_info->csum_shash);
105141386e1SJosef Bacik }
106141386e1SJosef Bacik 
107d352ac68SChris Mason /*
108d352ac68SChris Mason  * async submit bios are used to offload expensive checksumming
109d352ac68SChris Mason  * onto the worker threads.  They checksum file and metadata bios
110d352ac68SChris Mason  * just before they are sent down the IO stack.
111d352ac68SChris Mason  */
11244b8bd7eSChris Mason struct async_submit_bio {
113c6100a4bSJosef Bacik 	void *private_data;
11444b8bd7eSChris Mason 	struct bio *bio;
115a758781dSDavid Sterba 	extent_submit_bio_start_t *submit_bio_start;
11644b8bd7eSChris Mason 	int mirror_num;
117eaf25d93SChris Mason 	/*
118eaf25d93SChris Mason 	 * bio_offset is optional, can be used if the pages in the bio
119eaf25d93SChris Mason 	 * can't tell us where in the file the bio should go
120eaf25d93SChris Mason 	 */
121eaf25d93SChris Mason 	u64 bio_offset;
1228b712842SChris Mason 	struct btrfs_work work;
1234e4cbee9SChristoph Hellwig 	blk_status_t status;
12444b8bd7eSChris Mason };
12544b8bd7eSChris Mason 
12685d4e461SChris Mason /*
12785d4e461SChris Mason  * Lockdep class keys for extent_buffer->lock's in this root.  For a given
12885d4e461SChris Mason  * eb, the lockdep key is determined by the btrfs_root it belongs to and
12985d4e461SChris Mason  * the level the eb occupies in the tree.
1304008c04aSChris Mason  *
13185d4e461SChris Mason  * Different roots are used for different purposes and may nest inside each
13285d4e461SChris Mason  * other and they require separate keysets.  As lockdep keys should be
13385d4e461SChris Mason  * static, assign keysets according to the purpose of the root as indicated
1344fd786e6SMisono Tomohiro  * by btrfs_root->root_key.objectid.  This ensures that all special purpose
1354fd786e6SMisono Tomohiro  * roots have separate keysets.
1364008c04aSChris Mason  *
13785d4e461SChris Mason  * Lock-nesting across peer nodes is always done with the immediate parent
13885d4e461SChris Mason  * node locked thus preventing deadlock.  As lockdep doesn't know this, use
13985d4e461SChris Mason  * subclass to avoid triggering lockdep warning in such cases.
1404008c04aSChris Mason  *
14185d4e461SChris Mason  * The key is set by the readpage_end_io_hook after the buffer has passed
14285d4e461SChris Mason  * csum validation but before the pages are unlocked.  It is also set by
14385d4e461SChris Mason  * btrfs_init_new_buffer on freshly allocated blocks.
14485d4e461SChris Mason  *
14585d4e461SChris Mason  * We also add a check to make sure the highest level of the tree is the
14685d4e461SChris Mason  * same as our lockdep setup here.  If BTRFS_MAX_LEVEL changes, this code
14785d4e461SChris Mason  * needs update as well.
1484008c04aSChris Mason  */
1494008c04aSChris Mason #ifdef CONFIG_DEBUG_LOCK_ALLOC
1504008c04aSChris Mason # if BTRFS_MAX_LEVEL != 8
1514008c04aSChris Mason #  error
1524008c04aSChris Mason # endif
15385d4e461SChris Mason 
15485d4e461SChris Mason static struct btrfs_lockdep_keyset {
15585d4e461SChris Mason 	u64			id;		/* root objectid */
15685d4e461SChris Mason 	const char		*name_stem;	/* lock name stem */
15785d4e461SChris Mason 	char			names[BTRFS_MAX_LEVEL + 1][20];
15885d4e461SChris Mason 	struct lock_class_key	keys[BTRFS_MAX_LEVEL + 1];
15985d4e461SChris Mason } btrfs_lockdep_keysets[] = {
16085d4e461SChris Mason 	{ .id = BTRFS_ROOT_TREE_OBJECTID,	.name_stem = "root"	},
16185d4e461SChris Mason 	{ .id = BTRFS_EXTENT_TREE_OBJECTID,	.name_stem = "extent"	},
16285d4e461SChris Mason 	{ .id = BTRFS_CHUNK_TREE_OBJECTID,	.name_stem = "chunk"	},
16385d4e461SChris Mason 	{ .id = BTRFS_DEV_TREE_OBJECTID,	.name_stem = "dev"	},
16485d4e461SChris Mason 	{ .id = BTRFS_FS_TREE_OBJECTID,		.name_stem = "fs"	},
16585d4e461SChris Mason 	{ .id = BTRFS_CSUM_TREE_OBJECTID,	.name_stem = "csum"	},
16660b62978SDavid Sterba 	{ .id = BTRFS_QUOTA_TREE_OBJECTID,	.name_stem = "quota"	},
16785d4e461SChris Mason 	{ .id = BTRFS_TREE_LOG_OBJECTID,	.name_stem = "log"	},
16885d4e461SChris Mason 	{ .id = BTRFS_TREE_RELOC_OBJECTID,	.name_stem = "treloc"	},
16985d4e461SChris Mason 	{ .id = BTRFS_DATA_RELOC_TREE_OBJECTID,	.name_stem = "dreloc"	},
17013fd8da9SDavid Sterba 	{ .id = BTRFS_UUID_TREE_OBJECTID,	.name_stem = "uuid"	},
1716b20e0adSDavid Sterba 	{ .id = BTRFS_FREE_SPACE_TREE_OBJECTID,	.name_stem = "free-space" },
17285d4e461SChris Mason 	{ .id = 0,				.name_stem = "tree"	},
1734008c04aSChris Mason };
17485d4e461SChris Mason 
17585d4e461SChris Mason void __init btrfs_init_lockdep(void)
17685d4e461SChris Mason {
17785d4e461SChris Mason 	int i, j;
17885d4e461SChris Mason 
17985d4e461SChris Mason 	/* initialize lockdep class names */
18085d4e461SChris Mason 	for (i = 0; i < ARRAY_SIZE(btrfs_lockdep_keysets); i++) {
18185d4e461SChris Mason 		struct btrfs_lockdep_keyset *ks = &btrfs_lockdep_keysets[i];
18285d4e461SChris Mason 
18385d4e461SChris Mason 		for (j = 0; j < ARRAY_SIZE(ks->names); j++)
18485d4e461SChris Mason 			snprintf(ks->names[j], sizeof(ks->names[j]),
18585d4e461SChris Mason 				 "btrfs-%s-%02d", ks->name_stem, j);
18685d4e461SChris Mason 	}
18785d4e461SChris Mason }
18885d4e461SChris Mason 
18985d4e461SChris Mason void btrfs_set_buffer_lockdep_class(u64 objectid, struct extent_buffer *eb,
19085d4e461SChris Mason 				    int level)
19185d4e461SChris Mason {
19285d4e461SChris Mason 	struct btrfs_lockdep_keyset *ks;
19385d4e461SChris Mason 
19485d4e461SChris Mason 	BUG_ON(level >= ARRAY_SIZE(ks->keys));
19585d4e461SChris Mason 
19685d4e461SChris Mason 	/* find the matching keyset, id 0 is the default entry */
19785d4e461SChris Mason 	for (ks = btrfs_lockdep_keysets; ks->id; ks++)
19885d4e461SChris Mason 		if (ks->id == objectid)
19985d4e461SChris Mason 			break;
20085d4e461SChris Mason 
20185d4e461SChris Mason 	lockdep_set_class_and_name(&eb->lock,
20285d4e461SChris Mason 				   &ks->keys[level], ks->names[level]);
20385d4e461SChris Mason }
20485d4e461SChris Mason 
2054008c04aSChris Mason #endif
2064008c04aSChris Mason 
207d352ac68SChris Mason /*
208d352ac68SChris Mason  * extents on the btree inode are pretty simple, there's one extent
209d352ac68SChris Mason  * that covers the entire device
210d352ac68SChris Mason  */
2116af49dbdSDavid Sterba struct extent_map *btree_get_extent(struct btrfs_inode *inode,
21239b07b5dSOmar Sandoval 				    struct page *page, size_t pg_offset,
21339b07b5dSOmar Sandoval 				    u64 start, u64 len)
2145f39d397SChris Mason {
215fc4f21b1SNikolay Borisov 	struct extent_map_tree *em_tree = &inode->extent_tree;
2165f39d397SChris Mason 	struct extent_map *em;
2175f39d397SChris Mason 	int ret;
2185f39d397SChris Mason 
219890871beSChris Mason 	read_lock(&em_tree->lock);
220d1310b2eSChris Mason 	em = lookup_extent_mapping(em_tree, start, len);
221a061fc8dSChris Mason 	if (em) {
222890871beSChris Mason 		read_unlock(&em_tree->lock);
2235f39d397SChris Mason 		goto out;
224a061fc8dSChris Mason 	}
225890871beSChris Mason 	read_unlock(&em_tree->lock);
2267b13b7b1SChris Mason 
227172ddd60SDavid Sterba 	em = alloc_extent_map();
2285f39d397SChris Mason 	if (!em) {
2295f39d397SChris Mason 		em = ERR_PTR(-ENOMEM);
2305f39d397SChris Mason 		goto out;
2315f39d397SChris Mason 	}
2325f39d397SChris Mason 	em->start = 0;
2330afbaf8cSChris Mason 	em->len = (u64)-1;
234c8b97818SChris Mason 	em->block_len = (u64)-1;
2355f39d397SChris Mason 	em->block_start = 0;
236d1310b2eSChris Mason 
237890871beSChris Mason 	write_lock(&em_tree->lock);
23809a2a8f9SJosef Bacik 	ret = add_extent_mapping(em_tree, em, 0);
2395f39d397SChris Mason 	if (ret == -EEXIST) {
2405f39d397SChris Mason 		free_extent_map(em);
2417b13b7b1SChris Mason 		em = lookup_extent_mapping(em_tree, start, len);
242b4f359abSTsutomu Itoh 		if (!em)
2430433f20dSTsutomu Itoh 			em = ERR_PTR(-EIO);
2445f39d397SChris Mason 	} else if (ret) {
2457b13b7b1SChris Mason 		free_extent_map(em);
2460433f20dSTsutomu Itoh 		em = ERR_PTR(ret);
2475f39d397SChris Mason 	}
248890871beSChris Mason 	write_unlock(&em_tree->lock);
2497b13b7b1SChris Mason 
2505f39d397SChris Mason out:
2515f39d397SChris Mason 	return em;
2525f39d397SChris Mason }
2535f39d397SChris Mason 
254d352ac68SChris Mason /*
2552996e1f8SJohannes Thumshirn  * Compute the csum of a btree block and store the result to provided buffer.
2562996e1f8SJohannes Thumshirn  *
2572996e1f8SJohannes Thumshirn  * Returns error if the extent buffer cannot be mapped.
258d352ac68SChris Mason  */
2592996e1f8SJohannes Thumshirn static int csum_tree_block(struct extent_buffer *buf, u8 *result)
26019c00ddcSChris Mason {
261d5178578SJohannes Thumshirn 	struct btrfs_fs_info *fs_info = buf->fs_info;
262d5178578SJohannes Thumshirn 	SHASH_DESC_ON_STACK(shash, fs_info->csum_shash);
26319c00ddcSChris Mason 	unsigned long len;
26419c00ddcSChris Mason 	unsigned long cur_len;
26519c00ddcSChris Mason 	unsigned long offset = BTRFS_CSUM_SIZE;
26619c00ddcSChris Mason 	char *kaddr;
26719c00ddcSChris Mason 	unsigned long map_start;
26819c00ddcSChris Mason 	unsigned long map_len;
26919c00ddcSChris Mason 	int err;
270d5178578SJohannes Thumshirn 
271d5178578SJohannes Thumshirn 	shash->tfm = fs_info->csum_shash;
272d5178578SJohannes Thumshirn 	crypto_shash_init(shash);
27319c00ddcSChris Mason 
27419c00ddcSChris Mason 	len = buf->len - offset;
275d5178578SJohannes Thumshirn 
27619c00ddcSChris Mason 	while (len > 0) {
277d2e174d5SJohannes Thumshirn 		/*
278d2e174d5SJohannes Thumshirn 		 * Note: we don't need to check for the err == 1 case here, as
279d2e174d5SJohannes Thumshirn 		 * with the given combination of 'start = BTRFS_CSUM_SIZE (32)'
280d2e174d5SJohannes Thumshirn 		 * and 'min_len = 32' and the currently implemented mapping
281d2e174d5SJohannes Thumshirn 		 * algorithm we cannot cross a page boundary.
282d2e174d5SJohannes Thumshirn 		 */
28319c00ddcSChris Mason 		err = map_private_extent_buffer(buf, offset, 32,
284a6591715SChris Mason 					&kaddr, &map_start, &map_len);
285c53839fcSJohannes Thumshirn 		if (WARN_ON(err))
2868bd98f0eSAlex Lyakas 			return err;
28719c00ddcSChris Mason 		cur_len = min(len, map_len - (offset - map_start));
288d5178578SJohannes Thumshirn 		crypto_shash_update(shash, kaddr + offset - map_start, cur_len);
28919c00ddcSChris Mason 		len -= cur_len;
29019c00ddcSChris Mason 		offset += cur_len;
29119c00ddcSChris Mason 	}
29271a63551SDavid Sterba 	memset(result, 0, BTRFS_CSUM_SIZE);
293607d432dSJosef Bacik 
294d5178578SJohannes Thumshirn 	crypto_shash_final(shash, result);
29519c00ddcSChris Mason 
29619c00ddcSChris Mason 	return 0;
29719c00ddcSChris Mason }
29819c00ddcSChris Mason 
299d352ac68SChris Mason /*
300d352ac68SChris Mason  * we can't consider a given block up to date unless the transid of the
301d352ac68SChris Mason  * block matches the transid in the parent node's pointer.  This is how we
302d352ac68SChris Mason  * detect blocks that either didn't get written at all or got written
303d352ac68SChris Mason  * in the wrong place.
304d352ac68SChris Mason  */
3051259ab75SChris Mason static int verify_parent_transid(struct extent_io_tree *io_tree,
306b9fab919SChris Mason 				 struct extent_buffer *eb, u64 parent_transid,
307b9fab919SChris Mason 				 int atomic)
3081259ab75SChris Mason {
3092ac55d41SJosef Bacik 	struct extent_state *cached_state = NULL;
3101259ab75SChris Mason 	int ret;
3112755a0deSDavid Sterba 	bool need_lock = (current->journal_info == BTRFS_SEND_TRANS_STUB);
3121259ab75SChris Mason 
3131259ab75SChris Mason 	if (!parent_transid || btrfs_header_generation(eb) == parent_transid)
3141259ab75SChris Mason 		return 0;
3151259ab75SChris Mason 
316b9fab919SChris Mason 	if (atomic)
317b9fab919SChris Mason 		return -EAGAIN;
318b9fab919SChris Mason 
319a26e8c9fSJosef Bacik 	if (need_lock) {
320a26e8c9fSJosef Bacik 		btrfs_tree_read_lock(eb);
321300aa896SDavid Sterba 		btrfs_set_lock_blocking_read(eb);
322a26e8c9fSJosef Bacik 	}
323a26e8c9fSJosef Bacik 
3242ac55d41SJosef Bacik 	lock_extent_bits(io_tree, eb->start, eb->start + eb->len - 1,
325ff13db41SDavid Sterba 			 &cached_state);
3260b32f4bbSJosef Bacik 	if (extent_buffer_uptodate(eb) &&
3271259ab75SChris Mason 	    btrfs_header_generation(eb) == parent_transid) {
3281259ab75SChris Mason 		ret = 0;
3291259ab75SChris Mason 		goto out;
3301259ab75SChris Mason 	}
33194647322SDavid Sterba 	btrfs_err_rl(eb->fs_info,
33294647322SDavid Sterba 		"parent transid verify failed on %llu wanted %llu found %llu",
33394647322SDavid Sterba 			eb->start,
33429549aecSWang Shilong 			parent_transid, btrfs_header_generation(eb));
3351259ab75SChris Mason 	ret = 1;
336a26e8c9fSJosef Bacik 
337a26e8c9fSJosef Bacik 	/*
338a26e8c9fSJosef Bacik 	 * Things reading via commit roots that don't have normal protection,
339a26e8c9fSJosef Bacik 	 * like send, can have a really old block in cache that may point at a
34001327610SNicholas D Steeves 	 * block that has been freed and re-allocated.  So don't clear uptodate
341a26e8c9fSJosef Bacik 	 * if we find an eb that is under IO (dirty/writeback) because we could
342a26e8c9fSJosef Bacik 	 * end up reading in the stale data and then writing it back out and
343a26e8c9fSJosef Bacik 	 * making everybody very sad.
344a26e8c9fSJosef Bacik 	 */
345a26e8c9fSJosef Bacik 	if (!extent_buffer_under_io(eb))
3460b32f4bbSJosef Bacik 		clear_extent_buffer_uptodate(eb);
34733958dc6SChris Mason out:
3482ac55d41SJosef Bacik 	unlock_extent_cached(io_tree, eb->start, eb->start + eb->len - 1,
349e43bbe5eSDavid Sterba 			     &cached_state);
350472b909fSJosef Bacik 	if (need_lock)
351a26e8c9fSJosef Bacik 		btrfs_tree_read_unlock_blocking(eb);
3521259ab75SChris Mason 	return ret;
3531259ab75SChris Mason }
3541259ab75SChris Mason 
355e7e16f48SJohannes Thumshirn static bool btrfs_supported_super_csum(u16 csum_type)
356e7e16f48SJohannes Thumshirn {
357e7e16f48SJohannes Thumshirn 	switch (csum_type) {
358e7e16f48SJohannes Thumshirn 	case BTRFS_CSUM_TYPE_CRC32:
3593951e7f0SJohannes Thumshirn 	case BTRFS_CSUM_TYPE_XXHASH:
3603831bf00SJohannes Thumshirn 	case BTRFS_CSUM_TYPE_SHA256:
361352ae07bSDavid Sterba 	case BTRFS_CSUM_TYPE_BLAKE2:
362e7e16f48SJohannes Thumshirn 		return true;
363e7e16f48SJohannes Thumshirn 	default:
364e7e16f48SJohannes Thumshirn 		return false;
365e7e16f48SJohannes Thumshirn 	}
366e7e16f48SJohannes Thumshirn }
367e7e16f48SJohannes Thumshirn 
368d352ac68SChris Mason /*
3691104a885SDavid Sterba  * Return 0 if the superblock checksum type matches the checksum value of that
3701104a885SDavid Sterba  * algorithm. Pass the raw disk superblock data.
3711104a885SDavid Sterba  */
372ab8d0fc4SJeff Mahoney static int btrfs_check_super_csum(struct btrfs_fs_info *fs_info,
373ab8d0fc4SJeff Mahoney 				  char *raw_disk_sb)
3741104a885SDavid Sterba {
3751104a885SDavid Sterba 	struct btrfs_super_block *disk_sb =
3761104a885SDavid Sterba 		(struct btrfs_super_block *)raw_disk_sb;
37751bce6c9SJohannes Thumshirn 	char result[BTRFS_CSUM_SIZE];
378d5178578SJohannes Thumshirn 	SHASH_DESC_ON_STACK(shash, fs_info->csum_shash);
379d5178578SJohannes Thumshirn 
380d5178578SJohannes Thumshirn 	shash->tfm = fs_info->csum_shash;
381d5178578SJohannes Thumshirn 	crypto_shash_init(shash);
3821104a885SDavid Sterba 
3831104a885SDavid Sterba 	/*
3841104a885SDavid Sterba 	 * The super_block structure does not span the whole
38551bce6c9SJohannes Thumshirn 	 * BTRFS_SUPER_INFO_SIZE range, we expect that the unused space is
38651bce6c9SJohannes Thumshirn 	 * filled with zeros and is included in the checksum.
3871104a885SDavid Sterba 	 */
388d5178578SJohannes Thumshirn 	crypto_shash_update(shash, raw_disk_sb + BTRFS_CSUM_SIZE,
389d5178578SJohannes Thumshirn 			    BTRFS_SUPER_INFO_SIZE - BTRFS_CSUM_SIZE);
390d5178578SJohannes Thumshirn 	crypto_shash_final(shash, result);
3911104a885SDavid Sterba 
39251bce6c9SJohannes Thumshirn 	if (memcmp(disk_sb->csum, result, btrfs_super_csum_size(disk_sb)))
393e7e16f48SJohannes Thumshirn 		return 1;
3941104a885SDavid Sterba 
395e7e16f48SJohannes Thumshirn 	return 0;
3961104a885SDavid Sterba }
3971104a885SDavid Sterba 
398e064d5e9SDavid Sterba int btrfs_verify_level_key(struct extent_buffer *eb, int level,
399ff76a864SLiu Bo 			   struct btrfs_key *first_key, u64 parent_transid)
400581c1760SQu Wenruo {
401e064d5e9SDavid Sterba 	struct btrfs_fs_info *fs_info = eb->fs_info;
402581c1760SQu Wenruo 	int found_level;
403581c1760SQu Wenruo 	struct btrfs_key found_key;
404581c1760SQu Wenruo 	int ret;
405581c1760SQu Wenruo 
406581c1760SQu Wenruo 	found_level = btrfs_header_level(eb);
407581c1760SQu Wenruo 	if (found_level != level) {
40863489055SQu Wenruo 		WARN(IS_ENABLED(CONFIG_BTRFS_DEBUG),
40963489055SQu Wenruo 		     KERN_ERR "BTRFS: tree level check failed\n");
410581c1760SQu Wenruo 		btrfs_err(fs_info,
411581c1760SQu Wenruo "tree level mismatch detected, bytenr=%llu level expected=%u has=%u",
412581c1760SQu Wenruo 			  eb->start, level, found_level);
413581c1760SQu Wenruo 		return -EIO;
414581c1760SQu Wenruo 	}
415581c1760SQu Wenruo 
416581c1760SQu Wenruo 	if (!first_key)
417581c1760SQu Wenruo 		return 0;
418581c1760SQu Wenruo 
4195d41be6fSQu Wenruo 	/*
4205d41be6fSQu Wenruo 	 * For live tree block (new tree blocks in current transaction),
4215d41be6fSQu Wenruo 	 * we need proper lock context to avoid race, which is impossible here.
4225d41be6fSQu Wenruo 	 * So we only checks tree blocks which is read from disk, whose
4235d41be6fSQu Wenruo 	 * generation <= fs_info->last_trans_committed.
4245d41be6fSQu Wenruo 	 */
4255d41be6fSQu Wenruo 	if (btrfs_header_generation(eb) > fs_info->last_trans_committed)
4265d41be6fSQu Wenruo 		return 0;
42762fdaa52SQu Wenruo 
42862fdaa52SQu Wenruo 	/* We have @first_key, so this @eb must have at least one item */
42962fdaa52SQu Wenruo 	if (btrfs_header_nritems(eb) == 0) {
43062fdaa52SQu Wenruo 		btrfs_err(fs_info,
43162fdaa52SQu Wenruo 		"invalid tree nritems, bytenr=%llu nritems=0 expect >0",
43262fdaa52SQu Wenruo 			  eb->start);
43362fdaa52SQu Wenruo 		WARN_ON(IS_ENABLED(CONFIG_BTRFS_DEBUG));
43462fdaa52SQu Wenruo 		return -EUCLEAN;
43562fdaa52SQu Wenruo 	}
43662fdaa52SQu Wenruo 
437581c1760SQu Wenruo 	if (found_level)
438581c1760SQu Wenruo 		btrfs_node_key_to_cpu(eb, &found_key, 0);
439581c1760SQu Wenruo 	else
440581c1760SQu Wenruo 		btrfs_item_key_to_cpu(eb, &found_key, 0);
441581c1760SQu Wenruo 	ret = btrfs_comp_cpu_keys(first_key, &found_key);
442581c1760SQu Wenruo 
443581c1760SQu Wenruo 	if (ret) {
44463489055SQu Wenruo 		WARN(IS_ENABLED(CONFIG_BTRFS_DEBUG),
44563489055SQu Wenruo 		     KERN_ERR "BTRFS: tree first key check failed\n");
446581c1760SQu Wenruo 		btrfs_err(fs_info,
447ff76a864SLiu Bo "tree first key mismatch detected, bytenr=%llu parent_transid=%llu key expected=(%llu,%u,%llu) has=(%llu,%u,%llu)",
448ff76a864SLiu Bo 			  eb->start, parent_transid, first_key->objectid,
449ff76a864SLiu Bo 			  first_key->type, first_key->offset,
450ff76a864SLiu Bo 			  found_key.objectid, found_key.type,
451ff76a864SLiu Bo 			  found_key.offset);
452581c1760SQu Wenruo 	}
453581c1760SQu Wenruo 	return ret;
454581c1760SQu Wenruo }
455581c1760SQu Wenruo 
4561104a885SDavid Sterba /*
457d352ac68SChris Mason  * helper to read a given tree block, doing retries as required when
458d352ac68SChris Mason  * the checksums don't match and we have alternate mirrors to try.
459581c1760SQu Wenruo  *
460581c1760SQu Wenruo  * @parent_transid:	expected transid, skip check if 0
461581c1760SQu Wenruo  * @level:		expected level, mandatory check
462581c1760SQu Wenruo  * @first_key:		expected key of first slot, skip check if NULL
463d352ac68SChris Mason  */
4645ab12d1fSDavid Sterba static int btree_read_extent_buffer_pages(struct extent_buffer *eb,
465581c1760SQu Wenruo 					  u64 parent_transid, int level,
466581c1760SQu Wenruo 					  struct btrfs_key *first_key)
467f188591eSChris Mason {
4685ab12d1fSDavid Sterba 	struct btrfs_fs_info *fs_info = eb->fs_info;
469f188591eSChris Mason 	struct extent_io_tree *io_tree;
470ea466794SJosef Bacik 	int failed = 0;
471f188591eSChris Mason 	int ret;
472f188591eSChris Mason 	int num_copies = 0;
473f188591eSChris Mason 	int mirror_num = 0;
474ea466794SJosef Bacik 	int failed_mirror = 0;
475f188591eSChris Mason 
4760b246afaSJeff Mahoney 	io_tree = &BTRFS_I(fs_info->btree_inode)->io_tree;
477f188591eSChris Mason 	while (1) {
478f8397d69SNikolay Borisov 		clear_bit(EXTENT_BUFFER_CORRUPT, &eb->bflags);
479c2ccfbc6SNikolay Borisov 		ret = read_extent_buffer_pages(eb, WAIT_COMPLETE, mirror_num);
480256dd1bbSStefan Behrens 		if (!ret) {
481581c1760SQu Wenruo 			if (verify_parent_transid(io_tree, eb,
482b9fab919SChris Mason 						   parent_transid, 0))
483256dd1bbSStefan Behrens 				ret = -EIO;
484e064d5e9SDavid Sterba 			else if (btrfs_verify_level_key(eb, level,
485ff76a864SLiu Bo 						first_key, parent_transid))
486581c1760SQu Wenruo 				ret = -EUCLEAN;
487581c1760SQu Wenruo 			else
488581c1760SQu Wenruo 				break;
489256dd1bbSStefan Behrens 		}
490d397712bSChris Mason 
4910b246afaSJeff Mahoney 		num_copies = btrfs_num_copies(fs_info,
492f188591eSChris Mason 					      eb->start, eb->len);
4934235298eSChris Mason 		if (num_copies == 1)
494ea466794SJosef Bacik 			break;
4954235298eSChris Mason 
4965cf1ab56SJosef Bacik 		if (!failed_mirror) {
4975cf1ab56SJosef Bacik 			failed = 1;
4985cf1ab56SJosef Bacik 			failed_mirror = eb->read_mirror;
4995cf1ab56SJosef Bacik 		}
5005cf1ab56SJosef Bacik 
501f188591eSChris Mason 		mirror_num++;
502ea466794SJosef Bacik 		if (mirror_num == failed_mirror)
503ea466794SJosef Bacik 			mirror_num++;
504ea466794SJosef Bacik 
5054235298eSChris Mason 		if (mirror_num > num_copies)
506ea466794SJosef Bacik 			break;
507f188591eSChris Mason 	}
508ea466794SJosef Bacik 
509c0901581SStefan Behrens 	if (failed && !ret && failed_mirror)
51020a1fbf9SDavid Sterba 		btrfs_repair_eb_io_failure(eb, failed_mirror);
511ea466794SJosef Bacik 
512ea466794SJosef Bacik 	return ret;
513f188591eSChris Mason }
51419c00ddcSChris Mason 
515d352ac68SChris Mason /*
516d397712bSChris Mason  * checksum a dirty tree block before IO.  This has extra checks to make sure
517d397712bSChris Mason  * we only fill in the checksum field in the first page of a multi-page block
518d352ac68SChris Mason  */
519d397712bSChris Mason 
52001d58472SDaniel Dressler static int csum_dirty_buffer(struct btrfs_fs_info *fs_info, struct page *page)
52119c00ddcSChris Mason {
5224eee4fa4SMiao Xie 	u64 start = page_offset(page);
52319c00ddcSChris Mason 	u64 found_start;
5242996e1f8SJohannes Thumshirn 	u8 result[BTRFS_CSUM_SIZE];
5252996e1f8SJohannes Thumshirn 	u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
52619c00ddcSChris Mason 	struct extent_buffer *eb;
5278d47a0d8SQu Wenruo 	int ret;
528f188591eSChris Mason 
5294f2de97aSJosef Bacik 	eb = (struct extent_buffer *)page->private;
5304f2de97aSJosef Bacik 	if (page != eb->pages[0])
5314f2de97aSJosef Bacik 		return 0;
5320f805531SAlex Lyakas 
53319c00ddcSChris Mason 	found_start = btrfs_header_bytenr(eb);
5340f805531SAlex Lyakas 	/*
5350f805531SAlex Lyakas 	 * Please do not consolidate these warnings into a single if.
5360f805531SAlex Lyakas 	 * It is useful to know what went wrong.
5370f805531SAlex Lyakas 	 */
5380f805531SAlex Lyakas 	if (WARN_ON(found_start != start))
5390f805531SAlex Lyakas 		return -EUCLEAN;
5400f805531SAlex Lyakas 	if (WARN_ON(!PageUptodate(page)))
5410f805531SAlex Lyakas 		return -EUCLEAN;
5420f805531SAlex Lyakas 
543de37aa51SNikolay Borisov 	ASSERT(memcmp_extent_buffer(eb, fs_info->fs_devices->metadata_uuid,
5440f805531SAlex Lyakas 			btrfs_header_fsid(), BTRFS_FSID_SIZE) == 0);
5450f805531SAlex Lyakas 
5462996e1f8SJohannes Thumshirn 	if (csum_tree_block(eb, result))
5472996e1f8SJohannes Thumshirn 		return -EINVAL;
5482996e1f8SJohannes Thumshirn 
5498d47a0d8SQu Wenruo 	if (btrfs_header_level(eb))
5508d47a0d8SQu Wenruo 		ret = btrfs_check_node(eb);
5518d47a0d8SQu Wenruo 	else
5528d47a0d8SQu Wenruo 		ret = btrfs_check_leaf_full(eb);
5538d47a0d8SQu Wenruo 
5548d47a0d8SQu Wenruo 	if (ret < 0) {
555c06631b0SQu Wenruo 		btrfs_print_tree(eb, 0);
5568d47a0d8SQu Wenruo 		btrfs_err(fs_info,
5578d47a0d8SQu Wenruo 		"block=%llu write time tree block corruption detected",
5588d47a0d8SQu Wenruo 			  eb->start);
559c06631b0SQu Wenruo 		WARN_ON(IS_ENABLED(CONFIG_BTRFS_DEBUG));
5608d47a0d8SQu Wenruo 		return ret;
5618d47a0d8SQu Wenruo 	}
5622996e1f8SJohannes Thumshirn 	write_extent_buffer(eb, result, 0, csum_size);
5638d47a0d8SQu Wenruo 
5642996e1f8SJohannes Thumshirn 	return 0;
56519c00ddcSChris Mason }
56619c00ddcSChris Mason 
567b0c9b3b0SDavid Sterba static int check_tree_block_fsid(struct extent_buffer *eb)
5682b82032cSYan Zheng {
569b0c9b3b0SDavid Sterba 	struct btrfs_fs_info *fs_info = eb->fs_info;
57001d58472SDaniel Dressler 	struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
57144880fdcSAnand Jain 	u8 fsid[BTRFS_FSID_SIZE];
5722b82032cSYan Zheng 	int ret = 1;
5732b82032cSYan Zheng 
5740a4e5586SRoss Kirk 	read_extent_buffer(eb, fsid, btrfs_header_fsid(), BTRFS_FSID_SIZE);
5752b82032cSYan Zheng 	while (fs_devices) {
5767239ff4bSNikolay Borisov 		u8 *metadata_uuid;
5777239ff4bSNikolay Borisov 
5787239ff4bSNikolay Borisov 		/*
5797239ff4bSNikolay Borisov 		 * Checking the incompat flag is only valid for the current
5807239ff4bSNikolay Borisov 		 * fs. For seed devices it's forbidden to have their uuid
5817239ff4bSNikolay Borisov 		 * changed so reading ->fsid in this case is fine
5827239ff4bSNikolay Borisov 		 */
5837239ff4bSNikolay Borisov 		if (fs_devices == fs_info->fs_devices &&
5847239ff4bSNikolay Borisov 		    btrfs_fs_incompat(fs_info, METADATA_UUID))
5857239ff4bSNikolay Borisov 			metadata_uuid = fs_devices->metadata_uuid;
5867239ff4bSNikolay Borisov 		else
5877239ff4bSNikolay Borisov 			metadata_uuid = fs_devices->fsid;
5887239ff4bSNikolay Borisov 
5897239ff4bSNikolay Borisov 		if (!memcmp(fsid, metadata_uuid, BTRFS_FSID_SIZE)) {
5902b82032cSYan Zheng 			ret = 0;
5912b82032cSYan Zheng 			break;
5922b82032cSYan Zheng 		}
5932b82032cSYan Zheng 		fs_devices = fs_devices->seed;
5942b82032cSYan Zheng 	}
5952b82032cSYan Zheng 	return ret;
5962b82032cSYan Zheng }
5972b82032cSYan Zheng 
598facc8a22SMiao Xie static int btree_readpage_end_io_hook(struct btrfs_io_bio *io_bio,
599facc8a22SMiao Xie 				      u64 phy_offset, struct page *page,
600facc8a22SMiao Xie 				      u64 start, u64 end, int mirror)
601ce9adaa5SChris Mason {
602ce9adaa5SChris Mason 	u64 found_start;
603ce9adaa5SChris Mason 	int found_level;
604ce9adaa5SChris Mason 	struct extent_buffer *eb;
605ce9adaa5SChris Mason 	struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
60602873e43SZhao Lei 	struct btrfs_fs_info *fs_info = root->fs_info;
6072996e1f8SJohannes Thumshirn 	u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
608f188591eSChris Mason 	int ret = 0;
6092996e1f8SJohannes Thumshirn 	u8 result[BTRFS_CSUM_SIZE];
610727011e0SChris Mason 	int reads_done;
611ce9adaa5SChris Mason 
612ce9adaa5SChris Mason 	if (!page->private)
613ce9adaa5SChris Mason 		goto out;
614d397712bSChris Mason 
6154f2de97aSJosef Bacik 	eb = (struct extent_buffer *)page->private;
616d397712bSChris Mason 
6170b32f4bbSJosef Bacik 	/* the pending IO might have been the only thing that kept this buffer
6180b32f4bbSJosef Bacik 	 * in memory.  Make sure we have a ref for all this other checks
6190b32f4bbSJosef Bacik 	 */
62067439dadSDavid Sterba 	atomic_inc(&eb->refs);
6210b32f4bbSJosef Bacik 
6220b32f4bbSJosef Bacik 	reads_done = atomic_dec_and_test(&eb->io_pages);
623727011e0SChris Mason 	if (!reads_done)
624727011e0SChris Mason 		goto err;
625f188591eSChris Mason 
6265cf1ab56SJosef Bacik 	eb->read_mirror = mirror;
627656f30dbSFilipe Manana 	if (test_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags)) {
628ea466794SJosef Bacik 		ret = -EIO;
629ea466794SJosef Bacik 		goto err;
630ea466794SJosef Bacik 	}
631ea466794SJosef Bacik 
632ce9adaa5SChris Mason 	found_start = btrfs_header_bytenr(eb);
633727011e0SChris Mason 	if (found_start != eb->start) {
634893bf4b1SSu Yue 		btrfs_err_rl(fs_info, "bad tree block start, want %llu have %llu",
635893bf4b1SSu Yue 			     eb->start, found_start);
636f188591eSChris Mason 		ret = -EIO;
637ce9adaa5SChris Mason 		goto err;
638ce9adaa5SChris Mason 	}
639b0c9b3b0SDavid Sterba 	if (check_tree_block_fsid(eb)) {
64002873e43SZhao Lei 		btrfs_err_rl(fs_info, "bad fsid on block %llu",
64194647322SDavid Sterba 			     eb->start);
6421259ab75SChris Mason 		ret = -EIO;
6431259ab75SChris Mason 		goto err;
6441259ab75SChris Mason 	}
645ce9adaa5SChris Mason 	found_level = btrfs_header_level(eb);
6461c24c3ceSJosef Bacik 	if (found_level >= BTRFS_MAX_LEVEL) {
647893bf4b1SSu Yue 		btrfs_err(fs_info, "bad tree block level %d on %llu",
648893bf4b1SSu Yue 			  (int)btrfs_header_level(eb), eb->start);
6491c24c3ceSJosef Bacik 		ret = -EIO;
6501c24c3ceSJosef Bacik 		goto err;
6511c24c3ceSJosef Bacik 	}
652ce9adaa5SChris Mason 
65385d4e461SChris Mason 	btrfs_set_buffer_lockdep_class(btrfs_header_owner(eb),
65485d4e461SChris Mason 				       eb, found_level);
6554008c04aSChris Mason 
6562996e1f8SJohannes Thumshirn 	ret = csum_tree_block(eb, result);
6578bd98f0eSAlex Lyakas 	if (ret)
658a826d6dcSJosef Bacik 		goto err;
659a826d6dcSJosef Bacik 
6602996e1f8SJohannes Thumshirn 	if (memcmp_extent_buffer(eb, result, 0, csum_size)) {
6612996e1f8SJohannes Thumshirn 		u32 val;
6622996e1f8SJohannes Thumshirn 		u32 found = 0;
6632996e1f8SJohannes Thumshirn 
6642996e1f8SJohannes Thumshirn 		memcpy(&found, result, csum_size);
6652996e1f8SJohannes Thumshirn 
6662996e1f8SJohannes Thumshirn 		read_extent_buffer(eb, &val, 0, csum_size);
6672996e1f8SJohannes Thumshirn 		btrfs_warn_rl(fs_info,
6682996e1f8SJohannes Thumshirn 		"%s checksum verify failed on %llu wanted %x found %x level %d",
6692996e1f8SJohannes Thumshirn 			      fs_info->sb->s_id, eb->start,
6702996e1f8SJohannes Thumshirn 			      val, found, btrfs_header_level(eb));
6712996e1f8SJohannes Thumshirn 		ret = -EUCLEAN;
6722996e1f8SJohannes Thumshirn 		goto err;
6732996e1f8SJohannes Thumshirn 	}
6742996e1f8SJohannes Thumshirn 
675a826d6dcSJosef Bacik 	/*
676a826d6dcSJosef Bacik 	 * If this is a leaf block and it is corrupt, set the corrupt bit so
677a826d6dcSJosef Bacik 	 * that we don't try and read the other copies of this block, just
678a826d6dcSJosef Bacik 	 * return -EIO.
679a826d6dcSJosef Bacik 	 */
6801c4360eeSDavid Sterba 	if (found_level == 0 && btrfs_check_leaf_full(eb)) {
681a826d6dcSJosef Bacik 		set_bit(EXTENT_BUFFER_CORRUPT, &eb->bflags);
682a826d6dcSJosef Bacik 		ret = -EIO;
683a826d6dcSJosef Bacik 	}
684ce9adaa5SChris Mason 
685813fd1dcSDavid Sterba 	if (found_level > 0 && btrfs_check_node(eb))
686053ab70fSLiu Bo 		ret = -EIO;
687053ab70fSLiu Bo 
6880b32f4bbSJosef Bacik 	if (!ret)
6890b32f4bbSJosef Bacik 		set_extent_buffer_uptodate(eb);
69075391f0dSQu Wenruo 	else
69175391f0dSQu Wenruo 		btrfs_err(fs_info,
69275391f0dSQu Wenruo 			  "block=%llu read time tree block corruption detected",
69375391f0dSQu Wenruo 			  eb->start);
694ce9adaa5SChris Mason err:
69579fb65a1SJosef Bacik 	if (reads_done &&
69679fb65a1SJosef Bacik 	    test_and_clear_bit(EXTENT_BUFFER_READAHEAD, &eb->bflags))
697d48d71aaSDavid Sterba 		btree_readahead_hook(eb, ret);
6984bb31e92SArne Jansen 
69953b381b3SDavid Woodhouse 	if (ret) {
70053b381b3SDavid Woodhouse 		/*
70153b381b3SDavid Woodhouse 		 * our io error hook is going to dec the io pages
70253b381b3SDavid Woodhouse 		 * again, we have to make sure it has something
70353b381b3SDavid Woodhouse 		 * to decrement
70453b381b3SDavid Woodhouse 		 */
70553b381b3SDavid Woodhouse 		atomic_inc(&eb->io_pages);
7060b32f4bbSJosef Bacik 		clear_extent_buffer_uptodate(eb);
70753b381b3SDavid Woodhouse 	}
7080b32f4bbSJosef Bacik 	free_extent_buffer(eb);
709ce9adaa5SChris Mason out:
710f188591eSChris Mason 	return ret;
711ce9adaa5SChris Mason }
712ce9adaa5SChris Mason 
7134246a0b6SChristoph Hellwig static void end_workqueue_bio(struct bio *bio)
714ce9adaa5SChris Mason {
71597eb6b69SDavid Sterba 	struct btrfs_end_io_wq *end_io_wq = bio->bi_private;
716ce9adaa5SChris Mason 	struct btrfs_fs_info *fs_info;
7179e0af237SLiu Bo 	struct btrfs_workqueue *wq;
718ce9adaa5SChris Mason 
719ce9adaa5SChris Mason 	fs_info = end_io_wq->info;
7204e4cbee9SChristoph Hellwig 	end_io_wq->status = bio->bi_status;
721d20f7043SChris Mason 
72237226b21SMike Christie 	if (bio_op(bio) == REQ_OP_WRITE) {
723a0cac0ecSOmar Sandoval 		if (end_io_wq->metadata == BTRFS_WQ_ENDIO_METADATA)
7249e0af237SLiu Bo 			wq = fs_info->endio_meta_write_workers;
725a0cac0ecSOmar Sandoval 		else if (end_io_wq->metadata == BTRFS_WQ_ENDIO_FREE_SPACE)
7269e0af237SLiu Bo 			wq = fs_info->endio_freespace_worker;
727a0cac0ecSOmar Sandoval 		else if (end_io_wq->metadata == BTRFS_WQ_ENDIO_RAID56)
7289e0af237SLiu Bo 			wq = fs_info->endio_raid56_workers;
729a0cac0ecSOmar Sandoval 		else
7309e0af237SLiu Bo 			wq = fs_info->endio_write_workers;
7319e0af237SLiu Bo 	} else {
732a0cac0ecSOmar Sandoval 		if (unlikely(end_io_wq->metadata == BTRFS_WQ_ENDIO_DIO_REPAIR))
7338b110e39SMiao Xie 			wq = fs_info->endio_repair_workers;
734a0cac0ecSOmar Sandoval 		else if (end_io_wq->metadata == BTRFS_WQ_ENDIO_RAID56)
7359e0af237SLiu Bo 			wq = fs_info->endio_raid56_workers;
736a0cac0ecSOmar Sandoval 		else if (end_io_wq->metadata)
7379e0af237SLiu Bo 			wq = fs_info->endio_meta_workers;
738a0cac0ecSOmar Sandoval 		else
7399e0af237SLiu Bo 			wq = fs_info->endio_workers;
7409e0af237SLiu Bo 	}
7419e0af237SLiu Bo 
742a0cac0ecSOmar Sandoval 	btrfs_init_work(&end_io_wq->work, end_workqueue_fn, NULL, NULL);
7439e0af237SLiu Bo 	btrfs_queue_work(wq, &end_io_wq->work);
744ce9adaa5SChris Mason }
745ce9adaa5SChris Mason 
7464e4cbee9SChristoph Hellwig blk_status_t btrfs_bio_wq_end_io(struct btrfs_fs_info *info, struct bio *bio,
747bfebd8b5SDavid Sterba 			enum btrfs_wq_endio_type metadata)
7480b86a832SChris Mason {
74997eb6b69SDavid Sterba 	struct btrfs_end_io_wq *end_io_wq;
7508b110e39SMiao Xie 
75197eb6b69SDavid Sterba 	end_io_wq = kmem_cache_alloc(btrfs_end_io_wq_cache, GFP_NOFS);
752ce9adaa5SChris Mason 	if (!end_io_wq)
7534e4cbee9SChristoph Hellwig 		return BLK_STS_RESOURCE;
754ce9adaa5SChris Mason 
755ce9adaa5SChris Mason 	end_io_wq->private = bio->bi_private;
756ce9adaa5SChris Mason 	end_io_wq->end_io = bio->bi_end_io;
75722c59948SChris Mason 	end_io_wq->info = info;
7584e4cbee9SChristoph Hellwig 	end_io_wq->status = 0;
759ce9adaa5SChris Mason 	end_io_wq->bio = bio;
76022c59948SChris Mason 	end_io_wq->metadata = metadata;
761ce9adaa5SChris Mason 
762ce9adaa5SChris Mason 	bio->bi_private = end_io_wq;
763ce9adaa5SChris Mason 	bio->bi_end_io = end_workqueue_bio;
76422c59948SChris Mason 	return 0;
76522c59948SChris Mason }
76622c59948SChris Mason 
7674a69a410SChris Mason static void run_one_async_start(struct btrfs_work *work)
7684a69a410SChris Mason {
7694a69a410SChris Mason 	struct async_submit_bio *async;
7704e4cbee9SChristoph Hellwig 	blk_status_t ret;
7714a69a410SChris Mason 
7724a69a410SChris Mason 	async = container_of(work, struct  async_submit_bio, work);
773c6100a4bSJosef Bacik 	ret = async->submit_bio_start(async->private_data, async->bio,
774eaf25d93SChris Mason 				      async->bio_offset);
77579787eaaSJeff Mahoney 	if (ret)
7764e4cbee9SChristoph Hellwig 		async->status = ret;
7774a69a410SChris Mason }
7784a69a410SChris Mason 
77906ea01b1SDavid Sterba /*
78006ea01b1SDavid Sterba  * In order to insert checksums into the metadata in large chunks, we wait
78106ea01b1SDavid Sterba  * until bio submission time.   All the pages in the bio are checksummed and
78206ea01b1SDavid Sterba  * sums are attached onto the ordered extent record.
78306ea01b1SDavid Sterba  *
78406ea01b1SDavid Sterba  * At IO completion time the csums attached on the ordered extent record are
78506ea01b1SDavid Sterba  * inserted into the tree.
78606ea01b1SDavid Sterba  */
7874a69a410SChris Mason static void run_one_async_done(struct btrfs_work *work)
7888b712842SChris Mason {
7898b712842SChris Mason 	struct async_submit_bio *async;
79006ea01b1SDavid Sterba 	struct inode *inode;
79106ea01b1SDavid Sterba 	blk_status_t ret;
7928b712842SChris Mason 
7938b712842SChris Mason 	async = container_of(work, struct  async_submit_bio, work);
79406ea01b1SDavid Sterba 	inode = async->private_data;
7954854ddd0SChris Mason 
796bb7ab3b9SAdam Buchbinder 	/* If an error occurred we just want to clean up the bio and move on */
7974e4cbee9SChristoph Hellwig 	if (async->status) {
7984e4cbee9SChristoph Hellwig 		async->bio->bi_status = async->status;
7994246a0b6SChristoph Hellwig 		bio_endio(async->bio);
80079787eaaSJeff Mahoney 		return;
80179787eaaSJeff Mahoney 	}
80279787eaaSJeff Mahoney 
803ec39f769SChris Mason 	/*
804ec39f769SChris Mason 	 * All of the bios that pass through here are from async helpers.
805ec39f769SChris Mason 	 * Use REQ_CGROUP_PUNT to issue them from the owning cgroup's context.
806ec39f769SChris Mason 	 * This changes nothing when cgroups aren't in use.
807ec39f769SChris Mason 	 */
808ec39f769SChris Mason 	async->bio->bi_opf |= REQ_CGROUP_PUNT;
80908635baeSChris Mason 	ret = btrfs_map_bio(btrfs_sb(inode->i_sb), async->bio, async->mirror_num);
81006ea01b1SDavid Sterba 	if (ret) {
81106ea01b1SDavid Sterba 		async->bio->bi_status = ret;
81206ea01b1SDavid Sterba 		bio_endio(async->bio);
81306ea01b1SDavid Sterba 	}
8144a69a410SChris Mason }
8154a69a410SChris Mason 
8164a69a410SChris Mason static void run_one_async_free(struct btrfs_work *work)
8174a69a410SChris Mason {
8184a69a410SChris Mason 	struct async_submit_bio *async;
8194a69a410SChris Mason 
8204a69a410SChris Mason 	async = container_of(work, struct  async_submit_bio, work);
8218b712842SChris Mason 	kfree(async);
8228b712842SChris Mason }
8238b712842SChris Mason 
8248c27cb35SLinus Torvalds blk_status_t btrfs_wq_submit_bio(struct btrfs_fs_info *fs_info, struct bio *bio,
825c6100a4bSJosef Bacik 				 int mirror_num, unsigned long bio_flags,
826c6100a4bSJosef Bacik 				 u64 bio_offset, void *private_data,
827e288c080SDavid Sterba 				 extent_submit_bio_start_t *submit_bio_start)
82844b8bd7eSChris Mason {
82944b8bd7eSChris Mason 	struct async_submit_bio *async;
83044b8bd7eSChris Mason 
83144b8bd7eSChris Mason 	async = kmalloc(sizeof(*async), GFP_NOFS);
83244b8bd7eSChris Mason 	if (!async)
8334e4cbee9SChristoph Hellwig 		return BLK_STS_RESOURCE;
83444b8bd7eSChris Mason 
835c6100a4bSJosef Bacik 	async->private_data = private_data;
83644b8bd7eSChris Mason 	async->bio = bio;
83744b8bd7eSChris Mason 	async->mirror_num = mirror_num;
8384a69a410SChris Mason 	async->submit_bio_start = submit_bio_start;
8394a69a410SChris Mason 
840a0cac0ecSOmar Sandoval 	btrfs_init_work(&async->work, run_one_async_start, run_one_async_done,
841a0cac0ecSOmar Sandoval 			run_one_async_free);
8424a69a410SChris Mason 
843eaf25d93SChris Mason 	async->bio_offset = bio_offset;
8448c8bee1dSChris Mason 
8454e4cbee9SChristoph Hellwig 	async->status = 0;
84679787eaaSJeff Mahoney 
84767f055c7SChristoph Hellwig 	if (op_is_sync(bio->bi_opf))
8485cdc7ad3SQu Wenruo 		btrfs_set_work_high_priority(&async->work);
849d313d7a3SChris Mason 
8505cdc7ad3SQu Wenruo 	btrfs_queue_work(fs_info->workers, &async->work);
85144b8bd7eSChris Mason 	return 0;
85244b8bd7eSChris Mason }
85344b8bd7eSChris Mason 
8544e4cbee9SChristoph Hellwig static blk_status_t btree_csum_one_bio(struct bio *bio)
855ce3ed71aSChris Mason {
8562c30c71bSKent Overstreet 	struct bio_vec *bvec;
857ce3ed71aSChris Mason 	struct btrfs_root *root;
8582b070cfeSChristoph Hellwig 	int ret = 0;
8596dc4f100SMing Lei 	struct bvec_iter_all iter_all;
860ce3ed71aSChris Mason 
861c09abff8SDavid Sterba 	ASSERT(!bio_flagged(bio, BIO_CLONED));
8622b070cfeSChristoph Hellwig 	bio_for_each_segment_all(bvec, bio, iter_all) {
863ce3ed71aSChris Mason 		root = BTRFS_I(bvec->bv_page->mapping->host)->root;
86401d58472SDaniel Dressler 		ret = csum_dirty_buffer(root->fs_info, bvec->bv_page);
86579787eaaSJeff Mahoney 		if (ret)
86679787eaaSJeff Mahoney 			break;
867ce3ed71aSChris Mason 	}
8682c30c71bSKent Overstreet 
8694e4cbee9SChristoph Hellwig 	return errno_to_blk_status(ret);
870ce3ed71aSChris Mason }
871ce3ed71aSChris Mason 
872d0ee3934SDavid Sterba static blk_status_t btree_submit_bio_start(void *private_data, struct bio *bio,
873eaf25d93SChris Mason 					     u64 bio_offset)
87422c59948SChris Mason {
8758b712842SChris Mason 	/*
8768b712842SChris Mason 	 * when we're called for a write, we're already in the async
8775443be45SChris Mason 	 * submission context.  Just jump into btrfs_map_bio
8788b712842SChris Mason 	 */
87979787eaaSJeff Mahoney 	return btree_csum_one_bio(bio);
88022c59948SChris Mason }
88122c59948SChris Mason 
8829b4e675aSDavid Sterba static int check_async_write(struct btrfs_fs_info *fs_info,
8839b4e675aSDavid Sterba 			     struct btrfs_inode *bi)
884de0022b9SJosef Bacik {
8856300463bSLiu Bo 	if (atomic_read(&bi->sync_writers))
8866300463bSLiu Bo 		return 0;
8879b4e675aSDavid Sterba 	if (test_bit(BTRFS_FS_CSUM_IMPL_FAST, &fs_info->flags))
888de0022b9SJosef Bacik 		return 0;
889de0022b9SJosef Bacik 	return 1;
890de0022b9SJosef Bacik }
891de0022b9SJosef Bacik 
892a56b1c7bSNikolay Borisov static blk_status_t btree_submit_bio_hook(struct inode *inode, struct bio *bio,
89350489a57SNikolay Borisov 					  int mirror_num,
89450489a57SNikolay Borisov 					  unsigned long bio_flags)
89544b8bd7eSChris Mason {
8960b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
8979b4e675aSDavid Sterba 	int async = check_async_write(fs_info, BTRFS_I(inode));
8984e4cbee9SChristoph Hellwig 	blk_status_t ret;
899cad321adSChris Mason 
90037226b21SMike Christie 	if (bio_op(bio) != REQ_OP_WRITE) {
901cad321adSChris Mason 		/*
902cad321adSChris Mason 		 * called for a read, do the setup so that checksum validation
903cad321adSChris Mason 		 * can happen in the async kernel threads
904cad321adSChris Mason 		 */
9050b246afaSJeff Mahoney 		ret = btrfs_bio_wq_end_io(fs_info, bio,
9060b246afaSJeff Mahoney 					  BTRFS_WQ_ENDIO_METADATA);
9071d4284bdSChris Mason 		if (ret)
90861891923SStefan Behrens 			goto out_w_error;
90908635baeSChris Mason 		ret = btrfs_map_bio(fs_info, bio, mirror_num);
910de0022b9SJosef Bacik 	} else if (!async) {
911de0022b9SJosef Bacik 		ret = btree_csum_one_bio(bio);
912de0022b9SJosef Bacik 		if (ret)
91361891923SStefan Behrens 			goto out_w_error;
91408635baeSChris Mason 		ret = btrfs_map_bio(fs_info, bio, mirror_num);
91561891923SStefan Behrens 	} else {
916cad321adSChris Mason 		/*
91761891923SStefan Behrens 		 * kthread helpers are used to submit writes so that
91861891923SStefan Behrens 		 * checksumming can happen in parallel across all CPUs
919cad321adSChris Mason 		 */
920c6100a4bSJosef Bacik 		ret = btrfs_wq_submit_bio(fs_info, bio, mirror_num, 0,
921e68f2ee7SNikolay Borisov 					  0, inode, btree_submit_bio_start);
92244b8bd7eSChris Mason 	}
92344b8bd7eSChris Mason 
9244246a0b6SChristoph Hellwig 	if (ret)
9254246a0b6SChristoph Hellwig 		goto out_w_error;
9264246a0b6SChristoph Hellwig 	return 0;
9274246a0b6SChristoph Hellwig 
92861891923SStefan Behrens out_w_error:
9294e4cbee9SChristoph Hellwig 	bio->bi_status = ret;
9304246a0b6SChristoph Hellwig 	bio_endio(bio);
93161891923SStefan Behrens 	return ret;
93261891923SStefan Behrens }
93361891923SStefan Behrens 
9343dd1462eSJan Beulich #ifdef CONFIG_MIGRATION
935784b4e29SChris Mason static int btree_migratepage(struct address_space *mapping,
936a6bc32b8SMel Gorman 			struct page *newpage, struct page *page,
937a6bc32b8SMel Gorman 			enum migrate_mode mode)
938784b4e29SChris Mason {
939784b4e29SChris Mason 	/*
940784b4e29SChris Mason 	 * we can't safely write a btree page from here,
941784b4e29SChris Mason 	 * we haven't done the locking hook
942784b4e29SChris Mason 	 */
943784b4e29SChris Mason 	if (PageDirty(page))
944784b4e29SChris Mason 		return -EAGAIN;
945784b4e29SChris Mason 	/*
946784b4e29SChris Mason 	 * Buffers may be managed in a filesystem specific way.
947784b4e29SChris Mason 	 * We must have no buffers or drop them.
948784b4e29SChris Mason 	 */
949784b4e29SChris Mason 	if (page_has_private(page) &&
950784b4e29SChris Mason 	    !try_to_release_page(page, GFP_KERNEL))
951784b4e29SChris Mason 		return -EAGAIN;
952a6bc32b8SMel Gorman 	return migrate_page(mapping, newpage, page, mode);
953784b4e29SChris Mason }
9543dd1462eSJan Beulich #endif
955784b4e29SChris Mason 
9560da5468fSChris Mason 
9570da5468fSChris Mason static int btree_writepages(struct address_space *mapping,
9580da5468fSChris Mason 			    struct writeback_control *wbc)
9590da5468fSChris Mason {
960e2d84521SMiao Xie 	struct btrfs_fs_info *fs_info;
961e2d84521SMiao Xie 	int ret;
962e2d84521SMiao Xie 
963d8d5f3e1SChris Mason 	if (wbc->sync_mode == WB_SYNC_NONE) {
964448d640bSChris Mason 
965448d640bSChris Mason 		if (wbc->for_kupdate)
966448d640bSChris Mason 			return 0;
967448d640bSChris Mason 
968e2d84521SMiao Xie 		fs_info = BTRFS_I(mapping->host)->root->fs_info;
969b9473439SChris Mason 		/* this is a bit racy, but that's ok */
970d814a491SEthan Lien 		ret = __percpu_counter_compare(&fs_info->dirty_metadata_bytes,
971d814a491SEthan Lien 					     BTRFS_DIRTY_METADATA_THRESH,
972d814a491SEthan Lien 					     fs_info->dirty_metadata_batch);
973e2d84521SMiao Xie 		if (ret < 0)
974793955bcSChris Mason 			return 0;
975793955bcSChris Mason 	}
9760b32f4bbSJosef Bacik 	return btree_write_cache_pages(mapping, wbc);
9770da5468fSChris Mason }
9780da5468fSChris Mason 
979b2950863SChristoph Hellwig static int btree_readpage(struct file *file, struct page *page)
9805f39d397SChris Mason {
981d1310b2eSChris Mason 	struct extent_io_tree *tree;
982d1310b2eSChris Mason 	tree = &BTRFS_I(page->mapping->host)->io_tree;
9838ddc7d9cSJan Schmidt 	return extent_read_full_page(tree, page, btree_get_extent, 0);
9845f39d397SChris Mason }
9855f39d397SChris Mason 
98670dec807SChris Mason static int btree_releasepage(struct page *page, gfp_t gfp_flags)
9875f39d397SChris Mason {
98898509cfcSChris Mason 	if (PageWriteback(page) || PageDirty(page))
98998509cfcSChris Mason 		return 0;
9900c4e538bSDavid Sterba 
991f7a52a40SDavid Sterba 	return try_release_extent_buffer(page);
992d98237b3SChris Mason }
993d98237b3SChris Mason 
994d47992f8SLukas Czerner static void btree_invalidatepage(struct page *page, unsigned int offset,
995d47992f8SLukas Czerner 				 unsigned int length)
996d98237b3SChris Mason {
997d1310b2eSChris Mason 	struct extent_io_tree *tree;
998d1310b2eSChris Mason 	tree = &BTRFS_I(page->mapping->host)->io_tree;
9995f39d397SChris Mason 	extent_invalidatepage(tree, page, offset);
10005f39d397SChris Mason 	btree_releasepage(page, GFP_NOFS);
10019ad6b7bcSChris Mason 	if (PagePrivate(page)) {
1002efe120a0SFrank Holton 		btrfs_warn(BTRFS_I(page->mapping->host)->root->fs_info,
1003efe120a0SFrank Holton 			   "page private not zero on page %llu",
1004efe120a0SFrank Holton 			   (unsigned long long)page_offset(page));
10059ad6b7bcSChris Mason 		ClearPagePrivate(page);
10069ad6b7bcSChris Mason 		set_page_private(page, 0);
100709cbfeafSKirill A. Shutemov 		put_page(page);
10089ad6b7bcSChris Mason 	}
1009d98237b3SChris Mason }
1010d98237b3SChris Mason 
10110b32f4bbSJosef Bacik static int btree_set_page_dirty(struct page *page)
10120b32f4bbSJosef Bacik {
1013bb146eb2SJosef Bacik #ifdef DEBUG
10140b32f4bbSJosef Bacik 	struct extent_buffer *eb;
10150b32f4bbSJosef Bacik 
10160b32f4bbSJosef Bacik 	BUG_ON(!PagePrivate(page));
10170b32f4bbSJosef Bacik 	eb = (struct extent_buffer *)page->private;
10180b32f4bbSJosef Bacik 	BUG_ON(!eb);
10190b32f4bbSJosef Bacik 	BUG_ON(!test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
10200b32f4bbSJosef Bacik 	BUG_ON(!atomic_read(&eb->refs));
10210b32f4bbSJosef Bacik 	btrfs_assert_tree_locked(eb);
1022bb146eb2SJosef Bacik #endif
10230b32f4bbSJosef Bacik 	return __set_page_dirty_nobuffers(page);
10240b32f4bbSJosef Bacik }
10250b32f4bbSJosef Bacik 
10267f09410bSAlexey Dobriyan static const struct address_space_operations btree_aops = {
1027d98237b3SChris Mason 	.readpage	= btree_readpage,
10280da5468fSChris Mason 	.writepages	= btree_writepages,
10295f39d397SChris Mason 	.releasepage	= btree_releasepage,
10305f39d397SChris Mason 	.invalidatepage = btree_invalidatepage,
10315a92bc88SChris Mason #ifdef CONFIG_MIGRATION
1032784b4e29SChris Mason 	.migratepage	= btree_migratepage,
10335a92bc88SChris Mason #endif
10340b32f4bbSJosef Bacik 	.set_page_dirty = btree_set_page_dirty,
1035d98237b3SChris Mason };
1036123abc88SChris Mason 
10372ff7e61eSJeff Mahoney void readahead_tree_block(struct btrfs_fs_info *fs_info, u64 bytenr)
1038090d1875SChris Mason {
10395f39d397SChris Mason 	struct extent_buffer *buf = NULL;
1040537f38f0SNikolay Borisov 	int ret;
1041090d1875SChris Mason 
10422ff7e61eSJeff Mahoney 	buf = btrfs_find_create_tree_block(fs_info, bytenr);
1043c871b0f2SLiu Bo 	if (IS_ERR(buf))
10446197d86eSDavid Sterba 		return;
1045537f38f0SNikolay Borisov 
1046c2ccfbc6SNikolay Borisov 	ret = read_extent_buffer_pages(buf, WAIT_NONE, 0);
1047537f38f0SNikolay Borisov 	if (ret < 0)
1048537f38f0SNikolay Borisov 		free_extent_buffer_stale(buf);
1049537f38f0SNikolay Borisov 	else
10505f39d397SChris Mason 		free_extent_buffer(buf);
1051090d1875SChris Mason }
1052090d1875SChris Mason 
10532ff7e61eSJeff Mahoney struct extent_buffer *btrfs_find_create_tree_block(
10542ff7e61eSJeff Mahoney 						struct btrfs_fs_info *fs_info,
10550308af44SDavid Sterba 						u64 bytenr)
10560999df54SChris Mason {
10570b246afaSJeff Mahoney 	if (btrfs_is_testing(fs_info))
10580b246afaSJeff Mahoney 		return alloc_test_extent_buffer(fs_info, bytenr);
10590b246afaSJeff Mahoney 	return alloc_extent_buffer(fs_info, bytenr);
10600999df54SChris Mason }
10610999df54SChris Mason 
1062581c1760SQu Wenruo /*
1063581c1760SQu Wenruo  * Read tree block at logical address @bytenr and do variant basic but critical
1064581c1760SQu Wenruo  * verification.
1065581c1760SQu Wenruo  *
1066581c1760SQu Wenruo  * @parent_transid:	expected transid of this tree block, skip check if 0
1067581c1760SQu Wenruo  * @level:		expected level, mandatory check
1068581c1760SQu Wenruo  * @first_key:		expected key in slot 0, skip check if NULL
1069581c1760SQu Wenruo  */
10702ff7e61eSJeff Mahoney struct extent_buffer *read_tree_block(struct btrfs_fs_info *fs_info, u64 bytenr,
1071581c1760SQu Wenruo 				      u64 parent_transid, int level,
1072581c1760SQu Wenruo 				      struct btrfs_key *first_key)
1073e20d96d6SChris Mason {
10745f39d397SChris Mason 	struct extent_buffer *buf = NULL;
107519c00ddcSChris Mason 	int ret;
107619c00ddcSChris Mason 
10772ff7e61eSJeff Mahoney 	buf = btrfs_find_create_tree_block(fs_info, bytenr);
1078c871b0f2SLiu Bo 	if (IS_ERR(buf))
1079c871b0f2SLiu Bo 		return buf;
1080e4204dedSChris Mason 
10815ab12d1fSDavid Sterba 	ret = btree_read_extent_buffer_pages(buf, parent_transid,
1082581c1760SQu Wenruo 					     level, first_key);
10830f0fe8f7SFilipe David Borba Manana 	if (ret) {
1084537f38f0SNikolay Borisov 		free_extent_buffer_stale(buf);
108564c043deSLiu Bo 		return ERR_PTR(ret);
10860f0fe8f7SFilipe David Borba Manana 	}
10875f39d397SChris Mason 	return buf;
1088ce9adaa5SChris Mason 
1089eb60ceacSChris Mason }
1090eb60ceacSChris Mason 
10916a884d7dSDavid Sterba void btrfs_clean_tree_block(struct extent_buffer *buf)
1092ed2ff2cbSChris Mason {
10936a884d7dSDavid Sterba 	struct btrfs_fs_info *fs_info = buf->fs_info;
109455c69072SChris Mason 	if (btrfs_header_generation(buf) ==
1095e2d84521SMiao Xie 	    fs_info->running_transaction->transid) {
1096b9447ef8SChris Mason 		btrfs_assert_tree_locked(buf);
1097b4ce94deSChris Mason 
1098b9473439SChris Mason 		if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &buf->bflags)) {
1099104b4e51SNikolay Borisov 			percpu_counter_add_batch(&fs_info->dirty_metadata_bytes,
1100e2d84521SMiao Xie 						 -buf->len,
1101e2d84521SMiao Xie 						 fs_info->dirty_metadata_batch);
1102b9473439SChris Mason 			/* ugh, clear_extent_buffer_dirty needs to lock the page */
11038bead258SDavid Sterba 			btrfs_set_lock_blocking_write(buf);
11040b32f4bbSJosef Bacik 			clear_extent_buffer_dirty(buf);
1105925baeddSChris Mason 		}
11065f39d397SChris Mason 	}
1107ed7b63ebSJosef Bacik }
11085f39d397SChris Mason 
11098257b2dcSMiao Xie static struct btrfs_subvolume_writers *btrfs_alloc_subvolume_writers(void)
11108257b2dcSMiao Xie {
11118257b2dcSMiao Xie 	struct btrfs_subvolume_writers *writers;
11128257b2dcSMiao Xie 	int ret;
11138257b2dcSMiao Xie 
11148257b2dcSMiao Xie 	writers = kmalloc(sizeof(*writers), GFP_NOFS);
11158257b2dcSMiao Xie 	if (!writers)
11168257b2dcSMiao Xie 		return ERR_PTR(-ENOMEM);
11178257b2dcSMiao Xie 
11188a5a916dSJeff Mahoney 	ret = percpu_counter_init(&writers->counter, 0, GFP_NOFS);
11198257b2dcSMiao Xie 	if (ret < 0) {
11208257b2dcSMiao Xie 		kfree(writers);
11218257b2dcSMiao Xie 		return ERR_PTR(ret);
11228257b2dcSMiao Xie 	}
11238257b2dcSMiao Xie 
11248257b2dcSMiao Xie 	init_waitqueue_head(&writers->wait);
11258257b2dcSMiao Xie 	return writers;
11268257b2dcSMiao Xie }
11278257b2dcSMiao Xie 
11288257b2dcSMiao Xie static void
11298257b2dcSMiao Xie btrfs_free_subvolume_writers(struct btrfs_subvolume_writers *writers)
11308257b2dcSMiao Xie {
11318257b2dcSMiao Xie 	percpu_counter_destroy(&writers->counter);
11328257b2dcSMiao Xie 	kfree(writers);
11338257b2dcSMiao Xie }
11348257b2dcSMiao Xie 
1135da17066cSJeff Mahoney static void __setup_root(struct btrfs_root *root, struct btrfs_fs_info *fs_info,
1136e20d96d6SChris Mason 			 u64 objectid)
1137d97e63b6SChris Mason {
11387c0260eeSJeff Mahoney 	bool dummy = test_bit(BTRFS_FS_STATE_DUMMY_FS_INFO, &fs_info->fs_state);
113996dfcb46SJosef Bacik 	root->fs_info = fs_info;
1140cfaa7295SChris Mason 	root->node = NULL;
1141a28ec197SChris Mason 	root->commit_root = NULL;
114227cdeb70SMiao Xie 	root->state = 0;
1143d68fc57bSYan, Zheng 	root->orphan_cleanup_state = 0;
11440b86a832SChris Mason 
11450f7d52f4SChris Mason 	root->last_trans = 0;
114613a8a7c8SYan, Zheng 	root->highest_objectid = 0;
1147eb73c1b7SMiao Xie 	root->nr_delalloc_inodes = 0;
1148199c2a9cSMiao Xie 	root->nr_ordered_extents = 0;
11496bef4d31SEric Paris 	root->inode_tree = RB_ROOT;
115016cdcec7SMiao Xie 	INIT_RADIX_TREE(&root->delayed_nodes_tree, GFP_ATOMIC);
1151f0486c68SYan, Zheng 	root->block_rsv = NULL;
11520b86a832SChris Mason 
11530b86a832SChris Mason 	INIT_LIST_HEAD(&root->dirty_list);
11545d4f98a2SYan Zheng 	INIT_LIST_HEAD(&root->root_list);
1155eb73c1b7SMiao Xie 	INIT_LIST_HEAD(&root->delalloc_inodes);
1156eb73c1b7SMiao Xie 	INIT_LIST_HEAD(&root->delalloc_root);
1157199c2a9cSMiao Xie 	INIT_LIST_HEAD(&root->ordered_extents);
1158199c2a9cSMiao Xie 	INIT_LIST_HEAD(&root->ordered_root);
1159d2311e69SQu Wenruo 	INIT_LIST_HEAD(&root->reloc_dirty_list);
11602ab28f32SJosef Bacik 	INIT_LIST_HEAD(&root->logged_list[0]);
11612ab28f32SJosef Bacik 	INIT_LIST_HEAD(&root->logged_list[1]);
11625d4f98a2SYan Zheng 	spin_lock_init(&root->inode_lock);
1163eb73c1b7SMiao Xie 	spin_lock_init(&root->delalloc_lock);
1164199c2a9cSMiao Xie 	spin_lock_init(&root->ordered_extent_lock);
1165f0486c68SYan, Zheng 	spin_lock_init(&root->accounting_lock);
11662ab28f32SJosef Bacik 	spin_lock_init(&root->log_extents_lock[0]);
11672ab28f32SJosef Bacik 	spin_lock_init(&root->log_extents_lock[1]);
11688287475aSQu Wenruo 	spin_lock_init(&root->qgroup_meta_rsv_lock);
1169a2135011SChris Mason 	mutex_init(&root->objectid_mutex);
1170e02119d5SChris Mason 	mutex_init(&root->log_mutex);
117131f3d255SMiao Xie 	mutex_init(&root->ordered_extent_mutex);
1172573bfb72SMiao Xie 	mutex_init(&root->delalloc_mutex);
11737237f183SYan Zheng 	init_waitqueue_head(&root->log_writer_wait);
11747237f183SYan Zheng 	init_waitqueue_head(&root->log_commit_wait[0]);
11757237f183SYan Zheng 	init_waitqueue_head(&root->log_commit_wait[1]);
11768b050d35SMiao Xie 	INIT_LIST_HEAD(&root->log_ctxs[0]);
11778b050d35SMiao Xie 	INIT_LIST_HEAD(&root->log_ctxs[1]);
11787237f183SYan Zheng 	atomic_set(&root->log_commit[0], 0);
11797237f183SYan Zheng 	atomic_set(&root->log_commit[1], 0);
11807237f183SYan Zheng 	atomic_set(&root->log_writers, 0);
11812ecb7923SMiao Xie 	atomic_set(&root->log_batch, 0);
11820700cea7SElena Reshetova 	refcount_set(&root->refs, 1);
1183ea14b57fSDavid Sterba 	atomic_set(&root->will_be_snapshotted, 0);
11848ecebf4dSRobbie Ko 	atomic_set(&root->snapshot_force_cow, 0);
1185eede2bf3SOmar Sandoval 	atomic_set(&root->nr_swapfiles, 0);
11867237f183SYan Zheng 	root->log_transid = 0;
1187d1433debSMiao Xie 	root->log_transid_committed = -1;
1188257c62e1SChris Mason 	root->last_log_commit = 0;
11897c0260eeSJeff Mahoney 	if (!dummy)
119043eb5f29SQu Wenruo 		extent_io_tree_init(fs_info, &root->dirty_log_pages,
119143eb5f29SQu Wenruo 				    IO_TREE_ROOT_DIRTY_LOG_PAGES, NULL);
1192017e5369SChris Mason 
11933768f368SChris Mason 	memset(&root->root_key, 0, sizeof(root->root_key));
11943768f368SChris Mason 	memset(&root->root_item, 0, sizeof(root->root_item));
11956702ed49SChris Mason 	memset(&root->defrag_progress, 0, sizeof(root->defrag_progress));
11967c0260eeSJeff Mahoney 	if (!dummy)
11973f157a2fSChris Mason 		root->defrag_trans_start = fs_info->generation;
119806ea65a3SJosef Bacik 	else
119906ea65a3SJosef Bacik 		root->defrag_trans_start = 0;
12004d775673SChris Mason 	root->root_key.objectid = objectid;
12010ee5dc67SAl Viro 	root->anon_dev = 0;
12028ea05e3aSAlexander Block 
12035f3ab90aSAnand Jain 	spin_lock_init(&root->root_item_lock);
1204370a11b8SQu Wenruo 	btrfs_qgroup_init_swapped_blocks(&root->swapped_blocks);
1205bd647ce3SJosef Bacik #ifdef CONFIG_BTRFS_DEBUG
1206bd647ce3SJosef Bacik 	INIT_LIST_HEAD(&root->leak_list);
1207bd647ce3SJosef Bacik 	spin_lock(&fs_info->fs_roots_radix_lock);
1208bd647ce3SJosef Bacik 	list_add_tail(&root->leak_list, &fs_info->allocated_roots);
1209bd647ce3SJosef Bacik 	spin_unlock(&fs_info->fs_roots_radix_lock);
1210bd647ce3SJosef Bacik #endif
12113768f368SChris Mason }
12123768f368SChris Mason 
121374e4d827SDavid Sterba static struct btrfs_root *btrfs_alloc_root(struct btrfs_fs_info *fs_info,
121496dfcb46SJosef Bacik 					   u64 objectid, gfp_t flags)
12156f07e42eSAl Viro {
121674e4d827SDavid Sterba 	struct btrfs_root *root = kzalloc(sizeof(*root), flags);
12176f07e42eSAl Viro 	if (root)
121896dfcb46SJosef Bacik 		__setup_root(root, fs_info, objectid);
12196f07e42eSAl Viro 	return root;
12206f07e42eSAl Viro }
12216f07e42eSAl Viro 
122206ea65a3SJosef Bacik #ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
122306ea65a3SJosef Bacik /* Should only be used by the testing infrastructure */
1224da17066cSJeff Mahoney struct btrfs_root *btrfs_alloc_dummy_root(struct btrfs_fs_info *fs_info)
122506ea65a3SJosef Bacik {
122606ea65a3SJosef Bacik 	struct btrfs_root *root;
122706ea65a3SJosef Bacik 
12287c0260eeSJeff Mahoney 	if (!fs_info)
12297c0260eeSJeff Mahoney 		return ERR_PTR(-EINVAL);
12307c0260eeSJeff Mahoney 
123196dfcb46SJosef Bacik 	root = btrfs_alloc_root(fs_info, BTRFS_ROOT_TREE_OBJECTID, GFP_KERNEL);
123206ea65a3SJosef Bacik 	if (!root)
123306ea65a3SJosef Bacik 		return ERR_PTR(-ENOMEM);
1234da17066cSJeff Mahoney 
1235b9ef22deSFeifei Xu 	/* We don't use the stripesize in selftest, set it as sectorsize */
1236faa2dbf0SJosef Bacik 	root->alloc_bytenr = 0;
123706ea65a3SJosef Bacik 
123806ea65a3SJosef Bacik 	return root;
123906ea65a3SJosef Bacik }
124006ea65a3SJosef Bacik #endif
124106ea65a3SJosef Bacik 
124220897f5cSArne Jansen struct btrfs_root *btrfs_create_tree(struct btrfs_trans_handle *trans,
124320897f5cSArne Jansen 				     u64 objectid)
124420897f5cSArne Jansen {
12459b7a2440SDavid Sterba 	struct btrfs_fs_info *fs_info = trans->fs_info;
124620897f5cSArne Jansen 	struct extent_buffer *leaf;
124720897f5cSArne Jansen 	struct btrfs_root *tree_root = fs_info->tree_root;
124820897f5cSArne Jansen 	struct btrfs_root *root;
124920897f5cSArne Jansen 	struct btrfs_key key;
1250b89f6d1fSFilipe Manana 	unsigned int nofs_flag;
125120897f5cSArne Jansen 	int ret = 0;
125233d85fdaSQu Wenruo 	uuid_le uuid = NULL_UUID_LE;
125320897f5cSArne Jansen 
1254b89f6d1fSFilipe Manana 	/*
1255b89f6d1fSFilipe Manana 	 * We're holding a transaction handle, so use a NOFS memory allocation
1256b89f6d1fSFilipe Manana 	 * context to avoid deadlock if reclaim happens.
1257b89f6d1fSFilipe Manana 	 */
1258b89f6d1fSFilipe Manana 	nofs_flag = memalloc_nofs_save();
125996dfcb46SJosef Bacik 	root = btrfs_alloc_root(fs_info, objectid, GFP_KERNEL);
1260b89f6d1fSFilipe Manana 	memalloc_nofs_restore(nofs_flag);
126120897f5cSArne Jansen 	if (!root)
126220897f5cSArne Jansen 		return ERR_PTR(-ENOMEM);
126320897f5cSArne Jansen 
126420897f5cSArne Jansen 	root->root_key.objectid = objectid;
126520897f5cSArne Jansen 	root->root_key.type = BTRFS_ROOT_ITEM_KEY;
126620897f5cSArne Jansen 	root->root_key.offset = 0;
126720897f5cSArne Jansen 
12684d75f8a9SDavid Sterba 	leaf = btrfs_alloc_tree_block(trans, root, 0, objectid, NULL, 0, 0, 0);
126920897f5cSArne Jansen 	if (IS_ERR(leaf)) {
127020897f5cSArne Jansen 		ret = PTR_ERR(leaf);
12711dd05682STsutomu Itoh 		leaf = NULL;
127220897f5cSArne Jansen 		goto fail;
127320897f5cSArne Jansen 	}
127420897f5cSArne Jansen 
127520897f5cSArne Jansen 	root->node = leaf;
127620897f5cSArne Jansen 	btrfs_mark_buffer_dirty(leaf);
127720897f5cSArne Jansen 
127820897f5cSArne Jansen 	root->commit_root = btrfs_root_node(root);
127927cdeb70SMiao Xie 	set_bit(BTRFS_ROOT_TRACK_DIRTY, &root->state);
128020897f5cSArne Jansen 
128120897f5cSArne Jansen 	root->root_item.flags = 0;
128220897f5cSArne Jansen 	root->root_item.byte_limit = 0;
128320897f5cSArne Jansen 	btrfs_set_root_bytenr(&root->root_item, leaf->start);
128420897f5cSArne Jansen 	btrfs_set_root_generation(&root->root_item, trans->transid);
128520897f5cSArne Jansen 	btrfs_set_root_level(&root->root_item, 0);
128620897f5cSArne Jansen 	btrfs_set_root_refs(&root->root_item, 1);
128720897f5cSArne Jansen 	btrfs_set_root_used(&root->root_item, leaf->len);
128820897f5cSArne Jansen 	btrfs_set_root_last_snapshot(&root->root_item, 0);
128920897f5cSArne Jansen 	btrfs_set_root_dirid(&root->root_item, 0);
129033d85fdaSQu Wenruo 	if (is_fstree(objectid))
12916463fe58SStefan Behrens 		uuid_le_gen(&uuid);
12926463fe58SStefan Behrens 	memcpy(root->root_item.uuid, uuid.b, BTRFS_UUID_SIZE);
129320897f5cSArne Jansen 	root->root_item.drop_level = 0;
129420897f5cSArne Jansen 
129520897f5cSArne Jansen 	key.objectid = objectid;
129620897f5cSArne Jansen 	key.type = BTRFS_ROOT_ITEM_KEY;
129720897f5cSArne Jansen 	key.offset = 0;
129820897f5cSArne Jansen 	ret = btrfs_insert_root(trans, tree_root, &key, &root->root_item);
129920897f5cSArne Jansen 	if (ret)
130020897f5cSArne Jansen 		goto fail;
130120897f5cSArne Jansen 
130220897f5cSArne Jansen 	btrfs_tree_unlock(leaf);
130320897f5cSArne Jansen 
130420897f5cSArne Jansen 	return root;
13051dd05682STsutomu Itoh 
13061dd05682STsutomu Itoh fail:
13071dd05682STsutomu Itoh 	if (leaf) {
13081dd05682STsutomu Itoh 		btrfs_tree_unlock(leaf);
130959885b39STsutomu Itoh 		free_extent_buffer(root->commit_root);
13101dd05682STsutomu Itoh 		free_extent_buffer(leaf);
13111dd05682STsutomu Itoh 	}
131200246528SJosef Bacik 	btrfs_put_root(root);
13131dd05682STsutomu Itoh 
13141dd05682STsutomu Itoh 	return ERR_PTR(ret);
131520897f5cSArne Jansen }
131620897f5cSArne Jansen 
13177237f183SYan Zheng static struct btrfs_root *alloc_log_tree(struct btrfs_trans_handle *trans,
1318e02119d5SChris Mason 					 struct btrfs_fs_info *fs_info)
13190f7d52f4SChris Mason {
13200f7d52f4SChris Mason 	struct btrfs_root *root;
13217237f183SYan Zheng 	struct extent_buffer *leaf;
1322e02119d5SChris Mason 
132396dfcb46SJosef Bacik 	root = btrfs_alloc_root(fs_info, BTRFS_TREE_LOG_OBJECTID, GFP_NOFS);
1324e02119d5SChris Mason 	if (!root)
13257237f183SYan Zheng 		return ERR_PTR(-ENOMEM);
1326e02119d5SChris Mason 
1327e02119d5SChris Mason 	root->root_key.objectid = BTRFS_TREE_LOG_OBJECTID;
1328e02119d5SChris Mason 	root->root_key.type = BTRFS_ROOT_ITEM_KEY;
1329e02119d5SChris Mason 	root->root_key.offset = BTRFS_TREE_LOG_OBJECTID;
133027cdeb70SMiao Xie 
13317237f183SYan Zheng 	/*
133227cdeb70SMiao Xie 	 * DON'T set REF_COWS for log trees
133327cdeb70SMiao Xie 	 *
13347237f183SYan Zheng 	 * log trees do not get reference counted because they go away
13357237f183SYan Zheng 	 * before a real commit is actually done.  They do store pointers
13367237f183SYan Zheng 	 * to file data extents, and those reference counts still get
13377237f183SYan Zheng 	 * updated (along with back refs to the log tree).
13387237f183SYan Zheng 	 */
1339e02119d5SChris Mason 
13404d75f8a9SDavid Sterba 	leaf = btrfs_alloc_tree_block(trans, root, 0, BTRFS_TREE_LOG_OBJECTID,
13414d75f8a9SDavid Sterba 			NULL, 0, 0, 0);
13427237f183SYan Zheng 	if (IS_ERR(leaf)) {
134300246528SJosef Bacik 		btrfs_put_root(root);
13447237f183SYan Zheng 		return ERR_CAST(leaf);
13457237f183SYan Zheng 	}
1346e02119d5SChris Mason 
13477237f183SYan Zheng 	root->node = leaf;
1348e02119d5SChris Mason 
1349e02119d5SChris Mason 	btrfs_mark_buffer_dirty(root->node);
1350e02119d5SChris Mason 	btrfs_tree_unlock(root->node);
13517237f183SYan Zheng 	return root;
13527237f183SYan Zheng }
13537237f183SYan Zheng 
13547237f183SYan Zheng int btrfs_init_log_root_tree(struct btrfs_trans_handle *trans,
13557237f183SYan Zheng 			     struct btrfs_fs_info *fs_info)
13567237f183SYan Zheng {
13577237f183SYan Zheng 	struct btrfs_root *log_root;
13587237f183SYan Zheng 
13597237f183SYan Zheng 	log_root = alloc_log_tree(trans, fs_info);
13607237f183SYan Zheng 	if (IS_ERR(log_root))
13617237f183SYan Zheng 		return PTR_ERR(log_root);
13627237f183SYan Zheng 	WARN_ON(fs_info->log_root_tree);
13637237f183SYan Zheng 	fs_info->log_root_tree = log_root;
13647237f183SYan Zheng 	return 0;
13657237f183SYan Zheng }
13667237f183SYan Zheng 
13677237f183SYan Zheng int btrfs_add_log_tree(struct btrfs_trans_handle *trans,
13687237f183SYan Zheng 		       struct btrfs_root *root)
13697237f183SYan Zheng {
13700b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
13717237f183SYan Zheng 	struct btrfs_root *log_root;
13727237f183SYan Zheng 	struct btrfs_inode_item *inode_item;
13737237f183SYan Zheng 
13740b246afaSJeff Mahoney 	log_root = alloc_log_tree(trans, fs_info);
13757237f183SYan Zheng 	if (IS_ERR(log_root))
13767237f183SYan Zheng 		return PTR_ERR(log_root);
13777237f183SYan Zheng 
13787237f183SYan Zheng 	log_root->last_trans = trans->transid;
13797237f183SYan Zheng 	log_root->root_key.offset = root->root_key.objectid;
13807237f183SYan Zheng 
13817237f183SYan Zheng 	inode_item = &log_root->root_item.inode;
13823cae210fSQu Wenruo 	btrfs_set_stack_inode_generation(inode_item, 1);
13833cae210fSQu Wenruo 	btrfs_set_stack_inode_size(inode_item, 3);
13843cae210fSQu Wenruo 	btrfs_set_stack_inode_nlink(inode_item, 1);
1385da17066cSJeff Mahoney 	btrfs_set_stack_inode_nbytes(inode_item,
13860b246afaSJeff Mahoney 				     fs_info->nodesize);
13873cae210fSQu Wenruo 	btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755);
13887237f183SYan Zheng 
13895d4f98a2SYan Zheng 	btrfs_set_root_node(&log_root->root_item, log_root->node);
13907237f183SYan Zheng 
13917237f183SYan Zheng 	WARN_ON(root->log_root);
13927237f183SYan Zheng 	root->log_root = log_root;
13937237f183SYan Zheng 	root->log_transid = 0;
1394d1433debSMiao Xie 	root->log_transid_committed = -1;
1395257c62e1SChris Mason 	root->last_log_commit = 0;
1396e02119d5SChris Mason 	return 0;
1397e02119d5SChris Mason }
1398e02119d5SChris Mason 
139962a2c73eSJosef Bacik struct btrfs_root *btrfs_read_tree_root(struct btrfs_root *tree_root,
1400cb517eabSMiao Xie 					struct btrfs_key *key)
1401e02119d5SChris Mason {
1402e02119d5SChris Mason 	struct btrfs_root *root;
1403e02119d5SChris Mason 	struct btrfs_fs_info *fs_info = tree_root->fs_info;
14040f7d52f4SChris Mason 	struct btrfs_path *path;
140584234f3aSYan Zheng 	u64 generation;
1406cb517eabSMiao Xie 	int ret;
1407581c1760SQu Wenruo 	int level;
1408cb517eabSMiao Xie 
1409cb517eabSMiao Xie 	path = btrfs_alloc_path();
1410cb517eabSMiao Xie 	if (!path)
1411cb517eabSMiao Xie 		return ERR_PTR(-ENOMEM);
14120f7d52f4SChris Mason 
141396dfcb46SJosef Bacik 	root = btrfs_alloc_root(fs_info, key->objectid, GFP_NOFS);
1414cb517eabSMiao Xie 	if (!root) {
1415cb517eabSMiao Xie 		ret = -ENOMEM;
1416cb517eabSMiao Xie 		goto alloc_fail;
14170f7d52f4SChris Mason 	}
14180f7d52f4SChris Mason 
1419cb517eabSMiao Xie 	ret = btrfs_find_root(tree_root, key, path,
1420cb517eabSMiao Xie 			      &root->root_item, &root->root_key);
14210f7d52f4SChris Mason 	if (ret) {
142213a8a7c8SYan, Zheng 		if (ret > 0)
142313a8a7c8SYan, Zheng 			ret = -ENOENT;
1424cb517eabSMiao Xie 		goto find_fail;
14250f7d52f4SChris Mason 	}
142613a8a7c8SYan, Zheng 
142784234f3aSYan Zheng 	generation = btrfs_root_generation(&root->root_item);
1428581c1760SQu Wenruo 	level = btrfs_root_level(&root->root_item);
14292ff7e61eSJeff Mahoney 	root->node = read_tree_block(fs_info,
14302ff7e61eSJeff Mahoney 				     btrfs_root_bytenr(&root->root_item),
1431581c1760SQu Wenruo 				     generation, level, NULL);
143264c043deSLiu Bo 	if (IS_ERR(root->node)) {
143364c043deSLiu Bo 		ret = PTR_ERR(root->node);
1434cb517eabSMiao Xie 		goto find_fail;
1435cb517eabSMiao Xie 	} else if (!btrfs_buffer_uptodate(root->node, generation, 0)) {
1436cb517eabSMiao Xie 		ret = -EIO;
143764c043deSLiu Bo 		free_extent_buffer(root->node);
143864c043deSLiu Bo 		goto find_fail;
1439416bc658SJosef Bacik 	}
14405d4f98a2SYan Zheng 	root->commit_root = btrfs_root_node(root);
144113a8a7c8SYan, Zheng out:
1442cb517eabSMiao Xie 	btrfs_free_path(path);
1443cb517eabSMiao Xie 	return root;
1444cb517eabSMiao Xie 
1445cb517eabSMiao Xie find_fail:
144600246528SJosef Bacik 	btrfs_put_root(root);
1447cb517eabSMiao Xie alloc_fail:
1448cb517eabSMiao Xie 	root = ERR_PTR(ret);
1449cb517eabSMiao Xie 	goto out;
1450cb517eabSMiao Xie }
1451cb517eabSMiao Xie 
1452a98db0f3SJosef Bacik static int btrfs_init_fs_root(struct btrfs_root *root)
1453cb517eabSMiao Xie {
1454cb517eabSMiao Xie 	int ret;
14558257b2dcSMiao Xie 	struct btrfs_subvolume_writers *writers;
1456cb517eabSMiao Xie 
1457cb517eabSMiao Xie 	root->free_ino_ctl = kzalloc(sizeof(*root->free_ino_ctl), GFP_NOFS);
1458cb517eabSMiao Xie 	root->free_ino_pinned = kzalloc(sizeof(*root->free_ino_pinned),
1459cb517eabSMiao Xie 					GFP_NOFS);
1460cb517eabSMiao Xie 	if (!root->free_ino_pinned || !root->free_ino_ctl) {
1461cb517eabSMiao Xie 		ret = -ENOMEM;
1462cb517eabSMiao Xie 		goto fail;
1463cb517eabSMiao Xie 	}
1464cb517eabSMiao Xie 
14658257b2dcSMiao Xie 	writers = btrfs_alloc_subvolume_writers();
14668257b2dcSMiao Xie 	if (IS_ERR(writers)) {
14678257b2dcSMiao Xie 		ret = PTR_ERR(writers);
14688257b2dcSMiao Xie 		goto fail;
14698257b2dcSMiao Xie 	}
14708257b2dcSMiao Xie 	root->subv_writers = writers;
14718257b2dcSMiao Xie 
1472f39e4571SJosef Bacik 	if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
1473f39e4571SJosef Bacik 		set_bit(BTRFS_ROOT_REF_COWS, &root->state);
1474f39e4571SJosef Bacik 		btrfs_check_and_init_root_item(&root->root_item);
1475f39e4571SJosef Bacik 	}
1476f39e4571SJosef Bacik 
1477cb517eabSMiao Xie 	btrfs_init_free_ino_ctl(root);
147857cdc8dbSDavid Sterba 	spin_lock_init(&root->ino_cache_lock);
147957cdc8dbSDavid Sterba 	init_waitqueue_head(&root->ino_cache_wait);
1480cb517eabSMiao Xie 
1481cb517eabSMiao Xie 	ret = get_anon_bdev(&root->anon_dev);
1482cb517eabSMiao Xie 	if (ret)
1483876d2cf1SLiu Bo 		goto fail;
1484f32e48e9SChandan Rajendra 
1485f32e48e9SChandan Rajendra 	mutex_lock(&root->objectid_mutex);
1486f32e48e9SChandan Rajendra 	ret = btrfs_find_highest_objectid(root,
1487f32e48e9SChandan Rajendra 					&root->highest_objectid);
1488f32e48e9SChandan Rajendra 	if (ret) {
1489f32e48e9SChandan Rajendra 		mutex_unlock(&root->objectid_mutex);
1490876d2cf1SLiu Bo 		goto fail;
1491f32e48e9SChandan Rajendra 	}
1492f32e48e9SChandan Rajendra 
1493f32e48e9SChandan Rajendra 	ASSERT(root->highest_objectid <= BTRFS_LAST_FREE_OBJECTID);
1494f32e48e9SChandan Rajendra 
1495f32e48e9SChandan Rajendra 	mutex_unlock(&root->objectid_mutex);
1496f32e48e9SChandan Rajendra 
1497cb517eabSMiao Xie 	return 0;
1498cb517eabSMiao Xie fail:
149984db5ccfSDavid Sterba 	/* The caller is responsible to call btrfs_free_fs_root */
1500cb517eabSMiao Xie 	return ret;
1501cb517eabSMiao Xie }
1502cb517eabSMiao Xie 
1503a98db0f3SJosef Bacik static struct btrfs_root *btrfs_lookup_fs_root(struct btrfs_fs_info *fs_info,
1504cb517eabSMiao Xie 					       u64 root_id)
1505cb517eabSMiao Xie {
1506cb517eabSMiao Xie 	struct btrfs_root *root;
1507cb517eabSMiao Xie 
1508cb517eabSMiao Xie 	spin_lock(&fs_info->fs_roots_radix_lock);
1509cb517eabSMiao Xie 	root = radix_tree_lookup(&fs_info->fs_roots_radix,
1510cb517eabSMiao Xie 				 (unsigned long)root_id);
1511bc44d7c4SJosef Bacik 	if (root)
151200246528SJosef Bacik 		root = btrfs_grab_root(root);
1513cb517eabSMiao Xie 	spin_unlock(&fs_info->fs_roots_radix_lock);
1514cb517eabSMiao Xie 	return root;
1515cb517eabSMiao Xie }
1516cb517eabSMiao Xie 
1517cb517eabSMiao Xie int btrfs_insert_fs_root(struct btrfs_fs_info *fs_info,
1518cb517eabSMiao Xie 			 struct btrfs_root *root)
1519cb517eabSMiao Xie {
1520cb517eabSMiao Xie 	int ret;
1521cb517eabSMiao Xie 
1522e1860a77SDavid Sterba 	ret = radix_tree_preload(GFP_NOFS);
1523cb517eabSMiao Xie 	if (ret)
1524cb517eabSMiao Xie 		return ret;
1525cb517eabSMiao Xie 
1526cb517eabSMiao Xie 	spin_lock(&fs_info->fs_roots_radix_lock);
1527cb517eabSMiao Xie 	ret = radix_tree_insert(&fs_info->fs_roots_radix,
1528cb517eabSMiao Xie 				(unsigned long)root->root_key.objectid,
1529cb517eabSMiao Xie 				root);
1530af01d2e5SJosef Bacik 	if (ret == 0) {
153100246528SJosef Bacik 		btrfs_grab_root(root);
153227cdeb70SMiao Xie 		set_bit(BTRFS_ROOT_IN_RADIX, &root->state);
1533af01d2e5SJosef Bacik 	}
1534cb517eabSMiao Xie 	spin_unlock(&fs_info->fs_roots_radix_lock);
1535cb517eabSMiao Xie 	radix_tree_preload_end();
1536cb517eabSMiao Xie 
1537cb517eabSMiao Xie 	return ret;
1538cb517eabSMiao Xie }
1539cb517eabSMiao Xie 
1540bd647ce3SJosef Bacik void btrfs_check_leaked_roots(struct btrfs_fs_info *fs_info)
1541bd647ce3SJosef Bacik {
1542bd647ce3SJosef Bacik #ifdef CONFIG_BTRFS_DEBUG
1543bd647ce3SJosef Bacik 	struct btrfs_root *root;
1544bd647ce3SJosef Bacik 
1545bd647ce3SJosef Bacik 	while (!list_empty(&fs_info->allocated_roots)) {
1546bd647ce3SJosef Bacik 		root = list_first_entry(&fs_info->allocated_roots,
1547bd647ce3SJosef Bacik 					struct btrfs_root, leak_list);
1548bd647ce3SJosef Bacik 		btrfs_err(fs_info, "leaked root %llu-%llu refcount %d",
1549bd647ce3SJosef Bacik 			  root->root_key.objectid, root->root_key.offset,
1550bd647ce3SJosef Bacik 			  refcount_read(&root->refs));
1551bd647ce3SJosef Bacik 		while (refcount_read(&root->refs) > 1)
155200246528SJosef Bacik 			btrfs_put_root(root);
155300246528SJosef Bacik 		btrfs_put_root(root);
1554bd647ce3SJosef Bacik 	}
1555bd647ce3SJosef Bacik #endif
1556bd647ce3SJosef Bacik }
1557bd647ce3SJosef Bacik 
15580d4b0463SJosef Bacik void btrfs_free_fs_info(struct btrfs_fs_info *fs_info)
15590d4b0463SJosef Bacik {
1560141386e1SJosef Bacik 	percpu_counter_destroy(&fs_info->dirty_metadata_bytes);
1561141386e1SJosef Bacik 	percpu_counter_destroy(&fs_info->delalloc_bytes);
1562141386e1SJosef Bacik 	percpu_counter_destroy(&fs_info->dio_bytes);
1563141386e1SJosef Bacik 	percpu_counter_destroy(&fs_info->dev_replace.bio_counter);
1564141386e1SJosef Bacik 	btrfs_free_csum_hash(fs_info);
1565141386e1SJosef Bacik 	btrfs_free_stripe_hash_table(fs_info);
1566141386e1SJosef Bacik 	btrfs_free_ref_cache(fs_info);
15670d4b0463SJosef Bacik 	kfree(fs_info->balance_ctl);
15680d4b0463SJosef Bacik 	kfree(fs_info->delayed_root);
156900246528SJosef Bacik 	btrfs_put_root(fs_info->extent_root);
157000246528SJosef Bacik 	btrfs_put_root(fs_info->tree_root);
157100246528SJosef Bacik 	btrfs_put_root(fs_info->chunk_root);
157200246528SJosef Bacik 	btrfs_put_root(fs_info->dev_root);
157300246528SJosef Bacik 	btrfs_put_root(fs_info->csum_root);
157400246528SJosef Bacik 	btrfs_put_root(fs_info->quota_root);
157500246528SJosef Bacik 	btrfs_put_root(fs_info->uuid_root);
157600246528SJosef Bacik 	btrfs_put_root(fs_info->free_space_root);
157700246528SJosef Bacik 	btrfs_put_root(fs_info->fs_root);
1578bd647ce3SJosef Bacik 	btrfs_check_leaked_roots(fs_info);
15790d4b0463SJosef Bacik 	kfree(fs_info->super_copy);
15800d4b0463SJosef Bacik 	kfree(fs_info->super_for_commit);
15810d4b0463SJosef Bacik 	kvfree(fs_info);
15820d4b0463SJosef Bacik }
15830d4b0463SJosef Bacik 
15840d4b0463SJosef Bacik 
1585c00869f1SMiao Xie struct btrfs_root *btrfs_get_fs_root(struct btrfs_fs_info *fs_info,
1586c00869f1SMiao Xie 				     struct btrfs_key *location,
1587c00869f1SMiao Xie 				     bool check_ref)
15885eda7b5eSChris Mason {
15895eda7b5eSChris Mason 	struct btrfs_root *root;
1590381cf658SDavid Sterba 	struct btrfs_path *path;
15911d4c08e0SDavid Sterba 	struct btrfs_key key;
15925eda7b5eSChris Mason 	int ret;
15935eda7b5eSChris Mason 
1594edbd8d4eSChris Mason 	if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
159500246528SJosef Bacik 		return btrfs_grab_root(fs_info->tree_root);
1596edbd8d4eSChris Mason 	if (location->objectid == BTRFS_EXTENT_TREE_OBJECTID)
159700246528SJosef Bacik 		return btrfs_grab_root(fs_info->extent_root);
15988f18cf13SChris Mason 	if (location->objectid == BTRFS_CHUNK_TREE_OBJECTID)
159900246528SJosef Bacik 		return btrfs_grab_root(fs_info->chunk_root);
16008f18cf13SChris Mason 	if (location->objectid == BTRFS_DEV_TREE_OBJECTID)
160100246528SJosef Bacik 		return btrfs_grab_root(fs_info->dev_root);
16020403e47eSYan Zheng 	if (location->objectid == BTRFS_CSUM_TREE_OBJECTID)
160300246528SJosef Bacik 		return btrfs_grab_root(fs_info->csum_root);
1604bcef60f2SArne Jansen 	if (location->objectid == BTRFS_QUOTA_TREE_OBJECTID)
160500246528SJosef Bacik 		return btrfs_grab_root(fs_info->quota_root) ?
1606bc44d7c4SJosef Bacik 			fs_info->quota_root : ERR_PTR(-ENOENT);
1607f7a81ea4SStefan Behrens 	if (location->objectid == BTRFS_UUID_TREE_OBJECTID)
160800246528SJosef Bacik 		return btrfs_grab_root(fs_info->uuid_root) ?
1609bc44d7c4SJosef Bacik 			fs_info->uuid_root : ERR_PTR(-ENOENT);
161070f6d82eSOmar Sandoval 	if (location->objectid == BTRFS_FREE_SPACE_TREE_OBJECTID)
161100246528SJosef Bacik 		return btrfs_grab_root(fs_info->free_space_root) ?
1612bc44d7c4SJosef Bacik 			fs_info->free_space_root : ERR_PTR(-ENOENT);
16134df27c4dSYan, Zheng again:
1614cb517eabSMiao Xie 	root = btrfs_lookup_fs_root(fs_info, location->objectid);
161548475471SStefan Behrens 	if (root) {
1616bc44d7c4SJosef Bacik 		if (check_ref && btrfs_root_refs(&root->root_item) == 0) {
161700246528SJosef Bacik 			btrfs_put_root(root);
161848475471SStefan Behrens 			return ERR_PTR(-ENOENT);
1619bc44d7c4SJosef Bacik 		}
16205eda7b5eSChris Mason 		return root;
162148475471SStefan Behrens 	}
16225eda7b5eSChris Mason 
162383db2aadSJosef Bacik 	root = btrfs_read_tree_root(fs_info->tree_root, location);
16245eda7b5eSChris Mason 	if (IS_ERR(root))
16255eda7b5eSChris Mason 		return root;
16263394e160SChris Mason 
1627c00869f1SMiao Xie 	if (check_ref && btrfs_root_refs(&root->root_item) == 0) {
1628d68fc57bSYan, Zheng 		ret = -ENOENT;
1629d68fc57bSYan, Zheng 		goto fail;
1630d68fc57bSYan, Zheng 	}
1631d68fc57bSYan, Zheng 
1632cb517eabSMiao Xie 	ret = btrfs_init_fs_root(root);
1633cb517eabSMiao Xie 	if (ret)
1634cb517eabSMiao Xie 		goto fail;
1635cb517eabSMiao Xie 
1636381cf658SDavid Sterba 	path = btrfs_alloc_path();
1637381cf658SDavid Sterba 	if (!path) {
1638381cf658SDavid Sterba 		ret = -ENOMEM;
1639381cf658SDavid Sterba 		goto fail;
1640381cf658SDavid Sterba 	}
16411d4c08e0SDavid Sterba 	key.objectid = BTRFS_ORPHAN_OBJECTID;
16421d4c08e0SDavid Sterba 	key.type = BTRFS_ORPHAN_ITEM_KEY;
16431d4c08e0SDavid Sterba 	key.offset = location->objectid;
16441d4c08e0SDavid Sterba 
16451d4c08e0SDavid Sterba 	ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
1646381cf658SDavid Sterba 	btrfs_free_path(path);
1647d68fc57bSYan, Zheng 	if (ret < 0)
1648d68fc57bSYan, Zheng 		goto fail;
1649d68fc57bSYan, Zheng 	if (ret == 0)
165027cdeb70SMiao Xie 		set_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &root->state);
1651d68fc57bSYan, Zheng 
1652bc44d7c4SJosef Bacik 	/*
1653bc44d7c4SJosef Bacik 	 * All roots have two refs on them at all times, one for the mounted fs,
1654bc44d7c4SJosef Bacik 	 * and one for being in the radix tree.  This way we only free the root
1655bc44d7c4SJosef Bacik 	 * when we are unmounting or deleting the subvolume.  We get one ref
1656bc44d7c4SJosef Bacik 	 * from __setup_root, one for inserting it into the radix tree, and then
1657bc44d7c4SJosef Bacik 	 * we have the third for returning it, and the caller will put it when
1658bc44d7c4SJosef Bacik 	 * it's done with the root.
1659bc44d7c4SJosef Bacik 	 */
166000246528SJosef Bacik 	btrfs_grab_root(root);
1661cb517eabSMiao Xie 	ret = btrfs_insert_fs_root(fs_info, root);
16620f7d52f4SChris Mason 	if (ret) {
166300246528SJosef Bacik 		btrfs_put_root(root);
16644df27c4dSYan, Zheng 		if (ret == -EEXIST) {
166584db5ccfSDavid Sterba 			btrfs_free_fs_root(root);
16664df27c4dSYan, Zheng 			goto again;
16670f7d52f4SChris Mason 		}
16684df27c4dSYan, Zheng 		goto fail;
16694df27c4dSYan, Zheng 	}
1670edbd8d4eSChris Mason 	return root;
16714df27c4dSYan, Zheng fail:
167284db5ccfSDavid Sterba 	btrfs_free_fs_root(root);
16734df27c4dSYan, Zheng 	return ERR_PTR(ret);
1674edbd8d4eSChris Mason }
1675edbd8d4eSChris Mason 
167604160088SChris Mason static int btrfs_congested_fn(void *congested_data, int bdi_bits)
167704160088SChris Mason {
167804160088SChris Mason 	struct btrfs_fs_info *info = (struct btrfs_fs_info *)congested_data;
167904160088SChris Mason 	int ret = 0;
168004160088SChris Mason 	struct btrfs_device *device;
168104160088SChris Mason 	struct backing_dev_info *bdi;
1682b7967db7SChris Mason 
16831f78160cSXiao Guangrong 	rcu_read_lock();
16841f78160cSXiao Guangrong 	list_for_each_entry_rcu(device, &info->fs_devices->devices, dev_list) {
1685dfe25020SChris Mason 		if (!device->bdev)
1686dfe25020SChris Mason 			continue;
1687efa7c9f9SJan Kara 		bdi = device->bdev->bd_bdi;
1688ff9ea323STejun Heo 		if (bdi_congested(bdi, bdi_bits)) {
168904160088SChris Mason 			ret = 1;
169004160088SChris Mason 			break;
169104160088SChris Mason 		}
169204160088SChris Mason 	}
16931f78160cSXiao Guangrong 	rcu_read_unlock();
169404160088SChris Mason 	return ret;
169504160088SChris Mason }
169604160088SChris Mason 
16978b712842SChris Mason /*
16988b712842SChris Mason  * called by the kthread helper functions to finally call the bio end_io
16998b712842SChris Mason  * functions.  This is where read checksum verification actually happens
17008b712842SChris Mason  */
17018b712842SChris Mason static void end_workqueue_fn(struct btrfs_work *work)
1702ce9adaa5SChris Mason {
1703ce9adaa5SChris Mason 	struct bio *bio;
170497eb6b69SDavid Sterba 	struct btrfs_end_io_wq *end_io_wq;
1705ce9adaa5SChris Mason 
170697eb6b69SDavid Sterba 	end_io_wq = container_of(work, struct btrfs_end_io_wq, work);
1707ce9adaa5SChris Mason 	bio = end_io_wq->bio;
17088b712842SChris Mason 
17094e4cbee9SChristoph Hellwig 	bio->bi_status = end_io_wq->status;
1710ce9adaa5SChris Mason 	bio->bi_private = end_io_wq->private;
1711ce9adaa5SChris Mason 	bio->bi_end_io = end_io_wq->end_io;
17124246a0b6SChristoph Hellwig 	bio_endio(bio);
17139be490f1SOmar Sandoval 	kmem_cache_free(btrfs_end_io_wq_cache, end_io_wq);
1714ce9adaa5SChris Mason }
171544b8bd7eSChris Mason 
1716a74a4b97SChris Mason static int cleaner_kthread(void *arg)
1717a74a4b97SChris Mason {
1718a74a4b97SChris Mason 	struct btrfs_root *root = arg;
17190b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
1720d0278245SMiao Xie 	int again;
1721a74a4b97SChris Mason 
1722d6fd0ae2SOmar Sandoval 	while (1) {
1723d0278245SMiao Xie 		again = 0;
17249d1a2a3aSDavid Sterba 
1725fd340d0fSJosef Bacik 		set_bit(BTRFS_FS_CLEANER_RUNNING, &fs_info->flags);
1726fd340d0fSJosef Bacik 
1727d0278245SMiao Xie 		/* Make the cleaner go to sleep early. */
17282ff7e61eSJeff Mahoney 		if (btrfs_need_cleaner_sleep(fs_info))
1729d0278245SMiao Xie 			goto sleep;
1730d0278245SMiao Xie 
173190c711abSZygo Blaxell 		/*
173290c711abSZygo Blaxell 		 * Do not do anything if we might cause open_ctree() to block
173390c711abSZygo Blaxell 		 * before we have finished mounting the filesystem.
173490c711abSZygo Blaxell 		 */
17350b246afaSJeff Mahoney 		if (!test_bit(BTRFS_FS_OPEN, &fs_info->flags))
173690c711abSZygo Blaxell 			goto sleep;
173790c711abSZygo Blaxell 
17380b246afaSJeff Mahoney 		if (!mutex_trylock(&fs_info->cleaner_mutex))
1739d0278245SMiao Xie 			goto sleep;
1740d0278245SMiao Xie 
1741dc7f370cSMiao Xie 		/*
1742dc7f370cSMiao Xie 		 * Avoid the problem that we change the status of the fs
1743dc7f370cSMiao Xie 		 * during the above check and trylock.
1744dc7f370cSMiao Xie 		 */
17452ff7e61eSJeff Mahoney 		if (btrfs_need_cleaner_sleep(fs_info)) {
17460b246afaSJeff Mahoney 			mutex_unlock(&fs_info->cleaner_mutex);
1747dc7f370cSMiao Xie 			goto sleep;
1748dc7f370cSMiao Xie 		}
1749dc7f370cSMiao Xie 
17502ff7e61eSJeff Mahoney 		btrfs_run_delayed_iputs(fs_info);
1751c2d6cb16SFilipe Manana 
17529d1a2a3aSDavid Sterba 		again = btrfs_clean_one_deleted_snapshot(root);
17530b246afaSJeff Mahoney 		mutex_unlock(&fs_info->cleaner_mutex);
1754a74a4b97SChris Mason 
1755d0278245SMiao Xie 		/*
175605323cd1SMiao Xie 		 * The defragger has dealt with the R/O remount and umount,
175705323cd1SMiao Xie 		 * needn't do anything special here.
1758d0278245SMiao Xie 		 */
17590b246afaSJeff Mahoney 		btrfs_run_defrag_inodes(fs_info);
176067c5e7d4SFilipe Manana 
176167c5e7d4SFilipe Manana 		/*
176267c5e7d4SFilipe Manana 		 * Acquires fs_info->delete_unused_bgs_mutex to avoid racing
176367c5e7d4SFilipe Manana 		 * with relocation (btrfs_relocate_chunk) and relocation
176467c5e7d4SFilipe Manana 		 * acquires fs_info->cleaner_mutex (btrfs_relocate_block_group)
176567c5e7d4SFilipe Manana 		 * after acquiring fs_info->delete_unused_bgs_mutex. So we
176667c5e7d4SFilipe Manana 		 * can't hold, nor need to, fs_info->cleaner_mutex when deleting
176767c5e7d4SFilipe Manana 		 * unused block groups.
176867c5e7d4SFilipe Manana 		 */
17690b246afaSJeff Mahoney 		btrfs_delete_unused_bgs(fs_info);
1770d0278245SMiao Xie sleep:
1771fd340d0fSJosef Bacik 		clear_bit(BTRFS_FS_CLEANER_RUNNING, &fs_info->flags);
1772d6fd0ae2SOmar Sandoval 		if (kthread_should_park())
1773d6fd0ae2SOmar Sandoval 			kthread_parkme();
1774d6fd0ae2SOmar Sandoval 		if (kthread_should_stop())
1775d6fd0ae2SOmar Sandoval 			return 0;
1776838fe188SJiri Kosina 		if (!again) {
1777a74a4b97SChris Mason 			set_current_state(TASK_INTERRUPTIBLE);
1778a74a4b97SChris Mason 			schedule();
1779a74a4b97SChris Mason 			__set_current_state(TASK_RUNNING);
1780a74a4b97SChris Mason 		}
1781da288d28SFilipe Manana 	}
1782a74a4b97SChris Mason }
1783a74a4b97SChris Mason 
1784a74a4b97SChris Mason static int transaction_kthread(void *arg)
1785a74a4b97SChris Mason {
1786a74a4b97SChris Mason 	struct btrfs_root *root = arg;
17870b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
1788a74a4b97SChris Mason 	struct btrfs_trans_handle *trans;
1789a74a4b97SChris Mason 	struct btrfs_transaction *cur;
17908929ecfaSYan, Zheng 	u64 transid;
1791a944442cSAllen Pais 	time64_t now;
1792a74a4b97SChris Mason 	unsigned long delay;
1793914b2007SJan Kara 	bool cannot_commit;
1794a74a4b97SChris Mason 
1795a74a4b97SChris Mason 	do {
1796914b2007SJan Kara 		cannot_commit = false;
17970b246afaSJeff Mahoney 		delay = HZ * fs_info->commit_interval;
17980b246afaSJeff Mahoney 		mutex_lock(&fs_info->transaction_kthread_mutex);
1799a74a4b97SChris Mason 
18000b246afaSJeff Mahoney 		spin_lock(&fs_info->trans_lock);
18010b246afaSJeff Mahoney 		cur = fs_info->running_transaction;
1802a74a4b97SChris Mason 		if (!cur) {
18030b246afaSJeff Mahoney 			spin_unlock(&fs_info->trans_lock);
1804a74a4b97SChris Mason 			goto sleep;
1805a74a4b97SChris Mason 		}
180631153d81SYan Zheng 
1807afd48513SArnd Bergmann 		now = ktime_get_seconds();
18083296bf56SQu Wenruo 		if (cur->state < TRANS_STATE_COMMIT_START &&
1809a514d638SQu Wenruo 		    !test_bit(BTRFS_FS_NEED_ASYNC_COMMIT, &fs_info->flags) &&
18108b87dc17SDavid Sterba 		    (now < cur->start_time ||
18110b246afaSJeff Mahoney 		     now - cur->start_time < fs_info->commit_interval)) {
18120b246afaSJeff Mahoney 			spin_unlock(&fs_info->trans_lock);
1813a74a4b97SChris Mason 			delay = HZ * 5;
1814a74a4b97SChris Mason 			goto sleep;
1815a74a4b97SChris Mason 		}
18168929ecfaSYan, Zheng 		transid = cur->transid;
18170b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
181856bec294SChris Mason 
181979787eaaSJeff Mahoney 		/* If the file system is aborted, this will always fail. */
1820354aa0fbSMiao Xie 		trans = btrfs_attach_transaction(root);
1821914b2007SJan Kara 		if (IS_ERR(trans)) {
1822354aa0fbSMiao Xie 			if (PTR_ERR(trans) != -ENOENT)
1823914b2007SJan Kara 				cannot_commit = true;
182479787eaaSJeff Mahoney 			goto sleep;
1825914b2007SJan Kara 		}
18268929ecfaSYan, Zheng 		if (transid == trans->transid) {
18273a45bb20SJeff Mahoney 			btrfs_commit_transaction(trans);
18288929ecfaSYan, Zheng 		} else {
18293a45bb20SJeff Mahoney 			btrfs_end_transaction(trans);
18308929ecfaSYan, Zheng 		}
1831a74a4b97SChris Mason sleep:
18320b246afaSJeff Mahoney 		wake_up_process(fs_info->cleaner_kthread);
18330b246afaSJeff Mahoney 		mutex_unlock(&fs_info->transaction_kthread_mutex);
1834a74a4b97SChris Mason 
18354e121c06SJosef Bacik 		if (unlikely(test_bit(BTRFS_FS_STATE_ERROR,
18360b246afaSJeff Mahoney 				      &fs_info->fs_state)))
18372ff7e61eSJeff Mahoney 			btrfs_cleanup_transaction(fs_info);
18388929ecfaSYan, Zheng 		if (!kthread_should_stop() &&
18390b246afaSJeff Mahoney 				(!btrfs_transaction_blocked(fs_info) ||
1840914b2007SJan Kara 				 cannot_commit))
1841bc5511d0SNikolay Borisov 			schedule_timeout_interruptible(delay);
1842a74a4b97SChris Mason 	} while (!kthread_should_stop());
1843a74a4b97SChris Mason 	return 0;
1844a74a4b97SChris Mason }
1845a74a4b97SChris Mason 
1846af31f5e5SChris Mason /*
184701f0f9daSNikolay Borisov  * This will find the highest generation in the array of root backups.  The
184801f0f9daSNikolay Borisov  * index of the highest array is returned, or -EINVAL if we can't find
184901f0f9daSNikolay Borisov  * anything.
1850af31f5e5SChris Mason  *
1851af31f5e5SChris Mason  * We check to make sure the array is valid by comparing the
1852af31f5e5SChris Mason  * generation of the latest  root in the array with the generation
1853af31f5e5SChris Mason  * in the super block.  If they don't match we pitch it.
1854af31f5e5SChris Mason  */
185501f0f9daSNikolay Borisov static int find_newest_super_backup(struct btrfs_fs_info *info)
1856af31f5e5SChris Mason {
185701f0f9daSNikolay Borisov 	const u64 newest_gen = btrfs_super_generation(info->super_copy);
1858af31f5e5SChris Mason 	u64 cur;
1859af31f5e5SChris Mason 	struct btrfs_root_backup *root_backup;
1860af31f5e5SChris Mason 	int i;
1861af31f5e5SChris Mason 
1862af31f5e5SChris Mason 	for (i = 0; i < BTRFS_NUM_BACKUP_ROOTS; i++) {
1863af31f5e5SChris Mason 		root_backup = info->super_copy->super_roots + i;
1864af31f5e5SChris Mason 		cur = btrfs_backup_tree_root_gen(root_backup);
1865af31f5e5SChris Mason 		if (cur == newest_gen)
186601f0f9daSNikolay Borisov 			return i;
1867af31f5e5SChris Mason 	}
1868af31f5e5SChris Mason 
186901f0f9daSNikolay Borisov 	return -EINVAL;
1870af31f5e5SChris Mason }
1871af31f5e5SChris Mason 
1872af31f5e5SChris Mason /*
1873af31f5e5SChris Mason  * copy all the root pointers into the super backup array.
1874af31f5e5SChris Mason  * this will bump the backup pointer by one when it is
1875af31f5e5SChris Mason  * done
1876af31f5e5SChris Mason  */
1877af31f5e5SChris Mason static void backup_super_roots(struct btrfs_fs_info *info)
1878af31f5e5SChris Mason {
18796ef108ddSNikolay Borisov 	const int next_backup = info->backup_root_index;
1880af31f5e5SChris Mason 	struct btrfs_root_backup *root_backup;
1881af31f5e5SChris Mason 
1882af31f5e5SChris Mason 	root_backup = info->super_for_commit->super_roots + next_backup;
1883af31f5e5SChris Mason 
1884af31f5e5SChris Mason 	/*
1885af31f5e5SChris Mason 	 * make sure all of our padding and empty slots get zero filled
1886af31f5e5SChris Mason 	 * regardless of which ones we use today
1887af31f5e5SChris Mason 	 */
1888af31f5e5SChris Mason 	memset(root_backup, 0, sizeof(*root_backup));
1889af31f5e5SChris Mason 
1890af31f5e5SChris Mason 	info->backup_root_index = (next_backup + 1) % BTRFS_NUM_BACKUP_ROOTS;
1891af31f5e5SChris Mason 
1892af31f5e5SChris Mason 	btrfs_set_backup_tree_root(root_backup, info->tree_root->node->start);
1893af31f5e5SChris Mason 	btrfs_set_backup_tree_root_gen(root_backup,
1894af31f5e5SChris Mason 			       btrfs_header_generation(info->tree_root->node));
1895af31f5e5SChris Mason 
1896af31f5e5SChris Mason 	btrfs_set_backup_tree_root_level(root_backup,
1897af31f5e5SChris Mason 			       btrfs_header_level(info->tree_root->node));
1898af31f5e5SChris Mason 
1899af31f5e5SChris Mason 	btrfs_set_backup_chunk_root(root_backup, info->chunk_root->node->start);
1900af31f5e5SChris Mason 	btrfs_set_backup_chunk_root_gen(root_backup,
1901af31f5e5SChris Mason 			       btrfs_header_generation(info->chunk_root->node));
1902af31f5e5SChris Mason 	btrfs_set_backup_chunk_root_level(root_backup,
1903af31f5e5SChris Mason 			       btrfs_header_level(info->chunk_root->node));
1904af31f5e5SChris Mason 
1905af31f5e5SChris Mason 	btrfs_set_backup_extent_root(root_backup, info->extent_root->node->start);
1906af31f5e5SChris Mason 	btrfs_set_backup_extent_root_gen(root_backup,
1907af31f5e5SChris Mason 			       btrfs_header_generation(info->extent_root->node));
1908af31f5e5SChris Mason 	btrfs_set_backup_extent_root_level(root_backup,
1909af31f5e5SChris Mason 			       btrfs_header_level(info->extent_root->node));
1910af31f5e5SChris Mason 
19117c7e82a7SChris Mason 	/*
19127c7e82a7SChris Mason 	 * we might commit during log recovery, which happens before we set
19137c7e82a7SChris Mason 	 * the fs_root.  Make sure it is valid before we fill it in.
19147c7e82a7SChris Mason 	 */
19157c7e82a7SChris Mason 	if (info->fs_root && info->fs_root->node) {
19167c7e82a7SChris Mason 		btrfs_set_backup_fs_root(root_backup,
19177c7e82a7SChris Mason 					 info->fs_root->node->start);
1918af31f5e5SChris Mason 		btrfs_set_backup_fs_root_gen(root_backup,
1919af31f5e5SChris Mason 			       btrfs_header_generation(info->fs_root->node));
1920af31f5e5SChris Mason 		btrfs_set_backup_fs_root_level(root_backup,
1921af31f5e5SChris Mason 			       btrfs_header_level(info->fs_root->node));
19227c7e82a7SChris Mason 	}
1923af31f5e5SChris Mason 
1924af31f5e5SChris Mason 	btrfs_set_backup_dev_root(root_backup, info->dev_root->node->start);
1925af31f5e5SChris Mason 	btrfs_set_backup_dev_root_gen(root_backup,
1926af31f5e5SChris Mason 			       btrfs_header_generation(info->dev_root->node));
1927af31f5e5SChris Mason 	btrfs_set_backup_dev_root_level(root_backup,
1928af31f5e5SChris Mason 				       btrfs_header_level(info->dev_root->node));
1929af31f5e5SChris Mason 
1930af31f5e5SChris Mason 	btrfs_set_backup_csum_root(root_backup, info->csum_root->node->start);
1931af31f5e5SChris Mason 	btrfs_set_backup_csum_root_gen(root_backup,
1932af31f5e5SChris Mason 			       btrfs_header_generation(info->csum_root->node));
1933af31f5e5SChris Mason 	btrfs_set_backup_csum_root_level(root_backup,
1934af31f5e5SChris Mason 			       btrfs_header_level(info->csum_root->node));
1935af31f5e5SChris Mason 
1936af31f5e5SChris Mason 	btrfs_set_backup_total_bytes(root_backup,
1937af31f5e5SChris Mason 			     btrfs_super_total_bytes(info->super_copy));
1938af31f5e5SChris Mason 	btrfs_set_backup_bytes_used(root_backup,
1939af31f5e5SChris Mason 			     btrfs_super_bytes_used(info->super_copy));
1940af31f5e5SChris Mason 	btrfs_set_backup_num_devices(root_backup,
1941af31f5e5SChris Mason 			     btrfs_super_num_devices(info->super_copy));
1942af31f5e5SChris Mason 
1943af31f5e5SChris Mason 	/*
1944af31f5e5SChris Mason 	 * if we don't copy this out to the super_copy, it won't get remembered
1945af31f5e5SChris Mason 	 * for the next commit
1946af31f5e5SChris Mason 	 */
1947af31f5e5SChris Mason 	memcpy(&info->super_copy->super_roots,
1948af31f5e5SChris Mason 	       &info->super_for_commit->super_roots,
1949af31f5e5SChris Mason 	       sizeof(*root_backup) * BTRFS_NUM_BACKUP_ROOTS);
1950af31f5e5SChris Mason }
1951af31f5e5SChris Mason 
1952af31f5e5SChris Mason /*
1953bd2336b2SNikolay Borisov  * read_backup_root - Reads a backup root based on the passed priority. Prio 0
1954bd2336b2SNikolay Borisov  * is the newest, prio 1/2/3 are 2nd newest/3rd newest/4th (oldest) backup roots
1955bd2336b2SNikolay Borisov  *
1956bd2336b2SNikolay Borisov  * fs_info - filesystem whose backup roots need to be read
1957bd2336b2SNikolay Borisov  * priority - priority of backup root required
1958bd2336b2SNikolay Borisov  *
1959bd2336b2SNikolay Borisov  * Returns backup root index on success and -EINVAL otherwise.
1960bd2336b2SNikolay Borisov  */
1961bd2336b2SNikolay Borisov static int read_backup_root(struct btrfs_fs_info *fs_info, u8 priority)
1962bd2336b2SNikolay Borisov {
1963bd2336b2SNikolay Borisov 	int backup_index = find_newest_super_backup(fs_info);
1964bd2336b2SNikolay Borisov 	struct btrfs_super_block *super = fs_info->super_copy;
1965bd2336b2SNikolay Borisov 	struct btrfs_root_backup *root_backup;
1966bd2336b2SNikolay Borisov 
1967bd2336b2SNikolay Borisov 	if (priority < BTRFS_NUM_BACKUP_ROOTS && backup_index >= 0) {
1968bd2336b2SNikolay Borisov 		if (priority == 0)
1969bd2336b2SNikolay Borisov 			return backup_index;
1970bd2336b2SNikolay Borisov 
1971bd2336b2SNikolay Borisov 		backup_index = backup_index + BTRFS_NUM_BACKUP_ROOTS - priority;
1972bd2336b2SNikolay Borisov 		backup_index %= BTRFS_NUM_BACKUP_ROOTS;
1973bd2336b2SNikolay Borisov 	} else {
1974bd2336b2SNikolay Borisov 		return -EINVAL;
1975bd2336b2SNikolay Borisov 	}
1976bd2336b2SNikolay Borisov 
1977bd2336b2SNikolay Borisov 	root_backup = super->super_roots + backup_index;
1978bd2336b2SNikolay Borisov 
1979bd2336b2SNikolay Borisov 	btrfs_set_super_generation(super,
1980bd2336b2SNikolay Borisov 				   btrfs_backup_tree_root_gen(root_backup));
1981bd2336b2SNikolay Borisov 	btrfs_set_super_root(super, btrfs_backup_tree_root(root_backup));
1982bd2336b2SNikolay Borisov 	btrfs_set_super_root_level(super,
1983bd2336b2SNikolay Borisov 				   btrfs_backup_tree_root_level(root_backup));
1984bd2336b2SNikolay Borisov 	btrfs_set_super_bytes_used(super, btrfs_backup_bytes_used(root_backup));
1985bd2336b2SNikolay Borisov 
1986bd2336b2SNikolay Borisov 	/*
1987bd2336b2SNikolay Borisov 	 * Fixme: the total bytes and num_devices need to match or we should
1988bd2336b2SNikolay Borisov 	 * need a fsck
1989bd2336b2SNikolay Borisov 	 */
1990bd2336b2SNikolay Borisov 	btrfs_set_super_total_bytes(super, btrfs_backup_total_bytes(root_backup));
1991bd2336b2SNikolay Borisov 	btrfs_set_super_num_devices(super, btrfs_backup_num_devices(root_backup));
1992bd2336b2SNikolay Borisov 
1993bd2336b2SNikolay Borisov 	return backup_index;
1994bd2336b2SNikolay Borisov }
1995bd2336b2SNikolay Borisov 
19967abadb64SLiu Bo /* helper to cleanup workers */
19977abadb64SLiu Bo static void btrfs_stop_all_workers(struct btrfs_fs_info *fs_info)
19987abadb64SLiu Bo {
1999dc6e3209SQu Wenruo 	btrfs_destroy_workqueue(fs_info->fixup_workers);
2000afe3d242SQu Wenruo 	btrfs_destroy_workqueue(fs_info->delalloc_workers);
20015cdc7ad3SQu Wenruo 	btrfs_destroy_workqueue(fs_info->workers);
2002fccb5d86SQu Wenruo 	btrfs_destroy_workqueue(fs_info->endio_workers);
2003fccb5d86SQu Wenruo 	btrfs_destroy_workqueue(fs_info->endio_raid56_workers);
20048b110e39SMiao Xie 	btrfs_destroy_workqueue(fs_info->endio_repair_workers);
2005d05a33acSQu Wenruo 	btrfs_destroy_workqueue(fs_info->rmw_workers);
2006fccb5d86SQu Wenruo 	btrfs_destroy_workqueue(fs_info->endio_write_workers);
2007fccb5d86SQu Wenruo 	btrfs_destroy_workqueue(fs_info->endio_freespace_worker);
20085b3bc44eSQu Wenruo 	btrfs_destroy_workqueue(fs_info->delayed_workers);
2009e66f0bb1SQu Wenruo 	btrfs_destroy_workqueue(fs_info->caching_workers);
2010736cfa15SQu Wenruo 	btrfs_destroy_workqueue(fs_info->readahead_workers);
2011a44903abSQu Wenruo 	btrfs_destroy_workqueue(fs_info->flush_workers);
2012fc97fab0SQu Wenruo 	btrfs_destroy_workqueue(fs_info->qgroup_rescan_workers);
2013b0643e59SDennis Zhou 	if (fs_info->discard_ctl.discard_workers)
2014b0643e59SDennis Zhou 		destroy_workqueue(fs_info->discard_ctl.discard_workers);
2015a9b9477dSFilipe Manana 	/*
2016a9b9477dSFilipe Manana 	 * Now that all other work queues are destroyed, we can safely destroy
2017a9b9477dSFilipe Manana 	 * the queues used for metadata I/O, since tasks from those other work
2018a9b9477dSFilipe Manana 	 * queues can do metadata I/O operations.
2019a9b9477dSFilipe Manana 	 */
2020a9b9477dSFilipe Manana 	btrfs_destroy_workqueue(fs_info->endio_meta_workers);
2021a9b9477dSFilipe Manana 	btrfs_destroy_workqueue(fs_info->endio_meta_write_workers);
20227abadb64SLiu Bo }
20237abadb64SLiu Bo 
20242e9f5954SRashika static void free_root_extent_buffers(struct btrfs_root *root)
20252e9f5954SRashika {
20262e9f5954SRashika 	if (root) {
20272e9f5954SRashika 		free_extent_buffer(root->node);
20282e9f5954SRashika 		free_extent_buffer(root->commit_root);
20292e9f5954SRashika 		root->node = NULL;
20302e9f5954SRashika 		root->commit_root = NULL;
20312e9f5954SRashika 	}
20322e9f5954SRashika }
20332e9f5954SRashika 
2034af31f5e5SChris Mason /* helper to cleanup tree roots */
20354273eaffSAnand Jain static void free_root_pointers(struct btrfs_fs_info *info, bool free_chunk_root)
2036af31f5e5SChris Mason {
20372e9f5954SRashika 	free_root_extent_buffers(info->tree_root);
2038655b09feSJosef Bacik 
20392e9f5954SRashika 	free_root_extent_buffers(info->dev_root);
20402e9f5954SRashika 	free_root_extent_buffers(info->extent_root);
20412e9f5954SRashika 	free_root_extent_buffers(info->csum_root);
20422e9f5954SRashika 	free_root_extent_buffers(info->quota_root);
20432e9f5954SRashika 	free_root_extent_buffers(info->uuid_root);
20444273eaffSAnand Jain 	if (free_chunk_root)
20452e9f5954SRashika 		free_root_extent_buffers(info->chunk_root);
204670f6d82eSOmar Sandoval 	free_root_extent_buffers(info->free_space_root);
2047af31f5e5SChris Mason }
2048af31f5e5SChris Mason 
2049faa2dbf0SJosef Bacik void btrfs_free_fs_roots(struct btrfs_fs_info *fs_info)
2050171f6537SJosef Bacik {
2051171f6537SJosef Bacik 	int ret;
2052171f6537SJosef Bacik 	struct btrfs_root *gang[8];
2053171f6537SJosef Bacik 	int i;
2054171f6537SJosef Bacik 
2055171f6537SJosef Bacik 	while (!list_empty(&fs_info->dead_roots)) {
2056171f6537SJosef Bacik 		gang[0] = list_entry(fs_info->dead_roots.next,
2057171f6537SJosef Bacik 				     struct btrfs_root, root_list);
2058171f6537SJosef Bacik 		list_del(&gang[0]->root_list);
2059171f6537SJosef Bacik 
206027cdeb70SMiao Xie 		if (test_bit(BTRFS_ROOT_IN_RADIX, &gang[0]->state)) {
2061cb517eabSMiao Xie 			btrfs_drop_and_free_fs_root(fs_info, gang[0]);
2062171f6537SJosef Bacik 		} else {
2063171f6537SJosef Bacik 			free_extent_buffer(gang[0]->node);
2064171f6537SJosef Bacik 			free_extent_buffer(gang[0]->commit_root);
206500246528SJosef Bacik 			btrfs_put_root(gang[0]);
2066171f6537SJosef Bacik 		}
2067171f6537SJosef Bacik 	}
2068171f6537SJosef Bacik 
2069171f6537SJosef Bacik 	while (1) {
2070171f6537SJosef Bacik 		ret = radix_tree_gang_lookup(&fs_info->fs_roots_radix,
2071171f6537SJosef Bacik 					     (void **)gang, 0,
2072171f6537SJosef Bacik 					     ARRAY_SIZE(gang));
2073171f6537SJosef Bacik 		if (!ret)
2074171f6537SJosef Bacik 			break;
2075171f6537SJosef Bacik 		for (i = 0; i < ret; i++)
2076cb517eabSMiao Xie 			btrfs_drop_and_free_fs_root(fs_info, gang[i]);
2077171f6537SJosef Bacik 	}
20781a4319ccSLiu Bo 
20791a4319ccSLiu Bo 	if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) {
20801a4319ccSLiu Bo 		btrfs_free_log_root_tree(NULL, fs_info);
20812ff7e61eSJeff Mahoney 		btrfs_destroy_pinned_extent(fs_info, fs_info->pinned_extents);
20821a4319ccSLiu Bo 	}
2083171f6537SJosef Bacik }
2084af31f5e5SChris Mason 
2085638aa7edSEric Sandeen static void btrfs_init_scrub(struct btrfs_fs_info *fs_info)
2086638aa7edSEric Sandeen {
2087638aa7edSEric Sandeen 	mutex_init(&fs_info->scrub_lock);
2088638aa7edSEric Sandeen 	atomic_set(&fs_info->scrubs_running, 0);
2089638aa7edSEric Sandeen 	atomic_set(&fs_info->scrub_pause_req, 0);
2090638aa7edSEric Sandeen 	atomic_set(&fs_info->scrubs_paused, 0);
2091638aa7edSEric Sandeen 	atomic_set(&fs_info->scrub_cancel_req, 0);
2092638aa7edSEric Sandeen 	init_waitqueue_head(&fs_info->scrub_pause_wait);
2093ff09c4caSAnand Jain 	refcount_set(&fs_info->scrub_workers_refcnt, 0);
2094638aa7edSEric Sandeen }
2095638aa7edSEric Sandeen 
2096779a65a4SEric Sandeen static void btrfs_init_balance(struct btrfs_fs_info *fs_info)
2097779a65a4SEric Sandeen {
2098779a65a4SEric Sandeen 	spin_lock_init(&fs_info->balance_lock);
2099779a65a4SEric Sandeen 	mutex_init(&fs_info->balance_mutex);
2100779a65a4SEric Sandeen 	atomic_set(&fs_info->balance_pause_req, 0);
2101779a65a4SEric Sandeen 	atomic_set(&fs_info->balance_cancel_req, 0);
2102779a65a4SEric Sandeen 	fs_info->balance_ctl = NULL;
2103779a65a4SEric Sandeen 	init_waitqueue_head(&fs_info->balance_wait_q);
2104779a65a4SEric Sandeen }
2105779a65a4SEric Sandeen 
21066bccf3abSJeff Mahoney static void btrfs_init_btree_inode(struct btrfs_fs_info *fs_info)
2107f37938e0SEric Sandeen {
21082ff7e61eSJeff Mahoney 	struct inode *inode = fs_info->btree_inode;
21092ff7e61eSJeff Mahoney 
21102ff7e61eSJeff Mahoney 	inode->i_ino = BTRFS_BTREE_INODE_OBJECTID;
21112ff7e61eSJeff Mahoney 	set_nlink(inode, 1);
2112f37938e0SEric Sandeen 	/*
2113f37938e0SEric Sandeen 	 * we set the i_size on the btree inode to the max possible int.
2114f37938e0SEric Sandeen 	 * the real end of the address space is determined by all of
2115f37938e0SEric Sandeen 	 * the devices in the system
2116f37938e0SEric Sandeen 	 */
21172ff7e61eSJeff Mahoney 	inode->i_size = OFFSET_MAX;
21182ff7e61eSJeff Mahoney 	inode->i_mapping->a_ops = &btree_aops;
2119f37938e0SEric Sandeen 
21202ff7e61eSJeff Mahoney 	RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
212143eb5f29SQu Wenruo 	extent_io_tree_init(fs_info, &BTRFS_I(inode)->io_tree,
212243eb5f29SQu Wenruo 			    IO_TREE_INODE_IO, inode);
21237b439738SDavid Sterba 	BTRFS_I(inode)->io_tree.track_uptodate = false;
21242ff7e61eSJeff Mahoney 	extent_map_tree_init(&BTRFS_I(inode)->extent_tree);
2125f37938e0SEric Sandeen 
21262ff7e61eSJeff Mahoney 	BTRFS_I(inode)->io_tree.ops = &btree_extent_io_ops;
2127f37938e0SEric Sandeen 
21282ff7e61eSJeff Mahoney 	BTRFS_I(inode)->root = fs_info->tree_root;
21292ff7e61eSJeff Mahoney 	memset(&BTRFS_I(inode)->location, 0, sizeof(struct btrfs_key));
21302ff7e61eSJeff Mahoney 	set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags);
21312ff7e61eSJeff Mahoney 	btrfs_insert_inode_hash(inode);
2132f37938e0SEric Sandeen }
2133f37938e0SEric Sandeen 
2134ad618368SEric Sandeen static void btrfs_init_dev_replace_locks(struct btrfs_fs_info *fs_info)
2135ad618368SEric Sandeen {
2136ad618368SEric Sandeen 	mutex_init(&fs_info->dev_replace.lock_finishing_cancel_unmount);
2137129827e3SDavid Sterba 	init_rwsem(&fs_info->dev_replace.rwsem);
21387f8d236aSDavid Sterba 	init_waitqueue_head(&fs_info->dev_replace.replace_wait);
2139ad618368SEric Sandeen }
2140ad618368SEric Sandeen 
2141f9e92e40SEric Sandeen static void btrfs_init_qgroup(struct btrfs_fs_info *fs_info)
2142f9e92e40SEric Sandeen {
2143f9e92e40SEric Sandeen 	spin_lock_init(&fs_info->qgroup_lock);
2144f9e92e40SEric Sandeen 	mutex_init(&fs_info->qgroup_ioctl_lock);
2145f9e92e40SEric Sandeen 	fs_info->qgroup_tree = RB_ROOT;
2146f9e92e40SEric Sandeen 	INIT_LIST_HEAD(&fs_info->dirty_qgroups);
2147f9e92e40SEric Sandeen 	fs_info->qgroup_seq = 1;
2148f9e92e40SEric Sandeen 	fs_info->qgroup_ulist = NULL;
2149d2c609b8SJeff Mahoney 	fs_info->qgroup_rescan_running = false;
2150f9e92e40SEric Sandeen 	mutex_init(&fs_info->qgroup_rescan_lock);
2151f9e92e40SEric Sandeen }
2152f9e92e40SEric Sandeen 
21532a458198SEric Sandeen static int btrfs_init_workqueues(struct btrfs_fs_info *fs_info,
21542a458198SEric Sandeen 		struct btrfs_fs_devices *fs_devices)
21552a458198SEric Sandeen {
2156f7b885beSAnand Jain 	u32 max_active = fs_info->thread_pool_size;
21576f011058SDavid Sterba 	unsigned int flags = WQ_MEM_RECLAIM | WQ_FREEZABLE | WQ_UNBOUND;
21582a458198SEric Sandeen 
21592a458198SEric Sandeen 	fs_info->workers =
2160cb001095SJeff Mahoney 		btrfs_alloc_workqueue(fs_info, "worker",
2161cb001095SJeff Mahoney 				      flags | WQ_HIGHPRI, max_active, 16);
21622a458198SEric Sandeen 
21632a458198SEric Sandeen 	fs_info->delalloc_workers =
2164cb001095SJeff Mahoney 		btrfs_alloc_workqueue(fs_info, "delalloc",
2165cb001095SJeff Mahoney 				      flags, max_active, 2);
21662a458198SEric Sandeen 
21672a458198SEric Sandeen 	fs_info->flush_workers =
2168cb001095SJeff Mahoney 		btrfs_alloc_workqueue(fs_info, "flush_delalloc",
2169cb001095SJeff Mahoney 				      flags, max_active, 0);
21702a458198SEric Sandeen 
21712a458198SEric Sandeen 	fs_info->caching_workers =
2172cb001095SJeff Mahoney 		btrfs_alloc_workqueue(fs_info, "cache", flags, max_active, 0);
21732a458198SEric Sandeen 
21742a458198SEric Sandeen 	fs_info->fixup_workers =
2175cb001095SJeff Mahoney 		btrfs_alloc_workqueue(fs_info, "fixup", flags, 1, 0);
21762a458198SEric Sandeen 
21772a458198SEric Sandeen 	/*
21782a458198SEric Sandeen 	 * endios are largely parallel and should have a very
21792a458198SEric Sandeen 	 * low idle thresh
21802a458198SEric Sandeen 	 */
21812a458198SEric Sandeen 	fs_info->endio_workers =
2182cb001095SJeff Mahoney 		btrfs_alloc_workqueue(fs_info, "endio", flags, max_active, 4);
21832a458198SEric Sandeen 	fs_info->endio_meta_workers =
2184cb001095SJeff Mahoney 		btrfs_alloc_workqueue(fs_info, "endio-meta", flags,
2185cb001095SJeff Mahoney 				      max_active, 4);
21862a458198SEric Sandeen 	fs_info->endio_meta_write_workers =
2187cb001095SJeff Mahoney 		btrfs_alloc_workqueue(fs_info, "endio-meta-write", flags,
2188cb001095SJeff Mahoney 				      max_active, 2);
21892a458198SEric Sandeen 	fs_info->endio_raid56_workers =
2190cb001095SJeff Mahoney 		btrfs_alloc_workqueue(fs_info, "endio-raid56", flags,
2191cb001095SJeff Mahoney 				      max_active, 4);
21922a458198SEric Sandeen 	fs_info->endio_repair_workers =
2193cb001095SJeff Mahoney 		btrfs_alloc_workqueue(fs_info, "endio-repair", flags, 1, 0);
21942a458198SEric Sandeen 	fs_info->rmw_workers =
2195cb001095SJeff Mahoney 		btrfs_alloc_workqueue(fs_info, "rmw", flags, max_active, 2);
21962a458198SEric Sandeen 	fs_info->endio_write_workers =
2197cb001095SJeff Mahoney 		btrfs_alloc_workqueue(fs_info, "endio-write", flags,
2198cb001095SJeff Mahoney 				      max_active, 2);
21992a458198SEric Sandeen 	fs_info->endio_freespace_worker =
2200cb001095SJeff Mahoney 		btrfs_alloc_workqueue(fs_info, "freespace-write", flags,
2201cb001095SJeff Mahoney 				      max_active, 0);
22022a458198SEric Sandeen 	fs_info->delayed_workers =
2203cb001095SJeff Mahoney 		btrfs_alloc_workqueue(fs_info, "delayed-meta", flags,
2204cb001095SJeff Mahoney 				      max_active, 0);
22052a458198SEric Sandeen 	fs_info->readahead_workers =
2206cb001095SJeff Mahoney 		btrfs_alloc_workqueue(fs_info, "readahead", flags,
2207cb001095SJeff Mahoney 				      max_active, 2);
22082a458198SEric Sandeen 	fs_info->qgroup_rescan_workers =
2209cb001095SJeff Mahoney 		btrfs_alloc_workqueue(fs_info, "qgroup-rescan", flags, 1, 0);
2210b0643e59SDennis Zhou 	fs_info->discard_ctl.discard_workers =
2211b0643e59SDennis Zhou 		alloc_workqueue("btrfs_discard", WQ_UNBOUND | WQ_FREEZABLE, 1);
22122a458198SEric Sandeen 
22132a458198SEric Sandeen 	if (!(fs_info->workers && fs_info->delalloc_workers &&
2214ba8a9d07SChris Mason 	      fs_info->flush_workers &&
22152a458198SEric Sandeen 	      fs_info->endio_workers && fs_info->endio_meta_workers &&
22162a458198SEric Sandeen 	      fs_info->endio_meta_write_workers &&
22172a458198SEric Sandeen 	      fs_info->endio_repair_workers &&
22182a458198SEric Sandeen 	      fs_info->endio_write_workers && fs_info->endio_raid56_workers &&
22192a458198SEric Sandeen 	      fs_info->endio_freespace_worker && fs_info->rmw_workers &&
22202a458198SEric Sandeen 	      fs_info->caching_workers && fs_info->readahead_workers &&
22212a458198SEric Sandeen 	      fs_info->fixup_workers && fs_info->delayed_workers &&
2222b0643e59SDennis Zhou 	      fs_info->qgroup_rescan_workers &&
2223b0643e59SDennis Zhou 	      fs_info->discard_ctl.discard_workers)) {
22242a458198SEric Sandeen 		return -ENOMEM;
22252a458198SEric Sandeen 	}
22262a458198SEric Sandeen 
22272a458198SEric Sandeen 	return 0;
22282a458198SEric Sandeen }
22292a458198SEric Sandeen 
22306d97c6e3SJohannes Thumshirn static int btrfs_init_csum_hash(struct btrfs_fs_info *fs_info, u16 csum_type)
22316d97c6e3SJohannes Thumshirn {
22326d97c6e3SJohannes Thumshirn 	struct crypto_shash *csum_shash;
2233b4e967beSDavid Sterba 	const char *csum_driver = btrfs_super_csum_driver(csum_type);
22346d97c6e3SJohannes Thumshirn 
2235b4e967beSDavid Sterba 	csum_shash = crypto_alloc_shash(csum_driver, 0, 0);
22366d97c6e3SJohannes Thumshirn 
22376d97c6e3SJohannes Thumshirn 	if (IS_ERR(csum_shash)) {
22386d97c6e3SJohannes Thumshirn 		btrfs_err(fs_info, "error allocating %s hash for checksum",
2239b4e967beSDavid Sterba 			  csum_driver);
22406d97c6e3SJohannes Thumshirn 		return PTR_ERR(csum_shash);
22416d97c6e3SJohannes Thumshirn 	}
22426d97c6e3SJohannes Thumshirn 
22436d97c6e3SJohannes Thumshirn 	fs_info->csum_shash = csum_shash;
22446d97c6e3SJohannes Thumshirn 
22456d97c6e3SJohannes Thumshirn 	return 0;
22466d97c6e3SJohannes Thumshirn }
22476d97c6e3SJohannes Thumshirn 
224863443bf5SEric Sandeen static int btrfs_replay_log(struct btrfs_fs_info *fs_info,
224963443bf5SEric Sandeen 			    struct btrfs_fs_devices *fs_devices)
225063443bf5SEric Sandeen {
225163443bf5SEric Sandeen 	int ret;
225263443bf5SEric Sandeen 	struct btrfs_root *log_tree_root;
225363443bf5SEric Sandeen 	struct btrfs_super_block *disk_super = fs_info->super_copy;
225463443bf5SEric Sandeen 	u64 bytenr = btrfs_super_log_root(disk_super);
2255581c1760SQu Wenruo 	int level = btrfs_super_log_root_level(disk_super);
225663443bf5SEric Sandeen 
225763443bf5SEric Sandeen 	if (fs_devices->rw_devices == 0) {
2258f14d104dSDavid Sterba 		btrfs_warn(fs_info, "log replay required on RO media");
225963443bf5SEric Sandeen 		return -EIO;
226063443bf5SEric Sandeen 	}
226163443bf5SEric Sandeen 
226296dfcb46SJosef Bacik 	log_tree_root = btrfs_alloc_root(fs_info, BTRFS_TREE_LOG_OBJECTID,
226396dfcb46SJosef Bacik 					 GFP_KERNEL);
226463443bf5SEric Sandeen 	if (!log_tree_root)
226563443bf5SEric Sandeen 		return -ENOMEM;
226663443bf5SEric Sandeen 
22672ff7e61eSJeff Mahoney 	log_tree_root->node = read_tree_block(fs_info, bytenr,
2268581c1760SQu Wenruo 					      fs_info->generation + 1,
2269581c1760SQu Wenruo 					      level, NULL);
227064c043deSLiu Bo 	if (IS_ERR(log_tree_root->node)) {
2271f14d104dSDavid Sterba 		btrfs_warn(fs_info, "failed to read log tree");
22720eeff236SLiu Bo 		ret = PTR_ERR(log_tree_root->node);
227300246528SJosef Bacik 		btrfs_put_root(log_tree_root);
22740eeff236SLiu Bo 		return ret;
227564c043deSLiu Bo 	} else if (!extent_buffer_uptodate(log_tree_root->node)) {
2276f14d104dSDavid Sterba 		btrfs_err(fs_info, "failed to read log tree");
227763443bf5SEric Sandeen 		free_extent_buffer(log_tree_root->node);
227800246528SJosef Bacik 		btrfs_put_root(log_tree_root);
227963443bf5SEric Sandeen 		return -EIO;
228063443bf5SEric Sandeen 	}
228163443bf5SEric Sandeen 	/* returns with log_tree_root freed on success */
228263443bf5SEric Sandeen 	ret = btrfs_recover_log_trees(log_tree_root);
228363443bf5SEric Sandeen 	if (ret) {
22840b246afaSJeff Mahoney 		btrfs_handle_fs_error(fs_info, ret,
228563443bf5SEric Sandeen 				      "Failed to recover log tree");
228663443bf5SEric Sandeen 		free_extent_buffer(log_tree_root->node);
228700246528SJosef Bacik 		btrfs_put_root(log_tree_root);
228863443bf5SEric Sandeen 		return ret;
228963443bf5SEric Sandeen 	}
229063443bf5SEric Sandeen 
2291bc98a42cSDavid Howells 	if (sb_rdonly(fs_info->sb)) {
22926bccf3abSJeff Mahoney 		ret = btrfs_commit_super(fs_info);
229363443bf5SEric Sandeen 		if (ret)
229463443bf5SEric Sandeen 			return ret;
229563443bf5SEric Sandeen 	}
229663443bf5SEric Sandeen 
229763443bf5SEric Sandeen 	return 0;
229863443bf5SEric Sandeen }
229963443bf5SEric Sandeen 
23006bccf3abSJeff Mahoney static int btrfs_read_roots(struct btrfs_fs_info *fs_info)
23014bbcaa64SEric Sandeen {
23026bccf3abSJeff Mahoney 	struct btrfs_root *tree_root = fs_info->tree_root;
2303a4f3d2c4SDavid Sterba 	struct btrfs_root *root;
23044bbcaa64SEric Sandeen 	struct btrfs_key location;
23054bbcaa64SEric Sandeen 	int ret;
23064bbcaa64SEric Sandeen 
23076bccf3abSJeff Mahoney 	BUG_ON(!fs_info->tree_root);
23086bccf3abSJeff Mahoney 
23094bbcaa64SEric Sandeen 	location.objectid = BTRFS_EXTENT_TREE_OBJECTID;
23104bbcaa64SEric Sandeen 	location.type = BTRFS_ROOT_ITEM_KEY;
23114bbcaa64SEric Sandeen 	location.offset = 0;
23124bbcaa64SEric Sandeen 
2313a4f3d2c4SDavid Sterba 	root = btrfs_read_tree_root(tree_root, &location);
2314f50f4353SLiu Bo 	if (IS_ERR(root)) {
2315f50f4353SLiu Bo 		ret = PTR_ERR(root);
2316f50f4353SLiu Bo 		goto out;
2317f50f4353SLiu Bo 	}
2318a4f3d2c4SDavid Sterba 	set_bit(BTRFS_ROOT_TRACK_DIRTY, &root->state);
2319a4f3d2c4SDavid Sterba 	fs_info->extent_root = root;
23204bbcaa64SEric Sandeen 
23214bbcaa64SEric Sandeen 	location.objectid = BTRFS_DEV_TREE_OBJECTID;
2322a4f3d2c4SDavid Sterba 	root = btrfs_read_tree_root(tree_root, &location);
2323f50f4353SLiu Bo 	if (IS_ERR(root)) {
2324f50f4353SLiu Bo 		ret = PTR_ERR(root);
2325f50f4353SLiu Bo 		goto out;
2326f50f4353SLiu Bo 	}
2327a4f3d2c4SDavid Sterba 	set_bit(BTRFS_ROOT_TRACK_DIRTY, &root->state);
2328a4f3d2c4SDavid Sterba 	fs_info->dev_root = root;
23294bbcaa64SEric Sandeen 	btrfs_init_devices_late(fs_info);
23304bbcaa64SEric Sandeen 
23314bbcaa64SEric Sandeen 	location.objectid = BTRFS_CSUM_TREE_OBJECTID;
2332a4f3d2c4SDavid Sterba 	root = btrfs_read_tree_root(tree_root, &location);
2333f50f4353SLiu Bo 	if (IS_ERR(root)) {
2334f50f4353SLiu Bo 		ret = PTR_ERR(root);
2335f50f4353SLiu Bo 		goto out;
2336f50f4353SLiu Bo 	}
2337a4f3d2c4SDavid Sterba 	set_bit(BTRFS_ROOT_TRACK_DIRTY, &root->state);
2338a4f3d2c4SDavid Sterba 	fs_info->csum_root = root;
23394bbcaa64SEric Sandeen 
23404bbcaa64SEric Sandeen 	location.objectid = BTRFS_QUOTA_TREE_OBJECTID;
2341a4f3d2c4SDavid Sterba 	root = btrfs_read_tree_root(tree_root, &location);
2342a4f3d2c4SDavid Sterba 	if (!IS_ERR(root)) {
2343a4f3d2c4SDavid Sterba 		set_bit(BTRFS_ROOT_TRACK_DIRTY, &root->state);
2344afcdd129SJosef Bacik 		set_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags);
2345a4f3d2c4SDavid Sterba 		fs_info->quota_root = root;
23464bbcaa64SEric Sandeen 	}
23474bbcaa64SEric Sandeen 
23484bbcaa64SEric Sandeen 	location.objectid = BTRFS_UUID_TREE_OBJECTID;
2349a4f3d2c4SDavid Sterba 	root = btrfs_read_tree_root(tree_root, &location);
2350a4f3d2c4SDavid Sterba 	if (IS_ERR(root)) {
2351a4f3d2c4SDavid Sterba 		ret = PTR_ERR(root);
23524bbcaa64SEric Sandeen 		if (ret != -ENOENT)
2353f50f4353SLiu Bo 			goto out;
23544bbcaa64SEric Sandeen 	} else {
2355a4f3d2c4SDavid Sterba 		set_bit(BTRFS_ROOT_TRACK_DIRTY, &root->state);
2356a4f3d2c4SDavid Sterba 		fs_info->uuid_root = root;
23574bbcaa64SEric Sandeen 	}
23584bbcaa64SEric Sandeen 
235970f6d82eSOmar Sandoval 	if (btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE)) {
236070f6d82eSOmar Sandoval 		location.objectid = BTRFS_FREE_SPACE_TREE_OBJECTID;
236170f6d82eSOmar Sandoval 		root = btrfs_read_tree_root(tree_root, &location);
2362f50f4353SLiu Bo 		if (IS_ERR(root)) {
2363f50f4353SLiu Bo 			ret = PTR_ERR(root);
2364f50f4353SLiu Bo 			goto out;
2365f50f4353SLiu Bo 		}
236670f6d82eSOmar Sandoval 		set_bit(BTRFS_ROOT_TRACK_DIRTY, &root->state);
236770f6d82eSOmar Sandoval 		fs_info->free_space_root = root;
236870f6d82eSOmar Sandoval 	}
236970f6d82eSOmar Sandoval 
23704bbcaa64SEric Sandeen 	return 0;
2371f50f4353SLiu Bo out:
2372f50f4353SLiu Bo 	btrfs_warn(fs_info, "failed to read root (objectid=%llu): %d",
2373f50f4353SLiu Bo 		   location.objectid, ret);
2374f50f4353SLiu Bo 	return ret;
23754bbcaa64SEric Sandeen }
23764bbcaa64SEric Sandeen 
2377069ec957SQu Wenruo /*
2378069ec957SQu Wenruo  * Real super block validation
2379069ec957SQu Wenruo  * NOTE: super csum type and incompat features will not be checked here.
2380069ec957SQu Wenruo  *
2381069ec957SQu Wenruo  * @sb:		super block to check
2382069ec957SQu Wenruo  * @mirror_num:	the super block number to check its bytenr:
2383069ec957SQu Wenruo  * 		0	the primary (1st) sb
2384069ec957SQu Wenruo  * 		1, 2	2nd and 3rd backup copy
2385069ec957SQu Wenruo  * 	       -1	skip bytenr check
2386069ec957SQu Wenruo  */
2387069ec957SQu Wenruo static int validate_super(struct btrfs_fs_info *fs_info,
2388069ec957SQu Wenruo 			    struct btrfs_super_block *sb, int mirror_num)
238921a852b0SQu Wenruo {
239021a852b0SQu Wenruo 	u64 nodesize = btrfs_super_nodesize(sb);
239121a852b0SQu Wenruo 	u64 sectorsize = btrfs_super_sectorsize(sb);
239221a852b0SQu Wenruo 	int ret = 0;
239321a852b0SQu Wenruo 
239421a852b0SQu Wenruo 	if (btrfs_super_magic(sb) != BTRFS_MAGIC) {
239521a852b0SQu Wenruo 		btrfs_err(fs_info, "no valid FS found");
239621a852b0SQu Wenruo 		ret = -EINVAL;
239721a852b0SQu Wenruo 	}
239821a852b0SQu Wenruo 	if (btrfs_super_flags(sb) & ~BTRFS_SUPER_FLAG_SUPP) {
239921a852b0SQu Wenruo 		btrfs_err(fs_info, "unrecognized or unsupported super flag: %llu",
240021a852b0SQu Wenruo 				btrfs_super_flags(sb) & ~BTRFS_SUPER_FLAG_SUPP);
240121a852b0SQu Wenruo 		ret = -EINVAL;
240221a852b0SQu Wenruo 	}
240321a852b0SQu Wenruo 	if (btrfs_super_root_level(sb) >= BTRFS_MAX_LEVEL) {
240421a852b0SQu Wenruo 		btrfs_err(fs_info, "tree_root level too big: %d >= %d",
240521a852b0SQu Wenruo 				btrfs_super_root_level(sb), BTRFS_MAX_LEVEL);
240621a852b0SQu Wenruo 		ret = -EINVAL;
240721a852b0SQu Wenruo 	}
240821a852b0SQu Wenruo 	if (btrfs_super_chunk_root_level(sb) >= BTRFS_MAX_LEVEL) {
240921a852b0SQu Wenruo 		btrfs_err(fs_info, "chunk_root level too big: %d >= %d",
241021a852b0SQu Wenruo 				btrfs_super_chunk_root_level(sb), BTRFS_MAX_LEVEL);
241121a852b0SQu Wenruo 		ret = -EINVAL;
241221a852b0SQu Wenruo 	}
241321a852b0SQu Wenruo 	if (btrfs_super_log_root_level(sb) >= BTRFS_MAX_LEVEL) {
241421a852b0SQu Wenruo 		btrfs_err(fs_info, "log_root level too big: %d >= %d",
241521a852b0SQu Wenruo 				btrfs_super_log_root_level(sb), BTRFS_MAX_LEVEL);
241621a852b0SQu Wenruo 		ret = -EINVAL;
241721a852b0SQu Wenruo 	}
241821a852b0SQu Wenruo 
241921a852b0SQu Wenruo 	/*
242021a852b0SQu Wenruo 	 * Check sectorsize and nodesize first, other check will need it.
242121a852b0SQu Wenruo 	 * Check all possible sectorsize(4K, 8K, 16K, 32K, 64K) here.
242221a852b0SQu Wenruo 	 */
242321a852b0SQu Wenruo 	if (!is_power_of_2(sectorsize) || sectorsize < 4096 ||
242421a852b0SQu Wenruo 	    sectorsize > BTRFS_MAX_METADATA_BLOCKSIZE) {
242521a852b0SQu Wenruo 		btrfs_err(fs_info, "invalid sectorsize %llu", sectorsize);
242621a852b0SQu Wenruo 		ret = -EINVAL;
242721a852b0SQu Wenruo 	}
242821a852b0SQu Wenruo 	/* Only PAGE SIZE is supported yet */
242921a852b0SQu Wenruo 	if (sectorsize != PAGE_SIZE) {
243021a852b0SQu Wenruo 		btrfs_err(fs_info,
243121a852b0SQu Wenruo 			"sectorsize %llu not supported yet, only support %lu",
243221a852b0SQu Wenruo 			sectorsize, PAGE_SIZE);
243321a852b0SQu Wenruo 		ret = -EINVAL;
243421a852b0SQu Wenruo 	}
243521a852b0SQu Wenruo 	if (!is_power_of_2(nodesize) || nodesize < sectorsize ||
243621a852b0SQu Wenruo 	    nodesize > BTRFS_MAX_METADATA_BLOCKSIZE) {
243721a852b0SQu Wenruo 		btrfs_err(fs_info, "invalid nodesize %llu", nodesize);
243821a852b0SQu Wenruo 		ret = -EINVAL;
243921a852b0SQu Wenruo 	}
244021a852b0SQu Wenruo 	if (nodesize != le32_to_cpu(sb->__unused_leafsize)) {
244121a852b0SQu Wenruo 		btrfs_err(fs_info, "invalid leafsize %u, should be %llu",
244221a852b0SQu Wenruo 			  le32_to_cpu(sb->__unused_leafsize), nodesize);
244321a852b0SQu Wenruo 		ret = -EINVAL;
244421a852b0SQu Wenruo 	}
244521a852b0SQu Wenruo 
244621a852b0SQu Wenruo 	/* Root alignment check */
244721a852b0SQu Wenruo 	if (!IS_ALIGNED(btrfs_super_root(sb), sectorsize)) {
244821a852b0SQu Wenruo 		btrfs_warn(fs_info, "tree_root block unaligned: %llu",
244921a852b0SQu Wenruo 			   btrfs_super_root(sb));
245021a852b0SQu Wenruo 		ret = -EINVAL;
245121a852b0SQu Wenruo 	}
245221a852b0SQu Wenruo 	if (!IS_ALIGNED(btrfs_super_chunk_root(sb), sectorsize)) {
245321a852b0SQu Wenruo 		btrfs_warn(fs_info, "chunk_root block unaligned: %llu",
245421a852b0SQu Wenruo 			   btrfs_super_chunk_root(sb));
245521a852b0SQu Wenruo 		ret = -EINVAL;
245621a852b0SQu Wenruo 	}
245721a852b0SQu Wenruo 	if (!IS_ALIGNED(btrfs_super_log_root(sb), sectorsize)) {
245821a852b0SQu Wenruo 		btrfs_warn(fs_info, "log_root block unaligned: %llu",
245921a852b0SQu Wenruo 			   btrfs_super_log_root(sb));
246021a852b0SQu Wenruo 		ret = -EINVAL;
246121a852b0SQu Wenruo 	}
246221a852b0SQu Wenruo 
2463de37aa51SNikolay Borisov 	if (memcmp(fs_info->fs_devices->metadata_uuid, sb->dev_item.fsid,
24647239ff4bSNikolay Borisov 		   BTRFS_FSID_SIZE) != 0) {
246521a852b0SQu Wenruo 		btrfs_err(fs_info,
24667239ff4bSNikolay Borisov 			"dev_item UUID does not match metadata fsid: %pU != %pU",
2467de37aa51SNikolay Borisov 			fs_info->fs_devices->metadata_uuid, sb->dev_item.fsid);
246821a852b0SQu Wenruo 		ret = -EINVAL;
246921a852b0SQu Wenruo 	}
247021a852b0SQu Wenruo 
247121a852b0SQu Wenruo 	/*
247221a852b0SQu Wenruo 	 * Hint to catch really bogus numbers, bitflips or so, more exact checks are
247321a852b0SQu Wenruo 	 * done later
247421a852b0SQu Wenruo 	 */
247521a852b0SQu Wenruo 	if (btrfs_super_bytes_used(sb) < 6 * btrfs_super_nodesize(sb)) {
247621a852b0SQu Wenruo 		btrfs_err(fs_info, "bytes_used is too small %llu",
247721a852b0SQu Wenruo 			  btrfs_super_bytes_used(sb));
247821a852b0SQu Wenruo 		ret = -EINVAL;
247921a852b0SQu Wenruo 	}
248021a852b0SQu Wenruo 	if (!is_power_of_2(btrfs_super_stripesize(sb))) {
248121a852b0SQu Wenruo 		btrfs_err(fs_info, "invalid stripesize %u",
248221a852b0SQu Wenruo 			  btrfs_super_stripesize(sb));
248321a852b0SQu Wenruo 		ret = -EINVAL;
248421a852b0SQu Wenruo 	}
248521a852b0SQu Wenruo 	if (btrfs_super_num_devices(sb) > (1UL << 31))
248621a852b0SQu Wenruo 		btrfs_warn(fs_info, "suspicious number of devices: %llu",
248721a852b0SQu Wenruo 			   btrfs_super_num_devices(sb));
248821a852b0SQu Wenruo 	if (btrfs_super_num_devices(sb) == 0) {
248921a852b0SQu Wenruo 		btrfs_err(fs_info, "number of devices is 0");
249021a852b0SQu Wenruo 		ret = -EINVAL;
249121a852b0SQu Wenruo 	}
249221a852b0SQu Wenruo 
2493069ec957SQu Wenruo 	if (mirror_num >= 0 &&
2494069ec957SQu Wenruo 	    btrfs_super_bytenr(sb) != btrfs_sb_offset(mirror_num)) {
249521a852b0SQu Wenruo 		btrfs_err(fs_info, "super offset mismatch %llu != %u",
249621a852b0SQu Wenruo 			  btrfs_super_bytenr(sb), BTRFS_SUPER_INFO_OFFSET);
249721a852b0SQu Wenruo 		ret = -EINVAL;
249821a852b0SQu Wenruo 	}
249921a852b0SQu Wenruo 
250021a852b0SQu Wenruo 	/*
250121a852b0SQu Wenruo 	 * Obvious sys_chunk_array corruptions, it must hold at least one key
250221a852b0SQu Wenruo 	 * and one chunk
250321a852b0SQu Wenruo 	 */
250421a852b0SQu Wenruo 	if (btrfs_super_sys_array_size(sb) > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE) {
250521a852b0SQu Wenruo 		btrfs_err(fs_info, "system chunk array too big %u > %u",
250621a852b0SQu Wenruo 			  btrfs_super_sys_array_size(sb),
250721a852b0SQu Wenruo 			  BTRFS_SYSTEM_CHUNK_ARRAY_SIZE);
250821a852b0SQu Wenruo 		ret = -EINVAL;
250921a852b0SQu Wenruo 	}
251021a852b0SQu Wenruo 	if (btrfs_super_sys_array_size(sb) < sizeof(struct btrfs_disk_key)
251121a852b0SQu Wenruo 			+ sizeof(struct btrfs_chunk)) {
251221a852b0SQu Wenruo 		btrfs_err(fs_info, "system chunk array too small %u < %zu",
251321a852b0SQu Wenruo 			  btrfs_super_sys_array_size(sb),
251421a852b0SQu Wenruo 			  sizeof(struct btrfs_disk_key)
251521a852b0SQu Wenruo 			  + sizeof(struct btrfs_chunk));
251621a852b0SQu Wenruo 		ret = -EINVAL;
251721a852b0SQu Wenruo 	}
251821a852b0SQu Wenruo 
251921a852b0SQu Wenruo 	/*
252021a852b0SQu Wenruo 	 * The generation is a global counter, we'll trust it more than the others
252121a852b0SQu Wenruo 	 * but it's still possible that it's the one that's wrong.
252221a852b0SQu Wenruo 	 */
252321a852b0SQu Wenruo 	if (btrfs_super_generation(sb) < btrfs_super_chunk_root_generation(sb))
252421a852b0SQu Wenruo 		btrfs_warn(fs_info,
252521a852b0SQu Wenruo 			"suspicious: generation < chunk_root_generation: %llu < %llu",
252621a852b0SQu Wenruo 			btrfs_super_generation(sb),
252721a852b0SQu Wenruo 			btrfs_super_chunk_root_generation(sb));
252821a852b0SQu Wenruo 	if (btrfs_super_generation(sb) < btrfs_super_cache_generation(sb)
252921a852b0SQu Wenruo 	    && btrfs_super_cache_generation(sb) != (u64)-1)
253021a852b0SQu Wenruo 		btrfs_warn(fs_info,
253121a852b0SQu Wenruo 			"suspicious: generation < cache_generation: %llu < %llu",
253221a852b0SQu Wenruo 			btrfs_super_generation(sb),
253321a852b0SQu Wenruo 			btrfs_super_cache_generation(sb));
253421a852b0SQu Wenruo 
253521a852b0SQu Wenruo 	return ret;
253621a852b0SQu Wenruo }
253721a852b0SQu Wenruo 
2538069ec957SQu Wenruo /*
2539069ec957SQu Wenruo  * Validation of super block at mount time.
2540069ec957SQu Wenruo  * Some checks already done early at mount time, like csum type and incompat
2541069ec957SQu Wenruo  * flags will be skipped.
2542069ec957SQu Wenruo  */
2543069ec957SQu Wenruo static int btrfs_validate_mount_super(struct btrfs_fs_info *fs_info)
2544069ec957SQu Wenruo {
2545069ec957SQu Wenruo 	return validate_super(fs_info, fs_info->super_copy, 0);
2546069ec957SQu Wenruo }
2547069ec957SQu Wenruo 
254875cb857dSQu Wenruo /*
254975cb857dSQu Wenruo  * Validation of super block at write time.
255075cb857dSQu Wenruo  * Some checks like bytenr check will be skipped as their values will be
255175cb857dSQu Wenruo  * overwritten soon.
255275cb857dSQu Wenruo  * Extra checks like csum type and incompat flags will be done here.
255375cb857dSQu Wenruo  */
255475cb857dSQu Wenruo static int btrfs_validate_write_super(struct btrfs_fs_info *fs_info,
255575cb857dSQu Wenruo 				      struct btrfs_super_block *sb)
255675cb857dSQu Wenruo {
255775cb857dSQu Wenruo 	int ret;
255875cb857dSQu Wenruo 
255975cb857dSQu Wenruo 	ret = validate_super(fs_info, sb, -1);
256075cb857dSQu Wenruo 	if (ret < 0)
256175cb857dSQu Wenruo 		goto out;
2562e7e16f48SJohannes Thumshirn 	if (!btrfs_supported_super_csum(btrfs_super_csum_type(sb))) {
256375cb857dSQu Wenruo 		ret = -EUCLEAN;
256475cb857dSQu Wenruo 		btrfs_err(fs_info, "invalid csum type, has %u want %u",
256575cb857dSQu Wenruo 			  btrfs_super_csum_type(sb), BTRFS_CSUM_TYPE_CRC32);
256675cb857dSQu Wenruo 		goto out;
256775cb857dSQu Wenruo 	}
256875cb857dSQu Wenruo 	if (btrfs_super_incompat_flags(sb) & ~BTRFS_FEATURE_INCOMPAT_SUPP) {
256975cb857dSQu Wenruo 		ret = -EUCLEAN;
257075cb857dSQu Wenruo 		btrfs_err(fs_info,
257175cb857dSQu Wenruo 		"invalid incompat flags, has 0x%llx valid mask 0x%llx",
257275cb857dSQu Wenruo 			  btrfs_super_incompat_flags(sb),
257375cb857dSQu Wenruo 			  (unsigned long long)BTRFS_FEATURE_INCOMPAT_SUPP);
257475cb857dSQu Wenruo 		goto out;
257575cb857dSQu Wenruo 	}
257675cb857dSQu Wenruo out:
257775cb857dSQu Wenruo 	if (ret < 0)
257875cb857dSQu Wenruo 		btrfs_err(fs_info,
257975cb857dSQu Wenruo 		"super block corruption detected before writing it to disk");
258075cb857dSQu Wenruo 	return ret;
258175cb857dSQu Wenruo }
258275cb857dSQu Wenruo 
25836ef108ddSNikolay Borisov static int __cold init_tree_roots(struct btrfs_fs_info *fs_info)
2584b8522a1eSNikolay Borisov {
25856ef108ddSNikolay Borisov 	int backup_index = find_newest_super_backup(fs_info);
2586b8522a1eSNikolay Borisov 	struct btrfs_super_block *sb = fs_info->super_copy;
2587b8522a1eSNikolay Borisov 	struct btrfs_root *tree_root = fs_info->tree_root;
2588b8522a1eSNikolay Borisov 	bool handle_error = false;
2589b8522a1eSNikolay Borisov 	int ret = 0;
2590b8522a1eSNikolay Borisov 	int i;
2591b8522a1eSNikolay Borisov 
2592b8522a1eSNikolay Borisov 	for (i = 0; i < BTRFS_NUM_BACKUP_ROOTS; i++) {
2593b8522a1eSNikolay Borisov 		u64 generation;
2594b8522a1eSNikolay Borisov 		int level;
2595b8522a1eSNikolay Borisov 
2596b8522a1eSNikolay Borisov 		if (handle_error) {
2597b8522a1eSNikolay Borisov 			if (!IS_ERR(tree_root->node))
2598b8522a1eSNikolay Borisov 				free_extent_buffer(tree_root->node);
2599b8522a1eSNikolay Borisov 			tree_root->node = NULL;
2600b8522a1eSNikolay Borisov 
2601b8522a1eSNikolay Borisov 			if (!btrfs_test_opt(fs_info, USEBACKUPROOT))
2602b8522a1eSNikolay Borisov 				break;
2603b8522a1eSNikolay Borisov 
2604b8522a1eSNikolay Borisov 			free_root_pointers(fs_info, 0);
2605b8522a1eSNikolay Borisov 
2606b8522a1eSNikolay Borisov 			/*
2607b8522a1eSNikolay Borisov 			 * Don't use the log in recovery mode, it won't be
2608b8522a1eSNikolay Borisov 			 * valid
2609b8522a1eSNikolay Borisov 			 */
2610b8522a1eSNikolay Borisov 			btrfs_set_super_log_root(sb, 0);
2611b8522a1eSNikolay Borisov 
2612b8522a1eSNikolay Borisov 			/* We can't trust the free space cache either */
2613b8522a1eSNikolay Borisov 			btrfs_set_opt(fs_info->mount_opt, CLEAR_CACHE);
2614b8522a1eSNikolay Borisov 
2615b8522a1eSNikolay Borisov 			ret = read_backup_root(fs_info, i);
26166ef108ddSNikolay Borisov 			backup_index = ret;
2617b8522a1eSNikolay Borisov 			if (ret < 0)
2618b8522a1eSNikolay Borisov 				return ret;
2619b8522a1eSNikolay Borisov 		}
2620b8522a1eSNikolay Borisov 		generation = btrfs_super_generation(sb);
2621b8522a1eSNikolay Borisov 		level = btrfs_super_root_level(sb);
2622b8522a1eSNikolay Borisov 		tree_root->node = read_tree_block(fs_info, btrfs_super_root(sb),
2623b8522a1eSNikolay Borisov 						  generation, level, NULL);
2624b8522a1eSNikolay Borisov 		if (IS_ERR(tree_root->node) ||
2625b8522a1eSNikolay Borisov 		    !extent_buffer_uptodate(tree_root->node)) {
2626b8522a1eSNikolay Borisov 			handle_error = true;
2627b8522a1eSNikolay Borisov 
2628b8522a1eSNikolay Borisov 			if (IS_ERR(tree_root->node))
2629b8522a1eSNikolay Borisov 				ret = PTR_ERR(tree_root->node);
2630b8522a1eSNikolay Borisov 			else if (!extent_buffer_uptodate(tree_root->node))
2631b8522a1eSNikolay Borisov 				ret = -EUCLEAN;
2632b8522a1eSNikolay Borisov 
2633b8522a1eSNikolay Borisov 			btrfs_warn(fs_info, "failed to read tree root");
2634b8522a1eSNikolay Borisov 			continue;
2635b8522a1eSNikolay Borisov 		}
2636b8522a1eSNikolay Borisov 
2637b8522a1eSNikolay Borisov 		btrfs_set_root_node(&tree_root->root_item, tree_root->node);
2638b8522a1eSNikolay Borisov 		tree_root->commit_root = btrfs_root_node(tree_root);
2639b8522a1eSNikolay Borisov 		btrfs_set_root_refs(&tree_root->root_item, 1);
2640b8522a1eSNikolay Borisov 
2641336a0d8dSNikolay Borisov 		/*
2642336a0d8dSNikolay Borisov 		 * No need to hold btrfs_root::objectid_mutex since the fs
2643336a0d8dSNikolay Borisov 		 * hasn't been fully initialised and we are the only user
2644336a0d8dSNikolay Borisov 		 */
2645b8522a1eSNikolay Borisov 		ret = btrfs_find_highest_objectid(tree_root,
2646b8522a1eSNikolay Borisov 						&tree_root->highest_objectid);
2647b8522a1eSNikolay Borisov 		if (ret < 0) {
2648b8522a1eSNikolay Borisov 			handle_error = true;
2649b8522a1eSNikolay Borisov 			continue;
2650b8522a1eSNikolay Borisov 		}
2651b8522a1eSNikolay Borisov 
2652b8522a1eSNikolay Borisov 		ASSERT(tree_root->highest_objectid <= BTRFS_LAST_FREE_OBJECTID);
2653b8522a1eSNikolay Borisov 
2654b8522a1eSNikolay Borisov 		ret = btrfs_read_roots(fs_info);
2655b8522a1eSNikolay Borisov 		if (ret < 0) {
2656b8522a1eSNikolay Borisov 			handle_error = true;
2657b8522a1eSNikolay Borisov 			continue;
2658b8522a1eSNikolay Borisov 		}
2659b8522a1eSNikolay Borisov 
2660b8522a1eSNikolay Borisov 		/* All successful */
2661b8522a1eSNikolay Borisov 		fs_info->generation = generation;
2662b8522a1eSNikolay Borisov 		fs_info->last_trans_committed = generation;
26636ef108ddSNikolay Borisov 
26646ef108ddSNikolay Borisov 		/* Always begin writing backup roots after the one being used */
26656ef108ddSNikolay Borisov 		if (backup_index < 0) {
26666ef108ddSNikolay Borisov 			fs_info->backup_root_index = 0;
26676ef108ddSNikolay Borisov 		} else {
26686ef108ddSNikolay Borisov 			fs_info->backup_root_index = backup_index + 1;
26696ef108ddSNikolay Borisov 			fs_info->backup_root_index %= BTRFS_NUM_BACKUP_ROOTS;
26706ef108ddSNikolay Borisov 		}
2671b8522a1eSNikolay Borisov 		break;
2672b8522a1eSNikolay Borisov 	}
2673b8522a1eSNikolay Borisov 
2674b8522a1eSNikolay Borisov 	return ret;
2675b8522a1eSNikolay Borisov }
2676b8522a1eSNikolay Borisov 
26778260edbaSJosef Bacik void btrfs_init_fs_info(struct btrfs_fs_info *fs_info)
2678eb60ceacSChris Mason {
267976dda93cSYan, Zheng 	INIT_RADIX_TREE(&fs_info->fs_roots_radix, GFP_ATOMIC);
2680f28491e0SJosef Bacik 	INIT_RADIX_TREE(&fs_info->buffer_radix, GFP_ATOMIC);
26818fd17795SChris Mason 	INIT_LIST_HEAD(&fs_info->trans_list);
2682facda1e7SChris Mason 	INIT_LIST_HEAD(&fs_info->dead_roots);
268324bbcf04SYan, Zheng 	INIT_LIST_HEAD(&fs_info->delayed_iputs);
2684eb73c1b7SMiao Xie 	INIT_LIST_HEAD(&fs_info->delalloc_roots);
268511833d66SYan Zheng 	INIT_LIST_HEAD(&fs_info->caching_block_groups);
2686eb73c1b7SMiao Xie 	spin_lock_init(&fs_info->delalloc_root_lock);
2687a4abeea4SJosef Bacik 	spin_lock_init(&fs_info->trans_lock);
268876dda93cSYan, Zheng 	spin_lock_init(&fs_info->fs_roots_radix_lock);
268924bbcf04SYan, Zheng 	spin_lock_init(&fs_info->delayed_iput_lock);
26904cb5300bSChris Mason 	spin_lock_init(&fs_info->defrag_inodes_lock);
2691ceda0864SMiao Xie 	spin_lock_init(&fs_info->super_lock);
2692f28491e0SJosef Bacik 	spin_lock_init(&fs_info->buffer_lock);
269347ab2a6cSJosef Bacik 	spin_lock_init(&fs_info->unused_bgs_lock);
2694f29021b2SJan Schmidt 	rwlock_init(&fs_info->tree_mod_log_lock);
2695d7c15171SZhao Lei 	mutex_init(&fs_info->unused_bg_unpin_mutex);
269667c5e7d4SFilipe Manana 	mutex_init(&fs_info->delete_unused_bgs_mutex);
26977585717fSChris Mason 	mutex_init(&fs_info->reloc_mutex);
2698573bfb72SMiao Xie 	mutex_init(&fs_info->delalloc_root_mutex);
2699de98ced9SMiao Xie 	seqlock_init(&fs_info->profiles_lock);
270019c00ddcSChris Mason 
27010b86a832SChris Mason 	INIT_LIST_HEAD(&fs_info->dirty_cowonly_roots);
27026324fbf3SChris Mason 	INIT_LIST_HEAD(&fs_info->space_info);
2703f29021b2SJan Schmidt 	INIT_LIST_HEAD(&fs_info->tree_mod_seq_list);
270447ab2a6cSJosef Bacik 	INIT_LIST_HEAD(&fs_info->unused_bgs);
2705bd647ce3SJosef Bacik #ifdef CONFIG_BTRFS_DEBUG
2706bd647ce3SJosef Bacik 	INIT_LIST_HEAD(&fs_info->allocated_roots);
2707bd647ce3SJosef Bacik #endif
2708c8bf1b67SDavid Sterba 	extent_map_tree_init(&fs_info->mapping_tree);
270966d8f3ddSMiao Xie 	btrfs_init_block_rsv(&fs_info->global_block_rsv,
271066d8f3ddSMiao Xie 			     BTRFS_BLOCK_RSV_GLOBAL);
271166d8f3ddSMiao Xie 	btrfs_init_block_rsv(&fs_info->trans_block_rsv, BTRFS_BLOCK_RSV_TRANS);
271266d8f3ddSMiao Xie 	btrfs_init_block_rsv(&fs_info->chunk_block_rsv, BTRFS_BLOCK_RSV_CHUNK);
271366d8f3ddSMiao Xie 	btrfs_init_block_rsv(&fs_info->empty_block_rsv, BTRFS_BLOCK_RSV_EMPTY);
271466d8f3ddSMiao Xie 	btrfs_init_block_rsv(&fs_info->delayed_block_rsv,
271566d8f3ddSMiao Xie 			     BTRFS_BLOCK_RSV_DELOPS);
2716ba2c4d4eSJosef Bacik 	btrfs_init_block_rsv(&fs_info->delayed_refs_rsv,
2717ba2c4d4eSJosef Bacik 			     BTRFS_BLOCK_RSV_DELREFS);
2718ba2c4d4eSJosef Bacik 
2719771ed689SChris Mason 	atomic_set(&fs_info->async_delalloc_pages, 0);
27204cb5300bSChris Mason 	atomic_set(&fs_info->defrag_running, 0);
27212fefd558SZhao Lei 	atomic_set(&fs_info->reada_works_cnt, 0);
2722034f784dSJosef Bacik 	atomic_set(&fs_info->nr_delayed_iputs, 0);
2723fc36ed7eSJan Schmidt 	atomic64_set(&fs_info->tree_mod_seq, 0);
272495ac567aSFilipe David Borba Manana 	fs_info->max_inline = BTRFS_DEFAULT_MAX_INLINE;
27259ed74f2dSJosef Bacik 	fs_info->metadata_ratio = 0;
27264cb5300bSChris Mason 	fs_info->defrag_inodes = RB_ROOT;
2727a5ed45f8SNikolay Borisov 	atomic64_set(&fs_info->free_chunk_space, 0);
2728f29021b2SJan Schmidt 	fs_info->tree_mod_log = RB_ROOT;
27298b87dc17SDavid Sterba 	fs_info->commit_interval = BTRFS_DEFAULT_COMMIT_INTERVAL;
2730f8c269d7SDavid Sterba 	fs_info->avg_delayed_ref_runtime = NSEC_PER_SEC >> 6; /* div by 64 */
273190519d66SArne Jansen 	/* readahead state */
2732d0164adcSMel Gorman 	INIT_RADIX_TREE(&fs_info->reada_tree, GFP_NOFS & ~__GFP_DIRECT_RECLAIM);
273390519d66SArne Jansen 	spin_lock_init(&fs_info->reada_lock);
2734fd708b81SJosef Bacik 	btrfs_init_ref_verify(fs_info);
2735c8b97818SChris Mason 
2736b34b086cSChris Mason 	fs_info->thread_pool_size = min_t(unsigned long,
2737b34b086cSChris Mason 					  num_online_cpus() + 2, 8);
27380afbaf8cSChris Mason 
2739199c2a9cSMiao Xie 	INIT_LIST_HEAD(&fs_info->ordered_roots);
2740199c2a9cSMiao Xie 	spin_lock_init(&fs_info->ordered_root_lock);
274169fe2d75SJosef Bacik 
2742638aa7edSEric Sandeen 	btrfs_init_scrub(fs_info);
274321adbd5cSStefan Behrens #ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
274421adbd5cSStefan Behrens 	fs_info->check_integrity_print_mask = 0;
274521adbd5cSStefan Behrens #endif
2746779a65a4SEric Sandeen 	btrfs_init_balance(fs_info);
274721c7e756SMiao Xie 	btrfs_init_async_reclaim_work(&fs_info->async_reclaim_work);
2748a2de733cSArne Jansen 
27490f9dd46cSJosef Bacik 	spin_lock_init(&fs_info->block_group_cache_lock);
27506bef4d31SEric Paris 	fs_info->block_group_cache_tree = RB_ROOT;
2751a1897fddSLiu Bo 	fs_info->first_logical_byte = (u64)-1;
27520f9dd46cSJosef Bacik 
275343eb5f29SQu Wenruo 	extent_io_tree_init(fs_info, &fs_info->freed_extents[0],
275443eb5f29SQu Wenruo 			    IO_TREE_FS_INFO_FREED_EXTENTS0, NULL);
275543eb5f29SQu Wenruo 	extent_io_tree_init(fs_info, &fs_info->freed_extents[1],
275643eb5f29SQu Wenruo 			    IO_TREE_FS_INFO_FREED_EXTENTS1, NULL);
275711833d66SYan Zheng 	fs_info->pinned_extents = &fs_info->freed_extents[0];
2758afcdd129SJosef Bacik 	set_bit(BTRFS_FS_BARRIER, &fs_info->flags);
275939279cc3SChris Mason 
27605a3f23d5SChris Mason 	mutex_init(&fs_info->ordered_operations_mutex);
2761e02119d5SChris Mason 	mutex_init(&fs_info->tree_log_mutex);
2762925baeddSChris Mason 	mutex_init(&fs_info->chunk_mutex);
2763a74a4b97SChris Mason 	mutex_init(&fs_info->transaction_kthread_mutex);
2764a74a4b97SChris Mason 	mutex_init(&fs_info->cleaner_mutex);
27651bbc621eSChris Mason 	mutex_init(&fs_info->ro_block_group_mutex);
27669e351cc8SJosef Bacik 	init_rwsem(&fs_info->commit_root_sem);
2767c71bf099SYan, Zheng 	init_rwsem(&fs_info->cleanup_work_sem);
276876dda93cSYan, Zheng 	init_rwsem(&fs_info->subvol_sem);
2769803b2f54SStefan Behrens 	sema_init(&fs_info->uuid_tree_rescan_sem, 1);
2770fa9c0d79SChris Mason 
2771ad618368SEric Sandeen 	btrfs_init_dev_replace_locks(fs_info);
2772f9e92e40SEric Sandeen 	btrfs_init_qgroup(fs_info);
2773b0643e59SDennis Zhou 	btrfs_discard_init(fs_info);
2774416ac51dSArne Jansen 
2775fa9c0d79SChris Mason 	btrfs_init_free_cluster(&fs_info->meta_alloc_cluster);
2776fa9c0d79SChris Mason 	btrfs_init_free_cluster(&fs_info->data_alloc_cluster);
2777fa9c0d79SChris Mason 
2778e6dcd2dcSChris Mason 	init_waitqueue_head(&fs_info->transaction_throttle);
2779f9295749SChris Mason 	init_waitqueue_head(&fs_info->transaction_wait);
2780bb9c12c9SSage Weil 	init_waitqueue_head(&fs_info->transaction_blocked_wait);
27814854ddd0SChris Mason 	init_waitqueue_head(&fs_info->async_submit_wait);
2782034f784dSJosef Bacik 	init_waitqueue_head(&fs_info->delayed_iputs_wait);
27833768f368SChris Mason 
2784da17066cSJeff Mahoney 	/* Usable values until the real ones are cached from the superblock */
2785da17066cSJeff Mahoney 	fs_info->nodesize = 4096;
2786da17066cSJeff Mahoney 	fs_info->sectorsize = 4096;
2787da17066cSJeff Mahoney 	fs_info->stripesize = 4096;
2788da17066cSJeff Mahoney 
2789eede2bf3SOmar Sandoval 	spin_lock_init(&fs_info->swapfile_pins_lock);
2790eede2bf3SOmar Sandoval 	fs_info->swapfile_pins = RB_ROOT;
2791eede2bf3SOmar Sandoval 
27929e967495SFilipe Manana 	fs_info->send_in_progress = 0;
27938260edbaSJosef Bacik }
27948260edbaSJosef Bacik 
27958260edbaSJosef Bacik static int init_mount_fs_info(struct btrfs_fs_info *fs_info, struct super_block *sb)
27968260edbaSJosef Bacik {
27978260edbaSJosef Bacik 	int ret;
27988260edbaSJosef Bacik 
27998260edbaSJosef Bacik 	fs_info->sb = sb;
28008260edbaSJosef Bacik 	sb->s_blocksize = BTRFS_BDEV_BLOCKSIZE;
28018260edbaSJosef Bacik 	sb->s_blocksize_bits = blksize_bits(BTRFS_BDEV_BLOCKSIZE);
28029e967495SFilipe Manana 
2803ae18c37aSJosef Bacik 	ret = init_srcu_struct(&fs_info->subvol_srcu);
2804ae18c37aSJosef Bacik 	if (ret)
2805ae18c37aSJosef Bacik 		return ret;
2806ae18c37aSJosef Bacik 
2807ae18c37aSJosef Bacik 	ret = percpu_counter_init(&fs_info->dio_bytes, 0, GFP_KERNEL);
2808ae18c37aSJosef Bacik 	if (ret)
2809ae18c37aSJosef Bacik 		goto fail;
2810ae18c37aSJosef Bacik 
2811ae18c37aSJosef Bacik 	ret = percpu_counter_init(&fs_info->dirty_metadata_bytes, 0, GFP_KERNEL);
2812ae18c37aSJosef Bacik 	if (ret)
2813ae18c37aSJosef Bacik 		goto fail;
2814ae18c37aSJosef Bacik 
2815ae18c37aSJosef Bacik 	fs_info->dirty_metadata_batch = PAGE_SIZE *
2816ae18c37aSJosef Bacik 					(1 + ilog2(nr_cpu_ids));
2817ae18c37aSJosef Bacik 
2818ae18c37aSJosef Bacik 	ret = percpu_counter_init(&fs_info->delalloc_bytes, 0, GFP_KERNEL);
2819ae18c37aSJosef Bacik 	if (ret)
2820ae18c37aSJosef Bacik 		goto fail;
2821ae18c37aSJosef Bacik 
2822ae18c37aSJosef Bacik 	ret = percpu_counter_init(&fs_info->dev_replace.bio_counter, 0,
2823ae18c37aSJosef Bacik 			GFP_KERNEL);
2824ae18c37aSJosef Bacik 	if (ret)
2825ae18c37aSJosef Bacik 		goto fail;
2826ae18c37aSJosef Bacik 
2827ae18c37aSJosef Bacik 	fs_info->delayed_root = kmalloc(sizeof(struct btrfs_delayed_root),
2828ae18c37aSJosef Bacik 					GFP_KERNEL);
2829ae18c37aSJosef Bacik 	if (!fs_info->delayed_root) {
2830ae18c37aSJosef Bacik 		ret = -ENOMEM;
2831ae18c37aSJosef Bacik 		goto fail;
2832ae18c37aSJosef Bacik 	}
2833ae18c37aSJosef Bacik 	btrfs_init_delayed_root(fs_info->delayed_root);
2834ae18c37aSJosef Bacik 
283553b381b3SDavid Woodhouse 	ret = btrfs_alloc_stripe_hash_table(fs_info);
2836ae18c37aSJosef Bacik 	if (ret)
2837ae18c37aSJosef Bacik 		goto fail;
2838ae18c37aSJosef Bacik 
2839ae18c37aSJosef Bacik 	return 0;
2840ae18c37aSJosef Bacik fail:
2841ae18c37aSJosef Bacik 	cleanup_srcu_struct(&fs_info->subvol_srcu);
2842ae18c37aSJosef Bacik 	return ret;
2843ae18c37aSJosef Bacik }
2844ae18c37aSJosef Bacik 
2845ae18c37aSJosef Bacik int __cold open_ctree(struct super_block *sb, struct btrfs_fs_devices *fs_devices,
2846ae18c37aSJosef Bacik 		      char *options)
2847ae18c37aSJosef Bacik {
2848ae18c37aSJosef Bacik 	u32 sectorsize;
2849ae18c37aSJosef Bacik 	u32 nodesize;
2850ae18c37aSJosef Bacik 	u32 stripesize;
2851ae18c37aSJosef Bacik 	u64 generation;
2852ae18c37aSJosef Bacik 	u64 features;
2853ae18c37aSJosef Bacik 	u16 csum_type;
2854ae18c37aSJosef Bacik 	struct btrfs_key location;
2855ae18c37aSJosef Bacik 	struct buffer_head *bh;
2856ae18c37aSJosef Bacik 	struct btrfs_super_block *disk_super;
2857ae18c37aSJosef Bacik 	struct btrfs_fs_info *fs_info = btrfs_sb(sb);
2858ae18c37aSJosef Bacik 	struct btrfs_root *tree_root;
2859ae18c37aSJosef Bacik 	struct btrfs_root *chunk_root;
2860ae18c37aSJosef Bacik 	int ret;
2861ae18c37aSJosef Bacik 	int err = -EINVAL;
2862ae18c37aSJosef Bacik 	int clear_free_space_tree = 0;
2863ae18c37aSJosef Bacik 	int level;
2864ae18c37aSJosef Bacik 
28658260edbaSJosef Bacik 	ret = init_mount_fs_info(fs_info, sb);
286653b381b3SDavid Woodhouse 	if (ret) {
286783c8266aSDavid Sterba 		err = ret;
2868ae18c37aSJosef Bacik 		goto fail;
286953b381b3SDavid Woodhouse 	}
287053b381b3SDavid Woodhouse 
2871ae18c37aSJosef Bacik 	/* These need to be init'ed before we start creating inodes and such. */
2872ae18c37aSJosef Bacik 	tree_root = btrfs_alloc_root(fs_info, BTRFS_ROOT_TREE_OBJECTID,
2873ae18c37aSJosef Bacik 				     GFP_KERNEL);
2874ae18c37aSJosef Bacik 	fs_info->tree_root = tree_root;
2875ae18c37aSJosef Bacik 	chunk_root = btrfs_alloc_root(fs_info, BTRFS_CHUNK_TREE_OBJECTID,
2876ae18c37aSJosef Bacik 				      GFP_KERNEL);
2877ae18c37aSJosef Bacik 	fs_info->chunk_root = chunk_root;
2878ae18c37aSJosef Bacik 	if (!tree_root || !chunk_root) {
2879ae18c37aSJosef Bacik 		err = -ENOMEM;
2880ae18c37aSJosef Bacik 		goto fail_srcu;
2881ae18c37aSJosef Bacik 	}
2882ae18c37aSJosef Bacik 
2883ae18c37aSJosef Bacik 	fs_info->btree_inode = new_inode(sb);
2884ae18c37aSJosef Bacik 	if (!fs_info->btree_inode) {
2885ae18c37aSJosef Bacik 		err = -ENOMEM;
2886ae18c37aSJosef Bacik 		goto fail_srcu;
2887ae18c37aSJosef Bacik 	}
2888ae18c37aSJosef Bacik 	mapping_set_gfp_mask(fs_info->btree_inode->i_mapping, GFP_NOFS);
2889ae18c37aSJosef Bacik 	btrfs_init_btree_inode(fs_info);
2890ae18c37aSJosef Bacik 
28913c4bb26bSChris Mason 	invalidate_bdev(fs_devices->latest_bdev);
28921104a885SDavid Sterba 
28931104a885SDavid Sterba 	/*
28941104a885SDavid Sterba 	 * Read super block and check the signature bytes only
28951104a885SDavid Sterba 	 */
2896a512bbf8SYan Zheng 	bh = btrfs_read_dev_super(fs_devices->latest_bdev);
289792fc03fbSAnand Jain 	if (IS_ERR(bh)) {
289892fc03fbSAnand Jain 		err = PTR_ERR(bh);
289916cdcec7SMiao Xie 		goto fail_alloc;
290020b45077SDave Young 	}
290139279cc3SChris Mason 
29021104a885SDavid Sterba 	/*
29038dc3f22cSJohannes Thumshirn 	 * Verify the type first, if that or the the checksum value are
29048dc3f22cSJohannes Thumshirn 	 * corrupted, we'll find out
29058dc3f22cSJohannes Thumshirn 	 */
290651bce6c9SJohannes Thumshirn 	csum_type = btrfs_super_csum_type((struct btrfs_super_block *)bh->b_data);
290751bce6c9SJohannes Thumshirn 	if (!btrfs_supported_super_csum(csum_type)) {
29088dc3f22cSJohannes Thumshirn 		btrfs_err(fs_info, "unsupported checksum algorithm: %u",
290951bce6c9SJohannes Thumshirn 			  csum_type);
29108dc3f22cSJohannes Thumshirn 		err = -EINVAL;
29118dc3f22cSJohannes Thumshirn 		brelse(bh);
29128dc3f22cSJohannes Thumshirn 		goto fail_alloc;
29138dc3f22cSJohannes Thumshirn 	}
29148dc3f22cSJohannes Thumshirn 
29156d97c6e3SJohannes Thumshirn 	ret = btrfs_init_csum_hash(fs_info, csum_type);
29166d97c6e3SJohannes Thumshirn 	if (ret) {
29176d97c6e3SJohannes Thumshirn 		err = ret;
29186d97c6e3SJohannes Thumshirn 		goto fail_alloc;
29196d97c6e3SJohannes Thumshirn 	}
29206d97c6e3SJohannes Thumshirn 
29218dc3f22cSJohannes Thumshirn 	/*
29221104a885SDavid Sterba 	 * We want to check superblock checksum, the type is stored inside.
29231104a885SDavid Sterba 	 * Pass the whole disk block of size BTRFS_SUPER_INFO_SIZE (4k).
29241104a885SDavid Sterba 	 */
2925ab8d0fc4SJeff Mahoney 	if (btrfs_check_super_csum(fs_info, bh->b_data)) {
292605135f59SDavid Sterba 		btrfs_err(fs_info, "superblock checksum mismatch");
29271104a885SDavid Sterba 		err = -EINVAL;
2928b2acdddfSAnand Jain 		brelse(bh);
2929141386e1SJosef Bacik 		goto fail_alloc;
29301104a885SDavid Sterba 	}
29311104a885SDavid Sterba 
29321104a885SDavid Sterba 	/*
29331104a885SDavid Sterba 	 * super_copy is zeroed at allocation time and we never touch the
29341104a885SDavid Sterba 	 * following bytes up to INFO_SIZE, the checksum is calculated from
29351104a885SDavid Sterba 	 * the whole block of INFO_SIZE
29361104a885SDavid Sterba 	 */
29376c41761fSDavid Sterba 	memcpy(fs_info->super_copy, bh->b_data, sizeof(*fs_info->super_copy));
2938a061fc8dSChris Mason 	brelse(bh);
29395f39d397SChris Mason 
2940fbc6feaeSNikolay Borisov 	disk_super = fs_info->super_copy;
2941fbc6feaeSNikolay Borisov 
2942de37aa51SNikolay Borisov 	ASSERT(!memcmp(fs_info->fs_devices->fsid, fs_info->super_copy->fsid,
2943de37aa51SNikolay Borisov 		       BTRFS_FSID_SIZE));
2944de37aa51SNikolay Borisov 
29457239ff4bSNikolay Borisov 	if (btrfs_fs_incompat(fs_info, METADATA_UUID)) {
2946de37aa51SNikolay Borisov 		ASSERT(!memcmp(fs_info->fs_devices->metadata_uuid,
2947de37aa51SNikolay Borisov 				fs_info->super_copy->metadata_uuid,
2948de37aa51SNikolay Borisov 				BTRFS_FSID_SIZE));
29497239ff4bSNikolay Borisov 	}
29500b86a832SChris Mason 
2951fbc6feaeSNikolay Borisov 	features = btrfs_super_flags(disk_super);
2952fbc6feaeSNikolay Borisov 	if (features & BTRFS_SUPER_FLAG_CHANGING_FSID_V2) {
2953fbc6feaeSNikolay Borisov 		features &= ~BTRFS_SUPER_FLAG_CHANGING_FSID_V2;
2954fbc6feaeSNikolay Borisov 		btrfs_set_super_flags(disk_super, features);
2955fbc6feaeSNikolay Borisov 		btrfs_info(fs_info,
2956fbc6feaeSNikolay Borisov 			"found metadata UUID change in progress flag, clearing");
2957fbc6feaeSNikolay Borisov 	}
2958fbc6feaeSNikolay Borisov 
2959fbc6feaeSNikolay Borisov 	memcpy(fs_info->super_for_commit, fs_info->super_copy,
2960fbc6feaeSNikolay Borisov 	       sizeof(*fs_info->super_for_commit));
2961de37aa51SNikolay Borisov 
2962069ec957SQu Wenruo 	ret = btrfs_validate_mount_super(fs_info);
29631104a885SDavid Sterba 	if (ret) {
296405135f59SDavid Sterba 		btrfs_err(fs_info, "superblock contains fatal errors");
29651104a885SDavid Sterba 		err = -EINVAL;
2966141386e1SJosef Bacik 		goto fail_alloc;
29671104a885SDavid Sterba 	}
29681104a885SDavid Sterba 
29690f7d52f4SChris Mason 	if (!btrfs_super_root(disk_super))
2970141386e1SJosef Bacik 		goto fail_alloc;
29710f7d52f4SChris Mason 
2972acce952bSliubo 	/* check FS state, whether FS is broken. */
297387533c47SMiao Xie 	if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_ERROR)
297487533c47SMiao Xie 		set_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state);
2975acce952bSliubo 
297675e7cb7fSLiu Bo 	/*
297775e7cb7fSLiu Bo 	 * In the long term, we'll store the compression type in the super
297875e7cb7fSLiu Bo 	 * block, and it'll be used for per file compression control.
297975e7cb7fSLiu Bo 	 */
298075e7cb7fSLiu Bo 	fs_info->compress_type = BTRFS_COMPRESS_ZLIB;
298175e7cb7fSLiu Bo 
29822ff7e61eSJeff Mahoney 	ret = btrfs_parse_options(fs_info, options, sb->s_flags);
29832b82032cSYan Zheng 	if (ret) {
29842b82032cSYan Zheng 		err = ret;
2985141386e1SJosef Bacik 		goto fail_alloc;
29862b82032cSYan Zheng 	}
2987dfe25020SChris Mason 
2988f2b636e8SJosef Bacik 	features = btrfs_super_incompat_flags(disk_super) &
2989f2b636e8SJosef Bacik 		~BTRFS_FEATURE_INCOMPAT_SUPP;
2990f2b636e8SJosef Bacik 	if (features) {
299105135f59SDavid Sterba 		btrfs_err(fs_info,
299205135f59SDavid Sterba 		    "cannot mount because of unsupported optional features (%llx)",
2993c1c9ff7cSGeert Uytterhoeven 		    features);
2994f2b636e8SJosef Bacik 		err = -EINVAL;
2995141386e1SJosef Bacik 		goto fail_alloc;
2996f2b636e8SJosef Bacik 	}
2997f2b636e8SJosef Bacik 
29985d4f98a2SYan Zheng 	features = btrfs_super_incompat_flags(disk_super);
29995d4f98a2SYan Zheng 	features |= BTRFS_FEATURE_INCOMPAT_MIXED_BACKREF;
30000b246afaSJeff Mahoney 	if (fs_info->compress_type == BTRFS_COMPRESS_LZO)
3001a6fa6faeSLi Zefan 		features |= BTRFS_FEATURE_INCOMPAT_COMPRESS_LZO;
30025c1aab1dSNick Terrell 	else if (fs_info->compress_type == BTRFS_COMPRESS_ZSTD)
30035c1aab1dSNick Terrell 		features |= BTRFS_FEATURE_INCOMPAT_COMPRESS_ZSTD;
3004727011e0SChris Mason 
30053173a18fSJosef Bacik 	if (features & BTRFS_FEATURE_INCOMPAT_SKINNY_METADATA)
300605135f59SDavid Sterba 		btrfs_info(fs_info, "has skinny extents");
30073173a18fSJosef Bacik 
3008727011e0SChris Mason 	/*
3009727011e0SChris Mason 	 * flag our filesystem as having big metadata blocks if
3010727011e0SChris Mason 	 * they are bigger than the page size
3011727011e0SChris Mason 	 */
301209cbfeafSKirill A. Shutemov 	if (btrfs_super_nodesize(disk_super) > PAGE_SIZE) {
3013727011e0SChris Mason 		if (!(features & BTRFS_FEATURE_INCOMPAT_BIG_METADATA))
301405135f59SDavid Sterba 			btrfs_info(fs_info,
301505135f59SDavid Sterba 				"flagging fs with big metadata feature");
3016727011e0SChris Mason 		features |= BTRFS_FEATURE_INCOMPAT_BIG_METADATA;
3017727011e0SChris Mason 	}
3018727011e0SChris Mason 
3019bc3f116fSChris Mason 	nodesize = btrfs_super_nodesize(disk_super);
3020bc3f116fSChris Mason 	sectorsize = btrfs_super_sectorsize(disk_super);
3021b7f67055SChandan Rajendra 	stripesize = sectorsize;
3022707e8a07SDavid Sterba 	fs_info->dirty_metadata_batch = nodesize * (1 + ilog2(nr_cpu_ids));
3023963d678bSMiao Xie 	fs_info->delalloc_batch = sectorsize * 512 * (1 + ilog2(nr_cpu_ids));
3024bc3f116fSChris Mason 
3025da17066cSJeff Mahoney 	/* Cache block sizes */
3026da17066cSJeff Mahoney 	fs_info->nodesize = nodesize;
3027da17066cSJeff Mahoney 	fs_info->sectorsize = sectorsize;
3028da17066cSJeff Mahoney 	fs_info->stripesize = stripesize;
3029da17066cSJeff Mahoney 
3030bc3f116fSChris Mason 	/*
3031bc3f116fSChris Mason 	 * mixed block groups end up with duplicate but slightly offset
3032bc3f116fSChris Mason 	 * extent buffers for the same range.  It leads to corruptions
3033bc3f116fSChris Mason 	 */
3034bc3f116fSChris Mason 	if ((features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS) &&
3035707e8a07SDavid Sterba 	    (sectorsize != nodesize)) {
303605135f59SDavid Sterba 		btrfs_err(fs_info,
303705135f59SDavid Sterba "unequal nodesize/sectorsize (%u != %u) are not allowed for mixed block groups",
303805135f59SDavid Sterba 			nodesize, sectorsize);
3039141386e1SJosef Bacik 		goto fail_alloc;
3040bc3f116fSChris Mason 	}
3041bc3f116fSChris Mason 
3042ceda0864SMiao Xie 	/*
3043ceda0864SMiao Xie 	 * Needn't use the lock because there is no other task which will
3044ceda0864SMiao Xie 	 * update the flag.
3045ceda0864SMiao Xie 	 */
30465d4f98a2SYan Zheng 	btrfs_set_super_incompat_flags(disk_super, features);
30475d4f98a2SYan Zheng 
3048f2b636e8SJosef Bacik 	features = btrfs_super_compat_ro_flags(disk_super) &
3049f2b636e8SJosef Bacik 		~BTRFS_FEATURE_COMPAT_RO_SUPP;
3050bc98a42cSDavid Howells 	if (!sb_rdonly(sb) && features) {
305105135f59SDavid Sterba 		btrfs_err(fs_info,
305205135f59SDavid Sterba 	"cannot mount read-write because of unsupported optional features (%llx)",
3053c1c9ff7cSGeert Uytterhoeven 		       features);
3054f2b636e8SJosef Bacik 		err = -EINVAL;
3055141386e1SJosef Bacik 		goto fail_alloc;
3056f2b636e8SJosef Bacik 	}
305761d92c32SChris Mason 
30582a458198SEric Sandeen 	ret = btrfs_init_workqueues(fs_info, fs_devices);
30592a458198SEric Sandeen 	if (ret) {
30602a458198SEric Sandeen 		err = ret;
30610dc3b84aSJosef Bacik 		goto fail_sb_buffer;
30620dc3b84aSJosef Bacik 	}
30634543df7eSChris Mason 
30649e11ceeeSJan Kara 	sb->s_bdi->congested_fn = btrfs_congested_fn;
30659e11ceeeSJan Kara 	sb->s_bdi->congested_data = fs_info;
30669e11ceeeSJan Kara 	sb->s_bdi->capabilities |= BDI_CAP_CGROUP_WRITEBACK;
3067b5420237SNikolay Borisov 	sb->s_bdi->ra_pages = VM_READAHEAD_PAGES;
30689e11ceeeSJan Kara 	sb->s_bdi->ra_pages *= btrfs_super_num_devices(disk_super);
30699e11ceeeSJan Kara 	sb->s_bdi->ra_pages = max(sb->s_bdi->ra_pages, SZ_4M / PAGE_SIZE);
30704575c9ccSChris Mason 
3071a061fc8dSChris Mason 	sb->s_blocksize = sectorsize;
3072a061fc8dSChris Mason 	sb->s_blocksize_bits = blksize_bits(sectorsize);
3073de37aa51SNikolay Borisov 	memcpy(&sb->s_uuid, fs_info->fs_devices->fsid, BTRFS_FSID_SIZE);
3074db94535dSChris Mason 
3075925baeddSChris Mason 	mutex_lock(&fs_info->chunk_mutex);
30766bccf3abSJeff Mahoney 	ret = btrfs_read_sys_array(fs_info);
3077925baeddSChris Mason 	mutex_unlock(&fs_info->chunk_mutex);
307884eed90fSChris Mason 	if (ret) {
307905135f59SDavid Sterba 		btrfs_err(fs_info, "failed to read the system array: %d", ret);
30805d4f98a2SYan Zheng 		goto fail_sb_buffer;
308184eed90fSChris Mason 	}
30820b86a832SChris Mason 
308384234f3aSYan Zheng 	generation = btrfs_super_chunk_root_generation(disk_super);
3084581c1760SQu Wenruo 	level = btrfs_super_chunk_root_level(disk_super);
30850b86a832SChris Mason 
30862ff7e61eSJeff Mahoney 	chunk_root->node = read_tree_block(fs_info,
30870b86a832SChris Mason 					   btrfs_super_chunk_root(disk_super),
3088581c1760SQu Wenruo 					   generation, level, NULL);
308964c043deSLiu Bo 	if (IS_ERR(chunk_root->node) ||
309064c043deSLiu Bo 	    !extent_buffer_uptodate(chunk_root->node)) {
309105135f59SDavid Sterba 		btrfs_err(fs_info, "failed to read chunk root");
3092e5fffbacSchandan 		if (!IS_ERR(chunk_root->node))
3093e5fffbacSchandan 			free_extent_buffer(chunk_root->node);
309495ab1f64SZhao Lei 		chunk_root->node = NULL;
3095af31f5e5SChris Mason 		goto fail_tree_roots;
309683121942SDavid Woodhouse 	}
30975d4f98a2SYan Zheng 	btrfs_set_root_node(&chunk_root->root_item, chunk_root->node);
30985d4f98a2SYan Zheng 	chunk_root->commit_root = btrfs_root_node(chunk_root);
30990b86a832SChris Mason 
3100e17cade2SChris Mason 	read_extent_buffer(chunk_root->node, fs_info->chunk_tree_uuid,
3101b308bc2fSGeert Uytterhoeven 	   btrfs_header_chunk_tree_uuid(chunk_root->node), BTRFS_UUID_SIZE);
3102e17cade2SChris Mason 
31035b4aacefSJeff Mahoney 	ret = btrfs_read_chunk_tree(fs_info);
31042b82032cSYan Zheng 	if (ret) {
310505135f59SDavid Sterba 		btrfs_err(fs_info, "failed to read chunk tree: %d", ret);
3106af31f5e5SChris Mason 		goto fail_tree_roots;
31072b82032cSYan Zheng 	}
31080b86a832SChris Mason 
31098dabb742SStefan Behrens 	/*
31109b99b115SAnand Jain 	 * Keep the devid that is marked to be the target device for the
31119b99b115SAnand Jain 	 * device replace procedure
31128dabb742SStefan Behrens 	 */
31139b99b115SAnand Jain 	btrfs_free_extra_devids(fs_devices, 0);
3114dfe25020SChris Mason 
3115a6b0d5c8SChris Mason 	if (!fs_devices->latest_bdev) {
311605135f59SDavid Sterba 		btrfs_err(fs_info, "failed to read devices");
3117a6b0d5c8SChris Mason 		goto fail_tree_roots;
3118a6b0d5c8SChris Mason 	}
3119a6b0d5c8SChris Mason 
3120b8522a1eSNikolay Borisov 	ret = init_tree_roots(fs_info);
31214bbcaa64SEric Sandeen 	if (ret)
3122b8522a1eSNikolay Borisov 		goto fail_tree_roots;
31238929ecfaSYan, Zheng 
3124cf90d884SQu Wenruo 	ret = btrfs_verify_dev_extents(fs_info);
3125cf90d884SQu Wenruo 	if (ret) {
3126cf90d884SQu Wenruo 		btrfs_err(fs_info,
3127cf90d884SQu Wenruo 			  "failed to verify dev extents against chunks: %d",
3128cf90d884SQu Wenruo 			  ret);
3129cf90d884SQu Wenruo 		goto fail_block_groups;
3130cf90d884SQu Wenruo 	}
313168310a5eSIlya Dryomov 	ret = btrfs_recover_balance(fs_info);
313268310a5eSIlya Dryomov 	if (ret) {
313305135f59SDavid Sterba 		btrfs_err(fs_info, "failed to recover balance: %d", ret);
313468310a5eSIlya Dryomov 		goto fail_block_groups;
313568310a5eSIlya Dryomov 	}
313668310a5eSIlya Dryomov 
3137733f4fbbSStefan Behrens 	ret = btrfs_init_dev_stats(fs_info);
3138733f4fbbSStefan Behrens 	if (ret) {
313905135f59SDavid Sterba 		btrfs_err(fs_info, "failed to init dev_stats: %d", ret);
3140733f4fbbSStefan Behrens 		goto fail_block_groups;
3141733f4fbbSStefan Behrens 	}
3142733f4fbbSStefan Behrens 
31438dabb742SStefan Behrens 	ret = btrfs_init_dev_replace(fs_info);
31448dabb742SStefan Behrens 	if (ret) {
314505135f59SDavid Sterba 		btrfs_err(fs_info, "failed to init dev_replace: %d", ret);
31468dabb742SStefan Behrens 		goto fail_block_groups;
31478dabb742SStefan Behrens 	}
31488dabb742SStefan Behrens 
31499b99b115SAnand Jain 	btrfs_free_extra_devids(fs_devices, 1);
31508dabb742SStefan Behrens 
3151c6761a9eSAnand Jain 	ret = btrfs_sysfs_add_fsid(fs_devices);
3152b7c35e81SAnand Jain 	if (ret) {
315305135f59SDavid Sterba 		btrfs_err(fs_info, "failed to init sysfs fsid interface: %d",
315405135f59SDavid Sterba 				ret);
3155b7c35e81SAnand Jain 		goto fail_block_groups;
3156b7c35e81SAnand Jain 	}
3157b7c35e81SAnand Jain 
315896f3136eSAnand Jain 	ret = btrfs_sysfs_add_mounted(fs_info);
31595ac1d209SJeff Mahoney 	if (ret) {
316005135f59SDavid Sterba 		btrfs_err(fs_info, "failed to init sysfs interface: %d", ret);
3161b7c35e81SAnand Jain 		goto fail_fsdev_sysfs;
31625ac1d209SJeff Mahoney 	}
31635ac1d209SJeff Mahoney 
3164c59021f8Sliubo 	ret = btrfs_init_space_info(fs_info);
3165c59021f8Sliubo 	if (ret) {
316605135f59SDavid Sterba 		btrfs_err(fs_info, "failed to initialize space info: %d", ret);
31672365dd3cSAnand Jain 		goto fail_sysfs;
3168c59021f8Sliubo 	}
3169c59021f8Sliubo 
31705b4aacefSJeff Mahoney 	ret = btrfs_read_block_groups(fs_info);
31711b1d1f66SJosef Bacik 	if (ret) {
317205135f59SDavid Sterba 		btrfs_err(fs_info, "failed to read block groups: %d", ret);
31732365dd3cSAnand Jain 		goto fail_sysfs;
31741b1d1f66SJosef Bacik 	}
31754330e183SQu Wenruo 
31766528b99dSAnand Jain 	if (!sb_rdonly(sb) && !btrfs_check_rw_degradable(fs_info, NULL)) {
317705135f59SDavid Sterba 		btrfs_warn(fs_info,
317852042d8eSAndrea Gelmini 		"writable mount is not allowed due to too many missing devices");
31792365dd3cSAnand Jain 		goto fail_sysfs;
3180292fd7fcSStefan Behrens 	}
31819078a3e1SChris Mason 
3182a74a4b97SChris Mason 	fs_info->cleaner_kthread = kthread_run(cleaner_kthread, tree_root,
3183a74a4b97SChris Mason 					       "btrfs-cleaner");
318457506d50SQinghuang Feng 	if (IS_ERR(fs_info->cleaner_kthread))
31852365dd3cSAnand Jain 		goto fail_sysfs;
3186a74a4b97SChris Mason 
3187a74a4b97SChris Mason 	fs_info->transaction_kthread = kthread_run(transaction_kthread,
3188a74a4b97SChris Mason 						   tree_root,
3189a74a4b97SChris Mason 						   "btrfs-transaction");
319057506d50SQinghuang Feng 	if (IS_ERR(fs_info->transaction_kthread))
31913f157a2fSChris Mason 		goto fail_cleaner;
3192a74a4b97SChris Mason 
3193583b7231SHans van Kranenburg 	if (!btrfs_test_opt(fs_info, NOSSD) &&
3194c289811cSChris Mason 	    !fs_info->fs_devices->rotating) {
3195583b7231SHans van Kranenburg 		btrfs_set_and_info(fs_info, SSD, "enabling ssd optimizations");
3196c289811cSChris Mason 	}
3197c289811cSChris Mason 
3198572d9ab7SDavid Sterba 	/*
319901327610SNicholas D Steeves 	 * Mount does not set all options immediately, we can do it now and do
3200572d9ab7SDavid Sterba 	 * not have to wait for transaction commit
3201572d9ab7SDavid Sterba 	 */
3202572d9ab7SDavid Sterba 	btrfs_apply_pending_changes(fs_info);
32033818aea2SQu Wenruo 
320421adbd5cSStefan Behrens #ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
32050b246afaSJeff Mahoney 	if (btrfs_test_opt(fs_info, CHECK_INTEGRITY)) {
32062ff7e61eSJeff Mahoney 		ret = btrfsic_mount(fs_info, fs_devices,
32070b246afaSJeff Mahoney 				    btrfs_test_opt(fs_info,
320821adbd5cSStefan Behrens 					CHECK_INTEGRITY_INCLUDING_EXTENT_DATA) ?
320921adbd5cSStefan Behrens 				    1 : 0,
321021adbd5cSStefan Behrens 				    fs_info->check_integrity_print_mask);
321121adbd5cSStefan Behrens 		if (ret)
321205135f59SDavid Sterba 			btrfs_warn(fs_info,
321305135f59SDavid Sterba 				"failed to initialize integrity check module: %d",
321405135f59SDavid Sterba 				ret);
321521adbd5cSStefan Behrens 	}
321621adbd5cSStefan Behrens #endif
3217bcef60f2SArne Jansen 	ret = btrfs_read_qgroup_config(fs_info);
3218bcef60f2SArne Jansen 	if (ret)
3219bcef60f2SArne Jansen 		goto fail_trans_kthread;
322021adbd5cSStefan Behrens 
3221fd708b81SJosef Bacik 	if (btrfs_build_ref_tree(fs_info))
3222fd708b81SJosef Bacik 		btrfs_err(fs_info, "couldn't build ref tree");
3223fd708b81SJosef Bacik 
322496da0919SQu Wenruo 	/* do not make disk changes in broken FS or nologreplay is given */
322596da0919SQu Wenruo 	if (btrfs_super_log_root(disk_super) != 0 &&
32260b246afaSJeff Mahoney 	    !btrfs_test_opt(fs_info, NOLOGREPLAY)) {
3227e8294f2fSDavid Sterba 		btrfs_info(fs_info, "start tree-log replay");
322863443bf5SEric Sandeen 		ret = btrfs_replay_log(fs_info, fs_devices);
322979787eaaSJeff Mahoney 		if (ret) {
323063443bf5SEric Sandeen 			err = ret;
323128c16cbbSWang Shilong 			goto fail_qgroup;
3232e556ce2cSYan Zheng 		}
3233e02119d5SChris Mason 	}
32341a40e23bSZheng Yan 
32356bccf3abSJeff Mahoney 	ret = btrfs_find_orphan_roots(fs_info);
323679787eaaSJeff Mahoney 	if (ret)
323728c16cbbSWang Shilong 		goto fail_qgroup;
323876dda93cSYan, Zheng 
3239bc98a42cSDavid Howells 	if (!sb_rdonly(sb)) {
3240d68fc57bSYan, Zheng 		ret = btrfs_cleanup_fs_roots(fs_info);
324144c44af2SIlya Dryomov 		if (ret)
324228c16cbbSWang Shilong 			goto fail_qgroup;
324390c711abSZygo Blaxell 
324490c711abSZygo Blaxell 		mutex_lock(&fs_info->cleaner_mutex);
32455d4f98a2SYan Zheng 		ret = btrfs_recover_relocation(tree_root);
324690c711abSZygo Blaxell 		mutex_unlock(&fs_info->cleaner_mutex);
3247d7ce5843SMiao Xie 		if (ret < 0) {
324805135f59SDavid Sterba 			btrfs_warn(fs_info, "failed to recover relocation: %d",
324905135f59SDavid Sterba 					ret);
3250d7ce5843SMiao Xie 			err = -EINVAL;
3251bcef60f2SArne Jansen 			goto fail_qgroup;
3252d7ce5843SMiao Xie 		}
32537c2ca468SChris Mason 	}
32541a40e23bSZheng Yan 
32553de4586cSChris Mason 	location.objectid = BTRFS_FS_TREE_OBJECTID;
32563de4586cSChris Mason 	location.type = BTRFS_ROOT_ITEM_KEY;
3257cb517eabSMiao Xie 	location.offset = 0;
32583de4586cSChris Mason 
32593619c94fSJosef Bacik 	fs_info->fs_root = btrfs_get_fs_root(fs_info, &location, true);
32603140c9a3SDan Carpenter 	if (IS_ERR(fs_info->fs_root)) {
32613140c9a3SDan Carpenter 		err = PTR_ERR(fs_info->fs_root);
3262f50f4353SLiu Bo 		btrfs_warn(fs_info, "failed to read fs tree: %d", err);
3263315bf8efSJosef Bacik 		fs_info->fs_root = NULL;
3264bcef60f2SArne Jansen 		goto fail_qgroup;
32653140c9a3SDan Carpenter 	}
3266c289811cSChris Mason 
3267bc98a42cSDavid Howells 	if (sb_rdonly(sb))
32682b6ba629SIlya Dryomov 		return 0;
32692b6ba629SIlya Dryomov 
3270f8d468a1SOmar Sandoval 	if (btrfs_test_opt(fs_info, CLEAR_CACHE) &&
3271f8d468a1SOmar Sandoval 	    btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE)) {
32726675df31SOmar Sandoval 		clear_free_space_tree = 1;
32736675df31SOmar Sandoval 	} else if (btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE) &&
32746675df31SOmar Sandoval 		   !btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE_VALID)) {
32756675df31SOmar Sandoval 		btrfs_warn(fs_info, "free space tree is invalid");
32766675df31SOmar Sandoval 		clear_free_space_tree = 1;
32776675df31SOmar Sandoval 	}
32786675df31SOmar Sandoval 
32796675df31SOmar Sandoval 	if (clear_free_space_tree) {
3280f8d468a1SOmar Sandoval 		btrfs_info(fs_info, "clearing free space tree");
3281f8d468a1SOmar Sandoval 		ret = btrfs_clear_free_space_tree(fs_info);
3282f8d468a1SOmar Sandoval 		if (ret) {
3283f8d468a1SOmar Sandoval 			btrfs_warn(fs_info,
3284f8d468a1SOmar Sandoval 				   "failed to clear free space tree: %d", ret);
32856bccf3abSJeff Mahoney 			close_ctree(fs_info);
3286f8d468a1SOmar Sandoval 			return ret;
3287f8d468a1SOmar Sandoval 		}
3288f8d468a1SOmar Sandoval 	}
3289f8d468a1SOmar Sandoval 
32900b246afaSJeff Mahoney 	if (btrfs_test_opt(fs_info, FREE_SPACE_TREE) &&
3291511711afSChris Mason 	    !btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE)) {
329205135f59SDavid Sterba 		btrfs_info(fs_info, "creating free space tree");
3293511711afSChris Mason 		ret = btrfs_create_free_space_tree(fs_info);
3294511711afSChris Mason 		if (ret) {
329505135f59SDavid Sterba 			btrfs_warn(fs_info,
329605135f59SDavid Sterba 				"failed to create free space tree: %d", ret);
32976bccf3abSJeff Mahoney 			close_ctree(fs_info);
3298511711afSChris Mason 			return ret;
3299511711afSChris Mason 		}
3300511711afSChris Mason 	}
3301511711afSChris Mason 
3302e3acc2a6SJosef Bacik 	down_read(&fs_info->cleanup_work_sem);
33032b6ba629SIlya Dryomov 	if ((ret = btrfs_orphan_cleanup(fs_info->fs_root)) ||
33042b6ba629SIlya Dryomov 	    (ret = btrfs_orphan_cleanup(fs_info->tree_root))) {
33052b6ba629SIlya Dryomov 		up_read(&fs_info->cleanup_work_sem);
33066bccf3abSJeff Mahoney 		close_ctree(fs_info);
33072b6ba629SIlya Dryomov 		return ret;
33082b6ba629SIlya Dryomov 	}
3309e3acc2a6SJosef Bacik 	up_read(&fs_info->cleanup_work_sem);
331059641015SIlya Dryomov 
33112b6ba629SIlya Dryomov 	ret = btrfs_resume_balance_async(fs_info);
33122b6ba629SIlya Dryomov 	if (ret) {
331305135f59SDavid Sterba 		btrfs_warn(fs_info, "failed to resume balance: %d", ret);
33146bccf3abSJeff Mahoney 		close_ctree(fs_info);
33152b6ba629SIlya Dryomov 		return ret;
3316e3acc2a6SJosef Bacik 	}
3317e3acc2a6SJosef Bacik 
33188dabb742SStefan Behrens 	ret = btrfs_resume_dev_replace_async(fs_info);
33198dabb742SStefan Behrens 	if (ret) {
332005135f59SDavid Sterba 		btrfs_warn(fs_info, "failed to resume device replace: %d", ret);
33216bccf3abSJeff Mahoney 		close_ctree(fs_info);
33228dabb742SStefan Behrens 		return ret;
33238dabb742SStefan Behrens 	}
33248dabb742SStefan Behrens 
3325b382a324SJan Schmidt 	btrfs_qgroup_rescan_resume(fs_info);
3326b0643e59SDennis Zhou 	btrfs_discard_resume(fs_info);
3327b382a324SJan Schmidt 
33284bbcaa64SEric Sandeen 	if (!fs_info->uuid_root) {
332905135f59SDavid Sterba 		btrfs_info(fs_info, "creating UUID tree");
3330f7a81ea4SStefan Behrens 		ret = btrfs_create_uuid_tree(fs_info);
3331f7a81ea4SStefan Behrens 		if (ret) {
333205135f59SDavid Sterba 			btrfs_warn(fs_info,
333305135f59SDavid Sterba 				"failed to create the UUID tree: %d", ret);
33346bccf3abSJeff Mahoney 			close_ctree(fs_info);
3335f7a81ea4SStefan Behrens 			return ret;
3336f7a81ea4SStefan Behrens 		}
33370b246afaSJeff Mahoney 	} else if (btrfs_test_opt(fs_info, RESCAN_UUID_TREE) ||
33384bbcaa64SEric Sandeen 		   fs_info->generation !=
33394bbcaa64SEric Sandeen 				btrfs_super_uuid_tree_generation(disk_super)) {
334005135f59SDavid Sterba 		btrfs_info(fs_info, "checking UUID tree");
334170f80175SStefan Behrens 		ret = btrfs_check_uuid_tree(fs_info);
334270f80175SStefan Behrens 		if (ret) {
334305135f59SDavid Sterba 			btrfs_warn(fs_info,
334405135f59SDavid Sterba 				"failed to check the UUID tree: %d", ret);
33456bccf3abSJeff Mahoney 			close_ctree(fs_info);
334670f80175SStefan Behrens 			return ret;
334770f80175SStefan Behrens 		}
334870f80175SStefan Behrens 	} else {
3349afcdd129SJosef Bacik 		set_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags);
3350f7a81ea4SStefan Behrens 	}
3351afcdd129SJosef Bacik 	set_bit(BTRFS_FS_OPEN, &fs_info->flags);
335247ab2a6cSJosef Bacik 
33538dcddfa0SQu Wenruo 	/*
33548dcddfa0SQu Wenruo 	 * backuproot only affect mount behavior, and if open_ctree succeeded,
33558dcddfa0SQu Wenruo 	 * no need to keep the flag
33568dcddfa0SQu Wenruo 	 */
33578dcddfa0SQu Wenruo 	btrfs_clear_opt(fs_info->mount_opt, USEBACKUPROOT);
33588dcddfa0SQu Wenruo 
3359ad2b2c80SAl Viro 	return 0;
336039279cc3SChris Mason 
3361bcef60f2SArne Jansen fail_qgroup:
3362bcef60f2SArne Jansen 	btrfs_free_qgroup_config(fs_info);
33637c2ca468SChris Mason fail_trans_kthread:
33647c2ca468SChris Mason 	kthread_stop(fs_info->transaction_kthread);
33652ff7e61eSJeff Mahoney 	btrfs_cleanup_transaction(fs_info);
3366faa2dbf0SJosef Bacik 	btrfs_free_fs_roots(fs_info);
33673f157a2fSChris Mason fail_cleaner:
3368a74a4b97SChris Mason 	kthread_stop(fs_info->cleaner_kthread);
33697c2ca468SChris Mason 
33707c2ca468SChris Mason 	/*
33717c2ca468SChris Mason 	 * make sure we're done with the btree inode before we stop our
33727c2ca468SChris Mason 	 * kthreads
33737c2ca468SChris Mason 	 */
33747c2ca468SChris Mason 	filemap_write_and_wait(fs_info->btree_inode->i_mapping);
33757c2ca468SChris Mason 
33762365dd3cSAnand Jain fail_sysfs:
33776618a59bSAnand Jain 	btrfs_sysfs_remove_mounted(fs_info);
33782365dd3cSAnand Jain 
3379b7c35e81SAnand Jain fail_fsdev_sysfs:
3380b7c35e81SAnand Jain 	btrfs_sysfs_remove_fsid(fs_info->fs_devices);
3381b7c35e81SAnand Jain 
33821b1d1f66SJosef Bacik fail_block_groups:
338354067ae9SJosef Bacik 	btrfs_put_block_group_cache(fs_info);
3384af31f5e5SChris Mason 
3385af31f5e5SChris Mason fail_tree_roots:
33864273eaffSAnand Jain 	free_root_pointers(fs_info, true);
33872b8195bbSMiao Xie 	invalidate_inode_pages2(fs_info->btree_inode->i_mapping);
3388af31f5e5SChris Mason 
338939279cc3SChris Mason fail_sb_buffer:
33907abadb64SLiu Bo 	btrfs_stop_all_workers(fs_info);
33915cdd7db6SFilipe Manana 	btrfs_free_block_groups(fs_info);
339216cdcec7SMiao Xie fail_alloc:
3393586e46e2SIlya Dryomov 	btrfs_mapping_tree_free(&fs_info->mapping_tree);
3394586e46e2SIlya Dryomov 
33954543df7eSChris Mason 	iput(fs_info->btree_inode);
339676dda93cSYan, Zheng fail_srcu:
339776dda93cSYan, Zheng 	cleanup_srcu_struct(&fs_info->subvol_srcu);
33987e662854SQinghuang Feng fail:
3399586e46e2SIlya Dryomov 	btrfs_close_devices(fs_info->fs_devices);
3400ad2b2c80SAl Viro 	return err;
3401eb60ceacSChris Mason }
3402663faf9fSMasami Hiramatsu ALLOW_ERROR_INJECTION(open_ctree, ERRNO);
3403eb60ceacSChris Mason 
3404f2984462SChris Mason static void btrfs_end_buffer_write_sync(struct buffer_head *bh, int uptodate)
3405f2984462SChris Mason {
3406f2984462SChris Mason 	if (uptodate) {
3407f2984462SChris Mason 		set_buffer_uptodate(bh);
3408f2984462SChris Mason 	} else {
3409442a4f63SStefan Behrens 		struct btrfs_device *device = (struct btrfs_device *)
3410442a4f63SStefan Behrens 			bh->b_private;
3411442a4f63SStefan Behrens 
3412fb456252SJeff Mahoney 		btrfs_warn_rl_in_rcu(device->fs_info,
3413b14af3b4SDavid Sterba 				"lost page write due to IO error on %s",
3414606686eeSJosef Bacik 					  rcu_str_deref(device->name));
341501327610SNicholas D Steeves 		/* note, we don't set_buffer_write_io_error because we have
34161259ab75SChris Mason 		 * our own ways of dealing with the IO errors
34171259ab75SChris Mason 		 */
3418f2984462SChris Mason 		clear_buffer_uptodate(bh);
3419442a4f63SStefan Behrens 		btrfs_dev_stat_inc_and_print(device, BTRFS_DEV_STAT_WRITE_ERRS);
3420f2984462SChris Mason 	}
3421f2984462SChris Mason 	unlock_buffer(bh);
3422f2984462SChris Mason 	put_bh(bh);
3423f2984462SChris Mason }
3424f2984462SChris Mason 
342529c36d72SAnand Jain int btrfs_read_dev_one_super(struct block_device *bdev, int copy_num,
342629c36d72SAnand Jain 			struct buffer_head **bh_ret)
342729c36d72SAnand Jain {
342829c36d72SAnand Jain 	struct buffer_head *bh;
342929c36d72SAnand Jain 	struct btrfs_super_block *super;
343029c36d72SAnand Jain 	u64 bytenr;
343129c36d72SAnand Jain 
343229c36d72SAnand Jain 	bytenr = btrfs_sb_offset(copy_num);
343329c36d72SAnand Jain 	if (bytenr + BTRFS_SUPER_INFO_SIZE >= i_size_read(bdev->bd_inode))
343429c36d72SAnand Jain 		return -EINVAL;
343529c36d72SAnand Jain 
34369f6d2510SDavid Sterba 	bh = __bread(bdev, bytenr / BTRFS_BDEV_BLOCKSIZE, BTRFS_SUPER_INFO_SIZE);
343729c36d72SAnand Jain 	/*
343829c36d72SAnand Jain 	 * If we fail to read from the underlying devices, as of now
343929c36d72SAnand Jain 	 * the best option we have is to mark it EIO.
344029c36d72SAnand Jain 	 */
344129c36d72SAnand Jain 	if (!bh)
344229c36d72SAnand Jain 		return -EIO;
344329c36d72SAnand Jain 
344429c36d72SAnand Jain 	super = (struct btrfs_super_block *)bh->b_data;
344529c36d72SAnand Jain 	if (btrfs_super_bytenr(super) != bytenr ||
344629c36d72SAnand Jain 		    btrfs_super_magic(super) != BTRFS_MAGIC) {
344729c36d72SAnand Jain 		brelse(bh);
344829c36d72SAnand Jain 		return -EINVAL;
344929c36d72SAnand Jain 	}
345029c36d72SAnand Jain 
345129c36d72SAnand Jain 	*bh_ret = bh;
345229c36d72SAnand Jain 	return 0;
345329c36d72SAnand Jain }
345429c36d72SAnand Jain 
345529c36d72SAnand Jain 
3456a512bbf8SYan Zheng struct buffer_head *btrfs_read_dev_super(struct block_device *bdev)
3457a512bbf8SYan Zheng {
3458a512bbf8SYan Zheng 	struct buffer_head *bh;
3459a512bbf8SYan Zheng 	struct buffer_head *latest = NULL;
3460a512bbf8SYan Zheng 	struct btrfs_super_block *super;
3461a512bbf8SYan Zheng 	int i;
3462a512bbf8SYan Zheng 	u64 transid = 0;
346392fc03fbSAnand Jain 	int ret = -EINVAL;
3464a512bbf8SYan Zheng 
3465a512bbf8SYan Zheng 	/* we would like to check all the supers, but that would make
3466a512bbf8SYan Zheng 	 * a btrfs mount succeed after a mkfs from a different FS.
3467a512bbf8SYan Zheng 	 * So, we need to add a special mount option to scan for
3468a512bbf8SYan Zheng 	 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
3469a512bbf8SYan Zheng 	 */
3470a512bbf8SYan Zheng 	for (i = 0; i < 1; i++) {
347129c36d72SAnand Jain 		ret = btrfs_read_dev_one_super(bdev, i, &bh);
347229c36d72SAnand Jain 		if (ret)
3473a512bbf8SYan Zheng 			continue;
3474a512bbf8SYan Zheng 
3475a512bbf8SYan Zheng 		super = (struct btrfs_super_block *)bh->b_data;
3476a512bbf8SYan Zheng 
3477a512bbf8SYan Zheng 		if (!latest || btrfs_super_generation(super) > transid) {
3478a512bbf8SYan Zheng 			brelse(latest);
3479a512bbf8SYan Zheng 			latest = bh;
3480a512bbf8SYan Zheng 			transid = btrfs_super_generation(super);
3481a512bbf8SYan Zheng 		} else {
3482a512bbf8SYan Zheng 			brelse(bh);
3483a512bbf8SYan Zheng 		}
3484a512bbf8SYan Zheng 	}
348592fc03fbSAnand Jain 
348692fc03fbSAnand Jain 	if (!latest)
348792fc03fbSAnand Jain 		return ERR_PTR(ret);
348892fc03fbSAnand Jain 
3489a512bbf8SYan Zheng 	return latest;
3490a512bbf8SYan Zheng }
3491a512bbf8SYan Zheng 
34924eedeb75SHisashi Hifumi /*
3493abbb3b8eSDavid Sterba  * Write superblock @sb to the @device. Do not wait for completion, all the
3494abbb3b8eSDavid Sterba  * buffer heads we write are pinned.
34954eedeb75SHisashi Hifumi  *
3496abbb3b8eSDavid Sterba  * Write @max_mirrors copies of the superblock, where 0 means default that fit
3497abbb3b8eSDavid Sterba  * the expected device size at commit time. Note that max_mirrors must be
3498abbb3b8eSDavid Sterba  * same for write and wait phases.
34994eedeb75SHisashi Hifumi  *
3500abbb3b8eSDavid Sterba  * Return number of errors when buffer head is not found or submission fails.
35014eedeb75SHisashi Hifumi  */
3502a512bbf8SYan Zheng static int write_dev_supers(struct btrfs_device *device,
3503abbb3b8eSDavid Sterba 			    struct btrfs_super_block *sb, int max_mirrors)
3504a512bbf8SYan Zheng {
3505d5178578SJohannes Thumshirn 	struct btrfs_fs_info *fs_info = device->fs_info;
3506d5178578SJohannes Thumshirn 	SHASH_DESC_ON_STACK(shash, fs_info->csum_shash);
3507a512bbf8SYan Zheng 	struct buffer_head *bh;
3508a512bbf8SYan Zheng 	int i;
3509a512bbf8SYan Zheng 	int ret;
3510a512bbf8SYan Zheng 	int errors = 0;
3511a512bbf8SYan Zheng 	u64 bytenr;
35121b9e619cSOmar Sandoval 	int op_flags;
3513a512bbf8SYan Zheng 
3514a512bbf8SYan Zheng 	if (max_mirrors == 0)
3515a512bbf8SYan Zheng 		max_mirrors = BTRFS_SUPER_MIRROR_MAX;
3516a512bbf8SYan Zheng 
3517d5178578SJohannes Thumshirn 	shash->tfm = fs_info->csum_shash;
3518d5178578SJohannes Thumshirn 
3519a512bbf8SYan Zheng 	for (i = 0; i < max_mirrors; i++) {
3520a512bbf8SYan Zheng 		bytenr = btrfs_sb_offset(i);
3521935e5cc9SMiao Xie 		if (bytenr + BTRFS_SUPER_INFO_SIZE >=
3522935e5cc9SMiao Xie 		    device->commit_total_bytes)
3523a512bbf8SYan Zheng 			break;
3524a512bbf8SYan Zheng 
3525a512bbf8SYan Zheng 		btrfs_set_super_bytenr(sb, bytenr);
3526a512bbf8SYan Zheng 
3527d5178578SJohannes Thumshirn 		crypto_shash_init(shash);
3528d5178578SJohannes Thumshirn 		crypto_shash_update(shash, (const char *)sb + BTRFS_CSUM_SIZE,
3529abbb3b8eSDavid Sterba 				    BTRFS_SUPER_INFO_SIZE - BTRFS_CSUM_SIZE);
3530d5178578SJohannes Thumshirn 		crypto_shash_final(shash, sb->csum);
3531a512bbf8SYan Zheng 
3532abbb3b8eSDavid Sterba 		/* One reference for us, and we leave it for the caller */
35339f6d2510SDavid Sterba 		bh = __getblk(device->bdev, bytenr / BTRFS_BDEV_BLOCKSIZE,
3534a512bbf8SYan Zheng 			      BTRFS_SUPER_INFO_SIZE);
3535634554dcSJosef Bacik 		if (!bh) {
3536fb456252SJeff Mahoney 			btrfs_err(device->fs_info,
3537f14d104dSDavid Sterba 			    "couldn't get super buffer head for bytenr %llu",
3538f14d104dSDavid Sterba 			    bytenr);
3539634554dcSJosef Bacik 			errors++;
3540634554dcSJosef Bacik 			continue;
3541634554dcSJosef Bacik 		}
3542634554dcSJosef Bacik 
3543a512bbf8SYan Zheng 		memcpy(bh->b_data, sb, BTRFS_SUPER_INFO_SIZE);
3544a512bbf8SYan Zheng 
35454eedeb75SHisashi Hifumi 		/* one reference for submit_bh */
3546a512bbf8SYan Zheng 		get_bh(bh);
35474eedeb75SHisashi Hifumi 
35484eedeb75SHisashi Hifumi 		set_buffer_uptodate(bh);
3549a512bbf8SYan Zheng 		lock_buffer(bh);
3550a512bbf8SYan Zheng 		bh->b_end_io = btrfs_end_buffer_write_sync;
3551442a4f63SStefan Behrens 		bh->b_private = device;
3552a512bbf8SYan Zheng 
3553387125fcSChris Mason 		/*
3554387125fcSChris Mason 		 * we fua the first super.  The others we allow
3555387125fcSChris Mason 		 * to go down lazy.
3556387125fcSChris Mason 		 */
35571b9e619cSOmar Sandoval 		op_flags = REQ_SYNC | REQ_META | REQ_PRIO;
35581b9e619cSOmar Sandoval 		if (i == 0 && !btrfs_test_opt(device->fs_info, NOBARRIER))
35591b9e619cSOmar Sandoval 			op_flags |= REQ_FUA;
35601b9e619cSOmar Sandoval 		ret = btrfsic_submit_bh(REQ_OP_WRITE, op_flags, bh);
35614eedeb75SHisashi Hifumi 		if (ret)
3562a512bbf8SYan Zheng 			errors++;
3563a512bbf8SYan Zheng 	}
3564a512bbf8SYan Zheng 	return errors < i ? 0 : -1;
3565a512bbf8SYan Zheng }
3566a512bbf8SYan Zheng 
3567387125fcSChris Mason /*
3568abbb3b8eSDavid Sterba  * Wait for write completion of superblocks done by write_dev_supers,
3569abbb3b8eSDavid Sterba  * @max_mirrors same for write and wait phases.
3570abbb3b8eSDavid Sterba  *
3571abbb3b8eSDavid Sterba  * Return number of errors when buffer head is not found or not marked up to
3572abbb3b8eSDavid Sterba  * date.
3573abbb3b8eSDavid Sterba  */
3574abbb3b8eSDavid Sterba static int wait_dev_supers(struct btrfs_device *device, int max_mirrors)
3575abbb3b8eSDavid Sterba {
3576abbb3b8eSDavid Sterba 	struct buffer_head *bh;
3577abbb3b8eSDavid Sterba 	int i;
3578abbb3b8eSDavid Sterba 	int errors = 0;
3579b6a535faSHoward McLauchlan 	bool primary_failed = false;
3580abbb3b8eSDavid Sterba 	u64 bytenr;
3581abbb3b8eSDavid Sterba 
3582abbb3b8eSDavid Sterba 	if (max_mirrors == 0)
3583abbb3b8eSDavid Sterba 		max_mirrors = BTRFS_SUPER_MIRROR_MAX;
3584abbb3b8eSDavid Sterba 
3585abbb3b8eSDavid Sterba 	for (i = 0; i < max_mirrors; i++) {
3586abbb3b8eSDavid Sterba 		bytenr = btrfs_sb_offset(i);
3587abbb3b8eSDavid Sterba 		if (bytenr + BTRFS_SUPER_INFO_SIZE >=
3588abbb3b8eSDavid Sterba 		    device->commit_total_bytes)
3589abbb3b8eSDavid Sterba 			break;
3590abbb3b8eSDavid Sterba 
35919f6d2510SDavid Sterba 		bh = __find_get_block(device->bdev,
35929f6d2510SDavid Sterba 				      bytenr / BTRFS_BDEV_BLOCKSIZE,
3593abbb3b8eSDavid Sterba 				      BTRFS_SUPER_INFO_SIZE);
3594abbb3b8eSDavid Sterba 		if (!bh) {
3595abbb3b8eSDavid Sterba 			errors++;
3596b6a535faSHoward McLauchlan 			if (i == 0)
3597b6a535faSHoward McLauchlan 				primary_failed = true;
3598abbb3b8eSDavid Sterba 			continue;
3599abbb3b8eSDavid Sterba 		}
3600abbb3b8eSDavid Sterba 		wait_on_buffer(bh);
3601b6a535faSHoward McLauchlan 		if (!buffer_uptodate(bh)) {
3602abbb3b8eSDavid Sterba 			errors++;
3603b6a535faSHoward McLauchlan 			if (i == 0)
3604b6a535faSHoward McLauchlan 				primary_failed = true;
3605b6a535faSHoward McLauchlan 		}
3606abbb3b8eSDavid Sterba 
3607abbb3b8eSDavid Sterba 		/* drop our reference */
3608abbb3b8eSDavid Sterba 		brelse(bh);
3609abbb3b8eSDavid Sterba 
3610abbb3b8eSDavid Sterba 		/* drop the reference from the writing run */
3611abbb3b8eSDavid Sterba 		brelse(bh);
3612abbb3b8eSDavid Sterba 	}
3613abbb3b8eSDavid Sterba 
3614b6a535faSHoward McLauchlan 	/* log error, force error return */
3615b6a535faSHoward McLauchlan 	if (primary_failed) {
3616b6a535faSHoward McLauchlan 		btrfs_err(device->fs_info, "error writing primary super block to device %llu",
3617b6a535faSHoward McLauchlan 			  device->devid);
3618b6a535faSHoward McLauchlan 		return -1;
3619b6a535faSHoward McLauchlan 	}
3620b6a535faSHoward McLauchlan 
3621abbb3b8eSDavid Sterba 	return errors < i ? 0 : -1;
3622abbb3b8eSDavid Sterba }
3623abbb3b8eSDavid Sterba 
3624abbb3b8eSDavid Sterba /*
3625387125fcSChris Mason  * endio for the write_dev_flush, this will wake anyone waiting
3626387125fcSChris Mason  * for the barrier when it is done
3627387125fcSChris Mason  */
36284246a0b6SChristoph Hellwig static void btrfs_end_empty_barrier(struct bio *bio)
3629387125fcSChris Mason {
3630387125fcSChris Mason 	complete(bio->bi_private);
3631387125fcSChris Mason }
3632387125fcSChris Mason 
3633387125fcSChris Mason /*
36344fc6441aSAnand Jain  * Submit a flush request to the device if it supports it. Error handling is
36354fc6441aSAnand Jain  * done in the waiting counterpart.
3636387125fcSChris Mason  */
36374fc6441aSAnand Jain static void write_dev_flush(struct btrfs_device *device)
3638387125fcSChris Mason {
3639c2a9c7abSAnand Jain 	struct request_queue *q = bdev_get_queue(device->bdev);
3640e0ae9994SDavid Sterba 	struct bio *bio = device->flush_bio;
3641387125fcSChris Mason 
3642c2a9c7abSAnand Jain 	if (!test_bit(QUEUE_FLAG_WC, &q->queue_flags))
36434fc6441aSAnand Jain 		return;
3644387125fcSChris Mason 
3645e0ae9994SDavid Sterba 	bio_reset(bio);
3646387125fcSChris Mason 	bio->bi_end_io = btrfs_end_empty_barrier;
364774d46992SChristoph Hellwig 	bio_set_dev(bio, device->bdev);
36488d910125SJan Kara 	bio->bi_opf = REQ_OP_WRITE | REQ_SYNC | REQ_PREFLUSH;
3649387125fcSChris Mason 	init_completion(&device->flush_wait);
3650387125fcSChris Mason 	bio->bi_private = &device->flush_wait;
3651387125fcSChris Mason 
365243a01111SLu Fengqi 	btrfsic_submit_bio(bio);
36531c3063b6SAnand Jain 	set_bit(BTRFS_DEV_STATE_FLUSH_SENT, &device->dev_state);
36544fc6441aSAnand Jain }
3655387125fcSChris Mason 
36564fc6441aSAnand Jain /*
36574fc6441aSAnand Jain  * If the flush bio has been submitted by write_dev_flush, wait for it.
36584fc6441aSAnand Jain  */
36598c27cb35SLinus Torvalds static blk_status_t wait_dev_flush(struct btrfs_device *device)
36604fc6441aSAnand Jain {
36614fc6441aSAnand Jain 	struct bio *bio = device->flush_bio;
36624fc6441aSAnand Jain 
36631c3063b6SAnand Jain 	if (!test_bit(BTRFS_DEV_STATE_FLUSH_SENT, &device->dev_state))
366458efbc9fSOmar Sandoval 		return BLK_STS_OK;
36654fc6441aSAnand Jain 
36661c3063b6SAnand Jain 	clear_bit(BTRFS_DEV_STATE_FLUSH_SENT, &device->dev_state);
36672980d574SDavid Sterba 	wait_for_completion_io(&device->flush_wait);
36684fc6441aSAnand Jain 
36698c27cb35SLinus Torvalds 	return bio->bi_status;
3670387125fcSChris Mason }
3671387125fcSChris Mason 
3672d10b82feSQu Wenruo static int check_barrier_error(struct btrfs_fs_info *fs_info)
3673401b41e5SAnand Jain {
36746528b99dSAnand Jain 	if (!btrfs_check_rw_degradable(fs_info, NULL))
3675401b41e5SAnand Jain 		return -EIO;
3676387125fcSChris Mason 	return 0;
3677387125fcSChris Mason }
3678387125fcSChris Mason 
3679387125fcSChris Mason /*
3680387125fcSChris Mason  * send an empty flush down to each device in parallel,
3681387125fcSChris Mason  * then wait for them
3682387125fcSChris Mason  */
3683387125fcSChris Mason static int barrier_all_devices(struct btrfs_fs_info *info)
3684387125fcSChris Mason {
3685387125fcSChris Mason 	struct list_head *head;
3686387125fcSChris Mason 	struct btrfs_device *dev;
36875af3e8ccSStefan Behrens 	int errors_wait = 0;
36884e4cbee9SChristoph Hellwig 	blk_status_t ret;
3689387125fcSChris Mason 
36901538e6c5SDavid Sterba 	lockdep_assert_held(&info->fs_devices->device_list_mutex);
3691387125fcSChris Mason 	/* send down all the barriers */
3692387125fcSChris Mason 	head = &info->fs_devices->devices;
36931538e6c5SDavid Sterba 	list_for_each_entry(dev, head, dev_list) {
3694e6e674bdSAnand Jain 		if (test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state))
3695f88ba6a2SHidetoshi Seto 			continue;
3696cea7c8bfSAnand Jain 		if (!dev->bdev)
3697387125fcSChris Mason 			continue;
3698e12c9621SAnand Jain 		if (!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &dev->dev_state) ||
3699ebbede42SAnand Jain 		    !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state))
3700387125fcSChris Mason 			continue;
3701387125fcSChris Mason 
37024fc6441aSAnand Jain 		write_dev_flush(dev);
370358efbc9fSOmar Sandoval 		dev->last_flush_error = BLK_STS_OK;
3704387125fcSChris Mason 	}
3705387125fcSChris Mason 
3706387125fcSChris Mason 	/* wait for all the barriers */
37071538e6c5SDavid Sterba 	list_for_each_entry(dev, head, dev_list) {
3708e6e674bdSAnand Jain 		if (test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state))
3709f88ba6a2SHidetoshi Seto 			continue;
3710387125fcSChris Mason 		if (!dev->bdev) {
37115af3e8ccSStefan Behrens 			errors_wait++;
3712387125fcSChris Mason 			continue;
3713387125fcSChris Mason 		}
3714e12c9621SAnand Jain 		if (!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &dev->dev_state) ||
3715ebbede42SAnand Jain 		    !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state))
3716387125fcSChris Mason 			continue;
3717387125fcSChris Mason 
37184fc6441aSAnand Jain 		ret = wait_dev_flush(dev);
3719401b41e5SAnand Jain 		if (ret) {
3720401b41e5SAnand Jain 			dev->last_flush_error = ret;
372166b4993eSDavid Sterba 			btrfs_dev_stat_inc_and_print(dev,
372266b4993eSDavid Sterba 					BTRFS_DEV_STAT_FLUSH_ERRS);
37235af3e8ccSStefan Behrens 			errors_wait++;
3724387125fcSChris Mason 		}
3725401b41e5SAnand Jain 	}
3726401b41e5SAnand Jain 
3727cea7c8bfSAnand Jain 	if (errors_wait) {
3728401b41e5SAnand Jain 		/*
3729401b41e5SAnand Jain 		 * At some point we need the status of all disks
3730401b41e5SAnand Jain 		 * to arrive at the volume status. So error checking
3731401b41e5SAnand Jain 		 * is being pushed to a separate loop.
3732401b41e5SAnand Jain 		 */
3733d10b82feSQu Wenruo 		return check_barrier_error(info);
3734401b41e5SAnand Jain 	}
3735387125fcSChris Mason 	return 0;
3736387125fcSChris Mason }
3737387125fcSChris Mason 
3738943c6e99SZhao Lei int btrfs_get_num_tolerated_disk_barrier_failures(u64 flags)
3739943c6e99SZhao Lei {
37408789f4feSZhao Lei 	int raid_type;
37418789f4feSZhao Lei 	int min_tolerated = INT_MAX;
3742943c6e99SZhao Lei 
37438789f4feSZhao Lei 	if ((flags & BTRFS_BLOCK_GROUP_PROFILE_MASK) == 0 ||
37448789f4feSZhao Lei 	    (flags & BTRFS_AVAIL_ALLOC_BIT_SINGLE))
37458c3e3582SDavid Sterba 		min_tolerated = min_t(int, min_tolerated,
37468789f4feSZhao Lei 				    btrfs_raid_array[BTRFS_RAID_SINGLE].
37478789f4feSZhao Lei 				    tolerated_failures);
3748943c6e99SZhao Lei 
37498789f4feSZhao Lei 	for (raid_type = 0; raid_type < BTRFS_NR_RAID_TYPES; raid_type++) {
37508789f4feSZhao Lei 		if (raid_type == BTRFS_RAID_SINGLE)
37518789f4feSZhao Lei 			continue;
375241a6e891SAnand Jain 		if (!(flags & btrfs_raid_array[raid_type].bg_flag))
37538789f4feSZhao Lei 			continue;
37548c3e3582SDavid Sterba 		min_tolerated = min_t(int, min_tolerated,
37558789f4feSZhao Lei 				    btrfs_raid_array[raid_type].
37568789f4feSZhao Lei 				    tolerated_failures);
37578789f4feSZhao Lei 	}
3758943c6e99SZhao Lei 
37598789f4feSZhao Lei 	if (min_tolerated == INT_MAX) {
3760ab8d0fc4SJeff Mahoney 		pr_warn("BTRFS: unknown raid flag: %llu", flags);
37618789f4feSZhao Lei 		min_tolerated = 0;
37628789f4feSZhao Lei 	}
37638789f4feSZhao Lei 
37648789f4feSZhao Lei 	return min_tolerated;
3765943c6e99SZhao Lei }
3766943c6e99SZhao Lei 
3767eece6a9cSDavid Sterba int write_all_supers(struct btrfs_fs_info *fs_info, int max_mirrors)
3768f2984462SChris Mason {
3769e5e9a520SChris Mason 	struct list_head *head;
3770f2984462SChris Mason 	struct btrfs_device *dev;
3771a061fc8dSChris Mason 	struct btrfs_super_block *sb;
3772f2984462SChris Mason 	struct btrfs_dev_item *dev_item;
3773f2984462SChris Mason 	int ret;
3774f2984462SChris Mason 	int do_barriers;
3775a236aed1SChris Mason 	int max_errors;
3776a236aed1SChris Mason 	int total_errors = 0;
3777a061fc8dSChris Mason 	u64 flags;
3778f2984462SChris Mason 
37790b246afaSJeff Mahoney 	do_barriers = !btrfs_test_opt(fs_info, NOBARRIER);
3780fed3b381SLiu Bo 
3781fed3b381SLiu Bo 	/*
3782fed3b381SLiu Bo 	 * max_mirrors == 0 indicates we're from commit_transaction,
3783fed3b381SLiu Bo 	 * not from fsync where the tree roots in fs_info have not
3784fed3b381SLiu Bo 	 * been consistent on disk.
3785fed3b381SLiu Bo 	 */
3786fed3b381SLiu Bo 	if (max_mirrors == 0)
37870b246afaSJeff Mahoney 		backup_super_roots(fs_info);
3788f2984462SChris Mason 
37890b246afaSJeff Mahoney 	sb = fs_info->super_for_commit;
3790a061fc8dSChris Mason 	dev_item = &sb->dev_item;
3791e5e9a520SChris Mason 
37920b246afaSJeff Mahoney 	mutex_lock(&fs_info->fs_devices->device_list_mutex);
37930b246afaSJeff Mahoney 	head = &fs_info->fs_devices->devices;
37940b246afaSJeff Mahoney 	max_errors = btrfs_super_num_devices(fs_info->super_copy) - 1;
3795387125fcSChris Mason 
37965af3e8ccSStefan Behrens 	if (do_barriers) {
37970b246afaSJeff Mahoney 		ret = barrier_all_devices(fs_info);
37985af3e8ccSStefan Behrens 		if (ret) {
37995af3e8ccSStefan Behrens 			mutex_unlock(
38000b246afaSJeff Mahoney 				&fs_info->fs_devices->device_list_mutex);
38010b246afaSJeff Mahoney 			btrfs_handle_fs_error(fs_info, ret,
38025af3e8ccSStefan Behrens 					      "errors while submitting device barriers.");
38035af3e8ccSStefan Behrens 			return ret;
38045af3e8ccSStefan Behrens 		}
38055af3e8ccSStefan Behrens 	}
3806387125fcSChris Mason 
38071538e6c5SDavid Sterba 	list_for_each_entry(dev, head, dev_list) {
3808dfe25020SChris Mason 		if (!dev->bdev) {
3809dfe25020SChris Mason 			total_errors++;
3810dfe25020SChris Mason 			continue;
3811dfe25020SChris Mason 		}
3812e12c9621SAnand Jain 		if (!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &dev->dev_state) ||
3813ebbede42SAnand Jain 		    !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state))
3814dfe25020SChris Mason 			continue;
3815dfe25020SChris Mason 
38162b82032cSYan Zheng 		btrfs_set_stack_device_generation(dev_item, 0);
3817a061fc8dSChris Mason 		btrfs_set_stack_device_type(dev_item, dev->type);
3818a061fc8dSChris Mason 		btrfs_set_stack_device_id(dev_item, dev->devid);
38197df69d3eSMiao Xie 		btrfs_set_stack_device_total_bytes(dev_item,
3820935e5cc9SMiao Xie 						   dev->commit_total_bytes);
3821ce7213c7SMiao Xie 		btrfs_set_stack_device_bytes_used(dev_item,
3822ce7213c7SMiao Xie 						  dev->commit_bytes_used);
3823a061fc8dSChris Mason 		btrfs_set_stack_device_io_align(dev_item, dev->io_align);
3824a061fc8dSChris Mason 		btrfs_set_stack_device_io_width(dev_item, dev->io_width);
3825a061fc8dSChris Mason 		btrfs_set_stack_device_sector_size(dev_item, dev->sector_size);
3826a061fc8dSChris Mason 		memcpy(dev_item->uuid, dev->uuid, BTRFS_UUID_SIZE);
38277239ff4bSNikolay Borisov 		memcpy(dev_item->fsid, dev->fs_devices->metadata_uuid,
38287239ff4bSNikolay Borisov 		       BTRFS_FSID_SIZE);
3829a512bbf8SYan Zheng 
3830a061fc8dSChris Mason 		flags = btrfs_super_flags(sb);
3831a061fc8dSChris Mason 		btrfs_set_super_flags(sb, flags | BTRFS_HEADER_FLAG_WRITTEN);
3832f2984462SChris Mason 
383375cb857dSQu Wenruo 		ret = btrfs_validate_write_super(fs_info, sb);
383475cb857dSQu Wenruo 		if (ret < 0) {
383575cb857dSQu Wenruo 			mutex_unlock(&fs_info->fs_devices->device_list_mutex);
383675cb857dSQu Wenruo 			btrfs_handle_fs_error(fs_info, -EUCLEAN,
383775cb857dSQu Wenruo 				"unexpected superblock corruption detected");
383875cb857dSQu Wenruo 			return -EUCLEAN;
383975cb857dSQu Wenruo 		}
384075cb857dSQu Wenruo 
3841abbb3b8eSDavid Sterba 		ret = write_dev_supers(dev, sb, max_mirrors);
3842a236aed1SChris Mason 		if (ret)
3843a236aed1SChris Mason 			total_errors++;
3844f2984462SChris Mason 	}
3845a236aed1SChris Mason 	if (total_errors > max_errors) {
38460b246afaSJeff Mahoney 		btrfs_err(fs_info, "%d errors while writing supers",
3847d397712bSChris Mason 			  total_errors);
38480b246afaSJeff Mahoney 		mutex_unlock(&fs_info->fs_devices->device_list_mutex);
384979787eaaSJeff Mahoney 
38509d565ba4SStefan Behrens 		/* FUA is masked off if unsupported and can't be the reason */
38510b246afaSJeff Mahoney 		btrfs_handle_fs_error(fs_info, -EIO,
38520b246afaSJeff Mahoney 				      "%d errors while writing supers",
38530b246afaSJeff Mahoney 				      total_errors);
38549d565ba4SStefan Behrens 		return -EIO;
3855a236aed1SChris Mason 	}
3856f2984462SChris Mason 
3857a512bbf8SYan Zheng 	total_errors = 0;
38581538e6c5SDavid Sterba 	list_for_each_entry(dev, head, dev_list) {
3859dfe25020SChris Mason 		if (!dev->bdev)
3860dfe25020SChris Mason 			continue;
3861e12c9621SAnand Jain 		if (!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &dev->dev_state) ||
3862ebbede42SAnand Jain 		    !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state))
3863dfe25020SChris Mason 			continue;
3864dfe25020SChris Mason 
3865abbb3b8eSDavid Sterba 		ret = wait_dev_supers(dev, max_mirrors);
3866a512bbf8SYan Zheng 		if (ret)
38671259ab75SChris Mason 			total_errors++;
3868f2984462SChris Mason 	}
38690b246afaSJeff Mahoney 	mutex_unlock(&fs_info->fs_devices->device_list_mutex);
3870a236aed1SChris Mason 	if (total_errors > max_errors) {
38710b246afaSJeff Mahoney 		btrfs_handle_fs_error(fs_info, -EIO,
38720b246afaSJeff Mahoney 				      "%d errors while writing supers",
38730b246afaSJeff Mahoney 				      total_errors);
387479787eaaSJeff Mahoney 		return -EIO;
3875a236aed1SChris Mason 	}
3876f2984462SChris Mason 	return 0;
3877f2984462SChris Mason }
3878f2984462SChris Mason 
3879cb517eabSMiao Xie /* Drop a fs root from the radix tree and free it. */
3880cb517eabSMiao Xie void btrfs_drop_and_free_fs_root(struct btrfs_fs_info *fs_info,
3881cb517eabSMiao Xie 				  struct btrfs_root *root)
38822619ba1fSChris Mason {
38834df27c4dSYan, Zheng 	spin_lock(&fs_info->fs_roots_radix_lock);
38842619ba1fSChris Mason 	radix_tree_delete(&fs_info->fs_roots_radix,
38852619ba1fSChris Mason 			  (unsigned long)root->root_key.objectid);
3886af01d2e5SJosef Bacik 	if (test_and_clear_bit(BTRFS_ROOT_IN_RADIX, &root->state))
388700246528SJosef Bacik 		btrfs_put_root(root);
38884df27c4dSYan, Zheng 	spin_unlock(&fs_info->fs_roots_radix_lock);
388976dda93cSYan, Zheng 
389076dda93cSYan, Zheng 	if (btrfs_root_refs(&root->root_item) == 0)
389176dda93cSYan, Zheng 		synchronize_srcu(&fs_info->subvol_srcu);
389276dda93cSYan, Zheng 
38931c1ea4f7SLiu Bo 	if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) {
38943321719eSLiu Bo 		btrfs_free_log(NULL, root);
38951c1ea4f7SLiu Bo 		if (root->reloc_root) {
38961c1ea4f7SLiu Bo 			free_extent_buffer(root->reloc_root->node);
38971c1ea4f7SLiu Bo 			free_extent_buffer(root->reloc_root->commit_root);
389800246528SJosef Bacik 			btrfs_put_root(root->reloc_root);
38991c1ea4f7SLiu Bo 			root->reloc_root = NULL;
39001c1ea4f7SLiu Bo 		}
39011c1ea4f7SLiu Bo 	}
39023321719eSLiu Bo 
3903faa2dbf0SJosef Bacik 	if (root->free_ino_pinned)
3904581bb050SLi Zefan 		__btrfs_remove_free_space_cache(root->free_ino_pinned);
3905faa2dbf0SJosef Bacik 	if (root->free_ino_ctl)
3906581bb050SLi Zefan 		__btrfs_remove_free_space_cache(root->free_ino_ctl);
390784db5ccfSDavid Sterba 	btrfs_free_fs_root(root);
39084df27c4dSYan, Zheng }
39094df27c4dSYan, Zheng 
391084db5ccfSDavid Sterba void btrfs_free_fs_root(struct btrfs_root *root)
39114df27c4dSYan, Zheng {
391257cdc8dbSDavid Sterba 	iput(root->ino_cache_inode);
39134df27c4dSYan, Zheng 	WARN_ON(!RB_EMPTY_ROOT(&root->inode_tree));
39140ee5dc67SAl Viro 	if (root->anon_dev)
39150ee5dc67SAl Viro 		free_anon_bdev(root->anon_dev);
39168257b2dcSMiao Xie 	if (root->subv_writers)
39178257b2dcSMiao Xie 		btrfs_free_subvolume_writers(root->subv_writers);
39185f39d397SChris Mason 	free_extent_buffer(root->node);
39195f39d397SChris Mason 	free_extent_buffer(root->commit_root);
3920581bb050SLi Zefan 	kfree(root->free_ino_ctl);
3921581bb050SLi Zefan 	kfree(root->free_ino_pinned);
392200246528SJosef Bacik 	btrfs_put_root(root);
39232619ba1fSChris Mason }
39242619ba1fSChris Mason 
3925c146afadSYan Zheng int btrfs_cleanup_fs_roots(struct btrfs_fs_info *fs_info)
3926c146afadSYan Zheng {
3927c146afadSYan Zheng 	u64 root_objectid = 0;
3928c146afadSYan Zheng 	struct btrfs_root *gang[8];
392965d33fd7SQu Wenruo 	int i = 0;
393065d33fd7SQu Wenruo 	int err = 0;
393165d33fd7SQu Wenruo 	unsigned int ret = 0;
393265d33fd7SQu Wenruo 	int index;
3933c146afadSYan Zheng 
3934c146afadSYan Zheng 	while (1) {
393565d33fd7SQu Wenruo 		index = srcu_read_lock(&fs_info->subvol_srcu);
3936c146afadSYan Zheng 		ret = radix_tree_gang_lookup(&fs_info->fs_roots_radix,
3937c146afadSYan Zheng 					     (void **)gang, root_objectid,
3938c146afadSYan Zheng 					     ARRAY_SIZE(gang));
393965d33fd7SQu Wenruo 		if (!ret) {
394065d33fd7SQu Wenruo 			srcu_read_unlock(&fs_info->subvol_srcu, index);
3941c146afadSYan Zheng 			break;
394265d33fd7SQu Wenruo 		}
39435d4f98a2SYan Zheng 		root_objectid = gang[ret - 1]->root_key.objectid + 1;
394466b4ffd1SJosef Bacik 
394565d33fd7SQu Wenruo 		for (i = 0; i < ret; i++) {
394665d33fd7SQu Wenruo 			/* Avoid to grab roots in dead_roots */
394765d33fd7SQu Wenruo 			if (btrfs_root_refs(&gang[i]->root_item) == 0) {
394865d33fd7SQu Wenruo 				gang[i] = NULL;
394965d33fd7SQu Wenruo 				continue;
395065d33fd7SQu Wenruo 			}
395165d33fd7SQu Wenruo 			/* grab all the search result for later use */
395200246528SJosef Bacik 			gang[i] = btrfs_grab_root(gang[i]);
395365d33fd7SQu Wenruo 		}
395465d33fd7SQu Wenruo 		srcu_read_unlock(&fs_info->subvol_srcu, index);
395565d33fd7SQu Wenruo 
395665d33fd7SQu Wenruo 		for (i = 0; i < ret; i++) {
395765d33fd7SQu Wenruo 			if (!gang[i])
395865d33fd7SQu Wenruo 				continue;
3959c146afadSYan Zheng 			root_objectid = gang[i]->root_key.objectid;
396066b4ffd1SJosef Bacik 			err = btrfs_orphan_cleanup(gang[i]);
396166b4ffd1SJosef Bacik 			if (err)
396265d33fd7SQu Wenruo 				break;
396300246528SJosef Bacik 			btrfs_put_root(gang[i]);
3964c146afadSYan Zheng 		}
3965c146afadSYan Zheng 		root_objectid++;
3966c146afadSYan Zheng 	}
396765d33fd7SQu Wenruo 
396865d33fd7SQu Wenruo 	/* release the uncleaned roots due to error */
396965d33fd7SQu Wenruo 	for (; i < ret; i++) {
397065d33fd7SQu Wenruo 		if (gang[i])
397100246528SJosef Bacik 			btrfs_put_root(gang[i]);
397265d33fd7SQu Wenruo 	}
397365d33fd7SQu Wenruo 	return err;
3974c146afadSYan Zheng }
3975c146afadSYan Zheng 
39766bccf3abSJeff Mahoney int btrfs_commit_super(struct btrfs_fs_info *fs_info)
3977c146afadSYan Zheng {
39786bccf3abSJeff Mahoney 	struct btrfs_root *root = fs_info->tree_root;
3979c146afadSYan Zheng 	struct btrfs_trans_handle *trans;
3980c146afadSYan Zheng 
39810b246afaSJeff Mahoney 	mutex_lock(&fs_info->cleaner_mutex);
39822ff7e61eSJeff Mahoney 	btrfs_run_delayed_iputs(fs_info);
39830b246afaSJeff Mahoney 	mutex_unlock(&fs_info->cleaner_mutex);
39840b246afaSJeff Mahoney 	wake_up_process(fs_info->cleaner_kthread);
3985c71bf099SYan, Zheng 
3986c71bf099SYan, Zheng 	/* wait until ongoing cleanup work done */
39870b246afaSJeff Mahoney 	down_write(&fs_info->cleanup_work_sem);
39880b246afaSJeff Mahoney 	up_write(&fs_info->cleanup_work_sem);
3989c71bf099SYan, Zheng 
39907a7eaa40SJosef Bacik 	trans = btrfs_join_transaction(root);
39913612b495STsutomu Itoh 	if (IS_ERR(trans))
39923612b495STsutomu Itoh 		return PTR_ERR(trans);
39933a45bb20SJeff Mahoney 	return btrfs_commit_transaction(trans);
3994c146afadSYan Zheng }
3995c146afadSYan Zheng 
3996b105e927SDavid Sterba void __cold close_ctree(struct btrfs_fs_info *fs_info)
3997eb60ceacSChris Mason {
3998c146afadSYan Zheng 	int ret;
3999e089f05cSChris Mason 
4000afcdd129SJosef Bacik 	set_bit(BTRFS_FS_CLOSING_START, &fs_info->flags);
4001d6fd0ae2SOmar Sandoval 	/*
4002d6fd0ae2SOmar Sandoval 	 * We don't want the cleaner to start new transactions, add more delayed
4003d6fd0ae2SOmar Sandoval 	 * iputs, etc. while we're closing. We can't use kthread_stop() yet
4004d6fd0ae2SOmar Sandoval 	 * because that frees the task_struct, and the transaction kthread might
4005d6fd0ae2SOmar Sandoval 	 * still try to wake up the cleaner.
4006d6fd0ae2SOmar Sandoval 	 */
4007d6fd0ae2SOmar Sandoval 	kthread_park(fs_info->cleaner_kthread);
4008a2135011SChris Mason 
40097343dd61SJustin Maggard 	/* wait for the qgroup rescan worker to stop */
4010d06f23d6SJeff Mahoney 	btrfs_qgroup_wait_for_completion(fs_info, false);
40117343dd61SJustin Maggard 
4012803b2f54SStefan Behrens 	/* wait for the uuid_scan task to finish */
4013803b2f54SStefan Behrens 	down(&fs_info->uuid_tree_rescan_sem);
4014803b2f54SStefan Behrens 	/* avoid complains from lockdep et al., set sem back to initial state */
4015803b2f54SStefan Behrens 	up(&fs_info->uuid_tree_rescan_sem);
4016803b2f54SStefan Behrens 
4017837d5b6eSIlya Dryomov 	/* pause restriper - we want to resume on mount */
4018aa1b8cd4SStefan Behrens 	btrfs_pause_balance(fs_info);
4019837d5b6eSIlya Dryomov 
40208dabb742SStefan Behrens 	btrfs_dev_replace_suspend_for_unmount(fs_info);
40218dabb742SStefan Behrens 
4022aa1b8cd4SStefan Behrens 	btrfs_scrub_cancel(fs_info);
40234cb5300bSChris Mason 
40244cb5300bSChris Mason 	/* wait for any defraggers to finish */
40254cb5300bSChris Mason 	wait_event(fs_info->transaction_wait,
40264cb5300bSChris Mason 		   (atomic_read(&fs_info->defrag_running) == 0));
40274cb5300bSChris Mason 
40284cb5300bSChris Mason 	/* clear out the rbtree of defraggable inodes */
402926176e7cSMiao Xie 	btrfs_cleanup_defrag_inodes(fs_info);
40304cb5300bSChris Mason 
403121c7e756SMiao Xie 	cancel_work_sync(&fs_info->async_reclaim_work);
403221c7e756SMiao Xie 
4033b0643e59SDennis Zhou 	/* Cancel or finish ongoing discard work */
4034b0643e59SDennis Zhou 	btrfs_discard_cleanup(fs_info);
4035b0643e59SDennis Zhou 
4036bc98a42cSDavid Howells 	if (!sb_rdonly(fs_info->sb)) {
4037e44163e1SJeff Mahoney 		/*
4038d6fd0ae2SOmar Sandoval 		 * The cleaner kthread is stopped, so do one final pass over
4039d6fd0ae2SOmar Sandoval 		 * unused block groups.
4040e44163e1SJeff Mahoney 		 */
40410b246afaSJeff Mahoney 		btrfs_delete_unused_bgs(fs_info);
4042e44163e1SJeff Mahoney 
40436bccf3abSJeff Mahoney 		ret = btrfs_commit_super(fs_info);
4044d397712bSChris Mason 		if (ret)
404504892340SEric Sandeen 			btrfs_err(fs_info, "commit super ret %d", ret);
4046c146afadSYan Zheng 	}
4047ed2ff2cbSChris Mason 
4048af722733SLiu Bo 	if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state) ||
4049af722733SLiu Bo 	    test_bit(BTRFS_FS_STATE_TRANS_ABORTED, &fs_info->fs_state))
40502ff7e61eSJeff Mahoney 		btrfs_error_commit_super(fs_info);
4051acce952bSliubo 
4052e3029d9fSAl Viro 	kthread_stop(fs_info->transaction_kthread);
4053e3029d9fSAl Viro 	kthread_stop(fs_info->cleaner_kthread);
40548929ecfaSYan, Zheng 
4055e187831eSJosef Bacik 	ASSERT(list_empty(&fs_info->delayed_iputs));
4056afcdd129SJosef Bacik 	set_bit(BTRFS_FS_CLOSING_DONE, &fs_info->flags);
4057f25784b3SYan Zheng 
405804892340SEric Sandeen 	btrfs_free_qgroup_config(fs_info);
4059fe816d0fSNikolay Borisov 	ASSERT(list_empty(&fs_info->delalloc_roots));
4060bcef60f2SArne Jansen 
4061963d678bSMiao Xie 	if (percpu_counter_sum(&fs_info->delalloc_bytes)) {
406204892340SEric Sandeen 		btrfs_info(fs_info, "at unmount delalloc count %lld",
4063963d678bSMiao Xie 		       percpu_counter_sum(&fs_info->delalloc_bytes));
4064b0c68f8bSChris Mason 	}
406531153d81SYan Zheng 
40664297ff84SJosef Bacik 	if (percpu_counter_sum(&fs_info->dio_bytes))
40674297ff84SJosef Bacik 		btrfs_info(fs_info, "at unmount dio bytes count %lld",
40684297ff84SJosef Bacik 			   percpu_counter_sum(&fs_info->dio_bytes));
40694297ff84SJosef Bacik 
40706618a59bSAnand Jain 	btrfs_sysfs_remove_mounted(fs_info);
4071b7c35e81SAnand Jain 	btrfs_sysfs_remove_fsid(fs_info->fs_devices);
40725ac1d209SJeff Mahoney 
4073faa2dbf0SJosef Bacik 	btrfs_free_fs_roots(fs_info);
4074d10c5f31SChris Mason 
40751a4319ccSLiu Bo 	btrfs_put_block_group_cache(fs_info);
40761a4319ccSLiu Bo 
4077de348ee0SWang Shilong 	/*
4078de348ee0SWang Shilong 	 * we must make sure there is not any read request to
4079de348ee0SWang Shilong 	 * submit after we stopping all workers.
4080de348ee0SWang Shilong 	 */
4081de348ee0SWang Shilong 	invalidate_inode_pages2(fs_info->btree_inode->i_mapping);
408296192499SJosef Bacik 	btrfs_stop_all_workers(fs_info);
408396192499SJosef Bacik 
4084afcdd129SJosef Bacik 	clear_bit(BTRFS_FS_OPEN, &fs_info->flags);
40854273eaffSAnand Jain 	free_root_pointers(fs_info, true);
40869ad6b7bcSChris Mason 
40874e19443dSJosef Bacik 	/*
40884e19443dSJosef Bacik 	 * We must free the block groups after dropping the fs_roots as we could
40894e19443dSJosef Bacik 	 * have had an IO error and have left over tree log blocks that aren't
40904e19443dSJosef Bacik 	 * cleaned up until the fs roots are freed.  This makes the block group
40914e19443dSJosef Bacik 	 * accounting appear to be wrong because there's pending reserved bytes,
40924e19443dSJosef Bacik 	 * so make sure we do the block group cleanup afterwards.
40934e19443dSJosef Bacik 	 */
40944e19443dSJosef Bacik 	btrfs_free_block_groups(fs_info);
40954e19443dSJosef Bacik 
409613e6c37bSJosef Bacik 	iput(fs_info->btree_inode);
4097d6bfde87SChris Mason 
409821adbd5cSStefan Behrens #ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
40990b246afaSJeff Mahoney 	if (btrfs_test_opt(fs_info, CHECK_INTEGRITY))
41002ff7e61eSJeff Mahoney 		btrfsic_unmount(fs_info->fs_devices);
410121adbd5cSStefan Behrens #endif
410221adbd5cSStefan Behrens 
41030b86a832SChris Mason 	btrfs_mapping_tree_free(&fs_info->mapping_tree);
410468c94e55SNikolay Borisov 	btrfs_close_devices(fs_info->fs_devices);
410576dda93cSYan, Zheng 	cleanup_srcu_struct(&fs_info->subvol_srcu);
4106eb60ceacSChris Mason }
4107eb60ceacSChris Mason 
4108b9fab919SChris Mason int btrfs_buffer_uptodate(struct extent_buffer *buf, u64 parent_transid,
4109b9fab919SChris Mason 			  int atomic)
4110ccd467d6SChris Mason {
41111259ab75SChris Mason 	int ret;
4112727011e0SChris Mason 	struct inode *btree_inode = buf->pages[0]->mapping->host;
41131259ab75SChris Mason 
41140b32f4bbSJosef Bacik 	ret = extent_buffer_uptodate(buf);
41151259ab75SChris Mason 	if (!ret)
41161259ab75SChris Mason 		return ret;
41171259ab75SChris Mason 
41181259ab75SChris Mason 	ret = verify_parent_transid(&BTRFS_I(btree_inode)->io_tree, buf,
4119b9fab919SChris Mason 				    parent_transid, atomic);
4120b9fab919SChris Mason 	if (ret == -EAGAIN)
4121b9fab919SChris Mason 		return ret;
41221259ab75SChris Mason 	return !ret;
41235f39d397SChris Mason }
41246702ed49SChris Mason 
41255f39d397SChris Mason void btrfs_mark_buffer_dirty(struct extent_buffer *buf)
41265f39d397SChris Mason {
41270b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info;
412806ea65a3SJosef Bacik 	struct btrfs_root *root;
41295f39d397SChris Mason 	u64 transid = btrfs_header_generation(buf);
4130b9473439SChris Mason 	int was_dirty;
4131b4ce94deSChris Mason 
413206ea65a3SJosef Bacik #ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
413306ea65a3SJosef Bacik 	/*
413406ea65a3SJosef Bacik 	 * This is a fast path so only do this check if we have sanity tests
413552042d8eSAndrea Gelmini 	 * enabled.  Normal people shouldn't be using unmapped buffers as dirty
413606ea65a3SJosef Bacik 	 * outside of the sanity tests.
413706ea65a3SJosef Bacik 	 */
4138b0132a3bSNikolay Borisov 	if (unlikely(test_bit(EXTENT_BUFFER_UNMAPPED, &buf->bflags)))
413906ea65a3SJosef Bacik 		return;
414006ea65a3SJosef Bacik #endif
414106ea65a3SJosef Bacik 	root = BTRFS_I(buf->pages[0]->mapping->host)->root;
41420b246afaSJeff Mahoney 	fs_info = root->fs_info;
4143b9447ef8SChris Mason 	btrfs_assert_tree_locked(buf);
41440b246afaSJeff Mahoney 	if (transid != fs_info->generation)
41455d163e0eSJeff Mahoney 		WARN(1, KERN_CRIT "btrfs transid mismatch buffer %llu, found %llu running %llu\n",
41460b246afaSJeff Mahoney 			buf->start, transid, fs_info->generation);
41470b32f4bbSJosef Bacik 	was_dirty = set_extent_buffer_dirty(buf);
4148e2d84521SMiao Xie 	if (!was_dirty)
4149104b4e51SNikolay Borisov 		percpu_counter_add_batch(&fs_info->dirty_metadata_bytes,
4150e2d84521SMiao Xie 					 buf->len,
41510b246afaSJeff Mahoney 					 fs_info->dirty_metadata_batch);
41521f21ef0aSFilipe Manana #ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
415369fc6cbbSQu Wenruo 	/*
415469fc6cbbSQu Wenruo 	 * Since btrfs_mark_buffer_dirty() can be called with item pointer set
415569fc6cbbSQu Wenruo 	 * but item data not updated.
415669fc6cbbSQu Wenruo 	 * So here we should only check item pointers, not item data.
415769fc6cbbSQu Wenruo 	 */
415869fc6cbbSQu Wenruo 	if (btrfs_header_level(buf) == 0 &&
4159cfdaad5eSDavid Sterba 	    btrfs_check_leaf_relaxed(buf)) {
4160a4f78750SDavid Sterba 		btrfs_print_leaf(buf);
41611f21ef0aSFilipe Manana 		ASSERT(0);
41621f21ef0aSFilipe Manana 	}
41631f21ef0aSFilipe Manana #endif
4164eb60ceacSChris Mason }
4165eb60ceacSChris Mason 
41662ff7e61eSJeff Mahoney static void __btrfs_btree_balance_dirty(struct btrfs_fs_info *fs_info,
4167b53d3f5dSLiu Bo 					int flush_delayed)
416835b7e476SChris Mason {
4169188de649SChris Mason 	/*
4170188de649SChris Mason 	 * looks as though older kernels can get into trouble with
4171188de649SChris Mason 	 * this code, they end up stuck in balance_dirty_pages forever
4172188de649SChris Mason 	 */
4173e2d84521SMiao Xie 	int ret;
4174d6bfde87SChris Mason 
41756933c02eSJens Axboe 	if (current->flags & PF_MEMALLOC)
4176d6bfde87SChris Mason 		return;
4177d6bfde87SChris Mason 
4178b53d3f5dSLiu Bo 	if (flush_delayed)
41792ff7e61eSJeff Mahoney 		btrfs_balance_delayed_items(fs_info);
418016cdcec7SMiao Xie 
4181d814a491SEthan Lien 	ret = __percpu_counter_compare(&fs_info->dirty_metadata_bytes,
4182d814a491SEthan Lien 				     BTRFS_DIRTY_METADATA_THRESH,
4183d814a491SEthan Lien 				     fs_info->dirty_metadata_batch);
4184e2d84521SMiao Xie 	if (ret > 0) {
41850b246afaSJeff Mahoney 		balance_dirty_pages_ratelimited(fs_info->btree_inode->i_mapping);
418616cdcec7SMiao Xie 	}
418716cdcec7SMiao Xie }
418816cdcec7SMiao Xie 
41892ff7e61eSJeff Mahoney void btrfs_btree_balance_dirty(struct btrfs_fs_info *fs_info)
419016cdcec7SMiao Xie {
41912ff7e61eSJeff Mahoney 	__btrfs_btree_balance_dirty(fs_info, 1);
419235b7e476SChris Mason }
4193b53d3f5dSLiu Bo 
41942ff7e61eSJeff Mahoney void btrfs_btree_balance_dirty_nodelay(struct btrfs_fs_info *fs_info)
4195b53d3f5dSLiu Bo {
41962ff7e61eSJeff Mahoney 	__btrfs_btree_balance_dirty(fs_info, 0);
4197d6bfde87SChris Mason }
41986b80053dSChris Mason 
4199581c1760SQu Wenruo int btrfs_read_buffer(struct extent_buffer *buf, u64 parent_transid, int level,
4200581c1760SQu Wenruo 		      struct btrfs_key *first_key)
42016b80053dSChris Mason {
42025ab12d1fSDavid Sterba 	return btree_read_extent_buffer_pages(buf, parent_transid,
4203581c1760SQu Wenruo 					      level, first_key);
42046b80053dSChris Mason }
42050da5468fSChris Mason 
42062ff7e61eSJeff Mahoney static void btrfs_error_commit_super(struct btrfs_fs_info *fs_info)
4207acce952bSliubo {
4208fe816d0fSNikolay Borisov 	/* cleanup FS via transaction */
4209fe816d0fSNikolay Borisov 	btrfs_cleanup_transaction(fs_info);
4210fe816d0fSNikolay Borisov 
42110b246afaSJeff Mahoney 	mutex_lock(&fs_info->cleaner_mutex);
42122ff7e61eSJeff Mahoney 	btrfs_run_delayed_iputs(fs_info);
42130b246afaSJeff Mahoney 	mutex_unlock(&fs_info->cleaner_mutex);
4214acce952bSliubo 
42150b246afaSJeff Mahoney 	down_write(&fs_info->cleanup_work_sem);
42160b246afaSJeff Mahoney 	up_write(&fs_info->cleanup_work_sem);
4217acce952bSliubo }
4218acce952bSliubo 
4219143bede5SJeff Mahoney static void btrfs_destroy_ordered_extents(struct btrfs_root *root)
4220acce952bSliubo {
4221acce952bSliubo 	struct btrfs_ordered_extent *ordered;
4222acce952bSliubo 
4223199c2a9cSMiao Xie 	spin_lock(&root->ordered_extent_lock);
4224779880efSJosef Bacik 	/*
4225779880efSJosef Bacik 	 * This will just short circuit the ordered completion stuff which will
4226779880efSJosef Bacik 	 * make sure the ordered extent gets properly cleaned up.
4227779880efSJosef Bacik 	 */
4228199c2a9cSMiao Xie 	list_for_each_entry(ordered, &root->ordered_extents,
4229779880efSJosef Bacik 			    root_extent_list)
4230779880efSJosef Bacik 		set_bit(BTRFS_ORDERED_IOERR, &ordered->flags);
4231199c2a9cSMiao Xie 	spin_unlock(&root->ordered_extent_lock);
4232199c2a9cSMiao Xie }
4233199c2a9cSMiao Xie 
4234199c2a9cSMiao Xie static void btrfs_destroy_all_ordered_extents(struct btrfs_fs_info *fs_info)
4235199c2a9cSMiao Xie {
4236199c2a9cSMiao Xie 	struct btrfs_root *root;
4237199c2a9cSMiao Xie 	struct list_head splice;
4238199c2a9cSMiao Xie 
4239199c2a9cSMiao Xie 	INIT_LIST_HEAD(&splice);
4240199c2a9cSMiao Xie 
4241199c2a9cSMiao Xie 	spin_lock(&fs_info->ordered_root_lock);
4242199c2a9cSMiao Xie 	list_splice_init(&fs_info->ordered_roots, &splice);
4243199c2a9cSMiao Xie 	while (!list_empty(&splice)) {
4244199c2a9cSMiao Xie 		root = list_first_entry(&splice, struct btrfs_root,
4245199c2a9cSMiao Xie 					ordered_root);
42461de2cfdeSJosef Bacik 		list_move_tail(&root->ordered_root,
42471de2cfdeSJosef Bacik 			       &fs_info->ordered_roots);
4248199c2a9cSMiao Xie 
42492a85d9caSLiu Bo 		spin_unlock(&fs_info->ordered_root_lock);
4250199c2a9cSMiao Xie 		btrfs_destroy_ordered_extents(root);
4251199c2a9cSMiao Xie 
42522a85d9caSLiu Bo 		cond_resched();
42532a85d9caSLiu Bo 		spin_lock(&fs_info->ordered_root_lock);
4254199c2a9cSMiao Xie 	}
4255199c2a9cSMiao Xie 	spin_unlock(&fs_info->ordered_root_lock);
425674d5d229SJosef Bacik 
425774d5d229SJosef Bacik 	/*
425874d5d229SJosef Bacik 	 * We need this here because if we've been flipped read-only we won't
425974d5d229SJosef Bacik 	 * get sync() from the umount, so we need to make sure any ordered
426074d5d229SJosef Bacik 	 * extents that haven't had their dirty pages IO start writeout yet
426174d5d229SJosef Bacik 	 * actually get run and error out properly.
426274d5d229SJosef Bacik 	 */
426374d5d229SJosef Bacik 	btrfs_wait_ordered_roots(fs_info, U64_MAX, 0, (u64)-1);
4264acce952bSliubo }
4265acce952bSliubo 
426635a3621bSStefan Behrens static int btrfs_destroy_delayed_refs(struct btrfs_transaction *trans,
42672ff7e61eSJeff Mahoney 				      struct btrfs_fs_info *fs_info)
4268acce952bSliubo {
4269acce952bSliubo 	struct rb_node *node;
4270acce952bSliubo 	struct btrfs_delayed_ref_root *delayed_refs;
4271acce952bSliubo 	struct btrfs_delayed_ref_node *ref;
4272acce952bSliubo 	int ret = 0;
4273acce952bSliubo 
4274acce952bSliubo 	delayed_refs = &trans->delayed_refs;
4275acce952bSliubo 
4276acce952bSliubo 	spin_lock(&delayed_refs->lock);
4277d7df2c79SJosef Bacik 	if (atomic_read(&delayed_refs->num_entries) == 0) {
4278cfece4dbSDavid Sterba 		spin_unlock(&delayed_refs->lock);
42790b246afaSJeff Mahoney 		btrfs_info(fs_info, "delayed_refs has NO entry");
4280acce952bSliubo 		return ret;
4281acce952bSliubo 	}
4282acce952bSliubo 
42835c9d028bSLiu Bo 	while ((node = rb_first_cached(&delayed_refs->href_root)) != NULL) {
4284d7df2c79SJosef Bacik 		struct btrfs_delayed_ref_head *head;
42850e0adbcfSJosef Bacik 		struct rb_node *n;
4286e78417d1SJosef Bacik 		bool pin_bytes = false;
4287acce952bSliubo 
4288d7df2c79SJosef Bacik 		head = rb_entry(node, struct btrfs_delayed_ref_head,
4289d7df2c79SJosef Bacik 				href_node);
42903069bd26SJosef Bacik 		if (btrfs_delayed_ref_lock(delayed_refs, head))
4291b939d1abSJosef Bacik 			continue;
42923069bd26SJosef Bacik 
4293d7df2c79SJosef Bacik 		spin_lock(&head->lock);
4294e3d03965SLiu Bo 		while ((n = rb_first_cached(&head->ref_tree)) != NULL) {
42950e0adbcfSJosef Bacik 			ref = rb_entry(n, struct btrfs_delayed_ref_node,
42960e0adbcfSJosef Bacik 				       ref_node);
4297d7df2c79SJosef Bacik 			ref->in_tree = 0;
4298e3d03965SLiu Bo 			rb_erase_cached(&ref->ref_node, &head->ref_tree);
42990e0adbcfSJosef Bacik 			RB_CLEAR_NODE(&ref->ref_node);
43001d57ee94SWang Xiaoguang 			if (!list_empty(&ref->add_list))
43011d57ee94SWang Xiaoguang 				list_del(&ref->add_list);
4302d7df2c79SJosef Bacik 			atomic_dec(&delayed_refs->num_entries);
4303d7df2c79SJosef Bacik 			btrfs_put_delayed_ref(ref);
4304d7df2c79SJosef Bacik 		}
430554067ae9SJosef Bacik 		if (head->must_insert_reserved)
4306e78417d1SJosef Bacik 			pin_bytes = true;
430778a6184aSMiao Xie 		btrfs_free_delayed_extent_op(head->extent_op);
4308fa781ceaSJosef Bacik 		btrfs_delete_ref_head(delayed_refs, head);
4309d7df2c79SJosef Bacik 		spin_unlock(&head->lock);
4310acce952bSliubo 		spin_unlock(&delayed_refs->lock);
4311e78417d1SJosef Bacik 		mutex_unlock(&head->mutex);
4312acce952bSliubo 
4313d7df2c79SJosef Bacik 		if (pin_bytes)
4314d278850eSJosef Bacik 			btrfs_pin_extent(fs_info, head->bytenr,
4315d278850eSJosef Bacik 					 head->num_bytes, 1);
431631890da0SJosef Bacik 		btrfs_cleanup_ref_head_accounting(fs_info, delayed_refs, head);
4317d278850eSJosef Bacik 		btrfs_put_delayed_ref_head(head);
4318acce952bSliubo 		cond_resched();
4319acce952bSliubo 		spin_lock(&delayed_refs->lock);
4320acce952bSliubo 	}
432181f7eb00SJeff Mahoney 	btrfs_qgroup_destroy_extent_records(trans);
4322acce952bSliubo 
4323acce952bSliubo 	spin_unlock(&delayed_refs->lock);
4324acce952bSliubo 
4325acce952bSliubo 	return ret;
4326acce952bSliubo }
4327acce952bSliubo 
4328143bede5SJeff Mahoney static void btrfs_destroy_delalloc_inodes(struct btrfs_root *root)
4329acce952bSliubo {
4330acce952bSliubo 	struct btrfs_inode *btrfs_inode;
4331acce952bSliubo 	struct list_head splice;
4332acce952bSliubo 
4333acce952bSliubo 	INIT_LIST_HEAD(&splice);
4334acce952bSliubo 
4335eb73c1b7SMiao Xie 	spin_lock(&root->delalloc_lock);
4336eb73c1b7SMiao Xie 	list_splice_init(&root->delalloc_inodes, &splice);
4337acce952bSliubo 
4338acce952bSliubo 	while (!list_empty(&splice)) {
4339fe816d0fSNikolay Borisov 		struct inode *inode = NULL;
4340eb73c1b7SMiao Xie 		btrfs_inode = list_first_entry(&splice, struct btrfs_inode,
4341acce952bSliubo 					       delalloc_inodes);
4342fe816d0fSNikolay Borisov 		__btrfs_del_delalloc_inode(root, btrfs_inode);
4343eb73c1b7SMiao Xie 		spin_unlock(&root->delalloc_lock);
4344acce952bSliubo 
4345fe816d0fSNikolay Borisov 		/*
4346fe816d0fSNikolay Borisov 		 * Make sure we get a live inode and that it'll not disappear
4347fe816d0fSNikolay Borisov 		 * meanwhile.
4348fe816d0fSNikolay Borisov 		 */
4349fe816d0fSNikolay Borisov 		inode = igrab(&btrfs_inode->vfs_inode);
4350fe816d0fSNikolay Borisov 		if (inode) {
4351fe816d0fSNikolay Borisov 			invalidate_inode_pages2(inode->i_mapping);
4352fe816d0fSNikolay Borisov 			iput(inode);
4353fe816d0fSNikolay Borisov 		}
4354eb73c1b7SMiao Xie 		spin_lock(&root->delalloc_lock);
4355acce952bSliubo 	}
4356eb73c1b7SMiao Xie 	spin_unlock(&root->delalloc_lock);
4357eb73c1b7SMiao Xie }
4358eb73c1b7SMiao Xie 
4359eb73c1b7SMiao Xie static void btrfs_destroy_all_delalloc_inodes(struct btrfs_fs_info *fs_info)
4360eb73c1b7SMiao Xie {
4361eb73c1b7SMiao Xie 	struct btrfs_root *root;
4362eb73c1b7SMiao Xie 	struct list_head splice;
4363eb73c1b7SMiao Xie 
4364eb73c1b7SMiao Xie 	INIT_LIST_HEAD(&splice);
4365eb73c1b7SMiao Xie 
4366eb73c1b7SMiao Xie 	spin_lock(&fs_info->delalloc_root_lock);
4367eb73c1b7SMiao Xie 	list_splice_init(&fs_info->delalloc_roots, &splice);
4368eb73c1b7SMiao Xie 	while (!list_empty(&splice)) {
4369eb73c1b7SMiao Xie 		root = list_first_entry(&splice, struct btrfs_root,
4370eb73c1b7SMiao Xie 					 delalloc_root);
437100246528SJosef Bacik 		root = btrfs_grab_root(root);
4372eb73c1b7SMiao Xie 		BUG_ON(!root);
4373eb73c1b7SMiao Xie 		spin_unlock(&fs_info->delalloc_root_lock);
4374eb73c1b7SMiao Xie 
4375eb73c1b7SMiao Xie 		btrfs_destroy_delalloc_inodes(root);
437600246528SJosef Bacik 		btrfs_put_root(root);
4377eb73c1b7SMiao Xie 
4378eb73c1b7SMiao Xie 		spin_lock(&fs_info->delalloc_root_lock);
4379eb73c1b7SMiao Xie 	}
4380eb73c1b7SMiao Xie 	spin_unlock(&fs_info->delalloc_root_lock);
4381acce952bSliubo }
4382acce952bSliubo 
43832ff7e61eSJeff Mahoney static int btrfs_destroy_marked_extents(struct btrfs_fs_info *fs_info,
4384acce952bSliubo 					struct extent_io_tree *dirty_pages,
4385acce952bSliubo 					int mark)
4386acce952bSliubo {
4387acce952bSliubo 	int ret;
4388acce952bSliubo 	struct extent_buffer *eb;
4389acce952bSliubo 	u64 start = 0;
4390acce952bSliubo 	u64 end;
4391acce952bSliubo 
4392acce952bSliubo 	while (1) {
4393acce952bSliubo 		ret = find_first_extent_bit(dirty_pages, start, &start, &end,
4394e6138876SJosef Bacik 					    mark, NULL);
4395acce952bSliubo 		if (ret)
4396acce952bSliubo 			break;
4397acce952bSliubo 
439891166212SDavid Sterba 		clear_extent_bits(dirty_pages, start, end, mark);
4399acce952bSliubo 		while (start <= end) {
44000b246afaSJeff Mahoney 			eb = find_extent_buffer(fs_info, start);
44010b246afaSJeff Mahoney 			start += fs_info->nodesize;
4402fd8b2b61SJosef Bacik 			if (!eb)
4403acce952bSliubo 				continue;
4404fd8b2b61SJosef Bacik 			wait_on_extent_buffer_writeback(eb);
4405acce952bSliubo 
4406fd8b2b61SJosef Bacik 			if (test_and_clear_bit(EXTENT_BUFFER_DIRTY,
4407fd8b2b61SJosef Bacik 					       &eb->bflags))
4408fd8b2b61SJosef Bacik 				clear_extent_buffer_dirty(eb);
4409fd8b2b61SJosef Bacik 			free_extent_buffer_stale(eb);
4410acce952bSliubo 		}
4411acce952bSliubo 	}
4412acce952bSliubo 
4413acce952bSliubo 	return ret;
4414acce952bSliubo }
4415acce952bSliubo 
44162ff7e61eSJeff Mahoney static int btrfs_destroy_pinned_extent(struct btrfs_fs_info *fs_info,
4417acce952bSliubo 				       struct extent_io_tree *pinned_extents)
4418acce952bSliubo {
4419acce952bSliubo 	struct extent_io_tree *unpin;
4420acce952bSliubo 	u64 start;
4421acce952bSliubo 	u64 end;
4422acce952bSliubo 	int ret;
4423ed0eaa14SLiu Bo 	bool loop = true;
4424acce952bSliubo 
4425acce952bSliubo 	unpin = pinned_extents;
4426ed0eaa14SLiu Bo again:
4427acce952bSliubo 	while (1) {
44280e6ec385SFilipe Manana 		struct extent_state *cached_state = NULL;
44290e6ec385SFilipe Manana 
4430fcd5e742SLu Fengqi 		/*
4431fcd5e742SLu Fengqi 		 * The btrfs_finish_extent_commit() may get the same range as
4432fcd5e742SLu Fengqi 		 * ours between find_first_extent_bit and clear_extent_dirty.
4433fcd5e742SLu Fengqi 		 * Hence, hold the unused_bg_unpin_mutex to avoid double unpin
4434fcd5e742SLu Fengqi 		 * the same extent range.
4435fcd5e742SLu Fengqi 		 */
4436fcd5e742SLu Fengqi 		mutex_lock(&fs_info->unused_bg_unpin_mutex);
4437acce952bSliubo 		ret = find_first_extent_bit(unpin, 0, &start, &end,
44380e6ec385SFilipe Manana 					    EXTENT_DIRTY, &cached_state);
4439fcd5e742SLu Fengqi 		if (ret) {
4440fcd5e742SLu Fengqi 			mutex_unlock(&fs_info->unused_bg_unpin_mutex);
4441acce952bSliubo 			break;
4442fcd5e742SLu Fengqi 		}
4443acce952bSliubo 
44440e6ec385SFilipe Manana 		clear_extent_dirty(unpin, start, end, &cached_state);
44450e6ec385SFilipe Manana 		free_extent_state(cached_state);
44462ff7e61eSJeff Mahoney 		btrfs_error_unpin_extent_range(fs_info, start, end);
4447fcd5e742SLu Fengqi 		mutex_unlock(&fs_info->unused_bg_unpin_mutex);
4448acce952bSliubo 		cond_resched();
4449acce952bSliubo 	}
4450acce952bSliubo 
4451ed0eaa14SLiu Bo 	if (loop) {
44520b246afaSJeff Mahoney 		if (unpin == &fs_info->freed_extents[0])
44530b246afaSJeff Mahoney 			unpin = &fs_info->freed_extents[1];
4454ed0eaa14SLiu Bo 		else
44550b246afaSJeff Mahoney 			unpin = &fs_info->freed_extents[0];
4456ed0eaa14SLiu Bo 		loop = false;
4457ed0eaa14SLiu Bo 		goto again;
4458ed0eaa14SLiu Bo 	}
4459ed0eaa14SLiu Bo 
4460acce952bSliubo 	return 0;
4461acce952bSliubo }
4462acce952bSliubo 
446332da5386SDavid Sterba static void btrfs_cleanup_bg_io(struct btrfs_block_group *cache)
4464c79a1751SLiu Bo {
4465c79a1751SLiu Bo 	struct inode *inode;
4466c79a1751SLiu Bo 
4467c79a1751SLiu Bo 	inode = cache->io_ctl.inode;
4468c79a1751SLiu Bo 	if (inode) {
4469c79a1751SLiu Bo 		invalidate_inode_pages2(inode->i_mapping);
4470c79a1751SLiu Bo 		BTRFS_I(inode)->generation = 0;
4471c79a1751SLiu Bo 		cache->io_ctl.inode = NULL;
4472c79a1751SLiu Bo 		iput(inode);
4473c79a1751SLiu Bo 	}
4474c79a1751SLiu Bo 	btrfs_put_block_group(cache);
4475c79a1751SLiu Bo }
4476c79a1751SLiu Bo 
4477c79a1751SLiu Bo void btrfs_cleanup_dirty_bgs(struct btrfs_transaction *cur_trans,
44782ff7e61eSJeff Mahoney 			     struct btrfs_fs_info *fs_info)
4479c79a1751SLiu Bo {
448032da5386SDavid Sterba 	struct btrfs_block_group *cache;
4481c79a1751SLiu Bo 
4482c79a1751SLiu Bo 	spin_lock(&cur_trans->dirty_bgs_lock);
4483c79a1751SLiu Bo 	while (!list_empty(&cur_trans->dirty_bgs)) {
4484c79a1751SLiu Bo 		cache = list_first_entry(&cur_trans->dirty_bgs,
448532da5386SDavid Sterba 					 struct btrfs_block_group,
4486c79a1751SLiu Bo 					 dirty_list);
4487c79a1751SLiu Bo 
4488c79a1751SLiu Bo 		if (!list_empty(&cache->io_list)) {
4489c79a1751SLiu Bo 			spin_unlock(&cur_trans->dirty_bgs_lock);
4490c79a1751SLiu Bo 			list_del_init(&cache->io_list);
4491c79a1751SLiu Bo 			btrfs_cleanup_bg_io(cache);
4492c79a1751SLiu Bo 			spin_lock(&cur_trans->dirty_bgs_lock);
4493c79a1751SLiu Bo 		}
4494c79a1751SLiu Bo 
4495c79a1751SLiu Bo 		list_del_init(&cache->dirty_list);
4496c79a1751SLiu Bo 		spin_lock(&cache->lock);
4497c79a1751SLiu Bo 		cache->disk_cache_state = BTRFS_DC_ERROR;
4498c79a1751SLiu Bo 		spin_unlock(&cache->lock);
4499c79a1751SLiu Bo 
4500c79a1751SLiu Bo 		spin_unlock(&cur_trans->dirty_bgs_lock);
4501c79a1751SLiu Bo 		btrfs_put_block_group(cache);
4502ba2c4d4eSJosef Bacik 		btrfs_delayed_refs_rsv_release(fs_info, 1);
4503c79a1751SLiu Bo 		spin_lock(&cur_trans->dirty_bgs_lock);
4504c79a1751SLiu Bo 	}
4505c79a1751SLiu Bo 	spin_unlock(&cur_trans->dirty_bgs_lock);
4506c79a1751SLiu Bo 
450745ae2c18SNikolay Borisov 	/*
450845ae2c18SNikolay Borisov 	 * Refer to the definition of io_bgs member for details why it's safe
450945ae2c18SNikolay Borisov 	 * to use it without any locking
451045ae2c18SNikolay Borisov 	 */
4511c79a1751SLiu Bo 	while (!list_empty(&cur_trans->io_bgs)) {
4512c79a1751SLiu Bo 		cache = list_first_entry(&cur_trans->io_bgs,
451332da5386SDavid Sterba 					 struct btrfs_block_group,
4514c79a1751SLiu Bo 					 io_list);
4515c79a1751SLiu Bo 
4516c79a1751SLiu Bo 		list_del_init(&cache->io_list);
4517c79a1751SLiu Bo 		spin_lock(&cache->lock);
4518c79a1751SLiu Bo 		cache->disk_cache_state = BTRFS_DC_ERROR;
4519c79a1751SLiu Bo 		spin_unlock(&cache->lock);
4520c79a1751SLiu Bo 		btrfs_cleanup_bg_io(cache);
4521c79a1751SLiu Bo 	}
4522c79a1751SLiu Bo }
4523c79a1751SLiu Bo 
452449b25e05SJeff Mahoney void btrfs_cleanup_one_transaction(struct btrfs_transaction *cur_trans,
45252ff7e61eSJeff Mahoney 				   struct btrfs_fs_info *fs_info)
452649b25e05SJeff Mahoney {
4527bbbf7243SNikolay Borisov 	struct btrfs_device *dev, *tmp;
4528bbbf7243SNikolay Borisov 
45292ff7e61eSJeff Mahoney 	btrfs_cleanup_dirty_bgs(cur_trans, fs_info);
4530c79a1751SLiu Bo 	ASSERT(list_empty(&cur_trans->dirty_bgs));
4531c79a1751SLiu Bo 	ASSERT(list_empty(&cur_trans->io_bgs));
4532c79a1751SLiu Bo 
4533bbbf7243SNikolay Borisov 	list_for_each_entry_safe(dev, tmp, &cur_trans->dev_update_list,
4534bbbf7243SNikolay Borisov 				 post_commit_list) {
4535bbbf7243SNikolay Borisov 		list_del_init(&dev->post_commit_list);
4536bbbf7243SNikolay Borisov 	}
4537bbbf7243SNikolay Borisov 
45382ff7e61eSJeff Mahoney 	btrfs_destroy_delayed_refs(cur_trans, fs_info);
453949b25e05SJeff Mahoney 
45404a9d8bdeSMiao Xie 	cur_trans->state = TRANS_STATE_COMMIT_START;
45410b246afaSJeff Mahoney 	wake_up(&fs_info->transaction_blocked_wait);
454249b25e05SJeff Mahoney 
45434a9d8bdeSMiao Xie 	cur_trans->state = TRANS_STATE_UNBLOCKED;
45440b246afaSJeff Mahoney 	wake_up(&fs_info->transaction_wait);
454549b25e05SJeff Mahoney 
4546ccdf9b30SJeff Mahoney 	btrfs_destroy_delayed_inodes(fs_info);
454767cde344SMiao Xie 
45482ff7e61eSJeff Mahoney 	btrfs_destroy_marked_extents(fs_info, &cur_trans->dirty_pages,
454949b25e05SJeff Mahoney 				     EXTENT_DIRTY);
45502ff7e61eSJeff Mahoney 	btrfs_destroy_pinned_extent(fs_info,
45510b246afaSJeff Mahoney 				    fs_info->pinned_extents);
455249b25e05SJeff Mahoney 
45534a9d8bdeSMiao Xie 	cur_trans->state =TRANS_STATE_COMPLETED;
45544a9d8bdeSMiao Xie 	wake_up(&cur_trans->commit_wait);
455549b25e05SJeff Mahoney }
455649b25e05SJeff Mahoney 
45572ff7e61eSJeff Mahoney static int btrfs_cleanup_transaction(struct btrfs_fs_info *fs_info)
4558acce952bSliubo {
4559acce952bSliubo 	struct btrfs_transaction *t;
4560acce952bSliubo 
45610b246afaSJeff Mahoney 	mutex_lock(&fs_info->transaction_kthread_mutex);
4562acce952bSliubo 
45630b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
45640b246afaSJeff Mahoney 	while (!list_empty(&fs_info->trans_list)) {
45650b246afaSJeff Mahoney 		t = list_first_entry(&fs_info->trans_list,
4566724e2315SJosef Bacik 				     struct btrfs_transaction, list);
4567724e2315SJosef Bacik 		if (t->state >= TRANS_STATE_COMMIT_START) {
45689b64f57dSElena Reshetova 			refcount_inc(&t->use_count);
45690b246afaSJeff Mahoney 			spin_unlock(&fs_info->trans_lock);
45702ff7e61eSJeff Mahoney 			btrfs_wait_for_commit(fs_info, t->transid);
4571724e2315SJosef Bacik 			btrfs_put_transaction(t);
45720b246afaSJeff Mahoney 			spin_lock(&fs_info->trans_lock);
4573724e2315SJosef Bacik 			continue;
4574724e2315SJosef Bacik 		}
45750b246afaSJeff Mahoney 		if (t == fs_info->running_transaction) {
4576724e2315SJosef Bacik 			t->state = TRANS_STATE_COMMIT_DOING;
45770b246afaSJeff Mahoney 			spin_unlock(&fs_info->trans_lock);
4578724e2315SJosef Bacik 			/*
4579724e2315SJosef Bacik 			 * We wait for 0 num_writers since we don't hold a trans
4580724e2315SJosef Bacik 			 * handle open currently for this transaction.
4581724e2315SJosef Bacik 			 */
4582724e2315SJosef Bacik 			wait_event(t->writer_wait,
4583724e2315SJosef Bacik 				   atomic_read(&t->num_writers) == 0);
4584724e2315SJosef Bacik 		} else {
45850b246afaSJeff Mahoney 			spin_unlock(&fs_info->trans_lock);
4586724e2315SJosef Bacik 		}
45872ff7e61eSJeff Mahoney 		btrfs_cleanup_one_transaction(t, fs_info);
4588724e2315SJosef Bacik 
45890b246afaSJeff Mahoney 		spin_lock(&fs_info->trans_lock);
45900b246afaSJeff Mahoney 		if (t == fs_info->running_transaction)
45910b246afaSJeff Mahoney 			fs_info->running_transaction = NULL;
4592724e2315SJosef Bacik 		list_del_init(&t->list);
45930b246afaSJeff Mahoney 		spin_unlock(&fs_info->trans_lock);
4594a4abeea4SJosef Bacik 
4595724e2315SJosef Bacik 		btrfs_put_transaction(t);
45962ff7e61eSJeff Mahoney 		trace_btrfs_transaction_commit(fs_info->tree_root);
45970b246afaSJeff Mahoney 		spin_lock(&fs_info->trans_lock);
4598724e2315SJosef Bacik 	}
45990b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
46000b246afaSJeff Mahoney 	btrfs_destroy_all_ordered_extents(fs_info);
4601ccdf9b30SJeff Mahoney 	btrfs_destroy_delayed_inodes(fs_info);
4602ccdf9b30SJeff Mahoney 	btrfs_assert_delayed_root_empty(fs_info);
46032ff7e61eSJeff Mahoney 	btrfs_destroy_pinned_extent(fs_info, fs_info->pinned_extents);
46040b246afaSJeff Mahoney 	btrfs_destroy_all_delalloc_inodes(fs_info);
46050b246afaSJeff Mahoney 	mutex_unlock(&fs_info->transaction_kthread_mutex);
4606acce952bSliubo 
4607acce952bSliubo 	return 0;
4608acce952bSliubo }
4609acce952bSliubo 
4610e8c9f186SDavid Sterba static const struct extent_io_ops btree_extent_io_ops = {
46114d53dddbSDavid Sterba 	/* mandatory callbacks */
46120b86a832SChris Mason 	.submit_bio_hook = btree_submit_bio_hook,
46134d53dddbSDavid Sterba 	.readpage_end_io_hook = btree_readpage_end_io_hook,
46140da5468fSChris Mason };
4615