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