David Sterba | c1d7c51 | 2018-04-03 19:23:33 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Chris Mason | 6cbd557 | 2007-06-12 09:07:21 -0400 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2007 Oracle. All rights reserved. |
Chris Mason | 6cbd557 | 2007-06-12 09:07:21 -0400 | [diff] [blame] | 4 | */ |
| 5 | |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 6 | #include <linux/fs.h> |
Chris Mason | d98237b | 2007-03-28 13:57:48 -0400 | [diff] [blame] | 7 | #include <linux/blkdev.h> |
Chris Mason | 0f7d52f | 2007-04-09 10:42:37 -0400 | [diff] [blame] | 8 | #include <linux/radix-tree.h> |
Chris Mason | 35b7e47 | 2007-05-02 15:53:43 -0400 | [diff] [blame] | 9 | #include <linux/writeback.h> |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 10 | #include <linux/buffer_head.h> |
Chris Mason | ce9adaa | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 11 | #include <linux/workqueue.h> |
Chris Mason | a74a4b9 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 12 | #include <linux/kthread.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 13 | #include <linux/slab.h> |
Chris Mason | 784b4e2 | 2010-11-21 22:20:49 -0500 | [diff] [blame] | 14 | #include <linux/migrate.h> |
David Sterba | 7a36dde | 2011-05-06 15:33:15 +0200 | [diff] [blame] | 15 | #include <linux/ratelimit.h> |
Stefan Behrens | 6463fe5 | 2013-04-19 15:08:05 +0000 | [diff] [blame] | 16 | #include <linux/uuid.h> |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 17 | #include <linux/semaphore.h> |
Masami Hiramatsu | 540adea | 2018-01-13 02:55:03 +0900 | [diff] [blame] | 18 | #include <linux/error-injection.h> |
Nikolay Borisov | 9678c54 | 2018-01-08 11:45:05 +0200 | [diff] [blame] | 19 | #include <linux/crc32c.h> |
Filipe Manana | b89f6d1 | 2018-12-13 21:16:45 +0000 | [diff] [blame] | 20 | #include <linux/sched/mm.h> |
David Sterba | 7e75bf3 | 2011-03-18 22:56:43 +0000 | [diff] [blame] | 21 | #include <asm/unaligned.h> |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 22 | #include "ctree.h" |
| 23 | #include "disk-io.h" |
Chris Mason | e089f05 | 2007-03-16 16:20:31 -0400 | [diff] [blame] | 24 | #include "transaction.h" |
Chris Mason | 0f7d52f | 2007-04-09 10:42:37 -0400 | [diff] [blame] | 25 | #include "btrfs_inode.h" |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 26 | #include "volumes.h" |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 27 | #include "print-tree.h" |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 28 | #include "locking.h" |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 29 | #include "tree-log.h" |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 30 | #include "free-space-cache.h" |
Omar Sandoval | 70f6d82 | 2015-09-29 20:50:38 -0700 | [diff] [blame] | 31 | #include "free-space-tree.h" |
Li Zefan | 581bb05 | 2011-04-20 10:06:11 +0800 | [diff] [blame] | 32 | #include "inode-map.h" |
Stefan Behrens | 21adbd5 | 2011-11-09 13:44:05 +0100 | [diff] [blame] | 33 | #include "check-integrity.h" |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 34 | #include "rcu-string.h" |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 35 | #include "dev-replace.h" |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 36 | #include "raid56.h" |
Jeff Mahoney | 5ac1d20 | 2013-11-01 13:06:58 -0400 | [diff] [blame] | 37 | #include "sysfs.h" |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 38 | #include "qgroup.h" |
Anand Jain | ebb8765 | 2016-03-10 17:26:59 +0800 | [diff] [blame] | 39 | #include "compression.h" |
Qu Wenruo | 557ea5d | 2017-10-09 01:51:02 +0000 | [diff] [blame] | 40 | #include "tree-checker.h" |
Josef Bacik | fd708b8 | 2017-09-29 15:43:50 -0400 | [diff] [blame] | 41 | #include "ref-verify.h" |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 42 | |
Josef Bacik | de0022b | 2012-09-25 14:25:58 -0400 | [diff] [blame] | 43 | #ifdef CONFIG_X86 |
| 44 | #include <asm/cpufeature.h> |
| 45 | #endif |
| 46 | |
Qu Wenruo | 319e4d0 | 2015-12-15 09:14:36 +0800 | [diff] [blame] | 47 | #define BTRFS_SUPER_FLAG_SUPP (BTRFS_HEADER_FLAG_WRITTEN |\ |
| 48 | BTRFS_HEADER_FLAG_RELOC |\ |
| 49 | BTRFS_SUPER_FLAG_ERROR |\ |
| 50 | BTRFS_SUPER_FLAG_SEEDING |\ |
Anand Jain | e2731e5 | 2018-01-09 09:05:41 +0800 | [diff] [blame] | 51 | BTRFS_SUPER_FLAG_METADUMP |\ |
| 52 | BTRFS_SUPER_FLAG_METADUMP_V2) |
Qu Wenruo | 319e4d0 | 2015-12-15 09:14:36 +0800 | [diff] [blame] | 53 | |
David Sterba | e8c9f18 | 2015-01-02 18:23:10 +0100 | [diff] [blame] | 54 | static const struct extent_io_ops btree_extent_io_ops; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 55 | static void end_workqueue_fn(struct btrfs_work *work); |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 56 | static void btrfs_destroy_ordered_extents(struct btrfs_root *root); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 57 | static int btrfs_destroy_delayed_refs(struct btrfs_transaction *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 58 | struct btrfs_fs_info *fs_info); |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 59 | static void btrfs_destroy_delalloc_inodes(struct btrfs_root *root); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 60 | static int btrfs_destroy_marked_extents(struct btrfs_fs_info *fs_info, |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 61 | struct extent_io_tree *dirty_pages, |
| 62 | int mark); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 63 | static int btrfs_destroy_pinned_extent(struct btrfs_fs_info *fs_info, |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 64 | struct extent_io_tree *pinned_extents); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 65 | static int btrfs_cleanup_transaction(struct btrfs_fs_info *fs_info); |
| 66 | static void btrfs_error_commit_super(struct btrfs_fs_info *fs_info); |
Chris Mason | ce9adaa | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 67 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 68 | /* |
David Sterba | 97eb6b6 | 2014-07-30 00:55:42 +0200 | [diff] [blame] | 69 | * btrfs_end_io_wq structs are used to do processing in task context when an IO |
| 70 | * is complete. This is used during reads to verify checksums, and it is used |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 71 | * by writes to insert metadata for new file extents after IO is complete. |
| 72 | */ |
David Sterba | 97eb6b6 | 2014-07-30 00:55:42 +0200 | [diff] [blame] | 73 | struct btrfs_end_io_wq { |
Chris Mason | ce9adaa | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 74 | struct bio *bio; |
| 75 | bio_end_io_t *end_io; |
| 76 | void *private; |
| 77 | struct btrfs_fs_info *info; |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 78 | blk_status_t status; |
David Sterba | bfebd8b | 2014-07-30 00:25:45 +0200 | [diff] [blame] | 79 | enum btrfs_wq_endio_type metadata; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 80 | struct btrfs_work work; |
Chris Mason | ce9adaa | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 81 | }; |
Chris Mason | 0da5468 | 2007-11-07 21:08:01 -0500 | [diff] [blame] | 82 | |
David Sterba | 97eb6b6 | 2014-07-30 00:55:42 +0200 | [diff] [blame] | 83 | static struct kmem_cache *btrfs_end_io_wq_cache; |
| 84 | |
| 85 | int __init btrfs_end_io_wq_init(void) |
| 86 | { |
| 87 | btrfs_end_io_wq_cache = kmem_cache_create("btrfs_end_io_wq", |
| 88 | sizeof(struct btrfs_end_io_wq), |
| 89 | 0, |
Nikolay Borisov | fba4b69 | 2016-06-23 21:17:08 +0300 | [diff] [blame] | 90 | SLAB_MEM_SPREAD, |
David Sterba | 97eb6b6 | 2014-07-30 00:55:42 +0200 | [diff] [blame] | 91 | NULL); |
| 92 | if (!btrfs_end_io_wq_cache) |
| 93 | return -ENOMEM; |
| 94 | return 0; |
| 95 | } |
| 96 | |
David Sterba | e67c718 | 2018-02-19 17:24:18 +0100 | [diff] [blame] | 97 | void __cold btrfs_end_io_wq_exit(void) |
David Sterba | 97eb6b6 | 2014-07-30 00:55:42 +0200 | [diff] [blame] | 98 | { |
Kinglong Mee | 5598e90 | 2016-01-29 21:36:35 +0800 | [diff] [blame] | 99 | kmem_cache_destroy(btrfs_end_io_wq_cache); |
David Sterba | 97eb6b6 | 2014-07-30 00:55:42 +0200 | [diff] [blame] | 100 | } |
| 101 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 102 | /* |
| 103 | * async submit bios are used to offload expensive checksumming |
| 104 | * onto the worker threads. They checksum file and metadata bios |
| 105 | * just before they are sent down the IO stack. |
| 106 | */ |
Chris Mason | 44b8bd7 | 2008-04-16 11:14:51 -0400 | [diff] [blame] | 107 | struct async_submit_bio { |
Josef Bacik | c6100a4 | 2017-05-05 11:57:13 -0400 | [diff] [blame] | 108 | void *private_data; |
Chris Mason | 44b8bd7 | 2008-04-16 11:14:51 -0400 | [diff] [blame] | 109 | struct bio *bio; |
David Sterba | a758781 | 2017-06-23 03:05:23 +0200 | [diff] [blame] | 110 | extent_submit_bio_start_t *submit_bio_start; |
Chris Mason | 44b8bd7 | 2008-04-16 11:14:51 -0400 | [diff] [blame] | 111 | int mirror_num; |
Chris Mason | eaf25d9 | 2010-05-25 09:48:28 -0400 | [diff] [blame] | 112 | /* |
| 113 | * bio_offset is optional, can be used if the pages in the bio |
| 114 | * can't tell us where in the file the bio should go |
| 115 | */ |
| 116 | u64 bio_offset; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 117 | struct btrfs_work work; |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 118 | blk_status_t status; |
Chris Mason | 44b8bd7 | 2008-04-16 11:14:51 -0400 | [diff] [blame] | 119 | }; |
| 120 | |
Chris Mason | 85d4e46 | 2011-07-26 16:11:19 -0400 | [diff] [blame] | 121 | /* |
| 122 | * Lockdep class keys for extent_buffer->lock's in this root. For a given |
| 123 | * eb, the lockdep key is determined by the btrfs_root it belongs to and |
| 124 | * the level the eb occupies in the tree. |
Chris Mason | 4008c04 | 2009-02-12 14:09:45 -0500 | [diff] [blame] | 125 | * |
Chris Mason | 85d4e46 | 2011-07-26 16:11:19 -0400 | [diff] [blame] | 126 | * Different roots are used for different purposes and may nest inside each |
| 127 | * other and they require separate keysets. As lockdep keys should be |
| 128 | * static, assign keysets according to the purpose of the root as indicated |
Misono Tomohiro | 4fd786e | 2018-08-06 14:25:24 +0900 | [diff] [blame] | 129 | * by btrfs_root->root_key.objectid. This ensures that all special purpose |
| 130 | * roots have separate keysets. |
Chris Mason | 4008c04 | 2009-02-12 14:09:45 -0500 | [diff] [blame] | 131 | * |
Chris Mason | 85d4e46 | 2011-07-26 16:11:19 -0400 | [diff] [blame] | 132 | * Lock-nesting across peer nodes is always done with the immediate parent |
| 133 | * node locked thus preventing deadlock. As lockdep doesn't know this, use |
| 134 | * subclass to avoid triggering lockdep warning in such cases. |
Chris Mason | 4008c04 | 2009-02-12 14:09:45 -0500 | [diff] [blame] | 135 | * |
Chris Mason | 85d4e46 | 2011-07-26 16:11:19 -0400 | [diff] [blame] | 136 | * The key is set by the readpage_end_io_hook after the buffer has passed |
| 137 | * csum validation but before the pages are unlocked. It is also set by |
| 138 | * btrfs_init_new_buffer on freshly allocated blocks. |
| 139 | * |
| 140 | * We also add a check to make sure the highest level of the tree is the |
| 141 | * same as our lockdep setup here. If BTRFS_MAX_LEVEL changes, this code |
| 142 | * needs update as well. |
Chris Mason | 4008c04 | 2009-02-12 14:09:45 -0500 | [diff] [blame] | 143 | */ |
| 144 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
| 145 | # if BTRFS_MAX_LEVEL != 8 |
| 146 | # error |
| 147 | # endif |
Chris Mason | 85d4e46 | 2011-07-26 16:11:19 -0400 | [diff] [blame] | 148 | |
| 149 | static struct btrfs_lockdep_keyset { |
| 150 | u64 id; /* root objectid */ |
| 151 | const char *name_stem; /* lock name stem */ |
| 152 | char names[BTRFS_MAX_LEVEL + 1][20]; |
| 153 | struct lock_class_key keys[BTRFS_MAX_LEVEL + 1]; |
| 154 | } btrfs_lockdep_keysets[] = { |
| 155 | { .id = BTRFS_ROOT_TREE_OBJECTID, .name_stem = "root" }, |
| 156 | { .id = BTRFS_EXTENT_TREE_OBJECTID, .name_stem = "extent" }, |
| 157 | { .id = BTRFS_CHUNK_TREE_OBJECTID, .name_stem = "chunk" }, |
| 158 | { .id = BTRFS_DEV_TREE_OBJECTID, .name_stem = "dev" }, |
| 159 | { .id = BTRFS_FS_TREE_OBJECTID, .name_stem = "fs" }, |
| 160 | { .id = BTRFS_CSUM_TREE_OBJECTID, .name_stem = "csum" }, |
David Sterba | 60b6297 | 2013-04-30 17:29:29 +0000 | [diff] [blame] | 161 | { .id = BTRFS_QUOTA_TREE_OBJECTID, .name_stem = "quota" }, |
Chris Mason | 85d4e46 | 2011-07-26 16:11:19 -0400 | [diff] [blame] | 162 | { .id = BTRFS_TREE_LOG_OBJECTID, .name_stem = "log" }, |
| 163 | { .id = BTRFS_TREE_RELOC_OBJECTID, .name_stem = "treloc" }, |
| 164 | { .id = BTRFS_DATA_RELOC_TREE_OBJECTID, .name_stem = "dreloc" }, |
David Sterba | 13fd8da | 2013-09-03 18:28:57 +0200 | [diff] [blame] | 165 | { .id = BTRFS_UUID_TREE_OBJECTID, .name_stem = "uuid" }, |
David Sterba | 6b20e0a | 2016-01-25 16:30:22 +0100 | [diff] [blame] | 166 | { .id = BTRFS_FREE_SPACE_TREE_OBJECTID, .name_stem = "free-space" }, |
Chris Mason | 85d4e46 | 2011-07-26 16:11:19 -0400 | [diff] [blame] | 167 | { .id = 0, .name_stem = "tree" }, |
Chris Mason | 4008c04 | 2009-02-12 14:09:45 -0500 | [diff] [blame] | 168 | }; |
Chris Mason | 85d4e46 | 2011-07-26 16:11:19 -0400 | [diff] [blame] | 169 | |
| 170 | void __init btrfs_init_lockdep(void) |
| 171 | { |
| 172 | int i, j; |
| 173 | |
| 174 | /* initialize lockdep class names */ |
| 175 | for (i = 0; i < ARRAY_SIZE(btrfs_lockdep_keysets); i++) { |
| 176 | struct btrfs_lockdep_keyset *ks = &btrfs_lockdep_keysets[i]; |
| 177 | |
| 178 | for (j = 0; j < ARRAY_SIZE(ks->names); j++) |
| 179 | snprintf(ks->names[j], sizeof(ks->names[j]), |
| 180 | "btrfs-%s-%02d", ks->name_stem, j); |
| 181 | } |
| 182 | } |
| 183 | |
| 184 | void btrfs_set_buffer_lockdep_class(u64 objectid, struct extent_buffer *eb, |
| 185 | int level) |
| 186 | { |
| 187 | struct btrfs_lockdep_keyset *ks; |
| 188 | |
| 189 | BUG_ON(level >= ARRAY_SIZE(ks->keys)); |
| 190 | |
| 191 | /* find the matching keyset, id 0 is the default entry */ |
| 192 | for (ks = btrfs_lockdep_keysets; ks->id; ks++) |
| 193 | if (ks->id == objectid) |
| 194 | break; |
| 195 | |
| 196 | lockdep_set_class_and_name(&eb->lock, |
| 197 | &ks->keys[level], ks->names[level]); |
| 198 | } |
| 199 | |
Chris Mason | 4008c04 | 2009-02-12 14:09:45 -0500 | [diff] [blame] | 200 | #endif |
| 201 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 202 | /* |
| 203 | * extents on the btree inode are pretty simple, there's one extent |
| 204 | * that covers the entire device |
| 205 | */ |
David Sterba | 6af49db | 2017-06-23 04:09:57 +0200 | [diff] [blame] | 206 | struct extent_map *btree_get_extent(struct btrfs_inode *inode, |
David Sterba | 306e16c | 2011-04-19 14:29:38 +0200 | [diff] [blame] | 207 | struct page *page, size_t pg_offset, u64 start, u64 len, |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 208 | int create) |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 209 | { |
David Sterba | 3ffbd68 | 2018-06-29 10:56:42 +0200 | [diff] [blame] | 210 | struct btrfs_fs_info *fs_info = inode->root->fs_info; |
Nikolay Borisov | fc4f21b1 | 2017-02-20 13:51:06 +0200 | [diff] [blame] | 211 | struct extent_map_tree *em_tree = &inode->extent_tree; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 212 | struct extent_map *em; |
| 213 | int ret; |
Chris Mason | d98237b | 2007-03-28 13:57:48 -0400 | [diff] [blame] | 214 | |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 215 | read_lock(&em_tree->lock); |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 216 | em = lookup_extent_mapping(em_tree, start, len); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 217 | if (em) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 218 | em->bdev = fs_info->fs_devices->latest_bdev; |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 219 | read_unlock(&em_tree->lock); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 220 | goto out; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 221 | } |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 222 | read_unlock(&em_tree->lock); |
Chris Mason | 7b13b7b | 2008-04-18 10:29:50 -0400 | [diff] [blame] | 223 | |
David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 224 | em = alloc_extent_map(); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 225 | if (!em) { |
| 226 | em = ERR_PTR(-ENOMEM); |
| 227 | goto out; |
| 228 | } |
| 229 | em->start = 0; |
Chris Mason | 0afbaf8 | 2008-04-18 14:17:20 -0400 | [diff] [blame] | 230 | em->len = (u64)-1; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 231 | em->block_len = (u64)-1; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 232 | em->block_start = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 233 | em->bdev = fs_info->fs_devices->latest_bdev; |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 234 | |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 235 | write_lock(&em_tree->lock); |
Josef Bacik | 09a2a8f9 | 2013-04-05 16:51:15 -0400 | [diff] [blame] | 236 | ret = add_extent_mapping(em_tree, em, 0); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 237 | if (ret == -EEXIST) { |
| 238 | free_extent_map(em); |
Chris Mason | 7b13b7b | 2008-04-18 10:29:50 -0400 | [diff] [blame] | 239 | em = lookup_extent_mapping(em_tree, start, len); |
Tsutomu Itoh | b4f359a | 2012-09-13 03:32:54 -0600 | [diff] [blame] | 240 | if (!em) |
Tsutomu Itoh | 0433f20 | 2012-09-13 03:32:32 -0600 | [diff] [blame] | 241 | em = ERR_PTR(-EIO); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 242 | } else if (ret) { |
Chris Mason | 7b13b7b | 2008-04-18 10:29:50 -0400 | [diff] [blame] | 243 | free_extent_map(em); |
Tsutomu Itoh | 0433f20 | 2012-09-13 03:32:32 -0600 | [diff] [blame] | 244 | em = ERR_PTR(ret); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 245 | } |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 246 | write_unlock(&em_tree->lock); |
Chris Mason | 7b13b7b | 2008-04-18 10:29:50 -0400 | [diff] [blame] | 247 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 248 | out: |
| 249 | return em; |
| 250 | } |
| 251 | |
David Sterba | 9ed5736 | 2017-02-14 18:03:49 +0100 | [diff] [blame] | 252 | u32 btrfs_csum_data(const char *data, u32 seed, size_t len) |
Chris Mason | 19c00dd | 2007-10-15 16:19:22 -0400 | [diff] [blame] | 253 | { |
Nikolay Borisov | 9678c54 | 2018-01-08 11:45:05 +0200 | [diff] [blame] | 254 | return crc32c(seed, data, len); |
Chris Mason | 19c00dd | 2007-10-15 16:19:22 -0400 | [diff] [blame] | 255 | } |
| 256 | |
Domagoj Tršan | 0b5e3da | 2016-10-27 08:52:33 +0100 | [diff] [blame] | 257 | void btrfs_csum_final(u32 crc, u8 *result) |
Chris Mason | 19c00dd | 2007-10-15 16:19:22 -0400 | [diff] [blame] | 258 | { |
David Sterba | 7e75bf3 | 2011-03-18 22:56:43 +0000 | [diff] [blame] | 259 | put_unaligned_le32(~crc, result); |
Chris Mason | 19c00dd | 2007-10-15 16:19:22 -0400 | [diff] [blame] | 260 | } |
| 261 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 262 | /* |
Johannes Thumshirn | 2996e1f | 2019-02-25 14:24:15 +0100 | [diff] [blame] | 263 | * Compute the csum of a btree block and store the result to provided buffer. |
| 264 | * |
| 265 | * Returns error if the extent buffer cannot be mapped. |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 266 | */ |
Johannes Thumshirn | 2996e1f | 2019-02-25 14:24:15 +0100 | [diff] [blame] | 267 | static int csum_tree_block(struct extent_buffer *buf, u8 *result) |
Chris Mason | 19c00dd | 2007-10-15 16:19:22 -0400 | [diff] [blame] | 268 | { |
Chris Mason | 19c00dd | 2007-10-15 16:19:22 -0400 | [diff] [blame] | 269 | unsigned long len; |
| 270 | unsigned long cur_len; |
| 271 | unsigned long offset = BTRFS_CSUM_SIZE; |
Chris Mason | 19c00dd | 2007-10-15 16:19:22 -0400 | [diff] [blame] | 272 | char *kaddr; |
| 273 | unsigned long map_start; |
| 274 | unsigned long map_len; |
| 275 | int err; |
| 276 | u32 crc = ~(u32)0; |
| 277 | |
| 278 | len = buf->len - offset; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 279 | while (len > 0) { |
Johannes Thumshirn | d2e174d | 2018-11-28 09:54:56 +0100 | [diff] [blame] | 280 | /* |
| 281 | * Note: we don't need to check for the err == 1 case here, as |
| 282 | * with the given combination of 'start = BTRFS_CSUM_SIZE (32)' |
| 283 | * and 'min_len = 32' and the currently implemented mapping |
| 284 | * algorithm we cannot cross a page boundary. |
| 285 | */ |
Chris Mason | 19c00dd | 2007-10-15 16:19:22 -0400 | [diff] [blame] | 286 | err = map_private_extent_buffer(buf, offset, 32, |
Chris Mason | a659171 | 2011-07-19 12:04:14 -0400 | [diff] [blame] | 287 | &kaddr, &map_start, &map_len); |
Johannes Thumshirn | c53839f | 2019-02-25 14:24:16 +0100 | [diff] [blame] | 288 | if (WARN_ON(err)) |
Alex Lyakas | 8bd98f0 | 2016-03-10 13:09:46 +0200 | [diff] [blame] | 289 | return err; |
Chris Mason | 19c00dd | 2007-10-15 16:19:22 -0400 | [diff] [blame] | 290 | cur_len = min(len, map_len - (offset - map_start)); |
Liu Bo | b049668 | 2013-03-14 14:57:45 +0000 | [diff] [blame] | 291 | crc = btrfs_csum_data(kaddr + offset - map_start, |
Chris Mason | 19c00dd | 2007-10-15 16:19:22 -0400 | [diff] [blame] | 292 | crc, cur_len); |
| 293 | len -= cur_len; |
| 294 | offset += cur_len; |
Chris Mason | 19c00dd | 2007-10-15 16:19:22 -0400 | [diff] [blame] | 295 | } |
David Sterba | 71a6355 | 2017-11-06 19:23:00 +0100 | [diff] [blame] | 296 | memset(result, 0, BTRFS_CSUM_SIZE); |
Josef Bacik | 607d432 | 2008-12-02 07:17:45 -0500 | [diff] [blame] | 297 | |
Chris Mason | 19c00dd | 2007-10-15 16:19:22 -0400 | [diff] [blame] | 298 | btrfs_csum_final(crc, result); |
| 299 | |
Chris Mason | 19c00dd | 2007-10-15 16:19:22 -0400 | [diff] [blame] | 300 | return 0; |
| 301 | } |
| 302 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 303 | /* |
| 304 | * we can't consider a given block up to date unless the transid of the |
| 305 | * block matches the transid in the parent node's pointer. This is how we |
| 306 | * detect blocks that either didn't get written at all or got written |
| 307 | * in the wrong place. |
| 308 | */ |
Chris Mason | 1259ab7 | 2008-05-12 13:39:03 -0400 | [diff] [blame] | 309 | static int verify_parent_transid(struct extent_io_tree *io_tree, |
Chris Mason | b9fab91 | 2012-05-06 07:23:47 -0400 | [diff] [blame] | 310 | struct extent_buffer *eb, u64 parent_transid, |
| 311 | int atomic) |
Chris Mason | 1259ab7 | 2008-05-12 13:39:03 -0400 | [diff] [blame] | 312 | { |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 313 | struct extent_state *cached_state = NULL; |
Chris Mason | 1259ab7 | 2008-05-12 13:39:03 -0400 | [diff] [blame] | 314 | int ret; |
David Sterba | 2755a0d | 2014-07-31 00:43:18 +0200 | [diff] [blame] | 315 | bool need_lock = (current->journal_info == BTRFS_SEND_TRANS_STUB); |
Chris Mason | 1259ab7 | 2008-05-12 13:39:03 -0400 | [diff] [blame] | 316 | |
| 317 | if (!parent_transid || btrfs_header_generation(eb) == parent_transid) |
| 318 | return 0; |
| 319 | |
Chris Mason | b9fab91 | 2012-05-06 07:23:47 -0400 | [diff] [blame] | 320 | if (atomic) |
| 321 | return -EAGAIN; |
| 322 | |
Josef Bacik | a26e8c9 | 2014-03-28 17:07:27 -0400 | [diff] [blame] | 323 | if (need_lock) { |
| 324 | btrfs_tree_read_lock(eb); |
David Sterba | 300aa89 | 2018-04-04 02:00:17 +0200 | [diff] [blame] | 325 | btrfs_set_lock_blocking_read(eb); |
Josef Bacik | a26e8c9 | 2014-03-28 17:07:27 -0400 | [diff] [blame] | 326 | } |
| 327 | |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 328 | lock_extent_bits(io_tree, eb->start, eb->start + eb->len - 1, |
David Sterba | ff13db4 | 2015-12-03 14:30:40 +0100 | [diff] [blame] | 329 | &cached_state); |
Josef Bacik | 0b32f4b | 2012-03-13 09:38:00 -0400 | [diff] [blame] | 330 | if (extent_buffer_uptodate(eb) && |
Chris Mason | 1259ab7 | 2008-05-12 13:39:03 -0400 | [diff] [blame] | 331 | btrfs_header_generation(eb) == parent_transid) { |
| 332 | ret = 0; |
| 333 | goto out; |
| 334 | } |
David Sterba | 9464732 | 2015-10-08 11:01:36 +0200 | [diff] [blame] | 335 | btrfs_err_rl(eb->fs_info, |
| 336 | "parent transid verify failed on %llu wanted %llu found %llu", |
| 337 | eb->start, |
Wang Shilong | 29549ae | 2014-07-04 17:59:06 +0800 | [diff] [blame] | 338 | parent_transid, btrfs_header_generation(eb)); |
Chris Mason | 1259ab7 | 2008-05-12 13:39:03 -0400 | [diff] [blame] | 339 | ret = 1; |
Josef Bacik | a26e8c9 | 2014-03-28 17:07:27 -0400 | [diff] [blame] | 340 | |
| 341 | /* |
| 342 | * Things reading via commit roots that don't have normal protection, |
| 343 | * like send, can have a really old block in cache that may point at a |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 344 | * block that has been freed and re-allocated. So don't clear uptodate |
Josef Bacik | a26e8c9 | 2014-03-28 17:07:27 -0400 | [diff] [blame] | 345 | * if we find an eb that is under IO (dirty/writeback) because we could |
| 346 | * end up reading in the stale data and then writing it back out and |
| 347 | * making everybody very sad. |
| 348 | */ |
| 349 | if (!extent_buffer_under_io(eb)) |
| 350 | clear_extent_buffer_uptodate(eb); |
Chris Mason | 33958dc | 2008-07-30 10:29:12 -0400 | [diff] [blame] | 351 | out: |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 352 | unlock_extent_cached(io_tree, eb->start, eb->start + eb->len - 1, |
David Sterba | e43bbe5 | 2017-12-12 21:43:52 +0100 | [diff] [blame] | 353 | &cached_state); |
Josef Bacik | 472b909 | 2014-06-25 13:45:41 -0700 | [diff] [blame] | 354 | if (need_lock) |
| 355 | btrfs_tree_read_unlock_blocking(eb); |
Chris Mason | 1259ab7 | 2008-05-12 13:39:03 -0400 | [diff] [blame] | 356 | return ret; |
Chris Mason | 1259ab7 | 2008-05-12 13:39:03 -0400 | [diff] [blame] | 357 | } |
| 358 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 359 | /* |
David Sterba | 1104a88 | 2013-03-06 15:57:46 +0100 | [diff] [blame] | 360 | * Return 0 if the superblock checksum type matches the checksum value of that |
| 361 | * algorithm. Pass the raw disk superblock data. |
| 362 | */ |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 363 | static int btrfs_check_super_csum(struct btrfs_fs_info *fs_info, |
| 364 | char *raw_disk_sb) |
David Sterba | 1104a88 | 2013-03-06 15:57:46 +0100 | [diff] [blame] | 365 | { |
| 366 | struct btrfs_super_block *disk_sb = |
| 367 | (struct btrfs_super_block *)raw_disk_sb; |
| 368 | u16 csum_type = btrfs_super_csum_type(disk_sb); |
| 369 | int ret = 0; |
| 370 | |
| 371 | if (csum_type == BTRFS_CSUM_TYPE_CRC32) { |
| 372 | u32 crc = ~(u32)0; |
Nikolay Borisov | 776c4a7c | 2018-03-13 10:26:06 +0200 | [diff] [blame] | 373 | char result[sizeof(crc)]; |
David Sterba | 1104a88 | 2013-03-06 15:57:46 +0100 | [diff] [blame] | 374 | |
| 375 | /* |
| 376 | * The super_block structure does not span the whole |
| 377 | * BTRFS_SUPER_INFO_SIZE range, we expect that the unused space |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 378 | * is filled with zeros and is included in the checksum. |
David Sterba | 1104a88 | 2013-03-06 15:57:46 +0100 | [diff] [blame] | 379 | */ |
| 380 | crc = btrfs_csum_data(raw_disk_sb + BTRFS_CSUM_SIZE, |
| 381 | crc, BTRFS_SUPER_INFO_SIZE - BTRFS_CSUM_SIZE); |
| 382 | btrfs_csum_final(crc, result); |
| 383 | |
Nikolay Borisov | 776c4a7c | 2018-03-13 10:26:06 +0200 | [diff] [blame] | 384 | if (memcmp(raw_disk_sb, result, sizeof(result))) |
David Sterba | 1104a88 | 2013-03-06 15:57:46 +0100 | [diff] [blame] | 385 | ret = 1; |
| 386 | } |
| 387 | |
| 388 | if (csum_type >= ARRAY_SIZE(btrfs_csum_sizes)) { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 389 | btrfs_err(fs_info, "unsupported checksum algorithm %u", |
David Sterba | 1104a88 | 2013-03-06 15:57:46 +0100 | [diff] [blame] | 390 | csum_type); |
| 391 | ret = 1; |
| 392 | } |
| 393 | |
| 394 | return ret; |
| 395 | } |
| 396 | |
Qu Wenruo | 448de47 | 2019-03-12 17:10:40 +0800 | [diff] [blame] | 397 | int btrfs_verify_level_key(struct btrfs_fs_info *fs_info, |
| 398 | struct extent_buffer *eb, int level, |
| 399 | struct btrfs_key *first_key, u64 parent_transid) |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 400 | { |
| 401 | int found_level; |
| 402 | struct btrfs_key found_key; |
| 403 | int ret; |
| 404 | |
| 405 | found_level = btrfs_header_level(eb); |
| 406 | if (found_level != level) { |
Qu Wenruo | 6348905 | 2019-03-20 14:27:39 +0800 | [diff] [blame] | 407 | WARN(IS_ENABLED(CONFIG_BTRFS_DEBUG), |
| 408 | KERN_ERR "BTRFS: tree level check failed\n"); |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 409 | btrfs_err(fs_info, |
| 410 | "tree level mismatch detected, bytenr=%llu level expected=%u has=%u", |
| 411 | eb->start, level, found_level); |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 412 | return -EIO; |
| 413 | } |
| 414 | |
| 415 | if (!first_key) |
| 416 | return 0; |
| 417 | |
Qu Wenruo | 5d41be6 | 2018-04-13 06:32:47 +0800 | [diff] [blame] | 418 | /* |
| 419 | * For live tree block (new tree blocks in current transaction), |
| 420 | * we need proper lock context to avoid race, which is impossible here. |
| 421 | * So we only checks tree blocks which is read from disk, whose |
| 422 | * generation <= fs_info->last_trans_committed. |
| 423 | */ |
| 424 | if (btrfs_header_generation(eb) > fs_info->last_trans_committed) |
| 425 | return 0; |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 426 | if (found_level) |
| 427 | btrfs_node_key_to_cpu(eb, &found_key, 0); |
| 428 | else |
| 429 | btrfs_item_key_to_cpu(eb, &found_key, 0); |
| 430 | ret = btrfs_comp_cpu_keys(first_key, &found_key); |
| 431 | |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 432 | if (ret) { |
Qu Wenruo | 6348905 | 2019-03-20 14:27:39 +0800 | [diff] [blame] | 433 | WARN(IS_ENABLED(CONFIG_BTRFS_DEBUG), |
| 434 | KERN_ERR "BTRFS: tree first key check failed\n"); |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 435 | btrfs_err(fs_info, |
Liu Bo | ff76a86 | 2018-05-18 10:59:35 +0800 | [diff] [blame] | 436 | "tree first key mismatch detected, bytenr=%llu parent_transid=%llu key expected=(%llu,%u,%llu) has=(%llu,%u,%llu)", |
| 437 | eb->start, parent_transid, first_key->objectid, |
| 438 | first_key->type, first_key->offset, |
| 439 | found_key.objectid, found_key.type, |
| 440 | found_key.offset); |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 441 | } |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 442 | return ret; |
| 443 | } |
| 444 | |
David Sterba | 1104a88 | 2013-03-06 15:57:46 +0100 | [diff] [blame] | 445 | /* |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 446 | * helper to read a given tree block, doing retries as required when |
| 447 | * the checksums don't match and we have alternate mirrors to try. |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 448 | * |
| 449 | * @parent_transid: expected transid, skip check if 0 |
| 450 | * @level: expected level, mandatory check |
| 451 | * @first_key: expected key of first slot, skip check if NULL |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 452 | */ |
David Sterba | 5ab12d1 | 2019-03-20 14:56:39 +0100 | [diff] [blame^] | 453 | static int btree_read_extent_buffer_pages(struct extent_buffer *eb, |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 454 | u64 parent_transid, int level, |
| 455 | struct btrfs_key *first_key) |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 456 | { |
David Sterba | 5ab12d1 | 2019-03-20 14:56:39 +0100 | [diff] [blame^] | 457 | struct btrfs_fs_info *fs_info = eb->fs_info; |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 458 | struct extent_io_tree *io_tree; |
Josef Bacik | ea46679 | 2012-03-26 21:57:36 -0400 | [diff] [blame] | 459 | int failed = 0; |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 460 | int ret; |
| 461 | int num_copies = 0; |
| 462 | int mirror_num = 0; |
Josef Bacik | ea46679 | 2012-03-26 21:57:36 -0400 | [diff] [blame] | 463 | int failed_mirror = 0; |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 464 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 465 | io_tree = &BTRFS_I(fs_info->btree_inode)->io_tree; |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 466 | while (1) { |
Nikolay Borisov | f8397d6 | 2018-11-06 16:40:20 +0200 | [diff] [blame] | 467 | clear_bit(EXTENT_BUFFER_CORRUPT, &eb->bflags); |
Josef Bacik | 8436ea91 | 2016-09-02 15:40:03 -0400 | [diff] [blame] | 468 | ret = read_extent_buffer_pages(io_tree, eb, WAIT_COMPLETE, |
David Sterba | 6af49db | 2017-06-23 04:09:57 +0200 | [diff] [blame] | 469 | mirror_num); |
Stefan Behrens | 256dd1b | 2012-08-10 08:58:21 -0600 | [diff] [blame] | 470 | if (!ret) { |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 471 | if (verify_parent_transid(io_tree, eb, |
Chris Mason | b9fab91 | 2012-05-06 07:23:47 -0400 | [diff] [blame] | 472 | parent_transid, 0)) |
Stefan Behrens | 256dd1b | 2012-08-10 08:58:21 -0600 | [diff] [blame] | 473 | ret = -EIO; |
Qu Wenruo | 448de47 | 2019-03-12 17:10:40 +0800 | [diff] [blame] | 474 | else if (btrfs_verify_level_key(fs_info, eb, level, |
| 475 | first_key, parent_transid)) |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 476 | ret = -EUCLEAN; |
| 477 | else |
| 478 | break; |
Stefan Behrens | 256dd1b | 2012-08-10 08:58:21 -0600 | [diff] [blame] | 479 | } |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 480 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 481 | num_copies = btrfs_num_copies(fs_info, |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 482 | eb->start, eb->len); |
Chris Mason | 4235298 | 2008-04-28 16:40:52 -0400 | [diff] [blame] | 483 | if (num_copies == 1) |
Josef Bacik | ea46679 | 2012-03-26 21:57:36 -0400 | [diff] [blame] | 484 | break; |
Chris Mason | 4235298 | 2008-04-28 16:40:52 -0400 | [diff] [blame] | 485 | |
Josef Bacik | 5cf1ab5 | 2012-04-16 09:42:26 -0400 | [diff] [blame] | 486 | if (!failed_mirror) { |
| 487 | failed = 1; |
| 488 | failed_mirror = eb->read_mirror; |
| 489 | } |
| 490 | |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 491 | mirror_num++; |
Josef Bacik | ea46679 | 2012-03-26 21:57:36 -0400 | [diff] [blame] | 492 | if (mirror_num == failed_mirror) |
| 493 | mirror_num++; |
| 494 | |
Chris Mason | 4235298 | 2008-04-28 16:40:52 -0400 | [diff] [blame] | 495 | if (mirror_num > num_copies) |
Josef Bacik | ea46679 | 2012-03-26 21:57:36 -0400 | [diff] [blame] | 496 | break; |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 497 | } |
Josef Bacik | ea46679 | 2012-03-26 21:57:36 -0400 | [diff] [blame] | 498 | |
Stefan Behrens | c090158 | 2012-07-10 07:30:17 -0600 | [diff] [blame] | 499 | if (failed && !ret && failed_mirror) |
David Sterba | 20a1fbf9 | 2019-03-20 11:23:44 +0100 | [diff] [blame] | 500 | btrfs_repair_eb_io_failure(eb, failed_mirror); |
Josef Bacik | ea46679 | 2012-03-26 21:57:36 -0400 | [diff] [blame] | 501 | |
| 502 | return ret; |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 503 | } |
Chris Mason | 19c00dd | 2007-10-15 16:19:22 -0400 | [diff] [blame] | 504 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 505 | /* |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 506 | * checksum a dirty tree block before IO. This has extra checks to make sure |
| 507 | * we only fill in the checksum field in the first page of a multi-page block |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 508 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 509 | |
Daniel Dressler | 01d5847 | 2014-11-21 17:15:07 +0900 | [diff] [blame] | 510 | static int csum_dirty_buffer(struct btrfs_fs_info *fs_info, struct page *page) |
Chris Mason | 19c00dd | 2007-10-15 16:19:22 -0400 | [diff] [blame] | 511 | { |
Miao Xie | 4eee4fa | 2012-12-21 09:17:45 +0000 | [diff] [blame] | 512 | u64 start = page_offset(page); |
Chris Mason | 19c00dd | 2007-10-15 16:19:22 -0400 | [diff] [blame] | 513 | u64 found_start; |
Johannes Thumshirn | 2996e1f | 2019-02-25 14:24:15 +0100 | [diff] [blame] | 514 | u8 result[BTRFS_CSUM_SIZE]; |
| 515 | u16 csum_size = btrfs_super_csum_size(fs_info->super_copy); |
Chris Mason | 19c00dd | 2007-10-15 16:19:22 -0400 | [diff] [blame] | 516 | struct extent_buffer *eb; |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 517 | |
Josef Bacik | 4f2de97a | 2012-03-07 16:20:05 -0500 | [diff] [blame] | 518 | eb = (struct extent_buffer *)page->private; |
| 519 | if (page != eb->pages[0]) |
| 520 | return 0; |
Alex Lyakas | 0f80553 | 2016-03-10 13:10:15 +0200 | [diff] [blame] | 521 | |
Chris Mason | 19c00dd | 2007-10-15 16:19:22 -0400 | [diff] [blame] | 522 | found_start = btrfs_header_bytenr(eb); |
Alex Lyakas | 0f80553 | 2016-03-10 13:10:15 +0200 | [diff] [blame] | 523 | /* |
| 524 | * Please do not consolidate these warnings into a single if. |
| 525 | * It is useful to know what went wrong. |
| 526 | */ |
| 527 | if (WARN_ON(found_start != start)) |
| 528 | return -EUCLEAN; |
| 529 | if (WARN_ON(!PageUptodate(page))) |
| 530 | return -EUCLEAN; |
| 531 | |
Nikolay Borisov | de37aa5 | 2018-10-30 16:43:24 +0200 | [diff] [blame] | 532 | ASSERT(memcmp_extent_buffer(eb, fs_info->fs_devices->metadata_uuid, |
Alex Lyakas | 0f80553 | 2016-03-10 13:10:15 +0200 | [diff] [blame] | 533 | btrfs_header_fsid(), BTRFS_FSID_SIZE) == 0); |
| 534 | |
Johannes Thumshirn | 2996e1f | 2019-02-25 14:24:15 +0100 | [diff] [blame] | 535 | if (csum_tree_block(eb, result)) |
| 536 | return -EINVAL; |
| 537 | |
| 538 | write_extent_buffer(eb, result, 0, csum_size); |
| 539 | return 0; |
Chris Mason | 19c00dd | 2007-10-15 16:19:22 -0400 | [diff] [blame] | 540 | } |
| 541 | |
David Sterba | b0c9b3b | 2019-03-20 13:12:00 +0100 | [diff] [blame] | 542 | static int check_tree_block_fsid(struct extent_buffer *eb) |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 543 | { |
David Sterba | b0c9b3b | 2019-03-20 13:12:00 +0100 | [diff] [blame] | 544 | struct btrfs_fs_info *fs_info = eb->fs_info; |
Daniel Dressler | 01d5847 | 2014-11-21 17:15:07 +0900 | [diff] [blame] | 545 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Anand Jain | 44880fd | 2017-07-29 17:50:09 +0800 | [diff] [blame] | 546 | u8 fsid[BTRFS_FSID_SIZE]; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 547 | int ret = 1; |
| 548 | |
Ross Kirk | 0a4e558 | 2013-09-24 10:12:38 +0100 | [diff] [blame] | 549 | read_extent_buffer(eb, fsid, btrfs_header_fsid(), BTRFS_FSID_SIZE); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 550 | while (fs_devices) { |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 551 | u8 *metadata_uuid; |
| 552 | |
| 553 | /* |
| 554 | * Checking the incompat flag is only valid for the current |
| 555 | * fs. For seed devices it's forbidden to have their uuid |
| 556 | * changed so reading ->fsid in this case is fine |
| 557 | */ |
| 558 | if (fs_devices == fs_info->fs_devices && |
| 559 | btrfs_fs_incompat(fs_info, METADATA_UUID)) |
| 560 | metadata_uuid = fs_devices->metadata_uuid; |
| 561 | else |
| 562 | metadata_uuid = fs_devices->fsid; |
| 563 | |
| 564 | if (!memcmp(fsid, metadata_uuid, BTRFS_FSID_SIZE)) { |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 565 | ret = 0; |
| 566 | break; |
| 567 | } |
| 568 | fs_devices = fs_devices->seed; |
| 569 | } |
| 570 | return ret; |
| 571 | } |
| 572 | |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 573 | static int btree_readpage_end_io_hook(struct btrfs_io_bio *io_bio, |
| 574 | u64 phy_offset, struct page *page, |
| 575 | u64 start, u64 end, int mirror) |
Chris Mason | ce9adaa | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 576 | { |
Chris Mason | ce9adaa | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 577 | u64 found_start; |
| 578 | int found_level; |
Chris Mason | ce9adaa | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 579 | struct extent_buffer *eb; |
| 580 | struct btrfs_root *root = BTRFS_I(page->mapping->host)->root; |
Zhao Lei | 02873e4 | 2015-12-31 22:46:45 +0800 | [diff] [blame] | 581 | struct btrfs_fs_info *fs_info = root->fs_info; |
Johannes Thumshirn | 2996e1f | 2019-02-25 14:24:15 +0100 | [diff] [blame] | 582 | u16 csum_size = btrfs_super_csum_size(fs_info->super_copy); |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 583 | int ret = 0; |
Johannes Thumshirn | 2996e1f | 2019-02-25 14:24:15 +0100 | [diff] [blame] | 584 | u8 result[BTRFS_CSUM_SIZE]; |
Chris Mason | 727011e | 2010-08-06 13:21:20 -0400 | [diff] [blame] | 585 | int reads_done; |
Chris Mason | ce9adaa | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 586 | |
Chris Mason | ce9adaa | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 587 | if (!page->private) |
| 588 | goto out; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 589 | |
Josef Bacik | 4f2de97a | 2012-03-07 16:20:05 -0500 | [diff] [blame] | 590 | eb = (struct extent_buffer *)page->private; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 591 | |
Josef Bacik | 0b32f4b | 2012-03-13 09:38:00 -0400 | [diff] [blame] | 592 | /* the pending IO might have been the only thing that kept this buffer |
| 593 | * in memory. Make sure we have a ref for all this other checks |
| 594 | */ |
| 595 | extent_buffer_get(eb); |
| 596 | |
| 597 | reads_done = atomic_dec_and_test(&eb->io_pages); |
Chris Mason | 727011e | 2010-08-06 13:21:20 -0400 | [diff] [blame] | 598 | if (!reads_done) |
| 599 | goto err; |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 600 | |
Josef Bacik | 5cf1ab5 | 2012-04-16 09:42:26 -0400 | [diff] [blame] | 601 | eb->read_mirror = mirror; |
Filipe Manana | 656f30d | 2014-09-26 12:25:56 +0100 | [diff] [blame] | 602 | if (test_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags)) { |
Josef Bacik | ea46679 | 2012-03-26 21:57:36 -0400 | [diff] [blame] | 603 | ret = -EIO; |
| 604 | goto err; |
| 605 | } |
| 606 | |
Chris Mason | ce9adaa | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 607 | found_start = btrfs_header_bytenr(eb); |
Chris Mason | 727011e | 2010-08-06 13:21:20 -0400 | [diff] [blame] | 608 | if (found_start != eb->start) { |
Su Yue | 893bf4b | 2018-06-22 09:52:15 +0800 | [diff] [blame] | 609 | btrfs_err_rl(fs_info, "bad tree block start, want %llu have %llu", |
| 610 | eb->start, found_start); |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 611 | ret = -EIO; |
Chris Mason | ce9adaa | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 612 | goto err; |
| 613 | } |
David Sterba | b0c9b3b | 2019-03-20 13:12:00 +0100 | [diff] [blame] | 614 | if (check_tree_block_fsid(eb)) { |
Zhao Lei | 02873e4 | 2015-12-31 22:46:45 +0800 | [diff] [blame] | 615 | btrfs_err_rl(fs_info, "bad fsid on block %llu", |
| 616 | eb->start); |
Chris Mason | 1259ab7 | 2008-05-12 13:39:03 -0400 | [diff] [blame] | 617 | ret = -EIO; |
| 618 | goto err; |
| 619 | } |
Chris Mason | ce9adaa | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 620 | found_level = btrfs_header_level(eb); |
Josef Bacik | 1c24c3c | 2013-04-23 11:30:14 -0400 | [diff] [blame] | 621 | if (found_level >= BTRFS_MAX_LEVEL) { |
Su Yue | 893bf4b | 2018-06-22 09:52:15 +0800 | [diff] [blame] | 622 | btrfs_err(fs_info, "bad tree block level %d on %llu", |
| 623 | (int)btrfs_header_level(eb), eb->start); |
Josef Bacik | 1c24c3c | 2013-04-23 11:30:14 -0400 | [diff] [blame] | 624 | ret = -EIO; |
| 625 | goto err; |
| 626 | } |
Chris Mason | ce9adaa | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 627 | |
Chris Mason | 85d4e46 | 2011-07-26 16:11:19 -0400 | [diff] [blame] | 628 | btrfs_set_buffer_lockdep_class(btrfs_header_owner(eb), |
| 629 | eb, found_level); |
Chris Mason | 4008c04 | 2009-02-12 14:09:45 -0500 | [diff] [blame] | 630 | |
Johannes Thumshirn | 2996e1f | 2019-02-25 14:24:15 +0100 | [diff] [blame] | 631 | ret = csum_tree_block(eb, result); |
Alex Lyakas | 8bd98f0 | 2016-03-10 13:09:46 +0200 | [diff] [blame] | 632 | if (ret) |
Josef Bacik | a826d6d | 2011-03-16 13:42:43 -0400 | [diff] [blame] | 633 | goto err; |
Josef Bacik | a826d6d | 2011-03-16 13:42:43 -0400 | [diff] [blame] | 634 | |
Johannes Thumshirn | 2996e1f | 2019-02-25 14:24:15 +0100 | [diff] [blame] | 635 | if (memcmp_extent_buffer(eb, result, 0, csum_size)) { |
| 636 | u32 val; |
| 637 | u32 found = 0; |
| 638 | |
| 639 | memcpy(&found, result, csum_size); |
| 640 | |
| 641 | read_extent_buffer(eb, &val, 0, csum_size); |
| 642 | btrfs_warn_rl(fs_info, |
| 643 | "%s checksum verify failed on %llu wanted %x found %x level %d", |
| 644 | fs_info->sb->s_id, eb->start, |
| 645 | val, found, btrfs_header_level(eb)); |
| 646 | ret = -EUCLEAN; |
| 647 | goto err; |
| 648 | } |
| 649 | |
Josef Bacik | a826d6d | 2011-03-16 13:42:43 -0400 | [diff] [blame] | 650 | /* |
| 651 | * If this is a leaf block and it is corrupt, set the corrupt bit so |
| 652 | * that we don't try and read the other copies of this block, just |
| 653 | * return -EIO. |
| 654 | */ |
Qu Wenruo | 2f65954 | 2018-01-25 14:56:18 +0800 | [diff] [blame] | 655 | if (found_level == 0 && btrfs_check_leaf_full(fs_info, eb)) { |
Josef Bacik | a826d6d | 2011-03-16 13:42:43 -0400 | [diff] [blame] | 656 | set_bit(EXTENT_BUFFER_CORRUPT, &eb->bflags); |
| 657 | ret = -EIO; |
| 658 | } |
Chris Mason | ce9adaa | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 659 | |
Qu Wenruo | 2f65954 | 2018-01-25 14:56:18 +0800 | [diff] [blame] | 660 | if (found_level > 0 && btrfs_check_node(fs_info, eb)) |
Liu Bo | 053ab70f | 2016-08-23 17:37:45 -0700 | [diff] [blame] | 661 | ret = -EIO; |
| 662 | |
Josef Bacik | 0b32f4b | 2012-03-13 09:38:00 -0400 | [diff] [blame] | 663 | if (!ret) |
| 664 | set_extent_buffer_uptodate(eb); |
Qu Wenruo | 75391f0 | 2019-03-20 14:27:40 +0800 | [diff] [blame] | 665 | else |
| 666 | btrfs_err(fs_info, |
| 667 | "block=%llu read time tree block corruption detected", |
| 668 | eb->start); |
Chris Mason | ce9adaa | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 669 | err: |
Josef Bacik | 79fb65a | 2013-04-20 10:18:27 -0400 | [diff] [blame] | 670 | if (reads_done && |
| 671 | test_and_clear_bit(EXTENT_BUFFER_READAHEAD, &eb->bflags)) |
David Sterba | d48d71a | 2017-03-02 19:43:30 +0100 | [diff] [blame] | 672 | btree_readahead_hook(eb, ret); |
Arne Jansen | 4bb31e9 | 2011-06-10 13:55:54 +0200 | [diff] [blame] | 673 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 674 | if (ret) { |
| 675 | /* |
| 676 | * our io error hook is going to dec the io pages |
| 677 | * again, we have to make sure it has something |
| 678 | * to decrement |
| 679 | */ |
| 680 | atomic_inc(&eb->io_pages); |
Josef Bacik | 0b32f4b | 2012-03-13 09:38:00 -0400 | [diff] [blame] | 681 | clear_extent_buffer_uptodate(eb); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 682 | } |
Josef Bacik | 0b32f4b | 2012-03-13 09:38:00 -0400 | [diff] [blame] | 683 | free_extent_buffer(eb); |
Chris Mason | ce9adaa | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 684 | out: |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 685 | return ret; |
Chris Mason | ce9adaa | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 686 | } |
| 687 | |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 688 | static void end_workqueue_bio(struct bio *bio) |
Chris Mason | ce9adaa | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 689 | { |
David Sterba | 97eb6b6 | 2014-07-30 00:55:42 +0200 | [diff] [blame] | 690 | struct btrfs_end_io_wq *end_io_wq = bio->bi_private; |
Chris Mason | ce9adaa | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 691 | struct btrfs_fs_info *fs_info; |
Liu Bo | 9e0af23 | 2014-08-15 23:36:53 +0800 | [diff] [blame] | 692 | struct btrfs_workqueue *wq; |
| 693 | btrfs_work_func_t func; |
Chris Mason | ce9adaa | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 694 | |
Chris Mason | ce9adaa | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 695 | fs_info = end_io_wq->info; |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 696 | end_io_wq->status = bio->bi_status; |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 697 | |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 698 | if (bio_op(bio) == REQ_OP_WRITE) { |
Liu Bo | 9e0af23 | 2014-08-15 23:36:53 +0800 | [diff] [blame] | 699 | if (end_io_wq->metadata == BTRFS_WQ_ENDIO_METADATA) { |
| 700 | wq = fs_info->endio_meta_write_workers; |
| 701 | func = btrfs_endio_meta_write_helper; |
| 702 | } else if (end_io_wq->metadata == BTRFS_WQ_ENDIO_FREE_SPACE) { |
| 703 | wq = fs_info->endio_freespace_worker; |
| 704 | func = btrfs_freespace_write_helper; |
| 705 | } else if (end_io_wq->metadata == BTRFS_WQ_ENDIO_RAID56) { |
| 706 | wq = fs_info->endio_raid56_workers; |
| 707 | func = btrfs_endio_raid56_helper; |
| 708 | } else { |
| 709 | wq = fs_info->endio_write_workers; |
| 710 | func = btrfs_endio_write_helper; |
| 711 | } |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 712 | } else { |
Miao Xie | 8b110e3 | 2014-09-12 18:44:03 +0800 | [diff] [blame] | 713 | if (unlikely(end_io_wq->metadata == |
| 714 | BTRFS_WQ_ENDIO_DIO_REPAIR)) { |
| 715 | wq = fs_info->endio_repair_workers; |
| 716 | func = btrfs_endio_repair_helper; |
| 717 | } else if (end_io_wq->metadata == BTRFS_WQ_ENDIO_RAID56) { |
Liu Bo | 9e0af23 | 2014-08-15 23:36:53 +0800 | [diff] [blame] | 718 | wq = fs_info->endio_raid56_workers; |
| 719 | func = btrfs_endio_raid56_helper; |
| 720 | } else if (end_io_wq->metadata) { |
| 721 | wq = fs_info->endio_meta_workers; |
| 722 | func = btrfs_endio_meta_helper; |
| 723 | } else { |
| 724 | wq = fs_info->endio_workers; |
| 725 | func = btrfs_endio_helper; |
| 726 | } |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 727 | } |
Liu Bo | 9e0af23 | 2014-08-15 23:36:53 +0800 | [diff] [blame] | 728 | |
| 729 | btrfs_init_work(&end_io_wq->work, func, end_workqueue_fn, NULL, NULL); |
| 730 | btrfs_queue_work(wq, &end_io_wq->work); |
Chris Mason | ce9adaa | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 731 | } |
| 732 | |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 733 | blk_status_t btrfs_bio_wq_end_io(struct btrfs_fs_info *info, struct bio *bio, |
David Sterba | bfebd8b | 2014-07-30 00:25:45 +0200 | [diff] [blame] | 734 | enum btrfs_wq_endio_type metadata) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 735 | { |
David Sterba | 97eb6b6 | 2014-07-30 00:55:42 +0200 | [diff] [blame] | 736 | struct btrfs_end_io_wq *end_io_wq; |
Miao Xie | 8b110e3 | 2014-09-12 18:44:03 +0800 | [diff] [blame] | 737 | |
David Sterba | 97eb6b6 | 2014-07-30 00:55:42 +0200 | [diff] [blame] | 738 | end_io_wq = kmem_cache_alloc(btrfs_end_io_wq_cache, GFP_NOFS); |
Chris Mason | ce9adaa | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 739 | if (!end_io_wq) |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 740 | return BLK_STS_RESOURCE; |
Chris Mason | ce9adaa | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 741 | |
| 742 | end_io_wq->private = bio->bi_private; |
| 743 | end_io_wq->end_io = bio->bi_end_io; |
Chris Mason | 22c5994 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 744 | end_io_wq->info = info; |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 745 | end_io_wq->status = 0; |
Chris Mason | ce9adaa | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 746 | end_io_wq->bio = bio; |
Chris Mason | 22c5994 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 747 | end_io_wq->metadata = metadata; |
Chris Mason | ce9adaa | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 748 | |
| 749 | bio->bi_private = end_io_wq; |
| 750 | bio->bi_end_io = end_workqueue_bio; |
Chris Mason | 22c5994 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 751 | return 0; |
| 752 | } |
| 753 | |
Chris Mason | 4a69a41 | 2008-11-06 22:03:00 -0500 | [diff] [blame] | 754 | static void run_one_async_start(struct btrfs_work *work) |
| 755 | { |
Chris Mason | 4a69a41 | 2008-11-06 22:03:00 -0500 | [diff] [blame] | 756 | struct async_submit_bio *async; |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 757 | blk_status_t ret; |
Chris Mason | 4a69a41 | 2008-11-06 22:03:00 -0500 | [diff] [blame] | 758 | |
| 759 | async = container_of(work, struct async_submit_bio, work); |
Josef Bacik | c6100a4 | 2017-05-05 11:57:13 -0400 | [diff] [blame] | 760 | ret = async->submit_bio_start(async->private_data, async->bio, |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 761 | async->bio_offset); |
| 762 | if (ret) |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 763 | async->status = ret; |
Chris Mason | 4a69a41 | 2008-11-06 22:03:00 -0500 | [diff] [blame] | 764 | } |
| 765 | |
David Sterba | 06ea01b | 2018-07-17 22:08:41 +0200 | [diff] [blame] | 766 | /* |
| 767 | * In order to insert checksums into the metadata in large chunks, we wait |
| 768 | * until bio submission time. All the pages in the bio are checksummed and |
| 769 | * sums are attached onto the ordered extent record. |
| 770 | * |
| 771 | * At IO completion time the csums attached on the ordered extent record are |
| 772 | * inserted into the tree. |
| 773 | */ |
Chris Mason | 4a69a41 | 2008-11-06 22:03:00 -0500 | [diff] [blame] | 774 | static void run_one_async_done(struct btrfs_work *work) |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 775 | { |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 776 | struct async_submit_bio *async; |
David Sterba | 06ea01b | 2018-07-17 22:08:41 +0200 | [diff] [blame] | 777 | struct inode *inode; |
| 778 | blk_status_t ret; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 779 | |
| 780 | async = container_of(work, struct async_submit_bio, work); |
David Sterba | 06ea01b | 2018-07-17 22:08:41 +0200 | [diff] [blame] | 781 | inode = async->private_data; |
Chris Mason | 4854ddd | 2008-08-15 15:34:17 -0400 | [diff] [blame] | 782 | |
Adam Buchbinder | bb7ab3b | 2016-03-04 11:23:12 -0800 | [diff] [blame] | 783 | /* If an error occurred we just want to clean up the bio and move on */ |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 784 | if (async->status) { |
| 785 | async->bio->bi_status = async->status; |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 786 | bio_endio(async->bio); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 787 | return; |
| 788 | } |
| 789 | |
David Sterba | 06ea01b | 2018-07-17 22:08:41 +0200 | [diff] [blame] | 790 | ret = btrfs_map_bio(btrfs_sb(inode->i_sb), async->bio, |
| 791 | async->mirror_num, 1); |
| 792 | if (ret) { |
| 793 | async->bio->bi_status = ret; |
| 794 | bio_endio(async->bio); |
| 795 | } |
Chris Mason | 4a69a41 | 2008-11-06 22:03:00 -0500 | [diff] [blame] | 796 | } |
| 797 | |
| 798 | static void run_one_async_free(struct btrfs_work *work) |
| 799 | { |
| 800 | struct async_submit_bio *async; |
| 801 | |
| 802 | async = container_of(work, struct async_submit_bio, work); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 803 | kfree(async); |
| 804 | } |
| 805 | |
Linus Torvalds | 8c27cb3 | 2017-07-05 16:41:23 -0700 | [diff] [blame] | 806 | blk_status_t btrfs_wq_submit_bio(struct btrfs_fs_info *fs_info, struct bio *bio, |
| 807 | int mirror_num, unsigned long bio_flags, |
| 808 | u64 bio_offset, void *private_data, |
David Sterba | e288c08 | 2018-07-18 17:36:24 +0200 | [diff] [blame] | 809 | extent_submit_bio_start_t *submit_bio_start) |
Chris Mason | 44b8bd7 | 2008-04-16 11:14:51 -0400 | [diff] [blame] | 810 | { |
| 811 | struct async_submit_bio *async; |
| 812 | |
| 813 | async = kmalloc(sizeof(*async), GFP_NOFS); |
| 814 | if (!async) |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 815 | return BLK_STS_RESOURCE; |
Chris Mason | 44b8bd7 | 2008-04-16 11:14:51 -0400 | [diff] [blame] | 816 | |
Josef Bacik | c6100a4 | 2017-05-05 11:57:13 -0400 | [diff] [blame] | 817 | async->private_data = private_data; |
Chris Mason | 44b8bd7 | 2008-04-16 11:14:51 -0400 | [diff] [blame] | 818 | async->bio = bio; |
| 819 | async->mirror_num = mirror_num; |
Chris Mason | 4a69a41 | 2008-11-06 22:03:00 -0500 | [diff] [blame] | 820 | async->submit_bio_start = submit_bio_start; |
Chris Mason | 4a69a41 | 2008-11-06 22:03:00 -0500 | [diff] [blame] | 821 | |
Liu Bo | 9e0af23 | 2014-08-15 23:36:53 +0800 | [diff] [blame] | 822 | btrfs_init_work(&async->work, btrfs_worker_helper, run_one_async_start, |
Qu Wenruo | 5cdc7ad3 | 2014-02-28 10:46:06 +0800 | [diff] [blame] | 823 | run_one_async_done, run_one_async_free); |
Chris Mason | 4a69a41 | 2008-11-06 22:03:00 -0500 | [diff] [blame] | 824 | |
Chris Mason | eaf25d9 | 2010-05-25 09:48:28 -0400 | [diff] [blame] | 825 | async->bio_offset = bio_offset; |
Chris Mason | 8c8bee1 | 2008-09-29 11:19:10 -0400 | [diff] [blame] | 826 | |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 827 | async->status = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 828 | |
Christoph Hellwig | 67f055c | 2016-11-01 07:40:06 -0600 | [diff] [blame] | 829 | if (op_is_sync(bio->bi_opf)) |
Qu Wenruo | 5cdc7ad3 | 2014-02-28 10:46:06 +0800 | [diff] [blame] | 830 | btrfs_set_work_high_priority(&async->work); |
Chris Mason | d313d7a | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 831 | |
Qu Wenruo | 5cdc7ad3 | 2014-02-28 10:46:06 +0800 | [diff] [blame] | 832 | btrfs_queue_work(fs_info->workers, &async->work); |
Chris Mason | 44b8bd7 | 2008-04-16 11:14:51 -0400 | [diff] [blame] | 833 | return 0; |
| 834 | } |
| 835 | |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 836 | static blk_status_t btree_csum_one_bio(struct bio *bio) |
Chris Mason | ce3ed71 | 2008-09-23 13:14:12 -0400 | [diff] [blame] | 837 | { |
Kent Overstreet | 2c30c71 | 2013-11-07 12:20:26 -0800 | [diff] [blame] | 838 | struct bio_vec *bvec; |
Chris Mason | ce3ed71 | 2008-09-23 13:14:12 -0400 | [diff] [blame] | 839 | struct btrfs_root *root; |
Kent Overstreet | 2c30c71 | 2013-11-07 12:20:26 -0800 | [diff] [blame] | 840 | int i, ret = 0; |
Ming Lei | 6dc4f10 | 2019-02-15 19:13:19 +0800 | [diff] [blame] | 841 | struct bvec_iter_all iter_all; |
Chris Mason | ce3ed71 | 2008-09-23 13:14:12 -0400 | [diff] [blame] | 842 | |
David Sterba | c09abff | 2017-07-13 18:10:07 +0200 | [diff] [blame] | 843 | ASSERT(!bio_flagged(bio, BIO_CLONED)); |
Ming Lei | 6dc4f10 | 2019-02-15 19:13:19 +0800 | [diff] [blame] | 844 | bio_for_each_segment_all(bvec, bio, i, iter_all) { |
Chris Mason | ce3ed71 | 2008-09-23 13:14:12 -0400 | [diff] [blame] | 845 | root = BTRFS_I(bvec->bv_page->mapping->host)->root; |
Daniel Dressler | 01d5847 | 2014-11-21 17:15:07 +0900 | [diff] [blame] | 846 | ret = csum_dirty_buffer(root->fs_info, bvec->bv_page); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 847 | if (ret) |
| 848 | break; |
Chris Mason | ce3ed71 | 2008-09-23 13:14:12 -0400 | [diff] [blame] | 849 | } |
Kent Overstreet | 2c30c71 | 2013-11-07 12:20:26 -0800 | [diff] [blame] | 850 | |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 851 | return errno_to_blk_status(ret); |
Chris Mason | ce3ed71 | 2008-09-23 13:14:12 -0400 | [diff] [blame] | 852 | } |
| 853 | |
David Sterba | d0ee393 | 2018-03-08 14:35:48 +0100 | [diff] [blame] | 854 | static blk_status_t btree_submit_bio_start(void *private_data, struct bio *bio, |
Linus Torvalds | 8c27cb3 | 2017-07-05 16:41:23 -0700 | [diff] [blame] | 855 | u64 bio_offset) |
Chris Mason | 22c5994 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 856 | { |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 857 | /* |
| 858 | * when we're called for a write, we're already in the async |
Chris Mason | 5443be4 | 2008-08-15 15:34:16 -0400 | [diff] [blame] | 859 | * submission context. Just jump into btrfs_map_bio |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 860 | */ |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 861 | return btree_csum_one_bio(bio); |
Chris Mason | 4a69a41 | 2008-11-06 22:03:00 -0500 | [diff] [blame] | 862 | } |
Chris Mason | 22c5994 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 863 | |
Liu Bo | 18fdc67 | 2017-09-13 12:18:22 -0600 | [diff] [blame] | 864 | static int check_async_write(struct btrfs_inode *bi) |
Josef Bacik | de0022b | 2012-09-25 14:25:58 -0400 | [diff] [blame] | 865 | { |
Liu Bo | 6300463 | 2017-08-21 15:49:59 -0600 | [diff] [blame] | 866 | if (atomic_read(&bi->sync_writers)) |
| 867 | return 0; |
Josef Bacik | de0022b | 2012-09-25 14:25:58 -0400 | [diff] [blame] | 868 | #ifdef CONFIG_X86 |
Borislav Petkov | bc696ca | 2016-01-26 22:12:05 +0100 | [diff] [blame] | 869 | if (static_cpu_has(X86_FEATURE_XMM4_2)) |
Josef Bacik | de0022b | 2012-09-25 14:25:58 -0400 | [diff] [blame] | 870 | return 0; |
| 871 | #endif |
| 872 | return 1; |
| 873 | } |
| 874 | |
Linus Torvalds | 8c27cb3 | 2017-07-05 16:41:23 -0700 | [diff] [blame] | 875 | static blk_status_t btree_submit_bio_hook(void *private_data, struct bio *bio, |
| 876 | int mirror_num, unsigned long bio_flags, |
| 877 | u64 bio_offset) |
Chris Mason | 44b8bd7 | 2008-04-16 11:14:51 -0400 | [diff] [blame] | 878 | { |
Josef Bacik | c6100a4 | 2017-05-05 11:57:13 -0400 | [diff] [blame] | 879 | struct inode *inode = private_data; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 880 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
Liu Bo | 18fdc67 | 2017-09-13 12:18:22 -0600 | [diff] [blame] | 881 | int async = check_async_write(BTRFS_I(inode)); |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 882 | blk_status_t ret; |
Chris Mason | cad321a | 2008-12-17 14:51:42 -0500 | [diff] [blame] | 883 | |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 884 | if (bio_op(bio) != REQ_OP_WRITE) { |
Chris Mason | 4a69a41 | 2008-11-06 22:03:00 -0500 | [diff] [blame] | 885 | /* |
| 886 | * called for a read, do the setup so that checksum validation |
| 887 | * can happen in the async kernel threads |
| 888 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 889 | ret = btrfs_bio_wq_end_io(fs_info, bio, |
| 890 | BTRFS_WQ_ENDIO_METADATA); |
Chris Mason | 1d4284b | 2012-03-28 20:31:37 -0400 | [diff] [blame] | 891 | if (ret) |
Stefan Behrens | 6189192 | 2012-11-05 18:51:52 +0100 | [diff] [blame] | 892 | goto out_w_error; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 893 | ret = btrfs_map_bio(fs_info, bio, mirror_num, 0); |
Josef Bacik | de0022b | 2012-09-25 14:25:58 -0400 | [diff] [blame] | 894 | } else if (!async) { |
| 895 | ret = btree_csum_one_bio(bio); |
| 896 | if (ret) |
Stefan Behrens | 6189192 | 2012-11-05 18:51:52 +0100 | [diff] [blame] | 897 | goto out_w_error; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 898 | ret = btrfs_map_bio(fs_info, bio, mirror_num, 0); |
Stefan Behrens | 6189192 | 2012-11-05 18:51:52 +0100 | [diff] [blame] | 899 | } else { |
| 900 | /* |
| 901 | * kthread helpers are used to submit writes so that |
| 902 | * checksumming can happen in parallel across all CPUs |
| 903 | */ |
Josef Bacik | c6100a4 | 2017-05-05 11:57:13 -0400 | [diff] [blame] | 904 | ret = btrfs_wq_submit_bio(fs_info, bio, mirror_num, 0, |
| 905 | bio_offset, private_data, |
David Sterba | e288c08 | 2018-07-18 17:36:24 +0200 | [diff] [blame] | 906 | btree_submit_bio_start); |
Chris Mason | 44b8bd7 | 2008-04-16 11:14:51 -0400 | [diff] [blame] | 907 | } |
Chris Mason | d313d7a | 2009-04-20 15:50:09 -0400 | [diff] [blame] | 908 | |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 909 | if (ret) |
| 910 | goto out_w_error; |
| 911 | return 0; |
| 912 | |
Stefan Behrens | 6189192 | 2012-11-05 18:51:52 +0100 | [diff] [blame] | 913 | out_w_error: |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 914 | bio->bi_status = ret; |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 915 | bio_endio(bio); |
Stefan Behrens | 6189192 | 2012-11-05 18:51:52 +0100 | [diff] [blame] | 916 | return ret; |
Chris Mason | 44b8bd7 | 2008-04-16 11:14:51 -0400 | [diff] [blame] | 917 | } |
| 918 | |
Jan Beulich | 3dd1462 | 2010-12-07 14:54:09 +0000 | [diff] [blame] | 919 | #ifdef CONFIG_MIGRATION |
Chris Mason | 784b4e2 | 2010-11-21 22:20:49 -0500 | [diff] [blame] | 920 | static int btree_migratepage(struct address_space *mapping, |
Mel Gorman | a6bc32b | 2012-01-12 17:19:43 -0800 | [diff] [blame] | 921 | struct page *newpage, struct page *page, |
| 922 | enum migrate_mode mode) |
Chris Mason | 784b4e2 | 2010-11-21 22:20:49 -0500 | [diff] [blame] | 923 | { |
| 924 | /* |
| 925 | * we can't safely write a btree page from here, |
| 926 | * we haven't done the locking hook |
| 927 | */ |
| 928 | if (PageDirty(page)) |
| 929 | return -EAGAIN; |
| 930 | /* |
| 931 | * Buffers may be managed in a filesystem specific way. |
| 932 | * We must have no buffers or drop them. |
| 933 | */ |
| 934 | if (page_has_private(page) && |
| 935 | !try_to_release_page(page, GFP_KERNEL)) |
| 936 | return -EAGAIN; |
Mel Gorman | a6bc32b | 2012-01-12 17:19:43 -0800 | [diff] [blame] | 937 | return migrate_page(mapping, newpage, page, mode); |
Chris Mason | 784b4e2 | 2010-11-21 22:20:49 -0500 | [diff] [blame] | 938 | } |
Jan Beulich | 3dd1462 | 2010-12-07 14:54:09 +0000 | [diff] [blame] | 939 | #endif |
Chris Mason | 784b4e2 | 2010-11-21 22:20:49 -0500 | [diff] [blame] | 940 | |
Chris Mason | 0da5468 | 2007-11-07 21:08:01 -0500 | [diff] [blame] | 941 | |
| 942 | static int btree_writepages(struct address_space *mapping, |
| 943 | struct writeback_control *wbc) |
| 944 | { |
Miao Xie | e2d8452 | 2013-01-29 10:09:20 +0000 | [diff] [blame] | 945 | struct btrfs_fs_info *fs_info; |
| 946 | int ret; |
| 947 | |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 948 | if (wbc->sync_mode == WB_SYNC_NONE) { |
Chris Mason | 448d640 | 2007-11-27 07:52:01 -0800 | [diff] [blame] | 949 | |
| 950 | if (wbc->for_kupdate) |
| 951 | return 0; |
| 952 | |
Miao Xie | e2d8452 | 2013-01-29 10:09:20 +0000 | [diff] [blame] | 953 | fs_info = BTRFS_I(mapping->host)->root->fs_info; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 954 | /* this is a bit racy, but that's ok */ |
Ethan Lien | d814a49 | 2018-07-02 15:44:58 +0800 | [diff] [blame] | 955 | ret = __percpu_counter_compare(&fs_info->dirty_metadata_bytes, |
| 956 | BTRFS_DIRTY_METADATA_THRESH, |
| 957 | fs_info->dirty_metadata_batch); |
Miao Xie | e2d8452 | 2013-01-29 10:09:20 +0000 | [diff] [blame] | 958 | if (ret < 0) |
Chris Mason | 793955b | 2007-11-26 16:34:41 -0800 | [diff] [blame] | 959 | return 0; |
Chris Mason | 793955b | 2007-11-26 16:34:41 -0800 | [diff] [blame] | 960 | } |
Josef Bacik | 0b32f4b | 2012-03-13 09:38:00 -0400 | [diff] [blame] | 961 | return btree_write_cache_pages(mapping, wbc); |
Chris Mason | 0da5468 | 2007-11-07 21:08:01 -0500 | [diff] [blame] | 962 | } |
| 963 | |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 964 | static int btree_readpage(struct file *file, struct page *page) |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 965 | { |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 966 | struct extent_io_tree *tree; |
| 967 | tree = &BTRFS_I(page->mapping->host)->io_tree; |
Jan Schmidt | 8ddc7d9 | 2011-06-13 20:02:58 +0200 | [diff] [blame] | 968 | return extent_read_full_page(tree, page, btree_get_extent, 0); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 969 | } |
| 970 | |
Chris Mason | 70dec80 | 2008-01-29 09:59:12 -0500 | [diff] [blame] | 971 | static int btree_releasepage(struct page *page, gfp_t gfp_flags) |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 972 | { |
Chris Mason | 98509cf | 2008-09-11 15:51:43 -0400 | [diff] [blame] | 973 | if (PageWriteback(page) || PageDirty(page)) |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 974 | return 0; |
David Sterba | 0c4e538 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 975 | |
David Sterba | f7a52a4 | 2013-04-26 14:56:29 +0000 | [diff] [blame] | 976 | return try_release_extent_buffer(page); |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 977 | } |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 978 | |
Lukas Czerner | d47992f | 2013-05-21 23:17:23 -0400 | [diff] [blame] | 979 | static void btree_invalidatepage(struct page *page, unsigned int offset, |
| 980 | unsigned int length) |
Chris Mason | d98237b | 2007-03-28 13:57:48 -0400 | [diff] [blame] | 981 | { |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 982 | struct extent_io_tree *tree; |
| 983 | tree = &BTRFS_I(page->mapping->host)->io_tree; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 984 | extent_invalidatepage(tree, page, offset); |
| 985 | btree_releasepage(page, GFP_NOFS); |
Chris Mason | 9ad6b7bc | 2008-04-18 16:11:30 -0400 | [diff] [blame] | 986 | if (PagePrivate(page)) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 987 | btrfs_warn(BTRFS_I(page->mapping->host)->root->fs_info, |
| 988 | "page private not zero on page %llu", |
| 989 | (unsigned long long)page_offset(page)); |
Chris Mason | 9ad6b7bc | 2008-04-18 16:11:30 -0400 | [diff] [blame] | 990 | ClearPagePrivate(page); |
| 991 | set_page_private(page, 0); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 992 | put_page(page); |
Chris Mason | 9ad6b7bc | 2008-04-18 16:11:30 -0400 | [diff] [blame] | 993 | } |
Chris Mason | d98237b | 2007-03-28 13:57:48 -0400 | [diff] [blame] | 994 | } |
| 995 | |
Josef Bacik | 0b32f4b | 2012-03-13 09:38:00 -0400 | [diff] [blame] | 996 | static int btree_set_page_dirty(struct page *page) |
| 997 | { |
Josef Bacik | bb146eb | 2012-10-15 13:30:43 -0400 | [diff] [blame] | 998 | #ifdef DEBUG |
Josef Bacik | 0b32f4b | 2012-03-13 09:38:00 -0400 | [diff] [blame] | 999 | struct extent_buffer *eb; |
| 1000 | |
| 1001 | BUG_ON(!PagePrivate(page)); |
| 1002 | eb = (struct extent_buffer *)page->private; |
| 1003 | BUG_ON(!eb); |
| 1004 | BUG_ON(!test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)); |
| 1005 | BUG_ON(!atomic_read(&eb->refs)); |
| 1006 | btrfs_assert_tree_locked(eb); |
Josef Bacik | bb146eb | 2012-10-15 13:30:43 -0400 | [diff] [blame] | 1007 | #endif |
Josef Bacik | 0b32f4b | 2012-03-13 09:38:00 -0400 | [diff] [blame] | 1008 | return __set_page_dirty_nobuffers(page); |
| 1009 | } |
| 1010 | |
Alexey Dobriyan | 7f09410 | 2009-09-21 17:01:10 -0700 | [diff] [blame] | 1011 | static const struct address_space_operations btree_aops = { |
Chris Mason | d98237b | 2007-03-28 13:57:48 -0400 | [diff] [blame] | 1012 | .readpage = btree_readpage, |
Chris Mason | 0da5468 | 2007-11-07 21:08:01 -0500 | [diff] [blame] | 1013 | .writepages = btree_writepages, |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1014 | .releasepage = btree_releasepage, |
| 1015 | .invalidatepage = btree_invalidatepage, |
Chris Mason | 5a92bc8 | 2010-11-29 09:49:11 -0500 | [diff] [blame] | 1016 | #ifdef CONFIG_MIGRATION |
Chris Mason | 784b4e2 | 2010-11-21 22:20:49 -0500 | [diff] [blame] | 1017 | .migratepage = btree_migratepage, |
Chris Mason | 5a92bc8 | 2010-11-29 09:49:11 -0500 | [diff] [blame] | 1018 | #endif |
Josef Bacik | 0b32f4b | 2012-03-13 09:38:00 -0400 | [diff] [blame] | 1019 | .set_page_dirty = btree_set_page_dirty, |
Chris Mason | d98237b | 2007-03-28 13:57:48 -0400 | [diff] [blame] | 1020 | }; |
| 1021 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 1022 | void readahead_tree_block(struct btrfs_fs_info *fs_info, u64 bytenr) |
Chris Mason | 090d187 | 2007-05-01 08:53:32 -0400 | [diff] [blame] | 1023 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1024 | struct extent_buffer *buf = NULL; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 1025 | struct inode *btree_inode = fs_info->btree_inode; |
Nikolay Borisov | 537f38f | 2019-03-14 09:52:35 +0200 | [diff] [blame] | 1026 | int ret; |
Chris Mason | 090d187 | 2007-05-01 08:53:32 -0400 | [diff] [blame] | 1027 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 1028 | buf = btrfs_find_create_tree_block(fs_info, bytenr); |
Liu Bo | c871b0f | 2016-06-06 12:01:23 -0700 | [diff] [blame] | 1029 | if (IS_ERR(buf)) |
David Sterba | 6197d86 | 2014-06-15 00:49:36 +0200 | [diff] [blame] | 1030 | return; |
Nikolay Borisov | 537f38f | 2019-03-14 09:52:35 +0200 | [diff] [blame] | 1031 | |
| 1032 | ret = read_extent_buffer_pages(&BTRFS_I(btree_inode)->io_tree, buf, |
| 1033 | WAIT_NONE, 0); |
| 1034 | if (ret < 0) |
| 1035 | free_extent_buffer_stale(buf); |
| 1036 | else |
| 1037 | free_extent_buffer(buf); |
Chris Mason | 090d187 | 2007-05-01 08:53:32 -0400 | [diff] [blame] | 1038 | } |
| 1039 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 1040 | int reada_tree_block_flagged(struct btrfs_fs_info *fs_info, u64 bytenr, |
Arne Jansen | ab0fff0 | 2011-05-23 14:25:41 +0200 | [diff] [blame] | 1041 | int mirror_num, struct extent_buffer **eb) |
| 1042 | { |
| 1043 | struct extent_buffer *buf = NULL; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 1044 | struct inode *btree_inode = fs_info->btree_inode; |
Arne Jansen | ab0fff0 | 2011-05-23 14:25:41 +0200 | [diff] [blame] | 1045 | struct extent_io_tree *io_tree = &BTRFS_I(btree_inode)->io_tree; |
| 1046 | int ret; |
| 1047 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 1048 | buf = btrfs_find_create_tree_block(fs_info, bytenr); |
Liu Bo | c871b0f | 2016-06-06 12:01:23 -0700 | [diff] [blame] | 1049 | if (IS_ERR(buf)) |
Arne Jansen | ab0fff0 | 2011-05-23 14:25:41 +0200 | [diff] [blame] | 1050 | return 0; |
| 1051 | |
| 1052 | set_bit(EXTENT_BUFFER_READAHEAD, &buf->bflags); |
| 1053 | |
Josef Bacik | 8436ea91 | 2016-09-02 15:40:03 -0400 | [diff] [blame] | 1054 | ret = read_extent_buffer_pages(io_tree, buf, WAIT_PAGE_LOCK, |
David Sterba | 6af49db | 2017-06-23 04:09:57 +0200 | [diff] [blame] | 1055 | mirror_num); |
Arne Jansen | ab0fff0 | 2011-05-23 14:25:41 +0200 | [diff] [blame] | 1056 | if (ret) { |
Nikolay Borisov | 537f38f | 2019-03-14 09:52:35 +0200 | [diff] [blame] | 1057 | free_extent_buffer_stale(buf); |
Arne Jansen | ab0fff0 | 2011-05-23 14:25:41 +0200 | [diff] [blame] | 1058 | return ret; |
| 1059 | } |
| 1060 | |
| 1061 | if (test_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags)) { |
Nikolay Borisov | 537f38f | 2019-03-14 09:52:35 +0200 | [diff] [blame] | 1062 | free_extent_buffer_stale(buf); |
Arne Jansen | ab0fff0 | 2011-05-23 14:25:41 +0200 | [diff] [blame] | 1063 | return -EIO; |
Josef Bacik | 0b32f4b | 2012-03-13 09:38:00 -0400 | [diff] [blame] | 1064 | } else if (extent_buffer_uptodate(buf)) { |
Arne Jansen | ab0fff0 | 2011-05-23 14:25:41 +0200 | [diff] [blame] | 1065 | *eb = buf; |
| 1066 | } else { |
| 1067 | free_extent_buffer(buf); |
| 1068 | } |
| 1069 | return 0; |
| 1070 | } |
| 1071 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 1072 | struct extent_buffer *btrfs_find_create_tree_block( |
| 1073 | struct btrfs_fs_info *fs_info, |
| 1074 | u64 bytenr) |
Chris Mason | 0999df5 | 2008-04-01 13:48:14 -0400 | [diff] [blame] | 1075 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1076 | if (btrfs_is_testing(fs_info)) |
| 1077 | return alloc_test_extent_buffer(fs_info, bytenr); |
| 1078 | return alloc_extent_buffer(fs_info, bytenr); |
Chris Mason | 0999df5 | 2008-04-01 13:48:14 -0400 | [diff] [blame] | 1079 | } |
| 1080 | |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 1081 | /* |
| 1082 | * Read tree block at logical address @bytenr and do variant basic but critical |
| 1083 | * verification. |
| 1084 | * |
| 1085 | * @parent_transid: expected transid of this tree block, skip check if 0 |
| 1086 | * @level: expected level, mandatory check |
| 1087 | * @first_key: expected key in slot 0, skip check if NULL |
| 1088 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 1089 | struct extent_buffer *read_tree_block(struct btrfs_fs_info *fs_info, u64 bytenr, |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 1090 | u64 parent_transid, int level, |
| 1091 | struct btrfs_key *first_key) |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 1092 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1093 | struct extent_buffer *buf = NULL; |
Chris Mason | 19c00dd | 2007-10-15 16:19:22 -0400 | [diff] [blame] | 1094 | int ret; |
| 1095 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 1096 | buf = btrfs_find_create_tree_block(fs_info, bytenr); |
Liu Bo | c871b0f | 2016-06-06 12:01:23 -0700 | [diff] [blame] | 1097 | if (IS_ERR(buf)) |
| 1098 | return buf; |
Chris Mason | e4204de | 2008-01-08 15:46:27 -0500 | [diff] [blame] | 1099 | |
David Sterba | 5ab12d1 | 2019-03-20 14:56:39 +0100 | [diff] [blame^] | 1100 | ret = btree_read_extent_buffer_pages(buf, parent_transid, |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 1101 | level, first_key); |
Filipe David Borba Manana | 0f0fe8f | 2013-07-31 00:39:56 +0100 | [diff] [blame] | 1102 | if (ret) { |
Nikolay Borisov | 537f38f | 2019-03-14 09:52:35 +0200 | [diff] [blame] | 1103 | free_extent_buffer_stale(buf); |
Liu Bo | 64c043d | 2015-05-25 17:30:15 +0800 | [diff] [blame] | 1104 | return ERR_PTR(ret); |
Filipe David Borba Manana | 0f0fe8f | 2013-07-31 00:39:56 +0100 | [diff] [blame] | 1105 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1106 | return buf; |
Chris Mason | ce9adaa | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 1107 | |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 1108 | } |
| 1109 | |
David Sterba | 6a884d7d | 2019-03-20 14:30:02 +0100 | [diff] [blame] | 1110 | void btrfs_clean_tree_block(struct extent_buffer *buf) |
Chris Mason | ed2ff2c | 2007-03-01 18:59:40 -0500 | [diff] [blame] | 1111 | { |
David Sterba | 6a884d7d | 2019-03-20 14:30:02 +0100 | [diff] [blame] | 1112 | struct btrfs_fs_info *fs_info = buf->fs_info; |
Chris Mason | 55c6907 | 2008-01-09 15:55:33 -0500 | [diff] [blame] | 1113 | if (btrfs_header_generation(buf) == |
Miao Xie | e2d8452 | 2013-01-29 10:09:20 +0000 | [diff] [blame] | 1114 | fs_info->running_transaction->transid) { |
Chris Mason | b9447ef8 | 2009-03-09 11:45:38 -0400 | [diff] [blame] | 1115 | btrfs_assert_tree_locked(buf); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 1116 | |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 1117 | if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &buf->bflags)) { |
Nikolay Borisov | 104b4e5 | 2017-06-20 21:01:20 +0300 | [diff] [blame] | 1118 | percpu_counter_add_batch(&fs_info->dirty_metadata_bytes, |
| 1119 | -buf->len, |
| 1120 | fs_info->dirty_metadata_batch); |
Josef Bacik | ed7b63e | 2012-10-15 13:33:54 -0400 | [diff] [blame] | 1121 | /* ugh, clear_extent_buffer_dirty needs to lock the page */ |
David Sterba | 8bead25 | 2018-04-04 02:03:48 +0200 | [diff] [blame] | 1122 | btrfs_set_lock_blocking_write(buf); |
Josef Bacik | ed7b63e | 2012-10-15 13:33:54 -0400 | [diff] [blame] | 1123 | clear_extent_buffer_dirty(buf); |
| 1124 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1125 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1126 | } |
| 1127 | |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 1128 | static struct btrfs_subvolume_writers *btrfs_alloc_subvolume_writers(void) |
| 1129 | { |
| 1130 | struct btrfs_subvolume_writers *writers; |
| 1131 | int ret; |
| 1132 | |
| 1133 | writers = kmalloc(sizeof(*writers), GFP_NOFS); |
| 1134 | if (!writers) |
| 1135 | return ERR_PTR(-ENOMEM); |
| 1136 | |
Jeff Mahoney | 8a5a916 | 2018-03-16 14:36:27 -0400 | [diff] [blame] | 1137 | ret = percpu_counter_init(&writers->counter, 0, GFP_NOFS); |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 1138 | if (ret < 0) { |
| 1139 | kfree(writers); |
| 1140 | return ERR_PTR(ret); |
| 1141 | } |
| 1142 | |
| 1143 | init_waitqueue_head(&writers->wait); |
| 1144 | return writers; |
| 1145 | } |
| 1146 | |
| 1147 | static void |
| 1148 | btrfs_free_subvolume_writers(struct btrfs_subvolume_writers *writers) |
| 1149 | { |
| 1150 | percpu_counter_destroy(&writers->counter); |
| 1151 | kfree(writers); |
| 1152 | } |
| 1153 | |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 1154 | static void __setup_root(struct btrfs_root *root, struct btrfs_fs_info *fs_info, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1155 | u64 objectid) |
Chris Mason | d97e63b | 2007-02-20 16:40:44 -0500 | [diff] [blame] | 1156 | { |
Jeff Mahoney | 7c0260e | 2016-06-20 14:14:09 -0400 | [diff] [blame] | 1157 | bool dummy = test_bit(BTRFS_FS_STATE_DUMMY_FS_INFO, &fs_info->fs_state); |
Chris Mason | cfaa729 | 2007-02-21 17:04:57 -0500 | [diff] [blame] | 1158 | root->node = NULL; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 1159 | root->commit_root = NULL; |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 1160 | root->state = 0; |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 1161 | root->orphan_cleanup_state = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1162 | |
Chris Mason | 0f7d52f | 2007-04-09 10:42:37 -0400 | [diff] [blame] | 1163 | root->last_trans = 0; |
Yan, Zheng | 13a8a7c | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 1164 | root->highest_objectid = 0; |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 1165 | root->nr_delalloc_inodes = 0; |
Miao Xie | 199c2a9 | 2013-05-15 07:48:23 +0000 | [diff] [blame] | 1166 | root->nr_ordered_extents = 0; |
Eric Paris | 6bef4d3 | 2010-02-23 19:43:04 +0000 | [diff] [blame] | 1167 | root->inode_tree = RB_ROOT; |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 1168 | INIT_RADIX_TREE(&root->delayed_nodes_tree, GFP_ATOMIC); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 1169 | root->block_rsv = NULL; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1170 | |
| 1171 | INIT_LIST_HEAD(&root->dirty_list); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1172 | INIT_LIST_HEAD(&root->root_list); |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 1173 | INIT_LIST_HEAD(&root->delalloc_inodes); |
| 1174 | INIT_LIST_HEAD(&root->delalloc_root); |
Miao Xie | 199c2a9 | 2013-05-15 07:48:23 +0000 | [diff] [blame] | 1175 | INIT_LIST_HEAD(&root->ordered_extents); |
| 1176 | INIT_LIST_HEAD(&root->ordered_root); |
Qu Wenruo | d2311e6 | 2019-01-23 15:15:14 +0800 | [diff] [blame] | 1177 | INIT_LIST_HEAD(&root->reloc_dirty_list); |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 1178 | INIT_LIST_HEAD(&root->logged_list[0]); |
| 1179 | INIT_LIST_HEAD(&root->logged_list[1]); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1180 | spin_lock_init(&root->inode_lock); |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 1181 | spin_lock_init(&root->delalloc_lock); |
Miao Xie | 199c2a9 | 2013-05-15 07:48:23 +0000 | [diff] [blame] | 1182 | spin_lock_init(&root->ordered_extent_lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 1183 | spin_lock_init(&root->accounting_lock); |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 1184 | spin_lock_init(&root->log_extents_lock[0]); |
| 1185 | spin_lock_init(&root->log_extents_lock[1]); |
Qu Wenruo | 8287475 | 2017-12-12 15:34:34 +0800 | [diff] [blame] | 1186 | spin_lock_init(&root->qgroup_meta_rsv_lock); |
Chris Mason | a213501 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1187 | mutex_init(&root->objectid_mutex); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1188 | mutex_init(&root->log_mutex); |
Miao Xie | 31f3d25 | 2014-03-06 13:55:02 +0800 | [diff] [blame] | 1189 | mutex_init(&root->ordered_extent_mutex); |
Miao Xie | 573bfb7 | 2014-03-06 13:55:03 +0800 | [diff] [blame] | 1190 | mutex_init(&root->delalloc_mutex); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 1191 | init_waitqueue_head(&root->log_writer_wait); |
| 1192 | init_waitqueue_head(&root->log_commit_wait[0]); |
| 1193 | init_waitqueue_head(&root->log_commit_wait[1]); |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 1194 | INIT_LIST_HEAD(&root->log_ctxs[0]); |
| 1195 | INIT_LIST_HEAD(&root->log_ctxs[1]); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 1196 | atomic_set(&root->log_commit[0], 0); |
| 1197 | atomic_set(&root->log_commit[1], 0); |
| 1198 | atomic_set(&root->log_writers, 0); |
Miao Xie | 2ecb792 | 2012-09-06 04:04:27 -0600 | [diff] [blame] | 1199 | atomic_set(&root->log_batch, 0); |
Elena Reshetova | 0700cea | 2017-03-03 10:55:18 +0200 | [diff] [blame] | 1200 | refcount_set(&root->refs, 1); |
David Sterba | ea14b57f | 2017-06-22 02:19:11 +0200 | [diff] [blame] | 1201 | atomic_set(&root->will_be_snapshotted, 0); |
Robbie Ko | 8ecebf4d | 2018-08-06 10:30:30 +0800 | [diff] [blame] | 1202 | atomic_set(&root->snapshot_force_cow, 0); |
Omar Sandoval | eede2bf | 2016-11-03 10:28:12 -0700 | [diff] [blame] | 1203 | atomic_set(&root->nr_swapfiles, 0); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 1204 | root->log_transid = 0; |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 1205 | root->log_transid_committed = -1; |
Chris Mason | 257c62e | 2009-10-13 13:21:08 -0400 | [diff] [blame] | 1206 | root->last_log_commit = 0; |
Jeff Mahoney | 7c0260e | 2016-06-20 14:14:09 -0400 | [diff] [blame] | 1207 | if (!dummy) |
Qu Wenruo | 43eb5f2 | 2019-03-01 10:47:59 +0800 | [diff] [blame] | 1208 | extent_io_tree_init(fs_info, &root->dirty_log_pages, |
| 1209 | IO_TREE_ROOT_DIRTY_LOG_PAGES, NULL); |
Chris Mason | 017e536 | 2008-07-28 15:32:51 -0400 | [diff] [blame] | 1210 | |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 1211 | memset(&root->root_key, 0, sizeof(root->root_key)); |
| 1212 | memset(&root->root_item, 0, sizeof(root->root_item)); |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 1213 | memset(&root->defrag_progress, 0, sizeof(root->defrag_progress)); |
Jeff Mahoney | 7c0260e | 2016-06-20 14:14:09 -0400 | [diff] [blame] | 1214 | if (!dummy) |
Josef Bacik | 06ea65a | 2013-09-19 16:07:01 -0400 | [diff] [blame] | 1215 | root->defrag_trans_start = fs_info->generation; |
| 1216 | else |
| 1217 | root->defrag_trans_start = 0; |
Chris Mason | 4d77567 | 2007-04-20 20:23:12 -0400 | [diff] [blame] | 1218 | root->root_key.objectid = objectid; |
Al Viro | 0ee5dc6 | 2011-07-07 15:44:25 -0400 | [diff] [blame] | 1219 | root->anon_dev = 0; |
Alexander Block | 8ea05e3 | 2012-07-25 17:35:53 +0200 | [diff] [blame] | 1220 | |
Anand Jain | 5f3ab90 | 2012-12-07 09:28:54 +0000 | [diff] [blame] | 1221 | spin_lock_init(&root->root_item_lock); |
Qu Wenruo | 370a11b | 2019-01-23 15:15:16 +0800 | [diff] [blame] | 1222 | btrfs_qgroup_init_swapped_blocks(&root->swapped_blocks); |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 1223 | } |
| 1224 | |
David Sterba | 74e4d82 | 2016-02-11 11:01:55 +0100 | [diff] [blame] | 1225 | static struct btrfs_root *btrfs_alloc_root(struct btrfs_fs_info *fs_info, |
| 1226 | gfp_t flags) |
Al Viro | 6f07e42 | 2011-11-17 00:46:16 -0500 | [diff] [blame] | 1227 | { |
David Sterba | 74e4d82 | 2016-02-11 11:01:55 +0100 | [diff] [blame] | 1228 | struct btrfs_root *root = kzalloc(sizeof(*root), flags); |
Al Viro | 6f07e42 | 2011-11-17 00:46:16 -0500 | [diff] [blame] | 1229 | if (root) |
| 1230 | root->fs_info = fs_info; |
| 1231 | return root; |
| 1232 | } |
| 1233 | |
Josef Bacik | 06ea65a | 2013-09-19 16:07:01 -0400 | [diff] [blame] | 1234 | #ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS |
| 1235 | /* Should only be used by the testing infrastructure */ |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 1236 | struct btrfs_root *btrfs_alloc_dummy_root(struct btrfs_fs_info *fs_info) |
Josef Bacik | 06ea65a | 2013-09-19 16:07:01 -0400 | [diff] [blame] | 1237 | { |
| 1238 | struct btrfs_root *root; |
| 1239 | |
Jeff Mahoney | 7c0260e | 2016-06-20 14:14:09 -0400 | [diff] [blame] | 1240 | if (!fs_info) |
| 1241 | return ERR_PTR(-EINVAL); |
| 1242 | |
| 1243 | root = btrfs_alloc_root(fs_info, GFP_KERNEL); |
Josef Bacik | 06ea65a | 2013-09-19 16:07:01 -0400 | [diff] [blame] | 1244 | if (!root) |
| 1245 | return ERR_PTR(-ENOMEM); |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 1246 | |
Feifei Xu | b9ef22d | 2016-06-01 19:18:25 +0800 | [diff] [blame] | 1247 | /* We don't use the stripesize in selftest, set it as sectorsize */ |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 1248 | __setup_root(root, fs_info, BTRFS_ROOT_TREE_OBJECTID); |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 1249 | root->alloc_bytenr = 0; |
Josef Bacik | 06ea65a | 2013-09-19 16:07:01 -0400 | [diff] [blame] | 1250 | |
| 1251 | return root; |
| 1252 | } |
| 1253 | #endif |
| 1254 | |
Arne Jansen | 20897f5 | 2011-09-13 12:44:20 +0200 | [diff] [blame] | 1255 | struct btrfs_root *btrfs_create_tree(struct btrfs_trans_handle *trans, |
| 1256 | struct btrfs_fs_info *fs_info, |
| 1257 | u64 objectid) |
| 1258 | { |
| 1259 | struct extent_buffer *leaf; |
| 1260 | struct btrfs_root *tree_root = fs_info->tree_root; |
| 1261 | struct btrfs_root *root; |
| 1262 | struct btrfs_key key; |
Filipe Manana | b89f6d1 | 2018-12-13 21:16:45 +0000 | [diff] [blame] | 1263 | unsigned int nofs_flag; |
Arne Jansen | 20897f5 | 2011-09-13 12:44:20 +0200 | [diff] [blame] | 1264 | int ret = 0; |
Qu Wenruo | 33d85fd | 2017-10-31 14:08:16 +0800 | [diff] [blame] | 1265 | uuid_le uuid = NULL_UUID_LE; |
Arne Jansen | 20897f5 | 2011-09-13 12:44:20 +0200 | [diff] [blame] | 1266 | |
Filipe Manana | b89f6d1 | 2018-12-13 21:16:45 +0000 | [diff] [blame] | 1267 | /* |
| 1268 | * We're holding a transaction handle, so use a NOFS memory allocation |
| 1269 | * context to avoid deadlock if reclaim happens. |
| 1270 | */ |
| 1271 | nofs_flag = memalloc_nofs_save(); |
David Sterba | 74e4d82 | 2016-02-11 11:01:55 +0100 | [diff] [blame] | 1272 | root = btrfs_alloc_root(fs_info, GFP_KERNEL); |
Filipe Manana | b89f6d1 | 2018-12-13 21:16:45 +0000 | [diff] [blame] | 1273 | memalloc_nofs_restore(nofs_flag); |
Arne Jansen | 20897f5 | 2011-09-13 12:44:20 +0200 | [diff] [blame] | 1274 | if (!root) |
| 1275 | return ERR_PTR(-ENOMEM); |
| 1276 | |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 1277 | __setup_root(root, fs_info, objectid); |
Arne Jansen | 20897f5 | 2011-09-13 12:44:20 +0200 | [diff] [blame] | 1278 | root->root_key.objectid = objectid; |
| 1279 | root->root_key.type = BTRFS_ROOT_ITEM_KEY; |
| 1280 | root->root_key.offset = 0; |
| 1281 | |
David Sterba | 4d75f8a | 2014-06-15 01:54:12 +0200 | [diff] [blame] | 1282 | leaf = btrfs_alloc_tree_block(trans, root, 0, objectid, NULL, 0, 0, 0); |
Arne Jansen | 20897f5 | 2011-09-13 12:44:20 +0200 | [diff] [blame] | 1283 | if (IS_ERR(leaf)) { |
| 1284 | ret = PTR_ERR(leaf); |
Tsutomu Itoh | 1dd0568 | 2013-03-21 04:32:32 +0000 | [diff] [blame] | 1285 | leaf = NULL; |
Arne Jansen | 20897f5 | 2011-09-13 12:44:20 +0200 | [diff] [blame] | 1286 | goto fail; |
| 1287 | } |
| 1288 | |
Arne Jansen | 20897f5 | 2011-09-13 12:44:20 +0200 | [diff] [blame] | 1289 | root->node = leaf; |
Arne Jansen | 20897f5 | 2011-09-13 12:44:20 +0200 | [diff] [blame] | 1290 | btrfs_mark_buffer_dirty(leaf); |
| 1291 | |
| 1292 | root->commit_root = btrfs_root_node(root); |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 1293 | set_bit(BTRFS_ROOT_TRACK_DIRTY, &root->state); |
Arne Jansen | 20897f5 | 2011-09-13 12:44:20 +0200 | [diff] [blame] | 1294 | |
| 1295 | root->root_item.flags = 0; |
| 1296 | root->root_item.byte_limit = 0; |
| 1297 | btrfs_set_root_bytenr(&root->root_item, leaf->start); |
| 1298 | btrfs_set_root_generation(&root->root_item, trans->transid); |
| 1299 | btrfs_set_root_level(&root->root_item, 0); |
| 1300 | btrfs_set_root_refs(&root->root_item, 1); |
| 1301 | btrfs_set_root_used(&root->root_item, leaf->len); |
| 1302 | btrfs_set_root_last_snapshot(&root->root_item, 0); |
| 1303 | btrfs_set_root_dirid(&root->root_item, 0); |
Qu Wenruo | 33d85fd | 2017-10-31 14:08:16 +0800 | [diff] [blame] | 1304 | if (is_fstree(objectid)) |
| 1305 | uuid_le_gen(&uuid); |
Stefan Behrens | 6463fe5 | 2013-04-19 15:08:05 +0000 | [diff] [blame] | 1306 | memcpy(root->root_item.uuid, uuid.b, BTRFS_UUID_SIZE); |
Arne Jansen | 20897f5 | 2011-09-13 12:44:20 +0200 | [diff] [blame] | 1307 | root->root_item.drop_level = 0; |
| 1308 | |
| 1309 | key.objectid = objectid; |
| 1310 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 1311 | key.offset = 0; |
| 1312 | ret = btrfs_insert_root(trans, tree_root, &key, &root->root_item); |
| 1313 | if (ret) |
| 1314 | goto fail; |
| 1315 | |
| 1316 | btrfs_tree_unlock(leaf); |
| 1317 | |
Arne Jansen | 20897f5 | 2011-09-13 12:44:20 +0200 | [diff] [blame] | 1318 | return root; |
Tsutomu Itoh | 1dd0568 | 2013-03-21 04:32:32 +0000 | [diff] [blame] | 1319 | |
| 1320 | fail: |
| 1321 | if (leaf) { |
| 1322 | btrfs_tree_unlock(leaf); |
Tsutomu Itoh | 59885b3 | 2014-04-09 09:18:04 +0900 | [diff] [blame] | 1323 | free_extent_buffer(root->commit_root); |
Tsutomu Itoh | 1dd0568 | 2013-03-21 04:32:32 +0000 | [diff] [blame] | 1324 | free_extent_buffer(leaf); |
| 1325 | } |
| 1326 | kfree(root); |
| 1327 | |
| 1328 | return ERR_PTR(ret); |
Arne Jansen | 20897f5 | 2011-09-13 12:44:20 +0200 | [diff] [blame] | 1329 | } |
| 1330 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 1331 | static struct btrfs_root *alloc_log_tree(struct btrfs_trans_handle *trans, |
| 1332 | struct btrfs_fs_info *fs_info) |
Chris Mason | 0f7d52f | 2007-04-09 10:42:37 -0400 | [diff] [blame] | 1333 | { |
| 1334 | struct btrfs_root *root; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 1335 | struct extent_buffer *leaf; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1336 | |
David Sterba | 74e4d82 | 2016-02-11 11:01:55 +0100 | [diff] [blame] | 1337 | root = btrfs_alloc_root(fs_info, GFP_NOFS); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1338 | if (!root) |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 1339 | return ERR_PTR(-ENOMEM); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1340 | |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 1341 | __setup_root(root, fs_info, BTRFS_TREE_LOG_OBJECTID); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1342 | |
| 1343 | root->root_key.objectid = BTRFS_TREE_LOG_OBJECTID; |
| 1344 | root->root_key.type = BTRFS_ROOT_ITEM_KEY; |
| 1345 | root->root_key.offset = BTRFS_TREE_LOG_OBJECTID; |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 1346 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 1347 | /* |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 1348 | * DON'T set REF_COWS for log trees |
| 1349 | * |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 1350 | * log trees do not get reference counted because they go away |
| 1351 | * before a real commit is actually done. They do store pointers |
| 1352 | * to file data extents, and those reference counts still get |
| 1353 | * updated (along with back refs to the log tree). |
| 1354 | */ |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1355 | |
David Sterba | 4d75f8a | 2014-06-15 01:54:12 +0200 | [diff] [blame] | 1356 | leaf = btrfs_alloc_tree_block(trans, root, 0, BTRFS_TREE_LOG_OBJECTID, |
| 1357 | NULL, 0, 0, 0); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 1358 | if (IS_ERR(leaf)) { |
| 1359 | kfree(root); |
| 1360 | return ERR_CAST(leaf); |
| 1361 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1362 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 1363 | root->node = leaf; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1364 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1365 | btrfs_mark_buffer_dirty(root->node); |
| 1366 | btrfs_tree_unlock(root->node); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 1367 | return root; |
| 1368 | } |
| 1369 | |
| 1370 | int btrfs_init_log_root_tree(struct btrfs_trans_handle *trans, |
| 1371 | struct btrfs_fs_info *fs_info) |
| 1372 | { |
| 1373 | struct btrfs_root *log_root; |
| 1374 | |
| 1375 | log_root = alloc_log_tree(trans, fs_info); |
| 1376 | if (IS_ERR(log_root)) |
| 1377 | return PTR_ERR(log_root); |
| 1378 | WARN_ON(fs_info->log_root_tree); |
| 1379 | fs_info->log_root_tree = log_root; |
| 1380 | return 0; |
| 1381 | } |
| 1382 | |
| 1383 | int btrfs_add_log_tree(struct btrfs_trans_handle *trans, |
| 1384 | struct btrfs_root *root) |
| 1385 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1386 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 1387 | struct btrfs_root *log_root; |
| 1388 | struct btrfs_inode_item *inode_item; |
| 1389 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1390 | log_root = alloc_log_tree(trans, fs_info); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 1391 | if (IS_ERR(log_root)) |
| 1392 | return PTR_ERR(log_root); |
| 1393 | |
| 1394 | log_root->last_trans = trans->transid; |
| 1395 | log_root->root_key.offset = root->root_key.objectid; |
| 1396 | |
| 1397 | inode_item = &log_root->root_item.inode; |
Qu Wenruo | 3cae210 | 2013-07-16 11:19:18 +0800 | [diff] [blame] | 1398 | btrfs_set_stack_inode_generation(inode_item, 1); |
| 1399 | btrfs_set_stack_inode_size(inode_item, 3); |
| 1400 | btrfs_set_stack_inode_nlink(inode_item, 1); |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 1401 | btrfs_set_stack_inode_nbytes(inode_item, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1402 | fs_info->nodesize); |
Qu Wenruo | 3cae210 | 2013-07-16 11:19:18 +0800 | [diff] [blame] | 1403 | btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 1404 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1405 | btrfs_set_root_node(&log_root->root_item, log_root->node); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 1406 | |
| 1407 | WARN_ON(root->log_root); |
| 1408 | root->log_root = log_root; |
| 1409 | root->log_transid = 0; |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 1410 | root->log_transid_committed = -1; |
Chris Mason | 257c62e | 2009-10-13 13:21:08 -0400 | [diff] [blame] | 1411 | root->last_log_commit = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1412 | return 0; |
| 1413 | } |
| 1414 | |
Stefan Behrens | 35a3621 | 2013-08-14 18:12:25 +0200 | [diff] [blame] | 1415 | static struct btrfs_root *btrfs_read_tree_root(struct btrfs_root *tree_root, |
| 1416 | struct btrfs_key *key) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1417 | { |
| 1418 | struct btrfs_root *root; |
| 1419 | struct btrfs_fs_info *fs_info = tree_root->fs_info; |
Chris Mason | 0f7d52f | 2007-04-09 10:42:37 -0400 | [diff] [blame] | 1420 | struct btrfs_path *path; |
Yan Zheng | 84234f3 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 1421 | u64 generation; |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 1422 | int ret; |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 1423 | int level; |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 1424 | |
| 1425 | path = btrfs_alloc_path(); |
| 1426 | if (!path) |
| 1427 | return ERR_PTR(-ENOMEM); |
Chris Mason | 0f7d52f | 2007-04-09 10:42:37 -0400 | [diff] [blame] | 1428 | |
David Sterba | 74e4d82 | 2016-02-11 11:01:55 +0100 | [diff] [blame] | 1429 | root = btrfs_alloc_root(fs_info, GFP_NOFS); |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 1430 | if (!root) { |
| 1431 | ret = -ENOMEM; |
| 1432 | goto alloc_fail; |
Chris Mason | 0f7d52f | 2007-04-09 10:42:37 -0400 | [diff] [blame] | 1433 | } |
| 1434 | |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 1435 | __setup_root(root, fs_info, key->objectid); |
Chris Mason | 0f7d52f | 2007-04-09 10:42:37 -0400 | [diff] [blame] | 1436 | |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 1437 | ret = btrfs_find_root(tree_root, key, path, |
| 1438 | &root->root_item, &root->root_key); |
Chris Mason | 0f7d52f | 2007-04-09 10:42:37 -0400 | [diff] [blame] | 1439 | if (ret) { |
Yan, Zheng | 13a8a7c | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 1440 | if (ret > 0) |
| 1441 | ret = -ENOENT; |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 1442 | goto find_fail; |
Chris Mason | 0f7d52f | 2007-04-09 10:42:37 -0400 | [diff] [blame] | 1443 | } |
Yan, Zheng | 13a8a7c | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 1444 | |
Yan Zheng | 84234f3 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 1445 | generation = btrfs_root_generation(&root->root_item); |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 1446 | level = btrfs_root_level(&root->root_item); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 1447 | root->node = read_tree_block(fs_info, |
| 1448 | btrfs_root_bytenr(&root->root_item), |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 1449 | generation, level, NULL); |
Liu Bo | 64c043d | 2015-05-25 17:30:15 +0800 | [diff] [blame] | 1450 | if (IS_ERR(root->node)) { |
| 1451 | ret = PTR_ERR(root->node); |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 1452 | goto find_fail; |
| 1453 | } else if (!btrfs_buffer_uptodate(root->node, generation, 0)) { |
| 1454 | ret = -EIO; |
Liu Bo | 64c043d | 2015-05-25 17:30:15 +0800 | [diff] [blame] | 1455 | free_extent_buffer(root->node); |
| 1456 | goto find_fail; |
Josef Bacik | 416bc65 | 2013-04-23 14:17:42 -0400 | [diff] [blame] | 1457 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1458 | root->commit_root = btrfs_root_node(root); |
Yan, Zheng | 13a8a7c | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 1459 | out: |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 1460 | btrfs_free_path(path); |
| 1461 | return root; |
| 1462 | |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 1463 | find_fail: |
| 1464 | kfree(root); |
| 1465 | alloc_fail: |
| 1466 | root = ERR_PTR(ret); |
| 1467 | goto out; |
| 1468 | } |
| 1469 | |
| 1470 | struct btrfs_root *btrfs_read_fs_root(struct btrfs_root *tree_root, |
| 1471 | struct btrfs_key *location) |
| 1472 | { |
| 1473 | struct btrfs_root *root; |
| 1474 | |
| 1475 | root = btrfs_read_tree_root(tree_root, location); |
| 1476 | if (IS_ERR(root)) |
| 1477 | return root; |
| 1478 | |
| 1479 | if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) { |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 1480 | set_bit(BTRFS_ROOT_REF_COWS, &root->state); |
Li Zefan | 08fe4db | 2011-03-28 02:01:25 +0000 | [diff] [blame] | 1481 | btrfs_check_and_init_root_item(&root->root_item); |
| 1482 | } |
Yan, Zheng | 13a8a7c | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 1483 | |
Chris Mason | 5eda7b5 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 1484 | return root; |
| 1485 | } |
| 1486 | |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 1487 | int btrfs_init_fs_root(struct btrfs_root *root) |
| 1488 | { |
| 1489 | int ret; |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 1490 | struct btrfs_subvolume_writers *writers; |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 1491 | |
| 1492 | root->free_ino_ctl = kzalloc(sizeof(*root->free_ino_ctl), GFP_NOFS); |
| 1493 | root->free_ino_pinned = kzalloc(sizeof(*root->free_ino_pinned), |
| 1494 | GFP_NOFS); |
| 1495 | if (!root->free_ino_pinned || !root->free_ino_ctl) { |
| 1496 | ret = -ENOMEM; |
| 1497 | goto fail; |
| 1498 | } |
| 1499 | |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 1500 | writers = btrfs_alloc_subvolume_writers(); |
| 1501 | if (IS_ERR(writers)) { |
| 1502 | ret = PTR_ERR(writers); |
| 1503 | goto fail; |
| 1504 | } |
| 1505 | root->subv_writers = writers; |
| 1506 | |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 1507 | btrfs_init_free_ino_ctl(root); |
David Sterba | 57cdc8d | 2014-02-05 02:37:48 +0100 | [diff] [blame] | 1508 | spin_lock_init(&root->ino_cache_lock); |
| 1509 | init_waitqueue_head(&root->ino_cache_wait); |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 1510 | |
| 1511 | ret = get_anon_bdev(&root->anon_dev); |
| 1512 | if (ret) |
Liu Bo | 876d2cf | 2016-06-28 13:44:38 -0700 | [diff] [blame] | 1513 | goto fail; |
Chandan Rajendra | f32e48e | 2016-01-07 18:56:59 +0530 | [diff] [blame] | 1514 | |
| 1515 | mutex_lock(&root->objectid_mutex); |
| 1516 | ret = btrfs_find_highest_objectid(root, |
| 1517 | &root->highest_objectid); |
| 1518 | if (ret) { |
| 1519 | mutex_unlock(&root->objectid_mutex); |
Liu Bo | 876d2cf | 2016-06-28 13:44:38 -0700 | [diff] [blame] | 1520 | goto fail; |
Chandan Rajendra | f32e48e | 2016-01-07 18:56:59 +0530 | [diff] [blame] | 1521 | } |
| 1522 | |
| 1523 | ASSERT(root->highest_objectid <= BTRFS_LAST_FREE_OBJECTID); |
| 1524 | |
| 1525 | mutex_unlock(&root->objectid_mutex); |
| 1526 | |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 1527 | return 0; |
| 1528 | fail: |
David Sterba | 84db5cc | 2018-07-20 16:30:25 +0200 | [diff] [blame] | 1529 | /* The caller is responsible to call btrfs_free_fs_root */ |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 1530 | return ret; |
| 1531 | } |
| 1532 | |
Jeff Mahoney | 35bbb97 | 2016-08-17 21:58:33 -0400 | [diff] [blame] | 1533 | struct btrfs_root *btrfs_lookup_fs_root(struct btrfs_fs_info *fs_info, |
| 1534 | u64 root_id) |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 1535 | { |
| 1536 | struct btrfs_root *root; |
| 1537 | |
| 1538 | spin_lock(&fs_info->fs_roots_radix_lock); |
| 1539 | root = radix_tree_lookup(&fs_info->fs_roots_radix, |
| 1540 | (unsigned long)root_id); |
| 1541 | spin_unlock(&fs_info->fs_roots_radix_lock); |
| 1542 | return root; |
| 1543 | } |
| 1544 | |
| 1545 | int btrfs_insert_fs_root(struct btrfs_fs_info *fs_info, |
| 1546 | struct btrfs_root *root) |
| 1547 | { |
| 1548 | int ret; |
| 1549 | |
David Sterba | e1860a7 | 2016-05-09 14:11:38 +0200 | [diff] [blame] | 1550 | ret = radix_tree_preload(GFP_NOFS); |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 1551 | if (ret) |
| 1552 | return ret; |
| 1553 | |
| 1554 | spin_lock(&fs_info->fs_roots_radix_lock); |
| 1555 | ret = radix_tree_insert(&fs_info->fs_roots_radix, |
| 1556 | (unsigned long)root->root_key.objectid, |
| 1557 | root); |
| 1558 | if (ret == 0) |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 1559 | set_bit(BTRFS_ROOT_IN_RADIX, &root->state); |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 1560 | spin_unlock(&fs_info->fs_roots_radix_lock); |
| 1561 | radix_tree_preload_end(); |
| 1562 | |
| 1563 | return ret; |
| 1564 | } |
| 1565 | |
Miao Xie | c00869f | 2013-09-25 21:47:44 +0800 | [diff] [blame] | 1566 | struct btrfs_root *btrfs_get_fs_root(struct btrfs_fs_info *fs_info, |
| 1567 | struct btrfs_key *location, |
| 1568 | bool check_ref) |
Chris Mason | 5eda7b5 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 1569 | { |
| 1570 | struct btrfs_root *root; |
David Sterba | 381cf65 | 2015-01-02 18:45:16 +0100 | [diff] [blame] | 1571 | struct btrfs_path *path; |
David Sterba | 1d4c08e | 2015-01-02 19:36:14 +0100 | [diff] [blame] | 1572 | struct btrfs_key key; |
Chris Mason | 5eda7b5 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 1573 | int ret; |
| 1574 | |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 1575 | if (location->objectid == BTRFS_ROOT_TREE_OBJECTID) |
| 1576 | return fs_info->tree_root; |
| 1577 | if (location->objectid == BTRFS_EXTENT_TREE_OBJECTID) |
| 1578 | return fs_info->extent_root; |
Chris Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 1579 | if (location->objectid == BTRFS_CHUNK_TREE_OBJECTID) |
| 1580 | return fs_info->chunk_root; |
| 1581 | if (location->objectid == BTRFS_DEV_TREE_OBJECTID) |
| 1582 | return fs_info->dev_root; |
Yan Zheng | 0403e47 | 2008-12-10 20:32:51 -0500 | [diff] [blame] | 1583 | if (location->objectid == BTRFS_CSUM_TREE_OBJECTID) |
| 1584 | return fs_info->csum_root; |
Arne Jansen | bcef60f | 2011-09-13 15:23:30 +0200 | [diff] [blame] | 1585 | if (location->objectid == BTRFS_QUOTA_TREE_OBJECTID) |
| 1586 | return fs_info->quota_root ? fs_info->quota_root : |
| 1587 | ERR_PTR(-ENOENT); |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 1588 | if (location->objectid == BTRFS_UUID_TREE_OBJECTID) |
| 1589 | return fs_info->uuid_root ? fs_info->uuid_root : |
| 1590 | ERR_PTR(-ENOENT); |
Omar Sandoval | 70f6d82 | 2015-09-29 20:50:38 -0700 | [diff] [blame] | 1591 | if (location->objectid == BTRFS_FREE_SPACE_TREE_OBJECTID) |
| 1592 | return fs_info->free_space_root ? fs_info->free_space_root : |
| 1593 | ERR_PTR(-ENOENT); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 1594 | again: |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 1595 | root = btrfs_lookup_fs_root(fs_info, location->objectid); |
Stefan Behrens | 4847547 | 2013-08-23 10:34:42 +0200 | [diff] [blame] | 1596 | if (root) { |
Miao Xie | c00869f | 2013-09-25 21:47:44 +0800 | [diff] [blame] | 1597 | if (check_ref && btrfs_root_refs(&root->root_item) == 0) |
Stefan Behrens | 4847547 | 2013-08-23 10:34:42 +0200 | [diff] [blame] | 1598 | return ERR_PTR(-ENOENT); |
Chris Mason | 5eda7b5 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 1599 | return root; |
Stefan Behrens | 4847547 | 2013-08-23 10:34:42 +0200 | [diff] [blame] | 1600 | } |
Chris Mason | 5eda7b5 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 1601 | |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 1602 | root = btrfs_read_fs_root(fs_info->tree_root, location); |
Chris Mason | 5eda7b5 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 1603 | if (IS_ERR(root)) |
| 1604 | return root; |
Chris Mason | 3394e16 | 2008-11-17 20:42:26 -0500 | [diff] [blame] | 1605 | |
Miao Xie | c00869f | 2013-09-25 21:47:44 +0800 | [diff] [blame] | 1606 | if (check_ref && btrfs_root_refs(&root->root_item) == 0) { |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 1607 | ret = -ENOENT; |
| 1608 | goto fail; |
| 1609 | } |
| 1610 | |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 1611 | ret = btrfs_init_fs_root(root); |
| 1612 | if (ret) |
| 1613 | goto fail; |
| 1614 | |
David Sterba | 381cf65 | 2015-01-02 18:45:16 +0100 | [diff] [blame] | 1615 | path = btrfs_alloc_path(); |
| 1616 | if (!path) { |
| 1617 | ret = -ENOMEM; |
| 1618 | goto fail; |
| 1619 | } |
David Sterba | 1d4c08e | 2015-01-02 19:36:14 +0100 | [diff] [blame] | 1620 | key.objectid = BTRFS_ORPHAN_OBJECTID; |
| 1621 | key.type = BTRFS_ORPHAN_ITEM_KEY; |
| 1622 | key.offset = location->objectid; |
| 1623 | |
| 1624 | ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0); |
David Sterba | 381cf65 | 2015-01-02 18:45:16 +0100 | [diff] [blame] | 1625 | btrfs_free_path(path); |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 1626 | if (ret < 0) |
| 1627 | goto fail; |
| 1628 | if (ret == 0) |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 1629 | set_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &root->state); |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 1630 | |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 1631 | ret = btrfs_insert_fs_root(fs_info, root); |
Chris Mason | 0f7d52f | 2007-04-09 10:42:37 -0400 | [diff] [blame] | 1632 | if (ret) { |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 1633 | if (ret == -EEXIST) { |
David Sterba | 84db5cc | 2018-07-20 16:30:25 +0200 | [diff] [blame] | 1634 | btrfs_free_fs_root(root); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 1635 | goto again; |
| 1636 | } |
| 1637 | goto fail; |
Chris Mason | 0f7d52f | 2007-04-09 10:42:37 -0400 | [diff] [blame] | 1638 | } |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 1639 | return root; |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 1640 | fail: |
David Sterba | 84db5cc | 2018-07-20 16:30:25 +0200 | [diff] [blame] | 1641 | btrfs_free_fs_root(root); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 1642 | return ERR_PTR(ret); |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 1643 | } |
| 1644 | |
Chris Mason | 0416008 | 2008-03-26 10:28:07 -0400 | [diff] [blame] | 1645 | static int btrfs_congested_fn(void *congested_data, int bdi_bits) |
| 1646 | { |
| 1647 | struct btrfs_fs_info *info = (struct btrfs_fs_info *)congested_data; |
| 1648 | int ret = 0; |
Chris Mason | 0416008 | 2008-03-26 10:28:07 -0400 | [diff] [blame] | 1649 | struct btrfs_device *device; |
| 1650 | struct backing_dev_info *bdi; |
Chris Mason | b7967db | 2009-04-27 07:29:04 -0400 | [diff] [blame] | 1651 | |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 1652 | rcu_read_lock(); |
| 1653 | list_for_each_entry_rcu(device, &info->fs_devices->devices, dev_list) { |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 1654 | if (!device->bdev) |
| 1655 | continue; |
Jan Kara | efa7c9f | 2017-02-02 15:56:53 +0100 | [diff] [blame] | 1656 | bdi = device->bdev->bd_bdi; |
Tejun Heo | ff9ea32 | 2014-09-08 08:03:56 +0900 | [diff] [blame] | 1657 | if (bdi_congested(bdi, bdi_bits)) { |
Chris Mason | 0416008 | 2008-03-26 10:28:07 -0400 | [diff] [blame] | 1658 | ret = 1; |
| 1659 | break; |
| 1660 | } |
| 1661 | } |
Xiao Guangrong | 1f78160 | 2011-04-20 10:09:16 +0000 | [diff] [blame] | 1662 | rcu_read_unlock(); |
Chris Mason | 0416008 | 2008-03-26 10:28:07 -0400 | [diff] [blame] | 1663 | return ret; |
| 1664 | } |
| 1665 | |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 1666 | /* |
| 1667 | * called by the kthread helper functions to finally call the bio end_io |
| 1668 | * functions. This is where read checksum verification actually happens |
| 1669 | */ |
| 1670 | static void end_workqueue_fn(struct btrfs_work *work) |
Chris Mason | ce9adaa | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 1671 | { |
Chris Mason | ce9adaa | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 1672 | struct bio *bio; |
David Sterba | 97eb6b6 | 2014-07-30 00:55:42 +0200 | [diff] [blame] | 1673 | struct btrfs_end_io_wq *end_io_wq; |
Chris Mason | ce9adaa | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 1674 | |
David Sterba | 97eb6b6 | 2014-07-30 00:55:42 +0200 | [diff] [blame] | 1675 | end_io_wq = container_of(work, struct btrfs_end_io_wq, work); |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 1676 | bio = end_io_wq->bio; |
Chris Mason | ce9adaa | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 1677 | |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 1678 | bio->bi_status = end_io_wq->status; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 1679 | bio->bi_private = end_io_wq->private; |
| 1680 | bio->bi_end_io = end_io_wq->end_io; |
David Sterba | 97eb6b6 | 2014-07-30 00:55:42 +0200 | [diff] [blame] | 1681 | kmem_cache_free(btrfs_end_io_wq_cache, end_io_wq); |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 1682 | bio_endio(bio); |
Chris Mason | 44b8bd7 | 2008-04-16 11:14:51 -0400 | [diff] [blame] | 1683 | } |
| 1684 | |
Chris Mason | a74a4b9 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 1685 | static int cleaner_kthread(void *arg) |
| 1686 | { |
| 1687 | struct btrfs_root *root = arg; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1688 | struct btrfs_fs_info *fs_info = root->fs_info; |
Miao Xie | d027824 | 2013-05-14 10:20:40 +0000 | [diff] [blame] | 1689 | int again; |
Chris Mason | a74a4b9 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 1690 | |
Omar Sandoval | d6fd0ae | 2018-10-31 10:06:08 -0700 | [diff] [blame] | 1691 | while (1) { |
Miao Xie | d027824 | 2013-05-14 10:20:40 +0000 | [diff] [blame] | 1692 | again = 0; |
David Sterba | 9d1a2a3 | 2013-03-12 15:13:28 +0000 | [diff] [blame] | 1693 | |
Josef Bacik | fd340d0 | 2019-01-11 10:21:02 -0500 | [diff] [blame] | 1694 | set_bit(BTRFS_FS_CLEANER_RUNNING, &fs_info->flags); |
| 1695 | |
Miao Xie | d027824 | 2013-05-14 10:20:40 +0000 | [diff] [blame] | 1696 | /* Make the cleaner go to sleep early. */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 1697 | if (btrfs_need_cleaner_sleep(fs_info)) |
Miao Xie | d027824 | 2013-05-14 10:20:40 +0000 | [diff] [blame] | 1698 | goto sleep; |
Chris Mason | a74a4b9 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 1699 | |
Zygo Blaxell | 90c711a | 2016-06-12 23:39:58 -0400 | [diff] [blame] | 1700 | /* |
| 1701 | * Do not do anything if we might cause open_ctree() to block |
| 1702 | * before we have finished mounting the filesystem. |
| 1703 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1704 | if (!test_bit(BTRFS_FS_OPEN, &fs_info->flags)) |
Zygo Blaxell | 90c711a | 2016-06-12 23:39:58 -0400 | [diff] [blame] | 1705 | goto sleep; |
| 1706 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1707 | if (!mutex_trylock(&fs_info->cleaner_mutex)) |
Miao Xie | d027824 | 2013-05-14 10:20:40 +0000 | [diff] [blame] | 1708 | goto sleep; |
| 1709 | |
Miao Xie | dc7f370 | 2013-05-14 10:20:42 +0000 | [diff] [blame] | 1710 | /* |
| 1711 | * Avoid the problem that we change the status of the fs |
| 1712 | * during the above check and trylock. |
| 1713 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 1714 | if (btrfs_need_cleaner_sleep(fs_info)) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1715 | mutex_unlock(&fs_info->cleaner_mutex); |
Miao Xie | dc7f370 | 2013-05-14 10:20:42 +0000 | [diff] [blame] | 1716 | goto sleep; |
Chris Mason | a74a4b9 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 1717 | } |
| 1718 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 1719 | btrfs_run_delayed_iputs(fs_info); |
Filipe Manana | c2d6cb1 | 2016-01-15 11:05:12 +0000 | [diff] [blame] | 1720 | |
Miao Xie | d027824 | 2013-05-14 10:20:40 +0000 | [diff] [blame] | 1721 | again = btrfs_clean_one_deleted_snapshot(root); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1722 | mutex_unlock(&fs_info->cleaner_mutex); |
Miao Xie | d027824 | 2013-05-14 10:20:40 +0000 | [diff] [blame] | 1723 | |
| 1724 | /* |
Miao Xie | 05323cd | 2013-05-14 10:20:41 +0000 | [diff] [blame] | 1725 | * The defragger has dealt with the R/O remount and umount, |
| 1726 | * needn't do anything special here. |
Miao Xie | d027824 | 2013-05-14 10:20:40 +0000 | [diff] [blame] | 1727 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1728 | btrfs_run_defrag_inodes(fs_info); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 1729 | |
| 1730 | /* |
| 1731 | * Acquires fs_info->delete_unused_bgs_mutex to avoid racing |
| 1732 | * with relocation (btrfs_relocate_chunk) and relocation |
| 1733 | * acquires fs_info->cleaner_mutex (btrfs_relocate_block_group) |
| 1734 | * after acquiring fs_info->delete_unused_bgs_mutex. So we |
| 1735 | * can't hold, nor need to, fs_info->cleaner_mutex when deleting |
| 1736 | * unused block groups. |
| 1737 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1738 | btrfs_delete_unused_bgs(fs_info); |
Miao Xie | d027824 | 2013-05-14 10:20:40 +0000 | [diff] [blame] | 1739 | sleep: |
Josef Bacik | fd340d0 | 2019-01-11 10:21:02 -0500 | [diff] [blame] | 1740 | clear_bit(BTRFS_FS_CLEANER_RUNNING, &fs_info->flags); |
Omar Sandoval | d6fd0ae | 2018-10-31 10:06:08 -0700 | [diff] [blame] | 1741 | if (kthread_should_park()) |
| 1742 | kthread_parkme(); |
| 1743 | if (kthread_should_stop()) |
| 1744 | return 0; |
Jiri Kosina | 838fe18 | 2016-03-15 11:28:54 +0100 | [diff] [blame] | 1745 | if (!again) { |
Chris Mason | a74a4b9 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 1746 | set_current_state(TASK_INTERRUPTIBLE); |
Omar Sandoval | d6fd0ae | 2018-10-31 10:06:08 -0700 | [diff] [blame] | 1747 | schedule(); |
Chris Mason | a74a4b9 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 1748 | __set_current_state(TASK_RUNNING); |
| 1749 | } |
Filipe Manana | da288d2 | 2015-06-13 06:55:31 +0100 | [diff] [blame] | 1750 | } |
Chris Mason | a74a4b9 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 1751 | } |
| 1752 | |
| 1753 | static int transaction_kthread(void *arg) |
| 1754 | { |
| 1755 | struct btrfs_root *root = arg; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1756 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | a74a4b9 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 1757 | struct btrfs_trans_handle *trans; |
| 1758 | struct btrfs_transaction *cur; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 1759 | u64 transid; |
Allen Pais | a944442 | 2018-06-12 17:18:25 +0530 | [diff] [blame] | 1760 | time64_t now; |
Chris Mason | a74a4b9 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 1761 | unsigned long delay; |
Jan Kara | 914b200 | 2012-03-12 16:05:50 +0100 | [diff] [blame] | 1762 | bool cannot_commit; |
Chris Mason | a74a4b9 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 1763 | |
| 1764 | do { |
Jan Kara | 914b200 | 2012-03-12 16:05:50 +0100 | [diff] [blame] | 1765 | cannot_commit = false; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1766 | delay = HZ * fs_info->commit_interval; |
| 1767 | mutex_lock(&fs_info->transaction_kthread_mutex); |
Chris Mason | a74a4b9 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 1768 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1769 | spin_lock(&fs_info->trans_lock); |
| 1770 | cur = fs_info->running_transaction; |
Chris Mason | a74a4b9 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 1771 | if (!cur) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1772 | spin_unlock(&fs_info->trans_lock); |
Chris Mason | a74a4b9 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 1773 | goto sleep; |
| 1774 | } |
Yan Zheng | 31153d8 | 2008-07-28 15:32:19 -0400 | [diff] [blame] | 1775 | |
Arnd Bergmann | afd4851 | 2018-06-21 18:04:05 +0200 | [diff] [blame] | 1776 | now = ktime_get_seconds(); |
Miao Xie | 4a9d8bd | 2013-05-17 03:53:43 +0000 | [diff] [blame] | 1777 | if (cur->state < TRANS_STATE_BLOCKED && |
Qu Wenruo | a514d63 | 2017-12-22 16:06:39 +0800 | [diff] [blame] | 1778 | !test_bit(BTRFS_FS_NEED_ASYNC_COMMIT, &fs_info->flags) && |
David Sterba | 8b87dc1 | 2013-08-01 18:14:52 +0200 | [diff] [blame] | 1779 | (now < cur->start_time || |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1780 | now - cur->start_time < fs_info->commit_interval)) { |
| 1781 | spin_unlock(&fs_info->trans_lock); |
Chris Mason | a74a4b9 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 1782 | delay = HZ * 5; |
| 1783 | goto sleep; |
| 1784 | } |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 1785 | transid = cur->transid; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1786 | spin_unlock(&fs_info->trans_lock); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 1787 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1788 | /* If the file system is aborted, this will always fail. */ |
Miao Xie | 354aa0f | 2012-09-20 01:54:00 -0600 | [diff] [blame] | 1789 | trans = btrfs_attach_transaction(root); |
Jan Kara | 914b200 | 2012-03-12 16:05:50 +0100 | [diff] [blame] | 1790 | if (IS_ERR(trans)) { |
Miao Xie | 354aa0f | 2012-09-20 01:54:00 -0600 | [diff] [blame] | 1791 | if (PTR_ERR(trans) != -ENOENT) |
| 1792 | cannot_commit = true; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1793 | goto sleep; |
Jan Kara | 914b200 | 2012-03-12 16:05:50 +0100 | [diff] [blame] | 1794 | } |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 1795 | if (transid == trans->transid) { |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 1796 | btrfs_commit_transaction(trans); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 1797 | } else { |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 1798 | btrfs_end_transaction(trans); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 1799 | } |
Chris Mason | a74a4b9 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 1800 | sleep: |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1801 | wake_up_process(fs_info->cleaner_kthread); |
| 1802 | mutex_unlock(&fs_info->transaction_kthread_mutex); |
Chris Mason | a74a4b9 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 1803 | |
Josef Bacik | 4e121c0 | 2013-09-27 16:32:39 -0400 | [diff] [blame] | 1804 | if (unlikely(test_bit(BTRFS_FS_STATE_ERROR, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1805 | &fs_info->fs_state))) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 1806 | btrfs_cleanup_transaction(fs_info); |
Jiri Kosina | ce63f89 | 2016-03-15 11:28:59 +0100 | [diff] [blame] | 1807 | if (!kthread_should_stop() && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1808 | (!btrfs_transaction_blocked(fs_info) || |
Jiri Kosina | ce63f89 | 2016-03-15 11:28:59 +0100 | [diff] [blame] | 1809 | cannot_commit)) |
Nikolay Borisov | bc5511d0e | 2018-01-23 14:46:53 +0200 | [diff] [blame] | 1810 | schedule_timeout_interruptible(delay); |
Chris Mason | a74a4b9 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 1811 | } while (!kthread_should_stop()); |
| 1812 | return 0; |
| 1813 | } |
| 1814 | |
Chris Mason | af31f5e | 2011-11-03 15:17:42 -0400 | [diff] [blame] | 1815 | /* |
| 1816 | * this will find the highest generation in the array of |
| 1817 | * root backups. The index of the highest array is returned, |
| 1818 | * or -1 if we can't find anything. |
| 1819 | * |
| 1820 | * We check to make sure the array is valid by comparing the |
| 1821 | * generation of the latest root in the array with the generation |
| 1822 | * in the super block. If they don't match we pitch it. |
| 1823 | */ |
| 1824 | static int find_newest_super_backup(struct btrfs_fs_info *info, u64 newest_gen) |
| 1825 | { |
| 1826 | u64 cur; |
| 1827 | int newest_index = -1; |
| 1828 | struct btrfs_root_backup *root_backup; |
| 1829 | int i; |
| 1830 | |
| 1831 | for (i = 0; i < BTRFS_NUM_BACKUP_ROOTS; i++) { |
| 1832 | root_backup = info->super_copy->super_roots + i; |
| 1833 | cur = btrfs_backup_tree_root_gen(root_backup); |
| 1834 | if (cur == newest_gen) |
| 1835 | newest_index = i; |
| 1836 | } |
| 1837 | |
| 1838 | /* check to see if we actually wrapped around */ |
| 1839 | if (newest_index == BTRFS_NUM_BACKUP_ROOTS - 1) { |
| 1840 | root_backup = info->super_copy->super_roots; |
| 1841 | cur = btrfs_backup_tree_root_gen(root_backup); |
| 1842 | if (cur == newest_gen) |
| 1843 | newest_index = 0; |
| 1844 | } |
| 1845 | return newest_index; |
| 1846 | } |
| 1847 | |
| 1848 | |
| 1849 | /* |
| 1850 | * find the oldest backup so we know where to store new entries |
| 1851 | * in the backup array. This will set the backup_root_index |
| 1852 | * field in the fs_info struct |
| 1853 | */ |
| 1854 | static void find_oldest_super_backup(struct btrfs_fs_info *info, |
| 1855 | u64 newest_gen) |
| 1856 | { |
| 1857 | int newest_index = -1; |
| 1858 | |
| 1859 | newest_index = find_newest_super_backup(info, newest_gen); |
| 1860 | /* if there was garbage in there, just move along */ |
| 1861 | if (newest_index == -1) { |
| 1862 | info->backup_root_index = 0; |
| 1863 | } else { |
| 1864 | info->backup_root_index = (newest_index + 1) % BTRFS_NUM_BACKUP_ROOTS; |
| 1865 | } |
| 1866 | } |
| 1867 | |
| 1868 | /* |
| 1869 | * copy all the root pointers into the super backup array. |
| 1870 | * this will bump the backup pointer by one when it is |
| 1871 | * done |
| 1872 | */ |
| 1873 | static void backup_super_roots(struct btrfs_fs_info *info) |
| 1874 | { |
| 1875 | int next_backup; |
| 1876 | struct btrfs_root_backup *root_backup; |
| 1877 | int last_backup; |
| 1878 | |
| 1879 | next_backup = info->backup_root_index; |
| 1880 | last_backup = (next_backup + BTRFS_NUM_BACKUP_ROOTS - 1) % |
| 1881 | BTRFS_NUM_BACKUP_ROOTS; |
| 1882 | |
| 1883 | /* |
| 1884 | * just overwrite the last backup if we're at the same generation |
| 1885 | * this happens only at umount |
| 1886 | */ |
| 1887 | root_backup = info->super_for_commit->super_roots + last_backup; |
| 1888 | if (btrfs_backup_tree_root_gen(root_backup) == |
| 1889 | btrfs_header_generation(info->tree_root->node)) |
| 1890 | next_backup = last_backup; |
| 1891 | |
| 1892 | root_backup = info->super_for_commit->super_roots + next_backup; |
| 1893 | |
| 1894 | /* |
| 1895 | * make sure all of our padding and empty slots get zero filled |
| 1896 | * regardless of which ones we use today |
| 1897 | */ |
| 1898 | memset(root_backup, 0, sizeof(*root_backup)); |
| 1899 | |
| 1900 | info->backup_root_index = (next_backup + 1) % BTRFS_NUM_BACKUP_ROOTS; |
| 1901 | |
| 1902 | btrfs_set_backup_tree_root(root_backup, info->tree_root->node->start); |
| 1903 | btrfs_set_backup_tree_root_gen(root_backup, |
| 1904 | btrfs_header_generation(info->tree_root->node)); |
| 1905 | |
| 1906 | btrfs_set_backup_tree_root_level(root_backup, |
| 1907 | btrfs_header_level(info->tree_root->node)); |
| 1908 | |
| 1909 | btrfs_set_backup_chunk_root(root_backup, info->chunk_root->node->start); |
| 1910 | btrfs_set_backup_chunk_root_gen(root_backup, |
| 1911 | btrfs_header_generation(info->chunk_root->node)); |
| 1912 | btrfs_set_backup_chunk_root_level(root_backup, |
| 1913 | btrfs_header_level(info->chunk_root->node)); |
| 1914 | |
| 1915 | btrfs_set_backup_extent_root(root_backup, info->extent_root->node->start); |
| 1916 | btrfs_set_backup_extent_root_gen(root_backup, |
| 1917 | btrfs_header_generation(info->extent_root->node)); |
| 1918 | btrfs_set_backup_extent_root_level(root_backup, |
| 1919 | btrfs_header_level(info->extent_root->node)); |
| 1920 | |
Chris Mason | 7c7e82a | 2011-11-06 18:50:56 -0500 | [diff] [blame] | 1921 | /* |
| 1922 | * we might commit during log recovery, which happens before we set |
| 1923 | * the fs_root. Make sure it is valid before we fill it in. |
| 1924 | */ |
| 1925 | if (info->fs_root && info->fs_root->node) { |
| 1926 | btrfs_set_backup_fs_root(root_backup, |
| 1927 | info->fs_root->node->start); |
| 1928 | btrfs_set_backup_fs_root_gen(root_backup, |
Chris Mason | af31f5e | 2011-11-03 15:17:42 -0400 | [diff] [blame] | 1929 | btrfs_header_generation(info->fs_root->node)); |
Chris Mason | 7c7e82a | 2011-11-06 18:50:56 -0500 | [diff] [blame] | 1930 | btrfs_set_backup_fs_root_level(root_backup, |
Chris Mason | af31f5e | 2011-11-03 15:17:42 -0400 | [diff] [blame] | 1931 | btrfs_header_level(info->fs_root->node)); |
Chris Mason | 7c7e82a | 2011-11-06 18:50:56 -0500 | [diff] [blame] | 1932 | } |
Chris Mason | af31f5e | 2011-11-03 15:17:42 -0400 | [diff] [blame] | 1933 | |
| 1934 | btrfs_set_backup_dev_root(root_backup, info->dev_root->node->start); |
| 1935 | btrfs_set_backup_dev_root_gen(root_backup, |
| 1936 | btrfs_header_generation(info->dev_root->node)); |
| 1937 | btrfs_set_backup_dev_root_level(root_backup, |
| 1938 | btrfs_header_level(info->dev_root->node)); |
| 1939 | |
| 1940 | btrfs_set_backup_csum_root(root_backup, info->csum_root->node->start); |
| 1941 | btrfs_set_backup_csum_root_gen(root_backup, |
| 1942 | btrfs_header_generation(info->csum_root->node)); |
| 1943 | btrfs_set_backup_csum_root_level(root_backup, |
| 1944 | btrfs_header_level(info->csum_root->node)); |
| 1945 | |
| 1946 | btrfs_set_backup_total_bytes(root_backup, |
| 1947 | btrfs_super_total_bytes(info->super_copy)); |
| 1948 | btrfs_set_backup_bytes_used(root_backup, |
| 1949 | btrfs_super_bytes_used(info->super_copy)); |
| 1950 | btrfs_set_backup_num_devices(root_backup, |
| 1951 | btrfs_super_num_devices(info->super_copy)); |
| 1952 | |
| 1953 | /* |
| 1954 | * if we don't copy this out to the super_copy, it won't get remembered |
| 1955 | * for the next commit |
| 1956 | */ |
| 1957 | memcpy(&info->super_copy->super_roots, |
| 1958 | &info->super_for_commit->super_roots, |
| 1959 | sizeof(*root_backup) * BTRFS_NUM_BACKUP_ROOTS); |
| 1960 | } |
| 1961 | |
| 1962 | /* |
| 1963 | * this copies info out of the root backup array and back into |
| 1964 | * the in-memory super block. It is meant to help iterate through |
| 1965 | * the array, so you send it the number of backups you've already |
| 1966 | * tried and the last backup index you used. |
| 1967 | * |
| 1968 | * this returns -1 when it has tried all the backups |
| 1969 | */ |
| 1970 | static noinline int next_root_backup(struct btrfs_fs_info *info, |
| 1971 | struct btrfs_super_block *super, |
| 1972 | int *num_backups_tried, int *backup_index) |
| 1973 | { |
| 1974 | struct btrfs_root_backup *root_backup; |
| 1975 | int newest = *backup_index; |
| 1976 | |
| 1977 | if (*num_backups_tried == 0) { |
| 1978 | u64 gen = btrfs_super_generation(super); |
| 1979 | |
| 1980 | newest = find_newest_super_backup(info, gen); |
| 1981 | if (newest == -1) |
| 1982 | return -1; |
| 1983 | |
| 1984 | *backup_index = newest; |
| 1985 | *num_backups_tried = 1; |
| 1986 | } else if (*num_backups_tried == BTRFS_NUM_BACKUP_ROOTS) { |
| 1987 | /* we've tried all the backups, all done */ |
| 1988 | return -1; |
| 1989 | } else { |
| 1990 | /* jump to the next oldest backup */ |
| 1991 | newest = (*backup_index + BTRFS_NUM_BACKUP_ROOTS - 1) % |
| 1992 | BTRFS_NUM_BACKUP_ROOTS; |
| 1993 | *backup_index = newest; |
| 1994 | *num_backups_tried += 1; |
| 1995 | } |
| 1996 | root_backup = super->super_roots + newest; |
| 1997 | |
| 1998 | btrfs_set_super_generation(super, |
| 1999 | btrfs_backup_tree_root_gen(root_backup)); |
| 2000 | btrfs_set_super_root(super, btrfs_backup_tree_root(root_backup)); |
| 2001 | btrfs_set_super_root_level(super, |
| 2002 | btrfs_backup_tree_root_level(root_backup)); |
| 2003 | btrfs_set_super_bytes_used(super, btrfs_backup_bytes_used(root_backup)); |
| 2004 | |
| 2005 | /* |
| 2006 | * fixme: the total bytes and num_devices need to match or we should |
| 2007 | * need a fsck |
| 2008 | */ |
| 2009 | btrfs_set_super_total_bytes(super, btrfs_backup_total_bytes(root_backup)); |
| 2010 | btrfs_set_super_num_devices(super, btrfs_backup_num_devices(root_backup)); |
| 2011 | return 0; |
| 2012 | } |
| 2013 | |
Liu Bo | 7abadb6 | 2013-03-17 02:10:31 +0000 | [diff] [blame] | 2014 | /* helper to cleanup workers */ |
| 2015 | static void btrfs_stop_all_workers(struct btrfs_fs_info *fs_info) |
| 2016 | { |
Qu Wenruo | dc6e320 | 2014-02-28 10:46:14 +0800 | [diff] [blame] | 2017 | btrfs_destroy_workqueue(fs_info->fixup_workers); |
Qu Wenruo | afe3d24 | 2014-02-28 10:46:07 +0800 | [diff] [blame] | 2018 | btrfs_destroy_workqueue(fs_info->delalloc_workers); |
Qu Wenruo | 5cdc7ad3 | 2014-02-28 10:46:06 +0800 | [diff] [blame] | 2019 | btrfs_destroy_workqueue(fs_info->workers); |
Qu Wenruo | fccb5d8 | 2014-02-28 10:46:10 +0800 | [diff] [blame] | 2020 | btrfs_destroy_workqueue(fs_info->endio_workers); |
Qu Wenruo | fccb5d8 | 2014-02-28 10:46:10 +0800 | [diff] [blame] | 2021 | btrfs_destroy_workqueue(fs_info->endio_raid56_workers); |
Miao Xie | 8b110e3 | 2014-09-12 18:44:03 +0800 | [diff] [blame] | 2022 | btrfs_destroy_workqueue(fs_info->endio_repair_workers); |
Qu Wenruo | d05a33a | 2014-02-28 10:46:11 +0800 | [diff] [blame] | 2023 | btrfs_destroy_workqueue(fs_info->rmw_workers); |
Qu Wenruo | fccb5d8 | 2014-02-28 10:46:10 +0800 | [diff] [blame] | 2024 | btrfs_destroy_workqueue(fs_info->endio_write_workers); |
| 2025 | btrfs_destroy_workqueue(fs_info->endio_freespace_worker); |
Qu Wenruo | a8c93d4e | 2014-02-28 10:46:08 +0800 | [diff] [blame] | 2026 | btrfs_destroy_workqueue(fs_info->submit_workers); |
Qu Wenruo | 5b3bc44 | 2014-02-28 10:46:15 +0800 | [diff] [blame] | 2027 | btrfs_destroy_workqueue(fs_info->delayed_workers); |
Qu Wenruo | e66f0bb | 2014-02-28 10:46:12 +0800 | [diff] [blame] | 2028 | btrfs_destroy_workqueue(fs_info->caching_workers); |
Qu Wenruo | 736cfa1 | 2014-02-28 10:46:13 +0800 | [diff] [blame] | 2029 | btrfs_destroy_workqueue(fs_info->readahead_workers); |
Qu Wenruo | a44903a | 2014-02-28 10:46:09 +0800 | [diff] [blame] | 2030 | btrfs_destroy_workqueue(fs_info->flush_workers); |
Qu Wenruo | fc97fab | 2014-02-28 10:46:16 +0800 | [diff] [blame] | 2031 | btrfs_destroy_workqueue(fs_info->qgroup_rescan_workers); |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2032 | btrfs_destroy_workqueue(fs_info->extent_workers); |
Filipe Manana | a9b9477 | 2017-02-04 17:12:00 +0000 | [diff] [blame] | 2033 | /* |
| 2034 | * Now that all other work queues are destroyed, we can safely destroy |
| 2035 | * the queues used for metadata I/O, since tasks from those other work |
| 2036 | * queues can do metadata I/O operations. |
| 2037 | */ |
| 2038 | btrfs_destroy_workqueue(fs_info->endio_meta_workers); |
| 2039 | btrfs_destroy_workqueue(fs_info->endio_meta_write_workers); |
Liu Bo | 7abadb6 | 2013-03-17 02:10:31 +0000 | [diff] [blame] | 2040 | } |
| 2041 | |
Rashika | 2e9f595 | 2013-10-31 02:45:20 +0530 | [diff] [blame] | 2042 | static void free_root_extent_buffers(struct btrfs_root *root) |
| 2043 | { |
| 2044 | if (root) { |
| 2045 | free_extent_buffer(root->node); |
| 2046 | free_extent_buffer(root->commit_root); |
| 2047 | root->node = NULL; |
| 2048 | root->commit_root = NULL; |
| 2049 | } |
| 2050 | } |
| 2051 | |
Chris Mason | af31f5e | 2011-11-03 15:17:42 -0400 | [diff] [blame] | 2052 | /* helper to cleanup tree roots */ |
| 2053 | static void free_root_pointers(struct btrfs_fs_info *info, int chunk_root) |
| 2054 | { |
Rashika | 2e9f595 | 2013-10-31 02:45:20 +0530 | [diff] [blame] | 2055 | free_root_extent_buffers(info->tree_root); |
Josef Bacik | 655b09f | 2013-05-17 14:06:51 -0400 | [diff] [blame] | 2056 | |
Rashika | 2e9f595 | 2013-10-31 02:45:20 +0530 | [diff] [blame] | 2057 | free_root_extent_buffers(info->dev_root); |
| 2058 | free_root_extent_buffers(info->extent_root); |
| 2059 | free_root_extent_buffers(info->csum_root); |
| 2060 | free_root_extent_buffers(info->quota_root); |
| 2061 | free_root_extent_buffers(info->uuid_root); |
| 2062 | if (chunk_root) |
| 2063 | free_root_extent_buffers(info->chunk_root); |
Omar Sandoval | 70f6d82 | 2015-09-29 20:50:38 -0700 | [diff] [blame] | 2064 | free_root_extent_buffers(info->free_space_root); |
Chris Mason | af31f5e | 2011-11-03 15:17:42 -0400 | [diff] [blame] | 2065 | } |
| 2066 | |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 2067 | void btrfs_free_fs_roots(struct btrfs_fs_info *fs_info) |
Josef Bacik | 171f653 | 2013-04-24 16:35:41 -0400 | [diff] [blame] | 2068 | { |
| 2069 | int ret; |
| 2070 | struct btrfs_root *gang[8]; |
| 2071 | int i; |
| 2072 | |
| 2073 | while (!list_empty(&fs_info->dead_roots)) { |
| 2074 | gang[0] = list_entry(fs_info->dead_roots.next, |
| 2075 | struct btrfs_root, root_list); |
| 2076 | list_del(&gang[0]->root_list); |
| 2077 | |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 2078 | if (test_bit(BTRFS_ROOT_IN_RADIX, &gang[0]->state)) { |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 2079 | btrfs_drop_and_free_fs_root(fs_info, gang[0]); |
Josef Bacik | 171f653 | 2013-04-24 16:35:41 -0400 | [diff] [blame] | 2080 | } else { |
| 2081 | free_extent_buffer(gang[0]->node); |
| 2082 | free_extent_buffer(gang[0]->commit_root); |
Miao Xie | b0feb9d | 2013-05-15 07:48:20 +0000 | [diff] [blame] | 2083 | btrfs_put_fs_root(gang[0]); |
Josef Bacik | 171f653 | 2013-04-24 16:35:41 -0400 | [diff] [blame] | 2084 | } |
| 2085 | } |
| 2086 | |
| 2087 | while (1) { |
| 2088 | ret = radix_tree_gang_lookup(&fs_info->fs_roots_radix, |
| 2089 | (void **)gang, 0, |
| 2090 | ARRAY_SIZE(gang)); |
| 2091 | if (!ret) |
| 2092 | break; |
| 2093 | for (i = 0; i < ret; i++) |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 2094 | btrfs_drop_and_free_fs_root(fs_info, gang[i]); |
Josef Bacik | 171f653 | 2013-04-24 16:35:41 -0400 | [diff] [blame] | 2095 | } |
Liu Bo | 1a4319c | 2014-01-13 19:53:53 +0800 | [diff] [blame] | 2096 | |
| 2097 | if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) { |
| 2098 | btrfs_free_log_root_tree(NULL, fs_info); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2099 | btrfs_destroy_pinned_extent(fs_info, fs_info->pinned_extents); |
Liu Bo | 1a4319c | 2014-01-13 19:53:53 +0800 | [diff] [blame] | 2100 | } |
Josef Bacik | 171f653 | 2013-04-24 16:35:41 -0400 | [diff] [blame] | 2101 | } |
Chris Mason | af31f5e | 2011-11-03 15:17:42 -0400 | [diff] [blame] | 2102 | |
Eric Sandeen | 638aa7e | 2014-08-01 18:12:38 -0500 | [diff] [blame] | 2103 | static void btrfs_init_scrub(struct btrfs_fs_info *fs_info) |
| 2104 | { |
| 2105 | mutex_init(&fs_info->scrub_lock); |
| 2106 | atomic_set(&fs_info->scrubs_running, 0); |
| 2107 | atomic_set(&fs_info->scrub_pause_req, 0); |
| 2108 | atomic_set(&fs_info->scrubs_paused, 0); |
| 2109 | atomic_set(&fs_info->scrub_cancel_req, 0); |
| 2110 | init_waitqueue_head(&fs_info->scrub_pause_wait); |
Anand Jain | ff09c4c | 2019-01-30 14:45:02 +0800 | [diff] [blame] | 2111 | refcount_set(&fs_info->scrub_workers_refcnt, 0); |
Eric Sandeen | 638aa7e | 2014-08-01 18:12:38 -0500 | [diff] [blame] | 2112 | } |
| 2113 | |
Eric Sandeen | 779a65a | 2014-08-01 18:12:39 -0500 | [diff] [blame] | 2114 | static void btrfs_init_balance(struct btrfs_fs_info *fs_info) |
| 2115 | { |
| 2116 | spin_lock_init(&fs_info->balance_lock); |
| 2117 | mutex_init(&fs_info->balance_mutex); |
Eric Sandeen | 779a65a | 2014-08-01 18:12:39 -0500 | [diff] [blame] | 2118 | atomic_set(&fs_info->balance_pause_req, 0); |
| 2119 | atomic_set(&fs_info->balance_cancel_req, 0); |
| 2120 | fs_info->balance_ctl = NULL; |
| 2121 | init_waitqueue_head(&fs_info->balance_wait_q); |
| 2122 | } |
| 2123 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 2124 | static void btrfs_init_btree_inode(struct btrfs_fs_info *fs_info) |
Eric Sandeen | f37938e | 2014-08-01 18:12:40 -0500 | [diff] [blame] | 2125 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2126 | struct inode *inode = fs_info->btree_inode; |
| 2127 | |
| 2128 | inode->i_ino = BTRFS_BTREE_INODE_OBJECTID; |
| 2129 | set_nlink(inode, 1); |
Eric Sandeen | f37938e | 2014-08-01 18:12:40 -0500 | [diff] [blame] | 2130 | /* |
| 2131 | * we set the i_size on the btree inode to the max possible int. |
| 2132 | * the real end of the address space is determined by all of |
| 2133 | * the devices in the system |
| 2134 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2135 | inode->i_size = OFFSET_MAX; |
| 2136 | inode->i_mapping->a_ops = &btree_aops; |
Eric Sandeen | f37938e | 2014-08-01 18:12:40 -0500 | [diff] [blame] | 2137 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2138 | RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node); |
Qu Wenruo | 43eb5f2 | 2019-03-01 10:47:59 +0800 | [diff] [blame] | 2139 | extent_io_tree_init(fs_info, &BTRFS_I(inode)->io_tree, |
| 2140 | IO_TREE_INODE_IO, inode); |
David Sterba | 7b43973 | 2019-03-11 15:58:30 +0100 | [diff] [blame] | 2141 | BTRFS_I(inode)->io_tree.track_uptodate = false; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2142 | extent_map_tree_init(&BTRFS_I(inode)->extent_tree); |
Eric Sandeen | f37938e | 2014-08-01 18:12:40 -0500 | [diff] [blame] | 2143 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2144 | BTRFS_I(inode)->io_tree.ops = &btree_extent_io_ops; |
Eric Sandeen | f37938e | 2014-08-01 18:12:40 -0500 | [diff] [blame] | 2145 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2146 | BTRFS_I(inode)->root = fs_info->tree_root; |
| 2147 | memset(&BTRFS_I(inode)->location, 0, sizeof(struct btrfs_key)); |
| 2148 | set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags); |
| 2149 | btrfs_insert_inode_hash(inode); |
Eric Sandeen | f37938e | 2014-08-01 18:12:40 -0500 | [diff] [blame] | 2150 | } |
| 2151 | |
Eric Sandeen | ad61836 | 2014-08-01 18:12:41 -0500 | [diff] [blame] | 2152 | static void btrfs_init_dev_replace_locks(struct btrfs_fs_info *fs_info) |
| 2153 | { |
Eric Sandeen | ad61836 | 2014-08-01 18:12:41 -0500 | [diff] [blame] | 2154 | mutex_init(&fs_info->dev_replace.lock_finishing_cancel_unmount); |
David Sterba | 129827e | 2018-04-05 01:29:24 +0200 | [diff] [blame] | 2155 | init_rwsem(&fs_info->dev_replace.rwsem); |
David Sterba | 7f8d236 | 2018-04-05 01:04:49 +0200 | [diff] [blame] | 2156 | init_waitqueue_head(&fs_info->dev_replace.replace_wait); |
Eric Sandeen | ad61836 | 2014-08-01 18:12:41 -0500 | [diff] [blame] | 2157 | } |
| 2158 | |
Eric Sandeen | f9e92e4 | 2014-08-01 18:12:42 -0500 | [diff] [blame] | 2159 | static void btrfs_init_qgroup(struct btrfs_fs_info *fs_info) |
| 2160 | { |
| 2161 | spin_lock_init(&fs_info->qgroup_lock); |
| 2162 | mutex_init(&fs_info->qgroup_ioctl_lock); |
| 2163 | fs_info->qgroup_tree = RB_ROOT; |
| 2164 | fs_info->qgroup_op_tree = RB_ROOT; |
| 2165 | INIT_LIST_HEAD(&fs_info->dirty_qgroups); |
| 2166 | fs_info->qgroup_seq = 1; |
Eric Sandeen | f9e92e4 | 2014-08-01 18:12:42 -0500 | [diff] [blame] | 2167 | fs_info->qgroup_ulist = NULL; |
Jeff Mahoney | d2c609b | 2016-08-15 12:10:33 -0400 | [diff] [blame] | 2168 | fs_info->qgroup_rescan_running = false; |
Eric Sandeen | f9e92e4 | 2014-08-01 18:12:42 -0500 | [diff] [blame] | 2169 | mutex_init(&fs_info->qgroup_rescan_lock); |
| 2170 | } |
| 2171 | |
Eric Sandeen | 2a45819 | 2015-02-16 16:29:26 +0100 | [diff] [blame] | 2172 | static int btrfs_init_workqueues(struct btrfs_fs_info *fs_info, |
| 2173 | struct btrfs_fs_devices *fs_devices) |
| 2174 | { |
Anand Jain | f7b885b | 2018-02-13 17:50:42 +0800 | [diff] [blame] | 2175 | u32 max_active = fs_info->thread_pool_size; |
David Sterba | 6f01105 | 2015-02-16 18:34:01 +0100 | [diff] [blame] | 2176 | unsigned int flags = WQ_MEM_RECLAIM | WQ_FREEZABLE | WQ_UNBOUND; |
Eric Sandeen | 2a45819 | 2015-02-16 16:29:26 +0100 | [diff] [blame] | 2177 | |
| 2178 | fs_info->workers = |
Jeff Mahoney | cb00109 | 2016-06-09 16:22:11 -0400 | [diff] [blame] | 2179 | btrfs_alloc_workqueue(fs_info, "worker", |
| 2180 | flags | WQ_HIGHPRI, max_active, 16); |
Eric Sandeen | 2a45819 | 2015-02-16 16:29:26 +0100 | [diff] [blame] | 2181 | |
| 2182 | fs_info->delalloc_workers = |
Jeff Mahoney | cb00109 | 2016-06-09 16:22:11 -0400 | [diff] [blame] | 2183 | btrfs_alloc_workqueue(fs_info, "delalloc", |
| 2184 | flags, max_active, 2); |
Eric Sandeen | 2a45819 | 2015-02-16 16:29:26 +0100 | [diff] [blame] | 2185 | |
| 2186 | fs_info->flush_workers = |
Jeff Mahoney | cb00109 | 2016-06-09 16:22:11 -0400 | [diff] [blame] | 2187 | btrfs_alloc_workqueue(fs_info, "flush_delalloc", |
| 2188 | flags, max_active, 0); |
Eric Sandeen | 2a45819 | 2015-02-16 16:29:26 +0100 | [diff] [blame] | 2189 | |
| 2190 | fs_info->caching_workers = |
Jeff Mahoney | cb00109 | 2016-06-09 16:22:11 -0400 | [diff] [blame] | 2191 | btrfs_alloc_workqueue(fs_info, "cache", flags, max_active, 0); |
Eric Sandeen | 2a45819 | 2015-02-16 16:29:26 +0100 | [diff] [blame] | 2192 | |
| 2193 | /* |
| 2194 | * a higher idle thresh on the submit workers makes it much more |
| 2195 | * likely that bios will be send down in a sane order to the |
| 2196 | * devices |
| 2197 | */ |
| 2198 | fs_info->submit_workers = |
Jeff Mahoney | cb00109 | 2016-06-09 16:22:11 -0400 | [diff] [blame] | 2199 | btrfs_alloc_workqueue(fs_info, "submit", flags, |
Eric Sandeen | 2a45819 | 2015-02-16 16:29:26 +0100 | [diff] [blame] | 2200 | min_t(u64, fs_devices->num_devices, |
| 2201 | max_active), 64); |
| 2202 | |
| 2203 | fs_info->fixup_workers = |
Jeff Mahoney | cb00109 | 2016-06-09 16:22:11 -0400 | [diff] [blame] | 2204 | btrfs_alloc_workqueue(fs_info, "fixup", flags, 1, 0); |
Eric Sandeen | 2a45819 | 2015-02-16 16:29:26 +0100 | [diff] [blame] | 2205 | |
| 2206 | /* |
| 2207 | * endios are largely parallel and should have a very |
| 2208 | * low idle thresh |
| 2209 | */ |
| 2210 | fs_info->endio_workers = |
Jeff Mahoney | cb00109 | 2016-06-09 16:22:11 -0400 | [diff] [blame] | 2211 | btrfs_alloc_workqueue(fs_info, "endio", flags, max_active, 4); |
Eric Sandeen | 2a45819 | 2015-02-16 16:29:26 +0100 | [diff] [blame] | 2212 | fs_info->endio_meta_workers = |
Jeff Mahoney | cb00109 | 2016-06-09 16:22:11 -0400 | [diff] [blame] | 2213 | btrfs_alloc_workqueue(fs_info, "endio-meta", flags, |
| 2214 | max_active, 4); |
Eric Sandeen | 2a45819 | 2015-02-16 16:29:26 +0100 | [diff] [blame] | 2215 | fs_info->endio_meta_write_workers = |
Jeff Mahoney | cb00109 | 2016-06-09 16:22:11 -0400 | [diff] [blame] | 2216 | btrfs_alloc_workqueue(fs_info, "endio-meta-write", flags, |
| 2217 | max_active, 2); |
Eric Sandeen | 2a45819 | 2015-02-16 16:29:26 +0100 | [diff] [blame] | 2218 | fs_info->endio_raid56_workers = |
Jeff Mahoney | cb00109 | 2016-06-09 16:22:11 -0400 | [diff] [blame] | 2219 | btrfs_alloc_workqueue(fs_info, "endio-raid56", flags, |
| 2220 | max_active, 4); |
Eric Sandeen | 2a45819 | 2015-02-16 16:29:26 +0100 | [diff] [blame] | 2221 | fs_info->endio_repair_workers = |
Jeff Mahoney | cb00109 | 2016-06-09 16:22:11 -0400 | [diff] [blame] | 2222 | btrfs_alloc_workqueue(fs_info, "endio-repair", flags, 1, 0); |
Eric Sandeen | 2a45819 | 2015-02-16 16:29:26 +0100 | [diff] [blame] | 2223 | fs_info->rmw_workers = |
Jeff Mahoney | cb00109 | 2016-06-09 16:22:11 -0400 | [diff] [blame] | 2224 | btrfs_alloc_workqueue(fs_info, "rmw", flags, max_active, 2); |
Eric Sandeen | 2a45819 | 2015-02-16 16:29:26 +0100 | [diff] [blame] | 2225 | fs_info->endio_write_workers = |
Jeff Mahoney | cb00109 | 2016-06-09 16:22:11 -0400 | [diff] [blame] | 2226 | btrfs_alloc_workqueue(fs_info, "endio-write", flags, |
| 2227 | max_active, 2); |
Eric Sandeen | 2a45819 | 2015-02-16 16:29:26 +0100 | [diff] [blame] | 2228 | fs_info->endio_freespace_worker = |
Jeff Mahoney | cb00109 | 2016-06-09 16:22:11 -0400 | [diff] [blame] | 2229 | btrfs_alloc_workqueue(fs_info, "freespace-write", flags, |
| 2230 | max_active, 0); |
Eric Sandeen | 2a45819 | 2015-02-16 16:29:26 +0100 | [diff] [blame] | 2231 | fs_info->delayed_workers = |
Jeff Mahoney | cb00109 | 2016-06-09 16:22:11 -0400 | [diff] [blame] | 2232 | btrfs_alloc_workqueue(fs_info, "delayed-meta", flags, |
| 2233 | max_active, 0); |
Eric Sandeen | 2a45819 | 2015-02-16 16:29:26 +0100 | [diff] [blame] | 2234 | fs_info->readahead_workers = |
Jeff Mahoney | cb00109 | 2016-06-09 16:22:11 -0400 | [diff] [blame] | 2235 | btrfs_alloc_workqueue(fs_info, "readahead", flags, |
| 2236 | max_active, 2); |
Eric Sandeen | 2a45819 | 2015-02-16 16:29:26 +0100 | [diff] [blame] | 2237 | fs_info->qgroup_rescan_workers = |
Jeff Mahoney | cb00109 | 2016-06-09 16:22:11 -0400 | [diff] [blame] | 2238 | btrfs_alloc_workqueue(fs_info, "qgroup-rescan", flags, 1, 0); |
Eric Sandeen | 2a45819 | 2015-02-16 16:29:26 +0100 | [diff] [blame] | 2239 | fs_info->extent_workers = |
Jeff Mahoney | cb00109 | 2016-06-09 16:22:11 -0400 | [diff] [blame] | 2240 | btrfs_alloc_workqueue(fs_info, "extent-refs", flags, |
Eric Sandeen | 2a45819 | 2015-02-16 16:29:26 +0100 | [diff] [blame] | 2241 | min_t(u64, fs_devices->num_devices, |
| 2242 | max_active), 8); |
| 2243 | |
| 2244 | if (!(fs_info->workers && fs_info->delalloc_workers && |
| 2245 | fs_info->submit_workers && fs_info->flush_workers && |
| 2246 | fs_info->endio_workers && fs_info->endio_meta_workers && |
| 2247 | fs_info->endio_meta_write_workers && |
| 2248 | fs_info->endio_repair_workers && |
| 2249 | fs_info->endio_write_workers && fs_info->endio_raid56_workers && |
| 2250 | fs_info->endio_freespace_worker && fs_info->rmw_workers && |
| 2251 | fs_info->caching_workers && fs_info->readahead_workers && |
| 2252 | fs_info->fixup_workers && fs_info->delayed_workers && |
| 2253 | fs_info->extent_workers && |
| 2254 | fs_info->qgroup_rescan_workers)) { |
| 2255 | return -ENOMEM; |
| 2256 | } |
| 2257 | |
| 2258 | return 0; |
| 2259 | } |
| 2260 | |
Eric Sandeen | 63443bf | 2014-08-01 18:12:46 -0500 | [diff] [blame] | 2261 | static int btrfs_replay_log(struct btrfs_fs_info *fs_info, |
| 2262 | struct btrfs_fs_devices *fs_devices) |
| 2263 | { |
| 2264 | int ret; |
Eric Sandeen | 63443bf | 2014-08-01 18:12:46 -0500 | [diff] [blame] | 2265 | struct btrfs_root *log_tree_root; |
| 2266 | struct btrfs_super_block *disk_super = fs_info->super_copy; |
| 2267 | u64 bytenr = btrfs_super_log_root(disk_super); |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 2268 | int level = btrfs_super_log_root_level(disk_super); |
Eric Sandeen | 63443bf | 2014-08-01 18:12:46 -0500 | [diff] [blame] | 2269 | |
| 2270 | if (fs_devices->rw_devices == 0) { |
David Sterba | f14d104 | 2015-10-08 11:37:06 +0200 | [diff] [blame] | 2271 | btrfs_warn(fs_info, "log replay required on RO media"); |
Eric Sandeen | 63443bf | 2014-08-01 18:12:46 -0500 | [diff] [blame] | 2272 | return -EIO; |
| 2273 | } |
| 2274 | |
David Sterba | 74e4d82 | 2016-02-11 11:01:55 +0100 | [diff] [blame] | 2275 | log_tree_root = btrfs_alloc_root(fs_info, GFP_KERNEL); |
Eric Sandeen | 63443bf | 2014-08-01 18:12:46 -0500 | [diff] [blame] | 2276 | if (!log_tree_root) |
| 2277 | return -ENOMEM; |
| 2278 | |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 2279 | __setup_root(log_tree_root, fs_info, BTRFS_TREE_LOG_OBJECTID); |
Eric Sandeen | 63443bf | 2014-08-01 18:12:46 -0500 | [diff] [blame] | 2280 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2281 | log_tree_root->node = read_tree_block(fs_info, bytenr, |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 2282 | fs_info->generation + 1, |
| 2283 | level, NULL); |
Liu Bo | 64c043d | 2015-05-25 17:30:15 +0800 | [diff] [blame] | 2284 | if (IS_ERR(log_tree_root->node)) { |
David Sterba | f14d104 | 2015-10-08 11:37:06 +0200 | [diff] [blame] | 2285 | btrfs_warn(fs_info, "failed to read log tree"); |
Liu Bo | 0eeff23 | 2015-06-11 14:16:44 +0800 | [diff] [blame] | 2286 | ret = PTR_ERR(log_tree_root->node); |
Liu Bo | 64c043d | 2015-05-25 17:30:15 +0800 | [diff] [blame] | 2287 | kfree(log_tree_root); |
Liu Bo | 0eeff23 | 2015-06-11 14:16:44 +0800 | [diff] [blame] | 2288 | return ret; |
Liu Bo | 64c043d | 2015-05-25 17:30:15 +0800 | [diff] [blame] | 2289 | } else if (!extent_buffer_uptodate(log_tree_root->node)) { |
David Sterba | f14d104 | 2015-10-08 11:37:06 +0200 | [diff] [blame] | 2290 | btrfs_err(fs_info, "failed to read log tree"); |
Eric Sandeen | 63443bf | 2014-08-01 18:12:46 -0500 | [diff] [blame] | 2291 | free_extent_buffer(log_tree_root->node); |
| 2292 | kfree(log_tree_root); |
| 2293 | return -EIO; |
| 2294 | } |
| 2295 | /* returns with log_tree_root freed on success */ |
| 2296 | ret = btrfs_recover_log_trees(log_tree_root); |
| 2297 | if (ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2298 | btrfs_handle_fs_error(fs_info, ret, |
| 2299 | "Failed to recover log tree"); |
Eric Sandeen | 63443bf | 2014-08-01 18:12:46 -0500 | [diff] [blame] | 2300 | free_extent_buffer(log_tree_root->node); |
| 2301 | kfree(log_tree_root); |
| 2302 | return ret; |
| 2303 | } |
| 2304 | |
David Howells | bc98a42 | 2017-07-17 08:45:34 +0100 | [diff] [blame] | 2305 | if (sb_rdonly(fs_info->sb)) { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 2306 | ret = btrfs_commit_super(fs_info); |
Eric Sandeen | 63443bf | 2014-08-01 18:12:46 -0500 | [diff] [blame] | 2307 | if (ret) |
| 2308 | return ret; |
| 2309 | } |
| 2310 | |
| 2311 | return 0; |
| 2312 | } |
| 2313 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 2314 | static int btrfs_read_roots(struct btrfs_fs_info *fs_info) |
Eric Sandeen | 4bbcaa6 | 2014-08-01 18:12:45 -0500 | [diff] [blame] | 2315 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 2316 | struct btrfs_root *tree_root = fs_info->tree_root; |
David Sterba | a4f3d2c | 2015-02-16 18:44:34 +0100 | [diff] [blame] | 2317 | struct btrfs_root *root; |
Eric Sandeen | 4bbcaa6 | 2014-08-01 18:12:45 -0500 | [diff] [blame] | 2318 | struct btrfs_key location; |
| 2319 | int ret; |
| 2320 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 2321 | BUG_ON(!fs_info->tree_root); |
| 2322 | |
Eric Sandeen | 4bbcaa6 | 2014-08-01 18:12:45 -0500 | [diff] [blame] | 2323 | location.objectid = BTRFS_EXTENT_TREE_OBJECTID; |
| 2324 | location.type = BTRFS_ROOT_ITEM_KEY; |
| 2325 | location.offset = 0; |
| 2326 | |
David Sterba | a4f3d2c | 2015-02-16 18:44:34 +0100 | [diff] [blame] | 2327 | root = btrfs_read_tree_root(tree_root, &location); |
Liu Bo | f50f435 | 2018-03-29 06:11:45 +0800 | [diff] [blame] | 2328 | if (IS_ERR(root)) { |
| 2329 | ret = PTR_ERR(root); |
| 2330 | goto out; |
| 2331 | } |
David Sterba | a4f3d2c | 2015-02-16 18:44:34 +0100 | [diff] [blame] | 2332 | set_bit(BTRFS_ROOT_TRACK_DIRTY, &root->state); |
| 2333 | fs_info->extent_root = root; |
Eric Sandeen | 4bbcaa6 | 2014-08-01 18:12:45 -0500 | [diff] [blame] | 2334 | |
| 2335 | location.objectid = BTRFS_DEV_TREE_OBJECTID; |
David Sterba | a4f3d2c | 2015-02-16 18:44:34 +0100 | [diff] [blame] | 2336 | root = btrfs_read_tree_root(tree_root, &location); |
Liu Bo | f50f435 | 2018-03-29 06:11:45 +0800 | [diff] [blame] | 2337 | if (IS_ERR(root)) { |
| 2338 | ret = PTR_ERR(root); |
| 2339 | goto out; |
| 2340 | } |
David Sterba | a4f3d2c | 2015-02-16 18:44:34 +0100 | [diff] [blame] | 2341 | set_bit(BTRFS_ROOT_TRACK_DIRTY, &root->state); |
| 2342 | fs_info->dev_root = root; |
Eric Sandeen | 4bbcaa6 | 2014-08-01 18:12:45 -0500 | [diff] [blame] | 2343 | btrfs_init_devices_late(fs_info); |
| 2344 | |
| 2345 | location.objectid = BTRFS_CSUM_TREE_OBJECTID; |
David Sterba | a4f3d2c | 2015-02-16 18:44:34 +0100 | [diff] [blame] | 2346 | root = btrfs_read_tree_root(tree_root, &location); |
Liu Bo | f50f435 | 2018-03-29 06:11:45 +0800 | [diff] [blame] | 2347 | if (IS_ERR(root)) { |
| 2348 | ret = PTR_ERR(root); |
| 2349 | goto out; |
| 2350 | } |
David Sterba | a4f3d2c | 2015-02-16 18:44:34 +0100 | [diff] [blame] | 2351 | set_bit(BTRFS_ROOT_TRACK_DIRTY, &root->state); |
| 2352 | fs_info->csum_root = root; |
Eric Sandeen | 4bbcaa6 | 2014-08-01 18:12:45 -0500 | [diff] [blame] | 2353 | |
| 2354 | location.objectid = BTRFS_QUOTA_TREE_OBJECTID; |
David Sterba | a4f3d2c | 2015-02-16 18:44:34 +0100 | [diff] [blame] | 2355 | root = btrfs_read_tree_root(tree_root, &location); |
| 2356 | if (!IS_ERR(root)) { |
| 2357 | set_bit(BTRFS_ROOT_TRACK_DIRTY, &root->state); |
Josef Bacik | afcdd12 | 2016-09-02 15:40:02 -0400 | [diff] [blame] | 2358 | set_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags); |
David Sterba | a4f3d2c | 2015-02-16 18:44:34 +0100 | [diff] [blame] | 2359 | fs_info->quota_root = root; |
Eric Sandeen | 4bbcaa6 | 2014-08-01 18:12:45 -0500 | [diff] [blame] | 2360 | } |
| 2361 | |
| 2362 | location.objectid = BTRFS_UUID_TREE_OBJECTID; |
David Sterba | a4f3d2c | 2015-02-16 18:44:34 +0100 | [diff] [blame] | 2363 | root = btrfs_read_tree_root(tree_root, &location); |
| 2364 | if (IS_ERR(root)) { |
| 2365 | ret = PTR_ERR(root); |
Eric Sandeen | 4bbcaa6 | 2014-08-01 18:12:45 -0500 | [diff] [blame] | 2366 | if (ret != -ENOENT) |
Liu Bo | f50f435 | 2018-03-29 06:11:45 +0800 | [diff] [blame] | 2367 | goto out; |
Eric Sandeen | 4bbcaa6 | 2014-08-01 18:12:45 -0500 | [diff] [blame] | 2368 | } else { |
David Sterba | a4f3d2c | 2015-02-16 18:44:34 +0100 | [diff] [blame] | 2369 | set_bit(BTRFS_ROOT_TRACK_DIRTY, &root->state); |
| 2370 | fs_info->uuid_root = root; |
Eric Sandeen | 4bbcaa6 | 2014-08-01 18:12:45 -0500 | [diff] [blame] | 2371 | } |
| 2372 | |
Omar Sandoval | 70f6d82 | 2015-09-29 20:50:38 -0700 | [diff] [blame] | 2373 | if (btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE)) { |
| 2374 | location.objectid = BTRFS_FREE_SPACE_TREE_OBJECTID; |
| 2375 | root = btrfs_read_tree_root(tree_root, &location); |
Liu Bo | f50f435 | 2018-03-29 06:11:45 +0800 | [diff] [blame] | 2376 | if (IS_ERR(root)) { |
| 2377 | ret = PTR_ERR(root); |
| 2378 | goto out; |
| 2379 | } |
Omar Sandoval | 70f6d82 | 2015-09-29 20:50:38 -0700 | [diff] [blame] | 2380 | set_bit(BTRFS_ROOT_TRACK_DIRTY, &root->state); |
| 2381 | fs_info->free_space_root = root; |
| 2382 | } |
| 2383 | |
Eric Sandeen | 4bbcaa6 | 2014-08-01 18:12:45 -0500 | [diff] [blame] | 2384 | return 0; |
Liu Bo | f50f435 | 2018-03-29 06:11:45 +0800 | [diff] [blame] | 2385 | out: |
| 2386 | btrfs_warn(fs_info, "failed to read root (objectid=%llu): %d", |
| 2387 | location.objectid, ret); |
| 2388 | return ret; |
Eric Sandeen | 4bbcaa6 | 2014-08-01 18:12:45 -0500 | [diff] [blame] | 2389 | } |
| 2390 | |
Qu Wenruo | 069ec95 | 2018-05-11 13:35:26 +0800 | [diff] [blame] | 2391 | /* |
| 2392 | * Real super block validation |
| 2393 | * NOTE: super csum type and incompat features will not be checked here. |
| 2394 | * |
| 2395 | * @sb: super block to check |
| 2396 | * @mirror_num: the super block number to check its bytenr: |
| 2397 | * 0 the primary (1st) sb |
| 2398 | * 1, 2 2nd and 3rd backup copy |
| 2399 | * -1 skip bytenr check |
| 2400 | */ |
| 2401 | static int validate_super(struct btrfs_fs_info *fs_info, |
| 2402 | struct btrfs_super_block *sb, int mirror_num) |
Qu Wenruo | 21a852b | 2018-05-11 13:35:25 +0800 | [diff] [blame] | 2403 | { |
Qu Wenruo | 21a852b | 2018-05-11 13:35:25 +0800 | [diff] [blame] | 2404 | u64 nodesize = btrfs_super_nodesize(sb); |
| 2405 | u64 sectorsize = btrfs_super_sectorsize(sb); |
| 2406 | int ret = 0; |
| 2407 | |
| 2408 | if (btrfs_super_magic(sb) != BTRFS_MAGIC) { |
| 2409 | btrfs_err(fs_info, "no valid FS found"); |
| 2410 | ret = -EINVAL; |
| 2411 | } |
| 2412 | if (btrfs_super_flags(sb) & ~BTRFS_SUPER_FLAG_SUPP) { |
| 2413 | btrfs_err(fs_info, "unrecognized or unsupported super flag: %llu", |
| 2414 | btrfs_super_flags(sb) & ~BTRFS_SUPER_FLAG_SUPP); |
| 2415 | ret = -EINVAL; |
| 2416 | } |
| 2417 | if (btrfs_super_root_level(sb) >= BTRFS_MAX_LEVEL) { |
| 2418 | btrfs_err(fs_info, "tree_root level too big: %d >= %d", |
| 2419 | btrfs_super_root_level(sb), BTRFS_MAX_LEVEL); |
| 2420 | ret = -EINVAL; |
| 2421 | } |
| 2422 | if (btrfs_super_chunk_root_level(sb) >= BTRFS_MAX_LEVEL) { |
| 2423 | btrfs_err(fs_info, "chunk_root level too big: %d >= %d", |
| 2424 | btrfs_super_chunk_root_level(sb), BTRFS_MAX_LEVEL); |
| 2425 | ret = -EINVAL; |
| 2426 | } |
| 2427 | if (btrfs_super_log_root_level(sb) >= BTRFS_MAX_LEVEL) { |
| 2428 | btrfs_err(fs_info, "log_root level too big: %d >= %d", |
| 2429 | btrfs_super_log_root_level(sb), BTRFS_MAX_LEVEL); |
| 2430 | ret = -EINVAL; |
| 2431 | } |
| 2432 | |
| 2433 | /* |
| 2434 | * Check sectorsize and nodesize first, other check will need it. |
| 2435 | * Check all possible sectorsize(4K, 8K, 16K, 32K, 64K) here. |
| 2436 | */ |
| 2437 | if (!is_power_of_2(sectorsize) || sectorsize < 4096 || |
| 2438 | sectorsize > BTRFS_MAX_METADATA_BLOCKSIZE) { |
| 2439 | btrfs_err(fs_info, "invalid sectorsize %llu", sectorsize); |
| 2440 | ret = -EINVAL; |
| 2441 | } |
| 2442 | /* Only PAGE SIZE is supported yet */ |
| 2443 | if (sectorsize != PAGE_SIZE) { |
| 2444 | btrfs_err(fs_info, |
| 2445 | "sectorsize %llu not supported yet, only support %lu", |
| 2446 | sectorsize, PAGE_SIZE); |
| 2447 | ret = -EINVAL; |
| 2448 | } |
| 2449 | if (!is_power_of_2(nodesize) || nodesize < sectorsize || |
| 2450 | nodesize > BTRFS_MAX_METADATA_BLOCKSIZE) { |
| 2451 | btrfs_err(fs_info, "invalid nodesize %llu", nodesize); |
| 2452 | ret = -EINVAL; |
| 2453 | } |
| 2454 | if (nodesize != le32_to_cpu(sb->__unused_leafsize)) { |
| 2455 | btrfs_err(fs_info, "invalid leafsize %u, should be %llu", |
| 2456 | le32_to_cpu(sb->__unused_leafsize), nodesize); |
| 2457 | ret = -EINVAL; |
| 2458 | } |
| 2459 | |
| 2460 | /* Root alignment check */ |
| 2461 | if (!IS_ALIGNED(btrfs_super_root(sb), sectorsize)) { |
| 2462 | btrfs_warn(fs_info, "tree_root block unaligned: %llu", |
| 2463 | btrfs_super_root(sb)); |
| 2464 | ret = -EINVAL; |
| 2465 | } |
| 2466 | if (!IS_ALIGNED(btrfs_super_chunk_root(sb), sectorsize)) { |
| 2467 | btrfs_warn(fs_info, "chunk_root block unaligned: %llu", |
| 2468 | btrfs_super_chunk_root(sb)); |
| 2469 | ret = -EINVAL; |
| 2470 | } |
| 2471 | if (!IS_ALIGNED(btrfs_super_log_root(sb), sectorsize)) { |
| 2472 | btrfs_warn(fs_info, "log_root block unaligned: %llu", |
| 2473 | btrfs_super_log_root(sb)); |
| 2474 | ret = -EINVAL; |
| 2475 | } |
| 2476 | |
Nikolay Borisov | de37aa5 | 2018-10-30 16:43:24 +0200 | [diff] [blame] | 2477 | if (memcmp(fs_info->fs_devices->metadata_uuid, sb->dev_item.fsid, |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 2478 | BTRFS_FSID_SIZE) != 0) { |
Qu Wenruo | 21a852b | 2018-05-11 13:35:25 +0800 | [diff] [blame] | 2479 | btrfs_err(fs_info, |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 2480 | "dev_item UUID does not match metadata fsid: %pU != %pU", |
Nikolay Borisov | de37aa5 | 2018-10-30 16:43:24 +0200 | [diff] [blame] | 2481 | fs_info->fs_devices->metadata_uuid, sb->dev_item.fsid); |
Qu Wenruo | 21a852b | 2018-05-11 13:35:25 +0800 | [diff] [blame] | 2482 | ret = -EINVAL; |
| 2483 | } |
| 2484 | |
| 2485 | /* |
| 2486 | * Hint to catch really bogus numbers, bitflips or so, more exact checks are |
| 2487 | * done later |
| 2488 | */ |
| 2489 | if (btrfs_super_bytes_used(sb) < 6 * btrfs_super_nodesize(sb)) { |
| 2490 | btrfs_err(fs_info, "bytes_used is too small %llu", |
| 2491 | btrfs_super_bytes_used(sb)); |
| 2492 | ret = -EINVAL; |
| 2493 | } |
| 2494 | if (!is_power_of_2(btrfs_super_stripesize(sb))) { |
| 2495 | btrfs_err(fs_info, "invalid stripesize %u", |
| 2496 | btrfs_super_stripesize(sb)); |
| 2497 | ret = -EINVAL; |
| 2498 | } |
| 2499 | if (btrfs_super_num_devices(sb) > (1UL << 31)) |
| 2500 | btrfs_warn(fs_info, "suspicious number of devices: %llu", |
| 2501 | btrfs_super_num_devices(sb)); |
| 2502 | if (btrfs_super_num_devices(sb) == 0) { |
| 2503 | btrfs_err(fs_info, "number of devices is 0"); |
| 2504 | ret = -EINVAL; |
| 2505 | } |
| 2506 | |
Qu Wenruo | 069ec95 | 2018-05-11 13:35:26 +0800 | [diff] [blame] | 2507 | if (mirror_num >= 0 && |
| 2508 | btrfs_super_bytenr(sb) != btrfs_sb_offset(mirror_num)) { |
Qu Wenruo | 21a852b | 2018-05-11 13:35:25 +0800 | [diff] [blame] | 2509 | btrfs_err(fs_info, "super offset mismatch %llu != %u", |
| 2510 | btrfs_super_bytenr(sb), BTRFS_SUPER_INFO_OFFSET); |
| 2511 | ret = -EINVAL; |
| 2512 | } |
| 2513 | |
| 2514 | /* |
| 2515 | * Obvious sys_chunk_array corruptions, it must hold at least one key |
| 2516 | * and one chunk |
| 2517 | */ |
| 2518 | if (btrfs_super_sys_array_size(sb) > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE) { |
| 2519 | btrfs_err(fs_info, "system chunk array too big %u > %u", |
| 2520 | btrfs_super_sys_array_size(sb), |
| 2521 | BTRFS_SYSTEM_CHUNK_ARRAY_SIZE); |
| 2522 | ret = -EINVAL; |
| 2523 | } |
| 2524 | if (btrfs_super_sys_array_size(sb) < sizeof(struct btrfs_disk_key) |
| 2525 | + sizeof(struct btrfs_chunk)) { |
| 2526 | btrfs_err(fs_info, "system chunk array too small %u < %zu", |
| 2527 | btrfs_super_sys_array_size(sb), |
| 2528 | sizeof(struct btrfs_disk_key) |
| 2529 | + sizeof(struct btrfs_chunk)); |
| 2530 | ret = -EINVAL; |
| 2531 | } |
| 2532 | |
| 2533 | /* |
| 2534 | * The generation is a global counter, we'll trust it more than the others |
| 2535 | * but it's still possible that it's the one that's wrong. |
| 2536 | */ |
| 2537 | if (btrfs_super_generation(sb) < btrfs_super_chunk_root_generation(sb)) |
| 2538 | btrfs_warn(fs_info, |
| 2539 | "suspicious: generation < chunk_root_generation: %llu < %llu", |
| 2540 | btrfs_super_generation(sb), |
| 2541 | btrfs_super_chunk_root_generation(sb)); |
| 2542 | if (btrfs_super_generation(sb) < btrfs_super_cache_generation(sb) |
| 2543 | && btrfs_super_cache_generation(sb) != (u64)-1) |
| 2544 | btrfs_warn(fs_info, |
| 2545 | "suspicious: generation < cache_generation: %llu < %llu", |
| 2546 | btrfs_super_generation(sb), |
| 2547 | btrfs_super_cache_generation(sb)); |
| 2548 | |
| 2549 | return ret; |
| 2550 | } |
| 2551 | |
Qu Wenruo | 069ec95 | 2018-05-11 13:35:26 +0800 | [diff] [blame] | 2552 | /* |
| 2553 | * Validation of super block at mount time. |
| 2554 | * Some checks already done early at mount time, like csum type and incompat |
| 2555 | * flags will be skipped. |
| 2556 | */ |
| 2557 | static int btrfs_validate_mount_super(struct btrfs_fs_info *fs_info) |
| 2558 | { |
| 2559 | return validate_super(fs_info, fs_info->super_copy, 0); |
| 2560 | } |
| 2561 | |
Qu Wenruo | 75cb857 | 2018-05-11 13:35:27 +0800 | [diff] [blame] | 2562 | /* |
| 2563 | * Validation of super block at write time. |
| 2564 | * Some checks like bytenr check will be skipped as their values will be |
| 2565 | * overwritten soon. |
| 2566 | * Extra checks like csum type and incompat flags will be done here. |
| 2567 | */ |
| 2568 | static int btrfs_validate_write_super(struct btrfs_fs_info *fs_info, |
| 2569 | struct btrfs_super_block *sb) |
| 2570 | { |
| 2571 | int ret; |
| 2572 | |
| 2573 | ret = validate_super(fs_info, sb, -1); |
| 2574 | if (ret < 0) |
| 2575 | goto out; |
| 2576 | if (btrfs_super_csum_type(sb) != BTRFS_CSUM_TYPE_CRC32) { |
| 2577 | ret = -EUCLEAN; |
| 2578 | btrfs_err(fs_info, "invalid csum type, has %u want %u", |
| 2579 | btrfs_super_csum_type(sb), BTRFS_CSUM_TYPE_CRC32); |
| 2580 | goto out; |
| 2581 | } |
| 2582 | if (btrfs_super_incompat_flags(sb) & ~BTRFS_FEATURE_INCOMPAT_SUPP) { |
| 2583 | ret = -EUCLEAN; |
| 2584 | btrfs_err(fs_info, |
| 2585 | "invalid incompat flags, has 0x%llx valid mask 0x%llx", |
| 2586 | btrfs_super_incompat_flags(sb), |
| 2587 | (unsigned long long)BTRFS_FEATURE_INCOMPAT_SUPP); |
| 2588 | goto out; |
| 2589 | } |
| 2590 | out: |
| 2591 | if (ret < 0) |
| 2592 | btrfs_err(fs_info, |
| 2593 | "super block corruption detected before writing it to disk"); |
| 2594 | return ret; |
| 2595 | } |
| 2596 | |
Al Viro | ad2b2c8 | 2011-11-17 01:10:02 -0500 | [diff] [blame] | 2597 | int open_ctree(struct super_block *sb, |
| 2598 | struct btrfs_fs_devices *fs_devices, |
| 2599 | char *options) |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 2600 | { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 2601 | u32 sectorsize; |
| 2602 | u32 nodesize; |
Chris Mason | 87ee04e | 2007-11-30 11:30:34 -0500 | [diff] [blame] | 2603 | u32 stripesize; |
Yan Zheng | 84234f3 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 2604 | u64 generation; |
Josef Bacik | f2b636e | 2008-12-02 06:36:08 -0500 | [diff] [blame] | 2605 | u64 features; |
Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 2606 | struct btrfs_key location; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2607 | struct buffer_head *bh; |
Ilya Dryomov | 4d34b27 | 2011-11-09 00:08:15 +0200 | [diff] [blame] | 2608 | struct btrfs_super_block *disk_super; |
Al Viro | 815745c | 2011-11-17 15:40:49 -0500 | [diff] [blame] | 2609 | struct btrfs_fs_info *fs_info = btrfs_sb(sb); |
Al Viro | f84a8bd | 2011-11-17 15:57:57 -0500 | [diff] [blame] | 2610 | struct btrfs_root *tree_root; |
Ilya Dryomov | 4d34b27 | 2011-11-09 00:08:15 +0200 | [diff] [blame] | 2611 | struct btrfs_root *chunk_root; |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 2612 | int ret; |
Yan | e58ca02 | 2008-04-01 11:21:34 -0400 | [diff] [blame] | 2613 | int err = -EINVAL; |
Chris Mason | af31f5e | 2011-11-03 15:17:42 -0400 | [diff] [blame] | 2614 | int num_backups_tried = 0; |
| 2615 | int backup_index = 0; |
Omar Sandoval | 6675df3 | 2016-09-22 17:24:22 -0700 | [diff] [blame] | 2616 | int clear_free_space_tree = 0; |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 2617 | int level; |
Chris Mason | 4543df7 | 2008-06-11 21:47:56 -0400 | [diff] [blame] | 2618 | |
David Sterba | 74e4d82 | 2016-02-11 11:01:55 +0100 | [diff] [blame] | 2619 | tree_root = fs_info->tree_root = btrfs_alloc_root(fs_info, GFP_KERNEL); |
| 2620 | chunk_root = fs_info->chunk_root = btrfs_alloc_root(fs_info, GFP_KERNEL); |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 2621 | if (!tree_root || !chunk_root) { |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2622 | err = -ENOMEM; |
| 2623 | goto fail; |
| 2624 | } |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 2625 | |
| 2626 | ret = init_srcu_struct(&fs_info->subvol_srcu); |
| 2627 | if (ret) { |
| 2628 | err = ret; |
| 2629 | goto fail; |
| 2630 | } |
| 2631 | |
Tejun Heo | 908c7f1 | 2014-09-08 09:51:29 +0900 | [diff] [blame] | 2632 | ret = percpu_counter_init(&fs_info->dirty_metadata_bytes, 0, GFP_KERNEL); |
Miao Xie | e2d8452 | 2013-01-29 10:09:20 +0000 | [diff] [blame] | 2633 | if (ret) { |
| 2634 | err = ret; |
Jan Kara | 9e11cee | 2017-04-12 12:24:32 +0200 | [diff] [blame] | 2635 | goto fail_srcu; |
Miao Xie | e2d8452 | 2013-01-29 10:09:20 +0000 | [diff] [blame] | 2636 | } |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 2637 | fs_info->dirty_metadata_batch = PAGE_SIZE * |
Miao Xie | e2d8452 | 2013-01-29 10:09:20 +0000 | [diff] [blame] | 2638 | (1 + ilog2(nr_cpu_ids)); |
| 2639 | |
Tejun Heo | 908c7f1 | 2014-09-08 09:51:29 +0900 | [diff] [blame] | 2640 | ret = percpu_counter_init(&fs_info->delalloc_bytes, 0, GFP_KERNEL); |
Miao Xie | 963d678 | 2013-01-29 10:10:51 +0000 | [diff] [blame] | 2641 | if (ret) { |
| 2642 | err = ret; |
| 2643 | goto fail_dirty_metadata_bytes; |
| 2644 | } |
| 2645 | |
David Sterba | 7f8d236 | 2018-04-05 01:04:49 +0200 | [diff] [blame] | 2646 | ret = percpu_counter_init(&fs_info->dev_replace.bio_counter, 0, |
| 2647 | GFP_KERNEL); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 2648 | if (ret) { |
| 2649 | err = ret; |
| 2650 | goto fail_delalloc_bytes; |
| 2651 | } |
| 2652 | |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 2653 | INIT_RADIX_TREE(&fs_info->fs_roots_radix, GFP_ATOMIC); |
Josef Bacik | f28491e | 2013-12-16 13:24:27 -0500 | [diff] [blame] | 2654 | INIT_RADIX_TREE(&fs_info->buffer_radix, GFP_ATOMIC); |
Chris Mason | 8fd1779 | 2007-04-19 21:01:03 -0400 | [diff] [blame] | 2655 | INIT_LIST_HEAD(&fs_info->trans_list); |
Chris Mason | facda1e | 2007-06-08 18:11:48 -0400 | [diff] [blame] | 2656 | INIT_LIST_HEAD(&fs_info->dead_roots); |
Yan, Zheng | 24bbcf0 | 2009-11-12 09:36:34 +0000 | [diff] [blame] | 2657 | INIT_LIST_HEAD(&fs_info->delayed_iputs); |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 2658 | INIT_LIST_HEAD(&fs_info->delalloc_roots); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 2659 | INIT_LIST_HEAD(&fs_info->caching_block_groups); |
Jeff Mahoney | 75cb379 | 2018-03-20 15:25:26 -0400 | [diff] [blame] | 2660 | INIT_LIST_HEAD(&fs_info->pending_raid_kobjs); |
| 2661 | spin_lock_init(&fs_info->pending_raid_kobjs_lock); |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 2662 | spin_lock_init(&fs_info->delalloc_root_lock); |
Josef Bacik | a4abeea | 2011-04-11 17:25:13 -0400 | [diff] [blame] | 2663 | spin_lock_init(&fs_info->trans_lock); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 2664 | spin_lock_init(&fs_info->fs_roots_radix_lock); |
Yan, Zheng | 24bbcf0 | 2009-11-12 09:36:34 +0000 | [diff] [blame] | 2665 | spin_lock_init(&fs_info->delayed_iput_lock); |
Chris Mason | 4cb5300 | 2011-05-24 15:35:30 -0400 | [diff] [blame] | 2666 | spin_lock_init(&fs_info->defrag_inodes_lock); |
Jan Schmidt | f29021b | 2012-05-16 17:55:38 +0200 | [diff] [blame] | 2667 | spin_lock_init(&fs_info->tree_mod_seq_lock); |
Miao Xie | ceda086 | 2013-04-11 10:30:16 +0000 | [diff] [blame] | 2668 | spin_lock_init(&fs_info->super_lock); |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2669 | spin_lock_init(&fs_info->qgroup_op_lock); |
Josef Bacik | f28491e | 2013-12-16 13:24:27 -0500 | [diff] [blame] | 2670 | spin_lock_init(&fs_info->buffer_lock); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2671 | spin_lock_init(&fs_info->unused_bgs_lock); |
Jan Schmidt | f29021b | 2012-05-16 17:55:38 +0200 | [diff] [blame] | 2672 | rwlock_init(&fs_info->tree_mod_log_lock); |
Zhao Lei | d7c1517 | 2015-02-26 10:49:20 +0800 | [diff] [blame] | 2673 | mutex_init(&fs_info->unused_bg_unpin_mutex); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 2674 | mutex_init(&fs_info->delete_unused_bgs_mutex); |
Chris Mason | 7585717 | 2011-06-13 20:00:16 -0400 | [diff] [blame] | 2675 | mutex_init(&fs_info->reloc_mutex); |
Miao Xie | 573bfb7 | 2014-03-06 13:55:03 +0800 | [diff] [blame] | 2676 | mutex_init(&fs_info->delalloc_root_mutex); |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 2677 | seqlock_init(&fs_info->profiles_lock); |
Chris Mason | 19c00dd | 2007-10-15 16:19:22 -0400 | [diff] [blame] | 2678 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2679 | INIT_LIST_HEAD(&fs_info->dirty_cowonly_roots); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 2680 | INIT_LIST_HEAD(&fs_info->space_info); |
Jan Schmidt | f29021b | 2012-05-16 17:55:38 +0200 | [diff] [blame] | 2681 | INIT_LIST_HEAD(&fs_info->tree_mod_seq_list); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 2682 | INIT_LIST_HEAD(&fs_info->unused_bgs); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2683 | btrfs_mapping_init(&fs_info->mapping_tree); |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 2684 | btrfs_init_block_rsv(&fs_info->global_block_rsv, |
| 2685 | BTRFS_BLOCK_RSV_GLOBAL); |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 2686 | btrfs_init_block_rsv(&fs_info->trans_block_rsv, BTRFS_BLOCK_RSV_TRANS); |
| 2687 | btrfs_init_block_rsv(&fs_info->chunk_block_rsv, BTRFS_BLOCK_RSV_CHUNK); |
| 2688 | btrfs_init_block_rsv(&fs_info->empty_block_rsv, BTRFS_BLOCK_RSV_EMPTY); |
| 2689 | btrfs_init_block_rsv(&fs_info->delayed_block_rsv, |
| 2690 | BTRFS_BLOCK_RSV_DELOPS); |
Josef Bacik | ba2c4d4 | 2018-12-03 10:20:33 -0500 | [diff] [blame] | 2691 | btrfs_init_block_rsv(&fs_info->delayed_refs_rsv, |
| 2692 | BTRFS_BLOCK_RSV_DELREFS); |
| 2693 | |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 2694 | atomic_set(&fs_info->async_delalloc_pages, 0); |
Chris Mason | 4cb5300 | 2011-05-24 15:35:30 -0400 | [diff] [blame] | 2695 | atomic_set(&fs_info->defrag_running, 0); |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2696 | atomic_set(&fs_info->qgroup_op_seq, 0); |
Zhao Lei | 2fefd55 | 2016-01-07 18:38:48 +0800 | [diff] [blame] | 2697 | atomic_set(&fs_info->reada_works_cnt, 0); |
Josef Bacik | 034f784 | 2018-12-03 11:06:52 -0500 | [diff] [blame] | 2698 | atomic_set(&fs_info->nr_delayed_iputs, 0); |
Jan Schmidt | fc36ed7e | 2013-04-24 16:57:33 +0000 | [diff] [blame] | 2699 | atomic64_set(&fs_info->tree_mod_seq, 0); |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 2700 | fs_info->sb = sb; |
Filipe David Borba Manana | 95ac567 | 2013-08-08 22:45:48 +0100 | [diff] [blame] | 2701 | fs_info->max_inline = BTRFS_DEFAULT_MAX_INLINE; |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 2702 | fs_info->metadata_ratio = 0; |
Chris Mason | 4cb5300 | 2011-05-24 15:35:30 -0400 | [diff] [blame] | 2703 | fs_info->defrag_inodes = RB_ROOT; |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 2704 | atomic64_set(&fs_info->free_chunk_space, 0); |
Jan Schmidt | f29021b | 2012-05-16 17:55:38 +0200 | [diff] [blame] | 2705 | fs_info->tree_mod_log = RB_ROOT; |
David Sterba | 8b87dc1 | 2013-08-01 18:14:52 +0200 | [diff] [blame] | 2706 | fs_info->commit_interval = BTRFS_DEFAULT_COMMIT_INTERVAL; |
David Sterba | f8c269d | 2015-01-16 17:21:12 +0100 | [diff] [blame] | 2707 | fs_info->avg_delayed_ref_runtime = NSEC_PER_SEC >> 6; /* div by 64 */ |
Arne Jansen | 90519d6 | 2011-05-23 14:30:00 +0200 | [diff] [blame] | 2708 | /* readahead state */ |
Mel Gorman | d0164ad | 2015-11-06 16:28:21 -0800 | [diff] [blame] | 2709 | INIT_RADIX_TREE(&fs_info->reada_tree, GFP_NOFS & ~__GFP_DIRECT_RECLAIM); |
Arne Jansen | 90519d6 | 2011-05-23 14:30:00 +0200 | [diff] [blame] | 2710 | spin_lock_init(&fs_info->reada_lock); |
Josef Bacik | fd708b8 | 2017-09-29 15:43:50 -0400 | [diff] [blame] | 2711 | btrfs_init_ref_verify(fs_info); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 2712 | |
Chris Mason | b34b086 | 2008-12-19 15:43:22 -0500 | [diff] [blame] | 2713 | fs_info->thread_pool_size = min_t(unsigned long, |
| 2714 | num_online_cpus() + 2, 8); |
Chris Mason | 0afbaf8 | 2008-04-18 14:17:20 -0400 | [diff] [blame] | 2715 | |
Miao Xie | 199c2a9 | 2013-05-15 07:48:23 +0000 | [diff] [blame] | 2716 | INIT_LIST_HEAD(&fs_info->ordered_roots); |
| 2717 | spin_lock_init(&fs_info->ordered_root_lock); |
Josef Bacik | 69fe2d7 | 2017-10-19 14:15:57 -0400 | [diff] [blame] | 2718 | |
| 2719 | fs_info->btree_inode = new_inode(sb); |
| 2720 | if (!fs_info->btree_inode) { |
| 2721 | err = -ENOMEM; |
| 2722 | goto fail_bio_counter; |
| 2723 | } |
| 2724 | mapping_set_gfp_mask(fs_info->btree_inode->i_mapping, GFP_NOFS); |
| 2725 | |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 2726 | fs_info->delayed_root = kmalloc(sizeof(struct btrfs_delayed_root), |
David Sterba | 74e4d82 | 2016-02-11 11:01:55 +0100 | [diff] [blame] | 2727 | GFP_KERNEL); |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 2728 | if (!fs_info->delayed_root) { |
| 2729 | err = -ENOMEM; |
| 2730 | goto fail_iput; |
| 2731 | } |
| 2732 | btrfs_init_delayed_root(fs_info->delayed_root); |
Chris Mason | 3eaa288 | 2008-07-24 11:57:52 -0400 | [diff] [blame] | 2733 | |
Eric Sandeen | 638aa7e | 2014-08-01 18:12:38 -0500 | [diff] [blame] | 2734 | btrfs_init_scrub(fs_info); |
Stefan Behrens | 21adbd5 | 2011-11-09 13:44:05 +0100 | [diff] [blame] | 2735 | #ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY |
| 2736 | fs_info->check_integrity_print_mask = 0; |
| 2737 | #endif |
Eric Sandeen | 779a65a | 2014-08-01 18:12:39 -0500 | [diff] [blame] | 2738 | btrfs_init_balance(fs_info); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 2739 | btrfs_init_async_reclaim_work(&fs_info->async_reclaim_work); |
Arne Jansen | a2de733 | 2011-03-08 14:14:00 +0100 | [diff] [blame] | 2740 | |
David Sterba | 9f6d251 | 2017-06-16 01:48:05 +0200 | [diff] [blame] | 2741 | sb->s_blocksize = BTRFS_BDEV_BLOCKSIZE; |
| 2742 | sb->s_blocksize_bits = blksize_bits(BTRFS_BDEV_BLOCKSIZE); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2743 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 2744 | btrfs_init_btree_inode(fs_info); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2745 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2746 | spin_lock_init(&fs_info->block_group_cache_lock); |
Eric Paris | 6bef4d3 | 2010-02-23 19:43:04 +0000 | [diff] [blame] | 2747 | fs_info->block_group_cache_tree = RB_ROOT; |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 2748 | fs_info->first_logical_byte = (u64)-1; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2749 | |
Qu Wenruo | 43eb5f2 | 2019-03-01 10:47:59 +0800 | [diff] [blame] | 2750 | extent_io_tree_init(fs_info, &fs_info->freed_extents[0], |
| 2751 | IO_TREE_FS_INFO_FREED_EXTENTS0, NULL); |
| 2752 | extent_io_tree_init(fs_info, &fs_info->freed_extents[1], |
| 2753 | IO_TREE_FS_INFO_FREED_EXTENTS1, NULL); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 2754 | fs_info->pinned_extents = &fs_info->freed_extents[0]; |
Josef Bacik | afcdd12 | 2016-09-02 15:40:02 -0400 | [diff] [blame] | 2755 | set_bit(BTRFS_FS_BARRIER, &fs_info->flags); |
Chris Mason | 509659c | 2007-05-10 12:36:17 -0400 | [diff] [blame] | 2756 | |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 2757 | mutex_init(&fs_info->ordered_operations_mutex); |
Chris Mason | 79154b1 | 2007-03-22 15:59:16 -0400 | [diff] [blame] | 2758 | mutex_init(&fs_info->tree_log_mutex); |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2759 | mutex_init(&fs_info->chunk_mutex); |
Chris Mason | a74a4b9 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 2760 | mutex_init(&fs_info->transaction_kthread_mutex); |
| 2761 | mutex_init(&fs_info->cleaner_mutex); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 2762 | mutex_init(&fs_info->ro_block_group_mutex); |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 2763 | init_rwsem(&fs_info->commit_root_sem); |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 2764 | init_rwsem(&fs_info->cleanup_work_sem); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 2765 | init_rwsem(&fs_info->subvol_sem); |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 2766 | sema_init(&fs_info->uuid_tree_rescan_sem, 1); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 2767 | |
Eric Sandeen | ad61836 | 2014-08-01 18:12:41 -0500 | [diff] [blame] | 2768 | btrfs_init_dev_replace_locks(fs_info); |
Eric Sandeen | f9e92e4 | 2014-08-01 18:12:42 -0500 | [diff] [blame] | 2769 | btrfs_init_qgroup(fs_info); |
Arne Jansen | 416ac51 | 2011-09-13 12:56:09 +0200 | [diff] [blame] | 2770 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 2771 | btrfs_init_free_cluster(&fs_info->meta_alloc_cluster); |
| 2772 | btrfs_init_free_cluster(&fs_info->data_alloc_cluster); |
| 2773 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 2774 | init_waitqueue_head(&fs_info->transaction_throttle); |
Chris Mason | f929574 | 2008-07-17 12:54:14 -0400 | [diff] [blame] | 2775 | init_waitqueue_head(&fs_info->transaction_wait); |
Sage Weil | bb9c12c | 2010-10-29 15:37:34 -0400 | [diff] [blame] | 2776 | init_waitqueue_head(&fs_info->transaction_blocked_wait); |
Chris Mason | 4854ddd | 2008-08-15 15:34:17 -0400 | [diff] [blame] | 2777 | init_waitqueue_head(&fs_info->async_submit_wait); |
Josef Bacik | 034f784 | 2018-12-03 11:06:52 -0500 | [diff] [blame] | 2778 | init_waitqueue_head(&fs_info->delayed_iputs_wait); |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 2779 | |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 2780 | INIT_LIST_HEAD(&fs_info->pinned_chunks); |
| 2781 | |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 2782 | /* Usable values until the real ones are cached from the superblock */ |
| 2783 | fs_info->nodesize = 4096; |
| 2784 | fs_info->sectorsize = 4096; |
| 2785 | fs_info->stripesize = 4096; |
| 2786 | |
Omar Sandoval | eede2bf | 2016-11-03 10:28:12 -0700 | [diff] [blame] | 2787 | spin_lock_init(&fs_info->swapfile_pins_lock); |
| 2788 | fs_info->swapfile_pins = RB_ROOT; |
| 2789 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 2790 | ret = btrfs_alloc_stripe_hash_table(fs_info); |
| 2791 | if (ret) { |
David Sterba | 83c8266 | 2013-03-01 15:03:00 +0000 | [diff] [blame] | 2792 | err = ret; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 2793 | goto fail_alloc; |
| 2794 | } |
| 2795 | |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 2796 | __setup_root(tree_root, fs_info, BTRFS_ROOT_TREE_OBJECTID); |
Chris Mason | 7eccb90 | 2007-04-11 15:53:25 -0400 | [diff] [blame] | 2797 | |
Chris Mason | 3c4bb26 | 2012-03-27 18:56:56 -0400 | [diff] [blame] | 2798 | invalidate_bdev(fs_devices->latest_bdev); |
David Sterba | 1104a88 | 2013-03-06 15:57:46 +0100 | [diff] [blame] | 2799 | |
| 2800 | /* |
| 2801 | * Read super block and check the signature bytes only |
| 2802 | */ |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 2803 | bh = btrfs_read_dev_super(fs_devices->latest_bdev); |
Anand Jain | 92fc03f | 2015-08-14 18:32:51 +0800 | [diff] [blame] | 2804 | if (IS_ERR(bh)) { |
| 2805 | err = PTR_ERR(bh); |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 2806 | goto fail_alloc; |
Dave Young | 20b4507 | 2011-01-08 10:09:13 +0000 | [diff] [blame] | 2807 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2808 | |
David Sterba | 1104a88 | 2013-03-06 15:57:46 +0100 | [diff] [blame] | 2809 | /* |
| 2810 | * We want to check superblock checksum, the type is stored inside. |
| 2811 | * Pass the whole disk block of size BTRFS_SUPER_INFO_SIZE (4k). |
| 2812 | */ |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 2813 | if (btrfs_check_super_csum(fs_info, bh->b_data)) { |
David Sterba | 05135f5 | 2016-05-09 11:32:39 +0200 | [diff] [blame] | 2814 | btrfs_err(fs_info, "superblock checksum mismatch"); |
David Sterba | 1104a88 | 2013-03-06 15:57:46 +0100 | [diff] [blame] | 2815 | err = -EINVAL; |
Anand Jain | b2acddd | 2015-10-07 17:23:23 +0800 | [diff] [blame] | 2816 | brelse(bh); |
David Sterba | 1104a88 | 2013-03-06 15:57:46 +0100 | [diff] [blame] | 2817 | goto fail_alloc; |
| 2818 | } |
| 2819 | |
| 2820 | /* |
| 2821 | * super_copy is zeroed at allocation time and we never touch the |
| 2822 | * following bytes up to INFO_SIZE, the checksum is calculated from |
| 2823 | * the whole block of INFO_SIZE |
| 2824 | */ |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 2825 | memcpy(fs_info->super_copy, bh->b_data, sizeof(*fs_info->super_copy)); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2826 | brelse(bh); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2827 | |
Nikolay Borisov | fbc6fea | 2018-10-30 16:43:25 +0200 | [diff] [blame] | 2828 | disk_super = fs_info->super_copy; |
| 2829 | |
Nikolay Borisov | de37aa5 | 2018-10-30 16:43:24 +0200 | [diff] [blame] | 2830 | ASSERT(!memcmp(fs_info->fs_devices->fsid, fs_info->super_copy->fsid, |
| 2831 | BTRFS_FSID_SIZE)); |
| 2832 | |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 2833 | if (btrfs_fs_incompat(fs_info, METADATA_UUID)) { |
Nikolay Borisov | de37aa5 | 2018-10-30 16:43:24 +0200 | [diff] [blame] | 2834 | ASSERT(!memcmp(fs_info->fs_devices->metadata_uuid, |
| 2835 | fs_info->super_copy->metadata_uuid, |
| 2836 | BTRFS_FSID_SIZE)); |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 2837 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2838 | |
Nikolay Borisov | fbc6fea | 2018-10-30 16:43:25 +0200 | [diff] [blame] | 2839 | features = btrfs_super_flags(disk_super); |
| 2840 | if (features & BTRFS_SUPER_FLAG_CHANGING_FSID_V2) { |
| 2841 | features &= ~BTRFS_SUPER_FLAG_CHANGING_FSID_V2; |
| 2842 | btrfs_set_super_flags(disk_super, features); |
| 2843 | btrfs_info(fs_info, |
| 2844 | "found metadata UUID change in progress flag, clearing"); |
| 2845 | } |
| 2846 | |
| 2847 | memcpy(fs_info->super_for_commit, fs_info->super_copy, |
| 2848 | sizeof(*fs_info->super_for_commit)); |
Nikolay Borisov | de37aa5 | 2018-10-30 16:43:24 +0200 | [diff] [blame] | 2849 | |
Qu Wenruo | 069ec95 | 2018-05-11 13:35:26 +0800 | [diff] [blame] | 2850 | ret = btrfs_validate_mount_super(fs_info); |
David Sterba | 1104a88 | 2013-03-06 15:57:46 +0100 | [diff] [blame] | 2851 | if (ret) { |
David Sterba | 05135f5 | 2016-05-09 11:32:39 +0200 | [diff] [blame] | 2852 | btrfs_err(fs_info, "superblock contains fatal errors"); |
David Sterba | 1104a88 | 2013-03-06 15:57:46 +0100 | [diff] [blame] | 2853 | err = -EINVAL; |
| 2854 | goto fail_alloc; |
| 2855 | } |
| 2856 | |
Chris Mason | 0f7d52f | 2007-04-09 10:42:37 -0400 | [diff] [blame] | 2857 | if (!btrfs_super_root(disk_super)) |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 2858 | goto fail_alloc; |
Chris Mason | 0f7d52f | 2007-04-09 10:42:37 -0400 | [diff] [blame] | 2859 | |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 2860 | /* check FS state, whether FS is broken. */ |
Miao Xie | 87533c4 | 2013-01-29 10:14:48 +0000 | [diff] [blame] | 2861 | if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_ERROR) |
| 2862 | set_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 2863 | |
Liu Bo | 75e7cb7 | 2011-03-22 10:12:20 +0000 | [diff] [blame] | 2864 | /* |
Chris Mason | af31f5e | 2011-11-03 15:17:42 -0400 | [diff] [blame] | 2865 | * run through our array of backup supers and setup |
| 2866 | * our ring pointer to the oldest one |
| 2867 | */ |
| 2868 | generation = btrfs_super_generation(disk_super); |
| 2869 | find_oldest_super_backup(fs_info, generation); |
| 2870 | |
| 2871 | /* |
Liu Bo | 75e7cb7 | 2011-03-22 10:12:20 +0000 | [diff] [blame] | 2872 | * In the long term, we'll store the compression type in the super |
| 2873 | * block, and it'll be used for per file compression control. |
| 2874 | */ |
| 2875 | fs_info->compress_type = BTRFS_COMPRESS_ZLIB; |
| 2876 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2877 | ret = btrfs_parse_options(fs_info, options, sb->s_flags); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2878 | if (ret) { |
| 2879 | err = ret; |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 2880 | goto fail_alloc; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 2881 | } |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 2882 | |
Josef Bacik | f2b636e | 2008-12-02 06:36:08 -0500 | [diff] [blame] | 2883 | features = btrfs_super_incompat_flags(disk_super) & |
| 2884 | ~BTRFS_FEATURE_INCOMPAT_SUPP; |
| 2885 | if (features) { |
David Sterba | 05135f5 | 2016-05-09 11:32:39 +0200 | [diff] [blame] | 2886 | btrfs_err(fs_info, |
| 2887 | "cannot mount because of unsupported optional features (%llx)", |
| 2888 | features); |
Josef Bacik | f2b636e | 2008-12-02 06:36:08 -0500 | [diff] [blame] | 2889 | err = -EINVAL; |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 2890 | goto fail_alloc; |
Josef Bacik | f2b636e | 2008-12-02 06:36:08 -0500 | [diff] [blame] | 2891 | } |
| 2892 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2893 | features = btrfs_super_incompat_flags(disk_super); |
Li Zefan | a6fa6fa | 2010-10-25 15:12:26 +0800 | [diff] [blame] | 2894 | features |= BTRFS_FEATURE_INCOMPAT_MIXED_BACKREF; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2895 | if (fs_info->compress_type == BTRFS_COMPRESS_LZO) |
Li Zefan | a6fa6fa | 2010-10-25 15:12:26 +0800 | [diff] [blame] | 2896 | features |= BTRFS_FEATURE_INCOMPAT_COMPRESS_LZO; |
Nick Terrell | 5c1aab1 | 2017-08-09 19:39:02 -0700 | [diff] [blame] | 2897 | else if (fs_info->compress_type == BTRFS_COMPRESS_ZSTD) |
| 2898 | features |= BTRFS_FEATURE_INCOMPAT_COMPRESS_ZSTD; |
Chris Mason | 727011e | 2010-08-06 13:21:20 -0400 | [diff] [blame] | 2899 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2900 | if (features & BTRFS_FEATURE_INCOMPAT_SKINNY_METADATA) |
David Sterba | 05135f5 | 2016-05-09 11:32:39 +0200 | [diff] [blame] | 2901 | btrfs_info(fs_info, "has skinny extents"); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2902 | |
Chris Mason | 727011e | 2010-08-06 13:21:20 -0400 | [diff] [blame] | 2903 | /* |
| 2904 | * flag our filesystem as having big metadata blocks if |
| 2905 | * they are bigger than the page size |
| 2906 | */ |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 2907 | if (btrfs_super_nodesize(disk_super) > PAGE_SIZE) { |
Chris Mason | 727011e | 2010-08-06 13:21:20 -0400 | [diff] [blame] | 2908 | if (!(features & BTRFS_FEATURE_INCOMPAT_BIG_METADATA)) |
David Sterba | 05135f5 | 2016-05-09 11:32:39 +0200 | [diff] [blame] | 2909 | btrfs_info(fs_info, |
| 2910 | "flagging fs with big metadata feature"); |
Chris Mason | 727011e | 2010-08-06 13:21:20 -0400 | [diff] [blame] | 2911 | features |= BTRFS_FEATURE_INCOMPAT_BIG_METADATA; |
| 2912 | } |
| 2913 | |
Chris Mason | bc3f116 | 2012-03-29 17:02:47 -0400 | [diff] [blame] | 2914 | nodesize = btrfs_super_nodesize(disk_super); |
Chris Mason | bc3f116 | 2012-03-29 17:02:47 -0400 | [diff] [blame] | 2915 | sectorsize = btrfs_super_sectorsize(disk_super); |
Chandan Rajendra | b7f6705 | 2016-06-23 15:16:44 +0530 | [diff] [blame] | 2916 | stripesize = sectorsize; |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 2917 | fs_info->dirty_metadata_batch = nodesize * (1 + ilog2(nr_cpu_ids)); |
Miao Xie | 963d678 | 2013-01-29 10:10:51 +0000 | [diff] [blame] | 2918 | fs_info->delalloc_batch = sectorsize * 512 * (1 + ilog2(nr_cpu_ids)); |
Chris Mason | bc3f116 | 2012-03-29 17:02:47 -0400 | [diff] [blame] | 2919 | |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 2920 | /* Cache block sizes */ |
| 2921 | fs_info->nodesize = nodesize; |
| 2922 | fs_info->sectorsize = sectorsize; |
| 2923 | fs_info->stripesize = stripesize; |
| 2924 | |
Chris Mason | bc3f116 | 2012-03-29 17:02:47 -0400 | [diff] [blame] | 2925 | /* |
| 2926 | * mixed block groups end up with duplicate but slightly offset |
| 2927 | * extent buffers for the same range. It leads to corruptions |
| 2928 | */ |
| 2929 | if ((features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS) && |
David Sterba | 707e8a0 | 2014-06-04 19:22:26 +0200 | [diff] [blame] | 2930 | (sectorsize != nodesize)) { |
David Sterba | 05135f5 | 2016-05-09 11:32:39 +0200 | [diff] [blame] | 2931 | btrfs_err(fs_info, |
| 2932 | "unequal nodesize/sectorsize (%u != %u) are not allowed for mixed block groups", |
| 2933 | nodesize, sectorsize); |
Chris Mason | bc3f116 | 2012-03-29 17:02:47 -0400 | [diff] [blame] | 2934 | goto fail_alloc; |
| 2935 | } |
| 2936 | |
Miao Xie | ceda086 | 2013-04-11 10:30:16 +0000 | [diff] [blame] | 2937 | /* |
| 2938 | * Needn't use the lock because there is no other task which will |
| 2939 | * update the flag. |
| 2940 | */ |
Li Zefan | a6fa6fa | 2010-10-25 15:12:26 +0800 | [diff] [blame] | 2941 | btrfs_set_super_incompat_flags(disk_super, features); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2942 | |
Josef Bacik | f2b636e | 2008-12-02 06:36:08 -0500 | [diff] [blame] | 2943 | features = btrfs_super_compat_ro_flags(disk_super) & |
| 2944 | ~BTRFS_FEATURE_COMPAT_RO_SUPP; |
David Howells | bc98a42 | 2017-07-17 08:45:34 +0100 | [diff] [blame] | 2945 | if (!sb_rdonly(sb) && features) { |
David Sterba | 05135f5 | 2016-05-09 11:32:39 +0200 | [diff] [blame] | 2946 | btrfs_err(fs_info, |
| 2947 | "cannot mount read-write because of unsupported optional features (%llx)", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 2948 | features); |
Josef Bacik | f2b636e | 2008-12-02 06:36:08 -0500 | [diff] [blame] | 2949 | err = -EINVAL; |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 2950 | goto fail_alloc; |
Josef Bacik | f2b636e | 2008-12-02 06:36:08 -0500 | [diff] [blame] | 2951 | } |
Chris Mason | 61d92c3 | 2009-10-02 19:11:56 -0400 | [diff] [blame] | 2952 | |
Eric Sandeen | 2a45819 | 2015-02-16 16:29:26 +0100 | [diff] [blame] | 2953 | ret = btrfs_init_workqueues(fs_info, fs_devices); |
| 2954 | if (ret) { |
| 2955 | err = ret; |
Josef Bacik | 0dc3b84 | 2011-11-18 14:37:27 -0500 | [diff] [blame] | 2956 | goto fail_sb_buffer; |
| 2957 | } |
Chris Mason | 4543df7 | 2008-06-11 21:47:56 -0400 | [diff] [blame] | 2958 | |
Jan Kara | 9e11cee | 2017-04-12 12:24:32 +0200 | [diff] [blame] | 2959 | sb->s_bdi->congested_fn = btrfs_congested_fn; |
| 2960 | sb->s_bdi->congested_data = fs_info; |
| 2961 | sb->s_bdi->capabilities |= BDI_CAP_CGROUP_WRITEBACK; |
Nikolay Borisov | b542023 | 2019-03-11 23:28:13 -0700 | [diff] [blame] | 2962 | sb->s_bdi->ra_pages = VM_READAHEAD_PAGES; |
Jan Kara | 9e11cee | 2017-04-12 12:24:32 +0200 | [diff] [blame] | 2963 | sb->s_bdi->ra_pages *= btrfs_super_num_devices(disk_super); |
| 2964 | sb->s_bdi->ra_pages = max(sb->s_bdi->ra_pages, SZ_4M / PAGE_SIZE); |
Chris Mason | 4575c9c | 2008-04-18 16:13:31 -0400 | [diff] [blame] | 2965 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 2966 | sb->s_blocksize = sectorsize; |
| 2967 | sb->s_blocksize_bits = blksize_bits(sectorsize); |
Nikolay Borisov | de37aa5 | 2018-10-30 16:43:24 +0200 | [diff] [blame] | 2968 | memcpy(&sb->s_uuid, fs_info->fs_devices->fsid, BTRFS_FSID_SIZE); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 2969 | |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2970 | mutex_lock(&fs_info->chunk_mutex); |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 2971 | ret = btrfs_read_sys_array(fs_info); |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2972 | mutex_unlock(&fs_info->chunk_mutex); |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 2973 | if (ret) { |
David Sterba | 05135f5 | 2016-05-09 11:32:39 +0200 | [diff] [blame] | 2974 | btrfs_err(fs_info, "failed to read the system array: %d", ret); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2975 | goto fail_sb_buffer; |
Chris Mason | 84eed90 | 2008-04-25 09:04:37 -0400 | [diff] [blame] | 2976 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2977 | |
Yan Zheng | 84234f3 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 2978 | generation = btrfs_super_chunk_root_generation(disk_super); |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 2979 | level = btrfs_super_chunk_root_level(disk_super); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2980 | |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 2981 | __setup_root(chunk_root, fs_info, BTRFS_CHUNK_TREE_OBJECTID); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2982 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2983 | chunk_root->node = read_tree_block(fs_info, |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2984 | btrfs_super_chunk_root(disk_super), |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 2985 | generation, level, NULL); |
Liu Bo | 64c043d | 2015-05-25 17:30:15 +0800 | [diff] [blame] | 2986 | if (IS_ERR(chunk_root->node) || |
| 2987 | !extent_buffer_uptodate(chunk_root->node)) { |
David Sterba | 05135f5 | 2016-05-09 11:32:39 +0200 | [diff] [blame] | 2988 | btrfs_err(fs_info, "failed to read chunk root"); |
chandan | e5fffba | 2015-10-05 22:14:25 +0530 | [diff] [blame] | 2989 | if (!IS_ERR(chunk_root->node)) |
| 2990 | free_extent_buffer(chunk_root->node); |
Zhao Lei | 95ab1f6 | 2015-07-15 21:02:09 +0800 | [diff] [blame] | 2991 | chunk_root->node = NULL; |
Chris Mason | af31f5e | 2011-11-03 15:17:42 -0400 | [diff] [blame] | 2992 | goto fail_tree_roots; |
David Woodhouse | 8312194 | 2009-07-22 16:52:13 -0400 | [diff] [blame] | 2993 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2994 | btrfs_set_root_node(&chunk_root->root_item, chunk_root->node); |
| 2995 | chunk_root->commit_root = btrfs_root_node(chunk_root); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2996 | |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 2997 | read_extent_buffer(chunk_root->node, fs_info->chunk_tree_uuid, |
Geert Uytterhoeven | b308bc2 | 2013-08-20 13:20:15 +0200 | [diff] [blame] | 2998 | btrfs_header_chunk_tree_uuid(chunk_root->node), BTRFS_UUID_SIZE); |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 2999 | |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 3000 | ret = btrfs_read_chunk_tree(fs_info); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3001 | if (ret) { |
David Sterba | 05135f5 | 2016-05-09 11:32:39 +0200 | [diff] [blame] | 3002 | btrfs_err(fs_info, "failed to read chunk tree: %d", ret); |
Chris Mason | af31f5e | 2011-11-03 15:17:42 -0400 | [diff] [blame] | 3003 | goto fail_tree_roots; |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3004 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 3005 | |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 3006 | /* |
Anand Jain | 9b99b11 | 2018-02-27 12:41:59 +0800 | [diff] [blame] | 3007 | * Keep the devid that is marked to be the target device for the |
| 3008 | * device replace procedure |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 3009 | */ |
Anand Jain | 9b99b11 | 2018-02-27 12:41:59 +0800 | [diff] [blame] | 3010 | btrfs_free_extra_devids(fs_devices, 0); |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 3011 | |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 3012 | if (!fs_devices->latest_bdev) { |
David Sterba | 05135f5 | 2016-05-09 11:32:39 +0200 | [diff] [blame] | 3013 | btrfs_err(fs_info, "failed to read devices"); |
Chris Mason | a6b0d5c | 2012-02-20 20:53:43 -0500 | [diff] [blame] | 3014 | goto fail_tree_roots; |
| 3015 | } |
| 3016 | |
Chris Mason | af31f5e | 2011-11-03 15:17:42 -0400 | [diff] [blame] | 3017 | retry_root_backup: |
Yan Zheng | 84234f3 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3018 | generation = btrfs_super_generation(disk_super); |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 3019 | level = btrfs_super_root_level(disk_super); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 3020 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3021 | tree_root->node = read_tree_block(fs_info, |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3022 | btrfs_super_root(disk_super), |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 3023 | generation, level, NULL); |
Liu Bo | 64c043d | 2015-05-25 17:30:15 +0800 | [diff] [blame] | 3024 | if (IS_ERR(tree_root->node) || |
| 3025 | !extent_buffer_uptodate(tree_root->node)) { |
David Sterba | 05135f5 | 2016-05-09 11:32:39 +0200 | [diff] [blame] | 3026 | btrfs_warn(fs_info, "failed to read tree root"); |
chandan | e5fffba | 2015-10-05 22:14:25 +0530 | [diff] [blame] | 3027 | if (!IS_ERR(tree_root->node)) |
| 3028 | free_extent_buffer(tree_root->node); |
Zhao Lei | 95ab1f6 | 2015-07-15 21:02:09 +0800 | [diff] [blame] | 3029 | tree_root->node = NULL; |
Chris Mason | af31f5e | 2011-11-03 15:17:42 -0400 | [diff] [blame] | 3030 | goto recovery_tree_root; |
David Woodhouse | 8312194 | 2009-07-22 16:52:13 -0400 | [diff] [blame] | 3031 | } |
Chris Mason | af31f5e | 2011-11-03 15:17:42 -0400 | [diff] [blame] | 3032 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3033 | btrfs_set_root_node(&tree_root->root_item, tree_root->node); |
| 3034 | tree_root->commit_root = btrfs_root_node(tree_root); |
Stefan Behrens | 69e9c6c | 2013-09-05 16:58:43 +0200 | [diff] [blame] | 3035 | btrfs_set_root_refs(&tree_root->root_item, 1); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3036 | |
Chandan Rajendra | f32e48e | 2016-01-07 18:56:59 +0530 | [diff] [blame] | 3037 | mutex_lock(&tree_root->objectid_mutex); |
| 3038 | ret = btrfs_find_highest_objectid(tree_root, |
| 3039 | &tree_root->highest_objectid); |
| 3040 | if (ret) { |
| 3041 | mutex_unlock(&tree_root->objectid_mutex); |
| 3042 | goto recovery_tree_root; |
| 3043 | } |
| 3044 | |
| 3045 | ASSERT(tree_root->highest_objectid <= BTRFS_LAST_FREE_OBJECTID); |
| 3046 | |
| 3047 | mutex_unlock(&tree_root->objectid_mutex); |
| 3048 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3049 | ret = btrfs_read_roots(fs_info); |
Eric Sandeen | 4bbcaa6 | 2014-08-01 18:12:45 -0500 | [diff] [blame] | 3050 | if (ret) |
Chris Mason | af31f5e | 2011-11-03 15:17:42 -0400 | [diff] [blame] | 3051 | goto recovery_tree_root; |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 3052 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 3053 | fs_info->generation = generation; |
| 3054 | fs_info->last_trans_committed = generation; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 3055 | |
Qu Wenruo | cf90d88 | 2018-08-01 10:37:19 +0800 | [diff] [blame] | 3056 | ret = btrfs_verify_dev_extents(fs_info); |
| 3057 | if (ret) { |
| 3058 | btrfs_err(fs_info, |
| 3059 | "failed to verify dev extents against chunks: %d", |
| 3060 | ret); |
| 3061 | goto fail_block_groups; |
| 3062 | } |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 3063 | ret = btrfs_recover_balance(fs_info); |
| 3064 | if (ret) { |
David Sterba | 05135f5 | 2016-05-09 11:32:39 +0200 | [diff] [blame] | 3065 | btrfs_err(fs_info, "failed to recover balance: %d", ret); |
Ilya Dryomov | 68310a5 | 2012-06-22 12:24:12 -0600 | [diff] [blame] | 3066 | goto fail_block_groups; |
| 3067 | } |
| 3068 | |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 3069 | ret = btrfs_init_dev_stats(fs_info); |
| 3070 | if (ret) { |
David Sterba | 05135f5 | 2016-05-09 11:32:39 +0200 | [diff] [blame] | 3071 | btrfs_err(fs_info, "failed to init dev_stats: %d", ret); |
Stefan Behrens | 733f4fb | 2012-05-25 16:06:10 +0200 | [diff] [blame] | 3072 | goto fail_block_groups; |
| 3073 | } |
| 3074 | |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 3075 | ret = btrfs_init_dev_replace(fs_info); |
| 3076 | if (ret) { |
David Sterba | 05135f5 | 2016-05-09 11:32:39 +0200 | [diff] [blame] | 3077 | btrfs_err(fs_info, "failed to init dev_replace: %d", ret); |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 3078 | goto fail_block_groups; |
| 3079 | } |
| 3080 | |
Anand Jain | 9b99b11 | 2018-02-27 12:41:59 +0800 | [diff] [blame] | 3081 | btrfs_free_extra_devids(fs_devices, 1); |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 3082 | |
Anand Jain | b7c35e81 | 2015-03-10 06:38:38 +0800 | [diff] [blame] | 3083 | ret = btrfs_sysfs_add_fsid(fs_devices, NULL); |
| 3084 | if (ret) { |
David Sterba | 05135f5 | 2016-05-09 11:32:39 +0200 | [diff] [blame] | 3085 | btrfs_err(fs_info, "failed to init sysfs fsid interface: %d", |
| 3086 | ret); |
Anand Jain | b7c35e81 | 2015-03-10 06:38:38 +0800 | [diff] [blame] | 3087 | goto fail_block_groups; |
| 3088 | } |
| 3089 | |
| 3090 | ret = btrfs_sysfs_add_device(fs_devices); |
| 3091 | if (ret) { |
David Sterba | 05135f5 | 2016-05-09 11:32:39 +0200 | [diff] [blame] | 3092 | btrfs_err(fs_info, "failed to init sysfs device interface: %d", |
| 3093 | ret); |
Anand Jain | b7c35e81 | 2015-03-10 06:38:38 +0800 | [diff] [blame] | 3094 | goto fail_fsdev_sysfs; |
| 3095 | } |
| 3096 | |
Anand Jain | 96f3136 | 2015-08-14 18:32:46 +0800 | [diff] [blame] | 3097 | ret = btrfs_sysfs_add_mounted(fs_info); |
Jeff Mahoney | 5ac1d20 | 2013-11-01 13:06:58 -0400 | [diff] [blame] | 3098 | if (ret) { |
David Sterba | 05135f5 | 2016-05-09 11:32:39 +0200 | [diff] [blame] | 3099 | btrfs_err(fs_info, "failed to init sysfs interface: %d", ret); |
Anand Jain | b7c35e81 | 2015-03-10 06:38:38 +0800 | [diff] [blame] | 3100 | goto fail_fsdev_sysfs; |
Jeff Mahoney | 5ac1d20 | 2013-11-01 13:06:58 -0400 | [diff] [blame] | 3101 | } |
| 3102 | |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 3103 | ret = btrfs_init_space_info(fs_info); |
| 3104 | if (ret) { |
David Sterba | 05135f5 | 2016-05-09 11:32:39 +0200 | [diff] [blame] | 3105 | btrfs_err(fs_info, "failed to initialize space info: %d", ret); |
Anand Jain | 2365dd3 | 2014-01-22 11:15:51 +0800 | [diff] [blame] | 3106 | goto fail_sysfs; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 3107 | } |
| 3108 | |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 3109 | ret = btrfs_read_block_groups(fs_info); |
Josef Bacik | 1b1d1f6 | 2010-03-19 20:49:55 +0000 | [diff] [blame] | 3110 | if (ret) { |
David Sterba | 05135f5 | 2016-05-09 11:32:39 +0200 | [diff] [blame] | 3111 | btrfs_err(fs_info, "failed to read block groups: %d", ret); |
Anand Jain | 2365dd3 | 2014-01-22 11:15:51 +0800 | [diff] [blame] | 3112 | goto fail_sysfs; |
Josef Bacik | 1b1d1f6 | 2010-03-19 20:49:55 +0000 | [diff] [blame] | 3113 | } |
Qu Wenruo | 4330e18 | 2017-03-09 09:34:37 +0800 | [diff] [blame] | 3114 | |
Anand Jain | 6528b99 | 2017-12-18 17:08:59 +0800 | [diff] [blame] | 3115 | if (!sb_rdonly(sb) && !btrfs_check_rw_degradable(fs_info, NULL)) { |
David Sterba | 05135f5 | 2016-05-09 11:32:39 +0200 | [diff] [blame] | 3116 | btrfs_warn(fs_info, |
Andrea Gelmini | 52042d8 | 2018-11-28 12:05:13 +0100 | [diff] [blame] | 3117 | "writable mount is not allowed due to too many missing devices"); |
Anand Jain | 2365dd3 | 2014-01-22 11:15:51 +0800 | [diff] [blame] | 3118 | goto fail_sysfs; |
Stefan Behrens | 292fd7f | 2012-10-30 17:16:16 +0000 | [diff] [blame] | 3119 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3120 | |
Chris Mason | a74a4b9 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 3121 | fs_info->cleaner_kthread = kthread_run(cleaner_kthread, tree_root, |
| 3122 | "btrfs-cleaner"); |
Qinghuang Feng | 57506d5 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 3123 | if (IS_ERR(fs_info->cleaner_kthread)) |
Anand Jain | 2365dd3 | 2014-01-22 11:15:51 +0800 | [diff] [blame] | 3124 | goto fail_sysfs; |
Chris Mason | a74a4b9 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 3125 | |
| 3126 | fs_info->transaction_kthread = kthread_run(transaction_kthread, |
| 3127 | tree_root, |
| 3128 | "btrfs-transaction"); |
Qinghuang Feng | 57506d5 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 3129 | if (IS_ERR(fs_info->transaction_kthread)) |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 3130 | goto fail_cleaner; |
Chris Mason | a74a4b9 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 3131 | |
Hans van Kranenburg | 583b723 | 2017-07-28 08:31:28 +0200 | [diff] [blame] | 3132 | if (!btrfs_test_opt(fs_info, NOSSD) && |
Chris Mason | c289811 | 2009-06-10 09:51:32 -0400 | [diff] [blame] | 3133 | !fs_info->fs_devices->rotating) { |
Hans van Kranenburg | 583b723 | 2017-07-28 08:31:28 +0200 | [diff] [blame] | 3134 | btrfs_set_and_info(fs_info, SSD, "enabling ssd optimizations"); |
Chris Mason | c289811 | 2009-06-10 09:51:32 -0400 | [diff] [blame] | 3135 | } |
| 3136 | |
David Sterba | 572d9ab | 2014-02-05 15:26:17 +0100 | [diff] [blame] | 3137 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 3138 | * Mount does not set all options immediately, we can do it now and do |
David Sterba | 572d9ab | 2014-02-05 15:26:17 +0100 | [diff] [blame] | 3139 | * not have to wait for transaction commit |
| 3140 | */ |
| 3141 | btrfs_apply_pending_changes(fs_info); |
Qu Wenruo | 3818aea | 2014-01-13 13:36:06 +0800 | [diff] [blame] | 3142 | |
Stefan Behrens | 21adbd5 | 2011-11-09 13:44:05 +0100 | [diff] [blame] | 3143 | #ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3144 | if (btrfs_test_opt(fs_info, CHECK_INTEGRITY)) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3145 | ret = btrfsic_mount(fs_info, fs_devices, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3146 | btrfs_test_opt(fs_info, |
Stefan Behrens | 21adbd5 | 2011-11-09 13:44:05 +0100 | [diff] [blame] | 3147 | CHECK_INTEGRITY_INCLUDING_EXTENT_DATA) ? |
| 3148 | 1 : 0, |
| 3149 | fs_info->check_integrity_print_mask); |
| 3150 | if (ret) |
David Sterba | 05135f5 | 2016-05-09 11:32:39 +0200 | [diff] [blame] | 3151 | btrfs_warn(fs_info, |
| 3152 | "failed to initialize integrity check module: %d", |
| 3153 | ret); |
Stefan Behrens | 21adbd5 | 2011-11-09 13:44:05 +0100 | [diff] [blame] | 3154 | } |
| 3155 | #endif |
Arne Jansen | bcef60f | 2011-09-13 15:23:30 +0200 | [diff] [blame] | 3156 | ret = btrfs_read_qgroup_config(fs_info); |
| 3157 | if (ret) |
| 3158 | goto fail_trans_kthread; |
Stefan Behrens | 21adbd5 | 2011-11-09 13:44:05 +0100 | [diff] [blame] | 3159 | |
Josef Bacik | fd708b8 | 2017-09-29 15:43:50 -0400 | [diff] [blame] | 3160 | if (btrfs_build_ref_tree(fs_info)) |
| 3161 | btrfs_err(fs_info, "couldn't build ref tree"); |
| 3162 | |
Qu Wenruo | 96da091 | 2016-01-19 10:23:03 +0800 | [diff] [blame] | 3163 | /* do not make disk changes in broken FS or nologreplay is given */ |
| 3164 | if (btrfs_super_log_root(disk_super) != 0 && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3165 | !btrfs_test_opt(fs_info, NOLOGREPLAY)) { |
Eric Sandeen | 63443bf | 2014-08-01 18:12:46 -0500 | [diff] [blame] | 3166 | ret = btrfs_replay_log(fs_info, fs_devices); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3167 | if (ret) { |
Eric Sandeen | 63443bf | 2014-08-01 18:12:46 -0500 | [diff] [blame] | 3168 | err = ret; |
Wang Shilong | 28c16cb | 2014-04-23 19:33:35 +0800 | [diff] [blame] | 3169 | goto fail_qgroup; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3170 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3171 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 3172 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3173 | ret = btrfs_find_orphan_roots(fs_info); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3174 | if (ret) |
Wang Shilong | 28c16cb | 2014-04-23 19:33:35 +0800 | [diff] [blame] | 3175 | goto fail_qgroup; |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 3176 | |
David Howells | bc98a42 | 2017-07-17 08:45:34 +0100 | [diff] [blame] | 3177 | if (!sb_rdonly(sb)) { |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 3178 | ret = btrfs_cleanup_fs_roots(fs_info); |
Ilya Dryomov | 44c44af | 2012-06-22 12:14:13 -0600 | [diff] [blame] | 3179 | if (ret) |
Wang Shilong | 28c16cb | 2014-04-23 19:33:35 +0800 | [diff] [blame] | 3180 | goto fail_qgroup; |
Zygo Blaxell | 90c711a | 2016-06-12 23:39:58 -0400 | [diff] [blame] | 3181 | |
| 3182 | mutex_lock(&fs_info->cleaner_mutex); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3183 | ret = btrfs_recover_relocation(tree_root); |
Zygo Blaxell | 90c711a | 2016-06-12 23:39:58 -0400 | [diff] [blame] | 3184 | mutex_unlock(&fs_info->cleaner_mutex); |
Miao Xie | d7ce584 | 2010-02-02 08:46:44 +0000 | [diff] [blame] | 3185 | if (ret < 0) { |
David Sterba | 05135f5 | 2016-05-09 11:32:39 +0200 | [diff] [blame] | 3186 | btrfs_warn(fs_info, "failed to recover relocation: %d", |
| 3187 | ret); |
Miao Xie | d7ce584 | 2010-02-02 08:46:44 +0000 | [diff] [blame] | 3188 | err = -EINVAL; |
Arne Jansen | bcef60f | 2011-09-13 15:23:30 +0200 | [diff] [blame] | 3189 | goto fail_qgroup; |
Miao Xie | d7ce584 | 2010-02-02 08:46:44 +0000 | [diff] [blame] | 3190 | } |
Chris Mason | 7c2ca46 | 2008-11-19 15:13:35 -0500 | [diff] [blame] | 3191 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 3192 | |
Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 3193 | location.objectid = BTRFS_FS_TREE_OBJECTID; |
| 3194 | location.type = BTRFS_ROOT_ITEM_KEY; |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 3195 | location.offset = 0; |
Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 3196 | |
Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 3197 | fs_info->fs_root = btrfs_read_fs_root_no_name(fs_info, &location); |
Dan Carpenter | 3140c9a | 2010-05-29 09:44:10 +0000 | [diff] [blame] | 3198 | if (IS_ERR(fs_info->fs_root)) { |
| 3199 | err = PTR_ERR(fs_info->fs_root); |
Liu Bo | f50f435 | 2018-03-29 06:11:45 +0800 | [diff] [blame] | 3200 | btrfs_warn(fs_info, "failed to read fs tree: %d", err); |
Arne Jansen | bcef60f | 2011-09-13 15:23:30 +0200 | [diff] [blame] | 3201 | goto fail_qgroup; |
Dan Carpenter | 3140c9a | 2010-05-29 09:44:10 +0000 | [diff] [blame] | 3202 | } |
Chris Mason | c289811 | 2009-06-10 09:51:32 -0400 | [diff] [blame] | 3203 | |
David Howells | bc98a42 | 2017-07-17 08:45:34 +0100 | [diff] [blame] | 3204 | if (sb_rdonly(sb)) |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3205 | return 0; |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3206 | |
Omar Sandoval | f8d468a | 2016-09-22 17:24:21 -0700 | [diff] [blame] | 3207 | if (btrfs_test_opt(fs_info, CLEAR_CACHE) && |
| 3208 | btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE)) { |
Omar Sandoval | 6675df3 | 2016-09-22 17:24:22 -0700 | [diff] [blame] | 3209 | clear_free_space_tree = 1; |
| 3210 | } else if (btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE) && |
| 3211 | !btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE_VALID)) { |
| 3212 | btrfs_warn(fs_info, "free space tree is invalid"); |
| 3213 | clear_free_space_tree = 1; |
| 3214 | } |
| 3215 | |
| 3216 | if (clear_free_space_tree) { |
Omar Sandoval | f8d468a | 2016-09-22 17:24:21 -0700 | [diff] [blame] | 3217 | btrfs_info(fs_info, "clearing free space tree"); |
| 3218 | ret = btrfs_clear_free_space_tree(fs_info); |
| 3219 | if (ret) { |
| 3220 | btrfs_warn(fs_info, |
| 3221 | "failed to clear free space tree: %d", ret); |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3222 | close_ctree(fs_info); |
Omar Sandoval | f8d468a | 2016-09-22 17:24:21 -0700 | [diff] [blame] | 3223 | return ret; |
| 3224 | } |
| 3225 | } |
| 3226 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3227 | if (btrfs_test_opt(fs_info, FREE_SPACE_TREE) && |
Chris Mason | 511711a | 2015-12-30 07:52:35 -0800 | [diff] [blame] | 3228 | !btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE)) { |
David Sterba | 05135f5 | 2016-05-09 11:32:39 +0200 | [diff] [blame] | 3229 | btrfs_info(fs_info, "creating free space tree"); |
Chris Mason | 511711a | 2015-12-30 07:52:35 -0800 | [diff] [blame] | 3230 | ret = btrfs_create_free_space_tree(fs_info); |
| 3231 | if (ret) { |
David Sterba | 05135f5 | 2016-05-09 11:32:39 +0200 | [diff] [blame] | 3232 | btrfs_warn(fs_info, |
| 3233 | "failed to create free space tree: %d", ret); |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3234 | close_ctree(fs_info); |
Chris Mason | 511711a | 2015-12-30 07:52:35 -0800 | [diff] [blame] | 3235 | return ret; |
| 3236 | } |
| 3237 | } |
| 3238 | |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3239 | down_read(&fs_info->cleanup_work_sem); |
| 3240 | if ((ret = btrfs_orphan_cleanup(fs_info->fs_root)) || |
| 3241 | (ret = btrfs_orphan_cleanup(fs_info->tree_root))) { |
Josef Bacik | e3acc2a | 2010-01-26 14:30:53 +0000 | [diff] [blame] | 3242 | up_read(&fs_info->cleanup_work_sem); |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3243 | close_ctree(fs_info); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3244 | return ret; |
| 3245 | } |
| 3246 | up_read(&fs_info->cleanup_work_sem); |
Ilya Dryomov | 5964101 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 3247 | |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3248 | ret = btrfs_resume_balance_async(fs_info); |
| 3249 | if (ret) { |
David Sterba | 05135f5 | 2016-05-09 11:32:39 +0200 | [diff] [blame] | 3250 | btrfs_warn(fs_info, "failed to resume balance: %d", ret); |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3251 | close_ctree(fs_info); |
Ilya Dryomov | 2b6ba62 | 2012-06-22 12:24:13 -0600 | [diff] [blame] | 3252 | return ret; |
Josef Bacik | e3acc2a | 2010-01-26 14:30:53 +0000 | [diff] [blame] | 3253 | } |
| 3254 | |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 3255 | ret = btrfs_resume_dev_replace_async(fs_info); |
| 3256 | if (ret) { |
David Sterba | 05135f5 | 2016-05-09 11:32:39 +0200 | [diff] [blame] | 3257 | btrfs_warn(fs_info, "failed to resume device replace: %d", ret); |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3258 | close_ctree(fs_info); |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 3259 | return ret; |
| 3260 | } |
| 3261 | |
Jan Schmidt | b382a32 | 2013-05-28 15:47:24 +0000 | [diff] [blame] | 3262 | btrfs_qgroup_rescan_resume(fs_info); |
| 3263 | |
Eric Sandeen | 4bbcaa6 | 2014-08-01 18:12:45 -0500 | [diff] [blame] | 3264 | if (!fs_info->uuid_root) { |
David Sterba | 05135f5 | 2016-05-09 11:32:39 +0200 | [diff] [blame] | 3265 | btrfs_info(fs_info, "creating UUID tree"); |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 3266 | ret = btrfs_create_uuid_tree(fs_info); |
| 3267 | if (ret) { |
David Sterba | 05135f5 | 2016-05-09 11:32:39 +0200 | [diff] [blame] | 3268 | btrfs_warn(fs_info, |
| 3269 | "failed to create the UUID tree: %d", ret); |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3270 | close_ctree(fs_info); |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 3271 | return ret; |
| 3272 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3273 | } else if (btrfs_test_opt(fs_info, RESCAN_UUID_TREE) || |
Eric Sandeen | 4bbcaa6 | 2014-08-01 18:12:45 -0500 | [diff] [blame] | 3274 | fs_info->generation != |
| 3275 | btrfs_super_uuid_tree_generation(disk_super)) { |
David Sterba | 05135f5 | 2016-05-09 11:32:39 +0200 | [diff] [blame] | 3276 | btrfs_info(fs_info, "checking UUID tree"); |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 3277 | ret = btrfs_check_uuid_tree(fs_info); |
| 3278 | if (ret) { |
David Sterba | 05135f5 | 2016-05-09 11:32:39 +0200 | [diff] [blame] | 3279 | btrfs_warn(fs_info, |
| 3280 | "failed to check the UUID tree: %d", ret); |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3281 | close_ctree(fs_info); |
Stefan Behrens | 70f8017 | 2013-08-15 17:11:23 +0200 | [diff] [blame] | 3282 | return ret; |
| 3283 | } |
| 3284 | } else { |
Josef Bacik | afcdd12 | 2016-09-02 15:40:02 -0400 | [diff] [blame] | 3285 | set_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags); |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 3286 | } |
Josef Bacik | afcdd12 | 2016-09-02 15:40:02 -0400 | [diff] [blame] | 3287 | set_bit(BTRFS_FS_OPEN, &fs_info->flags); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 3288 | |
Qu Wenruo | 8dcddfa | 2016-01-19 10:23:02 +0800 | [diff] [blame] | 3289 | /* |
| 3290 | * backuproot only affect mount behavior, and if open_ctree succeeded, |
| 3291 | * no need to keep the flag |
| 3292 | */ |
| 3293 | btrfs_clear_opt(fs_info->mount_opt, USEBACKUPROOT); |
| 3294 | |
Al Viro | ad2b2c8 | 2011-11-17 01:10:02 -0500 | [diff] [blame] | 3295 | return 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3296 | |
Arne Jansen | bcef60f | 2011-09-13 15:23:30 +0200 | [diff] [blame] | 3297 | fail_qgroup: |
| 3298 | btrfs_free_qgroup_config(fs_info); |
Chris Mason | 7c2ca46 | 2008-11-19 15:13:35 -0500 | [diff] [blame] | 3299 | fail_trans_kthread: |
| 3300 | kthread_stop(fs_info->transaction_kthread); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3301 | btrfs_cleanup_transaction(fs_info); |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 3302 | btrfs_free_fs_roots(fs_info); |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 3303 | fail_cleaner: |
Chris Mason | a74a4b9 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 3304 | kthread_stop(fs_info->cleaner_kthread); |
Chris Mason | 7c2ca46 | 2008-11-19 15:13:35 -0500 | [diff] [blame] | 3305 | |
| 3306 | /* |
| 3307 | * make sure we're done with the btree inode before we stop our |
| 3308 | * kthreads |
| 3309 | */ |
| 3310 | filemap_write_and_wait(fs_info->btree_inode->i_mapping); |
Chris Mason | 7c2ca46 | 2008-11-19 15:13:35 -0500 | [diff] [blame] | 3311 | |
Anand Jain | 2365dd3 | 2014-01-22 11:15:51 +0800 | [diff] [blame] | 3312 | fail_sysfs: |
Anand Jain | 6618a59 | 2015-08-14 18:32:47 +0800 | [diff] [blame] | 3313 | btrfs_sysfs_remove_mounted(fs_info); |
Anand Jain | 2365dd3 | 2014-01-22 11:15:51 +0800 | [diff] [blame] | 3314 | |
Anand Jain | b7c35e81 | 2015-03-10 06:38:38 +0800 | [diff] [blame] | 3315 | fail_fsdev_sysfs: |
| 3316 | btrfs_sysfs_remove_fsid(fs_info->fs_devices); |
| 3317 | |
Josef Bacik | 1b1d1f6 | 2010-03-19 20:49:55 +0000 | [diff] [blame] | 3318 | fail_block_groups: |
Josef Bacik | 54067ae | 2013-04-25 13:44:38 -0400 | [diff] [blame] | 3319 | btrfs_put_block_group_cache(fs_info); |
Chris Mason | af31f5e | 2011-11-03 15:17:42 -0400 | [diff] [blame] | 3320 | |
| 3321 | fail_tree_roots: |
| 3322 | free_root_pointers(fs_info, 1); |
Miao Xie | 2b8195b | 2013-02-07 06:01:35 +0000 | [diff] [blame] | 3323 | invalidate_inode_pages2(fs_info->btree_inode->i_mapping); |
Chris Mason | af31f5e | 2011-11-03 15:17:42 -0400 | [diff] [blame] | 3324 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3325 | fail_sb_buffer: |
Liu Bo | 7abadb6 | 2013-03-17 02:10:31 +0000 | [diff] [blame] | 3326 | btrfs_stop_all_workers(fs_info); |
Filipe Manana | 5cdd7db | 2017-02-01 22:39:50 +0000 | [diff] [blame] | 3327 | btrfs_free_block_groups(fs_info); |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 3328 | fail_alloc: |
Chris Mason | 4543df7 | 2008-06-11 21:47:56 -0400 | [diff] [blame] | 3329 | fail_iput: |
Ilya Dryomov | 586e46e | 2011-11-09 13:26:37 +0200 | [diff] [blame] | 3330 | btrfs_mapping_tree_free(&fs_info->mapping_tree); |
| 3331 | |
Chris Mason | 4543df7 | 2008-06-11 21:47:56 -0400 | [diff] [blame] | 3332 | iput(fs_info->btree_inode); |
Miao Xie | c404e0d | 2014-01-30 16:46:55 +0800 | [diff] [blame] | 3333 | fail_bio_counter: |
David Sterba | 7f8d236 | 2018-04-05 01:04:49 +0200 | [diff] [blame] | 3334 | percpu_counter_destroy(&fs_info->dev_replace.bio_counter); |
Miao Xie | 963d678 | 2013-01-29 10:10:51 +0000 | [diff] [blame] | 3335 | fail_delalloc_bytes: |
| 3336 | percpu_counter_destroy(&fs_info->delalloc_bytes); |
Miao Xie | e2d8452 | 2013-01-29 10:09:20 +0000 | [diff] [blame] | 3337 | fail_dirty_metadata_bytes: |
| 3338 | percpu_counter_destroy(&fs_info->dirty_metadata_bytes); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 3339 | fail_srcu: |
| 3340 | cleanup_srcu_struct(&fs_info->subvol_srcu); |
Qinghuang Feng | 7e66285 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 3341 | fail: |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 3342 | btrfs_free_stripe_hash_table(fs_info); |
Ilya Dryomov | 586e46e | 2011-11-09 13:26:37 +0200 | [diff] [blame] | 3343 | btrfs_close_devices(fs_info->fs_devices); |
Al Viro | ad2b2c8 | 2011-11-17 01:10:02 -0500 | [diff] [blame] | 3344 | return err; |
Chris Mason | af31f5e | 2011-11-03 15:17:42 -0400 | [diff] [blame] | 3345 | |
| 3346 | recovery_tree_root: |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3347 | if (!btrfs_test_opt(fs_info, USEBACKUPROOT)) |
Chris Mason | af31f5e | 2011-11-03 15:17:42 -0400 | [diff] [blame] | 3348 | goto fail_tree_roots; |
| 3349 | |
| 3350 | free_root_pointers(fs_info, 0); |
| 3351 | |
| 3352 | /* don't use the log in recovery mode, it won't be valid */ |
| 3353 | btrfs_set_super_log_root(disk_super, 0); |
| 3354 | |
| 3355 | /* we can't trust the free space cache either */ |
| 3356 | btrfs_set_opt(fs_info->mount_opt, CLEAR_CACHE); |
| 3357 | |
| 3358 | ret = next_root_backup(fs_info, fs_info->super_copy, |
| 3359 | &num_backups_tried, &backup_index); |
| 3360 | if (ret == -1) |
| 3361 | goto fail_block_groups; |
| 3362 | goto retry_root_backup; |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 3363 | } |
Masami Hiramatsu | 663faf9 | 2018-01-13 02:55:33 +0900 | [diff] [blame] | 3364 | ALLOW_ERROR_INJECTION(open_ctree, ERRNO); |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 3365 | |
Chris Mason | f298446 | 2008-04-10 16:19:33 -0400 | [diff] [blame] | 3366 | static void btrfs_end_buffer_write_sync(struct buffer_head *bh, int uptodate) |
| 3367 | { |
Chris Mason | f298446 | 2008-04-10 16:19:33 -0400 | [diff] [blame] | 3368 | if (uptodate) { |
| 3369 | set_buffer_uptodate(bh); |
| 3370 | } else { |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 3371 | struct btrfs_device *device = (struct btrfs_device *) |
| 3372 | bh->b_private; |
| 3373 | |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 3374 | btrfs_warn_rl_in_rcu(device->fs_info, |
David Sterba | b14af3b | 2015-10-08 10:43:10 +0200 | [diff] [blame] | 3375 | "lost page write due to IO error on %s", |
Josef Bacik | 606686e | 2012-06-04 14:03:51 -0400 | [diff] [blame] | 3376 | rcu_str_deref(device->name)); |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 3377 | /* note, we don't set_buffer_write_io_error because we have |
Chris Mason | 1259ab7 | 2008-05-12 13:39:03 -0400 | [diff] [blame] | 3378 | * our own ways of dealing with the IO errors |
| 3379 | */ |
Chris Mason | f298446 | 2008-04-10 16:19:33 -0400 | [diff] [blame] | 3380 | clear_buffer_uptodate(bh); |
Stefan Behrens | 442a4f6 | 2012-05-25 16:06:08 +0200 | [diff] [blame] | 3381 | btrfs_dev_stat_inc_and_print(device, BTRFS_DEV_STAT_WRITE_ERRS); |
Chris Mason | f298446 | 2008-04-10 16:19:33 -0400 | [diff] [blame] | 3382 | } |
| 3383 | unlock_buffer(bh); |
| 3384 | put_bh(bh); |
| 3385 | } |
| 3386 | |
Anand Jain | 29c36d7 | 2015-08-14 18:32:58 +0800 | [diff] [blame] | 3387 | int btrfs_read_dev_one_super(struct block_device *bdev, int copy_num, |
| 3388 | struct buffer_head **bh_ret) |
| 3389 | { |
| 3390 | struct buffer_head *bh; |
| 3391 | struct btrfs_super_block *super; |
| 3392 | u64 bytenr; |
| 3393 | |
| 3394 | bytenr = btrfs_sb_offset(copy_num); |
| 3395 | if (bytenr + BTRFS_SUPER_INFO_SIZE >= i_size_read(bdev->bd_inode)) |
| 3396 | return -EINVAL; |
| 3397 | |
David Sterba | 9f6d251 | 2017-06-16 01:48:05 +0200 | [diff] [blame] | 3398 | bh = __bread(bdev, bytenr / BTRFS_BDEV_BLOCKSIZE, BTRFS_SUPER_INFO_SIZE); |
Anand Jain | 29c36d7 | 2015-08-14 18:32:58 +0800 | [diff] [blame] | 3399 | /* |
| 3400 | * If we fail to read from the underlying devices, as of now |
| 3401 | * the best option we have is to mark it EIO. |
| 3402 | */ |
| 3403 | if (!bh) |
| 3404 | return -EIO; |
| 3405 | |
| 3406 | super = (struct btrfs_super_block *)bh->b_data; |
| 3407 | if (btrfs_super_bytenr(super) != bytenr || |
| 3408 | btrfs_super_magic(super) != BTRFS_MAGIC) { |
| 3409 | brelse(bh); |
| 3410 | return -EINVAL; |
| 3411 | } |
| 3412 | |
| 3413 | *bh_ret = bh; |
| 3414 | return 0; |
| 3415 | } |
| 3416 | |
| 3417 | |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 3418 | struct buffer_head *btrfs_read_dev_super(struct block_device *bdev) |
| 3419 | { |
| 3420 | struct buffer_head *bh; |
| 3421 | struct buffer_head *latest = NULL; |
| 3422 | struct btrfs_super_block *super; |
| 3423 | int i; |
| 3424 | u64 transid = 0; |
Anand Jain | 92fc03f | 2015-08-14 18:32:51 +0800 | [diff] [blame] | 3425 | int ret = -EINVAL; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 3426 | |
| 3427 | /* we would like to check all the supers, but that would make |
| 3428 | * a btrfs mount succeed after a mkfs from a different FS. |
| 3429 | * So, we need to add a special mount option to scan for |
| 3430 | * later supers, using BTRFS_SUPER_MIRROR_MAX instead |
| 3431 | */ |
| 3432 | for (i = 0; i < 1; i++) { |
Anand Jain | 29c36d7 | 2015-08-14 18:32:58 +0800 | [diff] [blame] | 3433 | ret = btrfs_read_dev_one_super(bdev, i, &bh); |
| 3434 | if (ret) |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 3435 | continue; |
| 3436 | |
| 3437 | super = (struct btrfs_super_block *)bh->b_data; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 3438 | |
| 3439 | if (!latest || btrfs_super_generation(super) > transid) { |
| 3440 | brelse(latest); |
| 3441 | latest = bh; |
| 3442 | transid = btrfs_super_generation(super); |
| 3443 | } else { |
| 3444 | brelse(bh); |
| 3445 | } |
| 3446 | } |
Anand Jain | 92fc03f | 2015-08-14 18:32:51 +0800 | [diff] [blame] | 3447 | |
| 3448 | if (!latest) |
| 3449 | return ERR_PTR(ret); |
| 3450 | |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 3451 | return latest; |
| 3452 | } |
| 3453 | |
Hisashi Hifumi | 4eedeb7 | 2009-06-10 15:28:55 -0400 | [diff] [blame] | 3454 | /* |
David Sterba | abbb3b8 | 2017-06-16 00:50:33 +0200 | [diff] [blame] | 3455 | * Write superblock @sb to the @device. Do not wait for completion, all the |
| 3456 | * buffer heads we write are pinned. |
Hisashi Hifumi | 4eedeb7 | 2009-06-10 15:28:55 -0400 | [diff] [blame] | 3457 | * |
David Sterba | abbb3b8 | 2017-06-16 00:50:33 +0200 | [diff] [blame] | 3458 | * Write @max_mirrors copies of the superblock, where 0 means default that fit |
| 3459 | * the expected device size at commit time. Note that max_mirrors must be |
| 3460 | * same for write and wait phases. |
Hisashi Hifumi | 4eedeb7 | 2009-06-10 15:28:55 -0400 | [diff] [blame] | 3461 | * |
David Sterba | abbb3b8 | 2017-06-16 00:50:33 +0200 | [diff] [blame] | 3462 | * Return number of errors when buffer head is not found or submission fails. |
Hisashi Hifumi | 4eedeb7 | 2009-06-10 15:28:55 -0400 | [diff] [blame] | 3463 | */ |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 3464 | static int write_dev_supers(struct btrfs_device *device, |
David Sterba | abbb3b8 | 2017-06-16 00:50:33 +0200 | [diff] [blame] | 3465 | struct btrfs_super_block *sb, int max_mirrors) |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 3466 | { |
| 3467 | struct buffer_head *bh; |
| 3468 | int i; |
| 3469 | int ret; |
| 3470 | int errors = 0; |
| 3471 | u32 crc; |
| 3472 | u64 bytenr; |
Omar Sandoval | 1b9e619 | 2017-12-05 22:54:02 -0800 | [diff] [blame] | 3473 | int op_flags; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 3474 | |
| 3475 | if (max_mirrors == 0) |
| 3476 | max_mirrors = BTRFS_SUPER_MIRROR_MAX; |
| 3477 | |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 3478 | for (i = 0; i < max_mirrors; i++) { |
| 3479 | bytenr = btrfs_sb_offset(i); |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 3480 | if (bytenr + BTRFS_SUPER_INFO_SIZE >= |
| 3481 | device->commit_total_bytes) |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 3482 | break; |
| 3483 | |
David Sterba | abbb3b8 | 2017-06-16 00:50:33 +0200 | [diff] [blame] | 3484 | btrfs_set_super_bytenr(sb, bytenr); |
Hisashi Hifumi | 4eedeb7 | 2009-06-10 15:28:55 -0400 | [diff] [blame] | 3485 | |
David Sterba | abbb3b8 | 2017-06-16 00:50:33 +0200 | [diff] [blame] | 3486 | crc = ~(u32)0; |
| 3487 | crc = btrfs_csum_data((const char *)sb + BTRFS_CSUM_SIZE, crc, |
| 3488 | BTRFS_SUPER_INFO_SIZE - BTRFS_CSUM_SIZE); |
| 3489 | btrfs_csum_final(crc, sb->csum); |
Hisashi Hifumi | 4eedeb7 | 2009-06-10 15:28:55 -0400 | [diff] [blame] | 3490 | |
David Sterba | abbb3b8 | 2017-06-16 00:50:33 +0200 | [diff] [blame] | 3491 | /* One reference for us, and we leave it for the caller */ |
David Sterba | 9f6d251 | 2017-06-16 01:48:05 +0200 | [diff] [blame] | 3492 | bh = __getblk(device->bdev, bytenr / BTRFS_BDEV_BLOCKSIZE, |
David Sterba | abbb3b8 | 2017-06-16 00:50:33 +0200 | [diff] [blame] | 3493 | BTRFS_SUPER_INFO_SIZE); |
| 3494 | if (!bh) { |
| 3495 | btrfs_err(device->fs_info, |
| 3496 | "couldn't get super buffer head for bytenr %llu", |
| 3497 | bytenr); |
| 3498 | errors++; |
Hisashi Hifumi | 4eedeb7 | 2009-06-10 15:28:55 -0400 | [diff] [blame] | 3499 | continue; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 3500 | } |
| 3501 | |
David Sterba | abbb3b8 | 2017-06-16 00:50:33 +0200 | [diff] [blame] | 3502 | memcpy(bh->b_data, sb, BTRFS_SUPER_INFO_SIZE); |
| 3503 | |
| 3504 | /* one reference for submit_bh */ |
| 3505 | get_bh(bh); |
| 3506 | |
| 3507 | set_buffer_uptodate(bh); |
| 3508 | lock_buffer(bh); |
| 3509 | bh->b_end_io = btrfs_end_buffer_write_sync; |
| 3510 | bh->b_private = device; |
| 3511 | |
Chris Mason | 387125f | 2011-11-18 15:07:51 -0500 | [diff] [blame] | 3512 | /* |
| 3513 | * we fua the first super. The others we allow |
| 3514 | * to go down lazy. |
| 3515 | */ |
Omar Sandoval | 1b9e619 | 2017-12-05 22:54:02 -0800 | [diff] [blame] | 3516 | op_flags = REQ_SYNC | REQ_META | REQ_PRIO; |
| 3517 | if (i == 0 && !btrfs_test_opt(device->fs_info, NOBARRIER)) |
| 3518 | op_flags |= REQ_FUA; |
| 3519 | ret = btrfsic_submit_bh(REQ_OP_WRITE, op_flags, bh); |
Hisashi Hifumi | 4eedeb7 | 2009-06-10 15:28:55 -0400 | [diff] [blame] | 3520 | if (ret) |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 3521 | errors++; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 3522 | } |
| 3523 | return errors < i ? 0 : -1; |
| 3524 | } |
| 3525 | |
Chris Mason | 387125f | 2011-11-18 15:07:51 -0500 | [diff] [blame] | 3526 | /* |
David Sterba | abbb3b8 | 2017-06-16 00:50:33 +0200 | [diff] [blame] | 3527 | * Wait for write completion of superblocks done by write_dev_supers, |
| 3528 | * @max_mirrors same for write and wait phases. |
| 3529 | * |
| 3530 | * Return number of errors when buffer head is not found or not marked up to |
| 3531 | * date. |
| 3532 | */ |
| 3533 | static int wait_dev_supers(struct btrfs_device *device, int max_mirrors) |
| 3534 | { |
| 3535 | struct buffer_head *bh; |
| 3536 | int i; |
| 3537 | int errors = 0; |
Howard McLauchlan | b6a535f | 2018-02-02 11:09:01 -0800 | [diff] [blame] | 3538 | bool primary_failed = false; |
David Sterba | abbb3b8 | 2017-06-16 00:50:33 +0200 | [diff] [blame] | 3539 | u64 bytenr; |
| 3540 | |
| 3541 | if (max_mirrors == 0) |
| 3542 | max_mirrors = BTRFS_SUPER_MIRROR_MAX; |
| 3543 | |
| 3544 | for (i = 0; i < max_mirrors; i++) { |
| 3545 | bytenr = btrfs_sb_offset(i); |
| 3546 | if (bytenr + BTRFS_SUPER_INFO_SIZE >= |
| 3547 | device->commit_total_bytes) |
| 3548 | break; |
| 3549 | |
David Sterba | 9f6d251 | 2017-06-16 01:48:05 +0200 | [diff] [blame] | 3550 | bh = __find_get_block(device->bdev, |
| 3551 | bytenr / BTRFS_BDEV_BLOCKSIZE, |
David Sterba | abbb3b8 | 2017-06-16 00:50:33 +0200 | [diff] [blame] | 3552 | BTRFS_SUPER_INFO_SIZE); |
| 3553 | if (!bh) { |
| 3554 | errors++; |
Howard McLauchlan | b6a535f | 2018-02-02 11:09:01 -0800 | [diff] [blame] | 3555 | if (i == 0) |
| 3556 | primary_failed = true; |
David Sterba | abbb3b8 | 2017-06-16 00:50:33 +0200 | [diff] [blame] | 3557 | continue; |
| 3558 | } |
| 3559 | wait_on_buffer(bh); |
Howard McLauchlan | b6a535f | 2018-02-02 11:09:01 -0800 | [diff] [blame] | 3560 | if (!buffer_uptodate(bh)) { |
David Sterba | abbb3b8 | 2017-06-16 00:50:33 +0200 | [diff] [blame] | 3561 | errors++; |
Howard McLauchlan | b6a535f | 2018-02-02 11:09:01 -0800 | [diff] [blame] | 3562 | if (i == 0) |
| 3563 | primary_failed = true; |
| 3564 | } |
David Sterba | abbb3b8 | 2017-06-16 00:50:33 +0200 | [diff] [blame] | 3565 | |
| 3566 | /* drop our reference */ |
| 3567 | brelse(bh); |
| 3568 | |
| 3569 | /* drop the reference from the writing run */ |
| 3570 | brelse(bh); |
| 3571 | } |
| 3572 | |
Howard McLauchlan | b6a535f | 2018-02-02 11:09:01 -0800 | [diff] [blame] | 3573 | /* log error, force error return */ |
| 3574 | if (primary_failed) { |
| 3575 | btrfs_err(device->fs_info, "error writing primary super block to device %llu", |
| 3576 | device->devid); |
| 3577 | return -1; |
| 3578 | } |
| 3579 | |
David Sterba | abbb3b8 | 2017-06-16 00:50:33 +0200 | [diff] [blame] | 3580 | return errors < i ? 0 : -1; |
| 3581 | } |
| 3582 | |
| 3583 | /* |
Chris Mason | 387125f | 2011-11-18 15:07:51 -0500 | [diff] [blame] | 3584 | * endio for the write_dev_flush, this will wake anyone waiting |
| 3585 | * for the barrier when it is done |
| 3586 | */ |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 3587 | static void btrfs_end_empty_barrier(struct bio *bio) |
Chris Mason | 387125f | 2011-11-18 15:07:51 -0500 | [diff] [blame] | 3588 | { |
David Sterba | e0ae999 | 2017-06-06 17:06:06 +0200 | [diff] [blame] | 3589 | complete(bio->bi_private); |
Chris Mason | 387125f | 2011-11-18 15:07:51 -0500 | [diff] [blame] | 3590 | } |
| 3591 | |
| 3592 | /* |
Anand Jain | 4fc6441 | 2017-06-13 17:05:41 +0800 | [diff] [blame] | 3593 | * Submit a flush request to the device if it supports it. Error handling is |
| 3594 | * done in the waiting counterpart. |
Chris Mason | 387125f | 2011-11-18 15:07:51 -0500 | [diff] [blame] | 3595 | */ |
Anand Jain | 4fc6441 | 2017-06-13 17:05:41 +0800 | [diff] [blame] | 3596 | static void write_dev_flush(struct btrfs_device *device) |
Chris Mason | 387125f | 2011-11-18 15:07:51 -0500 | [diff] [blame] | 3597 | { |
Anand Jain | c2a9c7a | 2017-04-06 11:22:53 +0800 | [diff] [blame] | 3598 | struct request_queue *q = bdev_get_queue(device->bdev); |
David Sterba | e0ae999 | 2017-06-06 17:06:06 +0200 | [diff] [blame] | 3599 | struct bio *bio = device->flush_bio; |
Chris Mason | 387125f | 2011-11-18 15:07:51 -0500 | [diff] [blame] | 3600 | |
Anand Jain | c2a9c7a | 2017-04-06 11:22:53 +0800 | [diff] [blame] | 3601 | if (!test_bit(QUEUE_FLAG_WC, &q->queue_flags)) |
Anand Jain | 4fc6441 | 2017-06-13 17:05:41 +0800 | [diff] [blame] | 3602 | return; |
Chris Mason | 387125f | 2011-11-18 15:07:51 -0500 | [diff] [blame] | 3603 | |
David Sterba | e0ae999 | 2017-06-06 17:06:06 +0200 | [diff] [blame] | 3604 | bio_reset(bio); |
Chris Mason | 387125f | 2011-11-18 15:07:51 -0500 | [diff] [blame] | 3605 | bio->bi_end_io = btrfs_end_empty_barrier; |
Christoph Hellwig | 74d4699 | 2017-08-23 19:10:32 +0200 | [diff] [blame] | 3606 | bio_set_dev(bio, device->bdev); |
Jan Kara | 8d91012 | 2017-05-02 17:03:50 +0200 | [diff] [blame] | 3607 | bio->bi_opf = REQ_OP_WRITE | REQ_SYNC | REQ_PREFLUSH; |
Chris Mason | 387125f | 2011-11-18 15:07:51 -0500 | [diff] [blame] | 3608 | init_completion(&device->flush_wait); |
| 3609 | bio->bi_private = &device->flush_wait; |
Chris Mason | 387125f | 2011-11-18 15:07:51 -0500 | [diff] [blame] | 3610 | |
Lu Fengqi | 43a0111 | 2017-08-18 16:38:07 +0800 | [diff] [blame] | 3611 | btrfsic_submit_bio(bio); |
Anand Jain | 1c3063b | 2017-12-04 12:54:56 +0800 | [diff] [blame] | 3612 | set_bit(BTRFS_DEV_STATE_FLUSH_SENT, &device->dev_state); |
Anand Jain | 4fc6441 | 2017-06-13 17:05:41 +0800 | [diff] [blame] | 3613 | } |
Chris Mason | 387125f | 2011-11-18 15:07:51 -0500 | [diff] [blame] | 3614 | |
Anand Jain | 4fc6441 | 2017-06-13 17:05:41 +0800 | [diff] [blame] | 3615 | /* |
| 3616 | * If the flush bio has been submitted by write_dev_flush, wait for it. |
| 3617 | */ |
Linus Torvalds | 8c27cb3 | 2017-07-05 16:41:23 -0700 | [diff] [blame] | 3618 | static blk_status_t wait_dev_flush(struct btrfs_device *device) |
Anand Jain | 4fc6441 | 2017-06-13 17:05:41 +0800 | [diff] [blame] | 3619 | { |
Anand Jain | 4fc6441 | 2017-06-13 17:05:41 +0800 | [diff] [blame] | 3620 | struct bio *bio = device->flush_bio; |
| 3621 | |
Anand Jain | 1c3063b | 2017-12-04 12:54:56 +0800 | [diff] [blame] | 3622 | if (!test_bit(BTRFS_DEV_STATE_FLUSH_SENT, &device->dev_state)) |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 3623 | return BLK_STS_OK; |
Anand Jain | 4fc6441 | 2017-06-13 17:05:41 +0800 | [diff] [blame] | 3624 | |
Anand Jain | 1c3063b | 2017-12-04 12:54:56 +0800 | [diff] [blame] | 3625 | clear_bit(BTRFS_DEV_STATE_FLUSH_SENT, &device->dev_state); |
David Sterba | 2980d57 | 2017-06-15 16:04:26 +0200 | [diff] [blame] | 3626 | wait_for_completion_io(&device->flush_wait); |
Anand Jain | 4fc6441 | 2017-06-13 17:05:41 +0800 | [diff] [blame] | 3627 | |
Linus Torvalds | 8c27cb3 | 2017-07-05 16:41:23 -0700 | [diff] [blame] | 3628 | return bio->bi_status; |
Chris Mason | 387125f | 2011-11-18 15:07:51 -0500 | [diff] [blame] | 3629 | } |
| 3630 | |
Qu Wenruo | d10b82f | 2017-06-27 17:28:40 +0800 | [diff] [blame] | 3631 | static int check_barrier_error(struct btrfs_fs_info *fs_info) |
Anand Jain | 401b41e | 2017-05-06 07:17:54 +0800 | [diff] [blame] | 3632 | { |
Anand Jain | 6528b99 | 2017-12-18 17:08:59 +0800 | [diff] [blame] | 3633 | if (!btrfs_check_rw_degradable(fs_info, NULL)) |
Anand Jain | 401b41e | 2017-05-06 07:17:54 +0800 | [diff] [blame] | 3634 | return -EIO; |
Chris Mason | 387125f | 2011-11-18 15:07:51 -0500 | [diff] [blame] | 3635 | return 0; |
| 3636 | } |
| 3637 | |
| 3638 | /* |
| 3639 | * send an empty flush down to each device in parallel, |
| 3640 | * then wait for them |
| 3641 | */ |
| 3642 | static int barrier_all_devices(struct btrfs_fs_info *info) |
| 3643 | { |
| 3644 | struct list_head *head; |
| 3645 | struct btrfs_device *dev; |
Stefan Behrens | 5af3e8c | 2012-08-01 18:56:49 +0200 | [diff] [blame] | 3646 | int errors_wait = 0; |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 3647 | blk_status_t ret; |
Chris Mason | 387125f | 2011-11-18 15:07:51 -0500 | [diff] [blame] | 3648 | |
David Sterba | 1538e6c | 2017-06-16 00:28:47 +0200 | [diff] [blame] | 3649 | lockdep_assert_held(&info->fs_devices->device_list_mutex); |
Chris Mason | 387125f | 2011-11-18 15:07:51 -0500 | [diff] [blame] | 3650 | /* send down all the barriers */ |
| 3651 | head = &info->fs_devices->devices; |
David Sterba | 1538e6c | 2017-06-16 00:28:47 +0200 | [diff] [blame] | 3652 | list_for_each_entry(dev, head, dev_list) { |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 3653 | if (test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state)) |
Hidetoshi Seto | f88ba6a | 2014-02-05 16:34:38 +0900 | [diff] [blame] | 3654 | continue; |
Anand Jain | cea7c8b | 2017-06-13 17:05:40 +0800 | [diff] [blame] | 3655 | if (!dev->bdev) |
Chris Mason | 387125f | 2011-11-18 15:07:51 -0500 | [diff] [blame] | 3656 | continue; |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 3657 | if (!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &dev->dev_state) || |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 3658 | !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state)) |
Chris Mason | 387125f | 2011-11-18 15:07:51 -0500 | [diff] [blame] | 3659 | continue; |
| 3660 | |
Anand Jain | 4fc6441 | 2017-06-13 17:05:41 +0800 | [diff] [blame] | 3661 | write_dev_flush(dev); |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 3662 | dev->last_flush_error = BLK_STS_OK; |
Chris Mason | 387125f | 2011-11-18 15:07:51 -0500 | [diff] [blame] | 3663 | } |
| 3664 | |
| 3665 | /* wait for all the barriers */ |
David Sterba | 1538e6c | 2017-06-16 00:28:47 +0200 | [diff] [blame] | 3666 | list_for_each_entry(dev, head, dev_list) { |
Anand Jain | e6e674b | 2017-12-04 12:54:54 +0800 | [diff] [blame] | 3667 | if (test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state)) |
Hidetoshi Seto | f88ba6a | 2014-02-05 16:34:38 +0900 | [diff] [blame] | 3668 | continue; |
Chris Mason | 387125f | 2011-11-18 15:07:51 -0500 | [diff] [blame] | 3669 | if (!dev->bdev) { |
Stefan Behrens | 5af3e8c | 2012-08-01 18:56:49 +0200 | [diff] [blame] | 3670 | errors_wait++; |
Chris Mason | 387125f | 2011-11-18 15:07:51 -0500 | [diff] [blame] | 3671 | continue; |
| 3672 | } |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 3673 | if (!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &dev->dev_state) || |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 3674 | !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state)) |
Chris Mason | 387125f | 2011-11-18 15:07:51 -0500 | [diff] [blame] | 3675 | continue; |
| 3676 | |
Anand Jain | 4fc6441 | 2017-06-13 17:05:41 +0800 | [diff] [blame] | 3677 | ret = wait_dev_flush(dev); |
Anand Jain | 401b41e | 2017-05-06 07:17:54 +0800 | [diff] [blame] | 3678 | if (ret) { |
| 3679 | dev->last_flush_error = ret; |
David Sterba | 66b4993 | 2017-06-15 16:20:43 +0200 | [diff] [blame] | 3680 | btrfs_dev_stat_inc_and_print(dev, |
| 3681 | BTRFS_DEV_STAT_FLUSH_ERRS); |
Stefan Behrens | 5af3e8c | 2012-08-01 18:56:49 +0200 | [diff] [blame] | 3682 | errors_wait++; |
Anand Jain | 401b41e | 2017-05-06 07:17:54 +0800 | [diff] [blame] | 3683 | } |
Chris Mason | 387125f | 2011-11-18 15:07:51 -0500 | [diff] [blame] | 3684 | } |
Anand Jain | 401b41e | 2017-05-06 07:17:54 +0800 | [diff] [blame] | 3685 | |
Anand Jain | cea7c8b | 2017-06-13 17:05:40 +0800 | [diff] [blame] | 3686 | if (errors_wait) { |
Anand Jain | 401b41e | 2017-05-06 07:17:54 +0800 | [diff] [blame] | 3687 | /* |
| 3688 | * At some point we need the status of all disks |
| 3689 | * to arrive at the volume status. So error checking |
| 3690 | * is being pushed to a separate loop. |
| 3691 | */ |
Qu Wenruo | d10b82f | 2017-06-27 17:28:40 +0800 | [diff] [blame] | 3692 | return check_barrier_error(info); |
Anand Jain | 401b41e | 2017-05-06 07:17:54 +0800 | [diff] [blame] | 3693 | } |
Chris Mason | 387125f | 2011-11-18 15:07:51 -0500 | [diff] [blame] | 3694 | return 0; |
| 3695 | } |
| 3696 | |
Zhao Lei | 943c6e9 | 2015-08-19 15:54:15 +0800 | [diff] [blame] | 3697 | int btrfs_get_num_tolerated_disk_barrier_failures(u64 flags) |
| 3698 | { |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 3699 | int raid_type; |
| 3700 | int min_tolerated = INT_MAX; |
Zhao Lei | 943c6e9 | 2015-08-19 15:54:15 +0800 | [diff] [blame] | 3701 | |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 3702 | if ((flags & BTRFS_BLOCK_GROUP_PROFILE_MASK) == 0 || |
| 3703 | (flags & BTRFS_AVAIL_ALLOC_BIT_SINGLE)) |
| 3704 | min_tolerated = min(min_tolerated, |
| 3705 | btrfs_raid_array[BTRFS_RAID_SINGLE]. |
| 3706 | tolerated_failures); |
Zhao Lei | 943c6e9 | 2015-08-19 15:54:15 +0800 | [diff] [blame] | 3707 | |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 3708 | for (raid_type = 0; raid_type < BTRFS_NR_RAID_TYPES; raid_type++) { |
| 3709 | if (raid_type == BTRFS_RAID_SINGLE) |
| 3710 | continue; |
Anand Jain | 41a6e89 | 2018-04-25 19:01:43 +0800 | [diff] [blame] | 3711 | if (!(flags & btrfs_raid_array[raid_type].bg_flag)) |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 3712 | continue; |
| 3713 | min_tolerated = min(min_tolerated, |
| 3714 | btrfs_raid_array[raid_type]. |
| 3715 | tolerated_failures); |
| 3716 | } |
Zhao Lei | 943c6e9 | 2015-08-19 15:54:15 +0800 | [diff] [blame] | 3717 | |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 3718 | if (min_tolerated == INT_MAX) { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 3719 | pr_warn("BTRFS: unknown raid flag: %llu", flags); |
Zhao Lei | 8789f4f | 2015-09-15 21:08:07 +0800 | [diff] [blame] | 3720 | min_tolerated = 0; |
| 3721 | } |
| 3722 | |
| 3723 | return min_tolerated; |
Zhao Lei | 943c6e9 | 2015-08-19 15:54:15 +0800 | [diff] [blame] | 3724 | } |
| 3725 | |
David Sterba | eece6a9 | 2017-02-10 19:04:32 +0100 | [diff] [blame] | 3726 | int write_all_supers(struct btrfs_fs_info *fs_info, int max_mirrors) |
Chris Mason | f298446 | 2008-04-10 16:19:33 -0400 | [diff] [blame] | 3727 | { |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 3728 | struct list_head *head; |
Chris Mason | f298446 | 2008-04-10 16:19:33 -0400 | [diff] [blame] | 3729 | struct btrfs_device *dev; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 3730 | struct btrfs_super_block *sb; |
Chris Mason | f298446 | 2008-04-10 16:19:33 -0400 | [diff] [blame] | 3731 | struct btrfs_dev_item *dev_item; |
Chris Mason | f298446 | 2008-04-10 16:19:33 -0400 | [diff] [blame] | 3732 | int ret; |
| 3733 | int do_barriers; |
Chris Mason | a236aed | 2008-04-29 09:38:00 -0400 | [diff] [blame] | 3734 | int max_errors; |
| 3735 | int total_errors = 0; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 3736 | u64 flags; |
Chris Mason | f298446 | 2008-04-10 16:19:33 -0400 | [diff] [blame] | 3737 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3738 | do_barriers = !btrfs_test_opt(fs_info, NOBARRIER); |
Liu Bo | fed3b38 | 2017-09-13 12:25:21 -0600 | [diff] [blame] | 3739 | |
| 3740 | /* |
| 3741 | * max_mirrors == 0 indicates we're from commit_transaction, |
| 3742 | * not from fsync where the tree roots in fs_info have not |
| 3743 | * been consistent on disk. |
| 3744 | */ |
| 3745 | if (max_mirrors == 0) |
| 3746 | backup_super_roots(fs_info); |
Chris Mason | f298446 | 2008-04-10 16:19:33 -0400 | [diff] [blame] | 3747 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3748 | sb = fs_info->super_for_commit; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 3749 | dev_item = &sb->dev_item; |
Chris Mason | e5e9a52 | 2009-06-10 15:17:02 -0400 | [diff] [blame] | 3750 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3751 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
| 3752 | head = &fs_info->fs_devices->devices; |
| 3753 | max_errors = btrfs_super_num_devices(fs_info->super_copy) - 1; |
Chris Mason | 387125f | 2011-11-18 15:07:51 -0500 | [diff] [blame] | 3754 | |
Stefan Behrens | 5af3e8c | 2012-08-01 18:56:49 +0200 | [diff] [blame] | 3755 | if (do_barriers) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3756 | ret = barrier_all_devices(fs_info); |
Stefan Behrens | 5af3e8c | 2012-08-01 18:56:49 +0200 | [diff] [blame] | 3757 | if (ret) { |
| 3758 | mutex_unlock( |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3759 | &fs_info->fs_devices->device_list_mutex); |
| 3760 | btrfs_handle_fs_error(fs_info, ret, |
| 3761 | "errors while submitting device barriers."); |
Stefan Behrens | 5af3e8c | 2012-08-01 18:56:49 +0200 | [diff] [blame] | 3762 | return ret; |
| 3763 | } |
| 3764 | } |
Chris Mason | 387125f | 2011-11-18 15:07:51 -0500 | [diff] [blame] | 3765 | |
David Sterba | 1538e6c | 2017-06-16 00:28:47 +0200 | [diff] [blame] | 3766 | list_for_each_entry(dev, head, dev_list) { |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 3767 | if (!dev->bdev) { |
| 3768 | total_errors++; |
| 3769 | continue; |
| 3770 | } |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 3771 | if (!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &dev->dev_state) || |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 3772 | !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state)) |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 3773 | continue; |
| 3774 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 3775 | btrfs_set_stack_device_generation(dev_item, 0); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 3776 | btrfs_set_stack_device_type(dev_item, dev->type); |
| 3777 | btrfs_set_stack_device_id(dev_item, dev->devid); |
Miao Xie | 7df69d3 | 2014-07-24 11:37:13 +0800 | [diff] [blame] | 3778 | btrfs_set_stack_device_total_bytes(dev_item, |
Miao Xie | 935e5cc | 2014-09-03 21:35:33 +0800 | [diff] [blame] | 3779 | dev->commit_total_bytes); |
Miao Xie | ce7213c | 2014-09-03 21:35:34 +0800 | [diff] [blame] | 3780 | btrfs_set_stack_device_bytes_used(dev_item, |
| 3781 | dev->commit_bytes_used); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 3782 | btrfs_set_stack_device_io_align(dev_item, dev->io_align); |
| 3783 | btrfs_set_stack_device_io_width(dev_item, dev->io_width); |
| 3784 | btrfs_set_stack_device_sector_size(dev_item, dev->sector_size); |
| 3785 | memcpy(dev_item->uuid, dev->uuid, BTRFS_UUID_SIZE); |
Nikolay Borisov | 7239ff4 | 2018-10-30 16:43:23 +0200 | [diff] [blame] | 3786 | memcpy(dev_item->fsid, dev->fs_devices->metadata_uuid, |
| 3787 | BTRFS_FSID_SIZE); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 3788 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 3789 | flags = btrfs_super_flags(sb); |
| 3790 | btrfs_set_super_flags(sb, flags | BTRFS_HEADER_FLAG_WRITTEN); |
Chris Mason | f298446 | 2008-04-10 16:19:33 -0400 | [diff] [blame] | 3791 | |
Qu Wenruo | 75cb857 | 2018-05-11 13:35:27 +0800 | [diff] [blame] | 3792 | ret = btrfs_validate_write_super(fs_info, sb); |
| 3793 | if (ret < 0) { |
| 3794 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
| 3795 | btrfs_handle_fs_error(fs_info, -EUCLEAN, |
| 3796 | "unexpected superblock corruption detected"); |
| 3797 | return -EUCLEAN; |
| 3798 | } |
| 3799 | |
David Sterba | abbb3b8 | 2017-06-16 00:50:33 +0200 | [diff] [blame] | 3800 | ret = write_dev_supers(dev, sb, max_mirrors); |
Chris Mason | a236aed | 2008-04-29 09:38:00 -0400 | [diff] [blame] | 3801 | if (ret) |
| 3802 | total_errors++; |
Chris Mason | f298446 | 2008-04-10 16:19:33 -0400 | [diff] [blame] | 3803 | } |
Chris Mason | a236aed | 2008-04-29 09:38:00 -0400 | [diff] [blame] | 3804 | if (total_errors > max_errors) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3805 | btrfs_err(fs_info, "%d errors while writing supers", |
| 3806 | total_errors); |
| 3807 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3808 | |
Stefan Behrens | 9d565ba | 2013-08-09 17:08:40 +0200 | [diff] [blame] | 3809 | /* FUA is masked off if unsupported and can't be the reason */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3810 | btrfs_handle_fs_error(fs_info, -EIO, |
| 3811 | "%d errors while writing supers", |
| 3812 | total_errors); |
Stefan Behrens | 9d565ba | 2013-08-09 17:08:40 +0200 | [diff] [blame] | 3813 | return -EIO; |
Chris Mason | a236aed | 2008-04-29 09:38:00 -0400 | [diff] [blame] | 3814 | } |
Chris Mason | f298446 | 2008-04-10 16:19:33 -0400 | [diff] [blame] | 3815 | |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 3816 | total_errors = 0; |
David Sterba | 1538e6c | 2017-06-16 00:28:47 +0200 | [diff] [blame] | 3817 | list_for_each_entry(dev, head, dev_list) { |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 3818 | if (!dev->bdev) |
| 3819 | continue; |
Anand Jain | e12c962 | 2017-12-04 12:54:53 +0800 | [diff] [blame] | 3820 | if (!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA, &dev->dev_state) || |
Anand Jain | ebbede4 | 2017-12-04 12:54:52 +0800 | [diff] [blame] | 3821 | !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state)) |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 3822 | continue; |
| 3823 | |
David Sterba | abbb3b8 | 2017-06-16 00:50:33 +0200 | [diff] [blame] | 3824 | ret = wait_dev_supers(dev, max_mirrors); |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 3825 | if (ret) |
| 3826 | total_errors++; |
Chris Mason | f298446 | 2008-04-10 16:19:33 -0400 | [diff] [blame] | 3827 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3828 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Chris Mason | a236aed | 2008-04-29 09:38:00 -0400 | [diff] [blame] | 3829 | if (total_errors > max_errors) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3830 | btrfs_handle_fs_error(fs_info, -EIO, |
| 3831 | "%d errors while writing supers", |
| 3832 | total_errors); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3833 | return -EIO; |
Chris Mason | a236aed | 2008-04-29 09:38:00 -0400 | [diff] [blame] | 3834 | } |
Chris Mason | f298446 | 2008-04-10 16:19:33 -0400 | [diff] [blame] | 3835 | return 0; |
| 3836 | } |
| 3837 | |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 3838 | /* Drop a fs root from the radix tree and free it. */ |
| 3839 | void btrfs_drop_and_free_fs_root(struct btrfs_fs_info *fs_info, |
| 3840 | struct btrfs_root *root) |
Chris Mason | 2619ba1 | 2007-04-10 16:58:11 -0400 | [diff] [blame] | 3841 | { |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3842 | spin_lock(&fs_info->fs_roots_radix_lock); |
Chris Mason | 2619ba1 | 2007-04-10 16:58:11 -0400 | [diff] [blame] | 3843 | radix_tree_delete(&fs_info->fs_roots_radix, |
| 3844 | (unsigned long)root->root_key.objectid); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3845 | spin_unlock(&fs_info->fs_roots_radix_lock); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 3846 | |
| 3847 | if (btrfs_root_refs(&root->root_item) == 0) |
| 3848 | synchronize_srcu(&fs_info->subvol_srcu); |
| 3849 | |
Liu Bo | 1c1ea4f | 2016-07-19 15:36:05 -0700 | [diff] [blame] | 3850 | if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) { |
Liu Bo | 3321719 | 2013-02-27 13:28:24 +0000 | [diff] [blame] | 3851 | btrfs_free_log(NULL, root); |
Liu Bo | 1c1ea4f | 2016-07-19 15:36:05 -0700 | [diff] [blame] | 3852 | if (root->reloc_root) { |
| 3853 | free_extent_buffer(root->reloc_root->node); |
| 3854 | free_extent_buffer(root->reloc_root->commit_root); |
| 3855 | btrfs_put_fs_root(root->reloc_root); |
| 3856 | root->reloc_root = NULL; |
| 3857 | } |
| 3858 | } |
Liu Bo | 3321719 | 2013-02-27 13:28:24 +0000 | [diff] [blame] | 3859 | |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 3860 | if (root->free_ino_pinned) |
| 3861 | __btrfs_remove_free_space_cache(root->free_ino_pinned); |
| 3862 | if (root->free_ino_ctl) |
| 3863 | __btrfs_remove_free_space_cache(root->free_ino_ctl); |
David Sterba | 84db5cc | 2018-07-20 16:30:25 +0200 | [diff] [blame] | 3864 | btrfs_free_fs_root(root); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3865 | } |
| 3866 | |
David Sterba | 84db5cc | 2018-07-20 16:30:25 +0200 | [diff] [blame] | 3867 | void btrfs_free_fs_root(struct btrfs_root *root) |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3868 | { |
David Sterba | 57cdc8d | 2014-02-05 02:37:48 +0100 | [diff] [blame] | 3869 | iput(root->ino_cache_inode); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3870 | WARN_ON(!RB_EMPTY_ROOT(&root->inode_tree)); |
Al Viro | 0ee5dc6 | 2011-07-07 15:44:25 -0400 | [diff] [blame] | 3871 | if (root->anon_dev) |
| 3872 | free_anon_bdev(root->anon_dev); |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 3873 | if (root->subv_writers) |
| 3874 | btrfs_free_subvolume_writers(root->subv_writers); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3875 | free_extent_buffer(root->node); |
| 3876 | free_extent_buffer(root->commit_root); |
Li Zefan | 581bb05 | 2011-04-20 10:06:11 +0800 | [diff] [blame] | 3877 | kfree(root->free_ino_ctl); |
| 3878 | kfree(root->free_ino_pinned); |
Miao Xie | b0feb9d | 2013-05-15 07:48:20 +0000 | [diff] [blame] | 3879 | btrfs_put_fs_root(root); |
Chris Mason | 2619ba1 | 2007-04-10 16:58:11 -0400 | [diff] [blame] | 3880 | } |
| 3881 | |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 3882 | int btrfs_cleanup_fs_roots(struct btrfs_fs_info *fs_info) |
| 3883 | { |
| 3884 | u64 root_objectid = 0; |
| 3885 | struct btrfs_root *gang[8]; |
Qu Wenruo | 65d33fd | 2014-04-22 17:13:51 +0800 | [diff] [blame] | 3886 | int i = 0; |
| 3887 | int err = 0; |
| 3888 | unsigned int ret = 0; |
| 3889 | int index; |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 3890 | |
| 3891 | while (1) { |
Qu Wenruo | 65d33fd | 2014-04-22 17:13:51 +0800 | [diff] [blame] | 3892 | index = srcu_read_lock(&fs_info->subvol_srcu); |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 3893 | ret = radix_tree_gang_lookup(&fs_info->fs_roots_radix, |
| 3894 | (void **)gang, root_objectid, |
| 3895 | ARRAY_SIZE(gang)); |
Qu Wenruo | 65d33fd | 2014-04-22 17:13:51 +0800 | [diff] [blame] | 3896 | if (!ret) { |
| 3897 | srcu_read_unlock(&fs_info->subvol_srcu, index); |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 3898 | break; |
Qu Wenruo | 65d33fd | 2014-04-22 17:13:51 +0800 | [diff] [blame] | 3899 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3900 | root_objectid = gang[ret - 1]->root_key.objectid + 1; |
Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 3901 | |
Qu Wenruo | 65d33fd | 2014-04-22 17:13:51 +0800 | [diff] [blame] | 3902 | for (i = 0; i < ret; i++) { |
| 3903 | /* Avoid to grab roots in dead_roots */ |
| 3904 | if (btrfs_root_refs(&gang[i]->root_item) == 0) { |
| 3905 | gang[i] = NULL; |
| 3906 | continue; |
| 3907 | } |
| 3908 | /* grab all the search result for later use */ |
| 3909 | gang[i] = btrfs_grab_fs_root(gang[i]); |
| 3910 | } |
| 3911 | srcu_read_unlock(&fs_info->subvol_srcu, index); |
| 3912 | |
| 3913 | for (i = 0; i < ret; i++) { |
| 3914 | if (!gang[i]) |
| 3915 | continue; |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 3916 | root_objectid = gang[i]->root_key.objectid; |
Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 3917 | err = btrfs_orphan_cleanup(gang[i]); |
| 3918 | if (err) |
Qu Wenruo | 65d33fd | 2014-04-22 17:13:51 +0800 | [diff] [blame] | 3919 | break; |
| 3920 | btrfs_put_fs_root(gang[i]); |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 3921 | } |
| 3922 | root_objectid++; |
| 3923 | } |
Qu Wenruo | 65d33fd | 2014-04-22 17:13:51 +0800 | [diff] [blame] | 3924 | |
| 3925 | /* release the uncleaned roots due to error */ |
| 3926 | for (; i < ret; i++) { |
| 3927 | if (gang[i]) |
| 3928 | btrfs_put_fs_root(gang[i]); |
| 3929 | } |
| 3930 | return err; |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 3931 | } |
| 3932 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3933 | int btrfs_commit_super(struct btrfs_fs_info *fs_info) |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 3934 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3935 | struct btrfs_root *root = fs_info->tree_root; |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 3936 | struct btrfs_trans_handle *trans; |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 3937 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3938 | mutex_lock(&fs_info->cleaner_mutex); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3939 | btrfs_run_delayed_iputs(fs_info); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3940 | mutex_unlock(&fs_info->cleaner_mutex); |
| 3941 | wake_up_process(fs_info->cleaner_kthread); |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 3942 | |
| 3943 | /* wait until ongoing cleanup work done */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3944 | down_write(&fs_info->cleanup_work_sem); |
| 3945 | up_write(&fs_info->cleanup_work_sem); |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 3946 | |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 3947 | trans = btrfs_join_transaction(root); |
Tsutomu Itoh | 3612b49 | 2011-01-25 02:51:38 +0000 | [diff] [blame] | 3948 | if (IS_ERR(trans)) |
| 3949 | return PTR_ERR(trans); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 3950 | return btrfs_commit_transaction(trans); |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 3951 | } |
| 3952 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3953 | void close_ctree(struct btrfs_fs_info *fs_info) |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 3954 | { |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 3955 | int ret; |
Chris Mason | e089f05 | 2007-03-16 16:20:31 -0400 | [diff] [blame] | 3956 | |
Josef Bacik | afcdd12 | 2016-09-02 15:40:02 -0400 | [diff] [blame] | 3957 | set_bit(BTRFS_FS_CLOSING_START, &fs_info->flags); |
Omar Sandoval | d6fd0ae | 2018-10-31 10:06:08 -0700 | [diff] [blame] | 3958 | /* |
| 3959 | * We don't want the cleaner to start new transactions, add more delayed |
| 3960 | * iputs, etc. while we're closing. We can't use kthread_stop() yet |
| 3961 | * because that frees the task_struct, and the transaction kthread might |
| 3962 | * still try to wake up the cleaner. |
| 3963 | */ |
| 3964 | kthread_park(fs_info->cleaner_kthread); |
Chris Mason | a213501 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 3965 | |
Justin Maggard | 7343dd6 | 2015-11-04 15:56:16 -0800 | [diff] [blame] | 3966 | /* wait for the qgroup rescan worker to stop */ |
Jeff Mahoney | d06f23d | 2016-08-08 22:08:06 -0400 | [diff] [blame] | 3967 | btrfs_qgroup_wait_for_completion(fs_info, false); |
Justin Maggard | 7343dd6 | 2015-11-04 15:56:16 -0800 | [diff] [blame] | 3968 | |
Stefan Behrens | 803b2f5 | 2013-08-15 17:11:21 +0200 | [diff] [blame] | 3969 | /* wait for the uuid_scan task to finish */ |
| 3970 | down(&fs_info->uuid_tree_rescan_sem); |
| 3971 | /* avoid complains from lockdep et al., set sem back to initial state */ |
| 3972 | up(&fs_info->uuid_tree_rescan_sem); |
| 3973 | |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3974 | /* pause restriper - we want to resume on mount */ |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 3975 | btrfs_pause_balance(fs_info); |
Ilya Dryomov | 837d5b6 | 2012-01-16 22:04:49 +0200 | [diff] [blame] | 3976 | |
Stefan Behrens | 8dabb74 | 2012-11-06 13:15:27 +0100 | [diff] [blame] | 3977 | btrfs_dev_replace_suspend_for_unmount(fs_info); |
| 3978 | |
Stefan Behrens | aa1b8cd | 2012-11-05 17:03:39 +0100 | [diff] [blame] | 3979 | btrfs_scrub_cancel(fs_info); |
Chris Mason | 4cb5300 | 2011-05-24 15:35:30 -0400 | [diff] [blame] | 3980 | |
| 3981 | /* wait for any defraggers to finish */ |
| 3982 | wait_event(fs_info->transaction_wait, |
| 3983 | (atomic_read(&fs_info->defrag_running) == 0)); |
| 3984 | |
| 3985 | /* clear out the rbtree of defraggable inodes */ |
Miao Xie | 26176e7 | 2012-11-26 09:26:20 +0000 | [diff] [blame] | 3986 | btrfs_cleanup_defrag_inodes(fs_info); |
Chris Mason | 4cb5300 | 2011-05-24 15:35:30 -0400 | [diff] [blame] | 3987 | |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 3988 | cancel_work_sync(&fs_info->async_reclaim_work); |
| 3989 | |
David Howells | bc98a42 | 2017-07-17 08:45:34 +0100 | [diff] [blame] | 3990 | if (!sb_rdonly(fs_info->sb)) { |
Jeff Mahoney | e44163e | 2015-06-15 09:41:18 -0400 | [diff] [blame] | 3991 | /* |
Omar Sandoval | d6fd0ae | 2018-10-31 10:06:08 -0700 | [diff] [blame] | 3992 | * The cleaner kthread is stopped, so do one final pass over |
| 3993 | * unused block groups. |
Jeff Mahoney | e44163e | 2015-06-15 09:41:18 -0400 | [diff] [blame] | 3994 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3995 | btrfs_delete_unused_bgs(fs_info); |
Jeff Mahoney | e44163e | 2015-06-15 09:41:18 -0400 | [diff] [blame] | 3996 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 3997 | ret = btrfs_commit_super(fs_info); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 3998 | if (ret) |
Eric Sandeen | 0489234 | 2014-08-01 18:12:36 -0500 | [diff] [blame] | 3999 | btrfs_err(fs_info, "commit super ret %d", ret); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4000 | } |
| 4001 | |
Liu Bo | af72273 | 2018-03-31 06:11:56 +0800 | [diff] [blame] | 4002 | if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state) || |
| 4003 | test_bit(BTRFS_FS_STATE_TRANS_ABORTED, &fs_info->fs_state)) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4004 | btrfs_error_commit_super(fs_info); |
Chris Mason | ed2ff2c | 2007-03-01 18:59:40 -0500 | [diff] [blame] | 4005 | |
Al Viro | e3029d9 | 2011-11-17 00:56:18 -0500 | [diff] [blame] | 4006 | kthread_stop(fs_info->transaction_kthread); |
| 4007 | kthread_stop(fs_info->cleaner_kthread); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4008 | |
Josef Bacik | e187831 | 2018-09-28 07:18:03 -0400 | [diff] [blame] | 4009 | ASSERT(list_empty(&fs_info->delayed_iputs)); |
Josef Bacik | afcdd12 | 2016-09-02 15:40:02 -0400 | [diff] [blame] | 4010 | set_bit(BTRFS_FS_CLOSING_DONE, &fs_info->flags); |
Yan Zheng | f25784b | 2009-07-28 08:41:57 -0400 | [diff] [blame] | 4011 | |
Eric Sandeen | 0489234 | 2014-08-01 18:12:36 -0500 | [diff] [blame] | 4012 | btrfs_free_qgroup_config(fs_info); |
Nikolay Borisov | fe816d0 | 2018-04-27 12:21:53 +0300 | [diff] [blame] | 4013 | ASSERT(list_empty(&fs_info->delalloc_roots)); |
Arne Jansen | bcef60f | 2011-09-13 15:23:30 +0200 | [diff] [blame] | 4014 | |
Miao Xie | 963d678 | 2013-01-29 10:10:51 +0000 | [diff] [blame] | 4015 | if (percpu_counter_sum(&fs_info->delalloc_bytes)) { |
Eric Sandeen | 0489234 | 2014-08-01 18:12:36 -0500 | [diff] [blame] | 4016 | btrfs_info(fs_info, "at unmount delalloc count %lld", |
Miao Xie | 963d678 | 2013-01-29 10:10:51 +0000 | [diff] [blame] | 4017 | percpu_counter_sum(&fs_info->delalloc_bytes)); |
Chris Mason | b0c68f8 | 2008-01-31 11:05:37 -0500 | [diff] [blame] | 4018 | } |
Yan | bcc63ab | 2008-07-30 16:29:20 -0400 | [diff] [blame] | 4019 | |
Anand Jain | 6618a59 | 2015-08-14 18:32:47 +0800 | [diff] [blame] | 4020 | btrfs_sysfs_remove_mounted(fs_info); |
Anand Jain | b7c35e81 | 2015-03-10 06:38:38 +0800 | [diff] [blame] | 4021 | btrfs_sysfs_remove_fsid(fs_info->fs_devices); |
Jeff Mahoney | 5ac1d20 | 2013-11-01 13:06:58 -0400 | [diff] [blame] | 4022 | |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 4023 | btrfs_free_fs_roots(fs_info); |
Chris Mason | d10c5f3 | 2007-12-17 20:14:04 -0500 | [diff] [blame] | 4024 | |
Liu Bo | 1a4319c | 2014-01-13 19:53:53 +0800 | [diff] [blame] | 4025 | btrfs_put_block_group_cache(fs_info); |
| 4026 | |
Wang Shilong | de348ee | 2014-04-09 19:23:22 +0800 | [diff] [blame] | 4027 | /* |
| 4028 | * we must make sure there is not any read request to |
| 4029 | * submit after we stopping all workers. |
| 4030 | */ |
| 4031 | invalidate_inode_pages2(fs_info->btree_inode->i_mapping); |
Josef Bacik | 9619249 | 2013-10-16 13:53:28 -0400 | [diff] [blame] | 4032 | btrfs_stop_all_workers(fs_info); |
| 4033 | |
Filipe Manana | 5cdd7db | 2017-02-01 22:39:50 +0000 | [diff] [blame] | 4034 | btrfs_free_block_groups(fs_info); |
| 4035 | |
Josef Bacik | afcdd12 | 2016-09-02 15:40:02 -0400 | [diff] [blame] | 4036 | clear_bit(BTRFS_FS_OPEN, &fs_info->flags); |
Josef Bacik | 13e6c37 | 2013-05-30 16:55:44 -0400 | [diff] [blame] | 4037 | free_root_pointers(fs_info, 1); |
Chris Mason | 9ad6b7bc | 2008-04-18 16:11:30 -0400 | [diff] [blame] | 4038 | |
Josef Bacik | 13e6c37 | 2013-05-30 16:55:44 -0400 | [diff] [blame] | 4039 | iput(fs_info->btree_inode); |
Chris Mason | d6bfde8 | 2008-04-30 13:59:35 -0400 | [diff] [blame] | 4040 | |
Stefan Behrens | 21adbd5 | 2011-11-09 13:44:05 +0100 | [diff] [blame] | 4041 | #ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4042 | if (btrfs_test_opt(fs_info, CHECK_INTEGRITY)) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4043 | btrfsic_unmount(fs_info->fs_devices); |
Stefan Behrens | 21adbd5 | 2011-11-09 13:44:05 +0100 | [diff] [blame] | 4044 | #endif |
| 4045 | |
Chris Mason | dfe2502 | 2008-05-13 13:46:40 -0400 | [diff] [blame] | 4046 | btrfs_close_devices(fs_info->fs_devices); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4047 | btrfs_mapping_tree_free(&fs_info->mapping_tree); |
Chris Mason | b248a41 | 2008-04-14 09:48:18 -0400 | [diff] [blame] | 4048 | |
Miao Xie | e2d8452 | 2013-01-29 10:09:20 +0000 | [diff] [blame] | 4049 | percpu_counter_destroy(&fs_info->dirty_metadata_bytes); |
Miao Xie | 963d678 | 2013-01-29 10:10:51 +0000 | [diff] [blame] | 4050 | percpu_counter_destroy(&fs_info->delalloc_bytes); |
David Sterba | 7f8d236 | 2018-04-05 01:04:49 +0200 | [diff] [blame] | 4051 | percpu_counter_destroy(&fs_info->dev_replace.bio_counter); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 4052 | cleanup_srcu_struct(&fs_info->subvol_srcu); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4053 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4054 | btrfs_free_stripe_hash_table(fs_info); |
Josef Bacik | fd708b8 | 2017-09-29 15:43:50 -0400 | [diff] [blame] | 4055 | btrfs_free_ref_cache(fs_info); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4056 | |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 4057 | while (!list_empty(&fs_info->pinned_chunks)) { |
| 4058 | struct extent_map *em; |
| 4059 | |
| 4060 | em = list_first_entry(&fs_info->pinned_chunks, |
| 4061 | struct extent_map, list); |
| 4062 | list_del_init(&em->list); |
| 4063 | free_extent_map(em); |
| 4064 | } |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 4065 | } |
| 4066 | |
Chris Mason | b9fab91 | 2012-05-06 07:23:47 -0400 | [diff] [blame] | 4067 | int btrfs_buffer_uptodate(struct extent_buffer *buf, u64 parent_transid, |
| 4068 | int atomic) |
Chris Mason | ccd467d | 2007-06-28 15:57:36 -0400 | [diff] [blame] | 4069 | { |
Chris Mason | 1259ab7 | 2008-05-12 13:39:03 -0400 | [diff] [blame] | 4070 | int ret; |
Chris Mason | 727011e | 2010-08-06 13:21:20 -0400 | [diff] [blame] | 4071 | struct inode *btree_inode = buf->pages[0]->mapping->host; |
Chris Mason | 1259ab7 | 2008-05-12 13:39:03 -0400 | [diff] [blame] | 4072 | |
Josef Bacik | 0b32f4b | 2012-03-13 09:38:00 -0400 | [diff] [blame] | 4073 | ret = extent_buffer_uptodate(buf); |
Chris Mason | 1259ab7 | 2008-05-12 13:39:03 -0400 | [diff] [blame] | 4074 | if (!ret) |
| 4075 | return ret; |
| 4076 | |
| 4077 | ret = verify_parent_transid(&BTRFS_I(btree_inode)->io_tree, buf, |
Chris Mason | b9fab91 | 2012-05-06 07:23:47 -0400 | [diff] [blame] | 4078 | parent_transid, atomic); |
| 4079 | if (ret == -EAGAIN) |
| 4080 | return ret; |
Chris Mason | 1259ab7 | 2008-05-12 13:39:03 -0400 | [diff] [blame] | 4081 | return !ret; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4082 | } |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 4083 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4084 | void btrfs_mark_buffer_dirty(struct extent_buffer *buf) |
| 4085 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4086 | struct btrfs_fs_info *fs_info; |
Josef Bacik | 06ea65a | 2013-09-19 16:07:01 -0400 | [diff] [blame] | 4087 | struct btrfs_root *root; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4088 | u64 transid = btrfs_header_generation(buf); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 4089 | int was_dirty; |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 4090 | |
Josef Bacik | 06ea65a | 2013-09-19 16:07:01 -0400 | [diff] [blame] | 4091 | #ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS |
| 4092 | /* |
| 4093 | * This is a fast path so only do this check if we have sanity tests |
Andrea Gelmini | 52042d8 | 2018-11-28 12:05:13 +0100 | [diff] [blame] | 4094 | * enabled. Normal people shouldn't be using unmapped buffers as dirty |
Josef Bacik | 06ea65a | 2013-09-19 16:07:01 -0400 | [diff] [blame] | 4095 | * outside of the sanity tests. |
| 4096 | */ |
Nikolay Borisov | b0132a3 | 2018-06-27 16:38:24 +0300 | [diff] [blame] | 4097 | if (unlikely(test_bit(EXTENT_BUFFER_UNMAPPED, &buf->bflags))) |
Josef Bacik | 06ea65a | 2013-09-19 16:07:01 -0400 | [diff] [blame] | 4098 | return; |
| 4099 | #endif |
| 4100 | root = BTRFS_I(buf->pages[0]->mapping->host)->root; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4101 | fs_info = root->fs_info; |
Chris Mason | b9447ef8 | 2009-03-09 11:45:38 -0400 | [diff] [blame] | 4102 | btrfs_assert_tree_locked(buf); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4103 | if (transid != fs_info->generation) |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 4104 | WARN(1, KERN_CRIT "btrfs transid mismatch buffer %llu, found %llu running %llu\n", |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4105 | buf->start, transid, fs_info->generation); |
Josef Bacik | 0b32f4b | 2012-03-13 09:38:00 -0400 | [diff] [blame] | 4106 | was_dirty = set_extent_buffer_dirty(buf); |
Miao Xie | e2d8452 | 2013-01-29 10:09:20 +0000 | [diff] [blame] | 4107 | if (!was_dirty) |
Nikolay Borisov | 104b4e5 | 2017-06-20 21:01:20 +0300 | [diff] [blame] | 4108 | percpu_counter_add_batch(&fs_info->dirty_metadata_bytes, |
| 4109 | buf->len, |
| 4110 | fs_info->dirty_metadata_batch); |
Filipe Manana | 1f21ef0 | 2014-04-09 15:37:06 +0100 | [diff] [blame] | 4111 | #ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY |
Qu Wenruo | 69fc6cb | 2017-11-08 08:54:24 +0800 | [diff] [blame] | 4112 | /* |
| 4113 | * Since btrfs_mark_buffer_dirty() can be called with item pointer set |
| 4114 | * but item data not updated. |
| 4115 | * So here we should only check item pointers, not item data. |
| 4116 | */ |
| 4117 | if (btrfs_header_level(buf) == 0 && |
Qu Wenruo | 2f65954 | 2018-01-25 14:56:18 +0800 | [diff] [blame] | 4118 | btrfs_check_leaf_relaxed(fs_info, buf)) { |
David Sterba | a4f7875 | 2017-06-29 18:37:49 +0200 | [diff] [blame] | 4119 | btrfs_print_leaf(buf); |
Filipe Manana | 1f21ef0 | 2014-04-09 15:37:06 +0100 | [diff] [blame] | 4120 | ASSERT(0); |
| 4121 | } |
| 4122 | #endif |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 4123 | } |
| 4124 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4125 | static void __btrfs_btree_balance_dirty(struct btrfs_fs_info *fs_info, |
Liu Bo | b53d3f5 | 2012-11-14 14:34:34 +0000 | [diff] [blame] | 4126 | int flush_delayed) |
Chris Mason | 35b7e47 | 2007-05-02 15:53:43 -0400 | [diff] [blame] | 4127 | { |
Chris Mason | 188de64 | 2008-05-09 11:52:25 -0400 | [diff] [blame] | 4128 | /* |
| 4129 | * looks as though older kernels can get into trouble with |
| 4130 | * this code, they end up stuck in balance_dirty_pages forever |
| 4131 | */ |
Miao Xie | e2d8452 | 2013-01-29 10:09:20 +0000 | [diff] [blame] | 4132 | int ret; |
Chris Mason | d6bfde8 | 2008-04-30 13:59:35 -0400 | [diff] [blame] | 4133 | |
Jens Axboe | 6933c02 | 2009-03-17 09:36:37 +0100 | [diff] [blame] | 4134 | if (current->flags & PF_MEMALLOC) |
Chris Mason | d6bfde8 | 2008-04-30 13:59:35 -0400 | [diff] [blame] | 4135 | return; |
| 4136 | |
Liu Bo | b53d3f5 | 2012-11-14 14:34:34 +0000 | [diff] [blame] | 4137 | if (flush_delayed) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4138 | btrfs_balance_delayed_items(fs_info); |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 4139 | |
Ethan Lien | d814a49 | 2018-07-02 15:44:58 +0800 | [diff] [blame] | 4140 | ret = __percpu_counter_compare(&fs_info->dirty_metadata_bytes, |
| 4141 | BTRFS_DIRTY_METADATA_THRESH, |
| 4142 | fs_info->dirty_metadata_batch); |
Miao Xie | e2d8452 | 2013-01-29 10:09:20 +0000 | [diff] [blame] | 4143 | if (ret > 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4144 | balance_dirty_pages_ratelimited(fs_info->btree_inode->i_mapping); |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 4145 | } |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 4146 | } |
| 4147 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4148 | void btrfs_btree_balance_dirty(struct btrfs_fs_info *fs_info) |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 4149 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4150 | __btrfs_btree_balance_dirty(fs_info, 1); |
Liu Bo | b53d3f5 | 2012-11-14 14:34:34 +0000 | [diff] [blame] | 4151 | } |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 4152 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4153 | void btrfs_btree_balance_dirty_nodelay(struct btrfs_fs_info *fs_info) |
Liu Bo | b53d3f5 | 2012-11-14 14:34:34 +0000 | [diff] [blame] | 4154 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4155 | __btrfs_btree_balance_dirty(fs_info, 0); |
Chris Mason | 35b7e47 | 2007-05-02 15:53:43 -0400 | [diff] [blame] | 4156 | } |
Chris Mason | 6b80053 | 2007-10-15 16:17:34 -0400 | [diff] [blame] | 4157 | |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 4158 | int btrfs_read_buffer(struct extent_buffer *buf, u64 parent_transid, int level, |
| 4159 | struct btrfs_key *first_key) |
Chris Mason | 6b80053 | 2007-10-15 16:17:34 -0400 | [diff] [blame] | 4160 | { |
David Sterba | 5ab12d1 | 2019-03-20 14:56:39 +0100 | [diff] [blame^] | 4161 | return btree_read_extent_buffer_pages(buf, parent_transid, |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 4162 | level, first_key); |
Chris Mason | 6b80053 | 2007-10-15 16:17:34 -0400 | [diff] [blame] | 4163 | } |
Chris Mason | 0da5468 | 2007-11-07 21:08:01 -0500 | [diff] [blame] | 4164 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4165 | static void btrfs_error_commit_super(struct btrfs_fs_info *fs_info) |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4166 | { |
Nikolay Borisov | fe816d0 | 2018-04-27 12:21:53 +0300 | [diff] [blame] | 4167 | /* cleanup FS via transaction */ |
| 4168 | btrfs_cleanup_transaction(fs_info); |
| 4169 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4170 | mutex_lock(&fs_info->cleaner_mutex); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4171 | btrfs_run_delayed_iputs(fs_info); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4172 | mutex_unlock(&fs_info->cleaner_mutex); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4173 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4174 | down_write(&fs_info->cleanup_work_sem); |
| 4175 | up_write(&fs_info->cleanup_work_sem); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4176 | } |
| 4177 | |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 4178 | static void btrfs_destroy_ordered_extents(struct btrfs_root *root) |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4179 | { |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4180 | struct btrfs_ordered_extent *ordered; |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4181 | |
Miao Xie | 199c2a9 | 2013-05-15 07:48:23 +0000 | [diff] [blame] | 4182 | spin_lock(&root->ordered_extent_lock); |
Josef Bacik | 779880e | 2013-01-31 14:30:08 -0500 | [diff] [blame] | 4183 | /* |
| 4184 | * This will just short circuit the ordered completion stuff which will |
| 4185 | * make sure the ordered extent gets properly cleaned up. |
| 4186 | */ |
Miao Xie | 199c2a9 | 2013-05-15 07:48:23 +0000 | [diff] [blame] | 4187 | list_for_each_entry(ordered, &root->ordered_extents, |
Josef Bacik | 779880e | 2013-01-31 14:30:08 -0500 | [diff] [blame] | 4188 | root_extent_list) |
| 4189 | set_bit(BTRFS_ORDERED_IOERR, &ordered->flags); |
Miao Xie | 199c2a9 | 2013-05-15 07:48:23 +0000 | [diff] [blame] | 4190 | spin_unlock(&root->ordered_extent_lock); |
| 4191 | } |
| 4192 | |
| 4193 | static void btrfs_destroy_all_ordered_extents(struct btrfs_fs_info *fs_info) |
| 4194 | { |
| 4195 | struct btrfs_root *root; |
| 4196 | struct list_head splice; |
| 4197 | |
| 4198 | INIT_LIST_HEAD(&splice); |
| 4199 | |
| 4200 | spin_lock(&fs_info->ordered_root_lock); |
| 4201 | list_splice_init(&fs_info->ordered_roots, &splice); |
| 4202 | while (!list_empty(&splice)) { |
| 4203 | root = list_first_entry(&splice, struct btrfs_root, |
| 4204 | ordered_root); |
Josef Bacik | 1de2cfd | 2013-09-27 16:36:02 -0400 | [diff] [blame] | 4205 | list_move_tail(&root->ordered_root, |
| 4206 | &fs_info->ordered_roots); |
Miao Xie | 199c2a9 | 2013-05-15 07:48:23 +0000 | [diff] [blame] | 4207 | |
Liu Bo | 2a85d9c | 2014-02-10 17:07:16 +0800 | [diff] [blame] | 4208 | spin_unlock(&fs_info->ordered_root_lock); |
Miao Xie | 199c2a9 | 2013-05-15 07:48:23 +0000 | [diff] [blame] | 4209 | btrfs_destroy_ordered_extents(root); |
| 4210 | |
Liu Bo | 2a85d9c | 2014-02-10 17:07:16 +0800 | [diff] [blame] | 4211 | cond_resched(); |
| 4212 | spin_lock(&fs_info->ordered_root_lock); |
Miao Xie | 199c2a9 | 2013-05-15 07:48:23 +0000 | [diff] [blame] | 4213 | } |
| 4214 | spin_unlock(&fs_info->ordered_root_lock); |
Josef Bacik | 74d5d22 | 2018-11-21 14:05:45 -0500 | [diff] [blame] | 4215 | |
| 4216 | /* |
| 4217 | * We need this here because if we've been flipped read-only we won't |
| 4218 | * get sync() from the umount, so we need to make sure any ordered |
| 4219 | * extents that haven't had their dirty pages IO start writeout yet |
| 4220 | * actually get run and error out properly. |
| 4221 | */ |
| 4222 | btrfs_wait_ordered_roots(fs_info, U64_MAX, 0, (u64)-1); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4223 | } |
| 4224 | |
Stefan Behrens | 35a3621 | 2013-08-14 18:12:25 +0200 | [diff] [blame] | 4225 | static int btrfs_destroy_delayed_refs(struct btrfs_transaction *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4226 | struct btrfs_fs_info *fs_info) |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4227 | { |
| 4228 | struct rb_node *node; |
| 4229 | struct btrfs_delayed_ref_root *delayed_refs; |
| 4230 | struct btrfs_delayed_ref_node *ref; |
| 4231 | int ret = 0; |
| 4232 | |
| 4233 | delayed_refs = &trans->delayed_refs; |
| 4234 | |
| 4235 | spin_lock(&delayed_refs->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 4236 | if (atomic_read(&delayed_refs->num_entries) == 0) { |
David Sterba | cfece4d | 2011-04-25 19:43:52 -0400 | [diff] [blame] | 4237 | spin_unlock(&delayed_refs->lock); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4238 | btrfs_info(fs_info, "delayed_refs has NO entry"); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4239 | return ret; |
| 4240 | } |
| 4241 | |
Liu Bo | 5c9d028 | 2018-08-23 03:51:49 +0800 | [diff] [blame] | 4242 | while ((node = rb_first_cached(&delayed_refs->href_root)) != NULL) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 4243 | struct btrfs_delayed_ref_head *head; |
Josef Bacik | 0e0adbc | 2017-10-19 14:16:00 -0400 | [diff] [blame] | 4244 | struct rb_node *n; |
Josef Bacik | e78417d | 2013-06-03 16:42:36 -0400 | [diff] [blame] | 4245 | bool pin_bytes = false; |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4246 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 4247 | head = rb_entry(node, struct btrfs_delayed_ref_head, |
| 4248 | href_node); |
Josef Bacik | 3069bd2 | 2018-11-21 14:05:39 -0500 | [diff] [blame] | 4249 | if (btrfs_delayed_ref_lock(delayed_refs, head)) |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 4250 | continue; |
Josef Bacik | 3069bd2 | 2018-11-21 14:05:39 -0500 | [diff] [blame] | 4251 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 4252 | spin_lock(&head->lock); |
Liu Bo | e3d0396 | 2018-08-23 03:51:50 +0800 | [diff] [blame] | 4253 | while ((n = rb_first_cached(&head->ref_tree)) != NULL) { |
Josef Bacik | 0e0adbc | 2017-10-19 14:16:00 -0400 | [diff] [blame] | 4254 | ref = rb_entry(n, struct btrfs_delayed_ref_node, |
| 4255 | ref_node); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 4256 | ref->in_tree = 0; |
Liu Bo | e3d0396 | 2018-08-23 03:51:50 +0800 | [diff] [blame] | 4257 | rb_erase_cached(&ref->ref_node, &head->ref_tree); |
Josef Bacik | 0e0adbc | 2017-10-19 14:16:00 -0400 | [diff] [blame] | 4258 | RB_CLEAR_NODE(&ref->ref_node); |
Wang Xiaoguang | 1d57ee9 | 2016-10-26 18:07:33 +0800 | [diff] [blame] | 4259 | if (!list_empty(&ref->add_list)) |
| 4260 | list_del(&ref->add_list); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 4261 | atomic_dec(&delayed_refs->num_entries); |
| 4262 | btrfs_put_delayed_ref(ref); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 4263 | } |
| 4264 | if (head->must_insert_reserved) |
| 4265 | pin_bytes = true; |
| 4266 | btrfs_free_delayed_extent_op(head->extent_op); |
Josef Bacik | fa781ce | 2018-11-21 14:05:40 -0500 | [diff] [blame] | 4267 | btrfs_delete_ref_head(delayed_refs, head); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 4268 | spin_unlock(&head->lock); |
| 4269 | spin_unlock(&delayed_refs->lock); |
| 4270 | mutex_unlock(&head->mutex); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4271 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 4272 | if (pin_bytes) |
Josef Bacik | d278850 | 2017-09-29 15:43:57 -0400 | [diff] [blame] | 4273 | btrfs_pin_extent(fs_info, head->bytenr, |
| 4274 | head->num_bytes, 1); |
Josef Bacik | 31890da | 2018-11-21 14:05:41 -0500 | [diff] [blame] | 4275 | btrfs_cleanup_ref_head_accounting(fs_info, delayed_refs, head); |
Josef Bacik | d278850 | 2017-09-29 15:43:57 -0400 | [diff] [blame] | 4276 | btrfs_put_delayed_ref_head(head); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4277 | cond_resched(); |
| 4278 | spin_lock(&delayed_refs->lock); |
| 4279 | } |
| 4280 | |
| 4281 | spin_unlock(&delayed_refs->lock); |
| 4282 | |
| 4283 | return ret; |
| 4284 | } |
| 4285 | |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 4286 | static void btrfs_destroy_delalloc_inodes(struct btrfs_root *root) |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4287 | { |
| 4288 | struct btrfs_inode *btrfs_inode; |
| 4289 | struct list_head splice; |
| 4290 | |
| 4291 | INIT_LIST_HEAD(&splice); |
| 4292 | |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 4293 | spin_lock(&root->delalloc_lock); |
| 4294 | list_splice_init(&root->delalloc_inodes, &splice); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4295 | |
| 4296 | while (!list_empty(&splice)) { |
Nikolay Borisov | fe816d0 | 2018-04-27 12:21:53 +0300 | [diff] [blame] | 4297 | struct inode *inode = NULL; |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 4298 | btrfs_inode = list_first_entry(&splice, struct btrfs_inode, |
| 4299 | delalloc_inodes); |
Nikolay Borisov | fe816d0 | 2018-04-27 12:21:53 +0300 | [diff] [blame] | 4300 | __btrfs_del_delalloc_inode(root, btrfs_inode); |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 4301 | spin_unlock(&root->delalloc_lock); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4302 | |
Nikolay Borisov | fe816d0 | 2018-04-27 12:21:53 +0300 | [diff] [blame] | 4303 | /* |
| 4304 | * Make sure we get a live inode and that it'll not disappear |
| 4305 | * meanwhile. |
| 4306 | */ |
| 4307 | inode = igrab(&btrfs_inode->vfs_inode); |
| 4308 | if (inode) { |
| 4309 | invalidate_inode_pages2(inode->i_mapping); |
| 4310 | iput(inode); |
| 4311 | } |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 4312 | spin_lock(&root->delalloc_lock); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4313 | } |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 4314 | spin_unlock(&root->delalloc_lock); |
| 4315 | } |
| 4316 | |
| 4317 | static void btrfs_destroy_all_delalloc_inodes(struct btrfs_fs_info *fs_info) |
| 4318 | { |
| 4319 | struct btrfs_root *root; |
| 4320 | struct list_head splice; |
| 4321 | |
| 4322 | INIT_LIST_HEAD(&splice); |
| 4323 | |
| 4324 | spin_lock(&fs_info->delalloc_root_lock); |
| 4325 | list_splice_init(&fs_info->delalloc_roots, &splice); |
| 4326 | while (!list_empty(&splice)) { |
| 4327 | root = list_first_entry(&splice, struct btrfs_root, |
| 4328 | delalloc_root); |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 4329 | root = btrfs_grab_fs_root(root); |
| 4330 | BUG_ON(!root); |
| 4331 | spin_unlock(&fs_info->delalloc_root_lock); |
| 4332 | |
| 4333 | btrfs_destroy_delalloc_inodes(root); |
| 4334 | btrfs_put_fs_root(root); |
| 4335 | |
| 4336 | spin_lock(&fs_info->delalloc_root_lock); |
| 4337 | } |
| 4338 | spin_unlock(&fs_info->delalloc_root_lock); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4339 | } |
| 4340 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4341 | static int btrfs_destroy_marked_extents(struct btrfs_fs_info *fs_info, |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4342 | struct extent_io_tree *dirty_pages, |
| 4343 | int mark) |
| 4344 | { |
| 4345 | int ret; |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4346 | struct extent_buffer *eb; |
| 4347 | u64 start = 0; |
| 4348 | u64 end; |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4349 | |
| 4350 | while (1) { |
| 4351 | ret = find_first_extent_bit(dirty_pages, start, &start, &end, |
Josef Bacik | e613887 | 2012-09-27 17:07:30 -0400 | [diff] [blame] | 4352 | mark, NULL); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4353 | if (ret) |
| 4354 | break; |
| 4355 | |
David Sterba | 9116621 | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 4356 | clear_extent_bits(dirty_pages, start, end, mark); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4357 | while (start <= end) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4358 | eb = find_extent_buffer(fs_info, start); |
| 4359 | start += fs_info->nodesize; |
Josef Bacik | fd8b2b6 | 2013-04-24 16:41:19 -0400 | [diff] [blame] | 4360 | if (!eb) |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4361 | continue; |
Josef Bacik | fd8b2b6 | 2013-04-24 16:41:19 -0400 | [diff] [blame] | 4362 | wait_on_extent_buffer_writeback(eb); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4363 | |
Josef Bacik | fd8b2b6 | 2013-04-24 16:41:19 -0400 | [diff] [blame] | 4364 | if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, |
| 4365 | &eb->bflags)) |
| 4366 | clear_extent_buffer_dirty(eb); |
| 4367 | free_extent_buffer_stale(eb); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4368 | } |
| 4369 | } |
| 4370 | |
| 4371 | return ret; |
| 4372 | } |
| 4373 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4374 | static int btrfs_destroy_pinned_extent(struct btrfs_fs_info *fs_info, |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4375 | struct extent_io_tree *pinned_extents) |
| 4376 | { |
| 4377 | struct extent_io_tree *unpin; |
| 4378 | u64 start; |
| 4379 | u64 end; |
| 4380 | int ret; |
Liu Bo | ed0eaa1 | 2012-06-14 02:23:21 -0600 | [diff] [blame] | 4381 | bool loop = true; |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4382 | |
| 4383 | unpin = pinned_extents; |
Liu Bo | ed0eaa1 | 2012-06-14 02:23:21 -0600 | [diff] [blame] | 4384 | again: |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4385 | while (1) { |
Filipe Manana | 0e6ec38 | 2018-11-16 13:04:44 +0000 | [diff] [blame] | 4386 | struct extent_state *cached_state = NULL; |
| 4387 | |
Lu Fengqi | fcd5e74 | 2018-10-24 20:24:03 +0800 | [diff] [blame] | 4388 | /* |
| 4389 | * The btrfs_finish_extent_commit() may get the same range as |
| 4390 | * ours between find_first_extent_bit and clear_extent_dirty. |
| 4391 | * Hence, hold the unused_bg_unpin_mutex to avoid double unpin |
| 4392 | * the same extent range. |
| 4393 | */ |
| 4394 | mutex_lock(&fs_info->unused_bg_unpin_mutex); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4395 | ret = find_first_extent_bit(unpin, 0, &start, &end, |
Filipe Manana | 0e6ec38 | 2018-11-16 13:04:44 +0000 | [diff] [blame] | 4396 | EXTENT_DIRTY, &cached_state); |
Lu Fengqi | fcd5e74 | 2018-10-24 20:24:03 +0800 | [diff] [blame] | 4397 | if (ret) { |
| 4398 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4399 | break; |
Lu Fengqi | fcd5e74 | 2018-10-24 20:24:03 +0800 | [diff] [blame] | 4400 | } |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4401 | |
Filipe Manana | 0e6ec38 | 2018-11-16 13:04:44 +0000 | [diff] [blame] | 4402 | clear_extent_dirty(unpin, start, end, &cached_state); |
| 4403 | free_extent_state(cached_state); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4404 | btrfs_error_unpin_extent_range(fs_info, start, end); |
Lu Fengqi | fcd5e74 | 2018-10-24 20:24:03 +0800 | [diff] [blame] | 4405 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4406 | cond_resched(); |
| 4407 | } |
| 4408 | |
Liu Bo | ed0eaa1 | 2012-06-14 02:23:21 -0600 | [diff] [blame] | 4409 | if (loop) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4410 | if (unpin == &fs_info->freed_extents[0]) |
| 4411 | unpin = &fs_info->freed_extents[1]; |
Liu Bo | ed0eaa1 | 2012-06-14 02:23:21 -0600 | [diff] [blame] | 4412 | else |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4413 | unpin = &fs_info->freed_extents[0]; |
Liu Bo | ed0eaa1 | 2012-06-14 02:23:21 -0600 | [diff] [blame] | 4414 | loop = false; |
| 4415 | goto again; |
| 4416 | } |
| 4417 | |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4418 | return 0; |
| 4419 | } |
| 4420 | |
Liu Bo | c79a175 | 2016-07-20 17:44:12 -0700 | [diff] [blame] | 4421 | static void btrfs_cleanup_bg_io(struct btrfs_block_group_cache *cache) |
| 4422 | { |
| 4423 | struct inode *inode; |
| 4424 | |
| 4425 | inode = cache->io_ctl.inode; |
| 4426 | if (inode) { |
| 4427 | invalidate_inode_pages2(inode->i_mapping); |
| 4428 | BTRFS_I(inode)->generation = 0; |
| 4429 | cache->io_ctl.inode = NULL; |
| 4430 | iput(inode); |
| 4431 | } |
| 4432 | btrfs_put_block_group(cache); |
| 4433 | } |
| 4434 | |
| 4435 | void btrfs_cleanup_dirty_bgs(struct btrfs_transaction *cur_trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4436 | struct btrfs_fs_info *fs_info) |
Liu Bo | c79a175 | 2016-07-20 17:44:12 -0700 | [diff] [blame] | 4437 | { |
| 4438 | struct btrfs_block_group_cache *cache; |
| 4439 | |
| 4440 | spin_lock(&cur_trans->dirty_bgs_lock); |
| 4441 | while (!list_empty(&cur_trans->dirty_bgs)) { |
| 4442 | cache = list_first_entry(&cur_trans->dirty_bgs, |
| 4443 | struct btrfs_block_group_cache, |
| 4444 | dirty_list); |
Liu Bo | c79a175 | 2016-07-20 17:44:12 -0700 | [diff] [blame] | 4445 | |
| 4446 | if (!list_empty(&cache->io_list)) { |
| 4447 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 4448 | list_del_init(&cache->io_list); |
| 4449 | btrfs_cleanup_bg_io(cache); |
| 4450 | spin_lock(&cur_trans->dirty_bgs_lock); |
| 4451 | } |
| 4452 | |
| 4453 | list_del_init(&cache->dirty_list); |
| 4454 | spin_lock(&cache->lock); |
| 4455 | cache->disk_cache_state = BTRFS_DC_ERROR; |
| 4456 | spin_unlock(&cache->lock); |
| 4457 | |
| 4458 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 4459 | btrfs_put_block_group(cache); |
Josef Bacik | ba2c4d4 | 2018-12-03 10:20:33 -0500 | [diff] [blame] | 4460 | btrfs_delayed_refs_rsv_release(fs_info, 1); |
Liu Bo | c79a175 | 2016-07-20 17:44:12 -0700 | [diff] [blame] | 4461 | spin_lock(&cur_trans->dirty_bgs_lock); |
| 4462 | } |
| 4463 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 4464 | |
Nikolay Borisov | 45ae2c1 | 2018-02-08 18:25:18 +0200 | [diff] [blame] | 4465 | /* |
| 4466 | * Refer to the definition of io_bgs member for details why it's safe |
| 4467 | * to use it without any locking |
| 4468 | */ |
Liu Bo | c79a175 | 2016-07-20 17:44:12 -0700 | [diff] [blame] | 4469 | while (!list_empty(&cur_trans->io_bgs)) { |
| 4470 | cache = list_first_entry(&cur_trans->io_bgs, |
| 4471 | struct btrfs_block_group_cache, |
| 4472 | io_list); |
Liu Bo | c79a175 | 2016-07-20 17:44:12 -0700 | [diff] [blame] | 4473 | |
| 4474 | list_del_init(&cache->io_list); |
| 4475 | spin_lock(&cache->lock); |
| 4476 | cache->disk_cache_state = BTRFS_DC_ERROR; |
| 4477 | spin_unlock(&cache->lock); |
| 4478 | btrfs_cleanup_bg_io(cache); |
| 4479 | } |
| 4480 | } |
| 4481 | |
Jeff Mahoney | 49b25e0 | 2012-03-01 17:24:58 +0100 | [diff] [blame] | 4482 | void btrfs_cleanup_one_transaction(struct btrfs_transaction *cur_trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4483 | struct btrfs_fs_info *fs_info) |
Jeff Mahoney | 49b25e0 | 2012-03-01 17:24:58 +0100 | [diff] [blame] | 4484 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4485 | btrfs_cleanup_dirty_bgs(cur_trans, fs_info); |
Liu Bo | c79a175 | 2016-07-20 17:44:12 -0700 | [diff] [blame] | 4486 | ASSERT(list_empty(&cur_trans->dirty_bgs)); |
| 4487 | ASSERT(list_empty(&cur_trans->io_bgs)); |
| 4488 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4489 | btrfs_destroy_delayed_refs(cur_trans, fs_info); |
Jeff Mahoney | 49b25e0 | 2012-03-01 17:24:58 +0100 | [diff] [blame] | 4490 | |
Miao Xie | 4a9d8bd | 2013-05-17 03:53:43 +0000 | [diff] [blame] | 4491 | cur_trans->state = TRANS_STATE_COMMIT_START; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4492 | wake_up(&fs_info->transaction_blocked_wait); |
Jeff Mahoney | 49b25e0 | 2012-03-01 17:24:58 +0100 | [diff] [blame] | 4493 | |
Miao Xie | 4a9d8bd | 2013-05-17 03:53:43 +0000 | [diff] [blame] | 4494 | cur_trans->state = TRANS_STATE_UNBLOCKED; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4495 | wake_up(&fs_info->transaction_wait); |
Jeff Mahoney | 49b25e0 | 2012-03-01 17:24:58 +0100 | [diff] [blame] | 4496 | |
Jeff Mahoney | ccdf9b3 | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4497 | btrfs_destroy_delayed_inodes(fs_info); |
| 4498 | btrfs_assert_delayed_root_empty(fs_info); |
Jeff Mahoney | 49b25e0 | 2012-03-01 17:24:58 +0100 | [diff] [blame] | 4499 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4500 | btrfs_destroy_marked_extents(fs_info, &cur_trans->dirty_pages, |
Jeff Mahoney | 49b25e0 | 2012-03-01 17:24:58 +0100 | [diff] [blame] | 4501 | EXTENT_DIRTY); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4502 | btrfs_destroy_pinned_extent(fs_info, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4503 | fs_info->pinned_extents); |
Jeff Mahoney | 49b25e0 | 2012-03-01 17:24:58 +0100 | [diff] [blame] | 4504 | |
Miao Xie | 4a9d8bd | 2013-05-17 03:53:43 +0000 | [diff] [blame] | 4505 | cur_trans->state =TRANS_STATE_COMPLETED; |
| 4506 | wake_up(&cur_trans->commit_wait); |
Jeff Mahoney | 49b25e0 | 2012-03-01 17:24:58 +0100 | [diff] [blame] | 4507 | } |
| 4508 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4509 | static int btrfs_cleanup_transaction(struct btrfs_fs_info *fs_info) |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4510 | { |
| 4511 | struct btrfs_transaction *t; |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4512 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4513 | mutex_lock(&fs_info->transaction_kthread_mutex); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4514 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4515 | spin_lock(&fs_info->trans_lock); |
| 4516 | while (!list_empty(&fs_info->trans_list)) { |
| 4517 | t = list_first_entry(&fs_info->trans_list, |
Josef Bacik | 724e231 | 2013-09-30 11:36:38 -0400 | [diff] [blame] | 4518 | struct btrfs_transaction, list); |
| 4519 | if (t->state >= TRANS_STATE_COMMIT_START) { |
Elena Reshetova | 9b64f57 | 2017-03-03 10:55:11 +0200 | [diff] [blame] | 4520 | refcount_inc(&t->use_count); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4521 | spin_unlock(&fs_info->trans_lock); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4522 | btrfs_wait_for_commit(fs_info, t->transid); |
Josef Bacik | 724e231 | 2013-09-30 11:36:38 -0400 | [diff] [blame] | 4523 | btrfs_put_transaction(t); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4524 | spin_lock(&fs_info->trans_lock); |
Josef Bacik | 724e231 | 2013-09-30 11:36:38 -0400 | [diff] [blame] | 4525 | continue; |
| 4526 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4527 | if (t == fs_info->running_transaction) { |
Josef Bacik | 724e231 | 2013-09-30 11:36:38 -0400 | [diff] [blame] | 4528 | t->state = TRANS_STATE_COMMIT_DOING; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4529 | spin_unlock(&fs_info->trans_lock); |
Josef Bacik | 724e231 | 2013-09-30 11:36:38 -0400 | [diff] [blame] | 4530 | /* |
| 4531 | * We wait for 0 num_writers since we don't hold a trans |
| 4532 | * handle open currently for this transaction. |
| 4533 | */ |
| 4534 | wait_event(t->writer_wait, |
| 4535 | atomic_read(&t->num_writers) == 0); |
| 4536 | } else { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4537 | spin_unlock(&fs_info->trans_lock); |
Josef Bacik | 724e231 | 2013-09-30 11:36:38 -0400 | [diff] [blame] | 4538 | } |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4539 | btrfs_cleanup_one_transaction(t, fs_info); |
Josef Bacik | a4abeea | 2011-04-11 17:25:13 -0400 | [diff] [blame] | 4540 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4541 | spin_lock(&fs_info->trans_lock); |
| 4542 | if (t == fs_info->running_transaction) |
| 4543 | fs_info->running_transaction = NULL; |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4544 | list_del_init(&t->list); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4545 | spin_unlock(&fs_info->trans_lock); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4546 | |
Josef Bacik | 724e231 | 2013-09-30 11:36:38 -0400 | [diff] [blame] | 4547 | btrfs_put_transaction(t); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4548 | trace_btrfs_transaction_commit(fs_info->tree_root); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4549 | spin_lock(&fs_info->trans_lock); |
Josef Bacik | 724e231 | 2013-09-30 11:36:38 -0400 | [diff] [blame] | 4550 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4551 | spin_unlock(&fs_info->trans_lock); |
| 4552 | btrfs_destroy_all_ordered_extents(fs_info); |
Jeff Mahoney | ccdf9b3 | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4553 | btrfs_destroy_delayed_inodes(fs_info); |
| 4554 | btrfs_assert_delayed_root_empty(fs_info); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4555 | btrfs_destroy_pinned_extent(fs_info, fs_info->pinned_extents); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4556 | btrfs_destroy_all_delalloc_inodes(fs_info); |
| 4557 | mutex_unlock(&fs_info->transaction_kthread_mutex); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 4558 | |
| 4559 | return 0; |
| 4560 | } |
| 4561 | |
David Sterba | e8c9f18 | 2015-01-02 18:23:10 +0100 | [diff] [blame] | 4562 | static const struct extent_io_ops btree_extent_io_ops = { |
David Sterba | 4d53ddd | 2017-02-17 15:27:44 +0100 | [diff] [blame] | 4563 | /* mandatory callbacks */ |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4564 | .submit_bio_hook = btree_submit_bio_hook, |
David Sterba | 4d53ddd | 2017-02-17 15:27:44 +0100 | [diff] [blame] | 4565 | .readpage_end_io_hook = btree_readpage_end_io_hook, |
Chris Mason | 0da5468 | 2007-11-07 21:08:01 -0500 | [diff] [blame] | 4566 | }; |