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