Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008 Oracle. All rights reserved. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or |
| 5 | * modify it under the terms of the GNU General Public |
| 6 | * License v2 as published by the Free Software Foundation. |
| 7 | * |
| 8 | * This program is distributed in the hope that it will be useful, |
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 11 | * General Public License for more details. |
| 12 | * |
| 13 | * You should have received a copy of the GNU General Public |
| 14 | * License along with this program; if not, write to the |
| 15 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 16 | * Boston, MA 021110-1307, USA. |
| 17 | */ |
| 18 | |
| 19 | #include <linux/sched.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 20 | #include <linux/slab.h> |
Miao Xie | c6adc9c | 2013-05-28 10:05:39 +0000 | [diff] [blame] | 21 | #include <linux/blkdev.h> |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 22 | #include <linux/list_sort.h> |
Miao Xie | 995946d | 2014-04-02 19:51:06 +0800 | [diff] [blame] | 23 | #include "tree-log.h" |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 24 | #include "disk-io.h" |
| 25 | #include "locking.h" |
| 26 | #include "print-tree.h" |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 27 | #include "backref.h" |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 28 | #include "hash.h" |
Anand Jain | ebb8765 | 2016-03-10 17:26:59 +0800 | [diff] [blame] | 29 | #include "compression.h" |
Qu Wenruo | df2c95f | 2016-08-15 10:36:52 +0800 | [diff] [blame] | 30 | #include "qgroup.h" |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 31 | |
| 32 | /* magic values for the inode_only field in btrfs_log_inode: |
| 33 | * |
| 34 | * LOG_INODE_ALL means to log everything |
| 35 | * LOG_INODE_EXISTS means to log just enough to recreate the inode |
| 36 | * during log replay |
| 37 | */ |
| 38 | #define LOG_INODE_ALL 0 |
| 39 | #define LOG_INODE_EXISTS 1 |
Liu Bo | 781feef | 2016-11-30 16:20:25 -0800 | [diff] [blame] | 40 | #define LOG_OTHER_INODE 2 |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 41 | |
| 42 | /* |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 43 | * directory trouble cases |
| 44 | * |
| 45 | * 1) on rename or unlink, if the inode being unlinked isn't in the fsync |
| 46 | * log, we must force a full commit before doing an fsync of the directory |
| 47 | * where the unlink was done. |
| 48 | * ---> record transid of last unlink/rename per directory |
| 49 | * |
| 50 | * mkdir foo/some_dir |
| 51 | * normal commit |
| 52 | * rename foo/some_dir foo2/some_dir |
| 53 | * mkdir foo/some_dir |
| 54 | * fsync foo/some_dir/some_file |
| 55 | * |
| 56 | * The fsync above will unlink the original some_dir without recording |
| 57 | * it in its new location (foo2). After a crash, some_dir will be gone |
| 58 | * unless the fsync of some_file forces a full commit |
| 59 | * |
| 60 | * 2) we must log any new names for any file or dir that is in the fsync |
| 61 | * log. ---> check inode while renaming/linking. |
| 62 | * |
| 63 | * 2a) we must log any new names for any file or dir during rename |
| 64 | * when the directory they are being removed from was logged. |
| 65 | * ---> check inode and old parent dir during rename |
| 66 | * |
| 67 | * 2a is actually the more important variant. With the extra logging |
| 68 | * a crash might unlink the old name without recreating the new one |
| 69 | * |
| 70 | * 3) after a crash, we must go through any directories with a link count |
| 71 | * of zero and redo the rm -rf |
| 72 | * |
| 73 | * mkdir f1/foo |
| 74 | * normal commit |
| 75 | * rm -rf f1/foo |
| 76 | * fsync(f1) |
| 77 | * |
| 78 | * The directory f1 was fully removed from the FS, but fsync was never |
| 79 | * called on f1, only its parent dir. After a crash the rm -rf must |
| 80 | * be replayed. This must be able to recurse down the entire |
| 81 | * directory tree. The inode link count fixup code takes care of the |
| 82 | * ugly details. |
| 83 | */ |
| 84 | |
| 85 | /* |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 86 | * stages for the tree walking. The first |
| 87 | * stage (0) is to only pin down the blocks we find |
| 88 | * the second stage (1) is to make sure that all the inodes |
| 89 | * we find in the log are created in the subvolume. |
| 90 | * |
| 91 | * The last stage is to deal with directories and links and extents |
| 92 | * and all the other fun semantics |
| 93 | */ |
| 94 | #define LOG_WALK_PIN_ONLY 0 |
| 95 | #define LOG_WALK_REPLAY_INODES 1 |
Josef Bacik | dd8e721 | 2013-09-11 11:57:23 -0400 | [diff] [blame] | 96 | #define LOG_WALK_REPLAY_DIR_INDEX 2 |
| 97 | #define LOG_WALK_REPLAY_ALL 3 |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 98 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 99 | static int btrfs_log_inode(struct btrfs_trans_handle *trans, |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 100 | struct btrfs_root *root, struct btrfs_inode *inode, |
Filipe Manana | 49dae1b | 2014-09-06 22:34:39 +0100 | [diff] [blame] | 101 | int inode_only, |
| 102 | const loff_t start, |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 103 | const loff_t end, |
| 104 | struct btrfs_log_ctx *ctx); |
Yan Zheng | ec051c0 | 2009-01-05 15:43:42 -0500 | [diff] [blame] | 105 | static int link_to_fixup_dir(struct btrfs_trans_handle *trans, |
| 106 | struct btrfs_root *root, |
| 107 | struct btrfs_path *path, u64 objectid); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 108 | static noinline int replay_dir_deletes(struct btrfs_trans_handle *trans, |
| 109 | struct btrfs_root *root, |
| 110 | struct btrfs_root *log, |
| 111 | struct btrfs_path *path, |
| 112 | u64 dirid, int del_all); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 113 | |
| 114 | /* |
| 115 | * tree logging is a special write ahead log used to make sure that |
| 116 | * fsyncs and O_SYNCs can happen without doing full tree commits. |
| 117 | * |
| 118 | * Full tree commits are expensive because they require commonly |
| 119 | * modified blocks to be recowed, creating many dirty pages in the |
| 120 | * extent tree an 4x-6x higher write load than ext3. |
| 121 | * |
| 122 | * Instead of doing a tree commit on every fsync, we use the |
| 123 | * key ranges and transaction ids to find items for a given file or directory |
| 124 | * that have changed in this transaction. Those items are copied into |
| 125 | * a special tree (one per subvolume root), that tree is written to disk |
| 126 | * and then the fsync is considered complete. |
| 127 | * |
| 128 | * After a crash, items are copied out of the log-tree back into the |
| 129 | * subvolume tree. Any file data extents found are recorded in the extent |
| 130 | * allocation tree, and the log-tree freed. |
| 131 | * |
| 132 | * The log tree is read three times, once to pin down all the extents it is |
| 133 | * using in ram and once, once to create all the inodes logged in the tree |
| 134 | * and once to do all the other items. |
| 135 | */ |
| 136 | |
| 137 | /* |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 138 | * start a sub transaction and setup the log tree |
| 139 | * this increments the log tree writer count to make the people |
| 140 | * syncing the tree wait for us to finish |
| 141 | */ |
| 142 | static int start_log_trans(struct btrfs_trans_handle *trans, |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 143 | struct btrfs_root *root, |
| 144 | struct btrfs_log_ctx *ctx) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 145 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 146 | struct btrfs_fs_info *fs_info = root->fs_info; |
Zhaolei | 34eb2a5 | 2015-08-17 18:44:45 +0800 | [diff] [blame] | 147 | int ret = 0; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 148 | |
| 149 | mutex_lock(&root->log_mutex); |
Zhaolei | 34eb2a5 | 2015-08-17 18:44:45 +0800 | [diff] [blame] | 150 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 151 | if (root->log_root) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 152 | if (btrfs_need_log_full_commit(fs_info, trans)) { |
Miao Xie | 50471a3 | 2014-02-20 18:08:57 +0800 | [diff] [blame] | 153 | ret = -EAGAIN; |
| 154 | goto out; |
| 155 | } |
Zhaolei | 34eb2a5 | 2015-08-17 18:44:45 +0800 | [diff] [blame] | 156 | |
Josef Bacik | ff782e0 | 2009-10-08 15:30:04 -0400 | [diff] [blame] | 157 | if (!root->log_start_pid) { |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 158 | clear_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state); |
Zhaolei | 34eb2a5 | 2015-08-17 18:44:45 +0800 | [diff] [blame] | 159 | root->log_start_pid = current->pid; |
Josef Bacik | ff782e0 | 2009-10-08 15:30:04 -0400 | [diff] [blame] | 160 | } else if (root->log_start_pid != current->pid) { |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 161 | set_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state); |
Josef Bacik | ff782e0 | 2009-10-08 15:30:04 -0400 | [diff] [blame] | 162 | } |
Zhaolei | 34eb2a5 | 2015-08-17 18:44:45 +0800 | [diff] [blame] | 163 | } else { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 164 | mutex_lock(&fs_info->tree_log_mutex); |
| 165 | if (!fs_info->log_root_tree) |
| 166 | ret = btrfs_init_log_root_tree(trans, fs_info); |
| 167 | mutex_unlock(&fs_info->tree_log_mutex); |
Zhaolei | 34eb2a5 | 2015-08-17 18:44:45 +0800 | [diff] [blame] | 168 | if (ret) |
| 169 | goto out; |
Josef Bacik | ff782e0 | 2009-10-08 15:30:04 -0400 | [diff] [blame] | 170 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 171 | ret = btrfs_add_log_tree(trans, root); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 172 | if (ret) |
Miao Xie | e87ac13 | 2014-02-20 18:08:53 +0800 | [diff] [blame] | 173 | goto out; |
Zhaolei | 34eb2a5 | 2015-08-17 18:44:45 +0800 | [diff] [blame] | 174 | |
| 175 | clear_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state); |
| 176 | root->log_start_pid = current->pid; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 177 | } |
Zhaolei | 34eb2a5 | 2015-08-17 18:44:45 +0800 | [diff] [blame] | 178 | |
Miao Xie | 2ecb792 | 2012-09-06 04:04:27 -0600 | [diff] [blame] | 179 | atomic_inc(&root->log_batch); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 180 | atomic_inc(&root->log_writers); |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 181 | if (ctx) { |
Zhaolei | 34eb2a5 | 2015-08-17 18:44:45 +0800 | [diff] [blame] | 182 | int index = root->log_transid % 2; |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 183 | list_add_tail(&ctx->list, &root->log_ctxs[index]); |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 184 | ctx->log_transid = root->log_transid; |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 185 | } |
Zhaolei | 34eb2a5 | 2015-08-17 18:44:45 +0800 | [diff] [blame] | 186 | |
Miao Xie | e87ac13 | 2014-02-20 18:08:53 +0800 | [diff] [blame] | 187 | out: |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 188 | mutex_unlock(&root->log_mutex); |
Miao Xie | e87ac13 | 2014-02-20 18:08:53 +0800 | [diff] [blame] | 189 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 190 | } |
| 191 | |
| 192 | /* |
| 193 | * returns 0 if there was a log transaction running and we were able |
| 194 | * to join, or returns -ENOENT if there were not transactions |
| 195 | * in progress |
| 196 | */ |
| 197 | static int join_running_log_trans(struct btrfs_root *root) |
| 198 | { |
| 199 | int ret = -ENOENT; |
| 200 | |
| 201 | smp_mb(); |
| 202 | if (!root->log_root) |
| 203 | return -ENOENT; |
| 204 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 205 | mutex_lock(&root->log_mutex); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 206 | if (root->log_root) { |
| 207 | ret = 0; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 208 | atomic_inc(&root->log_writers); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 209 | } |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 210 | mutex_unlock(&root->log_mutex); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 211 | return ret; |
| 212 | } |
| 213 | |
| 214 | /* |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 215 | * This either makes the current running log transaction wait |
| 216 | * until you call btrfs_end_log_trans() or it makes any future |
| 217 | * log transactions wait until you call btrfs_end_log_trans() |
| 218 | */ |
| 219 | int btrfs_pin_log_trans(struct btrfs_root *root) |
| 220 | { |
| 221 | int ret = -ENOENT; |
| 222 | |
| 223 | mutex_lock(&root->log_mutex); |
| 224 | atomic_inc(&root->log_writers); |
| 225 | mutex_unlock(&root->log_mutex); |
| 226 | return ret; |
| 227 | } |
| 228 | |
| 229 | /* |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 230 | * indicate we're done making changes to the log tree |
| 231 | * and wake up anyone waiting to do a sync |
| 232 | */ |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 233 | void btrfs_end_log_trans(struct btrfs_root *root) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 234 | { |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 235 | if (atomic_dec_and_test(&root->log_writers)) { |
David Sterba | 779adf0 | 2015-02-16 19:39:00 +0100 | [diff] [blame] | 236 | /* |
| 237 | * Implicit memory barrier after atomic_dec_and_test |
| 238 | */ |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 239 | if (waitqueue_active(&root->log_writer_wait)) |
| 240 | wake_up(&root->log_writer_wait); |
| 241 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 242 | } |
| 243 | |
| 244 | |
| 245 | /* |
| 246 | * the walk control struct is used to pass state down the chain when |
| 247 | * processing the log tree. The stage field tells us which part |
| 248 | * of the log tree processing we are currently doing. The others |
| 249 | * are state fields used for that specific part |
| 250 | */ |
| 251 | struct walk_control { |
| 252 | /* should we free the extent on disk when done? This is used |
| 253 | * at transaction commit time while freeing a log tree |
| 254 | */ |
| 255 | int free; |
| 256 | |
| 257 | /* should we write out the extent buffer? This is used |
| 258 | * while flushing the log tree to disk during a sync |
| 259 | */ |
| 260 | int write; |
| 261 | |
| 262 | /* should we wait for the extent buffer io to finish? Also used |
| 263 | * while flushing the log tree to disk for a sync |
| 264 | */ |
| 265 | int wait; |
| 266 | |
| 267 | /* pin only walk, we record which extents on disk belong to the |
| 268 | * log trees |
| 269 | */ |
| 270 | int pin; |
| 271 | |
| 272 | /* what stage of the replay code we're currently in */ |
| 273 | int stage; |
| 274 | |
| 275 | /* the root we are currently replaying */ |
| 276 | struct btrfs_root *replay_dest; |
| 277 | |
| 278 | /* the trans handle for the current replay */ |
| 279 | struct btrfs_trans_handle *trans; |
| 280 | |
| 281 | /* the function that gets used to process blocks we find in the |
| 282 | * tree. Note the extent_buffer might not be up to date when it is |
| 283 | * passed in, and it must be checked or read if you need the data |
| 284 | * inside it |
| 285 | */ |
| 286 | int (*process_func)(struct btrfs_root *log, struct extent_buffer *eb, |
| 287 | struct walk_control *wc, u64 gen); |
| 288 | }; |
| 289 | |
| 290 | /* |
| 291 | * process_func used to pin down extents, write them or wait on them |
| 292 | */ |
| 293 | static int process_one_buffer(struct btrfs_root *log, |
| 294 | struct extent_buffer *eb, |
| 295 | struct walk_control *wc, u64 gen) |
| 296 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 297 | struct btrfs_fs_info *fs_info = log->fs_info; |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 298 | int ret = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 299 | |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 300 | /* |
| 301 | * If this fs is mixed then we need to be able to process the leaves to |
| 302 | * pin down any logged extents, so we have to read the block. |
| 303 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 304 | if (btrfs_fs_incompat(fs_info, MIXED_GROUPS)) { |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 305 | ret = btrfs_read_buffer(eb, gen); |
| 306 | if (ret) |
| 307 | return ret; |
| 308 | } |
| 309 | |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 310 | if (wc->pin) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 311 | ret = btrfs_pin_extent_for_log_replay(fs_info, eb->start, |
| 312 | eb->len); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 313 | |
| 314 | if (!ret && btrfs_buffer_uptodate(eb, gen, 0)) { |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 315 | if (wc->pin && btrfs_header_level(eb) == 0) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 316 | ret = btrfs_exclude_logged_extents(fs_info, eb); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 317 | if (wc->write) |
| 318 | btrfs_write_tree_block(eb); |
| 319 | if (wc->wait) |
| 320 | btrfs_wait_tree_block_writeback(eb); |
| 321 | } |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 322 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 323 | } |
| 324 | |
| 325 | /* |
| 326 | * Item overwrite used by replay and tree logging. eb, slot and key all refer |
| 327 | * to the src data we are copying out. |
| 328 | * |
| 329 | * root is the tree we are copying into, and path is a scratch |
| 330 | * path for use in this function (it should be released on entry and |
| 331 | * will be released on exit). |
| 332 | * |
| 333 | * If the key is already in the destination tree the existing item is |
| 334 | * overwritten. If the existing item isn't big enough, it is extended. |
| 335 | * If it is too large, it is truncated. |
| 336 | * |
| 337 | * If the key isn't in the destination yet, a new item is inserted. |
| 338 | */ |
| 339 | static noinline int overwrite_item(struct btrfs_trans_handle *trans, |
| 340 | struct btrfs_root *root, |
| 341 | struct btrfs_path *path, |
| 342 | struct extent_buffer *eb, int slot, |
| 343 | struct btrfs_key *key) |
| 344 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 345 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 346 | int ret; |
| 347 | u32 item_size; |
| 348 | u64 saved_i_size = 0; |
| 349 | int save_old_i_size = 0; |
| 350 | unsigned long src_ptr; |
| 351 | unsigned long dst_ptr; |
| 352 | int overwrite_root = 0; |
Josef Bacik | 4bc4bee | 2013-04-05 20:50:09 +0000 | [diff] [blame] | 353 | bool inode_item = key->type == BTRFS_INODE_ITEM_KEY; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 354 | |
| 355 | if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) |
| 356 | overwrite_root = 1; |
| 357 | |
| 358 | item_size = btrfs_item_size_nr(eb, slot); |
| 359 | src_ptr = btrfs_item_ptr_offset(eb, slot); |
| 360 | |
| 361 | /* look for the key in the destination tree */ |
| 362 | ret = btrfs_search_slot(NULL, root, key, path, 0, 0); |
Josef Bacik | 4bc4bee | 2013-04-05 20:50:09 +0000 | [diff] [blame] | 363 | if (ret < 0) |
| 364 | return ret; |
| 365 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 366 | if (ret == 0) { |
| 367 | char *src_copy; |
| 368 | char *dst_copy; |
| 369 | u32 dst_size = btrfs_item_size_nr(path->nodes[0], |
| 370 | path->slots[0]); |
| 371 | if (dst_size != item_size) |
| 372 | goto insert; |
| 373 | |
| 374 | if (item_size == 0) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 375 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 376 | return 0; |
| 377 | } |
| 378 | dst_copy = kmalloc(item_size, GFP_NOFS); |
| 379 | src_copy = kmalloc(item_size, GFP_NOFS); |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 380 | if (!dst_copy || !src_copy) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 381 | btrfs_release_path(path); |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 382 | kfree(dst_copy); |
| 383 | kfree(src_copy); |
| 384 | return -ENOMEM; |
| 385 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 386 | |
| 387 | read_extent_buffer(eb, src_copy, src_ptr, item_size); |
| 388 | |
| 389 | dst_ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]); |
| 390 | read_extent_buffer(path->nodes[0], dst_copy, dst_ptr, |
| 391 | item_size); |
| 392 | ret = memcmp(dst_copy, src_copy, item_size); |
| 393 | |
| 394 | kfree(dst_copy); |
| 395 | kfree(src_copy); |
| 396 | /* |
| 397 | * they have the same contents, just return, this saves |
| 398 | * us from cowing blocks in the destination tree and doing |
| 399 | * extra writes that may not have been done by a previous |
| 400 | * sync |
| 401 | */ |
| 402 | if (ret == 0) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 403 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 404 | return 0; |
| 405 | } |
| 406 | |
Josef Bacik | 4bc4bee | 2013-04-05 20:50:09 +0000 | [diff] [blame] | 407 | /* |
| 408 | * We need to load the old nbytes into the inode so when we |
| 409 | * replay the extents we've logged we get the right nbytes. |
| 410 | */ |
| 411 | if (inode_item) { |
| 412 | struct btrfs_inode_item *item; |
| 413 | u64 nbytes; |
Josef Bacik | d555438 | 2013-09-11 14:17:00 -0400 | [diff] [blame] | 414 | u32 mode; |
Josef Bacik | 4bc4bee | 2013-04-05 20:50:09 +0000 | [diff] [blame] | 415 | |
| 416 | item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 417 | struct btrfs_inode_item); |
| 418 | nbytes = btrfs_inode_nbytes(path->nodes[0], item); |
| 419 | item = btrfs_item_ptr(eb, slot, |
| 420 | struct btrfs_inode_item); |
| 421 | btrfs_set_inode_nbytes(eb, item, nbytes); |
Josef Bacik | d555438 | 2013-09-11 14:17:00 -0400 | [diff] [blame] | 422 | |
| 423 | /* |
| 424 | * If this is a directory we need to reset the i_size to |
| 425 | * 0 so that we can set it up properly when replaying |
| 426 | * the rest of the items in this log. |
| 427 | */ |
| 428 | mode = btrfs_inode_mode(eb, item); |
| 429 | if (S_ISDIR(mode)) |
| 430 | btrfs_set_inode_size(eb, item, 0); |
Josef Bacik | 4bc4bee | 2013-04-05 20:50:09 +0000 | [diff] [blame] | 431 | } |
| 432 | } else if (inode_item) { |
| 433 | struct btrfs_inode_item *item; |
Josef Bacik | d555438 | 2013-09-11 14:17:00 -0400 | [diff] [blame] | 434 | u32 mode; |
Josef Bacik | 4bc4bee | 2013-04-05 20:50:09 +0000 | [diff] [blame] | 435 | |
| 436 | /* |
| 437 | * New inode, set nbytes to 0 so that the nbytes comes out |
| 438 | * properly when we replay the extents. |
| 439 | */ |
| 440 | item = btrfs_item_ptr(eb, slot, struct btrfs_inode_item); |
| 441 | btrfs_set_inode_nbytes(eb, item, 0); |
Josef Bacik | d555438 | 2013-09-11 14:17:00 -0400 | [diff] [blame] | 442 | |
| 443 | /* |
| 444 | * If this is a directory we need to reset the i_size to 0 so |
| 445 | * that we can set it up properly when replaying the rest of |
| 446 | * the items in this log. |
| 447 | */ |
| 448 | mode = btrfs_inode_mode(eb, item); |
| 449 | if (S_ISDIR(mode)) |
| 450 | btrfs_set_inode_size(eb, item, 0); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 451 | } |
| 452 | insert: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 453 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 454 | /* try to insert the key into the destination tree */ |
Filipe Manana | df8d116 | 2015-01-14 01:52:25 +0000 | [diff] [blame] | 455 | path->skip_release_on_error = 1; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 456 | ret = btrfs_insert_empty_item(trans, root, path, |
| 457 | key, item_size); |
Filipe Manana | df8d116 | 2015-01-14 01:52:25 +0000 | [diff] [blame] | 458 | path->skip_release_on_error = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 459 | |
| 460 | /* make sure any existing item is the correct size */ |
Filipe Manana | df8d116 | 2015-01-14 01:52:25 +0000 | [diff] [blame] | 461 | if (ret == -EEXIST || ret == -EOVERFLOW) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 462 | u32 found_size; |
| 463 | found_size = btrfs_item_size_nr(path->nodes[0], |
| 464 | path->slots[0]); |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 465 | if (found_size > item_size) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 466 | btrfs_truncate_item(fs_info, path, item_size, 1); |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 467 | else if (found_size < item_size) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 468 | btrfs_extend_item(fs_info, path, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 469 | item_size - found_size); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 470 | } else if (ret) { |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 471 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 472 | } |
| 473 | dst_ptr = btrfs_item_ptr_offset(path->nodes[0], |
| 474 | path->slots[0]); |
| 475 | |
| 476 | /* don't overwrite an existing inode if the generation number |
| 477 | * was logged as zero. This is done when the tree logging code |
| 478 | * is just logging an inode to make sure it exists after recovery. |
| 479 | * |
| 480 | * Also, don't overwrite i_size on directories during replay. |
| 481 | * log replay inserts and removes directory items based on the |
| 482 | * state of the tree found in the subvolume, and i_size is modified |
| 483 | * as it goes |
| 484 | */ |
| 485 | if (key->type == BTRFS_INODE_ITEM_KEY && ret == -EEXIST) { |
| 486 | struct btrfs_inode_item *src_item; |
| 487 | struct btrfs_inode_item *dst_item; |
| 488 | |
| 489 | src_item = (struct btrfs_inode_item *)src_ptr; |
| 490 | dst_item = (struct btrfs_inode_item *)dst_ptr; |
| 491 | |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 492 | if (btrfs_inode_generation(eb, src_item) == 0) { |
| 493 | struct extent_buffer *dst_eb = path->nodes[0]; |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 494 | const u64 ino_size = btrfs_inode_size(eb, src_item); |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 495 | |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 496 | /* |
| 497 | * For regular files an ino_size == 0 is used only when |
| 498 | * logging that an inode exists, as part of a directory |
| 499 | * fsync, and the inode wasn't fsynced before. In this |
| 500 | * case don't set the size of the inode in the fs/subvol |
| 501 | * tree, otherwise we would be throwing valid data away. |
| 502 | */ |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 503 | if (S_ISREG(btrfs_inode_mode(eb, src_item)) && |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 504 | S_ISREG(btrfs_inode_mode(dst_eb, dst_item)) && |
| 505 | ino_size != 0) { |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 506 | struct btrfs_map_token token; |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 507 | |
| 508 | btrfs_init_map_token(&token); |
| 509 | btrfs_set_token_inode_size(dst_eb, dst_item, |
| 510 | ino_size, &token); |
| 511 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 512 | goto no_copy; |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 513 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 514 | |
| 515 | if (overwrite_root && |
| 516 | S_ISDIR(btrfs_inode_mode(eb, src_item)) && |
| 517 | S_ISDIR(btrfs_inode_mode(path->nodes[0], dst_item))) { |
| 518 | save_old_i_size = 1; |
| 519 | saved_i_size = btrfs_inode_size(path->nodes[0], |
| 520 | dst_item); |
| 521 | } |
| 522 | } |
| 523 | |
| 524 | copy_extent_buffer(path->nodes[0], eb, dst_ptr, |
| 525 | src_ptr, item_size); |
| 526 | |
| 527 | if (save_old_i_size) { |
| 528 | struct btrfs_inode_item *dst_item; |
| 529 | dst_item = (struct btrfs_inode_item *)dst_ptr; |
| 530 | btrfs_set_inode_size(path->nodes[0], dst_item, saved_i_size); |
| 531 | } |
| 532 | |
| 533 | /* make sure the generation is filled in */ |
| 534 | if (key->type == BTRFS_INODE_ITEM_KEY) { |
| 535 | struct btrfs_inode_item *dst_item; |
| 536 | dst_item = (struct btrfs_inode_item *)dst_ptr; |
| 537 | if (btrfs_inode_generation(path->nodes[0], dst_item) == 0) { |
| 538 | btrfs_set_inode_generation(path->nodes[0], dst_item, |
| 539 | trans->transid); |
| 540 | } |
| 541 | } |
| 542 | no_copy: |
| 543 | btrfs_mark_buffer_dirty(path->nodes[0]); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 544 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 545 | return 0; |
| 546 | } |
| 547 | |
| 548 | /* |
| 549 | * simple helper to read an inode off the disk from a given root |
| 550 | * This can only be called for subvolume roots and not for the log |
| 551 | */ |
| 552 | static noinline struct inode *read_one_inode(struct btrfs_root *root, |
| 553 | u64 objectid) |
| 554 | { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 555 | struct btrfs_key key; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 556 | struct inode *inode; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 557 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 558 | key.objectid = objectid; |
| 559 | key.type = BTRFS_INODE_ITEM_KEY; |
| 560 | key.offset = 0; |
Josef Bacik | 73f7341 | 2009-12-04 17:38:27 +0000 | [diff] [blame] | 561 | inode = btrfs_iget(root->fs_info->sb, &key, root, NULL); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 562 | if (IS_ERR(inode)) { |
| 563 | inode = NULL; |
| 564 | } else if (is_bad_inode(inode)) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 565 | iput(inode); |
| 566 | inode = NULL; |
| 567 | } |
| 568 | return inode; |
| 569 | } |
| 570 | |
| 571 | /* replays a single extent in 'eb' at 'slot' with 'key' into the |
| 572 | * subvolume 'root'. path is released on entry and should be released |
| 573 | * on exit. |
| 574 | * |
| 575 | * extents in the log tree have not been allocated out of the extent |
| 576 | * tree yet. So, this completes the allocation, taking a reference |
| 577 | * as required if the extent already exists or creating a new extent |
| 578 | * if it isn't in the extent allocation tree yet. |
| 579 | * |
| 580 | * The extent is inserted into the file, dropping any existing extents |
| 581 | * from the file that overlap the new one. |
| 582 | */ |
| 583 | static noinline int replay_one_extent(struct btrfs_trans_handle *trans, |
| 584 | struct btrfs_root *root, |
| 585 | struct btrfs_path *path, |
| 586 | struct extent_buffer *eb, int slot, |
| 587 | struct btrfs_key *key) |
| 588 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 589 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 590 | int found_type; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 591 | u64 extent_end; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 592 | u64 start = key->offset; |
Josef Bacik | 4bc4bee | 2013-04-05 20:50:09 +0000 | [diff] [blame] | 593 | u64 nbytes = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 594 | struct btrfs_file_extent_item *item; |
| 595 | struct inode *inode = NULL; |
| 596 | unsigned long size; |
| 597 | int ret = 0; |
| 598 | |
| 599 | item = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item); |
| 600 | found_type = btrfs_file_extent_type(eb, item); |
| 601 | |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 602 | if (found_type == BTRFS_FILE_EXTENT_REG || |
Josef Bacik | 4bc4bee | 2013-04-05 20:50:09 +0000 | [diff] [blame] | 603 | found_type == BTRFS_FILE_EXTENT_PREALLOC) { |
| 604 | nbytes = btrfs_file_extent_num_bytes(eb, item); |
| 605 | extent_end = start + nbytes; |
| 606 | |
| 607 | /* |
| 608 | * We don't add to the inodes nbytes if we are prealloc or a |
| 609 | * hole. |
| 610 | */ |
| 611 | if (btrfs_file_extent_disk_bytenr(eb, item) == 0) |
| 612 | nbytes = 0; |
| 613 | } else if (found_type == BTRFS_FILE_EXTENT_INLINE) { |
Chris Mason | 514ac8a | 2014-01-03 21:07:00 -0800 | [diff] [blame] | 614 | size = btrfs_file_extent_inline_len(eb, slot, item); |
Josef Bacik | 4bc4bee | 2013-04-05 20:50:09 +0000 | [diff] [blame] | 615 | nbytes = btrfs_file_extent_ram_bytes(eb, item); |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 616 | extent_end = ALIGN(start + size, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 617 | fs_info->sectorsize); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 618 | } else { |
| 619 | ret = 0; |
| 620 | goto out; |
| 621 | } |
| 622 | |
| 623 | inode = read_one_inode(root, key->objectid); |
| 624 | if (!inode) { |
| 625 | ret = -EIO; |
| 626 | goto out; |
| 627 | } |
| 628 | |
| 629 | /* |
| 630 | * first check to see if we already have this extent in the |
| 631 | * file. This must be done before the btrfs_drop_extents run |
| 632 | * so we don't try to drop this extent. |
| 633 | */ |
David Sterba | f85b737 | 2017-01-20 14:54:07 +0100 | [diff] [blame] | 634 | ret = btrfs_lookup_file_extent(trans, root, path, |
| 635 | btrfs_ino(BTRFS_I(inode)), start, 0); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 636 | |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 637 | if (ret == 0 && |
| 638 | (found_type == BTRFS_FILE_EXTENT_REG || |
| 639 | found_type == BTRFS_FILE_EXTENT_PREALLOC)) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 640 | struct btrfs_file_extent_item cmp1; |
| 641 | struct btrfs_file_extent_item cmp2; |
| 642 | struct btrfs_file_extent_item *existing; |
| 643 | struct extent_buffer *leaf; |
| 644 | |
| 645 | leaf = path->nodes[0]; |
| 646 | existing = btrfs_item_ptr(leaf, path->slots[0], |
| 647 | struct btrfs_file_extent_item); |
| 648 | |
| 649 | read_extent_buffer(eb, &cmp1, (unsigned long)item, |
| 650 | sizeof(cmp1)); |
| 651 | read_extent_buffer(leaf, &cmp2, (unsigned long)existing, |
| 652 | sizeof(cmp2)); |
| 653 | |
| 654 | /* |
| 655 | * we already have a pointer to this exact extent, |
| 656 | * we don't have to do anything |
| 657 | */ |
| 658 | if (memcmp(&cmp1, &cmp2, sizeof(cmp1)) == 0) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 659 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 660 | goto out; |
| 661 | } |
| 662 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 663 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 664 | |
| 665 | /* drop any overlapping extents */ |
Josef Bacik | 2671485 | 2012-08-29 12:24:27 -0400 | [diff] [blame] | 666 | ret = btrfs_drop_extents(trans, root, inode, start, extent_end, 1); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 667 | if (ret) |
| 668 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 669 | |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 670 | if (found_type == BTRFS_FILE_EXTENT_REG || |
| 671 | found_type == BTRFS_FILE_EXTENT_PREALLOC) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 672 | u64 offset; |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 673 | unsigned long dest_offset; |
| 674 | struct btrfs_key ins; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 675 | |
Filipe Manana | 3168021c | 2017-02-01 14:58:02 +0000 | [diff] [blame] | 676 | if (btrfs_file_extent_disk_bytenr(eb, item) == 0 && |
| 677 | btrfs_fs_incompat(fs_info, NO_HOLES)) |
| 678 | goto update_inode; |
| 679 | |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 680 | ret = btrfs_insert_empty_item(trans, root, path, key, |
| 681 | sizeof(*item)); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 682 | if (ret) |
| 683 | goto out; |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 684 | dest_offset = btrfs_item_ptr_offset(path->nodes[0], |
| 685 | path->slots[0]); |
| 686 | copy_extent_buffer(path->nodes[0], eb, dest_offset, |
| 687 | (unsigned long)item, sizeof(*item)); |
| 688 | |
| 689 | ins.objectid = btrfs_file_extent_disk_bytenr(eb, item); |
| 690 | ins.offset = btrfs_file_extent_disk_num_bytes(eb, item); |
| 691 | ins.type = BTRFS_EXTENT_ITEM_KEY; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 692 | offset = key->offset - btrfs_file_extent_offset(eb, item); |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 693 | |
Qu Wenruo | df2c95f | 2016-08-15 10:36:52 +0800 | [diff] [blame] | 694 | /* |
| 695 | * Manually record dirty extent, as here we did a shallow |
| 696 | * file extent item copy and skip normal backref update, |
| 697 | * but modifying extent tree all by ourselves. |
| 698 | * So need to manually record dirty extent for qgroup, |
| 699 | * as the owner of the file extent changed from log tree |
| 700 | * (doesn't affect qgroup) to fs/file tree(affects qgroup) |
| 701 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 702 | ret = btrfs_qgroup_trace_extent(trans, fs_info, |
Qu Wenruo | df2c95f | 2016-08-15 10:36:52 +0800 | [diff] [blame] | 703 | btrfs_file_extent_disk_bytenr(eb, item), |
| 704 | btrfs_file_extent_disk_num_bytes(eb, item), |
| 705 | GFP_NOFS); |
| 706 | if (ret < 0) |
| 707 | goto out; |
| 708 | |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 709 | if (ins.objectid > 0) { |
| 710 | u64 csum_start; |
| 711 | u64 csum_end; |
| 712 | LIST_HEAD(ordered_sums); |
| 713 | /* |
| 714 | * is this extent already allocated in the extent |
| 715 | * allocation tree? If so, just add a reference |
| 716 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 717 | ret = btrfs_lookup_data_extent(fs_info, ins.objectid, |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 718 | ins.offset); |
| 719 | if (ret == 0) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 720 | ret = btrfs_inc_extent_ref(trans, fs_info, |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 721 | ins.objectid, ins.offset, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 722 | 0, root->root_key.objectid, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 723 | key->objectid, offset); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 724 | if (ret) |
| 725 | goto out; |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 726 | } else { |
| 727 | /* |
| 728 | * insert the extent pointer in the extent |
| 729 | * allocation tree |
| 730 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 731 | ret = btrfs_alloc_logged_file_extent(trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 732 | fs_info, |
| 733 | root->root_key.objectid, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 734 | key->objectid, offset, &ins); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 735 | if (ret) |
| 736 | goto out; |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 737 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 738 | btrfs_release_path(path); |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 739 | |
| 740 | if (btrfs_file_extent_compression(eb, item)) { |
| 741 | csum_start = ins.objectid; |
| 742 | csum_end = csum_start + ins.offset; |
| 743 | } else { |
| 744 | csum_start = ins.objectid + |
| 745 | btrfs_file_extent_offset(eb, item); |
| 746 | csum_end = csum_start + |
| 747 | btrfs_file_extent_num_bytes(eb, item); |
| 748 | } |
| 749 | |
| 750 | ret = btrfs_lookup_csums_range(root->log_root, |
| 751 | csum_start, csum_end - 1, |
Arne Jansen | a2de733 | 2011-03-08 14:14:00 +0100 | [diff] [blame] | 752 | &ordered_sums, 0); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 753 | if (ret) |
| 754 | goto out; |
Filipe Manana | b84b839 | 2015-08-19 11:09:40 +0100 | [diff] [blame] | 755 | /* |
| 756 | * Now delete all existing cums in the csum root that |
| 757 | * cover our range. We do this because we can have an |
| 758 | * extent that is completely referenced by one file |
| 759 | * extent item and partially referenced by another |
| 760 | * file extent item (like after using the clone or |
| 761 | * extent_same ioctls). In this case if we end up doing |
| 762 | * the replay of the one that partially references the |
| 763 | * extent first, and we do not do the csum deletion |
| 764 | * below, we can get 2 csum items in the csum tree that |
| 765 | * overlap each other. For example, imagine our log has |
| 766 | * the two following file extent items: |
| 767 | * |
| 768 | * key (257 EXTENT_DATA 409600) |
| 769 | * extent data disk byte 12845056 nr 102400 |
| 770 | * extent data offset 20480 nr 20480 ram 102400 |
| 771 | * |
| 772 | * key (257 EXTENT_DATA 819200) |
| 773 | * extent data disk byte 12845056 nr 102400 |
| 774 | * extent data offset 0 nr 102400 ram 102400 |
| 775 | * |
| 776 | * Where the second one fully references the 100K extent |
| 777 | * that starts at disk byte 12845056, and the log tree |
| 778 | * has a single csum item that covers the entire range |
| 779 | * of the extent: |
| 780 | * |
| 781 | * key (EXTENT_CSUM EXTENT_CSUM 12845056) itemsize 100 |
| 782 | * |
| 783 | * After the first file extent item is replayed, the |
| 784 | * csum tree gets the following csum item: |
| 785 | * |
| 786 | * key (EXTENT_CSUM EXTENT_CSUM 12865536) itemsize 20 |
| 787 | * |
| 788 | * Which covers the 20K sub-range starting at offset 20K |
| 789 | * of our extent. Now when we replay the second file |
| 790 | * extent item, if we do not delete existing csum items |
| 791 | * that cover any of its blocks, we end up getting two |
| 792 | * csum items in our csum tree that overlap each other: |
| 793 | * |
| 794 | * key (EXTENT_CSUM EXTENT_CSUM 12845056) itemsize 100 |
| 795 | * key (EXTENT_CSUM EXTENT_CSUM 12865536) itemsize 20 |
| 796 | * |
| 797 | * Which is a problem, because after this anyone trying |
| 798 | * to lookup up for the checksum of any block of our |
| 799 | * extent starting at an offset of 40K or higher, will |
| 800 | * end up looking at the second csum item only, which |
| 801 | * does not contain the checksum for any block starting |
| 802 | * at offset 40K or higher of our extent. |
| 803 | */ |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 804 | while (!list_empty(&ordered_sums)) { |
| 805 | struct btrfs_ordered_sum *sums; |
| 806 | sums = list_entry(ordered_sums.next, |
| 807 | struct btrfs_ordered_sum, |
| 808 | list); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 809 | if (!ret) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 810 | ret = btrfs_del_csums(trans, fs_info, |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 811 | sums->bytenr, |
| 812 | sums->len); |
Filipe Manana | b84b839 | 2015-08-19 11:09:40 +0100 | [diff] [blame] | 813 | if (!ret) |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 814 | ret = btrfs_csum_file_blocks(trans, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 815 | fs_info->csum_root, sums); |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 816 | list_del(&sums->list); |
| 817 | kfree(sums); |
| 818 | } |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 819 | if (ret) |
| 820 | goto out; |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 821 | } else { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 822 | btrfs_release_path(path); |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 823 | } |
| 824 | } else if (found_type == BTRFS_FILE_EXTENT_INLINE) { |
| 825 | /* inline extents are easy, we just overwrite them */ |
| 826 | ret = overwrite_item(trans, root, path, eb, slot, key); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 827 | if (ret) |
| 828 | goto out; |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 829 | } |
| 830 | |
Josef Bacik | 4bc4bee | 2013-04-05 20:50:09 +0000 | [diff] [blame] | 831 | inode_add_bytes(inode, nbytes); |
Filipe Manana | 3168021c | 2017-02-01 14:58:02 +0000 | [diff] [blame] | 832 | update_inode: |
Tsutomu Itoh | b995929 | 2012-06-25 21:25:22 -0600 | [diff] [blame] | 833 | ret = btrfs_update_inode(trans, root, inode); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 834 | out: |
| 835 | if (inode) |
| 836 | iput(inode); |
| 837 | return ret; |
| 838 | } |
| 839 | |
| 840 | /* |
| 841 | * when cleaning up conflicts between the directory names in the |
| 842 | * subvolume, directory names in the log and directory names in the |
| 843 | * inode back references, we may have to unlink inodes from directories. |
| 844 | * |
| 845 | * This is a helper function to do the unlink of a specific directory |
| 846 | * item |
| 847 | */ |
| 848 | static noinline int drop_one_dir_item(struct btrfs_trans_handle *trans, |
| 849 | struct btrfs_root *root, |
| 850 | struct btrfs_path *path, |
Nikolay Borisov | 207e7d9 | 2017-01-18 00:31:45 +0200 | [diff] [blame] | 851 | struct btrfs_inode *dir, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 852 | struct btrfs_dir_item *di) |
| 853 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 854 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 855 | struct inode *inode; |
| 856 | char *name; |
| 857 | int name_len; |
| 858 | struct extent_buffer *leaf; |
| 859 | struct btrfs_key location; |
| 860 | int ret; |
| 861 | |
| 862 | leaf = path->nodes[0]; |
| 863 | |
| 864 | btrfs_dir_item_key_to_cpu(leaf, di, &location); |
| 865 | name_len = btrfs_dir_name_len(leaf, di); |
| 866 | name = kmalloc(name_len, GFP_NOFS); |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 867 | if (!name) |
| 868 | return -ENOMEM; |
| 869 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 870 | read_extent_buffer(leaf, name, (unsigned long)(di + 1), name_len); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 871 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 872 | |
| 873 | inode = read_one_inode(root, location.objectid); |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 874 | if (!inode) { |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 875 | ret = -EIO; |
| 876 | goto out; |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 877 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 878 | |
Yan Zheng | ec051c0 | 2009-01-05 15:43:42 -0500 | [diff] [blame] | 879 | ret = link_to_fixup_dir(trans, root, path, location.objectid); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 880 | if (ret) |
| 881 | goto out; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 882 | |
Nikolay Borisov | 207e7d9 | 2017-01-18 00:31:45 +0200 | [diff] [blame] | 883 | ret = btrfs_unlink_inode(trans, root, dir, BTRFS_I(inode), name, |
| 884 | name_len); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 885 | if (ret) |
| 886 | goto out; |
Filipe David Borba Manana | ada9af2 | 2013-08-05 09:25:47 +0100 | [diff] [blame] | 887 | else |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 888 | ret = btrfs_run_delayed_items(trans, fs_info); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 889 | out: |
| 890 | kfree(name); |
| 891 | iput(inode); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 892 | return ret; |
| 893 | } |
| 894 | |
| 895 | /* |
| 896 | * helper function to see if a given name and sequence number found |
| 897 | * in an inode back reference are already in a directory and correctly |
| 898 | * point to this inode |
| 899 | */ |
| 900 | static noinline int inode_in_dir(struct btrfs_root *root, |
| 901 | struct btrfs_path *path, |
| 902 | u64 dirid, u64 objectid, u64 index, |
| 903 | const char *name, int name_len) |
| 904 | { |
| 905 | struct btrfs_dir_item *di; |
| 906 | struct btrfs_key location; |
| 907 | int match = 0; |
| 908 | |
| 909 | di = btrfs_lookup_dir_index_item(NULL, root, path, dirid, |
| 910 | index, name, name_len, 0); |
| 911 | if (di && !IS_ERR(di)) { |
| 912 | btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location); |
| 913 | if (location.objectid != objectid) |
| 914 | goto out; |
| 915 | } else |
| 916 | goto out; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 917 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 918 | |
| 919 | di = btrfs_lookup_dir_item(NULL, root, path, dirid, name, name_len, 0); |
| 920 | if (di && !IS_ERR(di)) { |
| 921 | btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location); |
| 922 | if (location.objectid != objectid) |
| 923 | goto out; |
| 924 | } else |
| 925 | goto out; |
| 926 | match = 1; |
| 927 | out: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 928 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 929 | return match; |
| 930 | } |
| 931 | |
| 932 | /* |
| 933 | * helper function to check a log tree for a named back reference in |
| 934 | * an inode. This is used to decide if a back reference that is |
| 935 | * found in the subvolume conflicts with what we find in the log. |
| 936 | * |
| 937 | * inode backreferences may have multiple refs in a single item, |
| 938 | * during replay we process one reference at a time, and we don't |
| 939 | * want to delete valid links to a file from the subvolume if that |
| 940 | * link is also in the log. |
| 941 | */ |
| 942 | static noinline int backref_in_log(struct btrfs_root *log, |
| 943 | struct btrfs_key *key, |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 944 | u64 ref_objectid, |
Filipe Manana | df8d116 | 2015-01-14 01:52:25 +0000 | [diff] [blame] | 945 | const char *name, int namelen) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 946 | { |
| 947 | struct btrfs_path *path; |
| 948 | struct btrfs_inode_ref *ref; |
| 949 | unsigned long ptr; |
| 950 | unsigned long ptr_end; |
| 951 | unsigned long name_ptr; |
| 952 | int found_name_len; |
| 953 | int item_size; |
| 954 | int ret; |
| 955 | int match = 0; |
| 956 | |
| 957 | path = btrfs_alloc_path(); |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 958 | if (!path) |
| 959 | return -ENOMEM; |
| 960 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 961 | ret = btrfs_search_slot(NULL, log, key, path, 0, 0); |
| 962 | if (ret != 0) |
| 963 | goto out; |
| 964 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 965 | ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 966 | |
| 967 | if (key->type == BTRFS_INODE_EXTREF_KEY) { |
| 968 | if (btrfs_find_name_in_ext_backref(path, ref_objectid, |
| 969 | name, namelen, NULL)) |
| 970 | match = 1; |
| 971 | |
| 972 | goto out; |
| 973 | } |
| 974 | |
| 975 | item_size = btrfs_item_size_nr(path->nodes[0], path->slots[0]); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 976 | ptr_end = ptr + item_size; |
| 977 | while (ptr < ptr_end) { |
| 978 | ref = (struct btrfs_inode_ref *)ptr; |
| 979 | found_name_len = btrfs_inode_ref_name_len(path->nodes[0], ref); |
| 980 | if (found_name_len == namelen) { |
| 981 | name_ptr = (unsigned long)(ref + 1); |
| 982 | ret = memcmp_extent_buffer(path->nodes[0], name, |
| 983 | name_ptr, namelen); |
| 984 | if (ret == 0) { |
| 985 | match = 1; |
| 986 | goto out; |
| 987 | } |
| 988 | } |
| 989 | ptr = (unsigned long)(ref + 1) + found_name_len; |
| 990 | } |
| 991 | out: |
| 992 | btrfs_free_path(path); |
| 993 | return match; |
| 994 | } |
| 995 | |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 996 | static inline int __add_inode_ref(struct btrfs_trans_handle *trans, |
| 997 | struct btrfs_root *root, |
| 998 | struct btrfs_path *path, |
| 999 | struct btrfs_root *log_root, |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1000 | struct btrfs_inode *dir, |
| 1001 | struct btrfs_inode *inode, |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1002 | u64 inode_objectid, u64 parent_objectid, |
| 1003 | u64 ref_index, char *name, int namelen, |
| 1004 | int *search_done) |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1005 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 1006 | struct btrfs_fs_info *fs_info = root->fs_info; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1007 | int ret; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1008 | char *victim_name; |
| 1009 | int victim_name_len; |
| 1010 | struct extent_buffer *leaf; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1011 | struct btrfs_dir_item *di; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1012 | struct btrfs_key search_key; |
| 1013 | struct btrfs_inode_extref *extref; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1014 | |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1015 | again: |
| 1016 | /* Search old style refs */ |
| 1017 | search_key.objectid = inode_objectid; |
| 1018 | search_key.type = BTRFS_INODE_REF_KEY; |
| 1019 | search_key.offset = parent_objectid; |
| 1020 | ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0); |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1021 | if (ret == 0) { |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1022 | struct btrfs_inode_ref *victim_ref; |
| 1023 | unsigned long ptr; |
| 1024 | unsigned long ptr_end; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1025 | |
| 1026 | leaf = path->nodes[0]; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1027 | |
| 1028 | /* are we trying to overwrite a back ref for the root directory |
| 1029 | * if so, just jump out, we're done |
| 1030 | */ |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1031 | if (search_key.objectid == search_key.offset) |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1032 | return 1; |
| 1033 | |
| 1034 | /* check all the names in this back reference to see |
| 1035 | * if they are in the log. if so, we allow them to stay |
| 1036 | * otherwise they must be unlinked as a conflict |
| 1037 | */ |
| 1038 | ptr = btrfs_item_ptr_offset(leaf, path->slots[0]); |
| 1039 | ptr_end = ptr + btrfs_item_size_nr(leaf, path->slots[0]); |
| 1040 | while (ptr < ptr_end) { |
| 1041 | victim_ref = (struct btrfs_inode_ref *)ptr; |
| 1042 | victim_name_len = btrfs_inode_ref_name_len(leaf, |
| 1043 | victim_ref); |
| 1044 | victim_name = kmalloc(victim_name_len, GFP_NOFS); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1045 | if (!victim_name) |
| 1046 | return -ENOMEM; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1047 | |
| 1048 | read_extent_buffer(leaf, victim_name, |
| 1049 | (unsigned long)(victim_ref + 1), |
| 1050 | victim_name_len); |
| 1051 | |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1052 | if (!backref_in_log(log_root, &search_key, |
| 1053 | parent_objectid, |
| 1054 | victim_name, |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1055 | victim_name_len)) { |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1056 | inc_nlink(&inode->vfs_inode); |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1057 | btrfs_release_path(path); |
| 1058 | |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1059 | ret = btrfs_unlink_inode(trans, root, dir, inode, |
Nikolay Borisov | 4ec5934 | 2017-01-18 00:31:44 +0200 | [diff] [blame] | 1060 | victim_name, victim_name_len); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1061 | kfree(victim_name); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1062 | if (ret) |
| 1063 | return ret; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 1064 | ret = btrfs_run_delayed_items(trans, fs_info); |
Filipe David Borba Manana | ada9af2 | 2013-08-05 09:25:47 +0100 | [diff] [blame] | 1065 | if (ret) |
| 1066 | return ret; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1067 | *search_done = 1; |
| 1068 | goto again; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1069 | } |
| 1070 | kfree(victim_name); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1071 | |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1072 | ptr = (unsigned long)(victim_ref + 1) + victim_name_len; |
| 1073 | } |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1074 | |
| 1075 | /* |
| 1076 | * NOTE: we have searched root tree and checked the |
Adam Buchbinder | bb7ab3b | 2016-03-04 11:23:12 -0800 | [diff] [blame] | 1077 | * corresponding ref, it does not need to check again. |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1078 | */ |
| 1079 | *search_done = 1; |
| 1080 | } |
| 1081 | btrfs_release_path(path); |
| 1082 | |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1083 | /* Same search but for extended refs */ |
| 1084 | extref = btrfs_lookup_inode_extref(NULL, root, path, name, namelen, |
| 1085 | inode_objectid, parent_objectid, 0, |
| 1086 | 0); |
| 1087 | if (!IS_ERR_OR_NULL(extref)) { |
| 1088 | u32 item_size; |
| 1089 | u32 cur_offset = 0; |
| 1090 | unsigned long base; |
| 1091 | struct inode *victim_parent; |
| 1092 | |
| 1093 | leaf = path->nodes[0]; |
| 1094 | |
| 1095 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1096 | base = btrfs_item_ptr_offset(leaf, path->slots[0]); |
| 1097 | |
| 1098 | while (cur_offset < item_size) { |
Quentin Casasnovas | dd9ef13 | 2015-03-03 16:31:38 +0100 | [diff] [blame] | 1099 | extref = (struct btrfs_inode_extref *)(base + cur_offset); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1100 | |
| 1101 | victim_name_len = btrfs_inode_extref_name_len(leaf, extref); |
| 1102 | |
| 1103 | if (btrfs_inode_extref_parent(leaf, extref) != parent_objectid) |
| 1104 | goto next; |
| 1105 | |
| 1106 | victim_name = kmalloc(victim_name_len, GFP_NOFS); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1107 | if (!victim_name) |
| 1108 | return -ENOMEM; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1109 | read_extent_buffer(leaf, victim_name, (unsigned long)&extref->name, |
| 1110 | victim_name_len); |
| 1111 | |
| 1112 | search_key.objectid = inode_objectid; |
| 1113 | search_key.type = BTRFS_INODE_EXTREF_KEY; |
| 1114 | search_key.offset = btrfs_extref_hash(parent_objectid, |
| 1115 | victim_name, |
| 1116 | victim_name_len); |
| 1117 | ret = 0; |
| 1118 | if (!backref_in_log(log_root, &search_key, |
| 1119 | parent_objectid, victim_name, |
| 1120 | victim_name_len)) { |
| 1121 | ret = -ENOENT; |
| 1122 | victim_parent = read_one_inode(root, |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1123 | parent_objectid); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1124 | if (victim_parent) { |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1125 | inc_nlink(&inode->vfs_inode); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1126 | btrfs_release_path(path); |
| 1127 | |
| 1128 | ret = btrfs_unlink_inode(trans, root, |
Nikolay Borisov | 4ec5934 | 2017-01-18 00:31:44 +0200 | [diff] [blame] | 1129 | BTRFS_I(victim_parent), |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1130 | inode, |
Nikolay Borisov | 4ec5934 | 2017-01-18 00:31:44 +0200 | [diff] [blame] | 1131 | victim_name, |
| 1132 | victim_name_len); |
Filipe David Borba Manana | ada9af2 | 2013-08-05 09:25:47 +0100 | [diff] [blame] | 1133 | if (!ret) |
| 1134 | ret = btrfs_run_delayed_items( |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 1135 | trans, |
| 1136 | fs_info); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1137 | } |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1138 | iput(victim_parent); |
| 1139 | kfree(victim_name); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1140 | if (ret) |
| 1141 | return ret; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1142 | *search_done = 1; |
| 1143 | goto again; |
| 1144 | } |
| 1145 | kfree(victim_name); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1146 | if (ret) |
| 1147 | return ret; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1148 | next: |
| 1149 | cur_offset += victim_name_len + sizeof(*extref); |
| 1150 | } |
| 1151 | *search_done = 1; |
| 1152 | } |
| 1153 | btrfs_release_path(path); |
| 1154 | |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1155 | /* look for a conflicting sequence number */ |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1156 | di = btrfs_lookup_dir_index_item(trans, root, path, btrfs_ino(dir), |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1157 | ref_index, name, namelen, 0); |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1158 | if (di && !IS_ERR(di)) { |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1159 | ret = drop_one_dir_item(trans, root, path, dir, di); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1160 | if (ret) |
| 1161 | return ret; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1162 | } |
| 1163 | btrfs_release_path(path); |
| 1164 | |
| 1165 | /* look for a conflicing name */ |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1166 | di = btrfs_lookup_dir_item(trans, root, path, btrfs_ino(dir), |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1167 | name, namelen, 0); |
| 1168 | if (di && !IS_ERR(di)) { |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1169 | ret = drop_one_dir_item(trans, root, path, dir, di); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1170 | if (ret) |
| 1171 | return ret; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1172 | } |
| 1173 | btrfs_release_path(path); |
| 1174 | |
| 1175 | return 0; |
| 1176 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1177 | |
Su Yue | 26a836c | 2017-06-06 17:57:02 +0800 | [diff] [blame] | 1178 | static int extref_get_fields(struct extent_buffer *eb, int slot, |
| 1179 | unsigned long ref_ptr, u32 *namelen, char **name, |
| 1180 | u64 *index, u64 *parent_objectid) |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1181 | { |
| 1182 | struct btrfs_inode_extref *extref; |
| 1183 | |
| 1184 | extref = (struct btrfs_inode_extref *)ref_ptr; |
| 1185 | |
| 1186 | *namelen = btrfs_inode_extref_name_len(eb, extref); |
Su Yue | 26a836c | 2017-06-06 17:57:02 +0800 | [diff] [blame] | 1187 | if (!btrfs_is_name_len_valid(eb, slot, (unsigned long)&extref->name, |
| 1188 | *namelen)) |
| 1189 | return -EIO; |
| 1190 | |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1191 | *name = kmalloc(*namelen, GFP_NOFS); |
| 1192 | if (*name == NULL) |
| 1193 | return -ENOMEM; |
| 1194 | |
| 1195 | read_extent_buffer(eb, *name, (unsigned long)&extref->name, |
| 1196 | *namelen); |
| 1197 | |
| 1198 | *index = btrfs_inode_extref_index(eb, extref); |
| 1199 | if (parent_objectid) |
| 1200 | *parent_objectid = btrfs_inode_extref_parent(eb, extref); |
| 1201 | |
| 1202 | return 0; |
| 1203 | } |
| 1204 | |
Su Yue | 26a836c | 2017-06-06 17:57:02 +0800 | [diff] [blame] | 1205 | static int ref_get_fields(struct extent_buffer *eb, int slot, |
| 1206 | unsigned long ref_ptr, u32 *namelen, char **name, |
| 1207 | u64 *index) |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1208 | { |
| 1209 | struct btrfs_inode_ref *ref; |
| 1210 | |
| 1211 | ref = (struct btrfs_inode_ref *)ref_ptr; |
| 1212 | |
| 1213 | *namelen = btrfs_inode_ref_name_len(eb, ref); |
Su Yue | 26a836c | 2017-06-06 17:57:02 +0800 | [diff] [blame] | 1214 | if (!btrfs_is_name_len_valid(eb, slot, (unsigned long)(ref + 1), |
| 1215 | *namelen)) |
| 1216 | return -EIO; |
| 1217 | |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1218 | *name = kmalloc(*namelen, GFP_NOFS); |
| 1219 | if (*name == NULL) |
| 1220 | return -ENOMEM; |
| 1221 | |
| 1222 | read_extent_buffer(eb, *name, (unsigned long)(ref + 1), *namelen); |
| 1223 | |
| 1224 | *index = btrfs_inode_ref_index(eb, ref); |
| 1225 | |
| 1226 | return 0; |
| 1227 | } |
| 1228 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1229 | /* |
| 1230 | * replay one inode back reference item found in the log tree. |
| 1231 | * eb, slot and key refer to the buffer and key found in the log tree. |
| 1232 | * root is the destination we are replaying into, and path is for temp |
| 1233 | * use by this function. (it should be released on return). |
| 1234 | */ |
| 1235 | static noinline int add_inode_ref(struct btrfs_trans_handle *trans, |
| 1236 | struct btrfs_root *root, |
| 1237 | struct btrfs_root *log, |
| 1238 | struct btrfs_path *path, |
| 1239 | struct extent_buffer *eb, int slot, |
| 1240 | struct btrfs_key *key) |
| 1241 | { |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1242 | struct inode *dir = NULL; |
| 1243 | struct inode *inode = NULL; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1244 | unsigned long ref_ptr; |
| 1245 | unsigned long ref_end; |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1246 | char *name = NULL; |
liubo | 34f3e4f | 2011-08-06 08:35:23 +0000 | [diff] [blame] | 1247 | int namelen; |
| 1248 | int ret; |
liubo | c622ae6 | 2011-03-26 08:01:12 -0400 | [diff] [blame] | 1249 | int search_done = 0; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1250 | int log_ref_ver = 0; |
| 1251 | u64 parent_objectid; |
| 1252 | u64 inode_objectid; |
Chris Mason | f46dbe3 | 2012-10-09 11:17:20 -0400 | [diff] [blame] | 1253 | u64 ref_index = 0; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1254 | int ref_struct_size; |
| 1255 | |
| 1256 | ref_ptr = btrfs_item_ptr_offset(eb, slot); |
| 1257 | ref_end = ref_ptr + btrfs_item_size_nr(eb, slot); |
| 1258 | |
| 1259 | if (key->type == BTRFS_INODE_EXTREF_KEY) { |
| 1260 | struct btrfs_inode_extref *r; |
| 1261 | |
| 1262 | ref_struct_size = sizeof(struct btrfs_inode_extref); |
| 1263 | log_ref_ver = 1; |
| 1264 | r = (struct btrfs_inode_extref *)ref_ptr; |
| 1265 | parent_objectid = btrfs_inode_extref_parent(eb, r); |
| 1266 | } else { |
| 1267 | ref_struct_size = sizeof(struct btrfs_inode_ref); |
| 1268 | parent_objectid = key->offset; |
| 1269 | } |
| 1270 | inode_objectid = key->objectid; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1271 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1272 | /* |
| 1273 | * it is possible that we didn't log all the parent directories |
| 1274 | * for a given inode. If we don't find the dir, just don't |
| 1275 | * copy the back ref in. The link count fixup code will take |
| 1276 | * care of the rest |
| 1277 | */ |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1278 | dir = read_one_inode(root, parent_objectid); |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1279 | if (!dir) { |
| 1280 | ret = -ENOENT; |
| 1281 | goto out; |
| 1282 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1283 | |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1284 | inode = read_one_inode(root, inode_objectid); |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 1285 | if (!inode) { |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1286 | ret = -EIO; |
| 1287 | goto out; |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 1288 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1289 | |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1290 | while (ref_ptr < ref_end) { |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1291 | if (log_ref_ver) { |
Su Yue | 26a836c | 2017-06-06 17:57:02 +0800 | [diff] [blame] | 1292 | ret = extref_get_fields(eb, slot, ref_ptr, &namelen, |
| 1293 | &name, &ref_index, &parent_objectid); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1294 | /* |
| 1295 | * parent object can change from one array |
| 1296 | * item to another. |
| 1297 | */ |
| 1298 | if (!dir) |
| 1299 | dir = read_one_inode(root, parent_objectid); |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1300 | if (!dir) { |
| 1301 | ret = -ENOENT; |
| 1302 | goto out; |
| 1303 | } |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1304 | } else { |
Su Yue | 26a836c | 2017-06-06 17:57:02 +0800 | [diff] [blame] | 1305 | ret = ref_get_fields(eb, slot, ref_ptr, &namelen, |
| 1306 | &name, &ref_index); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1307 | } |
| 1308 | if (ret) |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1309 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1310 | |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1311 | /* if we already have a perfect match, we're done */ |
David Sterba | f85b737 | 2017-01-20 14:54:07 +0100 | [diff] [blame] | 1312 | if (!inode_in_dir(root, path, btrfs_ino(BTRFS_I(dir)), |
| 1313 | btrfs_ino(BTRFS_I(inode)), ref_index, |
| 1314 | name, namelen)) { |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1315 | /* |
| 1316 | * look for a conflicting back reference in the |
| 1317 | * metadata. if we find one we have to unlink that name |
| 1318 | * of the file before we add our new link. Later on, we |
| 1319 | * overwrite any existing back reference, and we don't |
| 1320 | * want to create dangling pointers in the directory. |
| 1321 | */ |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1322 | |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1323 | if (!search_done) { |
| 1324 | ret = __add_inode_ref(trans, root, path, log, |
Nikolay Borisov | 94c91a1 | 2017-01-18 00:31:46 +0200 | [diff] [blame] | 1325 | BTRFS_I(dir), |
David Sterba | d75eefd | 2017-02-10 20:20:19 +0100 | [diff] [blame] | 1326 | BTRFS_I(inode), |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1327 | inode_objectid, |
| 1328 | parent_objectid, |
| 1329 | ref_index, name, namelen, |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1330 | &search_done); |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1331 | if (ret) { |
| 1332 | if (ret == 1) |
| 1333 | ret = 0; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1334 | goto out; |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1335 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1336 | } |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1337 | |
| 1338 | /* insert our name */ |
Nikolay Borisov | db0a669 | 2017-02-20 13:51:08 +0200 | [diff] [blame] | 1339 | ret = btrfs_add_link(trans, BTRFS_I(dir), |
| 1340 | BTRFS_I(inode), |
| 1341 | name, namelen, 0, ref_index); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1342 | if (ret) |
| 1343 | goto out; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1344 | |
| 1345 | btrfs_update_inode(trans, root, inode); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1346 | } |
liubo | c622ae6 | 2011-03-26 08:01:12 -0400 | [diff] [blame] | 1347 | |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1348 | ref_ptr = (unsigned long)(ref_ptr + ref_struct_size) + namelen; |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1349 | kfree(name); |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1350 | name = NULL; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1351 | if (log_ref_ver) { |
| 1352 | iput(dir); |
| 1353 | dir = NULL; |
| 1354 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1355 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1356 | |
| 1357 | /* finally write the back reference in the inode */ |
| 1358 | ret = overwrite_item(trans, root, path, eb, slot, key); |
Jan Schmidt | 5a1d784 | 2012-08-17 14:04:41 -0700 | [diff] [blame] | 1359 | out: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1360 | btrfs_release_path(path); |
Geyslan G. Bem | 03b2f08 | 2013-10-11 15:35:45 -0300 | [diff] [blame] | 1361 | kfree(name); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1362 | iput(dir); |
| 1363 | iput(inode); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1364 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1365 | } |
| 1366 | |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 1367 | static int insert_orphan_item(struct btrfs_trans_handle *trans, |
David Sterba | 9c4f61f | 2015-01-02 19:12:57 +0100 | [diff] [blame] | 1368 | struct btrfs_root *root, u64 ino) |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 1369 | { |
| 1370 | int ret; |
David Sterba | 381cf65 | 2015-01-02 18:45:16 +0100 | [diff] [blame] | 1371 | |
David Sterba | 9c4f61f | 2015-01-02 19:12:57 +0100 | [diff] [blame] | 1372 | ret = btrfs_insert_orphan_item(trans, root, ino); |
| 1373 | if (ret == -EEXIST) |
| 1374 | ret = 0; |
David Sterba | 381cf65 | 2015-01-02 18:45:16 +0100 | [diff] [blame] | 1375 | |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 1376 | return ret; |
| 1377 | } |
| 1378 | |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1379 | static int count_inode_extrefs(struct btrfs_root *root, |
Nikolay Borisov | 3628365 | 2017-01-18 00:31:49 +0200 | [diff] [blame] | 1380 | struct btrfs_inode *inode, struct btrfs_path *path) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1381 | { |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1382 | int ret = 0; |
| 1383 | int name_len; |
| 1384 | unsigned int nlink = 0; |
| 1385 | u32 item_size; |
| 1386 | u32 cur_offset = 0; |
Nikolay Borisov | 3628365 | 2017-01-18 00:31:49 +0200 | [diff] [blame] | 1387 | u64 inode_objectid = btrfs_ino(inode); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1388 | u64 offset = 0; |
| 1389 | unsigned long ptr; |
| 1390 | struct btrfs_inode_extref *extref; |
| 1391 | struct extent_buffer *leaf; |
| 1392 | |
| 1393 | while (1) { |
| 1394 | ret = btrfs_find_one_extref(root, inode_objectid, offset, path, |
| 1395 | &extref, &offset); |
| 1396 | if (ret) |
| 1397 | break; |
| 1398 | |
| 1399 | leaf = path->nodes[0]; |
| 1400 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1401 | ptr = btrfs_item_ptr_offset(leaf, path->slots[0]); |
Filipe Manana | 2c2c452 | 2015-01-13 16:40:04 +0000 | [diff] [blame] | 1402 | cur_offset = 0; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1403 | |
| 1404 | while (cur_offset < item_size) { |
| 1405 | extref = (struct btrfs_inode_extref *) (ptr + cur_offset); |
| 1406 | name_len = btrfs_inode_extref_name_len(leaf, extref); |
| 1407 | |
| 1408 | nlink++; |
| 1409 | |
| 1410 | cur_offset += name_len + sizeof(*extref); |
| 1411 | } |
| 1412 | |
| 1413 | offset++; |
| 1414 | btrfs_release_path(path); |
| 1415 | } |
| 1416 | btrfs_release_path(path); |
| 1417 | |
Filipe Manana | 2c2c452 | 2015-01-13 16:40:04 +0000 | [diff] [blame] | 1418 | if (ret < 0 && ret != -ENOENT) |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1419 | return ret; |
| 1420 | return nlink; |
| 1421 | } |
| 1422 | |
| 1423 | static int count_inode_refs(struct btrfs_root *root, |
Nikolay Borisov | f329e31 | 2017-01-18 00:31:50 +0200 | [diff] [blame] | 1424 | struct btrfs_inode *inode, struct btrfs_path *path) |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1425 | { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1426 | int ret; |
| 1427 | struct btrfs_key key; |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1428 | unsigned int nlink = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1429 | unsigned long ptr; |
| 1430 | unsigned long ptr_end; |
| 1431 | int name_len; |
Nikolay Borisov | f329e31 | 2017-01-18 00:31:50 +0200 | [diff] [blame] | 1432 | u64 ino = btrfs_ino(inode); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1433 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1434 | key.objectid = ino; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1435 | key.type = BTRFS_INODE_REF_KEY; |
| 1436 | key.offset = (u64)-1; |
| 1437 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1438 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1439 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 1440 | if (ret < 0) |
| 1441 | break; |
| 1442 | if (ret > 0) { |
| 1443 | if (path->slots[0] == 0) |
| 1444 | break; |
| 1445 | path->slots[0]--; |
| 1446 | } |
Filipe David Borba Manana | e93ae26 | 2013-10-14 22:49:11 +0100 | [diff] [blame] | 1447 | process_slot: |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1448 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 1449 | path->slots[0]); |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1450 | if (key.objectid != ino || |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1451 | key.type != BTRFS_INODE_REF_KEY) |
| 1452 | break; |
| 1453 | ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]); |
| 1454 | ptr_end = ptr + btrfs_item_size_nr(path->nodes[0], |
| 1455 | path->slots[0]); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1456 | while (ptr < ptr_end) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1457 | struct btrfs_inode_ref *ref; |
| 1458 | |
| 1459 | ref = (struct btrfs_inode_ref *)ptr; |
| 1460 | name_len = btrfs_inode_ref_name_len(path->nodes[0], |
| 1461 | ref); |
| 1462 | ptr = (unsigned long)(ref + 1) + name_len; |
| 1463 | nlink++; |
| 1464 | } |
| 1465 | |
| 1466 | if (key.offset == 0) |
| 1467 | break; |
Filipe David Borba Manana | e93ae26 | 2013-10-14 22:49:11 +0100 | [diff] [blame] | 1468 | if (path->slots[0] > 0) { |
| 1469 | path->slots[0]--; |
| 1470 | goto process_slot; |
| 1471 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1472 | key.offset--; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1473 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1474 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1475 | btrfs_release_path(path); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1476 | |
| 1477 | return nlink; |
| 1478 | } |
| 1479 | |
| 1480 | /* |
| 1481 | * There are a few corners where the link count of the file can't |
| 1482 | * be properly maintained during replay. So, instead of adding |
| 1483 | * lots of complexity to the log code, we just scan the backrefs |
| 1484 | * for any file that has been through replay. |
| 1485 | * |
| 1486 | * The scan will update the link count on the inode to reflect the |
| 1487 | * number of back refs found. If it goes down to zero, the iput |
| 1488 | * will free the inode. |
| 1489 | */ |
| 1490 | static noinline int fixup_inode_link_count(struct btrfs_trans_handle *trans, |
| 1491 | struct btrfs_root *root, |
| 1492 | struct inode *inode) |
| 1493 | { |
| 1494 | struct btrfs_path *path; |
| 1495 | int ret; |
| 1496 | u64 nlink = 0; |
Nikolay Borisov | 4a0cc7c | 2017-01-10 20:35:31 +0200 | [diff] [blame] | 1497 | u64 ino = btrfs_ino(BTRFS_I(inode)); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1498 | |
| 1499 | path = btrfs_alloc_path(); |
| 1500 | if (!path) |
| 1501 | return -ENOMEM; |
| 1502 | |
Nikolay Borisov | f329e31 | 2017-01-18 00:31:50 +0200 | [diff] [blame] | 1503 | ret = count_inode_refs(root, BTRFS_I(inode), path); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1504 | if (ret < 0) |
| 1505 | goto out; |
| 1506 | |
| 1507 | nlink = ret; |
| 1508 | |
Nikolay Borisov | 3628365 | 2017-01-18 00:31:49 +0200 | [diff] [blame] | 1509 | ret = count_inode_extrefs(root, BTRFS_I(inode), path); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1510 | if (ret < 0) |
| 1511 | goto out; |
| 1512 | |
| 1513 | nlink += ret; |
| 1514 | |
| 1515 | ret = 0; |
| 1516 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1517 | if (nlink != inode->i_nlink) { |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 1518 | set_nlink(inode, nlink); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1519 | btrfs_update_inode(trans, root, inode); |
| 1520 | } |
Chris Mason | 8d5bf1c | 2008-09-11 15:51:21 -0400 | [diff] [blame] | 1521 | BTRFS_I(inode)->index_cnt = (u64)-1; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1522 | |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 1523 | if (inode->i_nlink == 0) { |
| 1524 | if (S_ISDIR(inode->i_mode)) { |
| 1525 | ret = replay_dir_deletes(trans, root, NULL, path, |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1526 | ino, 1); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1527 | if (ret) |
| 1528 | goto out; |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 1529 | } |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1530 | ret = insert_orphan_item(trans, root, ino); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 1531 | } |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 1532 | |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 1533 | out: |
| 1534 | btrfs_free_path(path); |
| 1535 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1536 | } |
| 1537 | |
| 1538 | static noinline int fixup_inode_link_counts(struct btrfs_trans_handle *trans, |
| 1539 | struct btrfs_root *root, |
| 1540 | struct btrfs_path *path) |
| 1541 | { |
| 1542 | int ret; |
| 1543 | struct btrfs_key key; |
| 1544 | struct inode *inode; |
| 1545 | |
| 1546 | key.objectid = BTRFS_TREE_LOG_FIXUP_OBJECTID; |
| 1547 | key.type = BTRFS_ORPHAN_ITEM_KEY; |
| 1548 | key.offset = (u64)-1; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1549 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1550 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1551 | if (ret < 0) |
| 1552 | break; |
| 1553 | |
| 1554 | if (ret == 1) { |
| 1555 | if (path->slots[0] == 0) |
| 1556 | break; |
| 1557 | path->slots[0]--; |
| 1558 | } |
| 1559 | |
| 1560 | btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]); |
| 1561 | if (key.objectid != BTRFS_TREE_LOG_FIXUP_OBJECTID || |
| 1562 | key.type != BTRFS_ORPHAN_ITEM_KEY) |
| 1563 | break; |
| 1564 | |
| 1565 | ret = btrfs_del_item(trans, root, path); |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 1566 | if (ret) |
| 1567 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1568 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1569 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1570 | inode = read_one_inode(root, key.offset); |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 1571 | if (!inode) |
| 1572 | return -EIO; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1573 | |
| 1574 | ret = fixup_inode_link_count(trans, root, inode); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1575 | iput(inode); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1576 | if (ret) |
| 1577 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1578 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 1579 | /* |
| 1580 | * fixup on a directory may create new entries, |
| 1581 | * make sure we always look for the highset possible |
| 1582 | * offset |
| 1583 | */ |
| 1584 | key.offset = (u64)-1; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1585 | } |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 1586 | ret = 0; |
| 1587 | out: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1588 | btrfs_release_path(path); |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 1589 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1590 | } |
| 1591 | |
| 1592 | |
| 1593 | /* |
| 1594 | * record a given inode in the fixup dir so we can check its link |
| 1595 | * count when replay is done. The link count is incremented here |
| 1596 | * so the inode won't go away until we check it |
| 1597 | */ |
| 1598 | static noinline int link_to_fixup_dir(struct btrfs_trans_handle *trans, |
| 1599 | struct btrfs_root *root, |
| 1600 | struct btrfs_path *path, |
| 1601 | u64 objectid) |
| 1602 | { |
| 1603 | struct btrfs_key key; |
| 1604 | int ret = 0; |
| 1605 | struct inode *inode; |
| 1606 | |
| 1607 | inode = read_one_inode(root, objectid); |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 1608 | if (!inode) |
| 1609 | return -EIO; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1610 | |
| 1611 | key.objectid = BTRFS_TREE_LOG_FIXUP_OBJECTID; |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 1612 | key.type = BTRFS_ORPHAN_ITEM_KEY; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1613 | key.offset = objectid; |
| 1614 | |
| 1615 | ret = btrfs_insert_empty_item(trans, root, path, &key, 0); |
| 1616 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1617 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1618 | if (ret == 0) { |
Josef Bacik | 9bf7a48 | 2013-03-01 13:35:47 -0500 | [diff] [blame] | 1619 | if (!inode->i_nlink) |
| 1620 | set_nlink(inode, 1); |
| 1621 | else |
Zach Brown | 8b558c5 | 2013-10-16 12:10:34 -0700 | [diff] [blame] | 1622 | inc_nlink(inode); |
Tsutomu Itoh | b995929 | 2012-06-25 21:25:22 -0600 | [diff] [blame] | 1623 | ret = btrfs_update_inode(trans, root, inode); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1624 | } else if (ret == -EEXIST) { |
| 1625 | ret = 0; |
| 1626 | } else { |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1627 | BUG(); /* Logic Error */ |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1628 | } |
| 1629 | iput(inode); |
| 1630 | |
| 1631 | return ret; |
| 1632 | } |
| 1633 | |
| 1634 | /* |
| 1635 | * when replaying the log for a directory, we only insert names |
| 1636 | * for inodes that actually exist. This means an fsync on a directory |
| 1637 | * does not implicitly fsync all the new files in it |
| 1638 | */ |
| 1639 | static noinline int insert_one_name(struct btrfs_trans_handle *trans, |
| 1640 | struct btrfs_root *root, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1641 | u64 dirid, u64 index, |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 1642 | char *name, int name_len, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1643 | struct btrfs_key *location) |
| 1644 | { |
| 1645 | struct inode *inode; |
| 1646 | struct inode *dir; |
| 1647 | int ret; |
| 1648 | |
| 1649 | inode = read_one_inode(root, location->objectid); |
| 1650 | if (!inode) |
| 1651 | return -ENOENT; |
| 1652 | |
| 1653 | dir = read_one_inode(root, dirid); |
| 1654 | if (!dir) { |
| 1655 | iput(inode); |
| 1656 | return -EIO; |
| 1657 | } |
Josef Bacik | d555438 | 2013-09-11 14:17:00 -0400 | [diff] [blame] | 1658 | |
Nikolay Borisov | db0a669 | 2017-02-20 13:51:08 +0200 | [diff] [blame] | 1659 | ret = btrfs_add_link(trans, BTRFS_I(dir), BTRFS_I(inode), name, |
| 1660 | name_len, 1, index); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1661 | |
| 1662 | /* FIXME, put inode into FIXUP list */ |
| 1663 | |
| 1664 | iput(inode); |
| 1665 | iput(dir); |
| 1666 | return ret; |
| 1667 | } |
| 1668 | |
| 1669 | /* |
Filipe Manana | df8d116 | 2015-01-14 01:52:25 +0000 | [diff] [blame] | 1670 | * Return true if an inode reference exists in the log for the given name, |
| 1671 | * inode and parent inode. |
| 1672 | */ |
| 1673 | static bool name_in_log_ref(struct btrfs_root *log_root, |
| 1674 | const char *name, const int name_len, |
| 1675 | const u64 dirid, const u64 ino) |
| 1676 | { |
| 1677 | struct btrfs_key search_key; |
| 1678 | |
| 1679 | search_key.objectid = ino; |
| 1680 | search_key.type = BTRFS_INODE_REF_KEY; |
| 1681 | search_key.offset = dirid; |
| 1682 | if (backref_in_log(log_root, &search_key, dirid, name, name_len)) |
| 1683 | return true; |
| 1684 | |
| 1685 | search_key.type = BTRFS_INODE_EXTREF_KEY; |
| 1686 | search_key.offset = btrfs_extref_hash(dirid, name, name_len); |
| 1687 | if (backref_in_log(log_root, &search_key, dirid, name, name_len)) |
| 1688 | return true; |
| 1689 | |
| 1690 | return false; |
| 1691 | } |
| 1692 | |
| 1693 | /* |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1694 | * take a single entry in a log directory item and replay it into |
| 1695 | * the subvolume. |
| 1696 | * |
| 1697 | * if a conflicting item exists in the subdirectory already, |
| 1698 | * the inode it points to is unlinked and put into the link count |
| 1699 | * fix up tree. |
| 1700 | * |
| 1701 | * If a name from the log points to a file or directory that does |
| 1702 | * not exist in the FS, it is skipped. fsyncs on directories |
| 1703 | * do not force down inodes inside that directory, just changes to the |
| 1704 | * names or unlinks in a directory. |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 1705 | * |
| 1706 | * Returns < 0 on error, 0 if the name wasn't replayed (dentry points to a |
| 1707 | * non-existing inode) and 1 if the name was replayed. |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1708 | */ |
| 1709 | static noinline int replay_one_name(struct btrfs_trans_handle *trans, |
| 1710 | struct btrfs_root *root, |
| 1711 | struct btrfs_path *path, |
| 1712 | struct extent_buffer *eb, |
| 1713 | struct btrfs_dir_item *di, |
| 1714 | struct btrfs_key *key) |
| 1715 | { |
| 1716 | char *name; |
| 1717 | int name_len; |
| 1718 | struct btrfs_dir_item *dst_di; |
| 1719 | struct btrfs_key found_key; |
| 1720 | struct btrfs_key log_key; |
| 1721 | struct inode *dir; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1722 | u8 log_type; |
Chris Mason | 4bef084 | 2008-09-08 11:18:08 -0400 | [diff] [blame] | 1723 | int exists; |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1724 | int ret = 0; |
Josef Bacik | d555438 | 2013-09-11 14:17:00 -0400 | [diff] [blame] | 1725 | bool update_size = (key->type == BTRFS_DIR_INDEX_KEY); |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 1726 | bool name_added = false; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1727 | |
| 1728 | dir = read_one_inode(root, key->objectid); |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 1729 | if (!dir) |
| 1730 | return -EIO; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1731 | |
| 1732 | name_len = btrfs_dir_name_len(eb, di); |
| 1733 | name = kmalloc(name_len, GFP_NOFS); |
Filipe David Borba Manana | 2bac325 | 2013-08-04 19:58:57 +0100 | [diff] [blame] | 1734 | if (!name) { |
| 1735 | ret = -ENOMEM; |
| 1736 | goto out; |
| 1737 | } |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 1738 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1739 | log_type = btrfs_dir_type(eb, di); |
| 1740 | read_extent_buffer(eb, name, (unsigned long)(di + 1), |
| 1741 | name_len); |
| 1742 | |
| 1743 | btrfs_dir_item_key_to_cpu(eb, di, &log_key); |
Chris Mason | 4bef084 | 2008-09-08 11:18:08 -0400 | [diff] [blame] | 1744 | exists = btrfs_lookup_inode(trans, root, path, &log_key, 0); |
| 1745 | if (exists == 0) |
| 1746 | exists = 1; |
| 1747 | else |
| 1748 | exists = 0; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1749 | btrfs_release_path(path); |
Chris Mason | 4bef084 | 2008-09-08 11:18:08 -0400 | [diff] [blame] | 1750 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1751 | if (key->type == BTRFS_DIR_ITEM_KEY) { |
| 1752 | dst_di = btrfs_lookup_dir_item(trans, root, path, key->objectid, |
| 1753 | name, name_len, 1); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1754 | } else if (key->type == BTRFS_DIR_INDEX_KEY) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1755 | dst_di = btrfs_lookup_dir_index_item(trans, root, path, |
| 1756 | key->objectid, |
| 1757 | key->offset, name, |
| 1758 | name_len, 1); |
| 1759 | } else { |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1760 | /* Corruption */ |
| 1761 | ret = -EINVAL; |
| 1762 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1763 | } |
David Sterba | c704005 | 2011-04-19 18:00:01 +0200 | [diff] [blame] | 1764 | if (IS_ERR_OR_NULL(dst_di)) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1765 | /* we need a sequence number to insert, so we only |
| 1766 | * do inserts for the BTRFS_DIR_INDEX_KEY types |
| 1767 | */ |
| 1768 | if (key->type != BTRFS_DIR_INDEX_KEY) |
| 1769 | goto out; |
| 1770 | goto insert; |
| 1771 | } |
| 1772 | |
| 1773 | btrfs_dir_item_key_to_cpu(path->nodes[0], dst_di, &found_key); |
| 1774 | /* the existing item matches the logged item */ |
| 1775 | if (found_key.objectid == log_key.objectid && |
| 1776 | found_key.type == log_key.type && |
| 1777 | found_key.offset == log_key.offset && |
| 1778 | btrfs_dir_type(path->nodes[0], dst_di) == log_type) { |
Filipe Manana | a2cc11d | 2014-09-08 22:53:18 +0100 | [diff] [blame] | 1779 | update_size = false; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1780 | goto out; |
| 1781 | } |
| 1782 | |
| 1783 | /* |
| 1784 | * don't drop the conflicting directory entry if the inode |
| 1785 | * for the new entry doesn't exist |
| 1786 | */ |
Chris Mason | 4bef084 | 2008-09-08 11:18:08 -0400 | [diff] [blame] | 1787 | if (!exists) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1788 | goto out; |
| 1789 | |
Nikolay Borisov | 207e7d9 | 2017-01-18 00:31:45 +0200 | [diff] [blame] | 1790 | 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] | 1791 | if (ret) |
| 1792 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1793 | |
| 1794 | if (key->type == BTRFS_DIR_INDEX_KEY) |
| 1795 | goto insert; |
| 1796 | out: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1797 | btrfs_release_path(path); |
Josef Bacik | d555438 | 2013-09-11 14:17:00 -0400 | [diff] [blame] | 1798 | if (!ret && update_size) { |
Nikolay Borisov | 6ef06d2 | 2017-02-20 13:50:34 +0200 | [diff] [blame] | 1799 | 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] | 1800 | ret = btrfs_update_inode(trans, root, dir); |
| 1801 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1802 | kfree(name); |
| 1803 | iput(dir); |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 1804 | if (!ret && name_added) |
| 1805 | ret = 1; |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1806 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1807 | |
| 1808 | insert: |
Filipe Manana | df8d116 | 2015-01-14 01:52:25 +0000 | [diff] [blame] | 1809 | if (name_in_log_ref(root->log_root, name, name_len, |
| 1810 | key->objectid, log_key.objectid)) { |
| 1811 | /* The dentry will be added later. */ |
| 1812 | ret = 0; |
| 1813 | update_size = false; |
| 1814 | goto out; |
| 1815 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1816 | btrfs_release_path(path); |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 1817 | ret = insert_one_name(trans, root, key->objectid, key->offset, |
| 1818 | name, name_len, &log_key); |
Filipe Manana | df8d116 | 2015-01-14 01:52:25 +0000 | [diff] [blame] | 1819 | if (ret && ret != -ENOENT && ret != -EEXIST) |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1820 | goto out; |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 1821 | if (!ret) |
| 1822 | name_added = true; |
Josef Bacik | d555438 | 2013-09-11 14:17:00 -0400 | [diff] [blame] | 1823 | update_size = false; |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 1824 | ret = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1825 | goto out; |
| 1826 | } |
| 1827 | |
| 1828 | /* |
| 1829 | * find all the names in a directory item and reconcile them into |
| 1830 | * the subvolume. Only BTRFS_DIR_ITEM_KEY types will have more than |
| 1831 | * one name in a directory item, but the same code gets used for |
| 1832 | * both directory index types |
| 1833 | */ |
| 1834 | static noinline int replay_one_dir_item(struct btrfs_trans_handle *trans, |
| 1835 | struct btrfs_root *root, |
| 1836 | struct btrfs_path *path, |
| 1837 | struct extent_buffer *eb, int slot, |
| 1838 | struct btrfs_key *key) |
| 1839 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 1840 | struct btrfs_fs_info *fs_info = root->fs_info; |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 1841 | int ret = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1842 | u32 item_size = btrfs_item_size_nr(eb, slot); |
| 1843 | struct btrfs_dir_item *di; |
| 1844 | int name_len; |
| 1845 | unsigned long ptr; |
| 1846 | unsigned long ptr_end; |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 1847 | struct btrfs_path *fixup_path = NULL; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1848 | |
| 1849 | ptr = btrfs_item_ptr_offset(eb, slot); |
| 1850 | ptr_end = ptr + item_size; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1851 | while (ptr < ptr_end) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1852 | di = (struct btrfs_dir_item *)ptr; |
Su Yue | e79a332 | 2017-06-06 17:57:01 +0800 | [diff] [blame] | 1853 | if (verify_dir_item(fs_info, eb, slot, di)) |
Josef Bacik | 22a94d4 | 2011-03-16 16:47:17 -0400 | [diff] [blame] | 1854 | return -EIO; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1855 | name_len = btrfs_dir_name_len(eb, di); |
| 1856 | ret = replay_one_name(trans, root, path, eb, di, key); |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 1857 | if (ret < 0) |
| 1858 | break; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1859 | ptr = (unsigned long)(di + 1); |
| 1860 | ptr += name_len; |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 1861 | |
| 1862 | /* |
| 1863 | * If this entry refers to a non-directory (directories can not |
| 1864 | * have a link count > 1) and it was added in the transaction |
| 1865 | * that was not committed, make sure we fixup the link count of |
| 1866 | * the inode it the entry points to. Otherwise something like |
| 1867 | * the following would result in a directory pointing to an |
| 1868 | * inode with a wrong link that does not account for this dir |
| 1869 | * entry: |
| 1870 | * |
| 1871 | * mkdir testdir |
| 1872 | * touch testdir/foo |
| 1873 | * touch testdir/bar |
| 1874 | * sync |
| 1875 | * |
| 1876 | * ln testdir/bar testdir/bar_link |
| 1877 | * ln testdir/foo testdir/foo_link |
| 1878 | * xfs_io -c "fsync" testdir/bar |
| 1879 | * |
| 1880 | * <power failure> |
| 1881 | * |
| 1882 | * mount fs, log replay happens |
| 1883 | * |
| 1884 | * File foo would remain with a link count of 1 when it has two |
| 1885 | * entries pointing to it in the directory testdir. This would |
| 1886 | * make it impossible to ever delete the parent directory has |
| 1887 | * it would result in stale dentries that can never be deleted. |
| 1888 | */ |
| 1889 | if (ret == 1 && btrfs_dir_type(eb, di) != BTRFS_FT_DIR) { |
| 1890 | struct btrfs_key di_key; |
| 1891 | |
| 1892 | if (!fixup_path) { |
| 1893 | fixup_path = btrfs_alloc_path(); |
| 1894 | if (!fixup_path) { |
| 1895 | ret = -ENOMEM; |
| 1896 | break; |
| 1897 | } |
| 1898 | } |
| 1899 | |
| 1900 | btrfs_dir_item_key_to_cpu(eb, di, &di_key); |
| 1901 | ret = link_to_fixup_dir(trans, root, fixup_path, |
| 1902 | di_key.objectid); |
| 1903 | if (ret) |
| 1904 | break; |
| 1905 | } |
| 1906 | ret = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1907 | } |
Filipe Manana | bb53eda | 2015-07-15 23:26:43 +0100 | [diff] [blame] | 1908 | btrfs_free_path(fixup_path); |
| 1909 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1910 | } |
| 1911 | |
| 1912 | /* |
| 1913 | * directory replay has two parts. There are the standard directory |
| 1914 | * items in the log copied from the subvolume, and range items |
| 1915 | * created in the log while the subvolume was logged. |
| 1916 | * |
| 1917 | * The range items tell us which parts of the key space the log |
| 1918 | * is authoritative for. During replay, if a key in the subvolume |
| 1919 | * directory is in a logged range item, but not actually in the log |
| 1920 | * that means it was deleted from the directory before the fsync |
| 1921 | * and should be removed. |
| 1922 | */ |
| 1923 | static noinline int find_dir_range(struct btrfs_root *root, |
| 1924 | struct btrfs_path *path, |
| 1925 | u64 dirid, int key_type, |
| 1926 | u64 *start_ret, u64 *end_ret) |
| 1927 | { |
| 1928 | struct btrfs_key key; |
| 1929 | u64 found_end; |
| 1930 | struct btrfs_dir_log_item *item; |
| 1931 | int ret; |
| 1932 | int nritems; |
| 1933 | |
| 1934 | if (*start_ret == (u64)-1) |
| 1935 | return 1; |
| 1936 | |
| 1937 | key.objectid = dirid; |
| 1938 | key.type = key_type; |
| 1939 | key.offset = *start_ret; |
| 1940 | |
| 1941 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 1942 | if (ret < 0) |
| 1943 | goto out; |
| 1944 | if (ret > 0) { |
| 1945 | if (path->slots[0] == 0) |
| 1946 | goto out; |
| 1947 | path->slots[0]--; |
| 1948 | } |
| 1949 | if (ret != 0) |
| 1950 | btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]); |
| 1951 | |
| 1952 | if (key.type != key_type || key.objectid != dirid) { |
| 1953 | ret = 1; |
| 1954 | goto next; |
| 1955 | } |
| 1956 | item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 1957 | struct btrfs_dir_log_item); |
| 1958 | found_end = btrfs_dir_log_end(path->nodes[0], item); |
| 1959 | |
| 1960 | if (*start_ret >= key.offset && *start_ret <= found_end) { |
| 1961 | ret = 0; |
| 1962 | *start_ret = key.offset; |
| 1963 | *end_ret = found_end; |
| 1964 | goto out; |
| 1965 | } |
| 1966 | ret = 1; |
| 1967 | next: |
| 1968 | /* check the next slot in the tree to see if it is a valid item */ |
| 1969 | nritems = btrfs_header_nritems(path->nodes[0]); |
Robbie Ko | 2a7bf53 | 2016-10-07 17:30:47 +0800 | [diff] [blame] | 1970 | path->slots[0]++; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1971 | if (path->slots[0] >= nritems) { |
| 1972 | ret = btrfs_next_leaf(root, path); |
| 1973 | if (ret) |
| 1974 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1975 | } |
| 1976 | |
| 1977 | btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]); |
| 1978 | |
| 1979 | if (key.type != key_type || key.objectid != dirid) { |
| 1980 | ret = 1; |
| 1981 | goto out; |
| 1982 | } |
| 1983 | item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 1984 | struct btrfs_dir_log_item); |
| 1985 | found_end = btrfs_dir_log_end(path->nodes[0], item); |
| 1986 | *start_ret = key.offset; |
| 1987 | *end_ret = found_end; |
| 1988 | ret = 0; |
| 1989 | out: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1990 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1991 | return ret; |
| 1992 | } |
| 1993 | |
| 1994 | /* |
| 1995 | * this looks for a given directory item in the log. If the directory |
| 1996 | * item is not in the log, the item is removed and the inode it points |
| 1997 | * to is unlinked |
| 1998 | */ |
| 1999 | static noinline int check_item_in_log(struct btrfs_trans_handle *trans, |
| 2000 | struct btrfs_root *root, |
| 2001 | struct btrfs_root *log, |
| 2002 | struct btrfs_path *path, |
| 2003 | struct btrfs_path *log_path, |
| 2004 | struct inode *dir, |
| 2005 | struct btrfs_key *dir_key) |
| 2006 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2007 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2008 | int ret; |
| 2009 | struct extent_buffer *eb; |
| 2010 | int slot; |
| 2011 | u32 item_size; |
| 2012 | struct btrfs_dir_item *di; |
| 2013 | struct btrfs_dir_item *log_di; |
| 2014 | int name_len; |
| 2015 | unsigned long ptr; |
| 2016 | unsigned long ptr_end; |
| 2017 | char *name; |
| 2018 | struct inode *inode; |
| 2019 | struct btrfs_key location; |
| 2020 | |
| 2021 | again: |
| 2022 | eb = path->nodes[0]; |
| 2023 | slot = path->slots[0]; |
| 2024 | item_size = btrfs_item_size_nr(eb, slot); |
| 2025 | ptr = btrfs_item_ptr_offset(eb, slot); |
| 2026 | ptr_end = ptr + item_size; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2027 | while (ptr < ptr_end) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2028 | di = (struct btrfs_dir_item *)ptr; |
Su Yue | e79a332 | 2017-06-06 17:57:01 +0800 | [diff] [blame] | 2029 | if (verify_dir_item(fs_info, eb, slot, di)) { |
Josef Bacik | 22a94d4 | 2011-03-16 16:47:17 -0400 | [diff] [blame] | 2030 | ret = -EIO; |
| 2031 | goto out; |
| 2032 | } |
| 2033 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2034 | name_len = btrfs_dir_name_len(eb, di); |
| 2035 | name = kmalloc(name_len, GFP_NOFS); |
| 2036 | if (!name) { |
| 2037 | ret = -ENOMEM; |
| 2038 | goto out; |
| 2039 | } |
| 2040 | read_extent_buffer(eb, name, (unsigned long)(di + 1), |
| 2041 | name_len); |
| 2042 | log_di = NULL; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2043 | if (log && dir_key->type == BTRFS_DIR_ITEM_KEY) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2044 | log_di = btrfs_lookup_dir_item(trans, log, log_path, |
| 2045 | dir_key->objectid, |
| 2046 | name, name_len, 0); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2047 | } else if (log && dir_key->type == BTRFS_DIR_INDEX_KEY) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2048 | log_di = btrfs_lookup_dir_index_item(trans, log, |
| 2049 | log_path, |
| 2050 | dir_key->objectid, |
| 2051 | dir_key->offset, |
| 2052 | name, name_len, 0); |
| 2053 | } |
Filipe David Borba Manana | 269d040 | 2013-10-28 17:39:21 +0000 | [diff] [blame] | 2054 | if (!log_di || (IS_ERR(log_di) && PTR_ERR(log_di) == -ENOENT)) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2055 | btrfs_dir_item_key_to_cpu(eb, di, &location); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2056 | btrfs_release_path(path); |
| 2057 | btrfs_release_path(log_path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2058 | inode = read_one_inode(root, location.objectid); |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 2059 | if (!inode) { |
| 2060 | kfree(name); |
| 2061 | return -EIO; |
| 2062 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2063 | |
| 2064 | ret = link_to_fixup_dir(trans, root, |
| 2065 | path, location.objectid); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 2066 | if (ret) { |
| 2067 | kfree(name); |
| 2068 | iput(inode); |
| 2069 | goto out; |
| 2070 | } |
| 2071 | |
Zach Brown | 8b558c5 | 2013-10-16 12:10:34 -0700 | [diff] [blame] | 2072 | inc_nlink(inode); |
Nikolay Borisov | 4ec5934 | 2017-01-18 00:31:44 +0200 | [diff] [blame] | 2073 | ret = btrfs_unlink_inode(trans, root, BTRFS_I(dir), |
| 2074 | BTRFS_I(inode), name, name_len); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 2075 | if (!ret) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2076 | ret = btrfs_run_delayed_items(trans, fs_info); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2077 | kfree(name); |
| 2078 | iput(inode); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 2079 | if (ret) |
| 2080 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2081 | |
| 2082 | /* there might still be more names under this key |
| 2083 | * check and repeat if required |
| 2084 | */ |
| 2085 | ret = btrfs_search_slot(NULL, root, dir_key, path, |
| 2086 | 0, 0); |
| 2087 | if (ret == 0) |
| 2088 | goto again; |
| 2089 | ret = 0; |
| 2090 | goto out; |
Filipe David Borba Manana | 269d040 | 2013-10-28 17:39:21 +0000 | [diff] [blame] | 2091 | } else if (IS_ERR(log_di)) { |
| 2092 | kfree(name); |
| 2093 | return PTR_ERR(log_di); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2094 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2095 | btrfs_release_path(log_path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2096 | kfree(name); |
| 2097 | |
| 2098 | ptr = (unsigned long)(di + 1); |
| 2099 | ptr += name_len; |
| 2100 | } |
| 2101 | ret = 0; |
| 2102 | out: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2103 | btrfs_release_path(path); |
| 2104 | btrfs_release_path(log_path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2105 | return ret; |
| 2106 | } |
| 2107 | |
Filipe Manana | 4f764e5 | 2015-02-23 19:53:35 +0000 | [diff] [blame] | 2108 | static int replay_xattr_deletes(struct btrfs_trans_handle *trans, |
| 2109 | struct btrfs_root *root, |
| 2110 | struct btrfs_root *log, |
| 2111 | struct btrfs_path *path, |
| 2112 | const u64 ino) |
| 2113 | { |
Su Yue | 8ee8c2d | 2017-06-06 17:57:03 +0800 | [diff] [blame] | 2114 | struct btrfs_fs_info *fs_info = root->fs_info; |
Filipe Manana | 4f764e5 | 2015-02-23 19:53:35 +0000 | [diff] [blame] | 2115 | struct btrfs_key search_key; |
| 2116 | struct btrfs_path *log_path; |
| 2117 | int i; |
| 2118 | int nritems; |
| 2119 | int ret; |
| 2120 | |
| 2121 | log_path = btrfs_alloc_path(); |
| 2122 | if (!log_path) |
| 2123 | return -ENOMEM; |
| 2124 | |
| 2125 | search_key.objectid = ino; |
| 2126 | search_key.type = BTRFS_XATTR_ITEM_KEY; |
| 2127 | search_key.offset = 0; |
| 2128 | again: |
| 2129 | ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0); |
| 2130 | if (ret < 0) |
| 2131 | goto out; |
| 2132 | process_leaf: |
| 2133 | nritems = btrfs_header_nritems(path->nodes[0]); |
| 2134 | for (i = path->slots[0]; i < nritems; i++) { |
| 2135 | struct btrfs_key key; |
| 2136 | struct btrfs_dir_item *di; |
| 2137 | struct btrfs_dir_item *log_di; |
| 2138 | u32 total_size; |
| 2139 | u32 cur; |
| 2140 | |
| 2141 | btrfs_item_key_to_cpu(path->nodes[0], &key, i); |
| 2142 | if (key.objectid != ino || key.type != BTRFS_XATTR_ITEM_KEY) { |
| 2143 | ret = 0; |
| 2144 | goto out; |
| 2145 | } |
| 2146 | |
| 2147 | di = btrfs_item_ptr(path->nodes[0], i, struct btrfs_dir_item); |
| 2148 | total_size = btrfs_item_size_nr(path->nodes[0], i); |
| 2149 | cur = 0; |
| 2150 | while (cur < total_size) { |
| 2151 | u16 name_len = btrfs_dir_name_len(path->nodes[0], di); |
| 2152 | u16 data_len = btrfs_dir_data_len(path->nodes[0], di); |
| 2153 | u32 this_len = sizeof(*di) + name_len + data_len; |
| 2154 | char *name; |
| 2155 | |
Su Yue | 8ee8c2d | 2017-06-06 17:57:03 +0800 | [diff] [blame] | 2156 | ret = verify_dir_item(fs_info, path->nodes[0], |
| 2157 | path->slots[0], di); |
| 2158 | if (ret) { |
| 2159 | ret = -EIO; |
| 2160 | goto out; |
| 2161 | } |
Filipe Manana | 4f764e5 | 2015-02-23 19:53:35 +0000 | [diff] [blame] | 2162 | name = kmalloc(name_len, GFP_NOFS); |
| 2163 | if (!name) { |
| 2164 | ret = -ENOMEM; |
| 2165 | goto out; |
| 2166 | } |
| 2167 | read_extent_buffer(path->nodes[0], name, |
| 2168 | (unsigned long)(di + 1), name_len); |
| 2169 | |
| 2170 | log_di = btrfs_lookup_xattr(NULL, log, log_path, ino, |
| 2171 | name, name_len, 0); |
| 2172 | btrfs_release_path(log_path); |
| 2173 | if (!log_di) { |
| 2174 | /* Doesn't exist in log tree, so delete it. */ |
| 2175 | btrfs_release_path(path); |
| 2176 | di = btrfs_lookup_xattr(trans, root, path, ino, |
| 2177 | name, name_len, -1); |
| 2178 | kfree(name); |
| 2179 | if (IS_ERR(di)) { |
| 2180 | ret = PTR_ERR(di); |
| 2181 | goto out; |
| 2182 | } |
| 2183 | ASSERT(di); |
| 2184 | ret = btrfs_delete_one_dir_name(trans, root, |
| 2185 | path, di); |
| 2186 | if (ret) |
| 2187 | goto out; |
| 2188 | btrfs_release_path(path); |
| 2189 | search_key = key; |
| 2190 | goto again; |
| 2191 | } |
| 2192 | kfree(name); |
| 2193 | if (IS_ERR(log_di)) { |
| 2194 | ret = PTR_ERR(log_di); |
| 2195 | goto out; |
| 2196 | } |
| 2197 | cur += this_len; |
| 2198 | di = (struct btrfs_dir_item *)((char *)di + this_len); |
| 2199 | } |
| 2200 | } |
| 2201 | ret = btrfs_next_leaf(root, path); |
| 2202 | if (ret > 0) |
| 2203 | ret = 0; |
| 2204 | else if (ret == 0) |
| 2205 | goto process_leaf; |
| 2206 | out: |
| 2207 | btrfs_free_path(log_path); |
| 2208 | btrfs_release_path(path); |
| 2209 | return ret; |
| 2210 | } |
| 2211 | |
| 2212 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2213 | /* |
| 2214 | * deletion replay happens before we copy any new directory items |
| 2215 | * out of the log or out of backreferences from inodes. It |
| 2216 | * scans the log to find ranges of keys that log is authoritative for, |
| 2217 | * and then scans the directory to find items in those ranges that are |
| 2218 | * not present in the log. |
| 2219 | * |
| 2220 | * Anything we don't find in the log is unlinked and removed from the |
| 2221 | * directory. |
| 2222 | */ |
| 2223 | static noinline int replay_dir_deletes(struct btrfs_trans_handle *trans, |
| 2224 | struct btrfs_root *root, |
| 2225 | struct btrfs_root *log, |
| 2226 | struct btrfs_path *path, |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2227 | u64 dirid, int del_all) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2228 | { |
| 2229 | u64 range_start; |
| 2230 | u64 range_end; |
| 2231 | int key_type = BTRFS_DIR_LOG_ITEM_KEY; |
| 2232 | int ret = 0; |
| 2233 | struct btrfs_key dir_key; |
| 2234 | struct btrfs_key found_key; |
| 2235 | struct btrfs_path *log_path; |
| 2236 | struct inode *dir; |
| 2237 | |
| 2238 | dir_key.objectid = dirid; |
| 2239 | dir_key.type = BTRFS_DIR_ITEM_KEY; |
| 2240 | log_path = btrfs_alloc_path(); |
| 2241 | if (!log_path) |
| 2242 | return -ENOMEM; |
| 2243 | |
| 2244 | dir = read_one_inode(root, dirid); |
| 2245 | /* it isn't an error if the inode isn't there, that can happen |
| 2246 | * because we replay the deletes before we copy in the inode item |
| 2247 | * from the log |
| 2248 | */ |
| 2249 | if (!dir) { |
| 2250 | btrfs_free_path(log_path); |
| 2251 | return 0; |
| 2252 | } |
| 2253 | again: |
| 2254 | range_start = 0; |
| 2255 | range_end = 0; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2256 | while (1) { |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2257 | if (del_all) |
| 2258 | range_end = (u64)-1; |
| 2259 | else { |
| 2260 | ret = find_dir_range(log, path, dirid, key_type, |
| 2261 | &range_start, &range_end); |
| 2262 | if (ret != 0) |
| 2263 | break; |
| 2264 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2265 | |
| 2266 | dir_key.offset = range_start; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2267 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2268 | int nritems; |
| 2269 | ret = btrfs_search_slot(NULL, root, &dir_key, path, |
| 2270 | 0, 0); |
| 2271 | if (ret < 0) |
| 2272 | goto out; |
| 2273 | |
| 2274 | nritems = btrfs_header_nritems(path->nodes[0]); |
| 2275 | if (path->slots[0] >= nritems) { |
| 2276 | ret = btrfs_next_leaf(root, path); |
| 2277 | if (ret) |
| 2278 | break; |
| 2279 | } |
| 2280 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, |
| 2281 | path->slots[0]); |
| 2282 | if (found_key.objectid != dirid || |
| 2283 | found_key.type != dir_key.type) |
| 2284 | goto next_type; |
| 2285 | |
| 2286 | if (found_key.offset > range_end) |
| 2287 | break; |
| 2288 | |
| 2289 | ret = check_item_in_log(trans, root, log, path, |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2290 | log_path, dir, |
| 2291 | &found_key); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 2292 | if (ret) |
| 2293 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2294 | if (found_key.offset == (u64)-1) |
| 2295 | break; |
| 2296 | dir_key.offset = found_key.offset + 1; |
| 2297 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2298 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2299 | if (range_end == (u64)-1) |
| 2300 | break; |
| 2301 | range_start = range_end + 1; |
| 2302 | } |
| 2303 | |
| 2304 | next_type: |
| 2305 | ret = 0; |
| 2306 | if (key_type == BTRFS_DIR_LOG_ITEM_KEY) { |
| 2307 | key_type = BTRFS_DIR_LOG_INDEX_KEY; |
| 2308 | dir_key.type = BTRFS_DIR_INDEX_KEY; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2309 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2310 | goto again; |
| 2311 | } |
| 2312 | out: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2313 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2314 | btrfs_free_path(log_path); |
| 2315 | iput(dir); |
| 2316 | return ret; |
| 2317 | } |
| 2318 | |
| 2319 | /* |
| 2320 | * the process_func used to replay items from the log tree. This |
| 2321 | * gets called in two different stages. The first stage just looks |
| 2322 | * for inodes and makes sure they are all copied into the subvolume. |
| 2323 | * |
| 2324 | * The second stage copies all the other item types from the log into |
| 2325 | * the subvolume. The two stage approach is slower, but gets rid of |
| 2326 | * lots of complexity around inodes referencing other inodes that exist |
| 2327 | * only in the log (references come from either directory items or inode |
| 2328 | * back refs). |
| 2329 | */ |
| 2330 | static int replay_one_buffer(struct btrfs_root *log, struct extent_buffer *eb, |
| 2331 | struct walk_control *wc, u64 gen) |
| 2332 | { |
| 2333 | int nritems; |
| 2334 | struct btrfs_path *path; |
| 2335 | struct btrfs_root *root = wc->replay_dest; |
| 2336 | struct btrfs_key key; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2337 | int level; |
| 2338 | int i; |
| 2339 | int ret; |
| 2340 | |
Tsutomu Itoh | 018642a | 2012-05-29 18:10:13 +0900 | [diff] [blame] | 2341 | ret = btrfs_read_buffer(eb, gen); |
| 2342 | if (ret) |
| 2343 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2344 | |
| 2345 | level = btrfs_header_level(eb); |
| 2346 | |
| 2347 | if (level != 0) |
| 2348 | return 0; |
| 2349 | |
| 2350 | path = btrfs_alloc_path(); |
Mark Fasheh | 1e5063d | 2011-07-12 10:46:06 -0700 | [diff] [blame] | 2351 | if (!path) |
| 2352 | return -ENOMEM; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2353 | |
| 2354 | nritems = btrfs_header_nritems(eb); |
| 2355 | for (i = 0; i < nritems; i++) { |
| 2356 | btrfs_item_key_to_cpu(eb, &key, i); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2357 | |
| 2358 | /* inode keys are done during the first stage */ |
| 2359 | if (key.type == BTRFS_INODE_ITEM_KEY && |
| 2360 | wc->stage == LOG_WALK_REPLAY_INODES) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2361 | struct btrfs_inode_item *inode_item; |
| 2362 | u32 mode; |
| 2363 | |
| 2364 | inode_item = btrfs_item_ptr(eb, i, |
| 2365 | struct btrfs_inode_item); |
Filipe Manana | 4f764e5 | 2015-02-23 19:53:35 +0000 | [diff] [blame] | 2366 | ret = replay_xattr_deletes(wc->trans, root, log, |
| 2367 | path, key.objectid); |
| 2368 | if (ret) |
| 2369 | break; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2370 | mode = btrfs_inode_mode(eb, inode_item); |
| 2371 | if (S_ISDIR(mode)) { |
| 2372 | ret = replay_dir_deletes(wc->trans, |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2373 | root, log, path, key.objectid, 0); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2374 | if (ret) |
| 2375 | break; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2376 | } |
| 2377 | ret = overwrite_item(wc->trans, root, path, |
| 2378 | eb, i, &key); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2379 | if (ret) |
| 2380 | break; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2381 | |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 2382 | /* for regular files, make sure corresponding |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 2383 | * orphan item exist. extents past the new EOF |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 2384 | * will be truncated later by orphan cleanup. |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2385 | */ |
| 2386 | if (S_ISREG(mode)) { |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 2387 | ret = insert_orphan_item(wc->trans, root, |
| 2388 | key.objectid); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2389 | if (ret) |
| 2390 | break; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2391 | } |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 2392 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2393 | ret = link_to_fixup_dir(wc->trans, root, |
| 2394 | path, key.objectid); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2395 | if (ret) |
| 2396 | break; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2397 | } |
Josef Bacik | dd8e721 | 2013-09-11 11:57:23 -0400 | [diff] [blame] | 2398 | |
| 2399 | if (key.type == BTRFS_DIR_INDEX_KEY && |
| 2400 | wc->stage == LOG_WALK_REPLAY_DIR_INDEX) { |
| 2401 | ret = replay_one_dir_item(wc->trans, root, path, |
| 2402 | eb, i, &key); |
| 2403 | if (ret) |
| 2404 | break; |
| 2405 | } |
| 2406 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2407 | if (wc->stage < LOG_WALK_REPLAY_ALL) |
| 2408 | continue; |
| 2409 | |
| 2410 | /* these keys are simply copied */ |
| 2411 | if (key.type == BTRFS_XATTR_ITEM_KEY) { |
| 2412 | ret = overwrite_item(wc->trans, root, path, |
| 2413 | eb, i, &key); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2414 | if (ret) |
| 2415 | break; |
Liu Bo | 2da1c66 | 2013-05-26 13:50:29 +0000 | [diff] [blame] | 2416 | } else if (key.type == BTRFS_INODE_REF_KEY || |
| 2417 | key.type == BTRFS_INODE_EXTREF_KEY) { |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 2418 | ret = add_inode_ref(wc->trans, root, log, path, |
| 2419 | eb, i, &key); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2420 | if (ret && ret != -ENOENT) |
| 2421 | break; |
| 2422 | ret = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2423 | } else if (key.type == BTRFS_EXTENT_DATA_KEY) { |
| 2424 | ret = replay_one_extent(wc->trans, root, path, |
| 2425 | eb, i, &key); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2426 | if (ret) |
| 2427 | break; |
Josef Bacik | dd8e721 | 2013-09-11 11:57:23 -0400 | [diff] [blame] | 2428 | } else if (key.type == BTRFS_DIR_ITEM_KEY) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2429 | ret = replay_one_dir_item(wc->trans, root, path, |
| 2430 | eb, i, &key); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2431 | if (ret) |
| 2432 | break; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2433 | } |
| 2434 | } |
| 2435 | btrfs_free_path(path); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2436 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2437 | } |
| 2438 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2439 | static noinline int walk_down_log_tree(struct btrfs_trans_handle *trans, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2440 | struct btrfs_root *root, |
| 2441 | struct btrfs_path *path, int *level, |
| 2442 | struct walk_control *wc) |
| 2443 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2444 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2445 | u64 root_owner; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2446 | u64 bytenr; |
| 2447 | u64 ptr_gen; |
| 2448 | struct extent_buffer *next; |
| 2449 | struct extent_buffer *cur; |
| 2450 | struct extent_buffer *parent; |
| 2451 | u32 blocksize; |
| 2452 | int ret = 0; |
| 2453 | |
| 2454 | WARN_ON(*level < 0); |
| 2455 | WARN_ON(*level >= BTRFS_MAX_LEVEL); |
| 2456 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2457 | while (*level > 0) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2458 | WARN_ON(*level < 0); |
| 2459 | WARN_ON(*level >= BTRFS_MAX_LEVEL); |
| 2460 | cur = path->nodes[*level]; |
| 2461 | |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 2462 | WARN_ON(btrfs_header_level(cur) != *level); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2463 | |
| 2464 | if (path->slots[*level] >= |
| 2465 | btrfs_header_nritems(cur)) |
| 2466 | break; |
| 2467 | |
| 2468 | bytenr = btrfs_node_blockptr(cur, path->slots[*level]); |
| 2469 | ptr_gen = btrfs_node_ptr_generation(cur, path->slots[*level]); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2470 | blocksize = fs_info->nodesize; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2471 | |
| 2472 | parent = path->nodes[*level]; |
| 2473 | root_owner = btrfs_header_owner(parent); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2474 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2475 | next = btrfs_find_create_tree_block(fs_info, bytenr); |
Liu Bo | c871b0f | 2016-06-06 12:01:23 -0700 | [diff] [blame] | 2476 | if (IS_ERR(next)) |
| 2477 | return PTR_ERR(next); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2478 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2479 | if (*level == 1) { |
Mark Fasheh | 1e5063d | 2011-07-12 10:46:06 -0700 | [diff] [blame] | 2480 | ret = wc->process_func(root, next, wc, ptr_gen); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2481 | if (ret) { |
| 2482 | free_extent_buffer(next); |
Mark Fasheh | 1e5063d | 2011-07-12 10:46:06 -0700 | [diff] [blame] | 2483 | return ret; |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 2484 | } |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2485 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2486 | path->slots[*level]++; |
| 2487 | if (wc->free) { |
Tsutomu Itoh | 018642a | 2012-05-29 18:10:13 +0900 | [diff] [blame] | 2488 | ret = btrfs_read_buffer(next, ptr_gen); |
| 2489 | if (ret) { |
| 2490 | free_extent_buffer(next); |
| 2491 | return ret; |
| 2492 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2493 | |
Josef Bacik | 681ae50 | 2013-10-07 15:11:00 -0400 | [diff] [blame] | 2494 | if (trans) { |
| 2495 | btrfs_tree_lock(next); |
| 2496 | btrfs_set_lock_blocking(next); |
David Sterba | 7c302b4 | 2017-02-10 18:47:57 +0100 | [diff] [blame] | 2497 | clean_tree_block(fs_info, next); |
Josef Bacik | 681ae50 | 2013-10-07 15:11:00 -0400 | [diff] [blame] | 2498 | btrfs_wait_tree_block_writeback(next); |
| 2499 | btrfs_tree_unlock(next); |
| 2500 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2501 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2502 | WARN_ON(root_owner != |
| 2503 | BTRFS_TREE_LOG_OBJECTID); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2504 | ret = btrfs_free_and_pin_reserved_extent( |
| 2505 | fs_info, bytenr, |
| 2506 | blocksize); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 2507 | if (ret) { |
| 2508 | free_extent_buffer(next); |
| 2509 | return ret; |
| 2510 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2511 | } |
| 2512 | free_extent_buffer(next); |
| 2513 | continue; |
| 2514 | } |
Tsutomu Itoh | 018642a | 2012-05-29 18:10:13 +0900 | [diff] [blame] | 2515 | ret = btrfs_read_buffer(next, ptr_gen); |
| 2516 | if (ret) { |
| 2517 | free_extent_buffer(next); |
| 2518 | return ret; |
| 2519 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2520 | |
| 2521 | WARN_ON(*level <= 0); |
| 2522 | if (path->nodes[*level-1]) |
| 2523 | free_extent_buffer(path->nodes[*level-1]); |
| 2524 | path->nodes[*level-1] = next; |
| 2525 | *level = btrfs_header_level(next); |
| 2526 | path->slots[*level] = 0; |
| 2527 | cond_resched(); |
| 2528 | } |
| 2529 | WARN_ON(*level < 0); |
| 2530 | WARN_ON(*level >= BTRFS_MAX_LEVEL); |
| 2531 | |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2532 | path->slots[*level] = btrfs_header_nritems(path->nodes[*level]); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2533 | |
| 2534 | cond_resched(); |
| 2535 | return 0; |
| 2536 | } |
| 2537 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2538 | static noinline int walk_up_log_tree(struct btrfs_trans_handle *trans, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2539 | struct btrfs_root *root, |
| 2540 | struct btrfs_path *path, int *level, |
| 2541 | struct walk_control *wc) |
| 2542 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2543 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2544 | u64 root_owner; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2545 | int i; |
| 2546 | int slot; |
| 2547 | int ret; |
| 2548 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2549 | for (i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2550 | slot = path->slots[i]; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2551 | if (slot + 1 < btrfs_header_nritems(path->nodes[i])) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2552 | path->slots[i]++; |
| 2553 | *level = i; |
| 2554 | WARN_ON(*level == 0); |
| 2555 | return 0; |
| 2556 | } else { |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2557 | struct extent_buffer *parent; |
| 2558 | if (path->nodes[*level] == root->node) |
| 2559 | parent = path->nodes[*level]; |
| 2560 | else |
| 2561 | parent = path->nodes[*level + 1]; |
| 2562 | |
| 2563 | root_owner = btrfs_header_owner(parent); |
Mark Fasheh | 1e5063d | 2011-07-12 10:46:06 -0700 | [diff] [blame] | 2564 | ret = wc->process_func(root, path->nodes[*level], wc, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2565 | btrfs_header_generation(path->nodes[*level])); |
Mark Fasheh | 1e5063d | 2011-07-12 10:46:06 -0700 | [diff] [blame] | 2566 | if (ret) |
| 2567 | return ret; |
| 2568 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2569 | if (wc->free) { |
| 2570 | struct extent_buffer *next; |
| 2571 | |
| 2572 | next = path->nodes[*level]; |
| 2573 | |
Josef Bacik | 681ae50 | 2013-10-07 15:11:00 -0400 | [diff] [blame] | 2574 | if (trans) { |
| 2575 | btrfs_tree_lock(next); |
| 2576 | btrfs_set_lock_blocking(next); |
David Sterba | 7c302b4 | 2017-02-10 18:47:57 +0100 | [diff] [blame] | 2577 | clean_tree_block(fs_info, next); |
Josef Bacik | 681ae50 | 2013-10-07 15:11:00 -0400 | [diff] [blame] | 2578 | btrfs_wait_tree_block_writeback(next); |
| 2579 | btrfs_tree_unlock(next); |
| 2580 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2581 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2582 | WARN_ON(root_owner != BTRFS_TREE_LOG_OBJECTID); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2583 | ret = btrfs_free_and_pin_reserved_extent( |
| 2584 | fs_info, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2585 | path->nodes[*level]->start, |
Chris Mason | d00aff0 | 2008-09-11 15:54:42 -0400 | [diff] [blame] | 2586 | path->nodes[*level]->len); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 2587 | if (ret) |
| 2588 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2589 | } |
| 2590 | free_extent_buffer(path->nodes[*level]); |
| 2591 | path->nodes[*level] = NULL; |
| 2592 | *level = i + 1; |
| 2593 | } |
| 2594 | } |
| 2595 | return 1; |
| 2596 | } |
| 2597 | |
| 2598 | /* |
| 2599 | * drop the reference count on the tree rooted at 'snap'. This traverses |
| 2600 | * the tree freeing any blocks that have a ref count of zero after being |
| 2601 | * decremented. |
| 2602 | */ |
| 2603 | static int walk_log_tree(struct btrfs_trans_handle *trans, |
| 2604 | struct btrfs_root *log, struct walk_control *wc) |
| 2605 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2606 | struct btrfs_fs_info *fs_info = log->fs_info; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2607 | int ret = 0; |
| 2608 | int wret; |
| 2609 | int level; |
| 2610 | struct btrfs_path *path; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2611 | int orig_level; |
| 2612 | |
| 2613 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 2614 | if (!path) |
| 2615 | return -ENOMEM; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2616 | |
| 2617 | level = btrfs_header_level(log->node); |
| 2618 | orig_level = level; |
| 2619 | path->nodes[level] = log->node; |
| 2620 | extent_buffer_get(log->node); |
| 2621 | path->slots[level] = 0; |
| 2622 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2623 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2624 | wret = walk_down_log_tree(trans, log, path, &level, wc); |
| 2625 | if (wret > 0) |
| 2626 | break; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2627 | if (wret < 0) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2628 | ret = wret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2629 | goto out; |
| 2630 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2631 | |
| 2632 | wret = walk_up_log_tree(trans, log, path, &level, wc); |
| 2633 | if (wret > 0) |
| 2634 | break; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2635 | if (wret < 0) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2636 | ret = wret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2637 | goto out; |
| 2638 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2639 | } |
| 2640 | |
| 2641 | /* was the root node processed? if not, catch it here */ |
| 2642 | if (path->nodes[orig_level]) { |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2643 | ret = wc->process_func(log, path->nodes[orig_level], wc, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2644 | btrfs_header_generation(path->nodes[orig_level])); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2645 | if (ret) |
| 2646 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2647 | if (wc->free) { |
| 2648 | struct extent_buffer *next; |
| 2649 | |
| 2650 | next = path->nodes[orig_level]; |
| 2651 | |
Josef Bacik | 681ae50 | 2013-10-07 15:11:00 -0400 | [diff] [blame] | 2652 | if (trans) { |
| 2653 | btrfs_tree_lock(next); |
| 2654 | btrfs_set_lock_blocking(next); |
David Sterba | 7c302b4 | 2017-02-10 18:47:57 +0100 | [diff] [blame] | 2655 | clean_tree_block(fs_info, next); |
Josef Bacik | 681ae50 | 2013-10-07 15:11:00 -0400 | [diff] [blame] | 2656 | btrfs_wait_tree_block_writeback(next); |
| 2657 | btrfs_tree_unlock(next); |
| 2658 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2659 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2660 | WARN_ON(log->root_key.objectid != |
| 2661 | BTRFS_TREE_LOG_OBJECTID); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2662 | ret = btrfs_free_and_pin_reserved_extent(fs_info, |
| 2663 | next->start, next->len); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 2664 | if (ret) |
| 2665 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2666 | } |
| 2667 | } |
| 2668 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2669 | out: |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2670 | btrfs_free_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2671 | return ret; |
| 2672 | } |
| 2673 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2674 | /* |
| 2675 | * helper function to update the item for a given subvolumes log root |
| 2676 | * in the tree of log roots |
| 2677 | */ |
| 2678 | static int update_log_root(struct btrfs_trans_handle *trans, |
| 2679 | struct btrfs_root *log) |
| 2680 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2681 | struct btrfs_fs_info *fs_info = log->fs_info; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2682 | int ret; |
| 2683 | |
| 2684 | if (log->log_transid == 1) { |
| 2685 | /* insert root item on the first sync */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2686 | ret = btrfs_insert_root(trans, fs_info->log_root_tree, |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2687 | &log->root_key, &log->root_item); |
| 2688 | } else { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2689 | ret = btrfs_update_root(trans, fs_info->log_root_tree, |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2690 | &log->root_key, &log->root_item); |
| 2691 | } |
| 2692 | return ret; |
| 2693 | } |
| 2694 | |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 2695 | static void wait_log_commit(struct btrfs_root *root, int transid) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2696 | { |
| 2697 | DEFINE_WAIT(wait); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2698 | int index = transid % 2; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2699 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2700 | /* |
| 2701 | * we only allow two pending log transactions at a time, |
| 2702 | * so we know that if ours is more than 2 older than the |
| 2703 | * current transaction, we're done |
| 2704 | */ |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2705 | do { |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2706 | prepare_to_wait(&root->log_commit_wait[index], |
| 2707 | &wait, TASK_UNINTERRUPTIBLE); |
| 2708 | mutex_unlock(&root->log_mutex); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2709 | |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 2710 | if (root->log_transid_committed < transid && |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2711 | atomic_read(&root->log_commit[index])) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2712 | schedule(); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2713 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2714 | finish_wait(&root->log_commit_wait[index], &wait); |
| 2715 | mutex_lock(&root->log_mutex); |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 2716 | } while (root->log_transid_committed < transid && |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2717 | atomic_read(&root->log_commit[index])); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2718 | } |
| 2719 | |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 2720 | static void wait_for_writer(struct btrfs_root *root) |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2721 | { |
| 2722 | DEFINE_WAIT(wait); |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 2723 | |
| 2724 | while (atomic_read(&root->log_writers)) { |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2725 | prepare_to_wait(&root->log_writer_wait, |
| 2726 | &wait, TASK_UNINTERRUPTIBLE); |
| 2727 | mutex_unlock(&root->log_mutex); |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 2728 | if (atomic_read(&root->log_writers)) |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2729 | schedule(); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2730 | finish_wait(&root->log_writer_wait, &wait); |
Filipe Manana | 575849e | 2015-02-11 11:12:39 +0000 | [diff] [blame] | 2731 | mutex_lock(&root->log_mutex); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2732 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2733 | } |
| 2734 | |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 2735 | static inline void btrfs_remove_log_ctx(struct btrfs_root *root, |
| 2736 | struct btrfs_log_ctx *ctx) |
| 2737 | { |
| 2738 | if (!ctx) |
| 2739 | return; |
| 2740 | |
| 2741 | mutex_lock(&root->log_mutex); |
| 2742 | list_del_init(&ctx->list); |
| 2743 | mutex_unlock(&root->log_mutex); |
| 2744 | } |
| 2745 | |
| 2746 | /* |
| 2747 | * Invoked in log mutex context, or be sure there is no other task which |
| 2748 | * can access the list. |
| 2749 | */ |
| 2750 | static inline void btrfs_remove_all_log_ctxs(struct btrfs_root *root, |
| 2751 | int index, int error) |
| 2752 | { |
| 2753 | struct btrfs_log_ctx *ctx; |
Chris Mason | 570dd45 | 2016-10-27 10:42:20 -0700 | [diff] [blame] | 2754 | struct btrfs_log_ctx *safe; |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 2755 | |
Chris Mason | 570dd45 | 2016-10-27 10:42:20 -0700 | [diff] [blame] | 2756 | list_for_each_entry_safe(ctx, safe, &root->log_ctxs[index], list) { |
| 2757 | list_del_init(&ctx->list); |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 2758 | ctx->log_ret = error; |
Chris Mason | 570dd45 | 2016-10-27 10:42:20 -0700 | [diff] [blame] | 2759 | } |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 2760 | |
| 2761 | INIT_LIST_HEAD(&root->log_ctxs[index]); |
| 2762 | } |
| 2763 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2764 | /* |
| 2765 | * btrfs_sync_log does sends a given tree log down to the disk and |
| 2766 | * updates the super blocks to record it. When this call is done, |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2767 | * you know that any inodes previously logged are safely on disk only |
| 2768 | * if it returns 0. |
| 2769 | * |
| 2770 | * Any other return value means you need to call btrfs_commit_transaction. |
| 2771 | * Some of the edge cases for fsyncing directories that have had unlinks |
| 2772 | * or renames done in the past mean that sometimes the only safe |
| 2773 | * fsync is to commit the whole FS. When btrfs_sync_log returns -EAGAIN, |
| 2774 | * that has happened. |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2775 | */ |
| 2776 | int btrfs_sync_log(struct btrfs_trans_handle *trans, |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 2777 | struct btrfs_root *root, struct btrfs_log_ctx *ctx) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2778 | { |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2779 | int index1; |
| 2780 | int index2; |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 2781 | int mark; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2782 | int ret; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2783 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2784 | struct btrfs_root *log = root->log_root; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2785 | struct btrfs_root *log_root_tree = fs_info->log_root_tree; |
Miao Xie | bb14a59 | 2014-02-20 18:08:56 +0800 | [diff] [blame] | 2786 | int log_transid = 0; |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 2787 | struct btrfs_log_ctx root_log_ctx; |
Miao Xie | c6adc9c | 2013-05-28 10:05:39 +0000 | [diff] [blame] | 2788 | struct blk_plug plug; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2789 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2790 | mutex_lock(&root->log_mutex); |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 2791 | log_transid = ctx->log_transid; |
| 2792 | if (root->log_transid_committed >= log_transid) { |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2793 | mutex_unlock(&root->log_mutex); |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 2794 | return ctx->log_ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2795 | } |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 2796 | |
| 2797 | index1 = log_transid % 2; |
| 2798 | if (atomic_read(&root->log_commit[index1])) { |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 2799 | wait_log_commit(root, log_transid); |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 2800 | mutex_unlock(&root->log_mutex); |
| 2801 | return ctx->log_ret; |
| 2802 | } |
| 2803 | ASSERT(log_transid == root->log_transid); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2804 | atomic_set(&root->log_commit[index1], 1); |
| 2805 | |
| 2806 | /* wait for previous tree log sync to complete */ |
| 2807 | if (atomic_read(&root->log_commit[(index1 + 1) % 2])) |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 2808 | wait_log_commit(root, log_transid - 1); |
Miao Xie | 48cab2e | 2014-02-20 18:08:52 +0800 | [diff] [blame] | 2809 | |
Yan, Zheng | 86df7eb | 2009-10-14 09:24:59 -0400 | [diff] [blame] | 2810 | while (1) { |
Miao Xie | 2ecb792 | 2012-09-06 04:04:27 -0600 | [diff] [blame] | 2811 | int batch = atomic_read(&root->log_batch); |
Chris Mason | cd354ad | 2011-10-20 15:45:37 -0400 | [diff] [blame] | 2812 | /* when we're on an ssd, just kick the log commit out */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2813 | if (!btrfs_test_opt(fs_info, SSD) && |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 2814 | test_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state)) { |
Yan, Zheng | 86df7eb | 2009-10-14 09:24:59 -0400 | [diff] [blame] | 2815 | mutex_unlock(&root->log_mutex); |
| 2816 | schedule_timeout_uninterruptible(1); |
| 2817 | mutex_lock(&root->log_mutex); |
| 2818 | } |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 2819 | wait_for_writer(root); |
Miao Xie | 2ecb792 | 2012-09-06 04:04:27 -0600 | [diff] [blame] | 2820 | if (batch == atomic_read(&root->log_batch)) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2821 | break; |
| 2822 | } |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 2823 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2824 | /* bail out if we need to do a full commit */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2825 | if (btrfs_need_log_full_commit(fs_info, trans)) { |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2826 | ret = -EAGAIN; |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 2827 | btrfs_free_logged_extents(log, log_transid); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2828 | mutex_unlock(&root->log_mutex); |
| 2829 | goto out; |
| 2830 | } |
| 2831 | |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 2832 | if (log_transid % 2 == 0) |
| 2833 | mark = EXTENT_DIRTY; |
| 2834 | else |
| 2835 | mark = EXTENT_NEW; |
| 2836 | |
Chris Mason | 690587d | 2009-10-13 13:29:19 -0400 | [diff] [blame] | 2837 | /* we start IO on all the marked extents here, but we don't actually |
| 2838 | * wait for them until later. |
| 2839 | */ |
Miao Xie | c6adc9c | 2013-05-28 10:05:39 +0000 | [diff] [blame] | 2840 | blk_start_plug(&plug); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2841 | ret = btrfs_write_marked_extents(fs_info, &log->dirty_log_pages, mark); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2842 | if (ret) { |
Miao Xie | c6adc9c | 2013-05-28 10:05:39 +0000 | [diff] [blame] | 2843 | blk_finish_plug(&plug); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2844 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 2845 | btrfs_free_logged_extents(log, log_transid); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2846 | btrfs_set_log_full_commit(fs_info, trans); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2847 | mutex_unlock(&root->log_mutex); |
| 2848 | goto out; |
| 2849 | } |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2850 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2851 | btrfs_set_root_node(&log->root_item, log->node); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2852 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2853 | root->log_transid++; |
| 2854 | log->log_transid = root->log_transid; |
Josef Bacik | ff782e0 | 2009-10-08 15:30:04 -0400 | [diff] [blame] | 2855 | root->log_start_pid = 0; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2856 | /* |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 2857 | * IO has been started, blocks of the log tree have WRITTEN flag set |
| 2858 | * in their headers. new modifications of the log will be written to |
| 2859 | * 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] | 2860 | */ |
| 2861 | mutex_unlock(&root->log_mutex); |
| 2862 | |
Filipe Manana | 28a2359 | 2016-08-23 21:13:51 +0100 | [diff] [blame] | 2863 | btrfs_init_log_ctx(&root_log_ctx, NULL); |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 2864 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2865 | mutex_lock(&log_root_tree->log_mutex); |
Miao Xie | 2ecb792 | 2012-09-06 04:04:27 -0600 | [diff] [blame] | 2866 | atomic_inc(&log_root_tree->log_batch); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2867 | atomic_inc(&log_root_tree->log_writers); |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 2868 | |
| 2869 | index2 = log_root_tree->log_transid % 2; |
| 2870 | list_add_tail(&root_log_ctx.list, &log_root_tree->log_ctxs[index2]); |
| 2871 | root_log_ctx.log_transid = log_root_tree->log_transid; |
| 2872 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2873 | mutex_unlock(&log_root_tree->log_mutex); |
| 2874 | |
| 2875 | ret = update_log_root(trans, log); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2876 | |
| 2877 | mutex_lock(&log_root_tree->log_mutex); |
| 2878 | if (atomic_dec_and_test(&log_root_tree->log_writers)) { |
David Sterba | 779adf0 | 2015-02-16 19:39:00 +0100 | [diff] [blame] | 2879 | /* |
| 2880 | * Implicit memory barrier after atomic_dec_and_test |
| 2881 | */ |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2882 | if (waitqueue_active(&log_root_tree->log_writer_wait)) |
| 2883 | wake_up(&log_root_tree->log_writer_wait); |
| 2884 | } |
| 2885 | |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2886 | if (ret) { |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 2887 | if (!list_empty(&root_log_ctx.list)) |
| 2888 | list_del_init(&root_log_ctx.list); |
| 2889 | |
Miao Xie | c6adc9c | 2013-05-28 10:05:39 +0000 | [diff] [blame] | 2890 | blk_finish_plug(&plug); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2891 | btrfs_set_log_full_commit(fs_info, trans); |
Miao Xie | 995946d | 2014-04-02 19:51:06 +0800 | [diff] [blame] | 2892 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2893 | if (ret != -ENOSPC) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2894 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2895 | mutex_unlock(&log_root_tree->log_mutex); |
| 2896 | goto out; |
| 2897 | } |
Jeff Mahoney | bf89d38 | 2016-09-09 20:42:44 -0400 | [diff] [blame] | 2898 | btrfs_wait_tree_log_extents(log, mark); |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 2899 | btrfs_free_logged_extents(log, log_transid); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2900 | mutex_unlock(&log_root_tree->log_mutex); |
| 2901 | ret = -EAGAIN; |
| 2902 | goto out; |
| 2903 | } |
| 2904 | |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 2905 | if (log_root_tree->log_transid_committed >= root_log_ctx.log_transid) { |
Forrest Liu | 3da5ab5 | 2015-01-30 19:42:12 +0800 | [diff] [blame] | 2906 | blk_finish_plug(&plug); |
Chris Mason | cbd60aa | 2016-09-06 05:37:40 -0700 | [diff] [blame] | 2907 | list_del_init(&root_log_ctx.list); |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 2908 | mutex_unlock(&log_root_tree->log_mutex); |
| 2909 | ret = root_log_ctx.log_ret; |
| 2910 | goto out; |
| 2911 | } |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 2912 | |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 2913 | index2 = root_log_ctx.log_transid % 2; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2914 | if (atomic_read(&log_root_tree->log_commit[index2])) { |
Miao Xie | c6adc9c | 2013-05-28 10:05:39 +0000 | [diff] [blame] | 2915 | blk_finish_plug(&plug); |
Jeff Mahoney | bf89d38 | 2016-09-09 20:42:44 -0400 | [diff] [blame] | 2916 | ret = btrfs_wait_tree_log_extents(log, mark); |
Josef Bacik | 50d9aa9 | 2014-11-21 14:52:38 -0500 | [diff] [blame] | 2917 | btrfs_wait_logged_extents(trans, log, log_transid); |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 2918 | wait_log_commit(log_root_tree, |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 2919 | root_log_ctx.log_transid); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2920 | mutex_unlock(&log_root_tree->log_mutex); |
Filipe Manana | 5ab5e44 | 2014-11-13 16:59:53 +0000 | [diff] [blame] | 2921 | if (!ret) |
| 2922 | ret = root_log_ctx.log_ret; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2923 | goto out; |
| 2924 | } |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 2925 | ASSERT(root_log_ctx.log_transid == log_root_tree->log_transid); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2926 | atomic_set(&log_root_tree->log_commit[index2], 1); |
| 2927 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2928 | if (atomic_read(&log_root_tree->log_commit[(index2 + 1) % 2])) { |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 2929 | wait_log_commit(log_root_tree, |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 2930 | root_log_ctx.log_transid - 1); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2931 | } |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2932 | |
Zhaolei | 60d53eb | 2015-08-17 18:44:46 +0800 | [diff] [blame] | 2933 | wait_for_writer(log_root_tree); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2934 | |
| 2935 | /* |
| 2936 | * now that we've moved on to the tree of log tree roots, |
| 2937 | * check the full commit flag again |
| 2938 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2939 | if (btrfs_need_log_full_commit(fs_info, trans)) { |
Miao Xie | c6adc9c | 2013-05-28 10:05:39 +0000 | [diff] [blame] | 2940 | blk_finish_plug(&plug); |
Jeff Mahoney | bf89d38 | 2016-09-09 20:42:44 -0400 | [diff] [blame] | 2941 | btrfs_wait_tree_log_extents(log, mark); |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 2942 | btrfs_free_logged_extents(log, log_transid); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2943 | mutex_unlock(&log_root_tree->log_mutex); |
| 2944 | ret = -EAGAIN; |
| 2945 | goto out_wake_log_root; |
| 2946 | } |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2947 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2948 | ret = btrfs_write_marked_extents(fs_info, |
Miao Xie | c6adc9c | 2013-05-28 10:05:39 +0000 | [diff] [blame] | 2949 | &log_root_tree->dirty_log_pages, |
| 2950 | EXTENT_DIRTY | EXTENT_NEW); |
| 2951 | blk_finish_plug(&plug); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2952 | if (ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2953 | btrfs_set_log_full_commit(fs_info, trans); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2954 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 2955 | btrfs_free_logged_extents(log, log_transid); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2956 | mutex_unlock(&log_root_tree->log_mutex); |
| 2957 | goto out_wake_log_root; |
| 2958 | } |
Jeff Mahoney | bf89d38 | 2016-09-09 20:42:44 -0400 | [diff] [blame] | 2959 | ret = btrfs_wait_tree_log_extents(log, mark); |
Filipe Manana | 5ab5e44 | 2014-11-13 16:59:53 +0000 | [diff] [blame] | 2960 | if (!ret) |
Jeff Mahoney | bf89d38 | 2016-09-09 20:42:44 -0400 | [diff] [blame] | 2961 | ret = btrfs_wait_tree_log_extents(log_root_tree, |
| 2962 | EXTENT_NEW | EXTENT_DIRTY); |
Filipe Manana | 5ab5e44 | 2014-11-13 16:59:53 +0000 | [diff] [blame] | 2963 | if (ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2964 | btrfs_set_log_full_commit(fs_info, trans); |
Filipe Manana | 5ab5e44 | 2014-11-13 16:59:53 +0000 | [diff] [blame] | 2965 | btrfs_free_logged_extents(log, log_transid); |
| 2966 | mutex_unlock(&log_root_tree->log_mutex); |
| 2967 | goto out_wake_log_root; |
| 2968 | } |
Josef Bacik | 50d9aa9 | 2014-11-21 14:52:38 -0500 | [diff] [blame] | 2969 | btrfs_wait_logged_extents(trans, log, log_transid); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2970 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2971 | btrfs_set_super_log_root(fs_info->super_for_commit, |
| 2972 | log_root_tree->node->start); |
| 2973 | btrfs_set_super_log_root_level(fs_info->super_for_commit, |
| 2974 | btrfs_header_level(log_root_tree->node)); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2975 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2976 | log_root_tree->log_transid++; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2977 | mutex_unlock(&log_root_tree->log_mutex); |
| 2978 | |
| 2979 | /* |
| 2980 | * nobody else is going to jump in and write the the ctree |
| 2981 | * super here because the log_commit atomic below is protecting |
| 2982 | * us. We must be called with a transaction handle pinning |
| 2983 | * the running transaction open, so a full commit can't hop |
| 2984 | * in and cause problems either. |
| 2985 | */ |
David Sterba | eece6a9 | 2017-02-10 19:04:32 +0100 | [diff] [blame] | 2986 | ret = write_all_supers(fs_info, 1); |
Stefan Behrens | 5af3e8c | 2012-08-01 18:56:49 +0200 | [diff] [blame] | 2987 | if (ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2988 | btrfs_set_log_full_commit(fs_info, trans); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2989 | btrfs_abort_transaction(trans, ret); |
Stefan Behrens | 5af3e8c | 2012-08-01 18:56:49 +0200 | [diff] [blame] | 2990 | goto out_wake_log_root; |
| 2991 | } |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2992 | |
Chris Mason | 257c62e | 2009-10-13 13:21:08 -0400 | [diff] [blame] | 2993 | mutex_lock(&root->log_mutex); |
| 2994 | if (root->last_log_commit < log_transid) |
| 2995 | root->last_log_commit = log_transid; |
| 2996 | mutex_unlock(&root->log_mutex); |
| 2997 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2998 | out_wake_log_root: |
Chris Mason | 570dd45 | 2016-10-27 10:42:20 -0700 | [diff] [blame] | 2999 | mutex_lock(&log_root_tree->log_mutex); |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 3000 | btrfs_remove_all_log_ctxs(log_root_tree, index2, ret); |
| 3001 | |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3002 | log_root_tree->log_transid_committed++; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3003 | atomic_set(&log_root_tree->log_commit[index2], 0); |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3004 | mutex_unlock(&log_root_tree->log_mutex); |
| 3005 | |
David Sterba | 33a9eca | 2015-10-10 18:35:10 +0200 | [diff] [blame] | 3006 | /* |
| 3007 | * The barrier before waitqueue_active is implied by mutex_unlock |
| 3008 | */ |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3009 | if (waitqueue_active(&log_root_tree->log_commit_wait[index2])) |
| 3010 | wake_up(&log_root_tree->log_commit_wait[index2]); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3011 | out: |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3012 | mutex_lock(&root->log_mutex); |
Chris Mason | 570dd45 | 2016-10-27 10:42:20 -0700 | [diff] [blame] | 3013 | btrfs_remove_all_log_ctxs(root, index1, ret); |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3014 | root->log_transid_committed++; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3015 | atomic_set(&root->log_commit[index1], 0); |
Miao Xie | d1433de | 2014-02-20 18:08:59 +0800 | [diff] [blame] | 3016 | mutex_unlock(&root->log_mutex); |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 3017 | |
David Sterba | 33a9eca | 2015-10-10 18:35:10 +0200 | [diff] [blame] | 3018 | /* |
| 3019 | * The barrier before waitqueue_active is implied by mutex_unlock |
| 3020 | */ |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3021 | if (waitqueue_active(&root->log_commit_wait[index1])) |
| 3022 | wake_up(&root->log_commit_wait[index1]); |
Chris Mason | b31eabd | 2011-01-31 16:48:24 -0500 | [diff] [blame] | 3023 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3024 | } |
| 3025 | |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3026 | static void free_log_tree(struct btrfs_trans_handle *trans, |
| 3027 | struct btrfs_root *log) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3028 | { |
| 3029 | int ret; |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3030 | u64 start; |
| 3031 | u64 end; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3032 | struct walk_control wc = { |
| 3033 | .free = 1, |
| 3034 | .process_func = process_one_buffer |
| 3035 | }; |
| 3036 | |
Josef Bacik | 681ae50 | 2013-10-07 15:11:00 -0400 | [diff] [blame] | 3037 | ret = walk_log_tree(trans, log, &wc); |
| 3038 | /* I don't think this can happen but just in case */ |
| 3039 | if (ret) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3040 | btrfs_abort_transaction(trans, ret); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3041 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3042 | while (1) { |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3043 | ret = find_first_extent_bit(&log->dirty_log_pages, |
Josef Bacik | e613887 | 2012-09-27 17:07:30 -0400 | [diff] [blame] | 3044 | 0, &start, &end, EXTENT_DIRTY | EXTENT_NEW, |
| 3045 | NULL); |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3046 | if (ret) |
| 3047 | break; |
| 3048 | |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 3049 | clear_extent_bits(&log->dirty_log_pages, start, end, |
David Sterba | 9116621 | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 3050 | EXTENT_DIRTY | EXTENT_NEW); |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3051 | } |
| 3052 | |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 3053 | /* |
| 3054 | * We may have short-circuited the log tree with the full commit logic |
| 3055 | * and left ordered extents on our list, so clear these out to keep us |
| 3056 | * from leaking inodes and memory. |
| 3057 | */ |
| 3058 | btrfs_free_logged_extents(log, 0); |
| 3059 | btrfs_free_logged_extents(log, 1); |
| 3060 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 3061 | free_extent_buffer(log->node); |
| 3062 | kfree(log); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3063 | } |
| 3064 | |
| 3065 | /* |
| 3066 | * free all the extents used by the tree log. This should be called |
| 3067 | * at commit time of the full transaction |
| 3068 | */ |
| 3069 | int btrfs_free_log(struct btrfs_trans_handle *trans, struct btrfs_root *root) |
| 3070 | { |
| 3071 | if (root->log_root) { |
| 3072 | free_log_tree(trans, root->log_root); |
| 3073 | root->log_root = NULL; |
| 3074 | } |
| 3075 | return 0; |
| 3076 | } |
| 3077 | |
| 3078 | int btrfs_free_log_root_tree(struct btrfs_trans_handle *trans, |
| 3079 | struct btrfs_fs_info *fs_info) |
| 3080 | { |
| 3081 | if (fs_info->log_root_tree) { |
| 3082 | free_log_tree(trans, fs_info->log_root_tree); |
| 3083 | fs_info->log_root_tree = NULL; |
| 3084 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3085 | return 0; |
| 3086 | } |
| 3087 | |
| 3088 | /* |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3089 | * If both a file and directory are logged, and unlinks or renames are |
| 3090 | * mixed in, we have a few interesting corners: |
| 3091 | * |
| 3092 | * create file X in dir Y |
| 3093 | * link file X to X.link in dir Y |
| 3094 | * fsync file X |
| 3095 | * unlink file X but leave X.link |
| 3096 | * fsync dir Y |
| 3097 | * |
| 3098 | * After a crash we would expect only X.link to exist. But file X |
| 3099 | * didn't get fsync'd again so the log has back refs for X and X.link. |
| 3100 | * |
| 3101 | * We solve this by removing directory entries and inode backrefs from the |
| 3102 | * log when a file that was logged in the current transaction is |
| 3103 | * unlinked. Any later fsync will include the updated log entries, and |
| 3104 | * we'll be able to reconstruct the proper directory items from backrefs. |
| 3105 | * |
| 3106 | * This optimizations allows us to avoid relogging the entire inode |
| 3107 | * or the entire directory. |
| 3108 | */ |
| 3109 | int btrfs_del_dir_entries_in_log(struct btrfs_trans_handle *trans, |
| 3110 | struct btrfs_root *root, |
| 3111 | const char *name, int name_len, |
Nikolay Borisov | 49f34d1 | 2017-01-18 00:31:32 +0200 | [diff] [blame] | 3112 | struct btrfs_inode *dir, u64 index) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3113 | { |
| 3114 | struct btrfs_root *log; |
| 3115 | struct btrfs_dir_item *di; |
| 3116 | struct btrfs_path *path; |
| 3117 | int ret; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3118 | int err = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3119 | int bytes_del = 0; |
Nikolay Borisov | 49f34d1 | 2017-01-18 00:31:32 +0200 | [diff] [blame] | 3120 | u64 dir_ino = btrfs_ino(dir); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3121 | |
Nikolay Borisov | 49f34d1 | 2017-01-18 00:31:32 +0200 | [diff] [blame] | 3122 | if (dir->logged_trans < trans->transid) |
Chris Mason | 3a5f1d4 | 2008-09-11 15:53:37 -0400 | [diff] [blame] | 3123 | return 0; |
| 3124 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3125 | ret = join_running_log_trans(root); |
| 3126 | if (ret) |
| 3127 | return 0; |
| 3128 | |
Nikolay Borisov | 49f34d1 | 2017-01-18 00:31:32 +0200 | [diff] [blame] | 3129 | mutex_lock(&dir->log_mutex); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3130 | |
| 3131 | log = root->log_root; |
| 3132 | path = btrfs_alloc_path(); |
Tsutomu Itoh | a62f44a | 2011-04-25 19:43:51 -0400 | [diff] [blame] | 3133 | if (!path) { |
| 3134 | err = -ENOMEM; |
| 3135 | goto out_unlock; |
| 3136 | } |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 3137 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3138 | di = btrfs_lookup_dir_item(trans, log, path, dir_ino, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3139 | name, name_len, -1); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3140 | if (IS_ERR(di)) { |
| 3141 | err = PTR_ERR(di); |
| 3142 | goto fail; |
| 3143 | } |
| 3144 | if (di) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3145 | ret = btrfs_delete_one_dir_name(trans, log, path, di); |
| 3146 | bytes_del += name_len; |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 3147 | if (ret) { |
| 3148 | err = ret; |
| 3149 | goto fail; |
| 3150 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3151 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3152 | btrfs_release_path(path); |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3153 | di = btrfs_lookup_dir_index_item(trans, log, path, dir_ino, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3154 | index, name, name_len, -1); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3155 | if (IS_ERR(di)) { |
| 3156 | err = PTR_ERR(di); |
| 3157 | goto fail; |
| 3158 | } |
| 3159 | if (di) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3160 | ret = btrfs_delete_one_dir_name(trans, log, path, di); |
| 3161 | bytes_del += name_len; |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 3162 | if (ret) { |
| 3163 | err = ret; |
| 3164 | goto fail; |
| 3165 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3166 | } |
| 3167 | |
| 3168 | /* update the directory size in the log to reflect the names |
| 3169 | * we have removed |
| 3170 | */ |
| 3171 | if (bytes_del) { |
| 3172 | struct btrfs_key key; |
| 3173 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3174 | key.objectid = dir_ino; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3175 | key.offset = 0; |
| 3176 | key.type = BTRFS_INODE_ITEM_KEY; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3177 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3178 | |
| 3179 | ret = btrfs_search_slot(trans, log, &key, path, 0, 1); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3180 | if (ret < 0) { |
| 3181 | err = ret; |
| 3182 | goto fail; |
| 3183 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3184 | if (ret == 0) { |
| 3185 | struct btrfs_inode_item *item; |
| 3186 | u64 i_size; |
| 3187 | |
| 3188 | item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 3189 | struct btrfs_inode_item); |
| 3190 | i_size = btrfs_inode_size(path->nodes[0], item); |
| 3191 | if (i_size > bytes_del) |
| 3192 | i_size -= bytes_del; |
| 3193 | else |
| 3194 | i_size = 0; |
| 3195 | btrfs_set_inode_size(path->nodes[0], item, i_size); |
| 3196 | btrfs_mark_buffer_dirty(path->nodes[0]); |
| 3197 | } else |
| 3198 | ret = 0; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3199 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3200 | } |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3201 | fail: |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3202 | btrfs_free_path(path); |
Tsutomu Itoh | a62f44a | 2011-04-25 19:43:51 -0400 | [diff] [blame] | 3203 | out_unlock: |
Nikolay Borisov | 49f34d1 | 2017-01-18 00:31:32 +0200 | [diff] [blame] | 3204 | mutex_unlock(&dir->log_mutex); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3205 | if (ret == -ENOSPC) { |
Miao Xie | 995946d | 2014-04-02 19:51:06 +0800 | [diff] [blame] | 3206 | btrfs_set_log_full_commit(root->fs_info, trans); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3207 | ret = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3208 | } else if (ret < 0) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3209 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3210 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3211 | btrfs_end_log_trans(root); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3212 | |
Andi Kleen | 411fc6b | 2010-10-29 15:14:31 -0400 | [diff] [blame] | 3213 | return err; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3214 | } |
| 3215 | |
| 3216 | /* see comments for btrfs_del_dir_entries_in_log */ |
| 3217 | int btrfs_del_inode_ref_in_log(struct btrfs_trans_handle *trans, |
| 3218 | struct btrfs_root *root, |
| 3219 | const char *name, int name_len, |
Nikolay Borisov | a491abb | 2017-01-18 00:31:33 +0200 | [diff] [blame] | 3220 | struct btrfs_inode *inode, u64 dirid) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3221 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3222 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3223 | struct btrfs_root *log; |
| 3224 | u64 index; |
| 3225 | int ret; |
| 3226 | |
Nikolay Borisov | a491abb | 2017-01-18 00:31:33 +0200 | [diff] [blame] | 3227 | if (inode->logged_trans < trans->transid) |
Chris Mason | 3a5f1d4 | 2008-09-11 15:53:37 -0400 | [diff] [blame] | 3228 | return 0; |
| 3229 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3230 | ret = join_running_log_trans(root); |
| 3231 | if (ret) |
| 3232 | return 0; |
| 3233 | log = root->log_root; |
Nikolay Borisov | a491abb | 2017-01-18 00:31:33 +0200 | [diff] [blame] | 3234 | mutex_lock(&inode->log_mutex); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3235 | |
Nikolay Borisov | a491abb | 2017-01-18 00:31:33 +0200 | [diff] [blame] | 3236 | 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] | 3237 | dirid, &index); |
Nikolay Borisov | a491abb | 2017-01-18 00:31:33 +0200 | [diff] [blame] | 3238 | mutex_unlock(&inode->log_mutex); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3239 | if (ret == -ENOSPC) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3240 | btrfs_set_log_full_commit(fs_info, trans); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3241 | ret = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3242 | } else if (ret < 0 && ret != -ENOENT) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3243 | btrfs_abort_transaction(trans, ret); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3244 | btrfs_end_log_trans(root); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3245 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3246 | return ret; |
| 3247 | } |
| 3248 | |
| 3249 | /* |
| 3250 | * creates a range item in the log for 'dirid'. first_offset and |
| 3251 | * last_offset tell us which parts of the key space the log should |
| 3252 | * be considered authoritative for. |
| 3253 | */ |
| 3254 | static noinline int insert_dir_log_key(struct btrfs_trans_handle *trans, |
| 3255 | struct btrfs_root *log, |
| 3256 | struct btrfs_path *path, |
| 3257 | int key_type, u64 dirid, |
| 3258 | u64 first_offset, u64 last_offset) |
| 3259 | { |
| 3260 | int ret; |
| 3261 | struct btrfs_key key; |
| 3262 | struct btrfs_dir_log_item *item; |
| 3263 | |
| 3264 | key.objectid = dirid; |
| 3265 | key.offset = first_offset; |
| 3266 | if (key_type == BTRFS_DIR_ITEM_KEY) |
| 3267 | key.type = BTRFS_DIR_LOG_ITEM_KEY; |
| 3268 | else |
| 3269 | key.type = BTRFS_DIR_LOG_INDEX_KEY; |
| 3270 | ret = btrfs_insert_empty_item(trans, log, path, &key, sizeof(*item)); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3271 | if (ret) |
| 3272 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3273 | |
| 3274 | item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 3275 | struct btrfs_dir_log_item); |
| 3276 | btrfs_set_dir_log_end(path->nodes[0], item, last_offset); |
| 3277 | btrfs_mark_buffer_dirty(path->nodes[0]); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3278 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3279 | return 0; |
| 3280 | } |
| 3281 | |
| 3282 | /* |
| 3283 | * log all the items included in the current transaction for a given |
| 3284 | * directory. This also creates the range items in the log tree required |
| 3285 | * to replay anything deleted before the fsync |
| 3286 | */ |
| 3287 | static noinline int log_dir_items(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 684a577 | 2017-01-18 00:31:41 +0200 | [diff] [blame] | 3288 | struct btrfs_root *root, struct btrfs_inode *inode, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3289 | struct btrfs_path *path, |
| 3290 | struct btrfs_path *dst_path, int key_type, |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 3291 | struct btrfs_log_ctx *ctx, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3292 | u64 min_offset, u64 *last_offset_ret) |
| 3293 | { |
| 3294 | struct btrfs_key min_key; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3295 | struct btrfs_root *log = root->log_root; |
| 3296 | struct extent_buffer *src; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3297 | int err = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3298 | int ret; |
| 3299 | int i; |
| 3300 | int nritems; |
| 3301 | u64 first_offset = min_offset; |
| 3302 | u64 last_offset = (u64)-1; |
Nikolay Borisov | 684a577 | 2017-01-18 00:31:41 +0200 | [diff] [blame] | 3303 | u64 ino = btrfs_ino(inode); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3304 | |
| 3305 | log = root->log_root; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3306 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3307 | min_key.objectid = ino; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3308 | min_key.type = key_type; |
| 3309 | min_key.offset = min_offset; |
| 3310 | |
Filipe David Borba Manana | 6174d3c | 2013-10-01 16:13:42 +0100 | [diff] [blame] | 3311 | ret = btrfs_search_forward(root, &min_key, path, trans->transid); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3312 | |
| 3313 | /* |
| 3314 | * we didn't find anything from this transaction, see if there |
| 3315 | * is anything at all |
| 3316 | */ |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3317 | if (ret != 0 || min_key.objectid != ino || min_key.type != key_type) { |
| 3318 | min_key.objectid = ino; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3319 | min_key.type = key_type; |
| 3320 | min_key.offset = (u64)-1; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3321 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3322 | ret = btrfs_search_slot(NULL, root, &min_key, path, 0, 0); |
| 3323 | if (ret < 0) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3324 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3325 | return ret; |
| 3326 | } |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3327 | ret = btrfs_previous_item(root, path, ino, key_type); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3328 | |
| 3329 | /* if ret == 0 there are items for this type, |
| 3330 | * create a range to tell us the last key of this type. |
| 3331 | * otherwise, there are no items in this directory after |
| 3332 | * *min_offset, and we create a range to indicate that. |
| 3333 | */ |
| 3334 | if (ret == 0) { |
| 3335 | struct btrfs_key tmp; |
| 3336 | btrfs_item_key_to_cpu(path->nodes[0], &tmp, |
| 3337 | path->slots[0]); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3338 | if (key_type == tmp.type) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3339 | first_offset = max(min_offset, tmp.offset) + 1; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3340 | } |
| 3341 | goto done; |
| 3342 | } |
| 3343 | |
| 3344 | /* go backward to find any previous key */ |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3345 | ret = btrfs_previous_item(root, path, ino, key_type); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3346 | if (ret == 0) { |
| 3347 | struct btrfs_key tmp; |
| 3348 | btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]); |
| 3349 | if (key_type == tmp.type) { |
| 3350 | first_offset = tmp.offset; |
| 3351 | ret = overwrite_item(trans, log, dst_path, |
| 3352 | path->nodes[0], path->slots[0], |
| 3353 | &tmp); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3354 | if (ret) { |
| 3355 | err = ret; |
| 3356 | goto done; |
| 3357 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3358 | } |
| 3359 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3360 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3361 | |
| 3362 | /* find the first key from this transaction again */ |
| 3363 | ret = btrfs_search_slot(NULL, root, &min_key, path, 0, 0); |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 3364 | if (WARN_ON(ret != 0)) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3365 | goto done; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3366 | |
| 3367 | /* |
| 3368 | * we have a block from this transaction, log every item in it |
| 3369 | * from our directory |
| 3370 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3371 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3372 | struct btrfs_key tmp; |
| 3373 | src = path->nodes[0]; |
| 3374 | nritems = btrfs_header_nritems(src); |
| 3375 | for (i = path->slots[0]; i < nritems; i++) { |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 3376 | struct btrfs_dir_item *di; |
| 3377 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3378 | btrfs_item_key_to_cpu(src, &min_key, i); |
| 3379 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3380 | if (min_key.objectid != ino || min_key.type != key_type) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3381 | goto done; |
| 3382 | ret = overwrite_item(trans, log, dst_path, src, i, |
| 3383 | &min_key); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3384 | if (ret) { |
| 3385 | err = ret; |
| 3386 | goto done; |
| 3387 | } |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 3388 | |
| 3389 | /* |
| 3390 | * We must make sure that when we log a directory entry, |
| 3391 | * the corresponding inode, after log replay, has a |
| 3392 | * matching link count. For example: |
| 3393 | * |
| 3394 | * touch foo |
| 3395 | * mkdir mydir |
| 3396 | * sync |
| 3397 | * ln foo mydir/bar |
| 3398 | * xfs_io -c "fsync" mydir |
| 3399 | * <crash> |
| 3400 | * <mount fs and log replay> |
| 3401 | * |
| 3402 | * Would result in a fsync log that when replayed, our |
| 3403 | * file inode would have a link count of 1, but we get |
| 3404 | * two directory entries pointing to the same inode. |
| 3405 | * After removing one of the names, it would not be |
| 3406 | * possible to remove the other name, which resulted |
| 3407 | * always in stale file handle errors, and would not |
| 3408 | * be possible to rmdir the parent directory, since |
| 3409 | * its i_size could never decrement to the value |
| 3410 | * BTRFS_EMPTY_DIR_SIZE, resulting in -ENOTEMPTY errors. |
| 3411 | */ |
| 3412 | di = btrfs_item_ptr(src, i, struct btrfs_dir_item); |
| 3413 | btrfs_dir_item_key_to_cpu(src, di, &tmp); |
| 3414 | if (ctx && |
| 3415 | (btrfs_dir_transid(src, di) == trans->transid || |
| 3416 | btrfs_dir_type(src, di) == BTRFS_FT_DIR) && |
| 3417 | tmp.type != BTRFS_ROOT_ITEM_KEY) |
| 3418 | ctx->log_new_dentries = true; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3419 | } |
| 3420 | path->slots[0] = nritems; |
| 3421 | |
| 3422 | /* |
| 3423 | * look ahead to the next item and see if it is also |
| 3424 | * from this directory and from this transaction |
| 3425 | */ |
| 3426 | ret = btrfs_next_leaf(root, path); |
| 3427 | if (ret == 1) { |
| 3428 | last_offset = (u64)-1; |
| 3429 | goto done; |
| 3430 | } |
| 3431 | btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]); |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3432 | if (tmp.objectid != ino || tmp.type != key_type) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3433 | last_offset = (u64)-1; |
| 3434 | goto done; |
| 3435 | } |
| 3436 | if (btrfs_header_generation(path->nodes[0]) != trans->transid) { |
| 3437 | ret = overwrite_item(trans, log, dst_path, |
| 3438 | path->nodes[0], path->slots[0], |
| 3439 | &tmp); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3440 | if (ret) |
| 3441 | err = ret; |
| 3442 | else |
| 3443 | last_offset = tmp.offset; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3444 | goto done; |
| 3445 | } |
| 3446 | } |
| 3447 | done: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3448 | btrfs_release_path(path); |
| 3449 | btrfs_release_path(dst_path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3450 | |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3451 | if (err == 0) { |
| 3452 | *last_offset_ret = last_offset; |
| 3453 | /* |
| 3454 | * insert the log range keys to indicate where the log |
| 3455 | * is valid |
| 3456 | */ |
| 3457 | ret = insert_dir_log_key(trans, log, path, key_type, |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3458 | ino, first_offset, last_offset); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3459 | if (ret) |
| 3460 | err = ret; |
| 3461 | } |
| 3462 | return err; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3463 | } |
| 3464 | |
| 3465 | /* |
| 3466 | * logging directories is very similar to logging inodes, We find all the items |
| 3467 | * from the current transaction and write them to the log. |
| 3468 | * |
| 3469 | * The recovery code scans the directory in the subvolume, and if it finds a |
| 3470 | * key in the range logged that is not present in the log tree, then it means |
| 3471 | * that dir entry was unlinked during the transaction. |
| 3472 | * |
| 3473 | * In order for that scan to work, we must include one key smaller than |
| 3474 | * the smallest logged by this transaction and one key larger than the largest |
| 3475 | * key logged by this transaction. |
| 3476 | */ |
| 3477 | static noinline int log_directory_changes(struct btrfs_trans_handle *trans, |
Nikolay Borisov | dbf39ea | 2017-01-18 00:31:42 +0200 | [diff] [blame] | 3478 | struct btrfs_root *root, struct btrfs_inode *inode, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3479 | struct btrfs_path *path, |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 3480 | struct btrfs_path *dst_path, |
| 3481 | struct btrfs_log_ctx *ctx) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3482 | { |
| 3483 | u64 min_key; |
| 3484 | u64 max_key; |
| 3485 | int ret; |
| 3486 | int key_type = BTRFS_DIR_ITEM_KEY; |
| 3487 | |
| 3488 | again: |
| 3489 | min_key = 0; |
| 3490 | max_key = 0; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3491 | while (1) { |
Nikolay Borisov | dbf39ea | 2017-01-18 00:31:42 +0200 | [diff] [blame] | 3492 | ret = log_dir_items(trans, root, inode, path, dst_path, key_type, |
| 3493 | ctx, min_key, &max_key); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3494 | if (ret) |
| 3495 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3496 | if (max_key == (u64)-1) |
| 3497 | break; |
| 3498 | min_key = max_key + 1; |
| 3499 | } |
| 3500 | |
| 3501 | if (key_type == BTRFS_DIR_ITEM_KEY) { |
| 3502 | key_type = BTRFS_DIR_INDEX_KEY; |
| 3503 | goto again; |
| 3504 | } |
| 3505 | return 0; |
| 3506 | } |
| 3507 | |
| 3508 | /* |
| 3509 | * a helper function to drop items from the log before we relog an |
| 3510 | * inode. max_key_type indicates the highest item type to remove. |
| 3511 | * This cannot be run for file data extents because it does not |
| 3512 | * free the extents they point to. |
| 3513 | */ |
| 3514 | static int drop_objectid_items(struct btrfs_trans_handle *trans, |
| 3515 | struct btrfs_root *log, |
| 3516 | struct btrfs_path *path, |
| 3517 | u64 objectid, int max_key_type) |
| 3518 | { |
| 3519 | int ret; |
| 3520 | struct btrfs_key key; |
| 3521 | struct btrfs_key found_key; |
Josef Bacik | 18ec90d | 2012-09-28 11:56:28 -0400 | [diff] [blame] | 3522 | int start_slot; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3523 | |
| 3524 | key.objectid = objectid; |
| 3525 | key.type = max_key_type; |
| 3526 | key.offset = (u64)-1; |
| 3527 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3528 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3529 | ret = btrfs_search_slot(trans, log, &key, path, -1, 1); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 3530 | BUG_ON(ret == 0); /* Logic error */ |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3531 | if (ret < 0) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3532 | break; |
| 3533 | |
| 3534 | if (path->slots[0] == 0) |
| 3535 | break; |
| 3536 | |
| 3537 | path->slots[0]--; |
| 3538 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, |
| 3539 | path->slots[0]); |
| 3540 | |
| 3541 | if (found_key.objectid != objectid) |
| 3542 | break; |
| 3543 | |
Josef Bacik | 18ec90d | 2012-09-28 11:56:28 -0400 | [diff] [blame] | 3544 | found_key.offset = 0; |
| 3545 | found_key.type = 0; |
| 3546 | ret = btrfs_bin_search(path->nodes[0], &found_key, 0, |
| 3547 | &start_slot); |
| 3548 | |
| 3549 | ret = btrfs_del_items(trans, log, path, start_slot, |
| 3550 | path->slots[0] - start_slot + 1); |
| 3551 | /* |
| 3552 | * If start slot isn't 0 then we don't need to re-search, we've |
| 3553 | * found the last guy with the objectid in this tree. |
| 3554 | */ |
| 3555 | if (ret || start_slot != 0) |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 3556 | break; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3557 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3558 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3559 | btrfs_release_path(path); |
Josef Bacik | 5bdbeb2 | 2012-05-29 16:59:49 -0400 | [diff] [blame] | 3560 | if (ret > 0) |
| 3561 | ret = 0; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3562 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3563 | } |
| 3564 | |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3565 | static void fill_inode_item(struct btrfs_trans_handle *trans, |
| 3566 | struct extent_buffer *leaf, |
| 3567 | struct btrfs_inode_item *item, |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 3568 | struct inode *inode, int log_inode_only, |
| 3569 | u64 logged_isize) |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3570 | { |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3571 | struct btrfs_map_token token; |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3572 | |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3573 | btrfs_init_map_token(&token); |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3574 | |
| 3575 | if (log_inode_only) { |
| 3576 | /* set the generation to zero so the recover code |
| 3577 | * can tell the difference between an logging |
| 3578 | * just to say 'this inode exists' and a logging |
| 3579 | * to say 'update this inode with these values' |
| 3580 | */ |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3581 | btrfs_set_token_inode_generation(leaf, item, 0, &token); |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 3582 | btrfs_set_token_inode_size(leaf, item, logged_isize, &token); |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3583 | } else { |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3584 | btrfs_set_token_inode_generation(leaf, item, |
| 3585 | BTRFS_I(inode)->generation, |
| 3586 | &token); |
| 3587 | btrfs_set_token_inode_size(leaf, item, inode->i_size, &token); |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3588 | } |
| 3589 | |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3590 | btrfs_set_token_inode_uid(leaf, item, i_uid_read(inode), &token); |
| 3591 | btrfs_set_token_inode_gid(leaf, item, i_gid_read(inode), &token); |
| 3592 | btrfs_set_token_inode_mode(leaf, item, inode->i_mode, &token); |
| 3593 | btrfs_set_token_inode_nlink(leaf, item, inode->i_nlink, &token); |
| 3594 | |
David Sterba | a937b97 | 2014-12-12 17:39:12 +0100 | [diff] [blame] | 3595 | btrfs_set_token_timespec_sec(leaf, &item->atime, |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3596 | inode->i_atime.tv_sec, &token); |
David Sterba | a937b97 | 2014-12-12 17:39:12 +0100 | [diff] [blame] | 3597 | btrfs_set_token_timespec_nsec(leaf, &item->atime, |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3598 | inode->i_atime.tv_nsec, &token); |
| 3599 | |
David Sterba | a937b97 | 2014-12-12 17:39:12 +0100 | [diff] [blame] | 3600 | btrfs_set_token_timespec_sec(leaf, &item->mtime, |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3601 | inode->i_mtime.tv_sec, &token); |
David Sterba | a937b97 | 2014-12-12 17:39:12 +0100 | [diff] [blame] | 3602 | btrfs_set_token_timespec_nsec(leaf, &item->mtime, |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3603 | inode->i_mtime.tv_nsec, &token); |
| 3604 | |
David Sterba | a937b97 | 2014-12-12 17:39:12 +0100 | [diff] [blame] | 3605 | btrfs_set_token_timespec_sec(leaf, &item->ctime, |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3606 | inode->i_ctime.tv_sec, &token); |
David Sterba | a937b97 | 2014-12-12 17:39:12 +0100 | [diff] [blame] | 3607 | btrfs_set_token_timespec_nsec(leaf, &item->ctime, |
Josef Bacik | 0b1c6cc | 2012-10-23 16:03:44 -0400 | [diff] [blame] | 3608 | inode->i_ctime.tv_nsec, &token); |
| 3609 | |
| 3610 | btrfs_set_token_inode_nbytes(leaf, item, inode_get_bytes(inode), |
| 3611 | &token); |
| 3612 | |
| 3613 | btrfs_set_token_inode_sequence(leaf, item, inode->i_version, &token); |
| 3614 | btrfs_set_token_inode_transid(leaf, item, trans->transid, &token); |
| 3615 | btrfs_set_token_inode_rdev(leaf, item, inode->i_rdev, &token); |
| 3616 | btrfs_set_token_inode_flags(leaf, item, BTRFS_I(inode)->flags, &token); |
| 3617 | btrfs_set_token_inode_block_group(leaf, item, 0, &token); |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3618 | } |
| 3619 | |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 3620 | static int log_inode_item(struct btrfs_trans_handle *trans, |
| 3621 | struct btrfs_root *log, struct btrfs_path *path, |
Nikolay Borisov | 6d889a3 | 2017-01-18 00:31:47 +0200 | [diff] [blame] | 3622 | struct btrfs_inode *inode) |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 3623 | { |
| 3624 | struct btrfs_inode_item *inode_item; |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 3625 | int ret; |
| 3626 | |
Filipe David Borba Manana | efd0c40 | 2013-10-07 21:20:44 +0100 | [diff] [blame] | 3627 | ret = btrfs_insert_empty_item(trans, log, path, |
Nikolay Borisov | 6d889a3 | 2017-01-18 00:31:47 +0200 | [diff] [blame] | 3628 | &inode->location, sizeof(*inode_item)); |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 3629 | if (ret && ret != -EEXIST) |
| 3630 | return ret; |
| 3631 | inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 3632 | struct btrfs_inode_item); |
Nikolay Borisov | 6d889a3 | 2017-01-18 00:31:47 +0200 | [diff] [blame] | 3633 | fill_inode_item(trans, path->nodes[0], inode_item, &inode->vfs_inode, |
| 3634 | 0, 0); |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 3635 | btrfs_release_path(path); |
| 3636 | return 0; |
| 3637 | } |
| 3638 | |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3639 | static noinline int copy_items(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 44d70e1 | 2017-01-18 00:31:36 +0200 | [diff] [blame] | 3640 | struct btrfs_inode *inode, |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3641 | struct btrfs_path *dst_path, |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3642 | struct btrfs_path *src_path, u64 *last_extent, |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 3643 | int start_slot, int nr, int inode_only, |
| 3644 | u64 logged_isize) |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3645 | { |
Nikolay Borisov | 44d70e1 | 2017-01-18 00:31:36 +0200 | [diff] [blame] | 3646 | 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] | 3647 | unsigned long src_offset; |
| 3648 | unsigned long dst_offset; |
Nikolay Borisov | 44d70e1 | 2017-01-18 00:31:36 +0200 | [diff] [blame] | 3649 | struct btrfs_root *log = inode->root->log_root; |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3650 | struct btrfs_file_extent_item *extent; |
| 3651 | struct btrfs_inode_item *inode_item; |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3652 | struct extent_buffer *src = src_path->nodes[0]; |
| 3653 | struct btrfs_key first_key, last_key, key; |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3654 | int ret; |
| 3655 | struct btrfs_key *ins_keys; |
| 3656 | u32 *ins_sizes; |
| 3657 | char *ins_data; |
| 3658 | int i; |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 3659 | struct list_head ordered_sums; |
Nikolay Borisov | 44d70e1 | 2017-01-18 00:31:36 +0200 | [diff] [blame] | 3660 | int skip_csum = inode->flags & BTRFS_INODE_NODATASUM; |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3661 | bool has_extents = false; |
Filipe Manana | 74121f7c | 2014-08-07 12:00:44 +0100 | [diff] [blame] | 3662 | bool need_find_last_extent = true; |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3663 | bool done = false; |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 3664 | |
| 3665 | INIT_LIST_HEAD(&ordered_sums); |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3666 | |
| 3667 | ins_data = kmalloc(nr * sizeof(struct btrfs_key) + |
| 3668 | nr * sizeof(u32), GFP_NOFS); |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 3669 | if (!ins_data) |
| 3670 | return -ENOMEM; |
| 3671 | |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3672 | first_key.objectid = (u64)-1; |
| 3673 | |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3674 | ins_sizes = (u32 *)ins_data; |
| 3675 | ins_keys = (struct btrfs_key *)(ins_data + nr * sizeof(u32)); |
| 3676 | |
| 3677 | for (i = 0; i < nr; i++) { |
| 3678 | ins_sizes[i] = btrfs_item_size_nr(src, i + start_slot); |
| 3679 | btrfs_item_key_to_cpu(src, ins_keys + i, i + start_slot); |
| 3680 | } |
| 3681 | ret = btrfs_insert_empty_items(trans, log, dst_path, |
| 3682 | ins_keys, ins_sizes, nr); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3683 | if (ret) { |
| 3684 | kfree(ins_data); |
| 3685 | return ret; |
| 3686 | } |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3687 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3688 | for (i = 0; i < nr; i++, dst_path->slots[0]++) { |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3689 | dst_offset = btrfs_item_ptr_offset(dst_path->nodes[0], |
| 3690 | dst_path->slots[0]); |
| 3691 | |
| 3692 | src_offset = btrfs_item_ptr_offset(src, start_slot + i); |
| 3693 | |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3694 | if ((i == (nr - 1))) |
| 3695 | last_key = ins_keys[i]; |
| 3696 | |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3697 | if (ins_keys[i].type == BTRFS_INODE_ITEM_KEY) { |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3698 | inode_item = btrfs_item_ptr(dst_path->nodes[0], |
| 3699 | dst_path->slots[0], |
| 3700 | struct btrfs_inode_item); |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3701 | fill_inode_item(trans, dst_path->nodes[0], inode_item, |
David Sterba | f85b737 | 2017-01-20 14:54:07 +0100 | [diff] [blame] | 3702 | &inode->vfs_inode, |
| 3703 | inode_only == LOG_INODE_EXISTS, |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 3704 | logged_isize); |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3705 | } else { |
| 3706 | copy_extent_buffer(dst_path->nodes[0], src, dst_offset, |
| 3707 | src_offset, ins_sizes[i]); |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3708 | } |
Josef Bacik | 94edf4a | 2012-09-25 14:56:25 -0400 | [diff] [blame] | 3709 | |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3710 | /* |
| 3711 | * We set need_find_last_extent here in case we know we were |
| 3712 | * processing other items and then walk into the first extent in |
| 3713 | * the inode. If we don't hit an extent then nothing changes, |
| 3714 | * we'll do the last search the next time around. |
| 3715 | */ |
| 3716 | if (ins_keys[i].type == BTRFS_EXTENT_DATA_KEY) { |
| 3717 | has_extents = true; |
Filipe Manana | 74121f7c | 2014-08-07 12:00:44 +0100 | [diff] [blame] | 3718 | if (first_key.objectid == (u64)-1) |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3719 | first_key = ins_keys[i]; |
| 3720 | } else { |
| 3721 | need_find_last_extent = false; |
| 3722 | } |
| 3723 | |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3724 | /* take a reference on file data extents so that truncates |
| 3725 | * or deletes of this inode don't have to relog the inode |
| 3726 | * again |
| 3727 | */ |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 3728 | if (ins_keys[i].type == BTRFS_EXTENT_DATA_KEY && |
Liu Bo | d279440 | 2012-08-29 01:07:56 -0600 | [diff] [blame] | 3729 | !skip_csum) { |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3730 | int found_type; |
| 3731 | extent = btrfs_item_ptr(src, start_slot + i, |
| 3732 | struct btrfs_file_extent_item); |
| 3733 | |
liubo | 8e531cd | 2011-05-06 10:36:09 +0800 | [diff] [blame] | 3734 | if (btrfs_file_extent_generation(src, extent) < trans->transid) |
| 3735 | continue; |
| 3736 | |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3737 | found_type = btrfs_file_extent_type(src, extent); |
Josef Bacik | 6f1fed7 | 2012-09-26 11:07:06 -0400 | [diff] [blame] | 3738 | if (found_type == BTRFS_FILE_EXTENT_REG) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3739 | u64 ds, dl, cs, cl; |
| 3740 | ds = btrfs_file_extent_disk_bytenr(src, |
| 3741 | extent); |
| 3742 | /* ds == 0 is a hole */ |
| 3743 | if (ds == 0) |
| 3744 | continue; |
| 3745 | |
| 3746 | dl = btrfs_file_extent_disk_num_bytes(src, |
| 3747 | extent); |
| 3748 | cs = btrfs_file_extent_offset(src, extent); |
| 3749 | cl = btrfs_file_extent_num_bytes(src, |
Joe Perches | a419aef | 2009-08-18 11:18:35 -0700 | [diff] [blame] | 3750 | extent); |
Chris Mason | 580afd7 | 2008-12-08 19:15:39 -0500 | [diff] [blame] | 3751 | if (btrfs_file_extent_compression(src, |
| 3752 | extent)) { |
| 3753 | cs = 0; |
| 3754 | cl = dl; |
| 3755 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3756 | |
| 3757 | ret = btrfs_lookup_csums_range( |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3758 | fs_info->csum_root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3759 | ds + cs, ds + cs + cl - 1, |
Arne Jansen | a2de733 | 2011-03-08 14:14:00 +0100 | [diff] [blame] | 3760 | &ordered_sums, 0); |
Josef Bacik | 3650860 | 2013-04-25 16:23:32 -0400 | [diff] [blame] | 3761 | if (ret) { |
| 3762 | btrfs_release_path(dst_path); |
| 3763 | kfree(ins_data); |
| 3764 | return ret; |
| 3765 | } |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3766 | } |
| 3767 | } |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3768 | } |
| 3769 | |
| 3770 | btrfs_mark_buffer_dirty(dst_path->nodes[0]); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3771 | btrfs_release_path(dst_path); |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3772 | kfree(ins_data); |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 3773 | |
| 3774 | /* |
| 3775 | * we have to do this after the loop above to avoid changing the |
| 3776 | * log tree while trying to change the log tree. |
| 3777 | */ |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3778 | ret = 0; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3779 | while (!list_empty(&ordered_sums)) { |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 3780 | struct btrfs_ordered_sum *sums = list_entry(ordered_sums.next, |
| 3781 | struct btrfs_ordered_sum, |
| 3782 | list); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3783 | if (!ret) |
| 3784 | ret = btrfs_csum_file_blocks(trans, log, sums); |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 3785 | list_del(&sums->list); |
| 3786 | kfree(sums); |
| 3787 | } |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3788 | |
| 3789 | if (!has_extents) |
| 3790 | return ret; |
| 3791 | |
Filipe Manana | 74121f7c | 2014-08-07 12:00:44 +0100 | [diff] [blame] | 3792 | if (need_find_last_extent && *last_extent == first_key.offset) { |
| 3793 | /* |
| 3794 | * We don't have any leafs between our current one and the one |
| 3795 | * we processed before that can have file extent items for our |
| 3796 | * inode (and have a generation number smaller than our current |
| 3797 | * transaction id). |
| 3798 | */ |
| 3799 | need_find_last_extent = false; |
| 3800 | } |
| 3801 | |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3802 | /* |
| 3803 | * Because we use btrfs_search_forward we could skip leaves that were |
| 3804 | * not modified and then assume *last_extent is valid when it really |
| 3805 | * isn't. So back up to the previous leaf and read the end of the last |
| 3806 | * extent before we go and fill in holes. |
| 3807 | */ |
| 3808 | if (need_find_last_extent) { |
| 3809 | u64 len; |
| 3810 | |
Nikolay Borisov | 44d70e1 | 2017-01-18 00:31:36 +0200 | [diff] [blame] | 3811 | ret = btrfs_prev_leaf(inode->root, src_path); |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3812 | if (ret < 0) |
| 3813 | return ret; |
| 3814 | if (ret) |
| 3815 | goto fill_holes; |
| 3816 | if (src_path->slots[0]) |
| 3817 | src_path->slots[0]--; |
| 3818 | src = src_path->nodes[0]; |
| 3819 | btrfs_item_key_to_cpu(src, &key, src_path->slots[0]); |
Nikolay Borisov | 44d70e1 | 2017-01-18 00:31:36 +0200 | [diff] [blame] | 3820 | if (key.objectid != btrfs_ino(inode) || |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3821 | key.type != BTRFS_EXTENT_DATA_KEY) |
| 3822 | goto fill_holes; |
| 3823 | extent = btrfs_item_ptr(src, src_path->slots[0], |
| 3824 | struct btrfs_file_extent_item); |
| 3825 | if (btrfs_file_extent_type(src, extent) == |
| 3826 | BTRFS_FILE_EXTENT_INLINE) { |
Chris Mason | 514ac8a | 2014-01-03 21:07:00 -0800 | [diff] [blame] | 3827 | len = btrfs_file_extent_inline_len(src, |
| 3828 | src_path->slots[0], |
| 3829 | extent); |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3830 | *last_extent = ALIGN(key.offset + len, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3831 | fs_info->sectorsize); |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3832 | } else { |
| 3833 | len = btrfs_file_extent_num_bytes(src, extent); |
| 3834 | *last_extent = key.offset + len; |
| 3835 | } |
| 3836 | } |
| 3837 | fill_holes: |
| 3838 | /* So we did prev_leaf, now we need to move to the next leaf, but a few |
| 3839 | * things could have happened |
| 3840 | * |
| 3841 | * 1) A merge could have happened, so we could currently be on a leaf |
| 3842 | * that holds what we were copying in the first place. |
| 3843 | * 2) A split could have happened, and now not all of the items we want |
| 3844 | * are on the same leaf. |
| 3845 | * |
| 3846 | * So we need to adjust how we search for holes, we need to drop the |
| 3847 | * path and re-search for the first extent key we found, and then walk |
| 3848 | * forward until we hit the last one we copied. |
| 3849 | */ |
| 3850 | if (need_find_last_extent) { |
| 3851 | /* btrfs_prev_leaf could return 1 without releasing the path */ |
| 3852 | btrfs_release_path(src_path); |
David Sterba | f85b737 | 2017-01-20 14:54:07 +0100 | [diff] [blame] | 3853 | ret = btrfs_search_slot(NULL, inode->root, &first_key, |
| 3854 | src_path, 0, 0); |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3855 | if (ret < 0) |
| 3856 | return ret; |
| 3857 | ASSERT(ret == 0); |
| 3858 | src = src_path->nodes[0]; |
| 3859 | i = src_path->slots[0]; |
| 3860 | } else { |
| 3861 | i = start_slot; |
| 3862 | } |
| 3863 | |
| 3864 | /* |
| 3865 | * Ok so here we need to go through and fill in any holes we may have |
| 3866 | * to make sure that holes are punched for those areas in case they had |
| 3867 | * extents previously. |
| 3868 | */ |
| 3869 | while (!done) { |
| 3870 | u64 offset, len; |
| 3871 | u64 extent_end; |
| 3872 | |
| 3873 | if (i >= btrfs_header_nritems(src_path->nodes[0])) { |
Nikolay Borisov | 44d70e1 | 2017-01-18 00:31:36 +0200 | [diff] [blame] | 3874 | ret = btrfs_next_leaf(inode->root, src_path); |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3875 | if (ret < 0) |
| 3876 | return ret; |
| 3877 | ASSERT(ret == 0); |
| 3878 | src = src_path->nodes[0]; |
| 3879 | i = 0; |
| 3880 | } |
| 3881 | |
| 3882 | btrfs_item_key_to_cpu(src, &key, i); |
| 3883 | if (!btrfs_comp_cpu_keys(&key, &last_key)) |
| 3884 | done = true; |
Nikolay Borisov | 44d70e1 | 2017-01-18 00:31:36 +0200 | [diff] [blame] | 3885 | if (key.objectid != btrfs_ino(inode) || |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3886 | key.type != BTRFS_EXTENT_DATA_KEY) { |
| 3887 | i++; |
| 3888 | continue; |
| 3889 | } |
| 3890 | extent = btrfs_item_ptr(src, i, struct btrfs_file_extent_item); |
| 3891 | if (btrfs_file_extent_type(src, extent) == |
| 3892 | BTRFS_FILE_EXTENT_INLINE) { |
Chris Mason | 514ac8a | 2014-01-03 21:07:00 -0800 | [diff] [blame] | 3893 | len = btrfs_file_extent_inline_len(src, i, extent); |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 3894 | extent_end = ALIGN(key.offset + len, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3895 | fs_info->sectorsize); |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3896 | } else { |
| 3897 | len = btrfs_file_extent_num_bytes(src, extent); |
| 3898 | extent_end = key.offset + len; |
| 3899 | } |
| 3900 | i++; |
| 3901 | |
| 3902 | if (*last_extent == key.offset) { |
| 3903 | *last_extent = extent_end; |
| 3904 | continue; |
| 3905 | } |
| 3906 | offset = *last_extent; |
| 3907 | len = key.offset - *last_extent; |
Nikolay Borisov | 44d70e1 | 2017-01-18 00:31:36 +0200 | [diff] [blame] | 3908 | ret = btrfs_insert_file_extent(trans, log, btrfs_ino(inode), |
David Sterba | f85b737 | 2017-01-20 14:54:07 +0100 | [diff] [blame] | 3909 | offset, 0, 0, len, 0, len, 0, 0, 0); |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3910 | if (ret) |
| 3911 | break; |
Filipe Manana | 74121f7c | 2014-08-07 12:00:44 +0100 | [diff] [blame] | 3912 | *last_extent = extent_end; |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 3913 | } |
| 3914 | /* |
| 3915 | * Need to let the callers know we dropped the path so they should |
| 3916 | * re-search. |
| 3917 | */ |
| 3918 | if (!ret && need_find_last_extent) |
| 3919 | ret = 1; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3920 | return ret; |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3921 | } |
| 3922 | |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 3923 | static int extent_cmp(void *priv, struct list_head *a, struct list_head *b) |
| 3924 | { |
| 3925 | struct extent_map *em1, *em2; |
| 3926 | |
| 3927 | em1 = list_entry(a, struct extent_map, list); |
| 3928 | em2 = list_entry(b, struct extent_map, list); |
| 3929 | |
| 3930 | if (em1->start < em2->start) |
| 3931 | return -1; |
| 3932 | else if (em1->start > em2->start) |
| 3933 | return 1; |
| 3934 | return 0; |
| 3935 | } |
| 3936 | |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 3937 | static int wait_ordered_extents(struct btrfs_trans_handle *trans, |
| 3938 | struct inode *inode, |
| 3939 | struct btrfs_root *root, |
| 3940 | const struct extent_map *em, |
| 3941 | const struct list_head *logged_list, |
| 3942 | bool *ordered_io_error) |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 3943 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3944 | struct btrfs_fs_info *fs_info = root->fs_info; |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 3945 | struct btrfs_ordered_extent *ordered; |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 3946 | struct btrfs_root *log = root->log_root; |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 3947 | u64 mod_start = em->mod_start; |
| 3948 | u64 mod_len = em->mod_len; |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 3949 | const bool skip_csum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM; |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 3950 | u64 csum_offset; |
| 3951 | u64 csum_len; |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 3952 | LIST_HEAD(ordered_sums); |
| 3953 | int ret = 0; |
Josef Bacik | 09a2a8f9 | 2013-04-05 16:51:15 -0400 | [diff] [blame] | 3954 | |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 3955 | *ordered_io_error = false; |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 3956 | |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 3957 | if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) || |
| 3958 | em->block_start == EXTENT_MAP_HOLE) |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 3959 | return 0; |
| 3960 | |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 3961 | /* |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 3962 | * Wait far any ordered extent that covers our extent map. If it |
| 3963 | * finishes without an error, first check and see if our csums are on |
| 3964 | * our outstanding ordered extents. |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 3965 | */ |
Miao Xie | 827463c | 2014-01-14 20:31:51 +0800 | [diff] [blame] | 3966 | list_for_each_entry(ordered, logged_list, log_list) { |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 3967 | struct btrfs_ordered_sum *sum; |
| 3968 | |
| 3969 | if (!mod_len) |
| 3970 | break; |
| 3971 | |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 3972 | if (ordered->file_offset + ordered->len <= mod_start || |
| 3973 | mod_start + mod_len <= ordered->file_offset) |
| 3974 | continue; |
| 3975 | |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 3976 | if (!test_bit(BTRFS_ORDERED_IO_DONE, &ordered->flags) && |
| 3977 | !test_bit(BTRFS_ORDERED_IOERR, &ordered->flags) && |
| 3978 | !test_bit(BTRFS_ORDERED_DIRECT, &ordered->flags)) { |
| 3979 | const u64 start = ordered->file_offset; |
| 3980 | const u64 end = ordered->file_offset + ordered->len - 1; |
| 3981 | |
| 3982 | WARN_ON(ordered->inode != inode); |
| 3983 | filemap_fdatawrite_range(inode->i_mapping, start, end); |
| 3984 | } |
| 3985 | |
| 3986 | wait_event(ordered->wait, |
| 3987 | (test_bit(BTRFS_ORDERED_IO_DONE, &ordered->flags) || |
| 3988 | test_bit(BTRFS_ORDERED_IOERR, &ordered->flags))); |
| 3989 | |
| 3990 | if (test_bit(BTRFS_ORDERED_IOERR, &ordered->flags)) { |
Filipe Manana | b38ef71 | 2014-11-13 17:01:45 +0000 | [diff] [blame] | 3991 | /* |
| 3992 | * Clear the AS_EIO/AS_ENOSPC flags from the inode's |
| 3993 | * i_mapping flags, so that the next fsync won't get |
| 3994 | * an outdated io error too. |
| 3995 | */ |
Miklos Szeredi | f031221 | 2016-09-16 12:44:21 +0200 | [diff] [blame] | 3996 | filemap_check_errors(inode->i_mapping); |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 3997 | *ordered_io_error = true; |
| 3998 | break; |
| 3999 | } |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 4000 | /* |
| 4001 | * We are going to copy all the csums on this ordered extent, so |
| 4002 | * go ahead and adjust mod_start and mod_len in case this |
| 4003 | * ordered extent has already been logged. |
| 4004 | */ |
| 4005 | if (ordered->file_offset > mod_start) { |
| 4006 | if (ordered->file_offset + ordered->len >= |
| 4007 | mod_start + mod_len) |
| 4008 | mod_len = ordered->file_offset - mod_start; |
| 4009 | /* |
| 4010 | * If we have this case |
| 4011 | * |
| 4012 | * |--------- logged extent ---------| |
| 4013 | * |----- ordered extent ----| |
| 4014 | * |
| 4015 | * Just don't mess with mod_start and mod_len, we'll |
| 4016 | * just end up logging more csums than we need and it |
| 4017 | * will be ok. |
| 4018 | */ |
| 4019 | } else { |
| 4020 | if (ordered->file_offset + ordered->len < |
| 4021 | mod_start + mod_len) { |
| 4022 | mod_len = (mod_start + mod_len) - |
| 4023 | (ordered->file_offset + ordered->len); |
| 4024 | mod_start = ordered->file_offset + |
| 4025 | ordered->len; |
| 4026 | } else { |
| 4027 | mod_len = 0; |
| 4028 | } |
| 4029 | } |
| 4030 | |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4031 | if (skip_csum) |
| 4032 | continue; |
| 4033 | |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 4034 | /* |
| 4035 | * To keep us from looping for the above case of an ordered |
| 4036 | * extent that falls inside of the logged extent. |
| 4037 | */ |
| 4038 | if (test_and_set_bit(BTRFS_ORDERED_LOGGED_CSUM, |
| 4039 | &ordered->flags)) |
| 4040 | continue; |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 4041 | |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 4042 | list_for_each_entry(sum, &ordered->list, list) { |
| 4043 | ret = btrfs_csum_file_blocks(trans, log, sum); |
Miao Xie | 827463c | 2014-01-14 20:31:51 +0800 | [diff] [blame] | 4044 | if (ret) |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4045 | break; |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 4046 | } |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 4047 | } |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 4048 | |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4049 | if (*ordered_io_error || !mod_len || ret || skip_csum) |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 4050 | return ret; |
| 4051 | |
Filipe David Borba Manana | 488111a | 2013-10-28 16:30:29 +0000 | [diff] [blame] | 4052 | if (em->compress_type) { |
| 4053 | csum_offset = 0; |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4054 | csum_len = max(em->block_len, em->orig_block_len); |
Filipe David Borba Manana | 488111a | 2013-10-28 16:30:29 +0000 | [diff] [blame] | 4055 | } else { |
| 4056 | csum_offset = mod_start - em->start; |
| 4057 | csum_len = mod_len; |
| 4058 | } |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 4059 | |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 4060 | /* block start is already adjusted for the file extent offset. */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4061 | ret = btrfs_lookup_csums_range(fs_info->csum_root, |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 4062 | em->block_start + csum_offset, |
| 4063 | em->block_start + csum_offset + |
| 4064 | csum_len - 1, &ordered_sums, 0); |
| 4065 | if (ret) |
| 4066 | return ret; |
| 4067 | |
| 4068 | while (!list_empty(&ordered_sums)) { |
| 4069 | struct btrfs_ordered_sum *sums = list_entry(ordered_sums.next, |
| 4070 | struct btrfs_ordered_sum, |
| 4071 | list); |
| 4072 | if (!ret) |
| 4073 | ret = btrfs_csum_file_blocks(trans, log, sums); |
| 4074 | list_del(&sums->list); |
| 4075 | kfree(sums); |
| 4076 | } |
| 4077 | |
| 4078 | return ret; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4079 | } |
| 4080 | |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4081 | static int log_one_extent(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 9d12262 | 2017-01-18 00:31:40 +0200 | [diff] [blame] | 4082 | struct btrfs_inode *inode, struct btrfs_root *root, |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4083 | const struct extent_map *em, |
| 4084 | struct btrfs_path *path, |
| 4085 | const struct list_head *logged_list, |
| 4086 | struct btrfs_log_ctx *ctx) |
| 4087 | { |
| 4088 | struct btrfs_root *log = root->log_root; |
| 4089 | struct btrfs_file_extent_item *fi; |
| 4090 | struct extent_buffer *leaf; |
| 4091 | struct btrfs_map_token token; |
| 4092 | struct btrfs_key key; |
| 4093 | u64 extent_offset = em->start - em->orig_start; |
| 4094 | u64 block_len; |
| 4095 | int ret; |
| 4096 | int extent_inserted = 0; |
| 4097 | bool ordered_io_err = false; |
| 4098 | |
David Sterba | f85b737 | 2017-01-20 14:54:07 +0100 | [diff] [blame] | 4099 | ret = wait_ordered_extents(trans, &inode->vfs_inode, root, em, |
| 4100 | logged_list, &ordered_io_err); |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4101 | if (ret) |
| 4102 | return ret; |
| 4103 | |
| 4104 | if (ordered_io_err) { |
| 4105 | ctx->io_err = -EIO; |
| 4106 | return 0; |
| 4107 | } |
| 4108 | |
| 4109 | btrfs_init_map_token(&token); |
| 4110 | |
Nikolay Borisov | 9d12262 | 2017-01-18 00:31:40 +0200 | [diff] [blame] | 4111 | ret = __btrfs_drop_extents(trans, log, &inode->vfs_inode, path, em->start, |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4112 | em->start + em->len, NULL, 0, 1, |
| 4113 | sizeof(*fi), &extent_inserted); |
| 4114 | if (ret) |
| 4115 | return ret; |
| 4116 | |
| 4117 | if (!extent_inserted) { |
Nikolay Borisov | 9d12262 | 2017-01-18 00:31:40 +0200 | [diff] [blame] | 4118 | key.objectid = btrfs_ino(inode); |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4119 | key.type = BTRFS_EXTENT_DATA_KEY; |
| 4120 | key.offset = em->start; |
| 4121 | |
| 4122 | ret = btrfs_insert_empty_item(trans, log, path, &key, |
| 4123 | sizeof(*fi)); |
| 4124 | if (ret) |
| 4125 | return ret; |
| 4126 | } |
| 4127 | leaf = path->nodes[0]; |
| 4128 | fi = btrfs_item_ptr(leaf, path->slots[0], |
| 4129 | struct btrfs_file_extent_item); |
| 4130 | |
Josef Bacik | 50d9aa9 | 2014-11-21 14:52:38 -0500 | [diff] [blame] | 4131 | btrfs_set_token_file_extent_generation(leaf, fi, trans->transid, |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4132 | &token); |
| 4133 | if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) |
| 4134 | btrfs_set_token_file_extent_type(leaf, fi, |
| 4135 | BTRFS_FILE_EXTENT_PREALLOC, |
| 4136 | &token); |
| 4137 | else |
| 4138 | btrfs_set_token_file_extent_type(leaf, fi, |
| 4139 | BTRFS_FILE_EXTENT_REG, |
| 4140 | &token); |
| 4141 | |
| 4142 | block_len = max(em->block_len, em->orig_block_len); |
| 4143 | if (em->compress_type != BTRFS_COMPRESS_NONE) { |
| 4144 | btrfs_set_token_file_extent_disk_bytenr(leaf, fi, |
| 4145 | em->block_start, |
| 4146 | &token); |
| 4147 | btrfs_set_token_file_extent_disk_num_bytes(leaf, fi, block_len, |
| 4148 | &token); |
| 4149 | } else if (em->block_start < EXTENT_MAP_LAST_BYTE) { |
| 4150 | btrfs_set_token_file_extent_disk_bytenr(leaf, fi, |
| 4151 | em->block_start - |
| 4152 | extent_offset, &token); |
| 4153 | btrfs_set_token_file_extent_disk_num_bytes(leaf, fi, block_len, |
| 4154 | &token); |
| 4155 | } else { |
| 4156 | btrfs_set_token_file_extent_disk_bytenr(leaf, fi, 0, &token); |
| 4157 | btrfs_set_token_file_extent_disk_num_bytes(leaf, fi, 0, |
| 4158 | &token); |
| 4159 | } |
| 4160 | |
| 4161 | btrfs_set_token_file_extent_offset(leaf, fi, extent_offset, &token); |
| 4162 | btrfs_set_token_file_extent_num_bytes(leaf, fi, em->len, &token); |
| 4163 | btrfs_set_token_file_extent_ram_bytes(leaf, fi, em->ram_bytes, &token); |
| 4164 | btrfs_set_token_file_extent_compression(leaf, fi, em->compress_type, |
| 4165 | &token); |
| 4166 | btrfs_set_token_file_extent_encryption(leaf, fi, 0, &token); |
| 4167 | btrfs_set_token_file_extent_other_encoding(leaf, fi, 0, &token); |
| 4168 | btrfs_mark_buffer_dirty(leaf); |
| 4169 | |
| 4170 | btrfs_release_path(path); |
| 4171 | |
| 4172 | return ret; |
| 4173 | } |
| 4174 | |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4175 | static int btrfs_log_changed_extents(struct btrfs_trans_handle *trans, |
| 4176 | struct btrfs_root *root, |
Nikolay Borisov | 9d12262 | 2017-01-18 00:31:40 +0200 | [diff] [blame] | 4177 | struct btrfs_inode *inode, |
Miao Xie | 827463c | 2014-01-14 20:31:51 +0800 | [diff] [blame] | 4178 | struct btrfs_path *path, |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4179 | struct list_head *logged_list, |
Filipe Manana | de0ee0e | 2016-01-21 10:17:54 +0000 | [diff] [blame] | 4180 | struct btrfs_log_ctx *ctx, |
| 4181 | const u64 start, |
| 4182 | const u64 end) |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4183 | { |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4184 | struct extent_map *em, *n; |
| 4185 | struct list_head extents; |
Nikolay Borisov | 9d12262 | 2017-01-18 00:31:40 +0200 | [diff] [blame] | 4186 | struct extent_map_tree *tree = &inode->extent_tree; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4187 | u64 test_gen; |
| 4188 | int ret = 0; |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 4189 | int num = 0; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4190 | |
| 4191 | INIT_LIST_HEAD(&extents); |
| 4192 | |
Nikolay Borisov | 9d12262 | 2017-01-18 00:31:40 +0200 | [diff] [blame] | 4193 | down_write(&inode->dio_sem); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4194 | write_lock(&tree->lock); |
| 4195 | test_gen = root->fs_info->last_trans_committed; |
| 4196 | |
| 4197 | list_for_each_entry_safe(em, n, &tree->modified_extents, list) { |
| 4198 | list_del_init(&em->list); |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 4199 | |
| 4200 | /* |
| 4201 | * Just an arbitrary number, this can be really CPU intensive |
| 4202 | * once we start getting a lot of extents, and really once we |
| 4203 | * have a bunch of extents we just want to commit since it will |
| 4204 | * be faster. |
| 4205 | */ |
| 4206 | if (++num > 32768) { |
| 4207 | list_del_init(&tree->modified_extents); |
| 4208 | ret = -EFBIG; |
| 4209 | goto process; |
| 4210 | } |
| 4211 | |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4212 | if (em->generation <= test_gen) |
| 4213 | continue; |
Josef Bacik | ff44c6e | 2012-09-14 12:59:20 -0400 | [diff] [blame] | 4214 | /* Need a ref to keep it from getting evicted from cache */ |
Elena Reshetova | 490b54d | 2017-03-03 10:55:12 +0200 | [diff] [blame] | 4215 | refcount_inc(&em->refs); |
Josef Bacik | ff44c6e | 2012-09-14 12:59:20 -0400 | [diff] [blame] | 4216 | set_bit(EXTENT_FLAG_LOGGING, &em->flags); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4217 | list_add_tail(&em->list, &extents); |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 4218 | num++; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4219 | } |
| 4220 | |
| 4221 | list_sort(NULL, &extents, extent_cmp); |
Nikolay Borisov | 9d12262 | 2017-01-18 00:31:40 +0200 | [diff] [blame] | 4222 | btrfs_get_logged_extents(inode, logged_list, start, end); |
Filipe Manana | 5f9a8a5 | 2016-05-12 13:53:36 +0100 | [diff] [blame] | 4223 | /* |
| 4224 | * Some ordered extents started by fsync might have completed |
| 4225 | * before we could collect them into the list logged_list, which |
| 4226 | * means they're gone, not in our logged_list nor in the inode's |
| 4227 | * ordered tree. We want the application/user space to know an |
| 4228 | * error happened while attempting to persist file data so that |
| 4229 | * it can take proper action. If such error happened, we leave |
| 4230 | * without writing to the log tree and the fsync must report the |
| 4231 | * file data write error and not commit the current transaction. |
| 4232 | */ |
Nikolay Borisov | 9d12262 | 2017-01-18 00:31:40 +0200 | [diff] [blame] | 4233 | ret = filemap_check_errors(inode->vfs_inode.i_mapping); |
Filipe Manana | 5f9a8a5 | 2016-05-12 13:53:36 +0100 | [diff] [blame] | 4234 | if (ret) |
| 4235 | ctx->io_err = ret; |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 4236 | process: |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4237 | while (!list_empty(&extents)) { |
| 4238 | em = list_entry(extents.next, struct extent_map, list); |
| 4239 | |
| 4240 | list_del_init(&em->list); |
| 4241 | |
| 4242 | /* |
| 4243 | * If we had an error we just need to delete everybody from our |
| 4244 | * private list. |
| 4245 | */ |
Josef Bacik | ff44c6e | 2012-09-14 12:59:20 -0400 | [diff] [blame] | 4246 | if (ret) { |
Josef Bacik | 201a903 | 2013-01-24 12:02:07 -0500 | [diff] [blame] | 4247 | clear_em_logging(tree, em); |
Josef Bacik | ff44c6e | 2012-09-14 12:59:20 -0400 | [diff] [blame] | 4248 | free_extent_map(em); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4249 | continue; |
Josef Bacik | ff44c6e | 2012-09-14 12:59:20 -0400 | [diff] [blame] | 4250 | } |
| 4251 | |
| 4252 | write_unlock(&tree->lock); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4253 | |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4254 | ret = log_one_extent(trans, inode, root, em, path, logged_list, |
| 4255 | ctx); |
Josef Bacik | ff44c6e | 2012-09-14 12:59:20 -0400 | [diff] [blame] | 4256 | write_lock(&tree->lock); |
Josef Bacik | 201a903 | 2013-01-24 12:02:07 -0500 | [diff] [blame] | 4257 | clear_em_logging(tree, em); |
| 4258 | free_extent_map(em); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4259 | } |
Josef Bacik | ff44c6e | 2012-09-14 12:59:20 -0400 | [diff] [blame] | 4260 | WARN_ON(!list_empty(&extents)); |
| 4261 | write_unlock(&tree->lock); |
Nikolay Borisov | 9d12262 | 2017-01-18 00:31:40 +0200 | [diff] [blame] | 4262 | up_write(&inode->dio_sem); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4263 | |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4264 | btrfs_release_path(path); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4265 | return ret; |
| 4266 | } |
| 4267 | |
Nikolay Borisov | 481b01c | 2017-01-18 00:31:34 +0200 | [diff] [blame] | 4268 | 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] | 4269 | struct btrfs_path *path, u64 *size_ret) |
| 4270 | { |
| 4271 | struct btrfs_key key; |
| 4272 | int ret; |
| 4273 | |
Nikolay Borisov | 481b01c | 2017-01-18 00:31:34 +0200 | [diff] [blame] | 4274 | key.objectid = btrfs_ino(inode); |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 4275 | key.type = BTRFS_INODE_ITEM_KEY; |
| 4276 | key.offset = 0; |
| 4277 | |
| 4278 | ret = btrfs_search_slot(NULL, log, &key, path, 0, 0); |
| 4279 | if (ret < 0) { |
| 4280 | return ret; |
| 4281 | } else if (ret > 0) { |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 4282 | *size_ret = 0; |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 4283 | } else { |
| 4284 | struct btrfs_inode_item *item; |
| 4285 | |
| 4286 | item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 4287 | struct btrfs_inode_item); |
| 4288 | *size_ret = btrfs_inode_size(path->nodes[0], item); |
| 4289 | } |
| 4290 | |
| 4291 | btrfs_release_path(path); |
| 4292 | return 0; |
| 4293 | } |
| 4294 | |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 4295 | /* |
| 4296 | * At the moment we always log all xattrs. This is to figure out at log replay |
| 4297 | * time which xattrs must have their deletion replayed. If a xattr is missing |
| 4298 | * in the log tree and exists in the fs/subvol tree, we delete it. This is |
| 4299 | * because if a xattr is deleted, the inode is fsynced and a power failure |
| 4300 | * happens, causing the log to be replayed the next time the fs is mounted, |
| 4301 | * we want the xattr to not exist anymore (same behaviour as other filesystems |
| 4302 | * with a journal, ext3/4, xfs, f2fs, etc). |
| 4303 | */ |
| 4304 | static int btrfs_log_all_xattrs(struct btrfs_trans_handle *trans, |
| 4305 | struct btrfs_root *root, |
Nikolay Borisov | 1a93c36 | 2017-01-18 00:31:37 +0200 | [diff] [blame] | 4306 | struct btrfs_inode *inode, |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 4307 | struct btrfs_path *path, |
| 4308 | struct btrfs_path *dst_path) |
| 4309 | { |
| 4310 | int ret; |
| 4311 | struct btrfs_key key; |
Nikolay Borisov | 1a93c36 | 2017-01-18 00:31:37 +0200 | [diff] [blame] | 4312 | const u64 ino = btrfs_ino(inode); |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 4313 | int ins_nr = 0; |
| 4314 | int start_slot = 0; |
| 4315 | |
| 4316 | key.objectid = ino; |
| 4317 | key.type = BTRFS_XATTR_ITEM_KEY; |
| 4318 | key.offset = 0; |
| 4319 | |
| 4320 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 4321 | if (ret < 0) |
| 4322 | return ret; |
| 4323 | |
| 4324 | while (true) { |
| 4325 | int slot = path->slots[0]; |
| 4326 | struct extent_buffer *leaf = path->nodes[0]; |
| 4327 | int nritems = btrfs_header_nritems(leaf); |
| 4328 | |
| 4329 | if (slot >= nritems) { |
| 4330 | if (ins_nr > 0) { |
| 4331 | u64 last_extent = 0; |
| 4332 | |
Nikolay Borisov | 1a93c36 | 2017-01-18 00:31:37 +0200 | [diff] [blame] | 4333 | ret = copy_items(trans, inode, dst_path, path, |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 4334 | &last_extent, start_slot, |
| 4335 | ins_nr, 1, 0); |
| 4336 | /* can't be 1, extent items aren't processed */ |
| 4337 | ASSERT(ret <= 0); |
| 4338 | if (ret < 0) |
| 4339 | return ret; |
| 4340 | ins_nr = 0; |
| 4341 | } |
| 4342 | ret = btrfs_next_leaf(root, path); |
| 4343 | if (ret < 0) |
| 4344 | return ret; |
| 4345 | else if (ret > 0) |
| 4346 | break; |
| 4347 | continue; |
| 4348 | } |
| 4349 | |
| 4350 | btrfs_item_key_to_cpu(leaf, &key, slot); |
| 4351 | if (key.objectid != ino || key.type != BTRFS_XATTR_ITEM_KEY) |
| 4352 | break; |
| 4353 | |
| 4354 | if (ins_nr == 0) |
| 4355 | start_slot = slot; |
| 4356 | ins_nr++; |
| 4357 | path->slots[0]++; |
| 4358 | cond_resched(); |
| 4359 | } |
| 4360 | if (ins_nr > 0) { |
| 4361 | u64 last_extent = 0; |
| 4362 | |
Nikolay Borisov | 1a93c36 | 2017-01-18 00:31:37 +0200 | [diff] [blame] | 4363 | ret = copy_items(trans, inode, dst_path, path, |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 4364 | &last_extent, start_slot, |
| 4365 | ins_nr, 1, 0); |
| 4366 | /* can't be 1, extent items aren't processed */ |
| 4367 | ASSERT(ret <= 0); |
| 4368 | if (ret < 0) |
| 4369 | return ret; |
| 4370 | } |
| 4371 | |
| 4372 | return 0; |
| 4373 | } |
| 4374 | |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4375 | /* |
| 4376 | * If the no holes feature is enabled we need to make sure any hole between the |
| 4377 | * last extent and the i_size of our inode is explicitly marked in the log. This |
| 4378 | * is to make sure that doing something like: |
| 4379 | * |
| 4380 | * 1) create file with 128Kb of data |
| 4381 | * 2) truncate file to 64Kb |
| 4382 | * 3) truncate file to 256Kb |
| 4383 | * 4) fsync file |
| 4384 | * 5) <crash/power failure> |
| 4385 | * 6) mount fs and trigger log replay |
| 4386 | * |
| 4387 | * Will give us a file with a size of 256Kb, the first 64Kb of data match what |
| 4388 | * the file had in its first 64Kb of data at step 1 and the last 192Kb of the |
| 4389 | * file correspond to a hole. The presence of explicit holes in a log tree is |
| 4390 | * what guarantees that log replay will remove/adjust file extent items in the |
| 4391 | * fs/subvol tree. |
| 4392 | * |
| 4393 | * Here we do not need to care about holes between extents, that is already done |
| 4394 | * by copy_items(). We also only need to do this in the full sync path, where we |
| 4395 | * lookup for extents from the fs/subvol tree only. In the fast path case, we |
| 4396 | * lookup the list of modified extent maps and if any represents a hole, we |
| 4397 | * insert a corresponding extent representing a hole in the log tree. |
| 4398 | */ |
| 4399 | static int btrfs_log_trailing_hole(struct btrfs_trans_handle *trans, |
| 4400 | struct btrfs_root *root, |
Nikolay Borisov | a0308dd | 2017-01-18 00:31:38 +0200 | [diff] [blame] | 4401 | struct btrfs_inode *inode, |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4402 | struct btrfs_path *path) |
| 4403 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4404 | struct btrfs_fs_info *fs_info = root->fs_info; |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4405 | int ret; |
| 4406 | struct btrfs_key key; |
| 4407 | u64 hole_start; |
| 4408 | u64 hole_size; |
| 4409 | struct extent_buffer *leaf; |
| 4410 | struct btrfs_root *log = root->log_root; |
Nikolay Borisov | a0308dd | 2017-01-18 00:31:38 +0200 | [diff] [blame] | 4411 | const u64 ino = btrfs_ino(inode); |
| 4412 | const u64 i_size = i_size_read(&inode->vfs_inode); |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4413 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4414 | if (!btrfs_fs_incompat(fs_info, NO_HOLES)) |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4415 | return 0; |
| 4416 | |
| 4417 | key.objectid = ino; |
| 4418 | key.type = BTRFS_EXTENT_DATA_KEY; |
| 4419 | key.offset = (u64)-1; |
| 4420 | |
| 4421 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 4422 | ASSERT(ret != 0); |
| 4423 | if (ret < 0) |
| 4424 | return ret; |
| 4425 | |
| 4426 | ASSERT(path->slots[0] > 0); |
| 4427 | path->slots[0]--; |
| 4428 | leaf = path->nodes[0]; |
| 4429 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 4430 | |
| 4431 | if (key.objectid != ino || key.type != BTRFS_EXTENT_DATA_KEY) { |
| 4432 | /* inode does not have any extents */ |
| 4433 | hole_start = 0; |
| 4434 | hole_size = i_size; |
| 4435 | } else { |
| 4436 | struct btrfs_file_extent_item *extent; |
| 4437 | u64 len; |
| 4438 | |
| 4439 | /* |
| 4440 | * If there's an extent beyond i_size, an explicit hole was |
| 4441 | * already inserted by copy_items(). |
| 4442 | */ |
| 4443 | if (key.offset >= i_size) |
| 4444 | return 0; |
| 4445 | |
| 4446 | extent = btrfs_item_ptr(leaf, path->slots[0], |
| 4447 | struct btrfs_file_extent_item); |
| 4448 | |
| 4449 | if (btrfs_file_extent_type(leaf, extent) == |
| 4450 | BTRFS_FILE_EXTENT_INLINE) { |
| 4451 | len = btrfs_file_extent_inline_len(leaf, |
| 4452 | path->slots[0], |
| 4453 | extent); |
| 4454 | ASSERT(len == i_size); |
| 4455 | return 0; |
| 4456 | } |
| 4457 | |
| 4458 | len = btrfs_file_extent_num_bytes(leaf, extent); |
| 4459 | /* Last extent goes beyond i_size, no need to log a hole. */ |
| 4460 | if (key.offset + len > i_size) |
| 4461 | return 0; |
| 4462 | hole_start = key.offset + len; |
| 4463 | hole_size = i_size - hole_start; |
| 4464 | } |
| 4465 | btrfs_release_path(path); |
| 4466 | |
| 4467 | /* Last extent ends at i_size. */ |
| 4468 | if (hole_size == 0) |
| 4469 | return 0; |
| 4470 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4471 | hole_size = ALIGN(hole_size, fs_info->sectorsize); |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4472 | ret = btrfs_insert_file_extent(trans, log, ino, hole_start, 0, 0, |
| 4473 | hole_size, 0, hole_size, 0, 0, 0); |
| 4474 | return ret; |
| 4475 | } |
| 4476 | |
Filipe Manana | 56f23fd | 2016-03-30 23:37:21 +0100 | [diff] [blame] | 4477 | /* |
| 4478 | * When we are logging a new inode X, check if it doesn't have a reference that |
| 4479 | * matches the reference from some other inode Y created in a past transaction |
| 4480 | * and that was renamed in the current transaction. If we don't do this, then at |
| 4481 | * log replay time we can lose inode Y (and all its files if it's a directory): |
| 4482 | * |
| 4483 | * mkdir /mnt/x |
| 4484 | * echo "hello world" > /mnt/x/foobar |
| 4485 | * sync |
| 4486 | * mv /mnt/x /mnt/y |
| 4487 | * mkdir /mnt/x # or touch /mnt/x |
| 4488 | * xfs_io -c fsync /mnt/x |
| 4489 | * <power fail> |
| 4490 | * mount fs, trigger log replay |
| 4491 | * |
| 4492 | * After the log replay procedure, we would lose the first directory and all its |
| 4493 | * files (file foobar). |
| 4494 | * For the case where inode Y is not a directory we simply end up losing it: |
| 4495 | * |
| 4496 | * echo "123" > /mnt/foo |
| 4497 | * sync |
| 4498 | * mv /mnt/foo /mnt/bar |
| 4499 | * echo "abc" > /mnt/foo |
| 4500 | * xfs_io -c fsync /mnt/foo |
| 4501 | * <power fail> |
| 4502 | * |
| 4503 | * We also need this for cases where a snapshot entry is replaced by some other |
| 4504 | * entry (file or directory) otherwise we end up with an unreplayable log due to |
| 4505 | * attempts to delete the snapshot entry (entry of type BTRFS_ROOT_ITEM_KEY) as |
| 4506 | * if it were a regular entry: |
| 4507 | * |
| 4508 | * mkdir /mnt/x |
| 4509 | * btrfs subvolume snapshot /mnt /mnt/x/snap |
| 4510 | * btrfs subvolume delete /mnt/x/snap |
| 4511 | * rmdir /mnt/x |
| 4512 | * mkdir /mnt/x |
| 4513 | * fsync /mnt/x or fsync some new file inside it |
| 4514 | * <power fail> |
| 4515 | * |
| 4516 | * The snapshot delete, rmdir of x, mkdir of a new x and the fsync all happen in |
| 4517 | * the same transaction. |
| 4518 | */ |
| 4519 | static int btrfs_check_ref_name_override(struct extent_buffer *eb, |
| 4520 | const int slot, |
| 4521 | const struct btrfs_key *key, |
Nikolay Borisov | 4791c8f | 2017-01-18 00:31:35 +0200 | [diff] [blame] | 4522 | struct btrfs_inode *inode, |
Filipe Manana | 44f714d | 2016-06-06 16:11:13 +0100 | [diff] [blame] | 4523 | u64 *other_ino) |
Filipe Manana | 56f23fd | 2016-03-30 23:37:21 +0100 | [diff] [blame] | 4524 | { |
| 4525 | int ret; |
| 4526 | struct btrfs_path *search_path; |
| 4527 | char *name = NULL; |
| 4528 | u32 name_len = 0; |
| 4529 | u32 item_size = btrfs_item_size_nr(eb, slot); |
| 4530 | u32 cur_offset = 0; |
| 4531 | unsigned long ptr = btrfs_item_ptr_offset(eb, slot); |
| 4532 | |
| 4533 | search_path = btrfs_alloc_path(); |
| 4534 | if (!search_path) |
| 4535 | return -ENOMEM; |
| 4536 | search_path->search_commit_root = 1; |
| 4537 | search_path->skip_locking = 1; |
| 4538 | |
| 4539 | while (cur_offset < item_size) { |
| 4540 | u64 parent; |
| 4541 | u32 this_name_len; |
| 4542 | u32 this_len; |
| 4543 | unsigned long name_ptr; |
| 4544 | struct btrfs_dir_item *di; |
| 4545 | |
| 4546 | if (key->type == BTRFS_INODE_REF_KEY) { |
| 4547 | struct btrfs_inode_ref *iref; |
| 4548 | |
| 4549 | iref = (struct btrfs_inode_ref *)(ptr + cur_offset); |
| 4550 | parent = key->offset; |
| 4551 | this_name_len = btrfs_inode_ref_name_len(eb, iref); |
| 4552 | name_ptr = (unsigned long)(iref + 1); |
| 4553 | this_len = sizeof(*iref) + this_name_len; |
| 4554 | } else { |
| 4555 | struct btrfs_inode_extref *extref; |
| 4556 | |
| 4557 | extref = (struct btrfs_inode_extref *)(ptr + |
| 4558 | cur_offset); |
| 4559 | parent = btrfs_inode_extref_parent(eb, extref); |
| 4560 | this_name_len = btrfs_inode_extref_name_len(eb, extref); |
| 4561 | name_ptr = (unsigned long)&extref->name; |
| 4562 | this_len = sizeof(*extref) + this_name_len; |
| 4563 | } |
| 4564 | |
Su Yue | 3c1d418 | 2017-06-06 17:57:04 +0800 | [diff] [blame] | 4565 | ret = btrfs_is_name_len_valid(eb, slot, name_ptr, |
| 4566 | this_name_len); |
| 4567 | if (!ret) { |
| 4568 | ret = -EIO; |
| 4569 | goto out; |
| 4570 | } |
Filipe Manana | 56f23fd | 2016-03-30 23:37:21 +0100 | [diff] [blame] | 4571 | if (this_name_len > name_len) { |
| 4572 | char *new_name; |
| 4573 | |
| 4574 | new_name = krealloc(name, this_name_len, GFP_NOFS); |
| 4575 | if (!new_name) { |
| 4576 | ret = -ENOMEM; |
| 4577 | goto out; |
| 4578 | } |
| 4579 | name_len = this_name_len; |
| 4580 | name = new_name; |
| 4581 | } |
| 4582 | |
| 4583 | read_extent_buffer(eb, name, name_ptr, this_name_len); |
Nikolay Borisov | 4791c8f | 2017-01-18 00:31:35 +0200 | [diff] [blame] | 4584 | di = btrfs_lookup_dir_item(NULL, inode->root, search_path, |
| 4585 | parent, name, this_name_len, 0); |
Filipe Manana | 56f23fd | 2016-03-30 23:37:21 +0100 | [diff] [blame] | 4586 | if (di && !IS_ERR(di)) { |
Filipe Manana | 44f714d | 2016-06-06 16:11:13 +0100 | [diff] [blame] | 4587 | struct btrfs_key di_key; |
| 4588 | |
| 4589 | btrfs_dir_item_key_to_cpu(search_path->nodes[0], |
| 4590 | di, &di_key); |
| 4591 | if (di_key.type == BTRFS_INODE_ITEM_KEY) { |
| 4592 | ret = 1; |
| 4593 | *other_ino = di_key.objectid; |
| 4594 | } else { |
| 4595 | ret = -EAGAIN; |
| 4596 | } |
Filipe Manana | 56f23fd | 2016-03-30 23:37:21 +0100 | [diff] [blame] | 4597 | goto out; |
| 4598 | } else if (IS_ERR(di)) { |
| 4599 | ret = PTR_ERR(di); |
| 4600 | goto out; |
| 4601 | } |
| 4602 | btrfs_release_path(search_path); |
| 4603 | |
| 4604 | cur_offset += this_len; |
| 4605 | } |
| 4606 | ret = 0; |
| 4607 | out: |
| 4608 | btrfs_free_path(search_path); |
| 4609 | kfree(name); |
| 4610 | return ret; |
| 4611 | } |
| 4612 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4613 | /* log a single inode in the tree log. |
| 4614 | * At least one parent directory for this inode must exist in the tree |
| 4615 | * or be logged already. |
| 4616 | * |
| 4617 | * Any items from this inode changed by the current transaction are copied |
| 4618 | * to the log tree. An extra reference is taken on any extents in this |
| 4619 | * file, allowing us to avoid a whole pile of corner cases around logging |
| 4620 | * blocks that have been removed from the tree. |
| 4621 | * |
| 4622 | * See LOG_INODE_ALL and related defines for a description of what inode_only |
| 4623 | * does. |
| 4624 | * |
| 4625 | * This handles both files and directories. |
| 4626 | */ |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 4627 | static int btrfs_log_inode(struct btrfs_trans_handle *trans, |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4628 | struct btrfs_root *root, struct btrfs_inode *inode, |
Filipe Manana | 49dae1b | 2014-09-06 22:34:39 +0100 | [diff] [blame] | 4629 | int inode_only, |
| 4630 | const loff_t start, |
Filipe Manana | 8407f55 | 2014-09-05 15:14:39 +0100 | [diff] [blame] | 4631 | const loff_t end, |
| 4632 | struct btrfs_log_ctx *ctx) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4633 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4634 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4635 | struct btrfs_path *path; |
| 4636 | struct btrfs_path *dst_path; |
| 4637 | struct btrfs_key min_key; |
| 4638 | struct btrfs_key max_key; |
| 4639 | struct btrfs_root *log = root->log_root; |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4640 | struct extent_buffer *src = NULL; |
Miao Xie | 827463c | 2014-01-14 20:31:51 +0800 | [diff] [blame] | 4641 | LIST_HEAD(logged_list); |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 4642 | u64 last_extent = 0; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 4643 | int err = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4644 | int ret; |
Chris Mason | 3a5f1d4 | 2008-09-11 15:53:37 -0400 | [diff] [blame] | 4645 | int nritems; |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4646 | int ins_start_slot = 0; |
| 4647 | int ins_nr; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4648 | bool fast_search = false; |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4649 | u64 ino = btrfs_ino(inode); |
| 4650 | struct extent_map_tree *em_tree = &inode->extent_tree; |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 4651 | u64 logged_isize = 0; |
Filipe Manana | e4545de | 2015-06-17 12:49:23 +0100 | [diff] [blame] | 4652 | bool need_log_inode_item = true; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4653 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4654 | path = btrfs_alloc_path(); |
Tsutomu Itoh | 5df6708 | 2011-02-01 09:17:35 +0000 | [diff] [blame] | 4655 | if (!path) |
| 4656 | return -ENOMEM; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4657 | dst_path = btrfs_alloc_path(); |
Tsutomu Itoh | 5df6708 | 2011-02-01 09:17:35 +0000 | [diff] [blame] | 4658 | if (!dst_path) { |
| 4659 | btrfs_free_path(path); |
| 4660 | return -ENOMEM; |
| 4661 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4662 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4663 | min_key.objectid = ino; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4664 | min_key.type = BTRFS_INODE_ITEM_KEY; |
| 4665 | min_key.offset = 0; |
| 4666 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4667 | max_key.objectid = ino; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 4668 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 4669 | |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4670 | /* today the code can only do partial logging of directories */ |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4671 | if (S_ISDIR(inode->vfs_inode.i_mode) || |
Miao Xie | 5269b67 | 2012-11-01 07:35:23 +0000 | [diff] [blame] | 4672 | (!test_bit(BTRFS_INODE_NEEDS_FULL_SYNC, |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4673 | &inode->runtime_flags) && |
Liu Bo | 781feef | 2016-11-30 16:20:25 -0800 | [diff] [blame] | 4674 | inode_only >= LOG_INODE_EXISTS)) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4675 | max_key.type = BTRFS_XATTR_ITEM_KEY; |
| 4676 | else |
| 4677 | max_key.type = (u8)-1; |
| 4678 | max_key.offset = (u64)-1; |
| 4679 | |
Filipe Manana | 2c2c452 | 2015-01-13 16:40:04 +0000 | [diff] [blame] | 4680 | /* |
| 4681 | * Only run delayed items if we are a dir or a new file. |
| 4682 | * Otherwise commit the delayed inode only, which is needed in |
| 4683 | * order for the log replay code to mark inodes for link count |
| 4684 | * fixup (create temporary BTRFS_TREE_LOG_FIXUP_OBJECTID items). |
| 4685 | */ |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4686 | if (S_ISDIR(inode->vfs_inode.i_mode) || |
| 4687 | inode->generation > fs_info->last_trans_committed) |
| 4688 | ret = btrfs_commit_inode_delayed_items(trans, inode); |
Filipe Manana | 2c2c452 | 2015-01-13 16:40:04 +0000 | [diff] [blame] | 4689 | else |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4690 | ret = btrfs_commit_inode_delayed_inode(inode); |
Filipe Manana | 2c2c452 | 2015-01-13 16:40:04 +0000 | [diff] [blame] | 4691 | |
| 4692 | if (ret) { |
| 4693 | btrfs_free_path(path); |
| 4694 | btrfs_free_path(dst_path); |
| 4695 | return ret; |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 4696 | } |
| 4697 | |
Liu Bo | 781feef | 2016-11-30 16:20:25 -0800 | [diff] [blame] | 4698 | if (inode_only == LOG_OTHER_INODE) { |
| 4699 | inode_only = LOG_INODE_EXISTS; |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4700 | mutex_lock_nested(&inode->log_mutex, SINGLE_DEPTH_NESTING); |
Liu Bo | 781feef | 2016-11-30 16:20:25 -0800 | [diff] [blame] | 4701 | } else { |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4702 | mutex_lock(&inode->log_mutex); |
Liu Bo | 781feef | 2016-11-30 16:20:25 -0800 | [diff] [blame] | 4703 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4704 | |
Filipe Manana | 5e33a2b | 2016-02-25 23:19:38 +0000 | [diff] [blame] | 4705 | /* |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4706 | * a brute force approach to making sure we get the most uptodate |
| 4707 | * copies of everything. |
| 4708 | */ |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4709 | if (S_ISDIR(inode->vfs_inode.i_mode)) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4710 | int max_key_type = BTRFS_DIR_LOG_INDEX_KEY; |
| 4711 | |
Filipe Manana | 4f764e5 | 2015-02-23 19:53:35 +0000 | [diff] [blame] | 4712 | if (inode_only == LOG_INODE_EXISTS) |
| 4713 | max_key_type = BTRFS_XATTR_ITEM_KEY; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4714 | ret = drop_objectid_items(trans, log, path, ino, max_key_type); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4715 | } else { |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 4716 | if (inode_only == LOG_INODE_EXISTS) { |
| 4717 | /* |
| 4718 | * Make sure the new inode item we write to the log has |
| 4719 | * the same isize as the current one (if it exists). |
| 4720 | * This is necessary to prevent data loss after log |
| 4721 | * replay, and also to prevent doing a wrong expanding |
| 4722 | * truncate - for e.g. create file, write 4K into offset |
| 4723 | * 0, fsync, write 4K into offset 4096, add hard link, |
| 4724 | * fsync some other file (to sync log), power fail - if |
| 4725 | * we use the inode's current i_size, after log replay |
| 4726 | * we get a 8Kb file, with the last 4Kb extent as a hole |
| 4727 | * (zeroes), as if an expanding truncate happened, |
| 4728 | * instead of getting a file of 4Kb only. |
| 4729 | */ |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4730 | err = logged_inode_size(log, inode, path, &logged_isize); |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 4731 | if (err) |
| 4732 | goto out_unlock; |
| 4733 | } |
Filipe Manana | a742994 | 2015-02-13 16:56:14 +0000 | [diff] [blame] | 4734 | if (test_bit(BTRFS_INODE_NEEDS_FULL_SYNC, |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4735 | &inode->runtime_flags)) { |
Filipe Manana | a742994 | 2015-02-13 16:56:14 +0000 | [diff] [blame] | 4736 | if (inode_only == LOG_INODE_EXISTS) { |
Filipe Manana | 4f764e5 | 2015-02-23 19:53:35 +0000 | [diff] [blame] | 4737 | max_key.type = BTRFS_XATTR_ITEM_KEY; |
Filipe Manana | a742994 | 2015-02-13 16:56:14 +0000 | [diff] [blame] | 4738 | ret = drop_objectid_items(trans, log, path, ino, |
| 4739 | max_key.type); |
| 4740 | } else { |
| 4741 | clear_bit(BTRFS_INODE_NEEDS_FULL_SYNC, |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4742 | &inode->runtime_flags); |
Filipe Manana | a742994 | 2015-02-13 16:56:14 +0000 | [diff] [blame] | 4743 | clear_bit(BTRFS_INODE_COPY_EVERYTHING, |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4744 | &inode->runtime_flags); |
Chris Mason | 28ed134 | 2014-12-17 09:41:04 -0800 | [diff] [blame] | 4745 | while(1) { |
| 4746 | ret = btrfs_truncate_inode_items(trans, |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4747 | log, &inode->vfs_inode, 0, 0); |
Chris Mason | 28ed134 | 2014-12-17 09:41:04 -0800 | [diff] [blame] | 4748 | if (ret != -EAGAIN) |
| 4749 | break; |
| 4750 | } |
Filipe Manana | a742994 | 2015-02-13 16:56:14 +0000 | [diff] [blame] | 4751 | } |
Filipe Manana | 4f764e5 | 2015-02-23 19:53:35 +0000 | [diff] [blame] | 4752 | } else if (test_and_clear_bit(BTRFS_INODE_COPY_EVERYTHING, |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4753 | &inode->runtime_flags) || |
Josef Bacik | 6cfab85 | 2013-11-12 16:25:58 -0500 | [diff] [blame] | 4754 | inode_only == LOG_INODE_EXISTS) { |
Filipe Manana | 4f764e5 | 2015-02-23 19:53:35 +0000 | [diff] [blame] | 4755 | if (inode_only == LOG_INODE_ALL) |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 4756 | fast_search = true; |
Filipe Manana | 4f764e5 | 2015-02-23 19:53:35 +0000 | [diff] [blame] | 4757 | max_key.type = BTRFS_XATTR_ITEM_KEY; |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 4758 | ret = drop_objectid_items(trans, log, path, ino, |
| 4759 | max_key.type); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4760 | } else { |
Liu Bo | 183f37f | 2012-11-01 06:38:47 +0000 | [diff] [blame] | 4761 | if (inode_only == LOG_INODE_ALL) |
| 4762 | fast_search = true; |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 4763 | goto log_extents; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4764 | } |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 4765 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4766 | } |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 4767 | if (ret) { |
| 4768 | err = ret; |
| 4769 | goto out_unlock; |
| 4770 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4771 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 4772 | while (1) { |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4773 | ins_nr = 0; |
Filipe David Borba Manana | 6174d3c | 2013-10-01 16:13:42 +0100 | [diff] [blame] | 4774 | ret = btrfs_search_forward(root, &min_key, |
Eric Sandeen | de78b51 | 2013-01-31 18:21:12 +0000 | [diff] [blame] | 4775 | path, trans->transid); |
Liu Bo | fb770ae | 2016-07-05 12:10:14 -0700 | [diff] [blame] | 4776 | if (ret < 0) { |
| 4777 | err = ret; |
| 4778 | goto out_unlock; |
| 4779 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4780 | if (ret != 0) |
| 4781 | break; |
Chris Mason | 3a5f1d4 | 2008-09-11 15:53:37 -0400 | [diff] [blame] | 4782 | again: |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4783 | /* note, ins_nr might be > 0 here, cleanup outside the loop */ |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4784 | if (min_key.objectid != ino) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4785 | break; |
| 4786 | if (min_key.type > max_key.type) |
| 4787 | break; |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4788 | |
Filipe Manana | e4545de | 2015-06-17 12:49:23 +0100 | [diff] [blame] | 4789 | if (min_key.type == BTRFS_INODE_ITEM_KEY) |
| 4790 | need_log_inode_item = false; |
| 4791 | |
Filipe Manana | 56f23fd | 2016-03-30 23:37:21 +0100 | [diff] [blame] | 4792 | if ((min_key.type == BTRFS_INODE_REF_KEY || |
| 4793 | min_key.type == BTRFS_INODE_EXTREF_KEY) && |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4794 | inode->generation == trans->transid) { |
Filipe Manana | 44f714d | 2016-06-06 16:11:13 +0100 | [diff] [blame] | 4795 | u64 other_ino = 0; |
| 4796 | |
Filipe Manana | 56f23fd | 2016-03-30 23:37:21 +0100 | [diff] [blame] | 4797 | ret = btrfs_check_ref_name_override(path->nodes[0], |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4798 | path->slots[0], &min_key, inode, |
| 4799 | &other_ino); |
Filipe Manana | 56f23fd | 2016-03-30 23:37:21 +0100 | [diff] [blame] | 4800 | if (ret < 0) { |
| 4801 | err = ret; |
| 4802 | goto out_unlock; |
Filipe Manana | 28a2359 | 2016-08-23 21:13:51 +0100 | [diff] [blame] | 4803 | } else if (ret > 0 && ctx && |
Nikolay Borisov | 4a0cc7c | 2017-01-10 20:35:31 +0200 | [diff] [blame] | 4804 | other_ino != btrfs_ino(BTRFS_I(ctx->inode))) { |
Filipe Manana | 44f714d | 2016-06-06 16:11:13 +0100 | [diff] [blame] | 4805 | struct btrfs_key inode_key; |
| 4806 | struct inode *other_inode; |
| 4807 | |
| 4808 | if (ins_nr > 0) { |
| 4809 | ins_nr++; |
| 4810 | } else { |
| 4811 | ins_nr = 1; |
| 4812 | ins_start_slot = path->slots[0]; |
| 4813 | } |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4814 | ret = copy_items(trans, inode, dst_path, path, |
Filipe Manana | 44f714d | 2016-06-06 16:11:13 +0100 | [diff] [blame] | 4815 | &last_extent, ins_start_slot, |
| 4816 | ins_nr, inode_only, |
| 4817 | logged_isize); |
| 4818 | if (ret < 0) { |
| 4819 | err = ret; |
| 4820 | goto out_unlock; |
| 4821 | } |
| 4822 | ins_nr = 0; |
| 4823 | btrfs_release_path(path); |
| 4824 | inode_key.objectid = other_ino; |
| 4825 | inode_key.type = BTRFS_INODE_ITEM_KEY; |
| 4826 | inode_key.offset = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4827 | other_inode = btrfs_iget(fs_info->sb, |
Filipe Manana | 44f714d | 2016-06-06 16:11:13 +0100 | [diff] [blame] | 4828 | &inode_key, root, |
| 4829 | NULL); |
| 4830 | /* |
| 4831 | * If the other inode that had a conflicting dir |
| 4832 | * entry was deleted in the current transaction, |
| 4833 | * we don't need to do more work nor fallback to |
| 4834 | * a transaction commit. |
| 4835 | */ |
| 4836 | if (IS_ERR(other_inode) && |
| 4837 | PTR_ERR(other_inode) == -ENOENT) { |
| 4838 | goto next_key; |
| 4839 | } else if (IS_ERR(other_inode)) { |
| 4840 | err = PTR_ERR(other_inode); |
| 4841 | goto out_unlock; |
| 4842 | } |
| 4843 | /* |
| 4844 | * We are safe logging the other inode without |
| 4845 | * acquiring its i_mutex as long as we log with |
| 4846 | * the LOG_INODE_EXISTS mode. We're safe against |
| 4847 | * concurrent renames of the other inode as well |
| 4848 | * because during a rename we pin the log and |
| 4849 | * update the log with the new name before we |
| 4850 | * unpin it. |
| 4851 | */ |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4852 | err = btrfs_log_inode(trans, root, |
| 4853 | BTRFS_I(other_inode), |
| 4854 | LOG_OTHER_INODE, 0, LLONG_MAX, |
| 4855 | ctx); |
Filipe Manana | 44f714d | 2016-06-06 16:11:13 +0100 | [diff] [blame] | 4856 | iput(other_inode); |
| 4857 | if (err) |
| 4858 | goto out_unlock; |
| 4859 | else |
| 4860 | goto next_key; |
Filipe Manana | 56f23fd | 2016-03-30 23:37:21 +0100 | [diff] [blame] | 4861 | } |
| 4862 | } |
| 4863 | |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 4864 | /* Skip xattrs, we log them later with btrfs_log_all_xattrs() */ |
| 4865 | if (min_key.type == BTRFS_XATTR_ITEM_KEY) { |
| 4866 | if (ins_nr == 0) |
| 4867 | goto next_slot; |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4868 | ret = copy_items(trans, inode, dst_path, path, |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 4869 | &last_extent, ins_start_slot, |
| 4870 | ins_nr, inode_only, logged_isize); |
| 4871 | if (ret < 0) { |
| 4872 | err = ret; |
| 4873 | goto out_unlock; |
| 4874 | } |
| 4875 | ins_nr = 0; |
| 4876 | if (ret) { |
| 4877 | btrfs_release_path(path); |
| 4878 | continue; |
| 4879 | } |
| 4880 | goto next_slot; |
| 4881 | } |
| 4882 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4883 | src = path->nodes[0]; |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4884 | if (ins_nr && ins_start_slot + ins_nr == path->slots[0]) { |
| 4885 | ins_nr++; |
| 4886 | goto next_slot; |
| 4887 | } else if (!ins_nr) { |
| 4888 | ins_start_slot = path->slots[0]; |
| 4889 | ins_nr = 1; |
| 4890 | goto next_slot; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4891 | } |
| 4892 | |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4893 | ret = copy_items(trans, inode, dst_path, path, &last_extent, |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 4894 | ins_start_slot, ins_nr, inode_only, |
| 4895 | logged_isize); |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 4896 | if (ret < 0) { |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 4897 | err = ret; |
| 4898 | goto out_unlock; |
Rasmus Villemoes | a71db86 | 2014-06-20 21:51:43 +0200 | [diff] [blame] | 4899 | } |
| 4900 | if (ret) { |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 4901 | ins_nr = 0; |
| 4902 | btrfs_release_path(path); |
| 4903 | continue; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 4904 | } |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4905 | ins_nr = 1; |
| 4906 | ins_start_slot = path->slots[0]; |
| 4907 | next_slot: |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4908 | |
Chris Mason | 3a5f1d4 | 2008-09-11 15:53:37 -0400 | [diff] [blame] | 4909 | nritems = btrfs_header_nritems(path->nodes[0]); |
| 4910 | path->slots[0]++; |
| 4911 | if (path->slots[0] < nritems) { |
| 4912 | btrfs_item_key_to_cpu(path->nodes[0], &min_key, |
| 4913 | path->slots[0]); |
| 4914 | goto again; |
| 4915 | } |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4916 | if (ins_nr) { |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4917 | ret = copy_items(trans, inode, dst_path, path, |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 4918 | &last_extent, ins_start_slot, |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 4919 | ins_nr, inode_only, logged_isize); |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 4920 | if (ret < 0) { |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 4921 | err = ret; |
| 4922 | goto out_unlock; |
| 4923 | } |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 4924 | ret = 0; |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4925 | ins_nr = 0; |
| 4926 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4927 | btrfs_release_path(path); |
Filipe Manana | 44f714d | 2016-06-06 16:11:13 +0100 | [diff] [blame] | 4928 | next_key: |
Filipe David Borba Manana | 3d41d70 | 2013-10-01 17:06:53 +0100 | [diff] [blame] | 4929 | if (min_key.offset < (u64)-1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4930 | min_key.offset++; |
Filipe David Borba Manana | 3d41d70 | 2013-10-01 17:06:53 +0100 | [diff] [blame] | 4931 | } else if (min_key.type < max_key.type) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4932 | min_key.type++; |
Filipe David Borba Manana | 3d41d70 | 2013-10-01 17:06:53 +0100 | [diff] [blame] | 4933 | min_key.offset = 0; |
| 4934 | } else { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4935 | break; |
Filipe David Borba Manana | 3d41d70 | 2013-10-01 17:06:53 +0100 | [diff] [blame] | 4936 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4937 | } |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4938 | if (ins_nr) { |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4939 | ret = copy_items(trans, inode, dst_path, path, &last_extent, |
Filipe Manana | 1a4bcf4 | 2015-02-13 12:30:56 +0000 | [diff] [blame] | 4940 | ins_start_slot, ins_nr, inode_only, |
| 4941 | logged_isize); |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 4942 | if (ret < 0) { |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 4943 | err = ret; |
| 4944 | goto out_unlock; |
| 4945 | } |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 4946 | ret = 0; |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 4947 | ins_nr = 0; |
| 4948 | } |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4949 | |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 4950 | btrfs_release_path(path); |
| 4951 | btrfs_release_path(dst_path); |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4952 | err = btrfs_log_all_xattrs(trans, root, inode, path, dst_path); |
Filipe Manana | 36283bf | 2015-06-20 00:44:51 +0100 | [diff] [blame] | 4953 | if (err) |
| 4954 | goto out_unlock; |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4955 | if (max_key.type >= BTRFS_EXTENT_DATA_KEY && !fast_search) { |
| 4956 | btrfs_release_path(path); |
| 4957 | btrfs_release_path(dst_path); |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4958 | err = btrfs_log_trailing_hole(trans, root, inode, path); |
Filipe Manana | a89ca6f | 2015-06-25 04:17:46 +0100 | [diff] [blame] | 4959 | if (err) |
| 4960 | goto out_unlock; |
| 4961 | } |
Josef Bacik | a95249b | 2012-10-11 16:17:34 -0400 | [diff] [blame] | 4962 | log_extents: |
Josef Bacik | f3b15cc | 2013-07-22 12:54:30 -0400 | [diff] [blame] | 4963 | btrfs_release_path(path); |
| 4964 | btrfs_release_path(dst_path); |
Filipe Manana | e4545de | 2015-06-17 12:49:23 +0100 | [diff] [blame] | 4965 | if (need_log_inode_item) { |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4966 | err = log_inode_item(trans, log, dst_path, inode); |
Filipe Manana | e4545de | 2015-06-17 12:49:23 +0100 | [diff] [blame] | 4967 | if (err) |
| 4968 | goto out_unlock; |
| 4969 | } |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4970 | if (fast_search) { |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 4971 | ret = btrfs_log_changed_extents(trans, root, inode, dst_path, |
Filipe Manana | de0ee0e | 2016-01-21 10:17:54 +0000 | [diff] [blame] | 4972 | &logged_list, ctx, start, end); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4973 | if (ret) { |
| 4974 | err = ret; |
| 4975 | goto out_unlock; |
| 4976 | } |
Josef Bacik | d006a04 | 2013-11-12 20:54:09 -0500 | [diff] [blame] | 4977 | } else if (inode_only == LOG_INODE_ALL) { |
Liu Bo | 06d3d22 | 2012-08-27 10:52:19 -0600 | [diff] [blame] | 4978 | struct extent_map *em, *n; |
| 4979 | |
Filipe Manana | 49dae1b | 2014-09-06 22:34:39 +0100 | [diff] [blame] | 4980 | write_lock(&em_tree->lock); |
| 4981 | /* |
| 4982 | * We can't just remove every em if we're called for a ranged |
| 4983 | * fsync - that is, one that doesn't cover the whole possible |
| 4984 | * file range (0 to LLONG_MAX). This is because we can have |
| 4985 | * em's that fall outside the range we're logging and therefore |
| 4986 | * their ordered operations haven't completed yet |
| 4987 | * (btrfs_finish_ordered_io() not invoked yet). This means we |
| 4988 | * didn't get their respective file extent item in the fs/subvol |
| 4989 | * tree yet, and need to let the next fast fsync (one which |
| 4990 | * consults the list of modified extent maps) find the em so |
| 4991 | * that it logs a matching file extent item and waits for the |
| 4992 | * respective ordered operation to complete (if it's still |
| 4993 | * running). |
| 4994 | * |
| 4995 | * Removing every em outside the range we're logging would make |
| 4996 | * the next fast fsync not log their matching file extent items, |
| 4997 | * therefore making us lose data after a log replay. |
| 4998 | */ |
| 4999 | list_for_each_entry_safe(em, n, &em_tree->modified_extents, |
| 5000 | list) { |
| 5001 | const u64 mod_end = em->mod_start + em->mod_len - 1; |
| 5002 | |
| 5003 | if (em->mod_start >= start && mod_end <= end) |
| 5004 | list_del_init(&em->list); |
| 5005 | } |
| 5006 | write_unlock(&em_tree->lock); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 5007 | } |
| 5008 | |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5009 | if (inode_only == LOG_INODE_ALL && S_ISDIR(inode->vfs_inode.i_mode)) { |
| 5010 | ret = log_directory_changes(trans, root, inode, path, dst_path, |
| 5011 | ctx); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5012 | if (ret) { |
| 5013 | err = ret; |
| 5014 | goto out_unlock; |
| 5015 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5016 | } |
Filipe Manana | 49dae1b | 2014-09-06 22:34:39 +0100 | [diff] [blame] | 5017 | |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5018 | spin_lock(&inode->lock); |
| 5019 | inode->logged_trans = trans->transid; |
| 5020 | inode->last_log_commit = inode->last_sub_trans; |
| 5021 | spin_unlock(&inode->lock); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5022 | out_unlock: |
Miao Xie | 827463c | 2014-01-14 20:31:51 +0800 | [diff] [blame] | 5023 | if (unlikely(err)) |
| 5024 | btrfs_put_logged_extents(&logged_list); |
| 5025 | else |
| 5026 | btrfs_submit_logged_extents(&logged_list, log); |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5027 | mutex_unlock(&inode->log_mutex); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5028 | |
| 5029 | btrfs_free_path(path); |
| 5030 | btrfs_free_path(dst_path); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5031 | return err; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5032 | } |
| 5033 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5034 | /* |
Filipe Manana | 2be63d5 | 2016-02-12 11:34:23 +0000 | [diff] [blame] | 5035 | * Check if we must fallback to a transaction commit when logging an inode. |
| 5036 | * This must be called after logging the inode and is used only in the context |
| 5037 | * when fsyncing an inode requires the need to log some other inode - in which |
| 5038 | * case we can't lock the i_mutex of each other inode we need to log as that |
| 5039 | * can lead to deadlocks with concurrent fsync against other inodes (as we can |
| 5040 | * log inodes up or down in the hierarchy) or rename operations for example. So |
| 5041 | * we take the log_mutex of the inode after we have logged it and then check for |
| 5042 | * its last_unlink_trans value - this is safe because any task setting |
| 5043 | * last_unlink_trans must take the log_mutex and it must do this before it does |
| 5044 | * the actual unlink operation, so if we do this check before a concurrent task |
| 5045 | * sets last_unlink_trans it means we've logged a consistent version/state of |
| 5046 | * 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] | 5047 | * commit (the concurrent task might have only updated last_unlink_trans before |
Filipe Manana | 2be63d5 | 2016-02-12 11:34:23 +0000 | [diff] [blame] | 5048 | * we logged the inode or it might have also done the unlink). |
| 5049 | */ |
| 5050 | static bool btrfs_must_commit_transaction(struct btrfs_trans_handle *trans, |
Nikolay Borisov | ab1717b | 2017-01-18 00:31:27 +0200 | [diff] [blame] | 5051 | struct btrfs_inode *inode) |
Filipe Manana | 2be63d5 | 2016-02-12 11:34:23 +0000 | [diff] [blame] | 5052 | { |
Nikolay Borisov | ab1717b | 2017-01-18 00:31:27 +0200 | [diff] [blame] | 5053 | struct btrfs_fs_info *fs_info = inode->root->fs_info; |
Filipe Manana | 2be63d5 | 2016-02-12 11:34:23 +0000 | [diff] [blame] | 5054 | bool ret = false; |
| 5055 | |
Nikolay Borisov | ab1717b | 2017-01-18 00:31:27 +0200 | [diff] [blame] | 5056 | mutex_lock(&inode->log_mutex); |
| 5057 | if (inode->last_unlink_trans > fs_info->last_trans_committed) { |
Filipe Manana | 2be63d5 | 2016-02-12 11:34:23 +0000 | [diff] [blame] | 5058 | /* |
| 5059 | * Make sure any commits to the log are forced to be full |
| 5060 | * commits. |
| 5061 | */ |
| 5062 | btrfs_set_log_full_commit(fs_info, trans); |
| 5063 | ret = true; |
| 5064 | } |
Nikolay Borisov | ab1717b | 2017-01-18 00:31:27 +0200 | [diff] [blame] | 5065 | mutex_unlock(&inode->log_mutex); |
Filipe Manana | 2be63d5 | 2016-02-12 11:34:23 +0000 | [diff] [blame] | 5066 | |
| 5067 | return ret; |
| 5068 | } |
| 5069 | |
| 5070 | /* |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5071 | * follow the dentry parent pointers up the chain and see if any |
| 5072 | * of the directories in it require a full commit before they can |
| 5073 | * be logged. Returns zero if nothing special needs to be done or 1 if |
| 5074 | * a full commit is required. |
| 5075 | */ |
| 5076 | 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] | 5077 | struct btrfs_inode *inode, |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5078 | struct dentry *parent, |
| 5079 | struct super_block *sb, |
| 5080 | u64 last_committed) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5081 | { |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5082 | int ret = 0; |
Josef Bacik | 6a91221 | 2010-11-20 09:48:00 +0000 | [diff] [blame] | 5083 | struct dentry *old_parent = NULL; |
Nikolay Borisov | aefa611 | 2017-02-20 13:51:00 +0200 | [diff] [blame] | 5084 | struct btrfs_inode *orig_inode = inode; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5085 | |
Chris Mason | af4176b | 2009-03-24 10:24:31 -0400 | [diff] [blame] | 5086 | /* |
| 5087 | * for regular files, if its inode is already on disk, we don't |
| 5088 | * have to worry about the parents at all. This is because |
| 5089 | * we can use the last_unlink_trans field to record renames |
| 5090 | * and other fun in this file. |
| 5091 | */ |
Nikolay Borisov | aefa611 | 2017-02-20 13:51:00 +0200 | [diff] [blame] | 5092 | if (S_ISREG(inode->vfs_inode.i_mode) && |
| 5093 | inode->generation <= last_committed && |
| 5094 | inode->last_unlink_trans <= last_committed) |
| 5095 | goto out; |
Chris Mason | af4176b | 2009-03-24 10:24:31 -0400 | [diff] [blame] | 5096 | |
Nikolay Borisov | aefa611 | 2017-02-20 13:51:00 +0200 | [diff] [blame] | 5097 | if (!S_ISDIR(inode->vfs_inode.i_mode)) { |
Al Viro | fc64005 | 2016-04-10 01:33:30 -0400 | [diff] [blame] | 5098 | if (!parent || d_really_is_negative(parent) || sb != parent->d_sb) |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5099 | goto out; |
Nikolay Borisov | aefa611 | 2017-02-20 13:51:00 +0200 | [diff] [blame] | 5100 | inode = BTRFS_I(d_inode(parent)); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5101 | } |
| 5102 | |
| 5103 | while (1) { |
Josef Bacik | de2b530 | 2013-09-11 09:36:30 -0400 | [diff] [blame] | 5104 | /* |
| 5105 | * 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] | 5106 | * not our parent's inode, so we need to skip setting the |
Josef Bacik | de2b530 | 2013-09-11 09:36:30 -0400 | [diff] [blame] | 5107 | * logged_trans so that further down in the log code we don't |
| 5108 | * think this inode has already been logged. |
| 5109 | */ |
| 5110 | if (inode != orig_inode) |
Nikolay Borisov | aefa611 | 2017-02-20 13:51:00 +0200 | [diff] [blame] | 5111 | inode->logged_trans = trans->transid; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5112 | smp_mb(); |
| 5113 | |
Nikolay Borisov | aefa611 | 2017-02-20 13:51:00 +0200 | [diff] [blame] | 5114 | if (btrfs_must_commit_transaction(trans, inode)) { |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5115 | ret = 1; |
| 5116 | break; |
| 5117 | } |
| 5118 | |
Al Viro | fc64005 | 2016-04-10 01:33:30 -0400 | [diff] [blame] | 5119 | if (!parent || d_really_is_negative(parent) || sb != parent->d_sb) |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5120 | break; |
| 5121 | |
Filipe Manana | 44f714d | 2016-06-06 16:11:13 +0100 | [diff] [blame] | 5122 | if (IS_ROOT(parent)) { |
Nikolay Borisov | aefa611 | 2017-02-20 13:51:00 +0200 | [diff] [blame] | 5123 | inode = BTRFS_I(d_inode(parent)); |
| 5124 | if (btrfs_must_commit_transaction(trans, inode)) |
Filipe Manana | 44f714d | 2016-06-06 16:11:13 +0100 | [diff] [blame] | 5125 | ret = 1; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5126 | break; |
Filipe Manana | 44f714d | 2016-06-06 16:11:13 +0100 | [diff] [blame] | 5127 | } |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5128 | |
Josef Bacik | 6a91221 | 2010-11-20 09:48:00 +0000 | [diff] [blame] | 5129 | parent = dget_parent(parent); |
| 5130 | dput(old_parent); |
| 5131 | old_parent = parent; |
Nikolay Borisov | aefa611 | 2017-02-20 13:51:00 +0200 | [diff] [blame] | 5132 | inode = BTRFS_I(d_inode(parent)); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5133 | |
| 5134 | } |
Josef Bacik | 6a91221 | 2010-11-20 09:48:00 +0000 | [diff] [blame] | 5135 | dput(old_parent); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5136 | out: |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5137 | return ret; |
| 5138 | } |
| 5139 | |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5140 | struct btrfs_dir_list { |
| 5141 | u64 ino; |
| 5142 | struct list_head list; |
| 5143 | }; |
| 5144 | |
| 5145 | /* |
| 5146 | * Log the inodes of the new dentries of a directory. See log_dir_items() for |
| 5147 | * details about the why it is needed. |
| 5148 | * This is a recursive operation - if an existing dentry corresponds to a |
| 5149 | * directory, that directory's new entries are logged too (same behaviour as |
| 5150 | * ext3/4, xfs, f2fs, reiserfs, nilfs2). Note that when logging the inodes |
| 5151 | * the dentries point to we do not lock their i_mutex, otherwise lockdep |
| 5152 | * complains about the following circular lock dependency / possible deadlock: |
| 5153 | * |
| 5154 | * CPU0 CPU1 |
| 5155 | * ---- ---- |
| 5156 | * lock(&type->i_mutex_dir_key#3/2); |
| 5157 | * lock(sb_internal#2); |
| 5158 | * lock(&type->i_mutex_dir_key#3/2); |
| 5159 | * lock(&sb->s_type->i_mutex_key#14); |
| 5160 | * |
| 5161 | * Where sb_internal is the lock (a counter that works as a lock) acquired by |
| 5162 | * sb_start_intwrite() in btrfs_start_transaction(). |
| 5163 | * Not locking i_mutex of the inodes is still safe because: |
| 5164 | * |
| 5165 | * 1) For regular files we log with a mode of LOG_INODE_EXISTS. It's possible |
| 5166 | * that while logging the inode new references (names) are added or removed |
| 5167 | * from the inode, leaving the logged inode item with a link count that does |
| 5168 | * not match the number of logged inode reference items. This is fine because |
| 5169 | * at log replay time we compute the real number of links and correct the |
| 5170 | * link count in the inode item (see replay_one_buffer() and |
| 5171 | * link_to_fixup_dir()); |
| 5172 | * |
| 5173 | * 2) For directories we log with a mode of LOG_INODE_ALL. It's possible that |
| 5174 | * while logging the inode's items new items with keys BTRFS_DIR_ITEM_KEY and |
| 5175 | * BTRFS_DIR_INDEX_KEY are added to fs/subvol tree and the logged inode item |
| 5176 | * has a size that doesn't match the sum of the lengths of all the logged |
| 5177 | * names. This does not result in a problem because if a dir_item key is |
| 5178 | * logged but its matching dir_index key is not logged, at log replay time we |
| 5179 | * don't use it to replay the respective name (see replay_one_name()). On the |
| 5180 | * other hand if only the dir_index key ends up being logged, the respective |
| 5181 | * name is added to the fs/subvol tree with both the dir_item and dir_index |
| 5182 | * keys created (see replay_one_name()). |
| 5183 | * The directory's inode item with a wrong i_size is not a problem as well, |
| 5184 | * since we don't use it at log replay time to set the i_size in the inode |
| 5185 | * item of the fs/subvol tree (see overwrite_item()). |
| 5186 | */ |
| 5187 | static int log_new_dir_dentries(struct btrfs_trans_handle *trans, |
| 5188 | struct btrfs_root *root, |
Nikolay Borisov | 51cc0d3 | 2017-01-18 00:31:43 +0200 | [diff] [blame] | 5189 | struct btrfs_inode *start_inode, |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5190 | struct btrfs_log_ctx *ctx) |
| 5191 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5192 | struct btrfs_fs_info *fs_info = root->fs_info; |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5193 | struct btrfs_root *log = root->log_root; |
| 5194 | struct btrfs_path *path; |
| 5195 | LIST_HEAD(dir_list); |
| 5196 | struct btrfs_dir_list *dir_elem; |
| 5197 | int ret = 0; |
| 5198 | |
| 5199 | path = btrfs_alloc_path(); |
| 5200 | if (!path) |
| 5201 | return -ENOMEM; |
| 5202 | |
| 5203 | dir_elem = kmalloc(sizeof(*dir_elem), GFP_NOFS); |
| 5204 | if (!dir_elem) { |
| 5205 | btrfs_free_path(path); |
| 5206 | return -ENOMEM; |
| 5207 | } |
Nikolay Borisov | 51cc0d3 | 2017-01-18 00:31:43 +0200 | [diff] [blame] | 5208 | dir_elem->ino = btrfs_ino(start_inode); |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5209 | list_add_tail(&dir_elem->list, &dir_list); |
| 5210 | |
| 5211 | while (!list_empty(&dir_list)) { |
| 5212 | struct extent_buffer *leaf; |
| 5213 | struct btrfs_key min_key; |
| 5214 | int nritems; |
| 5215 | int i; |
| 5216 | |
| 5217 | dir_elem = list_first_entry(&dir_list, struct btrfs_dir_list, |
| 5218 | list); |
| 5219 | if (ret) |
| 5220 | goto next_dir_inode; |
| 5221 | |
| 5222 | min_key.objectid = dir_elem->ino; |
| 5223 | min_key.type = BTRFS_DIR_ITEM_KEY; |
| 5224 | min_key.offset = 0; |
| 5225 | again: |
| 5226 | btrfs_release_path(path); |
| 5227 | ret = btrfs_search_forward(log, &min_key, path, trans->transid); |
| 5228 | if (ret < 0) { |
| 5229 | goto next_dir_inode; |
| 5230 | } else if (ret > 0) { |
| 5231 | ret = 0; |
| 5232 | goto next_dir_inode; |
| 5233 | } |
| 5234 | |
| 5235 | process_leaf: |
| 5236 | leaf = path->nodes[0]; |
| 5237 | nritems = btrfs_header_nritems(leaf); |
| 5238 | for (i = path->slots[0]; i < nritems; i++) { |
| 5239 | struct btrfs_dir_item *di; |
| 5240 | struct btrfs_key di_key; |
| 5241 | struct inode *di_inode; |
| 5242 | struct btrfs_dir_list *new_dir_elem; |
| 5243 | int log_mode = LOG_INODE_EXISTS; |
| 5244 | int type; |
| 5245 | |
| 5246 | btrfs_item_key_to_cpu(leaf, &min_key, i); |
| 5247 | if (min_key.objectid != dir_elem->ino || |
| 5248 | min_key.type != BTRFS_DIR_ITEM_KEY) |
| 5249 | goto next_dir_inode; |
| 5250 | |
| 5251 | di = btrfs_item_ptr(leaf, i, struct btrfs_dir_item); |
| 5252 | type = btrfs_dir_type(leaf, di); |
| 5253 | if (btrfs_dir_transid(leaf, di) < trans->transid && |
| 5254 | type != BTRFS_FT_DIR) |
| 5255 | continue; |
| 5256 | btrfs_dir_item_key_to_cpu(leaf, di, &di_key); |
| 5257 | if (di_key.type == BTRFS_ROOT_ITEM_KEY) |
| 5258 | continue; |
| 5259 | |
Robbie Ko | ec125cf | 2016-10-28 10:48:26 +0800 | [diff] [blame] | 5260 | btrfs_release_path(path); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5261 | di_inode = btrfs_iget(fs_info->sb, &di_key, root, NULL); |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5262 | if (IS_ERR(di_inode)) { |
| 5263 | ret = PTR_ERR(di_inode); |
| 5264 | goto next_dir_inode; |
| 5265 | } |
| 5266 | |
Nikolay Borisov | 0f8939b | 2017-01-18 00:31:30 +0200 | [diff] [blame] | 5267 | if (btrfs_inode_in_log(BTRFS_I(di_inode), trans->transid)) { |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5268 | iput(di_inode); |
Robbie Ko | ec125cf | 2016-10-28 10:48:26 +0800 | [diff] [blame] | 5269 | break; |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5270 | } |
| 5271 | |
| 5272 | ctx->log_new_dentries = false; |
Filipe Manana | 3f9749f | 2016-04-25 04:45:02 +0100 | [diff] [blame] | 5273 | if (type == BTRFS_FT_DIR || type == BTRFS_FT_SYMLINK) |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5274 | log_mode = LOG_INODE_ALL; |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5275 | ret = btrfs_log_inode(trans, root, BTRFS_I(di_inode), |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5276 | log_mode, 0, LLONG_MAX, ctx); |
Filipe Manana | 2be63d5 | 2016-02-12 11:34:23 +0000 | [diff] [blame] | 5277 | if (!ret && |
Nikolay Borisov | ab1717b | 2017-01-18 00:31:27 +0200 | [diff] [blame] | 5278 | btrfs_must_commit_transaction(trans, BTRFS_I(di_inode))) |
Filipe Manana | 2be63d5 | 2016-02-12 11:34:23 +0000 | [diff] [blame] | 5279 | ret = 1; |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5280 | iput(di_inode); |
| 5281 | if (ret) |
| 5282 | goto next_dir_inode; |
| 5283 | if (ctx->log_new_dentries) { |
| 5284 | new_dir_elem = kmalloc(sizeof(*new_dir_elem), |
| 5285 | GFP_NOFS); |
| 5286 | if (!new_dir_elem) { |
| 5287 | ret = -ENOMEM; |
| 5288 | goto next_dir_inode; |
| 5289 | } |
| 5290 | new_dir_elem->ino = di_key.objectid; |
| 5291 | list_add_tail(&new_dir_elem->list, &dir_list); |
| 5292 | } |
| 5293 | break; |
| 5294 | } |
| 5295 | if (i == nritems) { |
| 5296 | ret = btrfs_next_leaf(log, path); |
| 5297 | if (ret < 0) { |
| 5298 | goto next_dir_inode; |
| 5299 | } else if (ret > 0) { |
| 5300 | ret = 0; |
| 5301 | goto next_dir_inode; |
| 5302 | } |
| 5303 | goto process_leaf; |
| 5304 | } |
| 5305 | if (min_key.offset < (u64)-1) { |
| 5306 | min_key.offset++; |
| 5307 | goto again; |
| 5308 | } |
| 5309 | next_dir_inode: |
| 5310 | list_del(&dir_elem->list); |
| 5311 | kfree(dir_elem); |
| 5312 | } |
| 5313 | |
| 5314 | btrfs_free_path(path); |
| 5315 | return ret; |
| 5316 | } |
| 5317 | |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 5318 | static int btrfs_log_all_parents(struct btrfs_trans_handle *trans, |
Nikolay Borisov | d0a0b78 | 2017-02-20 13:50:30 +0200 | [diff] [blame] | 5319 | struct btrfs_inode *inode, |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 5320 | struct btrfs_log_ctx *ctx) |
| 5321 | { |
Nikolay Borisov | d0a0b78 | 2017-02-20 13:50:30 +0200 | [diff] [blame] | 5322 | 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] | 5323 | int ret; |
| 5324 | struct btrfs_path *path; |
| 5325 | struct btrfs_key key; |
Nikolay Borisov | d0a0b78 | 2017-02-20 13:50:30 +0200 | [diff] [blame] | 5326 | struct btrfs_root *root = inode->root; |
| 5327 | const u64 ino = btrfs_ino(inode); |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 5328 | |
| 5329 | path = btrfs_alloc_path(); |
| 5330 | if (!path) |
| 5331 | return -ENOMEM; |
| 5332 | path->skip_locking = 1; |
| 5333 | path->search_commit_root = 1; |
| 5334 | |
| 5335 | key.objectid = ino; |
| 5336 | key.type = BTRFS_INODE_REF_KEY; |
| 5337 | key.offset = 0; |
| 5338 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 5339 | if (ret < 0) |
| 5340 | goto out; |
| 5341 | |
| 5342 | while (true) { |
| 5343 | struct extent_buffer *leaf = path->nodes[0]; |
| 5344 | int slot = path->slots[0]; |
| 5345 | u32 cur_offset = 0; |
| 5346 | u32 item_size; |
| 5347 | unsigned long ptr; |
| 5348 | |
| 5349 | if (slot >= btrfs_header_nritems(leaf)) { |
| 5350 | ret = btrfs_next_leaf(root, path); |
| 5351 | if (ret < 0) |
| 5352 | goto out; |
| 5353 | else if (ret > 0) |
| 5354 | break; |
| 5355 | continue; |
| 5356 | } |
| 5357 | |
| 5358 | btrfs_item_key_to_cpu(leaf, &key, slot); |
| 5359 | /* BTRFS_INODE_EXTREF_KEY is BTRFS_INODE_REF_KEY + 1 */ |
| 5360 | if (key.objectid != ino || key.type > BTRFS_INODE_EXTREF_KEY) |
| 5361 | break; |
| 5362 | |
| 5363 | item_size = btrfs_item_size_nr(leaf, slot); |
| 5364 | ptr = btrfs_item_ptr_offset(leaf, slot); |
| 5365 | while (cur_offset < item_size) { |
| 5366 | struct btrfs_key inode_key; |
| 5367 | struct inode *dir_inode; |
| 5368 | |
| 5369 | inode_key.type = BTRFS_INODE_ITEM_KEY; |
| 5370 | inode_key.offset = 0; |
| 5371 | |
| 5372 | if (key.type == BTRFS_INODE_EXTREF_KEY) { |
| 5373 | struct btrfs_inode_extref *extref; |
| 5374 | |
| 5375 | extref = (struct btrfs_inode_extref *) |
| 5376 | (ptr + cur_offset); |
| 5377 | inode_key.objectid = btrfs_inode_extref_parent( |
| 5378 | leaf, extref); |
| 5379 | cur_offset += sizeof(*extref); |
| 5380 | cur_offset += btrfs_inode_extref_name_len(leaf, |
| 5381 | extref); |
| 5382 | } else { |
| 5383 | inode_key.objectid = key.offset; |
| 5384 | cur_offset = item_size; |
| 5385 | } |
| 5386 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5387 | dir_inode = btrfs_iget(fs_info->sb, &inode_key, |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 5388 | root, NULL); |
| 5389 | /* If parent inode was deleted, skip it. */ |
| 5390 | if (IS_ERR(dir_inode)) |
| 5391 | continue; |
| 5392 | |
Filipe Manana | 657ed1a | 2016-04-06 17:11:56 +0100 | [diff] [blame] | 5393 | if (ctx) |
| 5394 | ctx->log_new_dentries = false; |
Nikolay Borisov | a59108a | 2017-01-18 00:31:48 +0200 | [diff] [blame] | 5395 | ret = btrfs_log_inode(trans, root, BTRFS_I(dir_inode), |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 5396 | LOG_INODE_ALL, 0, LLONG_MAX, ctx); |
Filipe Manana | 2be63d5 | 2016-02-12 11:34:23 +0000 | [diff] [blame] | 5397 | if (!ret && |
Nikolay Borisov | ab1717b | 2017-01-18 00:31:27 +0200 | [diff] [blame] | 5398 | btrfs_must_commit_transaction(trans, BTRFS_I(dir_inode))) |
Filipe Manana | 2be63d5 | 2016-02-12 11:34:23 +0000 | [diff] [blame] | 5399 | ret = 1; |
Filipe Manana | 657ed1a | 2016-04-06 17:11:56 +0100 | [diff] [blame] | 5400 | if (!ret && ctx && ctx->log_new_dentries) |
| 5401 | ret = log_new_dir_dentries(trans, root, |
David Sterba | f85b737 | 2017-01-20 14:54:07 +0100 | [diff] [blame] | 5402 | BTRFS_I(dir_inode), ctx); |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 5403 | iput(dir_inode); |
| 5404 | if (ret) |
| 5405 | goto out; |
| 5406 | } |
| 5407 | path->slots[0]++; |
| 5408 | } |
| 5409 | ret = 0; |
| 5410 | out: |
| 5411 | btrfs_free_path(path); |
| 5412 | return ret; |
| 5413 | } |
| 5414 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5415 | /* |
| 5416 | * helper function around btrfs_log_inode to make sure newly created |
| 5417 | * parent directories also end up in the log. A minimal inode and backref |
| 5418 | * only logging is done of any parent directories that are older than |
| 5419 | * the last committed transaction |
| 5420 | */ |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 5421 | static int btrfs_log_inode_parent(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 19df27a | 2017-02-20 13:51:01 +0200 | [diff] [blame] | 5422 | struct btrfs_root *root, |
| 5423 | struct btrfs_inode *inode, |
Filipe Manana | 49dae1b | 2014-09-06 22:34:39 +0100 | [diff] [blame] | 5424 | struct dentry *parent, |
| 5425 | const loff_t start, |
| 5426 | const loff_t end, |
| 5427 | int exists_only, |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 5428 | struct btrfs_log_ctx *ctx) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5429 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5430 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5431 | int inode_only = exists_only ? LOG_INODE_EXISTS : LOG_INODE_ALL; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5432 | struct super_block *sb; |
Josef Bacik | 6a91221 | 2010-11-20 09:48:00 +0000 | [diff] [blame] | 5433 | struct dentry *old_parent = NULL; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5434 | int ret = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5435 | u64 last_committed = fs_info->last_trans_committed; |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5436 | bool log_dentries = false; |
Nikolay Borisov | 19df27a | 2017-02-20 13:51:01 +0200 | [diff] [blame] | 5437 | struct btrfs_inode *orig_inode = inode; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5438 | |
Nikolay Borisov | 19df27a | 2017-02-20 13:51:01 +0200 | [diff] [blame] | 5439 | sb = inode->vfs_inode.i_sb; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5440 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5441 | if (btrfs_test_opt(fs_info, NOTREELOG)) { |
Sage Weil | 3a5e140 | 2009-04-02 16:49:40 -0400 | [diff] [blame] | 5442 | ret = 1; |
| 5443 | goto end_no_trans; |
| 5444 | } |
| 5445 | |
Miao Xie | 995946d | 2014-04-02 19:51:06 +0800 | [diff] [blame] | 5446 | /* |
| 5447 | * The prev transaction commit doesn't complete, we need do |
| 5448 | * full commit by ourselves. |
| 5449 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5450 | if (fs_info->last_trans_log_full_commit > |
| 5451 | fs_info->last_trans_committed) { |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5452 | ret = 1; |
| 5453 | goto end_no_trans; |
| 5454 | } |
| 5455 | |
Nikolay Borisov | 19df27a | 2017-02-20 13:51:01 +0200 | [diff] [blame] | 5456 | if (root != inode->root || btrfs_root_refs(&root->root_item) == 0) { |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 5457 | ret = 1; |
| 5458 | goto end_no_trans; |
| 5459 | } |
| 5460 | |
Nikolay Borisov | 19df27a | 2017-02-20 13:51:01 +0200 | [diff] [blame] | 5461 | ret = check_parent_dirs_for_sync(trans, inode, parent, sb, |
| 5462 | last_committed); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5463 | if (ret) |
| 5464 | goto end_no_trans; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5465 | |
Nikolay Borisov | 19df27a | 2017-02-20 13:51:01 +0200 | [diff] [blame] | 5466 | if (btrfs_inode_in_log(inode, trans->transid)) { |
Chris Mason | 257c62e | 2009-10-13 13:21:08 -0400 | [diff] [blame] | 5467 | ret = BTRFS_NO_LOG_SYNC; |
| 5468 | goto end_no_trans; |
| 5469 | } |
| 5470 | |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 5471 | ret = start_log_trans(trans, root, ctx); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5472 | if (ret) |
Miao Xie | e87ac13 | 2014-02-20 18:08:53 +0800 | [diff] [blame] | 5473 | goto end_no_trans; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5474 | |
Nikolay Borisov | 19df27a | 2017-02-20 13:51:01 +0200 | [diff] [blame] | 5475 | ret = btrfs_log_inode(trans, root, inode, inode_only, start, end, ctx); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5476 | if (ret) |
| 5477 | goto end_trans; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5478 | |
Chris Mason | af4176b | 2009-03-24 10:24:31 -0400 | [diff] [blame] | 5479 | /* |
| 5480 | * for regular files, if its inode is already on disk, we don't |
| 5481 | * have to worry about the parents at all. This is because |
| 5482 | * we can use the last_unlink_trans field to record renames |
| 5483 | * and other fun in this file. |
| 5484 | */ |
Nikolay Borisov | 19df27a | 2017-02-20 13:51:01 +0200 | [diff] [blame] | 5485 | if (S_ISREG(inode->vfs_inode.i_mode) && |
| 5486 | inode->generation <= last_committed && |
| 5487 | inode->last_unlink_trans <= last_committed) { |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5488 | ret = 0; |
| 5489 | goto end_trans; |
| 5490 | } |
Chris Mason | af4176b | 2009-03-24 10:24:31 -0400 | [diff] [blame] | 5491 | |
Nikolay Borisov | 19df27a | 2017-02-20 13:51:01 +0200 | [diff] [blame] | 5492 | 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] | 5493 | log_dentries = true; |
| 5494 | |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 5495 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 5496 | * 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] | 5497 | * inodes are fully logged. This is to prevent leaving dangling |
| 5498 | * directory index entries in directories that were our parents but are |
| 5499 | * not anymore. Not doing this results in old parent directory being |
| 5500 | * impossible to delete after log replay (rmdir will always fail with |
| 5501 | * error -ENOTEMPTY). |
| 5502 | * |
| 5503 | * Example 1: |
| 5504 | * |
| 5505 | * mkdir testdir |
| 5506 | * touch testdir/foo |
| 5507 | * ln testdir/foo testdir/bar |
| 5508 | * sync |
| 5509 | * unlink testdir/bar |
| 5510 | * xfs_io -c fsync testdir/foo |
| 5511 | * <power failure> |
| 5512 | * mount fs, triggers log replay |
| 5513 | * |
| 5514 | * If we don't log the parent directory (testdir), after log replay the |
| 5515 | * directory still has an entry pointing to the file inode using the bar |
| 5516 | * name, but a matching BTRFS_INODE_[REF|EXTREF]_KEY does not exist and |
| 5517 | * the file inode has a link count of 1. |
| 5518 | * |
| 5519 | * Example 2: |
| 5520 | * |
| 5521 | * mkdir testdir |
| 5522 | * touch foo |
| 5523 | * ln foo testdir/foo2 |
| 5524 | * ln foo testdir/foo3 |
| 5525 | * sync |
| 5526 | * unlink testdir/foo3 |
| 5527 | * xfs_io -c fsync foo |
| 5528 | * <power failure> |
| 5529 | * mount fs, triggers log replay |
| 5530 | * |
| 5531 | * Similar as the first example, after log replay the parent directory |
| 5532 | * testdir still has an entry pointing to the inode file with name foo3 |
| 5533 | * but the file inode does not have a matching BTRFS_INODE_REF_KEY item |
| 5534 | * and has a link count of 2. |
| 5535 | */ |
Nikolay Borisov | 19df27a | 2017-02-20 13:51:01 +0200 | [diff] [blame] | 5536 | if (inode->last_unlink_trans > last_committed) { |
Filipe Manana | 18aa092 | 2015-08-05 16:49:08 +0100 | [diff] [blame] | 5537 | ret = btrfs_log_all_parents(trans, orig_inode, ctx); |
| 5538 | if (ret) |
| 5539 | goto end_trans; |
| 5540 | } |
| 5541 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5542 | while (1) { |
Al Viro | fc64005 | 2016-04-10 01:33:30 -0400 | [diff] [blame] | 5543 | if (!parent || d_really_is_negative(parent) || sb != parent->d_sb) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5544 | break; |
| 5545 | |
Nikolay Borisov | 19df27a | 2017-02-20 13:51:01 +0200 | [diff] [blame] | 5546 | inode = BTRFS_I(d_inode(parent)); |
| 5547 | if (root != inode->root) |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 5548 | break; |
| 5549 | |
Nikolay Borisov | 19df27a | 2017-02-20 13:51:01 +0200 | [diff] [blame] | 5550 | if (inode->generation > last_committed) { |
| 5551 | ret = btrfs_log_inode(trans, root, inode, |
| 5552 | LOG_INODE_EXISTS, 0, LLONG_MAX, ctx); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5553 | if (ret) |
| 5554 | goto end_trans; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5555 | } |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 5556 | if (IS_ROOT(parent)) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5557 | break; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5558 | |
Josef Bacik | 6a91221 | 2010-11-20 09:48:00 +0000 | [diff] [blame] | 5559 | parent = dget_parent(parent); |
| 5560 | dput(old_parent); |
| 5561 | old_parent = parent; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5562 | } |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5563 | if (log_dentries) |
Nikolay Borisov | 19df27a | 2017-02-20 13:51:01 +0200 | [diff] [blame] | 5564 | ret = log_new_dir_dentries(trans, root, orig_inode, ctx); |
Filipe Manana | 2f2ff0e | 2015-03-20 17:19:46 +0000 | [diff] [blame] | 5565 | else |
| 5566 | ret = 0; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5567 | end_trans: |
Josef Bacik | 6a91221 | 2010-11-20 09:48:00 +0000 | [diff] [blame] | 5568 | dput(old_parent); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5569 | if (ret < 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5570 | btrfs_set_log_full_commit(fs_info, trans); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5571 | ret = 1; |
| 5572 | } |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 5573 | |
| 5574 | if (ret) |
| 5575 | btrfs_remove_log_ctx(root, ctx); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5576 | btrfs_end_log_trans(root); |
| 5577 | end_no_trans: |
| 5578 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5579 | } |
| 5580 | |
| 5581 | /* |
| 5582 | * it is not safe to log dentry if the chunk root has added new |
| 5583 | * chunks. This returns 0 if the dentry was logged, and 1 otherwise. |
| 5584 | * If this returns 1, you must commit the transaction to safely get your |
| 5585 | * data on disk. |
| 5586 | */ |
| 5587 | int btrfs_log_dentry_safe(struct btrfs_trans_handle *trans, |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 5588 | struct btrfs_root *root, struct dentry *dentry, |
Filipe Manana | 49dae1b | 2014-09-06 22:34:39 +0100 | [diff] [blame] | 5589 | const loff_t start, |
| 5590 | const loff_t end, |
Miao Xie | 8b050d3 | 2014-02-20 18:08:58 +0800 | [diff] [blame] | 5591 | struct btrfs_log_ctx *ctx) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5592 | { |
Josef Bacik | 6a91221 | 2010-11-20 09:48:00 +0000 | [diff] [blame] | 5593 | struct dentry *parent = dget_parent(dentry); |
| 5594 | int ret; |
| 5595 | |
Nikolay Borisov | 19df27a | 2017-02-20 13:51:01 +0200 | [diff] [blame] | 5596 | ret = btrfs_log_inode_parent(trans, root, BTRFS_I(d_inode(dentry)), |
| 5597 | parent, start, end, 0, ctx); |
Josef Bacik | 6a91221 | 2010-11-20 09:48:00 +0000 | [diff] [blame] | 5598 | dput(parent); |
| 5599 | |
| 5600 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5601 | } |
| 5602 | |
| 5603 | /* |
| 5604 | * should be called during mount to recover any replay any log trees |
| 5605 | * from the FS |
| 5606 | */ |
| 5607 | int btrfs_recover_log_trees(struct btrfs_root *log_root_tree) |
| 5608 | { |
| 5609 | int ret; |
| 5610 | struct btrfs_path *path; |
| 5611 | struct btrfs_trans_handle *trans; |
| 5612 | struct btrfs_key key; |
| 5613 | struct btrfs_key found_key; |
| 5614 | struct btrfs_key tmp_key; |
| 5615 | struct btrfs_root *log; |
| 5616 | struct btrfs_fs_info *fs_info = log_root_tree->fs_info; |
| 5617 | struct walk_control wc = { |
| 5618 | .process_func = process_one_buffer, |
| 5619 | .stage = 0, |
| 5620 | }; |
| 5621 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5622 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 5623 | if (!path) |
| 5624 | return -ENOMEM; |
| 5625 | |
Josef Bacik | afcdd12 | 2016-09-02 15:40:02 -0400 | [diff] [blame] | 5626 | set_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5627 | |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 5628 | trans = btrfs_start_transaction(fs_info->tree_root, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5629 | if (IS_ERR(trans)) { |
| 5630 | ret = PTR_ERR(trans); |
| 5631 | goto error; |
| 5632 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5633 | |
| 5634 | wc.trans = trans; |
| 5635 | wc.pin = 1; |
| 5636 | |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 5637 | ret = walk_log_tree(trans, log_root_tree, &wc); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5638 | if (ret) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 5639 | btrfs_handle_fs_error(fs_info, ret, |
| 5640 | "Failed to pin buffers while recovering log root tree."); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5641 | goto error; |
| 5642 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5643 | |
| 5644 | again: |
| 5645 | key.objectid = BTRFS_TREE_LOG_OBJECTID; |
| 5646 | key.offset = (u64)-1; |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 5647 | key.type = BTRFS_ROOT_ITEM_KEY; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5648 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5649 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5650 | ret = btrfs_search_slot(NULL, log_root_tree, &key, path, 0, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5651 | |
| 5652 | if (ret < 0) { |
Anand Jain | 34d9700 | 2016-03-16 16:43:06 +0800 | [diff] [blame] | 5653 | btrfs_handle_fs_error(fs_info, ret, |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5654 | "Couldn't find tree log root."); |
| 5655 | goto error; |
| 5656 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5657 | if (ret > 0) { |
| 5658 | if (path->slots[0] == 0) |
| 5659 | break; |
| 5660 | path->slots[0]--; |
| 5661 | } |
| 5662 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, |
| 5663 | path->slots[0]); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 5664 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5665 | if (found_key.objectid != BTRFS_TREE_LOG_OBJECTID) |
| 5666 | break; |
| 5667 | |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 5668 | log = btrfs_read_fs_root(log_root_tree, &found_key); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5669 | if (IS_ERR(log)) { |
| 5670 | ret = PTR_ERR(log); |
Anand Jain | 34d9700 | 2016-03-16 16:43:06 +0800 | [diff] [blame] | 5671 | btrfs_handle_fs_error(fs_info, ret, |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5672 | "Couldn't read tree log root."); |
| 5673 | goto error; |
| 5674 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5675 | |
| 5676 | tmp_key.objectid = found_key.offset; |
| 5677 | tmp_key.type = BTRFS_ROOT_ITEM_KEY; |
| 5678 | tmp_key.offset = (u64)-1; |
| 5679 | |
| 5680 | 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] | 5681 | if (IS_ERR(wc.replay_dest)) { |
| 5682 | ret = PTR_ERR(wc.replay_dest); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 5683 | free_extent_buffer(log->node); |
| 5684 | free_extent_buffer(log->commit_root); |
| 5685 | kfree(log); |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 5686 | btrfs_handle_fs_error(fs_info, ret, |
| 5687 | "Couldn't read target root for tree log recovery."); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5688 | goto error; |
| 5689 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5690 | |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 5691 | wc.replay_dest->log_root = log; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5692 | btrfs_record_root_in_trans(trans, wc.replay_dest); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5693 | ret = walk_log_tree(trans, log, &wc); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5694 | |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 5695 | if (!ret && wc.stage == LOG_WALK_REPLAY_ALL) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5696 | ret = fixup_inode_link_counts(trans, wc.replay_dest, |
| 5697 | path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5698 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5699 | |
| 5700 | key.offset = found_key.offset - 1; |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 5701 | wc.replay_dest->log_root = NULL; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5702 | free_extent_buffer(log->node); |
Chris Mason | b263c2c | 2009-06-11 11:24:47 -0400 | [diff] [blame] | 5703 | free_extent_buffer(log->commit_root); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5704 | kfree(log); |
| 5705 | |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 5706 | if (ret) |
| 5707 | goto error; |
| 5708 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5709 | if (found_key.offset == 0) |
| 5710 | break; |
| 5711 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 5712 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5713 | |
| 5714 | /* step one is to pin it all, step two is to replay just inodes */ |
| 5715 | if (wc.pin) { |
| 5716 | wc.pin = 0; |
| 5717 | wc.process_func = replay_one_buffer; |
| 5718 | wc.stage = LOG_WALK_REPLAY_INODES; |
| 5719 | goto again; |
| 5720 | } |
| 5721 | /* step three is to replay everything */ |
| 5722 | if (wc.stage < LOG_WALK_REPLAY_ALL) { |
| 5723 | wc.stage++; |
| 5724 | goto again; |
| 5725 | } |
| 5726 | |
| 5727 | btrfs_free_path(path); |
| 5728 | |
Josef Bacik | abefa55 | 2013-04-24 16:40:05 -0400 | [diff] [blame] | 5729 | /* step 4: commit the transaction, which also unpins the blocks */ |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 5730 | ret = btrfs_commit_transaction(trans); |
Josef Bacik | abefa55 | 2013-04-24 16:40:05 -0400 | [diff] [blame] | 5731 | if (ret) |
| 5732 | return ret; |
| 5733 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5734 | free_extent_buffer(log_root_tree->node); |
| 5735 | log_root_tree->log_root = NULL; |
Josef Bacik | afcdd12 | 2016-09-02 15:40:02 -0400 | [diff] [blame] | 5736 | clear_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5737 | kfree(log_root_tree); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5738 | |
Josef Bacik | abefa55 | 2013-04-24 16:40:05 -0400 | [diff] [blame] | 5739 | return 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5740 | error: |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 5741 | if (wc.trans) |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 5742 | btrfs_end_transaction(wc.trans); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5743 | btrfs_free_path(path); |
| 5744 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5745 | } |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5746 | |
| 5747 | /* |
| 5748 | * there are some corner cases where we want to force a full |
| 5749 | * commit instead of allowing a directory to be logged. |
| 5750 | * |
| 5751 | * They revolve around files there were unlinked from the directory, and |
| 5752 | * this function updates the parent directory so that a full commit is |
| 5753 | * 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] | 5754 | * |
| 5755 | * Must be called before the unlink operations (updates to the subvolume tree, |
| 5756 | * inodes, etc) are done. |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5757 | */ |
| 5758 | void btrfs_record_unlink_dir(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 4176bdb | 2017-01-18 00:31:28 +0200 | [diff] [blame] | 5759 | struct btrfs_inode *dir, struct btrfs_inode *inode, |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5760 | int for_rename) |
| 5761 | { |
| 5762 | /* |
Chris Mason | af4176b | 2009-03-24 10:24:31 -0400 | [diff] [blame] | 5763 | * when we're logging a file, if it hasn't been renamed |
| 5764 | * or unlinked, and its inode is fully committed on disk, |
| 5765 | * we don't have to worry about walking up the directory chain |
| 5766 | * to log its parents. |
| 5767 | * |
| 5768 | * So, we use the last_unlink_trans field to put this transid |
| 5769 | * into the file. When the file is logged we check it and |
| 5770 | * don't log the parents if the file is fully on disk. |
| 5771 | */ |
Nikolay Borisov | 4176bdb | 2017-01-18 00:31:28 +0200 | [diff] [blame] | 5772 | mutex_lock(&inode->log_mutex); |
| 5773 | inode->last_unlink_trans = trans->transid; |
| 5774 | mutex_unlock(&inode->log_mutex); |
Chris Mason | af4176b | 2009-03-24 10:24:31 -0400 | [diff] [blame] | 5775 | |
| 5776 | /* |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5777 | * if this directory was already logged any new |
| 5778 | * names for this file/dir will get recorded |
| 5779 | */ |
| 5780 | smp_mb(); |
Nikolay Borisov | 4176bdb | 2017-01-18 00:31:28 +0200 | [diff] [blame] | 5781 | if (dir->logged_trans == trans->transid) |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5782 | return; |
| 5783 | |
| 5784 | /* |
| 5785 | * if the inode we're about to unlink was logged, |
| 5786 | * the log will be properly updated for any new names |
| 5787 | */ |
Nikolay Borisov | 4176bdb | 2017-01-18 00:31:28 +0200 | [diff] [blame] | 5788 | if (inode->logged_trans == trans->transid) |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5789 | return; |
| 5790 | |
| 5791 | /* |
| 5792 | * when renaming files across directories, if the directory |
| 5793 | * there we're unlinking from gets fsync'd later on, there's |
| 5794 | * no way to find the destination directory later and fsync it |
| 5795 | * properly. So, we have to be conservative and force commits |
| 5796 | * so the new name gets discovered. |
| 5797 | */ |
| 5798 | if (for_rename) |
| 5799 | goto record; |
| 5800 | |
| 5801 | /* we can safely do the unlink without any special recording */ |
| 5802 | return; |
| 5803 | |
| 5804 | record: |
Nikolay Borisov | 4176bdb | 2017-01-18 00:31:28 +0200 | [diff] [blame] | 5805 | mutex_lock(&dir->log_mutex); |
| 5806 | dir->last_unlink_trans = trans->transid; |
| 5807 | mutex_unlock(&dir->log_mutex); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5808 | } |
| 5809 | |
| 5810 | /* |
Filipe Manana | 1ec9a1a | 2016-02-10 10:42:25 +0000 | [diff] [blame] | 5811 | * Make sure that if someone attempts to fsync the parent directory of a deleted |
| 5812 | * snapshot, it ends up triggering a transaction commit. This is to guarantee |
| 5813 | * that after replaying the log tree of the parent directory's root we will not |
| 5814 | * see the snapshot anymore and at log replay time we will not see any log tree |
| 5815 | * corresponding to the deleted snapshot's root, which could lead to replaying |
| 5816 | * it after replaying the log tree of the parent directory (which would replay |
| 5817 | * the snapshot delete operation). |
Filipe Manana | 2be63d5 | 2016-02-12 11:34:23 +0000 | [diff] [blame] | 5818 | * |
| 5819 | * Must be called before the actual snapshot destroy operation (updates to the |
| 5820 | * parent root and tree of tree roots trees, etc) are done. |
Filipe Manana | 1ec9a1a | 2016-02-10 10:42:25 +0000 | [diff] [blame] | 5821 | */ |
| 5822 | void btrfs_record_snapshot_destroy(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 4366355 | 2017-01-18 00:31:29 +0200 | [diff] [blame] | 5823 | struct btrfs_inode *dir) |
Filipe Manana | 1ec9a1a | 2016-02-10 10:42:25 +0000 | [diff] [blame] | 5824 | { |
Nikolay Borisov | 4366355 | 2017-01-18 00:31:29 +0200 | [diff] [blame] | 5825 | mutex_lock(&dir->log_mutex); |
| 5826 | dir->last_unlink_trans = trans->transid; |
| 5827 | mutex_unlock(&dir->log_mutex); |
Filipe Manana | 1ec9a1a | 2016-02-10 10:42:25 +0000 | [diff] [blame] | 5828 | } |
| 5829 | |
| 5830 | /* |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5831 | * Call this after adding a new name for a file and it will properly |
| 5832 | * update the log to reflect the new name. |
| 5833 | * |
| 5834 | * It will return zero if all goes well, and it will return 1 if a |
| 5835 | * full transaction commit is required. |
| 5836 | */ |
| 5837 | int btrfs_log_new_name(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 9ca5fbfb | 2017-01-18 00:31:31 +0200 | [diff] [blame] | 5838 | struct btrfs_inode *inode, struct btrfs_inode *old_dir, |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5839 | struct dentry *parent) |
| 5840 | { |
Nikolay Borisov | 9ca5fbfb | 2017-01-18 00:31:31 +0200 | [diff] [blame] | 5841 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb); |
David Sterba | f85b737 | 2017-01-20 14:54:07 +0100 | [diff] [blame] | 5842 | struct btrfs_root *root = inode->root; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5843 | |
| 5844 | /* |
Chris Mason | af4176b | 2009-03-24 10:24:31 -0400 | [diff] [blame] | 5845 | * this will force the logging code to walk the dentry chain |
| 5846 | * up for the file |
| 5847 | */ |
Nikolay Borisov | 9ca5fbfb | 2017-01-18 00:31:31 +0200 | [diff] [blame] | 5848 | if (S_ISREG(inode->vfs_inode.i_mode)) |
| 5849 | inode->last_unlink_trans = trans->transid; |
Chris Mason | af4176b | 2009-03-24 10:24:31 -0400 | [diff] [blame] | 5850 | |
| 5851 | /* |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5852 | * if this inode hasn't been logged and directory we're renaming it |
| 5853 | * from hasn't been logged, we don't need to log it |
| 5854 | */ |
Nikolay Borisov | 9ca5fbfb | 2017-01-18 00:31:31 +0200 | [diff] [blame] | 5855 | if (inode->logged_trans <= fs_info->last_trans_committed && |
| 5856 | (!old_dir || old_dir->logged_trans <= fs_info->last_trans_committed)) |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5857 | return 0; |
| 5858 | |
Nikolay Borisov | 19df27a | 2017-02-20 13:51:01 +0200 | [diff] [blame] | 5859 | return btrfs_log_inode_parent(trans, root, inode, parent, 0, |
Filipe Manana | 49dae1b | 2014-09-06 22:34:39 +0100 | [diff] [blame] | 5860 | LLONG_MAX, 1, NULL); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 5861 | } |
| 5862 | |