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 | 289cffc | 2021-08-31 15:30:32 +0100 | [diff] [blame] | 210 | if (!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); |
Marcos Paulo de Souza | 3736127 | 2021-08-02 09:34:00 -0300 | [diff] [blame] | 756 | if (ret < 0) { |
| 757 | goto out; |
| 758 | } else if (ret == 0) { |
Qu Wenruo | 82fa113 | 2019-04-04 14:45:35 +0800 | [diff] [blame] | 759 | btrfs_init_generic_ref(&ref, |
| 760 | BTRFS_ADD_DELAYED_REF, |
| 761 | ins.objectid, ins.offset, 0); |
| 762 | btrfs_init_data_ref(&ref, |
| 763 | root->root_key.objectid, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 764 | key->objectid, offset); |
Qu Wenruo | 82fa113 | 2019-04-04 14:45:35 +0800 | [diff] [blame] | 765 | ret = btrfs_inc_extent_ref(trans, &ref); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 766 | if (ret) |
| 767 | goto out; |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 768 | } else { |
| 769 | /* |
| 770 | * insert the extent pointer in the extent |
| 771 | * allocation tree |
| 772 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 773 | ret = btrfs_alloc_logged_file_extent(trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 774 | root->root_key.objectid, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 775 | key->objectid, offset, &ins); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 776 | if (ret) |
| 777 | goto out; |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 778 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 779 | btrfs_release_path(path); |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 780 | |
| 781 | if (btrfs_file_extent_compression(eb, item)) { |
| 782 | csum_start = ins.objectid; |
| 783 | csum_end = csum_start + ins.offset; |
| 784 | } else { |
| 785 | csum_start = ins.objectid + |
| 786 | btrfs_file_extent_offset(eb, item); |
| 787 | csum_end = csum_start + |
| 788 | btrfs_file_extent_num_bytes(eb, item); |
| 789 | } |
| 790 | |
| 791 | ret = btrfs_lookup_csums_range(root->log_root, |
| 792 | csum_start, csum_end - 1, |
Arne Jansen | a2de733 | 2011-03-08 14:14:00 +0100 | [diff] [blame] | 793 | &ordered_sums, 0); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 794 | if (ret) |
| 795 | goto out; |
Filipe Manana | b84b839 | 2015-08-19 11:09:40 +0100 | [diff] [blame] | 796 | /* |
| 797 | * Now delete all existing cums in the csum root that |
| 798 | * cover our range. We do this because we can have an |
| 799 | * extent that is completely referenced by one file |
| 800 | * extent item and partially referenced by another |
| 801 | * file extent item (like after using the clone or |
| 802 | * extent_same ioctls). In this case if we end up doing |
| 803 | * the replay of the one that partially references the |
| 804 | * extent first, and we do not do the csum deletion |
| 805 | * below, we can get 2 csum items in the csum tree that |
| 806 | * overlap each other. For example, imagine our log has |
| 807 | * the two following file extent items: |
| 808 | * |
| 809 | * key (257 EXTENT_DATA 409600) |
| 810 | * extent data disk byte 12845056 nr 102400 |
| 811 | * extent data offset 20480 nr 20480 ram 102400 |
| 812 | * |
| 813 | * key (257 EXTENT_DATA 819200) |
| 814 | * extent data disk byte 12845056 nr 102400 |
| 815 | * extent data offset 0 nr 102400 ram 102400 |
| 816 | * |
| 817 | * Where the second one fully references the 100K extent |
| 818 | * that starts at disk byte 12845056, and the log tree |
| 819 | * has a single csum item that covers the entire range |
| 820 | * of the extent: |
| 821 | * |
| 822 | * key (EXTENT_CSUM EXTENT_CSUM 12845056) itemsize 100 |
| 823 | * |
| 824 | * After the first file extent item is replayed, the |
| 825 | * csum tree gets the following csum item: |
| 826 | * |
| 827 | * key (EXTENT_CSUM EXTENT_CSUM 12865536) itemsize 20 |
| 828 | * |
| 829 | * Which covers the 20K sub-range starting at offset 20K |
| 830 | * of our extent. Now when we replay the second file |
| 831 | * extent item, if we do not delete existing csum items |
| 832 | * that cover any of its blocks, we end up getting two |
| 833 | * csum items in our csum tree that overlap each other: |
| 834 | * |
| 835 | * key (EXTENT_CSUM EXTENT_CSUM 12845056) itemsize 100 |
| 836 | * key (EXTENT_CSUM EXTENT_CSUM 12865536) itemsize 20 |
| 837 | * |
| 838 | * Which is a problem, because after this anyone trying |
| 839 | * to lookup up for the checksum of any block of our |
| 840 | * extent starting at an offset of 40K or higher, will |
| 841 | * end up looking at the second csum item only, which |
| 842 | * does not contain the checksum for any block starting |
| 843 | * at offset 40K or higher of our extent. |
| 844 | */ |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 845 | while (!list_empty(&ordered_sums)) { |
| 846 | struct btrfs_ordered_sum *sums; |
| 847 | sums = list_entry(ordered_sums.next, |
| 848 | struct btrfs_ordered_sum, |
| 849 | list); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 850 | if (!ret) |
Filipe Manana | 40e046a | 2019-12-05 16:58:30 +0000 | [diff] [blame] | 851 | ret = btrfs_del_csums(trans, |
| 852 | fs_info->csum_root, |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 853 | sums->bytenr, |
| 854 | sums->len); |
Filipe Manana | b84b839 | 2015-08-19 11:09:40 +0100 | [diff] [blame] | 855 | if (!ret) |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 856 | ret = btrfs_csum_file_blocks(trans, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 857 | fs_info->csum_root, sums); |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 858 | list_del(&sums->list); |
| 859 | kfree(sums); |
| 860 | } |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 861 | if (ret) |
| 862 | goto out; |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 863 | } else { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 864 | btrfs_release_path(path); |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 865 | } |
| 866 | } else if (found_type == BTRFS_FILE_EXTENT_INLINE) { |
| 867 | /* inline extents are easy, we just overwrite them */ |
| 868 | ret = overwrite_item(trans, root, path, eb, slot, key); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 869 | if (ret) |
| 870 | goto out; |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 871 | } |
| 872 | |
Josef Bacik | 9ddc959 | 2020-01-17 09:02:22 -0500 | [diff] [blame] | 873 | ret = btrfs_inode_set_file_extent_range(BTRFS_I(inode), start, |
| 874 | extent_end - start); |
| 875 | if (ret) |
| 876 | goto out; |
| 877 | |
Filipe Manana | 3168021c | 2017-02-01 14:58:02 +0000 | [diff] [blame] | 878 | update_inode: |
Filipe Manana | 2766ff6 | 2020-11-04 11:07:34 +0000 | [diff] [blame] | 879 | btrfs_update_inode_bytes(BTRFS_I(inode), nbytes, drop_args.bytes_found); |
Nikolay Borisov | 9a56fcd | 2020-11-02 16:48:59 +0200 | [diff] [blame] | 880 | ret = btrfs_update_inode(trans, root, BTRFS_I(inode)); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 881 | out: |
| 882 | if (inode) |
| 883 | iput(inode); |
| 884 | return ret; |
| 885 | } |
| 886 | |
| 887 | /* |
| 888 | * when cleaning up conflicts between the directory names in the |
| 889 | * subvolume, directory names in the log and directory names in the |
| 890 | * inode back references, we may have to unlink inodes from directories. |
| 891 | * |
| 892 | * This is a helper function to do the unlink of a specific directory |
| 893 | * item |
| 894 | */ |
| 895 | static noinline int drop_one_dir_item(struct btrfs_trans_handle *trans, |
| 896 | struct btrfs_root *root, |
| 897 | struct btrfs_path *path, |
Nikolay Borisov | 207e7d9 | 2017-01-18 00:31:45 +0200 | [diff] [blame] | 898 | struct btrfs_inode *dir, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 899 | struct btrfs_dir_item *di) |
| 900 | { |
| 901 | struct inode *inode; |
| 902 | char *name; |
| 903 | int name_len; |
| 904 | struct extent_buffer *leaf; |
| 905 | struct btrfs_key location; |
| 906 | int ret; |
| 907 | |
| 908 | leaf = path->nodes[0]; |
| 909 | |
| 910 | btrfs_dir_item_key_to_cpu(leaf, di, &location); |
| 911 | name_len = btrfs_dir_name_len(leaf, di); |
| 912 | name = kmalloc(name_len, GFP_NOFS); |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 913 | if (!name) |
| 914 | return -ENOMEM; |
| 915 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 916 | read_extent_buffer(leaf, name, (unsigned long)(di + 1), name_len); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 917 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 918 | |
| 919 | inode = read_one_inode(root, location.objectid); |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 920 | if (!inode) { |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 921 | ret = -EIO; |
| 922 | goto out; |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 923 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 924 | |
Yan Zheng | ec051c0 | 2009-01-05 15:43:42 -0500 | [diff] [blame] | 925 | ret = link_to_fixup_dir(trans, root, path, location.objectid); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 926 | if (ret) |
| 927 | goto out; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 928 | |
Nikolay Borisov | 207e7d9 | 2017-01-18 00:31:45 +0200 | [diff] [blame] | 929 | ret = btrfs_unlink_inode(trans, root, dir, BTRFS_I(inode), name, |
| 930 | name_len); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 931 | if (ret) |
| 932 | goto out; |
Filipe David Borba Manana | ada9af2 | 2013-08-05 09:25:47 +0100 | [diff] [blame] | 933 | else |
Nikolay Borisov | e5c304e6 | 2018-02-07 17:55:43 +0200 | [diff] [blame] | 934 | ret = btrfs_run_delayed_items(trans); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 935 | out: |
| 936 | kfree(name); |
| 937 | iput(inode); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 938 | return ret; |
| 939 | } |
| 940 | |
| 941 | /* |
Filipe Manana | 77a5b9e | 2021-10-01 13:52:30 +0100 | [diff] [blame] | 942 | * See if a given name and sequence number found in an inode back reference are |
| 943 | * already in a directory and correctly point to this inode. |
| 944 | * |
| 945 | * Returns: < 0 on error, 0 if the directory entry does not exists and 1 if it |
| 946 | * exists. |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 947 | */ |
| 948 | static noinline int inode_in_dir(struct btrfs_root *root, |
| 949 | struct btrfs_path *path, |
| 950 | u64 dirid, u64 objectid, u64 index, |
| 951 | const char *name, int name_len) |
| 952 | { |
| 953 | struct btrfs_dir_item *di; |
| 954 | struct btrfs_key location; |
Filipe Manana | 77a5b9e | 2021-10-01 13:52:30 +0100 | [diff] [blame] | 955 | int ret = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 956 | |
| 957 | di = btrfs_lookup_dir_index_item(NULL, root, path, dirid, |
| 958 | index, name, name_len, 0); |
Filipe Manana | 77a5b9e | 2021-10-01 13:52:30 +0100 | [diff] [blame] | 959 | if (IS_ERR(di)) { |
Filipe Manana | 8dcbc26 | 2021-10-01 13:52:33 +0100 | [diff] [blame] | 960 | ret = PTR_ERR(di); |
Filipe Manana | 77a5b9e | 2021-10-01 13:52:30 +0100 | [diff] [blame] | 961 | goto out; |
| 962 | } else if (di) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 963 | btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location); |
| 964 | if (location.objectid != objectid) |
| 965 | goto out; |
Filipe Manana | 77a5b9e | 2021-10-01 13:52:30 +0100 | [diff] [blame] | 966 | } else { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 967 | goto out; |
Filipe Manana | 77a5b9e | 2021-10-01 13:52:30 +0100 | [diff] [blame] | 968 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 969 | |
Filipe Manana | 77a5b9e | 2021-10-01 13:52:30 +0100 | [diff] [blame] | 970 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 971 | di = btrfs_lookup_dir_item(NULL, root, path, dirid, name, name_len, 0); |
Filipe Manana | 77a5b9e | 2021-10-01 13:52:30 +0100 | [diff] [blame] | 972 | if (IS_ERR(di)) { |
| 973 | ret = PTR_ERR(di); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 974 | goto out; |
Filipe Manana | 77a5b9e | 2021-10-01 13:52:30 +0100 | [diff] [blame] | 975 | } else if (di) { |
| 976 | btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location); |
| 977 | if (location.objectid == objectid) |
| 978 | ret = 1; |
| 979 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 980 | out: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 981 | btrfs_release_path(path); |
Filipe Manana | 77a5b9e | 2021-10-01 13:52:30 +0100 | [diff] [blame] | 982 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 983 | } |
| 984 | |
| 985 | /* |
| 986 | * helper function to check a log tree for a named back reference in |
| 987 | * an inode. This is used to decide if a back reference that is |
| 988 | * found in the subvolume conflicts with what we find in the log. |
| 989 | * |
| 990 | * inode backreferences may have multiple refs in a single item, |
| 991 | * during replay we process one reference at a time, and we don't |
| 992 | * want to delete valid links to a file from the subvolume if that |
| 993 | * link is also in the log. |
| 994 | */ |
| 995 | static noinline int backref_in_log(struct btrfs_root *log, |
| 996 | struct btrfs_key *key, |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 997 | u64 ref_objectid, |
Filipe Manana | df8d116 | 2015-01-14 01:52:25 +0000 | [diff] [blame] | 998 | const char *name, int namelen) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 999 | { |
| 1000 | struct btrfs_path *path; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1001 | int ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1002 | |
| 1003 | path = btrfs_alloc_path(); |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 1004 | if (!path) |
| 1005 | return -ENOMEM; |
| 1006 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1007 | ret = btrfs_search_slot(NULL, log, key, path, 0, 0); |
Nikolay Borisov | d3316c8 | 2019-09-25 14:03:03 +0300 | [diff] [blame] | 1008 | if (ret < 0) { |
| 1009 | goto out; |
| 1010 | } else if (ret == 1) { |
Nikolay Borisov | 89cbf5f6b | 2019-08-30 17:44:47 +0300 | [diff] [blame] | 1011 | ret = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1012 | goto out; |
Nikolay Borisov | 89cbf5f6b | 2019-08-30 17:44:47 +0300 | [diff] [blame] | 1013 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1014 | |
Nikolay Borisov | 89cbf5f6b | 2019-08-30 17:44:47 +0300 | [diff] [blame] | 1015 | if (key->type == BTRFS_INODE_EXTREF_KEY) |
| 1016 | ret = !!btrfs_find_name_in_ext_backref(path->nodes[0], |
| 1017 | path->slots[0], |
| 1018 | ref_objectid, |
| 1019 | name, namelen); |
| 1020 | else |
| 1021 | ret = !!btrfs_find_name_in_backref(path->nodes[0], |
Filipe Manana | 1f250e9 | 2018-02-28 15:56:10 +0000 | [diff] [blame] | 1022 | path->slots[0], |
Nikolay Borisov | 89cbf5f6b | 2019-08-30 17:44:47 +0300 | [diff] [blame] | 1023 | name, namelen); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1024 | out: |
| 1025 | btrfs_free_path(path); |
Nikolay Borisov | 89cbf5f6b | 2019-08-30 17:44:47 +0300 | [diff] [blame] | 1026 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1027 | } |
| 1028 | |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1029 | static inline int __add_inode_ref(struct btrfs_trans_handle *trans, |
| 1030 | struct btrfs_root *root, |
| 1031 | struct btrfs_path *path, |
| 1032 | struct btrfs_root *log_root, |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1033 | struct btrfs_inode *dir, |
| 1034 | struct btrfs_inode *inode, |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1035 | u64 inode_objectid, u64 parent_objectid, |
| 1036 | u64 ref_index, char *name, int namelen, |
| 1037 | int *search_done) |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1038 | { |
| 1039 | int ret; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1040 | char *victim_name; |
| 1041 | int victim_name_len; |
| 1042 | struct extent_buffer *leaf; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1043 | struct btrfs_dir_item *di; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1044 | struct btrfs_key search_key; |
| 1045 | struct btrfs_inode_extref *extref; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1046 | |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1047 | again: |
| 1048 | /* Search old style refs */ |
| 1049 | search_key.objectid = inode_objectid; |
| 1050 | search_key.type = BTRFS_INODE_REF_KEY; |
| 1051 | search_key.offset = parent_objectid; |
| 1052 | ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0); |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1053 | if (ret == 0) { |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1054 | struct btrfs_inode_ref *victim_ref; |
| 1055 | unsigned long ptr; |
| 1056 | unsigned long ptr_end; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1057 | |
| 1058 | leaf = path->nodes[0]; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1059 | |
| 1060 | /* are we trying to overwrite a back ref for the root directory |
| 1061 | * if so, just jump out, we're done |
| 1062 | */ |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1063 | if (search_key.objectid == search_key.offset) |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1064 | return 1; |
| 1065 | |
| 1066 | /* check all the names in this back reference to see |
| 1067 | * if they are in the log. if so, we allow them to stay |
| 1068 | * otherwise they must be unlinked as a conflict |
| 1069 | */ |
| 1070 | ptr = btrfs_item_ptr_offset(leaf, path->slots[0]); |
| 1071 | ptr_end = ptr + btrfs_item_size_nr(leaf, path->slots[0]); |
| 1072 | while (ptr < ptr_end) { |
| 1073 | victim_ref = (struct btrfs_inode_ref *)ptr; |
| 1074 | victim_name_len = btrfs_inode_ref_name_len(leaf, |
| 1075 | victim_ref); |
| 1076 | victim_name = kmalloc(victim_name_len, GFP_NOFS); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1077 | if (!victim_name) |
| 1078 | return -ENOMEM; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1079 | |
| 1080 | read_extent_buffer(leaf, victim_name, |
| 1081 | (unsigned long)(victim_ref + 1), |
| 1082 | victim_name_len); |
| 1083 | |
Nikolay Borisov | d3316c8 | 2019-09-25 14:03:03 +0300 | [diff] [blame] | 1084 | ret = backref_in_log(log_root, &search_key, |
| 1085 | parent_objectid, victim_name, |
| 1086 | victim_name_len); |
| 1087 | if (ret < 0) { |
| 1088 | kfree(victim_name); |
| 1089 | return ret; |
| 1090 | } else if (!ret) { |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1091 | inc_nlink(&inode->vfs_inode); |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1092 | btrfs_release_path(path); |
| 1093 | |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1094 | ret = btrfs_unlink_inode(trans, root, dir, inode, |
Nikolay Borisov | 4ec5934 | 2017-01-18 00:31:44 +0200 | [diff] [blame] | 1095 | victim_name, victim_name_len); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1096 | kfree(victim_name); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1097 | if (ret) |
| 1098 | return ret; |
Nikolay Borisov | e5c304e6 | 2018-02-07 17:55:43 +0200 | [diff] [blame] | 1099 | ret = btrfs_run_delayed_items(trans); |
Filipe David Borba Manana | ada9af2 | 2013-08-05 09:25:47 +0100 | [diff] [blame] | 1100 | if (ret) |
| 1101 | return ret; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1102 | *search_done = 1; |
| 1103 | goto again; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1104 | } |
| 1105 | kfree(victim_name); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1106 | |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1107 | ptr = (unsigned long)(victim_ref + 1) + victim_name_len; |
| 1108 | } |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1109 | |
| 1110 | /* |
| 1111 | * NOTE: we have searched root tree and checked the |
Adam Buchbinder | bb7ab3b | 2016-03-04 11:23:12 -0800 | [diff] [blame] | 1112 | * corresponding ref, it does not need to check again. |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1113 | */ |
| 1114 | *search_done = 1; |
| 1115 | } |
| 1116 | btrfs_release_path(path); |
| 1117 | |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1118 | /* Same search but for extended refs */ |
| 1119 | extref = btrfs_lookup_inode_extref(NULL, root, path, name, namelen, |
| 1120 | inode_objectid, parent_objectid, 0, |
| 1121 | 0); |
| 1122 | if (!IS_ERR_OR_NULL(extref)) { |
| 1123 | u32 item_size; |
| 1124 | u32 cur_offset = 0; |
| 1125 | unsigned long base; |
| 1126 | struct inode *victim_parent; |
| 1127 | |
| 1128 | leaf = path->nodes[0]; |
| 1129 | |
| 1130 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1131 | base = btrfs_item_ptr_offset(leaf, path->slots[0]); |
| 1132 | |
| 1133 | while (cur_offset < item_size) { |
Quentin Casasnovas | dd9ef13 | 2015-03-03 16:31:38 +0100 | [diff] [blame] | 1134 | extref = (struct btrfs_inode_extref *)(base + cur_offset); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1135 | |
| 1136 | victim_name_len = btrfs_inode_extref_name_len(leaf, extref); |
| 1137 | |
| 1138 | if (btrfs_inode_extref_parent(leaf, extref) != parent_objectid) |
| 1139 | goto next; |
| 1140 | |
| 1141 | victim_name = kmalloc(victim_name_len, GFP_NOFS); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1142 | if (!victim_name) |
| 1143 | return -ENOMEM; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1144 | read_extent_buffer(leaf, victim_name, (unsigned long)&extref->name, |
| 1145 | victim_name_len); |
| 1146 | |
| 1147 | search_key.objectid = inode_objectid; |
| 1148 | search_key.type = BTRFS_INODE_EXTREF_KEY; |
| 1149 | search_key.offset = btrfs_extref_hash(parent_objectid, |
| 1150 | victim_name, |
| 1151 | victim_name_len); |
Nikolay Borisov | d3316c8 | 2019-09-25 14:03:03 +0300 | [diff] [blame] | 1152 | ret = backref_in_log(log_root, &search_key, |
| 1153 | parent_objectid, victim_name, |
| 1154 | victim_name_len); |
| 1155 | if (ret < 0) { |
| 1156 | return ret; |
| 1157 | } else if (!ret) { |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1158 | ret = -ENOENT; |
| 1159 | victim_parent = read_one_inode(root, |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1160 | parent_objectid); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1161 | if (victim_parent) { |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1162 | inc_nlink(&inode->vfs_inode); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1163 | btrfs_release_path(path); |
| 1164 | |
| 1165 | ret = btrfs_unlink_inode(trans, root, |
Nikolay Borisov | 4ec5934 | 2017-01-18 00:31:44 +0200 | [diff] [blame] | 1166 | BTRFS_I(victim_parent), |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1167 | inode, |
Nikolay Borisov | 4ec5934 | 2017-01-18 00:31:44 +0200 | [diff] [blame] | 1168 | victim_name, |
| 1169 | victim_name_len); |
Filipe David Borba Manana | ada9af2 | 2013-08-05 09:25:47 +0100 | [diff] [blame] | 1170 | if (!ret) |
| 1171 | ret = btrfs_run_delayed_items( |
Nikolay Borisov | e5c304e6 | 2018-02-07 17:55:43 +0200 | [diff] [blame] | 1172 | trans); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1173 | } |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1174 | iput(victim_parent); |
| 1175 | kfree(victim_name); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1176 | if (ret) |
| 1177 | return ret; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1178 | *search_done = 1; |
| 1179 | goto again; |
| 1180 | } |
| 1181 | kfree(victim_name); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1182 | next: |
| 1183 | cur_offset += victim_name_len + sizeof(*extref); |
| 1184 | } |
| 1185 | *search_done = 1; |
| 1186 | } |
| 1187 | btrfs_release_path(path); |
| 1188 | |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1189 | /* look for a conflicting sequence number */ |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1190 | di = btrfs_lookup_dir_index_item(trans, root, path, btrfs_ino(dir), |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1191 | ref_index, name, namelen, 0); |
Filipe Manana | 52db777 | 2021-10-01 13:52:32 +0100 | [diff] [blame] | 1192 | if (IS_ERR(di)) { |
Filipe Manana | 8dcbc26 | 2021-10-01 13:52:33 +0100 | [diff] [blame] | 1193 | return PTR_ERR(di); |
Filipe Manana | 52db777 | 2021-10-01 13:52:32 +0100 | [diff] [blame] | 1194 | } else if (di) { |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1195 | ret = drop_one_dir_item(trans, root, path, dir, di); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1196 | if (ret) |
| 1197 | return ret; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1198 | } |
| 1199 | btrfs_release_path(path); |
| 1200 | |
Andrea Gelmini | 52042d8 | 2018-11-28 12:05:13 +0100 | [diff] [blame] | 1201 | /* look for a conflicting name */ |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1202 | di = btrfs_lookup_dir_item(trans, root, path, btrfs_ino(dir), |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1203 | name, namelen, 0); |
Filipe Manana | 52db777 | 2021-10-01 13:52:32 +0100 | [diff] [blame] | 1204 | if (IS_ERR(di)) { |
| 1205 | return PTR_ERR(di); |
| 1206 | } else if (di) { |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1207 | ret = drop_one_dir_item(trans, root, path, dir, di); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1208 | if (ret) |
| 1209 | return ret; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1210 | } |
| 1211 | btrfs_release_path(path); |
| 1212 | |
| 1213 | return 0; |
| 1214 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1215 | |
Qu Wenruo | bae15d9 | 2017-11-08 08:54:26 +0800 | [diff] [blame] | 1216 | static int extref_get_fields(struct extent_buffer *eb, unsigned long ref_ptr, |
| 1217 | u32 *namelen, char **name, u64 *index, |
| 1218 | u64 *parent_objectid) |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1219 | { |
| 1220 | struct btrfs_inode_extref *extref; |
| 1221 | |
| 1222 | extref = (struct btrfs_inode_extref *)ref_ptr; |
| 1223 | |
| 1224 | *namelen = btrfs_inode_extref_name_len(eb, extref); |
| 1225 | *name = kmalloc(*namelen, GFP_NOFS); |
| 1226 | if (*name == NULL) |
| 1227 | return -ENOMEM; |
| 1228 | |
| 1229 | read_extent_buffer(eb, *name, (unsigned long)&extref->name, |
| 1230 | *namelen); |
| 1231 | |
Filipe Manana | 1f250e9 | 2018-02-28 15:56:10 +0000 | [diff] [blame] | 1232 | if (index) |
| 1233 | *index = btrfs_inode_extref_index(eb, extref); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1234 | if (parent_objectid) |
| 1235 | *parent_objectid = btrfs_inode_extref_parent(eb, extref); |
| 1236 | |
| 1237 | return 0; |
| 1238 | } |
| 1239 | |
Qu Wenruo | bae15d9 | 2017-11-08 08:54:26 +0800 | [diff] [blame] | 1240 | static int ref_get_fields(struct extent_buffer *eb, unsigned long ref_ptr, |
| 1241 | u32 *namelen, char **name, u64 *index) |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1242 | { |
| 1243 | struct btrfs_inode_ref *ref; |
| 1244 | |
| 1245 | ref = (struct btrfs_inode_ref *)ref_ptr; |
| 1246 | |
| 1247 | *namelen = btrfs_inode_ref_name_len(eb, ref); |
| 1248 | *name = kmalloc(*namelen, GFP_NOFS); |
| 1249 | if (*name == NULL) |
| 1250 | return -ENOMEM; |
| 1251 | |
| 1252 | read_extent_buffer(eb, *name, (unsigned long)(ref + 1), *namelen); |
| 1253 | |
Filipe Manana | 1f250e9 | 2018-02-28 15:56:10 +0000 | [diff] [blame] | 1254 | if (index) |
| 1255 | *index = btrfs_inode_ref_index(eb, ref); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1256 | |
| 1257 | return 0; |
| 1258 | } |
| 1259 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1260 | /* |
Filipe Manana | 1f250e9 | 2018-02-28 15:56:10 +0000 | [diff] [blame] | 1261 | * Take an inode reference item from the log tree and iterate all names from the |
| 1262 | * inode reference item in the subvolume tree with the same key (if it exists). |
| 1263 | * For any name that is not in the inode reference item from the log tree, do a |
| 1264 | * proper unlink of that name (that is, remove its entry from the inode |
| 1265 | * reference item and both dir index keys). |
| 1266 | */ |
| 1267 | static int unlink_old_inode_refs(struct btrfs_trans_handle *trans, |
| 1268 | struct btrfs_root *root, |
| 1269 | struct btrfs_path *path, |
| 1270 | struct btrfs_inode *inode, |
| 1271 | struct extent_buffer *log_eb, |
| 1272 | int log_slot, |
| 1273 | struct btrfs_key *key) |
| 1274 | { |
| 1275 | int ret; |
| 1276 | unsigned long ref_ptr; |
| 1277 | unsigned long ref_end; |
| 1278 | struct extent_buffer *eb; |
| 1279 | |
| 1280 | again: |
| 1281 | btrfs_release_path(path); |
| 1282 | ret = btrfs_search_slot(NULL, root, key, path, 0, 0); |
| 1283 | if (ret > 0) { |
| 1284 | ret = 0; |
| 1285 | goto out; |
| 1286 | } |
| 1287 | if (ret < 0) |
| 1288 | goto out; |
| 1289 | |
| 1290 | eb = path->nodes[0]; |
| 1291 | ref_ptr = btrfs_item_ptr_offset(eb, path->slots[0]); |
| 1292 | ref_end = ref_ptr + btrfs_item_size_nr(eb, path->slots[0]); |
| 1293 | while (ref_ptr < ref_end) { |
| 1294 | char *name = NULL; |
| 1295 | int namelen; |
| 1296 | u64 parent_id; |
| 1297 | |
| 1298 | if (key->type == BTRFS_INODE_EXTREF_KEY) { |
| 1299 | ret = extref_get_fields(eb, ref_ptr, &namelen, &name, |
| 1300 | NULL, &parent_id); |
| 1301 | } else { |
| 1302 | parent_id = key->offset; |
| 1303 | ret = ref_get_fields(eb, ref_ptr, &namelen, &name, |
| 1304 | NULL); |
| 1305 | } |
| 1306 | if (ret) |
| 1307 | goto out; |
| 1308 | |
| 1309 | if (key->type == BTRFS_INODE_EXTREF_KEY) |
Nikolay Borisov | 6ff49c6 | 2019-08-27 14:46:29 +0300 | [diff] [blame] | 1310 | ret = !!btrfs_find_name_in_ext_backref(log_eb, log_slot, |
| 1311 | parent_id, name, |
| 1312 | namelen); |
Filipe Manana | 1f250e9 | 2018-02-28 15:56:10 +0000 | [diff] [blame] | 1313 | else |
Nikolay Borisov | 9bb8407 | 2019-08-27 14:46:28 +0300 | [diff] [blame] | 1314 | ret = !!btrfs_find_name_in_backref(log_eb, log_slot, |
| 1315 | name, namelen); |
Filipe Manana | 1f250e9 | 2018-02-28 15:56:10 +0000 | [diff] [blame] | 1316 | |
| 1317 | if (!ret) { |
| 1318 | struct inode *dir; |
| 1319 | |
| 1320 | btrfs_release_path(path); |
| 1321 | dir = read_one_inode(root, parent_id); |
| 1322 | if (!dir) { |
| 1323 | ret = -ENOENT; |
| 1324 | kfree(name); |
| 1325 | goto out; |
| 1326 | } |
| 1327 | ret = btrfs_unlink_inode(trans, root, BTRFS_I(dir), |
| 1328 | inode, name, namelen); |
| 1329 | kfree(name); |
| 1330 | iput(dir); |
| 1331 | if (ret) |
| 1332 | goto out; |
| 1333 | goto again; |
| 1334 | } |
| 1335 | |
| 1336 | kfree(name); |
| 1337 | ref_ptr += namelen; |
| 1338 | if (key->type == BTRFS_INODE_EXTREF_KEY) |
| 1339 | ref_ptr += sizeof(struct btrfs_inode_extref); |
| 1340 | else |
| 1341 | ref_ptr += sizeof(struct btrfs_inode_ref); |
| 1342 | } |
| 1343 | ret = 0; |
| 1344 | out: |
| 1345 | btrfs_release_path(path); |
| 1346 | return ret; |
| 1347 | } |
| 1348 | |
Filipe Manana | 0d83639 | 2018-07-20 10:59:06 +0100 | [diff] [blame] | 1349 | static int btrfs_inode_ref_exists(struct inode *inode, struct inode *dir, |
| 1350 | const u8 ref_type, const char *name, |
| 1351 | const int namelen) |
| 1352 | { |
| 1353 | struct btrfs_key key; |
| 1354 | struct btrfs_path *path; |
| 1355 | const u64 parent_id = btrfs_ino(BTRFS_I(dir)); |
| 1356 | int ret; |
| 1357 | |
| 1358 | path = btrfs_alloc_path(); |
| 1359 | if (!path) |
| 1360 | return -ENOMEM; |
| 1361 | |
| 1362 | key.objectid = btrfs_ino(BTRFS_I(inode)); |
| 1363 | key.type = ref_type; |
| 1364 | if (key.type == BTRFS_INODE_REF_KEY) |
| 1365 | key.offset = parent_id; |
| 1366 | else |
| 1367 | key.offset = btrfs_extref_hash(parent_id, name, namelen); |
| 1368 | |
| 1369 | ret = btrfs_search_slot(NULL, BTRFS_I(inode)->root, &key, path, 0, 0); |
| 1370 | if (ret < 0) |
| 1371 | goto out; |
| 1372 | if (ret > 0) { |
| 1373 | ret = 0; |
| 1374 | goto out; |
| 1375 | } |
| 1376 | if (key.type == BTRFS_INODE_EXTREF_KEY) |
Nikolay Borisov | 6ff49c6 | 2019-08-27 14:46:29 +0300 | [diff] [blame] | 1377 | ret = !!btrfs_find_name_in_ext_backref(path->nodes[0], |
| 1378 | path->slots[0], parent_id, name, namelen); |
Filipe Manana | 0d83639 | 2018-07-20 10:59:06 +0100 | [diff] [blame] | 1379 | else |
Nikolay Borisov | 9bb8407 | 2019-08-27 14:46:28 +0300 | [diff] [blame] | 1380 | ret = !!btrfs_find_name_in_backref(path->nodes[0], path->slots[0], |
| 1381 | name, namelen); |
Filipe Manana | 0d83639 | 2018-07-20 10:59:06 +0100 | [diff] [blame] | 1382 | |
| 1383 | out: |
| 1384 | btrfs_free_path(path); |
| 1385 | return ret; |
| 1386 | } |
| 1387 | |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 1388 | static int add_link(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
| 1389 | struct inode *dir, struct inode *inode, const char *name, |
| 1390 | int namelen, u64 ref_index) |
| 1391 | { |
| 1392 | struct btrfs_dir_item *dir_item; |
| 1393 | struct btrfs_key key; |
| 1394 | struct btrfs_path *path; |
| 1395 | struct inode *other_inode = NULL; |
| 1396 | int ret; |
| 1397 | |
| 1398 | path = btrfs_alloc_path(); |
| 1399 | if (!path) |
| 1400 | return -ENOMEM; |
| 1401 | |
| 1402 | dir_item = btrfs_lookup_dir_item(NULL, root, path, |
| 1403 | btrfs_ino(BTRFS_I(dir)), |
| 1404 | name, namelen, 0); |
| 1405 | if (!dir_item) { |
| 1406 | btrfs_release_path(path); |
| 1407 | goto add_link; |
| 1408 | } else if (IS_ERR(dir_item)) { |
| 1409 | ret = PTR_ERR(dir_item); |
| 1410 | goto out; |
| 1411 | } |
| 1412 | |
| 1413 | /* |
| 1414 | * Our inode's dentry collides with the dentry of another inode which is |
| 1415 | * in the log but not yet processed since it has a higher inode number. |
| 1416 | * So delete that other dentry. |
| 1417 | */ |
| 1418 | btrfs_dir_item_key_to_cpu(path->nodes[0], dir_item, &key); |
| 1419 | btrfs_release_path(path); |
| 1420 | other_inode = read_one_inode(root, key.objectid); |
| 1421 | if (!other_inode) { |
| 1422 | ret = -ENOENT; |
| 1423 | goto out; |
| 1424 | } |
| 1425 | ret = btrfs_unlink_inode(trans, root, BTRFS_I(dir), BTRFS_I(other_inode), |
| 1426 | name, namelen); |
| 1427 | if (ret) |
| 1428 | goto out; |
| 1429 | /* |
| 1430 | * If we dropped the link count to 0, bump it so that later the iput() |
| 1431 | * on the inode will not free it. We will fixup the link count later. |
| 1432 | */ |
| 1433 | if (other_inode->i_nlink == 0) |
| 1434 | inc_nlink(other_inode); |
| 1435 | |
| 1436 | ret = btrfs_run_delayed_items(trans); |
| 1437 | if (ret) |
| 1438 | goto out; |
| 1439 | add_link: |
| 1440 | ret = btrfs_add_link(trans, BTRFS_I(dir), BTRFS_I(inode), |
| 1441 | name, namelen, 0, ref_index); |
| 1442 | out: |
| 1443 | iput(other_inode); |
| 1444 | btrfs_free_path(path); |
| 1445 | |
| 1446 | return ret; |
| 1447 | } |
| 1448 | |
Filipe Manana | 1f250e9 | 2018-02-28 15:56:10 +0000 | [diff] [blame] | 1449 | /* |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1450 | * replay one inode back reference item found in the log tree. |
| 1451 | * eb, slot and key refer to the buffer and key found in the log tree. |
| 1452 | * root is the destination we are replaying into, and path is for temp |
| 1453 | * use by this function. (it should be released on return). |
| 1454 | */ |
| 1455 | static noinline int add_inode_ref(struct btrfs_trans_handle *trans, |
| 1456 | struct btrfs_root *root, |
| 1457 | struct btrfs_root *log, |
| 1458 | struct btrfs_path *path, |
| 1459 | struct extent_buffer *eb, int slot, |
| 1460 | struct btrfs_key *key) |
| 1461 | { |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1462 | struct inode *dir = NULL; |
| 1463 | struct inode *inode = NULL; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1464 | unsigned long ref_ptr; |
| 1465 | unsigned long ref_end; |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1466 | char *name = NULL; |
liubo | 34f3e4f | 2011-08-06 08:35:23 +0000 | [diff] [blame] | 1467 | int namelen; |
| 1468 | int ret; |
liubo | c622ae6 | 2011-03-26 08:01:12 -0400 | [diff] [blame] | 1469 | int search_done = 0; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1470 | int log_ref_ver = 0; |
| 1471 | u64 parent_objectid; |
| 1472 | u64 inode_objectid; |
Chris Mason | f46dbe3 | 2012-10-09 11:17:20 -0400 | [diff] [blame] | 1473 | u64 ref_index = 0; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1474 | int ref_struct_size; |
| 1475 | |
| 1476 | ref_ptr = btrfs_item_ptr_offset(eb, slot); |
| 1477 | ref_end = ref_ptr + btrfs_item_size_nr(eb, slot); |
| 1478 | |
| 1479 | if (key->type == BTRFS_INODE_EXTREF_KEY) { |
| 1480 | struct btrfs_inode_extref *r; |
| 1481 | |
| 1482 | ref_struct_size = sizeof(struct btrfs_inode_extref); |
| 1483 | log_ref_ver = 1; |
| 1484 | r = (struct btrfs_inode_extref *)ref_ptr; |
| 1485 | parent_objectid = btrfs_inode_extref_parent(eb, r); |
| 1486 | } else { |
| 1487 | ref_struct_size = sizeof(struct btrfs_inode_ref); |
| 1488 | parent_objectid = key->offset; |
| 1489 | } |
| 1490 | inode_objectid = key->objectid; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1491 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1492 | /* |
| 1493 | * it is possible that we didn't log all the parent directories |
| 1494 | * for a given inode. If we don't find the dir, just don't |
| 1495 | * copy the back ref in. The link count fixup code will take |
| 1496 | * care of the rest |
| 1497 | */ |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1498 | dir = read_one_inode(root, parent_objectid); |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1499 | if (!dir) { |
| 1500 | ret = -ENOENT; |
| 1501 | goto out; |
| 1502 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1503 | |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1504 | inode = read_one_inode(root, inode_objectid); |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 1505 | if (!inode) { |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1506 | ret = -EIO; |
| 1507 | goto out; |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 1508 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1509 | |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1510 | while (ref_ptr < ref_end) { |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1511 | if (log_ref_ver) { |
Qu Wenruo | bae15d9 | 2017-11-08 08:54:26 +0800 | [diff] [blame] | 1512 | ret = extref_get_fields(eb, ref_ptr, &namelen, &name, |
| 1513 | &ref_index, &parent_objectid); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1514 | /* |
| 1515 | * parent object can change from one array |
| 1516 | * item to another. |
| 1517 | */ |
| 1518 | if (!dir) |
| 1519 | dir = read_one_inode(root, parent_objectid); |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1520 | if (!dir) { |
| 1521 | ret = -ENOENT; |
| 1522 | goto out; |
| 1523 | } |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1524 | } else { |
Qu Wenruo | bae15d9 | 2017-11-08 08:54:26 +0800 | [diff] [blame] | 1525 | ret = ref_get_fields(eb, ref_ptr, &namelen, &name, |
| 1526 | &ref_index); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1527 | } |
| 1528 | if (ret) |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1529 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1530 | |
Filipe Manana | 77a5b9e | 2021-10-01 13:52:30 +0100 | [diff] [blame] | 1531 | ret = inode_in_dir(root, path, btrfs_ino(BTRFS_I(dir)), |
| 1532 | btrfs_ino(BTRFS_I(inode)), ref_index, |
| 1533 | name, namelen); |
| 1534 | if (ret < 0) { |
| 1535 | goto out; |
| 1536 | } else if (ret == 0) { |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1537 | /* |
| 1538 | * look for a conflicting back reference in the |
| 1539 | * metadata. if we find one we have to unlink that name |
| 1540 | * of the file before we add our new link. Later on, we |
| 1541 | * overwrite any existing back reference, and we don't |
| 1542 | * want to create dangling pointers in the directory. |
| 1543 | */ |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1544 | |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1545 | if (!search_done) { |
| 1546 | ret = __add_inode_ref(trans, root, path, log, |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1547 | BTRFS_I(dir), |
David Sterba | d75eefd | 2017-02-10 20:20:19 +0100 | [diff] [blame] | 1548 | BTRFS_I(inode), |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1549 | inode_objectid, |
| 1550 | parent_objectid, |
| 1551 | ref_index, name, namelen, |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1552 | &search_done); |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1553 | if (ret) { |
| 1554 | if (ret == 1) |
| 1555 | ret = 0; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1556 | goto out; |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1557 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1558 | } |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1559 | |
Filipe Manana | 0d83639 | 2018-07-20 10:59:06 +0100 | [diff] [blame] | 1560 | /* |
| 1561 | * If a reference item already exists for this inode |
| 1562 | * with the same parent and name, but different index, |
| 1563 | * drop it and the corresponding directory index entries |
| 1564 | * from the parent before adding the new reference item |
| 1565 | * and dir index entries, otherwise we would fail with |
| 1566 | * -EEXIST returned from btrfs_add_link() below. |
| 1567 | */ |
| 1568 | ret = btrfs_inode_ref_exists(inode, dir, key->type, |
| 1569 | name, namelen); |
| 1570 | if (ret > 0) { |
| 1571 | ret = btrfs_unlink_inode(trans, root, |
| 1572 | BTRFS_I(dir), |
| 1573 | BTRFS_I(inode), |
| 1574 | name, namelen); |
| 1575 | /* |
| 1576 | * If we dropped the link count to 0, bump it so |
| 1577 | * that later the iput() on the inode will not |
| 1578 | * free it. We will fixup the link count later. |
| 1579 | */ |
| 1580 | if (!ret && inode->i_nlink == 0) |
| 1581 | inc_nlink(inode); |
| 1582 | } |
| 1583 | if (ret < 0) |
| 1584 | goto out; |
| 1585 | |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1586 | /* insert our name */ |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 1587 | ret = add_link(trans, root, dir, inode, name, namelen, |
| 1588 | ref_index); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1589 | if (ret) |
| 1590 | goto out; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1591 | |
Josef Bacik | f96d447 | 2021-05-19 11:26:25 -0400 | [diff] [blame] | 1592 | ret = btrfs_update_inode(trans, root, BTRFS_I(inode)); |
| 1593 | if (ret) |
| 1594 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1595 | } |
Filipe Manana | 77a5b9e | 2021-10-01 13:52:30 +0100 | [diff] [blame] | 1596 | /* Else, ret == 1, we already have a perfect match, we're done. */ |
liubo | c622ae6 | 2011-03-26 08:01:12 -0400 | [diff] [blame] | 1597 | |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1598 | ref_ptr = (unsigned long)(ref_ptr + ref_struct_size) + namelen; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1599 | kfree(name); |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1600 | name = NULL; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1601 | if (log_ref_ver) { |
| 1602 | iput(dir); |
| 1603 | dir = NULL; |
| 1604 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1605 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1606 | |
Filipe Manana | 1f250e9 | 2018-02-28 15:56:10 +0000 | [diff] [blame] | 1607 | /* |
| 1608 | * Before we overwrite the inode reference item in the subvolume tree |
| 1609 | * with the item from the log tree, we must unlink all names from the |
| 1610 | * parent directory that are in the subvolume's tree inode reference |
| 1611 | * item, otherwise we end up with an inconsistent subvolume tree where |
| 1612 | * dir index entries exist for a name but there is no inode reference |
| 1613 | * item with the same name. |
| 1614 | */ |
| 1615 | ret = unlink_old_inode_refs(trans, root, path, BTRFS_I(inode), eb, slot, |
| 1616 | key); |
| 1617 | if (ret) |
| 1618 | goto out; |
| 1619 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1620 | /* finally write the back reference in the inode */ |
| 1621 | ret = overwrite_item(trans, root, path, eb, slot, key); |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1622 | out: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1623 | btrfs_release_path(path); |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1624 | kfree(name); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1625 | iput(dir); |
| 1626 | iput(inode); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1627 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1628 | } |
| 1629 | |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1630 | static int count_inode_extrefs(struct btrfs_root *root, |
Nikolay Borisov | 3628365 | 2017-01-18 00:31:49 +0200 | [diff] [blame] | 1631 | struct btrfs_inode *inode, struct btrfs_path *path) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1632 | { |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1633 | int ret = 0; |
| 1634 | int name_len; |
| 1635 | unsigned int nlink = 0; |
| 1636 | u32 item_size; |
| 1637 | u32 cur_offset = 0; |
Nikolay Borisov | 3628365 | 2017-01-18 00:31:49 +0200 | [diff] [blame] | 1638 | u64 inode_objectid = btrfs_ino(inode); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1639 | u64 offset = 0; |
| 1640 | unsigned long ptr; |
| 1641 | struct btrfs_inode_extref *extref; |
| 1642 | struct extent_buffer *leaf; |
| 1643 | |
| 1644 | while (1) { |
| 1645 | ret = btrfs_find_one_extref(root, inode_objectid, offset, path, |
| 1646 | &extref, &offset); |
| 1647 | if (ret) |
| 1648 | break; |
| 1649 | |
| 1650 | leaf = path->nodes[0]; |
| 1651 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1652 | ptr = btrfs_item_ptr_offset(leaf, path->slots[0]); |
Filipe Manana | 2c2c452 | 2015-01-13 16:40:04 +0000 | [diff] [blame] | 1653 | cur_offset = 0; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1654 | |
| 1655 | while (cur_offset < item_size) { |
| 1656 | extref = (struct btrfs_inode_extref *) (ptr + cur_offset); |
| 1657 | name_len = btrfs_inode_extref_name_len(leaf, extref); |
| 1658 | |
| 1659 | nlink++; |
| 1660 | |
| 1661 | cur_offset += name_len + sizeof(*extref); |
| 1662 | } |
| 1663 | |
| 1664 | offset++; |
| 1665 | btrfs_release_path(path); |
| 1666 | } |
| 1667 | btrfs_release_path(path); |
| 1668 | |
Filipe Manana | 2c2c452 | 2015-01-13 16:40:04 +0000 | [diff] [blame] | 1669 | if (ret < 0 && ret != -ENOENT) |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1670 | return ret; |
| 1671 | return nlink; |
| 1672 | } |
| 1673 | |
| 1674 | static int count_inode_refs(struct btrfs_root *root, |
Nikolay Borisov | f329e31 | 2017-01-18 00:31:50 +0200 | [diff] [blame] | 1675 | struct btrfs_inode *inode, struct btrfs_path *path) |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1676 | { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1677 | int ret; |
| 1678 | struct btrfs_key key; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1679 | unsigned int nlink = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1680 | unsigned long ptr; |
| 1681 | unsigned long ptr_end; |
| 1682 | int name_len; |
Nikolay Borisov | f329e31 | 2017-01-18 00:31:50 +0200 | [diff] [blame] | 1683 | u64 ino = btrfs_ino(inode); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1684 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1685 | key.objectid = ino; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1686 | key.type = BTRFS_INODE_REF_KEY; |
| 1687 | key.offset = (u64)-1; |
| 1688 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1689 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1690 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 1691 | if (ret < 0) |
| 1692 | break; |
| 1693 | if (ret > 0) { |
| 1694 | if (path->slots[0] == 0) |
| 1695 | break; |
| 1696 | path->slots[0]--; |
| 1697 | } |
Filipe David Borba Manana | e93ae26 | 2013-10-14 22:49:11 +0100 | [diff] [blame] | 1698 | process_slot: |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1699 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 1700 | path->slots[0]); |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1701 | if (key.objectid != ino || |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1702 | key.type != BTRFS_INODE_REF_KEY) |
| 1703 | break; |
| 1704 | ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]); |
| 1705 | ptr_end = ptr + btrfs_item_size_nr(path->nodes[0], |
| 1706 | path->slots[0]); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1707 | while (ptr < ptr_end) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1708 | struct btrfs_inode_ref *ref; |
| 1709 | |
| 1710 | ref = (struct btrfs_inode_ref *)ptr; |
| 1711 | name_len = btrfs_inode_ref_name_len(path->nodes[0], |
| 1712 | ref); |
| 1713 | ptr = (unsigned long)(ref + 1) + name_len; |
| 1714 | nlink++; |
| 1715 | } |
| 1716 | |
| 1717 | if (key.offset == 0) |
| 1718 | break; |
Filipe David Borba Manana | e93ae26 | 2013-10-14 22:49:11 +0100 | [diff] [blame] | 1719 | if (path->slots[0] > 0) { |
| 1720 | path->slots[0]--; |
| 1721 | goto process_slot; |
| 1722 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1723 | key.offset--; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1724 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1725 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1726 | btrfs_release_path(path); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1727 | |
| 1728 | return nlink; |
| 1729 | } |
| 1730 | |
| 1731 | /* |
| 1732 | * There are a few corners where the link count of the file can't |
| 1733 | * be properly maintained during replay. So, instead of adding |
| 1734 | * lots of complexity to the log code, we just scan the backrefs |
| 1735 | * for any file that has been through replay. |
| 1736 | * |
| 1737 | * The scan will update the link count on the inode to reflect the |
| 1738 | * number of back refs found. If it goes down to zero, the iput |
| 1739 | * will free the inode. |
| 1740 | */ |
| 1741 | static noinline int fixup_inode_link_count(struct btrfs_trans_handle *trans, |
| 1742 | struct btrfs_root *root, |
| 1743 | struct inode *inode) |
| 1744 | { |
| 1745 | struct btrfs_path *path; |
| 1746 | int ret; |
| 1747 | u64 nlink = 0; |
Nikolay Borisov | 4a0cc7c | 2017-01-10 20:35:31 +0200 | [diff] [blame] | 1748 | u64 ino = btrfs_ino(BTRFS_I(inode)); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1749 | |
| 1750 | path = btrfs_alloc_path(); |
| 1751 | if (!path) |
| 1752 | return -ENOMEM; |
| 1753 | |
Nikolay Borisov | f329e31 | 2017-01-18 00:31:50 +0200 | [diff] [blame] | 1754 | ret = count_inode_refs(root, BTRFS_I(inode), path); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1755 | if (ret < 0) |
| 1756 | goto out; |
| 1757 | |
| 1758 | nlink = ret; |
| 1759 | |
Nikolay Borisov | 3628365 | 2017-01-18 00:31:49 +0200 | [diff] [blame] | 1760 | ret = count_inode_extrefs(root, BTRFS_I(inode), path); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1761 | if (ret < 0) |
| 1762 | goto out; |
| 1763 | |
| 1764 | nlink += ret; |
| 1765 | |
| 1766 | ret = 0; |
| 1767 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1768 | if (nlink != inode->i_nlink) { |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 1769 | set_nlink(inode, nlink); |
Josef Bacik | f96d447 | 2021-05-19 11:26:25 -0400 | [diff] [blame] | 1770 | ret = btrfs_update_inode(trans, root, BTRFS_I(inode)); |
| 1771 | if (ret) |
| 1772 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1773 | } |
Chris Mason | 8d5bf1c | 2008-09-11 15:51:21 -0400 | [diff] [blame] | 1774 | BTRFS_I(inode)->index_cnt = (u64)-1; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1775 | |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 1776 | if (inode->i_nlink == 0) { |
| 1777 | if (S_ISDIR(inode->i_mode)) { |
| 1778 | ret = replay_dir_deletes(trans, root, NULL, path, |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1779 | ino, 1); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1780 | if (ret) |
| 1781 | goto out; |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 1782 | } |
Nikolay Borisov | ecdcf3c | 2020-10-22 18:40:46 +0300 | [diff] [blame] | 1783 | ret = btrfs_insert_orphan_item(trans, root, ino); |
| 1784 | if (ret == -EEXIST) |
| 1785 | ret = 0; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 1786 | } |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 1787 | |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1788 | out: |
| 1789 | btrfs_free_path(path); |
| 1790 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1791 | } |
| 1792 | |
| 1793 | static noinline int fixup_inode_link_counts(struct btrfs_trans_handle *trans, |
| 1794 | struct btrfs_root *root, |
| 1795 | struct btrfs_path *path) |
| 1796 | { |
| 1797 | int ret; |
| 1798 | struct btrfs_key key; |
| 1799 | struct inode *inode; |
| 1800 | |
| 1801 | key.objectid = BTRFS_TREE_LOG_FIXUP_OBJECTID; |
| 1802 | key.type = BTRFS_ORPHAN_ITEM_KEY; |
| 1803 | key.offset = (u64)-1; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1804 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1805 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1806 | if (ret < 0) |
| 1807 | break; |
| 1808 | |
| 1809 | if (ret == 1) { |
Josef Bacik | 011b28a | 2021-05-19 13:13:15 -0400 | [diff] [blame] | 1810 | ret = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1811 | if (path->slots[0] == 0) |
| 1812 | break; |
| 1813 | path->slots[0]--; |
| 1814 | } |
| 1815 | |
| 1816 | btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]); |
| 1817 | if (key.objectid != BTRFS_TREE_LOG_FIXUP_OBJECTID || |
| 1818 | key.type != BTRFS_ORPHAN_ITEM_KEY) |
| 1819 | break; |
| 1820 | |
| 1821 | ret = btrfs_del_item(trans, root, path); |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 1822 | if (ret) |
Josef Bacik | 011b28a | 2021-05-19 13:13:15 -0400 | [diff] [blame] | 1823 | break; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1824 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1825 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1826 | inode = read_one_inode(root, key.offset); |
Josef Bacik | 011b28a | 2021-05-19 13:13:15 -0400 | [diff] [blame] | 1827 | if (!inode) { |
| 1828 | ret = -EIO; |
| 1829 | break; |
| 1830 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1831 | |
| 1832 | ret = fixup_inode_link_count(trans, root, inode); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1833 | iput(inode); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1834 | if (ret) |
Josef Bacik | 011b28a | 2021-05-19 13:13:15 -0400 | [diff] [blame] | 1835 | break; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1836 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 1837 | /* |
| 1838 | * fixup on a directory may create new entries, |
| 1839 | * make sure we always look for the highset possible |
| 1840 | * offset |
| 1841 | */ |
| 1842 | key.offset = (u64)-1; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1843 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1844 | btrfs_release_path(path); |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 1845 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1846 | } |
| 1847 | |
| 1848 | |
| 1849 | /* |
| 1850 | * record a given inode in the fixup dir so we can check its link |
| 1851 | * count when replay is done. The link count is incremented here |
| 1852 | * so the inode won't go away until we check it |
| 1853 | */ |
| 1854 | static noinline int link_to_fixup_dir(struct btrfs_trans_handle *trans, |
| 1855 | struct btrfs_root *root, |
| 1856 | struct btrfs_path *path, |
| 1857 | u64 objectid) |
| 1858 | { |
| 1859 | struct btrfs_key key; |
| 1860 | int ret = 0; |
| 1861 | struct inode *inode; |
| 1862 | |
| 1863 | inode = read_one_inode(root, objectid); |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 1864 | if (!inode) |
| 1865 | return -EIO; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1866 | |
| 1867 | key.objectid = BTRFS_TREE_LOG_FIXUP_OBJECTID; |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 1868 | key.type = BTRFS_ORPHAN_ITEM_KEY; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1869 | key.offset = objectid; |
| 1870 | |
| 1871 | ret = btrfs_insert_empty_item(trans, root, path, &key, 0); |
| 1872 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1873 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1874 | if (ret == 0) { |
Josef Bacik | 9bf7a48 | 2013-03-01 13:35:47 -0500 | [diff] [blame] | 1875 | if (!inode->i_nlink) |
| 1876 | set_nlink(inode, 1); |
| 1877 | else |
Zach Brown | 8b558c5 | 2013-10-16 12:10:34 -0700 | [diff] [blame] | 1878 | inc_nlink(inode); |
Nikolay Borisov | 9a56fcd | 2020-11-02 16:48:59 +0200 | [diff] [blame] | 1879 | ret = btrfs_update_inode(trans, root, BTRFS_I(inode)); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1880 | } else if (ret == -EEXIST) { |
| 1881 | ret = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1882 | } |
| 1883 | iput(inode); |
| 1884 | |
| 1885 | return ret; |
| 1886 | } |
| 1887 | |
| 1888 | /* |
| 1889 | * when replaying the log for a directory, we only insert names |
| 1890 | * for inodes that actually exist. This means an fsync on a directory |
| 1891 | * does not implicitly fsync all the new files in it |
| 1892 | */ |
| 1893 | static noinline int insert_one_name(struct btrfs_trans_handle *trans, |
| 1894 | struct btrfs_root *root, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1895 | u64 dirid, u64 index, |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 1896 | char *name, int name_len, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1897 | struct btrfs_key *location) |
| 1898 | { |
| 1899 | struct inode *inode; |
| 1900 | struct inode *dir; |
| 1901 | int ret; |
| 1902 | |
| 1903 | inode = read_one_inode(root, location->objectid); |
| 1904 | if (!inode) |
| 1905 | return -ENOENT; |
| 1906 | |
| 1907 | dir = read_one_inode(root, dirid); |
| 1908 | if (!dir) { |
| 1909 | iput(inode); |
| 1910 | return -EIO; |
| 1911 | } |
Josef Bacik | d555438 | 2013-09-11 14:17:00 -0400 | [diff] [blame] | 1912 | |
Nikolay Borisov | db0a669 | 2017-02-20 13:51:08 +0200 | [diff] [blame] | 1913 | ret = btrfs_add_link(trans, BTRFS_I(dir), BTRFS_I(inode), name, |
| 1914 | name_len, 1, index); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1915 | |
| 1916 | /* FIXME, put inode into FIXUP list */ |
| 1917 | |
| 1918 | iput(inode); |
| 1919 | iput(dir); |
| 1920 | return ret; |
| 1921 | } |
| 1922 | |
| 1923 | /* |
| 1924 | * take a single entry in a log directory item and replay it into |
| 1925 | * the subvolume. |
| 1926 | * |
| 1927 | * if a conflicting item exists in the subdirectory already, |
| 1928 | * the inode it points to is unlinked and put into the link count |
| 1929 | * fix up tree. |
| 1930 | * |
| 1931 | * If a name from the log points to a file or directory that does |
| 1932 | * not exist in the FS, it is skipped. fsyncs on directories |
| 1933 | * do not force down inodes inside that directory, just changes to the |
| 1934 | * names or unlinks in a directory. |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 1935 | * |
| 1936 | * Returns < 0 on error, 0 if the name wasn't replayed (dentry points to a |
| 1937 | * non-existing inode) and 1 if the name was replayed. |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1938 | */ |
| 1939 | static noinline int replay_one_name(struct btrfs_trans_handle *trans, |
| 1940 | struct btrfs_root *root, |
| 1941 | struct btrfs_path *path, |
| 1942 | struct extent_buffer *eb, |
| 1943 | struct btrfs_dir_item *di, |
| 1944 | struct btrfs_key *key) |
| 1945 | { |
| 1946 | char *name; |
| 1947 | int name_len; |
| 1948 | struct btrfs_dir_item *dst_di; |
| 1949 | struct btrfs_key found_key; |
| 1950 | struct btrfs_key log_key; |
| 1951 | struct inode *dir; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1952 | u8 log_type; |
Filipe Manana | cfd3126 | 2021-10-01 13:48:18 +0100 | [diff] [blame] | 1953 | bool exists; |
| 1954 | int ret; |
Josef Bacik | d555438 | 2013-09-11 14:17:00 -0400 | [diff] [blame] | 1955 | bool update_size = (key->type == BTRFS_DIR_INDEX_KEY); |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 1956 | bool name_added = false; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1957 | |
| 1958 | dir = read_one_inode(root, key->objectid); |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 1959 | if (!dir) |
| 1960 | return -EIO; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1961 | |
| 1962 | name_len = btrfs_dir_name_len(eb, di); |
| 1963 | name = kmalloc(name_len, GFP_NOFS); |
Filipe David Borba Manana | 2bac325 | 2013-08-04 19:58:57 +0100 | [diff] [blame] | 1964 | if (!name) { |
| 1965 | ret = -ENOMEM; |
| 1966 | goto out; |
| 1967 | } |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 1968 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1969 | log_type = btrfs_dir_type(eb, di); |
| 1970 | read_extent_buffer(eb, name, (unsigned long)(di + 1), |
| 1971 | name_len); |
| 1972 | |
| 1973 | btrfs_dir_item_key_to_cpu(eb, di, &log_key); |
Filipe Manana | cfd3126 | 2021-10-01 13:48:18 +0100 | [diff] [blame] | 1974 | ret = btrfs_lookup_inode(trans, root, path, &log_key, 0); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1975 | btrfs_release_path(path); |
Filipe Manana | cfd3126 | 2021-10-01 13:48:18 +0100 | [diff] [blame] | 1976 | if (ret < 0) |
| 1977 | goto out; |
| 1978 | exists = (ret == 0); |
| 1979 | ret = 0; |
Chris Mason | 4bef084 | 2008-09-08 11:18:08 -0400 | [diff] [blame] | 1980 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1981 | if (key->type == BTRFS_DIR_ITEM_KEY) { |
| 1982 | dst_di = btrfs_lookup_dir_item(trans, root, path, key->objectid, |
| 1983 | name, name_len, 1); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1984 | } else if (key->type == BTRFS_DIR_INDEX_KEY) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1985 | dst_di = btrfs_lookup_dir_index_item(trans, root, path, |
| 1986 | key->objectid, |
| 1987 | key->offset, name, |
| 1988 | name_len, 1); |
| 1989 | } else { |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1990 | /* Corruption */ |
| 1991 | ret = -EINVAL; |
| 1992 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1993 | } |
Filipe Manana | e15ac64 | 2021-10-01 13:52:31 +0100 | [diff] [blame] | 1994 | |
Filipe Manana | e15ac64 | 2021-10-01 13:52:31 +0100 | [diff] [blame] | 1995 | if (IS_ERR(dst_di)) { |
| 1996 | ret = PTR_ERR(dst_di); |
| 1997 | goto out; |
| 1998 | } else if (!dst_di) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1999 | /* we need a sequence number to insert, so we only |
| 2000 | * do inserts for the BTRFS_DIR_INDEX_KEY types |
| 2001 | */ |
| 2002 | if (key->type != BTRFS_DIR_INDEX_KEY) |
| 2003 | goto out; |
| 2004 | goto insert; |
| 2005 | } |
| 2006 | |
| 2007 | btrfs_dir_item_key_to_cpu(path->nodes[0], dst_di, &found_key); |
| 2008 | /* the existing item matches the logged item */ |
| 2009 | if (found_key.objectid == log_key.objectid && |
| 2010 | found_key.type == log_key.type && |
| 2011 | found_key.offset == log_key.offset && |
| 2012 | btrfs_dir_type(path->nodes[0], dst_di) == log_type) { |
Filipe Manana | a2cc11d | 2014-09-08 22:53:18 +0100 | [diff] [blame] | 2013 | update_size = false; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2014 | goto out; |
| 2015 | } |
| 2016 | |
| 2017 | /* |
| 2018 | * don't drop the conflicting directory entry if the inode |
| 2019 | * for the new entry doesn't exist |
| 2020 | */ |
Chris Mason | 4bef084 | 2008-09-08 11:18:08 -0400 | [diff] [blame] | 2021 | if (!exists) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2022 | goto out; |
| 2023 | |
Nikolay Borisov | 207e7d9 | 2017-01-18 00:31:45 +0200 | [diff] [blame] | 2024 | 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] | 2025 | if (ret) |
| 2026 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2027 | |
| 2028 | if (key->type == BTRFS_DIR_INDEX_KEY) |
| 2029 | goto insert; |
| 2030 | out: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2031 | btrfs_release_path(path); |
Josef Bacik | d555438 | 2013-09-11 14:17:00 -0400 | [diff] [blame] | 2032 | if (!ret && update_size) { |
Nikolay Borisov | 6ef06d2 | 2017-02-20 13:50:34 +0200 | [diff] [blame] | 2033 | 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] | 2034 | ret = btrfs_update_inode(trans, root, BTRFS_I(dir)); |
Josef Bacik | d555438 | 2013-09-11 14:17:00 -0400 | [diff] [blame] | 2035 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2036 | kfree(name); |
| 2037 | iput(dir); |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 2038 | if (!ret && name_added) |
| 2039 | ret = 1; |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 2040 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2041 | |
| 2042 | insert: |
Nikolay Borisov | 725af92 | 2019-08-30 17:44:49 +0300 | [diff] [blame] | 2043 | /* |
| 2044 | * Check if the inode reference exists in the log for the given name, |
| 2045 | * inode and parent inode |
| 2046 | */ |
| 2047 | found_key.objectid = log_key.objectid; |
| 2048 | found_key.type = BTRFS_INODE_REF_KEY; |
| 2049 | found_key.offset = key->objectid; |
| 2050 | ret = backref_in_log(root->log_root, &found_key, 0, name, name_len); |
| 2051 | if (ret < 0) { |
| 2052 | goto out; |
| 2053 | } else if (ret) { |
| 2054 | /* The dentry will be added later. */ |
| 2055 | ret = 0; |
| 2056 | update_size = false; |
| 2057 | goto out; |
| 2058 | } |
| 2059 | |
| 2060 | found_key.objectid = log_key.objectid; |
| 2061 | found_key.type = BTRFS_INODE_EXTREF_KEY; |
| 2062 | found_key.offset = key->objectid; |
| 2063 | ret = backref_in_log(root->log_root, &found_key, key->objectid, name, |
| 2064 | name_len); |
| 2065 | if (ret < 0) { |
| 2066 | goto out; |
| 2067 | } else if (ret) { |
Filipe Manana | df8d116 | 2015-01-14 01:52:25 +0000 | [diff] [blame] | 2068 | /* The dentry will be added later. */ |
| 2069 | ret = 0; |
| 2070 | update_size = false; |
| 2071 | goto out; |
| 2072 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2073 | btrfs_release_path(path); |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 2074 | ret = insert_one_name(trans, root, key->objectid, key->offset, |
| 2075 | name, name_len, &log_key); |
Filipe Manana | df8d116 | 2015-01-14 01:52:25 +0000 | [diff] [blame] | 2076 | if (ret && ret != -ENOENT && ret != -EEXIST) |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 2077 | goto out; |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 2078 | if (!ret) |
| 2079 | name_added = true; |
Josef Bacik | d555438 | 2013-09-11 14:17:00 -0400 | [diff] [blame] | 2080 | update_size = false; |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 2081 | ret = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2082 | goto out; |
| 2083 | } |
| 2084 | |
| 2085 | /* |
| 2086 | * find all the names in a directory item and reconcile them into |
| 2087 | * the subvolume. Only BTRFS_DIR_ITEM_KEY types will have more than |
| 2088 | * one name in a directory item, but the same code gets used for |
| 2089 | * both directory index types |
| 2090 | */ |
| 2091 | static noinline int replay_one_dir_item(struct btrfs_trans_handle *trans, |
| 2092 | struct btrfs_root *root, |
| 2093 | struct btrfs_path *path, |
| 2094 | struct extent_buffer *eb, int slot, |
| 2095 | struct btrfs_key *key) |
| 2096 | { |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 2097 | int ret = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2098 | u32 item_size = btrfs_item_size_nr(eb, slot); |
| 2099 | struct btrfs_dir_item *di; |
| 2100 | int name_len; |
| 2101 | unsigned long ptr; |
| 2102 | unsigned long ptr_end; |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 2103 | struct btrfs_path *fixup_path = NULL; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2104 | |
| 2105 | ptr = btrfs_item_ptr_offset(eb, slot); |
| 2106 | ptr_end = ptr + item_size; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2107 | while (ptr < ptr_end) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2108 | di = (struct btrfs_dir_item *)ptr; |
| 2109 | name_len = btrfs_dir_name_len(eb, di); |
| 2110 | ret = replay_one_name(trans, root, path, eb, di, key); |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 2111 | if (ret < 0) |
| 2112 | break; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2113 | ptr = (unsigned long)(di + 1); |
| 2114 | ptr += name_len; |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 2115 | |
| 2116 | /* |
| 2117 | * If this entry refers to a non-directory (directories can not |
| 2118 | * have a link count > 1) and it was added in the transaction |
| 2119 | * that was not committed, make sure we fixup the link count of |
| 2120 | * the inode it the entry points to. Otherwise something like |
| 2121 | * the following would result in a directory pointing to an |
| 2122 | * inode with a wrong link that does not account for this dir |
| 2123 | * entry: |
| 2124 | * |
| 2125 | * mkdir testdir |
| 2126 | * touch testdir/foo |
| 2127 | * touch testdir/bar |
| 2128 | * sync |
| 2129 | * |
| 2130 | * ln testdir/bar testdir/bar_link |
| 2131 | * ln testdir/foo testdir/foo_link |
| 2132 | * xfs_io -c "fsync" testdir/bar |
| 2133 | * |
| 2134 | * <power failure> |
| 2135 | * |
| 2136 | * mount fs, log replay happens |
| 2137 | * |
| 2138 | * File foo would remain with a link count of 1 when it has two |
| 2139 | * entries pointing to it in the directory testdir. This would |
| 2140 | * make it impossible to ever delete the parent directory has |
| 2141 | * it would result in stale dentries that can never be deleted. |
| 2142 | */ |
| 2143 | if (ret == 1 && btrfs_dir_type(eb, di) != BTRFS_FT_DIR) { |
| 2144 | struct btrfs_key di_key; |
| 2145 | |
| 2146 | if (!fixup_path) { |
| 2147 | fixup_path = btrfs_alloc_path(); |
| 2148 | if (!fixup_path) { |
| 2149 | ret = -ENOMEM; |
| 2150 | break; |
| 2151 | } |
| 2152 | } |
| 2153 | |
| 2154 | btrfs_dir_item_key_to_cpu(eb, di, &di_key); |
| 2155 | ret = link_to_fixup_dir(trans, root, fixup_path, |
| 2156 | di_key.objectid); |
| 2157 | if (ret) |
| 2158 | break; |
| 2159 | } |
| 2160 | ret = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2161 | } |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 2162 | btrfs_free_path(fixup_path); |
| 2163 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2164 | } |
| 2165 | |
| 2166 | /* |
| 2167 | * directory replay has two parts. There are the standard directory |
| 2168 | * items in the log copied from the subvolume, and range items |
| 2169 | * created in the log while the subvolume was logged. |
| 2170 | * |
| 2171 | * The range items tell us which parts of the key space the log |
| 2172 | * is authoritative for. During replay, if a key in the subvolume |
| 2173 | * directory is in a logged range item, but not actually in the log |
| 2174 | * that means it was deleted from the directory before the fsync |
| 2175 | * and should be removed. |
| 2176 | */ |
| 2177 | static noinline int find_dir_range(struct btrfs_root *root, |
| 2178 | struct btrfs_path *path, |
| 2179 | u64 dirid, int key_type, |
| 2180 | u64 *start_ret, u64 *end_ret) |
| 2181 | { |
| 2182 | struct btrfs_key key; |
| 2183 | u64 found_end; |
| 2184 | struct btrfs_dir_log_item *item; |
| 2185 | int ret; |
| 2186 | int nritems; |
| 2187 | |
| 2188 | if (*start_ret == (u64)-1) |
| 2189 | return 1; |
| 2190 | |
| 2191 | key.objectid = dirid; |
| 2192 | key.type = key_type; |
| 2193 | key.offset = *start_ret; |
| 2194 | |
| 2195 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 2196 | if (ret < 0) |
| 2197 | goto out; |
| 2198 | if (ret > 0) { |
| 2199 | if (path->slots[0] == 0) |
| 2200 | goto out; |
| 2201 | path->slots[0]--; |
| 2202 | } |
| 2203 | if (ret != 0) |
| 2204 | btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]); |
| 2205 | |
| 2206 | if (key.type != key_type || key.objectid != dirid) { |
| 2207 | ret = 1; |
| 2208 | goto next; |
| 2209 | } |
| 2210 | item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 2211 | struct btrfs_dir_log_item); |
| 2212 | found_end = btrfs_dir_log_end(path->nodes[0], item); |
| 2213 | |
| 2214 | if (*start_ret >= key.offset && *start_ret <= found_end) { |
| 2215 | ret = 0; |
| 2216 | *start_ret = key.offset; |
| 2217 | *end_ret = found_end; |
| 2218 | goto out; |
| 2219 | } |
| 2220 | ret = 1; |
| 2221 | next: |
| 2222 | /* check the next slot in the tree to see if it is a valid item */ |
| 2223 | nritems = btrfs_header_nritems(path->nodes[0]); |
Robbie Ko | 2a7bf53 | 2016-10-07 17:30:47 +0800 | [diff] [blame] | 2224 | path->slots[0]++; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2225 | if (path->slots[0] >= nritems) { |
| 2226 | ret = btrfs_next_leaf(root, path); |
| 2227 | if (ret) |
| 2228 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2229 | } |
| 2230 | |
| 2231 | btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]); |
| 2232 | |
| 2233 | if (key.type != key_type || key.objectid != dirid) { |
| 2234 | ret = 1; |
| 2235 | goto out; |
| 2236 | } |
| 2237 | item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 2238 | struct btrfs_dir_log_item); |
| 2239 | found_end = btrfs_dir_log_end(path->nodes[0], item); |
| 2240 | *start_ret = key.offset; |
| 2241 | *end_ret = found_end; |
| 2242 | ret = 0; |
| 2243 | out: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2244 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2245 | return ret; |
| 2246 | } |
| 2247 | |
| 2248 | /* |
| 2249 | * this looks for a given directory item in the log. If the directory |
| 2250 | * item is not in the log, the item is removed and the inode it points |
| 2251 | * to is unlinked |
| 2252 | */ |
| 2253 | static noinline int check_item_in_log(struct btrfs_trans_handle *trans, |
| 2254 | struct btrfs_root *root, |
| 2255 | struct btrfs_root *log, |
| 2256 | struct btrfs_path *path, |
| 2257 | struct btrfs_path *log_path, |
| 2258 | struct inode *dir, |
| 2259 | struct btrfs_key *dir_key) |
| 2260 | { |
| 2261 | int ret; |
| 2262 | struct extent_buffer *eb; |
| 2263 | int slot; |
| 2264 | u32 item_size; |
| 2265 | struct btrfs_dir_item *di; |
| 2266 | struct btrfs_dir_item *log_di; |
| 2267 | int name_len; |
| 2268 | unsigned long ptr; |
| 2269 | unsigned long ptr_end; |
| 2270 | char *name; |
| 2271 | struct inode *inode; |
| 2272 | struct btrfs_key location; |
| 2273 | |
| 2274 | again: |
| 2275 | eb = path->nodes[0]; |
| 2276 | slot = path->slots[0]; |
| 2277 | item_size = btrfs_item_size_nr(eb, slot); |
| 2278 | ptr = btrfs_item_ptr_offset(eb, slot); |
| 2279 | ptr_end = ptr + item_size; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2280 | while (ptr < ptr_end) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2281 | di = (struct btrfs_dir_item *)ptr; |
| 2282 | name_len = btrfs_dir_name_len(eb, di); |
| 2283 | name = kmalloc(name_len, GFP_NOFS); |
| 2284 | if (!name) { |
| 2285 | ret = -ENOMEM; |
| 2286 | goto out; |
| 2287 | } |
| 2288 | read_extent_buffer(eb, name, (unsigned long)(di + 1), |
| 2289 | name_len); |
| 2290 | log_di = NULL; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2291 | if (log && dir_key->type == BTRFS_DIR_ITEM_KEY) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2292 | log_di = btrfs_lookup_dir_item(trans, log, log_path, |
| 2293 | dir_key->objectid, |
| 2294 | name, name_len, 0); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2295 | } else if (log && dir_key->type == BTRFS_DIR_INDEX_KEY) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2296 | log_di = btrfs_lookup_dir_index_item(trans, log, |
| 2297 | log_path, |
| 2298 | dir_key->objectid, |
| 2299 | dir_key->offset, |
| 2300 | name, name_len, 0); |
| 2301 | } |
Filipe Manana | 8dcbc26 | 2021-10-01 13:52:33 +0100 | [diff] [blame] | 2302 | if (!log_di) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2303 | btrfs_dir_item_key_to_cpu(eb, di, &location); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2304 | btrfs_release_path(path); |
| 2305 | btrfs_release_path(log_path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2306 | inode = read_one_inode(root, location.objectid); |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 2307 | if (!inode) { |
| 2308 | kfree(name); |
| 2309 | return -EIO; |
| 2310 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2311 | |
| 2312 | ret = link_to_fixup_dir(trans, root, |
| 2313 | path, location.objectid); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 2314 | if (ret) { |
| 2315 | kfree(name); |
| 2316 | iput(inode); |
| 2317 | goto out; |
| 2318 | } |
| 2319 | |
Zach Brown | 8b558c5 | 2013-10-16 12:10:34 -0700 | [diff] [blame] | 2320 | inc_nlink(inode); |
Nikolay Borisov | 4ec5934 | 2017-01-18 00:31:44 +0200 | [diff] [blame] | 2321 | ret = btrfs_unlink_inode(trans, root, BTRFS_I(dir), |
| 2322 | BTRFS_I(inode), name, name_len); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 2323 | if (!ret) |
Nikolay Borisov | e5c304e6 | 2018-02-07 17:55:43 +0200 | [diff] [blame] | 2324 | ret = btrfs_run_delayed_items(trans); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2325 | kfree(name); |
| 2326 | iput(inode); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 2327 | if (ret) |
| 2328 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2329 | |
| 2330 | /* there might still be more names under this key |
| 2331 | * check and repeat if required |
| 2332 | */ |
| 2333 | ret = btrfs_search_slot(NULL, root, dir_key, path, |
| 2334 | 0, 0); |
| 2335 | if (ret == 0) |
| 2336 | goto again; |
| 2337 | ret = 0; |
| 2338 | goto out; |
Filipe David Borba Manana | 269d040 | 2013-10-28 17:39:21 +0000 | [diff] [blame] | 2339 | } else if (IS_ERR(log_di)) { |
| 2340 | kfree(name); |
| 2341 | return PTR_ERR(log_di); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2342 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2343 | btrfs_release_path(log_path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2344 | kfree(name); |
| 2345 | |
| 2346 | ptr = (unsigned long)(di + 1); |
| 2347 | ptr += name_len; |
| 2348 | } |
| 2349 | ret = 0; |
| 2350 | out: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2351 | btrfs_release_path(path); |
| 2352 | btrfs_release_path(log_path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2353 | return ret; |
| 2354 | } |
| 2355 | |
Filipe Manana | 4f764e5 | 2015-02-23 19:53:35 +0000 | [diff] [blame] | 2356 | static int replay_xattr_deletes(struct btrfs_trans_handle *trans, |
| 2357 | struct btrfs_root *root, |
| 2358 | struct btrfs_root *log, |
| 2359 | struct btrfs_path *path, |
| 2360 | const u64 ino) |
| 2361 | { |
| 2362 | struct btrfs_key search_key; |
| 2363 | struct btrfs_path *log_path; |
| 2364 | int i; |
| 2365 | int nritems; |
| 2366 | int ret; |
| 2367 | |
| 2368 | log_path = btrfs_alloc_path(); |
| 2369 | if (!log_path) |
| 2370 | return -ENOMEM; |
| 2371 | |
| 2372 | search_key.objectid = ino; |
| 2373 | search_key.type = BTRFS_XATTR_ITEM_KEY; |
| 2374 | search_key.offset = 0; |
| 2375 | again: |
| 2376 | ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0); |
| 2377 | if (ret < 0) |
| 2378 | goto out; |
| 2379 | process_leaf: |
| 2380 | nritems = btrfs_header_nritems(path->nodes[0]); |
| 2381 | for (i = path->slots[0]; i < nritems; i++) { |
| 2382 | struct btrfs_key key; |
| 2383 | struct btrfs_dir_item *di; |
| 2384 | struct btrfs_dir_item *log_di; |
| 2385 | u32 total_size; |
| 2386 | u32 cur; |
| 2387 | |
| 2388 | btrfs_item_key_to_cpu(path->nodes[0], &key, i); |
| 2389 | if (key.objectid != ino || key.type != BTRFS_XATTR_ITEM_KEY) { |
| 2390 | ret = 0; |
| 2391 | goto out; |
| 2392 | } |
| 2393 | |
| 2394 | di = btrfs_item_ptr(path->nodes[0], i, struct btrfs_dir_item); |
| 2395 | total_size = btrfs_item_size_nr(path->nodes[0], i); |
| 2396 | cur = 0; |
| 2397 | while (cur < total_size) { |
| 2398 | u16 name_len = btrfs_dir_name_len(path->nodes[0], di); |
| 2399 | u16 data_len = btrfs_dir_data_len(path->nodes[0], di); |
| 2400 | u32 this_len = sizeof(*di) + name_len + data_len; |
| 2401 | char *name; |
| 2402 | |
| 2403 | name = kmalloc(name_len, GFP_NOFS); |
| 2404 | if (!name) { |
| 2405 | ret = -ENOMEM; |
| 2406 | goto out; |
| 2407 | } |
| 2408 | read_extent_buffer(path->nodes[0], name, |
| 2409 | (unsigned long)(di + 1), name_len); |
| 2410 | |
| 2411 | log_di = btrfs_lookup_xattr(NULL, log, log_path, ino, |
| 2412 | name, name_len, 0); |
| 2413 | btrfs_release_path(log_path); |
| 2414 | if (!log_di) { |
| 2415 | /* Doesn't exist in log tree, so delete it. */ |
| 2416 | btrfs_release_path(path); |
| 2417 | di = btrfs_lookup_xattr(trans, root, path, ino, |
| 2418 | name, name_len, -1); |
| 2419 | kfree(name); |
| 2420 | if (IS_ERR(di)) { |
| 2421 | ret = PTR_ERR(di); |
| 2422 | goto out; |
| 2423 | } |
| 2424 | ASSERT(di); |
| 2425 | ret = btrfs_delete_one_dir_name(trans, root, |
| 2426 | path, di); |
| 2427 | if (ret) |
| 2428 | goto out; |
| 2429 | btrfs_release_path(path); |
| 2430 | search_key = key; |
| 2431 | goto again; |
| 2432 | } |
| 2433 | kfree(name); |
| 2434 | if (IS_ERR(log_di)) { |
| 2435 | ret = PTR_ERR(log_di); |
| 2436 | goto out; |
| 2437 | } |
| 2438 | cur += this_len; |
| 2439 | di = (struct btrfs_dir_item *)((char *)di + this_len); |
| 2440 | } |
| 2441 | } |
| 2442 | ret = btrfs_next_leaf(root, path); |
| 2443 | if (ret > 0) |
| 2444 | ret = 0; |
| 2445 | else if (ret == 0) |
| 2446 | goto process_leaf; |
| 2447 | out: |
| 2448 | btrfs_free_path(log_path); |
| 2449 | btrfs_release_path(path); |
| 2450 | return ret; |
| 2451 | } |
| 2452 | |
| 2453 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2454 | /* |
| 2455 | * deletion replay happens before we copy any new directory items |
| 2456 | * out of the log or out of backreferences from inodes. It |
| 2457 | * scans the log to find ranges of keys that log is authoritative for, |
| 2458 | * and then scans the directory to find items in those ranges that are |
| 2459 | * not present in the log. |
| 2460 | * |
| 2461 | * Anything we don't find in the log is unlinked and removed from the |
| 2462 | * directory. |
| 2463 | */ |
| 2464 | static noinline int replay_dir_deletes(struct btrfs_trans_handle *trans, |
| 2465 | struct btrfs_root *root, |
| 2466 | struct btrfs_root *log, |
| 2467 | struct btrfs_path *path, |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2468 | u64 dirid, int del_all) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2469 | { |
| 2470 | u64 range_start; |
| 2471 | u64 range_end; |
| 2472 | int key_type = BTRFS_DIR_LOG_ITEM_KEY; |
| 2473 | int ret = 0; |
| 2474 | struct btrfs_key dir_key; |
| 2475 | struct btrfs_key found_key; |
| 2476 | struct btrfs_path *log_path; |
| 2477 | struct inode *dir; |
| 2478 | |
| 2479 | dir_key.objectid = dirid; |
| 2480 | dir_key.type = BTRFS_DIR_ITEM_KEY; |
| 2481 | log_path = btrfs_alloc_path(); |
| 2482 | if (!log_path) |
| 2483 | return -ENOMEM; |
| 2484 | |
| 2485 | dir = read_one_inode(root, dirid); |
| 2486 | /* it isn't an error if the inode isn't there, that can happen |
| 2487 | * because we replay the deletes before we copy in the inode item |
| 2488 | * from the log |
| 2489 | */ |
| 2490 | if (!dir) { |
| 2491 | btrfs_free_path(log_path); |
| 2492 | return 0; |
| 2493 | } |
| 2494 | again: |
| 2495 | range_start = 0; |
| 2496 | range_end = 0; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2497 | while (1) { |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2498 | if (del_all) |
| 2499 | range_end = (u64)-1; |
| 2500 | else { |
| 2501 | ret = find_dir_range(log, path, dirid, key_type, |
| 2502 | &range_start, &range_end); |
| 2503 | if (ret != 0) |
| 2504 | break; |
| 2505 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2506 | |
| 2507 | dir_key.offset = range_start; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2508 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2509 | int nritems; |
| 2510 | ret = btrfs_search_slot(NULL, root, &dir_key, path, |
| 2511 | 0, 0); |
| 2512 | if (ret < 0) |
| 2513 | goto out; |
| 2514 | |
| 2515 | nritems = btrfs_header_nritems(path->nodes[0]); |
| 2516 | if (path->slots[0] >= nritems) { |
| 2517 | ret = btrfs_next_leaf(root, path); |
Liu Bo | b98def7 | 2018-04-03 01:59:48 +0800 | [diff] [blame] | 2518 | if (ret == 1) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2519 | break; |
Liu Bo | b98def7 | 2018-04-03 01:59:48 +0800 | [diff] [blame] | 2520 | else if (ret < 0) |
| 2521 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2522 | } |
| 2523 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, |
| 2524 | path->slots[0]); |
| 2525 | if (found_key.objectid != dirid || |
| 2526 | found_key.type != dir_key.type) |
| 2527 | goto next_type; |
| 2528 | |
| 2529 | if (found_key.offset > range_end) |
| 2530 | break; |
| 2531 | |
| 2532 | ret = check_item_in_log(trans, root, log, path, |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2533 | log_path, dir, |
| 2534 | &found_key); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 2535 | if (ret) |
| 2536 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2537 | if (found_key.offset == (u64)-1) |
| 2538 | break; |
| 2539 | dir_key.offset = found_key.offset + 1; |
| 2540 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2541 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2542 | if (range_end == (u64)-1) |
| 2543 | break; |
| 2544 | range_start = range_end + 1; |
| 2545 | } |
| 2546 | |
| 2547 | next_type: |
| 2548 | ret = 0; |
| 2549 | if (key_type == BTRFS_DIR_LOG_ITEM_KEY) { |
| 2550 | key_type = BTRFS_DIR_LOG_INDEX_KEY; |
| 2551 | dir_key.type = BTRFS_DIR_INDEX_KEY; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2552 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2553 | goto again; |
| 2554 | } |
| 2555 | out: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2556 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2557 | btrfs_free_path(log_path); |
| 2558 | iput(dir); |
| 2559 | return ret; |
| 2560 | } |
| 2561 | |
| 2562 | /* |
| 2563 | * the process_func used to replay items from the log tree. This |
| 2564 | * gets called in two different stages. The first stage just looks |
| 2565 | * for inodes and makes sure they are all copied into the subvolume. |
| 2566 | * |
| 2567 | * The second stage copies all the other item types from the log into |
| 2568 | * the subvolume. The two stage approach is slower, but gets rid of |
| 2569 | * lots of complexity around inodes referencing other inodes that exist |
| 2570 | * only in the log (references come from either directory items or inode |
| 2571 | * back refs). |
| 2572 | */ |
| 2573 | 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] | 2574 | struct walk_control *wc, u64 gen, int level) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2575 | { |
| 2576 | int nritems; |
| 2577 | struct btrfs_path *path; |
| 2578 | struct btrfs_root *root = wc->replay_dest; |
| 2579 | struct btrfs_key key; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2580 | int i; |
| 2581 | int ret; |
| 2582 | |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 2583 | ret = btrfs_read_buffer(eb, gen, level, NULL); |
Tsutomu Itoh | 018642a | 2012-05-29 18:10:13 +0900 | [diff] [blame] | 2584 | if (ret) |
| 2585 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2586 | |
| 2587 | level = btrfs_header_level(eb); |
| 2588 | |
| 2589 | if (level != 0) |
| 2590 | return 0; |
| 2591 | |
| 2592 | path = btrfs_alloc_path(); |
Mark Fasheh | 1e5063d | 2011-07-12 10:46:06 -0700 | [diff] [blame] | 2593 | if (!path) |
| 2594 | return -ENOMEM; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2595 | |
| 2596 | nritems = btrfs_header_nritems(eb); |
| 2597 | for (i = 0; i < nritems; i++) { |
| 2598 | btrfs_item_key_to_cpu(eb, &key, i); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2599 | |
| 2600 | /* inode keys are done during the first stage */ |
| 2601 | if (key.type == BTRFS_INODE_ITEM_KEY && |
| 2602 | wc->stage == LOG_WALK_REPLAY_INODES) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2603 | struct btrfs_inode_item *inode_item; |
| 2604 | u32 mode; |
| 2605 | |
| 2606 | inode_item = btrfs_item_ptr(eb, i, |
| 2607 | struct btrfs_inode_item); |
Filipe Manana | f2d72f4 | 2018-10-08 11:12:55 +0100 | [diff] [blame] | 2608 | /* |
| 2609 | * If we have a tmpfile (O_TMPFILE) that got fsync'ed |
| 2610 | * and never got linked before the fsync, skip it, as |
| 2611 | * replaying it is pointless since it would be deleted |
| 2612 | * later. We skip logging tmpfiles, but it's always |
| 2613 | * possible we are replaying a log created with a kernel |
| 2614 | * that used to log tmpfiles. |
| 2615 | */ |
| 2616 | if (btrfs_inode_nlink(eb, inode_item) == 0) { |
| 2617 | wc->ignore_cur_inode = true; |
| 2618 | continue; |
| 2619 | } else { |
| 2620 | wc->ignore_cur_inode = false; |
| 2621 | } |
Filipe Manana | 4f764e5 | 2015-02-23 19:53:35 +0000 | [diff] [blame] | 2622 | ret = replay_xattr_deletes(wc->trans, root, log, |
| 2623 | path, key.objectid); |
| 2624 | if (ret) |
| 2625 | break; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2626 | mode = btrfs_inode_mode(eb, inode_item); |
| 2627 | if (S_ISDIR(mode)) { |
| 2628 | ret = replay_dir_deletes(wc->trans, |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2629 | root, log, path, key.objectid, 0); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2630 | if (ret) |
| 2631 | break; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2632 | } |
| 2633 | ret = overwrite_item(wc->trans, root, path, |
| 2634 | eb, i, &key); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2635 | if (ret) |
| 2636 | break; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2637 | |
Filipe Manana | 471d557 | 2018-04-05 22:55:12 +0100 | [diff] [blame] | 2638 | /* |
| 2639 | * Before replaying extents, truncate the inode to its |
| 2640 | * size. We need to do it now and not after log replay |
| 2641 | * because before an fsync we can have prealloc extents |
| 2642 | * added beyond the inode's i_size. If we did it after, |
| 2643 | * through orphan cleanup for example, we would drop |
| 2644 | * those prealloc extents just after replaying them. |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2645 | */ |
| 2646 | if (S_ISREG(mode)) { |
Filipe Manana | 5893dfb | 2020-11-04 11:07:32 +0000 | [diff] [blame] | 2647 | struct btrfs_drop_extents_args drop_args = { 0 }; |
Filipe Manana | 471d557 | 2018-04-05 22:55:12 +0100 | [diff] [blame] | 2648 | struct inode *inode; |
| 2649 | u64 from; |
| 2650 | |
| 2651 | inode = read_one_inode(root, key.objectid); |
| 2652 | if (!inode) { |
| 2653 | ret = -EIO; |
| 2654 | break; |
| 2655 | } |
| 2656 | from = ALIGN(i_size_read(inode), |
| 2657 | root->fs_info->sectorsize); |
Filipe Manana | 5893dfb | 2020-11-04 11:07:32 +0000 | [diff] [blame] | 2658 | drop_args.start = from; |
| 2659 | drop_args.end = (u64)-1; |
| 2660 | drop_args.drop_cache = true; |
| 2661 | ret = btrfs_drop_extents(wc->trans, root, |
| 2662 | BTRFS_I(inode), |
| 2663 | &drop_args); |
Filipe Manana | 471d557 | 2018-04-05 22:55:12 +0100 | [diff] [blame] | 2664 | if (!ret) { |
Filipe Manana | 2766ff6 | 2020-11-04 11:07:34 +0000 | [diff] [blame] | 2665 | inode_sub_bytes(inode, |
| 2666 | drop_args.bytes_found); |
Filipe Manana | f2d72f4 | 2018-10-08 11:12:55 +0100 | [diff] [blame] | 2667 | /* Update the inode's nbytes. */ |
Filipe Manana | 471d557 | 2018-04-05 22:55:12 +0100 | [diff] [blame] | 2668 | ret = btrfs_update_inode(wc->trans, |
Nikolay Borisov | 9a56fcd | 2020-11-02 16:48:59 +0200 | [diff] [blame] | 2669 | root, BTRFS_I(inode)); |
Filipe Manana | 471d557 | 2018-04-05 22:55:12 +0100 | [diff] [blame] | 2670 | } |
| 2671 | iput(inode); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2672 | if (ret) |
| 2673 | break; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2674 | } |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 2675 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2676 | ret = link_to_fixup_dir(wc->trans, root, |
| 2677 | path, key.objectid); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2678 | if (ret) |
| 2679 | break; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2680 | } |
Josef Bacik | dd8e721 | 2013-09-11 11:57:23 -0400 | [diff] [blame] | 2681 | |
Filipe Manana | f2d72f4 | 2018-10-08 11:12:55 +0100 | [diff] [blame] | 2682 | if (wc->ignore_cur_inode) |
| 2683 | continue; |
| 2684 | |
Josef Bacik | dd8e721 | 2013-09-11 11:57:23 -0400 | [diff] [blame] | 2685 | if (key.type == BTRFS_DIR_INDEX_KEY && |
| 2686 | wc->stage == LOG_WALK_REPLAY_DIR_INDEX) { |
| 2687 | ret = replay_one_dir_item(wc->trans, root, path, |
| 2688 | eb, i, &key); |
| 2689 | if (ret) |
| 2690 | break; |
| 2691 | } |
| 2692 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2693 | if (wc->stage < LOG_WALK_REPLAY_ALL) |
| 2694 | continue; |
| 2695 | |
| 2696 | /* these keys are simply copied */ |
| 2697 | if (key.type == BTRFS_XATTR_ITEM_KEY) { |
| 2698 | ret = overwrite_item(wc->trans, root, path, |
| 2699 | eb, i, &key); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2700 | if (ret) |
| 2701 | break; |
Liu Bo | 2da1c66 | 2013-05-26 13:50:29 +0000 | [diff] [blame] | 2702 | } else if (key.type == BTRFS_INODE_REF_KEY || |
| 2703 | key.type == BTRFS_INODE_EXTREF_KEY) { |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 2704 | ret = add_inode_ref(wc->trans, root, log, path, |
| 2705 | eb, i, &key); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2706 | if (ret && ret != -ENOENT) |
| 2707 | break; |
| 2708 | ret = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2709 | } else if (key.type == BTRFS_EXTENT_DATA_KEY) { |
| 2710 | ret = replay_one_extent(wc->trans, root, path, |
| 2711 | eb, i, &key); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2712 | if (ret) |
| 2713 | break; |
Josef Bacik | dd8e721 | 2013-09-11 11:57:23 -0400 | [diff] [blame] | 2714 | } else if (key.type == BTRFS_DIR_ITEM_KEY) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2715 | ret = replay_one_dir_item(wc->trans, root, path, |
| 2716 | eb, i, &key); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2717 | if (ret) |
| 2718 | break; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2719 | } |
| 2720 | } |
| 2721 | btrfs_free_path(path); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2722 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2723 | } |
| 2724 | |
Nikolay Borisov | 6787bb9 | 2020-01-20 16:09:10 +0200 | [diff] [blame] | 2725 | /* |
| 2726 | * Correctly adjust the reserved bytes occupied by a log tree extent buffer |
| 2727 | */ |
| 2728 | static void unaccount_log_buffer(struct btrfs_fs_info *fs_info, u64 start) |
| 2729 | { |
| 2730 | struct btrfs_block_group *cache; |
| 2731 | |
| 2732 | cache = btrfs_lookup_block_group(fs_info, start); |
| 2733 | if (!cache) { |
| 2734 | btrfs_err(fs_info, "unable to find block group for %llu", start); |
| 2735 | return; |
| 2736 | } |
| 2737 | |
| 2738 | spin_lock(&cache->space_info->lock); |
| 2739 | spin_lock(&cache->lock); |
| 2740 | cache->reserved -= fs_info->nodesize; |
| 2741 | cache->space_info->bytes_reserved -= fs_info->nodesize; |
| 2742 | spin_unlock(&cache->lock); |
| 2743 | spin_unlock(&cache->space_info->lock); |
| 2744 | |
| 2745 | btrfs_put_block_group(cache); |
| 2746 | } |
| 2747 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2748 | static noinline int walk_down_log_tree(struct btrfs_trans_handle *trans, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2749 | struct btrfs_root *root, |
| 2750 | struct btrfs_path *path, int *level, |
| 2751 | struct walk_control *wc) |
| 2752 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2753 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2754 | u64 bytenr; |
| 2755 | u64 ptr_gen; |
| 2756 | struct extent_buffer *next; |
| 2757 | struct extent_buffer *cur; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2758 | u32 blocksize; |
| 2759 | int ret = 0; |
| 2760 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2761 | while (*level > 0) { |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 2762 | struct btrfs_key first_key; |
| 2763 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2764 | cur = path->nodes[*level]; |
| 2765 | |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 2766 | WARN_ON(btrfs_header_level(cur) != *level); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2767 | |
| 2768 | if (path->slots[*level] >= |
| 2769 | btrfs_header_nritems(cur)) |
| 2770 | break; |
| 2771 | |
| 2772 | bytenr = btrfs_node_blockptr(cur, path->slots[*level]); |
| 2773 | ptr_gen = btrfs_node_ptr_generation(cur, path->slots[*level]); |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 2774 | btrfs_node_key_to_cpu(cur, &first_key, path->slots[*level]); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2775 | blocksize = fs_info->nodesize; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2776 | |
Josef Bacik | 3fbaf25 | 2020-11-05 10:45:20 -0500 | [diff] [blame] | 2777 | next = btrfs_find_create_tree_block(fs_info, bytenr, |
| 2778 | btrfs_header_owner(cur), |
| 2779 | *level - 1); |
Liu Bo | c871b0f | 2016-06-06 12:01:23 -0700 | [diff] [blame] | 2780 | if (IS_ERR(next)) |
| 2781 | return PTR_ERR(next); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2782 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2783 | if (*level == 1) { |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 2784 | ret = wc->process_func(root, next, wc, ptr_gen, |
| 2785 | *level - 1); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2786 | if (ret) { |
| 2787 | free_extent_buffer(next); |
Mark Fasheh | 1e5063d | 2011-07-12 10:46:06 -0700 | [diff] [blame] | 2788 | return ret; |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2789 | } |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2790 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2791 | path->slots[*level]++; |
| 2792 | if (wc->free) { |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 2793 | ret = btrfs_read_buffer(next, ptr_gen, |
| 2794 | *level - 1, &first_key); |
Tsutomu Itoh | 018642a | 2012-05-29 18:10:13 +0900 | [diff] [blame] | 2795 | if (ret) { |
| 2796 | free_extent_buffer(next); |
| 2797 | return ret; |
| 2798 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2799 | |
Josef Bacik | 681ae50 | 2013-10-07 15:11:00 -0400 | [diff] [blame] | 2800 | if (trans) { |
| 2801 | btrfs_tree_lock(next); |
David Sterba | 6a884d7d | 2019-03-20 14:30:02 +0100 | [diff] [blame] | 2802 | btrfs_clean_tree_block(next); |
Josef Bacik | 681ae50 | 2013-10-07 15:11:00 -0400 | [diff] [blame] | 2803 | btrfs_wait_tree_block_writeback(next); |
| 2804 | btrfs_tree_unlock(next); |
Nikolay Borisov | 7bfc100 | 2020-01-20 16:09:12 +0200 | [diff] [blame] | 2805 | ret = btrfs_pin_reserved_extent(trans, |
Nikolay Borisov | 10e958d | 2020-01-20 16:09:11 +0200 | [diff] [blame] | 2806 | bytenr, blocksize); |
| 2807 | if (ret) { |
| 2808 | free_extent_buffer(next); |
| 2809 | return ret; |
| 2810 | } |
Naohiro Aota | d3575156 | 2021-02-04 19:21:54 +0900 | [diff] [blame] | 2811 | btrfs_redirty_list_add( |
| 2812 | trans->transaction, next); |
Liu Bo | 1846430 | 2018-01-25 11:02:51 -0700 | [diff] [blame] | 2813 | } else { |
| 2814 | if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &next->bflags)) |
| 2815 | clear_extent_buffer_dirty(next); |
Nikolay Borisov | 10e958d | 2020-01-20 16:09:11 +0200 | [diff] [blame] | 2816 | unaccount_log_buffer(fs_info, bytenr); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 2817 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2818 | } |
| 2819 | free_extent_buffer(next); |
| 2820 | continue; |
| 2821 | } |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 2822 | ret = btrfs_read_buffer(next, ptr_gen, *level - 1, &first_key); |
Tsutomu Itoh | 018642a | 2012-05-29 18:10:13 +0900 | [diff] [blame] | 2823 | if (ret) { |
| 2824 | free_extent_buffer(next); |
| 2825 | return ret; |
| 2826 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2827 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2828 | if (path->nodes[*level-1]) |
| 2829 | free_extent_buffer(path->nodes[*level-1]); |
| 2830 | path->nodes[*level-1] = next; |
| 2831 | *level = btrfs_header_level(next); |
| 2832 | path->slots[*level] = 0; |
| 2833 | cond_resched(); |
| 2834 | } |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2835 | path->slots[*level] = btrfs_header_nritems(path->nodes[*level]); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2836 | |
| 2837 | cond_resched(); |
| 2838 | return 0; |
| 2839 | } |
| 2840 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2841 | static noinline int walk_up_log_tree(struct btrfs_trans_handle *trans, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2842 | struct btrfs_root *root, |
| 2843 | struct btrfs_path *path, int *level, |
| 2844 | struct walk_control *wc) |
| 2845 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2846 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2847 | int i; |
| 2848 | int slot; |
| 2849 | int ret; |
| 2850 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2851 | for (i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2852 | slot = path->slots[i]; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2853 | if (slot + 1 < btrfs_header_nritems(path->nodes[i])) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2854 | path->slots[i]++; |
| 2855 | *level = i; |
| 2856 | WARN_ON(*level == 0); |
| 2857 | return 0; |
| 2858 | } else { |
Mark Fasheh | 1e5063d | 2011-07-12 10:46:06 -0700 | [diff] [blame] | 2859 | ret = wc->process_func(root, path->nodes[*level], wc, |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 2860 | btrfs_header_generation(path->nodes[*level]), |
| 2861 | *level); |
Mark Fasheh | 1e5063d | 2011-07-12 10:46:06 -0700 | [diff] [blame] | 2862 | if (ret) |
| 2863 | return ret; |
| 2864 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2865 | if (wc->free) { |
| 2866 | struct extent_buffer *next; |
| 2867 | |
| 2868 | next = path->nodes[*level]; |
| 2869 | |
Josef Bacik | 681ae50 | 2013-10-07 15:11:00 -0400 | [diff] [blame] | 2870 | if (trans) { |
| 2871 | btrfs_tree_lock(next); |
David Sterba | 6a884d7d | 2019-03-20 14:30:02 +0100 | [diff] [blame] | 2872 | btrfs_clean_tree_block(next); |
Josef Bacik | 681ae50 | 2013-10-07 15:11:00 -0400 | [diff] [blame] | 2873 | btrfs_wait_tree_block_writeback(next); |
| 2874 | btrfs_tree_unlock(next); |
Nikolay Borisov | 7bfc100 | 2020-01-20 16:09:12 +0200 | [diff] [blame] | 2875 | ret = btrfs_pin_reserved_extent(trans, |
Nikolay Borisov | 10e958d | 2020-01-20 16:09:11 +0200 | [diff] [blame] | 2876 | path->nodes[*level]->start, |
| 2877 | path->nodes[*level]->len); |
| 2878 | if (ret) |
| 2879 | return ret; |
Liu Bo | 1846430 | 2018-01-25 11:02:51 -0700 | [diff] [blame] | 2880 | } else { |
| 2881 | if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &next->bflags)) |
| 2882 | clear_extent_buffer_dirty(next); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2883 | |
Nikolay Borisov | 10e958d | 2020-01-20 16:09:11 +0200 | [diff] [blame] | 2884 | unaccount_log_buffer(fs_info, |
| 2885 | path->nodes[*level]->start); |
| 2886 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2887 | } |
| 2888 | free_extent_buffer(path->nodes[*level]); |
| 2889 | path->nodes[*level] = NULL; |
| 2890 | *level = i + 1; |
| 2891 | } |
| 2892 | } |
| 2893 | return 1; |
| 2894 | } |
| 2895 | |
| 2896 | /* |
| 2897 | * drop the reference count on the tree rooted at 'snap'. This traverses |
| 2898 | * the tree freeing any blocks that have a ref count of zero after being |
| 2899 | * decremented. |
| 2900 | */ |
| 2901 | static int walk_log_tree(struct btrfs_trans_handle *trans, |
| 2902 | struct btrfs_root *log, struct walk_control *wc) |
| 2903 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2904 | struct btrfs_fs_info *fs_info = log->fs_info; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2905 | int ret = 0; |
| 2906 | int wret; |
| 2907 | int level; |
| 2908 | struct btrfs_path *path; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2909 | int orig_level; |
| 2910 | |
| 2911 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 2912 | if (!path) |
| 2913 | return -ENOMEM; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2914 | |
| 2915 | level = btrfs_header_level(log->node); |
| 2916 | orig_level = level; |
| 2917 | path->nodes[level] = log->node; |
David Sterba | 67439da | 2019-10-08 13:28:47 +0200 | [diff] [blame] | 2918 | atomic_inc(&log->node->refs); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2919 | path->slots[level] = 0; |
| 2920 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2921 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2922 | wret = walk_down_log_tree(trans, log, path, &level, wc); |
| 2923 | if (wret > 0) |
| 2924 | break; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2925 | if (wret < 0) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2926 | ret = wret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2927 | goto out; |
| 2928 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2929 | |
| 2930 | wret = walk_up_log_tree(trans, log, path, &level, wc); |
| 2931 | if (wret > 0) |
| 2932 | break; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2933 | if (wret < 0) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2934 | ret = wret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2935 | goto out; |
| 2936 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2937 | } |
| 2938 | |
| 2939 | /* was the root node processed? if not, catch it here */ |
| 2940 | if (path->nodes[orig_level]) { |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2941 | ret = wc->process_func(log, path->nodes[orig_level], wc, |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 2942 | btrfs_header_generation(path->nodes[orig_level]), |
| 2943 | orig_level); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2944 | if (ret) |
| 2945 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2946 | if (wc->free) { |
| 2947 | struct extent_buffer *next; |
| 2948 | |
| 2949 | next = path->nodes[orig_level]; |
| 2950 | |
Josef Bacik | 681ae50 | 2013-10-07 15:11:00 -0400 | [diff] [blame] | 2951 | if (trans) { |
| 2952 | btrfs_tree_lock(next); |
David Sterba | 6a884d7d | 2019-03-20 14:30:02 +0100 | [diff] [blame] | 2953 | btrfs_clean_tree_block(next); |
Josef Bacik | 681ae50 | 2013-10-07 15:11:00 -0400 | [diff] [blame] | 2954 | btrfs_wait_tree_block_writeback(next); |
| 2955 | btrfs_tree_unlock(next); |
Nikolay Borisov | 7bfc100 | 2020-01-20 16:09:12 +0200 | [diff] [blame] | 2956 | ret = btrfs_pin_reserved_extent(trans, |
Nikolay Borisov | 10e958d | 2020-01-20 16:09:11 +0200 | [diff] [blame] | 2957 | next->start, next->len); |
| 2958 | if (ret) |
| 2959 | goto out; |
Liu Bo | 1846430 | 2018-01-25 11:02:51 -0700 | [diff] [blame] | 2960 | } else { |
| 2961 | if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &next->bflags)) |
| 2962 | clear_extent_buffer_dirty(next); |
Nikolay Borisov | 10e958d | 2020-01-20 16:09:11 +0200 | [diff] [blame] | 2963 | unaccount_log_buffer(fs_info, next->start); |
Josef Bacik | 681ae50 | 2013-10-07 15:11:00 -0400 | [diff] [blame] | 2964 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2965 | } |
| 2966 | } |
| 2967 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2968 | out: |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2969 | btrfs_free_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2970 | return ret; |
| 2971 | } |
| 2972 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2973 | /* |
| 2974 | * helper function to update the item for a given subvolumes log root |
| 2975 | * in the tree of log roots |
| 2976 | */ |
| 2977 | static int update_log_root(struct btrfs_trans_handle *trans, |
Josef Bacik | 4203e96 | 2019-09-30 16:27:25 -0400 | [diff] [blame] | 2978 | struct btrfs_root *log, |
| 2979 | struct btrfs_root_item *root_item) |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2980 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2981 | struct btrfs_fs_info *fs_info = log->fs_info; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2982 | int ret; |
| 2983 | |
| 2984 | if (log->log_transid == 1) { |
| 2985 | /* insert root item on the first sync */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2986 | ret = btrfs_insert_root(trans, fs_info->log_root_tree, |
Josef Bacik | 4203e96 | 2019-09-30 16:27:25 -0400 | [diff] [blame] | 2987 | &log->root_key, root_item); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2988 | } else { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2989 | ret = btrfs_update_root(trans, fs_info->log_root_tree, |
Josef Bacik | 4203e96 | 2019-09-30 16:27:25 -0400 | [diff] [blame] | 2990 | &log->root_key, root_item); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2991 | } |
| 2992 | return ret; |
| 2993 | } |
| 2994 | |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 2995 | static void wait_log_commit(struct btrfs_root *root, int transid) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2996 | { |
| 2997 | DEFINE_WAIT(wait); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2998 | int index = transid % 2; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2999 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3000 | /* |
| 3001 | * we only allow two pending log transactions at a time, |
| 3002 | * so we know that if ours is more than 2 older than the |
| 3003 | * current transaction, we're done |
| 3004 | */ |
Liu Bo | 49e83f5 | 2017-09-01 16:14:30 -0600 | [diff] [blame] | 3005 | for (;;) { |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3006 | prepare_to_wait(&root->log_commit_wait[index], |
| 3007 | &wait, TASK_UNINTERRUPTIBLE); |
Liu Bo | 49e83f5 | 2017-09-01 16:14:30 -0600 | [diff] [blame] | 3008 | |
| 3009 | if (!(root->log_transid_committed < transid && |
| 3010 | atomic_read(&root->log_commit[index]))) |
| 3011 | break; |
| 3012 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3013 | mutex_unlock(&root->log_mutex); |
Liu Bo | 49e83f5 | 2017-09-01 16:14:30 -0600 | [diff] [blame] | 3014 | schedule(); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3015 | mutex_lock(&root->log_mutex); |
Liu Bo | 49e83f5 | 2017-09-01 16:14:30 -0600 | [diff] [blame] | 3016 | } |
| 3017 | finish_wait(&root->log_commit_wait[index], &wait); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3018 | } |
| 3019 | |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 3020 | static void wait_for_writer(struct btrfs_root *root) |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3021 | { |
| 3022 | DEFINE_WAIT(wait); |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 3023 | |
Liu Bo | 49e83f5 | 2017-09-01 16:14:30 -0600 | [diff] [blame] | 3024 | for (;;) { |
| 3025 | prepare_to_wait(&root->log_writer_wait, &wait, |
| 3026 | TASK_UNINTERRUPTIBLE); |
| 3027 | if (!atomic_read(&root->log_writers)) |
| 3028 | break; |
| 3029 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3030 | mutex_unlock(&root->log_mutex); |
Liu Bo | 49e83f5 | 2017-09-01 16:14:30 -0600 | [diff] [blame] | 3031 | schedule(); |
Filipe Manana | 575849e | 2015-02-11 11:12:39 +0000 | [diff] [blame] | 3032 | mutex_lock(&root->log_mutex); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3033 | } |
Liu Bo | 49e83f5 | 2017-09-01 16:14:30 -0600 | [diff] [blame] | 3034 | finish_wait(&root->log_writer_wait, &wait); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3035 | } |
| 3036 | |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 3037 | static inline void btrfs_remove_log_ctx(struct btrfs_root *root, |
| 3038 | struct btrfs_log_ctx *ctx) |
| 3039 | { |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 3040 | mutex_lock(&root->log_mutex); |
| 3041 | list_del_init(&ctx->list); |
| 3042 | mutex_unlock(&root->log_mutex); |
| 3043 | } |
| 3044 | |
| 3045 | /* |
| 3046 | * Invoked in log mutex context, or be sure there is no other task which |
| 3047 | * can access the list. |
| 3048 | */ |
| 3049 | static inline void btrfs_remove_all_log_ctxs(struct btrfs_root *root, |
| 3050 | int index, int error) |
| 3051 | { |
| 3052 | struct btrfs_log_ctx *ctx; |
Chris Mason | 570dd45 | 2016-10-27 10:42:20 -0700 | [diff] [blame] | 3053 | struct btrfs_log_ctx *safe; |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 3054 | |
Chris Mason | 570dd45 | 2016-10-27 10:42:20 -0700 | [diff] [blame] | 3055 | list_for_each_entry_safe(ctx, safe, &root->log_ctxs[index], list) { |
| 3056 | list_del_init(&ctx->list); |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 3057 | ctx->log_ret = error; |
Chris Mason | 570dd45 | 2016-10-27 10:42:20 -0700 | [diff] [blame] | 3058 | } |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 3059 | } |
| 3060 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3061 | /* |
| 3062 | * btrfs_sync_log does sends a given tree log down to the disk and |
| 3063 | * updates the super blocks to record it. When this call is done, |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3064 | * you know that any inodes previously logged are safely on disk only |
| 3065 | * if it returns 0. |
| 3066 | * |
| 3067 | * Any other return value means you need to call btrfs_commit_transaction. |
| 3068 | * Some of the edge cases for fsyncing directories that have had unlinks |
| 3069 | * or renames done in the past mean that sometimes the only safe |
| 3070 | * fsync is to commit the whole FS. When btrfs_sync_log returns -EAGAIN, |
| 3071 | * that has happened. |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3072 | */ |
| 3073 | int btrfs_sync_log(struct btrfs_trans_handle *trans, |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 3074 | struct btrfs_root *root, struct btrfs_log_ctx *ctx) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3075 | { |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3076 | int index1; |
| 3077 | int index2; |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 3078 | int mark; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3079 | int ret; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3080 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3081 | struct btrfs_root *log = root->log_root; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3082 | struct btrfs_root *log_root_tree = fs_info->log_root_tree; |
Josef Bacik | 4203e96 | 2019-09-30 16:27:25 -0400 | [diff] [blame] | 3083 | struct btrfs_root_item new_root_item; |
Miao Xie | bb14a59 | 2014-02-20 18:08:56 +0800 | [diff] [blame] | 3084 | int log_transid = 0; |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 3085 | struct btrfs_log_ctx root_log_ctx; |
Miao Xie | c6adc9c | 2013-05-28 10:05:39 +0000 | [diff] [blame] | 3086 | struct blk_plug plug; |
Filipe Manana | 47876f7 | 2020-11-25 12:19:28 +0000 | [diff] [blame] | 3087 | u64 log_root_start; |
| 3088 | u64 log_root_level; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3089 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3090 | mutex_lock(&root->log_mutex); |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3091 | log_transid = ctx->log_transid; |
| 3092 | if (root->log_transid_committed >= log_transid) { |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3093 | mutex_unlock(&root->log_mutex); |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 3094 | return ctx->log_ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3095 | } |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3096 | |
| 3097 | index1 = log_transid % 2; |
| 3098 | if (atomic_read(&root->log_commit[index1])) { |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 3099 | wait_log_commit(root, log_transid); |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3100 | mutex_unlock(&root->log_mutex); |
| 3101 | return ctx->log_ret; |
| 3102 | } |
| 3103 | ASSERT(log_transid == root->log_transid); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3104 | atomic_set(&root->log_commit[index1], 1); |
| 3105 | |
| 3106 | /* wait for previous tree log sync to complete */ |
| 3107 | if (atomic_read(&root->log_commit[(index1 + 1) % 2])) |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 3108 | wait_log_commit(root, log_transid - 1); |
Miao Xie | 48cab2e | 2014-02-20 18:08:52 +0800 | [diff] [blame] | 3109 | |
Yan, Zheng | 86df7eb | 2009-10-14 09:24:59 -0400 | [diff] [blame] | 3110 | while (1) { |
Miao Xie | 2ecb792 | 2012-09-06 04:04:27 -0600 | [diff] [blame] | 3111 | int batch = atomic_read(&root->log_batch); |
Chris Mason | cd354ad | 2011-10-20 15:45:37 -0400 | [diff] [blame] | 3112 | /* when we're on an ssd, just kick the log commit out */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3113 | if (!btrfs_test_opt(fs_info, SSD) && |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 3114 | test_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state)) { |
Yan, Zheng | 86df7eb | 2009-10-14 09:24:59 -0400 | [diff] [blame] | 3115 | mutex_unlock(&root->log_mutex); |
| 3116 | schedule_timeout_uninterruptible(1); |
| 3117 | mutex_lock(&root->log_mutex); |
| 3118 | } |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 3119 | wait_for_writer(root); |
Miao Xie | 2ecb792 | 2012-09-06 04:04:27 -0600 | [diff] [blame] | 3120 | if (batch == atomic_read(&root->log_batch)) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3121 | break; |
| 3122 | } |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3123 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3124 | /* bail out if we need to do a full commit */ |
David Sterba | 4884b8e | 2019-03-20 13:25:34 +0100 | [diff] [blame] | 3125 | if (btrfs_need_log_full_commit(trans)) { |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3126 | ret = -EAGAIN; |
| 3127 | mutex_unlock(&root->log_mutex); |
| 3128 | goto out; |
| 3129 | } |
| 3130 | |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 3131 | if (log_transid % 2 == 0) |
| 3132 | mark = EXTENT_DIRTY; |
| 3133 | else |
| 3134 | mark = EXTENT_NEW; |
| 3135 | |
Chris Mason | 690587d | 2009-10-13 13:29:19 -0400 | [diff] [blame] | 3136 | /* we start IO on all the marked extents here, but we don't actually |
| 3137 | * wait for them until later. |
| 3138 | */ |
Miao Xie | c6adc9c | 2013-05-28 10:05:39 +0000 | [diff] [blame] | 3139 | blk_start_plug(&plug); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3140 | ret = btrfs_write_marked_extents(fs_info, &log->dirty_log_pages, mark); |
Naohiro Aota | b528f46 | 2021-02-05 23:58:36 +0900 | [diff] [blame] | 3141 | /* |
| 3142 | * -EAGAIN happens when someone, e.g., a concurrent transaction |
| 3143 | * commit, writes a dirty extent in this tree-log commit. This |
| 3144 | * concurrent write will create a hole writing out the extents, |
| 3145 | * and we cannot proceed on a zoned filesystem, requiring |
| 3146 | * sequential writing. While we can bail out to a full commit |
| 3147 | * here, but we can continue hoping the concurrent writing fills |
| 3148 | * the hole. |
| 3149 | */ |
| 3150 | if (ret == -EAGAIN && btrfs_is_zoned(fs_info)) |
| 3151 | ret = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3152 | if (ret) { |
Miao Xie | c6adc9c | 2013-05-28 10:05:39 +0000 | [diff] [blame] | 3153 | blk_finish_plug(&plug); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3154 | btrfs_abort_transaction(trans, ret); |
David Sterba | 9078776 | 2019-03-20 13:28:05 +0100 | [diff] [blame] | 3155 | btrfs_set_log_full_commit(trans); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3156 | mutex_unlock(&root->log_mutex); |
| 3157 | goto out; |
| 3158 | } |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3159 | |
Josef Bacik | 4203e96 | 2019-09-30 16:27:25 -0400 | [diff] [blame] | 3160 | /* |
| 3161 | * We _must_ update under the root->log_mutex in order to make sure we |
| 3162 | * have a consistent view of the log root we are trying to commit at |
| 3163 | * this moment. |
| 3164 | * |
| 3165 | * We _must_ copy this into a local copy, because we are not holding the |
| 3166 | * log_root_tree->log_mutex yet. This is important because when we |
| 3167 | * commit the log_root_tree we must have a consistent view of the |
| 3168 | * log_root_tree when we update the super block to point at the |
| 3169 | * log_root_tree bytenr. If we update the log_root_tree here we'll race |
| 3170 | * with the commit and possibly point at the new block which we may not |
| 3171 | * have written out. |
| 3172 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3173 | btrfs_set_root_node(&log->root_item, log->node); |
Josef Bacik | 4203e96 | 2019-09-30 16:27:25 -0400 | [diff] [blame] | 3174 | memcpy(&new_root_item, &log->root_item, sizeof(new_root_item)); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3175 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3176 | root->log_transid++; |
| 3177 | log->log_transid = root->log_transid; |
Josef Bacik | ff782e0 | 2009-10-08 15:30:04 -0400 | [diff] [blame] | 3178 | root->log_start_pid = 0; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3179 | /* |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 3180 | * IO has been started, blocks of the log tree have WRITTEN flag set |
| 3181 | * in their headers. new modifications of the log will be written to |
| 3182 | * 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] | 3183 | */ |
| 3184 | mutex_unlock(&root->log_mutex); |
| 3185 | |
Naohiro Aota | 3ddebf2 | 2021-02-04 19:22:20 +0900 | [diff] [blame] | 3186 | if (btrfs_is_zoned(fs_info)) { |
Naohiro Aota | e75f9fd | 2021-03-24 23:23:11 +0900 | [diff] [blame] | 3187 | mutex_lock(&fs_info->tree_root->log_mutex); |
Naohiro Aota | 3ddebf2 | 2021-02-04 19:22:20 +0900 | [diff] [blame] | 3188 | if (!log_root_tree->node) { |
| 3189 | ret = btrfs_alloc_log_tree_node(trans, log_root_tree); |
| 3190 | if (ret) { |
Filipe Manana | ea32af4 | 2021-07-07 12:23:45 +0100 | [diff] [blame] | 3191 | mutex_unlock(&fs_info->tree_root->log_mutex); |
Naohiro Aota | 3ddebf2 | 2021-02-04 19:22:20 +0900 | [diff] [blame] | 3192 | goto out; |
| 3193 | } |
| 3194 | } |
Naohiro Aota | e75f9fd | 2021-03-24 23:23:11 +0900 | [diff] [blame] | 3195 | mutex_unlock(&fs_info->tree_root->log_mutex); |
Naohiro Aota | 3ddebf2 | 2021-02-04 19:22:20 +0900 | [diff] [blame] | 3196 | } |
| 3197 | |
Naohiro Aota | e75f9fd | 2021-03-24 23:23:11 +0900 | [diff] [blame] | 3198 | btrfs_init_log_ctx(&root_log_ctx, NULL); |
| 3199 | |
| 3200 | mutex_lock(&log_root_tree->log_mutex); |
| 3201 | |
Filipe Manana | e3d3b41 | 2021-03-11 15:13:30 +0000 | [diff] [blame] | 3202 | index2 = log_root_tree->log_transid % 2; |
| 3203 | list_add_tail(&root_log_ctx.list, &log_root_tree->log_ctxs[index2]); |
| 3204 | root_log_ctx.log_transid = log_root_tree->log_transid; |
| 3205 | |
Josef Bacik | 4203e96 | 2019-09-30 16:27:25 -0400 | [diff] [blame] | 3206 | /* |
| 3207 | * Now we are safe to update the log_root_tree because we're under the |
| 3208 | * log_mutex, and we're a current writer so we're holding the commit |
| 3209 | * open until we drop the log_mutex. |
| 3210 | */ |
| 3211 | ret = update_log_root(trans, log, &new_root_item); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3212 | if (ret) { |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3213 | if (!list_empty(&root_log_ctx.list)) |
| 3214 | list_del_init(&root_log_ctx.list); |
| 3215 | |
Miao Xie | c6adc9c | 2013-05-28 10:05:39 +0000 | [diff] [blame] | 3216 | blk_finish_plug(&plug); |
David Sterba | 9078776 | 2019-03-20 13:28:05 +0100 | [diff] [blame] | 3217 | btrfs_set_log_full_commit(trans); |
Miao Xie | 995946d | 2014-04-02 19:51:06 +0800 | [diff] [blame] | 3218 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3219 | if (ret != -ENOSPC) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3220 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3221 | mutex_unlock(&log_root_tree->log_mutex); |
| 3222 | goto out; |
| 3223 | } |
Jeff Mahoney | bf89d38 | 2016-09-09 20:42:44 -0400 | [diff] [blame] | 3224 | btrfs_wait_tree_log_extents(log, mark); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3225 | mutex_unlock(&log_root_tree->log_mutex); |
| 3226 | ret = -EAGAIN; |
| 3227 | goto out; |
| 3228 | } |
| 3229 | |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3230 | if (log_root_tree->log_transid_committed >= root_log_ctx.log_transid) { |
Forrest Liu | 3da5ab5 | 2015-01-30 19:42:12 +0800 | [diff] [blame] | 3231 | blk_finish_plug(&plug); |
Chris Mason | cbd60aa | 2016-09-06 05:37:40 -0700 | [diff] [blame] | 3232 | list_del_init(&root_log_ctx.list); |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3233 | mutex_unlock(&log_root_tree->log_mutex); |
| 3234 | ret = root_log_ctx.log_ret; |
| 3235 | goto out; |
| 3236 | } |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 3237 | |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3238 | index2 = root_log_ctx.log_transid % 2; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3239 | if (atomic_read(&log_root_tree->log_commit[index2])) { |
Miao Xie | c6adc9c | 2013-05-28 10:05:39 +0000 | [diff] [blame] | 3240 | blk_finish_plug(&plug); |
Jeff Mahoney | bf89d38 | 2016-09-09 20:42:44 -0400 | [diff] [blame] | 3241 | ret = btrfs_wait_tree_log_extents(log, mark); |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 3242 | wait_log_commit(log_root_tree, |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3243 | root_log_ctx.log_transid); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3244 | mutex_unlock(&log_root_tree->log_mutex); |
Filipe Manana | 5ab5e44 | 2014-11-13 16:59:53 +0000 | [diff] [blame] | 3245 | if (!ret) |
| 3246 | ret = root_log_ctx.log_ret; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3247 | goto out; |
| 3248 | } |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3249 | ASSERT(root_log_ctx.log_transid == log_root_tree->log_transid); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3250 | atomic_set(&log_root_tree->log_commit[index2], 1); |
| 3251 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3252 | if (atomic_read(&log_root_tree->log_commit[(index2 + 1) % 2])) { |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 3253 | wait_log_commit(log_root_tree, |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3254 | root_log_ctx.log_transid - 1); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3255 | } |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3256 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3257 | /* |
| 3258 | * now that we've moved on to the tree of log tree roots, |
| 3259 | * check the full commit flag again |
| 3260 | */ |
David Sterba | 4884b8e | 2019-03-20 13:25:34 +0100 | [diff] [blame] | 3261 | if (btrfs_need_log_full_commit(trans)) { |
Miao Xie | c6adc9c | 2013-05-28 10:05:39 +0000 | [diff] [blame] | 3262 | blk_finish_plug(&plug); |
Jeff Mahoney | bf89d38 | 2016-09-09 20:42:44 -0400 | [diff] [blame] | 3263 | btrfs_wait_tree_log_extents(log, mark); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3264 | mutex_unlock(&log_root_tree->log_mutex); |
| 3265 | ret = -EAGAIN; |
| 3266 | goto out_wake_log_root; |
| 3267 | } |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3268 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3269 | ret = btrfs_write_marked_extents(fs_info, |
Miao Xie | c6adc9c | 2013-05-28 10:05:39 +0000 | [diff] [blame] | 3270 | &log_root_tree->dirty_log_pages, |
| 3271 | EXTENT_DIRTY | EXTENT_NEW); |
| 3272 | blk_finish_plug(&plug); |
Naohiro Aota | b528f46 | 2021-02-05 23:58:36 +0900 | [diff] [blame] | 3273 | /* |
| 3274 | * As described above, -EAGAIN indicates a hole in the extents. We |
| 3275 | * cannot wait for these write outs since the waiting cause a |
| 3276 | * deadlock. Bail out to the full commit instead. |
| 3277 | */ |
| 3278 | if (ret == -EAGAIN && btrfs_is_zoned(fs_info)) { |
| 3279 | btrfs_set_log_full_commit(trans); |
| 3280 | btrfs_wait_tree_log_extents(log, mark); |
| 3281 | mutex_unlock(&log_root_tree->log_mutex); |
| 3282 | goto out_wake_log_root; |
| 3283 | } else if (ret) { |
David Sterba | 9078776 | 2019-03-20 13:28:05 +0100 | [diff] [blame] | 3284 | btrfs_set_log_full_commit(trans); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3285 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3286 | mutex_unlock(&log_root_tree->log_mutex); |
| 3287 | goto out_wake_log_root; |
| 3288 | } |
Jeff Mahoney | bf89d38 | 2016-09-09 20:42:44 -0400 | [diff] [blame] | 3289 | ret = btrfs_wait_tree_log_extents(log, mark); |
Filipe Manana | 5ab5e44 | 2014-11-13 16:59:53 +0000 | [diff] [blame] | 3290 | if (!ret) |
Jeff Mahoney | bf89d38 | 2016-09-09 20:42:44 -0400 | [diff] [blame] | 3291 | ret = btrfs_wait_tree_log_extents(log_root_tree, |
| 3292 | EXTENT_NEW | EXTENT_DIRTY); |
Filipe Manana | 5ab5e44 | 2014-11-13 16:59:53 +0000 | [diff] [blame] | 3293 | if (ret) { |
David Sterba | 9078776 | 2019-03-20 13:28:05 +0100 | [diff] [blame] | 3294 | btrfs_set_log_full_commit(trans); |
Filipe Manana | 5ab5e44 | 2014-11-13 16:59:53 +0000 | [diff] [blame] | 3295 | mutex_unlock(&log_root_tree->log_mutex); |
| 3296 | goto out_wake_log_root; |
| 3297 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3298 | |
Filipe Manana | 47876f7 | 2020-11-25 12:19:28 +0000 | [diff] [blame] | 3299 | log_root_start = log_root_tree->node->start; |
| 3300 | log_root_level = btrfs_header_level(log_root_tree->node); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3301 | log_root_tree->log_transid++; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3302 | mutex_unlock(&log_root_tree->log_mutex); |
| 3303 | |
| 3304 | /* |
Filipe Manana | 47876f7 | 2020-11-25 12:19:28 +0000 | [diff] [blame] | 3305 | * Here we are guaranteed that nobody is going to write the superblock |
| 3306 | * for the current transaction before us and that neither we do write |
| 3307 | * our superblock before the previous transaction finishes its commit |
| 3308 | * and writes its superblock, because: |
| 3309 | * |
| 3310 | * 1) We are holding a handle on the current transaction, so no body |
| 3311 | * can commit it until we release the handle; |
| 3312 | * |
| 3313 | * 2) Before writing our superblock we acquire the tree_log_mutex, so |
| 3314 | * if the previous transaction is still committing, and hasn't yet |
| 3315 | * written its superblock, we wait for it to do it, because a |
| 3316 | * transaction commit acquires the tree_log_mutex when the commit |
| 3317 | * begins and releases it only after writing its superblock. |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3318 | */ |
Filipe Manana | 47876f7 | 2020-11-25 12:19:28 +0000 | [diff] [blame] | 3319 | mutex_lock(&fs_info->tree_log_mutex); |
Josef Bacik | 165ea85 | 2021-05-19 17:15:53 -0400 | [diff] [blame] | 3320 | |
| 3321 | /* |
| 3322 | * The previous transaction writeout phase could have failed, and thus |
| 3323 | * marked the fs in an error state. We must not commit here, as we |
| 3324 | * could have updated our generation in the super_for_commit and |
| 3325 | * writing the super here would result in transid mismatches. If there |
| 3326 | * is an error here just bail. |
| 3327 | */ |
| 3328 | if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) { |
| 3329 | ret = -EIO; |
| 3330 | btrfs_set_log_full_commit(trans); |
| 3331 | btrfs_abort_transaction(trans, ret); |
| 3332 | mutex_unlock(&fs_info->tree_log_mutex); |
| 3333 | goto out_wake_log_root; |
| 3334 | } |
| 3335 | |
Filipe Manana | 47876f7 | 2020-11-25 12:19:28 +0000 | [diff] [blame] | 3336 | btrfs_set_super_log_root(fs_info->super_for_commit, log_root_start); |
| 3337 | 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] | 3338 | ret = write_all_supers(fs_info, 1); |
Filipe Manana | 47876f7 | 2020-11-25 12:19:28 +0000 | [diff] [blame] | 3339 | mutex_unlock(&fs_info->tree_log_mutex); |
Stefan Behrens | 5af3e8c | 2012-08-01 18:56:49 +0200 | [diff] [blame] | 3340 | if (ret) { |
David Sterba | 9078776 | 2019-03-20 13:28:05 +0100 | [diff] [blame] | 3341 | btrfs_set_log_full_commit(trans); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3342 | btrfs_abort_transaction(trans, ret); |
Stefan Behrens | 5af3e8c | 2012-08-01 18:56:49 +0200 | [diff] [blame] | 3343 | goto out_wake_log_root; |
| 3344 | } |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3345 | |
Filipe Manana | e1a6d26 | 2021-07-20 16:03:41 +0100 | [diff] [blame] | 3346 | /* |
| 3347 | * We know there can only be one task here, since we have not yet set |
| 3348 | * root->log_commit[index1] to 0 and any task attempting to sync the |
| 3349 | * log must wait for the previous log transaction to commit if it's |
| 3350 | * still in progress or wait for the current log transaction commit if |
| 3351 | * someone else already started it. We use <= and not < because the |
| 3352 | * first log transaction has an ID of 0. |
| 3353 | */ |
| 3354 | ASSERT(root->last_log_commit <= log_transid); |
| 3355 | root->last_log_commit = log_transid; |
Chris Mason | 257c62e | 2009-10-13 13:21:08 -0400 | [diff] [blame] | 3356 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3357 | out_wake_log_root: |
Chris Mason | 570dd45 | 2016-10-27 10:42:20 -0700 | [diff] [blame] | 3358 | mutex_lock(&log_root_tree->log_mutex); |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 3359 | btrfs_remove_all_log_ctxs(log_root_tree, index2, ret); |
| 3360 | |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3361 | log_root_tree->log_transid_committed++; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3362 | atomic_set(&log_root_tree->log_commit[index2], 0); |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3363 | mutex_unlock(&log_root_tree->log_mutex); |
| 3364 | |
David Sterba | 33a9eca | 2015-10-10 18:35:10 +0200 | [diff] [blame] | 3365 | /* |
David Sterba | 093258e | 2018-02-26 16:15:17 +0100 | [diff] [blame] | 3366 | * The barrier before waitqueue_active (in cond_wake_up) is needed so |
| 3367 | * all the updates above are seen by the woken threads. It might not be |
| 3368 | * necessary, but proving that seems to be hard. |
David Sterba | 33a9eca | 2015-10-10 18:35:10 +0200 | [diff] [blame] | 3369 | */ |
David Sterba | 093258e | 2018-02-26 16:15:17 +0100 | [diff] [blame] | 3370 | cond_wake_up(&log_root_tree->log_commit_wait[index2]); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3371 | out: |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3372 | mutex_lock(&root->log_mutex); |
Chris Mason | 570dd45 | 2016-10-27 10:42:20 -0700 | [diff] [blame] | 3373 | btrfs_remove_all_log_ctxs(root, index1, ret); |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3374 | root->log_transid_committed++; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3375 | atomic_set(&root->log_commit[index1], 0); |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3376 | mutex_unlock(&root->log_mutex); |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 3377 | |
David Sterba | 33a9eca | 2015-10-10 18:35:10 +0200 | [diff] [blame] | 3378 | /* |
David Sterba | 093258e | 2018-02-26 16:15:17 +0100 | [diff] [blame] | 3379 | * The barrier before waitqueue_active (in cond_wake_up) is needed so |
| 3380 | * all the updates above are seen by the woken threads. It might not be |
| 3381 | * necessary, but proving that seems to be hard. |
David Sterba | 33a9eca | 2015-10-10 18:35:10 +0200 | [diff] [blame] | 3382 | */ |
David Sterba | 093258e | 2018-02-26 16:15:17 +0100 | [diff] [blame] | 3383 | cond_wake_up(&root->log_commit_wait[index1]); |
Chris Mason | b31eabd | 2011-01-31 16:48:24 -0500 | [diff] [blame] | 3384 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3385 | } |
| 3386 | |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3387 | static void free_log_tree(struct btrfs_trans_handle *trans, |
| 3388 | struct btrfs_root *log) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3389 | { |
| 3390 | int ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3391 | struct walk_control wc = { |
| 3392 | .free = 1, |
| 3393 | .process_func = process_one_buffer |
| 3394 | }; |
| 3395 | |
Naohiro Aota | 3ddebf2 | 2021-02-04 19:22:20 +0900 | [diff] [blame] | 3396 | if (log->node) { |
| 3397 | ret = walk_log_tree(trans, log, &wc); |
| 3398 | if (ret) { |
| 3399 | if (trans) |
| 3400 | btrfs_abort_transaction(trans, ret); |
| 3401 | else |
| 3402 | btrfs_handle_fs_error(log->fs_info, ret, NULL); |
| 3403 | } |
Jeff Mahoney | 374b0e2 | 2018-09-06 16:59:33 -0400 | [diff] [blame] | 3404 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3405 | |
Filipe Manana | 59b0713 | 2018-11-09 10:43:08 +0000 | [diff] [blame] | 3406 | clear_extent_bits(&log->dirty_log_pages, 0, (u64)-1, |
| 3407 | EXTENT_DIRTY | EXTENT_NEW | EXTENT_NEED_WAIT); |
Filipe Manana | e289f03 | 2020-05-18 12:14:50 +0100 | [diff] [blame] | 3408 | extent_io_tree_release(&log->log_csum_range); |
Naohiro Aota | d3575156 | 2021-02-04 19:21:54 +0900 | [diff] [blame] | 3409 | |
| 3410 | if (trans && log->node) |
| 3411 | btrfs_redirty_list_add(trans->transaction, log->node); |
Josef Bacik | 0024652 | 2020-01-24 09:33:01 -0500 | [diff] [blame] | 3412 | btrfs_put_root(log); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3413 | } |
| 3414 | |
| 3415 | /* |
| 3416 | * free all the extents used by the tree log. This should be called |
| 3417 | * at commit time of the full transaction |
| 3418 | */ |
| 3419 | int btrfs_free_log(struct btrfs_trans_handle *trans, struct btrfs_root *root) |
| 3420 | { |
| 3421 | if (root->log_root) { |
| 3422 | free_log_tree(trans, root->log_root); |
| 3423 | root->log_root = NULL; |
Filipe Manana | e7a7981 | 2020-06-15 10:38:44 +0100 | [diff] [blame] | 3424 | clear_bit(BTRFS_ROOT_HAS_LOG_TREE, &root->state); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3425 | } |
| 3426 | return 0; |
| 3427 | } |
| 3428 | |
| 3429 | int btrfs_free_log_root_tree(struct btrfs_trans_handle *trans, |
| 3430 | struct btrfs_fs_info *fs_info) |
| 3431 | { |
| 3432 | if (fs_info->log_root_tree) { |
| 3433 | free_log_tree(trans, fs_info->log_root_tree); |
| 3434 | fs_info->log_root_tree = NULL; |
Filipe Manana | 47876f7 | 2020-11-25 12:19:28 +0000 | [diff] [blame] | 3435 | clear_bit(BTRFS_ROOT_HAS_LOG_TREE, &fs_info->tree_root->state); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3436 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3437 | return 0; |
| 3438 | } |
| 3439 | |
| 3440 | /* |
Filipe Manana | 6e8e777 | 2021-07-27 11:24:44 +0100 | [diff] [blame] | 3441 | * Check if an inode was logged in the current transaction. This may often |
| 3442 | * return some false positives, because logged_trans is an in memory only field, |
| 3443 | * not persisted anywhere. This is meant to be used in contexts where a false |
| 3444 | * positive has no functional consequences. |
Filipe Manana | 803f0f6 | 2019-06-19 13:05:39 +0100 | [diff] [blame] | 3445 | */ |
| 3446 | static bool inode_logged(struct btrfs_trans_handle *trans, |
| 3447 | struct btrfs_inode *inode) |
| 3448 | { |
| 3449 | if (inode->logged_trans == trans->transid) |
| 3450 | return true; |
| 3451 | |
Filipe Manana | 1e0860f | 2021-08-31 15:30:31 +0100 | [diff] [blame] | 3452 | if (!test_bit(BTRFS_ROOT_HAS_LOG_TREE, &inode->root->state)) |
| 3453 | return false; |
| 3454 | |
Filipe Manana | 6e8e777 | 2021-07-27 11:24:44 +0100 | [diff] [blame] | 3455 | /* |
| 3456 | * The inode's logged_trans is always 0 when we load it (because it is |
| 3457 | * not persisted in the inode item or elsewhere). So if it is 0, the |
Filipe Manana | d135a53 | 2021-07-29 15:29:01 +0100 | [diff] [blame] | 3458 | * inode was last modified in the current transaction then the inode may |
| 3459 | * have been logged before in the current transaction, then evicted and |
| 3460 | * loaded again in the current transaction - or may have never been logged |
| 3461 | * in the current transaction, but since we can not be sure, we have to |
| 3462 | * assume it was, otherwise our callers can leave an inconsistent log. |
Filipe Manana | 6e8e777 | 2021-07-27 11:24:44 +0100 | [diff] [blame] | 3463 | */ |
| 3464 | if (inode->logged_trans == 0 && |
| 3465 | inode->last_trans == trans->transid && |
Filipe Manana | 803f0f6 | 2019-06-19 13:05:39 +0100 | [diff] [blame] | 3466 | !test_bit(BTRFS_FS_LOG_RECOVERING, &trans->fs_info->flags)) |
| 3467 | return true; |
| 3468 | |
| 3469 | return false; |
| 3470 | } |
| 3471 | |
| 3472 | /* |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3473 | * If both a file and directory are logged, and unlinks or renames are |
| 3474 | * mixed in, we have a few interesting corners: |
| 3475 | * |
| 3476 | * create file X in dir Y |
| 3477 | * link file X to X.link in dir Y |
| 3478 | * fsync file X |
| 3479 | * unlink file X but leave X.link |
| 3480 | * fsync dir Y |
| 3481 | * |
| 3482 | * After a crash we would expect only X.link to exist. But file X |
| 3483 | * didn't get fsync'd again so the log has back refs for X and X.link. |
| 3484 | * |
| 3485 | * We solve this by removing directory entries and inode backrefs from the |
| 3486 | * log when a file that was logged in the current transaction is |
| 3487 | * unlinked. Any later fsync will include the updated log entries, and |
| 3488 | * we'll be able to reconstruct the proper directory items from backrefs. |
| 3489 | * |
| 3490 | * This optimizations allows us to avoid relogging the entire inode |
| 3491 | * or the entire directory. |
| 3492 | */ |
| 3493 | int btrfs_del_dir_entries_in_log(struct btrfs_trans_handle *trans, |
| 3494 | struct btrfs_root *root, |
| 3495 | const char *name, int name_len, |
Nikolay Borisov | 49f34d1 | 2017-01-18 00:31:32 +0200 | [diff] [blame] | 3496 | struct btrfs_inode *dir, u64 index) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3497 | { |
| 3498 | struct btrfs_root *log; |
| 3499 | struct btrfs_dir_item *di; |
| 3500 | struct btrfs_path *path; |
| 3501 | int ret; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3502 | int err = 0; |
Nikolay Borisov | 49f34d1 | 2017-01-18 00:31:32 +0200 | [diff] [blame] | 3503 | u64 dir_ino = btrfs_ino(dir); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3504 | |
Filipe Manana | 803f0f6 | 2019-06-19 13:05:39 +0100 | [diff] [blame] | 3505 | if (!inode_logged(trans, dir)) |
Chris Mason | 3a5f1d4 | 2008-09-11 15:53:37 -0400 | [diff] [blame] | 3506 | return 0; |
| 3507 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3508 | ret = join_running_log_trans(root); |
| 3509 | if (ret) |
| 3510 | return 0; |
| 3511 | |
Nikolay Borisov | 49f34d1 | 2017-01-18 00:31:32 +0200 | [diff] [blame] | 3512 | mutex_lock(&dir->log_mutex); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3513 | |
| 3514 | log = root->log_root; |
| 3515 | path = btrfs_alloc_path(); |
Tsutomu Itoh | a62f44a | 2011-04-25 19:43:51 -0400 | [diff] [blame] | 3516 | if (!path) { |
| 3517 | err = -ENOMEM; |
| 3518 | goto out_unlock; |
| 3519 | } |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 3520 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3521 | di = btrfs_lookup_dir_item(trans, log, path, dir_ino, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3522 | name, name_len, -1); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3523 | if (IS_ERR(di)) { |
| 3524 | err = PTR_ERR(di); |
| 3525 | goto fail; |
| 3526 | } |
| 3527 | if (di) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3528 | ret = btrfs_delete_one_dir_name(trans, log, path, di); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 3529 | if (ret) { |
| 3530 | err = ret; |
| 3531 | goto fail; |
| 3532 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3533 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3534 | btrfs_release_path(path); |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3535 | di = btrfs_lookup_dir_index_item(trans, log, path, dir_ino, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3536 | index, name, name_len, -1); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3537 | if (IS_ERR(di)) { |
| 3538 | err = PTR_ERR(di); |
| 3539 | goto fail; |
| 3540 | } |
| 3541 | if (di) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3542 | ret = btrfs_delete_one_dir_name(trans, log, path, di); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 3543 | if (ret) { |
| 3544 | err = ret; |
| 3545 | goto fail; |
| 3546 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3547 | } |
| 3548 | |
Filipe Manana | ddffcf6 | 2021-01-27 10:34:54 +0000 | [diff] [blame] | 3549 | /* |
| 3550 | * We do not need to update the size field of the directory's inode item |
| 3551 | * because on log replay we update the field to reflect all existing |
| 3552 | * entries in the directory (see overwrite_item()). |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3553 | */ |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3554 | fail: |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3555 | btrfs_free_path(path); |
Tsutomu Itoh | a62f44a | 2011-04-25 19:43:51 -0400 | [diff] [blame] | 3556 | out_unlock: |
Nikolay Borisov | 49f34d1 | 2017-01-18 00:31:32 +0200 | [diff] [blame] | 3557 | mutex_unlock(&dir->log_mutex); |
Josef Bacik | fb2fecb | 2020-08-10 17:31:16 -0400 | [diff] [blame] | 3558 | if (err == -ENOSPC) { |
David Sterba | 9078776 | 2019-03-20 13:28:05 +0100 | [diff] [blame] | 3559 | btrfs_set_log_full_commit(trans); |
Josef Bacik | fb2fecb | 2020-08-10 17:31:16 -0400 | [diff] [blame] | 3560 | err = 0; |
Filipe Manana | 8dcbc26 | 2021-10-01 13:52:33 +0100 | [diff] [blame] | 3561 | } else if (err < 0) { |
Josef Bacik | fb2fecb | 2020-08-10 17:31:16 -0400 | [diff] [blame] | 3562 | btrfs_abort_transaction(trans, err); |
| 3563 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3564 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3565 | btrfs_end_log_trans(root); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3566 | |
Andi Kleen | 411fc6b | 2010-10-29 15:14:31 -0400 | [diff] [blame] | 3567 | return err; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3568 | } |
| 3569 | |
| 3570 | /* see comments for btrfs_del_dir_entries_in_log */ |
| 3571 | int btrfs_del_inode_ref_in_log(struct btrfs_trans_handle *trans, |
| 3572 | struct btrfs_root *root, |
| 3573 | const char *name, int name_len, |
Nikolay Borisov | a491abb | 2017-01-18 00:31:33 +0200 | [diff] [blame] | 3574 | struct btrfs_inode *inode, u64 dirid) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3575 | { |
| 3576 | struct btrfs_root *log; |
| 3577 | u64 index; |
| 3578 | int ret; |
| 3579 | |
Filipe Manana | 803f0f6 | 2019-06-19 13:05:39 +0100 | [diff] [blame] | 3580 | if (!inode_logged(trans, inode)) |
Chris Mason | 3a5f1d4 | 2008-09-11 15:53:37 -0400 | [diff] [blame] | 3581 | return 0; |
| 3582 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3583 | ret = join_running_log_trans(root); |
| 3584 | if (ret) |
| 3585 | return 0; |
| 3586 | log = root->log_root; |
Nikolay Borisov | a491abb | 2017-01-18 00:31:33 +0200 | [diff] [blame] | 3587 | mutex_lock(&inode->log_mutex); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3588 | |
Nikolay Borisov | a491abb | 2017-01-18 00:31:33 +0200 | [diff] [blame] | 3589 | 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] | 3590 | dirid, &index); |
Nikolay Borisov | a491abb | 2017-01-18 00:31:33 +0200 | [diff] [blame] | 3591 | mutex_unlock(&inode->log_mutex); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3592 | if (ret == -ENOSPC) { |
David Sterba | 9078776 | 2019-03-20 13:28:05 +0100 | [diff] [blame] | 3593 | btrfs_set_log_full_commit(trans); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3594 | ret = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3595 | } else if (ret < 0 && ret != -ENOENT) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3596 | btrfs_abort_transaction(trans, ret); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3597 | btrfs_end_log_trans(root); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3598 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3599 | return ret; |
| 3600 | } |
| 3601 | |
| 3602 | /* |
| 3603 | * creates a range item in the log for 'dirid'. first_offset and |
| 3604 | * last_offset tell us which parts of the key space the log should |
| 3605 | * be considered authoritative for. |
| 3606 | */ |
| 3607 | static noinline int insert_dir_log_key(struct btrfs_trans_handle *trans, |
| 3608 | struct btrfs_root *log, |
| 3609 | struct btrfs_path *path, |
| 3610 | int key_type, u64 dirid, |
| 3611 | u64 first_offset, u64 last_offset) |
| 3612 | { |
| 3613 | int ret; |
| 3614 | struct btrfs_key key; |
| 3615 | struct btrfs_dir_log_item *item; |
| 3616 | |
| 3617 | key.objectid = dirid; |
| 3618 | key.offset = first_offset; |
| 3619 | if (key_type == BTRFS_DIR_ITEM_KEY) |
| 3620 | key.type = BTRFS_DIR_LOG_ITEM_KEY; |
| 3621 | else |
| 3622 | key.type = BTRFS_DIR_LOG_INDEX_KEY; |
| 3623 | ret = btrfs_insert_empty_item(trans, log, path, &key, sizeof(*item)); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3624 | if (ret) |
| 3625 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3626 | |
| 3627 | item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 3628 | struct btrfs_dir_log_item); |
| 3629 | btrfs_set_dir_log_end(path->nodes[0], item, last_offset); |
| 3630 | btrfs_mark_buffer_dirty(path->nodes[0]); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3631 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3632 | return 0; |
| 3633 | } |
| 3634 | |
| 3635 | /* |
| 3636 | * log all the items included in the current transaction for a given |
| 3637 | * directory. This also creates the range items in the log tree required |
| 3638 | * to replay anything deleted before the fsync |
| 3639 | */ |
| 3640 | static noinline int log_dir_items(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 684a577 | 2017-01-18 00:31:41 +0200 | [diff] [blame] | 3641 | struct btrfs_root *root, struct btrfs_inode *inode, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3642 | struct btrfs_path *path, |
| 3643 | struct btrfs_path *dst_path, int key_type, |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 3644 | struct btrfs_log_ctx *ctx, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3645 | u64 min_offset, u64 *last_offset_ret) |
| 3646 | { |
| 3647 | struct btrfs_key min_key; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3648 | struct btrfs_root *log = root->log_root; |
| 3649 | struct extent_buffer *src; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3650 | int err = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3651 | int ret; |
| 3652 | int i; |
| 3653 | int nritems; |
| 3654 | u64 first_offset = min_offset; |
| 3655 | u64 last_offset = (u64)-1; |
Nikolay Borisov | 684a577 | 2017-01-18 00:31:41 +0200 | [diff] [blame] | 3656 | u64 ino = btrfs_ino(inode); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3657 | |
| 3658 | log = root->log_root; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3659 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3660 | min_key.objectid = ino; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3661 | min_key.type = key_type; |
| 3662 | min_key.offset = min_offset; |
| 3663 | |
Filipe David Borba Manana | 6174d3c | 2013-10-01 16:13:42 +0100 | [diff] [blame] | 3664 | ret = btrfs_search_forward(root, &min_key, path, trans->transid); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3665 | |
| 3666 | /* |
| 3667 | * we didn't find anything from this transaction, see if there |
| 3668 | * is anything at all |
| 3669 | */ |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3670 | if (ret != 0 || min_key.objectid != ino || min_key.type != key_type) { |
| 3671 | min_key.objectid = ino; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3672 | min_key.type = key_type; |
| 3673 | min_key.offset = (u64)-1; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3674 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3675 | ret = btrfs_search_slot(NULL, root, &min_key, path, 0, 0); |
| 3676 | if (ret < 0) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3677 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3678 | return ret; |
| 3679 | } |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3680 | ret = btrfs_previous_item(root, path, ino, key_type); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3681 | |
| 3682 | /* if ret == 0 there are items for this type, |
| 3683 | * create a range to tell us the last key of this type. |
| 3684 | * otherwise, there are no items in this directory after |
| 3685 | * *min_offset, and we create a range to indicate that. |
| 3686 | */ |
| 3687 | if (ret == 0) { |
| 3688 | struct btrfs_key tmp; |
| 3689 | btrfs_item_key_to_cpu(path->nodes[0], &tmp, |
| 3690 | path->slots[0]); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3691 | if (key_type == tmp.type) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3692 | first_offset = max(min_offset, tmp.offset) + 1; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3693 | } |
| 3694 | goto done; |
| 3695 | } |
| 3696 | |
| 3697 | /* go backward to find any previous key */ |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3698 | ret = btrfs_previous_item(root, path, ino, key_type); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3699 | if (ret == 0) { |
| 3700 | struct btrfs_key tmp; |
| 3701 | btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]); |
| 3702 | if (key_type == tmp.type) { |
| 3703 | first_offset = tmp.offset; |
| 3704 | ret = overwrite_item(trans, log, dst_path, |
| 3705 | path->nodes[0], path->slots[0], |
| 3706 | &tmp); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3707 | if (ret) { |
| 3708 | err = ret; |
| 3709 | goto done; |
| 3710 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3711 | } |
| 3712 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3713 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3714 | |
Josef Bacik | 2cc8334 | 2019-03-06 17:13:04 -0500 | [diff] [blame] | 3715 | /* |
| 3716 | * Find the first key from this transaction again. See the note for |
| 3717 | * log_new_dir_dentries, if we're logging a directory recursively we |
| 3718 | * won't be holding its i_mutex, which means we can modify the directory |
| 3719 | * while we're logging it. If we remove an entry between our first |
| 3720 | * search and this search we'll not find the key again and can just |
| 3721 | * bail. |
| 3722 | */ |
Filipe Manana | bb56f02 | 2020-09-14 15:27:50 +0100 | [diff] [blame] | 3723 | search: |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3724 | ret = btrfs_search_slot(NULL, root, &min_key, path, 0, 0); |
Josef Bacik | 2cc8334 | 2019-03-06 17:13:04 -0500 | [diff] [blame] | 3725 | if (ret != 0) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3726 | goto done; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3727 | |
| 3728 | /* |
| 3729 | * we have a block from this transaction, log every item in it |
| 3730 | * from our directory |
| 3731 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3732 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3733 | struct btrfs_key tmp; |
| 3734 | src = path->nodes[0]; |
| 3735 | nritems = btrfs_header_nritems(src); |
| 3736 | for (i = path->slots[0]; i < nritems; i++) { |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 3737 | struct btrfs_dir_item *di; |
| 3738 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3739 | btrfs_item_key_to_cpu(src, &min_key, i); |
| 3740 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3741 | if (min_key.objectid != ino || min_key.type != key_type) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3742 | goto done; |
Filipe Manana | bb56f02 | 2020-09-14 15:27:50 +0100 | [diff] [blame] | 3743 | |
| 3744 | if (need_resched()) { |
| 3745 | btrfs_release_path(path); |
| 3746 | cond_resched(); |
| 3747 | goto search; |
| 3748 | } |
| 3749 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3750 | ret = overwrite_item(trans, log, dst_path, src, i, |
| 3751 | &min_key); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3752 | if (ret) { |
| 3753 | err = ret; |
| 3754 | goto done; |
| 3755 | } |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 3756 | |
| 3757 | /* |
| 3758 | * We must make sure that when we log a directory entry, |
| 3759 | * the corresponding inode, after log replay, has a |
| 3760 | * matching link count. For example: |
| 3761 | * |
| 3762 | * touch foo |
| 3763 | * mkdir mydir |
| 3764 | * sync |
| 3765 | * ln foo mydir/bar |
| 3766 | * xfs_io -c "fsync" mydir |
| 3767 | * <crash> |
| 3768 | * <mount fs and log replay> |
| 3769 | * |
| 3770 | * Would result in a fsync log that when replayed, our |
| 3771 | * file inode would have a link count of 1, but we get |
| 3772 | * two directory entries pointing to the same inode. |
| 3773 | * After removing one of the names, it would not be |
| 3774 | * possible to remove the other name, which resulted |
| 3775 | * always in stale file handle errors, and would not |
| 3776 | * be possible to rmdir the parent directory, since |
| 3777 | * its i_size could never decrement to the value |
| 3778 | * BTRFS_EMPTY_DIR_SIZE, resulting in -ENOTEMPTY errors. |
| 3779 | */ |
| 3780 | di = btrfs_item_ptr(src, i, struct btrfs_dir_item); |
| 3781 | btrfs_dir_item_key_to_cpu(src, di, &tmp); |
Filipe Manana | 289cffc | 2021-08-31 15:30:32 +0100 | [diff] [blame] | 3782 | if ((btrfs_dir_transid(src, di) == trans->transid || |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 3783 | btrfs_dir_type(src, di) == BTRFS_FT_DIR) && |
| 3784 | tmp.type != BTRFS_ROOT_ITEM_KEY) |
| 3785 | ctx->log_new_dentries = true; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3786 | } |
| 3787 | path->slots[0] = nritems; |
| 3788 | |
| 3789 | /* |
| 3790 | * look ahead to the next item and see if it is also |
| 3791 | * from this directory and from this transaction |
| 3792 | */ |
| 3793 | ret = btrfs_next_leaf(root, path); |
Liu Bo | 80c0b42 | 2018-04-03 01:59:47 +0800 | [diff] [blame] | 3794 | if (ret) { |
| 3795 | if (ret == 1) |
| 3796 | last_offset = (u64)-1; |
| 3797 | else |
| 3798 | err = ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3799 | goto done; |
| 3800 | } |
| 3801 | btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]); |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3802 | if (tmp.objectid != ino || tmp.type != key_type) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3803 | last_offset = (u64)-1; |
| 3804 | goto done; |
| 3805 | } |
| 3806 | if (btrfs_header_generation(path->nodes[0]) != trans->transid) { |
| 3807 | ret = overwrite_item(trans, log, dst_path, |
| 3808 | path->nodes[0], path->slots[0], |
| 3809 | &tmp); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3810 | if (ret) |
| 3811 | err = ret; |
| 3812 | else |
| 3813 | last_offset = tmp.offset; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3814 | goto done; |
| 3815 | } |
| 3816 | } |
| 3817 | done: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3818 | btrfs_release_path(path); |
| 3819 | btrfs_release_path(dst_path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3820 | |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3821 | if (err == 0) { |
| 3822 | *last_offset_ret = last_offset; |
| 3823 | /* |
| 3824 | * insert the log range keys to indicate where the log |
| 3825 | * is valid |
| 3826 | */ |
| 3827 | ret = insert_dir_log_key(trans, log, path, key_type, |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3828 | ino, first_offset, last_offset); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3829 | if (ret) |
| 3830 | err = ret; |
| 3831 | } |
| 3832 | return err; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3833 | } |
| 3834 | |
| 3835 | /* |
| 3836 | * logging directories is very similar to logging inodes, We find all the items |
| 3837 | * from the current transaction and write them to the log. |
| 3838 | * |
| 3839 | * The recovery code scans the directory in the subvolume, and if it finds a |
| 3840 | * key in the range logged that is not present in the log tree, then it means |
| 3841 | * that dir entry was unlinked during the transaction. |
| 3842 | * |
| 3843 | * In order for that scan to work, we must include one key smaller than |
| 3844 | * the smallest logged by this transaction and one key larger than the largest |
| 3845 | * key logged by this transaction. |
| 3846 | */ |
| 3847 | static noinline int log_directory_changes(struct btrfs_trans_handle *trans, |
Nikolay Borisov | dbf39ea | 2017-01-18 00:31:42 +0200 | [diff] [blame] | 3848 | struct btrfs_root *root, struct btrfs_inode *inode, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3849 | struct btrfs_path *path, |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 3850 | struct btrfs_path *dst_path, |
| 3851 | struct btrfs_log_ctx *ctx) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3852 | { |
| 3853 | u64 min_key; |
| 3854 | u64 max_key; |
| 3855 | int ret; |
| 3856 | int key_type = BTRFS_DIR_ITEM_KEY; |
| 3857 | |
| 3858 | again: |
| 3859 | min_key = 0; |
| 3860 | max_key = 0; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3861 | while (1) { |
Nikolay Borisov | dbf39ea | 2017-01-18 00:31:42 +0200 | [diff] [blame] | 3862 | ret = log_dir_items(trans, root, inode, path, dst_path, key_type, |
| 3863 | ctx, min_key, &max_key); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3864 | if (ret) |
| 3865 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3866 | if (max_key == (u64)-1) |
| 3867 | break; |
| 3868 | min_key = max_key + 1; |
| 3869 | } |
| 3870 | |
| 3871 | if (key_type == BTRFS_DIR_ITEM_KEY) { |
| 3872 | key_type = BTRFS_DIR_INDEX_KEY; |
| 3873 | goto again; |
| 3874 | } |
| 3875 | return 0; |
| 3876 | } |
| 3877 | |
| 3878 | /* |
| 3879 | * a helper function to drop items from the log before we relog an |
| 3880 | * inode. max_key_type indicates the highest item type to remove. |
| 3881 | * This cannot be run for file data extents because it does not |
| 3882 | * free the extents they point to. |
| 3883 | */ |
Filipe Manana | 88e221c | 2021-08-31 15:30:35 +0100 | [diff] [blame^] | 3884 | static int drop_inode_items(struct btrfs_trans_handle *trans, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3885 | struct btrfs_root *log, |
| 3886 | struct btrfs_path *path, |
Filipe Manana | 88e221c | 2021-08-31 15:30:35 +0100 | [diff] [blame^] | 3887 | struct btrfs_inode *inode, |
| 3888 | int max_key_type) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3889 | { |
| 3890 | int ret; |
| 3891 | struct btrfs_key key; |
| 3892 | struct btrfs_key found_key; |
Josef Bacik | 18ec90d | 2012-09-28 11:56:28 -0400 | [diff] [blame] | 3893 | int start_slot; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3894 | |
Filipe Manana | 88e221c | 2021-08-31 15:30:35 +0100 | [diff] [blame^] | 3895 | if (!inode_logged(trans, inode)) |
| 3896 | return 0; |
| 3897 | |
| 3898 | key.objectid = btrfs_ino(inode); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3899 | key.type = max_key_type; |
| 3900 | key.offset = (u64)-1; |
| 3901 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3902 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3903 | ret = btrfs_search_slot(trans, log, &key, path, -1, 1); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 3904 | BUG_ON(ret == 0); /* Logic error */ |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3905 | if (ret < 0) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3906 | break; |
| 3907 | |
| 3908 | if (path->slots[0] == 0) |
| 3909 | break; |
| 3910 | |
| 3911 | path->slots[0]--; |
| 3912 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, |
| 3913 | path->slots[0]); |
| 3914 | |
Filipe Manana | 88e221c | 2021-08-31 15:30:35 +0100 | [diff] [blame^] | 3915 | if (found_key.objectid != key.objectid) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3916 | break; |
| 3917 | |
Josef Bacik | 18ec90d | 2012-09-28 11:56:28 -0400 | [diff] [blame] | 3918 | found_key.offset = 0; |
| 3919 | found_key.type = 0; |
Qu Wenruo | e3b8336 | 2020-04-17 15:08:21 +0800 | [diff] [blame] | 3920 | ret = btrfs_bin_search(path->nodes[0], &found_key, &start_slot); |
Filipe Manana | cbca7d5 | 2019-02-18 16:57:26 +0000 | [diff] [blame] | 3921 | if (ret < 0) |
| 3922 | break; |
Josef Bacik | 18ec90d | 2012-09-28 11:56:28 -0400 | [diff] [blame] | 3923 | |
| 3924 | ret = btrfs_del_items(trans, log, path, start_slot, |
| 3925 | path->slots[0] - start_slot + 1); |
| 3926 | /* |
| 3927 | * If start slot isn't 0 then we don't need to re-search, we've |
| 3928 | * found the last guy with the objectid in this tree. |
| 3929 | */ |
| 3930 | if (ret || start_slot != 0) |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 3931 | break; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3932 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3933 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3934 | btrfs_release_path(path); |
Josef Bacik | 5bdbeb2 | 2012-05-29 16:59:49 -0400 | [diff] [blame] | 3935 | if (ret > 0) |
| 3936 | ret = 0; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3937 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3938 | } |
| 3939 | |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3940 | static void fill_inode_item(struct btrfs_trans_handle *trans, |
| 3941 | struct extent_buffer *leaf, |
| 3942 | struct btrfs_inode_item *item, |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 3943 | struct inode *inode, int log_inode_only, |
| 3944 | u64 logged_isize) |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3945 | { |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3946 | struct btrfs_map_token token; |
Boris Burkov | 77eea05 | 2021-06-30 13:01:48 -0700 | [diff] [blame] | 3947 | u64 flags; |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3948 | |
David Sterba | c82f823 | 2019-08-09 17:48:21 +0200 | [diff] [blame] | 3949 | btrfs_init_map_token(&token, leaf); |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3950 | |
| 3951 | if (log_inode_only) { |
| 3952 | /* set the generation to zero so the recover code |
| 3953 | * can tell the difference between an logging |
| 3954 | * just to say 'this inode exists' and a logging |
| 3955 | * to say 'update this inode with these values' |
| 3956 | */ |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 3957 | btrfs_set_token_inode_generation(&token, item, 0); |
| 3958 | btrfs_set_token_inode_size(&token, item, logged_isize); |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3959 | } else { |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 3960 | btrfs_set_token_inode_generation(&token, item, |
| 3961 | BTRFS_I(inode)->generation); |
| 3962 | btrfs_set_token_inode_size(&token, item, inode->i_size); |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3963 | } |
| 3964 | |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 3965 | btrfs_set_token_inode_uid(&token, item, i_uid_read(inode)); |
| 3966 | btrfs_set_token_inode_gid(&token, item, i_gid_read(inode)); |
| 3967 | btrfs_set_token_inode_mode(&token, item, inode->i_mode); |
| 3968 | btrfs_set_token_inode_nlink(&token, item, inode->i_nlink); |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3969 | |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 3970 | btrfs_set_token_timespec_sec(&token, &item->atime, |
| 3971 | inode->i_atime.tv_sec); |
| 3972 | btrfs_set_token_timespec_nsec(&token, &item->atime, |
| 3973 | inode->i_atime.tv_nsec); |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3974 | |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 3975 | btrfs_set_token_timespec_sec(&token, &item->mtime, |
| 3976 | inode->i_mtime.tv_sec); |
| 3977 | btrfs_set_token_timespec_nsec(&token, &item->mtime, |
| 3978 | inode->i_mtime.tv_nsec); |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3979 | |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 3980 | btrfs_set_token_timespec_sec(&token, &item->ctime, |
| 3981 | inode->i_ctime.tv_sec); |
| 3982 | btrfs_set_token_timespec_nsec(&token, &item->ctime, |
| 3983 | inode->i_ctime.tv_nsec); |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3984 | |
Filipe Manana | e593e54 | 2021-01-27 10:34:55 +0000 | [diff] [blame] | 3985 | /* |
| 3986 | * We do not need to set the nbytes field, in fact during a fast fsync |
| 3987 | * its value may not even be correct, since a fast fsync does not wait |
| 3988 | * for ordered extent completion, which is where we update nbytes, it |
| 3989 | * only waits for writeback to complete. During log replay as we find |
| 3990 | * file extent items and replay them, we adjust the nbytes field of the |
| 3991 | * inode item in subvolume tree as needed (see overwrite_item()). |
| 3992 | */ |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3993 | |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 3994 | btrfs_set_token_inode_sequence(&token, item, inode_peek_iversion(inode)); |
| 3995 | btrfs_set_token_inode_transid(&token, item, trans->transid); |
| 3996 | btrfs_set_token_inode_rdev(&token, item, inode->i_rdev); |
Boris Burkov | 77eea05 | 2021-06-30 13:01:48 -0700 | [diff] [blame] | 3997 | flags = btrfs_inode_combine_flags(BTRFS_I(inode)->flags, |
| 3998 | BTRFS_I(inode)->ro_flags); |
| 3999 | btrfs_set_token_inode_flags(&token, item, flags); |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 4000 | btrfs_set_token_inode_block_group(&token, item, 0); |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 4001 | } |
| 4002 | |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 4003 | static int log_inode_item(struct btrfs_trans_handle *trans, |
| 4004 | struct btrfs_root *log, struct btrfs_path *path, |
Filipe Manana | 2ac691d | 2021-07-20 16:03:43 +0100 | [diff] [blame] | 4005 | struct btrfs_inode *inode, bool inode_item_dropped) |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 4006 | { |
| 4007 | struct btrfs_inode_item *inode_item; |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 4008 | int ret; |
| 4009 | |
Filipe Manana | 2ac691d | 2021-07-20 16:03:43 +0100 | [diff] [blame] | 4010 | /* |
| 4011 | * If we are doing a fast fsync and the inode was logged before in the |
| 4012 | * current transaction, then we know the inode was previously logged and |
| 4013 | * it exists in the log tree. For performance reasons, in this case use |
| 4014 | * btrfs_search_slot() directly with ins_len set to 0 so that we never |
| 4015 | * attempt a write lock on the leaf's parent, which adds unnecessary lock |
| 4016 | * contention in case there are concurrent fsyncs for other inodes of the |
| 4017 | * same subvolume. Using btrfs_insert_empty_item() when the inode item |
| 4018 | * already exists can also result in unnecessarily splitting a leaf. |
| 4019 | */ |
| 4020 | if (!inode_item_dropped && inode->logged_trans == trans->transid) { |
| 4021 | ret = btrfs_search_slot(trans, log, &inode->location, path, 0, 1); |
| 4022 | ASSERT(ret <= 0); |
| 4023 | if (ret > 0) |
| 4024 | ret = -ENOENT; |
| 4025 | } else { |
| 4026 | /* |
| 4027 | * This means it is the first fsync in the current transaction, |
| 4028 | * so the inode item is not in the log and we need to insert it. |
| 4029 | * We can never get -EEXIST because we are only called for a fast |
| 4030 | * fsync and in case an inode eviction happens after the inode was |
| 4031 | * logged before in the current transaction, when we load again |
| 4032 | * the inode, we set BTRFS_INODE_NEEDS_FULL_SYNC on its runtime |
| 4033 | * flags and set ->logged_trans to 0. |
| 4034 | */ |
| 4035 | ret = btrfs_insert_empty_item(trans, log, path, &inode->location, |
| 4036 | sizeof(*inode_item)); |
| 4037 | ASSERT(ret != -EEXIST); |
| 4038 | } |
| 4039 | if (ret) |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 4040 | return ret; |
| 4041 | inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 4042 | struct btrfs_inode_item); |
Nikolay Borisov | 6d889a3 | 2017-01-18 00:31:47 +0200 | [diff] [blame] | 4043 | fill_inode_item(trans, path->nodes[0], inode_item, &inode->vfs_inode, |
| 4044 | 0, 0); |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 4045 | btrfs_release_path(path); |
| 4046 | return 0; |
| 4047 | } |
| 4048 | |
Filipe Manana | 40e046a | 2019-12-05 16:58:30 +0000 | [diff] [blame] | 4049 | static int log_csums(struct btrfs_trans_handle *trans, |
Filipe Manana | 3ebac17 | 2020-07-15 12:30:43 +0100 | [diff] [blame] | 4050 | struct btrfs_inode *inode, |
Filipe Manana | 40e046a | 2019-12-05 16:58:30 +0000 | [diff] [blame] | 4051 | struct btrfs_root *log_root, |
| 4052 | struct btrfs_ordered_sum *sums) |
| 4053 | { |
Filipe Manana | e289f03 | 2020-05-18 12:14:50 +0100 | [diff] [blame] | 4054 | const u64 lock_end = sums->bytenr + sums->len - 1; |
| 4055 | struct extent_state *cached_state = NULL; |
Filipe Manana | 40e046a | 2019-12-05 16:58:30 +0000 | [diff] [blame] | 4056 | int ret; |
| 4057 | |
| 4058 | /* |
Filipe Manana | 3ebac17 | 2020-07-15 12:30:43 +0100 | [diff] [blame] | 4059 | * If this inode was not used for reflink operations in the current |
| 4060 | * transaction with new extents, then do the fast path, no need to |
| 4061 | * worry about logging checksum items with overlapping ranges. |
| 4062 | */ |
| 4063 | if (inode->last_reflink_trans < trans->transid) |
| 4064 | return btrfs_csum_file_blocks(trans, log_root, sums); |
| 4065 | |
| 4066 | /* |
Filipe Manana | e289f03 | 2020-05-18 12:14:50 +0100 | [diff] [blame] | 4067 | * Serialize logging for checksums. This is to avoid racing with the |
| 4068 | * same checksum being logged by another task that is logging another |
| 4069 | * file which happens to refer to the same extent as well. Such races |
| 4070 | * can leave checksum items in the log with overlapping ranges. |
| 4071 | */ |
| 4072 | ret = lock_extent_bits(&log_root->log_csum_range, sums->bytenr, |
| 4073 | lock_end, &cached_state); |
| 4074 | if (ret) |
| 4075 | return ret; |
| 4076 | /* |
Filipe Manana | 40e046a | 2019-12-05 16:58:30 +0000 | [diff] [blame] | 4077 | * Due to extent cloning, we might have logged a csum item that covers a |
| 4078 | * subrange of a cloned extent, and later we can end up logging a csum |
| 4079 | * item for a larger subrange of the same extent or the entire range. |
| 4080 | * This would leave csum items in the log tree that cover the same range |
| 4081 | * and break the searches for checksums in the log tree, resulting in |
| 4082 | * some checksums missing in the fs/subvolume tree. So just delete (or |
| 4083 | * trim and adjust) any existing csum items in the log for this range. |
| 4084 | */ |
| 4085 | ret = btrfs_del_csums(trans, log_root, sums->bytenr, sums->len); |
Filipe Manana | e289f03 | 2020-05-18 12:14:50 +0100 | [diff] [blame] | 4086 | if (!ret) |
| 4087 | ret = btrfs_csum_file_blocks(trans, log_root, sums); |
Filipe Manana | 40e046a | 2019-12-05 16:58:30 +0000 | [diff] [blame] | 4088 | |
Filipe Manana | e289f03 | 2020-05-18 12:14:50 +0100 | [diff] [blame] | 4089 | unlock_extent_cached(&log_root->log_csum_range, sums->bytenr, lock_end, |
| 4090 | &cached_state); |
| 4091 | |
| 4092 | return ret; |
Filipe Manana | 40e046a | 2019-12-05 16:58:30 +0000 | [diff] [blame] | 4093 | } |
| 4094 | |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4095 | static noinline int copy_items(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 44d70e1 | 2017-01-18 00:31:36 +0200 | [diff] [blame] | 4096 | struct btrfs_inode *inode, |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4097 | struct btrfs_path *dst_path, |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4098 | struct btrfs_path *src_path, |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 4099 | int start_slot, int nr, int inode_only, |
| 4100 | u64 logged_isize) |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4101 | { |
David Sterba | 3ffbd68 | 2018-06-29 10:56:42 +0200 | [diff] [blame] | 4102 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4103 | unsigned long src_offset; |
| 4104 | unsigned long dst_offset; |
Nikolay Borisov | 44d70e1 | 2017-01-18 00:31:36 +0200 | [diff] [blame] | 4105 | struct btrfs_root *log = inode->root->log_root; |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4106 | struct btrfs_file_extent_item *extent; |
| 4107 | struct btrfs_inode_item *inode_item; |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 4108 | struct extent_buffer *src = src_path->nodes[0]; |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4109 | int ret; |
| 4110 | struct btrfs_key *ins_keys; |
| 4111 | u32 *ins_sizes; |
| 4112 | char *ins_data; |
| 4113 | int i; |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 4114 | struct list_head ordered_sums; |
Nikolay Borisov | 44d70e1 | 2017-01-18 00:31:36 +0200 | [diff] [blame] | 4115 | int skip_csum = inode->flags & BTRFS_INODE_NODATASUM; |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 4116 | |
| 4117 | INIT_LIST_HEAD(&ordered_sums); |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4118 | |
| 4119 | ins_data = kmalloc(nr * sizeof(struct btrfs_key) + |
| 4120 | nr * sizeof(u32), GFP_NOFS); |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 4121 | if (!ins_data) |
| 4122 | return -ENOMEM; |
| 4123 | |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4124 | ins_sizes = (u32 *)ins_data; |
| 4125 | ins_keys = (struct btrfs_key *)(ins_data + nr * sizeof(u32)); |
| 4126 | |
| 4127 | for (i = 0; i < nr; i++) { |
| 4128 | ins_sizes[i] = btrfs_item_size_nr(src, i + start_slot); |
| 4129 | btrfs_item_key_to_cpu(src, ins_keys + i, i + start_slot); |
| 4130 | } |
| 4131 | ret = btrfs_insert_empty_items(trans, log, dst_path, |
| 4132 | ins_keys, ins_sizes, nr); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 4133 | if (ret) { |
| 4134 | kfree(ins_data); |
| 4135 | return ret; |
| 4136 | } |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4137 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4138 | for (i = 0; i < nr; i++, dst_path->slots[0]++) { |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4139 | dst_offset = btrfs_item_ptr_offset(dst_path->nodes[0], |
| 4140 | dst_path->slots[0]); |
| 4141 | |
| 4142 | src_offset = btrfs_item_ptr_offset(src, start_slot + i); |
| 4143 | |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 4144 | if (ins_keys[i].type == BTRFS_INODE_ITEM_KEY) { |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4145 | inode_item = btrfs_item_ptr(dst_path->nodes[0], |
| 4146 | dst_path->slots[0], |
| 4147 | struct btrfs_inode_item); |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 4148 | fill_inode_item(trans, dst_path->nodes[0], inode_item, |
David Sterba | f85b737 | 2017-01-20 14:54:07 +0100 | [diff] [blame] | 4149 | &inode->vfs_inode, |
| 4150 | inode_only == LOG_INODE_EXISTS, |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 4151 | logged_isize); |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 4152 | } else { |
| 4153 | copy_extent_buffer(dst_path->nodes[0], src, dst_offset, |
| 4154 | src_offset, ins_sizes[i]); |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4155 | } |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 4156 | |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4157 | /* take a reference on file data extents so that truncates |
| 4158 | * or deletes of this inode don't have to relog the inode |
| 4159 | * again |
| 4160 | */ |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 4161 | if (ins_keys[i].type == BTRFS_EXTENT_DATA_KEY && |
Liu Bo | d279440 | 2012-08-29 01:07:56 -0600 | [diff] [blame] | 4162 | !skip_csum) { |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4163 | int found_type; |
| 4164 | extent = btrfs_item_ptr(src, start_slot + i, |
| 4165 | struct btrfs_file_extent_item); |
| 4166 | |
liubo | 8e531cd | 2011-05-06 10:36:09 +0800 | [diff] [blame] | 4167 | if (btrfs_file_extent_generation(src, extent) < trans->transid) |
| 4168 | continue; |
| 4169 | |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4170 | found_type = btrfs_file_extent_type(src, extent); |
Josef Bacik | 6f1fed7 | 2012-09-26 11:07:06 -0400 | [diff] [blame] | 4171 | if (found_type == BTRFS_FILE_EXTENT_REG) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4172 | u64 ds, dl, cs, cl; |
| 4173 | ds = btrfs_file_extent_disk_bytenr(src, |
| 4174 | extent); |
| 4175 | /* ds == 0 is a hole */ |
| 4176 | if (ds == 0) |
| 4177 | continue; |
| 4178 | |
| 4179 | dl = btrfs_file_extent_disk_num_bytes(src, |
| 4180 | extent); |
| 4181 | cs = btrfs_file_extent_offset(src, extent); |
| 4182 | cl = btrfs_file_extent_num_bytes(src, |
Joe Perches | a419aef | 2009-08-18 11:18:35 -0700 | [diff] [blame] | 4183 | extent); |
Chris Mason | 580afd7 | 2008-12-08 19:15:39 -0500 | [diff] [blame] | 4184 | if (btrfs_file_extent_compression(src, |
| 4185 | extent)) { |
| 4186 | cs = 0; |
| 4187 | cl = dl; |
| 4188 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4189 | |
| 4190 | ret = btrfs_lookup_csums_range( |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4191 | fs_info->csum_root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4192 | ds + cs, ds + cs + cl - 1, |
Arne Jansen | a2de733 | 2011-03-08 14:14:00 +0100 | [diff] [blame] | 4193 | &ordered_sums, 0); |
Filipe Manana | 4f26433 | 2020-07-29 10:17:50 +0100 | [diff] [blame] | 4194 | if (ret) |
| 4195 | break; |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4196 | } |
| 4197 | } |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4198 | } |
| 4199 | |
| 4200 | btrfs_mark_buffer_dirty(dst_path->nodes[0]); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4201 | btrfs_release_path(dst_path); |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4202 | kfree(ins_data); |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 4203 | |
| 4204 | /* |
| 4205 | * we have to do this after the loop above to avoid changing the |
| 4206 | * log tree while trying to change the log tree. |
| 4207 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 4208 | while (!list_empty(&ordered_sums)) { |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 4209 | struct btrfs_ordered_sum *sums = list_entry(ordered_sums.next, |
| 4210 | struct btrfs_ordered_sum, |
| 4211 | list); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 4212 | if (!ret) |
Filipe Manana | 3ebac17 | 2020-07-15 12:30:43 +0100 | [diff] [blame] | 4213 | ret = log_csums(trans, inode, log, sums); |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 4214 | list_del(&sums->list); |
| 4215 | kfree(sums); |
| 4216 | } |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 4217 | |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 4218 | return ret; |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4219 | } |
| 4220 | |
Sami Tolvanen | 4f0f586 | 2021-04-08 11:28:34 -0700 | [diff] [blame] | 4221 | static int extent_cmp(void *priv, const struct list_head *a, |
| 4222 | const struct list_head *b) |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4223 | { |
David Sterba | 214cc18 | 2021-07-26 14:15:26 +0200 | [diff] [blame] | 4224 | const struct extent_map *em1, *em2; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4225 | |
| 4226 | em1 = list_entry(a, struct extent_map, list); |
| 4227 | em2 = list_entry(b, struct extent_map, list); |
| 4228 | |
| 4229 | if (em1->start < em2->start) |
| 4230 | return -1; |
| 4231 | else if (em1->start > em2->start) |
| 4232 | return 1; |
| 4233 | return 0; |
| 4234 | } |
| 4235 | |
Josef Bacik | e7175a6 | 2018-05-23 11:58:34 -0400 | [diff] [blame] | 4236 | static int log_extent_csums(struct btrfs_trans_handle *trans, |
| 4237 | struct btrfs_inode *inode, |
Nikolay Borisov | a9ecb65 | 2018-06-20 17:26:42 +0300 | [diff] [blame] | 4238 | struct btrfs_root *log_root, |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 4239 | const struct extent_map *em, |
| 4240 | struct btrfs_log_ctx *ctx) |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4241 | { |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 4242 | struct btrfs_ordered_extent *ordered; |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 4243 | u64 csum_offset; |
| 4244 | u64 csum_len; |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 4245 | u64 mod_start = em->mod_start; |
| 4246 | u64 mod_len = em->mod_len; |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4247 | LIST_HEAD(ordered_sums); |
| 4248 | int ret = 0; |
Josef Bacik | 09a2a8f9 | 2013-04-05 16:51:15 -0400 | [diff] [blame] | 4249 | |
Josef Bacik | e7175a6 | 2018-05-23 11:58:34 -0400 | [diff] [blame] | 4250 | if (inode->flags & BTRFS_INODE_NODATASUM || |
| 4251 | test_bit(EXTENT_FLAG_PREALLOC, &em->flags) || |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4252 | em->block_start == EXTENT_MAP_HOLE) |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 4253 | return 0; |
| 4254 | |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 4255 | list_for_each_entry(ordered, &ctx->ordered_extents, log_list) { |
| 4256 | const u64 ordered_end = ordered->file_offset + ordered->num_bytes; |
| 4257 | const u64 mod_end = mod_start + mod_len; |
| 4258 | struct btrfs_ordered_sum *sums; |
| 4259 | |
| 4260 | if (mod_len == 0) |
| 4261 | break; |
| 4262 | |
| 4263 | if (ordered_end <= mod_start) |
| 4264 | continue; |
| 4265 | if (mod_end <= ordered->file_offset) |
| 4266 | break; |
| 4267 | |
| 4268 | /* |
| 4269 | * We are going to copy all the csums on this ordered extent, so |
| 4270 | * go ahead and adjust mod_start and mod_len in case this ordered |
| 4271 | * extent has already been logged. |
| 4272 | */ |
| 4273 | if (ordered->file_offset > mod_start) { |
| 4274 | if (ordered_end >= mod_end) |
| 4275 | mod_len = ordered->file_offset - mod_start; |
| 4276 | /* |
| 4277 | * If we have this case |
| 4278 | * |
| 4279 | * |--------- logged extent ---------| |
| 4280 | * |----- ordered extent ----| |
| 4281 | * |
| 4282 | * Just don't mess with mod_start and mod_len, we'll |
| 4283 | * just end up logging more csums than we need and it |
| 4284 | * will be ok. |
| 4285 | */ |
| 4286 | } else { |
| 4287 | if (ordered_end < mod_end) { |
| 4288 | mod_len = mod_end - ordered_end; |
| 4289 | mod_start = ordered_end; |
| 4290 | } else { |
| 4291 | mod_len = 0; |
| 4292 | } |
| 4293 | } |
| 4294 | |
| 4295 | /* |
| 4296 | * To keep us from looping for the above case of an ordered |
| 4297 | * extent that falls inside of the logged extent. |
| 4298 | */ |
| 4299 | if (test_and_set_bit(BTRFS_ORDERED_LOGGED_CSUM, &ordered->flags)) |
| 4300 | continue; |
| 4301 | |
| 4302 | list_for_each_entry(sums, &ordered->list, list) { |
| 4303 | ret = log_csums(trans, inode, log_root, sums); |
| 4304 | if (ret) |
| 4305 | return ret; |
| 4306 | } |
| 4307 | } |
| 4308 | |
| 4309 | /* We're done, found all csums in the ordered extents. */ |
| 4310 | if (mod_len == 0) |
| 4311 | return 0; |
| 4312 | |
Josef Bacik | e7175a6 | 2018-05-23 11:58:34 -0400 | [diff] [blame] | 4313 | /* 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] | 4314 | if (em->compress_type) { |
| 4315 | csum_offset = 0; |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4316 | csum_len = max(em->block_len, em->orig_block_len); |
Filipe David Borba Manana | 488111a | 2013-10-28 16:30:29 +0000 | [diff] [blame] | 4317 | } else { |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 4318 | csum_offset = mod_start - em->start; |
| 4319 | csum_len = mod_len; |
Filipe David Borba Manana | 488111a | 2013-10-28 16:30:29 +0000 | [diff] [blame] | 4320 | } |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 4321 | |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 4322 | /* block start is already adjusted for the file extent offset. */ |
Nikolay Borisov | a9ecb65 | 2018-06-20 17:26:42 +0300 | [diff] [blame] | 4323 | ret = btrfs_lookup_csums_range(trans->fs_info->csum_root, |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 4324 | em->block_start + csum_offset, |
| 4325 | em->block_start + csum_offset + |
| 4326 | csum_len - 1, &ordered_sums, 0); |
| 4327 | if (ret) |
| 4328 | return ret; |
| 4329 | |
| 4330 | while (!list_empty(&ordered_sums)) { |
| 4331 | struct btrfs_ordered_sum *sums = list_entry(ordered_sums.next, |
| 4332 | struct btrfs_ordered_sum, |
| 4333 | list); |
| 4334 | if (!ret) |
Filipe Manana | 3ebac17 | 2020-07-15 12:30:43 +0100 | [diff] [blame] | 4335 | ret = log_csums(trans, inode, log_root, sums); |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 4336 | list_del(&sums->list); |
| 4337 | kfree(sums); |
| 4338 | } |
| 4339 | |
| 4340 | return ret; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4341 | } |
| 4342 | |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4343 | static int log_one_extent(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 9d12262 | 2017-01-18 00:31:40 +0200 | [diff] [blame] | 4344 | struct btrfs_inode *inode, struct btrfs_root *root, |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4345 | const struct extent_map *em, |
| 4346 | struct btrfs_path *path, |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4347 | struct btrfs_log_ctx *ctx) |
| 4348 | { |
Filipe Manana | 5893dfb | 2020-11-04 11:07:32 +0000 | [diff] [blame] | 4349 | struct btrfs_drop_extents_args drop_args = { 0 }; |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4350 | struct btrfs_root *log = root->log_root; |
| 4351 | struct btrfs_file_extent_item *fi; |
| 4352 | struct extent_buffer *leaf; |
| 4353 | struct btrfs_map_token token; |
| 4354 | struct btrfs_key key; |
| 4355 | u64 extent_offset = em->start - em->orig_start; |
| 4356 | u64 block_len; |
| 4357 | int ret; |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4358 | |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 4359 | ret = log_extent_csums(trans, inode, log, em, ctx); |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4360 | if (ret) |
| 4361 | return ret; |
| 4362 | |
Filipe Manana | 5893dfb | 2020-11-04 11:07:32 +0000 | [diff] [blame] | 4363 | drop_args.path = path; |
| 4364 | drop_args.start = em->start; |
| 4365 | drop_args.end = em->start + em->len; |
| 4366 | drop_args.replace_extent = true; |
| 4367 | drop_args.extent_item_size = sizeof(*fi); |
| 4368 | ret = btrfs_drop_extents(trans, log, inode, &drop_args); |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4369 | if (ret) |
| 4370 | return ret; |
| 4371 | |
Filipe Manana | 5893dfb | 2020-11-04 11:07:32 +0000 | [diff] [blame] | 4372 | if (!drop_args.extent_inserted) { |
Nikolay Borisov | 9d12262 | 2017-01-18 00:31:40 +0200 | [diff] [blame] | 4373 | key.objectid = btrfs_ino(inode); |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4374 | key.type = BTRFS_EXTENT_DATA_KEY; |
| 4375 | key.offset = em->start; |
| 4376 | |
| 4377 | ret = btrfs_insert_empty_item(trans, log, path, &key, |
| 4378 | sizeof(*fi)); |
| 4379 | if (ret) |
| 4380 | return ret; |
| 4381 | } |
| 4382 | leaf = path->nodes[0]; |
David Sterba | c82f823 | 2019-08-09 17:48:21 +0200 | [diff] [blame] | 4383 | btrfs_init_map_token(&token, leaf); |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4384 | fi = btrfs_item_ptr(leaf, path->slots[0], |
| 4385 | struct btrfs_file_extent_item); |
| 4386 | |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 4387 | btrfs_set_token_file_extent_generation(&token, fi, trans->transid); |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4388 | if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 4389 | btrfs_set_token_file_extent_type(&token, fi, |
| 4390 | BTRFS_FILE_EXTENT_PREALLOC); |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4391 | else |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 4392 | btrfs_set_token_file_extent_type(&token, fi, |
| 4393 | BTRFS_FILE_EXTENT_REG); |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4394 | |
| 4395 | block_len = max(em->block_len, em->orig_block_len); |
| 4396 | if (em->compress_type != BTRFS_COMPRESS_NONE) { |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 4397 | btrfs_set_token_file_extent_disk_bytenr(&token, fi, |
| 4398 | em->block_start); |
| 4399 | btrfs_set_token_file_extent_disk_num_bytes(&token, fi, block_len); |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4400 | } else if (em->block_start < EXTENT_MAP_LAST_BYTE) { |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 4401 | btrfs_set_token_file_extent_disk_bytenr(&token, fi, |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4402 | em->block_start - |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 4403 | extent_offset); |
| 4404 | btrfs_set_token_file_extent_disk_num_bytes(&token, fi, block_len); |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4405 | } else { |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 4406 | btrfs_set_token_file_extent_disk_bytenr(&token, fi, 0); |
| 4407 | btrfs_set_token_file_extent_disk_num_bytes(&token, fi, 0); |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4408 | } |
| 4409 | |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 4410 | btrfs_set_token_file_extent_offset(&token, fi, extent_offset); |
| 4411 | btrfs_set_token_file_extent_num_bytes(&token, fi, em->len); |
| 4412 | btrfs_set_token_file_extent_ram_bytes(&token, fi, em->ram_bytes); |
| 4413 | btrfs_set_token_file_extent_compression(&token, fi, em->compress_type); |
| 4414 | btrfs_set_token_file_extent_encryption(&token, fi, 0); |
| 4415 | btrfs_set_token_file_extent_other_encoding(&token, fi, 0); |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4416 | btrfs_mark_buffer_dirty(leaf); |
| 4417 | |
| 4418 | btrfs_release_path(path); |
| 4419 | |
| 4420 | return ret; |
| 4421 | } |
| 4422 | |
Filipe Manana | 31d11b8 | 2018-05-09 16:01:46 +0100 | [diff] [blame] | 4423 | /* |
| 4424 | * Log all prealloc extents beyond the inode's i_size to make sure we do not |
| 4425 | * lose them after doing a fast fsync and replaying the log. We scan the |
| 4426 | * subvolume's root instead of iterating the inode's extent map tree because |
| 4427 | * otherwise we can log incorrect extent items based on extent map conversion. |
| 4428 | * That can happen due to the fact that extent maps are merged when they |
| 4429 | * are not in the extent map tree's list of modified extents. |
| 4430 | */ |
| 4431 | static int btrfs_log_prealloc_extents(struct btrfs_trans_handle *trans, |
| 4432 | struct btrfs_inode *inode, |
| 4433 | struct btrfs_path *path) |
| 4434 | { |
| 4435 | struct btrfs_root *root = inode->root; |
| 4436 | struct btrfs_key key; |
| 4437 | const u64 i_size = i_size_read(&inode->vfs_inode); |
| 4438 | const u64 ino = btrfs_ino(inode); |
| 4439 | struct btrfs_path *dst_path = NULL; |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4440 | bool dropped_extents = false; |
Filipe Manana | f135cea | 2020-04-23 16:30:53 +0100 | [diff] [blame] | 4441 | u64 truncate_offset = i_size; |
| 4442 | struct extent_buffer *leaf; |
| 4443 | int slot; |
Filipe Manana | 31d11b8 | 2018-05-09 16:01:46 +0100 | [diff] [blame] | 4444 | int ins_nr = 0; |
| 4445 | int start_slot; |
| 4446 | int ret; |
| 4447 | |
| 4448 | if (!(inode->flags & BTRFS_INODE_PREALLOC)) |
| 4449 | return 0; |
| 4450 | |
| 4451 | key.objectid = ino; |
| 4452 | key.type = BTRFS_EXTENT_DATA_KEY; |
| 4453 | key.offset = i_size; |
| 4454 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 4455 | if (ret < 0) |
| 4456 | goto out; |
| 4457 | |
Filipe Manana | f135cea | 2020-04-23 16:30:53 +0100 | [diff] [blame] | 4458 | /* |
| 4459 | * We must check if there is a prealloc extent that starts before the |
| 4460 | * i_size and crosses the i_size boundary. This is to ensure later we |
| 4461 | * truncate down to the end of that extent and not to the i_size, as |
| 4462 | * otherwise we end up losing part of the prealloc extent after a log |
| 4463 | * replay and with an implicit hole if there is another prealloc extent |
| 4464 | * that starts at an offset beyond i_size. |
| 4465 | */ |
| 4466 | ret = btrfs_previous_item(root, path, ino, BTRFS_EXTENT_DATA_KEY); |
| 4467 | if (ret < 0) |
| 4468 | goto out; |
| 4469 | |
| 4470 | if (ret == 0) { |
| 4471 | struct btrfs_file_extent_item *ei; |
| 4472 | |
| 4473 | leaf = path->nodes[0]; |
| 4474 | slot = path->slots[0]; |
| 4475 | ei = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item); |
| 4476 | |
| 4477 | if (btrfs_file_extent_type(leaf, ei) == |
| 4478 | BTRFS_FILE_EXTENT_PREALLOC) { |
| 4479 | u64 extent_end; |
| 4480 | |
| 4481 | btrfs_item_key_to_cpu(leaf, &key, slot); |
| 4482 | extent_end = key.offset + |
| 4483 | btrfs_file_extent_num_bytes(leaf, ei); |
| 4484 | |
| 4485 | if (extent_end > i_size) |
| 4486 | truncate_offset = extent_end; |
| 4487 | } |
| 4488 | } else { |
| 4489 | ret = 0; |
| 4490 | } |
| 4491 | |
Filipe Manana | 31d11b8 | 2018-05-09 16:01:46 +0100 | [diff] [blame] | 4492 | while (true) { |
Filipe Manana | f135cea | 2020-04-23 16:30:53 +0100 | [diff] [blame] | 4493 | leaf = path->nodes[0]; |
| 4494 | slot = path->slots[0]; |
Filipe Manana | 31d11b8 | 2018-05-09 16:01:46 +0100 | [diff] [blame] | 4495 | |
| 4496 | if (slot >= btrfs_header_nritems(leaf)) { |
| 4497 | if (ins_nr > 0) { |
| 4498 | ret = copy_items(trans, inode, dst_path, path, |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4499 | start_slot, ins_nr, 1, 0); |
Filipe Manana | 31d11b8 | 2018-05-09 16:01:46 +0100 | [diff] [blame] | 4500 | if (ret < 0) |
| 4501 | goto out; |
| 4502 | ins_nr = 0; |
| 4503 | } |
| 4504 | ret = btrfs_next_leaf(root, path); |
| 4505 | if (ret < 0) |
| 4506 | goto out; |
| 4507 | if (ret > 0) { |
| 4508 | ret = 0; |
| 4509 | break; |
| 4510 | } |
| 4511 | continue; |
| 4512 | } |
| 4513 | |
| 4514 | btrfs_item_key_to_cpu(leaf, &key, slot); |
| 4515 | if (key.objectid > ino) |
| 4516 | break; |
| 4517 | if (WARN_ON_ONCE(key.objectid < ino) || |
| 4518 | key.type < BTRFS_EXTENT_DATA_KEY || |
| 4519 | key.offset < i_size) { |
| 4520 | path->slots[0]++; |
| 4521 | continue; |
| 4522 | } |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4523 | if (!dropped_extents) { |
Filipe Manana | 31d11b8 | 2018-05-09 16:01:46 +0100 | [diff] [blame] | 4524 | /* |
| 4525 | * Avoid logging extent items logged in past fsync calls |
| 4526 | * and leading to duplicate keys in the log tree. |
| 4527 | */ |
| 4528 | do { |
| 4529 | ret = btrfs_truncate_inode_items(trans, |
| 4530 | root->log_root, |
Nikolay Borisov | 5074339 | 2020-11-02 16:48:55 +0200 | [diff] [blame] | 4531 | inode, truncate_offset, |
Filipe Manana | 0d7d316 | 2021-05-24 11:35:55 +0100 | [diff] [blame] | 4532 | BTRFS_EXTENT_DATA_KEY, |
| 4533 | NULL); |
Filipe Manana | 31d11b8 | 2018-05-09 16:01:46 +0100 | [diff] [blame] | 4534 | } while (ret == -EAGAIN); |
| 4535 | if (ret) |
| 4536 | goto out; |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4537 | dropped_extents = true; |
Filipe Manana | 31d11b8 | 2018-05-09 16:01:46 +0100 | [diff] [blame] | 4538 | } |
| 4539 | if (ins_nr == 0) |
| 4540 | start_slot = slot; |
| 4541 | ins_nr++; |
| 4542 | path->slots[0]++; |
| 4543 | if (!dst_path) { |
| 4544 | dst_path = btrfs_alloc_path(); |
| 4545 | if (!dst_path) { |
| 4546 | ret = -ENOMEM; |
| 4547 | goto out; |
| 4548 | } |
| 4549 | } |
| 4550 | } |
Filipe Manana | 0bc2d3c | 2020-04-21 11:25:31 +0100 | [diff] [blame] | 4551 | if (ins_nr > 0) |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4552 | ret = copy_items(trans, inode, dst_path, path, |
Filipe Manana | 31d11b8 | 2018-05-09 16:01:46 +0100 | [diff] [blame] | 4553 | start_slot, ins_nr, 1, 0); |
Filipe Manana | 31d11b8 | 2018-05-09 16:01:46 +0100 | [diff] [blame] | 4554 | out: |
| 4555 | btrfs_release_path(path); |
| 4556 | btrfs_free_path(dst_path); |
| 4557 | return ret; |
| 4558 | } |
| 4559 | |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4560 | static int btrfs_log_changed_extents(struct btrfs_trans_handle *trans, |
| 4561 | struct btrfs_root *root, |
Nikolay Borisov | 9d12262 | 2017-01-18 00:31:40 +0200 | [diff] [blame] | 4562 | struct btrfs_inode *inode, |
Miao Xie | 827463c | 2014-01-14 20:31:51 +0800 | [diff] [blame] | 4563 | struct btrfs_path *path, |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 4564 | struct btrfs_log_ctx *ctx) |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4565 | { |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 4566 | struct btrfs_ordered_extent *ordered; |
| 4567 | struct btrfs_ordered_extent *tmp; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4568 | struct extent_map *em, *n; |
| 4569 | struct list_head extents; |
Nikolay Borisov | 9d12262 | 2017-01-18 00:31:40 +0200 | [diff] [blame] | 4570 | struct extent_map_tree *tree = &inode->extent_tree; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4571 | int ret = 0; |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 4572 | int num = 0; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4573 | |
| 4574 | INIT_LIST_HEAD(&extents); |
| 4575 | |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4576 | write_lock(&tree->lock); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4577 | |
| 4578 | list_for_each_entry_safe(em, n, &tree->modified_extents, list) { |
| 4579 | list_del_init(&em->list); |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 4580 | /* |
| 4581 | * Just an arbitrary number, this can be really CPU intensive |
| 4582 | * once we start getting a lot of extents, and really once we |
| 4583 | * have a bunch of extents we just want to commit since it will |
| 4584 | * be faster. |
| 4585 | */ |
| 4586 | if (++num > 32768) { |
| 4587 | list_del_init(&tree->modified_extents); |
| 4588 | ret = -EFBIG; |
| 4589 | goto process; |
| 4590 | } |
| 4591 | |
Filipe Manana | 5f96bfb | 2020-11-25 12:19:24 +0000 | [diff] [blame] | 4592 | if (em->generation < trans->transid) |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4593 | continue; |
Josef Bacik | 8c6c592 | 2017-08-29 10:11:39 -0400 | [diff] [blame] | 4594 | |
Filipe Manana | 31d11b8 | 2018-05-09 16:01:46 +0100 | [diff] [blame] | 4595 | /* We log prealloc extents beyond eof later. */ |
| 4596 | if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) && |
| 4597 | em->start >= i_size_read(&inode->vfs_inode)) |
| 4598 | continue; |
| 4599 | |
Josef Bacik | ff44c6e | 2012-09-14 12:59:20 -0400 | [diff] [blame] | 4600 | /* Need a ref to keep it from getting evicted from cache */ |
Elena Reshetova | 490b54d | 2017-03-03 10:55:12 +0200 | [diff] [blame] | 4601 | refcount_inc(&em->refs); |
Josef Bacik | ff44c6e | 2012-09-14 12:59:20 -0400 | [diff] [blame] | 4602 | set_bit(EXTENT_FLAG_LOGGING, &em->flags); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4603 | list_add_tail(&em->list, &extents); |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 4604 | num++; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4605 | } |
| 4606 | |
| 4607 | list_sort(NULL, &extents, extent_cmp); |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 4608 | process: |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4609 | while (!list_empty(&extents)) { |
| 4610 | em = list_entry(extents.next, struct extent_map, list); |
| 4611 | |
| 4612 | list_del_init(&em->list); |
| 4613 | |
| 4614 | /* |
| 4615 | * If we had an error we just need to delete everybody from our |
| 4616 | * private list. |
| 4617 | */ |
Josef Bacik | ff44c6e | 2012-09-14 12:59:20 -0400 | [diff] [blame] | 4618 | if (ret) { |
Josef Bacik | 201a903 | 2013-01-24 12:02:07 -0500 | [diff] [blame] | 4619 | clear_em_logging(tree, em); |
Josef Bacik | ff44c6e | 2012-09-14 12:59:20 -0400 | [diff] [blame] | 4620 | free_extent_map(em); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4621 | continue; |
Josef Bacik | ff44c6e | 2012-09-14 12:59:20 -0400 | [diff] [blame] | 4622 | } |
| 4623 | |
| 4624 | write_unlock(&tree->lock); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4625 | |
Josef Bacik | a2120a4 | 2018-05-23 11:58:35 -0400 | [diff] [blame] | 4626 | ret = log_one_extent(trans, inode, root, em, path, ctx); |
Josef Bacik | ff44c6e | 2012-09-14 12:59:20 -0400 | [diff] [blame] | 4627 | write_lock(&tree->lock); |
Josef Bacik | 201a903 | 2013-01-24 12:02:07 -0500 | [diff] [blame] | 4628 | clear_em_logging(tree, em); |
| 4629 | free_extent_map(em); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4630 | } |
Josef Bacik | ff44c6e | 2012-09-14 12:59:20 -0400 | [diff] [blame] | 4631 | WARN_ON(!list_empty(&extents)); |
| 4632 | write_unlock(&tree->lock); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4633 | |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4634 | btrfs_release_path(path); |
Filipe Manana | 31d11b8 | 2018-05-09 16:01:46 +0100 | [diff] [blame] | 4635 | if (!ret) |
| 4636 | ret = btrfs_log_prealloc_extents(trans, inode, path); |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 4637 | if (ret) |
| 4638 | return ret; |
Filipe Manana | 31d11b8 | 2018-05-09 16:01:46 +0100 | [diff] [blame] | 4639 | |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 4640 | /* |
| 4641 | * We have logged all extents successfully, now make sure the commit of |
| 4642 | * the current transaction waits for the ordered extents to complete |
| 4643 | * before it commits and wipes out the log trees, otherwise we would |
| 4644 | * lose data if an ordered extents completes after the transaction |
| 4645 | * commits and a power failure happens after the transaction commit. |
| 4646 | */ |
| 4647 | list_for_each_entry_safe(ordered, tmp, &ctx->ordered_extents, log_list) { |
| 4648 | list_del_init(&ordered->log_list); |
| 4649 | set_bit(BTRFS_ORDERED_LOGGED, &ordered->flags); |
| 4650 | |
| 4651 | if (!test_bit(BTRFS_ORDERED_COMPLETE, &ordered->flags)) { |
| 4652 | spin_lock_irq(&inode->ordered_tree.lock); |
| 4653 | if (!test_bit(BTRFS_ORDERED_COMPLETE, &ordered->flags)) { |
| 4654 | set_bit(BTRFS_ORDERED_PENDING, &ordered->flags); |
| 4655 | atomic_inc(&trans->transaction->pending_ordered); |
| 4656 | } |
| 4657 | spin_unlock_irq(&inode->ordered_tree.lock); |
| 4658 | } |
| 4659 | btrfs_put_ordered_extent(ordered); |
| 4660 | } |
| 4661 | |
| 4662 | return 0; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4663 | } |
| 4664 | |
Nikolay Borisov | 481b01c | 2017-01-18 00:31:34 +0200 | [diff] [blame] | 4665 | 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] | 4666 | struct btrfs_path *path, u64 *size_ret) |
| 4667 | { |
| 4668 | struct btrfs_key key; |
| 4669 | int ret; |
| 4670 | |
Nikolay Borisov | 481b01c | 2017-01-18 00:31:34 +0200 | [diff] [blame] | 4671 | key.objectid = btrfs_ino(inode); |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 4672 | key.type = BTRFS_INODE_ITEM_KEY; |
| 4673 | key.offset = 0; |
| 4674 | |
| 4675 | ret = btrfs_search_slot(NULL, log, &key, path, 0, 0); |
| 4676 | if (ret < 0) { |
| 4677 | return ret; |
| 4678 | } else if (ret > 0) { |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 4679 | *size_ret = 0; |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 4680 | } else { |
| 4681 | struct btrfs_inode_item *item; |
| 4682 | |
| 4683 | item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 4684 | struct btrfs_inode_item); |
| 4685 | *size_ret = btrfs_inode_size(path->nodes[0], item); |
Filipe Manana | bf50411 | 2019-03-04 14:06:12 +0000 | [diff] [blame] | 4686 | /* |
| 4687 | * If the in-memory inode's i_size is smaller then the inode |
| 4688 | * size stored in the btree, return the inode's i_size, so |
| 4689 | * that we get a correct inode size after replaying the log |
| 4690 | * when before a power failure we had a shrinking truncate |
| 4691 | * followed by addition of a new name (rename / new hard link). |
| 4692 | * Otherwise return the inode size from the btree, to avoid |
| 4693 | * data loss when replaying a log due to previously doing a |
| 4694 | * write that expands the inode's size and logging a new name |
| 4695 | * immediately after. |
| 4696 | */ |
| 4697 | if (*size_ret > inode->vfs_inode.i_size) |
| 4698 | *size_ret = inode->vfs_inode.i_size; |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 4699 | } |
| 4700 | |
| 4701 | btrfs_release_path(path); |
| 4702 | return 0; |
| 4703 | } |
| 4704 | |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 4705 | /* |
| 4706 | * At the moment we always log all xattrs. This is to figure out at log replay |
| 4707 | * time which xattrs must have their deletion replayed. If a xattr is missing |
| 4708 | * in the log tree and exists in the fs/subvol tree, we delete it. This is |
| 4709 | * because if a xattr is deleted, the inode is fsynced and a power failure |
| 4710 | * happens, causing the log to be replayed the next time the fs is mounted, |
| 4711 | * we want the xattr to not exist anymore (same behaviour as other filesystems |
| 4712 | * with a journal, ext3/4, xfs, f2fs, etc). |
| 4713 | */ |
| 4714 | static int btrfs_log_all_xattrs(struct btrfs_trans_handle *trans, |
| 4715 | struct btrfs_root *root, |
Nikolay Borisov | 1a93c36 | 2017-01-18 00:31:37 +0200 | [diff] [blame] | 4716 | struct btrfs_inode *inode, |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 4717 | struct btrfs_path *path, |
| 4718 | struct btrfs_path *dst_path) |
| 4719 | { |
| 4720 | int ret; |
| 4721 | struct btrfs_key key; |
Nikolay Borisov | 1a93c36 | 2017-01-18 00:31:37 +0200 | [diff] [blame] | 4722 | const u64 ino = btrfs_ino(inode); |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 4723 | int ins_nr = 0; |
| 4724 | int start_slot = 0; |
Filipe Manana | f2f121a | 2020-11-13 11:21:49 +0000 | [diff] [blame] | 4725 | bool found_xattrs = false; |
| 4726 | |
| 4727 | if (test_bit(BTRFS_INODE_NO_XATTRS, &inode->runtime_flags)) |
| 4728 | return 0; |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 4729 | |
| 4730 | key.objectid = ino; |
| 4731 | key.type = BTRFS_XATTR_ITEM_KEY; |
| 4732 | key.offset = 0; |
| 4733 | |
| 4734 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 4735 | if (ret < 0) |
| 4736 | return ret; |
| 4737 | |
| 4738 | while (true) { |
| 4739 | int slot = path->slots[0]; |
| 4740 | struct extent_buffer *leaf = path->nodes[0]; |
| 4741 | int nritems = btrfs_header_nritems(leaf); |
| 4742 | |
| 4743 | if (slot >= nritems) { |
| 4744 | if (ins_nr > 0) { |
Nikolay Borisov | 1a93c36 | 2017-01-18 00:31:37 +0200 | [diff] [blame] | 4745 | ret = copy_items(trans, inode, dst_path, path, |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4746 | start_slot, ins_nr, 1, 0); |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 4747 | if (ret < 0) |
| 4748 | return ret; |
| 4749 | ins_nr = 0; |
| 4750 | } |
| 4751 | ret = btrfs_next_leaf(root, path); |
| 4752 | if (ret < 0) |
| 4753 | return ret; |
| 4754 | else if (ret > 0) |
| 4755 | break; |
| 4756 | continue; |
| 4757 | } |
| 4758 | |
| 4759 | btrfs_item_key_to_cpu(leaf, &key, slot); |
| 4760 | if (key.objectid != ino || key.type != BTRFS_XATTR_ITEM_KEY) |
| 4761 | break; |
| 4762 | |
| 4763 | if (ins_nr == 0) |
| 4764 | start_slot = slot; |
| 4765 | ins_nr++; |
| 4766 | path->slots[0]++; |
Filipe Manana | f2f121a | 2020-11-13 11:21:49 +0000 | [diff] [blame] | 4767 | found_xattrs = true; |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 4768 | cond_resched(); |
| 4769 | } |
| 4770 | if (ins_nr > 0) { |
Nikolay Borisov | 1a93c36 | 2017-01-18 00:31:37 +0200 | [diff] [blame] | 4771 | ret = copy_items(trans, inode, dst_path, path, |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4772 | start_slot, ins_nr, 1, 0); |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 4773 | if (ret < 0) |
| 4774 | return ret; |
| 4775 | } |
| 4776 | |
Filipe Manana | f2f121a | 2020-11-13 11:21:49 +0000 | [diff] [blame] | 4777 | if (!found_xattrs) |
| 4778 | set_bit(BTRFS_INODE_NO_XATTRS, &inode->runtime_flags); |
| 4779 | |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 4780 | return 0; |
| 4781 | } |
| 4782 | |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4783 | /* |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4784 | * When using the NO_HOLES feature if we punched a hole that causes the |
| 4785 | * deletion of entire leafs or all the extent items of the first leaf (the one |
| 4786 | * that contains the inode item and references) we may end up not processing |
| 4787 | * any extents, because there are no leafs with a generation matching the |
| 4788 | * current transaction that have extent items for our inode. So we need to find |
| 4789 | * if any holes exist and then log them. We also need to log holes after any |
| 4790 | * truncate operation that changes the inode's size. |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4791 | */ |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4792 | static int btrfs_log_holes(struct btrfs_trans_handle *trans, |
| 4793 | struct btrfs_root *root, |
| 4794 | struct btrfs_inode *inode, |
Filipe Manana | 7af5974 | 2020-04-07 11:37:44 +0100 | [diff] [blame] | 4795 | struct btrfs_path *path) |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4796 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4797 | struct btrfs_fs_info *fs_info = root->fs_info; |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4798 | struct btrfs_key key; |
Nikolay Borisov | a0308dd | 2017-01-18 00:31:38 +0200 | [diff] [blame] | 4799 | const u64 ino = btrfs_ino(inode); |
| 4800 | const u64 i_size = i_size_read(&inode->vfs_inode); |
Filipe Manana | 7af5974 | 2020-04-07 11:37:44 +0100 | [diff] [blame] | 4801 | u64 prev_extent_end = 0; |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4802 | int ret; |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4803 | |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4804 | if (!btrfs_fs_incompat(fs_info, NO_HOLES) || i_size == 0) |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4805 | return 0; |
| 4806 | |
| 4807 | key.objectid = ino; |
| 4808 | key.type = BTRFS_EXTENT_DATA_KEY; |
Filipe Manana | 7af5974 | 2020-04-07 11:37:44 +0100 | [diff] [blame] | 4809 | key.offset = 0; |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4810 | |
| 4811 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4812 | if (ret < 0) |
| 4813 | return ret; |
| 4814 | |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4815 | while (true) { |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4816 | struct extent_buffer *leaf = path->nodes[0]; |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4817 | |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4818 | if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) { |
| 4819 | ret = btrfs_next_leaf(root, path); |
| 4820 | if (ret < 0) |
| 4821 | return ret; |
| 4822 | if (ret > 0) { |
| 4823 | ret = 0; |
| 4824 | break; |
| 4825 | } |
| 4826 | leaf = path->nodes[0]; |
| 4827 | } |
| 4828 | |
| 4829 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 4830 | if (key.objectid != ino || key.type != BTRFS_EXTENT_DATA_KEY) |
| 4831 | break; |
| 4832 | |
| 4833 | /* We have a hole, log it. */ |
| 4834 | if (prev_extent_end < key.offset) { |
Filipe Manana | 7af5974 | 2020-04-07 11:37:44 +0100 | [diff] [blame] | 4835 | const u64 hole_len = key.offset - prev_extent_end; |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4836 | |
| 4837 | /* |
| 4838 | * Release the path to avoid deadlocks with other code |
| 4839 | * paths that search the root while holding locks on |
| 4840 | * leafs from the log root. |
| 4841 | */ |
| 4842 | btrfs_release_path(path); |
| 4843 | ret = btrfs_insert_file_extent(trans, root->log_root, |
| 4844 | ino, prev_extent_end, 0, |
| 4845 | 0, hole_len, 0, hole_len, |
| 4846 | 0, 0, 0); |
| 4847 | if (ret < 0) |
| 4848 | return ret; |
| 4849 | |
| 4850 | /* |
| 4851 | * Search for the same key again in the root. Since it's |
| 4852 | * an extent item and we are holding the inode lock, the |
| 4853 | * key must still exist. If it doesn't just emit warning |
| 4854 | * and return an error to fall back to a transaction |
| 4855 | * commit. |
| 4856 | */ |
| 4857 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 4858 | if (ret < 0) |
| 4859 | return ret; |
| 4860 | if (WARN_ON(ret > 0)) |
| 4861 | return -ENOENT; |
| 4862 | leaf = path->nodes[0]; |
| 4863 | } |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4864 | |
Filipe Manana | 7af5974 | 2020-04-07 11:37:44 +0100 | [diff] [blame] | 4865 | prev_extent_end = btrfs_file_extent_end(path); |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4866 | path->slots[0]++; |
| 4867 | cond_resched(); |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4868 | } |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4869 | |
Filipe Manana | 7af5974 | 2020-04-07 11:37:44 +0100 | [diff] [blame] | 4870 | if (prev_extent_end < i_size) { |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4871 | u64 hole_len; |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4872 | |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4873 | btrfs_release_path(path); |
Filipe Manana | 7af5974 | 2020-04-07 11:37:44 +0100 | [diff] [blame] | 4874 | hole_len = ALIGN(i_size - prev_extent_end, fs_info->sectorsize); |
Filipe Manana | 0e56315 | 2019-11-19 12:07:33 +0000 | [diff] [blame] | 4875 | ret = btrfs_insert_file_extent(trans, root->log_root, |
| 4876 | ino, prev_extent_end, 0, 0, |
| 4877 | hole_len, 0, hole_len, |
| 4878 | 0, 0, 0); |
| 4879 | if (ret < 0) |
| 4880 | return ret; |
| 4881 | } |
| 4882 | |
| 4883 | return 0; |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4884 | } |
| 4885 | |
Filipe Manana | 56f23fd | 2016-03-30 23:37:21 +0100 | [diff] [blame] | 4886 | /* |
| 4887 | * When we are logging a new inode X, check if it doesn't have a reference that |
| 4888 | * matches the reference from some other inode Y created in a past transaction |
| 4889 | * and that was renamed in the current transaction. If we don't do this, then at |
| 4890 | * log replay time we can lose inode Y (and all its files if it's a directory): |
| 4891 | * |
| 4892 | * mkdir /mnt/x |
| 4893 | * echo "hello world" > /mnt/x/foobar |
| 4894 | * sync |
| 4895 | * mv /mnt/x /mnt/y |
| 4896 | * mkdir /mnt/x # or touch /mnt/x |
| 4897 | * xfs_io -c fsync /mnt/x |
| 4898 | * <power fail> |
| 4899 | * mount fs, trigger log replay |
| 4900 | * |
| 4901 | * After the log replay procedure, we would lose the first directory and all its |
| 4902 | * files (file foobar). |
| 4903 | * For the case where inode Y is not a directory we simply end up losing it: |
| 4904 | * |
| 4905 | * echo "123" > /mnt/foo |
| 4906 | * sync |
| 4907 | * mv /mnt/foo /mnt/bar |
| 4908 | * echo "abc" > /mnt/foo |
| 4909 | * xfs_io -c fsync /mnt/foo |
| 4910 | * <power fail> |
| 4911 | * |
| 4912 | * We also need this for cases where a snapshot entry is replaced by some other |
| 4913 | * entry (file or directory) otherwise we end up with an unreplayable log due to |
| 4914 | * attempts to delete the snapshot entry (entry of type BTRFS_ROOT_ITEM_KEY) as |
| 4915 | * if it were a regular entry: |
| 4916 | * |
| 4917 | * mkdir /mnt/x |
| 4918 | * btrfs subvolume snapshot /mnt /mnt/x/snap |
| 4919 | * btrfs subvolume delete /mnt/x/snap |
| 4920 | * rmdir /mnt/x |
| 4921 | * mkdir /mnt/x |
| 4922 | * fsync /mnt/x or fsync some new file inside it |
| 4923 | * <power fail> |
| 4924 | * |
| 4925 | * The snapshot delete, rmdir of x, mkdir of a new x and the fsync all happen in |
| 4926 | * the same transaction. |
| 4927 | */ |
| 4928 | static int btrfs_check_ref_name_override(struct extent_buffer *eb, |
| 4929 | const int slot, |
| 4930 | const struct btrfs_key *key, |
Nikolay Borisov | 4791c8f | 2017-01-18 00:31:35 +0200 | [diff] [blame] | 4931 | struct btrfs_inode *inode, |
Filipe Manana | a3baaf0 | 2019-02-13 12:14:09 +0000 | [diff] [blame] | 4932 | u64 *other_ino, u64 *other_parent) |
Filipe Manana | 56f23fd | 2016-03-30 23:37:21 +0100 | [diff] [blame] | 4933 | { |
| 4934 | int ret; |
| 4935 | struct btrfs_path *search_path; |
| 4936 | char *name = NULL; |
| 4937 | u32 name_len = 0; |
| 4938 | u32 item_size = btrfs_item_size_nr(eb, slot); |
| 4939 | u32 cur_offset = 0; |
| 4940 | unsigned long ptr = btrfs_item_ptr_offset(eb, slot); |
| 4941 | |
| 4942 | search_path = btrfs_alloc_path(); |
| 4943 | if (!search_path) |
| 4944 | return -ENOMEM; |
| 4945 | search_path->search_commit_root = 1; |
| 4946 | search_path->skip_locking = 1; |
| 4947 | |
| 4948 | while (cur_offset < item_size) { |
| 4949 | u64 parent; |
| 4950 | u32 this_name_len; |
| 4951 | u32 this_len; |
| 4952 | unsigned long name_ptr; |
| 4953 | struct btrfs_dir_item *di; |
| 4954 | |
| 4955 | if (key->type == BTRFS_INODE_REF_KEY) { |
| 4956 | struct btrfs_inode_ref *iref; |
| 4957 | |
| 4958 | iref = (struct btrfs_inode_ref *)(ptr + cur_offset); |
| 4959 | parent = key->offset; |
| 4960 | this_name_len = btrfs_inode_ref_name_len(eb, iref); |
| 4961 | name_ptr = (unsigned long)(iref + 1); |
| 4962 | this_len = sizeof(*iref) + this_name_len; |
| 4963 | } else { |
| 4964 | struct btrfs_inode_extref *extref; |
| 4965 | |
| 4966 | extref = (struct btrfs_inode_extref *)(ptr + |
| 4967 | cur_offset); |
| 4968 | parent = btrfs_inode_extref_parent(eb, extref); |
| 4969 | this_name_len = btrfs_inode_extref_name_len(eb, extref); |
| 4970 | name_ptr = (unsigned long)&extref->name; |
| 4971 | this_len = sizeof(*extref) + this_name_len; |
| 4972 | } |
| 4973 | |
| 4974 | if (this_name_len > name_len) { |
| 4975 | char *new_name; |
| 4976 | |
| 4977 | new_name = krealloc(name, this_name_len, GFP_NOFS); |
| 4978 | if (!new_name) { |
| 4979 | ret = -ENOMEM; |
| 4980 | goto out; |
| 4981 | } |
| 4982 | name_len = this_name_len; |
| 4983 | name = new_name; |
| 4984 | } |
| 4985 | |
| 4986 | read_extent_buffer(eb, name, name_ptr, this_name_len); |
Nikolay Borisov | 4791c8f | 2017-01-18 00:31:35 +0200 | [diff] [blame] | 4987 | di = btrfs_lookup_dir_item(NULL, inode->root, search_path, |
| 4988 | parent, name, this_name_len, 0); |
Filipe Manana | 56f23fd | 2016-03-30 23:37:21 +0100 | [diff] [blame] | 4989 | if (di && !IS_ERR(di)) { |
Filipe Manana | 44f714d | 2016-06-06 16:11:13 +0100 | [diff] [blame] | 4990 | struct btrfs_key di_key; |
| 4991 | |
| 4992 | btrfs_dir_item_key_to_cpu(search_path->nodes[0], |
| 4993 | di, &di_key); |
| 4994 | if (di_key.type == BTRFS_INODE_ITEM_KEY) { |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 4995 | if (di_key.objectid != key->objectid) { |
| 4996 | ret = 1; |
| 4997 | *other_ino = di_key.objectid; |
Filipe Manana | a3baaf0 | 2019-02-13 12:14:09 +0000 | [diff] [blame] | 4998 | *other_parent = parent; |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 4999 | } else { |
| 5000 | ret = 0; |
| 5001 | } |
Filipe Manana | 44f714d | 2016-06-06 16:11:13 +0100 | [diff] [blame] | 5002 | } else { |
| 5003 | ret = -EAGAIN; |
| 5004 | } |
Filipe Manana | 56f23fd | 2016-03-30 23:37:21 +0100 | [diff] [blame] | 5005 | goto out; |
| 5006 | } else if (IS_ERR(di)) { |
| 5007 | ret = PTR_ERR(di); |
| 5008 | goto out; |
| 5009 | } |
| 5010 | btrfs_release_path(search_path); |
| 5011 | |
| 5012 | cur_offset += this_len; |
| 5013 | } |
| 5014 | ret = 0; |
| 5015 | out: |
| 5016 | btrfs_free_path(search_path); |
| 5017 | kfree(name); |
| 5018 | return ret; |
| 5019 | } |
| 5020 | |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 5021 | struct btrfs_ino_list { |
| 5022 | u64 ino; |
Filipe Manana | a3baaf0 | 2019-02-13 12:14:09 +0000 | [diff] [blame] | 5023 | u64 parent; |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 5024 | struct list_head list; |
| 5025 | }; |
| 5026 | |
| 5027 | static int log_conflicting_inodes(struct btrfs_trans_handle *trans, |
| 5028 | struct btrfs_root *root, |
| 5029 | struct btrfs_path *path, |
| 5030 | struct btrfs_log_ctx *ctx, |
Filipe Manana | a3baaf0 | 2019-02-13 12:14:09 +0000 | [diff] [blame] | 5031 | u64 ino, u64 parent) |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 5032 | { |
| 5033 | struct btrfs_ino_list *ino_elem; |
| 5034 | LIST_HEAD(inode_list); |
| 5035 | int ret = 0; |
| 5036 | |
| 5037 | ino_elem = kmalloc(sizeof(*ino_elem), GFP_NOFS); |
| 5038 | if (!ino_elem) |
| 5039 | return -ENOMEM; |
| 5040 | ino_elem->ino = ino; |
Filipe Manana | a3baaf0 | 2019-02-13 12:14:09 +0000 | [diff] [blame] | 5041 | ino_elem->parent = parent; |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 5042 | list_add_tail(&ino_elem->list, &inode_list); |
| 5043 | |
| 5044 | while (!list_empty(&inode_list)) { |
| 5045 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 5046 | struct btrfs_key key; |
| 5047 | struct inode *inode; |
| 5048 | |
| 5049 | ino_elem = list_first_entry(&inode_list, struct btrfs_ino_list, |
| 5050 | list); |
| 5051 | ino = ino_elem->ino; |
Filipe Manana | a3baaf0 | 2019-02-13 12:14:09 +0000 | [diff] [blame] | 5052 | parent = ino_elem->parent; |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 5053 | list_del(&ino_elem->list); |
| 5054 | kfree(ino_elem); |
| 5055 | if (ret) |
| 5056 | continue; |
| 5057 | |
| 5058 | btrfs_release_path(path); |
| 5059 | |
David Sterba | 0202e83 | 2020-05-15 19:35:59 +0200 | [diff] [blame] | 5060 | inode = btrfs_iget(fs_info->sb, ino, root); |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 5061 | /* |
| 5062 | * If the other inode that had a conflicting dir entry was |
Filipe Manana | a3baaf0 | 2019-02-13 12:14:09 +0000 | [diff] [blame] | 5063 | * deleted in the current transaction, we need to log its parent |
| 5064 | * directory. |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 5065 | */ |
| 5066 | if (IS_ERR(inode)) { |
| 5067 | ret = PTR_ERR(inode); |
Filipe Manana | a3baaf0 | 2019-02-13 12:14:09 +0000 | [diff] [blame] | 5068 | if (ret == -ENOENT) { |
David Sterba | 0202e83 | 2020-05-15 19:35:59 +0200 | [diff] [blame] | 5069 | inode = btrfs_iget(fs_info->sb, parent, root); |
Filipe Manana | a3baaf0 | 2019-02-13 12:14:09 +0000 | [diff] [blame] | 5070 | if (IS_ERR(inode)) { |
| 5071 | ret = PTR_ERR(inode); |
| 5072 | } else { |
| 5073 | ret = btrfs_log_inode(trans, root, |
| 5074 | BTRFS_I(inode), |
| 5075 | LOG_OTHER_INODE_ALL, |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 5076 | ctx); |
Filipe Manana | 410f954 | 2019-09-10 15:26:49 +0100 | [diff] [blame] | 5077 | btrfs_add_delayed_iput(inode); |
Filipe Manana | a3baaf0 | 2019-02-13 12:14:09 +0000 | [diff] [blame] | 5078 | } |
| 5079 | } |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 5080 | continue; |
| 5081 | } |
| 5082 | /* |
Filipe Manana | b5e4ff9 | 2020-01-15 13:21:35 +0000 | [diff] [blame] | 5083 | * If the inode was already logged skip it - otherwise we can |
| 5084 | * hit an infinite loop. Example: |
| 5085 | * |
| 5086 | * From the commit root (previous transaction) we have the |
| 5087 | * following inodes: |
| 5088 | * |
| 5089 | * inode 257 a directory |
| 5090 | * inode 258 with references "zz" and "zz_link" on inode 257 |
| 5091 | * inode 259 with reference "a" on inode 257 |
| 5092 | * |
| 5093 | * And in the current (uncommitted) transaction we have: |
| 5094 | * |
| 5095 | * inode 257 a directory, unchanged |
| 5096 | * inode 258 with references "a" and "a2" on inode 257 |
| 5097 | * inode 259 with reference "zz_link" on inode 257 |
| 5098 | * inode 261 with reference "zz" on inode 257 |
| 5099 | * |
| 5100 | * When logging inode 261 the following infinite loop could |
| 5101 | * happen if we don't skip already logged inodes: |
| 5102 | * |
| 5103 | * - we detect inode 258 as a conflicting inode, with inode 261 |
| 5104 | * on reference "zz", and log it; |
| 5105 | * |
| 5106 | * - we detect inode 259 as a conflicting inode, with inode 258 |
| 5107 | * on reference "a", and log it; |
| 5108 | * |
| 5109 | * - we detect inode 258 as a conflicting inode, with inode 259 |
| 5110 | * on reference "zz_link", and log it - again! After this we |
| 5111 | * repeat the above steps forever. |
| 5112 | */ |
| 5113 | spin_lock(&BTRFS_I(inode)->lock); |
| 5114 | /* |
| 5115 | * Check the inode's logged_trans only instead of |
| 5116 | * btrfs_inode_in_log(). This is because the last_log_commit of |
Filipe Manana | 1f29537 | 2021-07-29 15:30:21 +0100 | [diff] [blame] | 5117 | * the inode is not updated when we only log that it exists (see |
| 5118 | * btrfs_log_inode()). |
Filipe Manana | b5e4ff9 | 2020-01-15 13:21:35 +0000 | [diff] [blame] | 5119 | */ |
| 5120 | if (BTRFS_I(inode)->logged_trans == trans->transid) { |
| 5121 | spin_unlock(&BTRFS_I(inode)->lock); |
| 5122 | btrfs_add_delayed_iput(inode); |
| 5123 | continue; |
| 5124 | } |
| 5125 | spin_unlock(&BTRFS_I(inode)->lock); |
| 5126 | /* |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 5127 | * We are safe logging the other inode without acquiring its |
| 5128 | * lock as long as we log with the LOG_INODE_EXISTS mode. We |
| 5129 | * are safe against concurrent renames of the other inode as |
| 5130 | * well because during a rename we pin the log and update the |
| 5131 | * log with the new name before we unpin it. |
| 5132 | */ |
| 5133 | ret = btrfs_log_inode(trans, root, BTRFS_I(inode), |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 5134 | LOG_OTHER_INODE, ctx); |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 5135 | if (ret) { |
Filipe Manana | 410f954 | 2019-09-10 15:26:49 +0100 | [diff] [blame] | 5136 | btrfs_add_delayed_iput(inode); |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 5137 | continue; |
| 5138 | } |
| 5139 | |
| 5140 | key.objectid = ino; |
| 5141 | key.type = BTRFS_INODE_REF_KEY; |
| 5142 | key.offset = 0; |
| 5143 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 5144 | if (ret < 0) { |
Filipe Manana | 410f954 | 2019-09-10 15:26:49 +0100 | [diff] [blame] | 5145 | btrfs_add_delayed_iput(inode); |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 5146 | continue; |
| 5147 | } |
| 5148 | |
| 5149 | while (true) { |
| 5150 | struct extent_buffer *leaf = path->nodes[0]; |
| 5151 | int slot = path->slots[0]; |
| 5152 | u64 other_ino = 0; |
Filipe Manana | a3baaf0 | 2019-02-13 12:14:09 +0000 | [diff] [blame] | 5153 | u64 other_parent = 0; |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 5154 | |
| 5155 | if (slot >= btrfs_header_nritems(leaf)) { |
| 5156 | ret = btrfs_next_leaf(root, path); |
| 5157 | if (ret < 0) { |
| 5158 | break; |
| 5159 | } else if (ret > 0) { |
| 5160 | ret = 0; |
| 5161 | break; |
| 5162 | } |
| 5163 | continue; |
| 5164 | } |
| 5165 | |
| 5166 | btrfs_item_key_to_cpu(leaf, &key, slot); |
| 5167 | if (key.objectid != ino || |
| 5168 | (key.type != BTRFS_INODE_REF_KEY && |
| 5169 | key.type != BTRFS_INODE_EXTREF_KEY)) { |
| 5170 | ret = 0; |
| 5171 | break; |
| 5172 | } |
| 5173 | |
| 5174 | ret = btrfs_check_ref_name_override(leaf, slot, &key, |
Filipe Manana | a3baaf0 | 2019-02-13 12:14:09 +0000 | [diff] [blame] | 5175 | BTRFS_I(inode), &other_ino, |
| 5176 | &other_parent); |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 5177 | if (ret < 0) |
| 5178 | break; |
| 5179 | if (ret > 0) { |
| 5180 | ino_elem = kmalloc(sizeof(*ino_elem), GFP_NOFS); |
| 5181 | if (!ino_elem) { |
| 5182 | ret = -ENOMEM; |
| 5183 | break; |
| 5184 | } |
| 5185 | ino_elem->ino = other_ino; |
Filipe Manana | a3baaf0 | 2019-02-13 12:14:09 +0000 | [diff] [blame] | 5186 | ino_elem->parent = other_parent; |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 5187 | list_add_tail(&ino_elem->list, &inode_list); |
| 5188 | ret = 0; |
| 5189 | } |
| 5190 | path->slots[0]++; |
| 5191 | } |
Filipe Manana | 410f954 | 2019-09-10 15:26:49 +0100 | [diff] [blame] | 5192 | btrfs_add_delayed_iput(inode); |
Filipe Manana | 6b5fc43 | 2019-02-13 12:14:03 +0000 | [diff] [blame] | 5193 | } |
| 5194 | |
| 5195 | return ret; |
| 5196 | } |
| 5197 | |
Filipe Manana | da44700 | 2020-03-09 12:41:07 +0000 | [diff] [blame] | 5198 | static int copy_inode_items_to_log(struct btrfs_trans_handle *trans, |
| 5199 | struct btrfs_inode *inode, |
| 5200 | struct btrfs_key *min_key, |
| 5201 | const struct btrfs_key *max_key, |
| 5202 | struct btrfs_path *path, |
| 5203 | struct btrfs_path *dst_path, |
| 5204 | const u64 logged_isize, |
| 5205 | const bool recursive_logging, |
| 5206 | const int inode_only, |
| 5207 | struct btrfs_log_ctx *ctx, |
| 5208 | bool *need_log_inode_item) |
| 5209 | { |
| 5210 | struct btrfs_root *root = inode->root; |
| 5211 | int ins_start_slot = 0; |
| 5212 | int ins_nr = 0; |
| 5213 | int ret; |
| 5214 | |
| 5215 | while (1) { |
| 5216 | ret = btrfs_search_forward(root, min_key, path, trans->transid); |
| 5217 | if (ret < 0) |
| 5218 | return ret; |
| 5219 | if (ret > 0) { |
| 5220 | ret = 0; |
| 5221 | break; |
| 5222 | } |
| 5223 | again: |
| 5224 | /* Note, ins_nr might be > 0 here, cleanup outside the loop */ |
| 5225 | if (min_key->objectid != max_key->objectid) |
| 5226 | break; |
| 5227 | if (min_key->type > max_key->type) |
| 5228 | break; |
| 5229 | |
| 5230 | if (min_key->type == BTRFS_INODE_ITEM_KEY) |
| 5231 | *need_log_inode_item = false; |
| 5232 | |
| 5233 | if ((min_key->type == BTRFS_INODE_REF_KEY || |
| 5234 | min_key->type == BTRFS_INODE_EXTREF_KEY) && |
| 5235 | inode->generation == trans->transid && |
| 5236 | !recursive_logging) { |
| 5237 | u64 other_ino = 0; |
| 5238 | u64 other_parent = 0; |
| 5239 | |
| 5240 | ret = btrfs_check_ref_name_override(path->nodes[0], |
| 5241 | path->slots[0], min_key, inode, |
| 5242 | &other_ino, &other_parent); |
| 5243 | if (ret < 0) { |
| 5244 | return ret; |
Filipe Manana | 289cffc | 2021-08-31 15:30:32 +0100 | [diff] [blame] | 5245 | } else if (ret > 0 && |
Filipe Manana | da44700 | 2020-03-09 12:41:07 +0000 | [diff] [blame] | 5246 | other_ino != btrfs_ino(BTRFS_I(ctx->inode))) { |
| 5247 | if (ins_nr > 0) { |
| 5248 | ins_nr++; |
| 5249 | } else { |
| 5250 | ins_nr = 1; |
| 5251 | ins_start_slot = path->slots[0]; |
| 5252 | } |
| 5253 | ret = copy_items(trans, inode, dst_path, path, |
| 5254 | ins_start_slot, ins_nr, |
| 5255 | inode_only, logged_isize); |
| 5256 | if (ret < 0) |
| 5257 | return ret; |
| 5258 | ins_nr = 0; |
| 5259 | |
| 5260 | ret = log_conflicting_inodes(trans, root, path, |
| 5261 | ctx, other_ino, other_parent); |
| 5262 | if (ret) |
| 5263 | return ret; |
| 5264 | btrfs_release_path(path); |
| 5265 | goto next_key; |
| 5266 | } |
| 5267 | } |
| 5268 | |
| 5269 | /* Skip xattrs, we log them later with btrfs_log_all_xattrs() */ |
| 5270 | if (min_key->type == BTRFS_XATTR_ITEM_KEY) { |
| 5271 | if (ins_nr == 0) |
| 5272 | goto next_slot; |
| 5273 | ret = copy_items(trans, inode, dst_path, path, |
| 5274 | ins_start_slot, |
| 5275 | ins_nr, inode_only, logged_isize); |
| 5276 | if (ret < 0) |
| 5277 | return ret; |
| 5278 | ins_nr = 0; |
| 5279 | goto next_slot; |
| 5280 | } |
| 5281 | |
| 5282 | if (ins_nr && ins_start_slot + ins_nr == path->slots[0]) { |
| 5283 | ins_nr++; |
| 5284 | goto next_slot; |
| 5285 | } else if (!ins_nr) { |
| 5286 | ins_start_slot = path->slots[0]; |
| 5287 | ins_nr = 1; |
| 5288 | goto next_slot; |
| 5289 | } |
| 5290 | |
| 5291 | ret = copy_items(trans, inode, dst_path, path, ins_start_slot, |
| 5292 | ins_nr, inode_only, logged_isize); |
| 5293 | if (ret < 0) |
| 5294 | return ret; |
| 5295 | ins_nr = 1; |
| 5296 | ins_start_slot = path->slots[0]; |
| 5297 | next_slot: |
| 5298 | path->slots[0]++; |
| 5299 | if (path->slots[0] < btrfs_header_nritems(path->nodes[0])) { |
| 5300 | btrfs_item_key_to_cpu(path->nodes[0], min_key, |
| 5301 | path->slots[0]); |
| 5302 | goto again; |
| 5303 | } |
| 5304 | if (ins_nr) { |
| 5305 | ret = copy_items(trans, inode, dst_path, path, |
| 5306 | ins_start_slot, ins_nr, inode_only, |
| 5307 | logged_isize); |
| 5308 | if (ret < 0) |
| 5309 | return ret; |
| 5310 | ins_nr = 0; |
| 5311 | } |
| 5312 | btrfs_release_path(path); |
| 5313 | next_key: |
| 5314 | if (min_key->offset < (u64)-1) { |
| 5315 | min_key->offset++; |
| 5316 | } else if (min_key->type < max_key->type) { |
| 5317 | min_key->type++; |
| 5318 | min_key->offset = 0; |
| 5319 | } else { |
| 5320 | break; |
| 5321 | } |
| 5322 | } |
| 5323 | if (ins_nr) |
| 5324 | ret = copy_items(trans, inode, dst_path, path, ins_start_slot, |
| 5325 | ins_nr, inode_only, logged_isize); |
| 5326 | |
| 5327 | return ret; |
| 5328 | } |
| 5329 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5330 | /* log a single inode in the tree log. |
| 5331 | * At least one parent directory for this inode must exist in the tree |
| 5332 | * or be logged already. |
| 5333 | * |
| 5334 | * Any items from this inode changed by the current transaction are copied |
| 5335 | * to the log tree. An extra reference is taken on any extents in this |
| 5336 | * file, allowing us to avoid a whole pile of corner cases around logging |
| 5337 | * blocks that have been removed from the tree. |
| 5338 | * |
| 5339 | * See LOG_INODE_ALL and related defines for a description of what inode_only |
| 5340 | * does. |
| 5341 | * |
| 5342 | * This handles both files and directories. |
| 5343 | */ |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5344 | static int btrfs_log_inode(struct btrfs_trans_handle *trans, |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5345 | struct btrfs_root *root, struct btrfs_inode *inode, |
Filipe Manana | 49dae1b | 2014-09-06 22:34:39 +0100 | [diff] [blame] | 5346 | int inode_only, |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 5347 | struct btrfs_log_ctx *ctx) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5348 | { |
| 5349 | struct btrfs_path *path; |
| 5350 | struct btrfs_path *dst_path; |
| 5351 | struct btrfs_key min_key; |
| 5352 | struct btrfs_key max_key; |
| 5353 | struct btrfs_root *log = root->log_root; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5354 | int err = 0; |
Filipe Manana | 8c8648d | 2020-07-02 12:31:59 +0100 | [diff] [blame] | 5355 | int ret = 0; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 5356 | bool fast_search = false; |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5357 | u64 ino = btrfs_ino(inode); |
| 5358 | struct extent_map_tree *em_tree = &inode->extent_tree; |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 5359 | u64 logged_isize = 0; |
Filipe Manana | e4545de | 2015-06-17 12:49:23 +0100 | [diff] [blame] | 5360 | bool need_log_inode_item = true; |
Filipe Manana | 9a8fca6 | 2018-05-11 16:42:42 +0100 | [diff] [blame] | 5361 | bool xattrs_logged = false; |
Filipe Manana | a3baaf0 | 2019-02-13 12:14:09 +0000 | [diff] [blame] | 5362 | bool recursive_logging = false; |
Filipe Manana | 2ac691d | 2021-07-20 16:03:43 +0100 | [diff] [blame] | 5363 | bool inode_item_dropped = true; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5364 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5365 | path = btrfs_alloc_path(); |
Tsutomu Itoh | 5df6708 | 2011-02-01 09:17:35 +0000 | [diff] [blame] | 5366 | if (!path) |
| 5367 | return -ENOMEM; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5368 | dst_path = btrfs_alloc_path(); |
Tsutomu Itoh | 5df6708 | 2011-02-01 09:17:35 +0000 | [diff] [blame] | 5369 | if (!dst_path) { |
| 5370 | btrfs_free_path(path); |
| 5371 | return -ENOMEM; |
| 5372 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5373 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 5374 | min_key.objectid = ino; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5375 | min_key.type = BTRFS_INODE_ITEM_KEY; |
| 5376 | min_key.offset = 0; |
| 5377 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 5378 | max_key.objectid = ino; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5379 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5380 | |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 5381 | /* today the code can only do partial logging of directories */ |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5382 | if (S_ISDIR(inode->vfs_inode.i_mode) || |
Miao Xie | 5269b67 | 2012-11-01 07:35:23 +0000 | [diff] [blame] | 5383 | (!test_bit(BTRFS_INODE_NEEDS_FULL_SYNC, |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5384 | &inode->runtime_flags) && |
Liu Bo | 781feef | 2016-11-30 16:20:25 -0800 | [diff] [blame] | 5385 | inode_only >= LOG_INODE_EXISTS)) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5386 | max_key.type = BTRFS_XATTR_ITEM_KEY; |
| 5387 | else |
| 5388 | max_key.type = (u8)-1; |
| 5389 | max_key.offset = (u64)-1; |
| 5390 | |
Filipe Manana | 2c2c452 | 2015-01-13 16:40:04 +0000 | [diff] [blame] | 5391 | /* |
Filipe Manana | 5aa7d1a | 2020-07-02 12:32:20 +0100 | [diff] [blame] | 5392 | * Only run delayed items if we are a directory. We want to make sure |
| 5393 | * all directory indexes hit the fs/subvolume tree so we can find them |
| 5394 | * and figure out which index ranges have to be logged. |
| 5395 | * |
Filipe Manana | 8c8648d | 2020-07-02 12:31:59 +0100 | [diff] [blame] | 5396 | * Otherwise commit the delayed inode only if the full sync flag is set, |
| 5397 | * as we want to make sure an up to date version is in the subvolume |
| 5398 | * tree so copy_inode_items_to_log() / copy_items() can find it and copy |
| 5399 | * it to the log tree. For a non full sync, we always log the inode item |
| 5400 | * 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] | 5401 | */ |
Filipe Manana | 5aa7d1a | 2020-07-02 12:32:20 +0100 | [diff] [blame] | 5402 | if (S_ISDIR(inode->vfs_inode.i_mode)) |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5403 | ret = btrfs_commit_inode_delayed_items(trans, inode); |
Filipe Manana | 8c8648d | 2020-07-02 12:31:59 +0100 | [diff] [blame] | 5404 | else if (test_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags)) |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5405 | ret = btrfs_commit_inode_delayed_inode(inode); |
Filipe Manana | 2c2c452 | 2015-01-13 16:40:04 +0000 | [diff] [blame] | 5406 | |
| 5407 | if (ret) { |
| 5408 | btrfs_free_path(path); |
| 5409 | btrfs_free_path(dst_path); |
| 5410 | return ret; |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 5411 | } |
| 5412 | |
Filipe Manana | a3baaf0 | 2019-02-13 12:14:09 +0000 | [diff] [blame] | 5413 | if (inode_only == LOG_OTHER_INODE || inode_only == LOG_OTHER_INODE_ALL) { |
| 5414 | recursive_logging = true; |
| 5415 | if (inode_only == LOG_OTHER_INODE) |
| 5416 | inode_only = LOG_INODE_EXISTS; |
| 5417 | else |
| 5418 | inode_only = LOG_INODE_ALL; |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5419 | mutex_lock_nested(&inode->log_mutex, SINGLE_DEPTH_NESTING); |
Liu Bo | 781feef | 2016-11-30 16:20:25 -0800 | [diff] [blame] | 5420 | } else { |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5421 | mutex_lock(&inode->log_mutex); |
Liu Bo | 781feef | 2016-11-30 16:20:25 -0800 | [diff] [blame] | 5422 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5423 | |
Filipe Manana | 5e33a2b | 2016-02-25 23:19:38 +0000 | [diff] [blame] | 5424 | /* |
Filipe Manana | 64d6b28 | 2021-01-27 10:34:59 +0000 | [diff] [blame] | 5425 | * This is for cases where logging a directory could result in losing a |
| 5426 | * a file after replaying the log. For example, if we move a file from a |
| 5427 | * directory A to a directory B, then fsync directory A, we have no way |
| 5428 | * to known the file was moved from A to B, so logging just A would |
| 5429 | * result in losing the file after a log replay. |
| 5430 | */ |
| 5431 | if (S_ISDIR(inode->vfs_inode.i_mode) && |
| 5432 | inode_only == LOG_INODE_ALL && |
| 5433 | inode->last_unlink_trans >= trans->transid) { |
| 5434 | btrfs_set_log_full_commit(trans); |
| 5435 | err = 1; |
| 5436 | goto out_unlock; |
| 5437 | } |
| 5438 | |
| 5439 | /* |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5440 | * a brute force approach to making sure we get the most uptodate |
| 5441 | * copies of everything. |
| 5442 | */ |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5443 | if (S_ISDIR(inode->vfs_inode.i_mode)) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5444 | int max_key_type = BTRFS_DIR_LOG_INDEX_KEY; |
| 5445 | |
Filipe Manana | ab12313 | 2021-01-27 10:34:56 +0000 | [diff] [blame] | 5446 | clear_bit(BTRFS_INODE_COPY_EVERYTHING, &inode->runtime_flags); |
Filipe Manana | 4f764e5 | 2015-02-23 19:53:35 +0000 | [diff] [blame] | 5447 | if (inode_only == LOG_INODE_EXISTS) |
| 5448 | max_key_type = BTRFS_XATTR_ITEM_KEY; |
Filipe Manana | 88e221c | 2021-08-31 15:30:35 +0100 | [diff] [blame^] | 5449 | ret = drop_inode_items(trans, log, path, inode, max_key_type); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5450 | } else { |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 5451 | if (inode_only == LOG_INODE_EXISTS) { |
| 5452 | /* |
| 5453 | * Make sure the new inode item we write to the log has |
| 5454 | * the same isize as the current one (if it exists). |
| 5455 | * This is necessary to prevent data loss after log |
| 5456 | * replay, and also to prevent doing a wrong expanding |
| 5457 | * truncate - for e.g. create file, write 4K into offset |
| 5458 | * 0, fsync, write 4K into offset 4096, add hard link, |
| 5459 | * fsync some other file (to sync log), power fail - if |
| 5460 | * we use the inode's current i_size, after log replay |
| 5461 | * we get a 8Kb file, with the last 4Kb extent as a hole |
| 5462 | * (zeroes), as if an expanding truncate happened, |
| 5463 | * instead of getting a file of 4Kb only. |
| 5464 | */ |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5465 | err = logged_inode_size(log, inode, path, &logged_isize); |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 5466 | if (err) |
| 5467 | goto out_unlock; |
| 5468 | } |
Filipe Manana | a742994 | 2015-02-13 16:56:14 +0000 | [diff] [blame] | 5469 | if (test_bit(BTRFS_INODE_NEEDS_FULL_SYNC, |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5470 | &inode->runtime_flags)) { |
Filipe Manana | a742994 | 2015-02-13 16:56:14 +0000 | [diff] [blame] | 5471 | if (inode_only == LOG_INODE_EXISTS) { |
Filipe Manana | 4f764e5 | 2015-02-23 19:53:35 +0000 | [diff] [blame] | 5472 | max_key.type = BTRFS_XATTR_ITEM_KEY; |
Filipe Manana | 88e221c | 2021-08-31 15:30:35 +0100 | [diff] [blame^] | 5473 | ret = drop_inode_items(trans, log, path, inode, |
| 5474 | max_key.type); |
Filipe Manana | a742994 | 2015-02-13 16:56:14 +0000 | [diff] [blame] | 5475 | } else { |
| 5476 | clear_bit(BTRFS_INODE_NEEDS_FULL_SYNC, |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5477 | &inode->runtime_flags); |
Filipe Manana | a742994 | 2015-02-13 16:56:14 +0000 | [diff] [blame] | 5478 | clear_bit(BTRFS_INODE_COPY_EVERYTHING, |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5479 | &inode->runtime_flags); |
Chris Mason | 28ed134 | 2014-12-17 09:41:04 -0800 | [diff] [blame] | 5480 | while(1) { |
| 5481 | ret = btrfs_truncate_inode_items(trans, |
Filipe Manana | 0d7d316 | 2021-05-24 11:35:55 +0100 | [diff] [blame] | 5482 | log, inode, 0, 0, NULL); |
Chris Mason | 28ed134 | 2014-12-17 09:41:04 -0800 | [diff] [blame] | 5483 | if (ret != -EAGAIN) |
| 5484 | break; |
| 5485 | } |
Filipe Manana | a742994 | 2015-02-13 16:56:14 +0000 | [diff] [blame] | 5486 | } |
Filipe Manana | 4f764e5 | 2015-02-23 19:53:35 +0000 | [diff] [blame] | 5487 | } else if (test_and_clear_bit(BTRFS_INODE_COPY_EVERYTHING, |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5488 | &inode->runtime_flags) || |
Josef Bacik | 6cfab85 | 2013-11-12 16:25:58 -0500 | [diff] [blame] | 5489 | inode_only == LOG_INODE_EXISTS) { |
Filipe Manana | 4f764e5 | 2015-02-23 19:53:35 +0000 | [diff] [blame] | 5490 | if (inode_only == LOG_INODE_ALL) |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 5491 | fast_search = true; |
Filipe Manana | 4f764e5 | 2015-02-23 19:53:35 +0000 | [diff] [blame] | 5492 | max_key.type = BTRFS_XATTR_ITEM_KEY; |
Filipe Manana | 88e221c | 2021-08-31 15:30:35 +0100 | [diff] [blame^] | 5493 | ret = drop_inode_items(trans, log, path, inode, |
| 5494 | max_key.type); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 5495 | } else { |
Liu Bo | 183f37f | 2012-11-01 06:38:47 +0000 | [diff] [blame] | 5496 | if (inode_only == LOG_INODE_ALL) |
| 5497 | fast_search = true; |
Filipe Manana | 2ac691d | 2021-07-20 16:03:43 +0100 | [diff] [blame] | 5498 | inode_item_dropped = false; |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 5499 | goto log_extents; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 5500 | } |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 5501 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5502 | } |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5503 | if (ret) { |
| 5504 | err = ret; |
| 5505 | goto out_unlock; |
| 5506 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5507 | |
Filipe Manana | da44700 | 2020-03-09 12:41:07 +0000 | [diff] [blame] | 5508 | err = copy_inode_items_to_log(trans, inode, &min_key, &max_key, |
| 5509 | path, dst_path, logged_isize, |
Filipe Manana | 7af5974 | 2020-04-07 11:37:44 +0100 | [diff] [blame] | 5510 | recursive_logging, inode_only, ctx, |
| 5511 | &need_log_inode_item); |
Filipe Manana | da44700 | 2020-03-09 12:41:07 +0000 | [diff] [blame] | 5512 | if (err) |
| 5513 | goto out_unlock; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 5514 | |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 5515 | btrfs_release_path(path); |
| 5516 | btrfs_release_path(dst_path); |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5517 | err = btrfs_log_all_xattrs(trans, root, inode, path, dst_path); |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 5518 | if (err) |
| 5519 | goto out_unlock; |
Filipe Manana | 9a8fca6 | 2018-05-11 16:42:42 +0100 | [diff] [blame] | 5520 | xattrs_logged = true; |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 5521 | if (max_key.type >= BTRFS_EXTENT_DATA_KEY && !fast_search) { |
| 5522 | btrfs_release_path(path); |
| 5523 | btrfs_release_path(dst_path); |
Filipe Manana | 7af5974 | 2020-04-07 11:37:44 +0100 | [diff] [blame] | 5524 | err = btrfs_log_holes(trans, root, inode, path); |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 5525 | if (err) |
| 5526 | goto out_unlock; |
| 5527 | } |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 5528 | log_extents: |
Josef Bacik | f3b15cc | 2013-07-22 12:54:30 -0400 | [diff] [blame] | 5529 | btrfs_release_path(path); |
| 5530 | btrfs_release_path(dst_path); |
Filipe Manana | e4545de | 2015-06-17 12:49:23 +0100 | [diff] [blame] | 5531 | if (need_log_inode_item) { |
Filipe Manana | 2ac691d | 2021-07-20 16:03:43 +0100 | [diff] [blame] | 5532 | err = log_inode_item(trans, log, dst_path, inode, inode_item_dropped); |
Filipe Manana | e4545de | 2015-06-17 12:49:23 +0100 | [diff] [blame] | 5533 | if (err) |
| 5534 | goto out_unlock; |
Filipe Manana | b590b83 | 2021-05-28 11:37:32 +0100 | [diff] [blame] | 5535 | /* |
| 5536 | * If we are doing a fast fsync and the inode was logged before |
| 5537 | * in this transaction, we don't need to log the xattrs because |
| 5538 | * they were logged before. If xattrs were added, changed or |
| 5539 | * deleted since the last time we logged the inode, then we have |
| 5540 | * already logged them because the inode had the runtime flag |
| 5541 | * BTRFS_INODE_COPY_EVERYTHING set. |
| 5542 | */ |
| 5543 | if (!xattrs_logged && inode->logged_trans < trans->transid) { |
| 5544 | err = btrfs_log_all_xattrs(trans, root, inode, path, |
| 5545 | dst_path); |
| 5546 | if (err) |
| 5547 | goto out_unlock; |
| 5548 | btrfs_release_path(path); |
| 5549 | } |
Filipe Manana | e4545de | 2015-06-17 12:49:23 +0100 | [diff] [blame] | 5550 | } |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 5551 | if (fast_search) { |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5552 | ret = btrfs_log_changed_extents(trans, root, inode, dst_path, |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 5553 | ctx); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 5554 | if (ret) { |
| 5555 | err = ret; |
| 5556 | goto out_unlock; |
| 5557 | } |
Josef Bacik | d006a04 | 2013-11-12 20:54:09 -0500 | [diff] [blame] | 5558 | } else if (inode_only == LOG_INODE_ALL) { |
Liu Bo | 06d3d22 | 2012-08-27 10:52:19 -0600 | [diff] [blame] | 5559 | struct extent_map *em, *n; |
| 5560 | |
Filipe Manana | 49dae1b | 2014-09-06 22:34:39 +0100 | [diff] [blame] | 5561 | write_lock(&em_tree->lock); |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 5562 | list_for_each_entry_safe(em, n, &em_tree->modified_extents, list) |
| 5563 | list_del_init(&em->list); |
Filipe Manana | 49dae1b | 2014-09-06 22:34:39 +0100 | [diff] [blame] | 5564 | write_unlock(&em_tree->lock); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 5565 | } |
| 5566 | |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5567 | if (inode_only == LOG_INODE_ALL && S_ISDIR(inode->vfs_inode.i_mode)) { |
| 5568 | ret = log_directory_changes(trans, root, inode, path, dst_path, |
| 5569 | ctx); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5570 | if (ret) { |
| 5571 | err = ret; |
| 5572 | goto out_unlock; |
| 5573 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5574 | } |
Filipe Manana | 49dae1b | 2014-09-06 22:34:39 +0100 | [diff] [blame] | 5575 | |
Filipe Manana | 130341b | 2021-08-31 15:30:34 +0100 | [diff] [blame] | 5576 | spin_lock(&inode->lock); |
| 5577 | inode->logged_trans = trans->transid; |
Filipe Manana | d1d832a | 2019-06-07 11:25:24 +0100 | [diff] [blame] | 5578 | /* |
Filipe Manana | 130341b | 2021-08-31 15:30:34 +0100 | [diff] [blame] | 5579 | * Don't update last_log_commit if we logged that an inode exists. |
| 5580 | * We do this for three reasons: |
| 5581 | * |
| 5582 | * 1) We might have had buffered writes to this inode that were |
| 5583 | * flushed and had their ordered extents completed in this |
| 5584 | * transaction, but we did not previously log the inode with |
| 5585 | * LOG_INODE_ALL. Later the inode was evicted and after that |
| 5586 | * it was loaded again and this LOG_INODE_EXISTS log operation |
| 5587 | * happened. We must make sure that if an explicit fsync against |
| 5588 | * the inode is performed later, it logs the new extents, an |
| 5589 | * updated inode item, etc, and syncs the log. The same logic |
| 5590 | * applies to direct IO writes instead of buffered writes. |
| 5591 | * |
| 5592 | * 2) When we log the inode with LOG_INODE_EXISTS, its inode item |
| 5593 | * is logged with an i_size of 0 or whatever value was logged |
| 5594 | * before. If later the i_size of the inode is increased by a |
| 5595 | * truncate operation, the log is synced through an fsync of |
| 5596 | * some other inode and then finally an explicit fsync against |
| 5597 | * this inode is made, we must make sure this fsync logs the |
| 5598 | * inode with the new i_size, the hole between old i_size and |
| 5599 | * the new i_size, and syncs the log. |
| 5600 | * |
| 5601 | * 3) If we are logging that an ancestor inode exists as part of |
| 5602 | * logging a new name from a link or rename operation, don't update |
| 5603 | * its last_log_commit - otherwise if an explicit fsync is made |
| 5604 | * against an ancestor, the fsync considers the inode in the log |
| 5605 | * and doesn't sync the log, resulting in the ancestor missing after |
| 5606 | * a power failure unless the log was synced as part of an fsync |
| 5607 | * against any other unrelated inode. |
Filipe Manana | d1d832a | 2019-06-07 11:25:24 +0100 | [diff] [blame] | 5608 | */ |
Filipe Manana | 130341b | 2021-08-31 15:30:34 +0100 | [diff] [blame] | 5609 | if (inode_only != LOG_INODE_EXISTS) |
| 5610 | inode->last_log_commit = inode->last_sub_trans; |
| 5611 | spin_unlock(&inode->lock); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5612 | out_unlock: |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5613 | mutex_unlock(&inode->log_mutex); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5614 | |
| 5615 | btrfs_free_path(path); |
| 5616 | btrfs_free_path(dst_path); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5617 | return err; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5618 | } |
| 5619 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5620 | /* |
Filipe Manana | ab12313 | 2021-01-27 10:34:56 +0000 | [diff] [blame] | 5621 | * Check if we need to log an inode. This is used in contexts where while |
| 5622 | * logging an inode we need to log another inode (either that it exists or in |
| 5623 | * full mode). This is used instead of btrfs_inode_in_log() because the later |
| 5624 | * requires the inode to be in the log and have the log transaction committed, |
| 5625 | * while here we do not care if the log transaction was already committed - our |
| 5626 | * caller will commit the log later - and we want to avoid logging an inode |
| 5627 | * multiple times when multiple tasks have joined the same log transaction. |
| 5628 | */ |
| 5629 | static bool need_log_inode(struct btrfs_trans_handle *trans, |
| 5630 | struct btrfs_inode *inode) |
| 5631 | { |
| 5632 | /* |
Filipe Manana | 8be2ba2 | 2021-07-29 18:52:46 +0100 | [diff] [blame] | 5633 | * If a directory was not modified, no dentries added or removed, we can |
| 5634 | * and should avoid logging it. |
| 5635 | */ |
| 5636 | if (S_ISDIR(inode->vfs_inode.i_mode) && inode->last_trans < trans->transid) |
| 5637 | return false; |
| 5638 | |
| 5639 | /* |
Filipe Manana | ab12313 | 2021-01-27 10:34:56 +0000 | [diff] [blame] | 5640 | * If this inode does not have new/updated/deleted xattrs since the last |
| 5641 | * time it was logged and is flagged as logged in the current transaction, |
| 5642 | * we can skip logging it. As for new/deleted names, those are updated in |
| 5643 | * the log by link/unlink/rename operations. |
| 5644 | * In case the inode was logged and then evicted and reloaded, its |
| 5645 | * logged_trans will be 0, in which case we have to fully log it since |
| 5646 | * logged_trans is a transient field, not persisted. |
| 5647 | */ |
| 5648 | if (inode->logged_trans == trans->transid && |
| 5649 | !test_bit(BTRFS_INODE_COPY_EVERYTHING, &inode->runtime_flags)) |
| 5650 | return false; |
| 5651 | |
| 5652 | return true; |
| 5653 | } |
| 5654 | |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5655 | struct btrfs_dir_list { |
| 5656 | u64 ino; |
| 5657 | struct list_head list; |
| 5658 | }; |
| 5659 | |
| 5660 | /* |
| 5661 | * Log the inodes of the new dentries of a directory. See log_dir_items() for |
| 5662 | * details about the why it is needed. |
| 5663 | * This is a recursive operation - if an existing dentry corresponds to a |
| 5664 | * directory, that directory's new entries are logged too (same behaviour as |
| 5665 | * ext3/4, xfs, f2fs, reiserfs, nilfs2). Note that when logging the inodes |
| 5666 | * the dentries point to we do not lock their i_mutex, otherwise lockdep |
| 5667 | * complains about the following circular lock dependency / possible deadlock: |
| 5668 | * |
| 5669 | * CPU0 CPU1 |
| 5670 | * ---- ---- |
| 5671 | * lock(&type->i_mutex_dir_key#3/2); |
| 5672 | * lock(sb_internal#2); |
| 5673 | * lock(&type->i_mutex_dir_key#3/2); |
| 5674 | * lock(&sb->s_type->i_mutex_key#14); |
| 5675 | * |
| 5676 | * Where sb_internal is the lock (a counter that works as a lock) acquired by |
| 5677 | * sb_start_intwrite() in btrfs_start_transaction(). |
| 5678 | * Not locking i_mutex of the inodes is still safe because: |
| 5679 | * |
| 5680 | * 1) For regular files we log with a mode of LOG_INODE_EXISTS. It's possible |
| 5681 | * that while logging the inode new references (names) are added or removed |
| 5682 | * from the inode, leaving the logged inode item with a link count that does |
| 5683 | * not match the number of logged inode reference items. This is fine because |
| 5684 | * at log replay time we compute the real number of links and correct the |
| 5685 | * link count in the inode item (see replay_one_buffer() and |
| 5686 | * link_to_fixup_dir()); |
| 5687 | * |
| 5688 | * 2) For directories we log with a mode of LOG_INODE_ALL. It's possible that |
| 5689 | * while logging the inode's items new items with keys BTRFS_DIR_ITEM_KEY and |
| 5690 | * BTRFS_DIR_INDEX_KEY are added to fs/subvol tree and the logged inode item |
| 5691 | * has a size that doesn't match the sum of the lengths of all the logged |
| 5692 | * names. This does not result in a problem because if a dir_item key is |
| 5693 | * logged but its matching dir_index key is not logged, at log replay time we |
| 5694 | * don't use it to replay the respective name (see replay_one_name()). On the |
| 5695 | * other hand if only the dir_index key ends up being logged, the respective |
| 5696 | * name is added to the fs/subvol tree with both the dir_item and dir_index |
| 5697 | * keys created (see replay_one_name()). |
| 5698 | * The directory's inode item with a wrong i_size is not a problem as well, |
| 5699 | * since we don't use it at log replay time to set the i_size in the inode |
| 5700 | * item of the fs/subvol tree (see overwrite_item()). |
| 5701 | */ |
| 5702 | static int log_new_dir_dentries(struct btrfs_trans_handle *trans, |
| 5703 | struct btrfs_root *root, |
Nikolay Borisov | 51cc0d3 | 2017-01-18 00:31:43 +0200 | [diff] [blame] | 5704 | struct btrfs_inode *start_inode, |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5705 | struct btrfs_log_ctx *ctx) |
| 5706 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5707 | struct btrfs_fs_info *fs_info = root->fs_info; |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5708 | struct btrfs_root *log = root->log_root; |
| 5709 | struct btrfs_path *path; |
| 5710 | LIST_HEAD(dir_list); |
| 5711 | struct btrfs_dir_list *dir_elem; |
| 5712 | int ret = 0; |
| 5713 | |
Filipe Manana | c48792c | 2021-08-31 15:30:33 +0100 | [diff] [blame] | 5714 | /* |
| 5715 | * If we are logging a new name, as part of a link or rename operation, |
| 5716 | * don't bother logging new dentries, as we just want to log the names |
| 5717 | * of an inode and that any new parents exist. |
| 5718 | */ |
| 5719 | if (ctx->logging_new_name) |
| 5720 | return 0; |
| 5721 | |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5722 | path = btrfs_alloc_path(); |
| 5723 | if (!path) |
| 5724 | return -ENOMEM; |
| 5725 | |
| 5726 | dir_elem = kmalloc(sizeof(*dir_elem), GFP_NOFS); |
| 5727 | if (!dir_elem) { |
| 5728 | btrfs_free_path(path); |
| 5729 | return -ENOMEM; |
| 5730 | } |
Nikolay Borisov | 51cc0d3 | 2017-01-18 00:31:43 +0200 | [diff] [blame] | 5731 | dir_elem->ino = btrfs_ino(start_inode); |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5732 | list_add_tail(&dir_elem->list, &dir_list); |
| 5733 | |
| 5734 | while (!list_empty(&dir_list)) { |
| 5735 | struct extent_buffer *leaf; |
| 5736 | struct btrfs_key min_key; |
| 5737 | int nritems; |
| 5738 | int i; |
| 5739 | |
| 5740 | dir_elem = list_first_entry(&dir_list, struct btrfs_dir_list, |
| 5741 | list); |
| 5742 | if (ret) |
| 5743 | goto next_dir_inode; |
| 5744 | |
| 5745 | min_key.objectid = dir_elem->ino; |
| 5746 | min_key.type = BTRFS_DIR_ITEM_KEY; |
| 5747 | min_key.offset = 0; |
| 5748 | again: |
| 5749 | btrfs_release_path(path); |
| 5750 | ret = btrfs_search_forward(log, &min_key, path, trans->transid); |
| 5751 | if (ret < 0) { |
| 5752 | goto next_dir_inode; |
| 5753 | } else if (ret > 0) { |
| 5754 | ret = 0; |
| 5755 | goto next_dir_inode; |
| 5756 | } |
| 5757 | |
| 5758 | process_leaf: |
| 5759 | leaf = path->nodes[0]; |
| 5760 | nritems = btrfs_header_nritems(leaf); |
| 5761 | for (i = path->slots[0]; i < nritems; i++) { |
| 5762 | struct btrfs_dir_item *di; |
| 5763 | struct btrfs_key di_key; |
| 5764 | struct inode *di_inode; |
| 5765 | struct btrfs_dir_list *new_dir_elem; |
| 5766 | int log_mode = LOG_INODE_EXISTS; |
| 5767 | int type; |
| 5768 | |
| 5769 | btrfs_item_key_to_cpu(leaf, &min_key, i); |
| 5770 | if (min_key.objectid != dir_elem->ino || |
| 5771 | min_key.type != BTRFS_DIR_ITEM_KEY) |
| 5772 | goto next_dir_inode; |
| 5773 | |
| 5774 | di = btrfs_item_ptr(leaf, i, struct btrfs_dir_item); |
| 5775 | type = btrfs_dir_type(leaf, di); |
| 5776 | if (btrfs_dir_transid(leaf, di) < trans->transid && |
| 5777 | type != BTRFS_FT_DIR) |
| 5778 | continue; |
| 5779 | btrfs_dir_item_key_to_cpu(leaf, di, &di_key); |
| 5780 | if (di_key.type == BTRFS_ROOT_ITEM_KEY) |
| 5781 | continue; |
| 5782 | |
Robbie Ko | ec125cf | 2016-10-28 10:48:26 +0800 | [diff] [blame] | 5783 | btrfs_release_path(path); |
David Sterba | 0202e83 | 2020-05-15 19:35:59 +0200 | [diff] [blame] | 5784 | di_inode = btrfs_iget(fs_info->sb, di_key.objectid, root); |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5785 | if (IS_ERR(di_inode)) { |
| 5786 | ret = PTR_ERR(di_inode); |
| 5787 | goto next_dir_inode; |
| 5788 | } |
| 5789 | |
Filipe Manana | 0e44cb3 | 2021-01-27 10:34:58 +0000 | [diff] [blame] | 5790 | if (!need_log_inode(trans, BTRFS_I(di_inode))) { |
Filipe Manana | 410f954 | 2019-09-10 15:26:49 +0100 | [diff] [blame] | 5791 | btrfs_add_delayed_iput(di_inode); |
Robbie Ko | ec125cf | 2016-10-28 10:48:26 +0800 | [diff] [blame] | 5792 | break; |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5793 | } |
| 5794 | |
| 5795 | ctx->log_new_dentries = false; |
Filipe Manana | 3f9749f | 2016-04-25 04:45:02 +0100 | [diff] [blame] | 5796 | if (type == BTRFS_FT_DIR || type == BTRFS_FT_SYMLINK) |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5797 | log_mode = LOG_INODE_ALL; |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5798 | ret = btrfs_log_inode(trans, root, BTRFS_I(di_inode), |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 5799 | log_mode, ctx); |
Filipe Manana | 410f954 | 2019-09-10 15:26:49 +0100 | [diff] [blame] | 5800 | btrfs_add_delayed_iput(di_inode); |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5801 | if (ret) |
| 5802 | goto next_dir_inode; |
| 5803 | if (ctx->log_new_dentries) { |
| 5804 | new_dir_elem = kmalloc(sizeof(*new_dir_elem), |
| 5805 | GFP_NOFS); |
| 5806 | if (!new_dir_elem) { |
| 5807 | ret = -ENOMEM; |
| 5808 | goto next_dir_inode; |
| 5809 | } |
| 5810 | new_dir_elem->ino = di_key.objectid; |
| 5811 | list_add_tail(&new_dir_elem->list, &dir_list); |
| 5812 | } |
| 5813 | break; |
| 5814 | } |
| 5815 | if (i == nritems) { |
| 5816 | ret = btrfs_next_leaf(log, path); |
| 5817 | if (ret < 0) { |
| 5818 | goto next_dir_inode; |
| 5819 | } else if (ret > 0) { |
| 5820 | ret = 0; |
| 5821 | goto next_dir_inode; |
| 5822 | } |
| 5823 | goto process_leaf; |
| 5824 | } |
| 5825 | if (min_key.offset < (u64)-1) { |
| 5826 | min_key.offset++; |
| 5827 | goto again; |
| 5828 | } |
| 5829 | next_dir_inode: |
| 5830 | list_del(&dir_elem->list); |
| 5831 | kfree(dir_elem); |
| 5832 | } |
| 5833 | |
| 5834 | btrfs_free_path(path); |
| 5835 | return ret; |
| 5836 | } |
| 5837 | |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 5838 | static int btrfs_log_all_parents(struct btrfs_trans_handle *trans, |
Nikolay Borisov | d0a0b78 | 2017-02-20 13:50:30 +0200 | [diff] [blame] | 5839 | struct btrfs_inode *inode, |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 5840 | struct btrfs_log_ctx *ctx) |
| 5841 | { |
David Sterba | 3ffbd68 | 2018-06-29 10:56:42 +0200 | [diff] [blame] | 5842 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 5843 | int ret; |
| 5844 | struct btrfs_path *path; |
| 5845 | struct btrfs_key key; |
Nikolay Borisov | d0a0b78 | 2017-02-20 13:50:30 +0200 | [diff] [blame] | 5846 | struct btrfs_root *root = inode->root; |
| 5847 | const u64 ino = btrfs_ino(inode); |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 5848 | |
| 5849 | path = btrfs_alloc_path(); |
| 5850 | if (!path) |
| 5851 | return -ENOMEM; |
| 5852 | path->skip_locking = 1; |
| 5853 | path->search_commit_root = 1; |
| 5854 | |
| 5855 | key.objectid = ino; |
| 5856 | key.type = BTRFS_INODE_REF_KEY; |
| 5857 | key.offset = 0; |
| 5858 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 5859 | if (ret < 0) |
| 5860 | goto out; |
| 5861 | |
| 5862 | while (true) { |
| 5863 | struct extent_buffer *leaf = path->nodes[0]; |
| 5864 | int slot = path->slots[0]; |
| 5865 | u32 cur_offset = 0; |
| 5866 | u32 item_size; |
| 5867 | unsigned long ptr; |
| 5868 | |
| 5869 | if (slot >= btrfs_header_nritems(leaf)) { |
| 5870 | ret = btrfs_next_leaf(root, path); |
| 5871 | if (ret < 0) |
| 5872 | goto out; |
| 5873 | else if (ret > 0) |
| 5874 | break; |
| 5875 | continue; |
| 5876 | } |
| 5877 | |
| 5878 | btrfs_item_key_to_cpu(leaf, &key, slot); |
| 5879 | /* BTRFS_INODE_EXTREF_KEY is BTRFS_INODE_REF_KEY + 1 */ |
| 5880 | if (key.objectid != ino || key.type > BTRFS_INODE_EXTREF_KEY) |
| 5881 | break; |
| 5882 | |
| 5883 | item_size = btrfs_item_size_nr(leaf, slot); |
| 5884 | ptr = btrfs_item_ptr_offset(leaf, slot); |
| 5885 | while (cur_offset < item_size) { |
| 5886 | struct btrfs_key inode_key; |
| 5887 | struct inode *dir_inode; |
| 5888 | |
| 5889 | inode_key.type = BTRFS_INODE_ITEM_KEY; |
| 5890 | inode_key.offset = 0; |
| 5891 | |
| 5892 | if (key.type == BTRFS_INODE_EXTREF_KEY) { |
| 5893 | struct btrfs_inode_extref *extref; |
| 5894 | |
| 5895 | extref = (struct btrfs_inode_extref *) |
| 5896 | (ptr + cur_offset); |
| 5897 | inode_key.objectid = btrfs_inode_extref_parent( |
| 5898 | leaf, extref); |
| 5899 | cur_offset += sizeof(*extref); |
| 5900 | cur_offset += btrfs_inode_extref_name_len(leaf, |
| 5901 | extref); |
| 5902 | } else { |
| 5903 | inode_key.objectid = key.offset; |
| 5904 | cur_offset = item_size; |
| 5905 | } |
| 5906 | |
David Sterba | 0202e83 | 2020-05-15 19:35:59 +0200 | [diff] [blame] | 5907 | dir_inode = btrfs_iget(fs_info->sb, inode_key.objectid, |
| 5908 | root); |
Filipe Manana | 0f375ee | 2018-10-09 15:05:29 +0100 | [diff] [blame] | 5909 | /* |
| 5910 | * If the parent inode was deleted, return an error to |
| 5911 | * fallback to a transaction commit. This is to prevent |
| 5912 | * getting an inode that was moved from one parent A to |
| 5913 | * a parent B, got its former parent A deleted and then |
| 5914 | * it got fsync'ed, from existing at both parents after |
| 5915 | * a log replay (and the old parent still existing). |
| 5916 | * Example: |
| 5917 | * |
| 5918 | * mkdir /mnt/A |
| 5919 | * mkdir /mnt/B |
| 5920 | * touch /mnt/B/bar |
| 5921 | * sync |
| 5922 | * mv /mnt/B/bar /mnt/A/bar |
| 5923 | * mv -T /mnt/A /mnt/B |
| 5924 | * fsync /mnt/B/bar |
| 5925 | * <power fail> |
| 5926 | * |
| 5927 | * If we ignore the old parent B which got deleted, |
| 5928 | * after a log replay we would have file bar linked |
| 5929 | * at both parents and the old parent B would still |
| 5930 | * exist. |
| 5931 | */ |
| 5932 | if (IS_ERR(dir_inode)) { |
| 5933 | ret = PTR_ERR(dir_inode); |
| 5934 | goto out; |
| 5935 | } |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 5936 | |
Filipe Manana | 3e6a86a | 2021-01-27 10:34:57 +0000 | [diff] [blame] | 5937 | if (!need_log_inode(trans, BTRFS_I(dir_inode))) { |
| 5938 | btrfs_add_delayed_iput(dir_inode); |
| 5939 | continue; |
| 5940 | } |
| 5941 | |
Filipe Manana | 289cffc | 2021-08-31 15:30:32 +0100 | [diff] [blame] | 5942 | ctx->log_new_dentries = false; |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5943 | ret = btrfs_log_inode(trans, root, BTRFS_I(dir_inode), |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 5944 | LOG_INODE_ALL, ctx); |
Filipe Manana | 289cffc | 2021-08-31 15:30:32 +0100 | [diff] [blame] | 5945 | if (!ret && ctx->log_new_dentries) |
Filipe Manana | 657ed1a | 2016-04-06 17:11:56 +0100 | [diff] [blame] | 5946 | ret = log_new_dir_dentries(trans, root, |
David Sterba | f85b737 | 2017-01-20 14:54:07 +0100 | [diff] [blame] | 5947 | BTRFS_I(dir_inode), ctx); |
Filipe Manana | 410f954 | 2019-09-10 15:26:49 +0100 | [diff] [blame] | 5948 | btrfs_add_delayed_iput(dir_inode); |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 5949 | if (ret) |
| 5950 | goto out; |
| 5951 | } |
| 5952 | path->slots[0]++; |
| 5953 | } |
| 5954 | ret = 0; |
| 5955 | out: |
| 5956 | btrfs_free_path(path); |
| 5957 | return ret; |
| 5958 | } |
| 5959 | |
Filipe Manana | b8aa330 | 2019-04-17 11:31:06 +0100 | [diff] [blame] | 5960 | static int log_new_ancestors(struct btrfs_trans_handle *trans, |
| 5961 | struct btrfs_root *root, |
| 5962 | struct btrfs_path *path, |
| 5963 | struct btrfs_log_ctx *ctx) |
| 5964 | { |
| 5965 | struct btrfs_key found_key; |
| 5966 | |
| 5967 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]); |
| 5968 | |
| 5969 | while (true) { |
| 5970 | struct btrfs_fs_info *fs_info = root->fs_info; |
Filipe Manana | b8aa330 | 2019-04-17 11:31:06 +0100 | [diff] [blame] | 5971 | struct extent_buffer *leaf = path->nodes[0]; |
| 5972 | int slot = path->slots[0]; |
| 5973 | struct btrfs_key search_key; |
| 5974 | struct inode *inode; |
David Sterba | 0202e83 | 2020-05-15 19:35:59 +0200 | [diff] [blame] | 5975 | u64 ino; |
Filipe Manana | b8aa330 | 2019-04-17 11:31:06 +0100 | [diff] [blame] | 5976 | int ret = 0; |
| 5977 | |
| 5978 | btrfs_release_path(path); |
| 5979 | |
David Sterba | 0202e83 | 2020-05-15 19:35:59 +0200 | [diff] [blame] | 5980 | ino = found_key.offset; |
| 5981 | |
Filipe Manana | b8aa330 | 2019-04-17 11:31:06 +0100 | [diff] [blame] | 5982 | search_key.objectid = found_key.offset; |
| 5983 | search_key.type = BTRFS_INODE_ITEM_KEY; |
| 5984 | search_key.offset = 0; |
David Sterba | 0202e83 | 2020-05-15 19:35:59 +0200 | [diff] [blame] | 5985 | inode = btrfs_iget(fs_info->sb, ino, root); |
Filipe Manana | b8aa330 | 2019-04-17 11:31:06 +0100 | [diff] [blame] | 5986 | if (IS_ERR(inode)) |
| 5987 | return PTR_ERR(inode); |
| 5988 | |
Filipe Manana | ab12313 | 2021-01-27 10:34:56 +0000 | [diff] [blame] | 5989 | if (BTRFS_I(inode)->generation >= trans->transid && |
| 5990 | need_log_inode(trans, BTRFS_I(inode))) |
Filipe Manana | b8aa330 | 2019-04-17 11:31:06 +0100 | [diff] [blame] | 5991 | ret = btrfs_log_inode(trans, root, BTRFS_I(inode), |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 5992 | LOG_INODE_EXISTS, ctx); |
Filipe Manana | 410f954 | 2019-09-10 15:26:49 +0100 | [diff] [blame] | 5993 | btrfs_add_delayed_iput(inode); |
Filipe Manana | b8aa330 | 2019-04-17 11:31:06 +0100 | [diff] [blame] | 5994 | if (ret) |
| 5995 | return ret; |
| 5996 | |
| 5997 | if (search_key.objectid == BTRFS_FIRST_FREE_OBJECTID) |
| 5998 | break; |
| 5999 | |
| 6000 | search_key.type = BTRFS_INODE_REF_KEY; |
| 6001 | ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0); |
| 6002 | if (ret < 0) |
| 6003 | return ret; |
| 6004 | |
| 6005 | leaf = path->nodes[0]; |
| 6006 | slot = path->slots[0]; |
| 6007 | if (slot >= btrfs_header_nritems(leaf)) { |
| 6008 | ret = btrfs_next_leaf(root, path); |
| 6009 | if (ret < 0) |
| 6010 | return ret; |
| 6011 | else if (ret > 0) |
| 6012 | return -ENOENT; |
| 6013 | leaf = path->nodes[0]; |
| 6014 | slot = path->slots[0]; |
| 6015 | } |
| 6016 | |
| 6017 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
| 6018 | if (found_key.objectid != search_key.objectid || |
| 6019 | found_key.type != BTRFS_INODE_REF_KEY) |
| 6020 | return -ENOENT; |
| 6021 | } |
| 6022 | return 0; |
| 6023 | } |
| 6024 | |
| 6025 | static int log_new_ancestors_fast(struct btrfs_trans_handle *trans, |
| 6026 | struct btrfs_inode *inode, |
| 6027 | struct dentry *parent, |
| 6028 | struct btrfs_log_ctx *ctx) |
| 6029 | { |
| 6030 | struct btrfs_root *root = inode->root; |
Filipe Manana | b8aa330 | 2019-04-17 11:31:06 +0100 | [diff] [blame] | 6031 | struct dentry *old_parent = NULL; |
| 6032 | struct super_block *sb = inode->vfs_inode.i_sb; |
| 6033 | int ret = 0; |
| 6034 | |
| 6035 | while (true) { |
| 6036 | if (!parent || d_really_is_negative(parent) || |
| 6037 | sb != parent->d_sb) |
| 6038 | break; |
| 6039 | |
| 6040 | inode = BTRFS_I(d_inode(parent)); |
| 6041 | if (root != inode->root) |
| 6042 | break; |
| 6043 | |
Filipe Manana | ab12313 | 2021-01-27 10:34:56 +0000 | [diff] [blame] | 6044 | if (inode->generation >= trans->transid && |
| 6045 | need_log_inode(trans, inode)) { |
Filipe Manana | b8aa330 | 2019-04-17 11:31:06 +0100 | [diff] [blame] | 6046 | ret = btrfs_log_inode(trans, root, inode, |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 6047 | LOG_INODE_EXISTS, ctx); |
Filipe Manana | b8aa330 | 2019-04-17 11:31:06 +0100 | [diff] [blame] | 6048 | if (ret) |
| 6049 | break; |
| 6050 | } |
| 6051 | if (IS_ROOT(parent)) |
| 6052 | break; |
| 6053 | |
| 6054 | parent = dget_parent(parent); |
| 6055 | dput(old_parent); |
| 6056 | old_parent = parent; |
| 6057 | } |
| 6058 | dput(old_parent); |
| 6059 | |
| 6060 | return ret; |
| 6061 | } |
| 6062 | |
| 6063 | static int log_all_new_ancestors(struct btrfs_trans_handle *trans, |
| 6064 | struct btrfs_inode *inode, |
| 6065 | struct dentry *parent, |
| 6066 | struct btrfs_log_ctx *ctx) |
| 6067 | { |
| 6068 | struct btrfs_root *root = inode->root; |
| 6069 | const u64 ino = btrfs_ino(inode); |
| 6070 | struct btrfs_path *path; |
| 6071 | struct btrfs_key search_key; |
| 6072 | int ret; |
| 6073 | |
| 6074 | /* |
| 6075 | * For a single hard link case, go through a fast path that does not |
| 6076 | * need to iterate the fs/subvolume tree. |
| 6077 | */ |
| 6078 | if (inode->vfs_inode.i_nlink < 2) |
| 6079 | return log_new_ancestors_fast(trans, inode, parent, ctx); |
| 6080 | |
| 6081 | path = btrfs_alloc_path(); |
| 6082 | if (!path) |
| 6083 | return -ENOMEM; |
| 6084 | |
| 6085 | search_key.objectid = ino; |
| 6086 | search_key.type = BTRFS_INODE_REF_KEY; |
| 6087 | search_key.offset = 0; |
| 6088 | again: |
| 6089 | ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0); |
| 6090 | if (ret < 0) |
| 6091 | goto out; |
| 6092 | if (ret == 0) |
| 6093 | path->slots[0]++; |
| 6094 | |
| 6095 | while (true) { |
| 6096 | struct extent_buffer *leaf = path->nodes[0]; |
| 6097 | int slot = path->slots[0]; |
| 6098 | struct btrfs_key found_key; |
| 6099 | |
| 6100 | if (slot >= btrfs_header_nritems(leaf)) { |
| 6101 | ret = btrfs_next_leaf(root, path); |
| 6102 | if (ret < 0) |
| 6103 | goto out; |
| 6104 | else if (ret > 0) |
| 6105 | break; |
| 6106 | continue; |
| 6107 | } |
| 6108 | |
| 6109 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
| 6110 | if (found_key.objectid != ino || |
| 6111 | found_key.type > BTRFS_INODE_EXTREF_KEY) |
| 6112 | break; |
| 6113 | |
| 6114 | /* |
| 6115 | * Don't deal with extended references because they are rare |
| 6116 | * cases and too complex to deal with (we would need to keep |
| 6117 | * track of which subitem we are processing for each item in |
| 6118 | * this loop, etc). So just return some error to fallback to |
| 6119 | * a transaction commit. |
| 6120 | */ |
| 6121 | if (found_key.type == BTRFS_INODE_EXTREF_KEY) { |
| 6122 | ret = -EMLINK; |
| 6123 | goto out; |
| 6124 | } |
| 6125 | |
| 6126 | /* |
| 6127 | * Logging ancestors needs to do more searches on the fs/subvol |
| 6128 | * tree, so it releases the path as needed to avoid deadlocks. |
| 6129 | * Keep track of the last inode ref key and resume from that key |
| 6130 | * after logging all new ancestors for the current hard link. |
| 6131 | */ |
| 6132 | memcpy(&search_key, &found_key, sizeof(search_key)); |
| 6133 | |
| 6134 | ret = log_new_ancestors(trans, root, path, ctx); |
| 6135 | if (ret) |
| 6136 | goto out; |
| 6137 | btrfs_release_path(path); |
| 6138 | goto again; |
| 6139 | } |
| 6140 | ret = 0; |
| 6141 | out: |
| 6142 | btrfs_free_path(path); |
| 6143 | return ret; |
| 6144 | } |
| 6145 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6146 | /* |
| 6147 | * helper function around btrfs_log_inode to make sure newly created |
| 6148 | * parent directories also end up in the log. A minimal inode and backref |
| 6149 | * only logging is done of any parent directories that are older than |
| 6150 | * the last committed transaction |
| 6151 | */ |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 6152 | static int btrfs_log_inode_parent(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 19df27a | 2017-02-20 13:51:01 +0200 | [diff] [blame] | 6153 | struct btrfs_inode *inode, |
Filipe Manana | 49dae1b | 2014-09-06 22:34:39 +0100 | [diff] [blame] | 6154 | struct dentry *parent, |
Edmund Nadolski | 41a1ead | 2017-11-20 13:24:47 -0700 | [diff] [blame] | 6155 | int inode_only, |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 6156 | struct btrfs_log_ctx *ctx) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6157 | { |
Nikolay Borisov | f882274 | 2018-02-27 17:37:17 +0200 | [diff] [blame] | 6158 | struct btrfs_root *root = inode->root; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6159 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6160 | int ret = 0; |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 6161 | bool log_dentries = false; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6162 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6163 | if (btrfs_test_opt(fs_info, NOTREELOG)) { |
Sage Weil | 3a5e140 | 2009-04-02 16:49:40 -0400 | [diff] [blame] | 6164 | ret = 1; |
| 6165 | goto end_no_trans; |
| 6166 | } |
| 6167 | |
Nikolay Borisov | f882274 | 2018-02-27 17:37:17 +0200 | [diff] [blame] | 6168 | if (btrfs_root_refs(&root->root_item) == 0) { |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 6169 | ret = 1; |
| 6170 | goto end_no_trans; |
| 6171 | } |
| 6172 | |
Filipe Manana | f2d72f4 | 2018-10-08 11:12:55 +0100 | [diff] [blame] | 6173 | /* |
| 6174 | * Skip already logged inodes or inodes corresponding to tmpfiles |
| 6175 | * (since logging them is pointless, a link count of 0 means they |
| 6176 | * will never be accessible). |
| 6177 | */ |
Filipe Manana | 626e9f4 | 2021-04-27 11:27:20 +0100 | [diff] [blame] | 6178 | if ((btrfs_inode_in_log(inode, trans->transid) && |
| 6179 | list_empty(&ctx->ordered_extents)) || |
Filipe Manana | f2d72f4 | 2018-10-08 11:12:55 +0100 | [diff] [blame] | 6180 | inode->vfs_inode.i_nlink == 0) { |
Chris Mason | 257c62e | 2009-10-13 13:21:08 -0400 | [diff] [blame] | 6181 | ret = BTRFS_NO_LOG_SYNC; |
| 6182 | goto end_no_trans; |
| 6183 | } |
| 6184 | |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 6185 | ret = start_log_trans(trans, root, ctx); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 6186 | if (ret) |
Miao Xie | e87ac13 | 2014-02-20 18:08:53 +0800 | [diff] [blame] | 6187 | goto end_no_trans; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6188 | |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 6189 | ret = btrfs_log_inode(trans, root, inode, inode_only, ctx); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 6190 | if (ret) |
| 6191 | goto end_trans; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6192 | |
Chris Mason | af4176b | 2009-03-24 10:24:31 -0400 | [diff] [blame] | 6193 | /* |
| 6194 | * for regular files, if its inode is already on disk, we don't |
| 6195 | * have to worry about the parents at all. This is because |
| 6196 | * we can use the last_unlink_trans field to record renames |
| 6197 | * and other fun in this file. |
| 6198 | */ |
Nikolay Borisov | 19df27a | 2017-02-20 13:51:01 +0200 | [diff] [blame] | 6199 | if (S_ISREG(inode->vfs_inode.i_mode) && |
Filipe Manana | 47d3db4 | 2020-11-25 12:19:26 +0000 | [diff] [blame] | 6200 | inode->generation < trans->transid && |
| 6201 | inode->last_unlink_trans < trans->transid) { |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 6202 | ret = 0; |
| 6203 | goto end_trans; |
| 6204 | } |
Chris Mason | af4176b | 2009-03-24 10:24:31 -0400 | [diff] [blame] | 6205 | |
Filipe Manana | 289cffc | 2021-08-31 15:30:32 +0100 | [diff] [blame] | 6206 | if (S_ISDIR(inode->vfs_inode.i_mode) && ctx->log_new_dentries) |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 6207 | log_dentries = true; |
| 6208 | |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 6209 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 6210 | * 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] | 6211 | * inodes are fully logged. This is to prevent leaving dangling |
| 6212 | * directory index entries in directories that were our parents but are |
| 6213 | * not anymore. Not doing this results in old parent directory being |
| 6214 | * impossible to delete after log replay (rmdir will always fail with |
| 6215 | * error -ENOTEMPTY). |
| 6216 | * |
| 6217 | * Example 1: |
| 6218 | * |
| 6219 | * mkdir testdir |
| 6220 | * touch testdir/foo |
| 6221 | * ln testdir/foo testdir/bar |
| 6222 | * sync |
| 6223 | * unlink testdir/bar |
| 6224 | * xfs_io -c fsync testdir/foo |
| 6225 | * <power failure> |
| 6226 | * mount fs, triggers log replay |
| 6227 | * |
| 6228 | * If we don't log the parent directory (testdir), after log replay the |
| 6229 | * directory still has an entry pointing to the file inode using the bar |
| 6230 | * name, but a matching BTRFS_INODE_[REF|EXTREF]_KEY does not exist and |
| 6231 | * the file inode has a link count of 1. |
| 6232 | * |
| 6233 | * Example 2: |
| 6234 | * |
| 6235 | * mkdir testdir |
| 6236 | * touch foo |
| 6237 | * ln foo testdir/foo2 |
| 6238 | * ln foo testdir/foo3 |
| 6239 | * sync |
| 6240 | * unlink testdir/foo3 |
| 6241 | * xfs_io -c fsync foo |
| 6242 | * <power failure> |
| 6243 | * mount fs, triggers log replay |
| 6244 | * |
| 6245 | * Similar as the first example, after log replay the parent directory |
| 6246 | * testdir still has an entry pointing to the inode file with name foo3 |
| 6247 | * but the file inode does not have a matching BTRFS_INODE_REF_KEY item |
| 6248 | * and has a link count of 2. |
| 6249 | */ |
Filipe Manana | 47d3db4 | 2020-11-25 12:19:26 +0000 | [diff] [blame] | 6250 | if (inode->last_unlink_trans >= trans->transid) { |
Filipe Manana | b8aa330 | 2019-04-17 11:31:06 +0100 | [diff] [blame] | 6251 | ret = btrfs_log_all_parents(trans, inode, ctx); |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 6252 | if (ret) |
| 6253 | goto end_trans; |
| 6254 | } |
| 6255 | |
Filipe Manana | b8aa330 | 2019-04-17 11:31:06 +0100 | [diff] [blame] | 6256 | ret = log_all_new_ancestors(trans, inode, parent, ctx); |
| 6257 | if (ret) |
Filipe Manana | 41bd606 | 2018-11-28 14:54:28 +0000 | [diff] [blame] | 6258 | goto end_trans; |
Filipe Manana | 41bd606 | 2018-11-28 14:54:28 +0000 | [diff] [blame] | 6259 | |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 6260 | if (log_dentries) |
Filipe Manana | b8aa330 | 2019-04-17 11:31:06 +0100 | [diff] [blame] | 6261 | ret = log_new_dir_dentries(trans, root, inode, ctx); |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 6262 | else |
| 6263 | ret = 0; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 6264 | end_trans: |
| 6265 | if (ret < 0) { |
David Sterba | 9078776 | 2019-03-20 13:28:05 +0100 | [diff] [blame] | 6266 | btrfs_set_log_full_commit(trans); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 6267 | ret = 1; |
| 6268 | } |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 6269 | |
| 6270 | if (ret) |
| 6271 | btrfs_remove_log_ctx(root, ctx); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6272 | btrfs_end_log_trans(root); |
| 6273 | end_no_trans: |
| 6274 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6275 | } |
| 6276 | |
| 6277 | /* |
| 6278 | * it is not safe to log dentry if the chunk root has added new |
| 6279 | * chunks. This returns 0 if the dentry was logged, and 1 otherwise. |
| 6280 | * If this returns 1, you must commit the transaction to safely get your |
| 6281 | * data on disk. |
| 6282 | */ |
| 6283 | int btrfs_log_dentry_safe(struct btrfs_trans_handle *trans, |
Nikolay Borisov | e5b84f7a | 2018-02-27 17:37:18 +0200 | [diff] [blame] | 6284 | struct dentry *dentry, |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 6285 | struct btrfs_log_ctx *ctx) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6286 | { |
Josef Bacik | 6a91221 | 2010-11-20 09:48:00 +0000 | [diff] [blame] | 6287 | struct dentry *parent = dget_parent(dentry); |
| 6288 | int ret; |
| 6289 | |
Nikolay Borisov | f882274 | 2018-02-27 17:37:17 +0200 | [diff] [blame] | 6290 | ret = btrfs_log_inode_parent(trans, BTRFS_I(d_inode(dentry)), parent, |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 6291 | LOG_INODE_ALL, ctx); |
Josef Bacik | 6a91221 | 2010-11-20 09:48:00 +0000 | [diff] [blame] | 6292 | dput(parent); |
| 6293 | |
| 6294 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6295 | } |
| 6296 | |
| 6297 | /* |
| 6298 | * should be called during mount to recover any replay any log trees |
| 6299 | * from the FS |
| 6300 | */ |
| 6301 | int btrfs_recover_log_trees(struct btrfs_root *log_root_tree) |
| 6302 | { |
| 6303 | int ret; |
| 6304 | struct btrfs_path *path; |
| 6305 | struct btrfs_trans_handle *trans; |
| 6306 | struct btrfs_key key; |
| 6307 | struct btrfs_key found_key; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6308 | struct btrfs_root *log; |
| 6309 | struct btrfs_fs_info *fs_info = log_root_tree->fs_info; |
| 6310 | struct walk_control wc = { |
| 6311 | .process_func = process_one_buffer, |
David Sterba | 430a662 | 2019-08-01 14:50:35 +0200 | [diff] [blame] | 6312 | .stage = LOG_WALK_PIN_ONLY, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6313 | }; |
| 6314 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6315 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 6316 | if (!path) |
| 6317 | return -ENOMEM; |
| 6318 | |
Josef Bacik | afcdd12 | 2016-09-02 15:40:02 -0400 | [diff] [blame] | 6319 | set_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6320 | |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 6321 | trans = btrfs_start_transaction(fs_info->tree_root, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6322 | if (IS_ERR(trans)) { |
| 6323 | ret = PTR_ERR(trans); |
| 6324 | goto error; |
| 6325 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6326 | |
| 6327 | wc.trans = trans; |
| 6328 | wc.pin = 1; |
| 6329 | |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 6330 | ret = walk_log_tree(trans, log_root_tree, &wc); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6331 | if (ret) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 6332 | btrfs_handle_fs_error(fs_info, ret, |
| 6333 | "Failed to pin buffers while recovering log root tree."); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6334 | goto error; |
| 6335 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6336 | |
| 6337 | again: |
| 6338 | key.objectid = BTRFS_TREE_LOG_OBJECTID; |
| 6339 | key.offset = (u64)-1; |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 6340 | key.type = BTRFS_ROOT_ITEM_KEY; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6341 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 6342 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6343 | ret = btrfs_search_slot(NULL, log_root_tree, &key, path, 0, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6344 | |
| 6345 | if (ret < 0) { |
Anand Jain | 34d9700 | 2016-03-16 16:43:06 +0800 | [diff] [blame] | 6346 | btrfs_handle_fs_error(fs_info, ret, |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6347 | "Couldn't find tree log root."); |
| 6348 | goto error; |
| 6349 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6350 | if (ret > 0) { |
| 6351 | if (path->slots[0] == 0) |
| 6352 | break; |
| 6353 | path->slots[0]--; |
| 6354 | } |
| 6355 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, |
| 6356 | path->slots[0]); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 6357 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6358 | if (found_key.objectid != BTRFS_TREE_LOG_OBJECTID) |
| 6359 | break; |
| 6360 | |
Josef Bacik | 62a2c73 | 2020-01-24 09:32:21 -0500 | [diff] [blame] | 6361 | log = btrfs_read_tree_root(log_root_tree, &found_key); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6362 | if (IS_ERR(log)) { |
| 6363 | ret = PTR_ERR(log); |
Anand Jain | 34d9700 | 2016-03-16 16:43:06 +0800 | [diff] [blame] | 6364 | btrfs_handle_fs_error(fs_info, ret, |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6365 | "Couldn't read tree log root."); |
| 6366 | goto error; |
| 6367 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6368 | |
David Sterba | 56e9357 | 2020-05-15 19:35:55 +0200 | [diff] [blame] | 6369 | wc.replay_dest = btrfs_get_fs_root(fs_info, found_key.offset, |
| 6370 | true); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6371 | if (IS_ERR(wc.replay_dest)) { |
| 6372 | ret = PTR_ERR(wc.replay_dest); |
Josef Bacik | 9bc574d | 2019-12-06 09:37:17 -0500 | [diff] [blame] | 6373 | |
| 6374 | /* |
| 6375 | * We didn't find the subvol, likely because it was |
| 6376 | * deleted. This is ok, simply skip this log and go to |
| 6377 | * the next one. |
| 6378 | * |
| 6379 | * We need to exclude the root because we can't have |
| 6380 | * other log replays overwriting this log as we'll read |
| 6381 | * it back in a few more times. This will keep our |
| 6382 | * block from being modified, and we'll just bail for |
| 6383 | * each subsequent pass. |
| 6384 | */ |
| 6385 | if (ret == -ENOENT) |
Nikolay Borisov | 9fce570 | 2020-01-20 16:09:13 +0200 | [diff] [blame] | 6386 | ret = btrfs_pin_extent_for_log_replay(trans, |
Josef Bacik | 9bc574d | 2019-12-06 09:37:17 -0500 | [diff] [blame] | 6387 | log->node->start, |
| 6388 | log->node->len); |
Josef Bacik | 0024652 | 2020-01-24 09:33:01 -0500 | [diff] [blame] | 6389 | btrfs_put_root(log); |
Josef Bacik | 9bc574d | 2019-12-06 09:37:17 -0500 | [diff] [blame] | 6390 | |
| 6391 | if (!ret) |
| 6392 | goto next; |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 6393 | btrfs_handle_fs_error(fs_info, ret, |
| 6394 | "Couldn't read target root for tree log recovery."); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6395 | goto error; |
| 6396 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6397 | |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 6398 | wc.replay_dest->log_root = log; |
Josef Bacik | 2002ae1 | 2021-03-12 15:25:05 -0500 | [diff] [blame] | 6399 | ret = btrfs_record_root_in_trans(trans, wc.replay_dest); |
| 6400 | if (ret) |
| 6401 | /* The loop needs to continue due to the root refs */ |
| 6402 | btrfs_handle_fs_error(fs_info, ret, |
| 6403 | "failed to record the log root in transaction"); |
| 6404 | else |
| 6405 | ret = walk_log_tree(trans, log, &wc); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6406 | |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 6407 | if (!ret && wc.stage == LOG_WALK_REPLAY_ALL) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6408 | ret = fixup_inode_link_counts(trans, wc.replay_dest, |
| 6409 | path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6410 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6411 | |
Liu Bo | 900c998 | 2018-01-25 11:02:56 -0700 | [diff] [blame] | 6412 | if (!ret && wc.stage == LOG_WALK_REPLAY_ALL) { |
| 6413 | struct btrfs_root *root = wc.replay_dest; |
| 6414 | |
| 6415 | btrfs_release_path(path); |
| 6416 | |
| 6417 | /* |
| 6418 | * We have just replayed everything, and the highest |
| 6419 | * objectid of fs roots probably has changed in case |
| 6420 | * some inode_item's got replayed. |
| 6421 | * |
| 6422 | * root->objectid_mutex is not acquired as log replay |
| 6423 | * could only happen during mount. |
| 6424 | */ |
Nikolay Borisov | 453e487 | 2020-12-07 17:32:32 +0200 | [diff] [blame] | 6425 | ret = btrfs_init_root_free_objectid(root); |
Liu Bo | 900c998 | 2018-01-25 11:02:56 -0700 | [diff] [blame] | 6426 | } |
| 6427 | |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 6428 | wc.replay_dest->log_root = NULL; |
Josef Bacik | 0024652 | 2020-01-24 09:33:01 -0500 | [diff] [blame] | 6429 | btrfs_put_root(wc.replay_dest); |
Josef Bacik | 0024652 | 2020-01-24 09:33:01 -0500 | [diff] [blame] | 6430 | btrfs_put_root(log); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6431 | |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 6432 | if (ret) |
| 6433 | goto error; |
Josef Bacik | 9bc574d | 2019-12-06 09:37:17 -0500 | [diff] [blame] | 6434 | next: |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6435 | if (found_key.offset == 0) |
| 6436 | break; |
Josef Bacik | 9bc574d | 2019-12-06 09:37:17 -0500 | [diff] [blame] | 6437 | key.offset = found_key.offset - 1; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6438 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 6439 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6440 | |
| 6441 | /* step one is to pin it all, step two is to replay just inodes */ |
| 6442 | if (wc.pin) { |
| 6443 | wc.pin = 0; |
| 6444 | wc.process_func = replay_one_buffer; |
| 6445 | wc.stage = LOG_WALK_REPLAY_INODES; |
| 6446 | goto again; |
| 6447 | } |
| 6448 | /* step three is to replay everything */ |
| 6449 | if (wc.stage < LOG_WALK_REPLAY_ALL) { |
| 6450 | wc.stage++; |
| 6451 | goto again; |
| 6452 | } |
| 6453 | |
| 6454 | btrfs_free_path(path); |
| 6455 | |
Josef Bacik | abefa55 | 2013-04-24 16:40:05 -0400 | [diff] [blame] | 6456 | /* step 4: commit the transaction, which also unpins the blocks */ |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 6457 | ret = btrfs_commit_transaction(trans); |
Josef Bacik | abefa55 | 2013-04-24 16:40:05 -0400 | [diff] [blame] | 6458 | if (ret) |
| 6459 | return ret; |
| 6460 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6461 | log_root_tree->log_root = NULL; |
Josef Bacik | afcdd12 | 2016-09-02 15:40:02 -0400 | [diff] [blame] | 6462 | clear_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags); |
Josef Bacik | 0024652 | 2020-01-24 09:33:01 -0500 | [diff] [blame] | 6463 | btrfs_put_root(log_root_tree); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6464 | |
Josef Bacik | abefa55 | 2013-04-24 16:40:05 -0400 | [diff] [blame] | 6465 | return 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6466 | error: |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 6467 | if (wc.trans) |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 6468 | btrfs_end_transaction(wc.trans); |
David Sterba | 1aeb6b5 | 2020-07-07 18:38:05 +0200 | [diff] [blame] | 6469 | clear_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6470 | btrfs_free_path(path); |
| 6471 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6472 | } |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6473 | |
| 6474 | /* |
| 6475 | * there are some corner cases where we want to force a full |
| 6476 | * commit instead of allowing a directory to be logged. |
| 6477 | * |
| 6478 | * They revolve around files there were unlinked from the directory, and |
| 6479 | * this function updates the parent directory so that a full commit is |
| 6480 | * 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] | 6481 | * |
| 6482 | * Must be called before the unlink operations (updates to the subvolume tree, |
| 6483 | * inodes, etc) are done. |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6484 | */ |
| 6485 | void btrfs_record_unlink_dir(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 4176bdb | 2017-01-18 00:31:28 +0200 | [diff] [blame] | 6486 | struct btrfs_inode *dir, struct btrfs_inode *inode, |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6487 | int for_rename) |
| 6488 | { |
| 6489 | /* |
Chris Mason | af4176b | 2009-03-24 10:24:31 -0400 | [diff] [blame] | 6490 | * when we're logging a file, if it hasn't been renamed |
| 6491 | * or unlinked, and its inode is fully committed on disk, |
| 6492 | * we don't have to worry about walking up the directory chain |
| 6493 | * to log its parents. |
| 6494 | * |
| 6495 | * So, we use the last_unlink_trans field to put this transid |
| 6496 | * into the file. When the file is logged we check it and |
| 6497 | * don't log the parents if the file is fully on disk. |
| 6498 | */ |
Nikolay Borisov | 4176bdb | 2017-01-18 00:31:28 +0200 | [diff] [blame] | 6499 | mutex_lock(&inode->log_mutex); |
| 6500 | inode->last_unlink_trans = trans->transid; |
| 6501 | mutex_unlock(&inode->log_mutex); |
Chris Mason | af4176b | 2009-03-24 10:24:31 -0400 | [diff] [blame] | 6502 | |
| 6503 | /* |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6504 | * if this directory was already logged any new |
| 6505 | * names for this file/dir will get recorded |
| 6506 | */ |
Nikolay Borisov | 4176bdb | 2017-01-18 00:31:28 +0200 | [diff] [blame] | 6507 | if (dir->logged_trans == trans->transid) |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6508 | return; |
| 6509 | |
| 6510 | /* |
| 6511 | * if the inode we're about to unlink was logged, |
| 6512 | * the log will be properly updated for any new names |
| 6513 | */ |
Nikolay Borisov | 4176bdb | 2017-01-18 00:31:28 +0200 | [diff] [blame] | 6514 | if (inode->logged_trans == trans->transid) |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6515 | return; |
| 6516 | |
| 6517 | /* |
| 6518 | * when renaming files across directories, if the directory |
| 6519 | * there we're unlinking from gets fsync'd later on, there's |
| 6520 | * no way to find the destination directory later and fsync it |
| 6521 | * properly. So, we have to be conservative and force commits |
| 6522 | * so the new name gets discovered. |
| 6523 | */ |
| 6524 | if (for_rename) |
| 6525 | goto record; |
| 6526 | |
| 6527 | /* we can safely do the unlink without any special recording */ |
| 6528 | return; |
| 6529 | |
| 6530 | record: |
Nikolay Borisov | 4176bdb | 2017-01-18 00:31:28 +0200 | [diff] [blame] | 6531 | mutex_lock(&dir->log_mutex); |
| 6532 | dir->last_unlink_trans = trans->transid; |
| 6533 | mutex_unlock(&dir->log_mutex); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6534 | } |
| 6535 | |
| 6536 | /* |
Filipe Manana | 1ec9a1a | 2016-02-10 10:42:25 +0000 | [diff] [blame] | 6537 | * Make sure that if someone attempts to fsync the parent directory of a deleted |
| 6538 | * snapshot, it ends up triggering a transaction commit. This is to guarantee |
| 6539 | * that after replaying the log tree of the parent directory's root we will not |
| 6540 | * see the snapshot anymore and at log replay time we will not see any log tree |
| 6541 | * corresponding to the deleted snapshot's root, which could lead to replaying |
| 6542 | * it after replaying the log tree of the parent directory (which would replay |
| 6543 | * the snapshot delete operation). |
Filipe Manana | 2be63d5 | 2016-02-12 11:34:23 +0000 | [diff] [blame] | 6544 | * |
| 6545 | * Must be called before the actual snapshot destroy operation (updates to the |
| 6546 | * parent root and tree of tree roots trees, etc) are done. |
Filipe Manana | 1ec9a1a | 2016-02-10 10:42:25 +0000 | [diff] [blame] | 6547 | */ |
| 6548 | void btrfs_record_snapshot_destroy(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 4366355 | 2017-01-18 00:31:29 +0200 | [diff] [blame] | 6549 | struct btrfs_inode *dir) |
Filipe Manana | 1ec9a1a | 2016-02-10 10:42:25 +0000 | [diff] [blame] | 6550 | { |
Nikolay Borisov | 4366355 | 2017-01-18 00:31:29 +0200 | [diff] [blame] | 6551 | mutex_lock(&dir->log_mutex); |
| 6552 | dir->last_unlink_trans = trans->transid; |
| 6553 | mutex_unlock(&dir->log_mutex); |
Filipe Manana | 1ec9a1a | 2016-02-10 10:42:25 +0000 | [diff] [blame] | 6554 | } |
| 6555 | |
| 6556 | /* |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6557 | * Call this after adding a new name for a file and it will properly |
| 6558 | * update the log to reflect the new name. |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6559 | */ |
Filipe Manana | 75b463d | 2020-08-11 12:43:48 +0100 | [diff] [blame] | 6560 | void btrfs_log_new_name(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 9ca5fbfb | 2017-01-18 00:31:31 +0200 | [diff] [blame] | 6561 | struct btrfs_inode *inode, struct btrfs_inode *old_dir, |
Filipe Manana | 75b463d | 2020-08-11 12:43:48 +0100 | [diff] [blame] | 6562 | struct dentry *parent) |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6563 | { |
Filipe Manana | 75b463d | 2020-08-11 12:43:48 +0100 | [diff] [blame] | 6564 | struct btrfs_log_ctx ctx; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6565 | |
| 6566 | /* |
Chris Mason | af4176b | 2009-03-24 10:24:31 -0400 | [diff] [blame] | 6567 | * this will force the logging code to walk the dentry chain |
| 6568 | * up for the file |
| 6569 | */ |
Filipe Manana | 9a6509c | 2018-02-28 15:55:40 +0000 | [diff] [blame] | 6570 | if (!S_ISDIR(inode->vfs_inode.i_mode)) |
Nikolay Borisov | 9ca5fbfb | 2017-01-18 00:31:31 +0200 | [diff] [blame] | 6571 | inode->last_unlink_trans = trans->transid; |
Chris Mason | af4176b | 2009-03-24 10:24:31 -0400 | [diff] [blame] | 6572 | |
| 6573 | /* |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6574 | * if this inode hasn't been logged and directory we're renaming it |
| 6575 | * from hasn't been logged, we don't need to log it |
| 6576 | */ |
Filipe Manana | ecc64fa | 2021-07-27 11:24:43 +0100 | [diff] [blame] | 6577 | if (!inode_logged(trans, inode) && |
| 6578 | (!old_dir || !inode_logged(trans, old_dir))) |
Filipe Manana | 75b463d | 2020-08-11 12:43:48 +0100 | [diff] [blame] | 6579 | return; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6580 | |
Filipe Manana | 54a40fc | 2021-05-12 16:27:16 +0100 | [diff] [blame] | 6581 | /* |
| 6582 | * If we are doing a rename (old_dir is not NULL) from a directory that |
| 6583 | * was previously logged, make sure the next log attempt on the directory |
| 6584 | * is not skipped and logs the inode again. This is because the log may |
| 6585 | * not currently be authoritative for a range including the old |
| 6586 | * BTRFS_DIR_ITEM_KEY and BTRFS_DIR_INDEX_KEY keys, so we want to make |
| 6587 | * sure after a log replay we do not end up with both the new and old |
| 6588 | * dentries around (in case the inode is a directory we would have a |
| 6589 | * directory with two hard links and 2 inode references for different |
| 6590 | * parents). The next log attempt of old_dir will happen at |
| 6591 | * btrfs_log_all_parents(), called through btrfs_log_inode_parent() |
| 6592 | * below, because we have previously set inode->last_unlink_trans to the |
| 6593 | * current transaction ID, either here or at btrfs_record_unlink_dir() in |
| 6594 | * case inode is a directory. |
| 6595 | */ |
| 6596 | if (old_dir) |
| 6597 | old_dir->logged_trans = 0; |
| 6598 | |
Filipe Manana | 75b463d | 2020-08-11 12:43:48 +0100 | [diff] [blame] | 6599 | btrfs_init_log_ctx(&ctx, &inode->vfs_inode); |
| 6600 | ctx.logging_new_name = true; |
| 6601 | /* |
| 6602 | * We don't care about the return value. If we fail to log the new name |
| 6603 | * then we know the next attempt to sync the log will fallback to a full |
| 6604 | * transaction commit (due to a call to btrfs_set_log_full_commit()), so |
| 6605 | * we don't need to worry about getting a log committed that has an |
| 6606 | * inconsistent state after a rename operation. |
| 6607 | */ |
Filipe Manana | 4877817 | 2020-08-11 12:43:58 +0100 | [diff] [blame] | 6608 | btrfs_log_inode_parent(trans, inode, parent, LOG_INODE_EXISTS, &ctx); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 6609 | } |
| 6610 | |