David Sterba | c1d7c51 | 2018-04-03 19:23:33 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2008 Oracle. All rights reserved. |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <linux/sched.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 7 | #include <linux/slab.h> |
Miao Xie | c6adc9c | 2013-05-28 10:05:39 +0000 | [diff] [blame] | 8 | #include <linux/blkdev.h> |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 9 | #include <linux/list_sort.h> |
Jeff Layton | c7f88c4 | 2017-12-11 06:35:12 -0500 | [diff] [blame] | 10 | #include <linux/iversion.h> |
David Sterba | 602cbe9 | 2019-08-21 18:48:25 +0200 | [diff] [blame] | 11 | #include "misc.h" |
Nikolay Borisov | 9678c54 | 2018-01-08 11:45:05 +0200 | [diff] [blame] | 12 | #include "ctree.h" |
Miao Xie | 995946d | 2014-04-02 19:51:06 +0800 | [diff] [blame] | 13 | #include "tree-log.h" |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 14 | #include "disk-io.h" |
| 15 | #include "locking.h" |
| 16 | #include "print-tree.h" |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 17 | #include "backref.h" |
Anand Jain | ebb8765 | 2016-03-10 17:26:59 +0800 | [diff] [blame] | 18 | #include "compression.h" |
Qu Wenruo | df2c95f | 2016-08-15 10:36:52 +0800 | [diff] [blame] | 19 | #include "qgroup.h" |
Nikolay Borisov | 6787bb9 | 2020-01-20 16:09:10 +0200 | [diff] [blame] | 20 | #include "block-group.h" |
| 21 | #include "space-info.h" |
Naohiro Aota | d3575156 | 2021-02-04 19:21:54 +0900 | [diff] [blame] | 22 | #include "zoned.h" |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 23 | |
| 24 | /* magic values for the inode_only field in btrfs_log_inode: |
| 25 | * |
| 26 | * LOG_INODE_ALL means to log everything |
| 27 | * LOG_INODE_EXISTS means to log just enough to recreate the inode |
| 28 | * during log replay |
| 29 | */ |
David Sterba | e13976c | 2019-08-01 14:50:30 +0200 | [diff] [blame] | 30 | enum { |
| 31 | LOG_INODE_ALL, |
| 32 | LOG_INODE_EXISTS, |
| 33 | LOG_OTHER_INODE, |
| 34 | LOG_OTHER_INODE_ALL, |
| 35 | }; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 36 | |
| 37 | /* |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 38 | * directory trouble cases |
| 39 | * |
| 40 | * 1) on rename or unlink, if the inode being unlinked isn't in the fsync |
| 41 | * log, we must force a full commit before doing an fsync of the directory |
| 42 | * where the unlink was done. |
| 43 | * ---> record transid of last unlink/rename per directory |
| 44 | * |
| 45 | * mkdir foo/some_dir |
| 46 | * normal commit |
| 47 | * rename foo/some_dir foo2/some_dir |
| 48 | * mkdir foo/some_dir |
| 49 | * fsync foo/some_dir/some_file |
| 50 | * |
| 51 | * The fsync above will unlink the original some_dir without recording |
| 52 | * it in its new location (foo2). After a crash, some_dir will be gone |
| 53 | * unless the fsync of some_file forces a full commit |
| 54 | * |
| 55 | * 2) we must log any new names for any file or dir that is in the fsync |
| 56 | * log. ---> check inode while renaming/linking. |
| 57 | * |
| 58 | * 2a) we must log any new names for any file or dir during rename |
| 59 | * when the directory they are being removed from was logged. |
| 60 | * ---> check inode and old parent dir during rename |
| 61 | * |
| 62 | * 2a is actually the more important variant. With the extra logging |
| 63 | * a crash might unlink the old name without recreating the new one |
| 64 | * |
| 65 | * 3) after a crash, we must go through any directories with a link count |
| 66 | * of zero and redo the rm -rf |
| 67 | * |
| 68 | * mkdir f1/foo |
| 69 | * normal commit |
| 70 | * rm -rf f1/foo |
| 71 | * fsync(f1) |
| 72 | * |
| 73 | * The directory f1 was fully removed from the FS, but fsync was never |
| 74 | * called on f1, only its parent dir. After a crash the rm -rf must |
| 75 | * be replayed. This must be able to recurse down the entire |
| 76 | * directory tree. The inode link count fixup code takes care of the |
| 77 | * ugly details. |
| 78 | */ |
| 79 | |
| 80 | /* |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 81 | * stages for the tree walking. The first |
| 82 | * stage (0) is to only pin down the blocks we find |
| 83 | * the second stage (1) is to make sure that all the inodes |
| 84 | * we find in the log are created in the subvolume. |
| 85 | * |
| 86 | * The last stage is to deal with directories and links and extents |
| 87 | * and all the other fun semantics |
| 88 | */ |
David Sterba | e13976c | 2019-08-01 14:50:30 +0200 | [diff] [blame] | 89 | enum { |
| 90 | LOG_WALK_PIN_ONLY, |
| 91 | LOG_WALK_REPLAY_INODES, |
| 92 | LOG_WALK_REPLAY_DIR_INDEX, |
| 93 | LOG_WALK_REPLAY_ALL, |
| 94 | }; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 95 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 96 | static int btrfs_log_inode(struct btrfs_trans_handle *trans, |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 97 | struct btrfs_root *root, struct btrfs_inode *inode, |
Filipe Manana | 49dae1b | 2014-09-06 22:34:39 +0100 | [diff] [blame] | 98 | int inode_only, |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 99 | struct btrfs_log_ctx *ctx); |
Yan Zheng | ec051c0 | 2009-01-05 15:43:42 -0500 | [diff] [blame] | 100 | static int link_to_fixup_dir(struct btrfs_trans_handle *trans, |
| 101 | struct btrfs_root *root, |
| 102 | struct btrfs_path *path, u64 objectid); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 103 | static noinline int replay_dir_deletes(struct btrfs_trans_handle *trans, |
| 104 | struct btrfs_root *root, |
| 105 | struct btrfs_root *log, |
| 106 | struct btrfs_path *path, |
| 107 | u64 dirid, int del_all); |
Naohiro Aota | fa1a0f4 | 2021-02-04 19:22:19 +0900 | [diff] [blame] | 108 | static void wait_log_commit(struct btrfs_root *root, int transid); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 109 | |
| 110 | /* |
| 111 | * tree logging is a special write ahead log used to make sure that |
| 112 | * fsyncs and O_SYNCs can happen without doing full tree commits. |
| 113 | * |
| 114 | * Full tree commits are expensive because they require commonly |
| 115 | * modified blocks to be recowed, creating many dirty pages in the |
| 116 | * extent tree an 4x-6x higher write load than ext3. |
| 117 | * |
| 118 | * Instead of doing a tree commit on every fsync, we use the |
| 119 | * key ranges and transaction ids to find items for a given file or directory |
| 120 | * that have changed in this transaction. Those items are copied into |
| 121 | * a special tree (one per subvolume root), that tree is written to disk |
| 122 | * and then the fsync is considered complete. |
| 123 | * |
| 124 | * After a crash, items are copied out of the log-tree back into the |
| 125 | * subvolume tree. Any file data extents found are recorded in the extent |
| 126 | * allocation tree, and the log-tree freed. |
| 127 | * |
| 128 | * The log tree is read three times, once to pin down all the extents it is |
| 129 | * using in ram and once, once to create all the inodes logged in the tree |
| 130 | * and once to do all the other items. |
| 131 | */ |
| 132 | |
| 133 | /* |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 134 | * start a sub transaction and setup the log tree |
| 135 | * this increments the log tree writer count to make the people |
| 136 | * syncing the tree wait for us to finish |
| 137 | */ |
| 138 | static int start_log_trans(struct btrfs_trans_handle *trans, |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 139 | struct btrfs_root *root, |
| 140 | struct btrfs_log_ctx *ctx) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 141 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 142 | struct btrfs_fs_info *fs_info = root->fs_info; |
Filipe Manana | 47876f7 | 2020-11-25 12:19:28 +0000 | [diff] [blame] | 143 | struct btrfs_root *tree_root = fs_info->tree_root; |
Naohiro Aota | fa1a0f4 | 2021-02-04 19:22:19 +0900 | [diff] [blame] | 144 | const bool zoned = btrfs_is_zoned(fs_info); |
Zhaolei | 34eb2a5 | 2015-08-17 18:44:45 +0800 | [diff] [blame] | 145 | int ret = 0; |
Naohiro Aota | fa1a0f4 | 2021-02-04 19:22:19 +0900 | [diff] [blame] | 146 | bool created = false; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 147 | |
Filipe Manana | 47876f7 | 2020-11-25 12:19:28 +0000 | [diff] [blame] | 148 | /* |
| 149 | * First check if the log root tree was already created. If not, create |
| 150 | * it before locking the root's log_mutex, just to keep lockdep happy. |
| 151 | */ |
| 152 | if (!test_bit(BTRFS_ROOT_HAS_LOG_TREE, &tree_root->state)) { |
| 153 | mutex_lock(&tree_root->log_mutex); |
| 154 | if (!fs_info->log_root_tree) { |
| 155 | ret = btrfs_init_log_root_tree(trans, fs_info); |
Naohiro Aota | fa1a0f4 | 2021-02-04 19:22:19 +0900 | [diff] [blame] | 156 | if (!ret) { |
Filipe Manana | 47876f7 | 2020-11-25 12:19:28 +0000 | [diff] [blame] | 157 | set_bit(BTRFS_ROOT_HAS_LOG_TREE, &tree_root->state); |
Naohiro Aota | fa1a0f4 | 2021-02-04 19:22:19 +0900 | [diff] [blame] | 158 | created = true; |
| 159 | } |
Filipe Manana | 47876f7 | 2020-11-25 12:19:28 +0000 | [diff] [blame] | 160 | } |
| 161 | mutex_unlock(&tree_root->log_mutex); |
| 162 | if (ret) |
| 163 | return ret; |
| 164 | } |
| 165 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 166 | mutex_lock(&root->log_mutex); |
Zhaolei | 34eb2a5 | 2015-08-17 18:44:45 +0800 | [diff] [blame] | 167 | |
Naohiro Aota | fa1a0f4 | 2021-02-04 19:22:19 +0900 | [diff] [blame] | 168 | again: |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 169 | if (root->log_root) { |
Naohiro Aota | fa1a0f4 | 2021-02-04 19:22:19 +0900 | [diff] [blame] | 170 | int index = (root->log_transid + 1) % 2; |
| 171 | |
David Sterba | 4884b8e | 2019-03-20 13:25:34 +0100 | [diff] [blame] | 172 | if (btrfs_need_log_full_commit(trans)) { |
Miao Xie | 50471a3 | 2014-02-20 18:08:57 +0800 | [diff] [blame] | 173 | ret = -EAGAIN; |
| 174 | goto out; |
| 175 | } |
Zhaolei | 34eb2a5 | 2015-08-17 18:44:45 +0800 | [diff] [blame] | 176 | |
Naohiro Aota | fa1a0f4 | 2021-02-04 19:22:19 +0900 | [diff] [blame] | 177 | if (zoned && atomic_read(&root->log_commit[index])) { |
| 178 | wait_log_commit(root, root->log_transid - 1); |
| 179 | goto again; |
| 180 | } |
| 181 | |
Josef Bacik | ff782e0 | 2009-10-08 15:30:04 -0400 | [diff] [blame] | 182 | if (!root->log_start_pid) { |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 183 | clear_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state); |
Zhaolei | 34eb2a5 | 2015-08-17 18:44:45 +0800 | [diff] [blame] | 184 | root->log_start_pid = current->pid; |
Josef Bacik | ff782e0 | 2009-10-08 15:30:04 -0400 | [diff] [blame] | 185 | } else if (root->log_start_pid != current->pid) { |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 186 | set_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state); |
Josef Bacik | ff782e0 | 2009-10-08 15:30:04 -0400 | [diff] [blame] | 187 | } |
Zhaolei | 34eb2a5 | 2015-08-17 18:44:45 +0800 | [diff] [blame] | 188 | } else { |
Naohiro Aota | fa1a0f4 | 2021-02-04 19:22:19 +0900 | [diff] [blame] | 189 | /* |
| 190 | * This means fs_info->log_root_tree was already created |
| 191 | * for some other FS trees. Do the full commit not to mix |
| 192 | * nodes from multiple log transactions to do sequential |
| 193 | * writing. |
| 194 | */ |
| 195 | if (zoned && !created) { |
| 196 | ret = -EAGAIN; |
| 197 | goto out; |
| 198 | } |
| 199 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 200 | ret = btrfs_add_log_tree(trans, root); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 201 | if (ret) |
Miao Xie | e87ac13 | 2014-02-20 18:08:53 +0800 | [diff] [blame] | 202 | goto out; |
Zhaolei | 34eb2a5 | 2015-08-17 18:44:45 +0800 | [diff] [blame] | 203 | |
Filipe Manana | e7a7981 | 2020-06-15 10:38:44 +0100 | [diff] [blame] | 204 | set_bit(BTRFS_ROOT_HAS_LOG_TREE, &root->state); |
Zhaolei | 34eb2a5 | 2015-08-17 18:44:45 +0800 | [diff] [blame] | 205 | clear_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state); |
| 206 | root->log_start_pid = current->pid; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 207 | } |
Zhaolei | 34eb2a5 | 2015-08-17 18:44:45 +0800 | [diff] [blame] | 208 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 209 | atomic_inc(&root->log_writers); |
Filipe Manana | 75b463d | 2020-08-11 12:43:48 +0100 | [diff] [blame] | 210 | if (ctx && !ctx->logging_new_name) { |
Zhaolei | 34eb2a5 | 2015-08-17 18:44:45 +0800 | [diff] [blame] | 211 | int index = root->log_transid % 2; |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 212 | list_add_tail(&ctx->list, &root->log_ctxs[index]); |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 213 | ctx->log_transid = root->log_transid; |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 214 | } |
Zhaolei | 34eb2a5 | 2015-08-17 18:44:45 +0800 | [diff] [blame] | 215 | |
Miao Xie | e87ac13 | 2014-02-20 18:08:53 +0800 | [diff] [blame] | 216 | out: |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 217 | mutex_unlock(&root->log_mutex); |
Miao Xie | e87ac13 | 2014-02-20 18:08:53 +0800 | [diff] [blame] | 218 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 219 | } |
| 220 | |
| 221 | /* |
| 222 | * returns 0 if there was a log transaction running and we were able |
| 223 | * to join, or returns -ENOENT if there were not transactions |
| 224 | * in progress |
| 225 | */ |
| 226 | static int join_running_log_trans(struct btrfs_root *root) |
| 227 | { |
Naohiro Aota | fa1a0f4 | 2021-02-04 19:22:19 +0900 | [diff] [blame] | 228 | const bool zoned = btrfs_is_zoned(root->fs_info); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 229 | int ret = -ENOENT; |
| 230 | |
Filipe Manana | e7a7981 | 2020-06-15 10:38:44 +0100 | [diff] [blame] | 231 | if (!test_bit(BTRFS_ROOT_HAS_LOG_TREE, &root->state)) |
| 232 | return ret; |
| 233 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 234 | mutex_lock(&root->log_mutex); |
Naohiro Aota | fa1a0f4 | 2021-02-04 19:22:19 +0900 | [diff] [blame] | 235 | again: |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 236 | if (root->log_root) { |
Naohiro Aota | fa1a0f4 | 2021-02-04 19:22:19 +0900 | [diff] [blame] | 237 | int index = (root->log_transid + 1) % 2; |
| 238 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 239 | ret = 0; |
Naohiro Aota | fa1a0f4 | 2021-02-04 19:22:19 +0900 | [diff] [blame] | 240 | if (zoned && atomic_read(&root->log_commit[index])) { |
| 241 | wait_log_commit(root, root->log_transid - 1); |
| 242 | goto again; |
| 243 | } |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 244 | atomic_inc(&root->log_writers); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 245 | } |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 246 | mutex_unlock(&root->log_mutex); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 247 | return ret; |
| 248 | } |
| 249 | |
| 250 | /* |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 251 | * This either makes the current running log transaction wait |
| 252 | * until you call btrfs_end_log_trans() or it makes any future |
| 253 | * log transactions wait until you call btrfs_end_log_trans() |
| 254 | */ |
zhong jiang | 45128b0 | 2018-08-17 00:37:15 +0800 | [diff] [blame] | 255 | void btrfs_pin_log_trans(struct btrfs_root *root) |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 256 | { |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 257 | atomic_inc(&root->log_writers); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 258 | } |
| 259 | |
| 260 | /* |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 261 | * indicate we're done making changes to the log tree |
| 262 | * and wake up anyone waiting to do a sync |
| 263 | */ |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 264 | void btrfs_end_log_trans(struct btrfs_root *root) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 265 | { |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 266 | if (atomic_dec_and_test(&root->log_writers)) { |
David Sterba | 093258e | 2018-02-26 16:15:17 +0100 | [diff] [blame] | 267 | /* atomic_dec_and_test implies a barrier */ |
| 268 | cond_wake_up_nomb(&root->log_writer_wait); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 269 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 270 | } |
| 271 | |
David Sterba | 247462a | 2019-03-21 20:21:05 +0100 | [diff] [blame] | 272 | static int btrfs_write_tree_block(struct extent_buffer *buf) |
| 273 | { |
| 274 | return filemap_fdatawrite_range(buf->pages[0]->mapping, buf->start, |
| 275 | buf->start + buf->len - 1); |
| 276 | } |
| 277 | |
| 278 | static void btrfs_wait_tree_block_writeback(struct extent_buffer *buf) |
| 279 | { |
| 280 | filemap_fdatawait_range(buf->pages[0]->mapping, |
| 281 | buf->start, buf->start + buf->len - 1); |
| 282 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 283 | |
| 284 | /* |
| 285 | * the walk control struct is used to pass state down the chain when |
| 286 | * processing the log tree. The stage field tells us which part |
| 287 | * of the log tree processing we are currently doing. The others |
| 288 | * are state fields used for that specific part |
| 289 | */ |
| 290 | struct walk_control { |
| 291 | /* should we free the extent on disk when done? This is used |
| 292 | * at transaction commit time while freeing a log tree |
| 293 | */ |
| 294 | int free; |
| 295 | |
| 296 | /* should we write out the extent buffer? This is used |
| 297 | * while flushing the log tree to disk during a sync |
| 298 | */ |
| 299 | int write; |
| 300 | |
| 301 | /* should we wait for the extent buffer io to finish? Also used |
| 302 | * while flushing the log tree to disk for a sync |
| 303 | */ |
| 304 | int wait; |
| 305 | |
| 306 | /* pin only walk, we record which extents on disk belong to the |
| 307 | * log trees |
| 308 | */ |
| 309 | int pin; |
| 310 | |
| 311 | /* what stage of the replay code we're currently in */ |
| 312 | int stage; |
| 313 | |
Filipe Manana | f2d72f4 | 2018-10-08 11:12:55 +0100 | [diff] [blame] | 314 | /* |
| 315 | * Ignore any items from the inode currently being processed. Needs |
| 316 | * to be set every time we find a BTRFS_INODE_ITEM_KEY and we are in |
| 317 | * the LOG_WALK_REPLAY_INODES stage. |
| 318 | */ |
| 319 | bool ignore_cur_inode; |
| 320 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 321 | /* the root we are currently replaying */ |
| 322 | struct btrfs_root *replay_dest; |
| 323 | |
| 324 | /* the trans handle for the current replay */ |
| 325 | struct btrfs_trans_handle *trans; |
| 326 | |
| 327 | /* the function that gets used to process blocks we find in the |
| 328 | * tree. Note the extent_buffer might not be up to date when it is |
| 329 | * passed in, and it must be checked or read if you need the data |
| 330 | * inside it |
| 331 | */ |
| 332 | int (*process_func)(struct btrfs_root *log, struct extent_buffer *eb, |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 333 | struct walk_control *wc, u64 gen, int level); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 334 | }; |
| 335 | |
| 336 | /* |
| 337 | * process_func used to pin down extents, write them or wait on them |
| 338 | */ |
| 339 | static int process_one_buffer(struct btrfs_root *log, |
| 340 | struct extent_buffer *eb, |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 341 | struct walk_control *wc, u64 gen, int level) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 342 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 343 | struct btrfs_fs_info *fs_info = log->fs_info; |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 344 | int ret = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 345 | |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 346 | /* |
| 347 | * If this fs is mixed then we need to be able to process the leaves to |
| 348 | * pin down any logged extents, so we have to read the block. |
| 349 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 350 | if (btrfs_fs_incompat(fs_info, MIXED_GROUPS)) { |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 351 | ret = btrfs_read_buffer(eb, gen, level, NULL); |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 352 | if (ret) |
| 353 | return ret; |
| 354 | } |
| 355 | |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 356 | if (wc->pin) |
Nikolay Borisov | 9fce570 | 2020-01-20 16:09:13 +0200 | [diff] [blame] | 357 | ret = btrfs_pin_extent_for_log_replay(wc->trans, eb->start, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 358 | eb->len); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 359 | |
| 360 | if (!ret && btrfs_buffer_uptodate(eb, gen, 0)) { |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 361 | if (wc->pin && btrfs_header_level(eb) == 0) |
David Sterba | bcdc428 | 2019-03-20 12:14:33 +0100 | [diff] [blame] | 362 | ret = btrfs_exclude_logged_extents(eb); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 363 | if (wc->write) |
| 364 | btrfs_write_tree_block(eb); |
| 365 | if (wc->wait) |
| 366 | btrfs_wait_tree_block_writeback(eb); |
| 367 | } |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 368 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 369 | } |
| 370 | |
| 371 | /* |
| 372 | * Item overwrite used by replay and tree logging. eb, slot and key all refer |
| 373 | * to the src data we are copying out. |
| 374 | * |
| 375 | * root is the tree we are copying into, and path is a scratch |
| 376 | * path for use in this function (it should be released on entry and |
| 377 | * will be released on exit). |
| 378 | * |
| 379 | * If the key is already in the destination tree the existing item is |
| 380 | * overwritten. If the existing item isn't big enough, it is extended. |
| 381 | * If it is too large, it is truncated. |
| 382 | * |
| 383 | * If the key isn't in the destination yet, a new item is inserted. |
| 384 | */ |
| 385 | static noinline int overwrite_item(struct btrfs_trans_handle *trans, |
| 386 | struct btrfs_root *root, |
| 387 | struct btrfs_path *path, |
| 388 | struct extent_buffer *eb, int slot, |
| 389 | struct btrfs_key *key) |
| 390 | { |
| 391 | int ret; |
| 392 | u32 item_size; |
| 393 | u64 saved_i_size = 0; |
| 394 | int save_old_i_size = 0; |
| 395 | unsigned long src_ptr; |
| 396 | unsigned long dst_ptr; |
| 397 | int overwrite_root = 0; |
Josef Bacik | 4bc4bee | 2013-04-05 20:50:09 +0000 | [diff] [blame] | 398 | bool inode_item = key->type == BTRFS_INODE_ITEM_KEY; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 399 | |
| 400 | if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) |
| 401 | overwrite_root = 1; |
| 402 | |
| 403 | item_size = btrfs_item_size_nr(eb, slot); |
| 404 | src_ptr = btrfs_item_ptr_offset(eb, slot); |
| 405 | |
| 406 | /* look for the key in the destination tree */ |
| 407 | ret = btrfs_search_slot(NULL, root, key, path, 0, 0); |
Josef Bacik | 4bc4bee | 2013-04-05 20:50:09 +0000 | [diff] [blame] | 408 | if (ret < 0) |
| 409 | return ret; |
| 410 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 411 | if (ret == 0) { |
| 412 | char *src_copy; |
| 413 | char *dst_copy; |
| 414 | u32 dst_size = btrfs_item_size_nr(path->nodes[0], |
| 415 | path->slots[0]); |
| 416 | if (dst_size != item_size) |
| 417 | goto insert; |
| 418 | |
| 419 | if (item_size == 0) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 420 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 421 | return 0; |
| 422 | } |
| 423 | dst_copy = kmalloc(item_size, GFP_NOFS); |
| 424 | src_copy = kmalloc(item_size, GFP_NOFS); |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 425 | if (!dst_copy || !src_copy) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 426 | btrfs_release_path(path); |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 427 | kfree(dst_copy); |
| 428 | kfree(src_copy); |
| 429 | return -ENOMEM; |
| 430 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 431 | |
| 432 | read_extent_buffer(eb, src_copy, src_ptr, item_size); |
| 433 | |
| 434 | dst_ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]); |
| 435 | read_extent_buffer(path->nodes[0], dst_copy, dst_ptr, |
| 436 | item_size); |
| 437 | ret = memcmp(dst_copy, src_copy, item_size); |
| 438 | |
| 439 | kfree(dst_copy); |
| 440 | kfree(src_copy); |
| 441 | /* |
| 442 | * they have the same contents, just return, this saves |
| 443 | * us from cowing blocks in the destination tree and doing |
| 444 | * extra writes that may not have been done by a previous |
| 445 | * sync |
| 446 | */ |
| 447 | if (ret == 0) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 448 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 449 | return 0; |
| 450 | } |
| 451 | |
Josef Bacik | 4bc4bee | 2013-04-05 20:50:09 +0000 | [diff] [blame] | 452 | /* |
| 453 | * We need to load the old nbytes into the inode so when we |
| 454 | * replay the extents we've logged we get the right nbytes. |
| 455 | */ |
| 456 | if (inode_item) { |
| 457 | struct btrfs_inode_item *item; |
| 458 | u64 nbytes; |
Josef Bacik | d555438 | 2013-09-11 14:17:00 -0400 | [diff] [blame] | 459 | u32 mode; |
Josef Bacik | 4bc4bee | 2013-04-05 20:50:09 +0000 | [diff] [blame] | 460 | |
| 461 | item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 462 | struct btrfs_inode_item); |
| 463 | nbytes = btrfs_inode_nbytes(path->nodes[0], item); |
| 464 | item = btrfs_item_ptr(eb, slot, |
| 465 | struct btrfs_inode_item); |
| 466 | btrfs_set_inode_nbytes(eb, item, nbytes); |
Josef Bacik | d555438 | 2013-09-11 14:17:00 -0400 | [diff] [blame] | 467 | |
| 468 | /* |
| 469 | * If this is a directory we need to reset the i_size to |
| 470 | * 0 so that we can set it up properly when replaying |
| 471 | * the rest of the items in this log. |
| 472 | */ |
| 473 | mode = btrfs_inode_mode(eb, item); |
| 474 | if (S_ISDIR(mode)) |
| 475 | btrfs_set_inode_size(eb, item, 0); |
Josef Bacik | 4bc4bee | 2013-04-05 20:50:09 +0000 | [diff] [blame] | 476 | } |
| 477 | } else if (inode_item) { |
| 478 | struct btrfs_inode_item *item; |
Josef Bacik | d555438 | 2013-09-11 14:17:00 -0400 | [diff] [blame] | 479 | u32 mode; |
Josef Bacik | 4bc4bee | 2013-04-05 20:50:09 +0000 | [diff] [blame] | 480 | |
| 481 | /* |
| 482 | * New inode, set nbytes to 0 so that the nbytes comes out |
| 483 | * properly when we replay the extents. |
| 484 | */ |
| 485 | item = btrfs_item_ptr(eb, slot, struct btrfs_inode_item); |
| 486 | btrfs_set_inode_nbytes(eb, item, 0); |
Josef Bacik | d555438 | 2013-09-11 14:17:00 -0400 | [diff] [blame] | 487 | |
| 488 | /* |
| 489 | * If this is a directory we need to reset the i_size to 0 so |
| 490 | * that we can set it up properly when replaying the rest of |
| 491 | * the items in this log. |
| 492 | */ |
| 493 | mode = btrfs_inode_mode(eb, item); |
| 494 | if (S_ISDIR(mode)) |
| 495 | btrfs_set_inode_size(eb, item, 0); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 496 | } |
| 497 | insert: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 498 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 499 | /* try to insert the key into the destination tree */ |
Filipe Manana | df8d116 | 2015-01-14 01:52:25 +0000 | [diff] [blame] | 500 | path->skip_release_on_error = 1; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 501 | ret = btrfs_insert_empty_item(trans, root, path, |
| 502 | key, item_size); |
Filipe Manana | df8d116 | 2015-01-14 01:52:25 +0000 | [diff] [blame] | 503 | path->skip_release_on_error = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 504 | |
| 505 | /* make sure any existing item is the correct size */ |
Filipe Manana | df8d116 | 2015-01-14 01:52:25 +0000 | [diff] [blame] | 506 | if (ret == -EEXIST || ret == -EOVERFLOW) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 507 | u32 found_size; |
| 508 | found_size = btrfs_item_size_nr(path->nodes[0], |
| 509 | path->slots[0]); |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 510 | if (found_size > item_size) |
David Sterba | 78ac4f9 | 2019-03-20 14:49:12 +0100 | [diff] [blame] | 511 | btrfs_truncate_item(path, item_size, 1); |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 512 | else if (found_size < item_size) |
David Sterba | c71dd88 | 2019-03-20 14:51:10 +0100 | [diff] [blame] | 513 | btrfs_extend_item(path, item_size - found_size); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 514 | } else if (ret) { |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 515 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 516 | } |
| 517 | dst_ptr = btrfs_item_ptr_offset(path->nodes[0], |
| 518 | path->slots[0]); |
| 519 | |
| 520 | /* don't overwrite an existing inode if the generation number |
| 521 | * was logged as zero. This is done when the tree logging code |
| 522 | * is just logging an inode to make sure it exists after recovery. |
| 523 | * |
| 524 | * Also, don't overwrite i_size on directories during replay. |
| 525 | * log replay inserts and removes directory items based on the |
| 526 | * state of the tree found in the subvolume, and i_size is modified |
| 527 | * as it goes |
| 528 | */ |
| 529 | if (key->type == BTRFS_INODE_ITEM_KEY && ret == -EEXIST) { |
| 530 | struct btrfs_inode_item *src_item; |
| 531 | struct btrfs_inode_item *dst_item; |
| 532 | |
| 533 | src_item = (struct btrfs_inode_item *)src_ptr; |
| 534 | dst_item = (struct btrfs_inode_item *)dst_ptr; |
| 535 | |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 536 | if (btrfs_inode_generation(eb, src_item) == 0) { |
| 537 | struct extent_buffer *dst_eb = path->nodes[0]; |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 538 | const u64 ino_size = btrfs_inode_size(eb, src_item); |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 539 | |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 540 | /* |
| 541 | * For regular files an ino_size == 0 is used only when |
| 542 | * logging that an inode exists, as part of a directory |
| 543 | * fsync, and the inode wasn't fsynced before. In this |
| 544 | * case don't set the size of the inode in the fs/subvol |
| 545 | * tree, otherwise we would be throwing valid data away. |
| 546 | */ |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 547 | if (S_ISREG(btrfs_inode_mode(eb, src_item)) && |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 548 | S_ISREG(btrfs_inode_mode(dst_eb, dst_item)) && |
David Sterba | 60d48e2 | 2020-04-29 15:29:53 +0200 | [diff] [blame] | 549 | ino_size != 0) |
| 550 | btrfs_set_inode_size(dst_eb, dst_item, ino_size); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 551 | goto no_copy; |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 552 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 553 | |
| 554 | if (overwrite_root && |
| 555 | S_ISDIR(btrfs_inode_mode(eb, src_item)) && |
| 556 | S_ISDIR(btrfs_inode_mode(path->nodes[0], dst_item))) { |
| 557 | save_old_i_size = 1; |
| 558 | saved_i_size = btrfs_inode_size(path->nodes[0], |
| 559 | dst_item); |
| 560 | } |
| 561 | } |
| 562 | |
| 563 | copy_extent_buffer(path->nodes[0], eb, dst_ptr, |
| 564 | src_ptr, item_size); |
| 565 | |
| 566 | if (save_old_i_size) { |
| 567 | struct btrfs_inode_item *dst_item; |
| 568 | dst_item = (struct btrfs_inode_item *)dst_ptr; |
| 569 | btrfs_set_inode_size(path->nodes[0], dst_item, saved_i_size); |
| 570 | } |
| 571 | |
| 572 | /* make sure the generation is filled in */ |
| 573 | if (key->type == BTRFS_INODE_ITEM_KEY) { |
| 574 | struct btrfs_inode_item *dst_item; |
| 575 | dst_item = (struct btrfs_inode_item *)dst_ptr; |
| 576 | if (btrfs_inode_generation(path->nodes[0], dst_item) == 0) { |
| 577 | btrfs_set_inode_generation(path->nodes[0], dst_item, |
| 578 | trans->transid); |
| 579 | } |
| 580 | } |
| 581 | no_copy: |
| 582 | btrfs_mark_buffer_dirty(path->nodes[0]); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 583 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 584 | return 0; |
| 585 | } |
| 586 | |
| 587 | /* |
| 588 | * simple helper to read an inode off the disk from a given root |
| 589 | * This can only be called for subvolume roots and not for the log |
| 590 | */ |
| 591 | static noinline struct inode *read_one_inode(struct btrfs_root *root, |
| 592 | u64 objectid) |
| 593 | { |
| 594 | struct inode *inode; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 595 | |
David Sterba | 0202e83 | 2020-05-15 19:35:59 +0200 | [diff] [blame] | 596 | inode = btrfs_iget(root->fs_info->sb, objectid, root); |
Al Viro | 2e19f1f | 2018-07-29 23:04:45 +0100 | [diff] [blame] | 597 | if (IS_ERR(inode)) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 598 | inode = NULL; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 599 | return inode; |
| 600 | } |
| 601 | |
| 602 | /* replays a single extent in 'eb' at 'slot' with 'key' into the |
| 603 | * subvolume 'root'. path is released on entry and should be released |
| 604 | * on exit. |
| 605 | * |
| 606 | * extents in the log tree have not been allocated out of the extent |
| 607 | * tree yet. So, this completes the allocation, taking a reference |
| 608 | * as required if the extent already exists or creating a new extent |
| 609 | * if it isn't in the extent allocation tree yet. |
| 610 | * |
| 611 | * The extent is inserted into the file, dropping any existing extents |
| 612 | * from the file that overlap the new one. |
| 613 | */ |
| 614 | static noinline int replay_one_extent(struct btrfs_trans_handle *trans, |
| 615 | struct btrfs_root *root, |
| 616 | struct btrfs_path *path, |
| 617 | struct extent_buffer *eb, int slot, |
| 618 | struct btrfs_key *key) |
| 619 | { |
Filipe Manana | 5893dfb | 2020-11-04 11:07:32 +0000 | [diff] [blame] | 620 | struct btrfs_drop_extents_args drop_args = { 0 }; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 621 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 622 | int found_type; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 623 | u64 extent_end; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 624 | u64 start = key->offset; |
Josef Bacik | 4bc4bee | 2013-04-05 20:50:09 +0000 | [diff] [blame] | 625 | u64 nbytes = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 626 | struct btrfs_file_extent_item *item; |
| 627 | struct inode *inode = NULL; |
| 628 | unsigned long size; |
| 629 | int ret = 0; |
| 630 | |
| 631 | item = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item); |
| 632 | found_type = btrfs_file_extent_type(eb, item); |
| 633 | |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 634 | if (found_type == BTRFS_FILE_EXTENT_REG || |
Josef Bacik | 4bc4bee | 2013-04-05 20:50:09 +0000 | [diff] [blame] | 635 | found_type == BTRFS_FILE_EXTENT_PREALLOC) { |
| 636 | nbytes = btrfs_file_extent_num_bytes(eb, item); |
| 637 | extent_end = start + nbytes; |
| 638 | |
| 639 | /* |
| 640 | * We don't add to the inodes nbytes if we are prealloc or a |
| 641 | * hole. |
| 642 | */ |
| 643 | if (btrfs_file_extent_disk_bytenr(eb, item) == 0) |
| 644 | nbytes = 0; |
| 645 | } else if (found_type == BTRFS_FILE_EXTENT_INLINE) { |
Qu Wenruo | e41ca58 | 2018-06-06 15:41:49 +0800 | [diff] [blame] | 646 | size = btrfs_file_extent_ram_bytes(eb, item); |
Josef Bacik | 4bc4bee | 2013-04-05 20:50:09 +0000 | [diff] [blame] | 647 | nbytes = btrfs_file_extent_ram_bytes(eb, item); |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 648 | extent_end = ALIGN(start + size, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 649 | fs_info->sectorsize); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 650 | } else { |
| 651 | ret = 0; |
| 652 | goto out; |
| 653 | } |
| 654 | |
| 655 | inode = read_one_inode(root, key->objectid); |
| 656 | if (!inode) { |
| 657 | ret = -EIO; |
| 658 | goto out; |
| 659 | } |
| 660 | |
| 661 | /* |
| 662 | * first check to see if we already have this extent in the |
| 663 | * file. This must be done before the btrfs_drop_extents run |
| 664 | * so we don't try to drop this extent. |
| 665 | */ |
David Sterba | f85b737 | 2017-01-20 14:54:07 +0100 | [diff] [blame] | 666 | ret = btrfs_lookup_file_extent(trans, root, path, |
| 667 | btrfs_ino(BTRFS_I(inode)), start, 0); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 668 | |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 669 | if (ret == 0 && |
| 670 | (found_type == BTRFS_FILE_EXTENT_REG || |
| 671 | found_type == BTRFS_FILE_EXTENT_PREALLOC)) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 672 | struct btrfs_file_extent_item cmp1; |
| 673 | struct btrfs_file_extent_item cmp2; |
| 674 | struct btrfs_file_extent_item *existing; |
| 675 | struct extent_buffer *leaf; |
| 676 | |
| 677 | leaf = path->nodes[0]; |
| 678 | existing = btrfs_item_ptr(leaf, path->slots[0], |
| 679 | struct btrfs_file_extent_item); |
| 680 | |
| 681 | read_extent_buffer(eb, &cmp1, (unsigned long)item, |
| 682 | sizeof(cmp1)); |
| 683 | read_extent_buffer(leaf, &cmp2, (unsigned long)existing, |
| 684 | sizeof(cmp2)); |
| 685 | |
| 686 | /* |
| 687 | * we already have a pointer to this exact extent, |
| 688 | * we don't have to do anything |
| 689 | */ |
| 690 | if (memcmp(&cmp1, &cmp2, sizeof(cmp1)) == 0) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 691 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 692 | goto out; |
| 693 | } |
| 694 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 695 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 696 | |
| 697 | /* drop any overlapping extents */ |
Filipe Manana | 5893dfb | 2020-11-04 11:07:32 +0000 | [diff] [blame] | 698 | drop_args.start = start; |
| 699 | drop_args.end = extent_end; |
| 700 | drop_args.drop_cache = true; |
| 701 | ret = btrfs_drop_extents(trans, root, BTRFS_I(inode), &drop_args); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 702 | if (ret) |
| 703 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 704 | |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 705 | if (found_type == BTRFS_FILE_EXTENT_REG || |
| 706 | found_type == BTRFS_FILE_EXTENT_PREALLOC) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 707 | u64 offset; |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 708 | unsigned long dest_offset; |
| 709 | struct btrfs_key ins; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 710 | |
Filipe Manana | 3168021c | 2017-02-01 14:58:02 +0000 | [diff] [blame] | 711 | if (btrfs_file_extent_disk_bytenr(eb, item) == 0 && |
| 712 | btrfs_fs_incompat(fs_info, NO_HOLES)) |
| 713 | goto update_inode; |
| 714 | |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 715 | ret = btrfs_insert_empty_item(trans, root, path, key, |
| 716 | sizeof(*item)); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 717 | if (ret) |
| 718 | goto out; |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 719 | dest_offset = btrfs_item_ptr_offset(path->nodes[0], |
| 720 | path->slots[0]); |
| 721 | copy_extent_buffer(path->nodes[0], eb, dest_offset, |
| 722 | (unsigned long)item, sizeof(*item)); |
| 723 | |
| 724 | ins.objectid = btrfs_file_extent_disk_bytenr(eb, item); |
| 725 | ins.offset = btrfs_file_extent_disk_num_bytes(eb, item); |
| 726 | ins.type = BTRFS_EXTENT_ITEM_KEY; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 727 | offset = key->offset - btrfs_file_extent_offset(eb, item); |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 728 | |
Qu Wenruo | df2c95f | 2016-08-15 10:36:52 +0800 | [diff] [blame] | 729 | /* |
| 730 | * Manually record dirty extent, as here we did a shallow |
| 731 | * file extent item copy and skip normal backref update, |
| 732 | * but modifying extent tree all by ourselves. |
| 733 | * So need to manually record dirty extent for qgroup, |
| 734 | * as the owner of the file extent changed from log tree |
| 735 | * (doesn't affect qgroup) to fs/file tree(affects qgroup) |
| 736 | */ |
Lu Fengqi | a95f3aa | 2018-07-18 16:28:03 +0800 | [diff] [blame] | 737 | ret = btrfs_qgroup_trace_extent(trans, |
Qu Wenruo | df2c95f | 2016-08-15 10:36:52 +0800 | [diff] [blame] | 738 | btrfs_file_extent_disk_bytenr(eb, item), |
| 739 | btrfs_file_extent_disk_num_bytes(eb, item), |
| 740 | GFP_NOFS); |
| 741 | if (ret < 0) |
| 742 | goto out; |
| 743 | |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 744 | if (ins.objectid > 0) { |
Qu Wenruo | 82fa113 | 2019-04-04 14:45:35 +0800 | [diff] [blame] | 745 | struct btrfs_ref ref = { 0 }; |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 746 | u64 csum_start; |
| 747 | u64 csum_end; |
| 748 | LIST_HEAD(ordered_sums); |
Qu Wenruo | 82fa113 | 2019-04-04 14:45:35 +0800 | [diff] [blame] | 749 | |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 750 | /* |
| 751 | * is this extent already allocated in the extent |
| 752 | * allocation tree? If so, just add a reference |
| 753 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 754 | ret = btrfs_lookup_data_extent(fs_info, ins.objectid, |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 755 | ins.offset); |
| 756 | if (ret == 0) { |
Qu Wenruo | 82fa113 | 2019-04-04 14:45:35 +0800 | [diff] [blame] | 757 | btrfs_init_generic_ref(&ref, |
| 758 | BTRFS_ADD_DELAYED_REF, |
| 759 | ins.objectid, ins.offset, 0); |
| 760 | btrfs_init_data_ref(&ref, |
| 761 | root->root_key.objectid, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 762 | key->objectid, offset); |
Qu Wenruo | 82fa113 | 2019-04-04 14:45:35 +0800 | [diff] [blame] | 763 | ret = btrfs_inc_extent_ref(trans, &ref); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 764 | if (ret) |
| 765 | goto out; |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 766 | } else { |
| 767 | /* |
| 768 | * insert the extent pointer in the extent |
| 769 | * allocation tree |
| 770 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 771 | ret = btrfs_alloc_logged_file_extent(trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 772 | root->root_key.objectid, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 773 | key->objectid, offset, &ins); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 774 | if (ret) |
| 775 | goto out; |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 776 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 777 | btrfs_release_path(path); |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 778 | |
| 779 | if (btrfs_file_extent_compression(eb, item)) { |
| 780 | csum_start = ins.objectid; |
| 781 | csum_end = csum_start + ins.offset; |
| 782 | } else { |
| 783 | csum_start = ins.objectid + |
| 784 | btrfs_file_extent_offset(eb, item); |
| 785 | csum_end = csum_start + |
| 786 | btrfs_file_extent_num_bytes(eb, item); |
| 787 | } |
| 788 | |
| 789 | ret = btrfs_lookup_csums_range(root->log_root, |
| 790 | csum_start, csum_end - 1, |
Arne Jansen | a2de733 | 2011-03-08 14:14:00 +0100 | [diff] [blame] | 791 | &ordered_sums, 0); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 792 | if (ret) |
| 793 | goto out; |
Filipe Manana | b84b839 | 2015-08-19 11:09:40 +0100 | [diff] [blame] | 794 | /* |
| 795 | * Now delete all existing cums in the csum root that |
| 796 | * cover our range. We do this because we can have an |
| 797 | * extent that is completely referenced by one file |
| 798 | * extent item and partially referenced by another |
| 799 | * file extent item (like after using the clone or |
| 800 | * extent_same ioctls). In this case if we end up doing |
| 801 | * the replay of the one that partially references the |
| 802 | * extent first, and we do not do the csum deletion |
| 803 | * below, we can get 2 csum items in the csum tree that |
| 804 | * overlap each other. For example, imagine our log has |
| 805 | * the two following file extent items: |
| 806 | * |
| 807 | * key (257 EXTENT_DATA 409600) |
| 808 | * extent data disk byte 12845056 nr 102400 |
| 809 | * extent data offset 20480 nr 20480 ram 102400 |
| 810 | * |
| 811 | * key (257 EXTENT_DATA 819200) |
| 812 | * extent data disk byte 12845056 nr 102400 |
| 813 | * extent data offset 0 nr 102400 ram 102400 |
| 814 | * |
| 815 | * Where the second one fully references the 100K extent |
| 816 | * that starts at disk byte 12845056, and the log tree |
| 817 | * has a single csum item that covers the entire range |
| 818 | * of the extent: |
| 819 | * |
| 820 | * key (EXTENT_CSUM EXTENT_CSUM 12845056) itemsize 100 |
| 821 | * |
| 822 | * After the first file extent item is replayed, the |
| 823 | * csum tree gets the following csum item: |
| 824 | * |
| 825 | * key (EXTENT_CSUM EXTENT_CSUM 12865536) itemsize 20 |
| 826 | * |
| 827 | * Which covers the 20K sub-range starting at offset 20K |
| 828 | * of our extent. Now when we replay the second file |
| 829 | * extent item, if we do not delete existing csum items |
| 830 | * that cover any of its blocks, we end up getting two |
| 831 | * csum items in our csum tree that overlap each other: |
| 832 | * |
| 833 | * key (EXTENT_CSUM EXTENT_CSUM 12845056) itemsize 100 |
| 834 | * key (EXTENT_CSUM EXTENT_CSUM 12865536) itemsize 20 |
| 835 | * |
| 836 | * Which is a problem, because after this anyone trying |
| 837 | * to lookup up for the checksum of any block of our |
| 838 | * extent starting at an offset of 40K or higher, will |
| 839 | * end up looking at the second csum item only, which |
| 840 | * does not contain the checksum for any block starting |
| 841 | * at offset 40K or higher of our extent. |
| 842 | */ |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 843 | while (!list_empty(&ordered_sums)) { |
| 844 | struct btrfs_ordered_sum *sums; |
| 845 | sums = list_entry(ordered_sums.next, |
| 846 | struct btrfs_ordered_sum, |
| 847 | list); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 848 | if (!ret) |
Filipe Manana | 40e046a | 2019-12-05 16:58:30 +0000 | [diff] [blame] | 849 | ret = btrfs_del_csums(trans, |
| 850 | fs_info->csum_root, |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 851 | sums->bytenr, |
| 852 | sums->len); |
Filipe Manana | b84b839 | 2015-08-19 11:09:40 +0100 | [diff] [blame] | 853 | if (!ret) |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 854 | ret = btrfs_csum_file_blocks(trans, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 855 | fs_info->csum_root, sums); |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 856 | list_del(&sums->list); |
| 857 | kfree(sums); |
| 858 | } |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 859 | if (ret) |
| 860 | goto out; |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 861 | } else { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 862 | btrfs_release_path(path); |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 863 | } |
| 864 | } else if (found_type == BTRFS_FILE_EXTENT_INLINE) { |
| 865 | /* inline extents are easy, we just overwrite them */ |
| 866 | ret = overwrite_item(trans, root, path, eb, slot, key); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 867 | if (ret) |
| 868 | goto out; |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 869 | } |
| 870 | |
Josef Bacik | 9ddc959 | 2020-01-17 09:02:22 -0500 | [diff] [blame] | 871 | ret = btrfs_inode_set_file_extent_range(BTRFS_I(inode), start, |
| 872 | extent_end - start); |
| 873 | if (ret) |
| 874 | goto out; |
| 875 | |
Filipe Manana | 3168021c | 2017-02-01 14:58:02 +0000 | [diff] [blame] | 876 | update_inode: |
Filipe Manana | 2766ff6 | 2020-11-04 11:07:34 +0000 | [diff] [blame] | 877 | btrfs_update_inode_bytes(BTRFS_I(inode), nbytes, drop_args.bytes_found); |
Nikolay Borisov | 9a56fcd | 2020-11-02 16:48:59 +0200 | [diff] [blame] | 878 | ret = btrfs_update_inode(trans, root, BTRFS_I(inode)); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 879 | out: |
| 880 | if (inode) |
| 881 | iput(inode); |
| 882 | return ret; |
| 883 | } |
| 884 | |
| 885 | /* |
| 886 | * when cleaning up conflicts between the directory names in the |
| 887 | * subvolume, directory names in the log and directory names in the |
| 888 | * inode back references, we may have to unlink inodes from directories. |
| 889 | * |
| 890 | * This is a helper function to do the unlink of a specific directory |
| 891 | * item |
| 892 | */ |
| 893 | static noinline int drop_one_dir_item(struct btrfs_trans_handle *trans, |
| 894 | struct btrfs_root *root, |
| 895 | struct btrfs_path *path, |
Nikolay Borisov | 207e7d9 | 2017-01-18 00:31:45 +0200 | [diff] [blame] | 896 | struct btrfs_inode *dir, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 897 | struct btrfs_dir_item *di) |
| 898 | { |
| 899 | struct inode *inode; |
| 900 | char *name; |
| 901 | int name_len; |
| 902 | struct extent_buffer *leaf; |
| 903 | struct btrfs_key location; |
| 904 | int ret; |
| 905 | |
| 906 | leaf = path->nodes[0]; |
| 907 | |
| 908 | btrfs_dir_item_key_to_cpu(leaf, di, &location); |
| 909 | name_len = btrfs_dir_name_len(leaf, di); |
| 910 | name = kmalloc(name_len, GFP_NOFS); |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 911 | if (!name) |
| 912 | return -ENOMEM; |
| 913 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 914 | read_extent_buffer(leaf, name, (unsigned long)(di + 1), name_len); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 915 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 916 | |
| 917 | inode = read_one_inode(root, location.objectid); |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 918 | if (!inode) { |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 919 | ret = -EIO; |
| 920 | goto out; |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 921 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 922 | |
Yan Zheng | ec051c0 | 2009-01-05 15:43:42 -0500 | [diff] [blame] | 923 | ret = link_to_fixup_dir(trans, root, path, location.objectid); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 924 | if (ret) |
| 925 | goto out; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 926 | |
Nikolay Borisov | 207e7d9 | 2017-01-18 00:31:45 +0200 | [diff] [blame] | 927 | ret = btrfs_unlink_inode(trans, root, dir, BTRFS_I(inode), name, |
| 928 | name_len); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 929 | if (ret) |
| 930 | goto out; |
Filipe David Borba Manana | ada9af2 | 2013-08-05 09:25:47 +0100 | [diff] [blame] | 931 | else |
Nikolay Borisov | e5c304e6 | 2018-02-07 17:55:43 +0200 | [diff] [blame] | 932 | ret = btrfs_run_delayed_items(trans); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 933 | out: |
| 934 | kfree(name); |
| 935 | iput(inode); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 936 | return ret; |
| 937 | } |
| 938 | |
| 939 | /* |
| 940 | * helper function to see if a given name and sequence number found |
| 941 | * in an inode back reference are already in a directory and correctly |
| 942 | * point to this inode |
| 943 | */ |
| 944 | static noinline int inode_in_dir(struct btrfs_root *root, |
| 945 | struct btrfs_path *path, |
| 946 | u64 dirid, u64 objectid, u64 index, |
| 947 | const char *name, int name_len) |
| 948 | { |
| 949 | struct btrfs_dir_item *di; |
| 950 | struct btrfs_key location; |
| 951 | int match = 0; |
| 952 | |
| 953 | di = btrfs_lookup_dir_index_item(NULL, root, path, dirid, |
| 954 | index, name, name_len, 0); |
| 955 | if (di && !IS_ERR(di)) { |
| 956 | btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location); |
| 957 | if (location.objectid != objectid) |
| 958 | goto out; |
| 959 | } else |
| 960 | goto out; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 961 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 962 | |
| 963 | di = btrfs_lookup_dir_item(NULL, root, path, dirid, name, name_len, 0); |
| 964 | if (di && !IS_ERR(di)) { |
| 965 | btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location); |
| 966 | if (location.objectid != objectid) |
| 967 | goto out; |
| 968 | } else |
| 969 | goto out; |
| 970 | match = 1; |
| 971 | out: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 972 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 973 | return match; |
| 974 | } |
| 975 | |
| 976 | /* |
| 977 | * helper function to check a log tree for a named back reference in |
| 978 | * an inode. This is used to decide if a back reference that is |
| 979 | * found in the subvolume conflicts with what we find in the log. |
| 980 | * |
| 981 | * inode backreferences may have multiple refs in a single item, |
| 982 | * during replay we process one reference at a time, and we don't |
| 983 | * want to delete valid links to a file from the subvolume if that |
| 984 | * link is also in the log. |
| 985 | */ |
| 986 | static noinline int backref_in_log(struct btrfs_root *log, |
| 987 | struct btrfs_key *key, |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 988 | u64 ref_objectid, |
Filipe Manana | df8d116 | 2015-01-14 01:52:25 +0000 | [diff] [blame] | 989 | const char *name, int namelen) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 990 | { |
| 991 | struct btrfs_path *path; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 992 | int ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 993 | |
| 994 | path = btrfs_alloc_path(); |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 995 | if (!path) |
| 996 | return -ENOMEM; |
| 997 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 998 | ret = btrfs_search_slot(NULL, log, key, path, 0, 0); |
Nikolay Borisov | d3316c8 | 2019-09-25 14:03:03 +0300 | [diff] [blame] | 999 | if (ret < 0) { |
| 1000 | goto out; |
| 1001 | } else if (ret == 1) { |
Nikolay Borisov | 89cbf5f6b | 2019-08-30 17:44:47 +0300 | [diff] [blame] | 1002 | ret = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1003 | goto out; |
Nikolay Borisov | 89cbf5f6b | 2019-08-30 17:44:47 +0300 | [diff] [blame] | 1004 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1005 | |
Nikolay Borisov | 89cbf5f6b | 2019-08-30 17:44:47 +0300 | [diff] [blame] | 1006 | if (key->type == BTRFS_INODE_EXTREF_KEY) |
| 1007 | ret = !!btrfs_find_name_in_ext_backref(path->nodes[0], |
| 1008 | path->slots[0], |
| 1009 | ref_objectid, |
| 1010 | name, namelen); |
| 1011 | else |
| 1012 | ret = !!btrfs_find_name_in_backref(path->nodes[0], |
Filipe Manana | 1f250e9 | 2018-02-28 15:56:10 +0000 | [diff] [blame] | 1013 | path->slots[0], |
Nikolay Borisov | 89cbf5f6b | 2019-08-30 17:44:47 +0300 | [diff] [blame] | 1014 | name, namelen); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1015 | out: |
| 1016 | btrfs_free_path(path); |
Nikolay Borisov | 89cbf5f6b | 2019-08-30 17:44:47 +0300 | [diff] [blame] | 1017 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1018 | } |
| 1019 | |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1020 | static inline int __add_inode_ref(struct btrfs_trans_handle *trans, |
| 1021 | struct btrfs_root *root, |
| 1022 | struct btrfs_path *path, |
| 1023 | struct btrfs_root *log_root, |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1024 | struct btrfs_inode *dir, |
| 1025 | struct btrfs_inode *inode, |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1026 | u64 inode_objectid, u64 parent_objectid, |
| 1027 | u64 ref_index, char *name, int namelen, |
| 1028 | int *search_done) |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1029 | { |
| 1030 | int ret; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1031 | char *victim_name; |
| 1032 | int victim_name_len; |
| 1033 | struct extent_buffer *leaf; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1034 | struct btrfs_dir_item *di; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1035 | struct btrfs_key search_key; |
| 1036 | struct btrfs_inode_extref *extref; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1037 | |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1038 | again: |
| 1039 | /* Search old style refs */ |
| 1040 | search_key.objectid = inode_objectid; |
| 1041 | search_key.type = BTRFS_INODE_REF_KEY; |
| 1042 | search_key.offset = parent_objectid; |
| 1043 | ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0); |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1044 | if (ret == 0) { |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1045 | struct btrfs_inode_ref *victim_ref; |
| 1046 | unsigned long ptr; |
| 1047 | unsigned long ptr_end; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1048 | |
| 1049 | leaf = path->nodes[0]; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1050 | |
| 1051 | /* are we trying to overwrite a back ref for the root directory |
| 1052 | * if so, just jump out, we're done |
| 1053 | */ |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1054 | if (search_key.objectid == search_key.offset) |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1055 | return 1; |
| 1056 | |
| 1057 | /* check all the names in this back reference to see |
| 1058 | * if they are in the log. if so, we allow them to stay |
| 1059 | * otherwise they must be unlinked as a conflict |
| 1060 | */ |
| 1061 | ptr = btrfs_item_ptr_offset(leaf, path->slots[0]); |
| 1062 | ptr_end = ptr + btrfs_item_size_nr(leaf, path->slots[0]); |
| 1063 | while (ptr < ptr_end) { |
| 1064 | victim_ref = (struct btrfs_inode_ref *)ptr; |
| 1065 | victim_name_len = btrfs_inode_ref_name_len(leaf, |
| 1066 | victim_ref); |
| 1067 | victim_name = kmalloc(victim_name_len, GFP_NOFS); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1068 | if (!victim_name) |
| 1069 | return -ENOMEM; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1070 | |
| 1071 | read_extent_buffer(leaf, victim_name, |
| 1072 | (unsigned long)(victim_ref + 1), |
| 1073 | victim_name_len); |
| 1074 | |
Nikolay Borisov | d3316c8 | 2019-09-25 14:03:03 +0300 | [diff] [blame] | 1075 | ret = backref_in_log(log_root, &search_key, |
| 1076 | parent_objectid, victim_name, |
| 1077 | victim_name_len); |
| 1078 | if (ret < 0) { |
| 1079 | kfree(victim_name); |
| 1080 | return ret; |
| 1081 | } else if (!ret) { |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1082 | inc_nlink(&inode->vfs_inode); |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1083 | btrfs_release_path(path); |
| 1084 | |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1085 | ret = btrfs_unlink_inode(trans, root, dir, inode, |
Nikolay Borisov | 4ec5934 | 2017-01-18 00:31:44 +0200 | [diff] [blame] | 1086 | victim_name, victim_name_len); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1087 | kfree(victim_name); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1088 | if (ret) |
| 1089 | return ret; |
Nikolay Borisov | e5c304e6 | 2018-02-07 17:55:43 +0200 | [diff] [blame] | 1090 | ret = btrfs_run_delayed_items(trans); |
Filipe David Borba Manana | ada9af2 | 2013-08-05 09:25:47 +0100 | [diff] [blame] | 1091 | if (ret) |
| 1092 | return ret; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1093 | *search_done = 1; |
| 1094 | goto again; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1095 | } |
| 1096 | kfree(victim_name); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1097 | |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1098 | ptr = (unsigned long)(victim_ref + 1) + victim_name_len; |
| 1099 | } |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1100 | |
| 1101 | /* |
| 1102 | * NOTE: we have searched root tree and checked the |
Adam Buchbinder | bb7ab3b | 2016-03-04 11:23:12 -0800 | [diff] [blame] | 1103 | * corresponding ref, it does not need to check again. |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1104 | */ |
| 1105 | *search_done = 1; |
| 1106 | } |
| 1107 | btrfs_release_path(path); |
| 1108 | |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1109 | /* Same search but for extended refs */ |
| 1110 | extref = btrfs_lookup_inode_extref(NULL, root, path, name, namelen, |
| 1111 | inode_objectid, parent_objectid, 0, |
| 1112 | 0); |
| 1113 | if (!IS_ERR_OR_NULL(extref)) { |
| 1114 | u32 item_size; |
| 1115 | u32 cur_offset = 0; |
| 1116 | unsigned long base; |
| 1117 | struct inode *victim_parent; |
| 1118 | |
| 1119 | leaf = path->nodes[0]; |
| 1120 | |
| 1121 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1122 | base = btrfs_item_ptr_offset(leaf, path->slots[0]); |
| 1123 | |
| 1124 | while (cur_offset < item_size) { |
Quentin Casasnovas | dd9ef13 | 2015-03-03 16:31:38 +0100 | [diff] [blame] | 1125 | extref = (struct btrfs_inode_extref *)(base + cur_offset); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1126 | |
| 1127 | victim_name_len = btrfs_inode_extref_name_len(leaf, extref); |
| 1128 | |
| 1129 | if (btrfs_inode_extref_parent(leaf, extref) != parent_objectid) |
| 1130 | goto next; |
| 1131 | |
| 1132 | victim_name = kmalloc(victim_name_len, GFP_NOFS); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1133 | if (!victim_name) |
| 1134 | return -ENOMEM; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1135 | read_extent_buffer(leaf, victim_name, (unsigned long)&extref->name, |
| 1136 | victim_name_len); |
| 1137 | |
| 1138 | search_key.objectid = inode_objectid; |
| 1139 | search_key.type = BTRFS_INODE_EXTREF_KEY; |
| 1140 | search_key.offset = btrfs_extref_hash(parent_objectid, |
| 1141 | victim_name, |
| 1142 | victim_name_len); |
Nikolay Borisov | d3316c8 | 2019-09-25 14:03:03 +0300 | [diff] [blame] | 1143 | ret = backref_in_log(log_root, &search_key, |
| 1144 | parent_objectid, victim_name, |
| 1145 | victim_name_len); |
| 1146 | if (ret < 0) { |
| 1147 | return ret; |
| 1148 | } else if (!ret) { |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1149 | ret = -ENOENT; |
| 1150 | victim_parent = read_one_inode(root, |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1151 | parent_objectid); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1152 | if (victim_parent) { |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1153 | inc_nlink(&inode->vfs_inode); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1154 | btrfs_release_path(path); |
| 1155 | |
| 1156 | ret = btrfs_unlink_inode(trans, root, |
Nikolay Borisov | 4ec5934 | 2017-01-18 00:31:44 +0200 | [diff] [blame] | 1157 | BTRFS_I(victim_parent), |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1158 | inode, |
Nikolay Borisov | 4ec5934 | 2017-01-18 00:31:44 +0200 | [diff] [blame] | 1159 | victim_name, |
| 1160 | victim_name_len); |
Filipe David Borba Manana | ada9af2 | 2013-08-05 09:25:47 +0100 | [diff] [blame] | 1161 | if (!ret) |
| 1162 | ret = btrfs_run_delayed_items( |
Nikolay Borisov | e5c304e6 | 2018-02-07 17:55:43 +0200 | [diff] [blame] | 1163 | trans); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1164 | } |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1165 | iput(victim_parent); |
| 1166 | kfree(victim_name); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1167 | if (ret) |
| 1168 | return ret; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1169 | *search_done = 1; |
| 1170 | goto again; |
| 1171 | } |
| 1172 | kfree(victim_name); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1173 | next: |
| 1174 | cur_offset += victim_name_len + sizeof(*extref); |
| 1175 | } |
| 1176 | *search_done = 1; |
| 1177 | } |
| 1178 | btrfs_release_path(path); |
| 1179 | |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1180 | /* look for a conflicting sequence number */ |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1181 | di = btrfs_lookup_dir_index_item(trans, root, path, btrfs_ino(dir), |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1182 | ref_index, name, namelen, 0); |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1183 | if (di && !IS_ERR(di)) { |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1184 | ret = drop_one_dir_item(trans, root, path, dir, di); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1185 | if (ret) |
| 1186 | return ret; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1187 | } |
| 1188 | btrfs_release_path(path); |
| 1189 | |
Andrea Gelmini | 52042d8 | 2018-11-28 12:05:13 +0100 | [diff] [blame] | 1190 | /* look for a conflicting name */ |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1191 | di = btrfs_lookup_dir_item(trans, root, path, btrfs_ino(dir), |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1192 | name, namelen, 0); |
| 1193 | if (di && !IS_ERR(di)) { |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1194 | ret = drop_one_dir_item(trans, root, path, dir, di); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1195 | if (ret) |
| 1196 | return ret; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1197 | } |
| 1198 | btrfs_release_path(path); |
| 1199 | |
| 1200 | return 0; |
| 1201 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1202 | |
Qu Wenruo | bae15d9 | 2017-11-08 08:54:26 +0800 | [diff] [blame] | 1203 | static int extref_get_fields(struct extent_buffer *eb, unsigned long ref_ptr, |
| 1204 | u32 *namelen, char **name, u64 *index, |
| 1205 | u64 *parent_objectid) |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1206 | { |
| 1207 | struct btrfs_inode_extref *extref; |
| 1208 | |
| 1209 | extref = (struct btrfs_inode_extref *)ref_ptr; |
| 1210 | |
| 1211 | *namelen = btrfs_inode_extref_name_len(eb, extref); |
| 1212 | *name = kmalloc(*namelen, GFP_NOFS); |
| 1213 | if (*name == NULL) |
| 1214 | return -ENOMEM; |
| 1215 | |
| 1216 | read_extent_buffer(eb, *name, (unsigned long)&extref->name, |
| 1217 | *namelen); |
| 1218 | |
Filipe Manana | 1f250e9 | 2018-02-28 15:56:10 +0000 | [diff] [blame] | 1219 | if (index) |
| 1220 | *index = btrfs_inode_extref_index(eb, extref); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1221 | if (parent_objectid) |
| 1222 | *parent_objectid = btrfs_inode_extref_parent(eb, extref); |
| 1223 | |
| 1224 | return 0; |
| 1225 | } |
| 1226 | |
Qu Wenruo | bae15d9 | 2017-11-08 08:54:26 +0800 | [diff] [blame] | 1227 | static int ref_get_fields(struct extent_buffer *eb, unsigned long ref_ptr, |
| 1228 | u32 *namelen, char **name, u64 *index) |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1229 | { |
| 1230 | struct btrfs_inode_ref *ref; |
| 1231 | |
| 1232 | ref = (struct btrfs_inode_ref *)ref_ptr; |
| 1233 | |
| 1234 | *namelen = btrfs_inode_ref_name_len(eb, ref); |
| 1235 | *name = kmalloc(*namelen, GFP_NOFS); |
| 1236 | if (*name == NULL) |
| 1237 | return -ENOMEM; |
| 1238 | |
| 1239 | read_extent_buffer(eb, *name, (unsigned long)(ref + 1), *namelen); |
| 1240 | |
Filipe Manana | 1f250e9 | 2018-02-28 15:56:10 +0000 | [diff] [blame] | 1241 | if (index) |
| 1242 | *index = btrfs_inode_ref_index(eb, ref); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1243 | |
| 1244 | return 0; |
| 1245 | } |
| 1246 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1247 | /* |
Filipe Manana | 1f250e9 | 2018-02-28 15:56:10 +0000 | [diff] [blame] | 1248 | * Take an inode reference item from the log tree and iterate all names from the |
| 1249 | * inode reference item in the subvolume tree with the same key (if it exists). |
| 1250 | * For any name that is not in the inode reference item from the log tree, do a |
| 1251 | * proper unlink of that name (that is, remove its entry from the inode |
| 1252 | * reference item and both dir index keys). |
| 1253 | */ |
| 1254 | static int unlink_old_inode_refs(struct btrfs_trans_handle *trans, |
| 1255 | struct btrfs_root *root, |
| 1256 | struct btrfs_path *path, |
| 1257 | struct btrfs_inode *inode, |
| 1258 | struct extent_buffer *log_eb, |
| 1259 | int log_slot, |
| 1260 | struct btrfs_key *key) |
| 1261 | { |
| 1262 | int ret; |
| 1263 | unsigned long ref_ptr; |
| 1264 | unsigned long ref_end; |
| 1265 | struct extent_buffer *eb; |
| 1266 | |
| 1267 | again: |
| 1268 | btrfs_release_path(path); |
| 1269 | ret = btrfs_search_slot(NULL, root, key, path, 0, 0); |
| 1270 | if (ret > 0) { |
| 1271 | ret = 0; |
| 1272 | goto out; |
| 1273 | } |
| 1274 | if (ret < 0) |
| 1275 | goto out; |
| 1276 | |
| 1277 | eb = path->nodes[0]; |
| 1278 | ref_ptr = btrfs_item_ptr_offset(eb, path->slots[0]); |
| 1279 | ref_end = ref_ptr + btrfs_item_size_nr(eb, path->slots[0]); |
| 1280 | while (ref_ptr < ref_end) { |
| 1281 | char *name = NULL; |
| 1282 | int namelen; |
| 1283 | u64 parent_id; |
| 1284 | |
| 1285 | if (key->type == BTRFS_INODE_EXTREF_KEY) { |
| 1286 | ret = extref_get_fields(eb, ref_ptr, &namelen, &name, |
| 1287 | NULL, &parent_id); |
| 1288 | } else { |
| 1289 | parent_id = key->offset; |
| 1290 | ret = ref_get_fields(eb, ref_ptr, &namelen, &name, |
| 1291 | NULL); |
| 1292 | } |
| 1293 | if (ret) |
| 1294 | goto out; |
| 1295 | |
| 1296 | if (key->type == BTRFS_INODE_EXTREF_KEY) |
Nikolay Borisov | 6ff49c6 | 2019-08-27 14:46:29 +0300 | [diff] [blame] | 1297 | ret = !!btrfs_find_name_in_ext_backref(log_eb, log_slot, |
| 1298 | parent_id, name, |
| 1299 | namelen); |
Filipe Manana | 1f250e9 | 2018-02-28 15:56:10 +0000 | [diff] [blame] | 1300 | else |
Nikolay Borisov | 9bb8407 | 2019-08-27 14:46:28 +0300 | [diff] [blame] | 1301 | ret = !!btrfs_find_name_in_backref(log_eb, log_slot, |
| 1302 | name, namelen); |
Filipe Manana | 1f250e9 | 2018-02-28 15:56:10 +0000 | [diff] [blame] | 1303 | |
| 1304 | if (!ret) { |
| 1305 | struct inode *dir; |
| 1306 | |
| 1307 | btrfs_release_path(path); |
| 1308 | dir = read_one_inode(root, parent_id); |
| 1309 | if (!dir) { |
| 1310 | ret = -ENOENT; |
| 1311 | kfree(name); |
| 1312 | goto out; |
| 1313 | } |
| 1314 | ret = btrfs_unlink_inode(trans, root, BTRFS_I(dir), |
| 1315 | inode, name, namelen); |
| 1316 | kfree(name); |
| 1317 | iput(dir); |
| 1318 | if (ret) |
| 1319 | goto out; |
| 1320 | goto again; |
| 1321 | } |
| 1322 | |
| 1323 | kfree(name); |
| 1324 | ref_ptr += namelen; |
| 1325 | if (key->type == BTRFS_INODE_EXTREF_KEY) |
| 1326 | ref_ptr += sizeof(struct btrfs_inode_extref); |
| 1327 | else |
| 1328 | ref_ptr += sizeof(struct btrfs_inode_ref); |
| 1329 | } |
| 1330 | ret = 0; |
| 1331 | out: |
| 1332 | btrfs_release_path(path); |
| 1333 | return ret; |
| 1334 | } |
| 1335 | |
Filipe Manana | 0d83639 | 2018-07-20 10:59:06 +0100 | [diff] [blame] | 1336 | static int btrfs_inode_ref_exists(struct inode *inode, struct inode *dir, |
| 1337 | const u8 ref_type, const char *name, |
| 1338 | const int namelen) |
| 1339 | { |
| 1340 | struct btrfs_key key; |
| 1341 | struct btrfs_path *path; |
| 1342 | const u64 parent_id = btrfs_ino(BTRFS_I(dir)); |
| 1343 | int ret; |
| 1344 | |
| 1345 | path = btrfs_alloc_path(); |
| 1346 | if (!path) |
| 1347 | return -ENOMEM; |
| 1348 | |
| 1349 | key.objectid = btrfs_ino(BTRFS_I(inode)); |
| 1350 | key.type = ref_type; |
| 1351 | if (key.type == BTRFS_INODE_REF_KEY) |
| 1352 | key.offset = parent_id; |
| 1353 | else |
| 1354 | key.offset = btrfs_extref_hash(parent_id, name, namelen); |
| 1355 | |
| 1356 | ret = btrfs_search_slot(NULL, BTRFS_I(inode)->root, &key, path, 0, 0); |
| 1357 | if (ret < 0) |
| 1358 | goto out; |
| 1359 | if (ret > 0) { |
| 1360 | ret = 0; |
| 1361 | goto out; |
| 1362 | } |
| 1363 | if (key.type == BTRFS_INODE_EXTREF_KEY) |
Nikolay Borisov | 6ff49c6 | 2019-08-27 14:46:29 +0300 | [diff] [blame] | 1364 | ret = !!btrfs_find_name_in_ext_backref(path->nodes[0], |
| 1365 | path->slots[0], parent_id, name, namelen); |
Filipe Manana | 0d83639 | 2018-07-20 10:59:06 +0100 | [diff] [blame] | 1366 | else |
Nikolay Borisov | 9bb8407 | 2019-08-27 14:46:28 +0300 | [diff] [blame] | 1367 | ret = !!btrfs_find_name_in_backref(path->nodes[0], path->slots[0], |
| 1368 | name, namelen); |
Filipe Manana | 0d83639 | 2018-07-20 10:59:06 +0100 | [diff] [blame] | 1369 | |
| 1370 | out: |
| 1371 | btrfs_free_path(path); |
| 1372 | return ret; |
| 1373 | } |
| 1374 | |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 1375 | static int add_link(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
| 1376 | struct inode *dir, struct inode *inode, const char *name, |
| 1377 | int namelen, u64 ref_index) |
| 1378 | { |
| 1379 | struct btrfs_dir_item *dir_item; |
| 1380 | struct btrfs_key key; |
| 1381 | struct btrfs_path *path; |
| 1382 | struct inode *other_inode = NULL; |
| 1383 | int ret; |
| 1384 | |
| 1385 | path = btrfs_alloc_path(); |
| 1386 | if (!path) |
| 1387 | return -ENOMEM; |
| 1388 | |
| 1389 | dir_item = btrfs_lookup_dir_item(NULL, root, path, |
| 1390 | btrfs_ino(BTRFS_I(dir)), |
| 1391 | name, namelen, 0); |
| 1392 | if (!dir_item) { |
| 1393 | btrfs_release_path(path); |
| 1394 | goto add_link; |
| 1395 | } else if (IS_ERR(dir_item)) { |
| 1396 | ret = PTR_ERR(dir_item); |
| 1397 | goto out; |
| 1398 | } |
| 1399 | |
| 1400 | /* |
| 1401 | * Our inode's dentry collides with the dentry of another inode which is |
| 1402 | * in the log but not yet processed since it has a higher inode number. |
| 1403 | * So delete that other dentry. |
| 1404 | */ |
| 1405 | btrfs_dir_item_key_to_cpu(path->nodes[0], dir_item, &key); |
| 1406 | btrfs_release_path(path); |
| 1407 | other_inode = read_one_inode(root, key.objectid); |
| 1408 | if (!other_inode) { |
| 1409 | ret = -ENOENT; |
| 1410 | goto out; |
| 1411 | } |
| 1412 | ret = btrfs_unlink_inode(trans, root, BTRFS_I(dir), BTRFS_I(other_inode), |
| 1413 | name, namelen); |
| 1414 | if (ret) |
| 1415 | goto out; |
| 1416 | /* |
| 1417 | * If we dropped the link count to 0, bump it so that later the iput() |
| 1418 | * on the inode will not free it. We will fixup the link count later. |
| 1419 | */ |
| 1420 | if (other_inode->i_nlink == 0) |
| 1421 | inc_nlink(other_inode); |
| 1422 | |
| 1423 | ret = btrfs_run_delayed_items(trans); |
| 1424 | if (ret) |
| 1425 | goto out; |
| 1426 | add_link: |
| 1427 | ret = btrfs_add_link(trans, BTRFS_I(dir), BTRFS_I(inode), |
| 1428 | name, namelen, 0, ref_index); |
| 1429 | out: |
| 1430 | iput(other_inode); |
| 1431 | btrfs_free_path(path); |
| 1432 | |
| 1433 | return ret; |
| 1434 | } |
| 1435 | |
Filipe Manana | 1f250e9 | 2018-02-28 15:56:10 +0000 | [diff] [blame] | 1436 | /* |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1437 | * replay one inode back reference item found in the log tree. |
| 1438 | * eb, slot and key refer to the buffer and key found in the log tree. |
| 1439 | * root is the destination we are replaying into, and path is for temp |
| 1440 | * use by this function. (it should be released on return). |
| 1441 | */ |
| 1442 | static noinline int add_inode_ref(struct btrfs_trans_handle *trans, |
| 1443 | struct btrfs_root *root, |
| 1444 | struct btrfs_root *log, |
| 1445 | struct btrfs_path *path, |
| 1446 | struct extent_buffer *eb, int slot, |
| 1447 | struct btrfs_key *key) |
| 1448 | { |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1449 | struct inode *dir = NULL; |
| 1450 | struct inode *inode = NULL; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1451 | unsigned long ref_ptr; |
| 1452 | unsigned long ref_end; |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1453 | char *name = NULL; |
liubo | 34f3e4f | 2011-08-06 08:35:23 +0000 | [diff] [blame] | 1454 | int namelen; |
| 1455 | int ret; |
liubo | c622ae6 | 2011-03-26 08:01:12 -0400 | [diff] [blame] | 1456 | int search_done = 0; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1457 | int log_ref_ver = 0; |
| 1458 | u64 parent_objectid; |
| 1459 | u64 inode_objectid; |
Chris Mason | f46dbe3 | 2012-10-09 11:17:20 -0400 | [diff] [blame] | 1460 | u64 ref_index = 0; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1461 | int ref_struct_size; |
| 1462 | |
| 1463 | ref_ptr = btrfs_item_ptr_offset(eb, slot); |
| 1464 | ref_end = ref_ptr + btrfs_item_size_nr(eb, slot); |
| 1465 | |
| 1466 | if (key->type == BTRFS_INODE_EXTREF_KEY) { |
| 1467 | struct btrfs_inode_extref *r; |
| 1468 | |
| 1469 | ref_struct_size = sizeof(struct btrfs_inode_extref); |
| 1470 | log_ref_ver = 1; |
| 1471 | r = (struct btrfs_inode_extref *)ref_ptr; |
| 1472 | parent_objectid = btrfs_inode_extref_parent(eb, r); |
| 1473 | } else { |
| 1474 | ref_struct_size = sizeof(struct btrfs_inode_ref); |
| 1475 | parent_objectid = key->offset; |
| 1476 | } |
| 1477 | inode_objectid = key->objectid; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1478 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1479 | /* |
| 1480 | * it is possible that we didn't log all the parent directories |
| 1481 | * for a given inode. If we don't find the dir, just don't |
| 1482 | * copy the back ref in. The link count fixup code will take |
| 1483 | * care of the rest |
| 1484 | */ |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1485 | dir = read_one_inode(root, parent_objectid); |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1486 | if (!dir) { |
| 1487 | ret = -ENOENT; |
| 1488 | goto out; |
| 1489 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1490 | |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1491 | inode = read_one_inode(root, inode_objectid); |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 1492 | if (!inode) { |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1493 | ret = -EIO; |
| 1494 | goto out; |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 1495 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1496 | |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1497 | while (ref_ptr < ref_end) { |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1498 | if (log_ref_ver) { |
Qu Wenruo | bae15d9 | 2017-11-08 08:54:26 +0800 | [diff] [blame] | 1499 | ret = extref_get_fields(eb, ref_ptr, &namelen, &name, |
| 1500 | &ref_index, &parent_objectid); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1501 | /* |
| 1502 | * parent object can change from one array |
| 1503 | * item to another. |
| 1504 | */ |
| 1505 | if (!dir) |
| 1506 | dir = read_one_inode(root, parent_objectid); |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1507 | if (!dir) { |
| 1508 | ret = -ENOENT; |
| 1509 | goto out; |
| 1510 | } |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1511 | } else { |
Qu Wenruo | bae15d9 | 2017-11-08 08:54:26 +0800 | [diff] [blame] | 1512 | ret = ref_get_fields(eb, ref_ptr, &namelen, &name, |
| 1513 | &ref_index); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1514 | } |
| 1515 | if (ret) |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1516 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1517 | |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1518 | /* if we already have a perfect match, we're done */ |
David Sterba | f85b737 | 2017-01-20 14:54:07 +0100 | [diff] [blame] | 1519 | if (!inode_in_dir(root, path, btrfs_ino(BTRFS_I(dir)), |
| 1520 | btrfs_ino(BTRFS_I(inode)), ref_index, |
| 1521 | name, namelen)) { |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1522 | /* |
| 1523 | * look for a conflicting back reference in the |
| 1524 | * metadata. if we find one we have to unlink that name |
| 1525 | * of the file before we add our new link. Later on, we |
| 1526 | * overwrite any existing back reference, and we don't |
| 1527 | * want to create dangling pointers in the directory. |
| 1528 | */ |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1529 | |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1530 | if (!search_done) { |
| 1531 | ret = __add_inode_ref(trans, root, path, log, |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1532 | BTRFS_I(dir), |
David Sterba | d75eefd | 2017-02-10 20:20:19 +0100 | [diff] [blame] | 1533 | BTRFS_I(inode), |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1534 | inode_objectid, |
| 1535 | parent_objectid, |
| 1536 | ref_index, name, namelen, |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1537 | &search_done); |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1538 | if (ret) { |
| 1539 | if (ret == 1) |
| 1540 | ret = 0; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1541 | goto out; |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1542 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1543 | } |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1544 | |
Filipe Manana | 0d83639 | 2018-07-20 10:59:06 +0100 | [diff] [blame] | 1545 | /* |
| 1546 | * If a reference item already exists for this inode |
| 1547 | * with the same parent and name, but different index, |
| 1548 | * drop it and the corresponding directory index entries |
| 1549 | * from the parent before adding the new reference item |
| 1550 | * and dir index entries, otherwise we would fail with |
| 1551 | * -EEXIST returned from btrfs_add_link() below. |
| 1552 | */ |
| 1553 | ret = btrfs_inode_ref_exists(inode, dir, key->type, |
| 1554 | name, namelen); |
| 1555 | if (ret > 0) { |
| 1556 | ret = btrfs_unlink_inode(trans, root, |
| 1557 | BTRFS_I(dir), |
| 1558 | BTRFS_I(inode), |
| 1559 | name, namelen); |
| 1560 | /* |
| 1561 | * If we dropped the link count to 0, bump it so |
| 1562 | * that later the iput() on the inode will not |
| 1563 | * free it. We will fixup the link count later. |
| 1564 | */ |
| 1565 | if (!ret && inode->i_nlink == 0) |
| 1566 | inc_nlink(inode); |
| 1567 | } |
| 1568 | if (ret < 0) |
| 1569 | goto out; |
| 1570 | |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1571 | /* insert our name */ |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 1572 | ret = add_link(trans, root, dir, inode, name, namelen, |
| 1573 | ref_index); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1574 | if (ret) |
| 1575 | goto out; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1576 | |
Josef Bacik | f96d447 | 2021-05-19 11:26:25 -0400 | [diff] [blame] | 1577 | ret = btrfs_update_inode(trans, root, BTRFS_I(inode)); |
| 1578 | if (ret) |
| 1579 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1580 | } |
liubo | c622ae6 | 2011-03-26 08:01:12 -0400 | [diff] [blame] | 1581 | |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1582 | ref_ptr = (unsigned long)(ref_ptr + ref_struct_size) + namelen; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1583 | kfree(name); |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1584 | name = NULL; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1585 | if (log_ref_ver) { |
| 1586 | iput(dir); |
| 1587 | dir = NULL; |
| 1588 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1589 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1590 | |
Filipe Manana | 1f250e9 | 2018-02-28 15:56:10 +0000 | [diff] [blame] | 1591 | /* |
| 1592 | * Before we overwrite the inode reference item in the subvolume tree |
| 1593 | * with the item from the log tree, we must unlink all names from the |
| 1594 | * parent directory that are in the subvolume's tree inode reference |
| 1595 | * item, otherwise we end up with an inconsistent subvolume tree where |
| 1596 | * dir index entries exist for a name but there is no inode reference |
| 1597 | * item with the same name. |
| 1598 | */ |
| 1599 | ret = unlink_old_inode_refs(trans, root, path, BTRFS_I(inode), eb, slot, |
| 1600 | key); |
| 1601 | if (ret) |
| 1602 | goto out; |
| 1603 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1604 | /* finally write the back reference in the inode */ |
| 1605 | ret = overwrite_item(trans, root, path, eb, slot, key); |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1606 | out: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1607 | btrfs_release_path(path); |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1608 | kfree(name); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1609 | iput(dir); |
| 1610 | iput(inode); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1611 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1612 | } |
| 1613 | |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1614 | static int count_inode_extrefs(struct btrfs_root *root, |
Nikolay Borisov | 3628365 | 2017-01-18 00:31:49 +0200 | [diff] [blame] | 1615 | struct btrfs_inode *inode, struct btrfs_path *path) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1616 | { |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1617 | int ret = 0; |
| 1618 | int name_len; |
| 1619 | unsigned int nlink = 0; |
| 1620 | u32 item_size; |
| 1621 | u32 cur_offset = 0; |
Nikolay Borisov | 3628365 | 2017-01-18 00:31:49 +0200 | [diff] [blame] | 1622 | u64 inode_objectid = btrfs_ino(inode); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1623 | u64 offset = 0; |
| 1624 | unsigned long ptr; |
| 1625 | struct btrfs_inode_extref *extref; |
| 1626 | struct extent_buffer *leaf; |
| 1627 | |
| 1628 | while (1) { |
| 1629 | ret = btrfs_find_one_extref(root, inode_objectid, offset, path, |
| 1630 | &extref, &offset); |
| 1631 | if (ret) |
| 1632 | break; |
| 1633 | |
| 1634 | leaf = path->nodes[0]; |
| 1635 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1636 | ptr = btrfs_item_ptr_offset(leaf, path->slots[0]); |
Filipe Manana | 2c2c452 | 2015-01-13 16:40:04 +0000 | [diff] [blame] | 1637 | cur_offset = 0; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1638 | |
| 1639 | while (cur_offset < item_size) { |
| 1640 | extref = (struct btrfs_inode_extref *) (ptr + cur_offset); |
| 1641 | name_len = btrfs_inode_extref_name_len(leaf, extref); |
| 1642 | |
| 1643 | nlink++; |
| 1644 | |
| 1645 | cur_offset += name_len + sizeof(*extref); |
| 1646 | } |
| 1647 | |
| 1648 | offset++; |
| 1649 | btrfs_release_path(path); |
| 1650 | } |
| 1651 | btrfs_release_path(path); |
| 1652 | |
Filipe Manana | 2c2c452 | 2015-01-13 16:40:04 +0000 | [diff] [blame] | 1653 | if (ret < 0 && ret != -ENOENT) |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1654 | return ret; |
| 1655 | return nlink; |
| 1656 | } |
| 1657 | |
| 1658 | static int count_inode_refs(struct btrfs_root *root, |
Nikolay Borisov | f329e31 | 2017-01-18 00:31:50 +0200 | [diff] [blame] | 1659 | struct btrfs_inode *inode, struct btrfs_path *path) |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1660 | { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1661 | int ret; |
| 1662 | struct btrfs_key key; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1663 | unsigned int nlink = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1664 | unsigned long ptr; |
| 1665 | unsigned long ptr_end; |
| 1666 | int name_len; |
Nikolay Borisov | f329e31 | 2017-01-18 00:31:50 +0200 | [diff] [blame] | 1667 | u64 ino = btrfs_ino(inode); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1668 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1669 | key.objectid = ino; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1670 | key.type = BTRFS_INODE_REF_KEY; |
| 1671 | key.offset = (u64)-1; |
| 1672 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1673 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1674 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 1675 | if (ret < 0) |
| 1676 | break; |
| 1677 | if (ret > 0) { |
| 1678 | if (path->slots[0] == 0) |
| 1679 | break; |
| 1680 | path->slots[0]--; |
| 1681 | } |
Filipe David Borba Manana | e93ae26 | 2013-10-14 22:49:11 +0100 | [diff] [blame] | 1682 | process_slot: |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1683 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 1684 | path->slots[0]); |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1685 | if (key.objectid != ino || |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1686 | key.type != BTRFS_INODE_REF_KEY) |
| 1687 | break; |
| 1688 | ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]); |
| 1689 | ptr_end = ptr + btrfs_item_size_nr(path->nodes[0], |
| 1690 | path->slots[0]); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1691 | while (ptr < ptr_end) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1692 | struct btrfs_inode_ref *ref; |
| 1693 | |
| 1694 | ref = (struct btrfs_inode_ref *)ptr; |
| 1695 | name_len = btrfs_inode_ref_name_len(path->nodes[0], |
| 1696 | ref); |
| 1697 | ptr = (unsigned long)(ref + 1) + name_len; |
| 1698 | nlink++; |
| 1699 | } |
| 1700 | |
| 1701 | if (key.offset == 0) |
| 1702 | break; |
Filipe David Borba Manana | e93ae26 | 2013-10-14 22:49:11 +0100 | [diff] [blame] | 1703 | if (path->slots[0] > 0) { |
| 1704 | path->slots[0]--; |
| 1705 | goto process_slot; |
| 1706 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1707 | key.offset--; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1708 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1709 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1710 | btrfs_release_path(path); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1711 | |
| 1712 | return nlink; |
| 1713 | } |
| 1714 | |
| 1715 | /* |
| 1716 | * There are a few corners where the link count of the file can't |
| 1717 | * be properly maintained during replay. So, instead of adding |
| 1718 | * lots of complexity to the log code, we just scan the backrefs |
| 1719 | * for any file that has been through replay. |
| 1720 | * |
| 1721 | * The scan will update the link count on the inode to reflect the |
| 1722 | * number of back refs found. If it goes down to zero, the iput |
| 1723 | * will free the inode. |
| 1724 | */ |
| 1725 | static noinline int fixup_inode_link_count(struct btrfs_trans_handle *trans, |
| 1726 | struct btrfs_root *root, |
| 1727 | struct inode *inode) |
| 1728 | { |
| 1729 | struct btrfs_path *path; |
| 1730 | int ret; |
| 1731 | u64 nlink = 0; |
Nikolay Borisov | 4a0cc7c | 2017-01-10 20:35:31 +0200 | [diff] [blame] | 1732 | u64 ino = btrfs_ino(BTRFS_I(inode)); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1733 | |
| 1734 | path = btrfs_alloc_path(); |
| 1735 | if (!path) |
| 1736 | return -ENOMEM; |
| 1737 | |
Nikolay Borisov | f329e31 | 2017-01-18 00:31:50 +0200 | [diff] [blame] | 1738 | ret = count_inode_refs(root, BTRFS_I(inode), path); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1739 | if (ret < 0) |
| 1740 | goto out; |
| 1741 | |
| 1742 | nlink = ret; |
| 1743 | |
Nikolay Borisov | 3628365 | 2017-01-18 00:31:49 +0200 | [diff] [blame] | 1744 | ret = count_inode_extrefs(root, BTRFS_I(inode), path); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1745 | if (ret < 0) |
| 1746 | goto out; |
| 1747 | |
| 1748 | nlink += ret; |
| 1749 | |
| 1750 | ret = 0; |
| 1751 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1752 | if (nlink != inode->i_nlink) { |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 1753 | set_nlink(inode, nlink); |
Josef Bacik | f96d447 | 2021-05-19 11:26:25 -0400 | [diff] [blame] | 1754 | ret = btrfs_update_inode(trans, root, BTRFS_I(inode)); |
| 1755 | if (ret) |
| 1756 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1757 | } |
Chris Mason | 8d5bf1c | 2008-09-11 15:51:21 -0400 | [diff] [blame] | 1758 | BTRFS_I(inode)->index_cnt = (u64)-1; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1759 | |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 1760 | if (inode->i_nlink == 0) { |
| 1761 | if (S_ISDIR(inode->i_mode)) { |
| 1762 | ret = replay_dir_deletes(trans, root, NULL, path, |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1763 | ino, 1); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1764 | if (ret) |
| 1765 | goto out; |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 1766 | } |
Nikolay Borisov | ecdcf3c | 2020-10-22 18:40:46 +0300 | [diff] [blame] | 1767 | ret = btrfs_insert_orphan_item(trans, root, ino); |
| 1768 | if (ret == -EEXIST) |
| 1769 | ret = 0; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 1770 | } |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 1771 | |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1772 | out: |
| 1773 | btrfs_free_path(path); |
| 1774 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1775 | } |
| 1776 | |
| 1777 | static noinline int fixup_inode_link_counts(struct btrfs_trans_handle *trans, |
| 1778 | struct btrfs_root *root, |
| 1779 | struct btrfs_path *path) |
| 1780 | { |
| 1781 | int ret; |
| 1782 | struct btrfs_key key; |
| 1783 | struct inode *inode; |
| 1784 | |
| 1785 | key.objectid = BTRFS_TREE_LOG_FIXUP_OBJECTID; |
| 1786 | key.type = BTRFS_ORPHAN_ITEM_KEY; |
| 1787 | key.offset = (u64)-1; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1788 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1789 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1790 | if (ret < 0) |
| 1791 | break; |
| 1792 | |
| 1793 | if (ret == 1) { |
Josef Bacik | 011b28a | 2021-05-19 13:13:15 -0400 | [diff] [blame] | 1794 | ret = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1795 | if (path->slots[0] == 0) |
| 1796 | break; |
| 1797 | path->slots[0]--; |
| 1798 | } |
| 1799 | |
| 1800 | btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]); |
| 1801 | if (key.objectid != BTRFS_TREE_LOG_FIXUP_OBJECTID || |
| 1802 | key.type != BTRFS_ORPHAN_ITEM_KEY) |
| 1803 | break; |
| 1804 | |
| 1805 | ret = btrfs_del_item(trans, root, path); |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 1806 | if (ret) |
Josef Bacik | 011b28a | 2021-05-19 13:13:15 -0400 | [diff] [blame] | 1807 | break; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1808 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1809 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1810 | inode = read_one_inode(root, key.offset); |
Josef Bacik | 011b28a | 2021-05-19 13:13:15 -0400 | [diff] [blame] | 1811 | if (!inode) { |
| 1812 | ret = -EIO; |
| 1813 | break; |
| 1814 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1815 | |
| 1816 | ret = fixup_inode_link_count(trans, root, inode); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1817 | iput(inode); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1818 | if (ret) |
Josef Bacik | 011b28a | 2021-05-19 13:13:15 -0400 | [diff] [blame] | 1819 | break; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1820 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 1821 | /* |
| 1822 | * fixup on a directory may create new entries, |
| 1823 | * make sure we always look for the highset possible |
| 1824 | * offset |
| 1825 | */ |
| 1826 | key.offset = (u64)-1; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1827 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1828 | btrfs_release_path(path); |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 1829 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1830 | } |
| 1831 | |
| 1832 | |
| 1833 | /* |
| 1834 | * record a given inode in the fixup dir so we can check its link |
| 1835 | * count when replay is done. The link count is incremented here |
| 1836 | * so the inode won't go away until we check it |
| 1837 | */ |
| 1838 | static noinline int link_to_fixup_dir(struct btrfs_trans_handle *trans, |
| 1839 | struct btrfs_root *root, |
| 1840 | struct btrfs_path *path, |
| 1841 | u64 objectid) |
| 1842 | { |
| 1843 | struct btrfs_key key; |
| 1844 | int ret = 0; |
| 1845 | struct inode *inode; |
| 1846 | |
| 1847 | inode = read_one_inode(root, objectid); |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 1848 | if (!inode) |
| 1849 | return -EIO; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1850 | |
| 1851 | key.objectid = BTRFS_TREE_LOG_FIXUP_OBJECTID; |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 1852 | key.type = BTRFS_ORPHAN_ITEM_KEY; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1853 | key.offset = objectid; |
| 1854 | |
| 1855 | ret = btrfs_insert_empty_item(trans, root, path, &key, 0); |
| 1856 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1857 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1858 | if (ret == 0) { |
Josef Bacik | 9bf7a48 | 2013-03-01 13:35:47 -0500 | [diff] [blame] | 1859 | if (!inode->i_nlink) |
| 1860 | set_nlink(inode, 1); |
| 1861 | else |
Zach Brown | 8b558c5 | 2013-10-16 12:10:34 -0700 | [diff] [blame] | 1862 | inc_nlink(inode); |
Nikolay Borisov | 9a56fcd | 2020-11-02 16:48:59 +0200 | [diff] [blame] | 1863 | ret = btrfs_update_inode(trans, root, BTRFS_I(inode)); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1864 | } else if (ret == -EEXIST) { |
| 1865 | ret = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1866 | } |
| 1867 | iput(inode); |
| 1868 | |
| 1869 | return ret; |
| 1870 | } |
| 1871 | |
| 1872 | /* |
| 1873 | * when replaying the log for a directory, we only insert names |
| 1874 | * for inodes that actually exist. This means an fsync on a directory |
| 1875 | * does not implicitly fsync all the new files in it |
| 1876 | */ |
| 1877 | static noinline int insert_one_name(struct btrfs_trans_handle *trans, |
| 1878 | struct btrfs_root *root, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1879 | u64 dirid, u64 index, |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 1880 | char *name, int name_len, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1881 | struct btrfs_key *location) |
| 1882 | { |
| 1883 | struct inode *inode; |
| 1884 | struct inode *dir; |
| 1885 | int ret; |
| 1886 | |
| 1887 | inode = read_one_inode(root, location->objectid); |
| 1888 | if (!inode) |
| 1889 | return -ENOENT; |
| 1890 | |
| 1891 | dir = read_one_inode(root, dirid); |
| 1892 | if (!dir) { |
| 1893 | iput(inode); |
| 1894 | return -EIO; |
| 1895 | } |
Josef Bacik | d555438 | 2013-09-11 14:17:00 -0400 | [diff] [blame] | 1896 | |
Nikolay Borisov | db0a669 | 2017-02-20 13:51:08 +0200 | [diff] [blame] | 1897 | ret = btrfs_add_link(trans, BTRFS_I(dir), BTRFS_I(inode), name, |
| 1898 | name_len, 1, index); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1899 | |
| 1900 | /* FIXME, put inode into FIXUP list */ |
| 1901 | |
| 1902 | iput(inode); |
| 1903 | iput(dir); |
| 1904 | return ret; |
| 1905 | } |
| 1906 | |
| 1907 | /* |
| 1908 | * take a single entry in a log directory item and replay it into |
| 1909 | * the subvolume. |
| 1910 | * |
| 1911 | * if a conflicting item exists in the subdirectory already, |
| 1912 | * the inode it points to is unlinked and put into the link count |
| 1913 | * fix up tree. |
| 1914 | * |
| 1915 | * If a name from the log points to a file or directory that does |
| 1916 | * not exist in the FS, it is skipped. fsyncs on directories |
| 1917 | * do not force down inodes inside that directory, just changes to the |
| 1918 | * names or unlinks in a directory. |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 1919 | * |
| 1920 | * Returns < 0 on error, 0 if the name wasn't replayed (dentry points to a |
| 1921 | * non-existing inode) and 1 if the name was replayed. |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1922 | */ |
| 1923 | static noinline int replay_one_name(struct btrfs_trans_handle *trans, |
| 1924 | struct btrfs_root *root, |
| 1925 | struct btrfs_path *path, |
| 1926 | struct extent_buffer *eb, |
| 1927 | struct btrfs_dir_item *di, |
| 1928 | struct btrfs_key *key) |
| 1929 | { |
| 1930 | char *name; |
| 1931 | int name_len; |
| 1932 | struct btrfs_dir_item *dst_di; |
| 1933 | struct btrfs_key found_key; |
| 1934 | struct btrfs_key log_key; |
| 1935 | struct inode *dir; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1936 | u8 log_type; |
Chris Mason | 4bef084 | 2008-09-08 11:18:08 -0400 | [diff] [blame] | 1937 | int exists; |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1938 | int ret = 0; |
Josef Bacik | d555438 | 2013-09-11 14:17:00 -0400 | [diff] [blame] | 1939 | bool update_size = (key->type == BTRFS_DIR_INDEX_KEY); |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 1940 | bool name_added = false; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1941 | |
| 1942 | dir = read_one_inode(root, key->objectid); |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 1943 | if (!dir) |
| 1944 | return -EIO; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1945 | |
| 1946 | name_len = btrfs_dir_name_len(eb, di); |
| 1947 | name = kmalloc(name_len, GFP_NOFS); |
Filipe David Borba Manana | 2bac325 | 2013-08-04 19:58:57 +0100 | [diff] [blame] | 1948 | if (!name) { |
| 1949 | ret = -ENOMEM; |
| 1950 | goto out; |
| 1951 | } |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 1952 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1953 | log_type = btrfs_dir_type(eb, di); |
| 1954 | read_extent_buffer(eb, name, (unsigned long)(di + 1), |
| 1955 | name_len); |
| 1956 | |
| 1957 | btrfs_dir_item_key_to_cpu(eb, di, &log_key); |
Chris Mason | 4bef084 | 2008-09-08 11:18:08 -0400 | [diff] [blame] | 1958 | exists = btrfs_lookup_inode(trans, root, path, &log_key, 0); |
| 1959 | if (exists == 0) |
| 1960 | exists = 1; |
| 1961 | else |
| 1962 | exists = 0; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1963 | btrfs_release_path(path); |
Chris Mason | 4bef084 | 2008-09-08 11:18:08 -0400 | [diff] [blame] | 1964 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1965 | if (key->type == BTRFS_DIR_ITEM_KEY) { |
| 1966 | dst_di = btrfs_lookup_dir_item(trans, root, path, key->objectid, |
| 1967 | name, name_len, 1); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1968 | } else if (key->type == BTRFS_DIR_INDEX_KEY) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1969 | dst_di = btrfs_lookup_dir_index_item(trans, root, path, |
| 1970 | key->objectid, |
| 1971 | key->offset, name, |
| 1972 | name_len, 1); |
| 1973 | } else { |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1974 | /* Corruption */ |
| 1975 | ret = -EINVAL; |
| 1976 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1977 | } |
David Sterba | c704005 | 2011-04-19 18:00:01 +0200 | [diff] [blame] | 1978 | if (IS_ERR_OR_NULL(dst_di)) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1979 | /* we need a sequence number to insert, so we only |
| 1980 | * do inserts for the BTRFS_DIR_INDEX_KEY types |
| 1981 | */ |
| 1982 | if (key->type != BTRFS_DIR_INDEX_KEY) |
| 1983 | goto out; |
| 1984 | goto insert; |
| 1985 | } |
| 1986 | |
| 1987 | btrfs_dir_item_key_to_cpu(path->nodes[0], dst_di, &found_key); |
| 1988 | /* the existing item matches the logged item */ |
| 1989 | if (found_key.objectid == log_key.objectid && |
| 1990 | found_key.type == log_key.type && |
| 1991 | found_key.offset == log_key.offset && |
| 1992 | btrfs_dir_type(path->nodes[0], dst_di) == log_type) { |
Filipe Manana | a2cc11d | 2014-09-08 22:53:18 +0100 | [diff] [blame] | 1993 | update_size = false; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1994 | goto out; |
| 1995 | } |
| 1996 | |
| 1997 | /* |
| 1998 | * don't drop the conflicting directory entry if the inode |
| 1999 | * for the new entry doesn't exist |
| 2000 | */ |
Chris Mason | 4bef084 | 2008-09-08 11:18:08 -0400 | [diff] [blame] | 2001 | if (!exists) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2002 | goto out; |
| 2003 | |
Nikolay Borisov | 207e7d9 | 2017-01-18 00:31:45 +0200 | [diff] [blame] | 2004 | ret = drop_one_dir_item(trans, root, path, BTRFS_I(dir), dst_di); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 2005 | if (ret) |
| 2006 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2007 | |
| 2008 | if (key->type == BTRFS_DIR_INDEX_KEY) |
| 2009 | goto insert; |
| 2010 | out: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2011 | btrfs_release_path(path); |
Josef Bacik | d555438 | 2013-09-11 14:17:00 -0400 | [diff] [blame] | 2012 | if (!ret && update_size) { |
Nikolay Borisov | 6ef06d2 | 2017-02-20 13:50:34 +0200 | [diff] [blame] | 2013 | btrfs_i_size_write(BTRFS_I(dir), dir->i_size + name_len * 2); |
Nikolay Borisov | 9a56fcd | 2020-11-02 16:48:59 +0200 | [diff] [blame] | 2014 | ret = btrfs_update_inode(trans, root, BTRFS_I(dir)); |
Josef Bacik | d555438 | 2013-09-11 14:17:00 -0400 | [diff] [blame] | 2015 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2016 | kfree(name); |
| 2017 | iput(dir); |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 2018 | if (!ret && name_added) |
| 2019 | ret = 1; |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 2020 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2021 | |
| 2022 | insert: |
Nikolay Borisov | 725af92 | 2019-08-30 17:44:49 +0300 | [diff] [blame] | 2023 | /* |
| 2024 | * Check if the inode reference exists in the log for the given name, |
| 2025 | * inode and parent inode |
| 2026 | */ |
| 2027 | found_key.objectid = log_key.objectid; |
| 2028 | found_key.type = BTRFS_INODE_REF_KEY; |
| 2029 | found_key.offset = key->objectid; |
| 2030 | ret = backref_in_log(root->log_root, &found_key, 0, name, name_len); |
| 2031 | if (ret < 0) { |
| 2032 | goto out; |
| 2033 | } else if (ret) { |
| 2034 | /* The dentry will be added later. */ |
| 2035 | ret = 0; |
| 2036 | update_size = false; |
| 2037 | goto out; |
| 2038 | } |
| 2039 | |
| 2040 | found_key.objectid = log_key.objectid; |
| 2041 | found_key.type = BTRFS_INODE_EXTREF_KEY; |
| 2042 | found_key.offset = key->objectid; |
| 2043 | ret = backref_in_log(root->log_root, &found_key, key->objectid, name, |
| 2044 | name_len); |
| 2045 | if (ret < 0) { |
| 2046 | goto out; |
| 2047 | } else if (ret) { |
Filipe Manana | df8d116 | 2015-01-14 01:52:25 +0000 | [diff] [blame] | 2048 | /* The dentry will be added later. */ |
| 2049 | ret = 0; |
| 2050 | update_size = false; |
| 2051 | goto out; |
| 2052 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2053 | btrfs_release_path(path); |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 2054 | ret = insert_one_name(trans, root, key->objectid, key->offset, |
| 2055 | name, name_len, &log_key); |
Filipe Manana | df8d116 | 2015-01-14 01:52:25 +0000 | [diff] [blame] | 2056 | if (ret && ret != -ENOENT && ret != -EEXIST) |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 2057 | goto out; |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 2058 | if (!ret) |
| 2059 | name_added = true; |
Josef Bacik | d555438 | 2013-09-11 14:17:00 -0400 | [diff] [blame] | 2060 | update_size = false; |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 2061 | ret = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2062 | goto out; |
| 2063 | } |
| 2064 | |
| 2065 | /* |
| 2066 | * find all the names in a directory item and reconcile them into |
| 2067 | * the subvolume. Only BTRFS_DIR_ITEM_KEY types will have more than |
| 2068 | * one name in a directory item, but the same code gets used for |
| 2069 | * both directory index types |
| 2070 | */ |
| 2071 | static noinline int replay_one_dir_item(struct btrfs_trans_handle *trans, |
| 2072 | struct btrfs_root *root, |
| 2073 | struct btrfs_path *path, |
| 2074 | struct extent_buffer *eb, int slot, |
| 2075 | struct btrfs_key *key) |
| 2076 | { |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 2077 | int ret = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2078 | u32 item_size = btrfs_item_size_nr(eb, slot); |
| 2079 | struct btrfs_dir_item *di; |
| 2080 | int name_len; |
| 2081 | unsigned long ptr; |
| 2082 | unsigned long ptr_end; |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 2083 | struct btrfs_path *fixup_path = NULL; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2084 | |
| 2085 | ptr = btrfs_item_ptr_offset(eb, slot); |
| 2086 | ptr_end = ptr + item_size; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2087 | while (ptr < ptr_end) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2088 | di = (struct btrfs_dir_item *)ptr; |
| 2089 | name_len = btrfs_dir_name_len(eb, di); |
| 2090 | ret = replay_one_name(trans, root, path, eb, di, key); |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 2091 | if (ret < 0) |
| 2092 | break; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2093 | ptr = (unsigned long)(di + 1); |
| 2094 | ptr += name_len; |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 2095 | |
| 2096 | /* |
| 2097 | * If this entry refers to a non-directory (directories can not |
| 2098 | * have a link count > 1) and it was added in the transaction |
| 2099 | * that was not committed, make sure we fixup the link count of |
| 2100 | * the inode it the entry points to. Otherwise something like |
| 2101 | * the following would result in a directory pointing to an |
| 2102 | * inode with a wrong link that does not account for this dir |
| 2103 | * entry: |
| 2104 | * |
| 2105 | * mkdir testdir |
| 2106 | * touch testdir/foo |
| 2107 | * touch testdir/bar |
| 2108 | * sync |
| 2109 | * |
| 2110 | * ln testdir/bar testdir/bar_link |
| 2111 | * ln testdir/foo testdir/foo_link |
| 2112 | * xfs_io -c "fsync" testdir/bar |
| 2113 | * |
| 2114 | * <power failure> |
| 2115 | * |
| 2116 | * mount fs, log replay happens |
| 2117 | * |
| 2118 | * File foo would remain with a link count of 1 when it has two |
| 2119 | * entries pointing to it in the directory testdir. This would |
| 2120 | * make it impossible to ever delete the parent directory has |
| 2121 | * it would result in stale dentries that can never be deleted. |
| 2122 | */ |
| 2123 | if (ret == 1 && btrfs_dir_type(eb, di) != BTRFS_FT_DIR) { |
| 2124 | struct btrfs_key di_key; |
| 2125 | |
| 2126 | if (!fixup_path) { |
| 2127 | fixup_path = btrfs_alloc_path(); |
| 2128 | if (!fixup_path) { |
| 2129 | ret = -ENOMEM; |
| 2130 | break; |
| 2131 | } |
| 2132 | } |
| 2133 | |
| 2134 | btrfs_dir_item_key_to_cpu(eb, di, &di_key); |
| 2135 | ret = link_to_fixup_dir(trans, root, fixup_path, |
| 2136 | di_key.objectid); |
| 2137 | if (ret) |
| 2138 | break; |
| 2139 | } |
| 2140 | ret = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2141 | } |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 2142 | btrfs_free_path(fixup_path); |
| 2143 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2144 | } |
| 2145 | |
| 2146 | /* |
| 2147 | * directory replay has two parts. There are the standard directory |
| 2148 | * items in the log copied from the subvolume, and range items |
| 2149 | * created in the log while the subvolume was logged. |
| 2150 | * |
| 2151 | * The range items tell us which parts of the key space the log |
| 2152 | * is authoritative for. During replay, if a key in the subvolume |
| 2153 | * directory is in a logged range item, but not actually in the log |
| 2154 | * that means it was deleted from the directory before the fsync |
| 2155 | * and should be removed. |
| 2156 | */ |
| 2157 | static noinline int find_dir_range(struct btrfs_root *root, |
| 2158 | struct btrfs_path *path, |
| 2159 | u64 dirid, int key_type, |
| 2160 | u64 *start_ret, u64 *end_ret) |
| 2161 | { |
| 2162 | struct btrfs_key key; |
| 2163 | u64 found_end; |
| 2164 | struct btrfs_dir_log_item *item; |
| 2165 | int ret; |
| 2166 | int nritems; |
| 2167 | |
| 2168 | if (*start_ret == (u64)-1) |
| 2169 | return 1; |
| 2170 | |
| 2171 | key.objectid = dirid; |
| 2172 | key.type = key_type; |
| 2173 | key.offset = *start_ret; |
| 2174 | |
| 2175 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 2176 | if (ret < 0) |
| 2177 | goto out; |
| 2178 | if (ret > 0) { |
| 2179 | if (path->slots[0] == 0) |
| 2180 | goto out; |
| 2181 | path->slots[0]--; |
| 2182 | } |
| 2183 | if (ret != 0) |
| 2184 | btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]); |
| 2185 | |
| 2186 | if (key.type != key_type || key.objectid != dirid) { |
| 2187 | ret = 1; |
| 2188 | goto next; |
| 2189 | } |
| 2190 | item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 2191 | struct btrfs_dir_log_item); |
| 2192 | found_end = btrfs_dir_log_end(path->nodes[0], item); |
| 2193 | |
| 2194 | if (*start_ret >= key.offset && *start_ret <= found_end) { |
| 2195 | ret = 0; |
| 2196 | *start_ret = key.offset; |
| 2197 | *end_ret = found_end; |
| 2198 | goto out; |
| 2199 | } |
| 2200 | ret = 1; |
| 2201 | next: |
| 2202 | /* check the next slot in the tree to see if it is a valid item */ |
| 2203 | nritems = btrfs_header_nritems(path->nodes[0]); |
Robbie Ko | 2a7bf53 | 2016-10-07 17:30:47 +0800 | [diff] [blame] | 2204 | path->slots[0]++; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2205 | if (path->slots[0] >= nritems) { |
| 2206 | ret = btrfs_next_leaf(root, path); |
| 2207 | if (ret) |
| 2208 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2209 | } |
| 2210 | |
| 2211 | btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]); |
| 2212 | |
| 2213 | if (key.type != key_type || key.objectid != dirid) { |
| 2214 | ret = 1; |
| 2215 | goto out; |
| 2216 | } |
| 2217 | item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 2218 | struct btrfs_dir_log_item); |
| 2219 | found_end = btrfs_dir_log_end(path->nodes[0], item); |
| 2220 | *start_ret = key.offset; |
| 2221 | *end_ret = found_end; |
| 2222 | ret = 0; |
| 2223 | out: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2224 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2225 | return ret; |
| 2226 | } |
| 2227 | |
| 2228 | /* |
| 2229 | * this looks for a given directory item in the log. If the directory |
| 2230 | * item is not in the log, the item is removed and the inode it points |
| 2231 | * to is unlinked |
| 2232 | */ |
| 2233 | static noinline int check_item_in_log(struct btrfs_trans_handle *trans, |
| 2234 | struct btrfs_root *root, |
| 2235 | struct btrfs_root *log, |
| 2236 | struct btrfs_path *path, |
| 2237 | struct btrfs_path *log_path, |
| 2238 | struct inode *dir, |
| 2239 | struct btrfs_key *dir_key) |
| 2240 | { |
| 2241 | int ret; |
| 2242 | struct extent_buffer *eb; |
| 2243 | int slot; |
| 2244 | u32 item_size; |
| 2245 | struct btrfs_dir_item *di; |
| 2246 | struct btrfs_dir_item *log_di; |
| 2247 | int name_len; |
| 2248 | unsigned long ptr; |
| 2249 | unsigned long ptr_end; |
| 2250 | char *name; |
| 2251 | struct inode *inode; |
| 2252 | struct btrfs_key location; |
| 2253 | |
| 2254 | again: |
| 2255 | eb = path->nodes[0]; |
| 2256 | slot = path->slots[0]; |
| 2257 | item_size = btrfs_item_size_nr(eb, slot); |
| 2258 | ptr = btrfs_item_ptr_offset(eb, slot); |
| 2259 | ptr_end = ptr + item_size; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2260 | while (ptr < ptr_end) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2261 | di = (struct btrfs_dir_item *)ptr; |
| 2262 | name_len = btrfs_dir_name_len(eb, di); |
| 2263 | name = kmalloc(name_len, GFP_NOFS); |
| 2264 | if (!name) { |
| 2265 | ret = -ENOMEM; |
| 2266 | goto out; |
| 2267 | } |
| 2268 | read_extent_buffer(eb, name, (unsigned long)(di + 1), |
| 2269 | name_len); |
| 2270 | log_di = NULL; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2271 | if (log && dir_key->type == BTRFS_DIR_ITEM_KEY) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2272 | log_di = btrfs_lookup_dir_item(trans, log, log_path, |
| 2273 | dir_key->objectid, |
| 2274 | name, name_len, 0); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2275 | } else if (log && dir_key->type == BTRFS_DIR_INDEX_KEY) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2276 | log_di = btrfs_lookup_dir_index_item(trans, log, |
| 2277 | log_path, |
| 2278 | dir_key->objectid, |
| 2279 | dir_key->offset, |
| 2280 | name, name_len, 0); |
| 2281 | } |
Al Viro | 8d9e220 | 2018-07-29 23:04:46 +0100 | [diff] [blame] | 2282 | if (!log_di || log_di == ERR_PTR(-ENOENT)) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2283 | btrfs_dir_item_key_to_cpu(eb, di, &location); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2284 | btrfs_release_path(path); |
| 2285 | btrfs_release_path(log_path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2286 | inode = read_one_inode(root, location.objectid); |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 2287 | if (!inode) { |
| 2288 | kfree(name); |
| 2289 | return -EIO; |
| 2290 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2291 | |
| 2292 | ret = link_to_fixup_dir(trans, root, |
| 2293 | path, location.objectid); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 2294 | if (ret) { |
| 2295 | kfree(name); |
| 2296 | iput(inode); |
| 2297 | goto out; |
| 2298 | } |
| 2299 | |
Zach Brown | 8b558c5 | 2013-10-16 12:10:34 -0700 | [diff] [blame] | 2300 | inc_nlink(inode); |
Nikolay Borisov | 4ec5934 | 2017-01-18 00:31:44 +0200 | [diff] [blame] | 2301 | ret = btrfs_unlink_inode(trans, root, BTRFS_I(dir), |
| 2302 | BTRFS_I(inode), name, name_len); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 2303 | if (!ret) |
Nikolay Borisov | e5c304e6 | 2018-02-07 17:55:43 +0200 | [diff] [blame] | 2304 | ret = btrfs_run_delayed_items(trans); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2305 | kfree(name); |
| 2306 | iput(inode); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 2307 | if (ret) |
| 2308 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2309 | |
| 2310 | /* there might still be more names under this key |
| 2311 | * check and repeat if required |
| 2312 | */ |
| 2313 | ret = btrfs_search_slot(NULL, root, dir_key, path, |
| 2314 | 0, 0); |
| 2315 | if (ret == 0) |
| 2316 | goto again; |
| 2317 | ret = 0; |
| 2318 | goto out; |
Filipe David Borba Manana | 269d040 | 2013-10-28 17:39:21 +0000 | [diff] [blame] | 2319 | } else if (IS_ERR(log_di)) { |
| 2320 | kfree(name); |
| 2321 | return PTR_ERR(log_di); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2322 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2323 | btrfs_release_path(log_path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2324 | kfree(name); |
| 2325 | |
| 2326 | ptr = (unsigned long)(di + 1); |
| 2327 | ptr += name_len; |
| 2328 | } |
| 2329 | ret = 0; |
| 2330 | out: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2331 | btrfs_release_path(path); |
| 2332 | btrfs_release_path(log_path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2333 | return ret; |
| 2334 | } |
| 2335 | |
Filipe Manana | 4f764e5 | 2015-02-23 19:53:35 +0000 | [diff] [blame] | 2336 | static int replay_xattr_deletes(struct btrfs_trans_handle *trans, |
| 2337 | struct btrfs_root *root, |
| 2338 | struct btrfs_root *log, |
| 2339 | struct btrfs_path *path, |
| 2340 | const u64 ino) |
| 2341 | { |
| 2342 | struct btrfs_key search_key; |
| 2343 | struct btrfs_path *log_path; |
| 2344 | int i; |
| 2345 | int nritems; |
| 2346 | int ret; |
| 2347 | |
| 2348 | log_path = btrfs_alloc_path(); |
| 2349 | if (!log_path) |
| 2350 | return -ENOMEM; |
| 2351 | |
| 2352 | search_key.objectid = ino; |
| 2353 | search_key.type = BTRFS_XATTR_ITEM_KEY; |
| 2354 | search_key.offset = 0; |
| 2355 | again: |
| 2356 | ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0); |
| 2357 | if (ret < 0) |
| 2358 | goto out; |
| 2359 | process_leaf: |
| 2360 | nritems = btrfs_header_nritems(path->nodes[0]); |
| 2361 | for (i = path->slots[0]; i < nritems; i++) { |
| 2362 | struct btrfs_key key; |
| 2363 | struct btrfs_dir_item *di; |
| 2364 | struct btrfs_dir_item *log_di; |
| 2365 | u32 total_size; |
| 2366 | u32 cur; |
| 2367 | |
| 2368 | btrfs_item_key_to_cpu(path->nodes[0], &key, i); |
| 2369 | if (key.objectid != ino || key.type != BTRFS_XATTR_ITEM_KEY) { |
| 2370 | ret = 0; |
| 2371 | goto out; |
| 2372 | } |
| 2373 | |
| 2374 | di = btrfs_item_ptr(path->nodes[0], i, struct btrfs_dir_item); |
| 2375 | total_size = btrfs_item_size_nr(path->nodes[0], i); |
| 2376 | cur = 0; |
| 2377 | while (cur < total_size) { |
| 2378 | u16 name_len = btrfs_dir_name_len(path->nodes[0], di); |
| 2379 | u16 data_len = btrfs_dir_data_len(path->nodes[0], di); |
| 2380 | u32 this_len = sizeof(*di) + name_len + data_len; |
| 2381 | char *name; |
| 2382 | |
| 2383 | name = kmalloc(name_len, GFP_NOFS); |
| 2384 | if (!name) { |
| 2385 | ret = -ENOMEM; |
| 2386 | goto out; |
| 2387 | } |
| 2388 | read_extent_buffer(path->nodes[0], name, |
| 2389 | (unsigned long)(di + 1), name_len); |
| 2390 | |
| 2391 | log_di = btrfs_lookup_xattr(NULL, log, log_path, ino, |
| 2392 | name, name_len, 0); |
| 2393 | btrfs_release_path(log_path); |
| 2394 | if (!log_di) { |
| 2395 | /* Doesn't exist in log tree, so delete it. */ |
| 2396 | btrfs_release_path(path); |
| 2397 | di = btrfs_lookup_xattr(trans, root, path, ino, |
| 2398 | name, name_len, -1); |
| 2399 | kfree(name); |
| 2400 | if (IS_ERR(di)) { |
| 2401 | ret = PTR_ERR(di); |
| 2402 | goto out; |
| 2403 | } |
| 2404 | ASSERT(di); |
| 2405 | ret = btrfs_delete_one_dir_name(trans, root, |
| 2406 | path, di); |
| 2407 | if (ret) |
| 2408 | goto out; |
| 2409 | btrfs_release_path(path); |
| 2410 | search_key = key; |
| 2411 | goto again; |
| 2412 | } |
| 2413 | kfree(name); |
| 2414 | if (IS_ERR(log_di)) { |
| 2415 | ret = PTR_ERR(log_di); |
| 2416 | goto out; |
| 2417 | } |
| 2418 | cur += this_len; |
| 2419 | di = (struct btrfs_dir_item *)((char *)di + this_len); |
| 2420 | } |
| 2421 | } |
| 2422 | ret = btrfs_next_leaf(root, path); |
| 2423 | if (ret > 0) |
| 2424 | ret = 0; |
| 2425 | else if (ret == 0) |
| 2426 | goto process_leaf; |
| 2427 | out: |
| 2428 | btrfs_free_path(log_path); |
| 2429 | btrfs_release_path(path); |
| 2430 | return ret; |
| 2431 | } |
| 2432 | |
| 2433 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2434 | /* |
| 2435 | * deletion replay happens before we copy any new directory items |
| 2436 | * out of the log or out of backreferences from inodes. It |
| 2437 | * scans the log to find ranges of keys that log is authoritative for, |
| 2438 | * and then scans the directory to find items in those ranges that are |
| 2439 | * not present in the log. |
| 2440 | * |
| 2441 | * Anything we don't find in the log is unlinked and removed from the |
| 2442 | * directory. |
| 2443 | */ |
| 2444 | static noinline int replay_dir_deletes(struct btrfs_trans_handle *trans, |
| 2445 | struct btrfs_root *root, |
| 2446 | struct btrfs_root *log, |
| 2447 | struct btrfs_path *path, |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2448 | u64 dirid, int del_all) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2449 | { |
| 2450 | u64 range_start; |
| 2451 | u64 range_end; |
| 2452 | int key_type = BTRFS_DIR_LOG_ITEM_KEY; |
| 2453 | int ret = 0; |
| 2454 | struct btrfs_key dir_key; |
| 2455 | struct btrfs_key found_key; |
| 2456 | struct btrfs_path *log_path; |
| 2457 | struct inode *dir; |
| 2458 | |
| 2459 | dir_key.objectid = dirid; |
| 2460 | dir_key.type = BTRFS_DIR_ITEM_KEY; |
| 2461 | log_path = btrfs_alloc_path(); |
| 2462 | if (!log_path) |
| 2463 | return -ENOMEM; |
| 2464 | |
| 2465 | dir = read_one_inode(root, dirid); |
| 2466 | /* it isn't an error if the inode isn't there, that can happen |
| 2467 | * because we replay the deletes before we copy in the inode item |
| 2468 | * from the log |
| 2469 | */ |
| 2470 | if (!dir) { |
| 2471 | btrfs_free_path(log_path); |
| 2472 | return 0; |
| 2473 | } |
| 2474 | again: |
| 2475 | range_start = 0; |
| 2476 | range_end = 0; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2477 | while (1) { |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2478 | if (del_all) |
| 2479 | range_end = (u64)-1; |
| 2480 | else { |
| 2481 | ret = find_dir_range(log, path, dirid, key_type, |
| 2482 | &range_start, &range_end); |
| 2483 | if (ret != 0) |
| 2484 | break; |
| 2485 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2486 | |
| 2487 | dir_key.offset = range_start; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2488 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2489 | int nritems; |
| 2490 | ret = btrfs_search_slot(NULL, root, &dir_key, path, |
| 2491 | 0, 0); |
| 2492 | if (ret < 0) |
| 2493 | goto out; |
| 2494 | |
| 2495 | nritems = btrfs_header_nritems(path->nodes[0]); |
| 2496 | if (path->slots[0] >= nritems) { |
| 2497 | ret = btrfs_next_leaf(root, path); |
Liu Bo | b98def7 | 2018-04-03 01:59:48 +0800 | [diff] [blame] | 2498 | if (ret == 1) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2499 | break; |
Liu Bo | b98def7 | 2018-04-03 01:59:48 +0800 | [diff] [blame] | 2500 | else if (ret < 0) |
| 2501 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2502 | } |
| 2503 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, |
| 2504 | path->slots[0]); |
| 2505 | if (found_key.objectid != dirid || |
| 2506 | found_key.type != dir_key.type) |
| 2507 | goto next_type; |
| 2508 | |
| 2509 | if (found_key.offset > range_end) |
| 2510 | break; |
| 2511 | |
| 2512 | ret = check_item_in_log(trans, root, log, path, |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2513 | log_path, dir, |
| 2514 | &found_key); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 2515 | if (ret) |
| 2516 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2517 | if (found_key.offset == (u64)-1) |
| 2518 | break; |
| 2519 | dir_key.offset = found_key.offset + 1; |
| 2520 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2521 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2522 | if (range_end == (u64)-1) |
| 2523 | break; |
| 2524 | range_start = range_end + 1; |
| 2525 | } |
| 2526 | |
| 2527 | next_type: |
| 2528 | ret = 0; |
| 2529 | if (key_type == BTRFS_DIR_LOG_ITEM_KEY) { |
| 2530 | key_type = BTRFS_DIR_LOG_INDEX_KEY; |
| 2531 | dir_key.type = BTRFS_DIR_INDEX_KEY; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2532 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2533 | goto again; |
| 2534 | } |
| 2535 | out: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2536 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2537 | btrfs_free_path(log_path); |
| 2538 | iput(dir); |
| 2539 | return ret; |
| 2540 | } |
| 2541 | |
| 2542 | /* |
| 2543 | * the process_func used to replay items from the log tree. This |
| 2544 | * gets called in two different stages. The first stage just looks |
| 2545 | * for inodes and makes sure they are all copied into the subvolume. |
| 2546 | * |
| 2547 | * The second stage copies all the other item types from the log into |
| 2548 | * the subvolume. The two stage approach is slower, but gets rid of |
| 2549 | * lots of complexity around inodes referencing other inodes that exist |
| 2550 | * only in the log (references come from either directory items or inode |
| 2551 | * back refs). |
| 2552 | */ |
| 2553 | static int replay_one_buffer(struct btrfs_root *log, struct extent_buffer *eb, |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 2554 | struct walk_control *wc, u64 gen, int level) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2555 | { |
| 2556 | int nritems; |
| 2557 | struct btrfs_path *path; |
| 2558 | struct btrfs_root *root = wc->replay_dest; |
| 2559 | struct btrfs_key key; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2560 | int i; |
| 2561 | int ret; |
| 2562 | |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 2563 | ret = btrfs_read_buffer(eb, gen, level, NULL); |
Tsutomu Itoh | 018642a | 2012-05-29 18:10:13 +0900 | [diff] [blame] | 2564 | if (ret) |
| 2565 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2566 | |
| 2567 | level = btrfs_header_level(eb); |
| 2568 | |
| 2569 | if (level != 0) |
| 2570 | return 0; |
| 2571 | |
| 2572 | path = btrfs_alloc_path(); |
Mark Fasheh | 1e5063d | 2011-07-12 10:46:06 -0700 | [diff] [blame] | 2573 | if (!path) |
| 2574 | return -ENOMEM; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2575 | |
| 2576 | nritems = btrfs_header_nritems(eb); |
| 2577 | for (i = 0; i < nritems; i++) { |
| 2578 | btrfs_item_key_to_cpu(eb, &key, i); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2579 | |
| 2580 | /* inode keys are done during the first stage */ |
| 2581 | if (key.type == BTRFS_INODE_ITEM_KEY && |
| 2582 | wc->stage == LOG_WALK_REPLAY_INODES) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2583 | struct btrfs_inode_item *inode_item; |
| 2584 | u32 mode; |
| 2585 | |
| 2586 | inode_item = btrfs_item_ptr(eb, i, |
| 2587 | struct btrfs_inode_item); |
Filipe Manana | f2d72f4 | 2018-10-08 11:12:55 +0100 | [diff] [blame] | 2588 | /* |
| 2589 | * If we have a tmpfile (O_TMPFILE) that got fsync'ed |
| 2590 | * and never got linked before the fsync, skip it, as |
| 2591 | * replaying it is pointless since it would be deleted |
| 2592 | * later. We skip logging tmpfiles, but it's always |
| 2593 | * possible we are replaying a log created with a kernel |
| 2594 | * that used to log tmpfiles. |
| 2595 | */ |
| 2596 | if (btrfs_inode_nlink(eb, inode_item) == 0) { |
| 2597 | wc->ignore_cur_inode = true; |
| 2598 | continue; |
| 2599 | } else { |
| 2600 | wc->ignore_cur_inode = false; |
| 2601 | } |
Filipe Manana | 4f764e5 | 2015-02-23 19:53:35 +0000 | [diff] [blame] | 2602 | ret = replay_xattr_deletes(wc->trans, root, log, |
| 2603 | path, key.objectid); |
| 2604 | if (ret) |
| 2605 | break; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2606 | mode = btrfs_inode_mode(eb, inode_item); |
| 2607 | if (S_ISDIR(mode)) { |
| 2608 | ret = replay_dir_deletes(wc->trans, |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2609 | root, log, path, key.objectid, 0); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2610 | if (ret) |
| 2611 | break; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2612 | } |
| 2613 | ret = overwrite_item(wc->trans, root, path, |
| 2614 | eb, i, &key); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2615 | if (ret) |
| 2616 | break; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2617 | |
Filipe Manana | 471d557 | 2018-04-05 22:55:12 +0100 | [diff] [blame] | 2618 | /* |
| 2619 | * Before replaying extents, truncate the inode to its |
| 2620 | * size. We need to do it now and not after log replay |
| 2621 | * because before an fsync we can have prealloc extents |
| 2622 | * added beyond the inode's i_size. If we did it after, |
| 2623 | * through orphan cleanup for example, we would drop |
| 2624 | * those prealloc extents just after replaying them. |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2625 | */ |
| 2626 | if (S_ISREG(mode)) { |
Filipe Manana | 5893dfb | 2020-11-04 11:07:32 +0000 | [diff] [blame] | 2627 | struct btrfs_drop_extents_args drop_args = { 0 }; |
Filipe Manana | 471d557 | 2018-04-05 22:55:12 +0100 | [diff] [blame] | 2628 | struct inode *inode; |
| 2629 | u64 from; |
| 2630 | |
| 2631 | inode = read_one_inode(root, key.objectid); |
| 2632 | if (!inode) { |
| 2633 | ret = -EIO; |
| 2634 | break; |
| 2635 | } |
| 2636 | from = ALIGN(i_size_read(inode), |
| 2637 | root->fs_info->sectorsize); |
Filipe Manana | 5893dfb | 2020-11-04 11:07:32 +0000 | [diff] [blame] | 2638 | drop_args.start = from; |
| 2639 | drop_args.end = (u64)-1; |
| 2640 | drop_args.drop_cache = true; |
| 2641 | ret = btrfs_drop_extents(wc->trans, root, |
| 2642 | BTRFS_I(inode), |
| 2643 | &drop_args); |
Filipe Manana | 471d557 | 2018-04-05 22:55:12 +0100 | [diff] [blame] | 2644 | if (!ret) { |
Filipe Manana | 2766ff6 | 2020-11-04 11:07:34 +0000 | [diff] [blame] | 2645 | inode_sub_bytes(inode, |
| 2646 | drop_args.bytes_found); |
Filipe Manana | f2d72f4 | 2018-10-08 11:12:55 +0100 | [diff] [blame] | 2647 | /* Update the inode's nbytes. */ |
Filipe Manana | 471d557 | 2018-04-05 22:55:12 +0100 | [diff] [blame] | 2648 | ret = btrfs_update_inode(wc->trans, |
Nikolay Borisov | 9a56fcd | 2020-11-02 16:48:59 +0200 | [diff] [blame] | 2649 | root, BTRFS_I(inode)); |
Filipe Manana | 471d557 | 2018-04-05 22:55:12 +0100 | [diff] [blame] | 2650 | } |
| 2651 | iput(inode); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2652 | if (ret) |
| 2653 | break; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2654 | } |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 2655 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2656 | ret = link_to_fixup_dir(wc->trans, root, |
| 2657 | path, key.objectid); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2658 | if (ret) |
| 2659 | break; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2660 | } |
Josef Bacik | dd8e721 | 2013-09-11 11:57:23 -0400 | [diff] [blame] | 2661 | |
Filipe Manana | f2d72f4 | 2018-10-08 11:12:55 +0100 | [diff] [blame] | 2662 | if (wc->ignore_cur_inode) |
| 2663 | continue; |
| 2664 | |
Josef Bacik | dd8e721 | 2013-09-11 11:57:23 -0400 | [diff] [blame] | 2665 | if (key.type == BTRFS_DIR_INDEX_KEY && |
| 2666 | wc->stage == LOG_WALK_REPLAY_DIR_INDEX) { |
| 2667 | ret = replay_one_dir_item(wc->trans, root, path, |
| 2668 | eb, i, &key); |
| 2669 | if (ret) |
| 2670 | break; |
| 2671 | } |
| 2672 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2673 | if (wc->stage < LOG_WALK_REPLAY_ALL) |
| 2674 | continue; |
| 2675 | |
| 2676 | /* these keys are simply copied */ |
| 2677 | if (key.type == BTRFS_XATTR_ITEM_KEY) { |
| 2678 | ret = overwrite_item(wc->trans, root, path, |
| 2679 | eb, i, &key); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2680 | if (ret) |
| 2681 | break; |
Liu Bo | 2da1c66 | 2013-05-26 13:50:29 +0000 | [diff] [blame] | 2682 | } else if (key.type == BTRFS_INODE_REF_KEY || |
| 2683 | key.type == BTRFS_INODE_EXTREF_KEY) { |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 2684 | ret = add_inode_ref(wc->trans, root, log, path, |
| 2685 | eb, i, &key); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2686 | if (ret && ret != -ENOENT) |
| 2687 | break; |
| 2688 | ret = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2689 | } else if (key.type == BTRFS_EXTENT_DATA_KEY) { |
| 2690 | ret = replay_one_extent(wc->trans, root, path, |
| 2691 | eb, i, &key); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2692 | if (ret) |
| 2693 | break; |
Josef Bacik | dd8e721 | 2013-09-11 11:57:23 -0400 | [diff] [blame] | 2694 | } else if (key.type == BTRFS_DIR_ITEM_KEY) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2695 | ret = replay_one_dir_item(wc->trans, root, path, |
| 2696 | eb, i, &key); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2697 | if (ret) |
| 2698 | break; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2699 | } |
| 2700 | } |
| 2701 | btrfs_free_path(path); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2702 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2703 | } |
| 2704 | |
Nikolay Borisov | 6787bb9 | 2020-01-20 16:09:10 +0200 | [diff] [blame] | 2705 | /* |
| 2706 | * Correctly adjust the reserved bytes occupied by a log tree extent buffer |
| 2707 | */ |
| 2708 | static void unaccount_log_buffer(struct btrfs_fs_info *fs_info, u64 start) |
| 2709 | { |
| 2710 | struct btrfs_block_group *cache; |
| 2711 | |
| 2712 | cache = btrfs_lookup_block_group(fs_info, start); |
| 2713 | if (!cache) { |
| 2714 | btrfs_err(fs_info, "unable to find block group for %llu", start); |
| 2715 | return; |
| 2716 | } |
| 2717 | |
| 2718 | spin_lock(&cache->space_info->lock); |
| 2719 | spin_lock(&cache->lock); |
| 2720 | cache->reserved -= fs_info->nodesize; |
| 2721 | cache->space_info->bytes_reserved -= fs_info->nodesize; |
| 2722 | spin_unlock(&cache->lock); |
| 2723 | spin_unlock(&cache->space_info->lock); |
| 2724 | |
| 2725 | btrfs_put_block_group(cache); |
| 2726 | } |
| 2727 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2728 | static noinline int walk_down_log_tree(struct btrfs_trans_handle *trans, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2729 | struct btrfs_root *root, |
| 2730 | struct btrfs_path *path, int *level, |
| 2731 | struct walk_control *wc) |
| 2732 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2733 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2734 | u64 bytenr; |
| 2735 | u64 ptr_gen; |
| 2736 | struct extent_buffer *next; |
| 2737 | struct extent_buffer *cur; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2738 | u32 blocksize; |
| 2739 | int ret = 0; |
| 2740 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2741 | while (*level > 0) { |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 2742 | struct btrfs_key first_key; |
| 2743 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2744 | cur = path->nodes[*level]; |
| 2745 | |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 2746 | WARN_ON(btrfs_header_level(cur) != *level); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2747 | |
| 2748 | if (path->slots[*level] >= |
| 2749 | btrfs_header_nritems(cur)) |
| 2750 | break; |
| 2751 | |
| 2752 | bytenr = btrfs_node_blockptr(cur, path->slots[*level]); |
| 2753 | ptr_gen = btrfs_node_ptr_generation(cur, path->slots[*level]); |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 2754 | btrfs_node_key_to_cpu(cur, &first_key, path->slots[*level]); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2755 | blocksize = fs_info->nodesize; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2756 | |
Josef Bacik | 3fbaf25 | 2020-11-05 10:45:20 -0500 | [diff] [blame] | 2757 | next = btrfs_find_create_tree_block(fs_info, bytenr, |
| 2758 | btrfs_header_owner(cur), |
| 2759 | *level - 1); |
Liu Bo | c871b0f | 2016-06-06 12:01:23 -0700 | [diff] [blame] | 2760 | if (IS_ERR(next)) |
| 2761 | return PTR_ERR(next); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2762 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2763 | if (*level == 1) { |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 2764 | ret = wc->process_func(root, next, wc, ptr_gen, |
| 2765 | *level - 1); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2766 | if (ret) { |
| 2767 | free_extent_buffer(next); |
Mark Fasheh | 1e5063d | 2011-07-12 10:46:06 -0700 | [diff] [blame] | 2768 | return ret; |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2769 | } |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2770 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2771 | path->slots[*level]++; |
| 2772 | if (wc->free) { |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 2773 | ret = btrfs_read_buffer(next, ptr_gen, |
| 2774 | *level - 1, &first_key); |
Tsutomu Itoh | 018642a | 2012-05-29 18:10:13 +0900 | [diff] [blame] | 2775 | if (ret) { |
| 2776 | free_extent_buffer(next); |
| 2777 | return ret; |
| 2778 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2779 | |
Josef Bacik | 681ae50 | 2013-10-07 15:11:00 -0400 | [diff] [blame] | 2780 | if (trans) { |
| 2781 | btrfs_tree_lock(next); |
David Sterba | 6a884d7d | 2019-03-20 14:30:02 +0100 | [diff] [blame] | 2782 | btrfs_clean_tree_block(next); |
Josef Bacik | 681ae50 | 2013-10-07 15:11:00 -0400 | [diff] [blame] | 2783 | btrfs_wait_tree_block_writeback(next); |
| 2784 | btrfs_tree_unlock(next); |
Nikolay Borisov | 7bfc100 | 2020-01-20 16:09:12 +0200 | [diff] [blame] | 2785 | ret = btrfs_pin_reserved_extent(trans, |
Nikolay Borisov | 10e958d | 2020-01-20 16:09:11 +0200 | [diff] [blame] | 2786 | bytenr, blocksize); |
| 2787 | if (ret) { |
| 2788 | free_extent_buffer(next); |
| 2789 | return ret; |
| 2790 | } |
Naohiro Aota | d3575156 | 2021-02-04 19:21:54 +0900 | [diff] [blame] | 2791 | btrfs_redirty_list_add( |
| 2792 | trans->transaction, next); |
Liu Bo | 1846430 | 2018-01-25 11:02:51 -0700 | [diff] [blame] | 2793 | } else { |
| 2794 | if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &next->bflags)) |
| 2795 | clear_extent_buffer_dirty(next); |
Nikolay Borisov | 10e958d | 2020-01-20 16:09:11 +0200 | [diff] [blame] | 2796 | unaccount_log_buffer(fs_info, bytenr); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 2797 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2798 | } |
| 2799 | free_extent_buffer(next); |
| 2800 | continue; |
| 2801 | } |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 2802 | ret = btrfs_read_buffer(next, ptr_gen, *level - 1, &first_key); |
Tsutomu Itoh | 018642a | 2012-05-29 18:10:13 +0900 | [diff] [blame] | 2803 | if (ret) { |
| 2804 | free_extent_buffer(next); |
| 2805 | return ret; |
| 2806 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2807 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2808 | if (path->nodes[*level-1]) |
| 2809 | free_extent_buffer(path->nodes[*level-1]); |
| 2810 | path->nodes[*level-1] = next; |
| 2811 | *level = btrfs_header_level(next); |
| 2812 | path->slots[*level] = 0; |
| 2813 | cond_resched(); |
| 2814 | } |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2815 | path->slots[*level] = btrfs_header_nritems(path->nodes[*level]); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2816 | |
| 2817 | cond_resched(); |
| 2818 | return 0; |
| 2819 | } |
| 2820 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2821 | static noinline int walk_up_log_tree(struct btrfs_trans_handle *trans, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2822 | struct btrfs_root *root, |
| 2823 | struct btrfs_path *path, int *level, |
| 2824 | struct walk_control *wc) |
| 2825 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2826 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2827 | int i; |
| 2828 | int slot; |
| 2829 | int ret; |
| 2830 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2831 | for (i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2832 | slot = path->slots[i]; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2833 | if (slot + 1 < btrfs_header_nritems(path->nodes[i])) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2834 | path->slots[i]++; |
| 2835 | *level = i; |
| 2836 | WARN_ON(*level == 0); |
| 2837 | return 0; |
| 2838 | } else { |
Mark Fasheh | 1e5063d | 2011-07-12 10:46:06 -0700 | [diff] [blame] | 2839 | ret = wc->process_func(root, path->nodes[*level], wc, |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 2840 | btrfs_header_generation(path->nodes[*level]), |
| 2841 | *level); |
Mark Fasheh | 1e5063d | 2011-07-12 10:46:06 -0700 | [diff] [blame] | 2842 | if (ret) |
| 2843 | return ret; |
| 2844 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2845 | if (wc->free) { |
| 2846 | struct extent_buffer *next; |
| 2847 | |
| 2848 | next = path->nodes[*level]; |
| 2849 | |
Josef Bacik | 681ae50 | 2013-10-07 15:11:00 -0400 | [diff] [blame] | 2850 | if (trans) { |
| 2851 | btrfs_tree_lock(next); |
David Sterba | 6a884d7d | 2019-03-20 14:30:02 +0100 | [diff] [blame] | 2852 | btrfs_clean_tree_block(next); |
Josef Bacik | 681ae50 | 2013-10-07 15:11:00 -0400 | [diff] [blame] | 2853 | btrfs_wait_tree_block_writeback(next); |
| 2854 | btrfs_tree_unlock(next); |
Nikolay Borisov | 7bfc100 | 2020-01-20 16:09:12 +0200 | [diff] [blame] | 2855 | ret = btrfs_pin_reserved_extent(trans, |
Nikolay Borisov | 10e958d | 2020-01-20 16:09:11 +0200 | [diff] [blame] | 2856 | path->nodes[*level]->start, |
| 2857 | path->nodes[*level]->len); |
| 2858 | if (ret) |
| 2859 | return ret; |
Liu Bo | 1846430 | 2018-01-25 11:02:51 -0700 | [diff] [blame] | 2860 | } else { |
| 2861 | if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &next->bflags)) |
| 2862 | clear_extent_buffer_dirty(next); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2863 | |
Nikolay Borisov | 10e958d | 2020-01-20 16:09:11 +0200 | [diff] [blame] | 2864 | unaccount_log_buffer(fs_info, |
| 2865 | path->nodes[*level]->start); |
| 2866 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2867 | } |
| 2868 | free_extent_buffer(path->nodes[*level]); |
| 2869 | path->nodes[*level] = NULL; |
| 2870 | *level = i + 1; |
| 2871 | } |
| 2872 | } |
| 2873 | return 1; |
| 2874 | } |
| 2875 | |
| 2876 | /* |
| 2877 | * drop the reference count on the tree rooted at 'snap'. This traverses |
| 2878 | * the tree freeing any blocks that have a ref count of zero after being |
| 2879 | * decremented. |
| 2880 | */ |
| 2881 | static int walk_log_tree(struct btrfs_trans_handle *trans, |
| 2882 | struct btrfs_root *log, struct walk_control *wc) |
| 2883 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2884 | struct btrfs_fs_info *fs_info = log->fs_info; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2885 | int ret = 0; |
| 2886 | int wret; |
| 2887 | int level; |
| 2888 | struct btrfs_path *path; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2889 | int orig_level; |
| 2890 | |
| 2891 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 2892 | if (!path) |
| 2893 | return -ENOMEM; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2894 | |
| 2895 | level = btrfs_header_level(log->node); |
| 2896 | orig_level = level; |
| 2897 | path->nodes[level] = log->node; |
David Sterba | 67439da | 2019-10-08 13:28:47 +0200 | [diff] [blame] | 2898 | atomic_inc(&log->node->refs); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2899 | path->slots[level] = 0; |
| 2900 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2901 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2902 | wret = walk_down_log_tree(trans, log, path, &level, wc); |
| 2903 | if (wret > 0) |
| 2904 | break; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2905 | if (wret < 0) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2906 | ret = wret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2907 | goto out; |
| 2908 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2909 | |
| 2910 | wret = walk_up_log_tree(trans, log, path, &level, wc); |
| 2911 | if (wret > 0) |
| 2912 | break; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2913 | if (wret < 0) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2914 | ret = wret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2915 | goto out; |
| 2916 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2917 | } |
| 2918 | |
| 2919 | /* was the root node processed? if not, catch it here */ |
| 2920 | if (path->nodes[orig_level]) { |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2921 | ret = wc->process_func(log, path->nodes[orig_level], wc, |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 2922 | btrfs_header_generation(path->nodes[orig_level]), |
| 2923 | orig_level); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2924 | if (ret) |
| 2925 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2926 | if (wc->free) { |
| 2927 | struct extent_buffer *next; |
| 2928 | |
| 2929 | next = path->nodes[orig_level]; |
| 2930 | |
Josef Bacik | 681ae50 | 2013-10-07 15:11:00 -0400 | [diff] [blame] | 2931 | if (trans) { |
| 2932 | btrfs_tree_lock(next); |
David Sterba | 6a884d7d | 2019-03-20 14:30:02 +0100 | [diff] [blame] | 2933 | btrfs_clean_tree_block(next); |
Josef Bacik | 681ae50 | 2013-10-07 15:11:00 -0400 | [diff] [blame] | 2934 | btrfs_wait_tree_block_writeback(next); |
| 2935 | btrfs_tree_unlock(next); |
Nikolay Borisov | 7bfc100 | 2020-01-20 16:09:12 +0200 | [diff] [blame] | 2936 | ret = btrfs_pin_reserved_extent(trans, |
Nikolay Borisov | 10e958d | 2020-01-20 16:09:11 +0200 | [diff] [blame] | 2937 | next->start, next->len); |
| 2938 | if (ret) |
| 2939 | goto out; |
Liu Bo | 1846430 | 2018-01-25 11:02:51 -0700 | [diff] [blame] | 2940 | } else { |
| 2941 | if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &next->bflags)) |
| 2942 | clear_extent_buffer_dirty(next); |
Nikolay Borisov | 10e958d | 2020-01-20 16:09:11 +0200 | [diff] [blame] | 2943 | unaccount_log_buffer(fs_info, next->start); |
Josef Bacik | 681ae50 | 2013-10-07 15:11:00 -0400 | [diff] [blame] | 2944 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2945 | } |
| 2946 | } |
| 2947 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2948 | out: |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2949 | btrfs_free_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2950 | return ret; |
| 2951 | } |
| 2952 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2953 | /* |
| 2954 | * helper function to update the item for a given subvolumes log root |
| 2955 | * in the tree of log roots |
| 2956 | */ |
| 2957 | static int update_log_root(struct btrfs_trans_handle *trans, |
Josef Bacik | 4203e96 | 2019-09-30 16:27:25 -0400 | [diff] [blame] | 2958 | struct btrfs_root *log, |
| 2959 | struct btrfs_root_item *root_item) |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2960 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2961 | struct btrfs_fs_info *fs_info = log->fs_info; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2962 | int ret; |
| 2963 | |
| 2964 | if (log->log_transid == 1) { |
| 2965 | /* insert root item on the first sync */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2966 | ret = btrfs_insert_root(trans, fs_info->log_root_tree, |
Josef Bacik | 4203e96 | 2019-09-30 16:27:25 -0400 | [diff] [blame] | 2967 | &log->root_key, root_item); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2968 | } else { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2969 | ret = btrfs_update_root(trans, fs_info->log_root_tree, |
Josef Bacik | 4203e96 | 2019-09-30 16:27:25 -0400 | [diff] [blame] | 2970 | &log->root_key, root_item); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2971 | } |
| 2972 | return ret; |
| 2973 | } |
| 2974 | |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 2975 | static void wait_log_commit(struct btrfs_root *root, int transid) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2976 | { |
| 2977 | DEFINE_WAIT(wait); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2978 | int index = transid % 2; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2979 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2980 | /* |
| 2981 | * we only allow two pending log transactions at a time, |
| 2982 | * so we know that if ours is more than 2 older than the |
| 2983 | * current transaction, we're done |
| 2984 | */ |
Liu Bo | 49e83f5 | 2017-09-01 16:14:30 -0600 | [diff] [blame] | 2985 | for (;;) { |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2986 | prepare_to_wait(&root->log_commit_wait[index], |
| 2987 | &wait, TASK_UNINTERRUPTIBLE); |
Liu Bo | 49e83f5 | 2017-09-01 16:14:30 -0600 | [diff] [blame] | 2988 | |
| 2989 | if (!(root->log_transid_committed < transid && |
| 2990 | atomic_read(&root->log_commit[index]))) |
| 2991 | break; |
| 2992 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2993 | mutex_unlock(&root->log_mutex); |
Liu Bo | 49e83f5 | 2017-09-01 16:14:30 -0600 | [diff] [blame] | 2994 | schedule(); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2995 | mutex_lock(&root->log_mutex); |
Liu Bo | 49e83f5 | 2017-09-01 16:14:30 -0600 | [diff] [blame] | 2996 | } |
| 2997 | finish_wait(&root->log_commit_wait[index], &wait); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2998 | } |
| 2999 | |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 3000 | static void wait_for_writer(struct btrfs_root *root) |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3001 | { |
| 3002 | DEFINE_WAIT(wait); |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 3003 | |
Liu Bo | 49e83f5 | 2017-09-01 16:14:30 -0600 | [diff] [blame] | 3004 | for (;;) { |
| 3005 | prepare_to_wait(&root->log_writer_wait, &wait, |
| 3006 | TASK_UNINTERRUPTIBLE); |
| 3007 | if (!atomic_read(&root->log_writers)) |
| 3008 | break; |
| 3009 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3010 | mutex_unlock(&root->log_mutex); |
Liu Bo | 49e83f5 | 2017-09-01 16:14:30 -0600 | [diff] [blame] | 3011 | schedule(); |
Filipe Manana | 575849e | 2015-02-11 11:12:39 +0000 | [diff] [blame] | 3012 | mutex_lock(&root->log_mutex); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3013 | } |
Liu Bo | 49e83f5 | 2017-09-01 16:14:30 -0600 | [diff] [blame] | 3014 | finish_wait(&root->log_writer_wait, &wait); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3015 | } |
| 3016 | |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 3017 | static inline void btrfs_remove_log_ctx(struct btrfs_root *root, |
| 3018 | struct btrfs_log_ctx *ctx) |
| 3019 | { |
| 3020 | if (!ctx) |
| 3021 | return; |
| 3022 | |
| 3023 | mutex_lock(&root->log_mutex); |
| 3024 | list_del_init(&ctx->list); |
| 3025 | mutex_unlock(&root->log_mutex); |
| 3026 | } |
| 3027 | |
| 3028 | /* |
| 3029 | * Invoked in log mutex context, or be sure there is no other task which |
| 3030 | * can access the list. |
| 3031 | */ |
| 3032 | static inline void btrfs_remove_all_log_ctxs(struct btrfs_root *root, |
| 3033 | int index, int error) |
| 3034 | { |
| 3035 | struct btrfs_log_ctx *ctx; |
Chris Mason | 570dd45 | 2016-10-27 10:42:20 -0700 | [diff] [blame] | 3036 | struct btrfs_log_ctx *safe; |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 3037 | |
Chris Mason | 570dd45 | 2016-10-27 10:42:20 -0700 | [diff] [blame] | 3038 | list_for_each_entry_safe(ctx, safe, &root->log_ctxs[index], list) { |
| 3039 | list_del_init(&ctx->list); |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 3040 | ctx->log_ret = error; |
Chris Mason | 570dd45 | 2016-10-27 10:42:20 -0700 | [diff] [blame] | 3041 | } |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 3042 | |
| 3043 | INIT_LIST_HEAD(&root->log_ctxs[index]); |
| 3044 | } |
| 3045 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3046 | /* |
| 3047 | * btrfs_sync_log does sends a given tree log down to the disk and |
| 3048 | * updates the super blocks to record it. When this call is done, |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3049 | * you know that any inodes previously logged are safely on disk only |
| 3050 | * if it returns 0. |
| 3051 | * |
| 3052 | * Any other return value means you need to call btrfs_commit_transaction. |
| 3053 | * Some of the edge cases for fsyncing directories that have had unlinks |
| 3054 | * or renames done in the past mean that sometimes the only safe |
| 3055 | * fsync is to commit the whole FS. When btrfs_sync_log returns -EAGAIN, |
| 3056 | * that has happened. |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3057 | */ |
| 3058 | int btrfs_sync_log(struct btrfs_trans_handle *trans, |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 3059 | struct btrfs_root *root, struct btrfs_log_ctx *ctx) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3060 | { |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3061 | int index1; |
| 3062 | int index2; |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 3063 | int mark; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3064 | int ret; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3065 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3066 | struct btrfs_root *log = root->log_root; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3067 | struct btrfs_root *log_root_tree = fs_info->log_root_tree; |
Josef Bacik | 4203e96 | 2019-09-30 16:27:25 -0400 | [diff] [blame] | 3068 | struct btrfs_root_item new_root_item; |
Miao Xie | bb14a59 | 2014-02-20 18:08:56 +0800 | [diff] [blame] | 3069 | int log_transid = 0; |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 3070 | struct btrfs_log_ctx root_log_ctx; |
Miao Xie | c6adc9c | 2013-05-28 10:05:39 +0000 | [diff] [blame] | 3071 | struct blk_plug plug; |
Filipe Manana | 47876f7 | 2020-11-25 12:19:28 +0000 | [diff] [blame] | 3072 | u64 log_root_start; |
| 3073 | u64 log_root_level; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3074 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3075 | mutex_lock(&root->log_mutex); |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3076 | log_transid = ctx->log_transid; |
| 3077 | if (root->log_transid_committed >= log_transid) { |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3078 | mutex_unlock(&root->log_mutex); |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 3079 | return ctx->log_ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3080 | } |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3081 | |
| 3082 | index1 = log_transid % 2; |
| 3083 | if (atomic_read(&root->log_commit[index1])) { |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 3084 | wait_log_commit(root, log_transid); |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3085 | mutex_unlock(&root->log_mutex); |
| 3086 | return ctx->log_ret; |
| 3087 | } |
| 3088 | ASSERT(log_transid == root->log_transid); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3089 | atomic_set(&root->log_commit[index1], 1); |
| 3090 | |
| 3091 | /* wait for previous tree log sync to complete */ |
| 3092 | if (atomic_read(&root->log_commit[(index1 + 1) % 2])) |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 3093 | wait_log_commit(root, log_transid - 1); |
Miao Xie | 48cab2e | 2014-02-20 18:08:52 +0800 | [diff] [blame] | 3094 | |
Yan, Zheng | 86df7eb | 2009-10-14 09:24:59 -0400 | [diff] [blame] | 3095 | while (1) { |
Miao Xie | 2ecb792 | 2012-09-06 04:04:27 -0600 | [diff] [blame] | 3096 | int batch = atomic_read(&root->log_batch); |
Chris Mason | cd354ad | 2011-10-20 15:45:37 -0400 | [diff] [blame] | 3097 | /* when we're on an ssd, just kick the log commit out */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3098 | if (!btrfs_test_opt(fs_info, SSD) && |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 3099 | test_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state)) { |
Yan, Zheng | 86df7eb | 2009-10-14 09:24:59 -0400 | [diff] [blame] | 3100 | mutex_unlock(&root->log_mutex); |
| 3101 | schedule_timeout_uninterruptible(1); |
| 3102 | mutex_lock(&root->log_mutex); |
| 3103 | } |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 3104 | wait_for_writer(root); |
Miao Xie | 2ecb792 | 2012-09-06 04:04:27 -0600 | [diff] [blame] | 3105 | if (batch == atomic_read(&root->log_batch)) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3106 | break; |
| 3107 | } |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3108 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3109 | /* bail out if we need to do a full commit */ |
David Sterba | 4884b8e | 2019-03-20 13:25:34 +0100 | [diff] [blame] | 3110 | if (btrfs_need_log_full_commit(trans)) { |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3111 | ret = -EAGAIN; |
| 3112 | mutex_unlock(&root->log_mutex); |
| 3113 | goto out; |
| 3114 | } |
| 3115 | |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 3116 | if (log_transid % 2 == 0) |
| 3117 | mark = EXTENT_DIRTY; |
| 3118 | else |
| 3119 | mark = EXTENT_NEW; |
| 3120 | |
Chris Mason | 690587d | 2009-10-13 13:29:19 -0400 | [diff] [blame] | 3121 | /* we start IO on all the marked extents here, but we don't actually |
| 3122 | * wait for them until later. |
| 3123 | */ |
Miao Xie | c6adc9c | 2013-05-28 10:05:39 +0000 | [diff] [blame] | 3124 | blk_start_plug(&plug); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3125 | ret = btrfs_write_marked_extents(fs_info, &log->dirty_log_pages, mark); |
Naohiro Aota | b528f46 | 2021-02-05 23:58:36 +0900 | [diff] [blame] | 3126 | /* |
| 3127 | * -EAGAIN happens when someone, e.g., a concurrent transaction |
| 3128 | * commit, writes a dirty extent in this tree-log commit. This |
| 3129 | * concurrent write will create a hole writing out the extents, |
| 3130 | * and we cannot proceed on a zoned filesystem, requiring |
| 3131 | * sequential writing. While we can bail out to a full commit |
| 3132 | * here, but we can continue hoping the concurrent writing fills |
| 3133 | * the hole. |
| 3134 | */ |
| 3135 | if (ret == -EAGAIN && btrfs_is_zoned(fs_info)) |
| 3136 | ret = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3137 | if (ret) { |
Miao Xie | c6adc9c | 2013-05-28 10:05:39 +0000 | [diff] [blame] | 3138 | blk_finish_plug(&plug); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3139 | btrfs_abort_transaction(trans, ret); |
David Sterba | 9078776 | 2019-03-20 13:28:05 +0100 | [diff] [blame] | 3140 | btrfs_set_log_full_commit(trans); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3141 | mutex_unlock(&root->log_mutex); |
| 3142 | goto out; |
| 3143 | } |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3144 | |
Josef Bacik | 4203e96 | 2019-09-30 16:27:25 -0400 | [diff] [blame] | 3145 | /* |
| 3146 | * We _must_ update under the root->log_mutex in order to make sure we |
| 3147 | * have a consistent view of the log root we are trying to commit at |
| 3148 | * this moment. |
| 3149 | * |
| 3150 | * We _must_ copy this into a local copy, because we are not holding the |
| 3151 | * log_root_tree->log_mutex yet. This is important because when we |
| 3152 | * commit the log_root_tree we must have a consistent view of the |
| 3153 | * log_root_tree when we update the super block to point at the |
| 3154 | * log_root_tree bytenr. If we update the log_root_tree here we'll race |
| 3155 | * with the commit and possibly point at the new block which we may not |
| 3156 | * have written out. |
| 3157 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3158 | btrfs_set_root_node(&log->root_item, log->node); |
Josef Bacik | 4203e96 | 2019-09-30 16:27:25 -0400 | [diff] [blame] | 3159 | memcpy(&new_root_item, &log->root_item, sizeof(new_root_item)); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3160 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3161 | root->log_transid++; |
| 3162 | log->log_transid = root->log_transid; |
Josef Bacik | ff782e0 | 2009-10-08 15:30:04 -0400 | [diff] [blame] | 3163 | root->log_start_pid = 0; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3164 | /* |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 3165 | * IO has been started, blocks of the log tree have WRITTEN flag set |
| 3166 | * in their headers. new modifications of the log will be written to |
| 3167 | * new positions. so it's safe to allow log writers to go in. |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3168 | */ |
| 3169 | mutex_unlock(&root->log_mutex); |
| 3170 | |
Naohiro Aota | 3ddebf2 | 2021-02-04 19:22:20 +0900 | [diff] [blame] | 3171 | if (btrfs_is_zoned(fs_info)) { |
Naohiro Aota | e75f9fd | 2021-03-24 23:23:11 +0900 | [diff] [blame] | 3172 | mutex_lock(&fs_info->tree_root->log_mutex); |
Naohiro Aota | 3ddebf2 | 2021-02-04 19:22:20 +0900 | [diff] [blame] | 3173 | if (!log_root_tree->node) { |
| 3174 | ret = btrfs_alloc_log_tree_node(trans, log_root_tree); |
| 3175 | if (ret) { |
Naohiro Aota | e75f9fd | 2021-03-24 23:23:11 +0900 | [diff] [blame] | 3176 | mutex_unlock(&fs_info->tree_log_mutex); |
Naohiro Aota | 3ddebf2 | 2021-02-04 19:22:20 +0900 | [diff] [blame] | 3177 | goto out; |
| 3178 | } |
| 3179 | } |
Naohiro Aota | e75f9fd | 2021-03-24 23:23:11 +0900 | [diff] [blame] | 3180 | mutex_unlock(&fs_info->tree_root->log_mutex); |
Naohiro Aota | 3ddebf2 | 2021-02-04 19:22:20 +0900 | [diff] [blame] | 3181 | } |
| 3182 | |
Naohiro Aota | e75f9fd | 2021-03-24 23:23:11 +0900 | [diff] [blame] | 3183 | btrfs_init_log_ctx(&root_log_ctx, NULL); |
| 3184 | |
| 3185 | mutex_lock(&log_root_tree->log_mutex); |
| 3186 | |
Filipe Manana | e3d3b41 | 2021-03-11 15:13:30 +0000 | [diff] [blame] | 3187 | index2 = log_root_tree->log_transid % 2; |
| 3188 | list_add_tail(&root_log_ctx.list, &log_root_tree->log_ctxs[index2]); |
| 3189 | root_log_ctx.log_transid = log_root_tree->log_transid; |
| 3190 | |
Josef Bacik | 4203e96 | 2019-09-30 16:27:25 -0400 | [diff] [blame] | 3191 | /* |
| 3192 | * Now we are safe to update the log_root_tree because we're under the |
| 3193 | * log_mutex, and we're a current writer so we're holding the commit |
| 3194 | * open until we drop the log_mutex. |
| 3195 | */ |
| 3196 | ret = update_log_root(trans, log, &new_root_item); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3197 | if (ret) { |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3198 | if (!list_empty(&root_log_ctx.list)) |
| 3199 | list_del_init(&root_log_ctx.list); |
| 3200 | |
Miao Xie | c6adc9c | 2013-05-28 10:05:39 +0000 | [diff] [blame] | 3201 | blk_finish_plug(&plug); |
David Sterba | 9078776 | 2019-03-20 13:28:05 +0100 | [diff] [blame] | 3202 | btrfs_set_log_full_commit(trans); |
Miao Xie | 995946d | 2014-04-02 19:51:06 +0800 | [diff] [blame] | 3203 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3204 | if (ret != -ENOSPC) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3205 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3206 | mutex_unlock(&log_root_tree->log_mutex); |
| 3207 | goto out; |
| 3208 | } |
Jeff Mahoney | bf89d38 | 2016-09-09 20:42:44 -0400 | [diff] [blame] | 3209 | btrfs_wait_tree_log_extents(log, mark); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3210 | mutex_unlock(&log_root_tree->log_mutex); |
| 3211 | ret = -EAGAIN; |
| 3212 | goto out; |
| 3213 | } |
| 3214 | |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3215 | if (log_root_tree->log_transid_committed >= root_log_ctx.log_transid) { |
Forrest Liu | 3da5ab5 | 2015-01-30 19:42:12 +0800 | [diff] [blame] | 3216 | blk_finish_plug(&plug); |
Chris Mason | cbd60aa | 2016-09-06 05:37:40 -0700 | [diff] [blame] | 3217 | list_del_init(&root_log_ctx.list); |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3218 | mutex_unlock(&log_root_tree->log_mutex); |
| 3219 | ret = root_log_ctx.log_ret; |
| 3220 | goto out; |
| 3221 | } |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 3222 | |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3223 | index2 = root_log_ctx.log_transid % 2; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3224 | if (atomic_read(&log_root_tree->log_commit[index2])) { |
Miao Xie | c6adc9c | 2013-05-28 10:05:39 +0000 | [diff] [blame] | 3225 | blk_finish_plug(&plug); |
Jeff Mahoney | bf89d38 | 2016-09-09 20:42:44 -0400 | [diff] [blame] | 3226 | ret = btrfs_wait_tree_log_extents(log, mark); |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 3227 | wait_log_commit(log_root_tree, |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3228 | root_log_ctx.log_transid); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3229 | mutex_unlock(&log_root_tree->log_mutex); |
Filipe Manana | 5ab5e44 | 2014-11-13 16:59:53 +0000 | [diff] [blame] | 3230 | if (!ret) |
| 3231 | ret = root_log_ctx.log_ret; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3232 | goto out; |
| 3233 | } |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3234 | ASSERT(root_log_ctx.log_transid == log_root_tree->log_transid); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3235 | atomic_set(&log_root_tree->log_commit[index2], 1); |
| 3236 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3237 | if (atomic_read(&log_root_tree->log_commit[(index2 + 1) % 2])) { |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 3238 | wait_log_commit(log_root_tree, |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3239 | root_log_ctx.log_transid - 1); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3240 | } |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3241 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3242 | /* |
| 3243 | * now that we've moved on to the tree of log tree roots, |
| 3244 | * check the full commit flag again |
| 3245 | */ |
David Sterba | 4884b8e | 2019-03-20 13:25:34 +0100 | [diff] [blame] | 3246 | if (btrfs_need_log_full_commit(trans)) { |
Miao Xie | c6adc9c | 2013-05-28 10:05:39 +0000 | [diff] [blame] | 3247 | blk_finish_plug(&plug); |
Jeff Mahoney | bf89d38 | 2016-09-09 20:42:44 -0400 | [diff] [blame] | 3248 | btrfs_wait_tree_log_extents(log, mark); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3249 | mutex_unlock(&log_root_tree->log_mutex); |
| 3250 | ret = -EAGAIN; |
| 3251 | goto out_wake_log_root; |
| 3252 | } |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3253 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3254 | ret = btrfs_write_marked_extents(fs_info, |
Miao Xie | c6adc9c | 2013-05-28 10:05:39 +0000 | [diff] [blame] | 3255 | &log_root_tree->dirty_log_pages, |
| 3256 | EXTENT_DIRTY | EXTENT_NEW); |
| 3257 | blk_finish_plug(&plug); |
Naohiro Aota | b528f46 | 2021-02-05 23:58:36 +0900 | [diff] [blame] | 3258 | /* |
| 3259 | * As described above, -EAGAIN indicates a hole in the extents. We |
| 3260 | * cannot wait for these write outs since the waiting cause a |
| 3261 | * deadlock. Bail out to the full commit instead. |
| 3262 | */ |
| 3263 | if (ret == -EAGAIN && btrfs_is_zoned(fs_info)) { |
| 3264 | btrfs_set_log_full_commit(trans); |
| 3265 | btrfs_wait_tree_log_extents(log, mark); |
| 3266 | mutex_unlock(&log_root_tree->log_mutex); |
| 3267 | goto out_wake_log_root; |
| 3268 | } else if (ret) { |
David Sterba | 9078776 | 2019-03-20 13:28:05 +0100 | [diff] [blame] | 3269 | btrfs_set_log_full_commit(trans); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3270 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3271 | mutex_unlock(&log_root_tree->log_mutex); |
| 3272 | goto out_wake_log_root; |
| 3273 | } |
Jeff Mahoney | bf89d38 | 2016-09-09 20:42:44 -0400 | [diff] [blame] | 3274 | ret = btrfs_wait_tree_log_extents(log, mark); |
Filipe Manana | 5ab5e44 | 2014-11-13 16:59:53 +0000 | [diff] [blame] | 3275 | if (!ret) |
Jeff Mahoney | bf89d38 | 2016-09-09 20:42:44 -0400 | [diff] [blame] | 3276 | ret = btrfs_wait_tree_log_extents(log_root_tree, |
| 3277 | EXTENT_NEW | EXTENT_DIRTY); |
Filipe Manana | 5ab5e44 | 2014-11-13 16:59:53 +0000 | [diff] [blame] | 3278 | if (ret) { |
David Sterba | 9078776 | 2019-03-20 13:28:05 +0100 | [diff] [blame] | 3279 | btrfs_set_log_full_commit(trans); |
Filipe Manana | 5ab5e44 | 2014-11-13 16:59:53 +0000 | [diff] [blame] | 3280 | mutex_unlock(&log_root_tree->log_mutex); |
| 3281 | goto out_wake_log_root; |
| 3282 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3283 | |
Filipe Manana | 47876f7 | 2020-11-25 12:19:28 +0000 | [diff] [blame] | 3284 | log_root_start = log_root_tree->node->start; |
| 3285 | log_root_level = btrfs_header_level(log_root_tree->node); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3286 | log_root_tree->log_transid++; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3287 | mutex_unlock(&log_root_tree->log_mutex); |
| 3288 | |
| 3289 | /* |
Filipe Manana | 47876f7 | 2020-11-25 12:19:28 +0000 | [diff] [blame] | 3290 | * Here we are guaranteed that nobody is going to write the superblock |
| 3291 | * for the current transaction before us and that neither we do write |
| 3292 | * our superblock before the previous transaction finishes its commit |
| 3293 | * and writes its superblock, because: |
| 3294 | * |
| 3295 | * 1) We are holding a handle on the current transaction, so no body |
| 3296 | * can commit it until we release the handle; |
| 3297 | * |
| 3298 | * 2) Before writing our superblock we acquire the tree_log_mutex, so |
| 3299 | * if the previous transaction is still committing, and hasn't yet |
| 3300 | * written its superblock, we wait for it to do it, because a |
| 3301 | * transaction commit acquires the tree_log_mutex when the commit |
| 3302 | * begins and releases it only after writing its superblock. |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3303 | */ |
Filipe Manana | 47876f7 | 2020-11-25 12:19:28 +0000 | [diff] [blame] | 3304 | mutex_lock(&fs_info->tree_log_mutex); |
Josef Bacik | 165ea85 | 2021-05-19 17:15:53 -0400 | [diff] [blame] | 3305 | |
| 3306 | /* |
| 3307 | * The previous transaction writeout phase could have failed, and thus |
| 3308 | * marked the fs in an error state. We must not commit here, as we |
| 3309 | * could have updated our generation in the super_for_commit and |
| 3310 | * writing the super here would result in transid mismatches. If there |
| 3311 | * is an error here just bail. |
| 3312 | */ |
| 3313 | if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) { |
| 3314 | ret = -EIO; |
| 3315 | btrfs_set_log_full_commit(trans); |
| 3316 | btrfs_abort_transaction(trans, ret); |
| 3317 | mutex_unlock(&fs_info->tree_log_mutex); |
| 3318 | goto out_wake_log_root; |
| 3319 | } |
| 3320 | |
Filipe Manana | 47876f7 | 2020-11-25 12:19:28 +0000 | [diff] [blame] | 3321 | btrfs_set_super_log_root(fs_info->super_for_commit, log_root_start); |
| 3322 | btrfs_set_super_log_root_level(fs_info->super_for_commit, log_root_level); |
David Sterba | eece6a9 | 2017-02-10 19:04:32 +0100 | [diff] [blame] | 3323 | ret = write_all_supers(fs_info, 1); |
Filipe Manana | 47876f7 | 2020-11-25 12:19:28 +0000 | [diff] [blame] | 3324 | mutex_unlock(&fs_info->tree_log_mutex); |
Stefan Behrens | 5af3e8c | 2012-08-01 18:56:49 +0200 | [diff] [blame] | 3325 | if (ret) { |
David Sterba | 9078776 | 2019-03-20 13:28:05 +0100 | [diff] [blame] | 3326 | btrfs_set_log_full_commit(trans); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3327 | btrfs_abort_transaction(trans, ret); |
Stefan Behrens | 5af3e8c | 2012-08-01 18:56:49 +0200 | [diff] [blame] | 3328 | goto out_wake_log_root; |
| 3329 | } |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3330 | |
Chris Mason | 257c62e | 2009-10-13 13:21:08 -0400 | [diff] [blame] | 3331 | mutex_lock(&root->log_mutex); |
| 3332 | if (root->last_log_commit < log_transid) |
| 3333 | root->last_log_commit = log_transid; |
| 3334 | mutex_unlock(&root->log_mutex); |
| 3335 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3336 | out_wake_log_root: |
Chris Mason | 570dd45 | 2016-10-27 10:42:20 -0700 | [diff] [blame] | 3337 | mutex_lock(&log_root_tree->log_mutex); |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 3338 | btrfs_remove_all_log_ctxs(log_root_tree, index2, ret); |
| 3339 | |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3340 | log_root_tree->log_transid_committed++; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3341 | atomic_set(&log_root_tree->log_commit[index2], 0); |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3342 | mutex_unlock(&log_root_tree->log_mutex); |
| 3343 | |
David Sterba | 33a9eca | 2015-10-10 18:35:10 +0200 | [diff] [blame] | 3344 | /* |
David Sterba | 093258e | 2018-02-26 16:15:17 +0100 | [diff] [blame] | 3345 | * The barrier before waitqueue_active (in cond_wake_up) is needed so |
| 3346 | * all the updates above are seen by the woken threads. It might not be |
| 3347 | * necessary, but proving that seems to be hard. |
David Sterba | 33a9eca | 2015-10-10 18:35:10 +0200 | [diff] [blame] | 3348 | */ |
David Sterba | 093258e | 2018-02-26 16:15:17 +0100 | [diff] [blame] | 3349 | cond_wake_up(&log_root_tree->log_commit_wait[index2]); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3350 | out: |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3351 | mutex_lock(&root->log_mutex); |
Chris Mason | 570dd45 | 2016-10-27 10:42:20 -0700 | [diff] [blame] | 3352 | btrfs_remove_all_log_ctxs(root, index1, ret); |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3353 | root->log_transid_committed++; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3354 | atomic_set(&root->log_commit[index1], 0); |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3355 | mutex_unlock(&root->log_mutex); |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 3356 | |
David Sterba | 33a9eca | 2015-10-10 18:35:10 +0200 | [diff] [blame] | 3357 | /* |
David Sterba | 093258e | 2018-02-26 16:15:17 +0100 | [diff] [blame] | 3358 | * The barrier before waitqueue_active (in cond_wake_up) is needed so |
| 3359 | * all the updates above are seen by the woken threads. It might not be |
| 3360 | * necessary, but proving that seems to be hard. |
David Sterba | 33a9eca | 2015-10-10 18:35:10 +0200 | [diff] [blame] | 3361 | */ |
David Sterba | 093258e | 2018-02-26 16:15:17 +0100 | [diff] [blame] | 3362 | cond_wake_up(&root->log_commit_wait[index1]); |
Chris Mason | b31eabd | 2011-01-31 16:48:24 -0500 | [diff] [blame] | 3363 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3364 | } |
| 3365 | |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3366 | static void free_log_tree(struct btrfs_trans_handle *trans, |
| 3367 | struct btrfs_root *log) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3368 | { |
| 3369 | int ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3370 | struct walk_control wc = { |
| 3371 | .free = 1, |
| 3372 | .process_func = process_one_buffer |
| 3373 | }; |
| 3374 | |
Naohiro Aota | 3ddebf2 | 2021-02-04 19:22:20 +0900 | [diff] [blame] | 3375 | if (log->node) { |
| 3376 | ret = walk_log_tree(trans, log, &wc); |
| 3377 | if (ret) { |
| 3378 | if (trans) |
| 3379 | btrfs_abort_transaction(trans, ret); |
| 3380 | else |
| 3381 | btrfs_handle_fs_error(log->fs_info, ret, NULL); |
| 3382 | } |
Jeff Mahoney | 374b0e2 | 2018-09-06 16:59:33 -0400 | [diff] [blame] | 3383 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3384 | |
Filipe Manana | 59b0713 | 2018-11-09 10:43:08 +0000 | [diff] [blame] | 3385 | clear_extent_bits(&log->dirty_log_pages, 0, (u64)-1, |
| 3386 | EXTENT_DIRTY | EXTENT_NEW | EXTENT_NEED_WAIT); |
Filipe Manana | e289f03 | 2020-05-18 12:14:50 +0100 | [diff] [blame] | 3387 | extent_io_tree_release(&log->log_csum_range); |
Naohiro Aota | d3575156 | 2021-02-04 19:21:54 +0900 | [diff] [blame] | 3388 | |
| 3389 | if (trans && log->node) |
| 3390 | btrfs_redirty_list_add(trans->transaction, log->node); |
Josef Bacik | 0024652 | 2020-01-24 09:33:01 -0500 | [diff] [blame] | 3391 | btrfs_put_root(log); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3392 | } |
| 3393 | |
| 3394 | /* |
| 3395 | * free all the extents used by the tree log. This should be called |
| 3396 | * at commit time of the full transaction |
| 3397 | */ |
| 3398 | int btrfs_free_log(struct btrfs_trans_handle *trans, struct btrfs_root *root) |
| 3399 | { |
| 3400 | if (root->log_root) { |
| 3401 | free_log_tree(trans, root->log_root); |
| 3402 | root->log_root = NULL; |
Filipe Manana | e7a7981 | 2020-06-15 10:38:44 +0100 | [diff] [blame] | 3403 | clear_bit(BTRFS_ROOT_HAS_LOG_TREE, &root->state); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3404 | } |
| 3405 | return 0; |
| 3406 | } |
| 3407 | |
| 3408 | int btrfs_free_log_root_tree(struct btrfs_trans_handle *trans, |
| 3409 | struct btrfs_fs_info *fs_info) |
| 3410 | { |
| 3411 | if (fs_info->log_root_tree) { |
| 3412 | free_log_tree(trans, fs_info->log_root_tree); |
| 3413 | fs_info->log_root_tree = NULL; |
Filipe Manana | 47876f7 | 2020-11-25 12:19:28 +0000 | [diff] [blame] | 3414 | clear_bit(BTRFS_ROOT_HAS_LOG_TREE, &fs_info->tree_root->state); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3415 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3416 | return 0; |
| 3417 | } |
| 3418 | |
| 3419 | /* |
Filipe Manana | 803f0f6 | 2019-06-19 13:05:39 +0100 | [diff] [blame] | 3420 | * Check if an inode was logged in the current transaction. We can't always rely |
| 3421 | * on an inode's logged_trans value, because it's an in-memory only field and |
| 3422 | * therefore not persisted. This means that its value is lost if the inode gets |
| 3423 | * evicted and loaded again from disk (in which case it has a value of 0, and |
| 3424 | * certainly it is smaller then any possible transaction ID), when that happens |
| 3425 | * the full_sync flag is set in the inode's runtime flags, so on that case we |
| 3426 | * assume eviction happened and ignore the logged_trans value, assuming the |
| 3427 | * worst case, that the inode was logged before in the current transaction. |
| 3428 | */ |
| 3429 | static bool inode_logged(struct btrfs_trans_handle *trans, |
| 3430 | struct btrfs_inode *inode) |
| 3431 | { |
| 3432 | if (inode->logged_trans == trans->transid) |
| 3433 | return true; |
| 3434 | |
| 3435 | if (inode->last_trans == trans->transid && |
| 3436 | test_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags) && |
| 3437 | !test_bit(BTRFS_FS_LOG_RECOVERING, &trans->fs_info->flags)) |
| 3438 | return true; |
| 3439 | |
| 3440 | return false; |
| 3441 | } |
| 3442 | |
| 3443 | /* |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3444 | * If both a file and directory are logged, and unlinks or renames are |
| 3445 | * mixed in, we have a few interesting corners: |
| 3446 | * |
| 3447 | * create file X in dir Y |
| 3448 | * link file X to X.link in dir Y |
| 3449 | * fsync file X |
| 3450 | * unlink file X but leave X.link |
| 3451 | * fsync dir Y |
| 3452 | * |
| 3453 | * After a crash we would expect only X.link to exist. But file X |
| 3454 | * didn't get fsync'd again so the log has back refs for X and X.link. |
| 3455 | * |
| 3456 | * We solve this by removing directory entries and inode backrefs from the |
| 3457 | * log when a file that was logged in the current transaction is |
| 3458 | * unlinked. Any later fsync will include the updated log entries, and |
| 3459 | * we'll be able to reconstruct the proper directory items from backrefs. |
| 3460 | * |
| 3461 | * This optimizations allows us to avoid relogging the entire inode |
| 3462 | * or the entire directory. |
| 3463 | */ |
| 3464 | int btrfs_del_dir_entries_in_log(struct btrfs_trans_handle *trans, |
| 3465 | struct btrfs_root *root, |
| 3466 | const char *name, int name_len, |
Nikolay Borisov | 49f34d1 | 2017-01-18 00:31:32 +0200 | [diff] [blame] | 3467 | struct btrfs_inode *dir, u64 index) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3468 | { |
| 3469 | struct btrfs_root *log; |
| 3470 | struct btrfs_dir_item *di; |
| 3471 | struct btrfs_path *path; |
| 3472 | int ret; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3473 | int err = 0; |
Nikolay Borisov | 49f34d1 | 2017-01-18 00:31:32 +0200 | [diff] [blame] | 3474 | u64 dir_ino = btrfs_ino(dir); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3475 | |
Filipe Manana | 803f0f6 | 2019-06-19 13:05:39 +0100 | [diff] [blame] | 3476 | if (!inode_logged(trans, dir)) |
Chris Mason | 3a5f1d4 | 2008-09-11 15:53:37 -0400 | [diff] [blame] | 3477 | return 0; |
| 3478 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3479 | ret = join_running_log_trans(root); |
| 3480 | if (ret) |
| 3481 | return 0; |
| 3482 | |
Nikolay Borisov | 49f34d1 | 2017-01-18 00:31:32 +0200 | [diff] [blame] | 3483 | mutex_lock(&dir->log_mutex); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3484 | |
| 3485 | log = root->log_root; |
| 3486 | path = btrfs_alloc_path(); |
Tsutomu Itoh | a62f44a | 2011-04-25 19:43:51 -0400 | [diff] [blame] | 3487 | if (!path) { |
| 3488 | err = -ENOMEM; |
| 3489 | goto out_unlock; |
| 3490 | } |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 3491 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3492 | di = btrfs_lookup_dir_item(trans, log, path, dir_ino, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3493 | name, name_len, -1); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3494 | if (IS_ERR(di)) { |
| 3495 | err = PTR_ERR(di); |
| 3496 | goto fail; |
| 3497 | } |
| 3498 | if (di) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3499 | ret = btrfs_delete_one_dir_name(trans, log, path, di); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 3500 | if (ret) { |
| 3501 | err = ret; |
| 3502 | goto fail; |
| 3503 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3504 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3505 | btrfs_release_path(path); |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3506 | di = btrfs_lookup_dir_index_item(trans, log, path, dir_ino, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3507 | index, name, name_len, -1); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3508 | if (IS_ERR(di)) { |
| 3509 | err = PTR_ERR(di); |
| 3510 | goto fail; |
| 3511 | } |
| 3512 | if (di) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3513 | ret = btrfs_delete_one_dir_name(trans, log, path, di); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 3514 | if (ret) { |
| 3515 | err = ret; |
| 3516 | goto fail; |
| 3517 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3518 | } |
| 3519 | |
Filipe Manana | ddffcf6 | 2021-01-27 10:34:54 +0000 | [diff] [blame] | 3520 | /* |
| 3521 | * We do not need to update the size field of the directory's inode item |
| 3522 | * because on log replay we update the field to reflect all existing |
| 3523 | * entries in the directory (see overwrite_item()). |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3524 | */ |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3525 | fail: |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3526 | btrfs_free_path(path); |
Tsutomu Itoh | a62f44a | 2011-04-25 19:43:51 -0400 | [diff] [blame] | 3527 | out_unlock: |
Nikolay Borisov | 49f34d1 | 2017-01-18 00:31:32 +0200 | [diff] [blame] | 3528 | mutex_unlock(&dir->log_mutex); |
Josef Bacik | fb2fecb | 2020-08-10 17:31:16 -0400 | [diff] [blame] | 3529 | if (err == -ENOSPC) { |
David Sterba | 9078776 | 2019-03-20 13:28:05 +0100 | [diff] [blame] | 3530 | btrfs_set_log_full_commit(trans); |
Josef Bacik | fb2fecb | 2020-08-10 17:31:16 -0400 | [diff] [blame] | 3531 | err = 0; |
| 3532 | } else if (err < 0 && err != -ENOENT) { |
| 3533 | /* ENOENT can be returned if the entry hasn't been fsynced yet */ |
| 3534 | btrfs_abort_transaction(trans, err); |
| 3535 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3536 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3537 | btrfs_end_log_trans(root); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3538 | |
Andi Kleen | 411fc6b | 2010-10-29 15:14:31 -0400 | [diff] [blame] | 3539 | return err; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3540 | } |
| 3541 | |
| 3542 | /* see comments for btrfs_del_dir_entries_in_log */ |
| 3543 | int btrfs_del_inode_ref_in_log(struct btrfs_trans_handle *trans, |
| 3544 | struct btrfs_root *root, |
| 3545 | const char *name, int name_len, |
Nikolay Borisov | a491abb | 2017-01-18 00:31:33 +0200 | [diff] [blame] | 3546 | struct btrfs_inode *inode, u64 dirid) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3547 | { |
| 3548 | struct btrfs_root *log; |
| 3549 | u64 index; |
| 3550 | int ret; |
| 3551 | |
Filipe Manana | 803f0f6 | 2019-06-19 13:05:39 +0100 | [diff] [blame] | 3552 | if (!inode_logged(trans, inode)) |
Chris Mason | 3a5f1d4 | 2008-09-11 15:53:37 -0400 | [diff] [blame] | 3553 | return 0; |
| 3554 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3555 | ret = join_running_log_trans(root); |
| 3556 | if (ret) |
| 3557 | return 0; |
| 3558 | log = root->log_root; |
Nikolay Borisov | a491abb | 2017-01-18 00:31:33 +0200 | [diff] [blame] | 3559 | mutex_lock(&inode->log_mutex); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3560 | |
Nikolay Borisov | a491abb | 2017-01-18 00:31:33 +0200 | [diff] [blame] | 3561 | ret = btrfs_del_inode_ref(trans, log, name, name_len, btrfs_ino(inode), |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3562 | dirid, &index); |
Nikolay Borisov | a491abb | 2017-01-18 00:31:33 +0200 | [diff] [blame] | 3563 | mutex_unlock(&inode->log_mutex); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3564 | if (ret == -ENOSPC) { |
David Sterba | 9078776 | 2019-03-20 13:28:05 +0100 | [diff] [blame] | 3565 | btrfs_set_log_full_commit(trans); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3566 | ret = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3567 | } else if (ret < 0 && ret != -ENOENT) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3568 | btrfs_abort_transaction(trans, ret); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3569 | btrfs_end_log_trans(root); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3570 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3571 | return ret; |
| 3572 | } |
| 3573 | |
| 3574 | /* |
| 3575 | * creates a range item in the log for 'dirid'. first_offset and |
| 3576 | * last_offset tell us which parts of the key space the log should |
| 3577 | * be considered authoritative for. |
| 3578 | */ |
| 3579 | static noinline int insert_dir_log_key(struct btrfs_trans_handle *trans, |
| 3580 | struct btrfs_root *log, |
| 3581 | struct btrfs_path *path, |
| 3582 | int key_type, u64 dirid, |
| 3583 | u64 first_offset, u64 last_offset) |
| 3584 | { |
| 3585 | int ret; |
| 3586 | struct btrfs_key key; |
| 3587 | struct btrfs_dir_log_item *item; |
| 3588 | |
| 3589 | key.objectid = dirid; |
| 3590 | key.offset = first_offset; |
| 3591 | if (key_type == BTRFS_DIR_ITEM_KEY) |
| 3592 | key.type = BTRFS_DIR_LOG_ITEM_KEY; |
| 3593 | else |
| 3594 | key.type = BTRFS_DIR_LOG_INDEX_KEY; |
| 3595 | ret = btrfs_insert_empty_item(trans, log, path, &key, sizeof(*item)); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3596 | if (ret) |
| 3597 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3598 | |
| 3599 | item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 3600 | struct btrfs_dir_log_item); |
| 3601 | btrfs_set_dir_log_end(path->nodes[0], item, last_offset); |
| 3602 | btrfs_mark_buffer_dirty(path->nodes[0]); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3603 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3604 | return 0; |
| 3605 | } |
| 3606 | |
| 3607 | /* |
| 3608 | * log all the items included in the current transaction for a given |
| 3609 | * directory. This also creates the range items in the log tree required |
| 3610 | * to replay anything deleted before the fsync |
| 3611 | */ |
| 3612 | static noinline int log_dir_items(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 684a577 | 2017-01-18 00:31:41 +0200 | [diff] [blame] | 3613 | struct btrfs_root *root, struct btrfs_inode *inode, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3614 | struct btrfs_path *path, |
| 3615 | struct btrfs_path *dst_path, int key_type, |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 3616 | struct btrfs_log_ctx *ctx, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3617 | u64 min_offset, u64 *last_offset_ret) |
| 3618 | { |
| 3619 | struct btrfs_key min_key; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3620 | struct btrfs_root *log = root->log_root; |
| 3621 | struct extent_buffer *src; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3622 | int err = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3623 | int ret; |
| 3624 | int i; |
| 3625 | int nritems; |
| 3626 | u64 first_offset = min_offset; |
| 3627 | u64 last_offset = (u64)-1; |
Nikolay Borisov | 684a577 | 2017-01-18 00:31:41 +0200 | [diff] [blame] | 3628 | u64 ino = btrfs_ino(inode); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3629 | |
| 3630 | log = root->log_root; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3631 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3632 | min_key.objectid = ino; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3633 | min_key.type = key_type; |
| 3634 | min_key.offset = min_offset; |
| 3635 | |
Filipe David Borba Manana | 6174d3c | 2013-10-01 16:13:42 +0100 | [diff] [blame] | 3636 | ret = btrfs_search_forward(root, &min_key, path, trans->transid); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3637 | |
| 3638 | /* |
| 3639 | * we didn't find anything from this transaction, see if there |
| 3640 | * is anything at all |
| 3641 | */ |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3642 | if (ret != 0 || min_key.objectid != ino || min_key.type != key_type) { |
| 3643 | min_key.objectid = ino; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3644 | min_key.type = key_type; |
| 3645 | min_key.offset = (u64)-1; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3646 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3647 | ret = btrfs_search_slot(NULL, root, &min_key, path, 0, 0); |
| 3648 | if (ret < 0) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3649 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3650 | return ret; |
| 3651 | } |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3652 | ret = btrfs_previous_item(root, path, ino, key_type); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3653 | |
| 3654 | /* if ret == 0 there are items for this type, |
| 3655 | * create a range to tell us the last key of this type. |
| 3656 | * otherwise, there are no items in this directory after |
| 3657 | * *min_offset, and we create a range to indicate that. |
| 3658 | */ |
| 3659 | if (ret == 0) { |
| 3660 | struct btrfs_key tmp; |
| 3661 | btrfs_item_key_to_cpu(path->nodes[0], &tmp, |
| 3662 | path->slots[0]); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3663 | if (key_type == tmp.type) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3664 | first_offset = max(min_offset, tmp.offset) + 1; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3665 | } |
| 3666 | goto done; |
| 3667 | } |
| 3668 | |
| 3669 | /* go backward to find any previous key */ |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3670 | ret = btrfs_previous_item(root, path, ino, key_type); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3671 | if (ret == 0) { |
| 3672 | struct btrfs_key tmp; |
| 3673 | btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]); |
| 3674 | if (key_type == tmp.type) { |
| 3675 | first_offset = tmp.offset; |
| 3676 | ret = overwrite_item(trans, log, dst_path, |
| 3677 | path->nodes[0], path->slots[0], |
| 3678 | &tmp); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3679 | if (ret) { |
| 3680 | err = ret; |
| 3681 | goto done; |
| 3682 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3683 | } |
| 3684 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3685 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3686 | |
Josef Bacik | 2cc8334 | 2019-03-06 17:13:04 -0500 | [diff] [blame] | 3687 | /* |
| 3688 | * Find the first key from this transaction again. See the note for |
| 3689 | * log_new_dir_dentries, if we're logging a directory recursively we |
| 3690 | * won't be holding its i_mutex, which means we can modify the directory |
| 3691 | * while we're logging it. If we remove an entry between our first |
| 3692 | * search and this search we'll not find the key again and can just |
| 3693 | * bail. |
| 3694 | */ |
Filipe Manana | bb56f02 | 2020-09-14 15:27:50 +0100 | [diff] [blame] | 3695 | search: |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3696 | ret = btrfs_search_slot(NULL, root, &min_key, path, 0, 0); |
Josef Bacik | 2cc8334 | 2019-03-06 17:13:04 -0500 | [diff] [blame] | 3697 | if (ret != 0) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3698 | goto done; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3699 | |
| 3700 | /* |
| 3701 | * we have a block from this transaction, log every item in it |
| 3702 | * from our directory |
| 3703 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3704 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3705 | struct btrfs_key tmp; |
| 3706 | src = path->nodes[0]; |
| 3707 | nritems = btrfs_header_nritems(src); |
| 3708 | for (i = path->slots[0]; i < nritems; i++) { |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 3709 | struct btrfs_dir_item *di; |
| 3710 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3711 | btrfs_item_key_to_cpu(src, &min_key, i); |
| 3712 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3713 | if (min_key.objectid != ino || min_key.type != key_type) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3714 | goto done; |
Filipe Manana | bb56f02 | 2020-09-14 15:27:50 +0100 | [diff] [blame] | 3715 | |
| 3716 | if (need_resched()) { |
| 3717 | btrfs_release_path(path); |
| 3718 | cond_resched(); |
| 3719 | goto search; |
| 3720 | } |
| 3721 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3722 | ret = overwrite_item(trans, log, dst_path, src, i, |
| 3723 | &min_key); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3724 | if (ret) { |
| 3725 | err = ret; |
| 3726 | goto done; |
| 3727 | } |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 3728 | |
| 3729 | /* |
| 3730 | * We must make sure that when we log a directory entry, |
| 3731 | * the corresponding inode, after log replay, has a |
| 3732 | * matching link count. For example: |
| 3733 | * |
| 3734 | * touch foo |
| 3735 | * mkdir mydir |
| 3736 | * sync |
| 3737 | * ln foo mydir/bar |
| 3738 | * xfs_io -c "fsync" mydir |
| 3739 | * <crash> |
| 3740 | * <mount fs and log replay> |
| 3741 | * |
| 3742 | * Would result in a fsync log that when replayed, our |
| 3743 | * file inode would have a link count of 1, but we get |
| 3744 | * two directory entries pointing to the same inode. |
| 3745 | * After removing one of the names, it would not be |
| 3746 | * possible to remove the other name, which resulted |
| 3747 | * always in stale file handle errors, and would not |
| 3748 | * be possible to rmdir the parent directory, since |
| 3749 | * its i_size could never decrement to the value |
| 3750 | * BTRFS_EMPTY_DIR_SIZE, resulting in -ENOTEMPTY errors. |
| 3751 | */ |
| 3752 | di = btrfs_item_ptr(src, i, struct btrfs_dir_item); |
| 3753 | btrfs_dir_item_key_to_cpu(src, di, &tmp); |
| 3754 | if (ctx && |
| 3755 | (btrfs_dir_transid(src, di) == trans->transid || |
| 3756 | btrfs_dir_type(src, di) == BTRFS_FT_DIR) && |
| 3757 | tmp.type != BTRFS_ROOT_ITEM_KEY) |
| 3758 | ctx->log_new_dentries = true; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3759 | } |
| 3760 | path->slots[0] = nritems; |
| 3761 | |
| 3762 | /* |
| 3763 | * look ahead to the next item and see if it is also |
| 3764 | * from this directory and from this transaction |
| 3765 | */ |
| 3766 | ret = btrfs_next_leaf(root, path); |
Liu Bo | 80c0b42 | 2018-04-03 01:59:47 +0800 | [diff] [blame] | 3767 | if (ret) { |
| 3768 | if (ret == 1) |
| 3769 | last_offset = (u64)-1; |
| 3770 | else |
| 3771 | err = ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3772 | goto done; |
| 3773 | } |
| 3774 | btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]); |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3775 | if (tmp.objectid != ino || tmp.type != key_type) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3776 | last_offset = (u64)-1; |
| 3777 | goto done; |
| 3778 | } |
| 3779 | if (btrfs_header_generation(path->nodes[0]) != trans->transid) { |
| 3780 | ret = overwrite_item(trans, log, dst_path, |
| 3781 | path->nodes[0], path->slots[0], |
| 3782 | &tmp); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3783 | if (ret) |
| 3784 | err = ret; |
| 3785 | else |
| 3786 | last_offset = tmp.offset; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3787 | goto done; |
| 3788 | } |
| 3789 | } |
| 3790 | done: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3791 | btrfs_release_path(path); |
| 3792 | btrfs_release_path(dst_path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3793 | |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3794 | if (err == 0) { |
| 3795 | *last_offset_ret = last_offset; |
| 3796 | /* |
| 3797 | * insert the log range keys to indicate where the log |
| 3798 | * is valid |
| 3799 | */ |
| 3800 | ret = insert_dir_log_key(trans, log, path, key_type, |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3801 | ino, first_offset, last_offset); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3802 | if (ret) |
| 3803 | err = ret; |
| 3804 | } |
| 3805 | return err; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3806 | } |
| 3807 | |
| 3808 | /* |
| 3809 | * logging directories is very similar to logging inodes, We find all the items |
| 3810 | * from the current transaction and write them to the log. |
| 3811 | * |
| 3812 | * The recovery code scans the directory in the subvolume, and if it finds a |
| 3813 | * key in the range logged that is not present in the log tree, then it means |
| 3814 | * that dir entry was unlinked during the transaction. |
| 3815 | * |
| 3816 | * In order for that scan to work, we must include one key smaller than |
| 3817 | * the smallest logged by this transaction and one key larger than the largest |
| 3818 | * key logged by this transaction. |
| 3819 | */ |
| 3820 | static noinline int log_directory_changes(struct btrfs_trans_handle *trans, |
Nikolay Borisov | dbf39ea | 2017-01-18 00:31:42 +0200 | [diff] [blame] | 3821 | struct btrfs_root *root, struct btrfs_inode *inode, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3822 | struct btrfs_path *path, |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 3823 | struct btrfs_path *dst_path, |
| 3824 | struct btrfs_log_ctx *ctx) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3825 | { |
| 3826 | u64 min_key; |
| 3827 | u64 max_key; |
| 3828 | int ret; |
| 3829 | int key_type = BTRFS_DIR_ITEM_KEY; |
| 3830 | |
| 3831 | again: |
| 3832 | min_key = 0; |
| 3833 | max_key = 0; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3834 | while (1) { |
Nikolay Borisov | dbf39ea | 2017-01-18 00:31:42 +0200 | [diff] [blame] | 3835 | ret = log_dir_items(trans, root, inode, path, dst_path, key_type, |
| 3836 | ctx, min_key, &max_key); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3837 | if (ret) |
| 3838 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3839 | if (max_key == (u64)-1) |
| 3840 | break; |
| 3841 | min_key = max_key + 1; |
| 3842 | } |
| 3843 | |
| 3844 | if (key_type == BTRFS_DIR_ITEM_KEY) { |
| 3845 | key_type = BTRFS_DIR_INDEX_KEY; |
| 3846 | goto again; |
| 3847 | } |
| 3848 | return 0; |
| 3849 | } |
| 3850 | |
| 3851 | /* |
| 3852 | * a helper function to drop items from the log before we relog an |
| 3853 | * inode. max_key_type indicates the highest item type to remove. |
| 3854 | * This cannot be run for file data extents because it does not |
| 3855 | * free the extents they point to. |
| 3856 | */ |
| 3857 | static int drop_objectid_items(struct btrfs_trans_handle *trans, |
| 3858 | struct btrfs_root *log, |
| 3859 | struct btrfs_path *path, |
| 3860 | u64 objectid, int max_key_type) |
| 3861 | { |
| 3862 | int ret; |
| 3863 | struct btrfs_key key; |
| 3864 | struct btrfs_key found_key; |
Josef Bacik | 18ec90d | 2012-09-28 11:56:28 -0400 | [diff] [blame] | 3865 | int start_slot; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3866 | |
| 3867 | key.objectid = objectid; |
| 3868 | key.type = max_key_type; |
| 3869 | key.offset = (u64)-1; |
| 3870 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3871 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3872 | ret = btrfs_search_slot(trans, log, &key, path, -1, 1); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 3873 | BUG_ON(ret == 0); /* Logic error */ |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3874 | if (ret < 0) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3875 | break; |
| 3876 | |
| 3877 | if (path->slots[0] == 0) |
| 3878 | break; |
| 3879 | |
| 3880 | path->slots[0]--; |
| 3881 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, |
| 3882 | path->slots[0]); |
| 3883 | |
| 3884 | if (found_key.objectid != objectid) |
| 3885 | break; |
| 3886 | |
Josef Bacik | 18ec90d | 2012-09-28 11:56:28 -0400 | [diff] [blame] | 3887 | found_key.offset = 0; |
| 3888 | found_key.type = 0; |
Qu Wenruo | e3b8336 | 2020-04-17 15:08:21 +0800 | [diff] [blame] | 3889 | ret = btrfs_bin_search(path->nodes[0], &found_key, &start_slot); |
Filipe Manana | cbca7d5 | 2019-02-18 16:57:26 +0000 | [diff] [blame] | 3890 | if (ret < 0) |
| 3891 | break; |
Josef Bacik | 18ec90d | 2012-09-28 11:56:28 -0400 | [diff] [blame] | 3892 | |
| 3893 | ret = btrfs_del_items(trans, log, path, start_slot, |
| 3894 | path->slots[0] - start_slot + 1); |
| 3895 | /* |
| 3896 | * If start slot isn't 0 then we don't need to re-search, we've |
| 3897 | * found the last guy with the objectid in this tree. |
| 3898 | */ |
| 3899 | if (ret || start_slot != 0) |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 3900 | break; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3901 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3902 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3903 | btrfs_release_path(path); |
Josef Bacik | 5bdbeb2 | 2012-05-29 16:59:49 -0400 | [diff] [blame] | 3904 | if (ret > 0) |
| 3905 | ret = 0; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3906 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3907 | } |
| 3908 | |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3909 | static void fill_inode_item(struct btrfs_trans_handle *trans, |
| 3910 | struct extent_buffer *leaf, |
| 3911 | struct btrfs_inode_item *item, |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 3912 | struct inode *inode, int log_inode_only, |
| 3913 | u64 logged_isize) |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3914 | { |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3915 | struct btrfs_map_token token; |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3916 | |
David Sterba | c82f823 | 2019-08-09 17:48:21 +0200 | [diff] [blame] | 3917 | btrfs_init_map_token(&token, leaf); |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3918 | |
| 3919 | if (log_inode_only) { |
| 3920 | /* set the generation to zero so the recover code |
| 3921 | * can tell the difference between an logging |
| 3922 | * just to say 'this inode exists' and a logging |
| 3923 | * to say 'update this inode with these values' |
| 3924 | */ |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 3925 | btrfs_set_token_inode_generation(&token, item, 0); |
| 3926 | btrfs_set_token_inode_size(&token, item, logged_isize); |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3927 | } else { |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 3928 | btrfs_set_token_inode_generation(&token, item, |
| 3929 | BTRFS_I(inode)->generation); |
| 3930 | btrfs_set_token_inode_size(&token, item, inode->i_size); |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3931 | } |
| 3932 | |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 3933 | btrfs_set_token_inode_uid(&token, item, i_uid_read(inode)); |
| 3934 | btrfs_set_token_inode_gid(&token, item, i_gid_read(inode)); |
| 3935 | btrfs_set_token_inode_mode(&token, item, inode->i_mode); |
| 3936 | btrfs_set_token_inode_nlink(&token, item, inode->i_nlink); |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3937 | |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 3938 | btrfs_set_token_timespec_sec(&token, &item->atime, |
| 3939 | inode->i_atime.tv_sec); |
| 3940 | btrfs_set_token_timespec_nsec(&token, &item->atime, |
| 3941 | inode->i_atime.tv_nsec); |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3942 | |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 3943 | btrfs_set_token_timespec_sec(&token, &item->mtime, |
| 3944 | inode->i_mtime.tv_sec); |
| 3945 | btrfs_set_token_timespec_nsec(&token, &item->mtime, |
| 3946 | inode->i_mtime.tv_nsec); |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3947 | |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 3948 | btrfs_set_token_timespec_sec(&token, &item->ctime, |
| 3949 | inode->i_ctime.tv_sec); |
| 3950 | btrfs_set_token_timespec_nsec(&token, &item->ctime, |
| 3951 | inode->i_ctime.tv_nsec); |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3952 | |
Filipe Manana | e593e54 | 2021-01-27 10:34:55 +0000 | [diff] [blame] | 3953 | /* |
| 3954 | * We do not need to set the nbytes field, in fact during a fast fsync |
| 3955 | * its value may not even be correct, since a fast fsync does not wait |
| 3956 | * for ordered extent completion, which is where we update nbytes, it |
| 3957 | * only waits for writeback to complete. During log replay as we find |
| 3958 | * file extent items and replay them, we adjust the nbytes field of the |
| 3959 | * inode item in subvolume tree as needed (see overwrite_item()). |
| 3960 | */ |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3961 | |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 3962 | btrfs_set_token_inode_sequence(&token, item, inode_peek_iversion(inode)); |
| 3963 | btrfs_set_token_inode_transid(&token, item, trans->transid); |
| 3964 | btrfs_set_token_inode_rdev(&token, item, inode->i_rdev); |
| 3965 | btrfs_set_token_inode_flags(&token, item, BTRFS_I(inode)->flags); |
| 3966 | btrfs_set_token_inode_block_group(&token, item, 0); |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3967 | } |
| 3968 | |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 3969 | static int log_inode_item(struct btrfs_trans_handle *trans, |
| 3970 | struct btrfs_root *log, struct btrfs_path *path, |
Nikolay Borisov | 6d889a3 | 2017-01-18 00:31:47 +0200 | [diff] [blame] | 3971 | struct btrfs_inode *inode) |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 3972 | { |
| 3973 | struct btrfs_inode_item *inode_item; |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 3974 | int ret; |
| 3975 | |
Filipe David Borba Manana | efd0c40 | 2013-10-07 21:20:44 +0100 | [diff] [blame] | 3976 | ret = btrfs_insert_empty_item(trans, log, path, |
Nikolay Borisov | 6d889a3 | 2017-01-18 00:31:47 +0200 | [diff] [blame] | 3977 | &inode->location, sizeof(*inode_item)); |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 3978 | if (ret && ret != -EEXIST) |
| 3979 | return ret; |
| 3980 | inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 3981 | struct btrfs_inode_item); |
Nikolay Borisov | 6d889a3 | 2017-01-18 00:31:47 +0200 | [diff] [blame] | 3982 | fill_inode_item(trans, path->nodes[0], inode_item, &inode->vfs_inode, |
| 3983 | 0, 0); |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 3984 | btrfs_release_path(path); |
| 3985 | return 0; |
| 3986 | } |
| 3987 | |
Filipe Manana | 40e046a | 2019-12-05 16:58:30 +0000 | [diff] [blame] | 3988 | static int log_csums(struct btrfs_trans_handle *trans, |
Filipe Manana | 3ebac17 | 2020-07-15 12:30:43 +0100 | [diff] [blame] | 3989 | struct btrfs_inode *inode, |
Filipe Manana | 40e046a | 2019-12-05 16:58:30 +0000 | [diff] [blame] | 3990 | struct btrfs_root *log_root, |
| 3991 | struct btrfs_ordered_sum *sums) |
| 3992 | { |
Filipe Manana | e289f03 | 2020-05-18 12:14:50 +0100 | [diff] [blame] | 3993 | const u64 lock_end = sums->bytenr + sums->len - 1; |
| 3994 | struct extent_state *cached_state = NULL; |
Filipe Manana | 40e046a | 2019-12-05 16:58:30 +0000 | [diff] [blame] | 3995 | int ret; |
| 3996 | |
| 3997 | /* |
Filipe Manana | 3ebac17 | 2020-07-15 12:30:43 +0100 | [diff] [blame] | 3998 | * If this inode was not used for reflink operations in the current |
| 3999 | * transaction with new extents, then do the fast path, no need to |
| 4000 | * worry about logging checksum items with overlapping ranges. |
| 4001 | */ |
| 4002 | if (inode->last_reflink_trans < trans->transid) |
| 4003 | return btrfs_csum_file_blocks(trans, log_root, sums); |
| 4004 | |
| 4005 | /* |
Filipe Manana | e289f03 | 2020-05-18 12:14:50 +0100 | [diff] [blame] | 4006 | * Serialize logging for checksums. This is to avoid racing with the |
| 4007 | * same checksum being logged by another task that is logging another |
| 4008 | * file which happens to refer to the same extent as well. Such races |
| 4009 | * can leave checksum items in the log with overlapping ranges. |
| 4010 | */ |
| 4011 | ret = lock_extent_bits(&log_root->log_csum_range, sums->bytenr, |
| 4012 | lock_end, &cached_state); |
| 4013 | if (ret) |
| 4014 | return ret; |
| 4015 | /* |
Filipe Manana | 40e046a | 2019-12-05 16:58:30 +0000 | [diff] [blame] | 4016 | * Due to extent cloning, we might have logged a csum item that covers a |
| 4017 | * subrange of a cloned extent, and later we can end up logging a csum |
| 4018 | * item for a larger subrange of the same extent or the entire range. |
| 4019 | * This would leave csum items in the log tree that cover the same range |
| 4020 | * and break the searches for checksums in the log tree, resulting in |
| 4021 | * some checksums missing in the fs/subvolume tree. So just delete (or |
| 4022 | * trim and adjust) any existing csum items in the log for this range. |
| 4023 | */ |
| 4024 | ret = btrfs_del_csums(trans, log_root, sums->bytenr, sums->len); |
Filipe Manana | e289f03 | 2020-05-18 12:14:50 +0100 | [diff] [blame] | 4025 | if (!ret) |
| 4026 | ret = btrfs_csum_file_blocks(trans, log_root, sums); |
Filipe Manana | 40e046a | 2019-12-05 16:58:30 +0000 | [diff] [blame] | 4027 | |
Filipe Manana | e289f03 | 2020-05-18 12:14:50 +0100 | [diff] [blame] | 4028 | unlock_extent_cached(&log_root->log_csum_range, sums->bytenr, lock_end, |
| 4029 | &cached_state); |
| 4030 | |
| 4031 | return ret; |
Filipe Manana | 40e046a | 2019-12-05 16:58:30 +0000 | [diff] [blame] | 4032 | } |
| 4033 | |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4034 | static noinline int copy_items(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 44d70e1 | 2017-01-18 00:31:36 +0200 | [diff] [blame] | 4035 | struct btrfs_inode *inode, |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4036 | struct btrfs_path *dst_path, |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4037 | struct btrfs_path *src_path, |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 4038 | int start_slot, int nr, int inode_only, |
| 4039 | u64 logged_isize) |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4040 | { |
David Sterba | 3ffbd68 | 2018-06-29 10:56:42 +0200 | [diff] [blame] | 4041 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4042 | unsigned long src_offset; |
| 4043 | unsigned long dst_offset; |
Nikolay Borisov | 44d70e1 | 2017-01-18 00:31:36 +0200 | [diff] [blame] | 4044 | struct btrfs_root *log = inode->root->log_root; |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4045 | struct btrfs_file_extent_item *extent; |
| 4046 | struct btrfs_inode_item *inode_item; |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 4047 | struct extent_buffer *src = src_path->nodes[0]; |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4048 | int ret; |
| 4049 | struct btrfs_key *ins_keys; |
| 4050 | u32 *ins_sizes; |
| 4051 | char *ins_data; |
| 4052 | int i; |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 4053 | struct list_head ordered_sums; |
Nikolay Borisov | 44d70e1 | 2017-01-18 00:31:36 +0200 | [diff] [blame] | 4054 | int skip_csum = inode->flags & BTRFS_INODE_NODATASUM; |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 4055 | |
| 4056 | INIT_LIST_HEAD(&ordered_sums); |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4057 | |
| 4058 | ins_data = kmalloc(nr * sizeof(struct btrfs_key) + |
| 4059 | nr * sizeof(u32), GFP_NOFS); |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 4060 | if (!ins_data) |
| 4061 | return -ENOMEM; |
| 4062 | |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4063 | ins_sizes = (u32 *)ins_data; |
| 4064 | ins_keys = (struct btrfs_key *)(ins_data + nr * sizeof(u32)); |
| 4065 | |
| 4066 | for (i = 0; i < nr; i++) { |
| 4067 | ins_sizes[i] = btrfs_item_size_nr(src, i + start_slot); |
| 4068 | btrfs_item_key_to_cpu(src, ins_keys + i, i + start_slot); |
| 4069 | } |
| 4070 | ret = btrfs_insert_empty_items(trans, log, dst_path, |
| 4071 | ins_keys, ins_sizes, nr); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 4072 | if (ret) { |
| 4073 | kfree(ins_data); |
| 4074 | return ret; |
| 4075 | } |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4076 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4077 | for (i = 0; i < nr; i++, dst_path->slots[0]++) { |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4078 | dst_offset = btrfs_item_ptr_offset(dst_path->nodes[0], |
| 4079 | dst_path->slots[0]); |
| 4080 | |
| 4081 | src_offset = btrfs_item_ptr_offset(src, start_slot + i); |
| 4082 | |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 4083 | if (ins_keys[i].type == BTRFS_INODE_ITEM_KEY) { |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4084 | inode_item = btrfs_item_ptr(dst_path->nodes[0], |
| 4085 | dst_path->slots[0], |
| 4086 | struct btrfs_inode_item); |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 4087 | fill_inode_item(trans, dst_path->nodes[0], inode_item, |
David Sterba | f85b737 | 2017-01-20 14:54:07 +0100 | [diff] [blame] | 4088 | &inode->vfs_inode, |
| 4089 | inode_only == LOG_INODE_EXISTS, |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 4090 | logged_isize); |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 4091 | } else { |
| 4092 | copy_extent_buffer(dst_path->nodes[0], src, dst_offset, |
| 4093 | src_offset, ins_sizes[i]); |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4094 | } |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 4095 | |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4096 | /* take a reference on file data extents so that truncates |
| 4097 | * or deletes of this inode don't have to relog the inode |
| 4098 | * again |
| 4099 | */ |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 4100 | if (ins_keys[i].type == BTRFS_EXTENT_DATA_KEY && |
Liu Bo | d279440 | 2012-08-29 01:07:56 -0600 | [diff] [blame] | 4101 | !skip_csum) { |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4102 | int found_type; |
| 4103 | extent = btrfs_item_ptr(src, start_slot + i, |
| 4104 | struct btrfs_file_extent_item); |
| 4105 | |
liubo | 8e531cd | 2011-05-06 10:36:09 +0800 | [diff] [blame] | 4106 | if (btrfs_file_extent_generation(src, extent) < trans->transid) |
| 4107 | continue; |
| 4108 | |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4109 | found_type = btrfs_file_extent_type(src, extent); |
Josef Bacik | 6f1fed7 | 2012-09-26 11:07:06 -0400 | [diff] [blame] | 4110 | if (found_type == BTRFS_FILE_EXTENT_REG) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4111 | u64 ds, dl, cs, cl; |
| 4112 | ds = btrfs_file_extent_disk_bytenr(src, |
| 4113 | extent); |
| 4114 | /* ds == 0 is a hole */ |
| 4115 | if (ds == 0) |
| 4116 | continue; |
| 4117 | |
| 4118 | dl = btrfs_file_extent_disk_num_bytes(src, |
| 4119 | extent); |
| 4120 | cs = btrfs_file_extent_offset(src, extent); |
| 4121 | cl = btrfs_file_extent_num_bytes(src, |
Joe Perches | a419aef | 2009-08-18 11:18:35 -0700 | [diff] [blame] | 4122 | extent); |
Chris Mason | 580afd7 | 2008-12-08 19:15:39 -0500 | [diff] [blame] | 4123 | if (btrfs_file_extent_compression(src, |
| 4124 | extent)) { |
| 4125 | cs = 0; |
| 4126 | cl = dl; |
| 4127 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4128 | |
| 4129 | ret = btrfs_lookup_csums_range( |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4130 | fs_info->csum_root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4131 | ds + cs, ds + cs + cl - 1, |
Arne Jansen | a2de733 | 2011-03-08 14:14:00 +0100 | [diff] [blame] | 4132 | &ordered_sums, 0); |
Filipe Manana | 4f26433 | 2020-07-29 10:17:50 +0100 | [diff] [blame] | 4133 | if (ret) |
| 4134 | break; |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4135 | } |
| 4136 | } |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4137 | } |
| 4138 | |
| 4139 | btrfs_mark_buffer_dirty(dst_path->nodes[0]); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4140 | btrfs_release_path(dst_path); |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4141 | kfree(ins_data); |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 4142 | |
| 4143 | /* |
| 4144 | * we have to do this after the loop above to avoid changing the |
| 4145 | * log tree while trying to change the log tree. |
| 4146 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 4147 | while (!list_empty(&ordered_sums)) { |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 4148 | struct btrfs_ordered_sum *sums = list_entry(ordered_sums.next, |
| 4149 | struct btrfs_ordered_sum, |
| 4150 | list); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 4151 | if (!ret) |
Filipe Manana | 3ebac17 | 2020-07-15 12:30:43 +0100 | [diff] [blame] | 4152 | ret = log_csums(trans, inode, log, sums); |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 4153 | list_del(&sums->list); |
| 4154 | kfree(sums); |
| 4155 | } |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 4156 | |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 4157 | return ret; |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4158 | } |
| 4159 | |
Sami Tolvanen | 4f0f586 | 2021-04-08 11:28:34 -0700 | [diff] [blame] | 4160 | static int extent_cmp(void *priv, const struct list_head *a, |
| 4161 | const struct list_head *b) |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4162 | { |
| 4163 | struct extent_map *em1, *em2; |
| 4164 | |
| 4165 | em1 = list_entry(a, struct extent_map, list); |
| 4166 | em2 = list_entry(b, struct extent_map, list); |
| 4167 | |
| 4168 | if (em1->start < em2->start) |
| 4169 | return -1; |
| 4170 | else if (em1->start > em2->start) |
| 4171 | return 1; |
| 4172 | return 0; |
| 4173 | } |
| 4174 | |
Josef Bacik | e7175a6 | 2018-05-23 11:58:34 -0400 | [diff] [blame] | 4175 | static int log_extent_csums(struct btrfs_trans_handle *trans, |
| 4176 | struct btrfs_inode *inode, |
Nikolay Borisov | a9ecb65 | 2018-06-20 17:26:42 +0300 | [diff] [blame] | 4177 | struct btrfs_root *log_root, |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 4178 | const struct extent_map *em, |
| 4179 | struct btrfs_log_ctx *ctx) |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4180 | { |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 4181 | struct btrfs_ordered_extent *ordered; |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 4182 | u64 csum_offset; |
| 4183 | u64 csum_len; |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 4184 | u64 mod_start = em->mod_start; |
| 4185 | u64 mod_len = em->mod_len; |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4186 | LIST_HEAD(ordered_sums); |
| 4187 | int ret = 0; |
Josef Bacik | 09a2a8f9 | 2013-04-05 16:51:15 -0400 | [diff] [blame] | 4188 | |
Josef Bacik | e7175a6 | 2018-05-23 11:58:34 -0400 | [diff] [blame] | 4189 | if (inode->flags & BTRFS_INODE_NODATASUM || |
| 4190 | test_bit(EXTENT_FLAG_PREALLOC, &em->flags) || |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4191 | em->block_start == EXTENT_MAP_HOLE) |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 4192 | return 0; |
| 4193 | |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 4194 | list_for_each_entry(ordered, &ctx->ordered_extents, log_list) { |
| 4195 | const u64 ordered_end = ordered->file_offset + ordered->num_bytes; |
| 4196 | const u64 mod_end = mod_start + mod_len; |
| 4197 | struct btrfs_ordered_sum *sums; |
| 4198 | |
| 4199 | if (mod_len == 0) |
| 4200 | break; |
| 4201 | |
| 4202 | if (ordered_end <= mod_start) |
| 4203 | continue; |
| 4204 | if (mod_end <= ordered->file_offset) |
| 4205 | break; |
| 4206 | |
| 4207 | /* |
| 4208 | * We are going to copy all the csums on this ordered extent, so |
| 4209 | * go ahead and adjust mod_start and mod_len in case this ordered |
| 4210 | * extent has already been logged. |
| 4211 | */ |
| 4212 | if (ordered->file_offset > mod_start) { |
| 4213 | if (ordered_end >= mod_end) |
| 4214 | mod_len = ordered->file_offset - mod_start; |
| 4215 | /* |
| 4216 | * If we have this case |
| 4217 | * |
| 4218 | * |--------- logged extent ---------| |
| 4219 | * |----- ordered extent ----| |
| 4220 | * |
| 4221 | * Just don't mess with mod_start and mod_len, we'll |
| 4222 | * just end up logging more csums than we need and it |
| 4223 | * will be ok. |
| 4224 | */ |
| 4225 | } else { |
| 4226 | if (ordered_end < mod_end) { |
| 4227 | mod_len = mod_end - ordered_end; |
| 4228 | mod_start = ordered_end; |
| 4229 | } else { |
| 4230 | mod_len = 0; |
| 4231 | } |
| 4232 | } |
| 4233 | |
| 4234 | /* |
| 4235 | * To keep us from looping for the above case of an ordered |
| 4236 | * extent that falls inside of the logged extent. |
| 4237 | */ |
| 4238 | if (test_and_set_bit(BTRFS_ORDERED_LOGGED_CSUM, &ordered->flags)) |
| 4239 | continue; |
| 4240 | |
| 4241 | list_for_each_entry(sums, &ordered->list, list) { |
| 4242 | ret = log_csums(trans, inode, log_root, sums); |
| 4243 | if (ret) |
| 4244 | return ret; |
| 4245 | } |
| 4246 | } |
| 4247 | |
| 4248 | /* We're done, found all csums in the ordered extents. */ |
| 4249 | if (mod_len == 0) |
| 4250 | return 0; |
| 4251 | |
Josef Bacik | e7175a6 | 2018-05-23 11:58:34 -0400 | [diff] [blame] | 4252 | /* If we're compressed we have to save the entire range of csums. */ |
Filipe David Borba Manana | 488111a | 2013-10-28 16:30:29 +0000 | [diff] [blame] | 4253 | if (em->compress_type) { |
| 4254 | csum_offset = 0; |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4255 | csum_len = max(em->block_len, em->orig_block_len); |
Filipe David Borba Manana | 488111a | 2013-10-28 16:30:29 +0000 | [diff] [blame] | 4256 | } else { |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 4257 | csum_offset = mod_start - em->start; |
| 4258 | csum_len = mod_len; |
Filipe David Borba Manana | 488111a | 2013-10-28 16:30:29 +0000 | [diff] [blame] | 4259 | } |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 4260 | |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 4261 | /* block start is already adjusted for the file extent offset. */ |
Nikolay Borisov | a9ecb65 | 2018-06-20 17:26:42 +0300 | [diff] [blame] | 4262 | ret = btrfs_lookup_csums_range(trans->fs_info->csum_root, |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 4263 | em->block_start + csum_offset, |
| 4264 | em->block_start + csum_offset + |
| 4265 | csum_len - 1, &ordered_sums, 0); |
| 4266 | if (ret) |
| 4267 | return ret; |
| 4268 | |
| 4269 | while (!list_empty(&ordered_sums)) { |
| 4270 | struct btrfs_ordered_sum *sums = list_entry(ordered_sums.next, |
| 4271 | struct btrfs_ordered_sum, |
| 4272 | list); |
| 4273 | if (!ret) |
Filipe Manana | 3ebac17 | 2020-07-15 12:30:43 +0100 | [diff] [blame] | 4274 | ret = log_csums(trans, inode, log_root, sums); |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 4275 | list_del(&sums->list); |
| 4276 | kfree(sums); |
| 4277 | } |
| 4278 | |
| 4279 | return ret; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4280 | } |
| 4281 | |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4282 | static int log_one_extent(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 9d12262 | 2017-01-18 00:31:40 +0200 | [diff] [blame] | 4283 | struct btrfs_inode *inode, struct btrfs_root *root, |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4284 | const struct extent_map *em, |
| 4285 | struct btrfs_path *path, |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4286 | struct btrfs_log_ctx *ctx) |
| 4287 | { |
Filipe Manana | 5893dfb | 2020-11-04 11:07:32 +0000 | [diff] [blame] | 4288 | struct btrfs_drop_extents_args drop_args = { 0 }; |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4289 | struct btrfs_root *log = root->log_root; |
| 4290 | struct btrfs_file_extent_item *fi; |
| 4291 | struct extent_buffer *leaf; |
| 4292 | struct btrfs_map_token token; |
| 4293 | struct btrfs_key key; |
| 4294 | u64 extent_offset = em->start - em->orig_start; |
| 4295 | u64 block_len; |
| 4296 | int ret; |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4297 | |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 4298 | ret = log_extent_csums(trans, inode, log, em, ctx); |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4299 | if (ret) |
| 4300 | return ret; |
| 4301 | |
Filipe Manana | 5893dfb | 2020-11-04 11:07:32 +0000 | [diff] [blame] | 4302 | drop_args.path = path; |
| 4303 | drop_args.start = em->start; |
| 4304 | drop_args.end = em->start + em->len; |
| 4305 | drop_args.replace_extent = true; |
| 4306 | drop_args.extent_item_size = sizeof(*fi); |
| 4307 | ret = btrfs_drop_extents(trans, log, inode, &drop_args); |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4308 | if (ret) |
| 4309 | return ret; |
| 4310 | |
Filipe Manana | 5893dfb | 2020-11-04 11:07:32 +0000 | [diff] [blame] | 4311 | if (!drop_args.extent_inserted) { |
Nikolay Borisov | 9d12262 | 2017-01-18 00:31:40 +0200 | [diff] [blame] | 4312 | key.objectid = btrfs_ino(inode); |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4313 | key.type = BTRFS_EXTENT_DATA_KEY; |
| 4314 | key.offset = em->start; |
| 4315 | |
| 4316 | ret = btrfs_insert_empty_item(trans, log, path, &key, |
| 4317 | sizeof(*fi)); |
| 4318 | if (ret) |
| 4319 | return ret; |
| 4320 | } |
| 4321 | leaf = path->nodes[0]; |
David Sterba | c82f823 | 2019-08-09 17:48:21 +0200 | [diff] [blame] | 4322 | btrfs_init_map_token(&token, leaf); |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4323 | fi = btrfs_item_ptr(leaf, path->slots[0], |
| 4324 | struct btrfs_file_extent_item); |
| 4325 | |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 4326 | btrfs_set_token_file_extent_generation(&token, fi, trans->transid); |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4327 | if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 4328 | btrfs_set_token_file_extent_type(&token, fi, |
| 4329 | BTRFS_FILE_EXTENT_PREALLOC); |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4330 | else |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 4331 | btrfs_set_token_file_extent_type(&token, fi, |
| 4332 | BTRFS_FILE_EXTENT_REG); |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4333 | |
| 4334 | block_len = max(em->block_len, em->orig_block_len); |
| 4335 | if (em->compress_type != BTRFS_COMPRESS_NONE) { |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 4336 | btrfs_set_token_file_extent_disk_bytenr(&token, fi, |
| 4337 | em->block_start); |
| 4338 | btrfs_set_token_file_extent_disk_num_bytes(&token, fi, block_len); |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4339 | } else if (em->block_start < EXTENT_MAP_LAST_BYTE) { |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 4340 | btrfs_set_token_file_extent_disk_bytenr(&token, fi, |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4341 | em->block_start - |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 4342 | extent_offset); |
| 4343 | btrfs_set_token_file_extent_disk_num_bytes(&token, fi, block_len); |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4344 | } else { |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 4345 | btrfs_set_token_file_extent_disk_bytenr(&token, fi, 0); |
| 4346 | btrfs_set_token_file_extent_disk_num_bytes(&token, fi, 0); |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4347 | } |
| 4348 | |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 4349 | btrfs_set_token_file_extent_offset(&token, fi, extent_offset); |
| 4350 | btrfs_set_token_file_extent_num_bytes(&token, fi, em->len); |
| 4351 | btrfs_set_token_file_extent_ram_bytes(&token, fi, em->ram_bytes); |
| 4352 | btrfs_set_token_file_extent_compression(&token, fi, em->compress_type); |
| 4353 | btrfs_set_token_file_extent_encryption(&token, fi, 0); |
| 4354 | btrfs_set_token_file_extent_other_encoding(&token, fi, 0); |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4355 | btrfs_mark_buffer_dirty(leaf); |
| 4356 | |
| 4357 | btrfs_release_path(path); |
| 4358 | |
| 4359 | return ret; |
| 4360 | } |
| 4361 | |
Filipe Manana | 31d11b8 | 2018-05-09 16:01:46 +0100 | [diff] [blame] | 4362 | /* |
| 4363 | * Log all prealloc extents beyond the inode's i_size to make sure we do not |
| 4364 | * lose them after doing a fast fsync and replaying the log. We scan the |
| 4365 | * subvolume's root instead of iterating the inode's extent map tree because |
| 4366 | * otherwise we can log incorrect extent items based on extent map conversion. |
| 4367 | * That can happen due to the fact that extent maps are merged when they |
| 4368 | * are not in the extent map tree's list of modified extents. |
| 4369 | */ |
| 4370 | static int btrfs_log_prealloc_extents(struct btrfs_trans_handle *trans, |
| 4371 | struct btrfs_inode *inode, |
| 4372 | struct btrfs_path *path) |
| 4373 | { |
| 4374 | struct btrfs_root *root = inode->root; |
| 4375 | struct btrfs_key key; |
| 4376 | const u64 i_size = i_size_read(&inode->vfs_inode); |
| 4377 | const u64 ino = btrfs_ino(inode); |
| 4378 | struct btrfs_path *dst_path = NULL; |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4379 | bool dropped_extents = false; |
Filipe Manana | f135cea | 2020-04-23 16:30:53 +0100 | [diff] [blame] | 4380 | u64 truncate_offset = i_size; |
| 4381 | struct extent_buffer *leaf; |
| 4382 | int slot; |
Filipe Manana | 31d11b8 | 2018-05-09 16:01:46 +0100 | [diff] [blame] | 4383 | int ins_nr = 0; |
| 4384 | int start_slot; |
| 4385 | int ret; |
| 4386 | |
| 4387 | if (!(inode->flags & BTRFS_INODE_PREALLOC)) |
| 4388 | return 0; |
| 4389 | |
| 4390 | key.objectid = ino; |
| 4391 | key.type = BTRFS_EXTENT_DATA_KEY; |
| 4392 | key.offset = i_size; |
| 4393 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 4394 | if (ret < 0) |
| 4395 | goto out; |
| 4396 | |
Filipe Manana | f135cea | 2020-04-23 16:30:53 +0100 | [diff] [blame] | 4397 | /* |
| 4398 | * We must check if there is a prealloc extent that starts before the |
| 4399 | * i_size and crosses the i_size boundary. This is to ensure later we |
| 4400 | * truncate down to the end of that extent and not to the i_size, as |
| 4401 | * otherwise we end up losing part of the prealloc extent after a log |
| 4402 | * replay and with an implicit hole if there is another prealloc extent |
| 4403 | * that starts at an offset beyond i_size. |
| 4404 | */ |
| 4405 | ret = btrfs_previous_item(root, path, ino, BTRFS_EXTENT_DATA_KEY); |
| 4406 | if (ret < 0) |
| 4407 | goto out; |
| 4408 | |
| 4409 | if (ret == 0) { |
| 4410 | struct btrfs_file_extent_item *ei; |
| 4411 | |
| 4412 | leaf = path->nodes[0]; |
| 4413 | slot = path->slots[0]; |
| 4414 | ei = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item); |
| 4415 | |
| 4416 | if (btrfs_file_extent_type(leaf, ei) == |
| 4417 | BTRFS_FILE_EXTENT_PREALLOC) { |
| 4418 | u64 extent_end; |
| 4419 | |
| 4420 | btrfs_item_key_to_cpu(leaf, &key, slot); |
| 4421 | extent_end = key.offset + |
| 4422 | btrfs_file_extent_num_bytes(leaf, ei); |
| 4423 | |
| 4424 | if (extent_end > i_size) |
| 4425 | truncate_offset = extent_end; |
| 4426 | } |
| 4427 | } else { |
| 4428 | ret = 0; |
| 4429 | } |
| 4430 | |
Filipe Manana | 31d11b8 | 2018-05-09 16:01:46 +0100 | [diff] [blame] | 4431 | while (true) { |
Filipe Manana | f135cea | 2020-04-23 16:30:53 +0100 | [diff] [blame] | 4432 | leaf = path->nodes[0]; |
| 4433 | slot = path->slots[0]; |
Filipe Manana | 31d11b8 | 2018-05-09 16:01:46 +0100 | [diff] [blame] | 4434 | |
| 4435 | if (slot >= btrfs_header_nritems(leaf)) { |
| 4436 | if (ins_nr > 0) { |
| 4437 | ret = copy_items(trans, inode, dst_path, path, |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4438 | start_slot, ins_nr, 1, 0); |
Filipe Manana | 31d11b8 | 2018-05-09 16:01:46 +0100 | [diff] [blame] | 4439 | if (ret < 0) |
| 4440 | goto out; |
| 4441 | ins_nr = 0; |
| 4442 | } |
| 4443 | ret = btrfs_next_leaf(root, path); |
| 4444 | if (ret < 0) |
| 4445 | goto out; |
| 4446 | if (ret > 0) { |
| 4447 | ret = 0; |
| 4448 | break; |
| 4449 | } |
| 4450 | continue; |
| 4451 | } |
| 4452 | |
| 4453 | btrfs_item_key_to_cpu(leaf, &key, slot); |
| 4454 | if (key.objectid > ino) |
| 4455 | break; |
| 4456 | if (WARN_ON_ONCE(key.objectid < ino) || |
| 4457 | key.type < BTRFS_EXTENT_DATA_KEY || |
| 4458 | key.offset < i_size) { |
| 4459 | path->slots[0]++; |
| 4460 | continue; |
| 4461 | } |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4462 | if (!dropped_extents) { |
Filipe Manana | 31d11b8 | 2018-05-09 16:01:46 +0100 | [diff] [blame] | 4463 | /* |
| 4464 | * Avoid logging extent items logged in past fsync calls |
| 4465 | * and leading to duplicate keys in the log tree. |
| 4466 | */ |
| 4467 | do { |
| 4468 | ret = btrfs_truncate_inode_items(trans, |
| 4469 | root->log_root, |
Nikolay Borisov | 5074339 | 2020-11-02 16:48:55 +0200 | [diff] [blame] | 4470 | inode, truncate_offset, |
Filipe Manana | 0d7d316 | 2021-05-24 11:35:55 +0100 | [diff] [blame] | 4471 | BTRFS_EXTENT_DATA_KEY, |
| 4472 | NULL); |
Filipe Manana | 31d11b8 | 2018-05-09 16:01:46 +0100 | [diff] [blame] | 4473 | } while (ret == -EAGAIN); |
| 4474 | if (ret) |
| 4475 | goto out; |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4476 | dropped_extents = true; |
Filipe Manana | 31d11b8 | 2018-05-09 16:01:46 +0100 | [diff] [blame] | 4477 | } |
| 4478 | if (ins_nr == 0) |
| 4479 | start_slot = slot; |
| 4480 | ins_nr++; |
| 4481 | path->slots[0]++; |
| 4482 | if (!dst_path) { |
| 4483 | dst_path = btrfs_alloc_path(); |
| 4484 | if (!dst_path) { |
| 4485 | ret = -ENOMEM; |
| 4486 | goto out; |
| 4487 | } |
| 4488 | } |
| 4489 | } |
Filipe Manana | 0bc2d3c | 2020-04-21 11:25:31 +0100 | [diff] [blame] | 4490 | if (ins_nr > 0) |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4491 | ret = copy_items(trans, inode, dst_path, path, |
Filipe Manana | 31d11b8 | 2018-05-09 16:01:46 +0100 | [diff] [blame] | 4492 | start_slot, ins_nr, 1, 0); |
Filipe Manana | 31d11b8 | 2018-05-09 16:01:46 +0100 | [diff] [blame] | 4493 | out: |
| 4494 | btrfs_release_path(path); |
| 4495 | btrfs_free_path(dst_path); |
| 4496 | return ret; |
| 4497 | } |
| 4498 | |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4499 | static int btrfs_log_changed_extents(struct btrfs_trans_handle *trans, |
| 4500 | struct btrfs_root *root, |
Nikolay Borisov | 9d12262 | 2017-01-18 00:31:40 +0200 | [diff] [blame] | 4501 | struct btrfs_inode *inode, |
Miao Xie | 827463c | 2014-01-14 20:31:51 +0800 | [diff] [blame] | 4502 | struct btrfs_path *path, |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 4503 | struct btrfs_log_ctx *ctx) |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4504 | { |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 4505 | struct btrfs_ordered_extent *ordered; |
| 4506 | struct btrfs_ordered_extent *tmp; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4507 | struct extent_map *em, *n; |
| 4508 | struct list_head extents; |
Nikolay Borisov | 9d12262 | 2017-01-18 00:31:40 +0200 | [diff] [blame] | 4509 | struct extent_map_tree *tree = &inode->extent_tree; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4510 | int ret = 0; |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 4511 | int num = 0; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4512 | |
| 4513 | INIT_LIST_HEAD(&extents); |
| 4514 | |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4515 | write_lock(&tree->lock); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4516 | |
| 4517 | list_for_each_entry_safe(em, n, &tree->modified_extents, list) { |
| 4518 | list_del_init(&em->list); |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 4519 | /* |
| 4520 | * Just an arbitrary number, this can be really CPU intensive |
| 4521 | * once we start getting a lot of extents, and really once we |
| 4522 | * have a bunch of extents we just want to commit since it will |
| 4523 | * be faster. |
| 4524 | */ |
| 4525 | if (++num > 32768) { |
| 4526 | list_del_init(&tree->modified_extents); |
| 4527 | ret = -EFBIG; |
| 4528 | goto process; |
| 4529 | } |
| 4530 | |
Filipe Manana | 5f96bfb | 2020-11-25 12:19:24 +0000 | [diff] [blame] | 4531 | if (em->generation < trans->transid) |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4532 | continue; |
Josef Bacik | 8c6c592 | 2017-08-29 10:11:39 -0400 | [diff] [blame] | 4533 | |
Filipe Manana | 31d11b8 | 2018-05-09 16:01:46 +0100 | [diff] [blame] | 4534 | /* We log prealloc extents beyond eof later. */ |
| 4535 | if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) && |
| 4536 | em->start >= i_size_read(&inode->vfs_inode)) |
| 4537 | continue; |
| 4538 | |
Josef Bacik | ff44c6e | 2012-09-14 12:59:20 -0400 | [diff] [blame] | 4539 | /* Need a ref to keep it from getting evicted from cache */ |
Elena Reshetova | 490b54d | 2017-03-03 10:55:12 +0200 | [diff] [blame] | 4540 | refcount_inc(&em->refs); |
Josef Bacik | ff44c6e | 2012-09-14 12:59:20 -0400 | [diff] [blame] | 4541 | set_bit(EXTENT_FLAG_LOGGING, &em->flags); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4542 | list_add_tail(&em->list, &extents); |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 4543 | num++; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4544 | } |
| 4545 | |
| 4546 | list_sort(NULL, &extents, extent_cmp); |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 4547 | process: |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4548 | while (!list_empty(&extents)) { |
| 4549 | em = list_entry(extents.next, struct extent_map, list); |
| 4550 | |
| 4551 | list_del_init(&em->list); |
| 4552 | |
| 4553 | /* |
| 4554 | * If we had an error we just need to delete everybody from our |
| 4555 | * private list. |
| 4556 | */ |
Josef Bacik | ff44c6e | 2012-09-14 12:59:20 -0400 | [diff] [blame] | 4557 | if (ret) { |
Josef Bacik | 201a903 | 2013-01-24 12:02:07 -0500 | [diff] [blame] | 4558 | clear_em_logging(tree, em); |
Josef Bacik | ff44c6e | 2012-09-14 12:59:20 -0400 | [diff] [blame] | 4559 | free_extent_map(em); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4560 | continue; |
Josef Bacik | ff44c6e | 2012-09-14 12:59:20 -0400 | [diff] [blame] | 4561 | } |
| 4562 | |
| 4563 | write_unlock(&tree->lock); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4564 | |
Josef Bacik | a2120a4 | 2018-05-23 11:58:35 -0400 | [diff] [blame] | 4565 | ret = log_one_extent(trans, inode, root, em, path, ctx); |
Josef Bacik | ff44c6e | 2012-09-14 12:59:20 -0400 | [diff] [blame] | 4566 | write_lock(&tree->lock); |
Josef Bacik | 201a903 | 2013-01-24 12:02:07 -0500 | [diff] [blame] | 4567 | clear_em_logging(tree, em); |
| 4568 | free_extent_map(em); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4569 | } |
Josef Bacik | ff44c6e | 2012-09-14 12:59:20 -0400 | [diff] [blame] | 4570 | WARN_ON(!list_empty(&extents)); |
| 4571 | write_unlock(&tree->lock); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4572 | |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4573 | btrfs_release_path(path); |
Filipe Manana | 31d11b8 | 2018-05-09 16:01:46 +0100 | [diff] [blame] | 4574 | if (!ret) |
| 4575 | ret = btrfs_log_prealloc_extents(trans, inode, path); |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 4576 | if (ret) |
| 4577 | return ret; |
Filipe Manana | 31d11b8 | 2018-05-09 16:01:46 +0100 | [diff] [blame] | 4578 | |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 4579 | /* |
| 4580 | * We have logged all extents successfully, now make sure the commit of |
| 4581 | * the current transaction waits for the ordered extents to complete |
| 4582 | * before it commits and wipes out the log trees, otherwise we would |
| 4583 | * lose data if an ordered extents completes after the transaction |
| 4584 | * commits and a power failure happens after the transaction commit. |
| 4585 | */ |
| 4586 | list_for_each_entry_safe(ordered, tmp, &ctx->ordered_extents, log_list) { |
| 4587 | list_del_init(&ordered->log_list); |
| 4588 | set_bit(BTRFS_ORDERED_LOGGED, &ordered->flags); |
| 4589 | |
| 4590 | if (!test_bit(BTRFS_ORDERED_COMPLETE, &ordered->flags)) { |
| 4591 | spin_lock_irq(&inode->ordered_tree.lock); |
| 4592 | if (!test_bit(BTRFS_ORDERED_COMPLETE, &ordered->flags)) { |
| 4593 | set_bit(BTRFS_ORDERED_PENDING, &ordered->flags); |
| 4594 | atomic_inc(&trans->transaction->pending_ordered); |
| 4595 | } |
| 4596 | spin_unlock_irq(&inode->ordered_tree.lock); |
| 4597 | } |
| 4598 | btrfs_put_ordered_extent(ordered); |
| 4599 | } |
| 4600 | |
| 4601 | return 0; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4602 | } |
| 4603 | |
Nikolay Borisov | 481b01c | 2017-01-18 00:31:34 +0200 | [diff] [blame] | 4604 | static int logged_inode_size(struct btrfs_root *log, struct btrfs_inode *inode, |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 4605 | struct btrfs_path *path, u64 *size_ret) |
| 4606 | { |
| 4607 | struct btrfs_key key; |
| 4608 | int ret; |
| 4609 | |
Nikolay Borisov | 481b01c | 2017-01-18 00:31:34 +0200 | [diff] [blame] | 4610 | key.objectid = btrfs_ino(inode); |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 4611 | key.type = BTRFS_INODE_ITEM_KEY; |
| 4612 | key.offset = 0; |
| 4613 | |
| 4614 | ret = btrfs_search_slot(NULL, log, &key, path, 0, 0); |
| 4615 | if (ret < 0) { |
| 4616 | return ret; |
| 4617 | } else if (ret > 0) { |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 4618 | *size_ret = 0; |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 4619 | } else { |
| 4620 | struct btrfs_inode_item *item; |
| 4621 | |
| 4622 | item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 4623 | struct btrfs_inode_item); |
| 4624 | *size_ret = btrfs_inode_size(path->nodes[0], item); |
Filipe Manana | bf50411 | 2019-03-04 14:06:12 +0000 | [diff] [blame] | 4625 | /* |
| 4626 | * If the in-memory inode's i_size is smaller then the inode |
| 4627 | * size stored in the btree, return the inode's i_size, so |
| 4628 | * that we get a correct inode size after replaying the log |
| 4629 | * when before a power failure we had a shrinking truncate |
| 4630 | * followed by addition of a new name (rename / new hard link). |
| 4631 | * Otherwise return the inode size from the btree, to avoid |
| 4632 | * data loss when replaying a log due to previously doing a |
| 4633 | * write that expands the inode's size and logging a new name |
| 4634 | * immediately after. |
| 4635 | */ |
| 4636 | if (*size_ret > inode->vfs_inode.i_size) |
| 4637 | *size_ret = inode->vfs_inode.i_size; |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 4638 | } |
| 4639 | |
| 4640 | btrfs_release_path(path); |
| 4641 | return 0; |
| 4642 | } |
| 4643 | |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 4644 | /* |
| 4645 | * At the moment we always log all xattrs. This is to figure out at log replay |
| 4646 | * time which xattrs must have their deletion replayed. If a xattr is missing |
| 4647 | * in the log tree and exists in the fs/subvol tree, we delete it. This is |
| 4648 | * because if a xattr is deleted, the inode is fsynced and a power failure |
| 4649 | * happens, causing the log to be replayed the next time the fs is mounted, |
| 4650 | * we want the xattr to not exist anymore (same behaviour as other filesystems |
| 4651 | * with a journal, ext3/4, xfs, f2fs, etc). |
| 4652 | */ |
| 4653 | static int btrfs_log_all_xattrs(struct btrfs_trans_handle *trans, |
| 4654 | struct btrfs_root *root, |
Nikolay Borisov | 1a93c36 | 2017-01-18 00:31:37 +0200 | [diff] [blame] | 4655 | struct btrfs_inode *inode, |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 4656 | struct btrfs_path *path, |
| 4657 | struct btrfs_path *dst_path) |
| 4658 | { |
| 4659 | int ret; |
| 4660 | struct btrfs_key key; |
Nikolay Borisov | 1a93c36 | 2017-01-18 00:31:37 +0200 | [diff] [blame] | 4661 | const u64 ino = btrfs_ino(inode); |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 4662 | int ins_nr = 0; |
| 4663 | int start_slot = 0; |
Filipe Manana | f2f121a | 2020-11-13 11:21:49 +0000 | [diff] [blame] | 4664 | bool found_xattrs = false; |
| 4665 | |
| 4666 | if (test_bit(BTRFS_INODE_NO_XATTRS, &inode->runtime_flags)) |
| 4667 | return 0; |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 4668 | |
| 4669 | key.objectid = ino; |
| 4670 | key.type = BTRFS_XATTR_ITEM_KEY; |
| 4671 | key.offset = 0; |
| 4672 | |
| 4673 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 4674 | if (ret < 0) |
| 4675 | return ret; |
| 4676 | |
| 4677 | while (true) { |
| 4678 | int slot = path->slots[0]; |
| 4679 | struct extent_buffer *leaf = path->nodes[0]; |
| 4680 | int nritems = btrfs_header_nritems(leaf); |
| 4681 | |
| 4682 | if (slot >= nritems) { |
| 4683 | if (ins_nr > 0) { |
Nikolay Borisov | 1a93c36 | 2017-01-18 00:31:37 +0200 | [diff] [blame] | 4684 | ret = copy_items(trans, inode, dst_path, path, |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4685 | start_slot, ins_nr, 1, 0); |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 4686 | if (ret < 0) |
| 4687 | return ret; |
| 4688 | ins_nr = 0; |
| 4689 | } |
| 4690 | ret = btrfs_next_leaf(root, path); |
| 4691 | if (ret < 0) |
| 4692 | return ret; |
| 4693 | else if (ret > 0) |
| 4694 | break; |
| 4695 | continue; |
| 4696 | } |
| 4697 | |
| 4698 | btrfs_item_key_to_cpu(leaf, &key, slot); |
| 4699 | if (key.objectid != ino || key.type != BTRFS_XATTR_ITEM_KEY) |
| 4700 | break; |
| 4701 | |
| 4702 | if (ins_nr == 0) |
| 4703 | start_slot = slot; |
| 4704 | ins_nr++; |
| 4705 | path->slots[0]++; |
Filipe Manana | f2f121a | 2020-11-13 11:21:49 +0000 | [diff] [blame] | 4706 | found_xattrs = true; |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 4707 | cond_resched(); |
| 4708 | } |
| 4709 | if (ins_nr > 0) { |
Nikolay Borisov | 1a93c36 | 2017-01-18 00:31:37 +0200 | [diff] [blame] | 4710 | ret = copy_items(trans, inode, dst_path, path, |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4711 | start_slot, ins_nr, 1, 0); |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 4712 | if (ret < 0) |
| 4713 | return ret; |
| 4714 | } |
| 4715 | |
Filipe Manana | f2f121a | 2020-11-13 11:21:49 +0000 | [diff] [blame] | 4716 | if (!found_xattrs) |
| 4717 | set_bit(BTRFS_INODE_NO_XATTRS, &inode->runtime_flags); |
| 4718 | |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 4719 | return 0; |
| 4720 | } |
| 4721 | |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4722 | /* |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4723 | * When using the NO_HOLES feature if we punched a hole that causes the |
| 4724 | * deletion of entire leafs or all the extent items of the first leaf (the one |
| 4725 | * that contains the inode item and references) we may end up not processing |
| 4726 | * any extents, because there are no leafs with a generation matching the |
| 4727 | * current transaction that have extent items for our inode. So we need to find |
| 4728 | * if any holes exist and then log them. We also need to log holes after any |
| 4729 | * truncate operation that changes the inode's size. |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4730 | */ |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4731 | static int btrfs_log_holes(struct btrfs_trans_handle *trans, |
| 4732 | struct btrfs_root *root, |
| 4733 | struct btrfs_inode *inode, |
Filipe Manana | 7af5974 | 2020-04-07 11:37:44 +0100 | [diff] [blame] | 4734 | struct btrfs_path *path) |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4735 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4736 | struct btrfs_fs_info *fs_info = root->fs_info; |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4737 | struct btrfs_key key; |
Nikolay Borisov | a0308dd | 2017-01-18 00:31:38 +0200 | [diff] [blame] | 4738 | const u64 ino = btrfs_ino(inode); |
| 4739 | const u64 i_size = i_size_read(&inode->vfs_inode); |
Filipe Manana | 7af5974 | 2020-04-07 11:37:44 +0100 | [diff] [blame] | 4740 | u64 prev_extent_end = 0; |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4741 | int ret; |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4742 | |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4743 | if (!btrfs_fs_incompat(fs_info, NO_HOLES) || i_size == 0) |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4744 | return 0; |
| 4745 | |
| 4746 | key.objectid = ino; |
| 4747 | key.type = BTRFS_EXTENT_DATA_KEY; |
Filipe Manana | 7af5974 | 2020-04-07 11:37:44 +0100 | [diff] [blame] | 4748 | key.offset = 0; |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4749 | |
| 4750 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4751 | if (ret < 0) |
| 4752 | return ret; |
| 4753 | |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4754 | while (true) { |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4755 | struct extent_buffer *leaf = path->nodes[0]; |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4756 | |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4757 | if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) { |
| 4758 | ret = btrfs_next_leaf(root, path); |
| 4759 | if (ret < 0) |
| 4760 | return ret; |
| 4761 | if (ret > 0) { |
| 4762 | ret = 0; |
| 4763 | break; |
| 4764 | } |
| 4765 | leaf = path->nodes[0]; |
| 4766 | } |
| 4767 | |
| 4768 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 4769 | if (key.objectid != ino || key.type != BTRFS_EXTENT_DATA_KEY) |
| 4770 | break; |
| 4771 | |
| 4772 | /* We have a hole, log it. */ |
| 4773 | if (prev_extent_end < key.offset) { |
Filipe Manana | 7af5974 | 2020-04-07 11:37:44 +0100 | [diff] [blame] | 4774 | const u64 hole_len = key.offset - prev_extent_end; |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4775 | |
| 4776 | /* |
| 4777 | * Release the path to avoid deadlocks with other code |
| 4778 | * paths that search the root while holding locks on |
| 4779 | * leafs from the log root. |
| 4780 | */ |
| 4781 | btrfs_release_path(path); |
| 4782 | ret = btrfs_insert_file_extent(trans, root->log_root, |
| 4783 | ino, prev_extent_end, 0, |
| 4784 | 0, hole_len, 0, hole_len, |
| 4785 | 0, 0, 0); |
| 4786 | if (ret < 0) |
| 4787 | return ret; |
| 4788 | |
| 4789 | /* |
| 4790 | * Search for the same key again in the root. Since it's |
| 4791 | * an extent item and we are holding the inode lock, the |
| 4792 | * key must still exist. If it doesn't just emit warning |
| 4793 | * and return an error to fall back to a transaction |
| 4794 | * commit. |
| 4795 | */ |
| 4796 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 4797 | if (ret < 0) |
| 4798 | return ret; |
| 4799 | if (WARN_ON(ret > 0)) |
| 4800 | return -ENOENT; |
| 4801 | leaf = path->nodes[0]; |
| 4802 | } |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4803 | |
Filipe Manana | 7af5974 | 2020-04-07 11:37:44 +0100 | [diff] [blame] | 4804 | prev_extent_end = btrfs_file_extent_end(path); |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4805 | path->slots[0]++; |
| 4806 | cond_resched(); |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4807 | } |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4808 | |
Filipe Manana | 7af5974 | 2020-04-07 11:37:44 +0100 | [diff] [blame] | 4809 | if (prev_extent_end < i_size) { |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4810 | u64 hole_len; |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4811 | |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4812 | btrfs_release_path(path); |
Filipe Manana | 7af5974 | 2020-04-07 11:37:44 +0100 | [diff] [blame] | 4813 | hole_len = ALIGN(i_size - prev_extent_end, fs_info->sectorsize); |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4814 | ret = btrfs_insert_file_extent(trans, root->log_root, |
| 4815 | ino, prev_extent_end, 0, 0, |
| 4816 | hole_len, 0, hole_len, |
| 4817 | 0, 0, 0); |
| 4818 | if (ret < 0) |
| 4819 | return ret; |
| 4820 | } |
| 4821 | |
| 4822 | return 0; |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4823 | } |
| 4824 | |
Filipe Manana | 56f23fd | 2016-03-30 23:37:21 +0100 | [diff] [blame] | 4825 | /* |
| 4826 | * When we are logging a new inode X, check if it doesn't have a reference that |
| 4827 | * matches the reference from some other inode Y created in a past transaction |
| 4828 | * and that was renamed in the current transaction. If we don't do this, then at |
| 4829 | * log replay time we can lose inode Y (and all its files if it's a directory): |
| 4830 | * |
| 4831 | * mkdir /mnt/x |
| 4832 | * echo "hello world" > /mnt/x/foobar |
| 4833 | * sync |
| 4834 | * mv /mnt/x /mnt/y |
| 4835 | * mkdir /mnt/x # or touch /mnt/x |
| 4836 | * xfs_io -c fsync /mnt/x |
| 4837 | * <power fail> |
| 4838 | * mount fs, trigger log replay |
| 4839 | * |
| 4840 | * After the log replay procedure, we would lose the first directory and all its |
| 4841 | * files (file foobar). |
| 4842 | * For the case where inode Y is not a directory we simply end up losing it: |
| 4843 | * |
| 4844 | * echo "123" > /mnt/foo |
| 4845 | * sync |
| 4846 | * mv /mnt/foo /mnt/bar |
| 4847 | * echo "abc" > /mnt/foo |
| 4848 | * xfs_io -c fsync /mnt/foo |
| 4849 | * <power fail> |
| 4850 | * |
| 4851 | * We also need this for cases where a snapshot entry is replaced by some other |
| 4852 | * entry (file or directory) otherwise we end up with an unreplayable log due to |
| 4853 | * attempts to delete the snapshot entry (entry of type BTRFS_ROOT_ITEM_KEY) as |
| 4854 | * if it were a regular entry: |
| 4855 | * |
| 4856 | * mkdir /mnt/x |
| 4857 | * btrfs subvolume snapshot /mnt /mnt/x/snap |
| 4858 | * btrfs subvolume delete /mnt/x/snap |
| 4859 | * rmdir /mnt/x |
| 4860 | * mkdir /mnt/x |
| 4861 | * fsync /mnt/x or fsync some new file inside it |
| 4862 | * <power fail> |
| 4863 | * |
| 4864 | * The snapshot delete, rmdir of x, mkdir of a new x and the fsync all happen in |
| 4865 | * the same transaction. |
| 4866 | */ |
| 4867 | static int btrfs_check_ref_name_override(struct extent_buffer *eb, |
| 4868 | const int slot, |
| 4869 | const struct btrfs_key *key, |
Nikolay Borisov | 4791c8f | 2017-01-18 00:31:35 +0200 | [diff] [blame] | 4870 | struct btrfs_inode *inode, |
Filipe Manana | a3baaf0 | 2019-02-13 12:14:09 +0000 | [diff] [blame] | 4871 | u64 *other_ino, u64 *other_parent) |
Filipe Manana | 56f23fd | 2016-03-30 23:37:21 +0100 | [diff] [blame] | 4872 | { |
| 4873 | int ret; |
| 4874 | struct btrfs_path *search_path; |
| 4875 | char *name = NULL; |
| 4876 | u32 name_len = 0; |
| 4877 | u32 item_size = btrfs_item_size_nr(eb, slot); |
| 4878 | u32 cur_offset = 0; |
| 4879 | unsigned long ptr = btrfs_item_ptr_offset(eb, slot); |
| 4880 | |
| 4881 | search_path = btrfs_alloc_path(); |
| 4882 | if (!search_path) |
| 4883 | return -ENOMEM; |
| 4884 | search_path->search_commit_root = 1; |
| 4885 | search_path->skip_locking = 1; |
| 4886 | |
| 4887 | while (cur_offset < item_size) { |
| 4888 | u64 parent; |
| 4889 | u32 this_name_len; |
| 4890 | u32 this_len; |
| 4891 | unsigned long name_ptr; |
| 4892 | struct btrfs_dir_item *di; |
| 4893 | |
| 4894 | if (key->type == BTRFS_INODE_REF_KEY) { |
| 4895 | struct btrfs_inode_ref *iref; |
| 4896 | |
| 4897 | iref = (struct btrfs_inode_ref *)(ptr + cur_offset); |
| 4898 | parent = key->offset; |
| 4899 | this_name_len = btrfs_inode_ref_name_len(eb, iref); |
| 4900 | name_ptr = (unsigned long)(iref + 1); |
| 4901 | this_len = sizeof(*iref) + this_name_len; |
| 4902 | } else { |
| 4903 | struct btrfs_inode_extref *extref; |
| 4904 | |
| 4905 | extref = (struct btrfs_inode_extref *)(ptr + |
| 4906 | cur_offset); |
| 4907 | parent = btrfs_inode_extref_parent(eb, extref); |
| 4908 | this_name_len = btrfs_inode_extref_name_len(eb, extref); |
| 4909 | name_ptr = (unsigned long)&extref->name; |
| 4910 | this_len = sizeof(*extref) + this_name_len; |
| 4911 | } |
| 4912 | |
| 4913 | if (this_name_len > name_len) { |
| 4914 | char *new_name; |
| 4915 | |
| 4916 | new_name = krealloc(name, this_name_len, GFP_NOFS); |
| 4917 | if (!new_name) { |
| 4918 | ret = -ENOMEM; |
| 4919 | goto out; |
| 4920 | } |
| 4921 | name_len = this_name_len; |
| 4922 | name = new_name; |
| 4923 | } |
| 4924 | |
| 4925 | read_extent_buffer(eb, name, name_ptr, this_name_len); |
Nikolay Borisov | 4791c8f | 2017-01-18 00:31:35 +0200 | [diff] [blame] | 4926 | di = btrfs_lookup_dir_item(NULL, inode->root, search_path, |
| 4927 | parent, name, this_name_len, 0); |
Filipe Manana | 56f23fd | 2016-03-30 23:37:21 +0100 | [diff] [blame] | 4928 | if (di && !IS_ERR(di)) { |
Filipe Manana | 44f714d | 2016-06-06 16:11:13 +0100 | [diff] [blame] | 4929 | struct btrfs_key di_key; |
| 4930 | |
| 4931 | btrfs_dir_item_key_to_cpu(search_path->nodes[0], |
| 4932 | di, &di_key); |
| 4933 | if (di_key.type == BTRFS_INODE_ITEM_KEY) { |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 4934 | if (di_key.objectid != key->objectid) { |
| 4935 | ret = 1; |
| 4936 | *other_ino = di_key.objectid; |
Filipe Manana | a3baaf0 | 2019-02-13 12:14:09 +0000 | [diff] [blame] | 4937 | *other_parent = parent; |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 4938 | } else { |
| 4939 | ret = 0; |
| 4940 | } |
Filipe Manana | 44f714d | 2016-06-06 16:11:13 +0100 | [diff] [blame] | 4941 | } else { |
| 4942 | ret = -EAGAIN; |
| 4943 | } |
Filipe Manana | 56f23fd | 2016-03-30 23:37:21 +0100 | [diff] [blame] | 4944 | goto out; |
| 4945 | } else if (IS_ERR(di)) { |
| 4946 | ret = PTR_ERR(di); |
| 4947 | goto out; |
| 4948 | } |
| 4949 | btrfs_release_path(search_path); |
| 4950 | |
| 4951 | cur_offset += this_len; |
| 4952 | } |
| 4953 | ret = 0; |
| 4954 | out: |
| 4955 | btrfs_free_path(search_path); |
| 4956 | kfree(name); |
| 4957 | return ret; |
| 4958 | } |
| 4959 | |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 4960 | struct btrfs_ino_list { |
| 4961 | u64 ino; |
Filipe Manana | a3baaf0 | 2019-02-13 12:14:09 +0000 | [diff] [blame] | 4962 | u64 parent; |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 4963 | struct list_head list; |
| 4964 | }; |
| 4965 | |
| 4966 | static int log_conflicting_inodes(struct btrfs_trans_handle *trans, |
| 4967 | struct btrfs_root *root, |
| 4968 | struct btrfs_path *path, |
| 4969 | struct btrfs_log_ctx *ctx, |
Filipe Manana | a3baaf0 | 2019-02-13 12:14:09 +0000 | [diff] [blame] | 4970 | u64 ino, u64 parent) |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 4971 | { |
| 4972 | struct btrfs_ino_list *ino_elem; |
| 4973 | LIST_HEAD(inode_list); |
| 4974 | int ret = 0; |
| 4975 | |
| 4976 | ino_elem = kmalloc(sizeof(*ino_elem), GFP_NOFS); |
| 4977 | if (!ino_elem) |
| 4978 | return -ENOMEM; |
| 4979 | ino_elem->ino = ino; |
Filipe Manana | a3baaf0 | 2019-02-13 12:14:09 +0000 | [diff] [blame] | 4980 | ino_elem->parent = parent; |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 4981 | list_add_tail(&ino_elem->list, &inode_list); |
| 4982 | |
| 4983 | while (!list_empty(&inode_list)) { |
| 4984 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 4985 | struct btrfs_key key; |
| 4986 | struct inode *inode; |
| 4987 | |
| 4988 | ino_elem = list_first_entry(&inode_list, struct btrfs_ino_list, |
| 4989 | list); |
| 4990 | ino = ino_elem->ino; |
Filipe Manana | a3baaf0 | 2019-02-13 12:14:09 +0000 | [diff] [blame] | 4991 | parent = ino_elem->parent; |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 4992 | list_del(&ino_elem->list); |
| 4993 | kfree(ino_elem); |
| 4994 | if (ret) |
| 4995 | continue; |
| 4996 | |
| 4997 | btrfs_release_path(path); |
| 4998 | |
David Sterba | 0202e83 | 2020-05-15 19:35:59 +0200 | [diff] [blame] | 4999 | inode = btrfs_iget(fs_info->sb, ino, root); |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 5000 | /* |
| 5001 | * If the other inode that had a conflicting dir entry was |
Filipe Manana | a3baaf0 | 2019-02-13 12:14:09 +0000 | [diff] [blame] | 5002 | * deleted in the current transaction, we need to log its parent |
| 5003 | * directory. |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 5004 | */ |
| 5005 | if (IS_ERR(inode)) { |
| 5006 | ret = PTR_ERR(inode); |
Filipe Manana | a3baaf0 | 2019-02-13 12:14:09 +0000 | [diff] [blame] | 5007 | if (ret == -ENOENT) { |
David Sterba | 0202e83 | 2020-05-15 19:35:59 +0200 | [diff] [blame] | 5008 | inode = btrfs_iget(fs_info->sb, parent, root); |
Filipe Manana | a3baaf0 | 2019-02-13 12:14:09 +0000 | [diff] [blame] | 5009 | if (IS_ERR(inode)) { |
| 5010 | ret = PTR_ERR(inode); |
| 5011 | } else { |
| 5012 | ret = btrfs_log_inode(trans, root, |
| 5013 | BTRFS_I(inode), |
| 5014 | LOG_OTHER_INODE_ALL, |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 5015 | ctx); |
Filipe Manana | 410f954 | 2019-09-10 15:26:49 +0100 | [diff] [blame] | 5016 | btrfs_add_delayed_iput(inode); |
Filipe Manana | a3baaf0 | 2019-02-13 12:14:09 +0000 | [diff] [blame] | 5017 | } |
| 5018 | } |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 5019 | continue; |
| 5020 | } |
| 5021 | /* |
Filipe Manana | b5e4ff9 | 2020-01-15 13:21:35 +0000 | [diff] [blame] | 5022 | * If the inode was already logged skip it - otherwise we can |
| 5023 | * hit an infinite loop. Example: |
| 5024 | * |
| 5025 | * From the commit root (previous transaction) we have the |
| 5026 | * following inodes: |
| 5027 | * |
| 5028 | * inode 257 a directory |
| 5029 | * inode 258 with references "zz" and "zz_link" on inode 257 |
| 5030 | * inode 259 with reference "a" on inode 257 |
| 5031 | * |
| 5032 | * And in the current (uncommitted) transaction we have: |
| 5033 | * |
| 5034 | * inode 257 a directory, unchanged |
| 5035 | * inode 258 with references "a" and "a2" on inode 257 |
| 5036 | * inode 259 with reference "zz_link" on inode 257 |
| 5037 | * inode 261 with reference "zz" on inode 257 |
| 5038 | * |
| 5039 | * When logging inode 261 the following infinite loop could |
| 5040 | * happen if we don't skip already logged inodes: |
| 5041 | * |
| 5042 | * - we detect inode 258 as a conflicting inode, with inode 261 |
| 5043 | * on reference "zz", and log it; |
| 5044 | * |
| 5045 | * - we detect inode 259 as a conflicting inode, with inode 258 |
| 5046 | * on reference "a", and log it; |
| 5047 | * |
| 5048 | * - we detect inode 258 as a conflicting inode, with inode 259 |
| 5049 | * on reference "zz_link", and log it - again! After this we |
| 5050 | * repeat the above steps forever. |
| 5051 | */ |
| 5052 | spin_lock(&BTRFS_I(inode)->lock); |
| 5053 | /* |
| 5054 | * Check the inode's logged_trans only instead of |
| 5055 | * btrfs_inode_in_log(). This is because the last_log_commit of |
| 5056 | * the inode is not updated when we only log that it exists and |
Randy Dunlap | 260db43 | 2020-08-04 19:48:34 -0700 | [diff] [blame] | 5057 | * it has the full sync bit set (see btrfs_log_inode()). |
Filipe Manana | b5e4ff9 | 2020-01-15 13:21:35 +0000 | [diff] [blame] | 5058 | */ |
| 5059 | if (BTRFS_I(inode)->logged_trans == trans->transid) { |
| 5060 | spin_unlock(&BTRFS_I(inode)->lock); |
| 5061 | btrfs_add_delayed_iput(inode); |
| 5062 | continue; |
| 5063 | } |
| 5064 | spin_unlock(&BTRFS_I(inode)->lock); |
| 5065 | /* |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 5066 | * We are safe logging the other inode without acquiring its |
| 5067 | * lock as long as we log with the LOG_INODE_EXISTS mode. We |
| 5068 | * are safe against concurrent renames of the other inode as |
| 5069 | * well because during a rename we pin the log and update the |
| 5070 | * log with the new name before we unpin it. |
| 5071 | */ |
| 5072 | ret = btrfs_log_inode(trans, root, BTRFS_I(inode), |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 5073 | LOG_OTHER_INODE, ctx); |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 5074 | if (ret) { |
Filipe Manana | 410f954 | 2019-09-10 15:26:49 +0100 | [diff] [blame] | 5075 | btrfs_add_delayed_iput(inode); |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 5076 | continue; |
| 5077 | } |
| 5078 | |
| 5079 | key.objectid = ino; |
| 5080 | key.type = BTRFS_INODE_REF_KEY; |
| 5081 | key.offset = 0; |
| 5082 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 5083 | if (ret < 0) { |
Filipe Manana | 410f954 | 2019-09-10 15:26:49 +0100 | [diff] [blame] | 5084 | btrfs_add_delayed_iput(inode); |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 5085 | continue; |
| 5086 | } |
| 5087 | |
| 5088 | while (true) { |
| 5089 | struct extent_buffer *leaf = path->nodes[0]; |
| 5090 | int slot = path->slots[0]; |
| 5091 | u64 other_ino = 0; |
Filipe Manana | a3baaf0 | 2019-02-13 12:14:09 +0000 | [diff] [blame] | 5092 | u64 other_parent = 0; |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 5093 | |
| 5094 | if (slot >= btrfs_header_nritems(leaf)) { |
| 5095 | ret = btrfs_next_leaf(root, path); |
| 5096 | if (ret < 0) { |
| 5097 | break; |
| 5098 | } else if (ret > 0) { |
| 5099 | ret = 0; |
| 5100 | break; |
| 5101 | } |
| 5102 | continue; |
| 5103 | } |
| 5104 | |
| 5105 | btrfs_item_key_to_cpu(leaf, &key, slot); |
| 5106 | if (key.objectid != ino || |
| 5107 | (key.type != BTRFS_INODE_REF_KEY && |
| 5108 | key.type != BTRFS_INODE_EXTREF_KEY)) { |
| 5109 | ret = 0; |
| 5110 | break; |
| 5111 | } |
| 5112 | |
| 5113 | ret = btrfs_check_ref_name_override(leaf, slot, &key, |
Filipe Manana | a3baaf0 | 2019-02-13 12:14:09 +0000 | [diff] [blame] | 5114 | BTRFS_I(inode), &other_ino, |
| 5115 | &other_parent); |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 5116 | if (ret < 0) |
| 5117 | break; |
| 5118 | if (ret > 0) { |
| 5119 | ino_elem = kmalloc(sizeof(*ino_elem), GFP_NOFS); |
| 5120 | if (!ino_elem) { |
| 5121 | ret = -ENOMEM; |
| 5122 | break; |
| 5123 | } |
| 5124 | ino_elem->ino = other_ino; |
Filipe Manana | a3baaf0 | 2019-02-13 12:14:09 +0000 | [diff] [blame] | 5125 | ino_elem->parent = other_parent; |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 5126 | list_add_tail(&ino_elem->list, &inode_list); |
| 5127 | ret = 0; |
| 5128 | } |
| 5129 | path->slots[0]++; |
| 5130 | } |
Filipe Manana | 410f954 | 2019-09-10 15:26:49 +0100 | [diff] [blame] | 5131 | btrfs_add_delayed_iput(inode); |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 5132 | } |
| 5133 | |
| 5134 | return ret; |
| 5135 | } |
| 5136 | |
Filipe Manana | da44700 | 2020-03-09 12:41:07 +0000 | [diff] [blame] | 5137 | static int copy_inode_items_to_log(struct btrfs_trans_handle *trans, |
| 5138 | struct btrfs_inode *inode, |
| 5139 | struct btrfs_key *min_key, |
| 5140 | const struct btrfs_key *max_key, |
| 5141 | struct btrfs_path *path, |
| 5142 | struct btrfs_path *dst_path, |
| 5143 | const u64 logged_isize, |
| 5144 | const bool recursive_logging, |
| 5145 | const int inode_only, |
| 5146 | struct btrfs_log_ctx *ctx, |
| 5147 | bool *need_log_inode_item) |
| 5148 | { |
| 5149 | struct btrfs_root *root = inode->root; |
| 5150 | int ins_start_slot = 0; |
| 5151 | int ins_nr = 0; |
| 5152 | int ret; |
| 5153 | |
| 5154 | while (1) { |
| 5155 | ret = btrfs_search_forward(root, min_key, path, trans->transid); |
| 5156 | if (ret < 0) |
| 5157 | return ret; |
| 5158 | if (ret > 0) { |
| 5159 | ret = 0; |
| 5160 | break; |
| 5161 | } |
| 5162 | again: |
| 5163 | /* Note, ins_nr might be > 0 here, cleanup outside the loop */ |
| 5164 | if (min_key->objectid != max_key->objectid) |
| 5165 | break; |
| 5166 | if (min_key->type > max_key->type) |
| 5167 | break; |
| 5168 | |
| 5169 | if (min_key->type == BTRFS_INODE_ITEM_KEY) |
| 5170 | *need_log_inode_item = false; |
| 5171 | |
| 5172 | if ((min_key->type == BTRFS_INODE_REF_KEY || |
| 5173 | min_key->type == BTRFS_INODE_EXTREF_KEY) && |
| 5174 | inode->generation == trans->transid && |
| 5175 | !recursive_logging) { |
| 5176 | u64 other_ino = 0; |
| 5177 | u64 other_parent = 0; |
| 5178 | |
| 5179 | ret = btrfs_check_ref_name_override(path->nodes[0], |
| 5180 | path->slots[0], min_key, inode, |
| 5181 | &other_ino, &other_parent); |
| 5182 | if (ret < 0) { |
| 5183 | return ret; |
| 5184 | } else if (ret > 0 && ctx && |
| 5185 | other_ino != btrfs_ino(BTRFS_I(ctx->inode))) { |
| 5186 | if (ins_nr > 0) { |
| 5187 | ins_nr++; |
| 5188 | } else { |
| 5189 | ins_nr = 1; |
| 5190 | ins_start_slot = path->slots[0]; |
| 5191 | } |
| 5192 | ret = copy_items(trans, inode, dst_path, path, |
| 5193 | ins_start_slot, ins_nr, |
| 5194 | inode_only, logged_isize); |
| 5195 | if (ret < 0) |
| 5196 | return ret; |
| 5197 | ins_nr = 0; |
| 5198 | |
| 5199 | ret = log_conflicting_inodes(trans, root, path, |
| 5200 | ctx, other_ino, other_parent); |
| 5201 | if (ret) |
| 5202 | return ret; |
| 5203 | btrfs_release_path(path); |
| 5204 | goto next_key; |
| 5205 | } |
| 5206 | } |
| 5207 | |
| 5208 | /* Skip xattrs, we log them later with btrfs_log_all_xattrs() */ |
| 5209 | if (min_key->type == BTRFS_XATTR_ITEM_KEY) { |
| 5210 | if (ins_nr == 0) |
| 5211 | goto next_slot; |
| 5212 | ret = copy_items(trans, inode, dst_path, path, |
| 5213 | ins_start_slot, |
| 5214 | ins_nr, inode_only, logged_isize); |
| 5215 | if (ret < 0) |
| 5216 | return ret; |
| 5217 | ins_nr = 0; |
| 5218 | goto next_slot; |
| 5219 | } |
| 5220 | |
| 5221 | if (ins_nr && ins_start_slot + ins_nr == path->slots[0]) { |
| 5222 | ins_nr++; |
| 5223 | goto next_slot; |
| 5224 | } else if (!ins_nr) { |
| 5225 | ins_start_slot = path->slots[0]; |
| 5226 | ins_nr = 1; |
| 5227 | goto next_slot; |
| 5228 | } |
| 5229 | |
| 5230 | ret = copy_items(trans, inode, dst_path, path, ins_start_slot, |
| 5231 | ins_nr, inode_only, logged_isize); |
| 5232 | if (ret < 0) |
| 5233 | return ret; |
| 5234 | ins_nr = 1; |
| 5235 | ins_start_slot = path->slots[0]; |
| 5236 | next_slot: |
| 5237 | path->slots[0]++; |
| 5238 | if (path->slots[0] < btrfs_header_nritems(path->nodes[0])) { |
| 5239 | btrfs_item_key_to_cpu(path->nodes[0], min_key, |
| 5240 | path->slots[0]); |
| 5241 | goto again; |
| 5242 | } |
| 5243 | if (ins_nr) { |
| 5244 | ret = copy_items(trans, inode, dst_path, path, |
| 5245 | ins_start_slot, ins_nr, inode_only, |
| 5246 | logged_isize); |
| 5247 | if (ret < 0) |
| 5248 | return ret; |
| 5249 | ins_nr = 0; |
| 5250 | } |
| 5251 | btrfs_release_path(path); |
| 5252 | next_key: |
| 5253 | if (min_key->offset < (u64)-1) { |
| 5254 | min_key->offset++; |
| 5255 | } else if (min_key->type < max_key->type) { |
| 5256 | min_key->type++; |
| 5257 | min_key->offset = 0; |
| 5258 | } else { |
| 5259 | break; |
| 5260 | } |
| 5261 | } |
| 5262 | if (ins_nr) |
| 5263 | ret = copy_items(trans, inode, dst_path, path, ins_start_slot, |
| 5264 | ins_nr, inode_only, logged_isize); |
| 5265 | |
| 5266 | return ret; |
| 5267 | } |
| 5268 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5269 | /* log a single inode in the tree log. |
| 5270 | * At least one parent directory for this inode must exist in the tree |
| 5271 | * or be logged already. |
| 5272 | * |
| 5273 | * Any items from this inode changed by the current transaction are copied |
| 5274 | * to the log tree. An extra reference is taken on any extents in this |
| 5275 | * file, allowing us to avoid a whole pile of corner cases around logging |
| 5276 | * blocks that have been removed from the tree. |
| 5277 | * |
| 5278 | * See LOG_INODE_ALL and related defines for a description of what inode_only |
| 5279 | * does. |
| 5280 | * |
| 5281 | * This handles both files and directories. |
| 5282 | */ |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5283 | static int btrfs_log_inode(struct btrfs_trans_handle *trans, |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5284 | struct btrfs_root *root, struct btrfs_inode *inode, |
Filipe Manana | 49dae1b | 2014-09-06 22:34:39 +0100 | [diff] [blame] | 5285 | int inode_only, |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 5286 | struct btrfs_log_ctx *ctx) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5287 | { |
| 5288 | struct btrfs_path *path; |
| 5289 | struct btrfs_path *dst_path; |
| 5290 | struct btrfs_key min_key; |
| 5291 | struct btrfs_key max_key; |
| 5292 | struct btrfs_root *log = root->log_root; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5293 | int err = 0; |
Filipe Manana | 8c8648d | 2020-07-02 12:31:59 +0100 | [diff] [blame] | 5294 | int ret = 0; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 5295 | bool fast_search = false; |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5296 | u64 ino = btrfs_ino(inode); |
| 5297 | struct extent_map_tree *em_tree = &inode->extent_tree; |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 5298 | u64 logged_isize = 0; |
Filipe Manana | e4545de | 2015-06-17 12:49:23 +0100 | [diff] [blame] | 5299 | bool need_log_inode_item = true; |
Filipe Manana | 9a8fca6 | 2018-05-11 16:42:42 +0100 | [diff] [blame] | 5300 | bool xattrs_logged = false; |
Filipe Manana | a3baaf0 | 2019-02-13 12:14:09 +0000 | [diff] [blame] | 5301 | bool recursive_logging = false; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5302 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5303 | path = btrfs_alloc_path(); |
Tsutomu Itoh | 5df6708 | 2011-02-01 09:17:35 +0000 | [diff] [blame] | 5304 | if (!path) |
| 5305 | return -ENOMEM; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5306 | dst_path = btrfs_alloc_path(); |
Tsutomu Itoh | 5df6708 | 2011-02-01 09:17:35 +0000 | [diff] [blame] | 5307 | if (!dst_path) { |
| 5308 | btrfs_free_path(path); |
| 5309 | return -ENOMEM; |
| 5310 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5311 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 5312 | min_key.objectid = ino; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5313 | min_key.type = BTRFS_INODE_ITEM_KEY; |
| 5314 | min_key.offset = 0; |
| 5315 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 5316 | max_key.objectid = ino; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5317 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5318 | |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 5319 | /* today the code can only do partial logging of directories */ |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5320 | if (S_ISDIR(inode->vfs_inode.i_mode) || |
Miao Xie | 5269b67 | 2012-11-01 07:35:23 +0000 | [diff] [blame] | 5321 | (!test_bit(BTRFS_INODE_NEEDS_FULL_SYNC, |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5322 | &inode->runtime_flags) && |
Liu Bo | 781feef | 2016-11-30 16:20:25 -0800 | [diff] [blame] | 5323 | inode_only >= LOG_INODE_EXISTS)) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5324 | max_key.type = BTRFS_XATTR_ITEM_KEY; |
| 5325 | else |
| 5326 | max_key.type = (u8)-1; |
| 5327 | max_key.offset = (u64)-1; |
| 5328 | |
Filipe Manana | 2c2c452 | 2015-01-13 16:40:04 +0000 | [diff] [blame] | 5329 | /* |
Filipe Manana | 5aa7d1a | 2020-07-02 12:32:20 +0100 | [diff] [blame] | 5330 | * Only run delayed items if we are a directory. We want to make sure |
| 5331 | * all directory indexes hit the fs/subvolume tree so we can find them |
| 5332 | * and figure out which index ranges have to be logged. |
| 5333 | * |
Filipe Manana | 8c8648d | 2020-07-02 12:31:59 +0100 | [diff] [blame] | 5334 | * Otherwise commit the delayed inode only if the full sync flag is set, |
| 5335 | * as we want to make sure an up to date version is in the subvolume |
| 5336 | * tree so copy_inode_items_to_log() / copy_items() can find it and copy |
| 5337 | * it to the log tree. For a non full sync, we always log the inode item |
| 5338 | * based on the in-memory struct btrfs_inode which is always up to date. |
Filipe Manana | 2c2c452 | 2015-01-13 16:40:04 +0000 | [diff] [blame] | 5339 | */ |
Filipe Manana | 5aa7d1a | 2020-07-02 12:32:20 +0100 | [diff] [blame] | 5340 | if (S_ISDIR(inode->vfs_inode.i_mode)) |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5341 | ret = btrfs_commit_inode_delayed_items(trans, inode); |
Filipe Manana | 8c8648d | 2020-07-02 12:31:59 +0100 | [diff] [blame] | 5342 | else if (test_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags)) |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5343 | ret = btrfs_commit_inode_delayed_inode(inode); |
Filipe Manana | 2c2c452 | 2015-01-13 16:40:04 +0000 | [diff] [blame] | 5344 | |
| 5345 | if (ret) { |
| 5346 | btrfs_free_path(path); |
| 5347 | btrfs_free_path(dst_path); |
| 5348 | return ret; |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 5349 | } |
| 5350 | |
Filipe Manana | a3baaf0 | 2019-02-13 12:14:09 +0000 | [diff] [blame] | 5351 | if (inode_only == LOG_OTHER_INODE || inode_only == LOG_OTHER_INODE_ALL) { |
| 5352 | recursive_logging = true; |
| 5353 | if (inode_only == LOG_OTHER_INODE) |
| 5354 | inode_only = LOG_INODE_EXISTS; |
| 5355 | else |
| 5356 | inode_only = LOG_INODE_ALL; |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5357 | mutex_lock_nested(&inode->log_mutex, SINGLE_DEPTH_NESTING); |
Liu Bo | 781feef | 2016-11-30 16:20:25 -0800 | [diff] [blame] | 5358 | } else { |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5359 | mutex_lock(&inode->log_mutex); |
Liu Bo | 781feef | 2016-11-30 16:20:25 -0800 | [diff] [blame] | 5360 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5361 | |
Filipe Manana | 5e33a2b | 2016-02-25 23:19:38 +0000 | [diff] [blame] | 5362 | /* |
Filipe Manana | 64d6b28 | 2021-01-27 10:34:59 +0000 | [diff] [blame] | 5363 | * This is for cases where logging a directory could result in losing a |
| 5364 | * a file after replaying the log. For example, if we move a file from a |
| 5365 | * directory A to a directory B, then fsync directory A, we have no way |
| 5366 | * to known the file was moved from A to B, so logging just A would |
| 5367 | * result in losing the file after a log replay. |
| 5368 | */ |
| 5369 | if (S_ISDIR(inode->vfs_inode.i_mode) && |
| 5370 | inode_only == LOG_INODE_ALL && |
| 5371 | inode->last_unlink_trans >= trans->transid) { |
| 5372 | btrfs_set_log_full_commit(trans); |
| 5373 | err = 1; |
| 5374 | goto out_unlock; |
| 5375 | } |
| 5376 | |
| 5377 | /* |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5378 | * a brute force approach to making sure we get the most uptodate |
| 5379 | * copies of everything. |
| 5380 | */ |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5381 | if (S_ISDIR(inode->vfs_inode.i_mode)) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5382 | int max_key_type = BTRFS_DIR_LOG_INDEX_KEY; |
| 5383 | |
Filipe Manana | ab12313 | 2021-01-27 10:34:56 +0000 | [diff] [blame] | 5384 | clear_bit(BTRFS_INODE_COPY_EVERYTHING, &inode->runtime_flags); |
Filipe Manana | 4f764e5 | 2015-02-23 19:53:35 +0000 | [diff] [blame] | 5385 | if (inode_only == LOG_INODE_EXISTS) |
| 5386 | max_key_type = BTRFS_XATTR_ITEM_KEY; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 5387 | ret = drop_objectid_items(trans, log, path, ino, max_key_type); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5388 | } else { |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 5389 | if (inode_only == LOG_INODE_EXISTS) { |
| 5390 | /* |
| 5391 | * Make sure the new inode item we write to the log has |
| 5392 | * the same isize as the current one (if it exists). |
| 5393 | * This is necessary to prevent data loss after log |
| 5394 | * replay, and also to prevent doing a wrong expanding |
| 5395 | * truncate - for e.g. create file, write 4K into offset |
| 5396 | * 0, fsync, write 4K into offset 4096, add hard link, |
| 5397 | * fsync some other file (to sync log), power fail - if |
| 5398 | * we use the inode's current i_size, after log replay |
| 5399 | * we get a 8Kb file, with the last 4Kb extent as a hole |
| 5400 | * (zeroes), as if an expanding truncate happened, |
| 5401 | * instead of getting a file of 4Kb only. |
| 5402 | */ |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5403 | err = logged_inode_size(log, inode, path, &logged_isize); |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 5404 | if (err) |
| 5405 | goto out_unlock; |
| 5406 | } |
Filipe Manana | a742994 | 2015-02-13 16:56:14 +0000 | [diff] [blame] | 5407 | if (test_bit(BTRFS_INODE_NEEDS_FULL_SYNC, |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5408 | &inode->runtime_flags)) { |
Filipe Manana | a742994 | 2015-02-13 16:56:14 +0000 | [diff] [blame] | 5409 | if (inode_only == LOG_INODE_EXISTS) { |
Filipe Manana | 4f764e5 | 2015-02-23 19:53:35 +0000 | [diff] [blame] | 5410 | max_key.type = BTRFS_XATTR_ITEM_KEY; |
Filipe Manana | a742994 | 2015-02-13 16:56:14 +0000 | [diff] [blame] | 5411 | ret = drop_objectid_items(trans, log, path, ino, |
| 5412 | max_key.type); |
| 5413 | } else { |
| 5414 | clear_bit(BTRFS_INODE_NEEDS_FULL_SYNC, |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5415 | &inode->runtime_flags); |
Filipe Manana | a742994 | 2015-02-13 16:56:14 +0000 | [diff] [blame] | 5416 | clear_bit(BTRFS_INODE_COPY_EVERYTHING, |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5417 | &inode->runtime_flags); |
Chris Mason | 28ed134 | 2014-12-17 09:41:04 -0800 | [diff] [blame] | 5418 | while(1) { |
| 5419 | ret = btrfs_truncate_inode_items(trans, |
Filipe Manana | 0d7d316 | 2021-05-24 11:35:55 +0100 | [diff] [blame] | 5420 | log, inode, 0, 0, NULL); |
Chris Mason | 28ed134 | 2014-12-17 09:41:04 -0800 | [diff] [blame] | 5421 | if (ret != -EAGAIN) |
| 5422 | break; |
| 5423 | } |
Filipe Manana | a742994 | 2015-02-13 16:56:14 +0000 | [diff] [blame] | 5424 | } |
Filipe Manana | 4f764e5 | 2015-02-23 19:53:35 +0000 | [diff] [blame] | 5425 | } else if (test_and_clear_bit(BTRFS_INODE_COPY_EVERYTHING, |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5426 | &inode->runtime_flags) || |
Josef Bacik | 6cfab85 | 2013-11-12 16:25:58 -0500 | [diff] [blame] | 5427 | inode_only == LOG_INODE_EXISTS) { |
Filipe Manana | 4f764e5 | 2015-02-23 19:53:35 +0000 | [diff] [blame] | 5428 | if (inode_only == LOG_INODE_ALL) |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 5429 | fast_search = true; |
Filipe Manana | 4f764e5 | 2015-02-23 19:53:35 +0000 | [diff] [blame] | 5430 | max_key.type = BTRFS_XATTR_ITEM_KEY; |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 5431 | ret = drop_objectid_items(trans, log, path, ino, |
| 5432 | max_key.type); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 5433 | } else { |
Liu Bo | 183f37f | 2012-11-01 06:38:47 +0000 | [diff] [blame] | 5434 | if (inode_only == LOG_INODE_ALL) |
| 5435 | fast_search = true; |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 5436 | goto log_extents; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 5437 | } |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 5438 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5439 | } |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5440 | if (ret) { |
| 5441 | err = ret; |
| 5442 | goto out_unlock; |
| 5443 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5444 | |
Filipe Manana | da44700 | 2020-03-09 12:41:07 +0000 | [diff] [blame] | 5445 | err = copy_inode_items_to_log(trans, inode, &min_key, &max_key, |
| 5446 | path, dst_path, logged_isize, |
Filipe Manana | 7af5974 | 2020-04-07 11:37:44 +0100 | [diff] [blame] | 5447 | recursive_logging, inode_only, ctx, |
| 5448 | &need_log_inode_item); |
Filipe Manana | da44700 | 2020-03-09 12:41:07 +0000 | [diff] [blame] | 5449 | if (err) |
| 5450 | goto out_unlock; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 5451 | |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 5452 | btrfs_release_path(path); |
| 5453 | btrfs_release_path(dst_path); |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5454 | err = btrfs_log_all_xattrs(trans, root, inode, path, dst_path); |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 5455 | if (err) |
| 5456 | goto out_unlock; |
Filipe Manana | 9a8fca6 | 2018-05-11 16:42:42 +0100 | [diff] [blame] | 5457 | xattrs_logged = true; |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 5458 | if (max_key.type >= BTRFS_EXTENT_DATA_KEY && !fast_search) { |
| 5459 | btrfs_release_path(path); |
| 5460 | btrfs_release_path(dst_path); |
Filipe Manana | 7af5974 | 2020-04-07 11:37:44 +0100 | [diff] [blame] | 5461 | err = btrfs_log_holes(trans, root, inode, path); |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 5462 | if (err) |
| 5463 | goto out_unlock; |
| 5464 | } |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 5465 | log_extents: |
Josef Bacik | f3b15cc | 2013-07-22 12:54:30 -0400 | [diff] [blame] | 5466 | btrfs_release_path(path); |
| 5467 | btrfs_release_path(dst_path); |
Filipe Manana | e4545de | 2015-06-17 12:49:23 +0100 | [diff] [blame] | 5468 | if (need_log_inode_item) { |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5469 | err = log_inode_item(trans, log, dst_path, inode); |
Filipe Manana | 9a8fca6 | 2018-05-11 16:42:42 +0100 | [diff] [blame] | 5470 | if (!err && !xattrs_logged) { |
| 5471 | err = btrfs_log_all_xattrs(trans, root, inode, path, |
| 5472 | dst_path); |
| 5473 | btrfs_release_path(path); |
| 5474 | } |
Filipe Manana | e4545de | 2015-06-17 12:49:23 +0100 | [diff] [blame] | 5475 | if (err) |
| 5476 | goto out_unlock; |
| 5477 | } |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 5478 | if (fast_search) { |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5479 | ret = btrfs_log_changed_extents(trans, root, inode, dst_path, |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 5480 | ctx); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 5481 | if (ret) { |
| 5482 | err = ret; |
| 5483 | goto out_unlock; |
| 5484 | } |
Josef Bacik | d006a04 | 2013-11-12 20:54:09 -0500 | [diff] [blame] | 5485 | } else if (inode_only == LOG_INODE_ALL) { |
Liu Bo | 06d3d22 | 2012-08-27 10:52:19 -0600 | [diff] [blame] | 5486 | struct extent_map *em, *n; |
| 5487 | |
Filipe Manana | 49dae1b | 2014-09-06 22:34:39 +0100 | [diff] [blame] | 5488 | write_lock(&em_tree->lock); |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 5489 | list_for_each_entry_safe(em, n, &em_tree->modified_extents, list) |
| 5490 | list_del_init(&em->list); |
Filipe Manana | 49dae1b | 2014-09-06 22:34:39 +0100 | [diff] [blame] | 5491 | write_unlock(&em_tree->lock); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 5492 | } |
| 5493 | |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5494 | if (inode_only == LOG_INODE_ALL && S_ISDIR(inode->vfs_inode.i_mode)) { |
| 5495 | ret = log_directory_changes(trans, root, inode, path, dst_path, |
| 5496 | ctx); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5497 | if (ret) { |
| 5498 | err = ret; |
| 5499 | goto out_unlock; |
| 5500 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5501 | } |
Filipe Manana | 49dae1b | 2014-09-06 22:34:39 +0100 | [diff] [blame] | 5502 | |
Filipe Manana | d1d832a | 2019-06-07 11:25:24 +0100 | [diff] [blame] | 5503 | /* |
Filipe Manana | 75b463d | 2020-08-11 12:43:48 +0100 | [diff] [blame] | 5504 | * If we are logging that an ancestor inode exists as part of logging a |
| 5505 | * new name from a link or rename operation, don't mark the inode as |
| 5506 | * logged - otherwise if an explicit fsync is made against an ancestor, |
| 5507 | * the fsync considers the inode in the log and doesn't sync the log, |
| 5508 | * resulting in the ancestor missing after a power failure unless the |
| 5509 | * log was synced as part of an fsync against any other unrelated inode. |
| 5510 | * So keep it simple for this case and just don't flag the ancestors as |
| 5511 | * logged. |
Filipe Manana | d1d832a | 2019-06-07 11:25:24 +0100 | [diff] [blame] | 5512 | */ |
Filipe Manana | 75b463d | 2020-08-11 12:43:48 +0100 | [diff] [blame] | 5513 | if (!ctx || |
| 5514 | !(S_ISDIR(inode->vfs_inode.i_mode) && ctx->logging_new_name && |
| 5515 | &inode->vfs_inode != ctx->inode)) { |
| 5516 | spin_lock(&inode->lock); |
| 5517 | inode->logged_trans = trans->transid; |
| 5518 | /* |
| 5519 | * Don't update last_log_commit if we logged that an inode exists |
| 5520 | * after it was loaded to memory (full_sync bit set). |
| 5521 | * This is to prevent data loss when we do a write to the inode, |
| 5522 | * then the inode gets evicted after all delalloc was flushed, |
| 5523 | * then we log it exists (due to a rename for example) and then |
| 5524 | * fsync it. This last fsync would do nothing (not logging the |
| 5525 | * extents previously written). |
| 5526 | */ |
| 5527 | if (inode_only != LOG_INODE_EXISTS || |
| 5528 | !test_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags)) |
| 5529 | inode->last_log_commit = inode->last_sub_trans; |
| 5530 | spin_unlock(&inode->lock); |
| 5531 | } |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5532 | out_unlock: |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5533 | mutex_unlock(&inode->log_mutex); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5534 | |
| 5535 | btrfs_free_path(path); |
| 5536 | btrfs_free_path(dst_path); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5537 | return err; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5538 | } |
| 5539 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5540 | /* |
Filipe Manana | ab12313 | 2021-01-27 10:34:56 +0000 | [diff] [blame] | 5541 | * Check if we need to log an inode. This is used in contexts where while |
| 5542 | * logging an inode we need to log another inode (either that it exists or in |
| 5543 | * full mode). This is used instead of btrfs_inode_in_log() because the later |
| 5544 | * requires the inode to be in the log and have the log transaction committed, |
| 5545 | * while here we do not care if the log transaction was already committed - our |
| 5546 | * caller will commit the log later - and we want to avoid logging an inode |
| 5547 | * multiple times when multiple tasks have joined the same log transaction. |
| 5548 | */ |
| 5549 | static bool need_log_inode(struct btrfs_trans_handle *trans, |
| 5550 | struct btrfs_inode *inode) |
| 5551 | { |
| 5552 | /* |
| 5553 | * If this inode does not have new/updated/deleted xattrs since the last |
| 5554 | * time it was logged and is flagged as logged in the current transaction, |
| 5555 | * we can skip logging it. As for new/deleted names, those are updated in |
| 5556 | * the log by link/unlink/rename operations. |
| 5557 | * In case the inode was logged and then evicted and reloaded, its |
| 5558 | * logged_trans will be 0, in which case we have to fully log it since |
| 5559 | * logged_trans is a transient field, not persisted. |
| 5560 | */ |
| 5561 | if (inode->logged_trans == trans->transid && |
| 5562 | !test_bit(BTRFS_INODE_COPY_EVERYTHING, &inode->runtime_flags)) |
| 5563 | return false; |
| 5564 | |
| 5565 | return true; |
| 5566 | } |
| 5567 | |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5568 | struct btrfs_dir_list { |
| 5569 | u64 ino; |
| 5570 | struct list_head list; |
| 5571 | }; |
| 5572 | |
| 5573 | /* |
| 5574 | * Log the inodes of the new dentries of a directory. See log_dir_items() for |
| 5575 | * details about the why it is needed. |
| 5576 | * This is a recursive operation - if an existing dentry corresponds to a |
| 5577 | * directory, that directory's new entries are logged too (same behaviour as |
| 5578 | * ext3/4, xfs, f2fs, reiserfs, nilfs2). Note that when logging the inodes |
| 5579 | * the dentries point to we do not lock their i_mutex, otherwise lockdep |
| 5580 | * complains about the following circular lock dependency / possible deadlock: |
| 5581 | * |
| 5582 | * CPU0 CPU1 |
| 5583 | * ---- ---- |
| 5584 | * lock(&type->i_mutex_dir_key#3/2); |
| 5585 | * lock(sb_internal#2); |
| 5586 | * lock(&type->i_mutex_dir_key#3/2); |
| 5587 | * lock(&sb->s_type->i_mutex_key#14); |
| 5588 | * |
| 5589 | * Where sb_internal is the lock (a counter that works as a lock) acquired by |
| 5590 | * sb_start_intwrite() in btrfs_start_transaction(). |
| 5591 | * Not locking i_mutex of the inodes is still safe because: |
| 5592 | * |
| 5593 | * 1) For regular files we log with a mode of LOG_INODE_EXISTS. It's possible |
| 5594 | * that while logging the inode new references (names) are added or removed |
| 5595 | * from the inode, leaving the logged inode item with a link count that does |
| 5596 | * not match the number of logged inode reference items. This is fine because |
| 5597 | * at log replay time we compute the real number of links and correct the |
| 5598 | * link count in the inode item (see replay_one_buffer() and |
| 5599 | * link_to_fixup_dir()); |
| 5600 | * |
| 5601 | * 2) For directories we log with a mode of LOG_INODE_ALL. It's possible that |
| 5602 | * while logging the inode's items new items with keys BTRFS_DIR_ITEM_KEY and |
| 5603 | * BTRFS_DIR_INDEX_KEY are added to fs/subvol tree and the logged inode item |
| 5604 | * has a size that doesn't match the sum of the lengths of all the logged |
| 5605 | * names. This does not result in a problem because if a dir_item key is |
| 5606 | * logged but its matching dir_index key is not logged, at log replay time we |
| 5607 | * don't use it to replay the respective name (see replay_one_name()). On the |
| 5608 | * other hand if only the dir_index key ends up being logged, the respective |
| 5609 | * name is added to the fs/subvol tree with both the dir_item and dir_index |
| 5610 | * keys created (see replay_one_name()). |
| 5611 | * The directory's inode item with a wrong i_size is not a problem as well, |
| 5612 | * since we don't use it at log replay time to set the i_size in the inode |
| 5613 | * item of the fs/subvol tree (see overwrite_item()). |
| 5614 | */ |
| 5615 | static int log_new_dir_dentries(struct btrfs_trans_handle *trans, |
| 5616 | struct btrfs_root *root, |
Nikolay Borisov | 51cc0d3 | 2017-01-18 00:31:43 +0200 | [diff] [blame] | 5617 | struct btrfs_inode *start_inode, |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5618 | struct btrfs_log_ctx *ctx) |
| 5619 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5620 | struct btrfs_fs_info *fs_info = root->fs_info; |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5621 | struct btrfs_root *log = root->log_root; |
| 5622 | struct btrfs_path *path; |
| 5623 | LIST_HEAD(dir_list); |
| 5624 | struct btrfs_dir_list *dir_elem; |
| 5625 | int ret = 0; |
| 5626 | |
| 5627 | path = btrfs_alloc_path(); |
| 5628 | if (!path) |
| 5629 | return -ENOMEM; |
| 5630 | |
| 5631 | dir_elem = kmalloc(sizeof(*dir_elem), GFP_NOFS); |
| 5632 | if (!dir_elem) { |
| 5633 | btrfs_free_path(path); |
| 5634 | return -ENOMEM; |
| 5635 | } |
Nikolay Borisov | 51cc0d3 | 2017-01-18 00:31:43 +0200 | [diff] [blame] | 5636 | dir_elem->ino = btrfs_ino(start_inode); |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5637 | list_add_tail(&dir_elem->list, &dir_list); |
| 5638 | |
| 5639 | while (!list_empty(&dir_list)) { |
| 5640 | struct extent_buffer *leaf; |
| 5641 | struct btrfs_key min_key; |
| 5642 | int nritems; |
| 5643 | int i; |
| 5644 | |
| 5645 | dir_elem = list_first_entry(&dir_list, struct btrfs_dir_list, |
| 5646 | list); |
| 5647 | if (ret) |
| 5648 | goto next_dir_inode; |
| 5649 | |
| 5650 | min_key.objectid = dir_elem->ino; |
| 5651 | min_key.type = BTRFS_DIR_ITEM_KEY; |
| 5652 | min_key.offset = 0; |
| 5653 | again: |
| 5654 | btrfs_release_path(path); |
| 5655 | ret = btrfs_search_forward(log, &min_key, path, trans->transid); |
| 5656 | if (ret < 0) { |
| 5657 | goto next_dir_inode; |
| 5658 | } else if (ret > 0) { |
| 5659 | ret = 0; |
| 5660 | goto next_dir_inode; |
| 5661 | } |
| 5662 | |
| 5663 | process_leaf: |
| 5664 | leaf = path->nodes[0]; |
| 5665 | nritems = btrfs_header_nritems(leaf); |
| 5666 | for (i = path->slots[0]; i < nritems; i++) { |
| 5667 | struct btrfs_dir_item *di; |
| 5668 | struct btrfs_key di_key; |
| 5669 | struct inode *di_inode; |
| 5670 | struct btrfs_dir_list *new_dir_elem; |
| 5671 | int log_mode = LOG_INODE_EXISTS; |
| 5672 | int type; |
| 5673 | |
| 5674 | btrfs_item_key_to_cpu(leaf, &min_key, i); |
| 5675 | if (min_key.objectid != dir_elem->ino || |
| 5676 | min_key.type != BTRFS_DIR_ITEM_KEY) |
| 5677 | goto next_dir_inode; |
| 5678 | |
| 5679 | di = btrfs_item_ptr(leaf, i, struct btrfs_dir_item); |
| 5680 | type = btrfs_dir_type(leaf, di); |
| 5681 | if (btrfs_dir_transid(leaf, di) < trans->transid && |
| 5682 | type != BTRFS_FT_DIR) |
| 5683 | continue; |
| 5684 | btrfs_dir_item_key_to_cpu(leaf, di, &di_key); |
| 5685 | if (di_key.type == BTRFS_ROOT_ITEM_KEY) |
| 5686 | continue; |
| 5687 | |
Robbie Ko | ec125cf | 2016-10-28 10:48:26 +0800 | [diff] [blame] | 5688 | btrfs_release_path(path); |
David Sterba | 0202e83 | 2020-05-15 19:35:59 +0200 | [diff] [blame] | 5689 | di_inode = btrfs_iget(fs_info->sb, di_key.objectid, root); |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5690 | if (IS_ERR(di_inode)) { |
| 5691 | ret = PTR_ERR(di_inode); |
| 5692 | goto next_dir_inode; |
| 5693 | } |
| 5694 | |
Filipe Manana | 0e44cb3 | 2021-01-27 10:34:58 +0000 | [diff] [blame] | 5695 | if (!need_log_inode(trans, BTRFS_I(di_inode))) { |
Filipe Manana | 410f954 | 2019-09-10 15:26:49 +0100 | [diff] [blame] | 5696 | btrfs_add_delayed_iput(di_inode); |
Robbie Ko | ec125cf | 2016-10-28 10:48:26 +0800 | [diff] [blame] | 5697 | break; |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5698 | } |
| 5699 | |
| 5700 | ctx->log_new_dentries = false; |
Filipe Manana | 3f9749f | 2016-04-25 04:45:02 +0100 | [diff] [blame] | 5701 | if (type == BTRFS_FT_DIR || type == BTRFS_FT_SYMLINK) |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5702 | log_mode = LOG_INODE_ALL; |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5703 | ret = btrfs_log_inode(trans, root, BTRFS_I(di_inode), |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 5704 | log_mode, ctx); |
Filipe Manana | 410f954 | 2019-09-10 15:26:49 +0100 | [diff] [blame] | 5705 | btrfs_add_delayed_iput(di_inode); |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5706 | if (ret) |
| 5707 | goto next_dir_inode; |
| 5708 | if (ctx->log_new_dentries) { |
| 5709 | new_dir_elem = kmalloc(sizeof(*new_dir_elem), |
| 5710 | GFP_NOFS); |
| 5711 | if (!new_dir_elem) { |
| 5712 | ret = -ENOMEM; |
| 5713 | goto next_dir_inode; |
| 5714 | } |
| 5715 | new_dir_elem->ino = di_key.objectid; |
| 5716 | list_add_tail(&new_dir_elem->list, &dir_list); |
| 5717 | } |
| 5718 | break; |
| 5719 | } |
| 5720 | if (i == nritems) { |
| 5721 | ret = btrfs_next_leaf(log, path); |
| 5722 | if (ret < 0) { |
| 5723 | goto next_dir_inode; |
| 5724 | } else if (ret > 0) { |
| 5725 | ret = 0; |
| 5726 | goto next_dir_inode; |
| 5727 | } |
| 5728 | goto process_leaf; |
| 5729 | } |
| 5730 | if (min_key.offset < (u64)-1) { |
| 5731 | min_key.offset++; |
| 5732 | goto again; |
| 5733 | } |
| 5734 | next_dir_inode: |
| 5735 | list_del(&dir_elem->list); |
| 5736 | kfree(dir_elem); |
| 5737 | } |
| 5738 | |
| 5739 | btrfs_free_path(path); |
| 5740 | return ret; |
| 5741 | } |
| 5742 | |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 5743 | static int btrfs_log_all_parents(struct btrfs_trans_handle *trans, |
Nikolay Borisov | d0a0b78 | 2017-02-20 13:50:30 +0200 | [diff] [blame] | 5744 | struct btrfs_inode *inode, |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 5745 | struct btrfs_log_ctx *ctx) |
| 5746 | { |
David Sterba | 3ffbd68 | 2018-06-29 10:56:42 +0200 | [diff] [blame] | 5747 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 5748 | int ret; |
| 5749 | struct btrfs_path *path; |
| 5750 | struct btrfs_key key; |
Nikolay Borisov | d0a0b78 | 2017-02-20 13:50:30 +0200 | [diff] [blame] | 5751 | struct btrfs_root *root = inode->root; |
| 5752 | const u64 ino = btrfs_ino(inode); |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 5753 | |
| 5754 | path = btrfs_alloc_path(); |
| 5755 | if (!path) |
| 5756 | return -ENOMEM; |
| 5757 | path->skip_locking = 1; |
| 5758 | path->search_commit_root = 1; |
| 5759 | |
| 5760 | key.objectid = ino; |
| 5761 | key.type = BTRFS_INODE_REF_KEY; |
| 5762 | key.offset = 0; |
| 5763 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 5764 | if (ret < 0) |
| 5765 | goto out; |
| 5766 | |
| 5767 | while (true) { |
| 5768 | struct extent_buffer *leaf = path->nodes[0]; |
| 5769 | int slot = path->slots[0]; |
| 5770 | u32 cur_offset = 0; |
| 5771 | u32 item_size; |
| 5772 | unsigned long ptr; |
| 5773 | |
| 5774 | if (slot >= btrfs_header_nritems(leaf)) { |
| 5775 | ret = btrfs_next_leaf(root, path); |
| 5776 | if (ret < 0) |
| 5777 | goto out; |
| 5778 | else if (ret > 0) |
| 5779 | break; |
| 5780 | continue; |
| 5781 | } |
| 5782 | |
| 5783 | btrfs_item_key_to_cpu(leaf, &key, slot); |
| 5784 | /* BTRFS_INODE_EXTREF_KEY is BTRFS_INODE_REF_KEY + 1 */ |
| 5785 | if (key.objectid != ino || key.type > BTRFS_INODE_EXTREF_KEY) |
| 5786 | break; |
| 5787 | |
| 5788 | item_size = btrfs_item_size_nr(leaf, slot); |
| 5789 | ptr = btrfs_item_ptr_offset(leaf, slot); |
| 5790 | while (cur_offset < item_size) { |
| 5791 | struct btrfs_key inode_key; |
| 5792 | struct inode *dir_inode; |
| 5793 | |
| 5794 | inode_key.type = BTRFS_INODE_ITEM_KEY; |
| 5795 | inode_key.offset = 0; |
| 5796 | |
| 5797 | if (key.type == BTRFS_INODE_EXTREF_KEY) { |
| 5798 | struct btrfs_inode_extref *extref; |
| 5799 | |
| 5800 | extref = (struct btrfs_inode_extref *) |
| 5801 | (ptr + cur_offset); |
| 5802 | inode_key.objectid = btrfs_inode_extref_parent( |
| 5803 | leaf, extref); |
| 5804 | cur_offset += sizeof(*extref); |
| 5805 | cur_offset += btrfs_inode_extref_name_len(leaf, |
| 5806 | extref); |
| 5807 | } else { |
| 5808 | inode_key.objectid = key.offset; |
| 5809 | cur_offset = item_size; |
| 5810 | } |
| 5811 | |
David Sterba | 0202e83 | 2020-05-15 19:35:59 +0200 | [diff] [blame] | 5812 | dir_inode = btrfs_iget(fs_info->sb, inode_key.objectid, |
| 5813 | root); |
Filipe Manana | 0f375ee | 2018-10-09 15:05:29 +0100 | [diff] [blame] | 5814 | /* |
| 5815 | * If the parent inode was deleted, return an error to |
| 5816 | * fallback to a transaction commit. This is to prevent |
| 5817 | * getting an inode that was moved from one parent A to |
| 5818 | * a parent B, got its former parent A deleted and then |
| 5819 | * it got fsync'ed, from existing at both parents after |
| 5820 | * a log replay (and the old parent still existing). |
| 5821 | * Example: |
| 5822 | * |
| 5823 | * mkdir /mnt/A |
| 5824 | * mkdir /mnt/B |
| 5825 | * touch /mnt/B/bar |
| 5826 | * sync |
| 5827 | * mv /mnt/B/bar /mnt/A/bar |
| 5828 | * mv -T /mnt/A /mnt/B |
| 5829 | * fsync /mnt/B/bar |
| 5830 | * <power fail> |
| 5831 | * |
| 5832 | * If we ignore the old parent B which got deleted, |
| 5833 | * after a log replay we would have file bar linked |
| 5834 | * at both parents and the old parent B would still |
| 5835 | * exist. |
| 5836 | */ |
| 5837 | if (IS_ERR(dir_inode)) { |
| 5838 | ret = PTR_ERR(dir_inode); |
| 5839 | goto out; |
| 5840 | } |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 5841 | |
Filipe Manana | 3e6a86a | 2021-01-27 10:34:57 +0000 | [diff] [blame] | 5842 | if (!need_log_inode(trans, BTRFS_I(dir_inode))) { |
| 5843 | btrfs_add_delayed_iput(dir_inode); |
| 5844 | continue; |
| 5845 | } |
| 5846 | |
Filipe Manana | 657ed1a | 2016-04-06 17:11:56 +0100 | [diff] [blame] | 5847 | if (ctx) |
| 5848 | ctx->log_new_dentries = false; |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5849 | ret = btrfs_log_inode(trans, root, BTRFS_I(dir_inode), |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 5850 | LOG_INODE_ALL, ctx); |
Filipe Manana | 657ed1a | 2016-04-06 17:11:56 +0100 | [diff] [blame] | 5851 | if (!ret && ctx && ctx->log_new_dentries) |
| 5852 | ret = log_new_dir_dentries(trans, root, |
David Sterba | f85b737 | 2017-01-20 14:54:07 +0100 | [diff] [blame] | 5853 | BTRFS_I(dir_inode), ctx); |
Filipe Manana | 410f954 | 2019-09-10 15:26:49 +0100 | [diff] [blame] | 5854 | btrfs_add_delayed_iput(dir_inode); |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 5855 | if (ret) |
| 5856 | goto out; |
| 5857 | } |
| 5858 | path->slots[0]++; |
| 5859 | } |
| 5860 | ret = 0; |
| 5861 | out: |
| 5862 | btrfs_free_path(path); |
| 5863 | return ret; |
| 5864 | } |
| 5865 | |
Filipe Manana | b8aa330 | 2019-04-17 11:31:06 +0100 | [diff] [blame] | 5866 | static int log_new_ancestors(struct btrfs_trans_handle *trans, |
| 5867 | struct btrfs_root *root, |
| 5868 | struct btrfs_path *path, |
| 5869 | struct btrfs_log_ctx *ctx) |
| 5870 | { |
| 5871 | struct btrfs_key found_key; |
| 5872 | |
| 5873 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]); |
| 5874 | |
| 5875 | while (true) { |
| 5876 | struct btrfs_fs_info *fs_info = root->fs_info; |
Filipe Manana | b8aa330 | 2019-04-17 11:31:06 +0100 | [diff] [blame] | 5877 | struct extent_buffer *leaf = path->nodes[0]; |
| 5878 | int slot = path->slots[0]; |
| 5879 | struct btrfs_key search_key; |
| 5880 | struct inode *inode; |
David Sterba | 0202e83 | 2020-05-15 19:35:59 +0200 | [diff] [blame] | 5881 | u64 ino; |
Filipe Manana | b8aa330 | 2019-04-17 11:31:06 +0100 | [diff] [blame] | 5882 | int ret = 0; |
| 5883 | |
| 5884 | btrfs_release_path(path); |
| 5885 | |
David Sterba | 0202e83 | 2020-05-15 19:35:59 +0200 | [diff] [blame] | 5886 | ino = found_key.offset; |
| 5887 | |
Filipe Manana | b8aa330 | 2019-04-17 11:31:06 +0100 | [diff] [blame] | 5888 | search_key.objectid = found_key.offset; |
| 5889 | search_key.type = BTRFS_INODE_ITEM_KEY; |
| 5890 | search_key.offset = 0; |
David Sterba | 0202e83 | 2020-05-15 19:35:59 +0200 | [diff] [blame] | 5891 | inode = btrfs_iget(fs_info->sb, ino, root); |
Filipe Manana | b8aa330 | 2019-04-17 11:31:06 +0100 | [diff] [blame] | 5892 | if (IS_ERR(inode)) |
| 5893 | return PTR_ERR(inode); |
| 5894 | |
Filipe Manana | ab12313 | 2021-01-27 10:34:56 +0000 | [diff] [blame] | 5895 | if (BTRFS_I(inode)->generation >= trans->transid && |
| 5896 | need_log_inode(trans, BTRFS_I(inode))) |
Filipe Manana | b8aa330 | 2019-04-17 11:31:06 +0100 | [diff] [blame] | 5897 | ret = btrfs_log_inode(trans, root, BTRFS_I(inode), |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 5898 | LOG_INODE_EXISTS, ctx); |
Filipe Manana | 410f954 | 2019-09-10 15:26:49 +0100 | [diff] [blame] | 5899 | btrfs_add_delayed_iput(inode); |
Filipe Manana | b8aa330 | 2019-04-17 11:31:06 +0100 | [diff] [blame] | 5900 | if (ret) |
| 5901 | return ret; |
| 5902 | |
| 5903 | if (search_key.objectid == BTRFS_FIRST_FREE_OBJECTID) |
| 5904 | break; |
| 5905 | |
| 5906 | search_key.type = BTRFS_INODE_REF_KEY; |
| 5907 | ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0); |
| 5908 | if (ret < 0) |
| 5909 | return ret; |
| 5910 | |
| 5911 | leaf = path->nodes[0]; |
| 5912 | slot = path->slots[0]; |
| 5913 | if (slot >= btrfs_header_nritems(leaf)) { |
| 5914 | ret = btrfs_next_leaf(root, path); |
| 5915 | if (ret < 0) |
| 5916 | return ret; |
| 5917 | else if (ret > 0) |
| 5918 | return -ENOENT; |
| 5919 | leaf = path->nodes[0]; |
| 5920 | slot = path->slots[0]; |
| 5921 | } |
| 5922 | |
| 5923 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
| 5924 | if (found_key.objectid != search_key.objectid || |
| 5925 | found_key.type != BTRFS_INODE_REF_KEY) |
| 5926 | return -ENOENT; |
| 5927 | } |
| 5928 | return 0; |
| 5929 | } |
| 5930 | |
| 5931 | static int log_new_ancestors_fast(struct btrfs_trans_handle *trans, |
| 5932 | struct btrfs_inode *inode, |
| 5933 | struct dentry *parent, |
| 5934 | struct btrfs_log_ctx *ctx) |
| 5935 | { |
| 5936 | struct btrfs_root *root = inode->root; |
Filipe Manana | b8aa330 | 2019-04-17 11:31:06 +0100 | [diff] [blame] | 5937 | struct dentry *old_parent = NULL; |
| 5938 | struct super_block *sb = inode->vfs_inode.i_sb; |
| 5939 | int ret = 0; |
| 5940 | |
| 5941 | while (true) { |
| 5942 | if (!parent || d_really_is_negative(parent) || |
| 5943 | sb != parent->d_sb) |
| 5944 | break; |
| 5945 | |
| 5946 | inode = BTRFS_I(d_inode(parent)); |
| 5947 | if (root != inode->root) |
| 5948 | break; |
| 5949 | |
Filipe Manana | ab12313 | 2021-01-27 10:34:56 +0000 | [diff] [blame] | 5950 | if (inode->generation >= trans->transid && |
| 5951 | need_log_inode(trans, inode)) { |
Filipe Manana | b8aa330 | 2019-04-17 11:31:06 +0100 | [diff] [blame] | 5952 | ret = btrfs_log_inode(trans, root, inode, |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 5953 | LOG_INODE_EXISTS, ctx); |
Filipe Manana | b8aa330 | 2019-04-17 11:31:06 +0100 | [diff] [blame] | 5954 | if (ret) |
| 5955 | break; |
| 5956 | } |
| 5957 | if (IS_ROOT(parent)) |
| 5958 | break; |
| 5959 | |
| 5960 | parent = dget_parent(parent); |
| 5961 | dput(old_parent); |
| 5962 | old_parent = parent; |
| 5963 | } |
| 5964 | dput(old_parent); |
| 5965 | |
| 5966 | return ret; |
| 5967 | } |
| 5968 | |
| 5969 | static int log_all_new_ancestors(struct btrfs_trans_handle *trans, |
| 5970 | struct btrfs_inode *inode, |
| 5971 | struct dentry *parent, |
| 5972 | struct btrfs_log_ctx *ctx) |
| 5973 | { |
| 5974 | struct btrfs_root *root = inode->root; |
| 5975 | const u64 ino = btrfs_ino(inode); |
| 5976 | struct btrfs_path *path; |
| 5977 | struct btrfs_key search_key; |
| 5978 | int ret; |
| 5979 | |
| 5980 | /* |
| 5981 | * For a single hard link case, go through a fast path that does not |
| 5982 | * need to iterate the fs/subvolume tree. |
| 5983 | */ |
| 5984 | if (inode->vfs_inode.i_nlink < 2) |
| 5985 | return log_new_ancestors_fast(trans, inode, parent, ctx); |
| 5986 | |
| 5987 | path = btrfs_alloc_path(); |
| 5988 | if (!path) |
| 5989 | return -ENOMEM; |
| 5990 | |
| 5991 | search_key.objectid = ino; |
| 5992 | search_key.type = BTRFS_INODE_REF_KEY; |
| 5993 | search_key.offset = 0; |
| 5994 | again: |
| 5995 | ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0); |
| 5996 | if (ret < 0) |
| 5997 | goto out; |
| 5998 | if (ret == 0) |
| 5999 | path->slots[0]++; |
| 6000 | |
| 6001 | while (true) { |
| 6002 | struct extent_buffer *leaf = path->nodes[0]; |
| 6003 | int slot = path->slots[0]; |
| 6004 | struct btrfs_key found_key; |
| 6005 | |
| 6006 | if (slot >= btrfs_header_nritems(leaf)) { |
| 6007 | ret = btrfs_next_leaf(root, path); |
| 6008 | if (ret < 0) |
| 6009 | goto out; |
| 6010 | else if (ret > 0) |
| 6011 | break; |
| 6012 | continue; |
| 6013 | } |
| 6014 | |
| 6015 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
| 6016 | if (found_key.objectid != ino || |
| 6017 | found_key.type > BTRFS_INODE_EXTREF_KEY) |
| 6018 | break; |
| 6019 | |
| 6020 | /* |
| 6021 | * Don't deal with extended references because they are rare |
| 6022 | * cases and too complex to deal with (we would need to keep |
| 6023 | * track of which subitem we are processing for each item in |
| 6024 | * this loop, etc). So just return some error to fallback to |
| 6025 | * a transaction commit. |
| 6026 | */ |
| 6027 | if (found_key.type == BTRFS_INODE_EXTREF_KEY) { |
| 6028 | ret = -EMLINK; |
| 6029 | goto out; |
| 6030 | } |
| 6031 | |
| 6032 | /* |
| 6033 | * Logging ancestors needs to do more searches on the fs/subvol |
| 6034 | * tree, so it releases the path as needed to avoid deadlocks. |
| 6035 | * Keep track of the last inode ref key and resume from that key |
| 6036 | * after logging all new ancestors for the current hard link. |
| 6037 | */ |
| 6038 | memcpy(&search_key, &found_key, sizeof(search_key)); |
| 6039 | |
| 6040 | ret = log_new_ancestors(trans, root, path, ctx); |
| 6041 | if (ret) |
| 6042 | goto out; |
| 6043 | btrfs_release_path(path); |
| 6044 | goto again; |
| 6045 | } |
| 6046 | ret = 0; |
| 6047 | out: |
| 6048 | btrfs_free_path(path); |
| 6049 | return ret; |
| 6050 | } |
| 6051 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6052 | /* |
| 6053 | * helper function around btrfs_log_inode to make sure newly created |
| 6054 | * parent directories also end up in the log. A minimal inode and backref |
| 6055 | * only logging is done of any parent directories that are older than |
| 6056 | * the last committed transaction |
| 6057 | */ |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 6058 | static int btrfs_log_inode_parent(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 19df27a | 2017-02-20 13:51:01 +0200 | [diff] [blame] | 6059 | struct btrfs_inode *inode, |
Filipe Manana | 49dae1b | 2014-09-06 22:34:39 +0100 | [diff] [blame] | 6060 | struct dentry *parent, |
Edmund Nadolski | 41a1ead | 2017-11-20 13:24:47 -0700 | [diff] [blame] | 6061 | int inode_only, |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 6062 | struct btrfs_log_ctx *ctx) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6063 | { |
Nikolay Borisov | f882274 | 2018-02-27 17:37:17 +0200 | [diff] [blame] | 6064 | struct btrfs_root *root = inode->root; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6065 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6066 | int ret = 0; |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 6067 | bool log_dentries = false; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6068 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6069 | if (btrfs_test_opt(fs_info, NOTREELOG)) { |
Sage Weil | 3a5e140 | 2009-04-02 16:49:40 -0400 | [diff] [blame] | 6070 | ret = 1; |
| 6071 | goto end_no_trans; |
| 6072 | } |
| 6073 | |
Nikolay Borisov | f882274 | 2018-02-27 17:37:17 +0200 | [diff] [blame] | 6074 | if (btrfs_root_refs(&root->root_item) == 0) { |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 6075 | ret = 1; |
| 6076 | goto end_no_trans; |
| 6077 | } |
| 6078 | |
Filipe Manana | f2d72f4 | 2018-10-08 11:12:55 +0100 | [diff] [blame] | 6079 | /* |
| 6080 | * Skip already logged inodes or inodes corresponding to tmpfiles |
| 6081 | * (since logging them is pointless, a link count of 0 means they |
| 6082 | * will never be accessible). |
| 6083 | */ |
Filipe Manana | 626e9f4 | 2021-04-27 11:27:20 +0100 | [diff] [blame] | 6084 | if ((btrfs_inode_in_log(inode, trans->transid) && |
| 6085 | list_empty(&ctx->ordered_extents)) || |
Filipe Manana | f2d72f4 | 2018-10-08 11:12:55 +0100 | [diff] [blame] | 6086 | inode->vfs_inode.i_nlink == 0) { |
Chris Mason | 257c62e | 2009-10-13 13:21:08 -0400 | [diff] [blame] | 6087 | ret = BTRFS_NO_LOG_SYNC; |
| 6088 | goto end_no_trans; |
| 6089 | } |
| 6090 | |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 6091 | ret = start_log_trans(trans, root, ctx); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 6092 | if (ret) |
Miao Xie | e87ac13 | 2014-02-20 18:08:53 +0800 | [diff] [blame] | 6093 | goto end_no_trans; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6094 | |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 6095 | ret = btrfs_log_inode(trans, root, inode, inode_only, ctx); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 6096 | if (ret) |
| 6097 | goto end_trans; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6098 | |
Chris Mason | af4176b | 2009-03-24 10:24:31 -0400 | [diff] [blame] | 6099 | /* |
| 6100 | * for regular files, if its inode is already on disk, we don't |
| 6101 | * have to worry about the parents at all. This is because |
| 6102 | * we can use the last_unlink_trans field to record renames |
| 6103 | * and other fun in this file. |
| 6104 | */ |
Nikolay Borisov | 19df27a | 2017-02-20 13:51:01 +0200 | [diff] [blame] | 6105 | if (S_ISREG(inode->vfs_inode.i_mode) && |
Filipe Manana | 47d3db4 | 2020-11-25 12:19:26 +0000 | [diff] [blame] | 6106 | inode->generation < trans->transid && |
| 6107 | inode->last_unlink_trans < trans->transid) { |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 6108 | ret = 0; |
| 6109 | goto end_trans; |
| 6110 | } |
Chris Mason | af4176b | 2009-03-24 10:24:31 -0400 | [diff] [blame] | 6111 | |
Nikolay Borisov | 19df27a | 2017-02-20 13:51:01 +0200 | [diff] [blame] | 6112 | if (S_ISDIR(inode->vfs_inode.i_mode) && ctx && ctx->log_new_dentries) |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 6113 | log_dentries = true; |
| 6114 | |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 6115 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 6116 | * On unlink we must make sure all our current and old parent directory |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 6117 | * inodes are fully logged. This is to prevent leaving dangling |
| 6118 | * directory index entries in directories that were our parents but are |
| 6119 | * not anymore. Not doing this results in old parent directory being |
| 6120 | * impossible to delete after log replay (rmdir will always fail with |
| 6121 | * error -ENOTEMPTY). |
| 6122 | * |
| 6123 | * Example 1: |
| 6124 | * |
| 6125 | * mkdir testdir |
| 6126 | * touch testdir/foo |
| 6127 | * ln testdir/foo testdir/bar |
| 6128 | * sync |
| 6129 | * unlink testdir/bar |
| 6130 | * xfs_io -c fsync testdir/foo |
| 6131 | * <power failure> |
| 6132 | * mount fs, triggers log replay |
| 6133 | * |
| 6134 | * If we don't log the parent directory (testdir), after log replay the |
| 6135 | * directory still has an entry pointing to the file inode using the bar |
| 6136 | * name, but a matching BTRFS_INODE_[REF|EXTREF]_KEY does not exist and |
| 6137 | * the file inode has a link count of 1. |
| 6138 | * |
| 6139 | * Example 2: |
| 6140 | * |
| 6141 | * mkdir testdir |
| 6142 | * touch foo |
| 6143 | * ln foo testdir/foo2 |
| 6144 | * ln foo testdir/foo3 |
| 6145 | * sync |
| 6146 | * unlink testdir/foo3 |
| 6147 | * xfs_io -c fsync foo |
| 6148 | * <power failure> |
| 6149 | * mount fs, triggers log replay |
| 6150 | * |
| 6151 | * Similar as the first example, after log replay the parent directory |
| 6152 | * testdir still has an entry pointing to the inode file with name foo3 |
| 6153 | * but the file inode does not have a matching BTRFS_INODE_REF_KEY item |
| 6154 | * and has a link count of 2. |
| 6155 | */ |
Filipe Manana | 47d3db4 | 2020-11-25 12:19:26 +0000 | [diff] [blame] | 6156 | if (inode->last_unlink_trans >= trans->transid) { |
Filipe Manana | b8aa330 | 2019-04-17 11:31:06 +0100 | [diff] [blame] | 6157 | ret = btrfs_log_all_parents(trans, inode, ctx); |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 6158 | if (ret) |
| 6159 | goto end_trans; |
| 6160 | } |
| 6161 | |
Filipe Manana | b8aa330 | 2019-04-17 11:31:06 +0100 | [diff] [blame] | 6162 | ret = log_all_new_ancestors(trans, inode, parent, ctx); |
| 6163 | if (ret) |
Filipe Manana | 41bd606 | 2018-11-28 14:54:28 +0000 | [diff] [blame] | 6164 | goto end_trans; |
Filipe Manana | 41bd606 | 2018-11-28 14:54:28 +0000 | [diff] [blame] | 6165 | |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 6166 | if (log_dentries) |
Filipe Manana | b8aa330 | 2019-04-17 11:31:06 +0100 | [diff] [blame] | 6167 | ret = log_new_dir_dentries(trans, root, inode, ctx); |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 6168 | else |
| 6169 | ret = 0; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 6170 | end_trans: |
| 6171 | if (ret < 0) { |
David Sterba | 9078776 | 2019-03-20 13:28:05 +0100 | [diff] [blame] | 6172 | btrfs_set_log_full_commit(trans); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 6173 | ret = 1; |
| 6174 | } |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 6175 | |
| 6176 | if (ret) |
| 6177 | btrfs_remove_log_ctx(root, ctx); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6178 | btrfs_end_log_trans(root); |
| 6179 | end_no_trans: |
| 6180 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6181 | } |
| 6182 | |
| 6183 | /* |
| 6184 | * it is not safe to log dentry if the chunk root has added new |
| 6185 | * chunks. This returns 0 if the dentry was logged, and 1 otherwise. |
| 6186 | * If this returns 1, you must commit the transaction to safely get your |
| 6187 | * data on disk. |
| 6188 | */ |
| 6189 | int btrfs_log_dentry_safe(struct btrfs_trans_handle *trans, |
Nikolay Borisov | e5b84f7a | 2018-02-27 17:37:18 +0200 | [diff] [blame] | 6190 | struct dentry *dentry, |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 6191 | struct btrfs_log_ctx *ctx) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6192 | { |
Josef Bacik | 6a91221 | 2010-11-20 09:48:00 +0000 | [diff] [blame] | 6193 | struct dentry *parent = dget_parent(dentry); |
| 6194 | int ret; |
| 6195 | |
Nikolay Borisov | f882274 | 2018-02-27 17:37:17 +0200 | [diff] [blame] | 6196 | ret = btrfs_log_inode_parent(trans, BTRFS_I(d_inode(dentry)), parent, |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 6197 | LOG_INODE_ALL, ctx); |
Josef Bacik | 6a91221 | 2010-11-20 09:48:00 +0000 | [diff] [blame] | 6198 | dput(parent); |
| 6199 | |
| 6200 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6201 | } |
| 6202 | |
| 6203 | /* |
| 6204 | * should be called during mount to recover any replay any log trees |
| 6205 | * from the FS |
| 6206 | */ |
| 6207 | int btrfs_recover_log_trees(struct btrfs_root *log_root_tree) |
| 6208 | { |
| 6209 | int ret; |
| 6210 | struct btrfs_path *path; |
| 6211 | struct btrfs_trans_handle *trans; |
| 6212 | struct btrfs_key key; |
| 6213 | struct btrfs_key found_key; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6214 | struct btrfs_root *log; |
| 6215 | struct btrfs_fs_info *fs_info = log_root_tree->fs_info; |
| 6216 | struct walk_control wc = { |
| 6217 | .process_func = process_one_buffer, |
David Sterba | 430a662 | 2019-08-01 14:50:35 +0200 | [diff] [blame] | 6218 | .stage = LOG_WALK_PIN_ONLY, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6219 | }; |
| 6220 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6221 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 6222 | if (!path) |
| 6223 | return -ENOMEM; |
| 6224 | |
Josef Bacik | afcdd12 | 2016-09-02 15:40:02 -0400 | [diff] [blame] | 6225 | set_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6226 | |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 6227 | trans = btrfs_start_transaction(fs_info->tree_root, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6228 | if (IS_ERR(trans)) { |
| 6229 | ret = PTR_ERR(trans); |
| 6230 | goto error; |
| 6231 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6232 | |
| 6233 | wc.trans = trans; |
| 6234 | wc.pin = 1; |
| 6235 | |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 6236 | ret = walk_log_tree(trans, log_root_tree, &wc); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6237 | if (ret) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 6238 | btrfs_handle_fs_error(fs_info, ret, |
| 6239 | "Failed to pin buffers while recovering log root tree."); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6240 | goto error; |
| 6241 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6242 | |
| 6243 | again: |
| 6244 | key.objectid = BTRFS_TREE_LOG_OBJECTID; |
| 6245 | key.offset = (u64)-1; |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 6246 | key.type = BTRFS_ROOT_ITEM_KEY; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6247 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 6248 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6249 | ret = btrfs_search_slot(NULL, log_root_tree, &key, path, 0, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6250 | |
| 6251 | if (ret < 0) { |
Anand Jain | 34d9700 | 2016-03-16 16:43:06 +0800 | [diff] [blame] | 6252 | btrfs_handle_fs_error(fs_info, ret, |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6253 | "Couldn't find tree log root."); |
| 6254 | goto error; |
| 6255 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6256 | if (ret > 0) { |
| 6257 | if (path->slots[0] == 0) |
| 6258 | break; |
| 6259 | path->slots[0]--; |
| 6260 | } |
| 6261 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, |
| 6262 | path->slots[0]); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 6263 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6264 | if (found_key.objectid != BTRFS_TREE_LOG_OBJECTID) |
| 6265 | break; |
| 6266 | |
Josef Bacik | 62a2c73 | 2020-01-24 09:32:21 -0500 | [diff] [blame] | 6267 | log = btrfs_read_tree_root(log_root_tree, &found_key); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6268 | if (IS_ERR(log)) { |
| 6269 | ret = PTR_ERR(log); |
Anand Jain | 34d9700 | 2016-03-16 16:43:06 +0800 | [diff] [blame] | 6270 | btrfs_handle_fs_error(fs_info, ret, |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6271 | "Couldn't read tree log root."); |
| 6272 | goto error; |
| 6273 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6274 | |
David Sterba | 56e9357 | 2020-05-15 19:35:55 +0200 | [diff] [blame] | 6275 | wc.replay_dest = btrfs_get_fs_root(fs_info, found_key.offset, |
| 6276 | true); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6277 | if (IS_ERR(wc.replay_dest)) { |
| 6278 | ret = PTR_ERR(wc.replay_dest); |
Josef Bacik | 9bc574d | 2019-12-06 09:37:17 -0500 | [diff] [blame] | 6279 | |
| 6280 | /* |
| 6281 | * We didn't find the subvol, likely because it was |
| 6282 | * deleted. This is ok, simply skip this log and go to |
| 6283 | * the next one. |
| 6284 | * |
| 6285 | * We need to exclude the root because we can't have |
| 6286 | * other log replays overwriting this log as we'll read |
| 6287 | * it back in a few more times. This will keep our |
| 6288 | * block from being modified, and we'll just bail for |
| 6289 | * each subsequent pass. |
| 6290 | */ |
| 6291 | if (ret == -ENOENT) |
Nikolay Borisov | 9fce570 | 2020-01-20 16:09:13 +0200 | [diff] [blame] | 6292 | ret = btrfs_pin_extent_for_log_replay(trans, |
Josef Bacik | 9bc574d | 2019-12-06 09:37:17 -0500 | [diff] [blame] | 6293 | log->node->start, |
| 6294 | log->node->len); |
Josef Bacik | 0024652 | 2020-01-24 09:33:01 -0500 | [diff] [blame] | 6295 | btrfs_put_root(log); |
Josef Bacik | 9bc574d | 2019-12-06 09:37:17 -0500 | [diff] [blame] | 6296 | |
| 6297 | if (!ret) |
| 6298 | goto next; |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 6299 | btrfs_handle_fs_error(fs_info, ret, |
| 6300 | "Couldn't read target root for tree log recovery."); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6301 | goto error; |
| 6302 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6303 | |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 6304 | wc.replay_dest->log_root = log; |
Josef Bacik | 2002ae1 | 2021-03-12 15:25:05 -0500 | [diff] [blame] | 6305 | ret = btrfs_record_root_in_trans(trans, wc.replay_dest); |
| 6306 | if (ret) |
| 6307 | /* The loop needs to continue due to the root refs */ |
| 6308 | btrfs_handle_fs_error(fs_info, ret, |
| 6309 | "failed to record the log root in transaction"); |
| 6310 | else |
| 6311 | ret = walk_log_tree(trans, log, &wc); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6312 | |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 6313 | if (!ret && wc.stage == LOG_WALK_REPLAY_ALL) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6314 | ret = fixup_inode_link_counts(trans, wc.replay_dest, |
| 6315 | path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6316 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6317 | |
Liu Bo | 900c998 | 2018-01-25 11:02:56 -0700 | [diff] [blame] | 6318 | if (!ret && wc.stage == LOG_WALK_REPLAY_ALL) { |
| 6319 | struct btrfs_root *root = wc.replay_dest; |
| 6320 | |
| 6321 | btrfs_release_path(path); |
| 6322 | |
| 6323 | /* |
| 6324 | * We have just replayed everything, and the highest |
| 6325 | * objectid of fs roots probably has changed in case |
| 6326 | * some inode_item's got replayed. |
| 6327 | * |
| 6328 | * root->objectid_mutex is not acquired as log replay |
| 6329 | * could only happen during mount. |
| 6330 | */ |
Nikolay Borisov | 453e487 | 2020-12-07 17:32:32 +0200 | [diff] [blame] | 6331 | ret = btrfs_init_root_free_objectid(root); |
Liu Bo | 900c998 | 2018-01-25 11:02:56 -0700 | [diff] [blame] | 6332 | } |
| 6333 | |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 6334 | wc.replay_dest->log_root = NULL; |
Josef Bacik | 0024652 | 2020-01-24 09:33:01 -0500 | [diff] [blame] | 6335 | btrfs_put_root(wc.replay_dest); |
Josef Bacik | 0024652 | 2020-01-24 09:33:01 -0500 | [diff] [blame] | 6336 | btrfs_put_root(log); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6337 | |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 6338 | if (ret) |
| 6339 | goto error; |
Josef Bacik | 9bc574d | 2019-12-06 09:37:17 -0500 | [diff] [blame] | 6340 | next: |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6341 | if (found_key.offset == 0) |
| 6342 | break; |
Josef Bacik | 9bc574d | 2019-12-06 09:37:17 -0500 | [diff] [blame] | 6343 | key.offset = found_key.offset - 1; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6344 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 6345 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6346 | |
| 6347 | /* step one is to pin it all, step two is to replay just inodes */ |
| 6348 | if (wc.pin) { |
| 6349 | wc.pin = 0; |
| 6350 | wc.process_func = replay_one_buffer; |
| 6351 | wc.stage = LOG_WALK_REPLAY_INODES; |
| 6352 | goto again; |
| 6353 | } |
| 6354 | /* step three is to replay everything */ |
| 6355 | if (wc.stage < LOG_WALK_REPLAY_ALL) { |
| 6356 | wc.stage++; |
| 6357 | goto again; |
| 6358 | } |
| 6359 | |
| 6360 | btrfs_free_path(path); |
| 6361 | |
Josef Bacik | abefa55 | 2013-04-24 16:40:05 -0400 | [diff] [blame] | 6362 | /* step 4: commit the transaction, which also unpins the blocks */ |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 6363 | ret = btrfs_commit_transaction(trans); |
Josef Bacik | abefa55 | 2013-04-24 16:40:05 -0400 | [diff] [blame] | 6364 | if (ret) |
| 6365 | return ret; |
| 6366 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6367 | log_root_tree->log_root = NULL; |
Josef Bacik | afcdd12 | 2016-09-02 15:40:02 -0400 | [diff] [blame] | 6368 | clear_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags); |
Josef Bacik | 0024652 | 2020-01-24 09:33:01 -0500 | [diff] [blame] | 6369 | btrfs_put_root(log_root_tree); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6370 | |
Josef Bacik | abefa55 | 2013-04-24 16:40:05 -0400 | [diff] [blame] | 6371 | return 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6372 | error: |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 6373 | if (wc.trans) |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 6374 | btrfs_end_transaction(wc.trans); |
David Sterba | 1aeb6b5 | 2020-07-07 18:38:05 +0200 | [diff] [blame^] | 6375 | clear_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6376 | btrfs_free_path(path); |
| 6377 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6378 | } |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6379 | |
| 6380 | /* |
| 6381 | * there are some corner cases where we want to force a full |
| 6382 | * commit instead of allowing a directory to be logged. |
| 6383 | * |
| 6384 | * They revolve around files there were unlinked from the directory, and |
| 6385 | * this function updates the parent directory so that a full commit is |
| 6386 | * properly done if it is fsync'd later after the unlinks are done. |
Filipe Manana | 2be63d5 | 2016-02-12 11:34:23 +0000 | [diff] [blame] | 6387 | * |
| 6388 | * Must be called before the unlink operations (updates to the subvolume tree, |
| 6389 | * inodes, etc) are done. |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6390 | */ |
| 6391 | void btrfs_record_unlink_dir(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 4176bdb | 2017-01-18 00:31:28 +0200 | [diff] [blame] | 6392 | struct btrfs_inode *dir, struct btrfs_inode *inode, |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6393 | int for_rename) |
| 6394 | { |
| 6395 | /* |
Chris Mason | af4176b | 2009-03-24 10:24:31 -0400 | [diff] [blame] | 6396 | * when we're logging a file, if it hasn't been renamed |
| 6397 | * or unlinked, and its inode is fully committed on disk, |
| 6398 | * we don't have to worry about walking up the directory chain |
| 6399 | * to log its parents. |
| 6400 | * |
| 6401 | * So, we use the last_unlink_trans field to put this transid |
| 6402 | * into the file. When the file is logged we check it and |
| 6403 | * don't log the parents if the file is fully on disk. |
| 6404 | */ |
Nikolay Borisov | 4176bdb | 2017-01-18 00:31:28 +0200 | [diff] [blame] | 6405 | mutex_lock(&inode->log_mutex); |
| 6406 | inode->last_unlink_trans = trans->transid; |
| 6407 | mutex_unlock(&inode->log_mutex); |
Chris Mason | af4176b | 2009-03-24 10:24:31 -0400 | [diff] [blame] | 6408 | |
| 6409 | /* |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6410 | * if this directory was already logged any new |
| 6411 | * names for this file/dir will get recorded |
| 6412 | */ |
Nikolay Borisov | 4176bdb | 2017-01-18 00:31:28 +0200 | [diff] [blame] | 6413 | if (dir->logged_trans == trans->transid) |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6414 | return; |
| 6415 | |
| 6416 | /* |
| 6417 | * if the inode we're about to unlink was logged, |
| 6418 | * the log will be properly updated for any new names |
| 6419 | */ |
Nikolay Borisov | 4176bdb | 2017-01-18 00:31:28 +0200 | [diff] [blame] | 6420 | if (inode->logged_trans == trans->transid) |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6421 | return; |
| 6422 | |
| 6423 | /* |
| 6424 | * when renaming files across directories, if the directory |
| 6425 | * there we're unlinking from gets fsync'd later on, there's |
| 6426 | * no way to find the destination directory later and fsync it |
| 6427 | * properly. So, we have to be conservative and force commits |
| 6428 | * so the new name gets discovered. |
| 6429 | */ |
| 6430 | if (for_rename) |
| 6431 | goto record; |
| 6432 | |
| 6433 | /* we can safely do the unlink without any special recording */ |
| 6434 | return; |
| 6435 | |
| 6436 | record: |
Nikolay Borisov | 4176bdb | 2017-01-18 00:31:28 +0200 | [diff] [blame] | 6437 | mutex_lock(&dir->log_mutex); |
| 6438 | dir->last_unlink_trans = trans->transid; |
| 6439 | mutex_unlock(&dir->log_mutex); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6440 | } |
| 6441 | |
| 6442 | /* |
Filipe Manana | 1ec9a1a | 2016-02-10 10:42:25 +0000 | [diff] [blame] | 6443 | * Make sure that if someone attempts to fsync the parent directory of a deleted |
| 6444 | * snapshot, it ends up triggering a transaction commit. This is to guarantee |
| 6445 | * that after replaying the log tree of the parent directory's root we will not |
| 6446 | * see the snapshot anymore and at log replay time we will not see any log tree |
| 6447 | * corresponding to the deleted snapshot's root, which could lead to replaying |
| 6448 | * it after replaying the log tree of the parent directory (which would replay |
| 6449 | * the snapshot delete operation). |
Filipe Manana | 2be63d5 | 2016-02-12 11:34:23 +0000 | [diff] [blame] | 6450 | * |
| 6451 | * Must be called before the actual snapshot destroy operation (updates to the |
| 6452 | * parent root and tree of tree roots trees, etc) are done. |
Filipe Manana | 1ec9a1a | 2016-02-10 10:42:25 +0000 | [diff] [blame] | 6453 | */ |
| 6454 | void btrfs_record_snapshot_destroy(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 4366355 | 2017-01-18 00:31:29 +0200 | [diff] [blame] | 6455 | struct btrfs_inode *dir) |
Filipe Manana | 1ec9a1a | 2016-02-10 10:42:25 +0000 | [diff] [blame] | 6456 | { |
Nikolay Borisov | 4366355 | 2017-01-18 00:31:29 +0200 | [diff] [blame] | 6457 | mutex_lock(&dir->log_mutex); |
| 6458 | dir->last_unlink_trans = trans->transid; |
| 6459 | mutex_unlock(&dir->log_mutex); |
Filipe Manana | 1ec9a1a | 2016-02-10 10:42:25 +0000 | [diff] [blame] | 6460 | } |
| 6461 | |
| 6462 | /* |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6463 | * Call this after adding a new name for a file and it will properly |
| 6464 | * update the log to reflect the new name. |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6465 | */ |
Filipe Manana | 75b463d | 2020-08-11 12:43:48 +0100 | [diff] [blame] | 6466 | void btrfs_log_new_name(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 9ca5fbfb | 2017-01-18 00:31:31 +0200 | [diff] [blame] | 6467 | struct btrfs_inode *inode, struct btrfs_inode *old_dir, |
Filipe Manana | 75b463d | 2020-08-11 12:43:48 +0100 | [diff] [blame] | 6468 | struct dentry *parent) |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6469 | { |
Filipe Manana | 75b463d | 2020-08-11 12:43:48 +0100 | [diff] [blame] | 6470 | struct btrfs_log_ctx ctx; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6471 | |
| 6472 | /* |
Chris Mason | af4176b | 2009-03-24 10:24:31 -0400 | [diff] [blame] | 6473 | * this will force the logging code to walk the dentry chain |
| 6474 | * up for the file |
| 6475 | */ |
Filipe Manana | 9a6509c | 2018-02-28 15:55:40 +0000 | [diff] [blame] | 6476 | if (!S_ISDIR(inode->vfs_inode.i_mode)) |
Nikolay Borisov | 9ca5fbfb | 2017-01-18 00:31:31 +0200 | [diff] [blame] | 6477 | inode->last_unlink_trans = trans->transid; |
Chris Mason | af4176b | 2009-03-24 10:24:31 -0400 | [diff] [blame] | 6478 | |
| 6479 | /* |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6480 | * if this inode hasn't been logged and directory we're renaming it |
| 6481 | * from hasn't been logged, we don't need to log it |
| 6482 | */ |
Filipe Manana | de53d89 | 2020-11-25 12:19:23 +0000 | [diff] [blame] | 6483 | if (inode->logged_trans < trans->transid && |
| 6484 | (!old_dir || old_dir->logged_trans < trans->transid)) |
Filipe Manana | 75b463d | 2020-08-11 12:43:48 +0100 | [diff] [blame] | 6485 | return; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6486 | |
Filipe Manana | 54a40fc | 2021-05-12 16:27:16 +0100 | [diff] [blame] | 6487 | /* |
| 6488 | * If we are doing a rename (old_dir is not NULL) from a directory that |
| 6489 | * was previously logged, make sure the next log attempt on the directory |
| 6490 | * is not skipped and logs the inode again. This is because the log may |
| 6491 | * not currently be authoritative for a range including the old |
| 6492 | * BTRFS_DIR_ITEM_KEY and BTRFS_DIR_INDEX_KEY keys, so we want to make |
| 6493 | * sure after a log replay we do not end up with both the new and old |
| 6494 | * dentries around (in case the inode is a directory we would have a |
| 6495 | * directory with two hard links and 2 inode references for different |
| 6496 | * parents). The next log attempt of old_dir will happen at |
| 6497 | * btrfs_log_all_parents(), called through btrfs_log_inode_parent() |
| 6498 | * below, because we have previously set inode->last_unlink_trans to the |
| 6499 | * current transaction ID, either here or at btrfs_record_unlink_dir() in |
| 6500 | * case inode is a directory. |
| 6501 | */ |
| 6502 | if (old_dir) |
| 6503 | old_dir->logged_trans = 0; |
| 6504 | |
Filipe Manana | 75b463d | 2020-08-11 12:43:48 +0100 | [diff] [blame] | 6505 | btrfs_init_log_ctx(&ctx, &inode->vfs_inode); |
| 6506 | ctx.logging_new_name = true; |
| 6507 | /* |
| 6508 | * We don't care about the return value. If we fail to log the new name |
| 6509 | * then we know the next attempt to sync the log will fallback to a full |
| 6510 | * transaction commit (due to a call to btrfs_set_log_full_commit()), so |
| 6511 | * we don't need to worry about getting a log committed that has an |
| 6512 | * inconsistent state after a rename operation. |
| 6513 | */ |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 6514 | btrfs_log_inode_parent(trans, inode, parent, LOG_INODE_EXISTS, &ctx); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6515 | } |
| 6516 | |