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> |
Nikolay Borisov | 9678c54 | 2018-01-08 11:45:05 +0200 | [diff] [blame] | 11 | #include "ctree.h" |
Miao Xie | 995946d | 2014-04-02 19:51:06 +0800 | [diff] [blame] | 12 | #include "tree-log.h" |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 13 | #include "disk-io.h" |
| 14 | #include "locking.h" |
| 15 | #include "print-tree.h" |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 16 | #include "backref.h" |
Anand Jain | ebb8765 | 2016-03-10 17:26:59 +0800 | [diff] [blame] | 17 | #include "compression.h" |
Qu Wenruo | df2c95f | 2016-08-15 10:36:52 +0800 | [diff] [blame] | 18 | #include "qgroup.h" |
Liu Bo | 900c998 | 2018-01-25 11:02:56 -0700 | [diff] [blame] | 19 | #include "inode-map.h" |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 20 | |
| 21 | /* magic values for the inode_only field in btrfs_log_inode: |
| 22 | * |
| 23 | * LOG_INODE_ALL means to log everything |
| 24 | * LOG_INODE_EXISTS means to log just enough to recreate the inode |
| 25 | * during log replay |
| 26 | */ |
| 27 | #define LOG_INODE_ALL 0 |
| 28 | #define LOG_INODE_EXISTS 1 |
Liu Bo | 781feef | 2016-11-30 16:20:25 -0800 | [diff] [blame] | 29 | #define LOG_OTHER_INODE 2 |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 30 | |
| 31 | /* |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 32 | * directory trouble cases |
| 33 | * |
| 34 | * 1) on rename or unlink, if the inode being unlinked isn't in the fsync |
| 35 | * log, we must force a full commit before doing an fsync of the directory |
| 36 | * where the unlink was done. |
| 37 | * ---> record transid of last unlink/rename per directory |
| 38 | * |
| 39 | * mkdir foo/some_dir |
| 40 | * normal commit |
| 41 | * rename foo/some_dir foo2/some_dir |
| 42 | * mkdir foo/some_dir |
| 43 | * fsync foo/some_dir/some_file |
| 44 | * |
| 45 | * The fsync above will unlink the original some_dir without recording |
| 46 | * it in its new location (foo2). After a crash, some_dir will be gone |
| 47 | * unless the fsync of some_file forces a full commit |
| 48 | * |
| 49 | * 2) we must log any new names for any file or dir that is in the fsync |
| 50 | * log. ---> check inode while renaming/linking. |
| 51 | * |
| 52 | * 2a) we must log any new names for any file or dir during rename |
| 53 | * when the directory they are being removed from was logged. |
| 54 | * ---> check inode and old parent dir during rename |
| 55 | * |
| 56 | * 2a is actually the more important variant. With the extra logging |
| 57 | * a crash might unlink the old name without recreating the new one |
| 58 | * |
| 59 | * 3) after a crash, we must go through any directories with a link count |
| 60 | * of zero and redo the rm -rf |
| 61 | * |
| 62 | * mkdir f1/foo |
| 63 | * normal commit |
| 64 | * rm -rf f1/foo |
| 65 | * fsync(f1) |
| 66 | * |
| 67 | * The directory f1 was fully removed from the FS, but fsync was never |
| 68 | * called on f1, only its parent dir. After a crash the rm -rf must |
| 69 | * be replayed. This must be able to recurse down the entire |
| 70 | * directory tree. The inode link count fixup code takes care of the |
| 71 | * ugly details. |
| 72 | */ |
| 73 | |
| 74 | /* |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 75 | * stages for the tree walking. The first |
| 76 | * stage (0) is to only pin down the blocks we find |
| 77 | * the second stage (1) is to make sure that all the inodes |
| 78 | * we find in the log are created in the subvolume. |
| 79 | * |
| 80 | * The last stage is to deal with directories and links and extents |
| 81 | * and all the other fun semantics |
| 82 | */ |
| 83 | #define LOG_WALK_PIN_ONLY 0 |
| 84 | #define LOG_WALK_REPLAY_INODES 1 |
Josef Bacik | dd8e721 | 2013-09-11 11:57:23 -0400 | [diff] [blame] | 85 | #define LOG_WALK_REPLAY_DIR_INDEX 2 |
| 86 | #define LOG_WALK_REPLAY_ALL 3 |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 87 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 88 | static int btrfs_log_inode(struct btrfs_trans_handle *trans, |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 89 | struct btrfs_root *root, struct btrfs_inode *inode, |
Filipe Manana | 49dae1b | 2014-09-06 22:34:39 +0100 | [diff] [blame] | 90 | int inode_only, |
| 91 | const loff_t start, |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 92 | const loff_t end, |
| 93 | struct btrfs_log_ctx *ctx); |
Yan Zheng | ec051c0 | 2009-01-05 15:43:42 -0500 | [diff] [blame] | 94 | static int link_to_fixup_dir(struct btrfs_trans_handle *trans, |
| 95 | struct btrfs_root *root, |
| 96 | struct btrfs_path *path, u64 objectid); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 97 | static noinline int replay_dir_deletes(struct btrfs_trans_handle *trans, |
| 98 | struct btrfs_root *root, |
| 99 | struct btrfs_root *log, |
| 100 | struct btrfs_path *path, |
| 101 | u64 dirid, int del_all); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 102 | |
| 103 | /* |
| 104 | * tree logging is a special write ahead log used to make sure that |
| 105 | * fsyncs and O_SYNCs can happen without doing full tree commits. |
| 106 | * |
| 107 | * Full tree commits are expensive because they require commonly |
| 108 | * modified blocks to be recowed, creating many dirty pages in the |
| 109 | * extent tree an 4x-6x higher write load than ext3. |
| 110 | * |
| 111 | * Instead of doing a tree commit on every fsync, we use the |
| 112 | * key ranges and transaction ids to find items for a given file or directory |
| 113 | * that have changed in this transaction. Those items are copied into |
| 114 | * a special tree (one per subvolume root), that tree is written to disk |
| 115 | * and then the fsync is considered complete. |
| 116 | * |
| 117 | * After a crash, items are copied out of the log-tree back into the |
| 118 | * subvolume tree. Any file data extents found are recorded in the extent |
| 119 | * allocation tree, and the log-tree freed. |
| 120 | * |
| 121 | * The log tree is read three times, once to pin down all the extents it is |
| 122 | * using in ram and once, once to create all the inodes logged in the tree |
| 123 | * and once to do all the other items. |
| 124 | */ |
| 125 | |
| 126 | /* |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 127 | * start a sub transaction and setup the log tree |
| 128 | * this increments the log tree writer count to make the people |
| 129 | * syncing the tree wait for us to finish |
| 130 | */ |
| 131 | static int start_log_trans(struct btrfs_trans_handle *trans, |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 132 | struct btrfs_root *root, |
| 133 | struct btrfs_log_ctx *ctx) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 134 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 135 | struct btrfs_fs_info *fs_info = root->fs_info; |
Zhaolei | 34eb2a5 | 2015-08-17 18:44:45 +0800 | [diff] [blame] | 136 | int ret = 0; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 137 | |
| 138 | mutex_lock(&root->log_mutex); |
Zhaolei | 34eb2a5 | 2015-08-17 18:44:45 +0800 | [diff] [blame] | 139 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 140 | if (root->log_root) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 141 | if (btrfs_need_log_full_commit(fs_info, trans)) { |
Miao Xie | 50471a3 | 2014-02-20 18:08:57 +0800 | [diff] [blame] | 142 | ret = -EAGAIN; |
| 143 | goto out; |
| 144 | } |
Zhaolei | 34eb2a5 | 2015-08-17 18:44:45 +0800 | [diff] [blame] | 145 | |
Josef Bacik | ff782e0 | 2009-10-08 15:30:04 -0400 | [diff] [blame] | 146 | if (!root->log_start_pid) { |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 147 | clear_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state); |
Zhaolei | 34eb2a5 | 2015-08-17 18:44:45 +0800 | [diff] [blame] | 148 | root->log_start_pid = current->pid; |
Josef Bacik | ff782e0 | 2009-10-08 15:30:04 -0400 | [diff] [blame] | 149 | } else if (root->log_start_pid != current->pid) { |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 150 | set_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state); |
Josef Bacik | ff782e0 | 2009-10-08 15:30:04 -0400 | [diff] [blame] | 151 | } |
Zhaolei | 34eb2a5 | 2015-08-17 18:44:45 +0800 | [diff] [blame] | 152 | } else { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 153 | mutex_lock(&fs_info->tree_log_mutex); |
| 154 | if (!fs_info->log_root_tree) |
| 155 | ret = btrfs_init_log_root_tree(trans, fs_info); |
| 156 | mutex_unlock(&fs_info->tree_log_mutex); |
Zhaolei | 34eb2a5 | 2015-08-17 18:44:45 +0800 | [diff] [blame] | 157 | if (ret) |
| 158 | goto out; |
Josef Bacik | ff782e0 | 2009-10-08 15:30:04 -0400 | [diff] [blame] | 159 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 160 | ret = btrfs_add_log_tree(trans, root); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 161 | if (ret) |
Miao Xie | e87ac13 | 2014-02-20 18:08:53 +0800 | [diff] [blame] | 162 | goto out; |
Zhaolei | 34eb2a5 | 2015-08-17 18:44:45 +0800 | [diff] [blame] | 163 | |
| 164 | clear_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state); |
| 165 | root->log_start_pid = current->pid; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 166 | } |
Zhaolei | 34eb2a5 | 2015-08-17 18:44:45 +0800 | [diff] [blame] | 167 | |
Miao Xie | 2ecb792 | 2012-09-06 04:04:27 -0600 | [diff] [blame] | 168 | atomic_inc(&root->log_batch); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 169 | atomic_inc(&root->log_writers); |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 170 | if (ctx) { |
Zhaolei | 34eb2a5 | 2015-08-17 18:44:45 +0800 | [diff] [blame] | 171 | int index = root->log_transid % 2; |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 172 | list_add_tail(&ctx->list, &root->log_ctxs[index]); |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 173 | ctx->log_transid = root->log_transid; |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 174 | } |
Zhaolei | 34eb2a5 | 2015-08-17 18:44:45 +0800 | [diff] [blame] | 175 | |
Miao Xie | e87ac13 | 2014-02-20 18:08:53 +0800 | [diff] [blame] | 176 | out: |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 177 | mutex_unlock(&root->log_mutex); |
Miao Xie | e87ac13 | 2014-02-20 18:08:53 +0800 | [diff] [blame] | 178 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 179 | } |
| 180 | |
| 181 | /* |
| 182 | * returns 0 if there was a log transaction running and we were able |
| 183 | * to join, or returns -ENOENT if there were not transactions |
| 184 | * in progress |
| 185 | */ |
| 186 | static int join_running_log_trans(struct btrfs_root *root) |
| 187 | { |
| 188 | int ret = -ENOENT; |
| 189 | |
| 190 | smp_mb(); |
| 191 | if (!root->log_root) |
| 192 | return -ENOENT; |
| 193 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 194 | mutex_lock(&root->log_mutex); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 195 | if (root->log_root) { |
| 196 | ret = 0; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 197 | atomic_inc(&root->log_writers); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 198 | } |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 199 | mutex_unlock(&root->log_mutex); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 200 | return ret; |
| 201 | } |
| 202 | |
| 203 | /* |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 204 | * This either makes the current running log transaction wait |
| 205 | * until you call btrfs_end_log_trans() or it makes any future |
| 206 | * log transactions wait until you call btrfs_end_log_trans() |
| 207 | */ |
| 208 | int btrfs_pin_log_trans(struct btrfs_root *root) |
| 209 | { |
| 210 | int ret = -ENOENT; |
| 211 | |
| 212 | mutex_lock(&root->log_mutex); |
| 213 | atomic_inc(&root->log_writers); |
| 214 | mutex_unlock(&root->log_mutex); |
| 215 | return ret; |
| 216 | } |
| 217 | |
| 218 | /* |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 219 | * indicate we're done making changes to the log tree |
| 220 | * and wake up anyone waiting to do a sync |
| 221 | */ |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 222 | void btrfs_end_log_trans(struct btrfs_root *root) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 223 | { |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 224 | if (atomic_dec_and_test(&root->log_writers)) { |
David Sterba | 093258e | 2018-02-26 16:15:17 +0100 | [diff] [blame] | 225 | /* atomic_dec_and_test implies a barrier */ |
| 226 | cond_wake_up_nomb(&root->log_writer_wait); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 227 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 228 | } |
| 229 | |
| 230 | |
| 231 | /* |
| 232 | * the walk control struct is used to pass state down the chain when |
| 233 | * processing the log tree. The stage field tells us which part |
| 234 | * of the log tree processing we are currently doing. The others |
| 235 | * are state fields used for that specific part |
| 236 | */ |
| 237 | struct walk_control { |
| 238 | /* should we free the extent on disk when done? This is used |
| 239 | * at transaction commit time while freeing a log tree |
| 240 | */ |
| 241 | int free; |
| 242 | |
| 243 | /* should we write out the extent buffer? This is used |
| 244 | * while flushing the log tree to disk during a sync |
| 245 | */ |
| 246 | int write; |
| 247 | |
| 248 | /* should we wait for the extent buffer io to finish? Also used |
| 249 | * while flushing the log tree to disk for a sync |
| 250 | */ |
| 251 | int wait; |
| 252 | |
| 253 | /* pin only walk, we record which extents on disk belong to the |
| 254 | * log trees |
| 255 | */ |
| 256 | int pin; |
| 257 | |
| 258 | /* what stage of the replay code we're currently in */ |
| 259 | int stage; |
| 260 | |
| 261 | /* the root we are currently replaying */ |
| 262 | struct btrfs_root *replay_dest; |
| 263 | |
| 264 | /* the trans handle for the current replay */ |
| 265 | struct btrfs_trans_handle *trans; |
| 266 | |
| 267 | /* the function that gets used to process blocks we find in the |
| 268 | * tree. Note the extent_buffer might not be up to date when it is |
| 269 | * passed in, and it must be checked or read if you need the data |
| 270 | * inside it |
| 271 | */ |
| 272 | int (*process_func)(struct btrfs_root *log, struct extent_buffer *eb, |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 273 | struct walk_control *wc, u64 gen, int level); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 274 | }; |
| 275 | |
| 276 | /* |
| 277 | * process_func used to pin down extents, write them or wait on them |
| 278 | */ |
| 279 | static int process_one_buffer(struct btrfs_root *log, |
| 280 | struct extent_buffer *eb, |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 281 | struct walk_control *wc, u64 gen, int level) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 282 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 283 | struct btrfs_fs_info *fs_info = log->fs_info; |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 284 | int ret = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 285 | |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 286 | /* |
| 287 | * If this fs is mixed then we need to be able to process the leaves to |
| 288 | * pin down any logged extents, so we have to read the block. |
| 289 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 290 | if (btrfs_fs_incompat(fs_info, MIXED_GROUPS)) { |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 291 | ret = btrfs_read_buffer(eb, gen, level, NULL); |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 292 | if (ret) |
| 293 | return ret; |
| 294 | } |
| 295 | |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 296 | if (wc->pin) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 297 | ret = btrfs_pin_extent_for_log_replay(fs_info, eb->start, |
| 298 | eb->len); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 299 | |
| 300 | if (!ret && btrfs_buffer_uptodate(eb, gen, 0)) { |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 301 | if (wc->pin && btrfs_header_level(eb) == 0) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 302 | ret = btrfs_exclude_logged_extents(fs_info, eb); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 303 | if (wc->write) |
| 304 | btrfs_write_tree_block(eb); |
| 305 | if (wc->wait) |
| 306 | btrfs_wait_tree_block_writeback(eb); |
| 307 | } |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 308 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 309 | } |
| 310 | |
| 311 | /* |
| 312 | * Item overwrite used by replay and tree logging. eb, slot and key all refer |
| 313 | * to the src data we are copying out. |
| 314 | * |
| 315 | * root is the tree we are copying into, and path is a scratch |
| 316 | * path for use in this function (it should be released on entry and |
| 317 | * will be released on exit). |
| 318 | * |
| 319 | * If the key is already in the destination tree the existing item is |
| 320 | * overwritten. If the existing item isn't big enough, it is extended. |
| 321 | * If it is too large, it is truncated. |
| 322 | * |
| 323 | * If the key isn't in the destination yet, a new item is inserted. |
| 324 | */ |
| 325 | static noinline int overwrite_item(struct btrfs_trans_handle *trans, |
| 326 | struct btrfs_root *root, |
| 327 | struct btrfs_path *path, |
| 328 | struct extent_buffer *eb, int slot, |
| 329 | struct btrfs_key *key) |
| 330 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 331 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 332 | int ret; |
| 333 | u32 item_size; |
| 334 | u64 saved_i_size = 0; |
| 335 | int save_old_i_size = 0; |
| 336 | unsigned long src_ptr; |
| 337 | unsigned long dst_ptr; |
| 338 | int overwrite_root = 0; |
Josef Bacik | 4bc4bee | 2013-04-05 20:50:09 +0000 | [diff] [blame] | 339 | bool inode_item = key->type == BTRFS_INODE_ITEM_KEY; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 340 | |
| 341 | if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) |
| 342 | overwrite_root = 1; |
| 343 | |
| 344 | item_size = btrfs_item_size_nr(eb, slot); |
| 345 | src_ptr = btrfs_item_ptr_offset(eb, slot); |
| 346 | |
| 347 | /* look for the key in the destination tree */ |
| 348 | ret = btrfs_search_slot(NULL, root, key, path, 0, 0); |
Josef Bacik | 4bc4bee | 2013-04-05 20:50:09 +0000 | [diff] [blame] | 349 | if (ret < 0) |
| 350 | return ret; |
| 351 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 352 | if (ret == 0) { |
| 353 | char *src_copy; |
| 354 | char *dst_copy; |
| 355 | u32 dst_size = btrfs_item_size_nr(path->nodes[0], |
| 356 | path->slots[0]); |
| 357 | if (dst_size != item_size) |
| 358 | goto insert; |
| 359 | |
| 360 | if (item_size == 0) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 361 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 362 | return 0; |
| 363 | } |
| 364 | dst_copy = kmalloc(item_size, GFP_NOFS); |
| 365 | src_copy = kmalloc(item_size, GFP_NOFS); |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 366 | if (!dst_copy || !src_copy) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 367 | btrfs_release_path(path); |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 368 | kfree(dst_copy); |
| 369 | kfree(src_copy); |
| 370 | return -ENOMEM; |
| 371 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 372 | |
| 373 | read_extent_buffer(eb, src_copy, src_ptr, item_size); |
| 374 | |
| 375 | dst_ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]); |
| 376 | read_extent_buffer(path->nodes[0], dst_copy, dst_ptr, |
| 377 | item_size); |
| 378 | ret = memcmp(dst_copy, src_copy, item_size); |
| 379 | |
| 380 | kfree(dst_copy); |
| 381 | kfree(src_copy); |
| 382 | /* |
| 383 | * they have the same contents, just return, this saves |
| 384 | * us from cowing blocks in the destination tree and doing |
| 385 | * extra writes that may not have been done by a previous |
| 386 | * sync |
| 387 | */ |
| 388 | if (ret == 0) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 389 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 390 | return 0; |
| 391 | } |
| 392 | |
Josef Bacik | 4bc4bee | 2013-04-05 20:50:09 +0000 | [diff] [blame] | 393 | /* |
| 394 | * We need to load the old nbytes into the inode so when we |
| 395 | * replay the extents we've logged we get the right nbytes. |
| 396 | */ |
| 397 | if (inode_item) { |
| 398 | struct btrfs_inode_item *item; |
| 399 | u64 nbytes; |
Josef Bacik | d555438 | 2013-09-11 14:17:00 -0400 | [diff] [blame] | 400 | u32 mode; |
Josef Bacik | 4bc4bee | 2013-04-05 20:50:09 +0000 | [diff] [blame] | 401 | |
| 402 | item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 403 | struct btrfs_inode_item); |
| 404 | nbytes = btrfs_inode_nbytes(path->nodes[0], item); |
| 405 | item = btrfs_item_ptr(eb, slot, |
| 406 | struct btrfs_inode_item); |
| 407 | btrfs_set_inode_nbytes(eb, item, nbytes); |
Josef Bacik | d555438 | 2013-09-11 14:17:00 -0400 | [diff] [blame] | 408 | |
| 409 | /* |
| 410 | * If this is a directory we need to reset the i_size to |
| 411 | * 0 so that we can set it up properly when replaying |
| 412 | * the rest of the items in this log. |
| 413 | */ |
| 414 | mode = btrfs_inode_mode(eb, item); |
| 415 | if (S_ISDIR(mode)) |
| 416 | btrfs_set_inode_size(eb, item, 0); |
Josef Bacik | 4bc4bee | 2013-04-05 20:50:09 +0000 | [diff] [blame] | 417 | } |
| 418 | } else if (inode_item) { |
| 419 | struct btrfs_inode_item *item; |
Josef Bacik | d555438 | 2013-09-11 14:17:00 -0400 | [diff] [blame] | 420 | u32 mode; |
Josef Bacik | 4bc4bee | 2013-04-05 20:50:09 +0000 | [diff] [blame] | 421 | |
| 422 | /* |
| 423 | * New inode, set nbytes to 0 so that the nbytes comes out |
| 424 | * properly when we replay the extents. |
| 425 | */ |
| 426 | item = btrfs_item_ptr(eb, slot, struct btrfs_inode_item); |
| 427 | btrfs_set_inode_nbytes(eb, item, 0); |
Josef Bacik | d555438 | 2013-09-11 14:17:00 -0400 | [diff] [blame] | 428 | |
| 429 | /* |
| 430 | * If this is a directory we need to reset the i_size to 0 so |
| 431 | * that we can set it up properly when replaying the rest of |
| 432 | * the items in this log. |
| 433 | */ |
| 434 | mode = btrfs_inode_mode(eb, item); |
| 435 | if (S_ISDIR(mode)) |
| 436 | btrfs_set_inode_size(eb, item, 0); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 437 | } |
| 438 | insert: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 439 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 440 | /* try to insert the key into the destination tree */ |
Filipe Manana | df8d116 | 2015-01-14 01:52:25 +0000 | [diff] [blame] | 441 | path->skip_release_on_error = 1; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 442 | ret = btrfs_insert_empty_item(trans, root, path, |
| 443 | key, item_size); |
Filipe Manana | df8d116 | 2015-01-14 01:52:25 +0000 | [diff] [blame] | 444 | path->skip_release_on_error = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 445 | |
| 446 | /* make sure any existing item is the correct size */ |
Filipe Manana | df8d116 | 2015-01-14 01:52:25 +0000 | [diff] [blame] | 447 | if (ret == -EEXIST || ret == -EOVERFLOW) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 448 | u32 found_size; |
| 449 | found_size = btrfs_item_size_nr(path->nodes[0], |
| 450 | path->slots[0]); |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 451 | if (found_size > item_size) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 452 | btrfs_truncate_item(fs_info, path, item_size, 1); |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 453 | else if (found_size < item_size) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 454 | btrfs_extend_item(fs_info, path, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 455 | item_size - found_size); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 456 | } else if (ret) { |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 457 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 458 | } |
| 459 | dst_ptr = btrfs_item_ptr_offset(path->nodes[0], |
| 460 | path->slots[0]); |
| 461 | |
| 462 | /* don't overwrite an existing inode if the generation number |
| 463 | * was logged as zero. This is done when the tree logging code |
| 464 | * is just logging an inode to make sure it exists after recovery. |
| 465 | * |
| 466 | * Also, don't overwrite i_size on directories during replay. |
| 467 | * log replay inserts and removes directory items based on the |
| 468 | * state of the tree found in the subvolume, and i_size is modified |
| 469 | * as it goes |
| 470 | */ |
| 471 | if (key->type == BTRFS_INODE_ITEM_KEY && ret == -EEXIST) { |
| 472 | struct btrfs_inode_item *src_item; |
| 473 | struct btrfs_inode_item *dst_item; |
| 474 | |
| 475 | src_item = (struct btrfs_inode_item *)src_ptr; |
| 476 | dst_item = (struct btrfs_inode_item *)dst_ptr; |
| 477 | |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 478 | if (btrfs_inode_generation(eb, src_item) == 0) { |
| 479 | struct extent_buffer *dst_eb = path->nodes[0]; |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 480 | const u64 ino_size = btrfs_inode_size(eb, src_item); |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 481 | |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 482 | /* |
| 483 | * For regular files an ino_size == 0 is used only when |
| 484 | * logging that an inode exists, as part of a directory |
| 485 | * fsync, and the inode wasn't fsynced before. In this |
| 486 | * case don't set the size of the inode in the fs/subvol |
| 487 | * tree, otherwise we would be throwing valid data away. |
| 488 | */ |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 489 | if (S_ISREG(btrfs_inode_mode(eb, src_item)) && |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 490 | S_ISREG(btrfs_inode_mode(dst_eb, dst_item)) && |
| 491 | ino_size != 0) { |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 492 | struct btrfs_map_token token; |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 493 | |
| 494 | btrfs_init_map_token(&token); |
| 495 | btrfs_set_token_inode_size(dst_eb, dst_item, |
| 496 | ino_size, &token); |
| 497 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 498 | goto no_copy; |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 499 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 500 | |
| 501 | if (overwrite_root && |
| 502 | S_ISDIR(btrfs_inode_mode(eb, src_item)) && |
| 503 | S_ISDIR(btrfs_inode_mode(path->nodes[0], dst_item))) { |
| 504 | save_old_i_size = 1; |
| 505 | saved_i_size = btrfs_inode_size(path->nodes[0], |
| 506 | dst_item); |
| 507 | } |
| 508 | } |
| 509 | |
| 510 | copy_extent_buffer(path->nodes[0], eb, dst_ptr, |
| 511 | src_ptr, item_size); |
| 512 | |
| 513 | if (save_old_i_size) { |
| 514 | struct btrfs_inode_item *dst_item; |
| 515 | dst_item = (struct btrfs_inode_item *)dst_ptr; |
| 516 | btrfs_set_inode_size(path->nodes[0], dst_item, saved_i_size); |
| 517 | } |
| 518 | |
| 519 | /* make sure the generation is filled in */ |
| 520 | if (key->type == BTRFS_INODE_ITEM_KEY) { |
| 521 | struct btrfs_inode_item *dst_item; |
| 522 | dst_item = (struct btrfs_inode_item *)dst_ptr; |
| 523 | if (btrfs_inode_generation(path->nodes[0], dst_item) == 0) { |
| 524 | btrfs_set_inode_generation(path->nodes[0], dst_item, |
| 525 | trans->transid); |
| 526 | } |
| 527 | } |
| 528 | no_copy: |
| 529 | btrfs_mark_buffer_dirty(path->nodes[0]); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 530 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 531 | return 0; |
| 532 | } |
| 533 | |
| 534 | /* |
| 535 | * simple helper to read an inode off the disk from a given root |
| 536 | * This can only be called for subvolume roots and not for the log |
| 537 | */ |
| 538 | static noinline struct inode *read_one_inode(struct btrfs_root *root, |
| 539 | u64 objectid) |
| 540 | { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 541 | struct btrfs_key key; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 542 | struct inode *inode; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 543 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 544 | key.objectid = objectid; |
| 545 | key.type = BTRFS_INODE_ITEM_KEY; |
| 546 | key.offset = 0; |
Josef Bacik | 73f7341 | 2009-12-04 17:38:27 +0000 | [diff] [blame] | 547 | inode = btrfs_iget(root->fs_info->sb, &key, root, NULL); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 548 | if (IS_ERR(inode)) { |
| 549 | inode = NULL; |
| 550 | } else if (is_bad_inode(inode)) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 551 | iput(inode); |
| 552 | inode = NULL; |
| 553 | } |
| 554 | return inode; |
| 555 | } |
| 556 | |
| 557 | /* replays a single extent in 'eb' at 'slot' with 'key' into the |
| 558 | * subvolume 'root'. path is released on entry and should be released |
| 559 | * on exit. |
| 560 | * |
| 561 | * extents in the log tree have not been allocated out of the extent |
| 562 | * tree yet. So, this completes the allocation, taking a reference |
| 563 | * as required if the extent already exists or creating a new extent |
| 564 | * if it isn't in the extent allocation tree yet. |
| 565 | * |
| 566 | * The extent is inserted into the file, dropping any existing extents |
| 567 | * from the file that overlap the new one. |
| 568 | */ |
| 569 | static noinline int replay_one_extent(struct btrfs_trans_handle *trans, |
| 570 | struct btrfs_root *root, |
| 571 | struct btrfs_path *path, |
| 572 | struct extent_buffer *eb, int slot, |
| 573 | struct btrfs_key *key) |
| 574 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 575 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 576 | int found_type; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 577 | u64 extent_end; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 578 | u64 start = key->offset; |
Josef Bacik | 4bc4bee | 2013-04-05 20:50:09 +0000 | [diff] [blame] | 579 | u64 nbytes = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 580 | struct btrfs_file_extent_item *item; |
| 581 | struct inode *inode = NULL; |
| 582 | unsigned long size; |
| 583 | int ret = 0; |
| 584 | |
| 585 | item = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item); |
| 586 | found_type = btrfs_file_extent_type(eb, item); |
| 587 | |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 588 | if (found_type == BTRFS_FILE_EXTENT_REG || |
Josef Bacik | 4bc4bee | 2013-04-05 20:50:09 +0000 | [diff] [blame] | 589 | found_type == BTRFS_FILE_EXTENT_PREALLOC) { |
| 590 | nbytes = btrfs_file_extent_num_bytes(eb, item); |
| 591 | extent_end = start + nbytes; |
| 592 | |
| 593 | /* |
| 594 | * We don't add to the inodes nbytes if we are prealloc or a |
| 595 | * hole. |
| 596 | */ |
| 597 | if (btrfs_file_extent_disk_bytenr(eb, item) == 0) |
| 598 | nbytes = 0; |
| 599 | } else if (found_type == BTRFS_FILE_EXTENT_INLINE) { |
Chris Mason | 514ac8a | 2014-01-03 21:07:00 -0800 | [diff] [blame] | 600 | size = btrfs_file_extent_inline_len(eb, slot, item); |
Josef Bacik | 4bc4bee | 2013-04-05 20:50:09 +0000 | [diff] [blame] | 601 | nbytes = btrfs_file_extent_ram_bytes(eb, item); |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 602 | extent_end = ALIGN(start + size, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 603 | fs_info->sectorsize); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 604 | } else { |
| 605 | ret = 0; |
| 606 | goto out; |
| 607 | } |
| 608 | |
| 609 | inode = read_one_inode(root, key->objectid); |
| 610 | if (!inode) { |
| 611 | ret = -EIO; |
| 612 | goto out; |
| 613 | } |
| 614 | |
| 615 | /* |
| 616 | * first check to see if we already have this extent in the |
| 617 | * file. This must be done before the btrfs_drop_extents run |
| 618 | * so we don't try to drop this extent. |
| 619 | */ |
David Sterba | f85b737 | 2017-01-20 14:54:07 +0100 | [diff] [blame] | 620 | ret = btrfs_lookup_file_extent(trans, root, path, |
| 621 | btrfs_ino(BTRFS_I(inode)), start, 0); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 622 | |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 623 | if (ret == 0 && |
| 624 | (found_type == BTRFS_FILE_EXTENT_REG || |
| 625 | found_type == BTRFS_FILE_EXTENT_PREALLOC)) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 626 | struct btrfs_file_extent_item cmp1; |
| 627 | struct btrfs_file_extent_item cmp2; |
| 628 | struct btrfs_file_extent_item *existing; |
| 629 | struct extent_buffer *leaf; |
| 630 | |
| 631 | leaf = path->nodes[0]; |
| 632 | existing = btrfs_item_ptr(leaf, path->slots[0], |
| 633 | struct btrfs_file_extent_item); |
| 634 | |
| 635 | read_extent_buffer(eb, &cmp1, (unsigned long)item, |
| 636 | sizeof(cmp1)); |
| 637 | read_extent_buffer(leaf, &cmp2, (unsigned long)existing, |
| 638 | sizeof(cmp2)); |
| 639 | |
| 640 | /* |
| 641 | * we already have a pointer to this exact extent, |
| 642 | * we don't have to do anything |
| 643 | */ |
| 644 | if (memcmp(&cmp1, &cmp2, sizeof(cmp1)) == 0) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 645 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 646 | goto out; |
| 647 | } |
| 648 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 649 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 650 | |
| 651 | /* drop any overlapping extents */ |
Josef Bacik | 2671485 | 2012-08-29 12:24:27 -0400 | [diff] [blame] | 652 | ret = btrfs_drop_extents(trans, root, inode, start, extent_end, 1); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 653 | if (ret) |
| 654 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 655 | |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 656 | if (found_type == BTRFS_FILE_EXTENT_REG || |
| 657 | found_type == BTRFS_FILE_EXTENT_PREALLOC) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 658 | u64 offset; |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 659 | unsigned long dest_offset; |
| 660 | struct btrfs_key ins; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 661 | |
Filipe Manana | 3168021c | 2017-02-01 14:58:02 +0000 | [diff] [blame] | 662 | if (btrfs_file_extent_disk_bytenr(eb, item) == 0 && |
| 663 | btrfs_fs_incompat(fs_info, NO_HOLES)) |
| 664 | goto update_inode; |
| 665 | |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 666 | ret = btrfs_insert_empty_item(trans, root, path, key, |
| 667 | sizeof(*item)); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 668 | if (ret) |
| 669 | goto out; |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 670 | dest_offset = btrfs_item_ptr_offset(path->nodes[0], |
| 671 | path->slots[0]); |
| 672 | copy_extent_buffer(path->nodes[0], eb, dest_offset, |
| 673 | (unsigned long)item, sizeof(*item)); |
| 674 | |
| 675 | ins.objectid = btrfs_file_extent_disk_bytenr(eb, item); |
| 676 | ins.offset = btrfs_file_extent_disk_num_bytes(eb, item); |
| 677 | ins.type = BTRFS_EXTENT_ITEM_KEY; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 678 | offset = key->offset - btrfs_file_extent_offset(eb, item); |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 679 | |
Qu Wenruo | df2c95f | 2016-08-15 10:36:52 +0800 | [diff] [blame] | 680 | /* |
| 681 | * Manually record dirty extent, as here we did a shallow |
| 682 | * file extent item copy and skip normal backref update, |
| 683 | * but modifying extent tree all by ourselves. |
| 684 | * So need to manually record dirty extent for qgroup, |
| 685 | * as the owner of the file extent changed from log tree |
| 686 | * (doesn't affect qgroup) to fs/file tree(affects qgroup) |
| 687 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 688 | ret = btrfs_qgroup_trace_extent(trans, fs_info, |
Qu Wenruo | df2c95f | 2016-08-15 10:36:52 +0800 | [diff] [blame] | 689 | btrfs_file_extent_disk_bytenr(eb, item), |
| 690 | btrfs_file_extent_disk_num_bytes(eb, item), |
| 691 | GFP_NOFS); |
| 692 | if (ret < 0) |
| 693 | goto out; |
| 694 | |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 695 | if (ins.objectid > 0) { |
| 696 | u64 csum_start; |
| 697 | u64 csum_end; |
| 698 | LIST_HEAD(ordered_sums); |
| 699 | /* |
| 700 | * is this extent already allocated in the extent |
| 701 | * allocation tree? If so, just add a reference |
| 702 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 703 | ret = btrfs_lookup_data_extent(fs_info, ins.objectid, |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 704 | ins.offset); |
| 705 | if (ret == 0) { |
Josef Bacik | 84f7d8e | 2017-09-29 15:43:49 -0400 | [diff] [blame] | 706 | ret = btrfs_inc_extent_ref(trans, root, |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 707 | ins.objectid, ins.offset, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 708 | 0, root->root_key.objectid, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 709 | key->objectid, offset); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 710 | if (ret) |
| 711 | goto out; |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 712 | } else { |
| 713 | /* |
| 714 | * insert the extent pointer in the extent |
| 715 | * allocation tree |
| 716 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 717 | ret = btrfs_alloc_logged_file_extent(trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 718 | fs_info, |
| 719 | root->root_key.objectid, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 720 | key->objectid, offset, &ins); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 721 | if (ret) |
| 722 | goto out; |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 723 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 724 | btrfs_release_path(path); |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 725 | |
| 726 | if (btrfs_file_extent_compression(eb, item)) { |
| 727 | csum_start = ins.objectid; |
| 728 | csum_end = csum_start + ins.offset; |
| 729 | } else { |
| 730 | csum_start = ins.objectid + |
| 731 | btrfs_file_extent_offset(eb, item); |
| 732 | csum_end = csum_start + |
| 733 | btrfs_file_extent_num_bytes(eb, item); |
| 734 | } |
| 735 | |
| 736 | ret = btrfs_lookup_csums_range(root->log_root, |
| 737 | csum_start, csum_end - 1, |
Arne Jansen | a2de733 | 2011-03-08 14:14:00 +0100 | [diff] [blame] | 738 | &ordered_sums, 0); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 739 | if (ret) |
| 740 | goto out; |
Filipe Manana | b84b839 | 2015-08-19 11:09:40 +0100 | [diff] [blame] | 741 | /* |
| 742 | * Now delete all existing cums in the csum root that |
| 743 | * cover our range. We do this because we can have an |
| 744 | * extent that is completely referenced by one file |
| 745 | * extent item and partially referenced by another |
| 746 | * file extent item (like after using the clone or |
| 747 | * extent_same ioctls). In this case if we end up doing |
| 748 | * the replay of the one that partially references the |
| 749 | * extent first, and we do not do the csum deletion |
| 750 | * below, we can get 2 csum items in the csum tree that |
| 751 | * overlap each other. For example, imagine our log has |
| 752 | * the two following file extent items: |
| 753 | * |
| 754 | * key (257 EXTENT_DATA 409600) |
| 755 | * extent data disk byte 12845056 nr 102400 |
| 756 | * extent data offset 20480 nr 20480 ram 102400 |
| 757 | * |
| 758 | * key (257 EXTENT_DATA 819200) |
| 759 | * extent data disk byte 12845056 nr 102400 |
| 760 | * extent data offset 0 nr 102400 ram 102400 |
| 761 | * |
| 762 | * Where the second one fully references the 100K extent |
| 763 | * that starts at disk byte 12845056, and the log tree |
| 764 | * has a single csum item that covers the entire range |
| 765 | * of the extent: |
| 766 | * |
| 767 | * key (EXTENT_CSUM EXTENT_CSUM 12845056) itemsize 100 |
| 768 | * |
| 769 | * After the first file extent item is replayed, the |
| 770 | * csum tree gets the following csum item: |
| 771 | * |
| 772 | * key (EXTENT_CSUM EXTENT_CSUM 12865536) itemsize 20 |
| 773 | * |
| 774 | * Which covers the 20K sub-range starting at offset 20K |
| 775 | * of our extent. Now when we replay the second file |
| 776 | * extent item, if we do not delete existing csum items |
| 777 | * that cover any of its blocks, we end up getting two |
| 778 | * csum items in our csum tree that overlap each other: |
| 779 | * |
| 780 | * key (EXTENT_CSUM EXTENT_CSUM 12845056) itemsize 100 |
| 781 | * key (EXTENT_CSUM EXTENT_CSUM 12865536) itemsize 20 |
| 782 | * |
| 783 | * Which is a problem, because after this anyone trying |
| 784 | * to lookup up for the checksum of any block of our |
| 785 | * extent starting at an offset of 40K or higher, will |
| 786 | * end up looking at the second csum item only, which |
| 787 | * does not contain the checksum for any block starting |
| 788 | * at offset 40K or higher of our extent. |
| 789 | */ |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 790 | while (!list_empty(&ordered_sums)) { |
| 791 | struct btrfs_ordered_sum *sums; |
| 792 | sums = list_entry(ordered_sums.next, |
| 793 | struct btrfs_ordered_sum, |
| 794 | list); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 795 | if (!ret) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 796 | ret = btrfs_del_csums(trans, fs_info, |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 797 | sums->bytenr, |
| 798 | sums->len); |
Filipe Manana | b84b839 | 2015-08-19 11:09:40 +0100 | [diff] [blame] | 799 | if (!ret) |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 800 | ret = btrfs_csum_file_blocks(trans, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 801 | fs_info->csum_root, sums); |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 802 | list_del(&sums->list); |
| 803 | kfree(sums); |
| 804 | } |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 805 | if (ret) |
| 806 | goto out; |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 807 | } else { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 808 | btrfs_release_path(path); |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 809 | } |
| 810 | } else if (found_type == BTRFS_FILE_EXTENT_INLINE) { |
| 811 | /* inline extents are easy, we just overwrite them */ |
| 812 | ret = overwrite_item(trans, root, path, eb, slot, key); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 813 | if (ret) |
| 814 | goto out; |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 815 | } |
| 816 | |
Josef Bacik | 4bc4bee | 2013-04-05 20:50:09 +0000 | [diff] [blame] | 817 | inode_add_bytes(inode, nbytes); |
Filipe Manana | 3168021c | 2017-02-01 14:58:02 +0000 | [diff] [blame] | 818 | update_inode: |
Tsutomu Itoh | b995929 | 2012-06-25 21:25:22 -0600 | [diff] [blame] | 819 | ret = btrfs_update_inode(trans, root, inode); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 820 | out: |
| 821 | if (inode) |
| 822 | iput(inode); |
| 823 | return ret; |
| 824 | } |
| 825 | |
| 826 | /* |
| 827 | * when cleaning up conflicts between the directory names in the |
| 828 | * subvolume, directory names in the log and directory names in the |
| 829 | * inode back references, we may have to unlink inodes from directories. |
| 830 | * |
| 831 | * This is a helper function to do the unlink of a specific directory |
| 832 | * item |
| 833 | */ |
| 834 | static noinline int drop_one_dir_item(struct btrfs_trans_handle *trans, |
| 835 | struct btrfs_root *root, |
| 836 | struct btrfs_path *path, |
Nikolay Borisov | 207e7d9 | 2017-01-18 00:31:45 +0200 | [diff] [blame] | 837 | struct btrfs_inode *dir, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 838 | struct btrfs_dir_item *di) |
| 839 | { |
| 840 | struct inode *inode; |
| 841 | char *name; |
| 842 | int name_len; |
| 843 | struct extent_buffer *leaf; |
| 844 | struct btrfs_key location; |
| 845 | int ret; |
| 846 | |
| 847 | leaf = path->nodes[0]; |
| 848 | |
| 849 | btrfs_dir_item_key_to_cpu(leaf, di, &location); |
| 850 | name_len = btrfs_dir_name_len(leaf, di); |
| 851 | name = kmalloc(name_len, GFP_NOFS); |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 852 | if (!name) |
| 853 | return -ENOMEM; |
| 854 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 855 | read_extent_buffer(leaf, name, (unsigned long)(di + 1), name_len); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 856 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 857 | |
| 858 | inode = read_one_inode(root, location.objectid); |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 859 | if (!inode) { |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 860 | ret = -EIO; |
| 861 | goto out; |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 862 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 863 | |
Yan Zheng | ec051c0 | 2009-01-05 15:43:42 -0500 | [diff] [blame] | 864 | ret = link_to_fixup_dir(trans, root, path, location.objectid); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 865 | if (ret) |
| 866 | goto out; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 867 | |
Nikolay Borisov | 207e7d9 | 2017-01-18 00:31:45 +0200 | [diff] [blame] | 868 | ret = btrfs_unlink_inode(trans, root, dir, BTRFS_I(inode), name, |
| 869 | name_len); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 870 | if (ret) |
| 871 | goto out; |
Filipe David Borba Manana | ada9af2 | 2013-08-05 09:25:47 +0100 | [diff] [blame] | 872 | else |
Nikolay Borisov | e5c304e6 | 2018-02-07 17:55:43 +0200 | [diff] [blame] | 873 | ret = btrfs_run_delayed_items(trans); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 874 | out: |
| 875 | kfree(name); |
| 876 | iput(inode); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 877 | return ret; |
| 878 | } |
| 879 | |
| 880 | /* |
| 881 | * helper function to see if a given name and sequence number found |
| 882 | * in an inode back reference are already in a directory and correctly |
| 883 | * point to this inode |
| 884 | */ |
| 885 | static noinline int inode_in_dir(struct btrfs_root *root, |
| 886 | struct btrfs_path *path, |
| 887 | u64 dirid, u64 objectid, u64 index, |
| 888 | const char *name, int name_len) |
| 889 | { |
| 890 | struct btrfs_dir_item *di; |
| 891 | struct btrfs_key location; |
| 892 | int match = 0; |
| 893 | |
| 894 | di = btrfs_lookup_dir_index_item(NULL, root, path, dirid, |
| 895 | index, name, name_len, 0); |
| 896 | if (di && !IS_ERR(di)) { |
| 897 | btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location); |
| 898 | if (location.objectid != objectid) |
| 899 | goto out; |
| 900 | } else |
| 901 | goto out; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 902 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 903 | |
| 904 | di = btrfs_lookup_dir_item(NULL, root, path, dirid, name, name_len, 0); |
| 905 | if (di && !IS_ERR(di)) { |
| 906 | btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location); |
| 907 | if (location.objectid != objectid) |
| 908 | goto out; |
| 909 | } else |
| 910 | goto out; |
| 911 | match = 1; |
| 912 | out: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 913 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 914 | return match; |
| 915 | } |
| 916 | |
| 917 | /* |
| 918 | * helper function to check a log tree for a named back reference in |
| 919 | * an inode. This is used to decide if a back reference that is |
| 920 | * found in the subvolume conflicts with what we find in the log. |
| 921 | * |
| 922 | * inode backreferences may have multiple refs in a single item, |
| 923 | * during replay we process one reference at a time, and we don't |
| 924 | * want to delete valid links to a file from the subvolume if that |
| 925 | * link is also in the log. |
| 926 | */ |
| 927 | static noinline int backref_in_log(struct btrfs_root *log, |
| 928 | struct btrfs_key *key, |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 929 | u64 ref_objectid, |
Filipe Manana | df8d116 | 2015-01-14 01:52:25 +0000 | [diff] [blame] | 930 | const char *name, int namelen) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 931 | { |
| 932 | struct btrfs_path *path; |
| 933 | struct btrfs_inode_ref *ref; |
| 934 | unsigned long ptr; |
| 935 | unsigned long ptr_end; |
| 936 | unsigned long name_ptr; |
| 937 | int found_name_len; |
| 938 | int item_size; |
| 939 | int ret; |
| 940 | int match = 0; |
| 941 | |
| 942 | path = btrfs_alloc_path(); |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 943 | if (!path) |
| 944 | return -ENOMEM; |
| 945 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 946 | ret = btrfs_search_slot(NULL, log, key, path, 0, 0); |
| 947 | if (ret != 0) |
| 948 | goto out; |
| 949 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 950 | ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 951 | |
| 952 | if (key->type == BTRFS_INODE_EXTREF_KEY) { |
Filipe Manana | 1f250e9 | 2018-02-28 15:56:10 +0000 | [diff] [blame] | 953 | if (btrfs_find_name_in_ext_backref(path->nodes[0], |
| 954 | path->slots[0], |
| 955 | ref_objectid, |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 956 | name, namelen, NULL)) |
| 957 | match = 1; |
| 958 | |
| 959 | goto out; |
| 960 | } |
| 961 | |
| 962 | item_size = btrfs_item_size_nr(path->nodes[0], path->slots[0]); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 963 | ptr_end = ptr + item_size; |
| 964 | while (ptr < ptr_end) { |
| 965 | ref = (struct btrfs_inode_ref *)ptr; |
| 966 | found_name_len = btrfs_inode_ref_name_len(path->nodes[0], ref); |
| 967 | if (found_name_len == namelen) { |
| 968 | name_ptr = (unsigned long)(ref + 1); |
| 969 | ret = memcmp_extent_buffer(path->nodes[0], name, |
| 970 | name_ptr, namelen); |
| 971 | if (ret == 0) { |
| 972 | match = 1; |
| 973 | goto out; |
| 974 | } |
| 975 | } |
| 976 | ptr = (unsigned long)(ref + 1) + found_name_len; |
| 977 | } |
| 978 | out: |
| 979 | btrfs_free_path(path); |
| 980 | return match; |
| 981 | } |
| 982 | |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 983 | static inline int __add_inode_ref(struct btrfs_trans_handle *trans, |
| 984 | struct btrfs_root *root, |
| 985 | struct btrfs_path *path, |
| 986 | struct btrfs_root *log_root, |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 987 | struct btrfs_inode *dir, |
| 988 | struct btrfs_inode *inode, |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 989 | u64 inode_objectid, u64 parent_objectid, |
| 990 | u64 ref_index, char *name, int namelen, |
| 991 | int *search_done) |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 992 | { |
| 993 | int ret; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 994 | char *victim_name; |
| 995 | int victim_name_len; |
| 996 | struct extent_buffer *leaf; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 997 | struct btrfs_dir_item *di; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 998 | struct btrfs_key search_key; |
| 999 | struct btrfs_inode_extref *extref; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1000 | |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1001 | again: |
| 1002 | /* Search old style refs */ |
| 1003 | search_key.objectid = inode_objectid; |
| 1004 | search_key.type = BTRFS_INODE_REF_KEY; |
| 1005 | search_key.offset = parent_objectid; |
| 1006 | ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0); |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1007 | if (ret == 0) { |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1008 | struct btrfs_inode_ref *victim_ref; |
| 1009 | unsigned long ptr; |
| 1010 | unsigned long ptr_end; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1011 | |
| 1012 | leaf = path->nodes[0]; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1013 | |
| 1014 | /* are we trying to overwrite a back ref for the root directory |
| 1015 | * if so, just jump out, we're done |
| 1016 | */ |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1017 | if (search_key.objectid == search_key.offset) |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1018 | return 1; |
| 1019 | |
| 1020 | /* check all the names in this back reference to see |
| 1021 | * if they are in the log. if so, we allow them to stay |
| 1022 | * otherwise they must be unlinked as a conflict |
| 1023 | */ |
| 1024 | ptr = btrfs_item_ptr_offset(leaf, path->slots[0]); |
| 1025 | ptr_end = ptr + btrfs_item_size_nr(leaf, path->slots[0]); |
| 1026 | while (ptr < ptr_end) { |
| 1027 | victim_ref = (struct btrfs_inode_ref *)ptr; |
| 1028 | victim_name_len = btrfs_inode_ref_name_len(leaf, |
| 1029 | victim_ref); |
| 1030 | victim_name = kmalloc(victim_name_len, GFP_NOFS); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1031 | if (!victim_name) |
| 1032 | return -ENOMEM; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1033 | |
| 1034 | read_extent_buffer(leaf, victim_name, |
| 1035 | (unsigned long)(victim_ref + 1), |
| 1036 | victim_name_len); |
| 1037 | |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1038 | if (!backref_in_log(log_root, &search_key, |
| 1039 | parent_objectid, |
| 1040 | victim_name, |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1041 | victim_name_len)) { |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1042 | inc_nlink(&inode->vfs_inode); |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1043 | btrfs_release_path(path); |
| 1044 | |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1045 | ret = btrfs_unlink_inode(trans, root, dir, inode, |
Nikolay Borisov | 4ec5934 | 2017-01-18 00:31:44 +0200 | [diff] [blame] | 1046 | victim_name, victim_name_len); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1047 | kfree(victim_name); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1048 | if (ret) |
| 1049 | return ret; |
Nikolay Borisov | e5c304e6 | 2018-02-07 17:55:43 +0200 | [diff] [blame] | 1050 | ret = btrfs_run_delayed_items(trans); |
Filipe David Borba Manana | ada9af2 | 2013-08-05 09:25:47 +0100 | [diff] [blame] | 1051 | if (ret) |
| 1052 | return ret; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1053 | *search_done = 1; |
| 1054 | goto again; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1055 | } |
| 1056 | kfree(victim_name); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1057 | |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1058 | ptr = (unsigned long)(victim_ref + 1) + victim_name_len; |
| 1059 | } |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1060 | |
| 1061 | /* |
| 1062 | * NOTE: we have searched root tree and checked the |
Adam Buchbinder | bb7ab3b | 2016-03-04 11:23:12 -0800 | [diff] [blame] | 1063 | * corresponding ref, it does not need to check again. |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1064 | */ |
| 1065 | *search_done = 1; |
| 1066 | } |
| 1067 | btrfs_release_path(path); |
| 1068 | |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1069 | /* Same search but for extended refs */ |
| 1070 | extref = btrfs_lookup_inode_extref(NULL, root, path, name, namelen, |
| 1071 | inode_objectid, parent_objectid, 0, |
| 1072 | 0); |
| 1073 | if (!IS_ERR_OR_NULL(extref)) { |
| 1074 | u32 item_size; |
| 1075 | u32 cur_offset = 0; |
| 1076 | unsigned long base; |
| 1077 | struct inode *victim_parent; |
| 1078 | |
| 1079 | leaf = path->nodes[0]; |
| 1080 | |
| 1081 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1082 | base = btrfs_item_ptr_offset(leaf, path->slots[0]); |
| 1083 | |
| 1084 | while (cur_offset < item_size) { |
Quentin Casasnovas | dd9ef13 | 2015-03-03 16:31:38 +0100 | [diff] [blame] | 1085 | extref = (struct btrfs_inode_extref *)(base + cur_offset); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1086 | |
| 1087 | victim_name_len = btrfs_inode_extref_name_len(leaf, extref); |
| 1088 | |
| 1089 | if (btrfs_inode_extref_parent(leaf, extref) != parent_objectid) |
| 1090 | goto next; |
| 1091 | |
| 1092 | victim_name = kmalloc(victim_name_len, GFP_NOFS); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1093 | if (!victim_name) |
| 1094 | return -ENOMEM; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1095 | read_extent_buffer(leaf, victim_name, (unsigned long)&extref->name, |
| 1096 | victim_name_len); |
| 1097 | |
| 1098 | search_key.objectid = inode_objectid; |
| 1099 | search_key.type = BTRFS_INODE_EXTREF_KEY; |
| 1100 | search_key.offset = btrfs_extref_hash(parent_objectid, |
| 1101 | victim_name, |
| 1102 | victim_name_len); |
| 1103 | ret = 0; |
| 1104 | if (!backref_in_log(log_root, &search_key, |
| 1105 | parent_objectid, victim_name, |
| 1106 | victim_name_len)) { |
| 1107 | ret = -ENOENT; |
| 1108 | victim_parent = read_one_inode(root, |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1109 | parent_objectid); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1110 | if (victim_parent) { |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1111 | inc_nlink(&inode->vfs_inode); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1112 | btrfs_release_path(path); |
| 1113 | |
| 1114 | ret = btrfs_unlink_inode(trans, root, |
Nikolay Borisov | 4ec5934 | 2017-01-18 00:31:44 +0200 | [diff] [blame] | 1115 | BTRFS_I(victim_parent), |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1116 | inode, |
Nikolay Borisov | 4ec5934 | 2017-01-18 00:31:44 +0200 | [diff] [blame] | 1117 | victim_name, |
| 1118 | victim_name_len); |
Filipe David Borba Manana | ada9af2 | 2013-08-05 09:25:47 +0100 | [diff] [blame] | 1119 | if (!ret) |
| 1120 | ret = btrfs_run_delayed_items( |
Nikolay Borisov | e5c304e6 | 2018-02-07 17:55:43 +0200 | [diff] [blame] | 1121 | trans); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1122 | } |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1123 | iput(victim_parent); |
| 1124 | kfree(victim_name); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1125 | if (ret) |
| 1126 | return ret; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1127 | *search_done = 1; |
| 1128 | goto again; |
| 1129 | } |
| 1130 | kfree(victim_name); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1131 | next: |
| 1132 | cur_offset += victim_name_len + sizeof(*extref); |
| 1133 | } |
| 1134 | *search_done = 1; |
| 1135 | } |
| 1136 | btrfs_release_path(path); |
| 1137 | |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1138 | /* look for a conflicting sequence number */ |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1139 | di = btrfs_lookup_dir_index_item(trans, root, path, btrfs_ino(dir), |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1140 | ref_index, name, namelen, 0); |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1141 | if (di && !IS_ERR(di)) { |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1142 | ret = drop_one_dir_item(trans, root, path, dir, di); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1143 | if (ret) |
| 1144 | return ret; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1145 | } |
| 1146 | btrfs_release_path(path); |
| 1147 | |
| 1148 | /* look for a conflicing name */ |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1149 | di = btrfs_lookup_dir_item(trans, root, path, btrfs_ino(dir), |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1150 | name, namelen, 0); |
| 1151 | if (di && !IS_ERR(di)) { |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1152 | ret = drop_one_dir_item(trans, root, path, dir, di); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1153 | if (ret) |
| 1154 | return ret; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1155 | } |
| 1156 | btrfs_release_path(path); |
| 1157 | |
| 1158 | return 0; |
| 1159 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1160 | |
Qu Wenruo | bae15d9 | 2017-11-08 08:54:26 +0800 | [diff] [blame] | 1161 | static int extref_get_fields(struct extent_buffer *eb, unsigned long ref_ptr, |
| 1162 | u32 *namelen, char **name, u64 *index, |
| 1163 | u64 *parent_objectid) |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1164 | { |
| 1165 | struct btrfs_inode_extref *extref; |
| 1166 | |
| 1167 | extref = (struct btrfs_inode_extref *)ref_ptr; |
| 1168 | |
| 1169 | *namelen = btrfs_inode_extref_name_len(eb, extref); |
| 1170 | *name = kmalloc(*namelen, GFP_NOFS); |
| 1171 | if (*name == NULL) |
| 1172 | return -ENOMEM; |
| 1173 | |
| 1174 | read_extent_buffer(eb, *name, (unsigned long)&extref->name, |
| 1175 | *namelen); |
| 1176 | |
Filipe Manana | 1f250e9 | 2018-02-28 15:56:10 +0000 | [diff] [blame] | 1177 | if (index) |
| 1178 | *index = btrfs_inode_extref_index(eb, extref); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1179 | if (parent_objectid) |
| 1180 | *parent_objectid = btrfs_inode_extref_parent(eb, extref); |
| 1181 | |
| 1182 | return 0; |
| 1183 | } |
| 1184 | |
Qu Wenruo | bae15d9 | 2017-11-08 08:54:26 +0800 | [diff] [blame] | 1185 | static int ref_get_fields(struct extent_buffer *eb, unsigned long ref_ptr, |
| 1186 | u32 *namelen, char **name, u64 *index) |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1187 | { |
| 1188 | struct btrfs_inode_ref *ref; |
| 1189 | |
| 1190 | ref = (struct btrfs_inode_ref *)ref_ptr; |
| 1191 | |
| 1192 | *namelen = btrfs_inode_ref_name_len(eb, ref); |
| 1193 | *name = kmalloc(*namelen, GFP_NOFS); |
| 1194 | if (*name == NULL) |
| 1195 | return -ENOMEM; |
| 1196 | |
| 1197 | read_extent_buffer(eb, *name, (unsigned long)(ref + 1), *namelen); |
| 1198 | |
Filipe Manana | 1f250e9 | 2018-02-28 15:56:10 +0000 | [diff] [blame] | 1199 | if (index) |
| 1200 | *index = btrfs_inode_ref_index(eb, ref); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1201 | |
| 1202 | return 0; |
| 1203 | } |
| 1204 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1205 | /* |
Filipe Manana | 1f250e9 | 2018-02-28 15:56:10 +0000 | [diff] [blame] | 1206 | * Take an inode reference item from the log tree and iterate all names from the |
| 1207 | * inode reference item in the subvolume tree with the same key (if it exists). |
| 1208 | * For any name that is not in the inode reference item from the log tree, do a |
| 1209 | * proper unlink of that name (that is, remove its entry from the inode |
| 1210 | * reference item and both dir index keys). |
| 1211 | */ |
| 1212 | static int unlink_old_inode_refs(struct btrfs_trans_handle *trans, |
| 1213 | struct btrfs_root *root, |
| 1214 | struct btrfs_path *path, |
| 1215 | struct btrfs_inode *inode, |
| 1216 | struct extent_buffer *log_eb, |
| 1217 | int log_slot, |
| 1218 | struct btrfs_key *key) |
| 1219 | { |
| 1220 | int ret; |
| 1221 | unsigned long ref_ptr; |
| 1222 | unsigned long ref_end; |
| 1223 | struct extent_buffer *eb; |
| 1224 | |
| 1225 | again: |
| 1226 | btrfs_release_path(path); |
| 1227 | ret = btrfs_search_slot(NULL, root, key, path, 0, 0); |
| 1228 | if (ret > 0) { |
| 1229 | ret = 0; |
| 1230 | goto out; |
| 1231 | } |
| 1232 | if (ret < 0) |
| 1233 | goto out; |
| 1234 | |
| 1235 | eb = path->nodes[0]; |
| 1236 | ref_ptr = btrfs_item_ptr_offset(eb, path->slots[0]); |
| 1237 | ref_end = ref_ptr + btrfs_item_size_nr(eb, path->slots[0]); |
| 1238 | while (ref_ptr < ref_end) { |
| 1239 | char *name = NULL; |
| 1240 | int namelen; |
| 1241 | u64 parent_id; |
| 1242 | |
| 1243 | if (key->type == BTRFS_INODE_EXTREF_KEY) { |
| 1244 | ret = extref_get_fields(eb, ref_ptr, &namelen, &name, |
| 1245 | NULL, &parent_id); |
| 1246 | } else { |
| 1247 | parent_id = key->offset; |
| 1248 | ret = ref_get_fields(eb, ref_ptr, &namelen, &name, |
| 1249 | NULL); |
| 1250 | } |
| 1251 | if (ret) |
| 1252 | goto out; |
| 1253 | |
| 1254 | if (key->type == BTRFS_INODE_EXTREF_KEY) |
| 1255 | ret = btrfs_find_name_in_ext_backref(log_eb, log_slot, |
| 1256 | parent_id, name, |
| 1257 | namelen, NULL); |
| 1258 | else |
| 1259 | ret = btrfs_find_name_in_backref(log_eb, log_slot, name, |
| 1260 | namelen, NULL); |
| 1261 | |
| 1262 | if (!ret) { |
| 1263 | struct inode *dir; |
| 1264 | |
| 1265 | btrfs_release_path(path); |
| 1266 | dir = read_one_inode(root, parent_id); |
| 1267 | if (!dir) { |
| 1268 | ret = -ENOENT; |
| 1269 | kfree(name); |
| 1270 | goto out; |
| 1271 | } |
| 1272 | ret = btrfs_unlink_inode(trans, root, BTRFS_I(dir), |
| 1273 | inode, name, namelen); |
| 1274 | kfree(name); |
| 1275 | iput(dir); |
| 1276 | if (ret) |
| 1277 | goto out; |
| 1278 | goto again; |
| 1279 | } |
| 1280 | |
| 1281 | kfree(name); |
| 1282 | ref_ptr += namelen; |
| 1283 | if (key->type == BTRFS_INODE_EXTREF_KEY) |
| 1284 | ref_ptr += sizeof(struct btrfs_inode_extref); |
| 1285 | else |
| 1286 | ref_ptr += sizeof(struct btrfs_inode_ref); |
| 1287 | } |
| 1288 | ret = 0; |
| 1289 | out: |
| 1290 | btrfs_release_path(path); |
| 1291 | return ret; |
| 1292 | } |
| 1293 | |
| 1294 | /* |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1295 | * replay one inode back reference item found in the log tree. |
| 1296 | * eb, slot and key refer to the buffer and key found in the log tree. |
| 1297 | * root is the destination we are replaying into, and path is for temp |
| 1298 | * use by this function. (it should be released on return). |
| 1299 | */ |
| 1300 | static noinline int add_inode_ref(struct btrfs_trans_handle *trans, |
| 1301 | struct btrfs_root *root, |
| 1302 | struct btrfs_root *log, |
| 1303 | struct btrfs_path *path, |
| 1304 | struct extent_buffer *eb, int slot, |
| 1305 | struct btrfs_key *key) |
| 1306 | { |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1307 | struct inode *dir = NULL; |
| 1308 | struct inode *inode = NULL; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1309 | unsigned long ref_ptr; |
| 1310 | unsigned long ref_end; |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1311 | char *name = NULL; |
liubo | 34f3e4f | 2011-08-06 08:35:23 +0000 | [diff] [blame] | 1312 | int namelen; |
| 1313 | int ret; |
liubo | c622ae6 | 2011-03-26 08:01:12 -0400 | [diff] [blame] | 1314 | int search_done = 0; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1315 | int log_ref_ver = 0; |
| 1316 | u64 parent_objectid; |
| 1317 | u64 inode_objectid; |
Chris Mason | f46dbe3 | 2012-10-09 11:17:20 -0400 | [diff] [blame] | 1318 | u64 ref_index = 0; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1319 | int ref_struct_size; |
| 1320 | |
| 1321 | ref_ptr = btrfs_item_ptr_offset(eb, slot); |
| 1322 | ref_end = ref_ptr + btrfs_item_size_nr(eb, slot); |
| 1323 | |
| 1324 | if (key->type == BTRFS_INODE_EXTREF_KEY) { |
| 1325 | struct btrfs_inode_extref *r; |
| 1326 | |
| 1327 | ref_struct_size = sizeof(struct btrfs_inode_extref); |
| 1328 | log_ref_ver = 1; |
| 1329 | r = (struct btrfs_inode_extref *)ref_ptr; |
| 1330 | parent_objectid = btrfs_inode_extref_parent(eb, r); |
| 1331 | } else { |
| 1332 | ref_struct_size = sizeof(struct btrfs_inode_ref); |
| 1333 | parent_objectid = key->offset; |
| 1334 | } |
| 1335 | inode_objectid = key->objectid; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1336 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1337 | /* |
| 1338 | * it is possible that we didn't log all the parent directories |
| 1339 | * for a given inode. If we don't find the dir, just don't |
| 1340 | * copy the back ref in. The link count fixup code will take |
| 1341 | * care of the rest |
| 1342 | */ |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1343 | dir = read_one_inode(root, parent_objectid); |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1344 | if (!dir) { |
| 1345 | ret = -ENOENT; |
| 1346 | goto out; |
| 1347 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1348 | |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1349 | inode = read_one_inode(root, inode_objectid); |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 1350 | if (!inode) { |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1351 | ret = -EIO; |
| 1352 | goto out; |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 1353 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1354 | |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1355 | while (ref_ptr < ref_end) { |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1356 | if (log_ref_ver) { |
Qu Wenruo | bae15d9 | 2017-11-08 08:54:26 +0800 | [diff] [blame] | 1357 | ret = extref_get_fields(eb, ref_ptr, &namelen, &name, |
| 1358 | &ref_index, &parent_objectid); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1359 | /* |
| 1360 | * parent object can change from one array |
| 1361 | * item to another. |
| 1362 | */ |
| 1363 | if (!dir) |
| 1364 | dir = read_one_inode(root, parent_objectid); |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1365 | if (!dir) { |
| 1366 | ret = -ENOENT; |
| 1367 | goto out; |
| 1368 | } |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1369 | } else { |
Qu Wenruo | bae15d9 | 2017-11-08 08:54:26 +0800 | [diff] [blame] | 1370 | ret = ref_get_fields(eb, ref_ptr, &namelen, &name, |
| 1371 | &ref_index); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1372 | } |
| 1373 | if (ret) |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1374 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1375 | |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1376 | /* if we already have a perfect match, we're done */ |
David Sterba | f85b737 | 2017-01-20 14:54:07 +0100 | [diff] [blame] | 1377 | if (!inode_in_dir(root, path, btrfs_ino(BTRFS_I(dir)), |
| 1378 | btrfs_ino(BTRFS_I(inode)), ref_index, |
| 1379 | name, namelen)) { |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1380 | /* |
| 1381 | * look for a conflicting back reference in the |
| 1382 | * metadata. if we find one we have to unlink that name |
| 1383 | * of the file before we add our new link. Later on, we |
| 1384 | * overwrite any existing back reference, and we don't |
| 1385 | * want to create dangling pointers in the directory. |
| 1386 | */ |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1387 | |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1388 | if (!search_done) { |
| 1389 | ret = __add_inode_ref(trans, root, path, log, |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1390 | BTRFS_I(dir), |
David Sterba | d75eefd | 2017-02-10 20:20:19 +0100 | [diff] [blame] | 1391 | BTRFS_I(inode), |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1392 | inode_objectid, |
| 1393 | parent_objectid, |
| 1394 | ref_index, name, namelen, |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1395 | &search_done); |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1396 | if (ret) { |
| 1397 | if (ret == 1) |
| 1398 | ret = 0; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1399 | goto out; |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1400 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1401 | } |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1402 | |
| 1403 | /* insert our name */ |
Nikolay Borisov | db0a669 | 2017-02-20 13:51:08 +0200 | [diff] [blame] | 1404 | ret = btrfs_add_link(trans, BTRFS_I(dir), |
| 1405 | BTRFS_I(inode), |
| 1406 | name, namelen, 0, ref_index); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1407 | if (ret) |
| 1408 | goto out; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1409 | |
| 1410 | btrfs_update_inode(trans, root, inode); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1411 | } |
liubo | c622ae6 | 2011-03-26 08:01:12 -0400 | [diff] [blame] | 1412 | |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1413 | ref_ptr = (unsigned long)(ref_ptr + ref_struct_size) + namelen; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1414 | kfree(name); |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1415 | name = NULL; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1416 | if (log_ref_ver) { |
| 1417 | iput(dir); |
| 1418 | dir = NULL; |
| 1419 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1420 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1421 | |
Filipe Manana | 1f250e9 | 2018-02-28 15:56:10 +0000 | [diff] [blame] | 1422 | /* |
| 1423 | * Before we overwrite the inode reference item in the subvolume tree |
| 1424 | * with the item from the log tree, we must unlink all names from the |
| 1425 | * parent directory that are in the subvolume's tree inode reference |
| 1426 | * item, otherwise we end up with an inconsistent subvolume tree where |
| 1427 | * dir index entries exist for a name but there is no inode reference |
| 1428 | * item with the same name. |
| 1429 | */ |
| 1430 | ret = unlink_old_inode_refs(trans, root, path, BTRFS_I(inode), eb, slot, |
| 1431 | key); |
| 1432 | if (ret) |
| 1433 | goto out; |
| 1434 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1435 | /* finally write the back reference in the inode */ |
| 1436 | ret = overwrite_item(trans, root, path, eb, slot, key); |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1437 | out: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1438 | btrfs_release_path(path); |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1439 | kfree(name); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1440 | iput(dir); |
| 1441 | iput(inode); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1442 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1443 | } |
| 1444 | |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 1445 | static int insert_orphan_item(struct btrfs_trans_handle *trans, |
David Sterba | 9c4f61f | 2015-01-02 19:12:57 +0100 | [diff] [blame] | 1446 | struct btrfs_root *root, u64 ino) |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 1447 | { |
| 1448 | int ret; |
David Sterba | 381cf65 | 2015-01-02 18:45:16 +0100 | [diff] [blame] | 1449 | |
David Sterba | 9c4f61f | 2015-01-02 19:12:57 +0100 | [diff] [blame] | 1450 | ret = btrfs_insert_orphan_item(trans, root, ino); |
| 1451 | if (ret == -EEXIST) |
| 1452 | ret = 0; |
David Sterba | 381cf65 | 2015-01-02 18:45:16 +0100 | [diff] [blame] | 1453 | |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 1454 | return ret; |
| 1455 | } |
| 1456 | |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1457 | static int count_inode_extrefs(struct btrfs_root *root, |
Nikolay Borisov | 3628365 | 2017-01-18 00:31:49 +0200 | [diff] [blame] | 1458 | struct btrfs_inode *inode, struct btrfs_path *path) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1459 | { |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1460 | int ret = 0; |
| 1461 | int name_len; |
| 1462 | unsigned int nlink = 0; |
| 1463 | u32 item_size; |
| 1464 | u32 cur_offset = 0; |
Nikolay Borisov | 3628365 | 2017-01-18 00:31:49 +0200 | [diff] [blame] | 1465 | u64 inode_objectid = btrfs_ino(inode); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1466 | u64 offset = 0; |
| 1467 | unsigned long ptr; |
| 1468 | struct btrfs_inode_extref *extref; |
| 1469 | struct extent_buffer *leaf; |
| 1470 | |
| 1471 | while (1) { |
| 1472 | ret = btrfs_find_one_extref(root, inode_objectid, offset, path, |
| 1473 | &extref, &offset); |
| 1474 | if (ret) |
| 1475 | break; |
| 1476 | |
| 1477 | leaf = path->nodes[0]; |
| 1478 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1479 | ptr = btrfs_item_ptr_offset(leaf, path->slots[0]); |
Filipe Manana | 2c2c452 | 2015-01-13 16:40:04 +0000 | [diff] [blame] | 1480 | cur_offset = 0; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1481 | |
| 1482 | while (cur_offset < item_size) { |
| 1483 | extref = (struct btrfs_inode_extref *) (ptr + cur_offset); |
| 1484 | name_len = btrfs_inode_extref_name_len(leaf, extref); |
| 1485 | |
| 1486 | nlink++; |
| 1487 | |
| 1488 | cur_offset += name_len + sizeof(*extref); |
| 1489 | } |
| 1490 | |
| 1491 | offset++; |
| 1492 | btrfs_release_path(path); |
| 1493 | } |
| 1494 | btrfs_release_path(path); |
| 1495 | |
Filipe Manana | 2c2c452 | 2015-01-13 16:40:04 +0000 | [diff] [blame] | 1496 | if (ret < 0 && ret != -ENOENT) |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1497 | return ret; |
| 1498 | return nlink; |
| 1499 | } |
| 1500 | |
| 1501 | static int count_inode_refs(struct btrfs_root *root, |
Nikolay Borisov | f329e31 | 2017-01-18 00:31:50 +0200 | [diff] [blame] | 1502 | struct btrfs_inode *inode, struct btrfs_path *path) |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1503 | { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1504 | int ret; |
| 1505 | struct btrfs_key key; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1506 | unsigned int nlink = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1507 | unsigned long ptr; |
| 1508 | unsigned long ptr_end; |
| 1509 | int name_len; |
Nikolay Borisov | f329e31 | 2017-01-18 00:31:50 +0200 | [diff] [blame] | 1510 | u64 ino = btrfs_ino(inode); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1511 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1512 | key.objectid = ino; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1513 | key.type = BTRFS_INODE_REF_KEY; |
| 1514 | key.offset = (u64)-1; |
| 1515 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1516 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1517 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 1518 | if (ret < 0) |
| 1519 | break; |
| 1520 | if (ret > 0) { |
| 1521 | if (path->slots[0] == 0) |
| 1522 | break; |
| 1523 | path->slots[0]--; |
| 1524 | } |
Filipe David Borba Manana | e93ae26 | 2013-10-14 22:49:11 +0100 | [diff] [blame] | 1525 | process_slot: |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1526 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 1527 | path->slots[0]); |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1528 | if (key.objectid != ino || |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1529 | key.type != BTRFS_INODE_REF_KEY) |
| 1530 | break; |
| 1531 | ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]); |
| 1532 | ptr_end = ptr + btrfs_item_size_nr(path->nodes[0], |
| 1533 | path->slots[0]); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1534 | while (ptr < ptr_end) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1535 | struct btrfs_inode_ref *ref; |
| 1536 | |
| 1537 | ref = (struct btrfs_inode_ref *)ptr; |
| 1538 | name_len = btrfs_inode_ref_name_len(path->nodes[0], |
| 1539 | ref); |
| 1540 | ptr = (unsigned long)(ref + 1) + name_len; |
| 1541 | nlink++; |
| 1542 | } |
| 1543 | |
| 1544 | if (key.offset == 0) |
| 1545 | break; |
Filipe David Borba Manana | e93ae26 | 2013-10-14 22:49:11 +0100 | [diff] [blame] | 1546 | if (path->slots[0] > 0) { |
| 1547 | path->slots[0]--; |
| 1548 | goto process_slot; |
| 1549 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1550 | key.offset--; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1551 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1552 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1553 | btrfs_release_path(path); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1554 | |
| 1555 | return nlink; |
| 1556 | } |
| 1557 | |
| 1558 | /* |
| 1559 | * There are a few corners where the link count of the file can't |
| 1560 | * be properly maintained during replay. So, instead of adding |
| 1561 | * lots of complexity to the log code, we just scan the backrefs |
| 1562 | * for any file that has been through replay. |
| 1563 | * |
| 1564 | * The scan will update the link count on the inode to reflect the |
| 1565 | * number of back refs found. If it goes down to zero, the iput |
| 1566 | * will free the inode. |
| 1567 | */ |
| 1568 | static noinline int fixup_inode_link_count(struct btrfs_trans_handle *trans, |
| 1569 | struct btrfs_root *root, |
| 1570 | struct inode *inode) |
| 1571 | { |
| 1572 | struct btrfs_path *path; |
| 1573 | int ret; |
| 1574 | u64 nlink = 0; |
Nikolay Borisov | 4a0cc7c | 2017-01-10 20:35:31 +0200 | [diff] [blame] | 1575 | u64 ino = btrfs_ino(BTRFS_I(inode)); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1576 | |
| 1577 | path = btrfs_alloc_path(); |
| 1578 | if (!path) |
| 1579 | return -ENOMEM; |
| 1580 | |
Nikolay Borisov | f329e31 | 2017-01-18 00:31:50 +0200 | [diff] [blame] | 1581 | ret = count_inode_refs(root, BTRFS_I(inode), path); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1582 | if (ret < 0) |
| 1583 | goto out; |
| 1584 | |
| 1585 | nlink = ret; |
| 1586 | |
Nikolay Borisov | 3628365 | 2017-01-18 00:31:49 +0200 | [diff] [blame] | 1587 | ret = count_inode_extrefs(root, BTRFS_I(inode), path); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1588 | if (ret < 0) |
| 1589 | goto out; |
| 1590 | |
| 1591 | nlink += ret; |
| 1592 | |
| 1593 | ret = 0; |
| 1594 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1595 | if (nlink != inode->i_nlink) { |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 1596 | set_nlink(inode, nlink); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1597 | btrfs_update_inode(trans, root, inode); |
| 1598 | } |
Chris Mason | 8d5bf1c | 2008-09-11 15:51:21 -0400 | [diff] [blame] | 1599 | BTRFS_I(inode)->index_cnt = (u64)-1; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1600 | |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 1601 | if (inode->i_nlink == 0) { |
| 1602 | if (S_ISDIR(inode->i_mode)) { |
| 1603 | ret = replay_dir_deletes(trans, root, NULL, path, |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1604 | ino, 1); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1605 | if (ret) |
| 1606 | goto out; |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 1607 | } |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1608 | ret = insert_orphan_item(trans, root, ino); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 1609 | } |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 1610 | |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1611 | out: |
| 1612 | btrfs_free_path(path); |
| 1613 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1614 | } |
| 1615 | |
| 1616 | static noinline int fixup_inode_link_counts(struct btrfs_trans_handle *trans, |
| 1617 | struct btrfs_root *root, |
| 1618 | struct btrfs_path *path) |
| 1619 | { |
| 1620 | int ret; |
| 1621 | struct btrfs_key key; |
| 1622 | struct inode *inode; |
| 1623 | |
| 1624 | key.objectid = BTRFS_TREE_LOG_FIXUP_OBJECTID; |
| 1625 | key.type = BTRFS_ORPHAN_ITEM_KEY; |
| 1626 | key.offset = (u64)-1; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1627 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1628 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1629 | if (ret < 0) |
| 1630 | break; |
| 1631 | |
| 1632 | if (ret == 1) { |
| 1633 | if (path->slots[0] == 0) |
| 1634 | break; |
| 1635 | path->slots[0]--; |
| 1636 | } |
| 1637 | |
| 1638 | btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]); |
| 1639 | if (key.objectid != BTRFS_TREE_LOG_FIXUP_OBJECTID || |
| 1640 | key.type != BTRFS_ORPHAN_ITEM_KEY) |
| 1641 | break; |
| 1642 | |
| 1643 | ret = btrfs_del_item(trans, root, path); |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 1644 | if (ret) |
| 1645 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1646 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1647 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1648 | inode = read_one_inode(root, key.offset); |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 1649 | if (!inode) |
| 1650 | return -EIO; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1651 | |
| 1652 | ret = fixup_inode_link_count(trans, root, inode); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1653 | iput(inode); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1654 | if (ret) |
| 1655 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1656 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 1657 | /* |
| 1658 | * fixup on a directory may create new entries, |
| 1659 | * make sure we always look for the highset possible |
| 1660 | * offset |
| 1661 | */ |
| 1662 | key.offset = (u64)-1; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1663 | } |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 1664 | ret = 0; |
| 1665 | out: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1666 | btrfs_release_path(path); |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 1667 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1668 | } |
| 1669 | |
| 1670 | |
| 1671 | /* |
| 1672 | * record a given inode in the fixup dir so we can check its link |
| 1673 | * count when replay is done. The link count is incremented here |
| 1674 | * so the inode won't go away until we check it |
| 1675 | */ |
| 1676 | static noinline int link_to_fixup_dir(struct btrfs_trans_handle *trans, |
| 1677 | struct btrfs_root *root, |
| 1678 | struct btrfs_path *path, |
| 1679 | u64 objectid) |
| 1680 | { |
| 1681 | struct btrfs_key key; |
| 1682 | int ret = 0; |
| 1683 | struct inode *inode; |
| 1684 | |
| 1685 | inode = read_one_inode(root, objectid); |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 1686 | if (!inode) |
| 1687 | return -EIO; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1688 | |
| 1689 | key.objectid = BTRFS_TREE_LOG_FIXUP_OBJECTID; |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 1690 | key.type = BTRFS_ORPHAN_ITEM_KEY; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1691 | key.offset = objectid; |
| 1692 | |
| 1693 | ret = btrfs_insert_empty_item(trans, root, path, &key, 0); |
| 1694 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1695 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1696 | if (ret == 0) { |
Josef Bacik | 9bf7a48 | 2013-03-01 13:35:47 -0500 | [diff] [blame] | 1697 | if (!inode->i_nlink) |
| 1698 | set_nlink(inode, 1); |
| 1699 | else |
Zach Brown | 8b558c5 | 2013-10-16 12:10:34 -0700 | [diff] [blame] | 1700 | inc_nlink(inode); |
Tsutomu Itoh | b995929 | 2012-06-25 21:25:22 -0600 | [diff] [blame] | 1701 | ret = btrfs_update_inode(trans, root, inode); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1702 | } else if (ret == -EEXIST) { |
| 1703 | ret = 0; |
| 1704 | } else { |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1705 | BUG(); /* Logic Error */ |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1706 | } |
| 1707 | iput(inode); |
| 1708 | |
| 1709 | return ret; |
| 1710 | } |
| 1711 | |
| 1712 | /* |
| 1713 | * when replaying the log for a directory, we only insert names |
| 1714 | * for inodes that actually exist. This means an fsync on a directory |
| 1715 | * does not implicitly fsync all the new files in it |
| 1716 | */ |
| 1717 | static noinline int insert_one_name(struct btrfs_trans_handle *trans, |
| 1718 | struct btrfs_root *root, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1719 | u64 dirid, u64 index, |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 1720 | char *name, int name_len, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1721 | struct btrfs_key *location) |
| 1722 | { |
| 1723 | struct inode *inode; |
| 1724 | struct inode *dir; |
| 1725 | int ret; |
| 1726 | |
| 1727 | inode = read_one_inode(root, location->objectid); |
| 1728 | if (!inode) |
| 1729 | return -ENOENT; |
| 1730 | |
| 1731 | dir = read_one_inode(root, dirid); |
| 1732 | if (!dir) { |
| 1733 | iput(inode); |
| 1734 | return -EIO; |
| 1735 | } |
Josef Bacik | d555438 | 2013-09-11 14:17:00 -0400 | [diff] [blame] | 1736 | |
Nikolay Borisov | db0a669 | 2017-02-20 13:51:08 +0200 | [diff] [blame] | 1737 | ret = btrfs_add_link(trans, BTRFS_I(dir), BTRFS_I(inode), name, |
| 1738 | name_len, 1, index); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1739 | |
| 1740 | /* FIXME, put inode into FIXUP list */ |
| 1741 | |
| 1742 | iput(inode); |
| 1743 | iput(dir); |
| 1744 | return ret; |
| 1745 | } |
| 1746 | |
| 1747 | /* |
Filipe Manana | df8d116 | 2015-01-14 01:52:25 +0000 | [diff] [blame] | 1748 | * Return true if an inode reference exists in the log for the given name, |
| 1749 | * inode and parent inode. |
| 1750 | */ |
| 1751 | static bool name_in_log_ref(struct btrfs_root *log_root, |
| 1752 | const char *name, const int name_len, |
| 1753 | const u64 dirid, const u64 ino) |
| 1754 | { |
| 1755 | struct btrfs_key search_key; |
| 1756 | |
| 1757 | search_key.objectid = ino; |
| 1758 | search_key.type = BTRFS_INODE_REF_KEY; |
| 1759 | search_key.offset = dirid; |
| 1760 | if (backref_in_log(log_root, &search_key, dirid, name, name_len)) |
| 1761 | return true; |
| 1762 | |
| 1763 | search_key.type = BTRFS_INODE_EXTREF_KEY; |
| 1764 | search_key.offset = btrfs_extref_hash(dirid, name, name_len); |
| 1765 | if (backref_in_log(log_root, &search_key, dirid, name, name_len)) |
| 1766 | return true; |
| 1767 | |
| 1768 | return false; |
| 1769 | } |
| 1770 | |
| 1771 | /* |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1772 | * take a single entry in a log directory item and replay it into |
| 1773 | * the subvolume. |
| 1774 | * |
| 1775 | * if a conflicting item exists in the subdirectory already, |
| 1776 | * the inode it points to is unlinked and put into the link count |
| 1777 | * fix up tree. |
| 1778 | * |
| 1779 | * If a name from the log points to a file or directory that does |
| 1780 | * not exist in the FS, it is skipped. fsyncs on directories |
| 1781 | * do not force down inodes inside that directory, just changes to the |
| 1782 | * names or unlinks in a directory. |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 1783 | * |
| 1784 | * Returns < 0 on error, 0 if the name wasn't replayed (dentry points to a |
| 1785 | * non-existing inode) and 1 if the name was replayed. |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1786 | */ |
| 1787 | static noinline int replay_one_name(struct btrfs_trans_handle *trans, |
| 1788 | struct btrfs_root *root, |
| 1789 | struct btrfs_path *path, |
| 1790 | struct extent_buffer *eb, |
| 1791 | struct btrfs_dir_item *di, |
| 1792 | struct btrfs_key *key) |
| 1793 | { |
| 1794 | char *name; |
| 1795 | int name_len; |
| 1796 | struct btrfs_dir_item *dst_di; |
| 1797 | struct btrfs_key found_key; |
| 1798 | struct btrfs_key log_key; |
| 1799 | struct inode *dir; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1800 | u8 log_type; |
Chris Mason | 4bef084 | 2008-09-08 11:18:08 -0400 | [diff] [blame] | 1801 | int exists; |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1802 | int ret = 0; |
Josef Bacik | d555438 | 2013-09-11 14:17:00 -0400 | [diff] [blame] | 1803 | bool update_size = (key->type == BTRFS_DIR_INDEX_KEY); |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 1804 | bool name_added = false; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1805 | |
| 1806 | dir = read_one_inode(root, key->objectid); |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 1807 | if (!dir) |
| 1808 | return -EIO; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1809 | |
| 1810 | name_len = btrfs_dir_name_len(eb, di); |
| 1811 | name = kmalloc(name_len, GFP_NOFS); |
Filipe David Borba Manana | 2bac325 | 2013-08-04 19:58:57 +0100 | [diff] [blame] | 1812 | if (!name) { |
| 1813 | ret = -ENOMEM; |
| 1814 | goto out; |
| 1815 | } |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 1816 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1817 | log_type = btrfs_dir_type(eb, di); |
| 1818 | read_extent_buffer(eb, name, (unsigned long)(di + 1), |
| 1819 | name_len); |
| 1820 | |
| 1821 | btrfs_dir_item_key_to_cpu(eb, di, &log_key); |
Chris Mason | 4bef084 | 2008-09-08 11:18:08 -0400 | [diff] [blame] | 1822 | exists = btrfs_lookup_inode(trans, root, path, &log_key, 0); |
| 1823 | if (exists == 0) |
| 1824 | exists = 1; |
| 1825 | else |
| 1826 | exists = 0; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1827 | btrfs_release_path(path); |
Chris Mason | 4bef084 | 2008-09-08 11:18:08 -0400 | [diff] [blame] | 1828 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1829 | if (key->type == BTRFS_DIR_ITEM_KEY) { |
| 1830 | dst_di = btrfs_lookup_dir_item(trans, root, path, key->objectid, |
| 1831 | name, name_len, 1); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1832 | } else if (key->type == BTRFS_DIR_INDEX_KEY) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1833 | dst_di = btrfs_lookup_dir_index_item(trans, root, path, |
| 1834 | key->objectid, |
| 1835 | key->offset, name, |
| 1836 | name_len, 1); |
| 1837 | } else { |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1838 | /* Corruption */ |
| 1839 | ret = -EINVAL; |
| 1840 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1841 | } |
David Sterba | c704005 | 2011-04-19 18:00:01 +0200 | [diff] [blame] | 1842 | if (IS_ERR_OR_NULL(dst_di)) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1843 | /* we need a sequence number to insert, so we only |
| 1844 | * do inserts for the BTRFS_DIR_INDEX_KEY types |
| 1845 | */ |
| 1846 | if (key->type != BTRFS_DIR_INDEX_KEY) |
| 1847 | goto out; |
| 1848 | goto insert; |
| 1849 | } |
| 1850 | |
| 1851 | btrfs_dir_item_key_to_cpu(path->nodes[0], dst_di, &found_key); |
| 1852 | /* the existing item matches the logged item */ |
| 1853 | if (found_key.objectid == log_key.objectid && |
| 1854 | found_key.type == log_key.type && |
| 1855 | found_key.offset == log_key.offset && |
| 1856 | btrfs_dir_type(path->nodes[0], dst_di) == log_type) { |
Filipe Manana | a2cc11d | 2014-09-08 22:53:18 +0100 | [diff] [blame] | 1857 | update_size = false; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1858 | goto out; |
| 1859 | } |
| 1860 | |
| 1861 | /* |
| 1862 | * don't drop the conflicting directory entry if the inode |
| 1863 | * for the new entry doesn't exist |
| 1864 | */ |
Chris Mason | 4bef084 | 2008-09-08 11:18:08 -0400 | [diff] [blame] | 1865 | if (!exists) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1866 | goto out; |
| 1867 | |
Nikolay Borisov | 207e7d9 | 2017-01-18 00:31:45 +0200 | [diff] [blame] | 1868 | 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] | 1869 | if (ret) |
| 1870 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1871 | |
| 1872 | if (key->type == BTRFS_DIR_INDEX_KEY) |
| 1873 | goto insert; |
| 1874 | out: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1875 | btrfs_release_path(path); |
Josef Bacik | d555438 | 2013-09-11 14:17:00 -0400 | [diff] [blame] | 1876 | if (!ret && update_size) { |
Nikolay Borisov | 6ef06d2 | 2017-02-20 13:50:34 +0200 | [diff] [blame] | 1877 | btrfs_i_size_write(BTRFS_I(dir), dir->i_size + name_len * 2); |
Josef Bacik | d555438 | 2013-09-11 14:17:00 -0400 | [diff] [blame] | 1878 | ret = btrfs_update_inode(trans, root, dir); |
| 1879 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1880 | kfree(name); |
| 1881 | iput(dir); |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 1882 | if (!ret && name_added) |
| 1883 | ret = 1; |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1884 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1885 | |
| 1886 | insert: |
Filipe Manana | df8d116 | 2015-01-14 01:52:25 +0000 | [diff] [blame] | 1887 | if (name_in_log_ref(root->log_root, name, name_len, |
| 1888 | key->objectid, log_key.objectid)) { |
| 1889 | /* The dentry will be added later. */ |
| 1890 | ret = 0; |
| 1891 | update_size = false; |
| 1892 | goto out; |
| 1893 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1894 | btrfs_release_path(path); |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 1895 | ret = insert_one_name(trans, root, key->objectid, key->offset, |
| 1896 | name, name_len, &log_key); |
Filipe Manana | df8d116 | 2015-01-14 01:52:25 +0000 | [diff] [blame] | 1897 | if (ret && ret != -ENOENT && ret != -EEXIST) |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1898 | goto out; |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 1899 | if (!ret) |
| 1900 | name_added = true; |
Josef Bacik | d555438 | 2013-09-11 14:17:00 -0400 | [diff] [blame] | 1901 | update_size = false; |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1902 | ret = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1903 | goto out; |
| 1904 | } |
| 1905 | |
| 1906 | /* |
| 1907 | * find all the names in a directory item and reconcile them into |
| 1908 | * the subvolume. Only BTRFS_DIR_ITEM_KEY types will have more than |
| 1909 | * one name in a directory item, but the same code gets used for |
| 1910 | * both directory index types |
| 1911 | */ |
| 1912 | static noinline int replay_one_dir_item(struct btrfs_trans_handle *trans, |
| 1913 | struct btrfs_root *root, |
| 1914 | struct btrfs_path *path, |
| 1915 | struct extent_buffer *eb, int slot, |
| 1916 | struct btrfs_key *key) |
| 1917 | { |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 1918 | int ret = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1919 | u32 item_size = btrfs_item_size_nr(eb, slot); |
| 1920 | struct btrfs_dir_item *di; |
| 1921 | int name_len; |
| 1922 | unsigned long ptr; |
| 1923 | unsigned long ptr_end; |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 1924 | struct btrfs_path *fixup_path = NULL; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1925 | |
| 1926 | ptr = btrfs_item_ptr_offset(eb, slot); |
| 1927 | ptr_end = ptr + item_size; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1928 | while (ptr < ptr_end) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1929 | di = (struct btrfs_dir_item *)ptr; |
| 1930 | name_len = btrfs_dir_name_len(eb, di); |
| 1931 | ret = replay_one_name(trans, root, path, eb, di, key); |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 1932 | if (ret < 0) |
| 1933 | break; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1934 | ptr = (unsigned long)(di + 1); |
| 1935 | ptr += name_len; |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 1936 | |
| 1937 | /* |
| 1938 | * If this entry refers to a non-directory (directories can not |
| 1939 | * have a link count > 1) and it was added in the transaction |
| 1940 | * that was not committed, make sure we fixup the link count of |
| 1941 | * the inode it the entry points to. Otherwise something like |
| 1942 | * the following would result in a directory pointing to an |
| 1943 | * inode with a wrong link that does not account for this dir |
| 1944 | * entry: |
| 1945 | * |
| 1946 | * mkdir testdir |
| 1947 | * touch testdir/foo |
| 1948 | * touch testdir/bar |
| 1949 | * sync |
| 1950 | * |
| 1951 | * ln testdir/bar testdir/bar_link |
| 1952 | * ln testdir/foo testdir/foo_link |
| 1953 | * xfs_io -c "fsync" testdir/bar |
| 1954 | * |
| 1955 | * <power failure> |
| 1956 | * |
| 1957 | * mount fs, log replay happens |
| 1958 | * |
| 1959 | * File foo would remain with a link count of 1 when it has two |
| 1960 | * entries pointing to it in the directory testdir. This would |
| 1961 | * make it impossible to ever delete the parent directory has |
| 1962 | * it would result in stale dentries that can never be deleted. |
| 1963 | */ |
| 1964 | if (ret == 1 && btrfs_dir_type(eb, di) != BTRFS_FT_DIR) { |
| 1965 | struct btrfs_key di_key; |
| 1966 | |
| 1967 | if (!fixup_path) { |
| 1968 | fixup_path = btrfs_alloc_path(); |
| 1969 | if (!fixup_path) { |
| 1970 | ret = -ENOMEM; |
| 1971 | break; |
| 1972 | } |
| 1973 | } |
| 1974 | |
| 1975 | btrfs_dir_item_key_to_cpu(eb, di, &di_key); |
| 1976 | ret = link_to_fixup_dir(trans, root, fixup_path, |
| 1977 | di_key.objectid); |
| 1978 | if (ret) |
| 1979 | break; |
| 1980 | } |
| 1981 | ret = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1982 | } |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 1983 | btrfs_free_path(fixup_path); |
| 1984 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1985 | } |
| 1986 | |
| 1987 | /* |
| 1988 | * directory replay has two parts. There are the standard directory |
| 1989 | * items in the log copied from the subvolume, and range items |
| 1990 | * created in the log while the subvolume was logged. |
| 1991 | * |
| 1992 | * The range items tell us which parts of the key space the log |
| 1993 | * is authoritative for. During replay, if a key in the subvolume |
| 1994 | * directory is in a logged range item, but not actually in the log |
| 1995 | * that means it was deleted from the directory before the fsync |
| 1996 | * and should be removed. |
| 1997 | */ |
| 1998 | static noinline int find_dir_range(struct btrfs_root *root, |
| 1999 | struct btrfs_path *path, |
| 2000 | u64 dirid, int key_type, |
| 2001 | u64 *start_ret, u64 *end_ret) |
| 2002 | { |
| 2003 | struct btrfs_key key; |
| 2004 | u64 found_end; |
| 2005 | struct btrfs_dir_log_item *item; |
| 2006 | int ret; |
| 2007 | int nritems; |
| 2008 | |
| 2009 | if (*start_ret == (u64)-1) |
| 2010 | return 1; |
| 2011 | |
| 2012 | key.objectid = dirid; |
| 2013 | key.type = key_type; |
| 2014 | key.offset = *start_ret; |
| 2015 | |
| 2016 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 2017 | if (ret < 0) |
| 2018 | goto out; |
| 2019 | if (ret > 0) { |
| 2020 | if (path->slots[0] == 0) |
| 2021 | goto out; |
| 2022 | path->slots[0]--; |
| 2023 | } |
| 2024 | if (ret != 0) |
| 2025 | btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]); |
| 2026 | |
| 2027 | if (key.type != key_type || key.objectid != dirid) { |
| 2028 | ret = 1; |
| 2029 | goto next; |
| 2030 | } |
| 2031 | item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 2032 | struct btrfs_dir_log_item); |
| 2033 | found_end = btrfs_dir_log_end(path->nodes[0], item); |
| 2034 | |
| 2035 | if (*start_ret >= key.offset && *start_ret <= found_end) { |
| 2036 | ret = 0; |
| 2037 | *start_ret = key.offset; |
| 2038 | *end_ret = found_end; |
| 2039 | goto out; |
| 2040 | } |
| 2041 | ret = 1; |
| 2042 | next: |
| 2043 | /* check the next slot in the tree to see if it is a valid item */ |
| 2044 | nritems = btrfs_header_nritems(path->nodes[0]); |
Robbie Ko | 2a7bf53 | 2016-10-07 17:30:47 +0800 | [diff] [blame] | 2045 | path->slots[0]++; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2046 | if (path->slots[0] >= nritems) { |
| 2047 | ret = btrfs_next_leaf(root, path); |
| 2048 | if (ret) |
| 2049 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2050 | } |
| 2051 | |
| 2052 | btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]); |
| 2053 | |
| 2054 | if (key.type != key_type || key.objectid != dirid) { |
| 2055 | ret = 1; |
| 2056 | goto out; |
| 2057 | } |
| 2058 | item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 2059 | struct btrfs_dir_log_item); |
| 2060 | found_end = btrfs_dir_log_end(path->nodes[0], item); |
| 2061 | *start_ret = key.offset; |
| 2062 | *end_ret = found_end; |
| 2063 | ret = 0; |
| 2064 | out: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2065 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2066 | return ret; |
| 2067 | } |
| 2068 | |
| 2069 | /* |
| 2070 | * this looks for a given directory item in the log. If the directory |
| 2071 | * item is not in the log, the item is removed and the inode it points |
| 2072 | * to is unlinked |
| 2073 | */ |
| 2074 | static noinline int check_item_in_log(struct btrfs_trans_handle *trans, |
| 2075 | struct btrfs_root *root, |
| 2076 | struct btrfs_root *log, |
| 2077 | struct btrfs_path *path, |
| 2078 | struct btrfs_path *log_path, |
| 2079 | struct inode *dir, |
| 2080 | struct btrfs_key *dir_key) |
| 2081 | { |
| 2082 | int ret; |
| 2083 | struct extent_buffer *eb; |
| 2084 | int slot; |
| 2085 | u32 item_size; |
| 2086 | struct btrfs_dir_item *di; |
| 2087 | struct btrfs_dir_item *log_di; |
| 2088 | int name_len; |
| 2089 | unsigned long ptr; |
| 2090 | unsigned long ptr_end; |
| 2091 | char *name; |
| 2092 | struct inode *inode; |
| 2093 | struct btrfs_key location; |
| 2094 | |
| 2095 | again: |
| 2096 | eb = path->nodes[0]; |
| 2097 | slot = path->slots[0]; |
| 2098 | item_size = btrfs_item_size_nr(eb, slot); |
| 2099 | ptr = btrfs_item_ptr_offset(eb, slot); |
| 2100 | ptr_end = ptr + item_size; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2101 | while (ptr < ptr_end) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2102 | di = (struct btrfs_dir_item *)ptr; |
| 2103 | name_len = btrfs_dir_name_len(eb, di); |
| 2104 | name = kmalloc(name_len, GFP_NOFS); |
| 2105 | if (!name) { |
| 2106 | ret = -ENOMEM; |
| 2107 | goto out; |
| 2108 | } |
| 2109 | read_extent_buffer(eb, name, (unsigned long)(di + 1), |
| 2110 | name_len); |
| 2111 | log_di = NULL; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2112 | if (log && dir_key->type == BTRFS_DIR_ITEM_KEY) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2113 | log_di = btrfs_lookup_dir_item(trans, log, log_path, |
| 2114 | dir_key->objectid, |
| 2115 | name, name_len, 0); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2116 | } else if (log && dir_key->type == BTRFS_DIR_INDEX_KEY) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2117 | log_di = btrfs_lookup_dir_index_item(trans, log, |
| 2118 | log_path, |
| 2119 | dir_key->objectid, |
| 2120 | dir_key->offset, |
| 2121 | name, name_len, 0); |
| 2122 | } |
Filipe David Borba Manana | 269d040 | 2013-10-28 17:39:21 +0000 | [diff] [blame] | 2123 | if (!log_di || (IS_ERR(log_di) && PTR_ERR(log_di) == -ENOENT)) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2124 | btrfs_dir_item_key_to_cpu(eb, di, &location); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2125 | btrfs_release_path(path); |
| 2126 | btrfs_release_path(log_path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2127 | inode = read_one_inode(root, location.objectid); |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 2128 | if (!inode) { |
| 2129 | kfree(name); |
| 2130 | return -EIO; |
| 2131 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2132 | |
| 2133 | ret = link_to_fixup_dir(trans, root, |
| 2134 | path, location.objectid); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 2135 | if (ret) { |
| 2136 | kfree(name); |
| 2137 | iput(inode); |
| 2138 | goto out; |
| 2139 | } |
| 2140 | |
Zach Brown | 8b558c5 | 2013-10-16 12:10:34 -0700 | [diff] [blame] | 2141 | inc_nlink(inode); |
Nikolay Borisov | 4ec5934 | 2017-01-18 00:31:44 +0200 | [diff] [blame] | 2142 | ret = btrfs_unlink_inode(trans, root, BTRFS_I(dir), |
| 2143 | BTRFS_I(inode), name, name_len); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 2144 | if (!ret) |
Nikolay Borisov | e5c304e6 | 2018-02-07 17:55:43 +0200 | [diff] [blame] | 2145 | ret = btrfs_run_delayed_items(trans); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2146 | kfree(name); |
| 2147 | iput(inode); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 2148 | if (ret) |
| 2149 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2150 | |
| 2151 | /* there might still be more names under this key |
| 2152 | * check and repeat if required |
| 2153 | */ |
| 2154 | ret = btrfs_search_slot(NULL, root, dir_key, path, |
| 2155 | 0, 0); |
| 2156 | if (ret == 0) |
| 2157 | goto again; |
| 2158 | ret = 0; |
| 2159 | goto out; |
Filipe David Borba Manana | 269d040 | 2013-10-28 17:39:21 +0000 | [diff] [blame] | 2160 | } else if (IS_ERR(log_di)) { |
| 2161 | kfree(name); |
| 2162 | return PTR_ERR(log_di); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2163 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2164 | btrfs_release_path(log_path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2165 | kfree(name); |
| 2166 | |
| 2167 | ptr = (unsigned long)(di + 1); |
| 2168 | ptr += name_len; |
| 2169 | } |
| 2170 | ret = 0; |
| 2171 | out: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2172 | btrfs_release_path(path); |
| 2173 | btrfs_release_path(log_path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2174 | return ret; |
| 2175 | } |
| 2176 | |
Filipe Manana | 4f764e5 | 2015-02-23 19:53:35 +0000 | [diff] [blame] | 2177 | static int replay_xattr_deletes(struct btrfs_trans_handle *trans, |
| 2178 | struct btrfs_root *root, |
| 2179 | struct btrfs_root *log, |
| 2180 | struct btrfs_path *path, |
| 2181 | const u64 ino) |
| 2182 | { |
| 2183 | struct btrfs_key search_key; |
| 2184 | struct btrfs_path *log_path; |
| 2185 | int i; |
| 2186 | int nritems; |
| 2187 | int ret; |
| 2188 | |
| 2189 | log_path = btrfs_alloc_path(); |
| 2190 | if (!log_path) |
| 2191 | return -ENOMEM; |
| 2192 | |
| 2193 | search_key.objectid = ino; |
| 2194 | search_key.type = BTRFS_XATTR_ITEM_KEY; |
| 2195 | search_key.offset = 0; |
| 2196 | again: |
| 2197 | ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0); |
| 2198 | if (ret < 0) |
| 2199 | goto out; |
| 2200 | process_leaf: |
| 2201 | nritems = btrfs_header_nritems(path->nodes[0]); |
| 2202 | for (i = path->slots[0]; i < nritems; i++) { |
| 2203 | struct btrfs_key key; |
| 2204 | struct btrfs_dir_item *di; |
| 2205 | struct btrfs_dir_item *log_di; |
| 2206 | u32 total_size; |
| 2207 | u32 cur; |
| 2208 | |
| 2209 | btrfs_item_key_to_cpu(path->nodes[0], &key, i); |
| 2210 | if (key.objectid != ino || key.type != BTRFS_XATTR_ITEM_KEY) { |
| 2211 | ret = 0; |
| 2212 | goto out; |
| 2213 | } |
| 2214 | |
| 2215 | di = btrfs_item_ptr(path->nodes[0], i, struct btrfs_dir_item); |
| 2216 | total_size = btrfs_item_size_nr(path->nodes[0], i); |
| 2217 | cur = 0; |
| 2218 | while (cur < total_size) { |
| 2219 | u16 name_len = btrfs_dir_name_len(path->nodes[0], di); |
| 2220 | u16 data_len = btrfs_dir_data_len(path->nodes[0], di); |
| 2221 | u32 this_len = sizeof(*di) + name_len + data_len; |
| 2222 | char *name; |
| 2223 | |
| 2224 | name = kmalloc(name_len, GFP_NOFS); |
| 2225 | if (!name) { |
| 2226 | ret = -ENOMEM; |
| 2227 | goto out; |
| 2228 | } |
| 2229 | read_extent_buffer(path->nodes[0], name, |
| 2230 | (unsigned long)(di + 1), name_len); |
| 2231 | |
| 2232 | log_di = btrfs_lookup_xattr(NULL, log, log_path, ino, |
| 2233 | name, name_len, 0); |
| 2234 | btrfs_release_path(log_path); |
| 2235 | if (!log_di) { |
| 2236 | /* Doesn't exist in log tree, so delete it. */ |
| 2237 | btrfs_release_path(path); |
| 2238 | di = btrfs_lookup_xattr(trans, root, path, ino, |
| 2239 | name, name_len, -1); |
| 2240 | kfree(name); |
| 2241 | if (IS_ERR(di)) { |
| 2242 | ret = PTR_ERR(di); |
| 2243 | goto out; |
| 2244 | } |
| 2245 | ASSERT(di); |
| 2246 | ret = btrfs_delete_one_dir_name(trans, root, |
| 2247 | path, di); |
| 2248 | if (ret) |
| 2249 | goto out; |
| 2250 | btrfs_release_path(path); |
| 2251 | search_key = key; |
| 2252 | goto again; |
| 2253 | } |
| 2254 | kfree(name); |
| 2255 | if (IS_ERR(log_di)) { |
| 2256 | ret = PTR_ERR(log_di); |
| 2257 | goto out; |
| 2258 | } |
| 2259 | cur += this_len; |
| 2260 | di = (struct btrfs_dir_item *)((char *)di + this_len); |
| 2261 | } |
| 2262 | } |
| 2263 | ret = btrfs_next_leaf(root, path); |
| 2264 | if (ret > 0) |
| 2265 | ret = 0; |
| 2266 | else if (ret == 0) |
| 2267 | goto process_leaf; |
| 2268 | out: |
| 2269 | btrfs_free_path(log_path); |
| 2270 | btrfs_release_path(path); |
| 2271 | return ret; |
| 2272 | } |
| 2273 | |
| 2274 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2275 | /* |
| 2276 | * deletion replay happens before we copy any new directory items |
| 2277 | * out of the log or out of backreferences from inodes. It |
| 2278 | * scans the log to find ranges of keys that log is authoritative for, |
| 2279 | * and then scans the directory to find items in those ranges that are |
| 2280 | * not present in the log. |
| 2281 | * |
| 2282 | * Anything we don't find in the log is unlinked and removed from the |
| 2283 | * directory. |
| 2284 | */ |
| 2285 | static noinline int replay_dir_deletes(struct btrfs_trans_handle *trans, |
| 2286 | struct btrfs_root *root, |
| 2287 | struct btrfs_root *log, |
| 2288 | struct btrfs_path *path, |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2289 | u64 dirid, int del_all) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2290 | { |
| 2291 | u64 range_start; |
| 2292 | u64 range_end; |
| 2293 | int key_type = BTRFS_DIR_LOG_ITEM_KEY; |
| 2294 | int ret = 0; |
| 2295 | struct btrfs_key dir_key; |
| 2296 | struct btrfs_key found_key; |
| 2297 | struct btrfs_path *log_path; |
| 2298 | struct inode *dir; |
| 2299 | |
| 2300 | dir_key.objectid = dirid; |
| 2301 | dir_key.type = BTRFS_DIR_ITEM_KEY; |
| 2302 | log_path = btrfs_alloc_path(); |
| 2303 | if (!log_path) |
| 2304 | return -ENOMEM; |
| 2305 | |
| 2306 | dir = read_one_inode(root, dirid); |
| 2307 | /* it isn't an error if the inode isn't there, that can happen |
| 2308 | * because we replay the deletes before we copy in the inode item |
| 2309 | * from the log |
| 2310 | */ |
| 2311 | if (!dir) { |
| 2312 | btrfs_free_path(log_path); |
| 2313 | return 0; |
| 2314 | } |
| 2315 | again: |
| 2316 | range_start = 0; |
| 2317 | range_end = 0; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2318 | while (1) { |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2319 | if (del_all) |
| 2320 | range_end = (u64)-1; |
| 2321 | else { |
| 2322 | ret = find_dir_range(log, path, dirid, key_type, |
| 2323 | &range_start, &range_end); |
| 2324 | if (ret != 0) |
| 2325 | break; |
| 2326 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2327 | |
| 2328 | dir_key.offset = range_start; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2329 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2330 | int nritems; |
| 2331 | ret = btrfs_search_slot(NULL, root, &dir_key, path, |
| 2332 | 0, 0); |
| 2333 | if (ret < 0) |
| 2334 | goto out; |
| 2335 | |
| 2336 | nritems = btrfs_header_nritems(path->nodes[0]); |
| 2337 | if (path->slots[0] >= nritems) { |
| 2338 | ret = btrfs_next_leaf(root, path); |
Liu Bo | b98def7 | 2018-04-03 01:59:48 +0800 | [diff] [blame] | 2339 | if (ret == 1) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2340 | break; |
Liu Bo | b98def7 | 2018-04-03 01:59:48 +0800 | [diff] [blame] | 2341 | else if (ret < 0) |
| 2342 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2343 | } |
| 2344 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, |
| 2345 | path->slots[0]); |
| 2346 | if (found_key.objectid != dirid || |
| 2347 | found_key.type != dir_key.type) |
| 2348 | goto next_type; |
| 2349 | |
| 2350 | if (found_key.offset > range_end) |
| 2351 | break; |
| 2352 | |
| 2353 | ret = check_item_in_log(trans, root, log, path, |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2354 | log_path, dir, |
| 2355 | &found_key); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 2356 | if (ret) |
| 2357 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2358 | if (found_key.offset == (u64)-1) |
| 2359 | break; |
| 2360 | dir_key.offset = found_key.offset + 1; |
| 2361 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2362 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2363 | if (range_end == (u64)-1) |
| 2364 | break; |
| 2365 | range_start = range_end + 1; |
| 2366 | } |
| 2367 | |
| 2368 | next_type: |
| 2369 | ret = 0; |
| 2370 | if (key_type == BTRFS_DIR_LOG_ITEM_KEY) { |
| 2371 | key_type = BTRFS_DIR_LOG_INDEX_KEY; |
| 2372 | dir_key.type = BTRFS_DIR_INDEX_KEY; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2373 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2374 | goto again; |
| 2375 | } |
| 2376 | out: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2377 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2378 | btrfs_free_path(log_path); |
| 2379 | iput(dir); |
| 2380 | return ret; |
| 2381 | } |
| 2382 | |
| 2383 | /* |
| 2384 | * the process_func used to replay items from the log tree. This |
| 2385 | * gets called in two different stages. The first stage just looks |
| 2386 | * for inodes and makes sure they are all copied into the subvolume. |
| 2387 | * |
| 2388 | * The second stage copies all the other item types from the log into |
| 2389 | * the subvolume. The two stage approach is slower, but gets rid of |
| 2390 | * lots of complexity around inodes referencing other inodes that exist |
| 2391 | * only in the log (references come from either directory items or inode |
| 2392 | * back refs). |
| 2393 | */ |
| 2394 | 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] | 2395 | struct walk_control *wc, u64 gen, int level) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2396 | { |
| 2397 | int nritems; |
| 2398 | struct btrfs_path *path; |
| 2399 | struct btrfs_root *root = wc->replay_dest; |
| 2400 | struct btrfs_key key; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2401 | int i; |
| 2402 | int ret; |
| 2403 | |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 2404 | ret = btrfs_read_buffer(eb, gen, level, NULL); |
Tsutomu Itoh | 018642a | 2012-05-29 18:10:13 +0900 | [diff] [blame] | 2405 | if (ret) |
| 2406 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2407 | |
| 2408 | level = btrfs_header_level(eb); |
| 2409 | |
| 2410 | if (level != 0) |
| 2411 | return 0; |
| 2412 | |
| 2413 | path = btrfs_alloc_path(); |
Mark Fasheh | 1e5063d | 2011-07-12 10:46:06 -0700 | [diff] [blame] | 2414 | if (!path) |
| 2415 | return -ENOMEM; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2416 | |
| 2417 | nritems = btrfs_header_nritems(eb); |
| 2418 | for (i = 0; i < nritems; i++) { |
| 2419 | btrfs_item_key_to_cpu(eb, &key, i); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2420 | |
| 2421 | /* inode keys are done during the first stage */ |
| 2422 | if (key.type == BTRFS_INODE_ITEM_KEY && |
| 2423 | wc->stage == LOG_WALK_REPLAY_INODES) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2424 | struct btrfs_inode_item *inode_item; |
| 2425 | u32 mode; |
| 2426 | |
| 2427 | inode_item = btrfs_item_ptr(eb, i, |
| 2428 | struct btrfs_inode_item); |
Filipe Manana | 4f764e5 | 2015-02-23 19:53:35 +0000 | [diff] [blame] | 2429 | ret = replay_xattr_deletes(wc->trans, root, log, |
| 2430 | path, key.objectid); |
| 2431 | if (ret) |
| 2432 | break; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2433 | mode = btrfs_inode_mode(eb, inode_item); |
| 2434 | if (S_ISDIR(mode)) { |
| 2435 | ret = replay_dir_deletes(wc->trans, |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2436 | root, log, path, key.objectid, 0); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2437 | if (ret) |
| 2438 | break; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2439 | } |
| 2440 | ret = overwrite_item(wc->trans, root, path, |
| 2441 | eb, i, &key); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2442 | if (ret) |
| 2443 | break; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2444 | |
Filipe Manana | 471d557 | 2018-04-05 22:55:12 +0100 | [diff] [blame] | 2445 | /* |
| 2446 | * Before replaying extents, truncate the inode to its |
| 2447 | * size. We need to do it now and not after log replay |
| 2448 | * because before an fsync we can have prealloc extents |
| 2449 | * added beyond the inode's i_size. If we did it after, |
| 2450 | * through orphan cleanup for example, we would drop |
| 2451 | * those prealloc extents just after replaying them. |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2452 | */ |
| 2453 | if (S_ISREG(mode)) { |
Filipe Manana | 471d557 | 2018-04-05 22:55:12 +0100 | [diff] [blame] | 2454 | struct inode *inode; |
| 2455 | u64 from; |
| 2456 | |
| 2457 | inode = read_one_inode(root, key.objectid); |
| 2458 | if (!inode) { |
| 2459 | ret = -EIO; |
| 2460 | break; |
| 2461 | } |
| 2462 | from = ALIGN(i_size_read(inode), |
| 2463 | root->fs_info->sectorsize); |
| 2464 | ret = btrfs_drop_extents(wc->trans, root, inode, |
| 2465 | from, (u64)-1, 1); |
| 2466 | /* |
| 2467 | * If the nlink count is zero here, the iput |
| 2468 | * will free the inode. We bump it to make |
| 2469 | * sure it doesn't get freed until the link |
| 2470 | * count fixup is done. |
| 2471 | */ |
| 2472 | if (!ret) { |
| 2473 | if (inode->i_nlink == 0) |
| 2474 | inc_nlink(inode); |
| 2475 | /* Update link count and nbytes. */ |
| 2476 | ret = btrfs_update_inode(wc->trans, |
| 2477 | root, inode); |
| 2478 | } |
| 2479 | iput(inode); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2480 | if (ret) |
| 2481 | break; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2482 | } |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 2483 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2484 | ret = link_to_fixup_dir(wc->trans, root, |
| 2485 | path, key.objectid); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2486 | if (ret) |
| 2487 | break; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2488 | } |
Josef Bacik | dd8e721 | 2013-09-11 11:57:23 -0400 | [diff] [blame] | 2489 | |
| 2490 | if (key.type == BTRFS_DIR_INDEX_KEY && |
| 2491 | wc->stage == LOG_WALK_REPLAY_DIR_INDEX) { |
| 2492 | ret = replay_one_dir_item(wc->trans, root, path, |
| 2493 | eb, i, &key); |
| 2494 | if (ret) |
| 2495 | break; |
| 2496 | } |
| 2497 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2498 | if (wc->stage < LOG_WALK_REPLAY_ALL) |
| 2499 | continue; |
| 2500 | |
| 2501 | /* these keys are simply copied */ |
| 2502 | if (key.type == BTRFS_XATTR_ITEM_KEY) { |
| 2503 | ret = overwrite_item(wc->trans, root, path, |
| 2504 | eb, i, &key); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2505 | if (ret) |
| 2506 | break; |
Liu Bo | 2da1c66 | 2013-05-26 13:50:29 +0000 | [diff] [blame] | 2507 | } else if (key.type == BTRFS_INODE_REF_KEY || |
| 2508 | key.type == BTRFS_INODE_EXTREF_KEY) { |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 2509 | ret = add_inode_ref(wc->trans, root, log, path, |
| 2510 | eb, i, &key); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2511 | if (ret && ret != -ENOENT) |
| 2512 | break; |
| 2513 | ret = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2514 | } else if (key.type == BTRFS_EXTENT_DATA_KEY) { |
| 2515 | ret = replay_one_extent(wc->trans, root, path, |
| 2516 | eb, i, &key); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2517 | if (ret) |
| 2518 | break; |
Josef Bacik | dd8e721 | 2013-09-11 11:57:23 -0400 | [diff] [blame] | 2519 | } else if (key.type == BTRFS_DIR_ITEM_KEY) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2520 | ret = replay_one_dir_item(wc->trans, root, path, |
| 2521 | eb, i, &key); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2522 | if (ret) |
| 2523 | break; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2524 | } |
| 2525 | } |
| 2526 | btrfs_free_path(path); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2527 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2528 | } |
| 2529 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2530 | static noinline int walk_down_log_tree(struct btrfs_trans_handle *trans, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2531 | struct btrfs_root *root, |
| 2532 | struct btrfs_path *path, int *level, |
| 2533 | struct walk_control *wc) |
| 2534 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2535 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2536 | u64 root_owner; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2537 | u64 bytenr; |
| 2538 | u64 ptr_gen; |
| 2539 | struct extent_buffer *next; |
| 2540 | struct extent_buffer *cur; |
| 2541 | struct extent_buffer *parent; |
| 2542 | u32 blocksize; |
| 2543 | int ret = 0; |
| 2544 | |
| 2545 | WARN_ON(*level < 0); |
| 2546 | WARN_ON(*level >= BTRFS_MAX_LEVEL); |
| 2547 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2548 | while (*level > 0) { |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 2549 | struct btrfs_key first_key; |
| 2550 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2551 | WARN_ON(*level < 0); |
| 2552 | WARN_ON(*level >= BTRFS_MAX_LEVEL); |
| 2553 | cur = path->nodes[*level]; |
| 2554 | |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 2555 | WARN_ON(btrfs_header_level(cur) != *level); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2556 | |
| 2557 | if (path->slots[*level] >= |
| 2558 | btrfs_header_nritems(cur)) |
| 2559 | break; |
| 2560 | |
| 2561 | bytenr = btrfs_node_blockptr(cur, path->slots[*level]); |
| 2562 | ptr_gen = btrfs_node_ptr_generation(cur, path->slots[*level]); |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 2563 | btrfs_node_key_to_cpu(cur, &first_key, path->slots[*level]); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2564 | blocksize = fs_info->nodesize; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2565 | |
| 2566 | parent = path->nodes[*level]; |
| 2567 | root_owner = btrfs_header_owner(parent); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2568 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2569 | next = btrfs_find_create_tree_block(fs_info, bytenr); |
Liu Bo | c871b0f | 2016-06-06 12:01:23 -0700 | [diff] [blame] | 2570 | if (IS_ERR(next)) |
| 2571 | return PTR_ERR(next); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2572 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2573 | if (*level == 1) { |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 2574 | ret = wc->process_func(root, next, wc, ptr_gen, |
| 2575 | *level - 1); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2576 | if (ret) { |
| 2577 | free_extent_buffer(next); |
Mark Fasheh | 1e5063d | 2011-07-12 10:46:06 -0700 | [diff] [blame] | 2578 | return ret; |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2579 | } |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2580 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2581 | path->slots[*level]++; |
| 2582 | if (wc->free) { |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 2583 | ret = btrfs_read_buffer(next, ptr_gen, |
| 2584 | *level - 1, &first_key); |
Tsutomu Itoh | 018642a | 2012-05-29 18:10:13 +0900 | [diff] [blame] | 2585 | if (ret) { |
| 2586 | free_extent_buffer(next); |
| 2587 | return ret; |
| 2588 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2589 | |
Josef Bacik | 681ae50 | 2013-10-07 15:11:00 -0400 | [diff] [blame] | 2590 | if (trans) { |
| 2591 | btrfs_tree_lock(next); |
| 2592 | btrfs_set_lock_blocking(next); |
David Sterba | 7c302b4 | 2017-02-10 18:47:57 +0100 | [diff] [blame] | 2593 | clean_tree_block(fs_info, next); |
Josef Bacik | 681ae50 | 2013-10-07 15:11:00 -0400 | [diff] [blame] | 2594 | btrfs_wait_tree_block_writeback(next); |
| 2595 | btrfs_tree_unlock(next); |
Liu Bo | 1846430 | 2018-01-25 11:02:51 -0700 | [diff] [blame] | 2596 | } else { |
| 2597 | if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &next->bflags)) |
| 2598 | clear_extent_buffer_dirty(next); |
Josef Bacik | 681ae50 | 2013-10-07 15:11:00 -0400 | [diff] [blame] | 2599 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2600 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2601 | WARN_ON(root_owner != |
| 2602 | BTRFS_TREE_LOG_OBJECTID); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2603 | ret = btrfs_free_and_pin_reserved_extent( |
| 2604 | fs_info, bytenr, |
| 2605 | blocksize); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 2606 | if (ret) { |
| 2607 | free_extent_buffer(next); |
| 2608 | return ret; |
| 2609 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2610 | } |
| 2611 | free_extent_buffer(next); |
| 2612 | continue; |
| 2613 | } |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 2614 | ret = btrfs_read_buffer(next, ptr_gen, *level - 1, &first_key); |
Tsutomu Itoh | 018642a | 2012-05-29 18:10:13 +0900 | [diff] [blame] | 2615 | if (ret) { |
| 2616 | free_extent_buffer(next); |
| 2617 | return ret; |
| 2618 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2619 | |
| 2620 | WARN_ON(*level <= 0); |
| 2621 | if (path->nodes[*level-1]) |
| 2622 | free_extent_buffer(path->nodes[*level-1]); |
| 2623 | path->nodes[*level-1] = next; |
| 2624 | *level = btrfs_header_level(next); |
| 2625 | path->slots[*level] = 0; |
| 2626 | cond_resched(); |
| 2627 | } |
| 2628 | WARN_ON(*level < 0); |
| 2629 | WARN_ON(*level >= BTRFS_MAX_LEVEL); |
| 2630 | |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2631 | path->slots[*level] = btrfs_header_nritems(path->nodes[*level]); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2632 | |
| 2633 | cond_resched(); |
| 2634 | return 0; |
| 2635 | } |
| 2636 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2637 | static noinline int walk_up_log_tree(struct btrfs_trans_handle *trans, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2638 | struct btrfs_root *root, |
| 2639 | struct btrfs_path *path, int *level, |
| 2640 | struct walk_control *wc) |
| 2641 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2642 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2643 | u64 root_owner; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2644 | int i; |
| 2645 | int slot; |
| 2646 | int ret; |
| 2647 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2648 | for (i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2649 | slot = path->slots[i]; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2650 | if (slot + 1 < btrfs_header_nritems(path->nodes[i])) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2651 | path->slots[i]++; |
| 2652 | *level = i; |
| 2653 | WARN_ON(*level == 0); |
| 2654 | return 0; |
| 2655 | } else { |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2656 | struct extent_buffer *parent; |
| 2657 | if (path->nodes[*level] == root->node) |
| 2658 | parent = path->nodes[*level]; |
| 2659 | else |
| 2660 | parent = path->nodes[*level + 1]; |
| 2661 | |
| 2662 | root_owner = btrfs_header_owner(parent); |
Mark Fasheh | 1e5063d | 2011-07-12 10:46:06 -0700 | [diff] [blame] | 2663 | ret = wc->process_func(root, path->nodes[*level], wc, |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 2664 | btrfs_header_generation(path->nodes[*level]), |
| 2665 | *level); |
Mark Fasheh | 1e5063d | 2011-07-12 10:46:06 -0700 | [diff] [blame] | 2666 | if (ret) |
| 2667 | return ret; |
| 2668 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2669 | if (wc->free) { |
| 2670 | struct extent_buffer *next; |
| 2671 | |
| 2672 | next = path->nodes[*level]; |
| 2673 | |
Josef Bacik | 681ae50 | 2013-10-07 15:11:00 -0400 | [diff] [blame] | 2674 | if (trans) { |
| 2675 | btrfs_tree_lock(next); |
| 2676 | btrfs_set_lock_blocking(next); |
David Sterba | 7c302b4 | 2017-02-10 18:47:57 +0100 | [diff] [blame] | 2677 | clean_tree_block(fs_info, next); |
Josef Bacik | 681ae50 | 2013-10-07 15:11:00 -0400 | [diff] [blame] | 2678 | btrfs_wait_tree_block_writeback(next); |
| 2679 | btrfs_tree_unlock(next); |
Liu Bo | 1846430 | 2018-01-25 11:02:51 -0700 | [diff] [blame] | 2680 | } else { |
| 2681 | if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &next->bflags)) |
| 2682 | clear_extent_buffer_dirty(next); |
Josef Bacik | 681ae50 | 2013-10-07 15:11:00 -0400 | [diff] [blame] | 2683 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2684 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2685 | WARN_ON(root_owner != BTRFS_TREE_LOG_OBJECTID); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2686 | ret = btrfs_free_and_pin_reserved_extent( |
| 2687 | fs_info, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2688 | path->nodes[*level]->start, |
Chris Mason | d00aff0 | 2008-09-11 15:54:42 -0400 | [diff] [blame] | 2689 | path->nodes[*level]->len); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 2690 | if (ret) |
| 2691 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2692 | } |
| 2693 | free_extent_buffer(path->nodes[*level]); |
| 2694 | path->nodes[*level] = NULL; |
| 2695 | *level = i + 1; |
| 2696 | } |
| 2697 | } |
| 2698 | return 1; |
| 2699 | } |
| 2700 | |
| 2701 | /* |
| 2702 | * drop the reference count on the tree rooted at 'snap'. This traverses |
| 2703 | * the tree freeing any blocks that have a ref count of zero after being |
| 2704 | * decremented. |
| 2705 | */ |
| 2706 | static int walk_log_tree(struct btrfs_trans_handle *trans, |
| 2707 | struct btrfs_root *log, struct walk_control *wc) |
| 2708 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2709 | struct btrfs_fs_info *fs_info = log->fs_info; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2710 | int ret = 0; |
| 2711 | int wret; |
| 2712 | int level; |
| 2713 | struct btrfs_path *path; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2714 | int orig_level; |
| 2715 | |
| 2716 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 2717 | if (!path) |
| 2718 | return -ENOMEM; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2719 | |
| 2720 | level = btrfs_header_level(log->node); |
| 2721 | orig_level = level; |
| 2722 | path->nodes[level] = log->node; |
| 2723 | extent_buffer_get(log->node); |
| 2724 | path->slots[level] = 0; |
| 2725 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2726 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2727 | wret = walk_down_log_tree(trans, log, path, &level, wc); |
| 2728 | if (wret > 0) |
| 2729 | break; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2730 | if (wret < 0) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2731 | ret = wret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2732 | goto out; |
| 2733 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2734 | |
| 2735 | wret = walk_up_log_tree(trans, log, path, &level, wc); |
| 2736 | if (wret > 0) |
| 2737 | break; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2738 | if (wret < 0) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2739 | ret = wret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2740 | goto out; |
| 2741 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2742 | } |
| 2743 | |
| 2744 | /* was the root node processed? if not, catch it here */ |
| 2745 | if (path->nodes[orig_level]) { |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2746 | ret = wc->process_func(log, path->nodes[orig_level], wc, |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 2747 | btrfs_header_generation(path->nodes[orig_level]), |
| 2748 | orig_level); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2749 | if (ret) |
| 2750 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2751 | if (wc->free) { |
| 2752 | struct extent_buffer *next; |
| 2753 | |
| 2754 | next = path->nodes[orig_level]; |
| 2755 | |
Josef Bacik | 681ae50 | 2013-10-07 15:11:00 -0400 | [diff] [blame] | 2756 | if (trans) { |
| 2757 | btrfs_tree_lock(next); |
| 2758 | btrfs_set_lock_blocking(next); |
David Sterba | 7c302b4 | 2017-02-10 18:47:57 +0100 | [diff] [blame] | 2759 | clean_tree_block(fs_info, next); |
Josef Bacik | 681ae50 | 2013-10-07 15:11:00 -0400 | [diff] [blame] | 2760 | btrfs_wait_tree_block_writeback(next); |
| 2761 | btrfs_tree_unlock(next); |
Liu Bo | 1846430 | 2018-01-25 11:02:51 -0700 | [diff] [blame] | 2762 | } else { |
| 2763 | if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &next->bflags)) |
| 2764 | clear_extent_buffer_dirty(next); |
Josef Bacik | 681ae50 | 2013-10-07 15:11:00 -0400 | [diff] [blame] | 2765 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2766 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2767 | WARN_ON(log->root_key.objectid != |
| 2768 | BTRFS_TREE_LOG_OBJECTID); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2769 | ret = btrfs_free_and_pin_reserved_extent(fs_info, |
| 2770 | next->start, next->len); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 2771 | if (ret) |
| 2772 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2773 | } |
| 2774 | } |
| 2775 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2776 | out: |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2777 | btrfs_free_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2778 | return ret; |
| 2779 | } |
| 2780 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2781 | /* |
| 2782 | * helper function to update the item for a given subvolumes log root |
| 2783 | * in the tree of log roots |
| 2784 | */ |
| 2785 | static int update_log_root(struct btrfs_trans_handle *trans, |
| 2786 | struct btrfs_root *log) |
| 2787 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2788 | struct btrfs_fs_info *fs_info = log->fs_info; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2789 | int ret; |
| 2790 | |
| 2791 | if (log->log_transid == 1) { |
| 2792 | /* insert root item on the first sync */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2793 | ret = btrfs_insert_root(trans, fs_info->log_root_tree, |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2794 | &log->root_key, &log->root_item); |
| 2795 | } else { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2796 | ret = btrfs_update_root(trans, fs_info->log_root_tree, |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2797 | &log->root_key, &log->root_item); |
| 2798 | } |
| 2799 | return ret; |
| 2800 | } |
| 2801 | |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 2802 | static void wait_log_commit(struct btrfs_root *root, int transid) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2803 | { |
| 2804 | DEFINE_WAIT(wait); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2805 | int index = transid % 2; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2806 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2807 | /* |
| 2808 | * we only allow two pending log transactions at a time, |
| 2809 | * so we know that if ours is more than 2 older than the |
| 2810 | * current transaction, we're done |
| 2811 | */ |
Liu Bo | 49e83f5 | 2017-09-01 16:14:30 -0600 | [diff] [blame] | 2812 | for (;;) { |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2813 | prepare_to_wait(&root->log_commit_wait[index], |
| 2814 | &wait, TASK_UNINTERRUPTIBLE); |
Liu Bo | 49e83f5 | 2017-09-01 16:14:30 -0600 | [diff] [blame] | 2815 | |
| 2816 | if (!(root->log_transid_committed < transid && |
| 2817 | atomic_read(&root->log_commit[index]))) |
| 2818 | break; |
| 2819 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2820 | mutex_unlock(&root->log_mutex); |
Liu Bo | 49e83f5 | 2017-09-01 16:14:30 -0600 | [diff] [blame] | 2821 | schedule(); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2822 | mutex_lock(&root->log_mutex); |
Liu Bo | 49e83f5 | 2017-09-01 16:14:30 -0600 | [diff] [blame] | 2823 | } |
| 2824 | finish_wait(&root->log_commit_wait[index], &wait); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2825 | } |
| 2826 | |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 2827 | static void wait_for_writer(struct btrfs_root *root) |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2828 | { |
| 2829 | DEFINE_WAIT(wait); |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 2830 | |
Liu Bo | 49e83f5 | 2017-09-01 16:14:30 -0600 | [diff] [blame] | 2831 | for (;;) { |
| 2832 | prepare_to_wait(&root->log_writer_wait, &wait, |
| 2833 | TASK_UNINTERRUPTIBLE); |
| 2834 | if (!atomic_read(&root->log_writers)) |
| 2835 | break; |
| 2836 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2837 | mutex_unlock(&root->log_mutex); |
Liu Bo | 49e83f5 | 2017-09-01 16:14:30 -0600 | [diff] [blame] | 2838 | schedule(); |
Filipe Manana | 575849e | 2015-02-11 11:12:39 +0000 | [diff] [blame] | 2839 | mutex_lock(&root->log_mutex); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2840 | } |
Liu Bo | 49e83f5 | 2017-09-01 16:14:30 -0600 | [diff] [blame] | 2841 | finish_wait(&root->log_writer_wait, &wait); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2842 | } |
| 2843 | |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 2844 | static inline void btrfs_remove_log_ctx(struct btrfs_root *root, |
| 2845 | struct btrfs_log_ctx *ctx) |
| 2846 | { |
| 2847 | if (!ctx) |
| 2848 | return; |
| 2849 | |
| 2850 | mutex_lock(&root->log_mutex); |
| 2851 | list_del_init(&ctx->list); |
| 2852 | mutex_unlock(&root->log_mutex); |
| 2853 | } |
| 2854 | |
| 2855 | /* |
| 2856 | * Invoked in log mutex context, or be sure there is no other task which |
| 2857 | * can access the list. |
| 2858 | */ |
| 2859 | static inline void btrfs_remove_all_log_ctxs(struct btrfs_root *root, |
| 2860 | int index, int error) |
| 2861 | { |
| 2862 | struct btrfs_log_ctx *ctx; |
Chris Mason | 570dd45 | 2016-10-27 10:42:20 -0700 | [diff] [blame] | 2863 | struct btrfs_log_ctx *safe; |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 2864 | |
Chris Mason | 570dd45 | 2016-10-27 10:42:20 -0700 | [diff] [blame] | 2865 | list_for_each_entry_safe(ctx, safe, &root->log_ctxs[index], list) { |
| 2866 | list_del_init(&ctx->list); |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 2867 | ctx->log_ret = error; |
Chris Mason | 570dd45 | 2016-10-27 10:42:20 -0700 | [diff] [blame] | 2868 | } |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 2869 | |
| 2870 | INIT_LIST_HEAD(&root->log_ctxs[index]); |
| 2871 | } |
| 2872 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2873 | /* |
| 2874 | * btrfs_sync_log does sends a given tree log down to the disk and |
| 2875 | * updates the super blocks to record it. When this call is done, |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2876 | * you know that any inodes previously logged are safely on disk only |
| 2877 | * if it returns 0. |
| 2878 | * |
| 2879 | * Any other return value means you need to call btrfs_commit_transaction. |
| 2880 | * Some of the edge cases for fsyncing directories that have had unlinks |
| 2881 | * or renames done in the past mean that sometimes the only safe |
| 2882 | * fsync is to commit the whole FS. When btrfs_sync_log returns -EAGAIN, |
| 2883 | * that has happened. |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2884 | */ |
| 2885 | int btrfs_sync_log(struct btrfs_trans_handle *trans, |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 2886 | struct btrfs_root *root, struct btrfs_log_ctx *ctx) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2887 | { |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2888 | int index1; |
| 2889 | int index2; |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 2890 | int mark; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2891 | int ret; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2892 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2893 | struct btrfs_root *log = root->log_root; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2894 | struct btrfs_root *log_root_tree = fs_info->log_root_tree; |
Miao Xie | bb14a59 | 2014-02-20 18:08:56 +0800 | [diff] [blame] | 2895 | int log_transid = 0; |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 2896 | struct btrfs_log_ctx root_log_ctx; |
Miao Xie | c6adc9c | 2013-05-28 10:05:39 +0000 | [diff] [blame] | 2897 | struct blk_plug plug; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2898 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2899 | mutex_lock(&root->log_mutex); |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 2900 | log_transid = ctx->log_transid; |
| 2901 | if (root->log_transid_committed >= log_transid) { |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2902 | mutex_unlock(&root->log_mutex); |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 2903 | return ctx->log_ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2904 | } |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 2905 | |
| 2906 | index1 = log_transid % 2; |
| 2907 | if (atomic_read(&root->log_commit[index1])) { |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 2908 | wait_log_commit(root, log_transid); |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 2909 | mutex_unlock(&root->log_mutex); |
| 2910 | return ctx->log_ret; |
| 2911 | } |
| 2912 | ASSERT(log_transid == root->log_transid); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2913 | atomic_set(&root->log_commit[index1], 1); |
| 2914 | |
| 2915 | /* wait for previous tree log sync to complete */ |
| 2916 | if (atomic_read(&root->log_commit[(index1 + 1) % 2])) |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 2917 | wait_log_commit(root, log_transid - 1); |
Miao Xie | 48cab2e | 2014-02-20 18:08:52 +0800 | [diff] [blame] | 2918 | |
Yan, Zheng | 86df7eb | 2009-10-14 09:24:59 -0400 | [diff] [blame] | 2919 | while (1) { |
Miao Xie | 2ecb792 | 2012-09-06 04:04:27 -0600 | [diff] [blame] | 2920 | int batch = atomic_read(&root->log_batch); |
Chris Mason | cd354ad | 2011-10-20 15:45:37 -0400 | [diff] [blame] | 2921 | /* when we're on an ssd, just kick the log commit out */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2922 | if (!btrfs_test_opt(fs_info, SSD) && |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 2923 | test_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state)) { |
Yan, Zheng | 86df7eb | 2009-10-14 09:24:59 -0400 | [diff] [blame] | 2924 | mutex_unlock(&root->log_mutex); |
| 2925 | schedule_timeout_uninterruptible(1); |
| 2926 | mutex_lock(&root->log_mutex); |
| 2927 | } |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 2928 | wait_for_writer(root); |
Miao Xie | 2ecb792 | 2012-09-06 04:04:27 -0600 | [diff] [blame] | 2929 | if (batch == atomic_read(&root->log_batch)) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2930 | break; |
| 2931 | } |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 2932 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2933 | /* bail out if we need to do a full commit */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2934 | if (btrfs_need_log_full_commit(fs_info, trans)) { |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2935 | ret = -EAGAIN; |
| 2936 | mutex_unlock(&root->log_mutex); |
| 2937 | goto out; |
| 2938 | } |
| 2939 | |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 2940 | if (log_transid % 2 == 0) |
| 2941 | mark = EXTENT_DIRTY; |
| 2942 | else |
| 2943 | mark = EXTENT_NEW; |
| 2944 | |
Chris Mason | 690587d | 2009-10-13 13:29:19 -0400 | [diff] [blame] | 2945 | /* we start IO on all the marked extents here, but we don't actually |
| 2946 | * wait for them until later. |
| 2947 | */ |
Miao Xie | c6adc9c | 2013-05-28 10:05:39 +0000 | [diff] [blame] | 2948 | blk_start_plug(&plug); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2949 | ret = btrfs_write_marked_extents(fs_info, &log->dirty_log_pages, mark); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2950 | if (ret) { |
Miao Xie | c6adc9c | 2013-05-28 10:05:39 +0000 | [diff] [blame] | 2951 | blk_finish_plug(&plug); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2952 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2953 | btrfs_set_log_full_commit(fs_info, trans); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2954 | mutex_unlock(&root->log_mutex); |
| 2955 | goto out; |
| 2956 | } |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2957 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2958 | btrfs_set_root_node(&log->root_item, log->node); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2959 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2960 | root->log_transid++; |
| 2961 | log->log_transid = root->log_transid; |
Josef Bacik | ff782e0 | 2009-10-08 15:30:04 -0400 | [diff] [blame] | 2962 | root->log_start_pid = 0; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2963 | /* |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 2964 | * IO has been started, blocks of the log tree have WRITTEN flag set |
| 2965 | * in their headers. new modifications of the log will be written to |
| 2966 | * 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] | 2967 | */ |
| 2968 | mutex_unlock(&root->log_mutex); |
| 2969 | |
Filipe Manana | 28a2359 | 2016-08-23 21:13:51 +0100 | [diff] [blame] | 2970 | btrfs_init_log_ctx(&root_log_ctx, NULL); |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 2971 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2972 | mutex_lock(&log_root_tree->log_mutex); |
Miao Xie | 2ecb792 | 2012-09-06 04:04:27 -0600 | [diff] [blame] | 2973 | atomic_inc(&log_root_tree->log_batch); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2974 | atomic_inc(&log_root_tree->log_writers); |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 2975 | |
| 2976 | index2 = log_root_tree->log_transid % 2; |
| 2977 | list_add_tail(&root_log_ctx.list, &log_root_tree->log_ctxs[index2]); |
| 2978 | root_log_ctx.log_transid = log_root_tree->log_transid; |
| 2979 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2980 | mutex_unlock(&log_root_tree->log_mutex); |
| 2981 | |
| 2982 | ret = update_log_root(trans, log); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2983 | |
| 2984 | mutex_lock(&log_root_tree->log_mutex); |
| 2985 | if (atomic_dec_and_test(&log_root_tree->log_writers)) { |
David Sterba | 093258e | 2018-02-26 16:15:17 +0100 | [diff] [blame] | 2986 | /* atomic_dec_and_test implies a barrier */ |
| 2987 | cond_wake_up_nomb(&log_root_tree->log_writer_wait); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2988 | } |
| 2989 | |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2990 | if (ret) { |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 2991 | if (!list_empty(&root_log_ctx.list)) |
| 2992 | list_del_init(&root_log_ctx.list); |
| 2993 | |
Miao Xie | c6adc9c | 2013-05-28 10:05:39 +0000 | [diff] [blame] | 2994 | blk_finish_plug(&plug); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2995 | btrfs_set_log_full_commit(fs_info, trans); |
Miao Xie | 995946d | 2014-04-02 19:51:06 +0800 | [diff] [blame] | 2996 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2997 | if (ret != -ENOSPC) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2998 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2999 | mutex_unlock(&log_root_tree->log_mutex); |
| 3000 | goto out; |
| 3001 | } |
Jeff Mahoney | bf89d38 | 2016-09-09 20:42:44 -0400 | [diff] [blame] | 3002 | btrfs_wait_tree_log_extents(log, mark); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3003 | mutex_unlock(&log_root_tree->log_mutex); |
| 3004 | ret = -EAGAIN; |
| 3005 | goto out; |
| 3006 | } |
| 3007 | |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3008 | if (log_root_tree->log_transid_committed >= root_log_ctx.log_transid) { |
Forrest Liu | 3da5ab5 | 2015-01-30 19:42:12 +0800 | [diff] [blame] | 3009 | blk_finish_plug(&plug); |
Chris Mason | cbd60aa | 2016-09-06 05:37:40 -0700 | [diff] [blame] | 3010 | list_del_init(&root_log_ctx.list); |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3011 | mutex_unlock(&log_root_tree->log_mutex); |
| 3012 | ret = root_log_ctx.log_ret; |
| 3013 | goto out; |
| 3014 | } |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 3015 | |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3016 | index2 = root_log_ctx.log_transid % 2; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3017 | if (atomic_read(&log_root_tree->log_commit[index2])) { |
Miao Xie | c6adc9c | 2013-05-28 10:05:39 +0000 | [diff] [blame] | 3018 | blk_finish_plug(&plug); |
Jeff Mahoney | bf89d38 | 2016-09-09 20:42:44 -0400 | [diff] [blame] | 3019 | ret = btrfs_wait_tree_log_extents(log, mark); |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 3020 | wait_log_commit(log_root_tree, |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3021 | root_log_ctx.log_transid); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3022 | mutex_unlock(&log_root_tree->log_mutex); |
Filipe Manana | 5ab5e44 | 2014-11-13 16:59:53 +0000 | [diff] [blame] | 3023 | if (!ret) |
| 3024 | ret = root_log_ctx.log_ret; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3025 | goto out; |
| 3026 | } |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3027 | ASSERT(root_log_ctx.log_transid == log_root_tree->log_transid); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3028 | atomic_set(&log_root_tree->log_commit[index2], 1); |
| 3029 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3030 | if (atomic_read(&log_root_tree->log_commit[(index2 + 1) % 2])) { |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 3031 | wait_log_commit(log_root_tree, |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3032 | root_log_ctx.log_transid - 1); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3033 | } |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3034 | |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 3035 | wait_for_writer(log_root_tree); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3036 | |
| 3037 | /* |
| 3038 | * now that we've moved on to the tree of log tree roots, |
| 3039 | * check the full commit flag again |
| 3040 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3041 | if (btrfs_need_log_full_commit(fs_info, trans)) { |
Miao Xie | c6adc9c | 2013-05-28 10:05:39 +0000 | [diff] [blame] | 3042 | blk_finish_plug(&plug); |
Jeff Mahoney | bf89d38 | 2016-09-09 20:42:44 -0400 | [diff] [blame] | 3043 | btrfs_wait_tree_log_extents(log, mark); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3044 | mutex_unlock(&log_root_tree->log_mutex); |
| 3045 | ret = -EAGAIN; |
| 3046 | goto out_wake_log_root; |
| 3047 | } |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3048 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3049 | ret = btrfs_write_marked_extents(fs_info, |
Miao Xie | c6adc9c | 2013-05-28 10:05:39 +0000 | [diff] [blame] | 3050 | &log_root_tree->dirty_log_pages, |
| 3051 | EXTENT_DIRTY | EXTENT_NEW); |
| 3052 | blk_finish_plug(&plug); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3053 | if (ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3054 | btrfs_set_log_full_commit(fs_info, trans); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3055 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3056 | mutex_unlock(&log_root_tree->log_mutex); |
| 3057 | goto out_wake_log_root; |
| 3058 | } |
Jeff Mahoney | bf89d38 | 2016-09-09 20:42:44 -0400 | [diff] [blame] | 3059 | ret = btrfs_wait_tree_log_extents(log, mark); |
Filipe Manana | 5ab5e44 | 2014-11-13 16:59:53 +0000 | [diff] [blame] | 3060 | if (!ret) |
Jeff Mahoney | bf89d38 | 2016-09-09 20:42:44 -0400 | [diff] [blame] | 3061 | ret = btrfs_wait_tree_log_extents(log_root_tree, |
| 3062 | EXTENT_NEW | EXTENT_DIRTY); |
Filipe Manana | 5ab5e44 | 2014-11-13 16:59:53 +0000 | [diff] [blame] | 3063 | if (ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3064 | btrfs_set_log_full_commit(fs_info, trans); |
Filipe Manana | 5ab5e44 | 2014-11-13 16:59:53 +0000 | [diff] [blame] | 3065 | mutex_unlock(&log_root_tree->log_mutex); |
| 3066 | goto out_wake_log_root; |
| 3067 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3068 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3069 | btrfs_set_super_log_root(fs_info->super_for_commit, |
| 3070 | log_root_tree->node->start); |
| 3071 | btrfs_set_super_log_root_level(fs_info->super_for_commit, |
| 3072 | btrfs_header_level(log_root_tree->node)); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3073 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3074 | log_root_tree->log_transid++; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3075 | mutex_unlock(&log_root_tree->log_mutex); |
| 3076 | |
| 3077 | /* |
| 3078 | * nobody else is going to jump in and write the the ctree |
| 3079 | * super here because the log_commit atomic below is protecting |
| 3080 | * us. We must be called with a transaction handle pinning |
| 3081 | * the running transaction open, so a full commit can't hop |
| 3082 | * in and cause problems either. |
| 3083 | */ |
David Sterba | eece6a9 | 2017-02-10 19:04:32 +0100 | [diff] [blame] | 3084 | ret = write_all_supers(fs_info, 1); |
Stefan Behrens | 5af3e8c | 2012-08-01 18:56:49 +0200 | [diff] [blame] | 3085 | if (ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3086 | btrfs_set_log_full_commit(fs_info, trans); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3087 | btrfs_abort_transaction(trans, ret); |
Stefan Behrens | 5af3e8c | 2012-08-01 18:56:49 +0200 | [diff] [blame] | 3088 | goto out_wake_log_root; |
| 3089 | } |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3090 | |
Chris Mason | 257c62e | 2009-10-13 13:21:08 -0400 | [diff] [blame] | 3091 | mutex_lock(&root->log_mutex); |
| 3092 | if (root->last_log_commit < log_transid) |
| 3093 | root->last_log_commit = log_transid; |
| 3094 | mutex_unlock(&root->log_mutex); |
| 3095 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3096 | out_wake_log_root: |
Chris Mason | 570dd45 | 2016-10-27 10:42:20 -0700 | [diff] [blame] | 3097 | mutex_lock(&log_root_tree->log_mutex); |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 3098 | btrfs_remove_all_log_ctxs(log_root_tree, index2, ret); |
| 3099 | |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3100 | log_root_tree->log_transid_committed++; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3101 | atomic_set(&log_root_tree->log_commit[index2], 0); |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3102 | mutex_unlock(&log_root_tree->log_mutex); |
| 3103 | |
David Sterba | 33a9eca | 2015-10-10 18:35:10 +0200 | [diff] [blame] | 3104 | /* |
David Sterba | 093258e | 2018-02-26 16:15:17 +0100 | [diff] [blame] | 3105 | * The barrier before waitqueue_active (in cond_wake_up) is needed so |
| 3106 | * all the updates above are seen by the woken threads. It might not be |
| 3107 | * necessary, but proving that seems to be hard. |
David Sterba | 33a9eca | 2015-10-10 18:35:10 +0200 | [diff] [blame] | 3108 | */ |
David Sterba | 093258e | 2018-02-26 16:15:17 +0100 | [diff] [blame] | 3109 | cond_wake_up(&log_root_tree->log_commit_wait[index2]); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3110 | out: |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3111 | mutex_lock(&root->log_mutex); |
Chris Mason | 570dd45 | 2016-10-27 10:42:20 -0700 | [diff] [blame] | 3112 | btrfs_remove_all_log_ctxs(root, index1, ret); |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3113 | root->log_transid_committed++; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3114 | atomic_set(&root->log_commit[index1], 0); |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3115 | mutex_unlock(&root->log_mutex); |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 3116 | |
David Sterba | 33a9eca | 2015-10-10 18:35:10 +0200 | [diff] [blame] | 3117 | /* |
David Sterba | 093258e | 2018-02-26 16:15:17 +0100 | [diff] [blame] | 3118 | * The barrier before waitqueue_active (in cond_wake_up) is needed so |
| 3119 | * all the updates above are seen by the woken threads. It might not be |
| 3120 | * necessary, but proving that seems to be hard. |
David Sterba | 33a9eca | 2015-10-10 18:35:10 +0200 | [diff] [blame] | 3121 | */ |
David Sterba | 093258e | 2018-02-26 16:15:17 +0100 | [diff] [blame] | 3122 | cond_wake_up(&root->log_commit_wait[index1]); |
Chris Mason | b31eabd | 2011-01-31 16:48:24 -0500 | [diff] [blame] | 3123 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3124 | } |
| 3125 | |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3126 | static void free_log_tree(struct btrfs_trans_handle *trans, |
| 3127 | struct btrfs_root *log) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3128 | { |
| 3129 | int ret; |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3130 | u64 start; |
| 3131 | u64 end; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3132 | struct walk_control wc = { |
| 3133 | .free = 1, |
| 3134 | .process_func = process_one_buffer |
| 3135 | }; |
| 3136 | |
Josef Bacik | 681ae50 | 2013-10-07 15:11:00 -0400 | [diff] [blame] | 3137 | ret = walk_log_tree(trans, log, &wc); |
| 3138 | /* I don't think this can happen but just in case */ |
| 3139 | if (ret) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3140 | btrfs_abort_transaction(trans, ret); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3141 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3142 | while (1) { |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3143 | ret = find_first_extent_bit(&log->dirty_log_pages, |
Liu Bo | 55237a5 | 2018-01-25 11:02:52 -0700 | [diff] [blame] | 3144 | 0, &start, &end, |
| 3145 | EXTENT_DIRTY | EXTENT_NEW | EXTENT_NEED_WAIT, |
Josef Bacik | e613887 | 2012-09-27 17:07:30 -0400 | [diff] [blame] | 3146 | NULL); |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3147 | if (ret) |
| 3148 | break; |
| 3149 | |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 3150 | clear_extent_bits(&log->dirty_log_pages, start, end, |
Liu Bo | 55237a5 | 2018-01-25 11:02:52 -0700 | [diff] [blame] | 3151 | EXTENT_DIRTY | EXTENT_NEW | EXTENT_NEED_WAIT); |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3152 | } |
| 3153 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3154 | free_extent_buffer(log->node); |
| 3155 | kfree(log); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3156 | } |
| 3157 | |
| 3158 | /* |
| 3159 | * free all the extents used by the tree log. This should be called |
| 3160 | * at commit time of the full transaction |
| 3161 | */ |
| 3162 | int btrfs_free_log(struct btrfs_trans_handle *trans, struct btrfs_root *root) |
| 3163 | { |
| 3164 | if (root->log_root) { |
| 3165 | free_log_tree(trans, root->log_root); |
| 3166 | root->log_root = NULL; |
| 3167 | } |
| 3168 | return 0; |
| 3169 | } |
| 3170 | |
| 3171 | int btrfs_free_log_root_tree(struct btrfs_trans_handle *trans, |
| 3172 | struct btrfs_fs_info *fs_info) |
| 3173 | { |
| 3174 | if (fs_info->log_root_tree) { |
| 3175 | free_log_tree(trans, fs_info->log_root_tree); |
| 3176 | fs_info->log_root_tree = NULL; |
| 3177 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3178 | return 0; |
| 3179 | } |
| 3180 | |
| 3181 | /* |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3182 | * If both a file and directory are logged, and unlinks or renames are |
| 3183 | * mixed in, we have a few interesting corners: |
| 3184 | * |
| 3185 | * create file X in dir Y |
| 3186 | * link file X to X.link in dir Y |
| 3187 | * fsync file X |
| 3188 | * unlink file X but leave X.link |
| 3189 | * fsync dir Y |
| 3190 | * |
| 3191 | * After a crash we would expect only X.link to exist. But file X |
| 3192 | * didn't get fsync'd again so the log has back refs for X and X.link. |
| 3193 | * |
| 3194 | * We solve this by removing directory entries and inode backrefs from the |
| 3195 | * log when a file that was logged in the current transaction is |
| 3196 | * unlinked. Any later fsync will include the updated log entries, and |
| 3197 | * we'll be able to reconstruct the proper directory items from backrefs. |
| 3198 | * |
| 3199 | * This optimizations allows us to avoid relogging the entire inode |
| 3200 | * or the entire directory. |
| 3201 | */ |
| 3202 | int btrfs_del_dir_entries_in_log(struct btrfs_trans_handle *trans, |
| 3203 | struct btrfs_root *root, |
| 3204 | const char *name, int name_len, |
Nikolay Borisov | 49f34d1 | 2017-01-18 00:31:32 +0200 | [diff] [blame] | 3205 | struct btrfs_inode *dir, u64 index) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3206 | { |
| 3207 | struct btrfs_root *log; |
| 3208 | struct btrfs_dir_item *di; |
| 3209 | struct btrfs_path *path; |
| 3210 | int ret; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3211 | int err = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3212 | int bytes_del = 0; |
Nikolay Borisov | 49f34d1 | 2017-01-18 00:31:32 +0200 | [diff] [blame] | 3213 | u64 dir_ino = btrfs_ino(dir); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3214 | |
Nikolay Borisov | 49f34d1 | 2017-01-18 00:31:32 +0200 | [diff] [blame] | 3215 | if (dir->logged_trans < trans->transid) |
Chris Mason | 3a5f1d4 | 2008-09-11 15:53:37 -0400 | [diff] [blame] | 3216 | return 0; |
| 3217 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3218 | ret = join_running_log_trans(root); |
| 3219 | if (ret) |
| 3220 | return 0; |
| 3221 | |
Nikolay Borisov | 49f34d1 | 2017-01-18 00:31:32 +0200 | [diff] [blame] | 3222 | mutex_lock(&dir->log_mutex); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3223 | |
| 3224 | log = root->log_root; |
| 3225 | path = btrfs_alloc_path(); |
Tsutomu Itoh | a62f44a | 2011-04-25 19:43:51 -0400 | [diff] [blame] | 3226 | if (!path) { |
| 3227 | err = -ENOMEM; |
| 3228 | goto out_unlock; |
| 3229 | } |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 3230 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3231 | di = btrfs_lookup_dir_item(trans, log, path, dir_ino, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3232 | name, name_len, -1); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3233 | if (IS_ERR(di)) { |
| 3234 | err = PTR_ERR(di); |
| 3235 | goto fail; |
| 3236 | } |
| 3237 | if (di) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3238 | ret = btrfs_delete_one_dir_name(trans, log, path, di); |
| 3239 | bytes_del += name_len; |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 3240 | if (ret) { |
| 3241 | err = ret; |
| 3242 | goto fail; |
| 3243 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3244 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3245 | btrfs_release_path(path); |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3246 | di = btrfs_lookup_dir_index_item(trans, log, path, dir_ino, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3247 | index, name, name_len, -1); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3248 | if (IS_ERR(di)) { |
| 3249 | err = PTR_ERR(di); |
| 3250 | goto fail; |
| 3251 | } |
| 3252 | if (di) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3253 | ret = btrfs_delete_one_dir_name(trans, log, path, di); |
| 3254 | bytes_del += name_len; |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 3255 | if (ret) { |
| 3256 | err = ret; |
| 3257 | goto fail; |
| 3258 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3259 | } |
| 3260 | |
| 3261 | /* update the directory size in the log to reflect the names |
| 3262 | * we have removed |
| 3263 | */ |
| 3264 | if (bytes_del) { |
| 3265 | struct btrfs_key key; |
| 3266 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3267 | key.objectid = dir_ino; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3268 | key.offset = 0; |
| 3269 | key.type = BTRFS_INODE_ITEM_KEY; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3270 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3271 | |
| 3272 | ret = btrfs_search_slot(trans, log, &key, path, 0, 1); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3273 | if (ret < 0) { |
| 3274 | err = ret; |
| 3275 | goto fail; |
| 3276 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3277 | if (ret == 0) { |
| 3278 | struct btrfs_inode_item *item; |
| 3279 | u64 i_size; |
| 3280 | |
| 3281 | item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 3282 | struct btrfs_inode_item); |
| 3283 | i_size = btrfs_inode_size(path->nodes[0], item); |
| 3284 | if (i_size > bytes_del) |
| 3285 | i_size -= bytes_del; |
| 3286 | else |
| 3287 | i_size = 0; |
| 3288 | btrfs_set_inode_size(path->nodes[0], item, i_size); |
| 3289 | btrfs_mark_buffer_dirty(path->nodes[0]); |
| 3290 | } else |
| 3291 | ret = 0; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3292 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3293 | } |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3294 | fail: |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3295 | btrfs_free_path(path); |
Tsutomu Itoh | a62f44a | 2011-04-25 19:43:51 -0400 | [diff] [blame] | 3296 | out_unlock: |
Nikolay Borisov | 49f34d1 | 2017-01-18 00:31:32 +0200 | [diff] [blame] | 3297 | mutex_unlock(&dir->log_mutex); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3298 | if (ret == -ENOSPC) { |
Miao Xie | 995946d | 2014-04-02 19:51:06 +0800 | [diff] [blame] | 3299 | btrfs_set_log_full_commit(root->fs_info, trans); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3300 | ret = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3301 | } else if (ret < 0) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3302 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3303 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3304 | btrfs_end_log_trans(root); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3305 | |
Andi Kleen | 411fc6b | 2010-10-29 15:14:31 -0400 | [diff] [blame] | 3306 | return err; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3307 | } |
| 3308 | |
| 3309 | /* see comments for btrfs_del_dir_entries_in_log */ |
| 3310 | int btrfs_del_inode_ref_in_log(struct btrfs_trans_handle *trans, |
| 3311 | struct btrfs_root *root, |
| 3312 | const char *name, int name_len, |
Nikolay Borisov | a491abb | 2017-01-18 00:31:33 +0200 | [diff] [blame] | 3313 | struct btrfs_inode *inode, u64 dirid) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3314 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3315 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3316 | struct btrfs_root *log; |
| 3317 | u64 index; |
| 3318 | int ret; |
| 3319 | |
Nikolay Borisov | a491abb | 2017-01-18 00:31:33 +0200 | [diff] [blame] | 3320 | if (inode->logged_trans < trans->transid) |
Chris Mason | 3a5f1d4 | 2008-09-11 15:53:37 -0400 | [diff] [blame] | 3321 | return 0; |
| 3322 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3323 | ret = join_running_log_trans(root); |
| 3324 | if (ret) |
| 3325 | return 0; |
| 3326 | log = root->log_root; |
Nikolay Borisov | a491abb | 2017-01-18 00:31:33 +0200 | [diff] [blame] | 3327 | mutex_lock(&inode->log_mutex); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3328 | |
Nikolay Borisov | a491abb | 2017-01-18 00:31:33 +0200 | [diff] [blame] | 3329 | 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] | 3330 | dirid, &index); |
Nikolay Borisov | a491abb | 2017-01-18 00:31:33 +0200 | [diff] [blame] | 3331 | mutex_unlock(&inode->log_mutex); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3332 | if (ret == -ENOSPC) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3333 | btrfs_set_log_full_commit(fs_info, trans); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3334 | ret = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3335 | } else if (ret < 0 && ret != -ENOENT) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3336 | btrfs_abort_transaction(trans, ret); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3337 | btrfs_end_log_trans(root); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3338 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3339 | return ret; |
| 3340 | } |
| 3341 | |
| 3342 | /* |
| 3343 | * creates a range item in the log for 'dirid'. first_offset and |
| 3344 | * last_offset tell us which parts of the key space the log should |
| 3345 | * be considered authoritative for. |
| 3346 | */ |
| 3347 | static noinline int insert_dir_log_key(struct btrfs_trans_handle *trans, |
| 3348 | struct btrfs_root *log, |
| 3349 | struct btrfs_path *path, |
| 3350 | int key_type, u64 dirid, |
| 3351 | u64 first_offset, u64 last_offset) |
| 3352 | { |
| 3353 | int ret; |
| 3354 | struct btrfs_key key; |
| 3355 | struct btrfs_dir_log_item *item; |
| 3356 | |
| 3357 | key.objectid = dirid; |
| 3358 | key.offset = first_offset; |
| 3359 | if (key_type == BTRFS_DIR_ITEM_KEY) |
| 3360 | key.type = BTRFS_DIR_LOG_ITEM_KEY; |
| 3361 | else |
| 3362 | key.type = BTRFS_DIR_LOG_INDEX_KEY; |
| 3363 | ret = btrfs_insert_empty_item(trans, log, path, &key, sizeof(*item)); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3364 | if (ret) |
| 3365 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3366 | |
| 3367 | item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 3368 | struct btrfs_dir_log_item); |
| 3369 | btrfs_set_dir_log_end(path->nodes[0], item, last_offset); |
| 3370 | btrfs_mark_buffer_dirty(path->nodes[0]); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3371 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3372 | return 0; |
| 3373 | } |
| 3374 | |
| 3375 | /* |
| 3376 | * log all the items included in the current transaction for a given |
| 3377 | * directory. This also creates the range items in the log tree required |
| 3378 | * to replay anything deleted before the fsync |
| 3379 | */ |
| 3380 | static noinline int log_dir_items(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 684a577 | 2017-01-18 00:31:41 +0200 | [diff] [blame] | 3381 | struct btrfs_root *root, struct btrfs_inode *inode, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3382 | struct btrfs_path *path, |
| 3383 | struct btrfs_path *dst_path, int key_type, |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 3384 | struct btrfs_log_ctx *ctx, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3385 | u64 min_offset, u64 *last_offset_ret) |
| 3386 | { |
| 3387 | struct btrfs_key min_key; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3388 | struct btrfs_root *log = root->log_root; |
| 3389 | struct extent_buffer *src; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3390 | int err = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3391 | int ret; |
| 3392 | int i; |
| 3393 | int nritems; |
| 3394 | u64 first_offset = min_offset; |
| 3395 | u64 last_offset = (u64)-1; |
Nikolay Borisov | 684a577 | 2017-01-18 00:31:41 +0200 | [diff] [blame] | 3396 | u64 ino = btrfs_ino(inode); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3397 | |
| 3398 | log = root->log_root; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3399 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3400 | min_key.objectid = ino; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3401 | min_key.type = key_type; |
| 3402 | min_key.offset = min_offset; |
| 3403 | |
Filipe David Borba Manana | 6174d3c | 2013-10-01 16:13:42 +0100 | [diff] [blame] | 3404 | ret = btrfs_search_forward(root, &min_key, path, trans->transid); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3405 | |
| 3406 | /* |
| 3407 | * we didn't find anything from this transaction, see if there |
| 3408 | * is anything at all |
| 3409 | */ |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3410 | if (ret != 0 || min_key.objectid != ino || min_key.type != key_type) { |
| 3411 | min_key.objectid = ino; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3412 | min_key.type = key_type; |
| 3413 | min_key.offset = (u64)-1; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3414 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3415 | ret = btrfs_search_slot(NULL, root, &min_key, path, 0, 0); |
| 3416 | if (ret < 0) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3417 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3418 | return ret; |
| 3419 | } |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3420 | ret = btrfs_previous_item(root, path, ino, key_type); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3421 | |
| 3422 | /* if ret == 0 there are items for this type, |
| 3423 | * create a range to tell us the last key of this type. |
| 3424 | * otherwise, there are no items in this directory after |
| 3425 | * *min_offset, and we create a range to indicate that. |
| 3426 | */ |
| 3427 | if (ret == 0) { |
| 3428 | struct btrfs_key tmp; |
| 3429 | btrfs_item_key_to_cpu(path->nodes[0], &tmp, |
| 3430 | path->slots[0]); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3431 | if (key_type == tmp.type) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3432 | first_offset = max(min_offset, tmp.offset) + 1; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3433 | } |
| 3434 | goto done; |
| 3435 | } |
| 3436 | |
| 3437 | /* go backward to find any previous key */ |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3438 | ret = btrfs_previous_item(root, path, ino, key_type); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3439 | if (ret == 0) { |
| 3440 | struct btrfs_key tmp; |
| 3441 | btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]); |
| 3442 | if (key_type == tmp.type) { |
| 3443 | first_offset = tmp.offset; |
| 3444 | ret = overwrite_item(trans, log, dst_path, |
| 3445 | path->nodes[0], path->slots[0], |
| 3446 | &tmp); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3447 | if (ret) { |
| 3448 | err = ret; |
| 3449 | goto done; |
| 3450 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3451 | } |
| 3452 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3453 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3454 | |
| 3455 | /* find the first key from this transaction again */ |
| 3456 | ret = btrfs_search_slot(NULL, root, &min_key, path, 0, 0); |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 3457 | if (WARN_ON(ret != 0)) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3458 | goto done; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3459 | |
| 3460 | /* |
| 3461 | * we have a block from this transaction, log every item in it |
| 3462 | * from our directory |
| 3463 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3464 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3465 | struct btrfs_key tmp; |
| 3466 | src = path->nodes[0]; |
| 3467 | nritems = btrfs_header_nritems(src); |
| 3468 | for (i = path->slots[0]; i < nritems; i++) { |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 3469 | struct btrfs_dir_item *di; |
| 3470 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3471 | btrfs_item_key_to_cpu(src, &min_key, i); |
| 3472 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3473 | if (min_key.objectid != ino || min_key.type != key_type) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3474 | goto done; |
| 3475 | ret = overwrite_item(trans, log, dst_path, src, i, |
| 3476 | &min_key); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3477 | if (ret) { |
| 3478 | err = ret; |
| 3479 | goto done; |
| 3480 | } |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 3481 | |
| 3482 | /* |
| 3483 | * We must make sure that when we log a directory entry, |
| 3484 | * the corresponding inode, after log replay, has a |
| 3485 | * matching link count. For example: |
| 3486 | * |
| 3487 | * touch foo |
| 3488 | * mkdir mydir |
| 3489 | * sync |
| 3490 | * ln foo mydir/bar |
| 3491 | * xfs_io -c "fsync" mydir |
| 3492 | * <crash> |
| 3493 | * <mount fs and log replay> |
| 3494 | * |
| 3495 | * Would result in a fsync log that when replayed, our |
| 3496 | * file inode would have a link count of 1, but we get |
| 3497 | * two directory entries pointing to the same inode. |
| 3498 | * After removing one of the names, it would not be |
| 3499 | * possible to remove the other name, which resulted |
| 3500 | * always in stale file handle errors, and would not |
| 3501 | * be possible to rmdir the parent directory, since |
| 3502 | * its i_size could never decrement to the value |
| 3503 | * BTRFS_EMPTY_DIR_SIZE, resulting in -ENOTEMPTY errors. |
| 3504 | */ |
| 3505 | di = btrfs_item_ptr(src, i, struct btrfs_dir_item); |
| 3506 | btrfs_dir_item_key_to_cpu(src, di, &tmp); |
| 3507 | if (ctx && |
| 3508 | (btrfs_dir_transid(src, di) == trans->transid || |
| 3509 | btrfs_dir_type(src, di) == BTRFS_FT_DIR) && |
| 3510 | tmp.type != BTRFS_ROOT_ITEM_KEY) |
| 3511 | ctx->log_new_dentries = true; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3512 | } |
| 3513 | path->slots[0] = nritems; |
| 3514 | |
| 3515 | /* |
| 3516 | * look ahead to the next item and see if it is also |
| 3517 | * from this directory and from this transaction |
| 3518 | */ |
| 3519 | ret = btrfs_next_leaf(root, path); |
Liu Bo | 80c0b42 | 2018-04-03 01:59:47 +0800 | [diff] [blame] | 3520 | if (ret) { |
| 3521 | if (ret == 1) |
| 3522 | last_offset = (u64)-1; |
| 3523 | else |
| 3524 | err = ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3525 | goto done; |
| 3526 | } |
| 3527 | btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]); |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3528 | if (tmp.objectid != ino || tmp.type != key_type) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3529 | last_offset = (u64)-1; |
| 3530 | goto done; |
| 3531 | } |
| 3532 | if (btrfs_header_generation(path->nodes[0]) != trans->transid) { |
| 3533 | ret = overwrite_item(trans, log, dst_path, |
| 3534 | path->nodes[0], path->slots[0], |
| 3535 | &tmp); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3536 | if (ret) |
| 3537 | err = ret; |
| 3538 | else |
| 3539 | last_offset = tmp.offset; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3540 | goto done; |
| 3541 | } |
| 3542 | } |
| 3543 | done: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3544 | btrfs_release_path(path); |
| 3545 | btrfs_release_path(dst_path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3546 | |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3547 | if (err == 0) { |
| 3548 | *last_offset_ret = last_offset; |
| 3549 | /* |
| 3550 | * insert the log range keys to indicate where the log |
| 3551 | * is valid |
| 3552 | */ |
| 3553 | ret = insert_dir_log_key(trans, log, path, key_type, |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3554 | ino, first_offset, last_offset); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3555 | if (ret) |
| 3556 | err = ret; |
| 3557 | } |
| 3558 | return err; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3559 | } |
| 3560 | |
| 3561 | /* |
| 3562 | * logging directories is very similar to logging inodes, We find all the items |
| 3563 | * from the current transaction and write them to the log. |
| 3564 | * |
| 3565 | * The recovery code scans the directory in the subvolume, and if it finds a |
| 3566 | * key in the range logged that is not present in the log tree, then it means |
| 3567 | * that dir entry was unlinked during the transaction. |
| 3568 | * |
| 3569 | * In order for that scan to work, we must include one key smaller than |
| 3570 | * the smallest logged by this transaction and one key larger than the largest |
| 3571 | * key logged by this transaction. |
| 3572 | */ |
| 3573 | static noinline int log_directory_changes(struct btrfs_trans_handle *trans, |
Nikolay Borisov | dbf39ea | 2017-01-18 00:31:42 +0200 | [diff] [blame] | 3574 | struct btrfs_root *root, struct btrfs_inode *inode, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3575 | struct btrfs_path *path, |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 3576 | struct btrfs_path *dst_path, |
| 3577 | struct btrfs_log_ctx *ctx) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3578 | { |
| 3579 | u64 min_key; |
| 3580 | u64 max_key; |
| 3581 | int ret; |
| 3582 | int key_type = BTRFS_DIR_ITEM_KEY; |
| 3583 | |
| 3584 | again: |
| 3585 | min_key = 0; |
| 3586 | max_key = 0; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3587 | while (1) { |
Nikolay Borisov | dbf39ea | 2017-01-18 00:31:42 +0200 | [diff] [blame] | 3588 | ret = log_dir_items(trans, root, inode, path, dst_path, key_type, |
| 3589 | ctx, min_key, &max_key); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3590 | if (ret) |
| 3591 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3592 | if (max_key == (u64)-1) |
| 3593 | break; |
| 3594 | min_key = max_key + 1; |
| 3595 | } |
| 3596 | |
| 3597 | if (key_type == BTRFS_DIR_ITEM_KEY) { |
| 3598 | key_type = BTRFS_DIR_INDEX_KEY; |
| 3599 | goto again; |
| 3600 | } |
| 3601 | return 0; |
| 3602 | } |
| 3603 | |
| 3604 | /* |
| 3605 | * a helper function to drop items from the log before we relog an |
| 3606 | * inode. max_key_type indicates the highest item type to remove. |
| 3607 | * This cannot be run for file data extents because it does not |
| 3608 | * free the extents they point to. |
| 3609 | */ |
| 3610 | static int drop_objectid_items(struct btrfs_trans_handle *trans, |
| 3611 | struct btrfs_root *log, |
| 3612 | struct btrfs_path *path, |
| 3613 | u64 objectid, int max_key_type) |
| 3614 | { |
| 3615 | int ret; |
| 3616 | struct btrfs_key key; |
| 3617 | struct btrfs_key found_key; |
Josef Bacik | 18ec90d | 2012-09-28 11:56:28 -0400 | [diff] [blame] | 3618 | int start_slot; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3619 | |
| 3620 | key.objectid = objectid; |
| 3621 | key.type = max_key_type; |
| 3622 | key.offset = (u64)-1; |
| 3623 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3624 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3625 | ret = btrfs_search_slot(trans, log, &key, path, -1, 1); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 3626 | BUG_ON(ret == 0); /* Logic error */ |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3627 | if (ret < 0) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3628 | break; |
| 3629 | |
| 3630 | if (path->slots[0] == 0) |
| 3631 | break; |
| 3632 | |
| 3633 | path->slots[0]--; |
| 3634 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, |
| 3635 | path->slots[0]); |
| 3636 | |
| 3637 | if (found_key.objectid != objectid) |
| 3638 | break; |
| 3639 | |
Josef Bacik | 18ec90d | 2012-09-28 11:56:28 -0400 | [diff] [blame] | 3640 | found_key.offset = 0; |
| 3641 | found_key.type = 0; |
| 3642 | ret = btrfs_bin_search(path->nodes[0], &found_key, 0, |
| 3643 | &start_slot); |
| 3644 | |
| 3645 | ret = btrfs_del_items(trans, log, path, start_slot, |
| 3646 | path->slots[0] - start_slot + 1); |
| 3647 | /* |
| 3648 | * If start slot isn't 0 then we don't need to re-search, we've |
| 3649 | * found the last guy with the objectid in this tree. |
| 3650 | */ |
| 3651 | if (ret || start_slot != 0) |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 3652 | break; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3653 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3654 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3655 | btrfs_release_path(path); |
Josef Bacik | 5bdbeb2 | 2012-05-29 16:59:49 -0400 | [diff] [blame] | 3656 | if (ret > 0) |
| 3657 | ret = 0; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3658 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3659 | } |
| 3660 | |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3661 | static void fill_inode_item(struct btrfs_trans_handle *trans, |
| 3662 | struct extent_buffer *leaf, |
| 3663 | struct btrfs_inode_item *item, |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 3664 | struct inode *inode, int log_inode_only, |
| 3665 | u64 logged_isize) |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3666 | { |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3667 | struct btrfs_map_token token; |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3668 | |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3669 | btrfs_init_map_token(&token); |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3670 | |
| 3671 | if (log_inode_only) { |
| 3672 | /* set the generation to zero so the recover code |
| 3673 | * can tell the difference between an logging |
| 3674 | * just to say 'this inode exists' and a logging |
| 3675 | * to say 'update this inode with these values' |
| 3676 | */ |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3677 | btrfs_set_token_inode_generation(leaf, item, 0, &token); |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 3678 | btrfs_set_token_inode_size(leaf, item, logged_isize, &token); |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3679 | } else { |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3680 | btrfs_set_token_inode_generation(leaf, item, |
| 3681 | BTRFS_I(inode)->generation, |
| 3682 | &token); |
| 3683 | btrfs_set_token_inode_size(leaf, item, inode->i_size, &token); |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3684 | } |
| 3685 | |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3686 | btrfs_set_token_inode_uid(leaf, item, i_uid_read(inode), &token); |
| 3687 | btrfs_set_token_inode_gid(leaf, item, i_gid_read(inode), &token); |
| 3688 | btrfs_set_token_inode_mode(leaf, item, inode->i_mode, &token); |
| 3689 | btrfs_set_token_inode_nlink(leaf, item, inode->i_nlink, &token); |
| 3690 | |
David Sterba | a937b97 | 2014-12-12 17:39:12 +0100 | [diff] [blame] | 3691 | btrfs_set_token_timespec_sec(leaf, &item->atime, |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3692 | inode->i_atime.tv_sec, &token); |
David Sterba | a937b97 | 2014-12-12 17:39:12 +0100 | [diff] [blame] | 3693 | btrfs_set_token_timespec_nsec(leaf, &item->atime, |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3694 | inode->i_atime.tv_nsec, &token); |
| 3695 | |
David Sterba | a937b97 | 2014-12-12 17:39:12 +0100 | [diff] [blame] | 3696 | btrfs_set_token_timespec_sec(leaf, &item->mtime, |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3697 | inode->i_mtime.tv_sec, &token); |
David Sterba | a937b97 | 2014-12-12 17:39:12 +0100 | [diff] [blame] | 3698 | btrfs_set_token_timespec_nsec(leaf, &item->mtime, |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3699 | inode->i_mtime.tv_nsec, &token); |
| 3700 | |
David Sterba | a937b97 | 2014-12-12 17:39:12 +0100 | [diff] [blame] | 3701 | btrfs_set_token_timespec_sec(leaf, &item->ctime, |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3702 | inode->i_ctime.tv_sec, &token); |
David Sterba | a937b97 | 2014-12-12 17:39:12 +0100 | [diff] [blame] | 3703 | btrfs_set_token_timespec_nsec(leaf, &item->ctime, |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3704 | inode->i_ctime.tv_nsec, &token); |
| 3705 | |
| 3706 | btrfs_set_token_inode_nbytes(leaf, item, inode_get_bytes(inode), |
| 3707 | &token); |
| 3708 | |
Jeff Layton | c7f88c4 | 2017-12-11 06:35:12 -0500 | [diff] [blame] | 3709 | btrfs_set_token_inode_sequence(leaf, item, |
| 3710 | inode_peek_iversion(inode), &token); |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3711 | btrfs_set_token_inode_transid(leaf, item, trans->transid, &token); |
| 3712 | btrfs_set_token_inode_rdev(leaf, item, inode->i_rdev, &token); |
| 3713 | btrfs_set_token_inode_flags(leaf, item, BTRFS_I(inode)->flags, &token); |
| 3714 | btrfs_set_token_inode_block_group(leaf, item, 0, &token); |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3715 | } |
| 3716 | |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 3717 | static int log_inode_item(struct btrfs_trans_handle *trans, |
| 3718 | struct btrfs_root *log, struct btrfs_path *path, |
Nikolay Borisov | 6d889a3 | 2017-01-18 00:31:47 +0200 | [diff] [blame] | 3719 | struct btrfs_inode *inode) |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 3720 | { |
| 3721 | struct btrfs_inode_item *inode_item; |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 3722 | int ret; |
| 3723 | |
Filipe David Borba Manana | efd0c40 | 2013-10-07 21:20:44 +0100 | [diff] [blame] | 3724 | ret = btrfs_insert_empty_item(trans, log, path, |
Nikolay Borisov | 6d889a3 | 2017-01-18 00:31:47 +0200 | [diff] [blame] | 3725 | &inode->location, sizeof(*inode_item)); |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 3726 | if (ret && ret != -EEXIST) |
| 3727 | return ret; |
| 3728 | inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 3729 | struct btrfs_inode_item); |
Nikolay Borisov | 6d889a3 | 2017-01-18 00:31:47 +0200 | [diff] [blame] | 3730 | fill_inode_item(trans, path->nodes[0], inode_item, &inode->vfs_inode, |
| 3731 | 0, 0); |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 3732 | btrfs_release_path(path); |
| 3733 | return 0; |
| 3734 | } |
| 3735 | |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3736 | static noinline int copy_items(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 44d70e1 | 2017-01-18 00:31:36 +0200 | [diff] [blame] | 3737 | struct btrfs_inode *inode, |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3738 | struct btrfs_path *dst_path, |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3739 | struct btrfs_path *src_path, u64 *last_extent, |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 3740 | int start_slot, int nr, int inode_only, |
| 3741 | u64 logged_isize) |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3742 | { |
Nikolay Borisov | 44d70e1 | 2017-01-18 00:31:36 +0200 | [diff] [blame] | 3743 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb); |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3744 | unsigned long src_offset; |
| 3745 | unsigned long dst_offset; |
Nikolay Borisov | 44d70e1 | 2017-01-18 00:31:36 +0200 | [diff] [blame] | 3746 | struct btrfs_root *log = inode->root->log_root; |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3747 | struct btrfs_file_extent_item *extent; |
| 3748 | struct btrfs_inode_item *inode_item; |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3749 | struct extent_buffer *src = src_path->nodes[0]; |
| 3750 | struct btrfs_key first_key, last_key, key; |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3751 | int ret; |
| 3752 | struct btrfs_key *ins_keys; |
| 3753 | u32 *ins_sizes; |
| 3754 | char *ins_data; |
| 3755 | int i; |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 3756 | struct list_head ordered_sums; |
Nikolay Borisov | 44d70e1 | 2017-01-18 00:31:36 +0200 | [diff] [blame] | 3757 | int skip_csum = inode->flags & BTRFS_INODE_NODATASUM; |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3758 | bool has_extents = false; |
Filipe Manana | 74121f7c | 2014-08-07 12:00:44 +0100 | [diff] [blame] | 3759 | bool need_find_last_extent = true; |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3760 | bool done = false; |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 3761 | |
| 3762 | INIT_LIST_HEAD(&ordered_sums); |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3763 | |
| 3764 | ins_data = kmalloc(nr * sizeof(struct btrfs_key) + |
| 3765 | nr * sizeof(u32), GFP_NOFS); |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 3766 | if (!ins_data) |
| 3767 | return -ENOMEM; |
| 3768 | |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3769 | first_key.objectid = (u64)-1; |
| 3770 | |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3771 | ins_sizes = (u32 *)ins_data; |
| 3772 | ins_keys = (struct btrfs_key *)(ins_data + nr * sizeof(u32)); |
| 3773 | |
| 3774 | for (i = 0; i < nr; i++) { |
| 3775 | ins_sizes[i] = btrfs_item_size_nr(src, i + start_slot); |
| 3776 | btrfs_item_key_to_cpu(src, ins_keys + i, i + start_slot); |
| 3777 | } |
| 3778 | ret = btrfs_insert_empty_items(trans, log, dst_path, |
| 3779 | ins_keys, ins_sizes, nr); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3780 | if (ret) { |
| 3781 | kfree(ins_data); |
| 3782 | return ret; |
| 3783 | } |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3784 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3785 | for (i = 0; i < nr; i++, dst_path->slots[0]++) { |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3786 | dst_offset = btrfs_item_ptr_offset(dst_path->nodes[0], |
| 3787 | dst_path->slots[0]); |
| 3788 | |
| 3789 | src_offset = btrfs_item_ptr_offset(src, start_slot + i); |
| 3790 | |
Matthias Kaehlcke | 0dde10b | 2017-07-27 14:30:23 -0700 | [diff] [blame] | 3791 | if (i == nr - 1) |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3792 | last_key = ins_keys[i]; |
| 3793 | |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3794 | if (ins_keys[i].type == BTRFS_INODE_ITEM_KEY) { |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3795 | inode_item = btrfs_item_ptr(dst_path->nodes[0], |
| 3796 | dst_path->slots[0], |
| 3797 | struct btrfs_inode_item); |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3798 | fill_inode_item(trans, dst_path->nodes[0], inode_item, |
David Sterba | f85b737 | 2017-01-20 14:54:07 +0100 | [diff] [blame] | 3799 | &inode->vfs_inode, |
| 3800 | inode_only == LOG_INODE_EXISTS, |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 3801 | logged_isize); |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3802 | } else { |
| 3803 | copy_extent_buffer(dst_path->nodes[0], src, dst_offset, |
| 3804 | src_offset, ins_sizes[i]); |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3805 | } |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3806 | |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3807 | /* |
| 3808 | * We set need_find_last_extent here in case we know we were |
| 3809 | * processing other items and then walk into the first extent in |
| 3810 | * the inode. If we don't hit an extent then nothing changes, |
| 3811 | * we'll do the last search the next time around. |
| 3812 | */ |
| 3813 | if (ins_keys[i].type == BTRFS_EXTENT_DATA_KEY) { |
| 3814 | has_extents = true; |
Filipe Manana | 74121f7c | 2014-08-07 12:00:44 +0100 | [diff] [blame] | 3815 | if (first_key.objectid == (u64)-1) |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3816 | first_key = ins_keys[i]; |
| 3817 | } else { |
| 3818 | need_find_last_extent = false; |
| 3819 | } |
| 3820 | |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3821 | /* take a reference on file data extents so that truncates |
| 3822 | * or deletes of this inode don't have to relog the inode |
| 3823 | * again |
| 3824 | */ |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 3825 | if (ins_keys[i].type == BTRFS_EXTENT_DATA_KEY && |
Liu Bo | d279440 | 2012-08-29 01:07:56 -0600 | [diff] [blame] | 3826 | !skip_csum) { |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3827 | int found_type; |
| 3828 | extent = btrfs_item_ptr(src, start_slot + i, |
| 3829 | struct btrfs_file_extent_item); |
| 3830 | |
liubo | 8e531cd | 2011-05-06 10:36:09 +0800 | [diff] [blame] | 3831 | if (btrfs_file_extent_generation(src, extent) < trans->transid) |
| 3832 | continue; |
| 3833 | |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3834 | found_type = btrfs_file_extent_type(src, extent); |
Josef Bacik | 6f1fed7 | 2012-09-26 11:07:06 -0400 | [diff] [blame] | 3835 | if (found_type == BTRFS_FILE_EXTENT_REG) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3836 | u64 ds, dl, cs, cl; |
| 3837 | ds = btrfs_file_extent_disk_bytenr(src, |
| 3838 | extent); |
| 3839 | /* ds == 0 is a hole */ |
| 3840 | if (ds == 0) |
| 3841 | continue; |
| 3842 | |
| 3843 | dl = btrfs_file_extent_disk_num_bytes(src, |
| 3844 | extent); |
| 3845 | cs = btrfs_file_extent_offset(src, extent); |
| 3846 | cl = btrfs_file_extent_num_bytes(src, |
Joe Perches | a419aef | 2009-08-18 11:18:35 -0700 | [diff] [blame] | 3847 | extent); |
Chris Mason | 580afd7 | 2008-12-08 19:15:39 -0500 | [diff] [blame] | 3848 | if (btrfs_file_extent_compression(src, |
| 3849 | extent)) { |
| 3850 | cs = 0; |
| 3851 | cl = dl; |
| 3852 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3853 | |
| 3854 | ret = btrfs_lookup_csums_range( |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3855 | fs_info->csum_root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3856 | ds + cs, ds + cs + cl - 1, |
Arne Jansen | a2de733 | 2011-03-08 14:14:00 +0100 | [diff] [blame] | 3857 | &ordered_sums, 0); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 3858 | if (ret) { |
| 3859 | btrfs_release_path(dst_path); |
| 3860 | kfree(ins_data); |
| 3861 | return ret; |
| 3862 | } |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3863 | } |
| 3864 | } |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3865 | } |
| 3866 | |
| 3867 | btrfs_mark_buffer_dirty(dst_path->nodes[0]); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3868 | btrfs_release_path(dst_path); |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3869 | kfree(ins_data); |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 3870 | |
| 3871 | /* |
| 3872 | * we have to do this after the loop above to avoid changing the |
| 3873 | * log tree while trying to change the log tree. |
| 3874 | */ |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3875 | ret = 0; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3876 | while (!list_empty(&ordered_sums)) { |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 3877 | struct btrfs_ordered_sum *sums = list_entry(ordered_sums.next, |
| 3878 | struct btrfs_ordered_sum, |
| 3879 | list); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3880 | if (!ret) |
| 3881 | ret = btrfs_csum_file_blocks(trans, log, sums); |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 3882 | list_del(&sums->list); |
| 3883 | kfree(sums); |
| 3884 | } |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3885 | |
| 3886 | if (!has_extents) |
| 3887 | return ret; |
| 3888 | |
Filipe Manana | 74121f7c | 2014-08-07 12:00:44 +0100 | [diff] [blame] | 3889 | if (need_find_last_extent && *last_extent == first_key.offset) { |
| 3890 | /* |
| 3891 | * We don't have any leafs between our current one and the one |
| 3892 | * we processed before that can have file extent items for our |
| 3893 | * inode (and have a generation number smaller than our current |
| 3894 | * transaction id). |
| 3895 | */ |
| 3896 | need_find_last_extent = false; |
| 3897 | } |
| 3898 | |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3899 | /* |
| 3900 | * Because we use btrfs_search_forward we could skip leaves that were |
| 3901 | * not modified and then assume *last_extent is valid when it really |
| 3902 | * isn't. So back up to the previous leaf and read the end of the last |
| 3903 | * extent before we go and fill in holes. |
| 3904 | */ |
| 3905 | if (need_find_last_extent) { |
| 3906 | u64 len; |
| 3907 | |
Nikolay Borisov | 44d70e1 | 2017-01-18 00:31:36 +0200 | [diff] [blame] | 3908 | ret = btrfs_prev_leaf(inode->root, src_path); |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3909 | if (ret < 0) |
| 3910 | return ret; |
| 3911 | if (ret) |
| 3912 | goto fill_holes; |
| 3913 | if (src_path->slots[0]) |
| 3914 | src_path->slots[0]--; |
| 3915 | src = src_path->nodes[0]; |
| 3916 | btrfs_item_key_to_cpu(src, &key, src_path->slots[0]); |
Nikolay Borisov | 44d70e1 | 2017-01-18 00:31:36 +0200 | [diff] [blame] | 3917 | if (key.objectid != btrfs_ino(inode) || |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3918 | key.type != BTRFS_EXTENT_DATA_KEY) |
| 3919 | goto fill_holes; |
| 3920 | extent = btrfs_item_ptr(src, src_path->slots[0], |
| 3921 | struct btrfs_file_extent_item); |
| 3922 | if (btrfs_file_extent_type(src, extent) == |
| 3923 | BTRFS_FILE_EXTENT_INLINE) { |
Chris Mason | 514ac8a | 2014-01-03 21:07:00 -0800 | [diff] [blame] | 3924 | len = btrfs_file_extent_inline_len(src, |
| 3925 | src_path->slots[0], |
| 3926 | extent); |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3927 | *last_extent = ALIGN(key.offset + len, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3928 | fs_info->sectorsize); |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3929 | } else { |
| 3930 | len = btrfs_file_extent_num_bytes(src, extent); |
| 3931 | *last_extent = key.offset + len; |
| 3932 | } |
| 3933 | } |
| 3934 | fill_holes: |
| 3935 | /* So we did prev_leaf, now we need to move to the next leaf, but a few |
| 3936 | * things could have happened |
| 3937 | * |
| 3938 | * 1) A merge could have happened, so we could currently be on a leaf |
| 3939 | * that holds what we were copying in the first place. |
| 3940 | * 2) A split could have happened, and now not all of the items we want |
| 3941 | * are on the same leaf. |
| 3942 | * |
| 3943 | * So we need to adjust how we search for holes, we need to drop the |
| 3944 | * path and re-search for the first extent key we found, and then walk |
| 3945 | * forward until we hit the last one we copied. |
| 3946 | */ |
| 3947 | if (need_find_last_extent) { |
| 3948 | /* btrfs_prev_leaf could return 1 without releasing the path */ |
| 3949 | btrfs_release_path(src_path); |
David Sterba | f85b737 | 2017-01-20 14:54:07 +0100 | [diff] [blame] | 3950 | ret = btrfs_search_slot(NULL, inode->root, &first_key, |
| 3951 | src_path, 0, 0); |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3952 | if (ret < 0) |
| 3953 | return ret; |
| 3954 | ASSERT(ret == 0); |
| 3955 | src = src_path->nodes[0]; |
| 3956 | i = src_path->slots[0]; |
| 3957 | } else { |
| 3958 | i = start_slot; |
| 3959 | } |
| 3960 | |
| 3961 | /* |
| 3962 | * Ok so here we need to go through and fill in any holes we may have |
| 3963 | * to make sure that holes are punched for those areas in case they had |
| 3964 | * extents previously. |
| 3965 | */ |
| 3966 | while (!done) { |
| 3967 | u64 offset, len; |
| 3968 | u64 extent_end; |
| 3969 | |
| 3970 | if (i >= btrfs_header_nritems(src_path->nodes[0])) { |
Nikolay Borisov | 44d70e1 | 2017-01-18 00:31:36 +0200 | [diff] [blame] | 3971 | ret = btrfs_next_leaf(inode->root, src_path); |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3972 | if (ret < 0) |
| 3973 | return ret; |
| 3974 | ASSERT(ret == 0); |
| 3975 | src = src_path->nodes[0]; |
| 3976 | i = 0; |
Filipe Manana | 8434ec4 | 2018-03-26 23:59:12 +0100 | [diff] [blame] | 3977 | need_find_last_extent = true; |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3978 | } |
| 3979 | |
| 3980 | btrfs_item_key_to_cpu(src, &key, i); |
| 3981 | if (!btrfs_comp_cpu_keys(&key, &last_key)) |
| 3982 | done = true; |
Nikolay Borisov | 44d70e1 | 2017-01-18 00:31:36 +0200 | [diff] [blame] | 3983 | if (key.objectid != btrfs_ino(inode) || |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3984 | key.type != BTRFS_EXTENT_DATA_KEY) { |
| 3985 | i++; |
| 3986 | continue; |
| 3987 | } |
| 3988 | extent = btrfs_item_ptr(src, i, struct btrfs_file_extent_item); |
| 3989 | if (btrfs_file_extent_type(src, extent) == |
| 3990 | BTRFS_FILE_EXTENT_INLINE) { |
Chris Mason | 514ac8a | 2014-01-03 21:07:00 -0800 | [diff] [blame] | 3991 | len = btrfs_file_extent_inline_len(src, i, extent); |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 3992 | extent_end = ALIGN(key.offset + len, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3993 | fs_info->sectorsize); |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3994 | } else { |
| 3995 | len = btrfs_file_extent_num_bytes(src, extent); |
| 3996 | extent_end = key.offset + len; |
| 3997 | } |
| 3998 | i++; |
| 3999 | |
| 4000 | if (*last_extent == key.offset) { |
| 4001 | *last_extent = extent_end; |
| 4002 | continue; |
| 4003 | } |
| 4004 | offset = *last_extent; |
| 4005 | len = key.offset - *last_extent; |
Nikolay Borisov | 44d70e1 | 2017-01-18 00:31:36 +0200 | [diff] [blame] | 4006 | ret = btrfs_insert_file_extent(trans, log, btrfs_ino(inode), |
David Sterba | f85b737 | 2017-01-20 14:54:07 +0100 | [diff] [blame] | 4007 | offset, 0, 0, len, 0, len, 0, 0, 0); |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 4008 | if (ret) |
| 4009 | break; |
Filipe Manana | 74121f7c | 2014-08-07 12:00:44 +0100 | [diff] [blame] | 4010 | *last_extent = extent_end; |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 4011 | } |
Filipe Manana | 4ee3fad | 2018-03-26 23:59:00 +0100 | [diff] [blame] | 4012 | |
| 4013 | /* |
| 4014 | * Check if there is a hole between the last extent found in our leaf |
| 4015 | * and the first extent in the next leaf. If there is one, we need to |
| 4016 | * log an explicit hole so that at replay time we can punch the hole. |
| 4017 | */ |
| 4018 | if (ret == 0 && |
| 4019 | key.objectid == btrfs_ino(inode) && |
| 4020 | key.type == BTRFS_EXTENT_DATA_KEY && |
| 4021 | i == btrfs_header_nritems(src_path->nodes[0])) { |
| 4022 | ret = btrfs_next_leaf(inode->root, src_path); |
| 4023 | need_find_last_extent = true; |
| 4024 | if (ret > 0) { |
| 4025 | ret = 0; |
| 4026 | } else if (ret == 0) { |
| 4027 | btrfs_item_key_to_cpu(src_path->nodes[0], &key, |
| 4028 | src_path->slots[0]); |
| 4029 | if (key.objectid == btrfs_ino(inode) && |
| 4030 | key.type == BTRFS_EXTENT_DATA_KEY && |
| 4031 | *last_extent < key.offset) { |
| 4032 | const u64 len = key.offset - *last_extent; |
| 4033 | |
| 4034 | ret = btrfs_insert_file_extent(trans, log, |
| 4035 | btrfs_ino(inode), |
| 4036 | *last_extent, 0, |
| 4037 | 0, len, 0, len, |
| 4038 | 0, 0, 0); |
| 4039 | } |
| 4040 | } |
| 4041 | } |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 4042 | /* |
| 4043 | * Need to let the callers know we dropped the path so they should |
| 4044 | * re-search. |
| 4045 | */ |
| 4046 | if (!ret && need_find_last_extent) |
| 4047 | ret = 1; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 4048 | return ret; |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4049 | } |
| 4050 | |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4051 | static int extent_cmp(void *priv, struct list_head *a, struct list_head *b) |
| 4052 | { |
| 4053 | struct extent_map *em1, *em2; |
| 4054 | |
| 4055 | em1 = list_entry(a, struct extent_map, list); |
| 4056 | em2 = list_entry(b, struct extent_map, list); |
| 4057 | |
| 4058 | if (em1->start < em2->start) |
| 4059 | return -1; |
| 4060 | else if (em1->start > em2->start) |
| 4061 | return 1; |
| 4062 | return 0; |
| 4063 | } |
| 4064 | |
Josef Bacik | e7175a6 | 2018-05-23 11:58:34 -0400 | [diff] [blame] | 4065 | static int log_extent_csums(struct btrfs_trans_handle *trans, |
| 4066 | struct btrfs_inode *inode, |
Nikolay Borisov | a9ecb65 | 2018-06-20 17:26:42 +0300 | [diff] [blame^] | 4067 | struct btrfs_root *log_root, |
Josef Bacik | e7175a6 | 2018-05-23 11:58:34 -0400 | [diff] [blame] | 4068 | const struct extent_map *em) |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4069 | { |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 4070 | u64 csum_offset; |
| 4071 | u64 csum_len; |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4072 | LIST_HEAD(ordered_sums); |
| 4073 | int ret = 0; |
Josef Bacik | 09a2a8f9 | 2013-04-05 16:51:15 -0400 | [diff] [blame] | 4074 | |
Josef Bacik | e7175a6 | 2018-05-23 11:58:34 -0400 | [diff] [blame] | 4075 | if (inode->flags & BTRFS_INODE_NODATASUM || |
| 4076 | test_bit(EXTENT_FLAG_PREALLOC, &em->flags) || |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4077 | em->block_start == EXTENT_MAP_HOLE) |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 4078 | return 0; |
| 4079 | |
Josef Bacik | e7175a6 | 2018-05-23 11:58:34 -0400 | [diff] [blame] | 4080 | /* 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] | 4081 | if (em->compress_type) { |
| 4082 | csum_offset = 0; |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4083 | csum_len = max(em->block_len, em->orig_block_len); |
Filipe David Borba Manana | 488111a | 2013-10-28 16:30:29 +0000 | [diff] [blame] | 4084 | } else { |
Josef Bacik | e7175a6 | 2018-05-23 11:58:34 -0400 | [diff] [blame] | 4085 | csum_offset = em->mod_start - em->start; |
| 4086 | csum_len = em->mod_len; |
Filipe David Borba Manana | 488111a | 2013-10-28 16:30:29 +0000 | [diff] [blame] | 4087 | } |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 4088 | |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 4089 | /* block start is already adjusted for the file extent offset. */ |
Nikolay Borisov | a9ecb65 | 2018-06-20 17:26:42 +0300 | [diff] [blame^] | 4090 | ret = btrfs_lookup_csums_range(trans->fs_info->csum_root, |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 4091 | em->block_start + csum_offset, |
| 4092 | em->block_start + csum_offset + |
| 4093 | csum_len - 1, &ordered_sums, 0); |
| 4094 | if (ret) |
| 4095 | return ret; |
| 4096 | |
| 4097 | while (!list_empty(&ordered_sums)) { |
| 4098 | struct btrfs_ordered_sum *sums = list_entry(ordered_sums.next, |
| 4099 | struct btrfs_ordered_sum, |
| 4100 | list); |
| 4101 | if (!ret) |
Nikolay Borisov | a9ecb65 | 2018-06-20 17:26:42 +0300 | [diff] [blame^] | 4102 | ret = btrfs_csum_file_blocks(trans, log_root, sums); |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 4103 | list_del(&sums->list); |
| 4104 | kfree(sums); |
| 4105 | } |
| 4106 | |
| 4107 | return ret; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4108 | } |
| 4109 | |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4110 | static int log_one_extent(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 9d12262 | 2017-01-18 00:31:40 +0200 | [diff] [blame] | 4111 | struct btrfs_inode *inode, struct btrfs_root *root, |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4112 | const struct extent_map *em, |
| 4113 | struct btrfs_path *path, |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4114 | struct btrfs_log_ctx *ctx) |
| 4115 | { |
| 4116 | struct btrfs_root *log = root->log_root; |
| 4117 | struct btrfs_file_extent_item *fi; |
| 4118 | struct extent_buffer *leaf; |
| 4119 | struct btrfs_map_token token; |
| 4120 | struct btrfs_key key; |
| 4121 | u64 extent_offset = em->start - em->orig_start; |
| 4122 | u64 block_len; |
| 4123 | int ret; |
| 4124 | int extent_inserted = 0; |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4125 | |
Nikolay Borisov | a9ecb65 | 2018-06-20 17:26:42 +0300 | [diff] [blame^] | 4126 | ret = log_extent_csums(trans, inode, log, em); |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4127 | if (ret) |
| 4128 | return ret; |
| 4129 | |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4130 | btrfs_init_map_token(&token); |
| 4131 | |
Nikolay Borisov | 9d12262 | 2017-01-18 00:31:40 +0200 | [diff] [blame] | 4132 | ret = __btrfs_drop_extents(trans, log, &inode->vfs_inode, path, em->start, |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4133 | em->start + em->len, NULL, 0, 1, |
| 4134 | sizeof(*fi), &extent_inserted); |
| 4135 | if (ret) |
| 4136 | return ret; |
| 4137 | |
| 4138 | if (!extent_inserted) { |
Nikolay Borisov | 9d12262 | 2017-01-18 00:31:40 +0200 | [diff] [blame] | 4139 | key.objectid = btrfs_ino(inode); |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4140 | key.type = BTRFS_EXTENT_DATA_KEY; |
| 4141 | key.offset = em->start; |
| 4142 | |
| 4143 | ret = btrfs_insert_empty_item(trans, log, path, &key, |
| 4144 | sizeof(*fi)); |
| 4145 | if (ret) |
| 4146 | return ret; |
| 4147 | } |
| 4148 | leaf = path->nodes[0]; |
| 4149 | fi = btrfs_item_ptr(leaf, path->slots[0], |
| 4150 | struct btrfs_file_extent_item); |
| 4151 | |
Josef Bacik | 50d9aa9 | 2014-11-21 14:52:38 -0500 | [diff] [blame] | 4152 | btrfs_set_token_file_extent_generation(leaf, fi, trans->transid, |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4153 | &token); |
| 4154 | if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) |
| 4155 | btrfs_set_token_file_extent_type(leaf, fi, |
| 4156 | BTRFS_FILE_EXTENT_PREALLOC, |
| 4157 | &token); |
| 4158 | else |
| 4159 | btrfs_set_token_file_extent_type(leaf, fi, |
| 4160 | BTRFS_FILE_EXTENT_REG, |
| 4161 | &token); |
| 4162 | |
| 4163 | block_len = max(em->block_len, em->orig_block_len); |
| 4164 | if (em->compress_type != BTRFS_COMPRESS_NONE) { |
| 4165 | btrfs_set_token_file_extent_disk_bytenr(leaf, fi, |
| 4166 | em->block_start, |
| 4167 | &token); |
| 4168 | btrfs_set_token_file_extent_disk_num_bytes(leaf, fi, block_len, |
| 4169 | &token); |
| 4170 | } else if (em->block_start < EXTENT_MAP_LAST_BYTE) { |
| 4171 | btrfs_set_token_file_extent_disk_bytenr(leaf, fi, |
| 4172 | em->block_start - |
| 4173 | extent_offset, &token); |
| 4174 | btrfs_set_token_file_extent_disk_num_bytes(leaf, fi, block_len, |
| 4175 | &token); |
| 4176 | } else { |
| 4177 | btrfs_set_token_file_extent_disk_bytenr(leaf, fi, 0, &token); |
| 4178 | btrfs_set_token_file_extent_disk_num_bytes(leaf, fi, 0, |
| 4179 | &token); |
| 4180 | } |
| 4181 | |
| 4182 | btrfs_set_token_file_extent_offset(leaf, fi, extent_offset, &token); |
| 4183 | btrfs_set_token_file_extent_num_bytes(leaf, fi, em->len, &token); |
| 4184 | btrfs_set_token_file_extent_ram_bytes(leaf, fi, em->ram_bytes, &token); |
| 4185 | btrfs_set_token_file_extent_compression(leaf, fi, em->compress_type, |
| 4186 | &token); |
| 4187 | btrfs_set_token_file_extent_encryption(leaf, fi, 0, &token); |
| 4188 | btrfs_set_token_file_extent_other_encoding(leaf, fi, 0, &token); |
| 4189 | btrfs_mark_buffer_dirty(leaf); |
| 4190 | |
| 4191 | btrfs_release_path(path); |
| 4192 | |
| 4193 | return ret; |
| 4194 | } |
| 4195 | |
Filipe Manana | 31d11b8 | 2018-05-09 16:01:46 +0100 | [diff] [blame] | 4196 | /* |
| 4197 | * Log all prealloc extents beyond the inode's i_size to make sure we do not |
| 4198 | * lose them after doing a fast fsync and replaying the log. We scan the |
| 4199 | * subvolume's root instead of iterating the inode's extent map tree because |
| 4200 | * otherwise we can log incorrect extent items based on extent map conversion. |
| 4201 | * That can happen due to the fact that extent maps are merged when they |
| 4202 | * are not in the extent map tree's list of modified extents. |
| 4203 | */ |
| 4204 | static int btrfs_log_prealloc_extents(struct btrfs_trans_handle *trans, |
| 4205 | struct btrfs_inode *inode, |
| 4206 | struct btrfs_path *path) |
| 4207 | { |
| 4208 | struct btrfs_root *root = inode->root; |
| 4209 | struct btrfs_key key; |
| 4210 | const u64 i_size = i_size_read(&inode->vfs_inode); |
| 4211 | const u64 ino = btrfs_ino(inode); |
| 4212 | struct btrfs_path *dst_path = NULL; |
| 4213 | u64 last_extent = (u64)-1; |
| 4214 | int ins_nr = 0; |
| 4215 | int start_slot; |
| 4216 | int ret; |
| 4217 | |
| 4218 | if (!(inode->flags & BTRFS_INODE_PREALLOC)) |
| 4219 | return 0; |
| 4220 | |
| 4221 | key.objectid = ino; |
| 4222 | key.type = BTRFS_EXTENT_DATA_KEY; |
| 4223 | key.offset = i_size; |
| 4224 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 4225 | if (ret < 0) |
| 4226 | goto out; |
| 4227 | |
| 4228 | while (true) { |
| 4229 | struct extent_buffer *leaf = path->nodes[0]; |
| 4230 | int slot = path->slots[0]; |
| 4231 | |
| 4232 | if (slot >= btrfs_header_nritems(leaf)) { |
| 4233 | if (ins_nr > 0) { |
| 4234 | ret = copy_items(trans, inode, dst_path, path, |
| 4235 | &last_extent, start_slot, |
| 4236 | ins_nr, 1, 0); |
| 4237 | if (ret < 0) |
| 4238 | goto out; |
| 4239 | ins_nr = 0; |
| 4240 | } |
| 4241 | ret = btrfs_next_leaf(root, path); |
| 4242 | if (ret < 0) |
| 4243 | goto out; |
| 4244 | if (ret > 0) { |
| 4245 | ret = 0; |
| 4246 | break; |
| 4247 | } |
| 4248 | continue; |
| 4249 | } |
| 4250 | |
| 4251 | btrfs_item_key_to_cpu(leaf, &key, slot); |
| 4252 | if (key.objectid > ino) |
| 4253 | break; |
| 4254 | if (WARN_ON_ONCE(key.objectid < ino) || |
| 4255 | key.type < BTRFS_EXTENT_DATA_KEY || |
| 4256 | key.offset < i_size) { |
| 4257 | path->slots[0]++; |
| 4258 | continue; |
| 4259 | } |
| 4260 | if (last_extent == (u64)-1) { |
| 4261 | last_extent = key.offset; |
| 4262 | /* |
| 4263 | * Avoid logging extent items logged in past fsync calls |
| 4264 | * and leading to duplicate keys in the log tree. |
| 4265 | */ |
| 4266 | do { |
| 4267 | ret = btrfs_truncate_inode_items(trans, |
| 4268 | root->log_root, |
| 4269 | &inode->vfs_inode, |
| 4270 | i_size, |
| 4271 | BTRFS_EXTENT_DATA_KEY); |
| 4272 | } while (ret == -EAGAIN); |
| 4273 | if (ret) |
| 4274 | goto out; |
| 4275 | } |
| 4276 | if (ins_nr == 0) |
| 4277 | start_slot = slot; |
| 4278 | ins_nr++; |
| 4279 | path->slots[0]++; |
| 4280 | if (!dst_path) { |
| 4281 | dst_path = btrfs_alloc_path(); |
| 4282 | if (!dst_path) { |
| 4283 | ret = -ENOMEM; |
| 4284 | goto out; |
| 4285 | } |
| 4286 | } |
| 4287 | } |
| 4288 | if (ins_nr > 0) { |
| 4289 | ret = copy_items(trans, inode, dst_path, path, &last_extent, |
| 4290 | start_slot, ins_nr, 1, 0); |
| 4291 | if (ret > 0) |
| 4292 | ret = 0; |
| 4293 | } |
| 4294 | out: |
| 4295 | btrfs_release_path(path); |
| 4296 | btrfs_free_path(dst_path); |
| 4297 | return ret; |
| 4298 | } |
| 4299 | |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4300 | static int btrfs_log_changed_extents(struct btrfs_trans_handle *trans, |
| 4301 | struct btrfs_root *root, |
Nikolay Borisov | 9d12262 | 2017-01-18 00:31:40 +0200 | [diff] [blame] | 4302 | struct btrfs_inode *inode, |
Miao Xie | 827463c | 2014-01-14 20:31:51 +0800 | [diff] [blame] | 4303 | struct btrfs_path *path, |
Filipe Manana | de0ee0e | 2016-01-21 10:17:54 +0000 | [diff] [blame] | 4304 | struct btrfs_log_ctx *ctx, |
| 4305 | const u64 start, |
| 4306 | const u64 end) |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4307 | { |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4308 | struct extent_map *em, *n; |
| 4309 | struct list_head extents; |
Nikolay Borisov | 9d12262 | 2017-01-18 00:31:40 +0200 | [diff] [blame] | 4310 | struct extent_map_tree *tree = &inode->extent_tree; |
Josef Bacik | 8c6c592 | 2017-08-29 10:11:39 -0400 | [diff] [blame] | 4311 | u64 logged_start, logged_end; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4312 | u64 test_gen; |
| 4313 | int ret = 0; |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 4314 | int num = 0; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4315 | |
| 4316 | INIT_LIST_HEAD(&extents); |
| 4317 | |
Nikolay Borisov | 9d12262 | 2017-01-18 00:31:40 +0200 | [diff] [blame] | 4318 | down_write(&inode->dio_sem); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4319 | write_lock(&tree->lock); |
| 4320 | test_gen = root->fs_info->last_trans_committed; |
Josef Bacik | 8c6c592 | 2017-08-29 10:11:39 -0400 | [diff] [blame] | 4321 | logged_start = start; |
| 4322 | logged_end = end; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4323 | |
| 4324 | list_for_each_entry_safe(em, n, &tree->modified_extents, list) { |
| 4325 | list_del_init(&em->list); |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 4326 | /* |
| 4327 | * Just an arbitrary number, this can be really CPU intensive |
| 4328 | * once we start getting a lot of extents, and really once we |
| 4329 | * have a bunch of extents we just want to commit since it will |
| 4330 | * be faster. |
| 4331 | */ |
| 4332 | if (++num > 32768) { |
| 4333 | list_del_init(&tree->modified_extents); |
| 4334 | ret = -EFBIG; |
| 4335 | goto process; |
| 4336 | } |
| 4337 | |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4338 | if (em->generation <= test_gen) |
| 4339 | continue; |
Josef Bacik | 8c6c592 | 2017-08-29 10:11:39 -0400 | [diff] [blame] | 4340 | |
Filipe Manana | 31d11b8 | 2018-05-09 16:01:46 +0100 | [diff] [blame] | 4341 | /* We log prealloc extents beyond eof later. */ |
| 4342 | if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) && |
| 4343 | em->start >= i_size_read(&inode->vfs_inode)) |
| 4344 | continue; |
| 4345 | |
Josef Bacik | 8c6c592 | 2017-08-29 10:11:39 -0400 | [diff] [blame] | 4346 | if (em->start < logged_start) |
| 4347 | logged_start = em->start; |
| 4348 | if ((em->start + em->len - 1) > logged_end) |
| 4349 | logged_end = em->start + em->len - 1; |
| 4350 | |
Josef Bacik | ff44c6e | 2012-09-14 12:59:20 -0400 | [diff] [blame] | 4351 | /* Need a ref to keep it from getting evicted from cache */ |
Elena Reshetova | 490b54d | 2017-03-03 10:55:12 +0200 | [diff] [blame] | 4352 | refcount_inc(&em->refs); |
Josef Bacik | ff44c6e | 2012-09-14 12:59:20 -0400 | [diff] [blame] | 4353 | set_bit(EXTENT_FLAG_LOGGING, &em->flags); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4354 | list_add_tail(&em->list, &extents); |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 4355 | num++; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4356 | } |
| 4357 | |
| 4358 | list_sort(NULL, &extents, extent_cmp); |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 4359 | process: |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4360 | while (!list_empty(&extents)) { |
| 4361 | em = list_entry(extents.next, struct extent_map, list); |
| 4362 | |
| 4363 | list_del_init(&em->list); |
| 4364 | |
| 4365 | /* |
| 4366 | * If we had an error we just need to delete everybody from our |
| 4367 | * private list. |
| 4368 | */ |
Josef Bacik | ff44c6e | 2012-09-14 12:59:20 -0400 | [diff] [blame] | 4369 | if (ret) { |
Josef Bacik | 201a903 | 2013-01-24 12:02:07 -0500 | [diff] [blame] | 4370 | clear_em_logging(tree, em); |
Josef Bacik | ff44c6e | 2012-09-14 12:59:20 -0400 | [diff] [blame] | 4371 | free_extent_map(em); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4372 | continue; |
Josef Bacik | ff44c6e | 2012-09-14 12:59:20 -0400 | [diff] [blame] | 4373 | } |
| 4374 | |
| 4375 | write_unlock(&tree->lock); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4376 | |
Josef Bacik | a2120a4 | 2018-05-23 11:58:35 -0400 | [diff] [blame] | 4377 | ret = log_one_extent(trans, inode, root, em, path, ctx); |
Josef Bacik | ff44c6e | 2012-09-14 12:59:20 -0400 | [diff] [blame] | 4378 | write_lock(&tree->lock); |
Josef Bacik | 201a903 | 2013-01-24 12:02:07 -0500 | [diff] [blame] | 4379 | clear_em_logging(tree, em); |
| 4380 | free_extent_map(em); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4381 | } |
Josef Bacik | ff44c6e | 2012-09-14 12:59:20 -0400 | [diff] [blame] | 4382 | WARN_ON(!list_empty(&extents)); |
| 4383 | write_unlock(&tree->lock); |
Nikolay Borisov | 9d12262 | 2017-01-18 00:31:40 +0200 | [diff] [blame] | 4384 | up_write(&inode->dio_sem); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4385 | |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4386 | btrfs_release_path(path); |
Filipe Manana | 31d11b8 | 2018-05-09 16:01:46 +0100 | [diff] [blame] | 4387 | if (!ret) |
| 4388 | ret = btrfs_log_prealloc_extents(trans, inode, path); |
| 4389 | |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4390 | return ret; |
| 4391 | } |
| 4392 | |
Nikolay Borisov | 481b01c | 2017-01-18 00:31:34 +0200 | [diff] [blame] | 4393 | 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] | 4394 | struct btrfs_path *path, u64 *size_ret) |
| 4395 | { |
| 4396 | struct btrfs_key key; |
| 4397 | int ret; |
| 4398 | |
Nikolay Borisov | 481b01c | 2017-01-18 00:31:34 +0200 | [diff] [blame] | 4399 | key.objectid = btrfs_ino(inode); |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 4400 | key.type = BTRFS_INODE_ITEM_KEY; |
| 4401 | key.offset = 0; |
| 4402 | |
| 4403 | ret = btrfs_search_slot(NULL, log, &key, path, 0, 0); |
| 4404 | if (ret < 0) { |
| 4405 | return ret; |
| 4406 | } else if (ret > 0) { |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 4407 | *size_ret = 0; |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 4408 | } else { |
| 4409 | struct btrfs_inode_item *item; |
| 4410 | |
| 4411 | item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 4412 | struct btrfs_inode_item); |
| 4413 | *size_ret = btrfs_inode_size(path->nodes[0], item); |
| 4414 | } |
| 4415 | |
| 4416 | btrfs_release_path(path); |
| 4417 | return 0; |
| 4418 | } |
| 4419 | |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 4420 | /* |
| 4421 | * At the moment we always log all xattrs. This is to figure out at log replay |
| 4422 | * time which xattrs must have their deletion replayed. If a xattr is missing |
| 4423 | * in the log tree and exists in the fs/subvol tree, we delete it. This is |
| 4424 | * because if a xattr is deleted, the inode is fsynced and a power failure |
| 4425 | * happens, causing the log to be replayed the next time the fs is mounted, |
| 4426 | * we want the xattr to not exist anymore (same behaviour as other filesystems |
| 4427 | * with a journal, ext3/4, xfs, f2fs, etc). |
| 4428 | */ |
| 4429 | static int btrfs_log_all_xattrs(struct btrfs_trans_handle *trans, |
| 4430 | struct btrfs_root *root, |
Nikolay Borisov | 1a93c36 | 2017-01-18 00:31:37 +0200 | [diff] [blame] | 4431 | struct btrfs_inode *inode, |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 4432 | struct btrfs_path *path, |
| 4433 | struct btrfs_path *dst_path) |
| 4434 | { |
| 4435 | int ret; |
| 4436 | struct btrfs_key key; |
Nikolay Borisov | 1a93c36 | 2017-01-18 00:31:37 +0200 | [diff] [blame] | 4437 | const u64 ino = btrfs_ino(inode); |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 4438 | int ins_nr = 0; |
| 4439 | int start_slot = 0; |
| 4440 | |
| 4441 | key.objectid = ino; |
| 4442 | key.type = BTRFS_XATTR_ITEM_KEY; |
| 4443 | key.offset = 0; |
| 4444 | |
| 4445 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 4446 | if (ret < 0) |
| 4447 | return ret; |
| 4448 | |
| 4449 | while (true) { |
| 4450 | int slot = path->slots[0]; |
| 4451 | struct extent_buffer *leaf = path->nodes[0]; |
| 4452 | int nritems = btrfs_header_nritems(leaf); |
| 4453 | |
| 4454 | if (slot >= nritems) { |
| 4455 | if (ins_nr > 0) { |
| 4456 | u64 last_extent = 0; |
| 4457 | |
Nikolay Borisov | 1a93c36 | 2017-01-18 00:31:37 +0200 | [diff] [blame] | 4458 | ret = copy_items(trans, inode, dst_path, path, |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 4459 | &last_extent, start_slot, |
| 4460 | ins_nr, 1, 0); |
| 4461 | /* can't be 1, extent items aren't processed */ |
| 4462 | ASSERT(ret <= 0); |
| 4463 | if (ret < 0) |
| 4464 | return ret; |
| 4465 | ins_nr = 0; |
| 4466 | } |
| 4467 | ret = btrfs_next_leaf(root, path); |
| 4468 | if (ret < 0) |
| 4469 | return ret; |
| 4470 | else if (ret > 0) |
| 4471 | break; |
| 4472 | continue; |
| 4473 | } |
| 4474 | |
| 4475 | btrfs_item_key_to_cpu(leaf, &key, slot); |
| 4476 | if (key.objectid != ino || key.type != BTRFS_XATTR_ITEM_KEY) |
| 4477 | break; |
| 4478 | |
| 4479 | if (ins_nr == 0) |
| 4480 | start_slot = slot; |
| 4481 | ins_nr++; |
| 4482 | path->slots[0]++; |
| 4483 | cond_resched(); |
| 4484 | } |
| 4485 | if (ins_nr > 0) { |
| 4486 | u64 last_extent = 0; |
| 4487 | |
Nikolay Borisov | 1a93c36 | 2017-01-18 00:31:37 +0200 | [diff] [blame] | 4488 | ret = copy_items(trans, inode, dst_path, path, |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 4489 | &last_extent, start_slot, |
| 4490 | ins_nr, 1, 0); |
| 4491 | /* can't be 1, extent items aren't processed */ |
| 4492 | ASSERT(ret <= 0); |
| 4493 | if (ret < 0) |
| 4494 | return ret; |
| 4495 | } |
| 4496 | |
| 4497 | return 0; |
| 4498 | } |
| 4499 | |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4500 | /* |
| 4501 | * If the no holes feature is enabled we need to make sure any hole between the |
| 4502 | * last extent and the i_size of our inode is explicitly marked in the log. This |
| 4503 | * is to make sure that doing something like: |
| 4504 | * |
| 4505 | * 1) create file with 128Kb of data |
| 4506 | * 2) truncate file to 64Kb |
| 4507 | * 3) truncate file to 256Kb |
| 4508 | * 4) fsync file |
| 4509 | * 5) <crash/power failure> |
| 4510 | * 6) mount fs and trigger log replay |
| 4511 | * |
| 4512 | * Will give us a file with a size of 256Kb, the first 64Kb of data match what |
| 4513 | * the file had in its first 64Kb of data at step 1 and the last 192Kb of the |
| 4514 | * file correspond to a hole. The presence of explicit holes in a log tree is |
| 4515 | * what guarantees that log replay will remove/adjust file extent items in the |
| 4516 | * fs/subvol tree. |
| 4517 | * |
| 4518 | * Here we do not need to care about holes between extents, that is already done |
| 4519 | * by copy_items(). We also only need to do this in the full sync path, where we |
| 4520 | * lookup for extents from the fs/subvol tree only. In the fast path case, we |
| 4521 | * lookup the list of modified extent maps and if any represents a hole, we |
| 4522 | * insert a corresponding extent representing a hole in the log tree. |
| 4523 | */ |
| 4524 | static int btrfs_log_trailing_hole(struct btrfs_trans_handle *trans, |
| 4525 | struct btrfs_root *root, |
Nikolay Borisov | a0308dd | 2017-01-18 00:31:38 +0200 | [diff] [blame] | 4526 | struct btrfs_inode *inode, |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4527 | struct btrfs_path *path) |
| 4528 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4529 | struct btrfs_fs_info *fs_info = root->fs_info; |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4530 | int ret; |
| 4531 | struct btrfs_key key; |
| 4532 | u64 hole_start; |
| 4533 | u64 hole_size; |
| 4534 | struct extent_buffer *leaf; |
| 4535 | struct btrfs_root *log = root->log_root; |
Nikolay Borisov | a0308dd | 2017-01-18 00:31:38 +0200 | [diff] [blame] | 4536 | const u64 ino = btrfs_ino(inode); |
| 4537 | const u64 i_size = i_size_read(&inode->vfs_inode); |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4538 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4539 | if (!btrfs_fs_incompat(fs_info, NO_HOLES)) |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4540 | return 0; |
| 4541 | |
| 4542 | key.objectid = ino; |
| 4543 | key.type = BTRFS_EXTENT_DATA_KEY; |
| 4544 | key.offset = (u64)-1; |
| 4545 | |
| 4546 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 4547 | ASSERT(ret != 0); |
| 4548 | if (ret < 0) |
| 4549 | return ret; |
| 4550 | |
| 4551 | ASSERT(path->slots[0] > 0); |
| 4552 | path->slots[0]--; |
| 4553 | leaf = path->nodes[0]; |
| 4554 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 4555 | |
| 4556 | if (key.objectid != ino || key.type != BTRFS_EXTENT_DATA_KEY) { |
| 4557 | /* inode does not have any extents */ |
| 4558 | hole_start = 0; |
| 4559 | hole_size = i_size; |
| 4560 | } else { |
| 4561 | struct btrfs_file_extent_item *extent; |
| 4562 | u64 len; |
| 4563 | |
| 4564 | /* |
| 4565 | * If there's an extent beyond i_size, an explicit hole was |
| 4566 | * already inserted by copy_items(). |
| 4567 | */ |
| 4568 | if (key.offset >= i_size) |
| 4569 | return 0; |
| 4570 | |
| 4571 | extent = btrfs_item_ptr(leaf, path->slots[0], |
| 4572 | struct btrfs_file_extent_item); |
| 4573 | |
| 4574 | if (btrfs_file_extent_type(leaf, extent) == |
| 4575 | BTRFS_FILE_EXTENT_INLINE) { |
| 4576 | len = btrfs_file_extent_inline_len(leaf, |
| 4577 | path->slots[0], |
| 4578 | extent); |
Filipe Manana | 6399fb5 | 2017-07-28 15:22:36 +0100 | [diff] [blame] | 4579 | ASSERT(len == i_size || |
| 4580 | (len == fs_info->sectorsize && |
| 4581 | btrfs_file_extent_compression(leaf, extent) != |
| 4582 | BTRFS_COMPRESS_NONE)); |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4583 | return 0; |
| 4584 | } |
| 4585 | |
| 4586 | len = btrfs_file_extent_num_bytes(leaf, extent); |
| 4587 | /* Last extent goes beyond i_size, no need to log a hole. */ |
| 4588 | if (key.offset + len > i_size) |
| 4589 | return 0; |
| 4590 | hole_start = key.offset + len; |
| 4591 | hole_size = i_size - hole_start; |
| 4592 | } |
| 4593 | btrfs_release_path(path); |
| 4594 | |
| 4595 | /* Last extent ends at i_size. */ |
| 4596 | if (hole_size == 0) |
| 4597 | return 0; |
| 4598 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4599 | hole_size = ALIGN(hole_size, fs_info->sectorsize); |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4600 | ret = btrfs_insert_file_extent(trans, log, ino, hole_start, 0, 0, |
| 4601 | hole_size, 0, hole_size, 0, 0, 0); |
| 4602 | return ret; |
| 4603 | } |
| 4604 | |
Filipe Manana | 56f23fd | 2016-03-30 23:37:21 +0100 | [diff] [blame] | 4605 | /* |
| 4606 | * When we are logging a new inode X, check if it doesn't have a reference that |
| 4607 | * matches the reference from some other inode Y created in a past transaction |
| 4608 | * and that was renamed in the current transaction. If we don't do this, then at |
| 4609 | * log replay time we can lose inode Y (and all its files if it's a directory): |
| 4610 | * |
| 4611 | * mkdir /mnt/x |
| 4612 | * echo "hello world" > /mnt/x/foobar |
| 4613 | * sync |
| 4614 | * mv /mnt/x /mnt/y |
| 4615 | * mkdir /mnt/x # or touch /mnt/x |
| 4616 | * xfs_io -c fsync /mnt/x |
| 4617 | * <power fail> |
| 4618 | * mount fs, trigger log replay |
| 4619 | * |
| 4620 | * After the log replay procedure, we would lose the first directory and all its |
| 4621 | * files (file foobar). |
| 4622 | * For the case where inode Y is not a directory we simply end up losing it: |
| 4623 | * |
| 4624 | * echo "123" > /mnt/foo |
| 4625 | * sync |
| 4626 | * mv /mnt/foo /mnt/bar |
| 4627 | * echo "abc" > /mnt/foo |
| 4628 | * xfs_io -c fsync /mnt/foo |
| 4629 | * <power fail> |
| 4630 | * |
| 4631 | * We also need this for cases where a snapshot entry is replaced by some other |
| 4632 | * entry (file or directory) otherwise we end up with an unreplayable log due to |
| 4633 | * attempts to delete the snapshot entry (entry of type BTRFS_ROOT_ITEM_KEY) as |
| 4634 | * if it were a regular entry: |
| 4635 | * |
| 4636 | * mkdir /mnt/x |
| 4637 | * btrfs subvolume snapshot /mnt /mnt/x/snap |
| 4638 | * btrfs subvolume delete /mnt/x/snap |
| 4639 | * rmdir /mnt/x |
| 4640 | * mkdir /mnt/x |
| 4641 | * fsync /mnt/x or fsync some new file inside it |
| 4642 | * <power fail> |
| 4643 | * |
| 4644 | * The snapshot delete, rmdir of x, mkdir of a new x and the fsync all happen in |
| 4645 | * the same transaction. |
| 4646 | */ |
| 4647 | static int btrfs_check_ref_name_override(struct extent_buffer *eb, |
| 4648 | const int slot, |
| 4649 | const struct btrfs_key *key, |
Nikolay Borisov | 4791c8f | 2017-01-18 00:31:35 +0200 | [diff] [blame] | 4650 | struct btrfs_inode *inode, |
Filipe Manana | 44f714d | 2016-06-06 16:11:13 +0100 | [diff] [blame] | 4651 | u64 *other_ino) |
Filipe Manana | 56f23fd | 2016-03-30 23:37:21 +0100 | [diff] [blame] | 4652 | { |
| 4653 | int ret; |
| 4654 | struct btrfs_path *search_path; |
| 4655 | char *name = NULL; |
| 4656 | u32 name_len = 0; |
| 4657 | u32 item_size = btrfs_item_size_nr(eb, slot); |
| 4658 | u32 cur_offset = 0; |
| 4659 | unsigned long ptr = btrfs_item_ptr_offset(eb, slot); |
| 4660 | |
| 4661 | search_path = btrfs_alloc_path(); |
| 4662 | if (!search_path) |
| 4663 | return -ENOMEM; |
| 4664 | search_path->search_commit_root = 1; |
| 4665 | search_path->skip_locking = 1; |
| 4666 | |
| 4667 | while (cur_offset < item_size) { |
| 4668 | u64 parent; |
| 4669 | u32 this_name_len; |
| 4670 | u32 this_len; |
| 4671 | unsigned long name_ptr; |
| 4672 | struct btrfs_dir_item *di; |
| 4673 | |
| 4674 | if (key->type == BTRFS_INODE_REF_KEY) { |
| 4675 | struct btrfs_inode_ref *iref; |
| 4676 | |
| 4677 | iref = (struct btrfs_inode_ref *)(ptr + cur_offset); |
| 4678 | parent = key->offset; |
| 4679 | this_name_len = btrfs_inode_ref_name_len(eb, iref); |
| 4680 | name_ptr = (unsigned long)(iref + 1); |
| 4681 | this_len = sizeof(*iref) + this_name_len; |
| 4682 | } else { |
| 4683 | struct btrfs_inode_extref *extref; |
| 4684 | |
| 4685 | extref = (struct btrfs_inode_extref *)(ptr + |
| 4686 | cur_offset); |
| 4687 | parent = btrfs_inode_extref_parent(eb, extref); |
| 4688 | this_name_len = btrfs_inode_extref_name_len(eb, extref); |
| 4689 | name_ptr = (unsigned long)&extref->name; |
| 4690 | this_len = sizeof(*extref) + this_name_len; |
| 4691 | } |
| 4692 | |
| 4693 | if (this_name_len > name_len) { |
| 4694 | char *new_name; |
| 4695 | |
| 4696 | new_name = krealloc(name, this_name_len, GFP_NOFS); |
| 4697 | if (!new_name) { |
| 4698 | ret = -ENOMEM; |
| 4699 | goto out; |
| 4700 | } |
| 4701 | name_len = this_name_len; |
| 4702 | name = new_name; |
| 4703 | } |
| 4704 | |
| 4705 | read_extent_buffer(eb, name, name_ptr, this_name_len); |
Nikolay Borisov | 4791c8f | 2017-01-18 00:31:35 +0200 | [diff] [blame] | 4706 | di = btrfs_lookup_dir_item(NULL, inode->root, search_path, |
| 4707 | parent, name, this_name_len, 0); |
Filipe Manana | 56f23fd | 2016-03-30 23:37:21 +0100 | [diff] [blame] | 4708 | if (di && !IS_ERR(di)) { |
Filipe Manana | 44f714d | 2016-06-06 16:11:13 +0100 | [diff] [blame] | 4709 | struct btrfs_key di_key; |
| 4710 | |
| 4711 | btrfs_dir_item_key_to_cpu(search_path->nodes[0], |
| 4712 | di, &di_key); |
| 4713 | if (di_key.type == BTRFS_INODE_ITEM_KEY) { |
| 4714 | ret = 1; |
| 4715 | *other_ino = di_key.objectid; |
| 4716 | } else { |
| 4717 | ret = -EAGAIN; |
| 4718 | } |
Filipe Manana | 56f23fd | 2016-03-30 23:37:21 +0100 | [diff] [blame] | 4719 | goto out; |
| 4720 | } else if (IS_ERR(di)) { |
| 4721 | ret = PTR_ERR(di); |
| 4722 | goto out; |
| 4723 | } |
| 4724 | btrfs_release_path(search_path); |
| 4725 | |
| 4726 | cur_offset += this_len; |
| 4727 | } |
| 4728 | ret = 0; |
| 4729 | out: |
| 4730 | btrfs_free_path(search_path); |
| 4731 | kfree(name); |
| 4732 | return ret; |
| 4733 | } |
| 4734 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4735 | /* log a single inode in the tree log. |
| 4736 | * At least one parent directory for this inode must exist in the tree |
| 4737 | * or be logged already. |
| 4738 | * |
| 4739 | * Any items from this inode changed by the current transaction are copied |
| 4740 | * to the log tree. An extra reference is taken on any extents in this |
| 4741 | * file, allowing us to avoid a whole pile of corner cases around logging |
| 4742 | * blocks that have been removed from the tree. |
| 4743 | * |
| 4744 | * See LOG_INODE_ALL and related defines for a description of what inode_only |
| 4745 | * does. |
| 4746 | * |
| 4747 | * This handles both files and directories. |
| 4748 | */ |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 4749 | static int btrfs_log_inode(struct btrfs_trans_handle *trans, |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4750 | struct btrfs_root *root, struct btrfs_inode *inode, |
Filipe Manana | 49dae1b | 2014-09-06 22:34:39 +0100 | [diff] [blame] | 4751 | int inode_only, |
| 4752 | const loff_t start, |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4753 | const loff_t end, |
| 4754 | struct btrfs_log_ctx *ctx) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4755 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4756 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4757 | struct btrfs_path *path; |
| 4758 | struct btrfs_path *dst_path; |
| 4759 | struct btrfs_key min_key; |
| 4760 | struct btrfs_key max_key; |
| 4761 | struct btrfs_root *log = root->log_root; |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 4762 | u64 last_extent = 0; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 4763 | int err = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4764 | int ret; |
Chris Mason | 3a5f1d4 | 2008-09-11 15:53:37 -0400 | [diff] [blame] | 4765 | int nritems; |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4766 | int ins_start_slot = 0; |
| 4767 | int ins_nr; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4768 | bool fast_search = false; |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4769 | u64 ino = btrfs_ino(inode); |
| 4770 | struct extent_map_tree *em_tree = &inode->extent_tree; |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 4771 | u64 logged_isize = 0; |
Filipe Manana | e4545de | 2015-06-17 12:49:23 +0100 | [diff] [blame] | 4772 | bool need_log_inode_item = true; |
Filipe Manana | 9a8fca6 | 2018-05-11 16:42:42 +0100 | [diff] [blame] | 4773 | bool xattrs_logged = false; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4774 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4775 | path = btrfs_alloc_path(); |
Tsutomu Itoh | 5df6708 | 2011-02-01 09:17:35 +0000 | [diff] [blame] | 4776 | if (!path) |
| 4777 | return -ENOMEM; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4778 | dst_path = btrfs_alloc_path(); |
Tsutomu Itoh | 5df6708 | 2011-02-01 09:17:35 +0000 | [diff] [blame] | 4779 | if (!dst_path) { |
| 4780 | btrfs_free_path(path); |
| 4781 | return -ENOMEM; |
| 4782 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4783 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4784 | min_key.objectid = ino; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4785 | min_key.type = BTRFS_INODE_ITEM_KEY; |
| 4786 | min_key.offset = 0; |
| 4787 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4788 | max_key.objectid = ino; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 4789 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 4790 | |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4791 | /* today the code can only do partial logging of directories */ |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4792 | if (S_ISDIR(inode->vfs_inode.i_mode) || |
Miao Xie | 5269b67 | 2012-11-01 07:35:23 +0000 | [diff] [blame] | 4793 | (!test_bit(BTRFS_INODE_NEEDS_FULL_SYNC, |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4794 | &inode->runtime_flags) && |
Liu Bo | 781feef | 2016-11-30 16:20:25 -0800 | [diff] [blame] | 4795 | inode_only >= LOG_INODE_EXISTS)) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4796 | max_key.type = BTRFS_XATTR_ITEM_KEY; |
| 4797 | else |
| 4798 | max_key.type = (u8)-1; |
| 4799 | max_key.offset = (u64)-1; |
| 4800 | |
Filipe Manana | 2c2c452 | 2015-01-13 16:40:04 +0000 | [diff] [blame] | 4801 | /* |
| 4802 | * Only run delayed items if we are a dir or a new file. |
| 4803 | * Otherwise commit the delayed inode only, which is needed in |
| 4804 | * order for the log replay code to mark inodes for link count |
| 4805 | * fixup (create temporary BTRFS_TREE_LOG_FIXUP_OBJECTID items). |
| 4806 | */ |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4807 | if (S_ISDIR(inode->vfs_inode.i_mode) || |
| 4808 | inode->generation > fs_info->last_trans_committed) |
| 4809 | ret = btrfs_commit_inode_delayed_items(trans, inode); |
Filipe Manana | 2c2c452 | 2015-01-13 16:40:04 +0000 | [diff] [blame] | 4810 | else |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4811 | ret = btrfs_commit_inode_delayed_inode(inode); |
Filipe Manana | 2c2c452 | 2015-01-13 16:40:04 +0000 | [diff] [blame] | 4812 | |
| 4813 | if (ret) { |
| 4814 | btrfs_free_path(path); |
| 4815 | btrfs_free_path(dst_path); |
| 4816 | return ret; |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 4817 | } |
| 4818 | |
Liu Bo | 781feef | 2016-11-30 16:20:25 -0800 | [diff] [blame] | 4819 | if (inode_only == LOG_OTHER_INODE) { |
| 4820 | inode_only = LOG_INODE_EXISTS; |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4821 | mutex_lock_nested(&inode->log_mutex, SINGLE_DEPTH_NESTING); |
Liu Bo | 781feef | 2016-11-30 16:20:25 -0800 | [diff] [blame] | 4822 | } else { |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4823 | mutex_lock(&inode->log_mutex); |
Liu Bo | 781feef | 2016-11-30 16:20:25 -0800 | [diff] [blame] | 4824 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4825 | |
Filipe Manana | 5e33a2b | 2016-02-25 23:19:38 +0000 | [diff] [blame] | 4826 | /* |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4827 | * a brute force approach to making sure we get the most uptodate |
| 4828 | * copies of everything. |
| 4829 | */ |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4830 | if (S_ISDIR(inode->vfs_inode.i_mode)) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4831 | int max_key_type = BTRFS_DIR_LOG_INDEX_KEY; |
| 4832 | |
Filipe Manana | 4f764e5 | 2015-02-23 19:53:35 +0000 | [diff] [blame] | 4833 | if (inode_only == LOG_INODE_EXISTS) |
| 4834 | max_key_type = BTRFS_XATTR_ITEM_KEY; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4835 | ret = drop_objectid_items(trans, log, path, ino, max_key_type); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4836 | } else { |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 4837 | if (inode_only == LOG_INODE_EXISTS) { |
| 4838 | /* |
| 4839 | * Make sure the new inode item we write to the log has |
| 4840 | * the same isize as the current one (if it exists). |
| 4841 | * This is necessary to prevent data loss after log |
| 4842 | * replay, and also to prevent doing a wrong expanding |
| 4843 | * truncate - for e.g. create file, write 4K into offset |
| 4844 | * 0, fsync, write 4K into offset 4096, add hard link, |
| 4845 | * fsync some other file (to sync log), power fail - if |
| 4846 | * we use the inode's current i_size, after log replay |
| 4847 | * we get a 8Kb file, with the last 4Kb extent as a hole |
| 4848 | * (zeroes), as if an expanding truncate happened, |
| 4849 | * instead of getting a file of 4Kb only. |
| 4850 | */ |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4851 | err = logged_inode_size(log, inode, path, &logged_isize); |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 4852 | if (err) |
| 4853 | goto out_unlock; |
| 4854 | } |
Filipe Manana | a742994 | 2015-02-13 16:56:14 +0000 | [diff] [blame] | 4855 | if (test_bit(BTRFS_INODE_NEEDS_FULL_SYNC, |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4856 | &inode->runtime_flags)) { |
Filipe Manana | a742994 | 2015-02-13 16:56:14 +0000 | [diff] [blame] | 4857 | if (inode_only == LOG_INODE_EXISTS) { |
Filipe Manana | 4f764e5 | 2015-02-23 19:53:35 +0000 | [diff] [blame] | 4858 | max_key.type = BTRFS_XATTR_ITEM_KEY; |
Filipe Manana | a742994 | 2015-02-13 16:56:14 +0000 | [diff] [blame] | 4859 | ret = drop_objectid_items(trans, log, path, ino, |
| 4860 | max_key.type); |
| 4861 | } else { |
| 4862 | clear_bit(BTRFS_INODE_NEEDS_FULL_SYNC, |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4863 | &inode->runtime_flags); |
Filipe Manana | a742994 | 2015-02-13 16:56:14 +0000 | [diff] [blame] | 4864 | clear_bit(BTRFS_INODE_COPY_EVERYTHING, |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4865 | &inode->runtime_flags); |
Chris Mason | 28ed134 | 2014-12-17 09:41:04 -0800 | [diff] [blame] | 4866 | while(1) { |
| 4867 | ret = btrfs_truncate_inode_items(trans, |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4868 | log, &inode->vfs_inode, 0, 0); |
Chris Mason | 28ed134 | 2014-12-17 09:41:04 -0800 | [diff] [blame] | 4869 | if (ret != -EAGAIN) |
| 4870 | break; |
| 4871 | } |
Filipe Manana | a742994 | 2015-02-13 16:56:14 +0000 | [diff] [blame] | 4872 | } |
Filipe Manana | 4f764e5 | 2015-02-23 19:53:35 +0000 | [diff] [blame] | 4873 | } else if (test_and_clear_bit(BTRFS_INODE_COPY_EVERYTHING, |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4874 | &inode->runtime_flags) || |
Josef Bacik | 6cfab85 | 2013-11-12 16:25:58 -0500 | [diff] [blame] | 4875 | inode_only == LOG_INODE_EXISTS) { |
Filipe Manana | 4f764e5 | 2015-02-23 19:53:35 +0000 | [diff] [blame] | 4876 | if (inode_only == LOG_INODE_ALL) |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 4877 | fast_search = true; |
Filipe Manana | 4f764e5 | 2015-02-23 19:53:35 +0000 | [diff] [blame] | 4878 | max_key.type = BTRFS_XATTR_ITEM_KEY; |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 4879 | ret = drop_objectid_items(trans, log, path, ino, |
| 4880 | max_key.type); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4881 | } else { |
Liu Bo | 183f37f | 2012-11-01 06:38:47 +0000 | [diff] [blame] | 4882 | if (inode_only == LOG_INODE_ALL) |
| 4883 | fast_search = true; |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 4884 | goto log_extents; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4885 | } |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 4886 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4887 | } |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 4888 | if (ret) { |
| 4889 | err = ret; |
| 4890 | goto out_unlock; |
| 4891 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4892 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 4893 | while (1) { |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4894 | ins_nr = 0; |
Filipe David Borba Manana | 6174d3c | 2013-10-01 16:13:42 +0100 | [diff] [blame] | 4895 | ret = btrfs_search_forward(root, &min_key, |
Eric Sandeen | de78b51 | 2013-01-31 18:21:12 +0000 | [diff] [blame] | 4896 | path, trans->transid); |
Liu Bo | fb770ae | 2016-07-05 12:10:14 -0700 | [diff] [blame] | 4897 | if (ret < 0) { |
| 4898 | err = ret; |
| 4899 | goto out_unlock; |
| 4900 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4901 | if (ret != 0) |
| 4902 | break; |
Chris Mason | 3a5f1d4 | 2008-09-11 15:53:37 -0400 | [diff] [blame] | 4903 | again: |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4904 | /* note, ins_nr might be > 0 here, cleanup outside the loop */ |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4905 | if (min_key.objectid != ino) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4906 | break; |
| 4907 | if (min_key.type > max_key.type) |
| 4908 | break; |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4909 | |
Filipe Manana | e4545de | 2015-06-17 12:49:23 +0100 | [diff] [blame] | 4910 | if (min_key.type == BTRFS_INODE_ITEM_KEY) |
| 4911 | need_log_inode_item = false; |
| 4912 | |
Filipe Manana | 56f23fd | 2016-03-30 23:37:21 +0100 | [diff] [blame] | 4913 | if ((min_key.type == BTRFS_INODE_REF_KEY || |
| 4914 | min_key.type == BTRFS_INODE_EXTREF_KEY) && |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4915 | inode->generation == trans->transid) { |
Filipe Manana | 44f714d | 2016-06-06 16:11:13 +0100 | [diff] [blame] | 4916 | u64 other_ino = 0; |
| 4917 | |
Filipe Manana | 56f23fd | 2016-03-30 23:37:21 +0100 | [diff] [blame] | 4918 | ret = btrfs_check_ref_name_override(path->nodes[0], |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4919 | path->slots[0], &min_key, inode, |
| 4920 | &other_ino); |
Filipe Manana | 56f23fd | 2016-03-30 23:37:21 +0100 | [diff] [blame] | 4921 | if (ret < 0) { |
| 4922 | err = ret; |
| 4923 | goto out_unlock; |
Filipe Manana | 28a2359 | 2016-08-23 21:13:51 +0100 | [diff] [blame] | 4924 | } else if (ret > 0 && ctx && |
Nikolay Borisov | 4a0cc7c | 2017-01-10 20:35:31 +0200 | [diff] [blame] | 4925 | other_ino != btrfs_ino(BTRFS_I(ctx->inode))) { |
Filipe Manana | 44f714d | 2016-06-06 16:11:13 +0100 | [diff] [blame] | 4926 | struct btrfs_key inode_key; |
| 4927 | struct inode *other_inode; |
| 4928 | |
| 4929 | if (ins_nr > 0) { |
| 4930 | ins_nr++; |
| 4931 | } else { |
| 4932 | ins_nr = 1; |
| 4933 | ins_start_slot = path->slots[0]; |
| 4934 | } |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4935 | ret = copy_items(trans, inode, dst_path, path, |
Filipe Manana | 44f714d | 2016-06-06 16:11:13 +0100 | [diff] [blame] | 4936 | &last_extent, ins_start_slot, |
| 4937 | ins_nr, inode_only, |
| 4938 | logged_isize); |
| 4939 | if (ret < 0) { |
| 4940 | err = ret; |
| 4941 | goto out_unlock; |
| 4942 | } |
| 4943 | ins_nr = 0; |
| 4944 | btrfs_release_path(path); |
| 4945 | inode_key.objectid = other_ino; |
| 4946 | inode_key.type = BTRFS_INODE_ITEM_KEY; |
| 4947 | inode_key.offset = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4948 | other_inode = btrfs_iget(fs_info->sb, |
Filipe Manana | 44f714d | 2016-06-06 16:11:13 +0100 | [diff] [blame] | 4949 | &inode_key, root, |
| 4950 | NULL); |
| 4951 | /* |
| 4952 | * If the other inode that had a conflicting dir |
| 4953 | * entry was deleted in the current transaction, |
| 4954 | * we don't need to do more work nor fallback to |
| 4955 | * a transaction commit. |
| 4956 | */ |
| 4957 | if (IS_ERR(other_inode) && |
| 4958 | PTR_ERR(other_inode) == -ENOENT) { |
| 4959 | goto next_key; |
| 4960 | } else if (IS_ERR(other_inode)) { |
| 4961 | err = PTR_ERR(other_inode); |
| 4962 | goto out_unlock; |
| 4963 | } |
| 4964 | /* |
| 4965 | * We are safe logging the other inode without |
| 4966 | * acquiring its i_mutex as long as we log with |
| 4967 | * the LOG_INODE_EXISTS mode. We're safe against |
| 4968 | * concurrent renames of the other inode as well |
| 4969 | * because during a rename we pin the log and |
| 4970 | * update the log with the new name before we |
| 4971 | * unpin it. |
| 4972 | */ |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4973 | err = btrfs_log_inode(trans, root, |
| 4974 | BTRFS_I(other_inode), |
| 4975 | LOG_OTHER_INODE, 0, LLONG_MAX, |
| 4976 | ctx); |
Filipe Manana | 44f714d | 2016-06-06 16:11:13 +0100 | [diff] [blame] | 4977 | iput(other_inode); |
| 4978 | if (err) |
| 4979 | goto out_unlock; |
| 4980 | else |
| 4981 | goto next_key; |
Filipe Manana | 56f23fd | 2016-03-30 23:37:21 +0100 | [diff] [blame] | 4982 | } |
| 4983 | } |
| 4984 | |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 4985 | /* Skip xattrs, we log them later with btrfs_log_all_xattrs() */ |
| 4986 | if (min_key.type == BTRFS_XATTR_ITEM_KEY) { |
| 4987 | if (ins_nr == 0) |
| 4988 | goto next_slot; |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4989 | ret = copy_items(trans, inode, dst_path, path, |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 4990 | &last_extent, ins_start_slot, |
| 4991 | ins_nr, inode_only, logged_isize); |
| 4992 | if (ret < 0) { |
| 4993 | err = ret; |
| 4994 | goto out_unlock; |
| 4995 | } |
| 4996 | ins_nr = 0; |
| 4997 | if (ret) { |
| 4998 | btrfs_release_path(path); |
| 4999 | continue; |
| 5000 | } |
| 5001 | goto next_slot; |
| 5002 | } |
| 5003 | |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 5004 | if (ins_nr && ins_start_slot + ins_nr == path->slots[0]) { |
| 5005 | ins_nr++; |
| 5006 | goto next_slot; |
| 5007 | } else if (!ins_nr) { |
| 5008 | ins_start_slot = path->slots[0]; |
| 5009 | ins_nr = 1; |
| 5010 | goto next_slot; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5011 | } |
| 5012 | |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5013 | ret = copy_items(trans, inode, dst_path, path, &last_extent, |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 5014 | ins_start_slot, ins_nr, inode_only, |
| 5015 | logged_isize); |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 5016 | if (ret < 0) { |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5017 | err = ret; |
| 5018 | goto out_unlock; |
Rasmus Villemoes | a71db86 | 2014-06-20 21:51:43 +0200 | [diff] [blame] | 5019 | } |
| 5020 | if (ret) { |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 5021 | ins_nr = 0; |
| 5022 | btrfs_release_path(path); |
| 5023 | continue; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5024 | } |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 5025 | ins_nr = 1; |
| 5026 | ins_start_slot = path->slots[0]; |
| 5027 | next_slot: |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5028 | |
Chris Mason | 3a5f1d4 | 2008-09-11 15:53:37 -0400 | [diff] [blame] | 5029 | nritems = btrfs_header_nritems(path->nodes[0]); |
| 5030 | path->slots[0]++; |
| 5031 | if (path->slots[0] < nritems) { |
| 5032 | btrfs_item_key_to_cpu(path->nodes[0], &min_key, |
| 5033 | path->slots[0]); |
| 5034 | goto again; |
| 5035 | } |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 5036 | if (ins_nr) { |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5037 | ret = copy_items(trans, inode, dst_path, path, |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 5038 | &last_extent, ins_start_slot, |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 5039 | ins_nr, inode_only, logged_isize); |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 5040 | if (ret < 0) { |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5041 | err = ret; |
| 5042 | goto out_unlock; |
| 5043 | } |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 5044 | ret = 0; |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 5045 | ins_nr = 0; |
| 5046 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 5047 | btrfs_release_path(path); |
Filipe Manana | 44f714d | 2016-06-06 16:11:13 +0100 | [diff] [blame] | 5048 | next_key: |
Filipe David Borba Manana | 3d41d70 | 2013-10-01 17:06:53 +0100 | [diff] [blame] | 5049 | if (min_key.offset < (u64)-1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5050 | min_key.offset++; |
Filipe David Borba Manana | 3d41d70 | 2013-10-01 17:06:53 +0100 | [diff] [blame] | 5051 | } else if (min_key.type < max_key.type) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5052 | min_key.type++; |
Filipe David Borba Manana | 3d41d70 | 2013-10-01 17:06:53 +0100 | [diff] [blame] | 5053 | min_key.offset = 0; |
| 5054 | } else { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5055 | break; |
Filipe David Borba Manana | 3d41d70 | 2013-10-01 17:06:53 +0100 | [diff] [blame] | 5056 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5057 | } |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 5058 | if (ins_nr) { |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5059 | ret = copy_items(trans, inode, dst_path, path, &last_extent, |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 5060 | ins_start_slot, ins_nr, inode_only, |
| 5061 | logged_isize); |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 5062 | if (ret < 0) { |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5063 | err = ret; |
| 5064 | goto out_unlock; |
| 5065 | } |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 5066 | ret = 0; |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 5067 | ins_nr = 0; |
| 5068 | } |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 5069 | |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 5070 | btrfs_release_path(path); |
| 5071 | btrfs_release_path(dst_path); |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5072 | err = btrfs_log_all_xattrs(trans, root, inode, path, dst_path); |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 5073 | if (err) |
| 5074 | goto out_unlock; |
Filipe Manana | 9a8fca6 | 2018-05-11 16:42:42 +0100 | [diff] [blame] | 5075 | xattrs_logged = true; |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 5076 | if (max_key.type >= BTRFS_EXTENT_DATA_KEY && !fast_search) { |
| 5077 | btrfs_release_path(path); |
| 5078 | btrfs_release_path(dst_path); |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5079 | err = btrfs_log_trailing_hole(trans, root, inode, path); |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 5080 | if (err) |
| 5081 | goto out_unlock; |
| 5082 | } |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 5083 | log_extents: |
Josef Bacik | f3b15cc | 2013-07-22 12:54:30 -0400 | [diff] [blame] | 5084 | btrfs_release_path(path); |
| 5085 | btrfs_release_path(dst_path); |
Filipe Manana | e4545de | 2015-06-17 12:49:23 +0100 | [diff] [blame] | 5086 | if (need_log_inode_item) { |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5087 | err = log_inode_item(trans, log, dst_path, inode); |
Filipe Manana | 9a8fca6 | 2018-05-11 16:42:42 +0100 | [diff] [blame] | 5088 | if (!err && !xattrs_logged) { |
| 5089 | err = btrfs_log_all_xattrs(trans, root, inode, path, |
| 5090 | dst_path); |
| 5091 | btrfs_release_path(path); |
| 5092 | } |
Filipe Manana | e4545de | 2015-06-17 12:49:23 +0100 | [diff] [blame] | 5093 | if (err) |
| 5094 | goto out_unlock; |
| 5095 | } |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 5096 | if (fast_search) { |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5097 | ret = btrfs_log_changed_extents(trans, root, inode, dst_path, |
Josef Bacik | a2120a4 | 2018-05-23 11:58:35 -0400 | [diff] [blame] | 5098 | ctx, start, end); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 5099 | if (ret) { |
| 5100 | err = ret; |
| 5101 | goto out_unlock; |
| 5102 | } |
Josef Bacik | d006a04 | 2013-11-12 20:54:09 -0500 | [diff] [blame] | 5103 | } else if (inode_only == LOG_INODE_ALL) { |
Liu Bo | 06d3d22 | 2012-08-27 10:52:19 -0600 | [diff] [blame] | 5104 | struct extent_map *em, *n; |
| 5105 | |
Filipe Manana | 49dae1b | 2014-09-06 22:34:39 +0100 | [diff] [blame] | 5106 | write_lock(&em_tree->lock); |
| 5107 | /* |
| 5108 | * We can't just remove every em if we're called for a ranged |
| 5109 | * fsync - that is, one that doesn't cover the whole possible |
| 5110 | * file range (0 to LLONG_MAX). This is because we can have |
| 5111 | * em's that fall outside the range we're logging and therefore |
| 5112 | * their ordered operations haven't completed yet |
| 5113 | * (btrfs_finish_ordered_io() not invoked yet). This means we |
| 5114 | * didn't get their respective file extent item in the fs/subvol |
| 5115 | * tree yet, and need to let the next fast fsync (one which |
| 5116 | * consults the list of modified extent maps) find the em so |
| 5117 | * that it logs a matching file extent item and waits for the |
| 5118 | * respective ordered operation to complete (if it's still |
| 5119 | * running). |
| 5120 | * |
| 5121 | * Removing every em outside the range we're logging would make |
| 5122 | * the next fast fsync not log their matching file extent items, |
| 5123 | * therefore making us lose data after a log replay. |
| 5124 | */ |
| 5125 | list_for_each_entry_safe(em, n, &em_tree->modified_extents, |
| 5126 | list) { |
| 5127 | const u64 mod_end = em->mod_start + em->mod_len - 1; |
| 5128 | |
| 5129 | if (em->mod_start >= start && mod_end <= end) |
| 5130 | list_del_init(&em->list); |
| 5131 | } |
| 5132 | write_unlock(&em_tree->lock); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 5133 | } |
| 5134 | |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5135 | if (inode_only == LOG_INODE_ALL && S_ISDIR(inode->vfs_inode.i_mode)) { |
| 5136 | ret = log_directory_changes(trans, root, inode, path, dst_path, |
| 5137 | ctx); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5138 | if (ret) { |
| 5139 | err = ret; |
| 5140 | goto out_unlock; |
| 5141 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5142 | } |
Filipe Manana | 49dae1b | 2014-09-06 22:34:39 +0100 | [diff] [blame] | 5143 | |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5144 | spin_lock(&inode->lock); |
| 5145 | inode->logged_trans = trans->transid; |
| 5146 | inode->last_log_commit = inode->last_sub_trans; |
| 5147 | spin_unlock(&inode->lock); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5148 | out_unlock: |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5149 | mutex_unlock(&inode->log_mutex); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5150 | |
| 5151 | btrfs_free_path(path); |
| 5152 | btrfs_free_path(dst_path); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5153 | return err; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5154 | } |
| 5155 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5156 | /* |
Filipe Manana | 2be63d5 | 2016-02-12 11:34:23 +0000 | [diff] [blame] | 5157 | * Check if we must fallback to a transaction commit when logging an inode. |
| 5158 | * This must be called after logging the inode and is used only in the context |
| 5159 | * when fsyncing an inode requires the need to log some other inode - in which |
| 5160 | * case we can't lock the i_mutex of each other inode we need to log as that |
| 5161 | * can lead to deadlocks with concurrent fsync against other inodes (as we can |
| 5162 | * log inodes up or down in the hierarchy) or rename operations for example. So |
| 5163 | * we take the log_mutex of the inode after we have logged it and then check for |
| 5164 | * its last_unlink_trans value - this is safe because any task setting |
| 5165 | * last_unlink_trans must take the log_mutex and it must do this before it does |
| 5166 | * the actual unlink operation, so if we do this check before a concurrent task |
| 5167 | * sets last_unlink_trans it means we've logged a consistent version/state of |
| 5168 | * all the inode items, otherwise we are not sure and must do a transaction |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 5169 | * commit (the concurrent task might have only updated last_unlink_trans before |
Filipe Manana | 2be63d5 | 2016-02-12 11:34:23 +0000 | [diff] [blame] | 5170 | * we logged the inode or it might have also done the unlink). |
| 5171 | */ |
| 5172 | static bool btrfs_must_commit_transaction(struct btrfs_trans_handle *trans, |
Nikolay Borisov | ab1717b | 2017-01-18 00:31:27 +0200 | [diff] [blame] | 5173 | struct btrfs_inode *inode) |
Filipe Manana | 2be63d5 | 2016-02-12 11:34:23 +0000 | [diff] [blame] | 5174 | { |
Nikolay Borisov | ab1717b | 2017-01-18 00:31:27 +0200 | [diff] [blame] | 5175 | struct btrfs_fs_info *fs_info = inode->root->fs_info; |
Filipe Manana | 2be63d5 | 2016-02-12 11:34:23 +0000 | [diff] [blame] | 5176 | bool ret = false; |
| 5177 | |
Nikolay Borisov | ab1717b | 2017-01-18 00:31:27 +0200 | [diff] [blame] | 5178 | mutex_lock(&inode->log_mutex); |
| 5179 | if (inode->last_unlink_trans > fs_info->last_trans_committed) { |
Filipe Manana | 2be63d5 | 2016-02-12 11:34:23 +0000 | [diff] [blame] | 5180 | /* |
| 5181 | * Make sure any commits to the log are forced to be full |
| 5182 | * commits. |
| 5183 | */ |
| 5184 | btrfs_set_log_full_commit(fs_info, trans); |
| 5185 | ret = true; |
| 5186 | } |
Nikolay Borisov | ab1717b | 2017-01-18 00:31:27 +0200 | [diff] [blame] | 5187 | mutex_unlock(&inode->log_mutex); |
Filipe Manana | 2be63d5 | 2016-02-12 11:34:23 +0000 | [diff] [blame] | 5188 | |
| 5189 | return ret; |
| 5190 | } |
| 5191 | |
| 5192 | /* |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5193 | * follow the dentry parent pointers up the chain and see if any |
| 5194 | * of the directories in it require a full commit before they can |
| 5195 | * be logged. Returns zero if nothing special needs to be done or 1 if |
| 5196 | * a full commit is required. |
| 5197 | */ |
| 5198 | static noinline int check_parent_dirs_for_sync(struct btrfs_trans_handle *trans, |
Nikolay Borisov | aefa611 | 2017-02-20 13:51:00 +0200 | [diff] [blame] | 5199 | struct btrfs_inode *inode, |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5200 | struct dentry *parent, |
| 5201 | struct super_block *sb, |
| 5202 | u64 last_committed) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5203 | { |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5204 | int ret = 0; |
Josef Bacik | 6a91221 | 2010-11-20 09:48:00 +0000 | [diff] [blame] | 5205 | struct dentry *old_parent = NULL; |
Nikolay Borisov | aefa611 | 2017-02-20 13:51:00 +0200 | [diff] [blame] | 5206 | struct btrfs_inode *orig_inode = inode; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5207 | |
Chris Mason | af4176b | 2009-03-24 10:24:31 -0400 | [diff] [blame] | 5208 | /* |
| 5209 | * for regular files, if its inode is already on disk, we don't |
| 5210 | * have to worry about the parents at all. This is because |
| 5211 | * we can use the last_unlink_trans field to record renames |
| 5212 | * and other fun in this file. |
| 5213 | */ |
Nikolay Borisov | aefa611 | 2017-02-20 13:51:00 +0200 | [diff] [blame] | 5214 | if (S_ISREG(inode->vfs_inode.i_mode) && |
| 5215 | inode->generation <= last_committed && |
| 5216 | inode->last_unlink_trans <= last_committed) |
| 5217 | goto out; |
Chris Mason | af4176b | 2009-03-24 10:24:31 -0400 | [diff] [blame] | 5218 | |
Nikolay Borisov | aefa611 | 2017-02-20 13:51:00 +0200 | [diff] [blame] | 5219 | if (!S_ISDIR(inode->vfs_inode.i_mode)) { |
Al Viro | fc64005 | 2016-04-10 01:33:30 -0400 | [diff] [blame] | 5220 | if (!parent || d_really_is_negative(parent) || sb != parent->d_sb) |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5221 | goto out; |
Nikolay Borisov | aefa611 | 2017-02-20 13:51:00 +0200 | [diff] [blame] | 5222 | inode = BTRFS_I(d_inode(parent)); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5223 | } |
| 5224 | |
| 5225 | while (1) { |
Josef Bacik | de2b530 | 2013-09-11 09:36:30 -0400 | [diff] [blame] | 5226 | /* |
| 5227 | * If we are logging a directory then we start with our inode, |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 5228 | * not our parent's inode, so we need to skip setting the |
Josef Bacik | de2b530 | 2013-09-11 09:36:30 -0400 | [diff] [blame] | 5229 | * logged_trans so that further down in the log code we don't |
| 5230 | * think this inode has already been logged. |
| 5231 | */ |
| 5232 | if (inode != orig_inode) |
Nikolay Borisov | aefa611 | 2017-02-20 13:51:00 +0200 | [diff] [blame] | 5233 | inode->logged_trans = trans->transid; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5234 | smp_mb(); |
| 5235 | |
Nikolay Borisov | aefa611 | 2017-02-20 13:51:00 +0200 | [diff] [blame] | 5236 | if (btrfs_must_commit_transaction(trans, inode)) { |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5237 | ret = 1; |
| 5238 | break; |
| 5239 | } |
| 5240 | |
Al Viro | fc64005 | 2016-04-10 01:33:30 -0400 | [diff] [blame] | 5241 | if (!parent || d_really_is_negative(parent) || sb != parent->d_sb) |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5242 | break; |
| 5243 | |
Filipe Manana | 44f714d | 2016-06-06 16:11:13 +0100 | [diff] [blame] | 5244 | if (IS_ROOT(parent)) { |
Nikolay Borisov | aefa611 | 2017-02-20 13:51:00 +0200 | [diff] [blame] | 5245 | inode = BTRFS_I(d_inode(parent)); |
| 5246 | if (btrfs_must_commit_transaction(trans, inode)) |
Filipe Manana | 44f714d | 2016-06-06 16:11:13 +0100 | [diff] [blame] | 5247 | ret = 1; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5248 | break; |
Filipe Manana | 44f714d | 2016-06-06 16:11:13 +0100 | [diff] [blame] | 5249 | } |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5250 | |
Josef Bacik | 6a91221 | 2010-11-20 09:48:00 +0000 | [diff] [blame] | 5251 | parent = dget_parent(parent); |
| 5252 | dput(old_parent); |
| 5253 | old_parent = parent; |
Nikolay Borisov | aefa611 | 2017-02-20 13:51:00 +0200 | [diff] [blame] | 5254 | inode = BTRFS_I(d_inode(parent)); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5255 | |
| 5256 | } |
Josef Bacik | 6a91221 | 2010-11-20 09:48:00 +0000 | [diff] [blame] | 5257 | dput(old_parent); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5258 | out: |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5259 | return ret; |
| 5260 | } |
| 5261 | |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5262 | struct btrfs_dir_list { |
| 5263 | u64 ino; |
| 5264 | struct list_head list; |
| 5265 | }; |
| 5266 | |
| 5267 | /* |
| 5268 | * Log the inodes of the new dentries of a directory. See log_dir_items() for |
| 5269 | * details about the why it is needed. |
| 5270 | * This is a recursive operation - if an existing dentry corresponds to a |
| 5271 | * directory, that directory's new entries are logged too (same behaviour as |
| 5272 | * ext3/4, xfs, f2fs, reiserfs, nilfs2). Note that when logging the inodes |
| 5273 | * the dentries point to we do not lock their i_mutex, otherwise lockdep |
| 5274 | * complains about the following circular lock dependency / possible deadlock: |
| 5275 | * |
| 5276 | * CPU0 CPU1 |
| 5277 | * ---- ---- |
| 5278 | * lock(&type->i_mutex_dir_key#3/2); |
| 5279 | * lock(sb_internal#2); |
| 5280 | * lock(&type->i_mutex_dir_key#3/2); |
| 5281 | * lock(&sb->s_type->i_mutex_key#14); |
| 5282 | * |
| 5283 | * Where sb_internal is the lock (a counter that works as a lock) acquired by |
| 5284 | * sb_start_intwrite() in btrfs_start_transaction(). |
| 5285 | * Not locking i_mutex of the inodes is still safe because: |
| 5286 | * |
| 5287 | * 1) For regular files we log with a mode of LOG_INODE_EXISTS. It's possible |
| 5288 | * that while logging the inode new references (names) are added or removed |
| 5289 | * from the inode, leaving the logged inode item with a link count that does |
| 5290 | * not match the number of logged inode reference items. This is fine because |
| 5291 | * at log replay time we compute the real number of links and correct the |
| 5292 | * link count in the inode item (see replay_one_buffer() and |
| 5293 | * link_to_fixup_dir()); |
| 5294 | * |
| 5295 | * 2) For directories we log with a mode of LOG_INODE_ALL. It's possible that |
| 5296 | * while logging the inode's items new items with keys BTRFS_DIR_ITEM_KEY and |
| 5297 | * BTRFS_DIR_INDEX_KEY are added to fs/subvol tree and the logged inode item |
| 5298 | * has a size that doesn't match the sum of the lengths of all the logged |
| 5299 | * names. This does not result in a problem because if a dir_item key is |
| 5300 | * logged but its matching dir_index key is not logged, at log replay time we |
| 5301 | * don't use it to replay the respective name (see replay_one_name()). On the |
| 5302 | * other hand if only the dir_index key ends up being logged, the respective |
| 5303 | * name is added to the fs/subvol tree with both the dir_item and dir_index |
| 5304 | * keys created (see replay_one_name()). |
| 5305 | * The directory's inode item with a wrong i_size is not a problem as well, |
| 5306 | * since we don't use it at log replay time to set the i_size in the inode |
| 5307 | * item of the fs/subvol tree (see overwrite_item()). |
| 5308 | */ |
| 5309 | static int log_new_dir_dentries(struct btrfs_trans_handle *trans, |
| 5310 | struct btrfs_root *root, |
Nikolay Borisov | 51cc0d3 | 2017-01-18 00:31:43 +0200 | [diff] [blame] | 5311 | struct btrfs_inode *start_inode, |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5312 | struct btrfs_log_ctx *ctx) |
| 5313 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5314 | struct btrfs_fs_info *fs_info = root->fs_info; |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5315 | struct btrfs_root *log = root->log_root; |
| 5316 | struct btrfs_path *path; |
| 5317 | LIST_HEAD(dir_list); |
| 5318 | struct btrfs_dir_list *dir_elem; |
| 5319 | int ret = 0; |
| 5320 | |
| 5321 | path = btrfs_alloc_path(); |
| 5322 | if (!path) |
| 5323 | return -ENOMEM; |
| 5324 | |
| 5325 | dir_elem = kmalloc(sizeof(*dir_elem), GFP_NOFS); |
| 5326 | if (!dir_elem) { |
| 5327 | btrfs_free_path(path); |
| 5328 | return -ENOMEM; |
| 5329 | } |
Nikolay Borisov | 51cc0d3 | 2017-01-18 00:31:43 +0200 | [diff] [blame] | 5330 | dir_elem->ino = btrfs_ino(start_inode); |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5331 | list_add_tail(&dir_elem->list, &dir_list); |
| 5332 | |
| 5333 | while (!list_empty(&dir_list)) { |
| 5334 | struct extent_buffer *leaf; |
| 5335 | struct btrfs_key min_key; |
| 5336 | int nritems; |
| 5337 | int i; |
| 5338 | |
| 5339 | dir_elem = list_first_entry(&dir_list, struct btrfs_dir_list, |
| 5340 | list); |
| 5341 | if (ret) |
| 5342 | goto next_dir_inode; |
| 5343 | |
| 5344 | min_key.objectid = dir_elem->ino; |
| 5345 | min_key.type = BTRFS_DIR_ITEM_KEY; |
| 5346 | min_key.offset = 0; |
| 5347 | again: |
| 5348 | btrfs_release_path(path); |
| 5349 | ret = btrfs_search_forward(log, &min_key, path, trans->transid); |
| 5350 | if (ret < 0) { |
| 5351 | goto next_dir_inode; |
| 5352 | } else if (ret > 0) { |
| 5353 | ret = 0; |
| 5354 | goto next_dir_inode; |
| 5355 | } |
| 5356 | |
| 5357 | process_leaf: |
| 5358 | leaf = path->nodes[0]; |
| 5359 | nritems = btrfs_header_nritems(leaf); |
| 5360 | for (i = path->slots[0]; i < nritems; i++) { |
| 5361 | struct btrfs_dir_item *di; |
| 5362 | struct btrfs_key di_key; |
| 5363 | struct inode *di_inode; |
| 5364 | struct btrfs_dir_list *new_dir_elem; |
| 5365 | int log_mode = LOG_INODE_EXISTS; |
| 5366 | int type; |
| 5367 | |
| 5368 | btrfs_item_key_to_cpu(leaf, &min_key, i); |
| 5369 | if (min_key.objectid != dir_elem->ino || |
| 5370 | min_key.type != BTRFS_DIR_ITEM_KEY) |
| 5371 | goto next_dir_inode; |
| 5372 | |
| 5373 | di = btrfs_item_ptr(leaf, i, struct btrfs_dir_item); |
| 5374 | type = btrfs_dir_type(leaf, di); |
| 5375 | if (btrfs_dir_transid(leaf, di) < trans->transid && |
| 5376 | type != BTRFS_FT_DIR) |
| 5377 | continue; |
| 5378 | btrfs_dir_item_key_to_cpu(leaf, di, &di_key); |
| 5379 | if (di_key.type == BTRFS_ROOT_ITEM_KEY) |
| 5380 | continue; |
| 5381 | |
Robbie Ko | ec125cf | 2016-10-28 10:48:26 +0800 | [diff] [blame] | 5382 | btrfs_release_path(path); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5383 | di_inode = btrfs_iget(fs_info->sb, &di_key, root, NULL); |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5384 | if (IS_ERR(di_inode)) { |
| 5385 | ret = PTR_ERR(di_inode); |
| 5386 | goto next_dir_inode; |
| 5387 | } |
| 5388 | |
Nikolay Borisov | 0f8939b | 2017-01-18 00:31:30 +0200 | [diff] [blame] | 5389 | if (btrfs_inode_in_log(BTRFS_I(di_inode), trans->transid)) { |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5390 | iput(di_inode); |
Robbie Ko | ec125cf | 2016-10-28 10:48:26 +0800 | [diff] [blame] | 5391 | break; |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5392 | } |
| 5393 | |
| 5394 | ctx->log_new_dentries = false; |
Filipe Manana | 3f9749f | 2016-04-25 04:45:02 +0100 | [diff] [blame] | 5395 | if (type == BTRFS_FT_DIR || type == BTRFS_FT_SYMLINK) |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5396 | log_mode = LOG_INODE_ALL; |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5397 | ret = btrfs_log_inode(trans, root, BTRFS_I(di_inode), |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5398 | log_mode, 0, LLONG_MAX, ctx); |
Filipe Manana | 2be63d5 | 2016-02-12 11:34:23 +0000 | [diff] [blame] | 5399 | if (!ret && |
Nikolay Borisov | ab1717b | 2017-01-18 00:31:27 +0200 | [diff] [blame] | 5400 | btrfs_must_commit_transaction(trans, BTRFS_I(di_inode))) |
Filipe Manana | 2be63d5 | 2016-02-12 11:34:23 +0000 | [diff] [blame] | 5401 | ret = 1; |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5402 | iput(di_inode); |
| 5403 | if (ret) |
| 5404 | goto next_dir_inode; |
| 5405 | if (ctx->log_new_dentries) { |
| 5406 | new_dir_elem = kmalloc(sizeof(*new_dir_elem), |
| 5407 | GFP_NOFS); |
| 5408 | if (!new_dir_elem) { |
| 5409 | ret = -ENOMEM; |
| 5410 | goto next_dir_inode; |
| 5411 | } |
| 5412 | new_dir_elem->ino = di_key.objectid; |
| 5413 | list_add_tail(&new_dir_elem->list, &dir_list); |
| 5414 | } |
| 5415 | break; |
| 5416 | } |
| 5417 | if (i == nritems) { |
| 5418 | ret = btrfs_next_leaf(log, path); |
| 5419 | if (ret < 0) { |
| 5420 | goto next_dir_inode; |
| 5421 | } else if (ret > 0) { |
| 5422 | ret = 0; |
| 5423 | goto next_dir_inode; |
| 5424 | } |
| 5425 | goto process_leaf; |
| 5426 | } |
| 5427 | if (min_key.offset < (u64)-1) { |
| 5428 | min_key.offset++; |
| 5429 | goto again; |
| 5430 | } |
| 5431 | next_dir_inode: |
| 5432 | list_del(&dir_elem->list); |
| 5433 | kfree(dir_elem); |
| 5434 | } |
| 5435 | |
| 5436 | btrfs_free_path(path); |
| 5437 | return ret; |
| 5438 | } |
| 5439 | |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 5440 | static int btrfs_log_all_parents(struct btrfs_trans_handle *trans, |
Nikolay Borisov | d0a0b78 | 2017-02-20 13:50:30 +0200 | [diff] [blame] | 5441 | struct btrfs_inode *inode, |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 5442 | struct btrfs_log_ctx *ctx) |
| 5443 | { |
Nikolay Borisov | d0a0b78 | 2017-02-20 13:50:30 +0200 | [diff] [blame] | 5444 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb); |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 5445 | int ret; |
| 5446 | struct btrfs_path *path; |
| 5447 | struct btrfs_key key; |
Nikolay Borisov | d0a0b78 | 2017-02-20 13:50:30 +0200 | [diff] [blame] | 5448 | struct btrfs_root *root = inode->root; |
| 5449 | const u64 ino = btrfs_ino(inode); |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 5450 | |
| 5451 | path = btrfs_alloc_path(); |
| 5452 | if (!path) |
| 5453 | return -ENOMEM; |
| 5454 | path->skip_locking = 1; |
| 5455 | path->search_commit_root = 1; |
| 5456 | |
| 5457 | key.objectid = ino; |
| 5458 | key.type = BTRFS_INODE_REF_KEY; |
| 5459 | key.offset = 0; |
| 5460 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 5461 | if (ret < 0) |
| 5462 | goto out; |
| 5463 | |
| 5464 | while (true) { |
| 5465 | struct extent_buffer *leaf = path->nodes[0]; |
| 5466 | int slot = path->slots[0]; |
| 5467 | u32 cur_offset = 0; |
| 5468 | u32 item_size; |
| 5469 | unsigned long ptr; |
| 5470 | |
| 5471 | if (slot >= btrfs_header_nritems(leaf)) { |
| 5472 | ret = btrfs_next_leaf(root, path); |
| 5473 | if (ret < 0) |
| 5474 | goto out; |
| 5475 | else if (ret > 0) |
| 5476 | break; |
| 5477 | continue; |
| 5478 | } |
| 5479 | |
| 5480 | btrfs_item_key_to_cpu(leaf, &key, slot); |
| 5481 | /* BTRFS_INODE_EXTREF_KEY is BTRFS_INODE_REF_KEY + 1 */ |
| 5482 | if (key.objectid != ino || key.type > BTRFS_INODE_EXTREF_KEY) |
| 5483 | break; |
| 5484 | |
| 5485 | item_size = btrfs_item_size_nr(leaf, slot); |
| 5486 | ptr = btrfs_item_ptr_offset(leaf, slot); |
| 5487 | while (cur_offset < item_size) { |
| 5488 | struct btrfs_key inode_key; |
| 5489 | struct inode *dir_inode; |
| 5490 | |
| 5491 | inode_key.type = BTRFS_INODE_ITEM_KEY; |
| 5492 | inode_key.offset = 0; |
| 5493 | |
| 5494 | if (key.type == BTRFS_INODE_EXTREF_KEY) { |
| 5495 | struct btrfs_inode_extref *extref; |
| 5496 | |
| 5497 | extref = (struct btrfs_inode_extref *) |
| 5498 | (ptr + cur_offset); |
| 5499 | inode_key.objectid = btrfs_inode_extref_parent( |
| 5500 | leaf, extref); |
| 5501 | cur_offset += sizeof(*extref); |
| 5502 | cur_offset += btrfs_inode_extref_name_len(leaf, |
| 5503 | extref); |
| 5504 | } else { |
| 5505 | inode_key.objectid = key.offset; |
| 5506 | cur_offset = item_size; |
| 5507 | } |
| 5508 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5509 | dir_inode = btrfs_iget(fs_info->sb, &inode_key, |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 5510 | root, NULL); |
| 5511 | /* If parent inode was deleted, skip it. */ |
| 5512 | if (IS_ERR(dir_inode)) |
| 5513 | continue; |
| 5514 | |
Filipe Manana | 657ed1a | 2016-04-06 17:11:56 +0100 | [diff] [blame] | 5515 | if (ctx) |
| 5516 | ctx->log_new_dentries = false; |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5517 | ret = btrfs_log_inode(trans, root, BTRFS_I(dir_inode), |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 5518 | LOG_INODE_ALL, 0, LLONG_MAX, ctx); |
Filipe Manana | 2be63d5 | 2016-02-12 11:34:23 +0000 | [diff] [blame] | 5519 | if (!ret && |
Nikolay Borisov | ab1717b | 2017-01-18 00:31:27 +0200 | [diff] [blame] | 5520 | btrfs_must_commit_transaction(trans, BTRFS_I(dir_inode))) |
Filipe Manana | 2be63d5 | 2016-02-12 11:34:23 +0000 | [diff] [blame] | 5521 | ret = 1; |
Filipe Manana | 657ed1a | 2016-04-06 17:11:56 +0100 | [diff] [blame] | 5522 | if (!ret && ctx && ctx->log_new_dentries) |
| 5523 | ret = log_new_dir_dentries(trans, root, |
David Sterba | f85b737 | 2017-01-20 14:54:07 +0100 | [diff] [blame] | 5524 | BTRFS_I(dir_inode), ctx); |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 5525 | iput(dir_inode); |
| 5526 | if (ret) |
| 5527 | goto out; |
| 5528 | } |
| 5529 | path->slots[0]++; |
| 5530 | } |
| 5531 | ret = 0; |
| 5532 | out: |
| 5533 | btrfs_free_path(path); |
| 5534 | return ret; |
| 5535 | } |
| 5536 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5537 | /* |
| 5538 | * helper function around btrfs_log_inode to make sure newly created |
| 5539 | * parent directories also end up in the log. A minimal inode and backref |
| 5540 | * only logging is done of any parent directories that are older than |
| 5541 | * the last committed transaction |
| 5542 | */ |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 5543 | static int btrfs_log_inode_parent(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 19df27a | 2017-02-20 13:51:01 +0200 | [diff] [blame] | 5544 | struct btrfs_inode *inode, |
Filipe Manana | 49dae1b | 2014-09-06 22:34:39 +0100 | [diff] [blame] | 5545 | struct dentry *parent, |
| 5546 | const loff_t start, |
| 5547 | const loff_t end, |
Edmund Nadolski | 41a1ead | 2017-11-20 13:24:47 -0700 | [diff] [blame] | 5548 | int inode_only, |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 5549 | struct btrfs_log_ctx *ctx) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5550 | { |
Nikolay Borisov | f882274 | 2018-02-27 17:37:17 +0200 | [diff] [blame] | 5551 | struct btrfs_root *root = inode->root; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5552 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5553 | struct super_block *sb; |
Josef Bacik | 6a91221 | 2010-11-20 09:48:00 +0000 | [diff] [blame] | 5554 | struct dentry *old_parent = NULL; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5555 | int ret = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5556 | u64 last_committed = fs_info->last_trans_committed; |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5557 | bool log_dentries = false; |
Nikolay Borisov | 19df27a | 2017-02-20 13:51:01 +0200 | [diff] [blame] | 5558 | struct btrfs_inode *orig_inode = inode; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5559 | |
Nikolay Borisov | 19df27a | 2017-02-20 13:51:01 +0200 | [diff] [blame] | 5560 | sb = inode->vfs_inode.i_sb; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5561 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5562 | if (btrfs_test_opt(fs_info, NOTREELOG)) { |
Sage Weil | 3a5e140 | 2009-04-02 16:49:40 -0400 | [diff] [blame] | 5563 | ret = 1; |
| 5564 | goto end_no_trans; |
| 5565 | } |
| 5566 | |
Miao Xie | 995946d | 2014-04-02 19:51:06 +0800 | [diff] [blame] | 5567 | /* |
| 5568 | * The prev transaction commit doesn't complete, we need do |
| 5569 | * full commit by ourselves. |
| 5570 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5571 | if (fs_info->last_trans_log_full_commit > |
| 5572 | fs_info->last_trans_committed) { |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5573 | ret = 1; |
| 5574 | goto end_no_trans; |
| 5575 | } |
| 5576 | |
Nikolay Borisov | f882274 | 2018-02-27 17:37:17 +0200 | [diff] [blame] | 5577 | if (btrfs_root_refs(&root->root_item) == 0) { |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 5578 | ret = 1; |
| 5579 | goto end_no_trans; |
| 5580 | } |
| 5581 | |
Nikolay Borisov | 19df27a | 2017-02-20 13:51:01 +0200 | [diff] [blame] | 5582 | ret = check_parent_dirs_for_sync(trans, inode, parent, sb, |
| 5583 | last_committed); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5584 | if (ret) |
| 5585 | goto end_no_trans; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5586 | |
Nikolay Borisov | 19df27a | 2017-02-20 13:51:01 +0200 | [diff] [blame] | 5587 | if (btrfs_inode_in_log(inode, trans->transid)) { |
Chris Mason | 257c62e | 2009-10-13 13:21:08 -0400 | [diff] [blame] | 5588 | ret = BTRFS_NO_LOG_SYNC; |
| 5589 | goto end_no_trans; |
| 5590 | } |
| 5591 | |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 5592 | ret = start_log_trans(trans, root, ctx); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5593 | if (ret) |
Miao Xie | e87ac13 | 2014-02-20 18:08:53 +0800 | [diff] [blame] | 5594 | goto end_no_trans; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5595 | |
Nikolay Borisov | 19df27a | 2017-02-20 13:51:01 +0200 | [diff] [blame] | 5596 | ret = btrfs_log_inode(trans, root, inode, inode_only, start, end, ctx); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5597 | if (ret) |
| 5598 | goto end_trans; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5599 | |
Chris Mason | af4176b | 2009-03-24 10:24:31 -0400 | [diff] [blame] | 5600 | /* |
| 5601 | * for regular files, if its inode is already on disk, we don't |
| 5602 | * have to worry about the parents at all. This is because |
| 5603 | * we can use the last_unlink_trans field to record renames |
| 5604 | * and other fun in this file. |
| 5605 | */ |
Nikolay Borisov | 19df27a | 2017-02-20 13:51:01 +0200 | [diff] [blame] | 5606 | if (S_ISREG(inode->vfs_inode.i_mode) && |
| 5607 | inode->generation <= last_committed && |
| 5608 | inode->last_unlink_trans <= last_committed) { |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5609 | ret = 0; |
| 5610 | goto end_trans; |
| 5611 | } |
Chris Mason | af4176b | 2009-03-24 10:24:31 -0400 | [diff] [blame] | 5612 | |
Nikolay Borisov | 19df27a | 2017-02-20 13:51:01 +0200 | [diff] [blame] | 5613 | if (S_ISDIR(inode->vfs_inode.i_mode) && ctx && ctx->log_new_dentries) |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5614 | log_dentries = true; |
| 5615 | |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 5616 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 5617 | * 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] | 5618 | * inodes are fully logged. This is to prevent leaving dangling |
| 5619 | * directory index entries in directories that were our parents but are |
| 5620 | * not anymore. Not doing this results in old parent directory being |
| 5621 | * impossible to delete after log replay (rmdir will always fail with |
| 5622 | * error -ENOTEMPTY). |
| 5623 | * |
| 5624 | * Example 1: |
| 5625 | * |
| 5626 | * mkdir testdir |
| 5627 | * touch testdir/foo |
| 5628 | * ln testdir/foo testdir/bar |
| 5629 | * sync |
| 5630 | * unlink testdir/bar |
| 5631 | * xfs_io -c fsync testdir/foo |
| 5632 | * <power failure> |
| 5633 | * mount fs, triggers log replay |
| 5634 | * |
| 5635 | * If we don't log the parent directory (testdir), after log replay the |
| 5636 | * directory still has an entry pointing to the file inode using the bar |
| 5637 | * name, but a matching BTRFS_INODE_[REF|EXTREF]_KEY does not exist and |
| 5638 | * the file inode has a link count of 1. |
| 5639 | * |
| 5640 | * Example 2: |
| 5641 | * |
| 5642 | * mkdir testdir |
| 5643 | * touch foo |
| 5644 | * ln foo testdir/foo2 |
| 5645 | * ln foo testdir/foo3 |
| 5646 | * sync |
| 5647 | * unlink testdir/foo3 |
| 5648 | * xfs_io -c fsync foo |
| 5649 | * <power failure> |
| 5650 | * mount fs, triggers log replay |
| 5651 | * |
| 5652 | * Similar as the first example, after log replay the parent directory |
| 5653 | * testdir still has an entry pointing to the inode file with name foo3 |
| 5654 | * but the file inode does not have a matching BTRFS_INODE_REF_KEY item |
| 5655 | * and has a link count of 2. |
| 5656 | */ |
Nikolay Borisov | 19df27a | 2017-02-20 13:51:01 +0200 | [diff] [blame] | 5657 | if (inode->last_unlink_trans > last_committed) { |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 5658 | ret = btrfs_log_all_parents(trans, orig_inode, ctx); |
| 5659 | if (ret) |
| 5660 | goto end_trans; |
| 5661 | } |
| 5662 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5663 | while (1) { |
Al Viro | fc64005 | 2016-04-10 01:33:30 -0400 | [diff] [blame] | 5664 | if (!parent || d_really_is_negative(parent) || sb != parent->d_sb) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5665 | break; |
| 5666 | |
Nikolay Borisov | 19df27a | 2017-02-20 13:51:01 +0200 | [diff] [blame] | 5667 | inode = BTRFS_I(d_inode(parent)); |
| 5668 | if (root != inode->root) |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 5669 | break; |
| 5670 | |
Nikolay Borisov | 19df27a | 2017-02-20 13:51:01 +0200 | [diff] [blame] | 5671 | if (inode->generation > last_committed) { |
| 5672 | ret = btrfs_log_inode(trans, root, inode, |
| 5673 | LOG_INODE_EXISTS, 0, LLONG_MAX, ctx); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5674 | if (ret) |
| 5675 | goto end_trans; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5676 | } |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 5677 | if (IS_ROOT(parent)) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5678 | break; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5679 | |
Josef Bacik | 6a91221 | 2010-11-20 09:48:00 +0000 | [diff] [blame] | 5680 | parent = dget_parent(parent); |
| 5681 | dput(old_parent); |
| 5682 | old_parent = parent; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5683 | } |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5684 | if (log_dentries) |
Nikolay Borisov | 19df27a | 2017-02-20 13:51:01 +0200 | [diff] [blame] | 5685 | ret = log_new_dir_dentries(trans, root, orig_inode, ctx); |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5686 | else |
| 5687 | ret = 0; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5688 | end_trans: |
Josef Bacik | 6a91221 | 2010-11-20 09:48:00 +0000 | [diff] [blame] | 5689 | dput(old_parent); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5690 | if (ret < 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5691 | btrfs_set_log_full_commit(fs_info, trans); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5692 | ret = 1; |
| 5693 | } |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 5694 | |
| 5695 | if (ret) |
| 5696 | btrfs_remove_log_ctx(root, ctx); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5697 | btrfs_end_log_trans(root); |
| 5698 | end_no_trans: |
| 5699 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5700 | } |
| 5701 | |
| 5702 | /* |
| 5703 | * it is not safe to log dentry if the chunk root has added new |
| 5704 | * chunks. This returns 0 if the dentry was logged, and 1 otherwise. |
| 5705 | * If this returns 1, you must commit the transaction to safely get your |
| 5706 | * data on disk. |
| 5707 | */ |
| 5708 | int btrfs_log_dentry_safe(struct btrfs_trans_handle *trans, |
Nikolay Borisov | e5b84f7a | 2018-02-27 17:37:18 +0200 | [diff] [blame] | 5709 | struct dentry *dentry, |
Filipe Manana | 49dae1b | 2014-09-06 22:34:39 +0100 | [diff] [blame] | 5710 | const loff_t start, |
| 5711 | const loff_t end, |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 5712 | struct btrfs_log_ctx *ctx) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5713 | { |
Josef Bacik | 6a91221 | 2010-11-20 09:48:00 +0000 | [diff] [blame] | 5714 | struct dentry *parent = dget_parent(dentry); |
| 5715 | int ret; |
| 5716 | |
Nikolay Borisov | f882274 | 2018-02-27 17:37:17 +0200 | [diff] [blame] | 5717 | ret = btrfs_log_inode_parent(trans, BTRFS_I(d_inode(dentry)), parent, |
| 5718 | start, end, LOG_INODE_ALL, ctx); |
Josef Bacik | 6a91221 | 2010-11-20 09:48:00 +0000 | [diff] [blame] | 5719 | dput(parent); |
| 5720 | |
| 5721 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5722 | } |
| 5723 | |
| 5724 | /* |
| 5725 | * should be called during mount to recover any replay any log trees |
| 5726 | * from the FS |
| 5727 | */ |
| 5728 | int btrfs_recover_log_trees(struct btrfs_root *log_root_tree) |
| 5729 | { |
| 5730 | int ret; |
| 5731 | struct btrfs_path *path; |
| 5732 | struct btrfs_trans_handle *trans; |
| 5733 | struct btrfs_key key; |
| 5734 | struct btrfs_key found_key; |
| 5735 | struct btrfs_key tmp_key; |
| 5736 | struct btrfs_root *log; |
| 5737 | struct btrfs_fs_info *fs_info = log_root_tree->fs_info; |
| 5738 | struct walk_control wc = { |
| 5739 | .process_func = process_one_buffer, |
| 5740 | .stage = 0, |
| 5741 | }; |
| 5742 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5743 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 5744 | if (!path) |
| 5745 | return -ENOMEM; |
| 5746 | |
Josef Bacik | afcdd12 | 2016-09-02 15:40:02 -0400 | [diff] [blame] | 5747 | set_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5748 | |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5749 | trans = btrfs_start_transaction(fs_info->tree_root, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5750 | if (IS_ERR(trans)) { |
| 5751 | ret = PTR_ERR(trans); |
| 5752 | goto error; |
| 5753 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5754 | |
| 5755 | wc.trans = trans; |
| 5756 | wc.pin = 1; |
| 5757 | |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 5758 | ret = walk_log_tree(trans, log_root_tree, &wc); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5759 | if (ret) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 5760 | btrfs_handle_fs_error(fs_info, ret, |
| 5761 | "Failed to pin buffers while recovering log root tree."); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5762 | goto error; |
| 5763 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5764 | |
| 5765 | again: |
| 5766 | key.objectid = BTRFS_TREE_LOG_OBJECTID; |
| 5767 | key.offset = (u64)-1; |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 5768 | key.type = BTRFS_ROOT_ITEM_KEY; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5769 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5770 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5771 | ret = btrfs_search_slot(NULL, log_root_tree, &key, path, 0, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5772 | |
| 5773 | if (ret < 0) { |
Anand Jain | 34d9700 | 2016-03-16 16:43:06 +0800 | [diff] [blame] | 5774 | btrfs_handle_fs_error(fs_info, ret, |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5775 | "Couldn't find tree log root."); |
| 5776 | goto error; |
| 5777 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5778 | if (ret > 0) { |
| 5779 | if (path->slots[0] == 0) |
| 5780 | break; |
| 5781 | path->slots[0]--; |
| 5782 | } |
| 5783 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, |
| 5784 | path->slots[0]); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 5785 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5786 | if (found_key.objectid != BTRFS_TREE_LOG_OBJECTID) |
| 5787 | break; |
| 5788 | |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 5789 | log = btrfs_read_fs_root(log_root_tree, &found_key); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5790 | if (IS_ERR(log)) { |
| 5791 | ret = PTR_ERR(log); |
Anand Jain | 34d9700 | 2016-03-16 16:43:06 +0800 | [diff] [blame] | 5792 | btrfs_handle_fs_error(fs_info, ret, |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5793 | "Couldn't read tree log root."); |
| 5794 | goto error; |
| 5795 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5796 | |
| 5797 | tmp_key.objectid = found_key.offset; |
| 5798 | tmp_key.type = BTRFS_ROOT_ITEM_KEY; |
| 5799 | tmp_key.offset = (u64)-1; |
| 5800 | |
| 5801 | wc.replay_dest = btrfs_read_fs_root_no_name(fs_info, &tmp_key); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5802 | if (IS_ERR(wc.replay_dest)) { |
| 5803 | ret = PTR_ERR(wc.replay_dest); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 5804 | free_extent_buffer(log->node); |
| 5805 | free_extent_buffer(log->commit_root); |
| 5806 | kfree(log); |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 5807 | btrfs_handle_fs_error(fs_info, ret, |
| 5808 | "Couldn't read target root for tree log recovery."); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5809 | goto error; |
| 5810 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5811 | |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 5812 | wc.replay_dest->log_root = log; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5813 | btrfs_record_root_in_trans(trans, wc.replay_dest); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5814 | ret = walk_log_tree(trans, log, &wc); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5815 | |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 5816 | if (!ret && wc.stage == LOG_WALK_REPLAY_ALL) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5817 | ret = fixup_inode_link_counts(trans, wc.replay_dest, |
| 5818 | path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5819 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5820 | |
Liu Bo | 900c998 | 2018-01-25 11:02:56 -0700 | [diff] [blame] | 5821 | if (!ret && wc.stage == LOG_WALK_REPLAY_ALL) { |
| 5822 | struct btrfs_root *root = wc.replay_dest; |
| 5823 | |
| 5824 | btrfs_release_path(path); |
| 5825 | |
| 5826 | /* |
| 5827 | * We have just replayed everything, and the highest |
| 5828 | * objectid of fs roots probably has changed in case |
| 5829 | * some inode_item's got replayed. |
| 5830 | * |
| 5831 | * root->objectid_mutex is not acquired as log replay |
| 5832 | * could only happen during mount. |
| 5833 | */ |
| 5834 | ret = btrfs_find_highest_objectid(root, |
| 5835 | &root->highest_objectid); |
| 5836 | } |
| 5837 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5838 | key.offset = found_key.offset - 1; |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 5839 | wc.replay_dest->log_root = NULL; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5840 | free_extent_buffer(log->node); |
Chris Mason | b263c2c | 2009-06-11 11:24:47 -0400 | [diff] [blame] | 5841 | free_extent_buffer(log->commit_root); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5842 | kfree(log); |
| 5843 | |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 5844 | if (ret) |
| 5845 | goto error; |
| 5846 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5847 | if (found_key.offset == 0) |
| 5848 | break; |
| 5849 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 5850 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5851 | |
| 5852 | /* step one is to pin it all, step two is to replay just inodes */ |
| 5853 | if (wc.pin) { |
| 5854 | wc.pin = 0; |
| 5855 | wc.process_func = replay_one_buffer; |
| 5856 | wc.stage = LOG_WALK_REPLAY_INODES; |
| 5857 | goto again; |
| 5858 | } |
| 5859 | /* step three is to replay everything */ |
| 5860 | if (wc.stage < LOG_WALK_REPLAY_ALL) { |
| 5861 | wc.stage++; |
| 5862 | goto again; |
| 5863 | } |
| 5864 | |
| 5865 | btrfs_free_path(path); |
| 5866 | |
Josef Bacik | abefa55 | 2013-04-24 16:40:05 -0400 | [diff] [blame] | 5867 | /* step 4: commit the transaction, which also unpins the blocks */ |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 5868 | ret = btrfs_commit_transaction(trans); |
Josef Bacik | abefa55 | 2013-04-24 16:40:05 -0400 | [diff] [blame] | 5869 | if (ret) |
| 5870 | return ret; |
| 5871 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5872 | free_extent_buffer(log_root_tree->node); |
| 5873 | log_root_tree->log_root = NULL; |
Josef Bacik | afcdd12 | 2016-09-02 15:40:02 -0400 | [diff] [blame] | 5874 | clear_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5875 | kfree(log_root_tree); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5876 | |
Josef Bacik | abefa55 | 2013-04-24 16:40:05 -0400 | [diff] [blame] | 5877 | return 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5878 | error: |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 5879 | if (wc.trans) |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 5880 | btrfs_end_transaction(wc.trans); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5881 | btrfs_free_path(path); |
| 5882 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5883 | } |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5884 | |
| 5885 | /* |
| 5886 | * there are some corner cases where we want to force a full |
| 5887 | * commit instead of allowing a directory to be logged. |
| 5888 | * |
| 5889 | * They revolve around files there were unlinked from the directory, and |
| 5890 | * this function updates the parent directory so that a full commit is |
| 5891 | * 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] | 5892 | * |
| 5893 | * Must be called before the unlink operations (updates to the subvolume tree, |
| 5894 | * inodes, etc) are done. |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5895 | */ |
| 5896 | void btrfs_record_unlink_dir(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 4176bdb | 2017-01-18 00:31:28 +0200 | [diff] [blame] | 5897 | struct btrfs_inode *dir, struct btrfs_inode *inode, |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5898 | int for_rename) |
| 5899 | { |
| 5900 | /* |
Chris Mason | af4176b | 2009-03-24 10:24:31 -0400 | [diff] [blame] | 5901 | * when we're logging a file, if it hasn't been renamed |
| 5902 | * or unlinked, and its inode is fully committed on disk, |
| 5903 | * we don't have to worry about walking up the directory chain |
| 5904 | * to log its parents. |
| 5905 | * |
| 5906 | * So, we use the last_unlink_trans field to put this transid |
| 5907 | * into the file. When the file is logged we check it and |
| 5908 | * don't log the parents if the file is fully on disk. |
| 5909 | */ |
Nikolay Borisov | 4176bdb | 2017-01-18 00:31:28 +0200 | [diff] [blame] | 5910 | mutex_lock(&inode->log_mutex); |
| 5911 | inode->last_unlink_trans = trans->transid; |
| 5912 | mutex_unlock(&inode->log_mutex); |
Chris Mason | af4176b | 2009-03-24 10:24:31 -0400 | [diff] [blame] | 5913 | |
| 5914 | /* |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5915 | * if this directory was already logged any new |
| 5916 | * names for this file/dir will get recorded |
| 5917 | */ |
| 5918 | smp_mb(); |
Nikolay Borisov | 4176bdb | 2017-01-18 00:31:28 +0200 | [diff] [blame] | 5919 | if (dir->logged_trans == trans->transid) |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5920 | return; |
| 5921 | |
| 5922 | /* |
| 5923 | * if the inode we're about to unlink was logged, |
| 5924 | * the log will be properly updated for any new names |
| 5925 | */ |
Nikolay Borisov | 4176bdb | 2017-01-18 00:31:28 +0200 | [diff] [blame] | 5926 | if (inode->logged_trans == trans->transid) |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5927 | return; |
| 5928 | |
| 5929 | /* |
| 5930 | * when renaming files across directories, if the directory |
| 5931 | * there we're unlinking from gets fsync'd later on, there's |
| 5932 | * no way to find the destination directory later and fsync it |
| 5933 | * properly. So, we have to be conservative and force commits |
| 5934 | * so the new name gets discovered. |
| 5935 | */ |
| 5936 | if (for_rename) |
| 5937 | goto record; |
| 5938 | |
| 5939 | /* we can safely do the unlink without any special recording */ |
| 5940 | return; |
| 5941 | |
| 5942 | record: |
Nikolay Borisov | 4176bdb | 2017-01-18 00:31:28 +0200 | [diff] [blame] | 5943 | mutex_lock(&dir->log_mutex); |
| 5944 | dir->last_unlink_trans = trans->transid; |
| 5945 | mutex_unlock(&dir->log_mutex); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5946 | } |
| 5947 | |
| 5948 | /* |
Filipe Manana | 1ec9a1a | 2016-02-10 10:42:25 +0000 | [diff] [blame] | 5949 | * Make sure that if someone attempts to fsync the parent directory of a deleted |
| 5950 | * snapshot, it ends up triggering a transaction commit. This is to guarantee |
| 5951 | * that after replaying the log tree of the parent directory's root we will not |
| 5952 | * see the snapshot anymore and at log replay time we will not see any log tree |
| 5953 | * corresponding to the deleted snapshot's root, which could lead to replaying |
| 5954 | * it after replaying the log tree of the parent directory (which would replay |
| 5955 | * the snapshot delete operation). |
Filipe Manana | 2be63d5 | 2016-02-12 11:34:23 +0000 | [diff] [blame] | 5956 | * |
| 5957 | * Must be called before the actual snapshot destroy operation (updates to the |
| 5958 | * parent root and tree of tree roots trees, etc) are done. |
Filipe Manana | 1ec9a1a | 2016-02-10 10:42:25 +0000 | [diff] [blame] | 5959 | */ |
| 5960 | void btrfs_record_snapshot_destroy(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 4366355 | 2017-01-18 00:31:29 +0200 | [diff] [blame] | 5961 | struct btrfs_inode *dir) |
Filipe Manana | 1ec9a1a | 2016-02-10 10:42:25 +0000 | [diff] [blame] | 5962 | { |
Nikolay Borisov | 4366355 | 2017-01-18 00:31:29 +0200 | [diff] [blame] | 5963 | mutex_lock(&dir->log_mutex); |
| 5964 | dir->last_unlink_trans = trans->transid; |
| 5965 | mutex_unlock(&dir->log_mutex); |
Filipe Manana | 1ec9a1a | 2016-02-10 10:42:25 +0000 | [diff] [blame] | 5966 | } |
| 5967 | |
| 5968 | /* |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5969 | * Call this after adding a new name for a file and it will properly |
| 5970 | * update the log to reflect the new name. |
| 5971 | * |
| 5972 | * It will return zero if all goes well, and it will return 1 if a |
| 5973 | * full transaction commit is required. |
| 5974 | */ |
| 5975 | int btrfs_log_new_name(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 9ca5fbfb | 2017-01-18 00:31:31 +0200 | [diff] [blame] | 5976 | struct btrfs_inode *inode, struct btrfs_inode *old_dir, |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5977 | struct dentry *parent) |
| 5978 | { |
Nikolay Borisov | 9ca5fbfb | 2017-01-18 00:31:31 +0200 | [diff] [blame] | 5979 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5980 | |
| 5981 | /* |
Chris Mason | af4176b | 2009-03-24 10:24:31 -0400 | [diff] [blame] | 5982 | * this will force the logging code to walk the dentry chain |
| 5983 | * up for the file |
| 5984 | */ |
Filipe Manana | 9a6509c | 2018-02-28 15:55:40 +0000 | [diff] [blame] | 5985 | if (!S_ISDIR(inode->vfs_inode.i_mode)) |
Nikolay Borisov | 9ca5fbfb | 2017-01-18 00:31:31 +0200 | [diff] [blame] | 5986 | inode->last_unlink_trans = trans->transid; |
Chris Mason | af4176b | 2009-03-24 10:24:31 -0400 | [diff] [blame] | 5987 | |
| 5988 | /* |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5989 | * if this inode hasn't been logged and directory we're renaming it |
| 5990 | * from hasn't been logged, we don't need to log it |
| 5991 | */ |
Nikolay Borisov | 9ca5fbfb | 2017-01-18 00:31:31 +0200 | [diff] [blame] | 5992 | if (inode->logged_trans <= fs_info->last_trans_committed && |
| 5993 | (!old_dir || old_dir->logged_trans <= fs_info->last_trans_committed)) |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5994 | return 0; |
| 5995 | |
Nikolay Borisov | f882274 | 2018-02-27 17:37:17 +0200 | [diff] [blame] | 5996 | return btrfs_log_inode_parent(trans, inode, parent, 0, LLONG_MAX, |
| 5997 | LOG_INODE_EXISTS, NULL); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5998 | } |
| 5999 | |