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> |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 21 | #include <linux/list_sort.h> |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 22 | #include "ctree.h" |
| 23 | #include "transaction.h" |
| 24 | #include "disk-io.h" |
| 25 | #include "locking.h" |
| 26 | #include "print-tree.h" |
| 27 | #include "compat.h" |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 28 | #include "tree-log.h" |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 29 | |
| 30 | /* magic values for the inode_only field in btrfs_log_inode: |
| 31 | * |
| 32 | * LOG_INODE_ALL means to log everything |
| 33 | * LOG_INODE_EXISTS means to log just enough to recreate the inode |
| 34 | * during log replay |
| 35 | */ |
| 36 | #define LOG_INODE_ALL 0 |
| 37 | #define LOG_INODE_EXISTS 1 |
| 38 | |
| 39 | /* |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 40 | * directory trouble cases |
| 41 | * |
| 42 | * 1) on rename or unlink, if the inode being unlinked isn't in the fsync |
| 43 | * log, we must force a full commit before doing an fsync of the directory |
| 44 | * where the unlink was done. |
| 45 | * ---> record transid of last unlink/rename per directory |
| 46 | * |
| 47 | * mkdir foo/some_dir |
| 48 | * normal commit |
| 49 | * rename foo/some_dir foo2/some_dir |
| 50 | * mkdir foo/some_dir |
| 51 | * fsync foo/some_dir/some_file |
| 52 | * |
| 53 | * The fsync above will unlink the original some_dir without recording |
| 54 | * it in its new location (foo2). After a crash, some_dir will be gone |
| 55 | * unless the fsync of some_file forces a full commit |
| 56 | * |
| 57 | * 2) we must log any new names for any file or dir that is in the fsync |
| 58 | * log. ---> check inode while renaming/linking. |
| 59 | * |
| 60 | * 2a) we must log any new names for any file or dir during rename |
| 61 | * when the directory they are being removed from was logged. |
| 62 | * ---> check inode and old parent dir during rename |
| 63 | * |
| 64 | * 2a is actually the more important variant. With the extra logging |
| 65 | * a crash might unlink the old name without recreating the new one |
| 66 | * |
| 67 | * 3) after a crash, we must go through any directories with a link count |
| 68 | * of zero and redo the rm -rf |
| 69 | * |
| 70 | * mkdir f1/foo |
| 71 | * normal commit |
| 72 | * rm -rf f1/foo |
| 73 | * fsync(f1) |
| 74 | * |
| 75 | * The directory f1 was fully removed from the FS, but fsync was never |
| 76 | * called on f1, only its parent dir. After a crash the rm -rf must |
| 77 | * be replayed. This must be able to recurse down the entire |
| 78 | * directory tree. The inode link count fixup code takes care of the |
| 79 | * ugly details. |
| 80 | */ |
| 81 | |
| 82 | /* |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 83 | * stages for the tree walking. The first |
| 84 | * stage (0) is to only pin down the blocks we find |
| 85 | * the second stage (1) is to make sure that all the inodes |
| 86 | * we find in the log are created in the subvolume. |
| 87 | * |
| 88 | * The last stage is to deal with directories and links and extents |
| 89 | * and all the other fun semantics |
| 90 | */ |
| 91 | #define LOG_WALK_PIN_ONLY 0 |
| 92 | #define LOG_WALK_REPLAY_INODES 1 |
| 93 | #define LOG_WALK_REPLAY_ALL 2 |
| 94 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 95 | static int btrfs_log_inode(struct btrfs_trans_handle *trans, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 96 | struct btrfs_root *root, struct inode *inode, |
| 97 | int inode_only); |
Yan Zheng | ec051c0 | 2009-01-05 15:43:42 -0500 | [diff] [blame] | 98 | static int link_to_fixup_dir(struct btrfs_trans_handle *trans, |
| 99 | struct btrfs_root *root, |
| 100 | struct btrfs_path *path, u64 objectid); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 101 | static noinline int replay_dir_deletes(struct btrfs_trans_handle *trans, |
| 102 | struct btrfs_root *root, |
| 103 | struct btrfs_root *log, |
| 104 | struct btrfs_path *path, |
| 105 | u64 dirid, int del_all); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 106 | |
| 107 | /* |
| 108 | * tree logging is a special write ahead log used to make sure that |
| 109 | * fsyncs and O_SYNCs can happen without doing full tree commits. |
| 110 | * |
| 111 | * Full tree commits are expensive because they require commonly |
| 112 | * modified blocks to be recowed, creating many dirty pages in the |
| 113 | * extent tree an 4x-6x higher write load than ext3. |
| 114 | * |
| 115 | * Instead of doing a tree commit on every fsync, we use the |
| 116 | * key ranges and transaction ids to find items for a given file or directory |
| 117 | * that have changed in this transaction. Those items are copied into |
| 118 | * a special tree (one per subvolume root), that tree is written to disk |
| 119 | * and then the fsync is considered complete. |
| 120 | * |
| 121 | * After a crash, items are copied out of the log-tree back into the |
| 122 | * subvolume tree. Any file data extents found are recorded in the extent |
| 123 | * allocation tree, and the log-tree freed. |
| 124 | * |
| 125 | * The log tree is read three times, once to pin down all the extents it is |
| 126 | * using in ram and once, once to create all the inodes logged in the tree |
| 127 | * and once to do all the other items. |
| 128 | */ |
| 129 | |
| 130 | /* |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 131 | * start a sub transaction and setup the log tree |
| 132 | * this increments the log tree writer count to make the people |
| 133 | * syncing the tree wait for us to finish |
| 134 | */ |
| 135 | static int start_log_trans(struct btrfs_trans_handle *trans, |
| 136 | struct btrfs_root *root) |
| 137 | { |
| 138 | int ret; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 139 | int err = 0; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 140 | |
| 141 | mutex_lock(&root->log_mutex); |
| 142 | if (root->log_root) { |
Josef Bacik | ff782e0 | 2009-10-08 15:30:04 -0400 | [diff] [blame] | 143 | if (!root->log_start_pid) { |
| 144 | root->log_start_pid = current->pid; |
| 145 | root->log_multiple_pids = false; |
| 146 | } else if (root->log_start_pid != current->pid) { |
| 147 | root->log_multiple_pids = true; |
| 148 | } |
| 149 | |
Miao Xie | 2ecb792 | 2012-09-06 04:04:27 -0600 | [diff] [blame^] | 150 | atomic_inc(&root->log_batch); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 151 | atomic_inc(&root->log_writers); |
| 152 | mutex_unlock(&root->log_mutex); |
| 153 | return 0; |
| 154 | } |
Josef Bacik | ff782e0 | 2009-10-08 15:30:04 -0400 | [diff] [blame] | 155 | root->log_multiple_pids = false; |
| 156 | root->log_start_pid = current->pid; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 157 | mutex_lock(&root->fs_info->tree_log_mutex); |
| 158 | if (!root->fs_info->log_root_tree) { |
| 159 | ret = btrfs_init_log_root_tree(trans, root->fs_info); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 160 | if (ret) |
| 161 | err = ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 162 | } |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 163 | if (err == 0 && !root->log_root) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 164 | ret = btrfs_add_log_tree(trans, root); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 165 | if (ret) |
| 166 | err = ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 167 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 168 | mutex_unlock(&root->fs_info->tree_log_mutex); |
Miao Xie | 2ecb792 | 2012-09-06 04:04:27 -0600 | [diff] [blame^] | 169 | atomic_inc(&root->log_batch); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 170 | atomic_inc(&root->log_writers); |
| 171 | mutex_unlock(&root->log_mutex); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 172 | return err; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 173 | } |
| 174 | |
| 175 | /* |
| 176 | * returns 0 if there was a log transaction running and we were able |
| 177 | * to join, or returns -ENOENT if there were not transactions |
| 178 | * in progress |
| 179 | */ |
| 180 | static int join_running_log_trans(struct btrfs_root *root) |
| 181 | { |
| 182 | int ret = -ENOENT; |
| 183 | |
| 184 | smp_mb(); |
| 185 | if (!root->log_root) |
| 186 | return -ENOENT; |
| 187 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 188 | mutex_lock(&root->log_mutex); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 189 | if (root->log_root) { |
| 190 | ret = 0; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 191 | atomic_inc(&root->log_writers); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 192 | } |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 193 | mutex_unlock(&root->log_mutex); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 194 | return ret; |
| 195 | } |
| 196 | |
| 197 | /* |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 198 | * This either makes the current running log transaction wait |
| 199 | * until you call btrfs_end_log_trans() or it makes any future |
| 200 | * log transactions wait until you call btrfs_end_log_trans() |
| 201 | */ |
| 202 | int btrfs_pin_log_trans(struct btrfs_root *root) |
| 203 | { |
| 204 | int ret = -ENOENT; |
| 205 | |
| 206 | mutex_lock(&root->log_mutex); |
| 207 | atomic_inc(&root->log_writers); |
| 208 | mutex_unlock(&root->log_mutex); |
| 209 | return ret; |
| 210 | } |
| 211 | |
| 212 | /* |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 213 | * indicate we're done making changes to the log tree |
| 214 | * and wake up anyone waiting to do a sync |
| 215 | */ |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 216 | void btrfs_end_log_trans(struct btrfs_root *root) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 217 | { |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 218 | if (atomic_dec_and_test(&root->log_writers)) { |
| 219 | smp_mb(); |
| 220 | if (waitqueue_active(&root->log_writer_wait)) |
| 221 | wake_up(&root->log_writer_wait); |
| 222 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 223 | } |
| 224 | |
| 225 | |
| 226 | /* |
| 227 | * the walk control struct is used to pass state down the chain when |
| 228 | * processing the log tree. The stage field tells us which part |
| 229 | * of the log tree processing we are currently doing. The others |
| 230 | * are state fields used for that specific part |
| 231 | */ |
| 232 | struct walk_control { |
| 233 | /* should we free the extent on disk when done? This is used |
| 234 | * at transaction commit time while freeing a log tree |
| 235 | */ |
| 236 | int free; |
| 237 | |
| 238 | /* should we write out the extent buffer? This is used |
| 239 | * while flushing the log tree to disk during a sync |
| 240 | */ |
| 241 | int write; |
| 242 | |
| 243 | /* should we wait for the extent buffer io to finish? Also used |
| 244 | * while flushing the log tree to disk for a sync |
| 245 | */ |
| 246 | int wait; |
| 247 | |
| 248 | /* pin only walk, we record which extents on disk belong to the |
| 249 | * log trees |
| 250 | */ |
| 251 | int pin; |
| 252 | |
| 253 | /* what stage of the replay code we're currently in */ |
| 254 | int stage; |
| 255 | |
| 256 | /* the root we are currently replaying */ |
| 257 | struct btrfs_root *replay_dest; |
| 258 | |
| 259 | /* the trans handle for the current replay */ |
| 260 | struct btrfs_trans_handle *trans; |
| 261 | |
| 262 | /* the function that gets used to process blocks we find in the |
| 263 | * tree. Note the extent_buffer might not be up to date when it is |
| 264 | * passed in, and it must be checked or read if you need the data |
| 265 | * inside it |
| 266 | */ |
| 267 | int (*process_func)(struct btrfs_root *log, struct extent_buffer *eb, |
| 268 | struct walk_control *wc, u64 gen); |
| 269 | }; |
| 270 | |
| 271 | /* |
| 272 | * process_func used to pin down extents, write them or wait on them |
| 273 | */ |
| 274 | static int process_one_buffer(struct btrfs_root *log, |
| 275 | struct extent_buffer *eb, |
| 276 | struct walk_control *wc, u64 gen) |
| 277 | { |
Josef Bacik | 04018de | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 278 | if (wc->pin) |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 279 | btrfs_pin_extent_for_log_replay(wc->trans, |
| 280 | log->fs_info->extent_root, |
| 281 | eb->start, eb->len); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 282 | |
Chris Mason | b9fab91 | 2012-05-06 07:23:47 -0400 | [diff] [blame] | 283 | if (btrfs_buffer_uptodate(eb, gen, 0)) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 284 | if (wc->write) |
| 285 | btrfs_write_tree_block(eb); |
| 286 | if (wc->wait) |
| 287 | btrfs_wait_tree_block_writeback(eb); |
| 288 | } |
| 289 | return 0; |
| 290 | } |
| 291 | |
| 292 | /* |
| 293 | * Item overwrite used by replay and tree logging. eb, slot and key all refer |
| 294 | * to the src data we are copying out. |
| 295 | * |
| 296 | * root is the tree we are copying into, and path is a scratch |
| 297 | * path for use in this function (it should be released on entry and |
| 298 | * will be released on exit). |
| 299 | * |
| 300 | * If the key is already in the destination tree the existing item is |
| 301 | * overwritten. If the existing item isn't big enough, it is extended. |
| 302 | * If it is too large, it is truncated. |
| 303 | * |
| 304 | * If the key isn't in the destination yet, a new item is inserted. |
| 305 | */ |
| 306 | static noinline int overwrite_item(struct btrfs_trans_handle *trans, |
| 307 | struct btrfs_root *root, |
| 308 | struct btrfs_path *path, |
| 309 | struct extent_buffer *eb, int slot, |
| 310 | struct btrfs_key *key) |
| 311 | { |
| 312 | int ret; |
| 313 | u32 item_size; |
| 314 | u64 saved_i_size = 0; |
| 315 | int save_old_i_size = 0; |
| 316 | unsigned long src_ptr; |
| 317 | unsigned long dst_ptr; |
| 318 | int overwrite_root = 0; |
| 319 | |
| 320 | if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) |
| 321 | overwrite_root = 1; |
| 322 | |
| 323 | item_size = btrfs_item_size_nr(eb, slot); |
| 324 | src_ptr = btrfs_item_ptr_offset(eb, slot); |
| 325 | |
| 326 | /* look for the key in the destination tree */ |
| 327 | ret = btrfs_search_slot(NULL, root, key, path, 0, 0); |
| 328 | if (ret == 0) { |
| 329 | char *src_copy; |
| 330 | char *dst_copy; |
| 331 | u32 dst_size = btrfs_item_size_nr(path->nodes[0], |
| 332 | path->slots[0]); |
| 333 | if (dst_size != item_size) |
| 334 | goto insert; |
| 335 | |
| 336 | if (item_size == 0) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 337 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 338 | return 0; |
| 339 | } |
| 340 | dst_copy = kmalloc(item_size, GFP_NOFS); |
| 341 | src_copy = kmalloc(item_size, GFP_NOFS); |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 342 | if (!dst_copy || !src_copy) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 343 | btrfs_release_path(path); |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 344 | kfree(dst_copy); |
| 345 | kfree(src_copy); |
| 346 | return -ENOMEM; |
| 347 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 348 | |
| 349 | read_extent_buffer(eb, src_copy, src_ptr, item_size); |
| 350 | |
| 351 | dst_ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]); |
| 352 | read_extent_buffer(path->nodes[0], dst_copy, dst_ptr, |
| 353 | item_size); |
| 354 | ret = memcmp(dst_copy, src_copy, item_size); |
| 355 | |
| 356 | kfree(dst_copy); |
| 357 | kfree(src_copy); |
| 358 | /* |
| 359 | * they have the same contents, just return, this saves |
| 360 | * us from cowing blocks in the destination tree and doing |
| 361 | * extra writes that may not have been done by a previous |
| 362 | * sync |
| 363 | */ |
| 364 | if (ret == 0) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 365 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 366 | return 0; |
| 367 | } |
| 368 | |
| 369 | } |
| 370 | insert: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 371 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 372 | /* try to insert the key into the destination tree */ |
| 373 | ret = btrfs_insert_empty_item(trans, root, path, |
| 374 | key, item_size); |
| 375 | |
| 376 | /* make sure any existing item is the correct size */ |
| 377 | if (ret == -EEXIST) { |
| 378 | u32 found_size; |
| 379 | found_size = btrfs_item_size_nr(path->nodes[0], |
| 380 | path->slots[0]); |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 381 | if (found_size > item_size) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 382 | btrfs_truncate_item(trans, root, path, item_size, 1); |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 383 | else if (found_size < item_size) |
| 384 | btrfs_extend_item(trans, root, path, |
| 385 | item_size - found_size); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 386 | } else if (ret) { |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 387 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 388 | } |
| 389 | dst_ptr = btrfs_item_ptr_offset(path->nodes[0], |
| 390 | path->slots[0]); |
| 391 | |
| 392 | /* don't overwrite an existing inode if the generation number |
| 393 | * was logged as zero. This is done when the tree logging code |
| 394 | * is just logging an inode to make sure it exists after recovery. |
| 395 | * |
| 396 | * Also, don't overwrite i_size on directories during replay. |
| 397 | * log replay inserts and removes directory items based on the |
| 398 | * state of the tree found in the subvolume, and i_size is modified |
| 399 | * as it goes |
| 400 | */ |
| 401 | if (key->type == BTRFS_INODE_ITEM_KEY && ret == -EEXIST) { |
| 402 | struct btrfs_inode_item *src_item; |
| 403 | struct btrfs_inode_item *dst_item; |
| 404 | |
| 405 | src_item = (struct btrfs_inode_item *)src_ptr; |
| 406 | dst_item = (struct btrfs_inode_item *)dst_ptr; |
| 407 | |
| 408 | if (btrfs_inode_generation(eb, src_item) == 0) |
| 409 | goto no_copy; |
| 410 | |
| 411 | if (overwrite_root && |
| 412 | S_ISDIR(btrfs_inode_mode(eb, src_item)) && |
| 413 | S_ISDIR(btrfs_inode_mode(path->nodes[0], dst_item))) { |
| 414 | save_old_i_size = 1; |
| 415 | saved_i_size = btrfs_inode_size(path->nodes[0], |
| 416 | dst_item); |
| 417 | } |
| 418 | } |
| 419 | |
| 420 | copy_extent_buffer(path->nodes[0], eb, dst_ptr, |
| 421 | src_ptr, item_size); |
| 422 | |
| 423 | if (save_old_i_size) { |
| 424 | struct btrfs_inode_item *dst_item; |
| 425 | dst_item = (struct btrfs_inode_item *)dst_ptr; |
| 426 | btrfs_set_inode_size(path->nodes[0], dst_item, saved_i_size); |
| 427 | } |
| 428 | |
| 429 | /* make sure the generation is filled in */ |
| 430 | if (key->type == BTRFS_INODE_ITEM_KEY) { |
| 431 | struct btrfs_inode_item *dst_item; |
| 432 | dst_item = (struct btrfs_inode_item *)dst_ptr; |
| 433 | if (btrfs_inode_generation(path->nodes[0], dst_item) == 0) { |
| 434 | btrfs_set_inode_generation(path->nodes[0], dst_item, |
| 435 | trans->transid); |
| 436 | } |
| 437 | } |
| 438 | no_copy: |
| 439 | btrfs_mark_buffer_dirty(path->nodes[0]); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 440 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 441 | return 0; |
| 442 | } |
| 443 | |
| 444 | /* |
| 445 | * simple helper to read an inode off the disk from a given root |
| 446 | * This can only be called for subvolume roots and not for the log |
| 447 | */ |
| 448 | static noinline struct inode *read_one_inode(struct btrfs_root *root, |
| 449 | u64 objectid) |
| 450 | { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 451 | struct btrfs_key key; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 452 | struct inode *inode; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 453 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 454 | key.objectid = objectid; |
| 455 | key.type = BTRFS_INODE_ITEM_KEY; |
| 456 | key.offset = 0; |
Josef Bacik | 73f7341 | 2009-12-04 17:38:27 +0000 | [diff] [blame] | 457 | inode = btrfs_iget(root->fs_info->sb, &key, root, NULL); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 458 | if (IS_ERR(inode)) { |
| 459 | inode = NULL; |
| 460 | } else if (is_bad_inode(inode)) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 461 | iput(inode); |
| 462 | inode = NULL; |
| 463 | } |
| 464 | return inode; |
| 465 | } |
| 466 | |
| 467 | /* replays a single extent in 'eb' at 'slot' with 'key' into the |
| 468 | * subvolume 'root'. path is released on entry and should be released |
| 469 | * on exit. |
| 470 | * |
| 471 | * extents in the log tree have not been allocated out of the extent |
| 472 | * tree yet. So, this completes the allocation, taking a reference |
| 473 | * as required if the extent already exists or creating a new extent |
| 474 | * if it isn't in the extent allocation tree yet. |
| 475 | * |
| 476 | * The extent is inserted into the file, dropping any existing extents |
| 477 | * from the file that overlap the new one. |
| 478 | */ |
| 479 | static noinline int replay_one_extent(struct btrfs_trans_handle *trans, |
| 480 | struct btrfs_root *root, |
| 481 | struct btrfs_path *path, |
| 482 | struct extent_buffer *eb, int slot, |
| 483 | struct btrfs_key *key) |
| 484 | { |
| 485 | int found_type; |
| 486 | u64 mask = root->sectorsize - 1; |
| 487 | u64 extent_end; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 488 | u64 start = key->offset; |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 489 | u64 saved_nbytes; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 490 | struct btrfs_file_extent_item *item; |
| 491 | struct inode *inode = NULL; |
| 492 | unsigned long size; |
| 493 | int ret = 0; |
| 494 | |
| 495 | item = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item); |
| 496 | found_type = btrfs_file_extent_type(eb, item); |
| 497 | |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 498 | if (found_type == BTRFS_FILE_EXTENT_REG || |
| 499 | found_type == BTRFS_FILE_EXTENT_PREALLOC) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 500 | extent_end = start + btrfs_file_extent_num_bytes(eb, item); |
| 501 | else if (found_type == BTRFS_FILE_EXTENT_INLINE) { |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 502 | size = btrfs_file_extent_inline_len(eb, item); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 503 | extent_end = (start + size + mask) & ~mask; |
| 504 | } else { |
| 505 | ret = 0; |
| 506 | goto out; |
| 507 | } |
| 508 | |
| 509 | inode = read_one_inode(root, key->objectid); |
| 510 | if (!inode) { |
| 511 | ret = -EIO; |
| 512 | goto out; |
| 513 | } |
| 514 | |
| 515 | /* |
| 516 | * first check to see if we already have this extent in the |
| 517 | * file. This must be done before the btrfs_drop_extents run |
| 518 | * so we don't try to drop this extent. |
| 519 | */ |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 520 | ret = btrfs_lookup_file_extent(trans, root, path, btrfs_ino(inode), |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 521 | start, 0); |
| 522 | |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 523 | if (ret == 0 && |
| 524 | (found_type == BTRFS_FILE_EXTENT_REG || |
| 525 | found_type == BTRFS_FILE_EXTENT_PREALLOC)) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 526 | struct btrfs_file_extent_item cmp1; |
| 527 | struct btrfs_file_extent_item cmp2; |
| 528 | struct btrfs_file_extent_item *existing; |
| 529 | struct extent_buffer *leaf; |
| 530 | |
| 531 | leaf = path->nodes[0]; |
| 532 | existing = btrfs_item_ptr(leaf, path->slots[0], |
| 533 | struct btrfs_file_extent_item); |
| 534 | |
| 535 | read_extent_buffer(eb, &cmp1, (unsigned long)item, |
| 536 | sizeof(cmp1)); |
| 537 | read_extent_buffer(leaf, &cmp2, (unsigned long)existing, |
| 538 | sizeof(cmp2)); |
| 539 | |
| 540 | /* |
| 541 | * we already have a pointer to this exact extent, |
| 542 | * we don't have to do anything |
| 543 | */ |
| 544 | if (memcmp(&cmp1, &cmp2, sizeof(cmp1)) == 0) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 545 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 546 | goto out; |
| 547 | } |
| 548 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 549 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 550 | |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 551 | saved_nbytes = inode_get_bytes(inode); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 552 | /* drop any overlapping extents */ |
Josef Bacik | 2671485 | 2012-08-29 12:24:27 -0400 | [diff] [blame] | 553 | ret = btrfs_drop_extents(trans, root, inode, start, extent_end, 1); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 554 | BUG_ON(ret); |
| 555 | |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 556 | if (found_type == BTRFS_FILE_EXTENT_REG || |
| 557 | found_type == BTRFS_FILE_EXTENT_PREALLOC) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 558 | u64 offset; |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 559 | unsigned long dest_offset; |
| 560 | struct btrfs_key ins; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 561 | |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 562 | ret = btrfs_insert_empty_item(trans, root, path, key, |
| 563 | sizeof(*item)); |
| 564 | BUG_ON(ret); |
| 565 | dest_offset = btrfs_item_ptr_offset(path->nodes[0], |
| 566 | path->slots[0]); |
| 567 | copy_extent_buffer(path->nodes[0], eb, dest_offset, |
| 568 | (unsigned long)item, sizeof(*item)); |
| 569 | |
| 570 | ins.objectid = btrfs_file_extent_disk_bytenr(eb, item); |
| 571 | ins.offset = btrfs_file_extent_disk_num_bytes(eb, item); |
| 572 | ins.type = BTRFS_EXTENT_ITEM_KEY; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 573 | offset = key->offset - btrfs_file_extent_offset(eb, item); |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 574 | |
| 575 | if (ins.objectid > 0) { |
| 576 | u64 csum_start; |
| 577 | u64 csum_end; |
| 578 | LIST_HEAD(ordered_sums); |
| 579 | /* |
| 580 | * is this extent already allocated in the extent |
| 581 | * allocation tree? If so, just add a reference |
| 582 | */ |
| 583 | ret = btrfs_lookup_extent(root, ins.objectid, |
| 584 | ins.offset); |
| 585 | if (ret == 0) { |
| 586 | ret = btrfs_inc_extent_ref(trans, root, |
| 587 | ins.objectid, ins.offset, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 588 | 0, root->root_key.objectid, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 589 | key->objectid, offset, 0); |
Tsutomu Itoh | 37daa4f | 2011-04-28 09:18:21 +0000 | [diff] [blame] | 590 | BUG_ON(ret); |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 591 | } else { |
| 592 | /* |
| 593 | * insert the extent pointer in the extent |
| 594 | * allocation tree |
| 595 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 596 | ret = btrfs_alloc_logged_file_extent(trans, |
| 597 | root, root->root_key.objectid, |
| 598 | key->objectid, offset, &ins); |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 599 | BUG_ON(ret); |
| 600 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 601 | btrfs_release_path(path); |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 602 | |
| 603 | if (btrfs_file_extent_compression(eb, item)) { |
| 604 | csum_start = ins.objectid; |
| 605 | csum_end = csum_start + ins.offset; |
| 606 | } else { |
| 607 | csum_start = ins.objectid + |
| 608 | btrfs_file_extent_offset(eb, item); |
| 609 | csum_end = csum_start + |
| 610 | btrfs_file_extent_num_bytes(eb, item); |
| 611 | } |
| 612 | |
| 613 | ret = btrfs_lookup_csums_range(root->log_root, |
| 614 | csum_start, csum_end - 1, |
Arne Jansen | a2de733 | 2011-03-08 14:14:00 +0100 | [diff] [blame] | 615 | &ordered_sums, 0); |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 616 | BUG_ON(ret); |
| 617 | while (!list_empty(&ordered_sums)) { |
| 618 | struct btrfs_ordered_sum *sums; |
| 619 | sums = list_entry(ordered_sums.next, |
| 620 | struct btrfs_ordered_sum, |
| 621 | list); |
| 622 | ret = btrfs_csum_file_blocks(trans, |
| 623 | root->fs_info->csum_root, |
| 624 | sums); |
| 625 | BUG_ON(ret); |
| 626 | list_del(&sums->list); |
| 627 | kfree(sums); |
| 628 | } |
| 629 | } else { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 630 | btrfs_release_path(path); |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 631 | } |
| 632 | } else if (found_type == BTRFS_FILE_EXTENT_INLINE) { |
| 633 | /* inline extents are easy, we just overwrite them */ |
| 634 | ret = overwrite_item(trans, root, path, eb, slot, key); |
| 635 | BUG_ON(ret); |
| 636 | } |
| 637 | |
| 638 | inode_set_bytes(inode, saved_nbytes); |
Tsutomu Itoh | b995929 | 2012-06-25 21:25:22 -0600 | [diff] [blame] | 639 | ret = btrfs_update_inode(trans, root, inode); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 640 | out: |
| 641 | if (inode) |
| 642 | iput(inode); |
| 643 | return ret; |
| 644 | } |
| 645 | |
| 646 | /* |
| 647 | * when cleaning up conflicts between the directory names in the |
| 648 | * subvolume, directory names in the log and directory names in the |
| 649 | * inode back references, we may have to unlink inodes from directories. |
| 650 | * |
| 651 | * This is a helper function to do the unlink of a specific directory |
| 652 | * item |
| 653 | */ |
| 654 | static noinline int drop_one_dir_item(struct btrfs_trans_handle *trans, |
| 655 | struct btrfs_root *root, |
| 656 | struct btrfs_path *path, |
| 657 | struct inode *dir, |
| 658 | struct btrfs_dir_item *di) |
| 659 | { |
| 660 | struct inode *inode; |
| 661 | char *name; |
| 662 | int name_len; |
| 663 | struct extent_buffer *leaf; |
| 664 | struct btrfs_key location; |
| 665 | int ret; |
| 666 | |
| 667 | leaf = path->nodes[0]; |
| 668 | |
| 669 | btrfs_dir_item_key_to_cpu(leaf, di, &location); |
| 670 | name_len = btrfs_dir_name_len(leaf, di); |
| 671 | name = kmalloc(name_len, GFP_NOFS); |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 672 | if (!name) |
| 673 | return -ENOMEM; |
| 674 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 675 | read_extent_buffer(leaf, name, (unsigned long)(di + 1), name_len); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 676 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 677 | |
| 678 | inode = read_one_inode(root, location.objectid); |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 679 | if (!inode) { |
| 680 | kfree(name); |
| 681 | return -EIO; |
| 682 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 683 | |
Yan Zheng | ec051c0 | 2009-01-05 15:43:42 -0500 | [diff] [blame] | 684 | ret = link_to_fixup_dir(trans, root, path, location.objectid); |
| 685 | BUG_ON(ret); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 686 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 687 | ret = btrfs_unlink_inode(trans, root, dir, inode, name, name_len); |
Yan Zheng | ec051c0 | 2009-01-05 15:43:42 -0500 | [diff] [blame] | 688 | BUG_ON(ret); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 689 | kfree(name); |
| 690 | |
| 691 | iput(inode); |
Chris Mason | b630556 | 2012-07-02 15:29:53 -0400 | [diff] [blame] | 692 | |
| 693 | btrfs_run_delayed_items(trans, root); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 694 | return ret; |
| 695 | } |
| 696 | |
| 697 | /* |
| 698 | * helper function to see if a given name and sequence number found |
| 699 | * in an inode back reference are already in a directory and correctly |
| 700 | * point to this inode |
| 701 | */ |
| 702 | static noinline int inode_in_dir(struct btrfs_root *root, |
| 703 | struct btrfs_path *path, |
| 704 | u64 dirid, u64 objectid, u64 index, |
| 705 | const char *name, int name_len) |
| 706 | { |
| 707 | struct btrfs_dir_item *di; |
| 708 | struct btrfs_key location; |
| 709 | int match = 0; |
| 710 | |
| 711 | di = btrfs_lookup_dir_index_item(NULL, root, path, dirid, |
| 712 | index, name, name_len, 0); |
| 713 | if (di && !IS_ERR(di)) { |
| 714 | btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location); |
| 715 | if (location.objectid != objectid) |
| 716 | goto out; |
| 717 | } else |
| 718 | goto out; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 719 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 720 | |
| 721 | di = btrfs_lookup_dir_item(NULL, root, path, dirid, name, name_len, 0); |
| 722 | if (di && !IS_ERR(di)) { |
| 723 | btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location); |
| 724 | if (location.objectid != objectid) |
| 725 | goto out; |
| 726 | } else |
| 727 | goto out; |
| 728 | match = 1; |
| 729 | out: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 730 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 731 | return match; |
| 732 | } |
| 733 | |
| 734 | /* |
| 735 | * helper function to check a log tree for a named back reference in |
| 736 | * an inode. This is used to decide if a back reference that is |
| 737 | * found in the subvolume conflicts with what we find in the log. |
| 738 | * |
| 739 | * inode backreferences may have multiple refs in a single item, |
| 740 | * during replay we process one reference at a time, and we don't |
| 741 | * want to delete valid links to a file from the subvolume if that |
| 742 | * link is also in the log. |
| 743 | */ |
| 744 | static noinline int backref_in_log(struct btrfs_root *log, |
| 745 | struct btrfs_key *key, |
| 746 | char *name, int namelen) |
| 747 | { |
| 748 | struct btrfs_path *path; |
| 749 | struct btrfs_inode_ref *ref; |
| 750 | unsigned long ptr; |
| 751 | unsigned long ptr_end; |
| 752 | unsigned long name_ptr; |
| 753 | int found_name_len; |
| 754 | int item_size; |
| 755 | int ret; |
| 756 | int match = 0; |
| 757 | |
| 758 | path = btrfs_alloc_path(); |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 759 | if (!path) |
| 760 | return -ENOMEM; |
| 761 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 762 | ret = btrfs_search_slot(NULL, log, key, path, 0, 0); |
| 763 | if (ret != 0) |
| 764 | goto out; |
| 765 | |
| 766 | item_size = btrfs_item_size_nr(path->nodes[0], path->slots[0]); |
| 767 | ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]); |
| 768 | ptr_end = ptr + item_size; |
| 769 | while (ptr < ptr_end) { |
| 770 | ref = (struct btrfs_inode_ref *)ptr; |
| 771 | found_name_len = btrfs_inode_ref_name_len(path->nodes[0], ref); |
| 772 | if (found_name_len == namelen) { |
| 773 | name_ptr = (unsigned long)(ref + 1); |
| 774 | ret = memcmp_extent_buffer(path->nodes[0], name, |
| 775 | name_ptr, namelen); |
| 776 | if (ret == 0) { |
| 777 | match = 1; |
| 778 | goto out; |
| 779 | } |
| 780 | } |
| 781 | ptr = (unsigned long)(ref + 1) + found_name_len; |
| 782 | } |
| 783 | out: |
| 784 | btrfs_free_path(path); |
| 785 | return match; |
| 786 | } |
| 787 | |
| 788 | |
| 789 | /* |
| 790 | * replay one inode back reference item found in the log tree. |
| 791 | * eb, slot and key refer to the buffer and key found in the log tree. |
| 792 | * root is the destination we are replaying into, and path is for temp |
| 793 | * use by this function. (it should be released on return). |
| 794 | */ |
| 795 | static noinline int add_inode_ref(struct btrfs_trans_handle *trans, |
| 796 | struct btrfs_root *root, |
| 797 | struct btrfs_root *log, |
| 798 | struct btrfs_path *path, |
| 799 | struct extent_buffer *eb, int slot, |
| 800 | struct btrfs_key *key) |
| 801 | { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 802 | struct btrfs_inode_ref *ref; |
liubo | 34f3e4f | 2011-08-06 08:35:23 +0000 | [diff] [blame] | 803 | struct btrfs_dir_item *di; |
| 804 | struct inode *dir; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 805 | struct inode *inode; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 806 | unsigned long ref_ptr; |
| 807 | unsigned long ref_end; |
liubo | 34f3e4f | 2011-08-06 08:35:23 +0000 | [diff] [blame] | 808 | char *name; |
| 809 | int namelen; |
| 810 | int ret; |
liubo | c622ae6 | 2011-03-26 08:01:12 -0400 | [diff] [blame] | 811 | int search_done = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 812 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 813 | /* |
| 814 | * it is possible that we didn't log all the parent directories |
| 815 | * for a given inode. If we don't find the dir, just don't |
| 816 | * copy the back ref in. The link count fixup code will take |
| 817 | * care of the rest |
| 818 | */ |
| 819 | dir = read_one_inode(root, key->offset); |
| 820 | if (!dir) |
| 821 | return -ENOENT; |
| 822 | |
| 823 | inode = read_one_inode(root, key->objectid); |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 824 | if (!inode) { |
| 825 | iput(dir); |
| 826 | return -EIO; |
| 827 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 828 | |
| 829 | ref_ptr = btrfs_item_ptr_offset(eb, slot); |
| 830 | ref_end = ref_ptr + btrfs_item_size_nr(eb, slot); |
| 831 | |
| 832 | again: |
| 833 | ref = (struct btrfs_inode_ref *)ref_ptr; |
| 834 | |
| 835 | namelen = btrfs_inode_ref_name_len(eb, ref); |
| 836 | name = kmalloc(namelen, GFP_NOFS); |
| 837 | BUG_ON(!name); |
| 838 | |
| 839 | read_extent_buffer(eb, name, (unsigned long)(ref + 1), namelen); |
| 840 | |
| 841 | /* if we already have a perfect match, we're done */ |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 842 | if (inode_in_dir(root, path, btrfs_ino(dir), btrfs_ino(inode), |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 843 | btrfs_inode_ref_index(eb, ref), |
| 844 | name, namelen)) { |
| 845 | goto out; |
| 846 | } |
| 847 | |
| 848 | /* |
| 849 | * look for a conflicting back reference in the metadata. |
| 850 | * if we find one we have to unlink that name of the file |
| 851 | * before we add our new link. Later on, we overwrite any |
| 852 | * existing back reference, and we don't want to create |
| 853 | * dangling pointers in the directory. |
| 854 | */ |
liubo | c622ae6 | 2011-03-26 08:01:12 -0400 | [diff] [blame] | 855 | |
| 856 | if (search_done) |
| 857 | goto insert; |
| 858 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 859 | ret = btrfs_search_slot(NULL, root, key, path, 0, 0); |
| 860 | if (ret == 0) { |
| 861 | char *victim_name; |
| 862 | int victim_name_len; |
| 863 | struct btrfs_inode_ref *victim_ref; |
| 864 | unsigned long ptr; |
| 865 | unsigned long ptr_end; |
| 866 | struct extent_buffer *leaf = path->nodes[0]; |
| 867 | |
| 868 | /* are we trying to overwrite a back ref for the root directory |
| 869 | * if so, just jump out, we're done |
| 870 | */ |
| 871 | if (key->objectid == key->offset) |
| 872 | goto out_nowrite; |
| 873 | |
| 874 | /* check all the names in this back reference to see |
| 875 | * if they are in the log. if so, we allow them to stay |
| 876 | * otherwise they must be unlinked as a conflict |
| 877 | */ |
| 878 | ptr = btrfs_item_ptr_offset(leaf, path->slots[0]); |
| 879 | ptr_end = ptr + btrfs_item_size_nr(leaf, path->slots[0]); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 880 | while (ptr < ptr_end) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 881 | victim_ref = (struct btrfs_inode_ref *)ptr; |
| 882 | victim_name_len = btrfs_inode_ref_name_len(leaf, |
| 883 | victim_ref); |
| 884 | victim_name = kmalloc(victim_name_len, GFP_NOFS); |
| 885 | BUG_ON(!victim_name); |
| 886 | |
| 887 | read_extent_buffer(leaf, victim_name, |
| 888 | (unsigned long)(victim_ref + 1), |
| 889 | victim_name_len); |
| 890 | |
| 891 | if (!backref_in_log(log, key, victim_name, |
| 892 | victim_name_len)) { |
| 893 | btrfs_inc_nlink(inode); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 894 | btrfs_release_path(path); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 895 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 896 | ret = btrfs_unlink_inode(trans, root, dir, |
| 897 | inode, victim_name, |
| 898 | victim_name_len); |
Chris Mason | b630556 | 2012-07-02 15:29:53 -0400 | [diff] [blame] | 899 | btrfs_run_delayed_items(trans, root); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 900 | } |
| 901 | kfree(victim_name); |
| 902 | ptr = (unsigned long)(victim_ref + 1) + victim_name_len; |
| 903 | } |
| 904 | BUG_ON(ret); |
liubo | c622ae6 | 2011-03-26 08:01:12 -0400 | [diff] [blame] | 905 | |
| 906 | /* |
| 907 | * NOTE: we have searched root tree and checked the |
| 908 | * coresponding ref, it does not need to check again. |
| 909 | */ |
| 910 | search_done = 1; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 911 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 912 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 913 | |
liubo | 34f3e4f | 2011-08-06 08:35:23 +0000 | [diff] [blame] | 914 | /* look for a conflicting sequence number */ |
| 915 | di = btrfs_lookup_dir_index_item(trans, root, path, btrfs_ino(dir), |
| 916 | btrfs_inode_ref_index(eb, ref), |
| 917 | name, namelen, 0); |
| 918 | if (di && !IS_ERR(di)) { |
| 919 | ret = drop_one_dir_item(trans, root, path, dir, di); |
| 920 | BUG_ON(ret); |
| 921 | } |
| 922 | btrfs_release_path(path); |
| 923 | |
| 924 | /* look for a conflicing name */ |
| 925 | di = btrfs_lookup_dir_item(trans, root, path, btrfs_ino(dir), |
| 926 | name, namelen, 0); |
| 927 | if (di && !IS_ERR(di)) { |
| 928 | ret = drop_one_dir_item(trans, root, path, dir, di); |
| 929 | BUG_ON(ret); |
| 930 | } |
| 931 | btrfs_release_path(path); |
| 932 | |
liubo | c622ae6 | 2011-03-26 08:01:12 -0400 | [diff] [blame] | 933 | insert: |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 934 | /* insert our name */ |
| 935 | ret = btrfs_add_link(trans, dir, inode, name, namelen, 0, |
| 936 | btrfs_inode_ref_index(eb, ref)); |
| 937 | BUG_ON(ret); |
| 938 | |
| 939 | btrfs_update_inode(trans, root, inode); |
| 940 | |
| 941 | out: |
| 942 | ref_ptr = (unsigned long)(ref + 1) + namelen; |
| 943 | kfree(name); |
| 944 | if (ref_ptr < ref_end) |
| 945 | goto again; |
| 946 | |
| 947 | /* finally write the back reference in the inode */ |
| 948 | ret = overwrite_item(trans, root, path, eb, slot, key); |
| 949 | BUG_ON(ret); |
| 950 | |
| 951 | out_nowrite: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 952 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 953 | iput(dir); |
| 954 | iput(inode); |
| 955 | return 0; |
| 956 | } |
| 957 | |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 958 | static int insert_orphan_item(struct btrfs_trans_handle *trans, |
| 959 | struct btrfs_root *root, u64 offset) |
| 960 | { |
| 961 | int ret; |
| 962 | ret = btrfs_find_orphan_item(root, offset); |
| 963 | if (ret > 0) |
| 964 | ret = btrfs_insert_orphan_item(trans, root, offset); |
| 965 | return ret; |
| 966 | } |
| 967 | |
| 968 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 969 | /* |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 970 | * There are a few corners where the link count of the file can't |
| 971 | * be properly maintained during replay. So, instead of adding |
| 972 | * lots of complexity to the log code, we just scan the backrefs |
| 973 | * for any file that has been through replay. |
| 974 | * |
| 975 | * The scan will update the link count on the inode to reflect the |
| 976 | * number of back refs found. If it goes down to zero, the iput |
| 977 | * will free the inode. |
| 978 | */ |
| 979 | static noinline int fixup_inode_link_count(struct btrfs_trans_handle *trans, |
| 980 | struct btrfs_root *root, |
| 981 | struct inode *inode) |
| 982 | { |
| 983 | struct btrfs_path *path; |
| 984 | int ret; |
| 985 | struct btrfs_key key; |
| 986 | u64 nlink = 0; |
| 987 | unsigned long ptr; |
| 988 | unsigned long ptr_end; |
| 989 | int name_len; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 990 | u64 ino = btrfs_ino(inode); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 991 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 992 | key.objectid = ino; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 993 | key.type = BTRFS_INODE_REF_KEY; |
| 994 | key.offset = (u64)-1; |
| 995 | |
| 996 | path = btrfs_alloc_path(); |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 997 | if (!path) |
| 998 | return -ENOMEM; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 999 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1000 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1001 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 1002 | if (ret < 0) |
| 1003 | break; |
| 1004 | if (ret > 0) { |
| 1005 | if (path->slots[0] == 0) |
| 1006 | break; |
| 1007 | path->slots[0]--; |
| 1008 | } |
| 1009 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 1010 | path->slots[0]); |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1011 | if (key.objectid != ino || |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1012 | key.type != BTRFS_INODE_REF_KEY) |
| 1013 | break; |
| 1014 | ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]); |
| 1015 | ptr_end = ptr + btrfs_item_size_nr(path->nodes[0], |
| 1016 | path->slots[0]); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1017 | while (ptr < ptr_end) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1018 | struct btrfs_inode_ref *ref; |
| 1019 | |
| 1020 | ref = (struct btrfs_inode_ref *)ptr; |
| 1021 | name_len = btrfs_inode_ref_name_len(path->nodes[0], |
| 1022 | ref); |
| 1023 | ptr = (unsigned long)(ref + 1) + name_len; |
| 1024 | nlink++; |
| 1025 | } |
| 1026 | |
| 1027 | if (key.offset == 0) |
| 1028 | break; |
| 1029 | key.offset--; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1030 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1031 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1032 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1033 | if (nlink != inode->i_nlink) { |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 1034 | set_nlink(inode, nlink); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1035 | btrfs_update_inode(trans, root, inode); |
| 1036 | } |
Chris Mason | 8d5bf1c | 2008-09-11 15:51:21 -0400 | [diff] [blame] | 1037 | BTRFS_I(inode)->index_cnt = (u64)-1; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1038 | |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 1039 | if (inode->i_nlink == 0) { |
| 1040 | if (S_ISDIR(inode->i_mode)) { |
| 1041 | ret = replay_dir_deletes(trans, root, NULL, path, |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1042 | ino, 1); |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 1043 | BUG_ON(ret); |
| 1044 | } |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1045 | ret = insert_orphan_item(trans, root, ino); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 1046 | BUG_ON(ret); |
| 1047 | } |
| 1048 | btrfs_free_path(path); |
| 1049 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1050 | return 0; |
| 1051 | } |
| 1052 | |
| 1053 | static noinline int fixup_inode_link_counts(struct btrfs_trans_handle *trans, |
| 1054 | struct btrfs_root *root, |
| 1055 | struct btrfs_path *path) |
| 1056 | { |
| 1057 | int ret; |
| 1058 | struct btrfs_key key; |
| 1059 | struct inode *inode; |
| 1060 | |
| 1061 | key.objectid = BTRFS_TREE_LOG_FIXUP_OBJECTID; |
| 1062 | key.type = BTRFS_ORPHAN_ITEM_KEY; |
| 1063 | key.offset = (u64)-1; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1064 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1065 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1066 | if (ret < 0) |
| 1067 | break; |
| 1068 | |
| 1069 | if (ret == 1) { |
| 1070 | if (path->slots[0] == 0) |
| 1071 | break; |
| 1072 | path->slots[0]--; |
| 1073 | } |
| 1074 | |
| 1075 | btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]); |
| 1076 | if (key.objectid != BTRFS_TREE_LOG_FIXUP_OBJECTID || |
| 1077 | key.type != BTRFS_ORPHAN_ITEM_KEY) |
| 1078 | break; |
| 1079 | |
| 1080 | ret = btrfs_del_item(trans, root, path); |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 1081 | if (ret) |
| 1082 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1083 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1084 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1085 | inode = read_one_inode(root, key.offset); |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 1086 | if (!inode) |
| 1087 | return -EIO; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1088 | |
| 1089 | ret = fixup_inode_link_count(trans, root, inode); |
| 1090 | BUG_ON(ret); |
| 1091 | |
| 1092 | iput(inode); |
| 1093 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 1094 | /* |
| 1095 | * fixup on a directory may create new entries, |
| 1096 | * make sure we always look for the highset possible |
| 1097 | * offset |
| 1098 | */ |
| 1099 | key.offset = (u64)-1; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1100 | } |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 1101 | ret = 0; |
| 1102 | out: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1103 | btrfs_release_path(path); |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 1104 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1105 | } |
| 1106 | |
| 1107 | |
| 1108 | /* |
| 1109 | * record a given inode in the fixup dir so we can check its link |
| 1110 | * count when replay is done. The link count is incremented here |
| 1111 | * so the inode won't go away until we check it |
| 1112 | */ |
| 1113 | static noinline int link_to_fixup_dir(struct btrfs_trans_handle *trans, |
| 1114 | struct btrfs_root *root, |
| 1115 | struct btrfs_path *path, |
| 1116 | u64 objectid) |
| 1117 | { |
| 1118 | struct btrfs_key key; |
| 1119 | int ret = 0; |
| 1120 | struct inode *inode; |
| 1121 | |
| 1122 | inode = read_one_inode(root, objectid); |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 1123 | if (!inode) |
| 1124 | return -EIO; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1125 | |
| 1126 | key.objectid = BTRFS_TREE_LOG_FIXUP_OBJECTID; |
| 1127 | btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY); |
| 1128 | key.offset = objectid; |
| 1129 | |
| 1130 | ret = btrfs_insert_empty_item(trans, root, path, &key, 0); |
| 1131 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1132 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1133 | if (ret == 0) { |
| 1134 | btrfs_inc_nlink(inode); |
Tsutomu Itoh | b995929 | 2012-06-25 21:25:22 -0600 | [diff] [blame] | 1135 | ret = btrfs_update_inode(trans, root, inode); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1136 | } else if (ret == -EEXIST) { |
| 1137 | ret = 0; |
| 1138 | } else { |
| 1139 | BUG(); |
| 1140 | } |
| 1141 | iput(inode); |
| 1142 | |
| 1143 | return ret; |
| 1144 | } |
| 1145 | |
| 1146 | /* |
| 1147 | * when replaying the log for a directory, we only insert names |
| 1148 | * for inodes that actually exist. This means an fsync on a directory |
| 1149 | * does not implicitly fsync all the new files in it |
| 1150 | */ |
| 1151 | static noinline int insert_one_name(struct btrfs_trans_handle *trans, |
| 1152 | struct btrfs_root *root, |
| 1153 | struct btrfs_path *path, |
| 1154 | u64 dirid, u64 index, |
| 1155 | char *name, int name_len, u8 type, |
| 1156 | struct btrfs_key *location) |
| 1157 | { |
| 1158 | struct inode *inode; |
| 1159 | struct inode *dir; |
| 1160 | int ret; |
| 1161 | |
| 1162 | inode = read_one_inode(root, location->objectid); |
| 1163 | if (!inode) |
| 1164 | return -ENOENT; |
| 1165 | |
| 1166 | dir = read_one_inode(root, dirid); |
| 1167 | if (!dir) { |
| 1168 | iput(inode); |
| 1169 | return -EIO; |
| 1170 | } |
| 1171 | ret = btrfs_add_link(trans, dir, inode, name, name_len, 1, index); |
| 1172 | |
| 1173 | /* FIXME, put inode into FIXUP list */ |
| 1174 | |
| 1175 | iput(inode); |
| 1176 | iput(dir); |
| 1177 | return ret; |
| 1178 | } |
| 1179 | |
| 1180 | /* |
| 1181 | * take a single entry in a log directory item and replay it into |
| 1182 | * the subvolume. |
| 1183 | * |
| 1184 | * if a conflicting item exists in the subdirectory already, |
| 1185 | * the inode it points to is unlinked and put into the link count |
| 1186 | * fix up tree. |
| 1187 | * |
| 1188 | * If a name from the log points to a file or directory that does |
| 1189 | * not exist in the FS, it is skipped. fsyncs on directories |
| 1190 | * do not force down inodes inside that directory, just changes to the |
| 1191 | * names or unlinks in a directory. |
| 1192 | */ |
| 1193 | static noinline int replay_one_name(struct btrfs_trans_handle *trans, |
| 1194 | struct btrfs_root *root, |
| 1195 | struct btrfs_path *path, |
| 1196 | struct extent_buffer *eb, |
| 1197 | struct btrfs_dir_item *di, |
| 1198 | struct btrfs_key *key) |
| 1199 | { |
| 1200 | char *name; |
| 1201 | int name_len; |
| 1202 | struct btrfs_dir_item *dst_di; |
| 1203 | struct btrfs_key found_key; |
| 1204 | struct btrfs_key log_key; |
| 1205 | struct inode *dir; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1206 | u8 log_type; |
Chris Mason | 4bef084 | 2008-09-08 11:18:08 -0400 | [diff] [blame] | 1207 | int exists; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1208 | int ret; |
| 1209 | |
| 1210 | dir = read_one_inode(root, key->objectid); |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 1211 | if (!dir) |
| 1212 | return -EIO; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1213 | |
| 1214 | name_len = btrfs_dir_name_len(eb, di); |
| 1215 | name = kmalloc(name_len, GFP_NOFS); |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 1216 | if (!name) |
| 1217 | return -ENOMEM; |
| 1218 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1219 | log_type = btrfs_dir_type(eb, di); |
| 1220 | read_extent_buffer(eb, name, (unsigned long)(di + 1), |
| 1221 | name_len); |
| 1222 | |
| 1223 | btrfs_dir_item_key_to_cpu(eb, di, &log_key); |
Chris Mason | 4bef084 | 2008-09-08 11:18:08 -0400 | [diff] [blame] | 1224 | exists = btrfs_lookup_inode(trans, root, path, &log_key, 0); |
| 1225 | if (exists == 0) |
| 1226 | exists = 1; |
| 1227 | else |
| 1228 | exists = 0; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1229 | btrfs_release_path(path); |
Chris Mason | 4bef084 | 2008-09-08 11:18:08 -0400 | [diff] [blame] | 1230 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1231 | if (key->type == BTRFS_DIR_ITEM_KEY) { |
| 1232 | dst_di = btrfs_lookup_dir_item(trans, root, path, key->objectid, |
| 1233 | name, name_len, 1); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1234 | } else if (key->type == BTRFS_DIR_INDEX_KEY) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1235 | dst_di = btrfs_lookup_dir_index_item(trans, root, path, |
| 1236 | key->objectid, |
| 1237 | key->offset, name, |
| 1238 | name_len, 1); |
| 1239 | } else { |
| 1240 | BUG(); |
| 1241 | } |
David Sterba | c704005 | 2011-04-19 18:00:01 +0200 | [diff] [blame] | 1242 | if (IS_ERR_OR_NULL(dst_di)) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1243 | /* we need a sequence number to insert, so we only |
| 1244 | * do inserts for the BTRFS_DIR_INDEX_KEY types |
| 1245 | */ |
| 1246 | if (key->type != BTRFS_DIR_INDEX_KEY) |
| 1247 | goto out; |
| 1248 | goto insert; |
| 1249 | } |
| 1250 | |
| 1251 | btrfs_dir_item_key_to_cpu(path->nodes[0], dst_di, &found_key); |
| 1252 | /* the existing item matches the logged item */ |
| 1253 | if (found_key.objectid == log_key.objectid && |
| 1254 | found_key.type == log_key.type && |
| 1255 | found_key.offset == log_key.offset && |
| 1256 | btrfs_dir_type(path->nodes[0], dst_di) == log_type) { |
| 1257 | goto out; |
| 1258 | } |
| 1259 | |
| 1260 | /* |
| 1261 | * don't drop the conflicting directory entry if the inode |
| 1262 | * for the new entry doesn't exist |
| 1263 | */ |
Chris Mason | 4bef084 | 2008-09-08 11:18:08 -0400 | [diff] [blame] | 1264 | if (!exists) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1265 | goto out; |
| 1266 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1267 | ret = drop_one_dir_item(trans, root, path, dir, dst_di); |
| 1268 | BUG_ON(ret); |
| 1269 | |
| 1270 | if (key->type == BTRFS_DIR_INDEX_KEY) |
| 1271 | goto insert; |
| 1272 | out: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1273 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1274 | kfree(name); |
| 1275 | iput(dir); |
| 1276 | return 0; |
| 1277 | |
| 1278 | insert: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1279 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1280 | ret = insert_one_name(trans, root, path, key->objectid, key->offset, |
| 1281 | name, name_len, log_type, &log_key); |
| 1282 | |
Stoyan Gaydarov | c293498 | 2009-04-02 17:05:11 -0400 | [diff] [blame] | 1283 | BUG_ON(ret && ret != -ENOENT); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1284 | goto out; |
| 1285 | } |
| 1286 | |
| 1287 | /* |
| 1288 | * find all the names in a directory item and reconcile them into |
| 1289 | * the subvolume. Only BTRFS_DIR_ITEM_KEY types will have more than |
| 1290 | * one name in a directory item, but the same code gets used for |
| 1291 | * both directory index types |
| 1292 | */ |
| 1293 | static noinline int replay_one_dir_item(struct btrfs_trans_handle *trans, |
| 1294 | struct btrfs_root *root, |
| 1295 | struct btrfs_path *path, |
| 1296 | struct extent_buffer *eb, int slot, |
| 1297 | struct btrfs_key *key) |
| 1298 | { |
| 1299 | int ret; |
| 1300 | u32 item_size = btrfs_item_size_nr(eb, slot); |
| 1301 | struct btrfs_dir_item *di; |
| 1302 | int name_len; |
| 1303 | unsigned long ptr; |
| 1304 | unsigned long ptr_end; |
| 1305 | |
| 1306 | ptr = btrfs_item_ptr_offset(eb, slot); |
| 1307 | ptr_end = ptr + item_size; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1308 | while (ptr < ptr_end) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1309 | di = (struct btrfs_dir_item *)ptr; |
Josef Bacik | 22a94d4 | 2011-03-16 16:47:17 -0400 | [diff] [blame] | 1310 | if (verify_dir_item(root, eb, di)) |
| 1311 | return -EIO; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1312 | name_len = btrfs_dir_name_len(eb, di); |
| 1313 | ret = replay_one_name(trans, root, path, eb, di, key); |
| 1314 | BUG_ON(ret); |
| 1315 | ptr = (unsigned long)(di + 1); |
| 1316 | ptr += name_len; |
| 1317 | } |
| 1318 | return 0; |
| 1319 | } |
| 1320 | |
| 1321 | /* |
| 1322 | * directory replay has two parts. There are the standard directory |
| 1323 | * items in the log copied from the subvolume, and range items |
| 1324 | * created in the log while the subvolume was logged. |
| 1325 | * |
| 1326 | * The range items tell us which parts of the key space the log |
| 1327 | * is authoritative for. During replay, if a key in the subvolume |
| 1328 | * directory is in a logged range item, but not actually in the log |
| 1329 | * that means it was deleted from the directory before the fsync |
| 1330 | * and should be removed. |
| 1331 | */ |
| 1332 | static noinline int find_dir_range(struct btrfs_root *root, |
| 1333 | struct btrfs_path *path, |
| 1334 | u64 dirid, int key_type, |
| 1335 | u64 *start_ret, u64 *end_ret) |
| 1336 | { |
| 1337 | struct btrfs_key key; |
| 1338 | u64 found_end; |
| 1339 | struct btrfs_dir_log_item *item; |
| 1340 | int ret; |
| 1341 | int nritems; |
| 1342 | |
| 1343 | if (*start_ret == (u64)-1) |
| 1344 | return 1; |
| 1345 | |
| 1346 | key.objectid = dirid; |
| 1347 | key.type = key_type; |
| 1348 | key.offset = *start_ret; |
| 1349 | |
| 1350 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 1351 | if (ret < 0) |
| 1352 | goto out; |
| 1353 | if (ret > 0) { |
| 1354 | if (path->slots[0] == 0) |
| 1355 | goto out; |
| 1356 | path->slots[0]--; |
| 1357 | } |
| 1358 | if (ret != 0) |
| 1359 | btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]); |
| 1360 | |
| 1361 | if (key.type != key_type || key.objectid != dirid) { |
| 1362 | ret = 1; |
| 1363 | goto next; |
| 1364 | } |
| 1365 | item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 1366 | struct btrfs_dir_log_item); |
| 1367 | found_end = btrfs_dir_log_end(path->nodes[0], item); |
| 1368 | |
| 1369 | if (*start_ret >= key.offset && *start_ret <= found_end) { |
| 1370 | ret = 0; |
| 1371 | *start_ret = key.offset; |
| 1372 | *end_ret = found_end; |
| 1373 | goto out; |
| 1374 | } |
| 1375 | ret = 1; |
| 1376 | next: |
| 1377 | /* check the next slot in the tree to see if it is a valid item */ |
| 1378 | nritems = btrfs_header_nritems(path->nodes[0]); |
| 1379 | if (path->slots[0] >= nritems) { |
| 1380 | ret = btrfs_next_leaf(root, path); |
| 1381 | if (ret) |
| 1382 | goto out; |
| 1383 | } else { |
| 1384 | path->slots[0]++; |
| 1385 | } |
| 1386 | |
| 1387 | btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]); |
| 1388 | |
| 1389 | if (key.type != key_type || key.objectid != dirid) { |
| 1390 | ret = 1; |
| 1391 | goto out; |
| 1392 | } |
| 1393 | item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 1394 | struct btrfs_dir_log_item); |
| 1395 | found_end = btrfs_dir_log_end(path->nodes[0], item); |
| 1396 | *start_ret = key.offset; |
| 1397 | *end_ret = found_end; |
| 1398 | ret = 0; |
| 1399 | out: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1400 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1401 | return ret; |
| 1402 | } |
| 1403 | |
| 1404 | /* |
| 1405 | * this looks for a given directory item in the log. If the directory |
| 1406 | * item is not in the log, the item is removed and the inode it points |
| 1407 | * to is unlinked |
| 1408 | */ |
| 1409 | static noinline int check_item_in_log(struct btrfs_trans_handle *trans, |
| 1410 | struct btrfs_root *root, |
| 1411 | struct btrfs_root *log, |
| 1412 | struct btrfs_path *path, |
| 1413 | struct btrfs_path *log_path, |
| 1414 | struct inode *dir, |
| 1415 | struct btrfs_key *dir_key) |
| 1416 | { |
| 1417 | int ret; |
| 1418 | struct extent_buffer *eb; |
| 1419 | int slot; |
| 1420 | u32 item_size; |
| 1421 | struct btrfs_dir_item *di; |
| 1422 | struct btrfs_dir_item *log_di; |
| 1423 | int name_len; |
| 1424 | unsigned long ptr; |
| 1425 | unsigned long ptr_end; |
| 1426 | char *name; |
| 1427 | struct inode *inode; |
| 1428 | struct btrfs_key location; |
| 1429 | |
| 1430 | again: |
| 1431 | eb = path->nodes[0]; |
| 1432 | slot = path->slots[0]; |
| 1433 | item_size = btrfs_item_size_nr(eb, slot); |
| 1434 | ptr = btrfs_item_ptr_offset(eb, slot); |
| 1435 | ptr_end = ptr + item_size; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1436 | while (ptr < ptr_end) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1437 | di = (struct btrfs_dir_item *)ptr; |
Josef Bacik | 22a94d4 | 2011-03-16 16:47:17 -0400 | [diff] [blame] | 1438 | if (verify_dir_item(root, eb, di)) { |
| 1439 | ret = -EIO; |
| 1440 | goto out; |
| 1441 | } |
| 1442 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1443 | name_len = btrfs_dir_name_len(eb, di); |
| 1444 | name = kmalloc(name_len, GFP_NOFS); |
| 1445 | if (!name) { |
| 1446 | ret = -ENOMEM; |
| 1447 | goto out; |
| 1448 | } |
| 1449 | read_extent_buffer(eb, name, (unsigned long)(di + 1), |
| 1450 | name_len); |
| 1451 | log_di = NULL; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 1452 | if (log && dir_key->type == BTRFS_DIR_ITEM_KEY) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1453 | log_di = btrfs_lookup_dir_item(trans, log, log_path, |
| 1454 | dir_key->objectid, |
| 1455 | name, name_len, 0); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 1456 | } else if (log && dir_key->type == BTRFS_DIR_INDEX_KEY) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1457 | log_di = btrfs_lookup_dir_index_item(trans, log, |
| 1458 | log_path, |
| 1459 | dir_key->objectid, |
| 1460 | dir_key->offset, |
| 1461 | name, name_len, 0); |
| 1462 | } |
David Sterba | c704005 | 2011-04-19 18:00:01 +0200 | [diff] [blame] | 1463 | if (IS_ERR_OR_NULL(log_di)) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1464 | btrfs_dir_item_key_to_cpu(eb, di, &location); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1465 | btrfs_release_path(path); |
| 1466 | btrfs_release_path(log_path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1467 | inode = read_one_inode(root, location.objectid); |
Tsutomu Itoh | c00e949 | 2011-04-28 09:10:23 +0000 | [diff] [blame] | 1468 | if (!inode) { |
| 1469 | kfree(name); |
| 1470 | return -EIO; |
| 1471 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1472 | |
| 1473 | ret = link_to_fixup_dir(trans, root, |
| 1474 | path, location.objectid); |
| 1475 | BUG_ON(ret); |
| 1476 | btrfs_inc_nlink(inode); |
| 1477 | ret = btrfs_unlink_inode(trans, root, dir, inode, |
| 1478 | name, name_len); |
| 1479 | BUG_ON(ret); |
Chris Mason | b630556 | 2012-07-02 15:29:53 -0400 | [diff] [blame] | 1480 | |
| 1481 | btrfs_run_delayed_items(trans, root); |
| 1482 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1483 | kfree(name); |
| 1484 | iput(inode); |
| 1485 | |
| 1486 | /* there might still be more names under this key |
| 1487 | * check and repeat if required |
| 1488 | */ |
| 1489 | ret = btrfs_search_slot(NULL, root, dir_key, path, |
| 1490 | 0, 0); |
| 1491 | if (ret == 0) |
| 1492 | goto again; |
| 1493 | ret = 0; |
| 1494 | goto out; |
| 1495 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1496 | btrfs_release_path(log_path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1497 | kfree(name); |
| 1498 | |
| 1499 | ptr = (unsigned long)(di + 1); |
| 1500 | ptr += name_len; |
| 1501 | } |
| 1502 | ret = 0; |
| 1503 | out: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1504 | btrfs_release_path(path); |
| 1505 | btrfs_release_path(log_path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1506 | return ret; |
| 1507 | } |
| 1508 | |
| 1509 | /* |
| 1510 | * deletion replay happens before we copy any new directory items |
| 1511 | * out of the log or out of backreferences from inodes. It |
| 1512 | * scans the log to find ranges of keys that log is authoritative for, |
| 1513 | * and then scans the directory to find items in those ranges that are |
| 1514 | * not present in the log. |
| 1515 | * |
| 1516 | * Anything we don't find in the log is unlinked and removed from the |
| 1517 | * directory. |
| 1518 | */ |
| 1519 | static noinline int replay_dir_deletes(struct btrfs_trans_handle *trans, |
| 1520 | struct btrfs_root *root, |
| 1521 | struct btrfs_root *log, |
| 1522 | struct btrfs_path *path, |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 1523 | u64 dirid, int del_all) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1524 | { |
| 1525 | u64 range_start; |
| 1526 | u64 range_end; |
| 1527 | int key_type = BTRFS_DIR_LOG_ITEM_KEY; |
| 1528 | int ret = 0; |
| 1529 | struct btrfs_key dir_key; |
| 1530 | struct btrfs_key found_key; |
| 1531 | struct btrfs_path *log_path; |
| 1532 | struct inode *dir; |
| 1533 | |
| 1534 | dir_key.objectid = dirid; |
| 1535 | dir_key.type = BTRFS_DIR_ITEM_KEY; |
| 1536 | log_path = btrfs_alloc_path(); |
| 1537 | if (!log_path) |
| 1538 | return -ENOMEM; |
| 1539 | |
| 1540 | dir = read_one_inode(root, dirid); |
| 1541 | /* it isn't an error if the inode isn't there, that can happen |
| 1542 | * because we replay the deletes before we copy in the inode item |
| 1543 | * from the log |
| 1544 | */ |
| 1545 | if (!dir) { |
| 1546 | btrfs_free_path(log_path); |
| 1547 | return 0; |
| 1548 | } |
| 1549 | again: |
| 1550 | range_start = 0; |
| 1551 | range_end = 0; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1552 | while (1) { |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 1553 | if (del_all) |
| 1554 | range_end = (u64)-1; |
| 1555 | else { |
| 1556 | ret = find_dir_range(log, path, dirid, key_type, |
| 1557 | &range_start, &range_end); |
| 1558 | if (ret != 0) |
| 1559 | break; |
| 1560 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1561 | |
| 1562 | dir_key.offset = range_start; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1563 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1564 | int nritems; |
| 1565 | ret = btrfs_search_slot(NULL, root, &dir_key, path, |
| 1566 | 0, 0); |
| 1567 | if (ret < 0) |
| 1568 | goto out; |
| 1569 | |
| 1570 | nritems = btrfs_header_nritems(path->nodes[0]); |
| 1571 | if (path->slots[0] >= nritems) { |
| 1572 | ret = btrfs_next_leaf(root, path); |
| 1573 | if (ret) |
| 1574 | break; |
| 1575 | } |
| 1576 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, |
| 1577 | path->slots[0]); |
| 1578 | if (found_key.objectid != dirid || |
| 1579 | found_key.type != dir_key.type) |
| 1580 | goto next_type; |
| 1581 | |
| 1582 | if (found_key.offset > range_end) |
| 1583 | break; |
| 1584 | |
| 1585 | ret = check_item_in_log(trans, root, log, path, |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 1586 | log_path, dir, |
| 1587 | &found_key); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1588 | BUG_ON(ret); |
| 1589 | if (found_key.offset == (u64)-1) |
| 1590 | break; |
| 1591 | dir_key.offset = found_key.offset + 1; |
| 1592 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1593 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1594 | if (range_end == (u64)-1) |
| 1595 | break; |
| 1596 | range_start = range_end + 1; |
| 1597 | } |
| 1598 | |
| 1599 | next_type: |
| 1600 | ret = 0; |
| 1601 | if (key_type == BTRFS_DIR_LOG_ITEM_KEY) { |
| 1602 | key_type = BTRFS_DIR_LOG_INDEX_KEY; |
| 1603 | dir_key.type = BTRFS_DIR_INDEX_KEY; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1604 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1605 | goto again; |
| 1606 | } |
| 1607 | out: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1608 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1609 | btrfs_free_path(log_path); |
| 1610 | iput(dir); |
| 1611 | return ret; |
| 1612 | } |
| 1613 | |
| 1614 | /* |
| 1615 | * the process_func used to replay items from the log tree. This |
| 1616 | * gets called in two different stages. The first stage just looks |
| 1617 | * for inodes and makes sure they are all copied into the subvolume. |
| 1618 | * |
| 1619 | * The second stage copies all the other item types from the log into |
| 1620 | * the subvolume. The two stage approach is slower, but gets rid of |
| 1621 | * lots of complexity around inodes referencing other inodes that exist |
| 1622 | * only in the log (references come from either directory items or inode |
| 1623 | * back refs). |
| 1624 | */ |
| 1625 | static int replay_one_buffer(struct btrfs_root *log, struct extent_buffer *eb, |
| 1626 | struct walk_control *wc, u64 gen) |
| 1627 | { |
| 1628 | int nritems; |
| 1629 | struct btrfs_path *path; |
| 1630 | struct btrfs_root *root = wc->replay_dest; |
| 1631 | struct btrfs_key key; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1632 | int level; |
| 1633 | int i; |
| 1634 | int ret; |
| 1635 | |
Tsutomu Itoh | 018642a | 2012-05-29 18:10:13 +0900 | [diff] [blame] | 1636 | ret = btrfs_read_buffer(eb, gen); |
| 1637 | if (ret) |
| 1638 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1639 | |
| 1640 | level = btrfs_header_level(eb); |
| 1641 | |
| 1642 | if (level != 0) |
| 1643 | return 0; |
| 1644 | |
| 1645 | path = btrfs_alloc_path(); |
Mark Fasheh | 1e5063d | 2011-07-12 10:46:06 -0700 | [diff] [blame] | 1646 | if (!path) |
| 1647 | return -ENOMEM; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1648 | |
| 1649 | nritems = btrfs_header_nritems(eb); |
| 1650 | for (i = 0; i < nritems; i++) { |
| 1651 | btrfs_item_key_to_cpu(eb, &key, i); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1652 | |
| 1653 | /* inode keys are done during the first stage */ |
| 1654 | if (key.type == BTRFS_INODE_ITEM_KEY && |
| 1655 | wc->stage == LOG_WALK_REPLAY_INODES) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1656 | struct btrfs_inode_item *inode_item; |
| 1657 | u32 mode; |
| 1658 | |
| 1659 | inode_item = btrfs_item_ptr(eb, i, |
| 1660 | struct btrfs_inode_item); |
| 1661 | mode = btrfs_inode_mode(eb, inode_item); |
| 1662 | if (S_ISDIR(mode)) { |
| 1663 | ret = replay_dir_deletes(wc->trans, |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 1664 | root, log, path, key.objectid, 0); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1665 | BUG_ON(ret); |
| 1666 | } |
| 1667 | ret = overwrite_item(wc->trans, root, path, |
| 1668 | eb, i, &key); |
| 1669 | BUG_ON(ret); |
| 1670 | |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 1671 | /* for regular files, make sure corresponding |
| 1672 | * orhpan item exist. extents past the new EOF |
| 1673 | * will be truncated later by orphan cleanup. |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1674 | */ |
| 1675 | if (S_ISREG(mode)) { |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 1676 | ret = insert_orphan_item(wc->trans, root, |
| 1677 | key.objectid); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1678 | BUG_ON(ret); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1679 | } |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 1680 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1681 | ret = link_to_fixup_dir(wc->trans, root, |
| 1682 | path, key.objectid); |
| 1683 | BUG_ON(ret); |
| 1684 | } |
| 1685 | if (wc->stage < LOG_WALK_REPLAY_ALL) |
| 1686 | continue; |
| 1687 | |
| 1688 | /* these keys are simply copied */ |
| 1689 | if (key.type == BTRFS_XATTR_ITEM_KEY) { |
| 1690 | ret = overwrite_item(wc->trans, root, path, |
| 1691 | eb, i, &key); |
| 1692 | BUG_ON(ret); |
| 1693 | } else if (key.type == BTRFS_INODE_REF_KEY) { |
| 1694 | ret = add_inode_ref(wc->trans, root, log, path, |
| 1695 | eb, i, &key); |
| 1696 | BUG_ON(ret && ret != -ENOENT); |
| 1697 | } else if (key.type == BTRFS_EXTENT_DATA_KEY) { |
| 1698 | ret = replay_one_extent(wc->trans, root, path, |
| 1699 | eb, i, &key); |
| 1700 | BUG_ON(ret); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1701 | } else if (key.type == BTRFS_DIR_ITEM_KEY || |
| 1702 | key.type == BTRFS_DIR_INDEX_KEY) { |
| 1703 | ret = replay_one_dir_item(wc->trans, root, path, |
| 1704 | eb, i, &key); |
| 1705 | BUG_ON(ret); |
| 1706 | } |
| 1707 | } |
| 1708 | btrfs_free_path(path); |
| 1709 | return 0; |
| 1710 | } |
| 1711 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1712 | static noinline int walk_down_log_tree(struct btrfs_trans_handle *trans, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1713 | struct btrfs_root *root, |
| 1714 | struct btrfs_path *path, int *level, |
| 1715 | struct walk_control *wc) |
| 1716 | { |
| 1717 | u64 root_owner; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1718 | u64 bytenr; |
| 1719 | u64 ptr_gen; |
| 1720 | struct extent_buffer *next; |
| 1721 | struct extent_buffer *cur; |
| 1722 | struct extent_buffer *parent; |
| 1723 | u32 blocksize; |
| 1724 | int ret = 0; |
| 1725 | |
| 1726 | WARN_ON(*level < 0); |
| 1727 | WARN_ON(*level >= BTRFS_MAX_LEVEL); |
| 1728 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1729 | while (*level > 0) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1730 | WARN_ON(*level < 0); |
| 1731 | WARN_ON(*level >= BTRFS_MAX_LEVEL); |
| 1732 | cur = path->nodes[*level]; |
| 1733 | |
| 1734 | if (btrfs_header_level(cur) != *level) |
| 1735 | WARN_ON(1); |
| 1736 | |
| 1737 | if (path->slots[*level] >= |
| 1738 | btrfs_header_nritems(cur)) |
| 1739 | break; |
| 1740 | |
| 1741 | bytenr = btrfs_node_blockptr(cur, path->slots[*level]); |
| 1742 | ptr_gen = btrfs_node_ptr_generation(cur, path->slots[*level]); |
| 1743 | blocksize = btrfs_level_size(root, *level - 1); |
| 1744 | |
| 1745 | parent = path->nodes[*level]; |
| 1746 | root_owner = btrfs_header_owner(parent); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1747 | |
| 1748 | next = btrfs_find_create_tree_block(root, bytenr, blocksize); |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 1749 | if (!next) |
| 1750 | return -ENOMEM; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1751 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1752 | if (*level == 1) { |
Mark Fasheh | 1e5063d | 2011-07-12 10:46:06 -0700 | [diff] [blame] | 1753 | ret = wc->process_func(root, next, wc, ptr_gen); |
| 1754 | if (ret) |
| 1755 | return ret; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 1756 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1757 | path->slots[*level]++; |
| 1758 | if (wc->free) { |
Tsutomu Itoh | 018642a | 2012-05-29 18:10:13 +0900 | [diff] [blame] | 1759 | ret = btrfs_read_buffer(next, ptr_gen); |
| 1760 | if (ret) { |
| 1761 | free_extent_buffer(next); |
| 1762 | return ret; |
| 1763 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1764 | |
| 1765 | btrfs_tree_lock(next); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 1766 | btrfs_set_lock_blocking(next); |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 1767 | clean_tree_block(trans, root, next); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1768 | btrfs_wait_tree_block_writeback(next); |
| 1769 | btrfs_tree_unlock(next); |
| 1770 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1771 | WARN_ON(root_owner != |
| 1772 | BTRFS_TREE_LOG_OBJECTID); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 1773 | ret = btrfs_free_and_pin_reserved_extent(root, |
Chris Mason | d00aff0 | 2008-09-11 15:54:42 -0400 | [diff] [blame] | 1774 | bytenr, blocksize); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1775 | BUG_ON(ret); /* -ENOMEM or logic errors */ |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1776 | } |
| 1777 | free_extent_buffer(next); |
| 1778 | continue; |
| 1779 | } |
Tsutomu Itoh | 018642a | 2012-05-29 18:10:13 +0900 | [diff] [blame] | 1780 | ret = btrfs_read_buffer(next, ptr_gen); |
| 1781 | if (ret) { |
| 1782 | free_extent_buffer(next); |
| 1783 | return ret; |
| 1784 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1785 | |
| 1786 | WARN_ON(*level <= 0); |
| 1787 | if (path->nodes[*level-1]) |
| 1788 | free_extent_buffer(path->nodes[*level-1]); |
| 1789 | path->nodes[*level-1] = next; |
| 1790 | *level = btrfs_header_level(next); |
| 1791 | path->slots[*level] = 0; |
| 1792 | cond_resched(); |
| 1793 | } |
| 1794 | WARN_ON(*level < 0); |
| 1795 | WARN_ON(*level >= BTRFS_MAX_LEVEL); |
| 1796 | |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 1797 | path->slots[*level] = btrfs_header_nritems(path->nodes[*level]); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1798 | |
| 1799 | cond_resched(); |
| 1800 | return 0; |
| 1801 | } |
| 1802 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1803 | static noinline int walk_up_log_tree(struct btrfs_trans_handle *trans, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1804 | struct btrfs_root *root, |
| 1805 | struct btrfs_path *path, int *level, |
| 1806 | struct walk_control *wc) |
| 1807 | { |
| 1808 | u64 root_owner; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1809 | int i; |
| 1810 | int slot; |
| 1811 | int ret; |
| 1812 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1813 | for (i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1814 | slot = path->slots[i]; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 1815 | if (slot + 1 < btrfs_header_nritems(path->nodes[i])) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1816 | path->slots[i]++; |
| 1817 | *level = i; |
| 1818 | WARN_ON(*level == 0); |
| 1819 | return 0; |
| 1820 | } else { |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1821 | struct extent_buffer *parent; |
| 1822 | if (path->nodes[*level] == root->node) |
| 1823 | parent = path->nodes[*level]; |
| 1824 | else |
| 1825 | parent = path->nodes[*level + 1]; |
| 1826 | |
| 1827 | root_owner = btrfs_header_owner(parent); |
Mark Fasheh | 1e5063d | 2011-07-12 10:46:06 -0700 | [diff] [blame] | 1828 | ret = wc->process_func(root, path->nodes[*level], wc, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1829 | btrfs_header_generation(path->nodes[*level])); |
Mark Fasheh | 1e5063d | 2011-07-12 10:46:06 -0700 | [diff] [blame] | 1830 | if (ret) |
| 1831 | return ret; |
| 1832 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1833 | if (wc->free) { |
| 1834 | struct extent_buffer *next; |
| 1835 | |
| 1836 | next = path->nodes[*level]; |
| 1837 | |
| 1838 | btrfs_tree_lock(next); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 1839 | btrfs_set_lock_blocking(next); |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 1840 | clean_tree_block(trans, root, next); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1841 | btrfs_wait_tree_block_writeback(next); |
| 1842 | btrfs_tree_unlock(next); |
| 1843 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1844 | WARN_ON(root_owner != BTRFS_TREE_LOG_OBJECTID); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 1845 | ret = btrfs_free_and_pin_reserved_extent(root, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1846 | path->nodes[*level]->start, |
Chris Mason | d00aff0 | 2008-09-11 15:54:42 -0400 | [diff] [blame] | 1847 | path->nodes[*level]->len); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1848 | BUG_ON(ret); |
| 1849 | } |
| 1850 | free_extent_buffer(path->nodes[*level]); |
| 1851 | path->nodes[*level] = NULL; |
| 1852 | *level = i + 1; |
| 1853 | } |
| 1854 | } |
| 1855 | return 1; |
| 1856 | } |
| 1857 | |
| 1858 | /* |
| 1859 | * drop the reference count on the tree rooted at 'snap'. This traverses |
| 1860 | * the tree freeing any blocks that have a ref count of zero after being |
| 1861 | * decremented. |
| 1862 | */ |
| 1863 | static int walk_log_tree(struct btrfs_trans_handle *trans, |
| 1864 | struct btrfs_root *log, struct walk_control *wc) |
| 1865 | { |
| 1866 | int ret = 0; |
| 1867 | int wret; |
| 1868 | int level; |
| 1869 | struct btrfs_path *path; |
| 1870 | int i; |
| 1871 | int orig_level; |
| 1872 | |
| 1873 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 1874 | if (!path) |
| 1875 | return -ENOMEM; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1876 | |
| 1877 | level = btrfs_header_level(log->node); |
| 1878 | orig_level = level; |
| 1879 | path->nodes[level] = log->node; |
| 1880 | extent_buffer_get(log->node); |
| 1881 | path->slots[level] = 0; |
| 1882 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1883 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1884 | wret = walk_down_log_tree(trans, log, path, &level, wc); |
| 1885 | if (wret > 0) |
| 1886 | break; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1887 | if (wret < 0) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1888 | ret = wret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1889 | goto out; |
| 1890 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1891 | |
| 1892 | wret = walk_up_log_tree(trans, log, path, &level, wc); |
| 1893 | if (wret > 0) |
| 1894 | break; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1895 | if (wret < 0) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1896 | ret = wret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1897 | goto out; |
| 1898 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1899 | } |
| 1900 | |
| 1901 | /* was the root node processed? if not, catch it here */ |
| 1902 | if (path->nodes[orig_level]) { |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1903 | ret = wc->process_func(log, path->nodes[orig_level], wc, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1904 | btrfs_header_generation(path->nodes[orig_level])); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1905 | if (ret) |
| 1906 | goto out; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1907 | if (wc->free) { |
| 1908 | struct extent_buffer *next; |
| 1909 | |
| 1910 | next = path->nodes[orig_level]; |
| 1911 | |
| 1912 | btrfs_tree_lock(next); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 1913 | btrfs_set_lock_blocking(next); |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 1914 | clean_tree_block(trans, log, next); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1915 | btrfs_wait_tree_block_writeback(next); |
| 1916 | btrfs_tree_unlock(next); |
| 1917 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1918 | WARN_ON(log->root_key.objectid != |
| 1919 | BTRFS_TREE_LOG_OBJECTID); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 1920 | ret = btrfs_free_and_pin_reserved_extent(log, next->start, |
Chris Mason | d00aff0 | 2008-09-11 15:54:42 -0400 | [diff] [blame] | 1921 | next->len); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1922 | BUG_ON(ret); /* -ENOMEM or logic errors */ |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1923 | } |
| 1924 | } |
| 1925 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1926 | out: |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1927 | for (i = 0; i <= orig_level; i++) { |
| 1928 | if (path->nodes[i]) { |
| 1929 | free_extent_buffer(path->nodes[i]); |
| 1930 | path->nodes[i] = NULL; |
| 1931 | } |
| 1932 | } |
| 1933 | btrfs_free_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1934 | return ret; |
| 1935 | } |
| 1936 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 1937 | /* |
| 1938 | * helper function to update the item for a given subvolumes log root |
| 1939 | * in the tree of log roots |
| 1940 | */ |
| 1941 | static int update_log_root(struct btrfs_trans_handle *trans, |
| 1942 | struct btrfs_root *log) |
| 1943 | { |
| 1944 | int ret; |
| 1945 | |
| 1946 | if (log->log_transid == 1) { |
| 1947 | /* insert root item on the first sync */ |
| 1948 | ret = btrfs_insert_root(trans, log->fs_info->log_root_tree, |
| 1949 | &log->root_key, &log->root_item); |
| 1950 | } else { |
| 1951 | ret = btrfs_update_root(trans, log->fs_info->log_root_tree, |
| 1952 | &log->root_key, &log->root_item); |
| 1953 | } |
| 1954 | return ret; |
| 1955 | } |
| 1956 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 1957 | static int wait_log_commit(struct btrfs_trans_handle *trans, |
| 1958 | struct btrfs_root *root, unsigned long transid) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1959 | { |
| 1960 | DEFINE_WAIT(wait); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 1961 | int index = transid % 2; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1962 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 1963 | /* |
| 1964 | * we only allow two pending log transactions at a time, |
| 1965 | * so we know that if ours is more than 2 older than the |
| 1966 | * current transaction, we're done |
| 1967 | */ |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1968 | do { |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 1969 | prepare_to_wait(&root->log_commit_wait[index], |
| 1970 | &wait, TASK_UNINTERRUPTIBLE); |
| 1971 | mutex_unlock(&root->log_mutex); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 1972 | |
| 1973 | if (root->fs_info->last_trans_log_full_commit != |
| 1974 | trans->transid && root->log_transid < transid + 2 && |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 1975 | atomic_read(&root->log_commit[index])) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1976 | schedule(); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 1977 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 1978 | finish_wait(&root->log_commit_wait[index], &wait); |
| 1979 | mutex_lock(&root->log_mutex); |
Jan Kara | 6dd70ce | 2012-01-26 15:01:11 -0500 | [diff] [blame] | 1980 | } while (root->fs_info->last_trans_log_full_commit != |
| 1981 | trans->transid && root->log_transid < transid + 2 && |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 1982 | atomic_read(&root->log_commit[index])); |
| 1983 | return 0; |
| 1984 | } |
| 1985 | |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1986 | static void wait_for_writer(struct btrfs_trans_handle *trans, |
| 1987 | struct btrfs_root *root) |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 1988 | { |
| 1989 | DEFINE_WAIT(wait); |
Jan Kara | 6dd70ce | 2012-01-26 15:01:11 -0500 | [diff] [blame] | 1990 | while (root->fs_info->last_trans_log_full_commit != |
| 1991 | trans->transid && atomic_read(&root->log_writers)) { |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 1992 | prepare_to_wait(&root->log_writer_wait, |
| 1993 | &wait, TASK_UNINTERRUPTIBLE); |
| 1994 | mutex_unlock(&root->log_mutex); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 1995 | if (root->fs_info->last_trans_log_full_commit != |
| 1996 | trans->transid && atomic_read(&root->log_writers)) |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 1997 | schedule(); |
| 1998 | mutex_lock(&root->log_mutex); |
| 1999 | finish_wait(&root->log_writer_wait, &wait); |
| 2000 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2001 | } |
| 2002 | |
| 2003 | /* |
| 2004 | * btrfs_sync_log does sends a given tree log down to the disk and |
| 2005 | * updates the super blocks to record it. When this call is done, |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2006 | * you know that any inodes previously logged are safely on disk only |
| 2007 | * if it returns 0. |
| 2008 | * |
| 2009 | * Any other return value means you need to call btrfs_commit_transaction. |
| 2010 | * Some of the edge cases for fsyncing directories that have had unlinks |
| 2011 | * or renames done in the past mean that sometimes the only safe |
| 2012 | * fsync is to commit the whole FS. When btrfs_sync_log returns -EAGAIN, |
| 2013 | * that has happened. |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2014 | */ |
| 2015 | int btrfs_sync_log(struct btrfs_trans_handle *trans, |
| 2016 | struct btrfs_root *root) |
| 2017 | { |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2018 | int index1; |
| 2019 | int index2; |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 2020 | int mark; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2021 | int ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2022 | struct btrfs_root *log = root->log_root; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2023 | struct btrfs_root *log_root_tree = root->fs_info->log_root_tree; |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 2024 | unsigned long log_transid = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2025 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2026 | mutex_lock(&root->log_mutex); |
| 2027 | index1 = root->log_transid % 2; |
| 2028 | if (atomic_read(&root->log_commit[index1])) { |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2029 | wait_log_commit(trans, root, root->log_transid); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2030 | mutex_unlock(&root->log_mutex); |
| 2031 | return 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2032 | } |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2033 | atomic_set(&root->log_commit[index1], 1); |
| 2034 | |
| 2035 | /* wait for previous tree log sync to complete */ |
| 2036 | if (atomic_read(&root->log_commit[(index1 + 1) % 2])) |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2037 | wait_log_commit(trans, root, root->log_transid - 1); |
Yan, Zheng | 86df7eb | 2009-10-14 09:24:59 -0400 | [diff] [blame] | 2038 | while (1) { |
Miao Xie | 2ecb792 | 2012-09-06 04:04:27 -0600 | [diff] [blame^] | 2039 | int batch = atomic_read(&root->log_batch); |
Chris Mason | cd354ad | 2011-10-20 15:45:37 -0400 | [diff] [blame] | 2040 | /* when we're on an ssd, just kick the log commit out */ |
| 2041 | if (!btrfs_test_opt(root, SSD) && root->log_multiple_pids) { |
Yan, Zheng | 86df7eb | 2009-10-14 09:24:59 -0400 | [diff] [blame] | 2042 | mutex_unlock(&root->log_mutex); |
| 2043 | schedule_timeout_uninterruptible(1); |
| 2044 | mutex_lock(&root->log_mutex); |
| 2045 | } |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2046 | wait_for_writer(trans, root); |
Miao Xie | 2ecb792 | 2012-09-06 04:04:27 -0600 | [diff] [blame^] | 2047 | if (batch == atomic_read(&root->log_batch)) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2048 | break; |
| 2049 | } |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 2050 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2051 | /* bail out if we need to do a full commit */ |
| 2052 | if (root->fs_info->last_trans_log_full_commit == trans->transid) { |
| 2053 | ret = -EAGAIN; |
| 2054 | mutex_unlock(&root->log_mutex); |
| 2055 | goto out; |
| 2056 | } |
| 2057 | |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 2058 | log_transid = root->log_transid; |
| 2059 | if (log_transid % 2 == 0) |
| 2060 | mark = EXTENT_DIRTY; |
| 2061 | else |
| 2062 | mark = EXTENT_NEW; |
| 2063 | |
Chris Mason | 690587d | 2009-10-13 13:29:19 -0400 | [diff] [blame] | 2064 | /* we start IO on all the marked extents here, but we don't actually |
| 2065 | * wait for them until later. |
| 2066 | */ |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 2067 | ret = btrfs_write_marked_extents(log, &log->dirty_log_pages, mark); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2068 | if (ret) { |
| 2069 | btrfs_abort_transaction(trans, root, ret); |
| 2070 | mutex_unlock(&root->log_mutex); |
| 2071 | goto out; |
| 2072 | } |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2073 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2074 | btrfs_set_root_node(&log->root_item, log->node); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2075 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2076 | root->log_transid++; |
| 2077 | log->log_transid = root->log_transid; |
Josef Bacik | ff782e0 | 2009-10-08 15:30:04 -0400 | [diff] [blame] | 2078 | root->log_start_pid = 0; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2079 | smp_mb(); |
| 2080 | /* |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 2081 | * IO has been started, blocks of the log tree have WRITTEN flag set |
| 2082 | * in their headers. new modifications of the log will be written to |
| 2083 | * 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] | 2084 | */ |
| 2085 | mutex_unlock(&root->log_mutex); |
| 2086 | |
| 2087 | mutex_lock(&log_root_tree->log_mutex); |
Miao Xie | 2ecb792 | 2012-09-06 04:04:27 -0600 | [diff] [blame^] | 2088 | atomic_inc(&log_root_tree->log_batch); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2089 | atomic_inc(&log_root_tree->log_writers); |
| 2090 | mutex_unlock(&log_root_tree->log_mutex); |
| 2091 | |
| 2092 | ret = update_log_root(trans, log); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2093 | |
| 2094 | mutex_lock(&log_root_tree->log_mutex); |
| 2095 | if (atomic_dec_and_test(&log_root_tree->log_writers)) { |
| 2096 | smp_mb(); |
| 2097 | if (waitqueue_active(&log_root_tree->log_writer_wait)) |
| 2098 | wake_up(&log_root_tree->log_writer_wait); |
| 2099 | } |
| 2100 | |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2101 | if (ret) { |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2102 | if (ret != -ENOSPC) { |
| 2103 | btrfs_abort_transaction(trans, root, ret); |
| 2104 | mutex_unlock(&log_root_tree->log_mutex); |
| 2105 | goto out; |
| 2106 | } |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2107 | root->fs_info->last_trans_log_full_commit = trans->transid; |
| 2108 | btrfs_wait_marked_extents(log, &log->dirty_log_pages, mark); |
| 2109 | mutex_unlock(&log_root_tree->log_mutex); |
| 2110 | ret = -EAGAIN; |
| 2111 | goto out; |
| 2112 | } |
| 2113 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2114 | index2 = log_root_tree->log_transid % 2; |
| 2115 | if (atomic_read(&log_root_tree->log_commit[index2])) { |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 2116 | btrfs_wait_marked_extents(log, &log->dirty_log_pages, mark); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2117 | wait_log_commit(trans, log_root_tree, |
| 2118 | log_root_tree->log_transid); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2119 | mutex_unlock(&log_root_tree->log_mutex); |
Chris Mason | b31eabd | 2011-01-31 16:48:24 -0500 | [diff] [blame] | 2120 | ret = 0; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2121 | goto out; |
| 2122 | } |
| 2123 | atomic_set(&log_root_tree->log_commit[index2], 1); |
| 2124 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2125 | if (atomic_read(&log_root_tree->log_commit[(index2 + 1) % 2])) { |
| 2126 | wait_log_commit(trans, log_root_tree, |
| 2127 | log_root_tree->log_transid - 1); |
| 2128 | } |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2129 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2130 | wait_for_writer(trans, log_root_tree); |
| 2131 | |
| 2132 | /* |
| 2133 | * now that we've moved on to the tree of log tree roots, |
| 2134 | * check the full commit flag again |
| 2135 | */ |
| 2136 | if (root->fs_info->last_trans_log_full_commit == trans->transid) { |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 2137 | btrfs_wait_marked_extents(log, &log->dirty_log_pages, mark); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2138 | mutex_unlock(&log_root_tree->log_mutex); |
| 2139 | ret = -EAGAIN; |
| 2140 | goto out_wake_log_root; |
| 2141 | } |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2142 | |
| 2143 | ret = btrfs_write_and_wait_marked_extents(log_root_tree, |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 2144 | &log_root_tree->dirty_log_pages, |
| 2145 | EXTENT_DIRTY | EXTENT_NEW); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2146 | if (ret) { |
| 2147 | btrfs_abort_transaction(trans, root, ret); |
| 2148 | mutex_unlock(&log_root_tree->log_mutex); |
| 2149 | goto out_wake_log_root; |
| 2150 | } |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 2151 | btrfs_wait_marked_extents(log, &log->dirty_log_pages, mark); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2152 | |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 2153 | btrfs_set_super_log_root(root->fs_info->super_for_commit, |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2154 | log_root_tree->node->start); |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 2155 | btrfs_set_super_log_root_level(root->fs_info->super_for_commit, |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2156 | btrfs_header_level(log_root_tree->node)); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2157 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2158 | log_root_tree->log_transid++; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2159 | smp_mb(); |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2160 | |
| 2161 | mutex_unlock(&log_root_tree->log_mutex); |
| 2162 | |
| 2163 | /* |
| 2164 | * nobody else is going to jump in and write the the ctree |
| 2165 | * super here because the log_commit atomic below is protecting |
| 2166 | * us. We must be called with a transaction handle pinning |
| 2167 | * the running transaction open, so a full commit can't hop |
| 2168 | * in and cause problems either. |
| 2169 | */ |
Arne Jansen | a2de733 | 2011-03-08 14:14:00 +0100 | [diff] [blame] | 2170 | btrfs_scrub_pause_super(root); |
Chris Mason | 4722607 | 2009-10-13 12:55:09 -0400 | [diff] [blame] | 2171 | write_ctree_super(trans, root->fs_info->tree_root, 1); |
Arne Jansen | a2de733 | 2011-03-08 14:14:00 +0100 | [diff] [blame] | 2172 | btrfs_scrub_continue_super(root); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2173 | ret = 0; |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2174 | |
Chris Mason | 257c62e | 2009-10-13 13:21:08 -0400 | [diff] [blame] | 2175 | mutex_lock(&root->log_mutex); |
| 2176 | if (root->last_log_commit < log_transid) |
| 2177 | root->last_log_commit = log_transid; |
| 2178 | mutex_unlock(&root->log_mutex); |
| 2179 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2180 | out_wake_log_root: |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2181 | atomic_set(&log_root_tree->log_commit[index2], 0); |
| 2182 | smp_mb(); |
| 2183 | if (waitqueue_active(&log_root_tree->log_commit_wait[index2])) |
| 2184 | wake_up(&log_root_tree->log_commit_wait[index2]); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2185 | out: |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2186 | atomic_set(&root->log_commit[index1], 0); |
| 2187 | smp_mb(); |
| 2188 | if (waitqueue_active(&root->log_commit_wait[index1])) |
| 2189 | wake_up(&root->log_commit_wait[index1]); |
Chris Mason | b31eabd | 2011-01-31 16:48:24 -0500 | [diff] [blame] | 2190 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2191 | } |
| 2192 | |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2193 | static void free_log_tree(struct btrfs_trans_handle *trans, |
| 2194 | struct btrfs_root *log) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2195 | { |
| 2196 | int ret; |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 2197 | u64 start; |
| 2198 | u64 end; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2199 | struct walk_control wc = { |
| 2200 | .free = 1, |
| 2201 | .process_func = process_one_buffer |
| 2202 | }; |
| 2203 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2204 | ret = walk_log_tree(trans, log, &wc); |
| 2205 | BUG_ON(ret); |
| 2206 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2207 | while (1) { |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 2208 | ret = find_first_extent_bit(&log->dirty_log_pages, |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 2209 | 0, &start, &end, EXTENT_DIRTY | EXTENT_NEW); |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 2210 | if (ret) |
| 2211 | break; |
| 2212 | |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 2213 | clear_extent_bits(&log->dirty_log_pages, start, end, |
| 2214 | EXTENT_DIRTY | EXTENT_NEW, GFP_NOFS); |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 2215 | } |
| 2216 | |
Yan Zheng | 7237f18 | 2009-01-21 12:54:03 -0500 | [diff] [blame] | 2217 | free_extent_buffer(log->node); |
| 2218 | kfree(log); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2219 | } |
| 2220 | |
| 2221 | /* |
| 2222 | * free all the extents used by the tree log. This should be called |
| 2223 | * at commit time of the full transaction |
| 2224 | */ |
| 2225 | int btrfs_free_log(struct btrfs_trans_handle *trans, struct btrfs_root *root) |
| 2226 | { |
| 2227 | if (root->log_root) { |
| 2228 | free_log_tree(trans, root->log_root); |
| 2229 | root->log_root = NULL; |
| 2230 | } |
| 2231 | return 0; |
| 2232 | } |
| 2233 | |
| 2234 | int btrfs_free_log_root_tree(struct btrfs_trans_handle *trans, |
| 2235 | struct btrfs_fs_info *fs_info) |
| 2236 | { |
| 2237 | if (fs_info->log_root_tree) { |
| 2238 | free_log_tree(trans, fs_info->log_root_tree); |
| 2239 | fs_info->log_root_tree = NULL; |
| 2240 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2241 | return 0; |
| 2242 | } |
| 2243 | |
| 2244 | /* |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2245 | * If both a file and directory are logged, and unlinks or renames are |
| 2246 | * mixed in, we have a few interesting corners: |
| 2247 | * |
| 2248 | * create file X in dir Y |
| 2249 | * link file X to X.link in dir Y |
| 2250 | * fsync file X |
| 2251 | * unlink file X but leave X.link |
| 2252 | * fsync dir Y |
| 2253 | * |
| 2254 | * After a crash we would expect only X.link to exist. But file X |
| 2255 | * didn't get fsync'd again so the log has back refs for X and X.link. |
| 2256 | * |
| 2257 | * We solve this by removing directory entries and inode backrefs from the |
| 2258 | * log when a file that was logged in the current transaction is |
| 2259 | * unlinked. Any later fsync will include the updated log entries, and |
| 2260 | * we'll be able to reconstruct the proper directory items from backrefs. |
| 2261 | * |
| 2262 | * This optimizations allows us to avoid relogging the entire inode |
| 2263 | * or the entire directory. |
| 2264 | */ |
| 2265 | int btrfs_del_dir_entries_in_log(struct btrfs_trans_handle *trans, |
| 2266 | struct btrfs_root *root, |
| 2267 | const char *name, int name_len, |
| 2268 | struct inode *dir, u64 index) |
| 2269 | { |
| 2270 | struct btrfs_root *log; |
| 2271 | struct btrfs_dir_item *di; |
| 2272 | struct btrfs_path *path; |
| 2273 | int ret; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2274 | int err = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2275 | int bytes_del = 0; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2276 | u64 dir_ino = btrfs_ino(dir); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2277 | |
Chris Mason | 3a5f1d4 | 2008-09-11 15:53:37 -0400 | [diff] [blame] | 2278 | if (BTRFS_I(dir)->logged_trans < trans->transid) |
| 2279 | return 0; |
| 2280 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2281 | ret = join_running_log_trans(root); |
| 2282 | if (ret) |
| 2283 | return 0; |
| 2284 | |
| 2285 | mutex_lock(&BTRFS_I(dir)->log_mutex); |
| 2286 | |
| 2287 | log = root->log_root; |
| 2288 | path = btrfs_alloc_path(); |
Tsutomu Itoh | a62f44a | 2011-04-25 19:43:51 -0400 | [diff] [blame] | 2289 | if (!path) { |
| 2290 | err = -ENOMEM; |
| 2291 | goto out_unlock; |
| 2292 | } |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 2293 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2294 | di = btrfs_lookup_dir_item(trans, log, path, dir_ino, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2295 | name, name_len, -1); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2296 | if (IS_ERR(di)) { |
| 2297 | err = PTR_ERR(di); |
| 2298 | goto fail; |
| 2299 | } |
| 2300 | if (di) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2301 | ret = btrfs_delete_one_dir_name(trans, log, path, di); |
| 2302 | bytes_del += name_len; |
| 2303 | BUG_ON(ret); |
| 2304 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2305 | btrfs_release_path(path); |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2306 | di = btrfs_lookup_dir_index_item(trans, log, path, dir_ino, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2307 | index, name, name_len, -1); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2308 | if (IS_ERR(di)) { |
| 2309 | err = PTR_ERR(di); |
| 2310 | goto fail; |
| 2311 | } |
| 2312 | if (di) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2313 | ret = btrfs_delete_one_dir_name(trans, log, path, di); |
| 2314 | bytes_del += name_len; |
| 2315 | BUG_ON(ret); |
| 2316 | } |
| 2317 | |
| 2318 | /* update the directory size in the log to reflect the names |
| 2319 | * we have removed |
| 2320 | */ |
| 2321 | if (bytes_del) { |
| 2322 | struct btrfs_key key; |
| 2323 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2324 | key.objectid = dir_ino; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2325 | key.offset = 0; |
| 2326 | key.type = BTRFS_INODE_ITEM_KEY; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2327 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2328 | |
| 2329 | ret = btrfs_search_slot(trans, log, &key, path, 0, 1); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2330 | if (ret < 0) { |
| 2331 | err = ret; |
| 2332 | goto fail; |
| 2333 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2334 | if (ret == 0) { |
| 2335 | struct btrfs_inode_item *item; |
| 2336 | u64 i_size; |
| 2337 | |
| 2338 | item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 2339 | struct btrfs_inode_item); |
| 2340 | i_size = btrfs_inode_size(path->nodes[0], item); |
| 2341 | if (i_size > bytes_del) |
| 2342 | i_size -= bytes_del; |
| 2343 | else |
| 2344 | i_size = 0; |
| 2345 | btrfs_set_inode_size(path->nodes[0], item, i_size); |
| 2346 | btrfs_mark_buffer_dirty(path->nodes[0]); |
| 2347 | } else |
| 2348 | ret = 0; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2349 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2350 | } |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2351 | fail: |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2352 | btrfs_free_path(path); |
Tsutomu Itoh | a62f44a | 2011-04-25 19:43:51 -0400 | [diff] [blame] | 2353 | out_unlock: |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2354 | mutex_unlock(&BTRFS_I(dir)->log_mutex); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2355 | if (ret == -ENOSPC) { |
| 2356 | root->fs_info->last_trans_log_full_commit = trans->transid; |
| 2357 | ret = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2358 | } else if (ret < 0) |
| 2359 | btrfs_abort_transaction(trans, root, ret); |
| 2360 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2361 | btrfs_end_log_trans(root); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2362 | |
Andi Kleen | 411fc6b | 2010-10-29 15:14:31 -0400 | [diff] [blame] | 2363 | return err; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2364 | } |
| 2365 | |
| 2366 | /* see comments for btrfs_del_dir_entries_in_log */ |
| 2367 | int btrfs_del_inode_ref_in_log(struct btrfs_trans_handle *trans, |
| 2368 | struct btrfs_root *root, |
| 2369 | const char *name, int name_len, |
| 2370 | struct inode *inode, u64 dirid) |
| 2371 | { |
| 2372 | struct btrfs_root *log; |
| 2373 | u64 index; |
| 2374 | int ret; |
| 2375 | |
Chris Mason | 3a5f1d4 | 2008-09-11 15:53:37 -0400 | [diff] [blame] | 2376 | if (BTRFS_I(inode)->logged_trans < trans->transid) |
| 2377 | return 0; |
| 2378 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2379 | ret = join_running_log_trans(root); |
| 2380 | if (ret) |
| 2381 | return 0; |
| 2382 | log = root->log_root; |
| 2383 | mutex_lock(&BTRFS_I(inode)->log_mutex); |
| 2384 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2385 | 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] | 2386 | dirid, &index); |
| 2387 | mutex_unlock(&BTRFS_I(inode)->log_mutex); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2388 | if (ret == -ENOSPC) { |
| 2389 | root->fs_info->last_trans_log_full_commit = trans->transid; |
| 2390 | ret = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2391 | } else if (ret < 0 && ret != -ENOENT) |
| 2392 | btrfs_abort_transaction(trans, root, ret); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2393 | btrfs_end_log_trans(root); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2394 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2395 | return ret; |
| 2396 | } |
| 2397 | |
| 2398 | /* |
| 2399 | * creates a range item in the log for 'dirid'. first_offset and |
| 2400 | * last_offset tell us which parts of the key space the log should |
| 2401 | * be considered authoritative for. |
| 2402 | */ |
| 2403 | static noinline int insert_dir_log_key(struct btrfs_trans_handle *trans, |
| 2404 | struct btrfs_root *log, |
| 2405 | struct btrfs_path *path, |
| 2406 | int key_type, u64 dirid, |
| 2407 | u64 first_offset, u64 last_offset) |
| 2408 | { |
| 2409 | int ret; |
| 2410 | struct btrfs_key key; |
| 2411 | struct btrfs_dir_log_item *item; |
| 2412 | |
| 2413 | key.objectid = dirid; |
| 2414 | key.offset = first_offset; |
| 2415 | if (key_type == BTRFS_DIR_ITEM_KEY) |
| 2416 | key.type = BTRFS_DIR_LOG_ITEM_KEY; |
| 2417 | else |
| 2418 | key.type = BTRFS_DIR_LOG_INDEX_KEY; |
| 2419 | ret = btrfs_insert_empty_item(trans, log, path, &key, sizeof(*item)); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2420 | if (ret) |
| 2421 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2422 | |
| 2423 | item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 2424 | struct btrfs_dir_log_item); |
| 2425 | btrfs_set_dir_log_end(path->nodes[0], item, last_offset); |
| 2426 | btrfs_mark_buffer_dirty(path->nodes[0]); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2427 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2428 | return 0; |
| 2429 | } |
| 2430 | |
| 2431 | /* |
| 2432 | * log all the items included in the current transaction for a given |
| 2433 | * directory. This also creates the range items in the log tree required |
| 2434 | * to replay anything deleted before the fsync |
| 2435 | */ |
| 2436 | static noinline int log_dir_items(struct btrfs_trans_handle *trans, |
| 2437 | struct btrfs_root *root, struct inode *inode, |
| 2438 | struct btrfs_path *path, |
| 2439 | struct btrfs_path *dst_path, int key_type, |
| 2440 | u64 min_offset, u64 *last_offset_ret) |
| 2441 | { |
| 2442 | struct btrfs_key min_key; |
| 2443 | struct btrfs_key max_key; |
| 2444 | struct btrfs_root *log = root->log_root; |
| 2445 | struct extent_buffer *src; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2446 | int err = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2447 | int ret; |
| 2448 | int i; |
| 2449 | int nritems; |
| 2450 | u64 first_offset = min_offset; |
| 2451 | u64 last_offset = (u64)-1; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2452 | u64 ino = btrfs_ino(inode); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2453 | |
| 2454 | log = root->log_root; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2455 | max_key.objectid = ino; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2456 | max_key.offset = (u64)-1; |
| 2457 | max_key.type = key_type; |
| 2458 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2459 | min_key.objectid = ino; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2460 | min_key.type = key_type; |
| 2461 | min_key.offset = min_offset; |
| 2462 | |
| 2463 | path->keep_locks = 1; |
| 2464 | |
| 2465 | ret = btrfs_search_forward(root, &min_key, &max_key, |
| 2466 | path, 0, trans->transid); |
| 2467 | |
| 2468 | /* |
| 2469 | * we didn't find anything from this transaction, see if there |
| 2470 | * is anything at all |
| 2471 | */ |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2472 | if (ret != 0 || min_key.objectid != ino || min_key.type != key_type) { |
| 2473 | min_key.objectid = ino; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2474 | min_key.type = key_type; |
| 2475 | min_key.offset = (u64)-1; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2476 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2477 | ret = btrfs_search_slot(NULL, root, &min_key, path, 0, 0); |
| 2478 | if (ret < 0) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2479 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2480 | return ret; |
| 2481 | } |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2482 | ret = btrfs_previous_item(root, path, ino, key_type); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2483 | |
| 2484 | /* if ret == 0 there are items for this type, |
| 2485 | * create a range to tell us the last key of this type. |
| 2486 | * otherwise, there are no items in this directory after |
| 2487 | * *min_offset, and we create a range to indicate that. |
| 2488 | */ |
| 2489 | if (ret == 0) { |
| 2490 | struct btrfs_key tmp; |
| 2491 | btrfs_item_key_to_cpu(path->nodes[0], &tmp, |
| 2492 | path->slots[0]); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2493 | if (key_type == tmp.type) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2494 | first_offset = max(min_offset, tmp.offset) + 1; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2495 | } |
| 2496 | goto done; |
| 2497 | } |
| 2498 | |
| 2499 | /* go backward to find any previous key */ |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2500 | ret = btrfs_previous_item(root, path, ino, key_type); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2501 | if (ret == 0) { |
| 2502 | struct btrfs_key tmp; |
| 2503 | btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]); |
| 2504 | if (key_type == tmp.type) { |
| 2505 | first_offset = tmp.offset; |
| 2506 | ret = overwrite_item(trans, log, dst_path, |
| 2507 | path->nodes[0], path->slots[0], |
| 2508 | &tmp); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2509 | if (ret) { |
| 2510 | err = ret; |
| 2511 | goto done; |
| 2512 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2513 | } |
| 2514 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2515 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2516 | |
| 2517 | /* find the first key from this transaction again */ |
| 2518 | ret = btrfs_search_slot(NULL, root, &min_key, path, 0, 0); |
| 2519 | if (ret != 0) { |
| 2520 | WARN_ON(1); |
| 2521 | goto done; |
| 2522 | } |
| 2523 | |
| 2524 | /* |
| 2525 | * we have a block from this transaction, log every item in it |
| 2526 | * from our directory |
| 2527 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2528 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2529 | struct btrfs_key tmp; |
| 2530 | src = path->nodes[0]; |
| 2531 | nritems = btrfs_header_nritems(src); |
| 2532 | for (i = path->slots[0]; i < nritems; i++) { |
| 2533 | btrfs_item_key_to_cpu(src, &min_key, i); |
| 2534 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2535 | if (min_key.objectid != ino || min_key.type != key_type) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2536 | goto done; |
| 2537 | ret = overwrite_item(trans, log, dst_path, src, i, |
| 2538 | &min_key); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2539 | if (ret) { |
| 2540 | err = ret; |
| 2541 | goto done; |
| 2542 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2543 | } |
| 2544 | path->slots[0] = nritems; |
| 2545 | |
| 2546 | /* |
| 2547 | * look ahead to the next item and see if it is also |
| 2548 | * from this directory and from this transaction |
| 2549 | */ |
| 2550 | ret = btrfs_next_leaf(root, path); |
| 2551 | if (ret == 1) { |
| 2552 | last_offset = (u64)-1; |
| 2553 | goto done; |
| 2554 | } |
| 2555 | btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]); |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2556 | if (tmp.objectid != ino || tmp.type != key_type) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2557 | last_offset = (u64)-1; |
| 2558 | goto done; |
| 2559 | } |
| 2560 | if (btrfs_header_generation(path->nodes[0]) != trans->transid) { |
| 2561 | ret = overwrite_item(trans, log, dst_path, |
| 2562 | path->nodes[0], path->slots[0], |
| 2563 | &tmp); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2564 | if (ret) |
| 2565 | err = ret; |
| 2566 | else |
| 2567 | last_offset = tmp.offset; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2568 | goto done; |
| 2569 | } |
| 2570 | } |
| 2571 | done: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2572 | btrfs_release_path(path); |
| 2573 | btrfs_release_path(dst_path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2574 | |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2575 | if (err == 0) { |
| 2576 | *last_offset_ret = last_offset; |
| 2577 | /* |
| 2578 | * insert the log range keys to indicate where the log |
| 2579 | * is valid |
| 2580 | */ |
| 2581 | ret = insert_dir_log_key(trans, log, path, key_type, |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2582 | ino, first_offset, last_offset); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2583 | if (ret) |
| 2584 | err = ret; |
| 2585 | } |
| 2586 | return err; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2587 | } |
| 2588 | |
| 2589 | /* |
| 2590 | * logging directories is very similar to logging inodes, We find all the items |
| 2591 | * from the current transaction and write them to the log. |
| 2592 | * |
| 2593 | * The recovery code scans the directory in the subvolume, and if it finds a |
| 2594 | * key in the range logged that is not present in the log tree, then it means |
| 2595 | * that dir entry was unlinked during the transaction. |
| 2596 | * |
| 2597 | * In order for that scan to work, we must include one key smaller than |
| 2598 | * the smallest logged by this transaction and one key larger than the largest |
| 2599 | * key logged by this transaction. |
| 2600 | */ |
| 2601 | static noinline int log_directory_changes(struct btrfs_trans_handle *trans, |
| 2602 | struct btrfs_root *root, struct inode *inode, |
| 2603 | struct btrfs_path *path, |
| 2604 | struct btrfs_path *dst_path) |
| 2605 | { |
| 2606 | u64 min_key; |
| 2607 | u64 max_key; |
| 2608 | int ret; |
| 2609 | int key_type = BTRFS_DIR_ITEM_KEY; |
| 2610 | |
| 2611 | again: |
| 2612 | min_key = 0; |
| 2613 | max_key = 0; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2614 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2615 | ret = log_dir_items(trans, root, inode, path, |
| 2616 | dst_path, key_type, min_key, |
| 2617 | &max_key); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2618 | if (ret) |
| 2619 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2620 | if (max_key == (u64)-1) |
| 2621 | break; |
| 2622 | min_key = max_key + 1; |
| 2623 | } |
| 2624 | |
| 2625 | if (key_type == BTRFS_DIR_ITEM_KEY) { |
| 2626 | key_type = BTRFS_DIR_INDEX_KEY; |
| 2627 | goto again; |
| 2628 | } |
| 2629 | return 0; |
| 2630 | } |
| 2631 | |
| 2632 | /* |
| 2633 | * a helper function to drop items from the log before we relog an |
| 2634 | * inode. max_key_type indicates the highest item type to remove. |
| 2635 | * This cannot be run for file data extents because it does not |
| 2636 | * free the extents they point to. |
| 2637 | */ |
| 2638 | static int drop_objectid_items(struct btrfs_trans_handle *trans, |
| 2639 | struct btrfs_root *log, |
| 2640 | struct btrfs_path *path, |
| 2641 | u64 objectid, int max_key_type) |
| 2642 | { |
| 2643 | int ret; |
| 2644 | struct btrfs_key key; |
| 2645 | struct btrfs_key found_key; |
| 2646 | |
| 2647 | key.objectid = objectid; |
| 2648 | key.type = max_key_type; |
| 2649 | key.offset = (u64)-1; |
| 2650 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2651 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2652 | ret = btrfs_search_slot(trans, log, &key, path, -1, 1); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2653 | BUG_ON(ret == 0); |
| 2654 | if (ret < 0) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2655 | break; |
| 2656 | |
| 2657 | if (path->slots[0] == 0) |
| 2658 | break; |
| 2659 | |
| 2660 | path->slots[0]--; |
| 2661 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, |
| 2662 | path->slots[0]); |
| 2663 | |
| 2664 | if (found_key.objectid != objectid) |
| 2665 | break; |
| 2666 | |
| 2667 | ret = btrfs_del_item(trans, log, path); |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 2668 | if (ret) |
| 2669 | break; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2670 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2671 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2672 | btrfs_release_path(path); |
Josef Bacik | 5bdbeb2 | 2012-05-29 16:59:49 -0400 | [diff] [blame] | 2673 | if (ret > 0) |
| 2674 | ret = 0; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2675 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2676 | } |
| 2677 | |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 2678 | static noinline int copy_items(struct btrfs_trans_handle *trans, |
Liu Bo | d279440 | 2012-08-29 01:07:56 -0600 | [diff] [blame] | 2679 | struct inode *inode, |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 2680 | struct btrfs_path *dst_path, |
| 2681 | struct extent_buffer *src, |
| 2682 | int start_slot, int nr, int inode_only) |
| 2683 | { |
| 2684 | unsigned long src_offset; |
| 2685 | unsigned long dst_offset; |
Liu Bo | d279440 | 2012-08-29 01:07:56 -0600 | [diff] [blame] | 2686 | struct btrfs_root *log = BTRFS_I(inode)->root->log_root; |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 2687 | struct btrfs_file_extent_item *extent; |
| 2688 | struct btrfs_inode_item *inode_item; |
| 2689 | int ret; |
| 2690 | struct btrfs_key *ins_keys; |
| 2691 | u32 *ins_sizes; |
| 2692 | char *ins_data; |
| 2693 | int i; |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 2694 | struct list_head ordered_sums; |
Liu Bo | d279440 | 2012-08-29 01:07:56 -0600 | [diff] [blame] | 2695 | int skip_csum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM; |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 2696 | |
| 2697 | INIT_LIST_HEAD(&ordered_sums); |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 2698 | |
| 2699 | ins_data = kmalloc(nr * sizeof(struct btrfs_key) + |
| 2700 | nr * sizeof(u32), GFP_NOFS); |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 2701 | if (!ins_data) |
| 2702 | return -ENOMEM; |
| 2703 | |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 2704 | ins_sizes = (u32 *)ins_data; |
| 2705 | ins_keys = (struct btrfs_key *)(ins_data + nr * sizeof(u32)); |
| 2706 | |
| 2707 | for (i = 0; i < nr; i++) { |
| 2708 | ins_sizes[i] = btrfs_item_size_nr(src, i + start_slot); |
| 2709 | btrfs_item_key_to_cpu(src, ins_keys + i, i + start_slot); |
| 2710 | } |
| 2711 | ret = btrfs_insert_empty_items(trans, log, dst_path, |
| 2712 | ins_keys, ins_sizes, nr); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2713 | if (ret) { |
| 2714 | kfree(ins_data); |
| 2715 | return ret; |
| 2716 | } |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 2717 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2718 | for (i = 0; i < nr; i++, dst_path->slots[0]++) { |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 2719 | dst_offset = btrfs_item_ptr_offset(dst_path->nodes[0], |
| 2720 | dst_path->slots[0]); |
| 2721 | |
| 2722 | src_offset = btrfs_item_ptr_offset(src, start_slot + i); |
| 2723 | |
| 2724 | copy_extent_buffer(dst_path->nodes[0], src, dst_offset, |
| 2725 | src_offset, ins_sizes[i]); |
| 2726 | |
| 2727 | if (inode_only == LOG_INODE_EXISTS && |
| 2728 | ins_keys[i].type == BTRFS_INODE_ITEM_KEY) { |
| 2729 | inode_item = btrfs_item_ptr(dst_path->nodes[0], |
| 2730 | dst_path->slots[0], |
| 2731 | struct btrfs_inode_item); |
| 2732 | btrfs_set_inode_size(dst_path->nodes[0], inode_item, 0); |
| 2733 | |
| 2734 | /* set the generation to zero so the recover code |
| 2735 | * can tell the difference between an logging |
| 2736 | * just to say 'this inode exists' and a logging |
| 2737 | * to say 'update this inode with these values' |
| 2738 | */ |
| 2739 | btrfs_set_inode_generation(dst_path->nodes[0], |
| 2740 | inode_item, 0); |
| 2741 | } |
| 2742 | /* take a reference on file data extents so that truncates |
| 2743 | * or deletes of this inode don't have to relog the inode |
| 2744 | * again |
| 2745 | */ |
Liu Bo | d279440 | 2012-08-29 01:07:56 -0600 | [diff] [blame] | 2746 | if (btrfs_key_type(ins_keys + i) == BTRFS_EXTENT_DATA_KEY && |
| 2747 | !skip_csum) { |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 2748 | int found_type; |
| 2749 | extent = btrfs_item_ptr(src, start_slot + i, |
| 2750 | struct btrfs_file_extent_item); |
| 2751 | |
liubo | 8e531cd | 2011-05-06 10:36:09 +0800 | [diff] [blame] | 2752 | if (btrfs_file_extent_generation(src, extent) < trans->transid) |
| 2753 | continue; |
| 2754 | |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 2755 | found_type = btrfs_file_extent_type(src, extent); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 2756 | if (found_type == BTRFS_FILE_EXTENT_REG || |
| 2757 | found_type == BTRFS_FILE_EXTENT_PREALLOC) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2758 | u64 ds, dl, cs, cl; |
| 2759 | ds = btrfs_file_extent_disk_bytenr(src, |
| 2760 | extent); |
| 2761 | /* ds == 0 is a hole */ |
| 2762 | if (ds == 0) |
| 2763 | continue; |
| 2764 | |
| 2765 | dl = btrfs_file_extent_disk_num_bytes(src, |
| 2766 | extent); |
| 2767 | cs = btrfs_file_extent_offset(src, extent); |
| 2768 | cl = btrfs_file_extent_num_bytes(src, |
Joe Perches | a419aef | 2009-08-18 11:18:35 -0700 | [diff] [blame] | 2769 | extent); |
Chris Mason | 580afd7 | 2008-12-08 19:15:39 -0500 | [diff] [blame] | 2770 | if (btrfs_file_extent_compression(src, |
| 2771 | extent)) { |
| 2772 | cs = 0; |
| 2773 | cl = dl; |
| 2774 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2775 | |
| 2776 | ret = btrfs_lookup_csums_range( |
| 2777 | log->fs_info->csum_root, |
| 2778 | ds + cs, ds + cs + cl - 1, |
Arne Jansen | a2de733 | 2011-03-08 14:14:00 +0100 | [diff] [blame] | 2779 | &ordered_sums, 0); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2780 | BUG_ON(ret); |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 2781 | } |
| 2782 | } |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 2783 | } |
| 2784 | |
| 2785 | btrfs_mark_buffer_dirty(dst_path->nodes[0]); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2786 | btrfs_release_path(dst_path); |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 2787 | kfree(ins_data); |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 2788 | |
| 2789 | /* |
| 2790 | * we have to do this after the loop above to avoid changing the |
| 2791 | * log tree while trying to change the log tree. |
| 2792 | */ |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2793 | ret = 0; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2794 | while (!list_empty(&ordered_sums)) { |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 2795 | struct btrfs_ordered_sum *sums = list_entry(ordered_sums.next, |
| 2796 | struct btrfs_ordered_sum, |
| 2797 | list); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2798 | if (!ret) |
| 2799 | ret = btrfs_csum_file_blocks(trans, log, sums); |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 2800 | list_del(&sums->list); |
| 2801 | kfree(sums); |
| 2802 | } |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 2803 | return ret; |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 2804 | } |
| 2805 | |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 2806 | static int extent_cmp(void *priv, struct list_head *a, struct list_head *b) |
| 2807 | { |
| 2808 | struct extent_map *em1, *em2; |
| 2809 | |
| 2810 | em1 = list_entry(a, struct extent_map, list); |
| 2811 | em2 = list_entry(b, struct extent_map, list); |
| 2812 | |
| 2813 | if (em1->start < em2->start) |
| 2814 | return -1; |
| 2815 | else if (em1->start > em2->start) |
| 2816 | return 1; |
| 2817 | return 0; |
| 2818 | } |
| 2819 | |
| 2820 | struct log_args { |
| 2821 | struct extent_buffer *src; |
| 2822 | u64 next_offset; |
| 2823 | int start_slot; |
| 2824 | int nr; |
| 2825 | }; |
| 2826 | |
| 2827 | static int log_one_extent(struct btrfs_trans_handle *trans, |
| 2828 | struct inode *inode, struct btrfs_root *root, |
| 2829 | struct extent_map *em, struct btrfs_path *path, |
| 2830 | struct btrfs_path *dst_path, struct log_args *args) |
| 2831 | { |
| 2832 | struct btrfs_root *log = root->log_root; |
| 2833 | struct btrfs_file_extent_item *fi; |
| 2834 | struct btrfs_key key; |
Liu Bo | 4e2f84e | 2012-08-27 10:52:20 -0600 | [diff] [blame] | 2835 | u64 start = em->mod_start; |
| 2836 | u64 len = em->mod_len; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 2837 | u64 num_bytes; |
| 2838 | int nritems; |
| 2839 | int ret; |
| 2840 | |
| 2841 | if (BTRFS_I(inode)->logged_trans == trans->transid) { |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 2842 | ret = __btrfs_drop_extents(trans, log, inode, dst_path, start, |
Josef Bacik | 2aaa665 | 2012-08-29 14:27:18 -0400 | [diff] [blame] | 2843 | start + len, NULL, 0); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 2844 | if (ret) |
| 2845 | return ret; |
| 2846 | } |
| 2847 | |
| 2848 | while (len) { |
| 2849 | if (args->nr) |
| 2850 | goto next_slot; |
| 2851 | key.objectid = btrfs_ino(inode); |
| 2852 | key.type = BTRFS_EXTENT_DATA_KEY; |
| 2853 | key.offset = start; |
| 2854 | |
| 2855 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 2856 | if (ret < 0) |
| 2857 | return ret; |
| 2858 | if (ret) { |
| 2859 | /* |
| 2860 | * This shouldn't happen, but it might so warn and |
| 2861 | * return an error. |
| 2862 | */ |
| 2863 | WARN_ON(1); |
| 2864 | return -ENOENT; |
| 2865 | } |
| 2866 | args->src = path->nodes[0]; |
| 2867 | next_slot: |
| 2868 | fi = btrfs_item_ptr(args->src, path->slots[0], |
| 2869 | struct btrfs_file_extent_item); |
| 2870 | if (args->nr && |
| 2871 | args->start_slot + args->nr == path->slots[0]) { |
| 2872 | args->nr++; |
| 2873 | } else if (args->nr) { |
Liu Bo | d279440 | 2012-08-29 01:07:56 -0600 | [diff] [blame] | 2874 | ret = copy_items(trans, inode, dst_path, args->src, |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 2875 | args->start_slot, args->nr, |
| 2876 | LOG_INODE_ALL); |
| 2877 | if (ret) |
| 2878 | return ret; |
| 2879 | args->nr = 1; |
| 2880 | args->start_slot = path->slots[0]; |
| 2881 | } else if (!args->nr) { |
| 2882 | args->nr = 1; |
| 2883 | args->start_slot = path->slots[0]; |
| 2884 | } |
| 2885 | nritems = btrfs_header_nritems(path->nodes[0]); |
| 2886 | path->slots[0]++; |
| 2887 | num_bytes = btrfs_file_extent_num_bytes(args->src, fi); |
| 2888 | if (len < num_bytes) { |
| 2889 | /* I _think_ this is ok, envision we write to a |
| 2890 | * preallocated space that is adjacent to a previously |
| 2891 | * written preallocated space that gets merged when we |
| 2892 | * mark this preallocated space written. If we do not |
| 2893 | * have the adjacent extent in cache then when we copy |
| 2894 | * this extent it could end up being larger than our EM |
| 2895 | * thinks it is, which is a-ok, so just set len to 0. |
| 2896 | */ |
| 2897 | len = 0; |
| 2898 | } else { |
| 2899 | len -= num_bytes; |
| 2900 | } |
| 2901 | start += btrfs_file_extent_num_bytes(args->src, fi); |
| 2902 | args->next_offset = start; |
| 2903 | |
| 2904 | if (path->slots[0] < nritems) { |
| 2905 | if (len) |
| 2906 | goto next_slot; |
| 2907 | break; |
| 2908 | } |
| 2909 | |
| 2910 | if (args->nr) { |
Liu Bo | d279440 | 2012-08-29 01:07:56 -0600 | [diff] [blame] | 2911 | ret = copy_items(trans, inode, dst_path, args->src, |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 2912 | args->start_slot, args->nr, |
| 2913 | LOG_INODE_ALL); |
| 2914 | if (ret) |
| 2915 | return ret; |
| 2916 | args->nr = 0; |
| 2917 | btrfs_release_path(path); |
| 2918 | } |
| 2919 | } |
| 2920 | |
| 2921 | return 0; |
| 2922 | } |
| 2923 | |
| 2924 | static int btrfs_log_changed_extents(struct btrfs_trans_handle *trans, |
| 2925 | struct btrfs_root *root, |
| 2926 | struct inode *inode, |
| 2927 | struct btrfs_path *path, |
| 2928 | struct btrfs_path *dst_path) |
| 2929 | { |
| 2930 | struct log_args args; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 2931 | struct extent_map *em, *n; |
| 2932 | struct list_head extents; |
| 2933 | struct extent_map_tree *tree = &BTRFS_I(inode)->extent_tree; |
| 2934 | u64 test_gen; |
| 2935 | int ret = 0; |
| 2936 | |
| 2937 | INIT_LIST_HEAD(&extents); |
| 2938 | |
| 2939 | memset(&args, 0, sizeof(args)); |
| 2940 | |
| 2941 | write_lock(&tree->lock); |
| 2942 | test_gen = root->fs_info->last_trans_committed; |
| 2943 | |
| 2944 | list_for_each_entry_safe(em, n, &tree->modified_extents, list) { |
| 2945 | list_del_init(&em->list); |
| 2946 | if (em->generation <= test_gen) |
| 2947 | continue; |
| 2948 | list_add_tail(&em->list, &extents); |
| 2949 | } |
| 2950 | |
| 2951 | list_sort(NULL, &extents, extent_cmp); |
| 2952 | |
| 2953 | while (!list_empty(&extents)) { |
| 2954 | em = list_entry(extents.next, struct extent_map, list); |
| 2955 | |
| 2956 | list_del_init(&em->list); |
| 2957 | |
| 2958 | /* |
| 2959 | * If we had an error we just need to delete everybody from our |
| 2960 | * private list. |
| 2961 | */ |
| 2962 | if (ret) |
| 2963 | continue; |
| 2964 | |
| 2965 | /* |
| 2966 | * If the previous EM and the last extent we left off on aren't |
| 2967 | * sequential then we need to copy the items we have and redo |
| 2968 | * our search |
| 2969 | */ |
Liu Bo | 4e2f84e | 2012-08-27 10:52:20 -0600 | [diff] [blame] | 2970 | if (args.nr && em->mod_start != args.next_offset) { |
Liu Bo | d279440 | 2012-08-29 01:07:56 -0600 | [diff] [blame] | 2971 | ret = copy_items(trans, inode, dst_path, args.src, |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 2972 | args.start_slot, args.nr, |
| 2973 | LOG_INODE_ALL); |
| 2974 | if (ret) |
| 2975 | continue; |
| 2976 | btrfs_release_path(path); |
| 2977 | args.nr = 0; |
| 2978 | } |
| 2979 | |
| 2980 | ret = log_one_extent(trans, inode, root, em, path, dst_path, &args); |
| 2981 | } |
| 2982 | |
| 2983 | if (!ret && args.nr) |
Liu Bo | d279440 | 2012-08-29 01:07:56 -0600 | [diff] [blame] | 2984 | ret = copy_items(trans, inode, dst_path, args.src, |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 2985 | args.start_slot, args.nr, LOG_INODE_ALL); |
| 2986 | btrfs_release_path(path); |
| 2987 | WARN_ON(!list_empty(&extents)); |
| 2988 | write_unlock(&tree->lock); |
| 2989 | return ret; |
| 2990 | } |
| 2991 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2992 | /* log a single inode in the tree log. |
| 2993 | * At least one parent directory for this inode must exist in the tree |
| 2994 | * or be logged already. |
| 2995 | * |
| 2996 | * Any items from this inode changed by the current transaction are copied |
| 2997 | * to the log tree. An extra reference is taken on any extents in this |
| 2998 | * file, allowing us to avoid a whole pile of corner cases around logging |
| 2999 | * blocks that have been removed from the tree. |
| 3000 | * |
| 3001 | * See LOG_INODE_ALL and related defines for a description of what inode_only |
| 3002 | * does. |
| 3003 | * |
| 3004 | * This handles both files and directories. |
| 3005 | */ |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3006 | static int btrfs_log_inode(struct btrfs_trans_handle *trans, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3007 | struct btrfs_root *root, struct inode *inode, |
| 3008 | int inode_only) |
| 3009 | { |
| 3010 | struct btrfs_path *path; |
| 3011 | struct btrfs_path *dst_path; |
| 3012 | struct btrfs_key min_key; |
| 3013 | struct btrfs_key max_key; |
| 3014 | struct btrfs_root *log = root->log_root; |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3015 | struct extent_buffer *src = NULL; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3016 | int err = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3017 | int ret; |
Chris Mason | 3a5f1d4 | 2008-09-11 15:53:37 -0400 | [diff] [blame] | 3018 | int nritems; |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3019 | int ins_start_slot = 0; |
| 3020 | int ins_nr; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 3021 | bool fast_search = false; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3022 | u64 ino = btrfs_ino(inode); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3023 | |
| 3024 | log = root->log_root; |
| 3025 | |
| 3026 | path = btrfs_alloc_path(); |
Tsutomu Itoh | 5df6708 | 2011-02-01 09:17:35 +0000 | [diff] [blame] | 3027 | if (!path) |
| 3028 | return -ENOMEM; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3029 | dst_path = btrfs_alloc_path(); |
Tsutomu Itoh | 5df6708 | 2011-02-01 09:17:35 +0000 | [diff] [blame] | 3030 | if (!dst_path) { |
| 3031 | btrfs_free_path(path); |
| 3032 | return -ENOMEM; |
| 3033 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3034 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3035 | min_key.objectid = ino; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3036 | min_key.type = BTRFS_INODE_ITEM_KEY; |
| 3037 | min_key.offset = 0; |
| 3038 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3039 | max_key.objectid = ino; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3040 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3041 | |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 3042 | /* today the code can only do partial logging of directories */ |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3043 | if (inode_only == LOG_INODE_EXISTS || S_ISDIR(inode->i_mode)) |
| 3044 | max_key.type = BTRFS_XATTR_ITEM_KEY; |
| 3045 | else |
| 3046 | max_key.type = (u8)-1; |
| 3047 | max_key.offset = (u64)-1; |
| 3048 | |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 3049 | ret = btrfs_commit_inode_delayed_items(trans, inode); |
| 3050 | if (ret) { |
| 3051 | btrfs_free_path(path); |
| 3052 | btrfs_free_path(dst_path); |
| 3053 | return ret; |
| 3054 | } |
| 3055 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3056 | mutex_lock(&BTRFS_I(inode)->log_mutex); |
| 3057 | |
| 3058 | /* |
| 3059 | * a brute force approach to making sure we get the most uptodate |
| 3060 | * copies of everything. |
| 3061 | */ |
| 3062 | if (S_ISDIR(inode->i_mode)) { |
| 3063 | int max_key_type = BTRFS_DIR_LOG_INDEX_KEY; |
| 3064 | |
| 3065 | if (inode_only == LOG_INODE_EXISTS) |
| 3066 | max_key_type = BTRFS_XATTR_ITEM_KEY; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3067 | ret = drop_objectid_items(trans, log, path, ino, max_key_type); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3068 | } else { |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 3069 | if (test_and_clear_bit(BTRFS_INODE_NEEDS_FULL_SYNC, |
| 3070 | &BTRFS_I(inode)->runtime_flags)) { |
| 3071 | ret = btrfs_truncate_inode_items(trans, log, |
| 3072 | inode, 0, 0); |
| 3073 | } else { |
| 3074 | fast_search = true; |
| 3075 | max_key.type = BTRFS_XATTR_ITEM_KEY; |
| 3076 | ret = drop_objectid_items(trans, log, path, ino, |
| 3077 | BTRFS_XATTR_ITEM_KEY); |
| 3078 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3079 | } |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3080 | if (ret) { |
| 3081 | err = ret; |
| 3082 | goto out_unlock; |
| 3083 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3084 | path->keep_locks = 1; |
| 3085 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3086 | while (1) { |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3087 | ins_nr = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3088 | ret = btrfs_search_forward(root, &min_key, &max_key, |
| 3089 | path, 0, trans->transid); |
| 3090 | if (ret != 0) |
| 3091 | break; |
Chris Mason | 3a5f1d4 | 2008-09-11 15:53:37 -0400 | [diff] [blame] | 3092 | again: |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3093 | /* note, ins_nr might be > 0 here, cleanup outside the loop */ |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3094 | if (min_key.objectid != ino) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3095 | break; |
| 3096 | if (min_key.type > max_key.type) |
| 3097 | break; |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3098 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3099 | src = path->nodes[0]; |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3100 | if (ins_nr && ins_start_slot + ins_nr == path->slots[0]) { |
| 3101 | ins_nr++; |
| 3102 | goto next_slot; |
| 3103 | } else if (!ins_nr) { |
| 3104 | ins_start_slot = path->slots[0]; |
| 3105 | ins_nr = 1; |
| 3106 | goto next_slot; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3107 | } |
| 3108 | |
Liu Bo | d279440 | 2012-08-29 01:07:56 -0600 | [diff] [blame] | 3109 | ret = copy_items(trans, inode, dst_path, src, ins_start_slot, |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3110 | ins_nr, inode_only); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3111 | if (ret) { |
| 3112 | err = ret; |
| 3113 | goto out_unlock; |
| 3114 | } |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3115 | ins_nr = 1; |
| 3116 | ins_start_slot = path->slots[0]; |
| 3117 | next_slot: |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3118 | |
Chris Mason | 3a5f1d4 | 2008-09-11 15:53:37 -0400 | [diff] [blame] | 3119 | nritems = btrfs_header_nritems(path->nodes[0]); |
| 3120 | path->slots[0]++; |
| 3121 | if (path->slots[0] < nritems) { |
| 3122 | btrfs_item_key_to_cpu(path->nodes[0], &min_key, |
| 3123 | path->slots[0]); |
| 3124 | goto again; |
| 3125 | } |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3126 | if (ins_nr) { |
Liu Bo | d279440 | 2012-08-29 01:07:56 -0600 | [diff] [blame] | 3127 | ret = copy_items(trans, inode, dst_path, src, |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3128 | ins_start_slot, |
| 3129 | ins_nr, inode_only); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3130 | if (ret) { |
| 3131 | err = ret; |
| 3132 | goto out_unlock; |
| 3133 | } |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3134 | ins_nr = 0; |
| 3135 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3136 | btrfs_release_path(path); |
Chris Mason | 3a5f1d4 | 2008-09-11 15:53:37 -0400 | [diff] [blame] | 3137 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3138 | if (min_key.offset < (u64)-1) |
| 3139 | min_key.offset++; |
| 3140 | else if (min_key.type < (u8)-1) |
| 3141 | min_key.type++; |
| 3142 | else if (min_key.objectid < (u64)-1) |
| 3143 | min_key.objectid++; |
| 3144 | else |
| 3145 | break; |
| 3146 | } |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3147 | if (ins_nr) { |
Liu Bo | d279440 | 2012-08-29 01:07:56 -0600 | [diff] [blame] | 3148 | ret = copy_items(trans, inode, dst_path, src, ins_start_slot, |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3149 | ins_nr, inode_only); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3150 | if (ret) { |
| 3151 | err = ret; |
| 3152 | goto out_unlock; |
| 3153 | } |
Chris Mason | 31ff1cd | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 3154 | ins_nr = 0; |
| 3155 | } |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 3156 | |
| 3157 | if (fast_search) { |
| 3158 | btrfs_release_path(path); |
| 3159 | btrfs_release_path(dst_path); |
| 3160 | ret = btrfs_log_changed_extents(trans, root, inode, path, |
| 3161 | dst_path); |
| 3162 | if (ret) { |
| 3163 | err = ret; |
| 3164 | goto out_unlock; |
| 3165 | } |
Liu Bo | 06d3d22 | 2012-08-27 10:52:19 -0600 | [diff] [blame] | 3166 | } else { |
| 3167 | struct extent_map_tree *tree = &BTRFS_I(inode)->extent_tree; |
| 3168 | struct extent_map *em, *n; |
| 3169 | |
| 3170 | list_for_each_entry_safe(em, n, &tree->modified_extents, list) |
| 3171 | list_del_init(&em->list); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 3172 | } |
| 3173 | |
Chris Mason | 9623f9a | 2008-09-11 17:42:42 -0400 | [diff] [blame] | 3174 | if (inode_only == LOG_INODE_ALL && S_ISDIR(inode->i_mode)) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3175 | btrfs_release_path(path); |
| 3176 | btrfs_release_path(dst_path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3177 | ret = log_directory_changes(trans, root, inode, path, dst_path); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3178 | if (ret) { |
| 3179 | err = ret; |
| 3180 | goto out_unlock; |
| 3181 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3182 | } |
Chris Mason | 3a5f1d4 | 2008-09-11 15:53:37 -0400 | [diff] [blame] | 3183 | BTRFS_I(inode)->logged_trans = trans->transid; |
Liu Bo | 46d8bc3 | 2012-08-29 01:07:55 -0600 | [diff] [blame] | 3184 | BTRFS_I(inode)->last_log_commit = BTRFS_I(inode)->last_sub_trans; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3185 | out_unlock: |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3186 | mutex_unlock(&BTRFS_I(inode)->log_mutex); |
| 3187 | |
| 3188 | btrfs_free_path(path); |
| 3189 | btrfs_free_path(dst_path); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3190 | return err; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3191 | } |
| 3192 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3193 | /* |
| 3194 | * follow the dentry parent pointers up the chain and see if any |
| 3195 | * of the directories in it require a full commit before they can |
| 3196 | * be logged. Returns zero if nothing special needs to be done or 1 if |
| 3197 | * a full commit is required. |
| 3198 | */ |
| 3199 | static noinline int check_parent_dirs_for_sync(struct btrfs_trans_handle *trans, |
| 3200 | struct inode *inode, |
| 3201 | struct dentry *parent, |
| 3202 | struct super_block *sb, |
| 3203 | u64 last_committed) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3204 | { |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3205 | int ret = 0; |
| 3206 | struct btrfs_root *root; |
Josef Bacik | 6a91221 | 2010-11-20 09:48:00 +0000 | [diff] [blame] | 3207 | struct dentry *old_parent = NULL; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3208 | |
Chris Mason | af4176b | 2009-03-24 10:24:31 -0400 | [diff] [blame] | 3209 | /* |
| 3210 | * for regular files, if its inode is already on disk, we don't |
| 3211 | * have to worry about the parents at all. This is because |
| 3212 | * we can use the last_unlink_trans field to record renames |
| 3213 | * and other fun in this file. |
| 3214 | */ |
| 3215 | if (S_ISREG(inode->i_mode) && |
| 3216 | BTRFS_I(inode)->generation <= last_committed && |
| 3217 | BTRFS_I(inode)->last_unlink_trans <= last_committed) |
| 3218 | goto out; |
| 3219 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3220 | if (!S_ISDIR(inode->i_mode)) { |
| 3221 | if (!parent || !parent->d_inode || sb != parent->d_inode->i_sb) |
| 3222 | goto out; |
| 3223 | inode = parent->d_inode; |
| 3224 | } |
| 3225 | |
| 3226 | while (1) { |
| 3227 | BTRFS_I(inode)->logged_trans = trans->transid; |
| 3228 | smp_mb(); |
| 3229 | |
| 3230 | if (BTRFS_I(inode)->last_unlink_trans > last_committed) { |
| 3231 | root = BTRFS_I(inode)->root; |
| 3232 | |
| 3233 | /* |
| 3234 | * make sure any commits to the log are forced |
| 3235 | * to be full commits |
| 3236 | */ |
| 3237 | root->fs_info->last_trans_log_full_commit = |
| 3238 | trans->transid; |
| 3239 | ret = 1; |
| 3240 | break; |
| 3241 | } |
| 3242 | |
| 3243 | if (!parent || !parent->d_inode || sb != parent->d_inode->i_sb) |
| 3244 | break; |
| 3245 | |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 3246 | if (IS_ROOT(parent)) |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3247 | break; |
| 3248 | |
Josef Bacik | 6a91221 | 2010-11-20 09:48:00 +0000 | [diff] [blame] | 3249 | parent = dget_parent(parent); |
| 3250 | dput(old_parent); |
| 3251 | old_parent = parent; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3252 | inode = parent->d_inode; |
| 3253 | |
| 3254 | } |
Josef Bacik | 6a91221 | 2010-11-20 09:48:00 +0000 | [diff] [blame] | 3255 | dput(old_parent); |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3256 | out: |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3257 | return ret; |
| 3258 | } |
| 3259 | |
| 3260 | /* |
| 3261 | * helper function around btrfs_log_inode to make sure newly created |
| 3262 | * parent directories also end up in the log. A minimal inode and backref |
| 3263 | * only logging is done of any parent directories that are older than |
| 3264 | * the last committed transaction |
| 3265 | */ |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3266 | int btrfs_log_inode_parent(struct btrfs_trans_handle *trans, |
| 3267 | struct btrfs_root *root, struct inode *inode, |
| 3268 | struct dentry *parent, int exists_only) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3269 | { |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3270 | int inode_only = exists_only ? LOG_INODE_EXISTS : LOG_INODE_ALL; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3271 | struct super_block *sb; |
Josef Bacik | 6a91221 | 2010-11-20 09:48:00 +0000 | [diff] [blame] | 3272 | struct dentry *old_parent = NULL; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3273 | int ret = 0; |
| 3274 | u64 last_committed = root->fs_info->last_trans_committed; |
| 3275 | |
| 3276 | sb = inode->i_sb; |
| 3277 | |
Sage Weil | 3a5e140 | 2009-04-02 16:49:40 -0400 | [diff] [blame] | 3278 | if (btrfs_test_opt(root, NOTREELOG)) { |
| 3279 | ret = 1; |
| 3280 | goto end_no_trans; |
| 3281 | } |
| 3282 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3283 | if (root->fs_info->last_trans_log_full_commit > |
| 3284 | root->fs_info->last_trans_committed) { |
| 3285 | ret = 1; |
| 3286 | goto end_no_trans; |
| 3287 | } |
| 3288 | |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 3289 | if (root != BTRFS_I(inode)->root || |
| 3290 | btrfs_root_refs(&root->root_item) == 0) { |
| 3291 | ret = 1; |
| 3292 | goto end_no_trans; |
| 3293 | } |
| 3294 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3295 | ret = check_parent_dirs_for_sync(trans, inode, parent, |
| 3296 | sb, last_committed); |
| 3297 | if (ret) |
| 3298 | goto end_no_trans; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3299 | |
Josef Bacik | 22ee6985d | 2012-05-29 16:57:49 -0400 | [diff] [blame] | 3300 | if (btrfs_inode_in_log(inode, trans->transid)) { |
Chris Mason | 257c62e | 2009-10-13 13:21:08 -0400 | [diff] [blame] | 3301 | ret = BTRFS_NO_LOG_SYNC; |
| 3302 | goto end_no_trans; |
| 3303 | } |
| 3304 | |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3305 | ret = start_log_trans(trans, root); |
| 3306 | if (ret) |
| 3307 | goto end_trans; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3308 | |
| 3309 | ret = btrfs_log_inode(trans, root, inode, inode_only); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3310 | if (ret) |
| 3311 | goto end_trans; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3312 | |
Chris Mason | af4176b | 2009-03-24 10:24:31 -0400 | [diff] [blame] | 3313 | /* |
| 3314 | * for regular files, if its inode is already on disk, we don't |
| 3315 | * have to worry about the parents at all. This is because |
| 3316 | * we can use the last_unlink_trans field to record renames |
| 3317 | * and other fun in this file. |
| 3318 | */ |
| 3319 | if (S_ISREG(inode->i_mode) && |
| 3320 | BTRFS_I(inode)->generation <= last_committed && |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3321 | BTRFS_I(inode)->last_unlink_trans <= last_committed) { |
| 3322 | ret = 0; |
| 3323 | goto end_trans; |
| 3324 | } |
Chris Mason | af4176b | 2009-03-24 10:24:31 -0400 | [diff] [blame] | 3325 | |
| 3326 | inode_only = LOG_INODE_EXISTS; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3327 | while (1) { |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3328 | if (!parent || !parent->d_inode || sb != parent->d_inode->i_sb) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3329 | break; |
| 3330 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3331 | inode = parent->d_inode; |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 3332 | if (root != BTRFS_I(inode)->root) |
| 3333 | break; |
| 3334 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3335 | if (BTRFS_I(inode)->generation > |
| 3336 | root->fs_info->last_trans_committed) { |
| 3337 | ret = btrfs_log_inode(trans, root, inode, inode_only); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3338 | if (ret) |
| 3339 | goto end_trans; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3340 | } |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 3341 | if (IS_ROOT(parent)) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3342 | break; |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3343 | |
Josef Bacik | 6a91221 | 2010-11-20 09:48:00 +0000 | [diff] [blame] | 3344 | parent = dget_parent(parent); |
| 3345 | dput(old_parent); |
| 3346 | old_parent = parent; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3347 | } |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3348 | ret = 0; |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3349 | end_trans: |
Josef Bacik | 6a91221 | 2010-11-20 09:48:00 +0000 | [diff] [blame] | 3350 | dput(old_parent); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3351 | if (ret < 0) { |
Josef Bacik | 0fa83cd | 2012-08-24 14:48:11 -0400 | [diff] [blame] | 3352 | WARN_ON(ret != -ENOSPC); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3353 | root->fs_info->last_trans_log_full_commit = trans->transid; |
| 3354 | ret = 1; |
| 3355 | } |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3356 | btrfs_end_log_trans(root); |
| 3357 | end_no_trans: |
| 3358 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3359 | } |
| 3360 | |
| 3361 | /* |
| 3362 | * it is not safe to log dentry if the chunk root has added new |
| 3363 | * chunks. This returns 0 if the dentry was logged, and 1 otherwise. |
| 3364 | * If this returns 1, you must commit the transaction to safely get your |
| 3365 | * data on disk. |
| 3366 | */ |
| 3367 | int btrfs_log_dentry_safe(struct btrfs_trans_handle *trans, |
| 3368 | struct btrfs_root *root, struct dentry *dentry) |
| 3369 | { |
Josef Bacik | 6a91221 | 2010-11-20 09:48:00 +0000 | [diff] [blame] | 3370 | struct dentry *parent = dget_parent(dentry); |
| 3371 | int ret; |
| 3372 | |
| 3373 | ret = btrfs_log_inode_parent(trans, root, dentry->d_inode, parent, 0); |
| 3374 | dput(parent); |
| 3375 | |
| 3376 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3377 | } |
| 3378 | |
| 3379 | /* |
| 3380 | * should be called during mount to recover any replay any log trees |
| 3381 | * from the FS |
| 3382 | */ |
| 3383 | int btrfs_recover_log_trees(struct btrfs_root *log_root_tree) |
| 3384 | { |
| 3385 | int ret; |
| 3386 | struct btrfs_path *path; |
| 3387 | struct btrfs_trans_handle *trans; |
| 3388 | struct btrfs_key key; |
| 3389 | struct btrfs_key found_key; |
| 3390 | struct btrfs_key tmp_key; |
| 3391 | struct btrfs_root *log; |
| 3392 | struct btrfs_fs_info *fs_info = log_root_tree->fs_info; |
| 3393 | struct walk_control wc = { |
| 3394 | .process_func = process_one_buffer, |
| 3395 | .stage = 0, |
| 3396 | }; |
| 3397 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3398 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 3399 | if (!path) |
| 3400 | return -ENOMEM; |
| 3401 | |
| 3402 | fs_info->log_root_recovering = 1; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3403 | |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 3404 | trans = btrfs_start_transaction(fs_info->tree_root, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3405 | if (IS_ERR(trans)) { |
| 3406 | ret = PTR_ERR(trans); |
| 3407 | goto error; |
| 3408 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3409 | |
| 3410 | wc.trans = trans; |
| 3411 | wc.pin = 1; |
| 3412 | |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 3413 | ret = walk_log_tree(trans, log_root_tree, &wc); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3414 | if (ret) { |
| 3415 | btrfs_error(fs_info, ret, "Failed to pin buffers while " |
| 3416 | "recovering log root tree."); |
| 3417 | goto error; |
| 3418 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3419 | |
| 3420 | again: |
| 3421 | key.objectid = BTRFS_TREE_LOG_OBJECTID; |
| 3422 | key.offset = (u64)-1; |
| 3423 | btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY); |
| 3424 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3425 | while (1) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3426 | ret = btrfs_search_slot(NULL, log_root_tree, &key, path, 0, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3427 | |
| 3428 | if (ret < 0) { |
| 3429 | btrfs_error(fs_info, ret, |
| 3430 | "Couldn't find tree log root."); |
| 3431 | goto error; |
| 3432 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3433 | if (ret > 0) { |
| 3434 | if (path->slots[0] == 0) |
| 3435 | break; |
| 3436 | path->slots[0]--; |
| 3437 | } |
| 3438 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, |
| 3439 | path->slots[0]); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3440 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3441 | if (found_key.objectid != BTRFS_TREE_LOG_OBJECTID) |
| 3442 | break; |
| 3443 | |
| 3444 | log = btrfs_read_fs_root_no_radix(log_root_tree, |
| 3445 | &found_key); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3446 | if (IS_ERR(log)) { |
| 3447 | ret = PTR_ERR(log); |
| 3448 | btrfs_error(fs_info, ret, |
| 3449 | "Couldn't read tree log root."); |
| 3450 | goto error; |
| 3451 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3452 | |
| 3453 | tmp_key.objectid = found_key.offset; |
| 3454 | tmp_key.type = BTRFS_ROOT_ITEM_KEY; |
| 3455 | tmp_key.offset = (u64)-1; |
| 3456 | |
| 3457 | 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] | 3458 | if (IS_ERR(wc.replay_dest)) { |
| 3459 | ret = PTR_ERR(wc.replay_dest); |
| 3460 | btrfs_error(fs_info, ret, "Couldn't read target root " |
| 3461 | "for tree log recovery."); |
| 3462 | goto error; |
| 3463 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3464 | |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 3465 | wc.replay_dest->log_root = log; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3466 | btrfs_record_root_in_trans(trans, wc.replay_dest); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3467 | ret = walk_log_tree(trans, log, &wc); |
| 3468 | BUG_ON(ret); |
| 3469 | |
| 3470 | if (wc.stage == LOG_WALK_REPLAY_ALL) { |
| 3471 | ret = fixup_inode_link_counts(trans, wc.replay_dest, |
| 3472 | path); |
| 3473 | BUG_ON(ret); |
| 3474 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3475 | |
| 3476 | key.offset = found_key.offset - 1; |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 3477 | wc.replay_dest->log_root = NULL; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3478 | free_extent_buffer(log->node); |
Chris Mason | b263c2c | 2009-06-11 11:24:47 -0400 | [diff] [blame] | 3479 | free_extent_buffer(log->commit_root); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3480 | kfree(log); |
| 3481 | |
| 3482 | if (found_key.offset == 0) |
| 3483 | break; |
| 3484 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3485 | btrfs_release_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3486 | |
| 3487 | /* step one is to pin it all, step two is to replay just inodes */ |
| 3488 | if (wc.pin) { |
| 3489 | wc.pin = 0; |
| 3490 | wc.process_func = replay_one_buffer; |
| 3491 | wc.stage = LOG_WALK_REPLAY_INODES; |
| 3492 | goto again; |
| 3493 | } |
| 3494 | /* step three is to replay everything */ |
| 3495 | if (wc.stage < LOG_WALK_REPLAY_ALL) { |
| 3496 | wc.stage++; |
| 3497 | goto again; |
| 3498 | } |
| 3499 | |
| 3500 | btrfs_free_path(path); |
| 3501 | |
| 3502 | free_extent_buffer(log_root_tree->node); |
| 3503 | log_root_tree->log_root = NULL; |
| 3504 | fs_info->log_root_recovering = 0; |
| 3505 | |
| 3506 | /* step 4: commit the transaction, which also unpins the blocks */ |
| 3507 | btrfs_commit_transaction(trans, fs_info->tree_root); |
| 3508 | |
| 3509 | kfree(log_root_tree); |
| 3510 | return 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3511 | |
| 3512 | error: |
| 3513 | btrfs_free_path(path); |
| 3514 | return ret; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3515 | } |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3516 | |
| 3517 | /* |
| 3518 | * there are some corner cases where we want to force a full |
| 3519 | * commit instead of allowing a directory to be logged. |
| 3520 | * |
| 3521 | * They revolve around files there were unlinked from the directory, and |
| 3522 | * this function updates the parent directory so that a full commit is |
| 3523 | * properly done if it is fsync'd later after the unlinks are done. |
| 3524 | */ |
| 3525 | void btrfs_record_unlink_dir(struct btrfs_trans_handle *trans, |
| 3526 | struct inode *dir, struct inode *inode, |
| 3527 | int for_rename) |
| 3528 | { |
| 3529 | /* |
Chris Mason | af4176b | 2009-03-24 10:24:31 -0400 | [diff] [blame] | 3530 | * when we're logging a file, if it hasn't been renamed |
| 3531 | * or unlinked, and its inode is fully committed on disk, |
| 3532 | * we don't have to worry about walking up the directory chain |
| 3533 | * to log its parents. |
| 3534 | * |
| 3535 | * So, we use the last_unlink_trans field to put this transid |
| 3536 | * into the file. When the file is logged we check it and |
| 3537 | * don't log the parents if the file is fully on disk. |
| 3538 | */ |
| 3539 | if (S_ISREG(inode->i_mode)) |
| 3540 | BTRFS_I(inode)->last_unlink_trans = trans->transid; |
| 3541 | |
| 3542 | /* |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3543 | * if this directory was already logged any new |
| 3544 | * names for this file/dir will get recorded |
| 3545 | */ |
| 3546 | smp_mb(); |
| 3547 | if (BTRFS_I(dir)->logged_trans == trans->transid) |
| 3548 | return; |
| 3549 | |
| 3550 | /* |
| 3551 | * if the inode we're about to unlink was logged, |
| 3552 | * the log will be properly updated for any new names |
| 3553 | */ |
| 3554 | if (BTRFS_I(inode)->logged_trans == trans->transid) |
| 3555 | return; |
| 3556 | |
| 3557 | /* |
| 3558 | * when renaming files across directories, if the directory |
| 3559 | * there we're unlinking from gets fsync'd later on, there's |
| 3560 | * no way to find the destination directory later and fsync it |
| 3561 | * properly. So, we have to be conservative and force commits |
| 3562 | * so the new name gets discovered. |
| 3563 | */ |
| 3564 | if (for_rename) |
| 3565 | goto record; |
| 3566 | |
| 3567 | /* we can safely do the unlink without any special recording */ |
| 3568 | return; |
| 3569 | |
| 3570 | record: |
| 3571 | BTRFS_I(dir)->last_unlink_trans = trans->transid; |
| 3572 | } |
| 3573 | |
| 3574 | /* |
| 3575 | * Call this after adding a new name for a file and it will properly |
| 3576 | * update the log to reflect the new name. |
| 3577 | * |
| 3578 | * It will return zero if all goes well, and it will return 1 if a |
| 3579 | * full transaction commit is required. |
| 3580 | */ |
| 3581 | int btrfs_log_new_name(struct btrfs_trans_handle *trans, |
| 3582 | struct inode *inode, struct inode *old_dir, |
| 3583 | struct dentry *parent) |
| 3584 | { |
| 3585 | struct btrfs_root * root = BTRFS_I(inode)->root; |
| 3586 | |
| 3587 | /* |
Chris Mason | af4176b | 2009-03-24 10:24:31 -0400 | [diff] [blame] | 3588 | * this will force the logging code to walk the dentry chain |
| 3589 | * up for the file |
| 3590 | */ |
| 3591 | if (S_ISREG(inode->i_mode)) |
| 3592 | BTRFS_I(inode)->last_unlink_trans = trans->transid; |
| 3593 | |
| 3594 | /* |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3595 | * if this inode hasn't been logged and directory we're renaming it |
| 3596 | * from hasn't been logged, we don't need to log it |
| 3597 | */ |
| 3598 | if (BTRFS_I(inode)->logged_trans <= |
| 3599 | root->fs_info->last_trans_committed && |
| 3600 | (!old_dir || BTRFS_I(old_dir)->logged_trans <= |
| 3601 | root->fs_info->last_trans_committed)) |
| 3602 | return 0; |
| 3603 | |
| 3604 | return btrfs_log_inode_parent(trans, root, inode, parent, 1); |
| 3605 | } |
| 3606 | |