blob: ed1f7ce7219a948d9c3a9f8750d5cd4e3cb0561a [file] [log] [blame]
Chris Masone02119d2008-09-05 16:13:11 -04001/*
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 Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Josef Bacik5dc562c2012-08-17 13:14:17 -040021#include <linux/list_sort.h>
Chris Masone02119d2008-09-05 16:13:11 -040022#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 Hellwigb2950862008-12-02 09:54:17 -050028#include "tree-log.h"
Chris Masone02119d2008-09-05 16:13:11 -040029
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 Mason12fcfd22009-03-24 10:24:20 -040040 * 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 Masone02119d2008-09-05 16:13:11 -040083 * 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 Mason12fcfd22009-03-24 10:24:20 -040095static int btrfs_log_inode(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -040096 struct btrfs_root *root, struct inode *inode,
97 int inode_only);
Yan Zhengec051c02009-01-05 15:43:42 -050098static int link_to_fixup_dir(struct btrfs_trans_handle *trans,
99 struct btrfs_root *root,
100 struct btrfs_path *path, u64 objectid);
Chris Mason12fcfd22009-03-24 10:24:20 -0400101static 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 Masone02119d2008-09-05 16:13:11 -0400106
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 Masone02119d2008-09-05 16:13:11 -0400131 * 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 */
135static int start_log_trans(struct btrfs_trans_handle *trans,
136 struct btrfs_root *root)
137{
138 int ret;
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400139 int err = 0;
Yan Zheng7237f182009-01-21 12:54:03 -0500140
141 mutex_lock(&root->log_mutex);
142 if (root->log_root) {
Josef Bacikff782e02009-10-08 15:30:04 -0400143 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 Xie2ecb7922012-09-06 04:04:27 -0600150 atomic_inc(&root->log_batch);
Yan Zheng7237f182009-01-21 12:54:03 -0500151 atomic_inc(&root->log_writers);
152 mutex_unlock(&root->log_mutex);
153 return 0;
154 }
Josef Bacikff782e02009-10-08 15:30:04 -0400155 root->log_multiple_pids = false;
156 root->log_start_pid = current->pid;
Chris Masone02119d2008-09-05 16:13:11 -0400157 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, Zheng4a500fd2010-05-16 10:49:59 -0400160 if (ret)
161 err = ret;
Chris Masone02119d2008-09-05 16:13:11 -0400162 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400163 if (err == 0 && !root->log_root) {
Chris Masone02119d2008-09-05 16:13:11 -0400164 ret = btrfs_add_log_tree(trans, root);
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400165 if (ret)
166 err = ret;
Chris Masone02119d2008-09-05 16:13:11 -0400167 }
Chris Masone02119d2008-09-05 16:13:11 -0400168 mutex_unlock(&root->fs_info->tree_log_mutex);
Miao Xie2ecb7922012-09-06 04:04:27 -0600169 atomic_inc(&root->log_batch);
Yan Zheng7237f182009-01-21 12:54:03 -0500170 atomic_inc(&root->log_writers);
171 mutex_unlock(&root->log_mutex);
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400172 return err;
Chris Masone02119d2008-09-05 16:13:11 -0400173}
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 */
180static 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 Zheng7237f182009-01-21 12:54:03 -0500188 mutex_lock(&root->log_mutex);
Chris Masone02119d2008-09-05 16:13:11 -0400189 if (root->log_root) {
190 ret = 0;
Yan Zheng7237f182009-01-21 12:54:03 -0500191 atomic_inc(&root->log_writers);
Chris Masone02119d2008-09-05 16:13:11 -0400192 }
Yan Zheng7237f182009-01-21 12:54:03 -0500193 mutex_unlock(&root->log_mutex);
Chris Masone02119d2008-09-05 16:13:11 -0400194 return ret;
195}
196
197/*
Chris Mason12fcfd22009-03-24 10:24:20 -0400198 * 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 */
202int 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 Masone02119d2008-09-05 16:13:11 -0400213 * indicate we're done making changes to the log tree
214 * and wake up anyone waiting to do a sync
215 */
Jeff Mahoney143bede2012-03-01 14:56:26 +0100216void btrfs_end_log_trans(struct btrfs_root *root)
Chris Masone02119d2008-09-05 16:13:11 -0400217{
Yan Zheng7237f182009-01-21 12:54:03 -0500218 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 Masone02119d2008-09-05 16:13:11 -0400223}
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 */
232struct 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 */
274static int process_one_buffer(struct btrfs_root *log,
275 struct extent_buffer *eb,
276 struct walk_control *wc, u64 gen)
277{
Josef Bacik04018de2009-04-03 10:14:18 -0400278 if (wc->pin)
Chris Masone688b7252011-10-31 20:52:39 -0400279 btrfs_pin_extent_for_log_replay(wc->trans,
280 log->fs_info->extent_root,
281 eb->start, eb->len);
Chris Masone02119d2008-09-05 16:13:11 -0400282
Chris Masonb9fab912012-05-06 07:23:47 -0400283 if (btrfs_buffer_uptodate(eb, gen, 0)) {
Chris Masone02119d2008-09-05 16:13:11 -0400284 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 */
306static 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 Sterbab3b4aa72011-04-21 01:20:15 +0200337 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400338 return 0;
339 }
340 dst_copy = kmalloc(item_size, GFP_NOFS);
341 src_copy = kmalloc(item_size, GFP_NOFS);
liubo2a29edc2011-01-26 06:22:08 +0000342 if (!dst_copy || !src_copy) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200343 btrfs_release_path(path);
liubo2a29edc2011-01-26 06:22:08 +0000344 kfree(dst_copy);
345 kfree(src_copy);
346 return -ENOMEM;
347 }
Chris Masone02119d2008-09-05 16:13:11 -0400348
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 Sterbab3b4aa72011-04-21 01:20:15 +0200365 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400366 return 0;
367 }
368
369 }
370insert:
David Sterbab3b4aa72011-04-21 01:20:15 +0200371 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400372 /* 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 Mahoney143bede2012-03-01 14:56:26 +0100381 if (found_size > item_size)
Chris Masone02119d2008-09-05 16:13:11 -0400382 btrfs_truncate_item(trans, root, path, item_size, 1);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100383 else if (found_size < item_size)
384 btrfs_extend_item(trans, root, path,
385 item_size - found_size);
Chris Masone02119d2008-09-05 16:13:11 -0400386 } else if (ret) {
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400387 return ret;
Chris Masone02119d2008-09-05 16:13:11 -0400388 }
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 }
438no_copy:
439 btrfs_mark_buffer_dirty(path->nodes[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +0200440 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400441 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 */
448static noinline struct inode *read_one_inode(struct btrfs_root *root,
449 u64 objectid)
450{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400451 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -0400452 struct inode *inode;
Chris Masone02119d2008-09-05 16:13:11 -0400453
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400454 key.objectid = objectid;
455 key.type = BTRFS_INODE_ITEM_KEY;
456 key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +0000457 inode = btrfs_iget(root->fs_info->sb, &key, root, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400458 if (IS_ERR(inode)) {
459 inode = NULL;
460 } else if (is_bad_inode(inode)) {
Chris Masone02119d2008-09-05 16:13:11 -0400461 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 */
479static 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 Masone02119d2008-09-05 16:13:11 -0400488 u64 start = key->offset;
Yan Zheng07d400a2009-01-06 11:42:00 -0500489 u64 saved_nbytes;
Chris Masone02119d2008-09-05 16:13:11 -0400490 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 Zhengd899e052008-10-30 14:25:28 -0400498 if (found_type == BTRFS_FILE_EXTENT_REG ||
499 found_type == BTRFS_FILE_EXTENT_PREALLOC)
Chris Masone02119d2008-09-05 16:13:11 -0400500 extent_end = start + btrfs_file_extent_num_bytes(eb, item);
501 else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -0400502 size = btrfs_file_extent_inline_len(eb, item);
Chris Masone02119d2008-09-05 16:13:11 -0400503 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 Zefan33345d012011-04-20 10:31:50 +0800520 ret = btrfs_lookup_file_extent(trans, root, path, btrfs_ino(inode),
Chris Masone02119d2008-09-05 16:13:11 -0400521 start, 0);
522
Yan Zhengd899e052008-10-30 14:25:28 -0400523 if (ret == 0 &&
524 (found_type == BTRFS_FILE_EXTENT_REG ||
525 found_type == BTRFS_FILE_EXTENT_PREALLOC)) {
Chris Masone02119d2008-09-05 16:13:11 -0400526 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 Sterbab3b4aa72011-04-21 01:20:15 +0200545 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400546 goto out;
547 }
548 }
David Sterbab3b4aa72011-04-21 01:20:15 +0200549 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400550
Yan Zheng07d400a2009-01-06 11:42:00 -0500551 saved_nbytes = inode_get_bytes(inode);
Chris Masone02119d2008-09-05 16:13:11 -0400552 /* drop any overlapping extents */
Josef Bacik26714852012-08-29 12:24:27 -0400553 ret = btrfs_drop_extents(trans, root, inode, start, extent_end, 1);
Chris Masone02119d2008-09-05 16:13:11 -0400554 BUG_ON(ret);
555
Yan Zheng07d400a2009-01-06 11:42:00 -0500556 if (found_type == BTRFS_FILE_EXTENT_REG ||
557 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400558 u64 offset;
Yan Zheng07d400a2009-01-06 11:42:00 -0500559 unsigned long dest_offset;
560 struct btrfs_key ins;
Chris Masone02119d2008-09-05 16:13:11 -0400561
Yan Zheng07d400a2009-01-06 11:42:00 -0500562 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 Zheng5d4f98a2009-06-10 10:45:14 -0400573 offset = key->offset - btrfs_file_extent_offset(eb, item);
Yan Zheng07d400a2009-01-06 11:42:00 -0500574
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 Zheng5d4f98a2009-06-10 10:45:14 -0400588 0, root->root_key.objectid,
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200589 key->objectid, offset, 0);
Tsutomu Itoh37daa4f2011-04-28 09:18:21 +0000590 BUG_ON(ret);
Yan Zheng07d400a2009-01-06 11:42:00 -0500591 } else {
592 /*
593 * insert the extent pointer in the extent
594 * allocation tree
595 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400596 ret = btrfs_alloc_logged_file_extent(trans,
597 root, root->root_key.objectid,
598 key->objectid, offset, &ins);
Yan Zheng07d400a2009-01-06 11:42:00 -0500599 BUG_ON(ret);
600 }
David Sterbab3b4aa72011-04-21 01:20:15 +0200601 btrfs_release_path(path);
Yan Zheng07d400a2009-01-06 11:42:00 -0500602
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 Jansena2de7332011-03-08 14:14:00 +0100615 &ordered_sums, 0);
Yan Zheng07d400a2009-01-06 11:42:00 -0500616 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 Sterbab3b4aa72011-04-21 01:20:15 +0200630 btrfs_release_path(path);
Yan Zheng07d400a2009-01-06 11:42:00 -0500631 }
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 Itohb9959292012-06-25 21:25:22 -0600639 ret = btrfs_update_inode(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -0400640out:
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 */
654static 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);
liubo2a29edc2011-01-26 06:22:08 +0000672 if (!name)
673 return -ENOMEM;
674
Chris Masone02119d2008-09-05 16:13:11 -0400675 read_extent_buffer(leaf, name, (unsigned long)(di + 1), name_len);
David Sterbab3b4aa72011-04-21 01:20:15 +0200676 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400677
678 inode = read_one_inode(root, location.objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +0000679 if (!inode) {
680 kfree(name);
681 return -EIO;
682 }
Chris Masone02119d2008-09-05 16:13:11 -0400683
Yan Zhengec051c02009-01-05 15:43:42 -0500684 ret = link_to_fixup_dir(trans, root, path, location.objectid);
685 BUG_ON(ret);
Chris Mason12fcfd22009-03-24 10:24:20 -0400686
Chris Masone02119d2008-09-05 16:13:11 -0400687 ret = btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
Yan Zhengec051c02009-01-05 15:43:42 -0500688 BUG_ON(ret);
Chris Masone02119d2008-09-05 16:13:11 -0400689 kfree(name);
690
691 iput(inode);
Chris Masonb6305562012-07-02 15:29:53 -0400692
693 btrfs_run_delayed_items(trans, root);
Chris Masone02119d2008-09-05 16:13:11 -0400694 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 */
702static 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 Sterbab3b4aa72011-04-21 01:20:15 +0200719 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400720
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;
729out:
David Sterbab3b4aa72011-04-21 01:20:15 +0200730 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400731 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 */
744static 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();
liubo2a29edc2011-01-26 06:22:08 +0000759 if (!path)
760 return -ENOMEM;
761
Chris Masone02119d2008-09-05 16:13:11 -0400762 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 }
783out:
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 */
795static 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 Masone02119d2008-09-05 16:13:11 -0400802 struct btrfs_inode_ref *ref;
liubo34f3e4f2011-08-06 08:35:23 +0000803 struct btrfs_dir_item *di;
804 struct inode *dir;
Chris Masone02119d2008-09-05 16:13:11 -0400805 struct inode *inode;
Chris Masone02119d2008-09-05 16:13:11 -0400806 unsigned long ref_ptr;
807 unsigned long ref_end;
liubo34f3e4f2011-08-06 08:35:23 +0000808 char *name;
809 int namelen;
810 int ret;
liuboc622ae62011-03-26 08:01:12 -0400811 int search_done = 0;
Chris Masone02119d2008-09-05 16:13:11 -0400812
Chris Masone02119d2008-09-05 16:13:11 -0400813 /*
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 Itohc00e9492011-04-28 09:10:23 +0000824 if (!inode) {
825 iput(dir);
826 return -EIO;
827 }
Chris Masone02119d2008-09-05 16:13:11 -0400828
829 ref_ptr = btrfs_item_ptr_offset(eb, slot);
830 ref_end = ref_ptr + btrfs_item_size_nr(eb, slot);
831
832again:
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 Zefan33345d012011-04-20 10:31:50 +0800842 if (inode_in_dir(root, path, btrfs_ino(dir), btrfs_ino(inode),
Chris Masone02119d2008-09-05 16:13:11 -0400843 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 */
liuboc622ae62011-03-26 08:01:12 -0400855
856 if (search_done)
857 goto insert;
858
Chris Masone02119d2008-09-05 16:13:11 -0400859 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 Masond3977122009-01-05 21:25:51 -0500880 while (ptr < ptr_end) {
Chris Masone02119d2008-09-05 16:13:11 -0400881 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 Sterbab3b4aa72011-04-21 01:20:15 +0200894 btrfs_release_path(path);
Chris Mason12fcfd22009-03-24 10:24:20 -0400895
Chris Masone02119d2008-09-05 16:13:11 -0400896 ret = btrfs_unlink_inode(trans, root, dir,
897 inode, victim_name,
898 victim_name_len);
Chris Masonb6305562012-07-02 15:29:53 -0400899 btrfs_run_delayed_items(trans, root);
Chris Masone02119d2008-09-05 16:13:11 -0400900 }
901 kfree(victim_name);
902 ptr = (unsigned long)(victim_ref + 1) + victim_name_len;
903 }
904 BUG_ON(ret);
liuboc622ae62011-03-26 08:01:12 -0400905
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 Masone02119d2008-09-05 16:13:11 -0400911 }
David Sterbab3b4aa72011-04-21 01:20:15 +0200912 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400913
liubo34f3e4f2011-08-06 08:35:23 +0000914 /* 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
liuboc622ae62011-03-26 08:01:12 -0400933insert:
Chris Masone02119d2008-09-05 16:13:11 -0400934 /* 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
941out:
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
951out_nowrite:
David Sterbab3b4aa72011-04-21 01:20:15 +0200952 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400953 iput(dir);
954 iput(inode);
955 return 0;
956}
957
Yan, Zhengc71bf092009-11-12 09:34:40 +0000958static 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 Masone02119d2008-09-05 16:13:11 -0400969/*
Chris Masone02119d2008-09-05 16:13:11 -0400970 * 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 */
979static 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 Zefan33345d012011-04-20 10:31:50 +0800990 u64 ino = btrfs_ino(inode);
Chris Masone02119d2008-09-05 16:13:11 -0400991
Li Zefan33345d012011-04-20 10:31:50 +0800992 key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -0400993 key.type = BTRFS_INODE_REF_KEY;
994 key.offset = (u64)-1;
995
996 path = btrfs_alloc_path();
liubo2a29edc2011-01-26 06:22:08 +0000997 if (!path)
998 return -ENOMEM;
Chris Masone02119d2008-09-05 16:13:11 -0400999
Chris Masond3977122009-01-05 21:25:51 -05001000 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04001001 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 Zefan33345d012011-04-20 10:31:50 +08001011 if (key.objectid != ino ||
Chris Masone02119d2008-09-05 16:13:11 -04001012 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 Masond3977122009-01-05 21:25:51 -05001017 while (ptr < ptr_end) {
Chris Masone02119d2008-09-05 16:13:11 -04001018 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 Sterbab3b4aa72011-04-21 01:20:15 +02001030 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001031 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001032 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001033 if (nlink != inode->i_nlink) {
Miklos Szeredibfe86842011-10-28 14:13:29 +02001034 set_nlink(inode, nlink);
Chris Masone02119d2008-09-05 16:13:11 -04001035 btrfs_update_inode(trans, root, inode);
1036 }
Chris Mason8d5bf1c2008-09-11 15:51:21 -04001037 BTRFS_I(inode)->index_cnt = (u64)-1;
Chris Masone02119d2008-09-05 16:13:11 -04001038
Yan, Zhengc71bf092009-11-12 09:34:40 +00001039 if (inode->i_nlink == 0) {
1040 if (S_ISDIR(inode->i_mode)) {
1041 ret = replay_dir_deletes(trans, root, NULL, path,
Li Zefan33345d012011-04-20 10:31:50 +08001042 ino, 1);
Yan, Zhengc71bf092009-11-12 09:34:40 +00001043 BUG_ON(ret);
1044 }
Li Zefan33345d012011-04-20 10:31:50 +08001045 ret = insert_orphan_item(trans, root, ino);
Chris Mason12fcfd22009-03-24 10:24:20 -04001046 BUG_ON(ret);
1047 }
1048 btrfs_free_path(path);
1049
Chris Masone02119d2008-09-05 16:13:11 -04001050 return 0;
1051}
1052
1053static 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 Masond3977122009-01-05 21:25:51 -05001064 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04001065 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 Itoh65a246c2011-05-19 04:37:44 +00001081 if (ret)
1082 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001083
David Sterbab3b4aa72011-04-21 01:20:15 +02001084 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001085 inode = read_one_inode(root, key.offset);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001086 if (!inode)
1087 return -EIO;
Chris Masone02119d2008-09-05 16:13:11 -04001088
1089 ret = fixup_inode_link_count(trans, root, inode);
1090 BUG_ON(ret);
1091
1092 iput(inode);
1093
Chris Mason12fcfd22009-03-24 10:24:20 -04001094 /*
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 Masone02119d2008-09-05 16:13:11 -04001100 }
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00001101 ret = 0;
1102out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001103 btrfs_release_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00001104 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001105}
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 */
1113static 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 Itohc00e9492011-04-28 09:10:23 +00001123 if (!inode)
1124 return -EIO;
Chris Masone02119d2008-09-05 16:13:11 -04001125
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 Sterbab3b4aa72011-04-21 01:20:15 +02001132 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001133 if (ret == 0) {
1134 btrfs_inc_nlink(inode);
Tsutomu Itohb9959292012-06-25 21:25:22 -06001135 ret = btrfs_update_inode(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -04001136 } 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 */
1151static 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 */
1193static 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 Masone02119d2008-09-05 16:13:11 -04001206 u8 log_type;
Chris Mason4bef0842008-09-08 11:18:08 -04001207 int exists;
Chris Masone02119d2008-09-05 16:13:11 -04001208 int ret;
1209
1210 dir = read_one_inode(root, key->objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001211 if (!dir)
1212 return -EIO;
Chris Masone02119d2008-09-05 16:13:11 -04001213
1214 name_len = btrfs_dir_name_len(eb, di);
1215 name = kmalloc(name_len, GFP_NOFS);
liubo2a29edc2011-01-26 06:22:08 +00001216 if (!name)
1217 return -ENOMEM;
1218
Chris Masone02119d2008-09-05 16:13:11 -04001219 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 Mason4bef0842008-09-08 11:18:08 -04001224 exists = btrfs_lookup_inode(trans, root, path, &log_key, 0);
1225 if (exists == 0)
1226 exists = 1;
1227 else
1228 exists = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02001229 btrfs_release_path(path);
Chris Mason4bef0842008-09-08 11:18:08 -04001230
Chris Masone02119d2008-09-05 16:13:11 -04001231 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 Masond3977122009-01-05 21:25:51 -05001234 } else if (key->type == BTRFS_DIR_INDEX_KEY) {
Chris Masone02119d2008-09-05 16:13:11 -04001235 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 Sterbac7040052011-04-19 18:00:01 +02001242 if (IS_ERR_OR_NULL(dst_di)) {
Chris Masone02119d2008-09-05 16:13:11 -04001243 /* 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 Mason4bef0842008-09-08 11:18:08 -04001264 if (!exists)
Chris Masone02119d2008-09-05 16:13:11 -04001265 goto out;
1266
Chris Masone02119d2008-09-05 16:13:11 -04001267 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;
1272out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001273 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001274 kfree(name);
1275 iput(dir);
1276 return 0;
1277
1278insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02001279 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001280 ret = insert_one_name(trans, root, path, key->objectid, key->offset,
1281 name, name_len, log_type, &log_key);
1282
Stoyan Gaydarovc2934982009-04-02 17:05:11 -04001283 BUG_ON(ret && ret != -ENOENT);
Chris Masone02119d2008-09-05 16:13:11 -04001284 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 */
1293static 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 Masond3977122009-01-05 21:25:51 -05001308 while (ptr < ptr_end) {
Chris Masone02119d2008-09-05 16:13:11 -04001309 di = (struct btrfs_dir_item *)ptr;
Josef Bacik22a94d42011-03-16 16:47:17 -04001310 if (verify_dir_item(root, eb, di))
1311 return -EIO;
Chris Masone02119d2008-09-05 16:13:11 -04001312 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 */
1332static 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;
1376next:
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;
1399out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001400 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001401 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 */
1409static 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
1430again:
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 Masond3977122009-01-05 21:25:51 -05001436 while (ptr < ptr_end) {
Chris Masone02119d2008-09-05 16:13:11 -04001437 di = (struct btrfs_dir_item *)ptr;
Josef Bacik22a94d42011-03-16 16:47:17 -04001438 if (verify_dir_item(root, eb, di)) {
1439 ret = -EIO;
1440 goto out;
1441 }
1442
Chris Masone02119d2008-09-05 16:13:11 -04001443 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 Mason12fcfd22009-03-24 10:24:20 -04001452 if (log && dir_key->type == BTRFS_DIR_ITEM_KEY) {
Chris Masone02119d2008-09-05 16:13:11 -04001453 log_di = btrfs_lookup_dir_item(trans, log, log_path,
1454 dir_key->objectid,
1455 name, name_len, 0);
Chris Mason12fcfd22009-03-24 10:24:20 -04001456 } else if (log && dir_key->type == BTRFS_DIR_INDEX_KEY) {
Chris Masone02119d2008-09-05 16:13:11 -04001457 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 Sterbac7040052011-04-19 18:00:01 +02001463 if (IS_ERR_OR_NULL(log_di)) {
Chris Masone02119d2008-09-05 16:13:11 -04001464 btrfs_dir_item_key_to_cpu(eb, di, &location);
David Sterbab3b4aa72011-04-21 01:20:15 +02001465 btrfs_release_path(path);
1466 btrfs_release_path(log_path);
Chris Masone02119d2008-09-05 16:13:11 -04001467 inode = read_one_inode(root, location.objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001468 if (!inode) {
1469 kfree(name);
1470 return -EIO;
1471 }
Chris Masone02119d2008-09-05 16:13:11 -04001472
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 Masonb6305562012-07-02 15:29:53 -04001480
1481 btrfs_run_delayed_items(trans, root);
1482
Chris Masone02119d2008-09-05 16:13:11 -04001483 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 Sterbab3b4aa72011-04-21 01:20:15 +02001496 btrfs_release_path(log_path);
Chris Masone02119d2008-09-05 16:13:11 -04001497 kfree(name);
1498
1499 ptr = (unsigned long)(di + 1);
1500 ptr += name_len;
1501 }
1502 ret = 0;
1503out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001504 btrfs_release_path(path);
1505 btrfs_release_path(log_path);
Chris Masone02119d2008-09-05 16:13:11 -04001506 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 */
1519static 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 Mason12fcfd22009-03-24 10:24:20 -04001523 u64 dirid, int del_all)
Chris Masone02119d2008-09-05 16:13:11 -04001524{
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 }
1549again:
1550 range_start = 0;
1551 range_end = 0;
Chris Masond3977122009-01-05 21:25:51 -05001552 while (1) {
Chris Mason12fcfd22009-03-24 10:24:20 -04001553 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 Masone02119d2008-09-05 16:13:11 -04001561
1562 dir_key.offset = range_start;
Chris Masond3977122009-01-05 21:25:51 -05001563 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04001564 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 Mason12fcfd22009-03-24 10:24:20 -04001586 log_path, dir,
1587 &found_key);
Chris Masone02119d2008-09-05 16:13:11 -04001588 BUG_ON(ret);
1589 if (found_key.offset == (u64)-1)
1590 break;
1591 dir_key.offset = found_key.offset + 1;
1592 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001593 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001594 if (range_end == (u64)-1)
1595 break;
1596 range_start = range_end + 1;
1597 }
1598
1599next_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 Sterbab3b4aa72011-04-21 01:20:15 +02001604 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001605 goto again;
1606 }
1607out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001608 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001609 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 */
1625static 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 Masone02119d2008-09-05 16:13:11 -04001632 int level;
1633 int i;
1634 int ret;
1635
Tsutomu Itoh018642a2012-05-29 18:10:13 +09001636 ret = btrfs_read_buffer(eb, gen);
1637 if (ret)
1638 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001639
1640 level = btrfs_header_level(eb);
1641
1642 if (level != 0)
1643 return 0;
1644
1645 path = btrfs_alloc_path();
Mark Fasheh1e5063d2011-07-12 10:46:06 -07001646 if (!path)
1647 return -ENOMEM;
Chris Masone02119d2008-09-05 16:13:11 -04001648
1649 nritems = btrfs_header_nritems(eb);
1650 for (i = 0; i < nritems; i++) {
1651 btrfs_item_key_to_cpu(eb, &key, i);
Chris Masone02119d2008-09-05 16:13:11 -04001652
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 Masone02119d2008-09-05 16:13:11 -04001656 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 Mason12fcfd22009-03-24 10:24:20 -04001664 root, log, path, key.objectid, 0);
Chris Masone02119d2008-09-05 16:13:11 -04001665 BUG_ON(ret);
1666 }
1667 ret = overwrite_item(wc->trans, root, path,
1668 eb, i, &key);
1669 BUG_ON(ret);
1670
Yan, Zhengc71bf092009-11-12 09:34:40 +00001671 /* for regular files, make sure corresponding
1672 * orhpan item exist. extents past the new EOF
1673 * will be truncated later by orphan cleanup.
Chris Masone02119d2008-09-05 16:13:11 -04001674 */
1675 if (S_ISREG(mode)) {
Yan, Zhengc71bf092009-11-12 09:34:40 +00001676 ret = insert_orphan_item(wc->trans, root,
1677 key.objectid);
Chris Masone02119d2008-09-05 16:13:11 -04001678 BUG_ON(ret);
Chris Masone02119d2008-09-05 16:13:11 -04001679 }
Yan, Zhengc71bf092009-11-12 09:34:40 +00001680
Chris Masone02119d2008-09-05 16:13:11 -04001681 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 Masone02119d2008-09-05 16:13:11 -04001701 } 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 Masond3977122009-01-05 21:25:51 -05001712static noinline int walk_down_log_tree(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -04001713 struct btrfs_root *root,
1714 struct btrfs_path *path, int *level,
1715 struct walk_control *wc)
1716{
1717 u64 root_owner;
Chris Masone02119d2008-09-05 16:13:11 -04001718 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 Masond3977122009-01-05 21:25:51 -05001729 while (*level > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04001730 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 Masone02119d2008-09-05 16:13:11 -04001747
1748 next = btrfs_find_create_tree_block(root, bytenr, blocksize);
liubo2a29edc2011-01-26 06:22:08 +00001749 if (!next)
1750 return -ENOMEM;
Chris Masone02119d2008-09-05 16:13:11 -04001751
Chris Masone02119d2008-09-05 16:13:11 -04001752 if (*level == 1) {
Mark Fasheh1e5063d2011-07-12 10:46:06 -07001753 ret = wc->process_func(root, next, wc, ptr_gen);
1754 if (ret)
1755 return ret;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04001756
Chris Masone02119d2008-09-05 16:13:11 -04001757 path->slots[*level]++;
1758 if (wc->free) {
Tsutomu Itoh018642a2012-05-29 18:10:13 +09001759 ret = btrfs_read_buffer(next, ptr_gen);
1760 if (ret) {
1761 free_extent_buffer(next);
1762 return ret;
1763 }
Chris Masone02119d2008-09-05 16:13:11 -04001764
1765 btrfs_tree_lock(next);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001766 btrfs_set_lock_blocking(next);
Chris Masonbd681512011-07-16 15:23:14 -04001767 clean_tree_block(trans, root, next);
Chris Masone02119d2008-09-05 16:13:11 -04001768 btrfs_wait_tree_block_writeback(next);
1769 btrfs_tree_unlock(next);
1770
Chris Masone02119d2008-09-05 16:13:11 -04001771 WARN_ON(root_owner !=
1772 BTRFS_TREE_LOG_OBJECTID);
Chris Masone688b7252011-10-31 20:52:39 -04001773 ret = btrfs_free_and_pin_reserved_extent(root,
Chris Masond00aff02008-09-11 15:54:42 -04001774 bytenr, blocksize);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001775 BUG_ON(ret); /* -ENOMEM or logic errors */
Chris Masone02119d2008-09-05 16:13:11 -04001776 }
1777 free_extent_buffer(next);
1778 continue;
1779 }
Tsutomu Itoh018642a2012-05-29 18:10:13 +09001780 ret = btrfs_read_buffer(next, ptr_gen);
1781 if (ret) {
1782 free_extent_buffer(next);
1783 return ret;
1784 }
Chris Masone02119d2008-09-05 16:13:11 -04001785
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, Zheng4a500fd2010-05-16 10:49:59 -04001797 path->slots[*level] = btrfs_header_nritems(path->nodes[*level]);
Chris Masone02119d2008-09-05 16:13:11 -04001798
1799 cond_resched();
1800 return 0;
1801}
1802
Chris Masond3977122009-01-05 21:25:51 -05001803static noinline int walk_up_log_tree(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -04001804 struct btrfs_root *root,
1805 struct btrfs_path *path, int *level,
1806 struct walk_control *wc)
1807{
1808 u64 root_owner;
Chris Masone02119d2008-09-05 16:13:11 -04001809 int i;
1810 int slot;
1811 int ret;
1812
Chris Masond3977122009-01-05 21:25:51 -05001813 for (i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
Chris Masone02119d2008-09-05 16:13:11 -04001814 slot = path->slots[i];
Yan, Zheng4a500fd2010-05-16 10:49:59 -04001815 if (slot + 1 < btrfs_header_nritems(path->nodes[i])) {
Chris Masone02119d2008-09-05 16:13:11 -04001816 path->slots[i]++;
1817 *level = i;
1818 WARN_ON(*level == 0);
1819 return 0;
1820 } else {
Zheng Yan31840ae2008-09-23 13:14:14 -04001821 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 Fasheh1e5063d2011-07-12 10:46:06 -07001828 ret = wc->process_func(root, path->nodes[*level], wc,
Chris Masone02119d2008-09-05 16:13:11 -04001829 btrfs_header_generation(path->nodes[*level]));
Mark Fasheh1e5063d2011-07-12 10:46:06 -07001830 if (ret)
1831 return ret;
1832
Chris Masone02119d2008-09-05 16:13:11 -04001833 if (wc->free) {
1834 struct extent_buffer *next;
1835
1836 next = path->nodes[*level];
1837
1838 btrfs_tree_lock(next);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001839 btrfs_set_lock_blocking(next);
Chris Masonbd681512011-07-16 15:23:14 -04001840 clean_tree_block(trans, root, next);
Chris Masone02119d2008-09-05 16:13:11 -04001841 btrfs_wait_tree_block_writeback(next);
1842 btrfs_tree_unlock(next);
1843
Chris Masone02119d2008-09-05 16:13:11 -04001844 WARN_ON(root_owner != BTRFS_TREE_LOG_OBJECTID);
Chris Masone688b7252011-10-31 20:52:39 -04001845 ret = btrfs_free_and_pin_reserved_extent(root,
Chris Masone02119d2008-09-05 16:13:11 -04001846 path->nodes[*level]->start,
Chris Masond00aff02008-09-11 15:54:42 -04001847 path->nodes[*level]->len);
Chris Masone02119d2008-09-05 16:13:11 -04001848 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 */
1863static 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 Itohdb5b4932011-03-23 08:14:16 +00001874 if (!path)
1875 return -ENOMEM;
Chris Masone02119d2008-09-05 16:13:11 -04001876
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 Masond3977122009-01-05 21:25:51 -05001883 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04001884 wret = walk_down_log_tree(trans, log, path, &level, wc);
1885 if (wret > 0)
1886 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001887 if (wret < 0) {
Chris Masone02119d2008-09-05 16:13:11 -04001888 ret = wret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001889 goto out;
1890 }
Chris Masone02119d2008-09-05 16:13:11 -04001891
1892 wret = walk_up_log_tree(trans, log, path, &level, wc);
1893 if (wret > 0)
1894 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001895 if (wret < 0) {
Chris Masone02119d2008-09-05 16:13:11 -04001896 ret = wret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001897 goto out;
1898 }
Chris Masone02119d2008-09-05 16:13:11 -04001899 }
1900
1901 /* was the root node processed? if not, catch it here */
1902 if (path->nodes[orig_level]) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001903 ret = wc->process_func(log, path->nodes[orig_level], wc,
Chris Masone02119d2008-09-05 16:13:11 -04001904 btrfs_header_generation(path->nodes[orig_level]));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001905 if (ret)
1906 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001907 if (wc->free) {
1908 struct extent_buffer *next;
1909
1910 next = path->nodes[orig_level];
1911
1912 btrfs_tree_lock(next);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001913 btrfs_set_lock_blocking(next);
Chris Masonbd681512011-07-16 15:23:14 -04001914 clean_tree_block(trans, log, next);
Chris Masone02119d2008-09-05 16:13:11 -04001915 btrfs_wait_tree_block_writeback(next);
1916 btrfs_tree_unlock(next);
1917
Chris Masone02119d2008-09-05 16:13:11 -04001918 WARN_ON(log->root_key.objectid !=
1919 BTRFS_TREE_LOG_OBJECTID);
Chris Masone688b7252011-10-31 20:52:39 -04001920 ret = btrfs_free_and_pin_reserved_extent(log, next->start,
Chris Masond00aff02008-09-11 15:54:42 -04001921 next->len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001922 BUG_ON(ret); /* -ENOMEM or logic errors */
Chris Masone02119d2008-09-05 16:13:11 -04001923 }
1924 }
1925
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001926out:
Chris Masone02119d2008-09-05 16:13:11 -04001927 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 Masone02119d2008-09-05 16:13:11 -04001934 return ret;
1935}
1936
Yan Zheng7237f182009-01-21 12:54:03 -05001937/*
1938 * helper function to update the item for a given subvolumes log root
1939 * in the tree of log roots
1940 */
1941static 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 Mason12fcfd22009-03-24 10:24:20 -04001957static int wait_log_commit(struct btrfs_trans_handle *trans,
1958 struct btrfs_root *root, unsigned long transid)
Chris Masone02119d2008-09-05 16:13:11 -04001959{
1960 DEFINE_WAIT(wait);
Yan Zheng7237f182009-01-21 12:54:03 -05001961 int index = transid % 2;
Chris Masone02119d2008-09-05 16:13:11 -04001962
Yan Zheng7237f182009-01-21 12:54:03 -05001963 /*
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 Masone02119d2008-09-05 16:13:11 -04001968 do {
Yan Zheng7237f182009-01-21 12:54:03 -05001969 prepare_to_wait(&root->log_commit_wait[index],
1970 &wait, TASK_UNINTERRUPTIBLE);
1971 mutex_unlock(&root->log_mutex);
Chris Mason12fcfd22009-03-24 10:24:20 -04001972
1973 if (root->fs_info->last_trans_log_full_commit !=
1974 trans->transid && root->log_transid < transid + 2 &&
Yan Zheng7237f182009-01-21 12:54:03 -05001975 atomic_read(&root->log_commit[index]))
Chris Masone02119d2008-09-05 16:13:11 -04001976 schedule();
Chris Mason12fcfd22009-03-24 10:24:20 -04001977
Yan Zheng7237f182009-01-21 12:54:03 -05001978 finish_wait(&root->log_commit_wait[index], &wait);
1979 mutex_lock(&root->log_mutex);
Jan Kara6dd70ce2012-01-26 15:01:11 -05001980 } while (root->fs_info->last_trans_log_full_commit !=
1981 trans->transid && root->log_transid < transid + 2 &&
Yan Zheng7237f182009-01-21 12:54:03 -05001982 atomic_read(&root->log_commit[index]));
1983 return 0;
1984}
1985
Jeff Mahoney143bede2012-03-01 14:56:26 +01001986static void wait_for_writer(struct btrfs_trans_handle *trans,
1987 struct btrfs_root *root)
Yan Zheng7237f182009-01-21 12:54:03 -05001988{
1989 DEFINE_WAIT(wait);
Jan Kara6dd70ce2012-01-26 15:01:11 -05001990 while (root->fs_info->last_trans_log_full_commit !=
1991 trans->transid && atomic_read(&root->log_writers)) {
Yan Zheng7237f182009-01-21 12:54:03 -05001992 prepare_to_wait(&root->log_writer_wait,
1993 &wait, TASK_UNINTERRUPTIBLE);
1994 mutex_unlock(&root->log_mutex);
Chris Mason12fcfd22009-03-24 10:24:20 -04001995 if (root->fs_info->last_trans_log_full_commit !=
1996 trans->transid && atomic_read(&root->log_writers))
Yan Zheng7237f182009-01-21 12:54:03 -05001997 schedule();
1998 mutex_lock(&root->log_mutex);
1999 finish_wait(&root->log_writer_wait, &wait);
2000 }
Chris Masone02119d2008-09-05 16:13:11 -04002001}
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 Mason12fcfd22009-03-24 10:24:20 -04002006 * 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 Masone02119d2008-09-05 16:13:11 -04002014 */
2015int btrfs_sync_log(struct btrfs_trans_handle *trans,
2016 struct btrfs_root *root)
2017{
Yan Zheng7237f182009-01-21 12:54:03 -05002018 int index1;
2019 int index2;
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002020 int mark;
Chris Masone02119d2008-09-05 16:13:11 -04002021 int ret;
Chris Masone02119d2008-09-05 16:13:11 -04002022 struct btrfs_root *log = root->log_root;
Yan Zheng7237f182009-01-21 12:54:03 -05002023 struct btrfs_root *log_root_tree = root->fs_info->log_root_tree;
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002024 unsigned long log_transid = 0;
Chris Masone02119d2008-09-05 16:13:11 -04002025
Yan Zheng7237f182009-01-21 12:54:03 -05002026 mutex_lock(&root->log_mutex);
2027 index1 = root->log_transid % 2;
2028 if (atomic_read(&root->log_commit[index1])) {
Chris Mason12fcfd22009-03-24 10:24:20 -04002029 wait_log_commit(trans, root, root->log_transid);
Yan Zheng7237f182009-01-21 12:54:03 -05002030 mutex_unlock(&root->log_mutex);
2031 return 0;
Chris Masone02119d2008-09-05 16:13:11 -04002032 }
Yan Zheng7237f182009-01-21 12:54:03 -05002033 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 Mason12fcfd22009-03-24 10:24:20 -04002037 wait_log_commit(trans, root, root->log_transid - 1);
Yan, Zheng86df7eb2009-10-14 09:24:59 -04002038 while (1) {
Miao Xie2ecb7922012-09-06 04:04:27 -06002039 int batch = atomic_read(&root->log_batch);
Chris Masoncd354ad2011-10-20 15:45:37 -04002040 /* when we're on an ssd, just kick the log commit out */
2041 if (!btrfs_test_opt(root, SSD) && root->log_multiple_pids) {
Yan, Zheng86df7eb2009-10-14 09:24:59 -04002042 mutex_unlock(&root->log_mutex);
2043 schedule_timeout_uninterruptible(1);
2044 mutex_lock(&root->log_mutex);
2045 }
Chris Mason12fcfd22009-03-24 10:24:20 -04002046 wait_for_writer(trans, root);
Miao Xie2ecb7922012-09-06 04:04:27 -06002047 if (batch == atomic_read(&root->log_batch))
Chris Masone02119d2008-09-05 16:13:11 -04002048 break;
2049 }
Chris Masond0c803c2008-09-11 16:17:57 -04002050
Chris Mason12fcfd22009-03-24 10:24:20 -04002051 /* 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, Zheng8cef4e12009-11-12 09:33:26 +00002058 log_transid = root->log_transid;
2059 if (log_transid % 2 == 0)
2060 mark = EXTENT_DIRTY;
2061 else
2062 mark = EXTENT_NEW;
2063
Chris Mason690587d2009-10-13 13:29:19 -04002064 /* we start IO on all the marked extents here, but we don't actually
2065 * wait for them until later.
2066 */
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002067 ret = btrfs_write_marked_extents(log, &log->dirty_log_pages, mark);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002068 if (ret) {
2069 btrfs_abort_transaction(trans, root, ret);
2070 mutex_unlock(&root->log_mutex);
2071 goto out;
2072 }
Yan Zheng7237f182009-01-21 12:54:03 -05002073
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002074 btrfs_set_root_node(&log->root_item, log->node);
Yan Zheng7237f182009-01-21 12:54:03 -05002075
Yan Zheng7237f182009-01-21 12:54:03 -05002076 root->log_transid++;
2077 log->log_transid = root->log_transid;
Josef Bacikff782e02009-10-08 15:30:04 -04002078 root->log_start_pid = 0;
Yan Zheng7237f182009-01-21 12:54:03 -05002079 smp_mb();
2080 /*
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002081 * 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 Zheng7237f182009-01-21 12:54:03 -05002084 */
2085 mutex_unlock(&root->log_mutex);
2086
2087 mutex_lock(&log_root_tree->log_mutex);
Miao Xie2ecb7922012-09-06 04:04:27 -06002088 atomic_inc(&log_root_tree->log_batch);
Yan Zheng7237f182009-01-21 12:54:03 -05002089 atomic_inc(&log_root_tree->log_writers);
2090 mutex_unlock(&log_root_tree->log_mutex);
2091
2092 ret = update_log_root(trans, log);
Yan Zheng7237f182009-01-21 12:54:03 -05002093
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, Zheng4a500fd2010-05-16 10:49:59 -04002101 if (ret) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002102 if (ret != -ENOSPC) {
2103 btrfs_abort_transaction(trans, root, ret);
2104 mutex_unlock(&log_root_tree->log_mutex);
2105 goto out;
2106 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002107 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 Zheng7237f182009-01-21 12:54:03 -05002114 index2 = log_root_tree->log_transid % 2;
2115 if (atomic_read(&log_root_tree->log_commit[index2])) {
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002116 btrfs_wait_marked_extents(log, &log->dirty_log_pages, mark);
Chris Mason12fcfd22009-03-24 10:24:20 -04002117 wait_log_commit(trans, log_root_tree,
2118 log_root_tree->log_transid);
Yan Zheng7237f182009-01-21 12:54:03 -05002119 mutex_unlock(&log_root_tree->log_mutex);
Chris Masonb31eabd2011-01-31 16:48:24 -05002120 ret = 0;
Yan Zheng7237f182009-01-21 12:54:03 -05002121 goto out;
2122 }
2123 atomic_set(&log_root_tree->log_commit[index2], 1);
2124
Chris Mason12fcfd22009-03-24 10:24:20 -04002125 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 Zheng7237f182009-01-21 12:54:03 -05002129
Chris Mason12fcfd22009-03-24 10:24:20 -04002130 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, Zheng8cef4e12009-11-12 09:33:26 +00002137 btrfs_wait_marked_extents(log, &log->dirty_log_pages, mark);
Chris Mason12fcfd22009-03-24 10:24:20 -04002138 mutex_unlock(&log_root_tree->log_mutex);
2139 ret = -EAGAIN;
2140 goto out_wake_log_root;
2141 }
Yan Zheng7237f182009-01-21 12:54:03 -05002142
2143 ret = btrfs_write_and_wait_marked_extents(log_root_tree,
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002144 &log_root_tree->dirty_log_pages,
2145 EXTENT_DIRTY | EXTENT_NEW);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002146 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, Zheng8cef4e12009-11-12 09:33:26 +00002151 btrfs_wait_marked_extents(log, &log->dirty_log_pages, mark);
Chris Masone02119d2008-09-05 16:13:11 -04002152
David Sterba6c417612011-04-13 15:41:04 +02002153 btrfs_set_super_log_root(root->fs_info->super_for_commit,
Yan Zheng7237f182009-01-21 12:54:03 -05002154 log_root_tree->node->start);
David Sterba6c417612011-04-13 15:41:04 +02002155 btrfs_set_super_log_root_level(root->fs_info->super_for_commit,
Yan Zheng7237f182009-01-21 12:54:03 -05002156 btrfs_header_level(log_root_tree->node));
Chris Masone02119d2008-09-05 16:13:11 -04002157
Yan Zheng7237f182009-01-21 12:54:03 -05002158 log_root_tree->log_transid++;
Chris Masone02119d2008-09-05 16:13:11 -04002159 smp_mb();
Yan Zheng7237f182009-01-21 12:54:03 -05002160
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 Jansena2de7332011-03-08 14:14:00 +01002170 btrfs_scrub_pause_super(root);
Chris Mason47226072009-10-13 12:55:09 -04002171 write_ctree_super(trans, root->fs_info->tree_root, 1);
Arne Jansena2de7332011-03-08 14:14:00 +01002172 btrfs_scrub_continue_super(root);
Chris Mason12fcfd22009-03-24 10:24:20 -04002173 ret = 0;
Yan Zheng7237f182009-01-21 12:54:03 -05002174
Chris Mason257c62e2009-10-13 13:21:08 -04002175 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 Mason12fcfd22009-03-24 10:24:20 -04002180out_wake_log_root:
Yan Zheng7237f182009-01-21 12:54:03 -05002181 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 Masone02119d2008-09-05 16:13:11 -04002185out:
Yan Zheng7237f182009-01-21 12:54:03 -05002186 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 Masonb31eabd2011-01-31 16:48:24 -05002190 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002191}
2192
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002193static void free_log_tree(struct btrfs_trans_handle *trans,
2194 struct btrfs_root *log)
Chris Masone02119d2008-09-05 16:13:11 -04002195{
2196 int ret;
Chris Masond0c803c2008-09-11 16:17:57 -04002197 u64 start;
2198 u64 end;
Chris Masone02119d2008-09-05 16:13:11 -04002199 struct walk_control wc = {
2200 .free = 1,
2201 .process_func = process_one_buffer
2202 };
2203
Chris Masone02119d2008-09-05 16:13:11 -04002204 ret = walk_log_tree(trans, log, &wc);
2205 BUG_ON(ret);
2206
Chris Masond3977122009-01-05 21:25:51 -05002207 while (1) {
Chris Masond0c803c2008-09-11 16:17:57 -04002208 ret = find_first_extent_bit(&log->dirty_log_pages,
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002209 0, &start, &end, EXTENT_DIRTY | EXTENT_NEW);
Chris Masond0c803c2008-09-11 16:17:57 -04002210 if (ret)
2211 break;
2212
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002213 clear_extent_bits(&log->dirty_log_pages, start, end,
2214 EXTENT_DIRTY | EXTENT_NEW, GFP_NOFS);
Chris Masond0c803c2008-09-11 16:17:57 -04002215 }
2216
Yan Zheng7237f182009-01-21 12:54:03 -05002217 free_extent_buffer(log->node);
2218 kfree(log);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002219}
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 */
2225int 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
2234int 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 Masone02119d2008-09-05 16:13:11 -04002241 return 0;
2242}
2243
2244/*
Chris Masone02119d2008-09-05 16:13:11 -04002245 * 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 */
2265int 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, Zheng4a500fd2010-05-16 10:49:59 -04002274 int err = 0;
Chris Masone02119d2008-09-05 16:13:11 -04002275 int bytes_del = 0;
Li Zefan33345d012011-04-20 10:31:50 +08002276 u64 dir_ino = btrfs_ino(dir);
Chris Masone02119d2008-09-05 16:13:11 -04002277
Chris Mason3a5f1d42008-09-11 15:53:37 -04002278 if (BTRFS_I(dir)->logged_trans < trans->transid)
2279 return 0;
2280
Chris Masone02119d2008-09-05 16:13:11 -04002281 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 Itoha62f44a2011-04-25 19:43:51 -04002289 if (!path) {
2290 err = -ENOMEM;
2291 goto out_unlock;
2292 }
liubo2a29edc2011-01-26 06:22:08 +00002293
Li Zefan33345d012011-04-20 10:31:50 +08002294 di = btrfs_lookup_dir_item(trans, log, path, dir_ino,
Chris Masone02119d2008-09-05 16:13:11 -04002295 name, name_len, -1);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002296 if (IS_ERR(di)) {
2297 err = PTR_ERR(di);
2298 goto fail;
2299 }
2300 if (di) {
Chris Masone02119d2008-09-05 16:13:11 -04002301 ret = btrfs_delete_one_dir_name(trans, log, path, di);
2302 bytes_del += name_len;
2303 BUG_ON(ret);
2304 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002305 btrfs_release_path(path);
Li Zefan33345d012011-04-20 10:31:50 +08002306 di = btrfs_lookup_dir_index_item(trans, log, path, dir_ino,
Chris Masone02119d2008-09-05 16:13:11 -04002307 index, name, name_len, -1);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002308 if (IS_ERR(di)) {
2309 err = PTR_ERR(di);
2310 goto fail;
2311 }
2312 if (di) {
Chris Masone02119d2008-09-05 16:13:11 -04002313 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 Zefan33345d012011-04-20 10:31:50 +08002324 key.objectid = dir_ino;
Chris Masone02119d2008-09-05 16:13:11 -04002325 key.offset = 0;
2326 key.type = BTRFS_INODE_ITEM_KEY;
David Sterbab3b4aa72011-04-21 01:20:15 +02002327 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002328
2329 ret = btrfs_search_slot(trans, log, &key, path, 0, 1);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002330 if (ret < 0) {
2331 err = ret;
2332 goto fail;
2333 }
Chris Masone02119d2008-09-05 16:13:11 -04002334 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 Sterbab3b4aa72011-04-21 01:20:15 +02002349 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002350 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002351fail:
Chris Masone02119d2008-09-05 16:13:11 -04002352 btrfs_free_path(path);
Tsutomu Itoha62f44a2011-04-25 19:43:51 -04002353out_unlock:
Chris Masone02119d2008-09-05 16:13:11 -04002354 mutex_unlock(&BTRFS_I(dir)->log_mutex);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002355 if (ret == -ENOSPC) {
2356 root->fs_info->last_trans_log_full_commit = trans->transid;
2357 ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002358 } else if (ret < 0)
2359 btrfs_abort_transaction(trans, root, ret);
2360
Chris Mason12fcfd22009-03-24 10:24:20 -04002361 btrfs_end_log_trans(root);
Chris Masone02119d2008-09-05 16:13:11 -04002362
Andi Kleen411fc6b2010-10-29 15:14:31 -04002363 return err;
Chris Masone02119d2008-09-05 16:13:11 -04002364}
2365
2366/* see comments for btrfs_del_dir_entries_in_log */
2367int 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 Mason3a5f1d42008-09-11 15:53:37 -04002376 if (BTRFS_I(inode)->logged_trans < trans->transid)
2377 return 0;
2378
Chris Masone02119d2008-09-05 16:13:11 -04002379 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 Zefan33345d012011-04-20 10:31:50 +08002385 ret = btrfs_del_inode_ref(trans, log, name, name_len, btrfs_ino(inode),
Chris Masone02119d2008-09-05 16:13:11 -04002386 dirid, &index);
2387 mutex_unlock(&BTRFS_I(inode)->log_mutex);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002388 if (ret == -ENOSPC) {
2389 root->fs_info->last_trans_log_full_commit = trans->transid;
2390 ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002391 } else if (ret < 0 && ret != -ENOENT)
2392 btrfs_abort_transaction(trans, root, ret);
Chris Mason12fcfd22009-03-24 10:24:20 -04002393 btrfs_end_log_trans(root);
Chris Masone02119d2008-09-05 16:13:11 -04002394
Chris Masone02119d2008-09-05 16:13:11 -04002395 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 */
2403static 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, Zheng4a500fd2010-05-16 10:49:59 -04002420 if (ret)
2421 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002422
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 Sterbab3b4aa72011-04-21 01:20:15 +02002427 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002428 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 */
2436static 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, Zheng4a500fd2010-05-16 10:49:59 -04002446 int err = 0;
Chris Masone02119d2008-09-05 16:13:11 -04002447 int ret;
2448 int i;
2449 int nritems;
2450 u64 first_offset = min_offset;
2451 u64 last_offset = (u64)-1;
Li Zefan33345d012011-04-20 10:31:50 +08002452 u64 ino = btrfs_ino(inode);
Chris Masone02119d2008-09-05 16:13:11 -04002453
2454 log = root->log_root;
Li Zefan33345d012011-04-20 10:31:50 +08002455 max_key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04002456 max_key.offset = (u64)-1;
2457 max_key.type = key_type;
2458
Li Zefan33345d012011-04-20 10:31:50 +08002459 min_key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04002460 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 Zefan33345d012011-04-20 10:31:50 +08002472 if (ret != 0 || min_key.objectid != ino || min_key.type != key_type) {
2473 min_key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04002474 min_key.type = key_type;
2475 min_key.offset = (u64)-1;
David Sterbab3b4aa72011-04-21 01:20:15 +02002476 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002477 ret = btrfs_search_slot(NULL, root, &min_key, path, 0, 0);
2478 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02002479 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002480 return ret;
2481 }
Li Zefan33345d012011-04-20 10:31:50 +08002482 ret = btrfs_previous_item(root, path, ino, key_type);
Chris Masone02119d2008-09-05 16:13:11 -04002483
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 Masond3977122009-01-05 21:25:51 -05002493 if (key_type == tmp.type)
Chris Masone02119d2008-09-05 16:13:11 -04002494 first_offset = max(min_offset, tmp.offset) + 1;
Chris Masone02119d2008-09-05 16:13:11 -04002495 }
2496 goto done;
2497 }
2498
2499 /* go backward to find any previous key */
Li Zefan33345d012011-04-20 10:31:50 +08002500 ret = btrfs_previous_item(root, path, ino, key_type);
Chris Masone02119d2008-09-05 16:13:11 -04002501 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, Zheng4a500fd2010-05-16 10:49:59 -04002509 if (ret) {
2510 err = ret;
2511 goto done;
2512 }
Chris Masone02119d2008-09-05 16:13:11 -04002513 }
2514 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002515 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002516
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 Masond3977122009-01-05 21:25:51 -05002528 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04002529 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 Zefan33345d012011-04-20 10:31:50 +08002535 if (min_key.objectid != ino || min_key.type != key_type)
Chris Masone02119d2008-09-05 16:13:11 -04002536 goto done;
2537 ret = overwrite_item(trans, log, dst_path, src, i,
2538 &min_key);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002539 if (ret) {
2540 err = ret;
2541 goto done;
2542 }
Chris Masone02119d2008-09-05 16:13:11 -04002543 }
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 Zefan33345d012011-04-20 10:31:50 +08002556 if (tmp.objectid != ino || tmp.type != key_type) {
Chris Masone02119d2008-09-05 16:13:11 -04002557 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, Zheng4a500fd2010-05-16 10:49:59 -04002564 if (ret)
2565 err = ret;
2566 else
2567 last_offset = tmp.offset;
Chris Masone02119d2008-09-05 16:13:11 -04002568 goto done;
2569 }
2570 }
2571done:
David Sterbab3b4aa72011-04-21 01:20:15 +02002572 btrfs_release_path(path);
2573 btrfs_release_path(dst_path);
Chris Masone02119d2008-09-05 16:13:11 -04002574
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002575 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 Zefan33345d012011-04-20 10:31:50 +08002582 ino, first_offset, last_offset);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002583 if (ret)
2584 err = ret;
2585 }
2586 return err;
Chris Masone02119d2008-09-05 16:13:11 -04002587}
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 */
2601static 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
2611again:
2612 min_key = 0;
2613 max_key = 0;
Chris Masond3977122009-01-05 21:25:51 -05002614 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04002615 ret = log_dir_items(trans, root, inode, path,
2616 dst_path, key_type, min_key,
2617 &max_key);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002618 if (ret)
2619 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002620 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 */
2638static 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 Masond3977122009-01-05 21:25:51 -05002651 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04002652 ret = btrfs_search_slot(trans, log, &key, path, -1, 1);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002653 BUG_ON(ret == 0);
2654 if (ret < 0)
Chris Masone02119d2008-09-05 16:13:11 -04002655 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 Itoh65a246c2011-05-19 04:37:44 +00002668 if (ret)
2669 break;
David Sterbab3b4aa72011-04-21 01:20:15 +02002670 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002671 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002672 btrfs_release_path(path);
Josef Bacik5bdbeb22012-05-29 16:59:49 -04002673 if (ret > 0)
2674 ret = 0;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002675 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002676}
2677
Chris Mason31ff1cd2008-09-11 16:17:57 -04002678static noinline int copy_items(struct btrfs_trans_handle *trans,
Liu Bod2794402012-08-29 01:07:56 -06002679 struct inode *inode,
Chris Mason31ff1cd2008-09-11 16:17:57 -04002680 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 Bod2794402012-08-29 01:07:56 -06002686 struct btrfs_root *log = BTRFS_I(inode)->root->log_root;
Chris Mason31ff1cd2008-09-11 16:17:57 -04002687 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 Masond20f7042008-12-08 16:58:54 -05002694 struct list_head ordered_sums;
Liu Bod2794402012-08-29 01:07:56 -06002695 int skip_csum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masond20f7042008-12-08 16:58:54 -05002696
2697 INIT_LIST_HEAD(&ordered_sums);
Chris Mason31ff1cd2008-09-11 16:17:57 -04002698
2699 ins_data = kmalloc(nr * sizeof(struct btrfs_key) +
2700 nr * sizeof(u32), GFP_NOFS);
liubo2a29edc2011-01-26 06:22:08 +00002701 if (!ins_data)
2702 return -ENOMEM;
2703
Chris Mason31ff1cd2008-09-11 16:17:57 -04002704 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, Zheng4a500fd2010-05-16 10:49:59 -04002713 if (ret) {
2714 kfree(ins_data);
2715 return ret;
2716 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04002717
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002718 for (i = 0; i < nr; i++, dst_path->slots[0]++) {
Chris Mason31ff1cd2008-09-11 16:17:57 -04002719 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 Bod2794402012-08-29 01:07:56 -06002746 if (btrfs_key_type(ins_keys + i) == BTRFS_EXTENT_DATA_KEY &&
2747 !skip_csum) {
Chris Mason31ff1cd2008-09-11 16:17:57 -04002748 int found_type;
2749 extent = btrfs_item_ptr(src, start_slot + i,
2750 struct btrfs_file_extent_item);
2751
liubo8e531cd2011-05-06 10:36:09 +08002752 if (btrfs_file_extent_generation(src, extent) < trans->transid)
2753 continue;
2754
Chris Mason31ff1cd2008-09-11 16:17:57 -04002755 found_type = btrfs_file_extent_type(src, extent);
Yan Zhengd899e052008-10-30 14:25:28 -04002756 if (found_type == BTRFS_FILE_EXTENT_REG ||
2757 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002758 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 Perchesa419aef2009-08-18 11:18:35 -07002769 extent);
Chris Mason580afd72008-12-08 19:15:39 -05002770 if (btrfs_file_extent_compression(src,
2771 extent)) {
2772 cs = 0;
2773 cl = dl;
2774 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002775
2776 ret = btrfs_lookup_csums_range(
2777 log->fs_info->csum_root,
2778 ds + cs, ds + cs + cl - 1,
Arne Jansena2de7332011-03-08 14:14:00 +01002779 &ordered_sums, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002780 BUG_ON(ret);
Chris Mason31ff1cd2008-09-11 16:17:57 -04002781 }
2782 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04002783 }
2784
2785 btrfs_mark_buffer_dirty(dst_path->nodes[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02002786 btrfs_release_path(dst_path);
Chris Mason31ff1cd2008-09-11 16:17:57 -04002787 kfree(ins_data);
Chris Masond20f7042008-12-08 16:58:54 -05002788
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, Zheng4a500fd2010-05-16 10:49:59 -04002793 ret = 0;
Chris Masond3977122009-01-05 21:25:51 -05002794 while (!list_empty(&ordered_sums)) {
Chris Masond20f7042008-12-08 16:58:54 -05002795 struct btrfs_ordered_sum *sums = list_entry(ordered_sums.next,
2796 struct btrfs_ordered_sum,
2797 list);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002798 if (!ret)
2799 ret = btrfs_csum_file_blocks(trans, log, sums);
Chris Masond20f7042008-12-08 16:58:54 -05002800 list_del(&sums->list);
2801 kfree(sums);
2802 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002803 return ret;
Chris Mason31ff1cd2008-09-11 16:17:57 -04002804}
2805
Josef Bacik5dc562c2012-08-17 13:14:17 -04002806static 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
2820struct log_args {
2821 struct extent_buffer *src;
2822 u64 next_offset;
2823 int start_slot;
2824 int nr;
2825};
2826
2827static 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 Bo4e2f84e2012-08-27 10:52:20 -06002835 u64 start = em->mod_start;
2836 u64 len = em->mod_len;
Josef Bacik5dc562c2012-08-17 13:14:17 -04002837 u64 num_bytes;
2838 int nritems;
2839 int ret;
2840
2841 if (BTRFS_I(inode)->logged_trans == trans->transid) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04002842 ret = __btrfs_drop_extents(trans, log, inode, dst_path, start,
Josef Bacik2aaa6652012-08-29 14:27:18 -04002843 start + len, NULL, 0);
Josef Bacik5dc562c2012-08-17 13:14:17 -04002844 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];
2867next_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 Bod2794402012-08-29 01:07:56 -06002874 ret = copy_items(trans, inode, dst_path, args->src,
Josef Bacik5dc562c2012-08-17 13:14:17 -04002875 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 Bod2794402012-08-29 01:07:56 -06002911 ret = copy_items(trans, inode, dst_path, args->src,
Josef Bacik5dc562c2012-08-17 13:14:17 -04002912 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
2924static 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 Bacik5dc562c2012-08-17 13:14:17 -04002931 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;
Josef Bacikff44c6e2012-09-14 12:59:20 -04002948 /* Need a ref to keep it from getting evicted from cache */
2949 atomic_inc(&em->refs);
2950 set_bit(EXTENT_FLAG_LOGGING, &em->flags);
Josef Bacik5dc562c2012-08-17 13:14:17 -04002951 list_add_tail(&em->list, &extents);
2952 }
2953
2954 list_sort(NULL, &extents, extent_cmp);
2955
2956 while (!list_empty(&extents)) {
2957 em = list_entry(extents.next, struct extent_map, list);
2958
2959 list_del_init(&em->list);
Josef Bacikff44c6e2012-09-14 12:59:20 -04002960 clear_bit(EXTENT_FLAG_LOGGING, &em->flags);
Josef Bacik5dc562c2012-08-17 13:14:17 -04002961
2962 /*
2963 * If we had an error we just need to delete everybody from our
2964 * private list.
2965 */
Josef Bacikff44c6e2012-09-14 12:59:20 -04002966 if (ret) {
2967 free_extent_map(em);
Josef Bacik5dc562c2012-08-17 13:14:17 -04002968 continue;
Josef Bacikff44c6e2012-09-14 12:59:20 -04002969 }
2970
2971 write_unlock(&tree->lock);
Josef Bacik5dc562c2012-08-17 13:14:17 -04002972
2973 /*
2974 * If the previous EM and the last extent we left off on aren't
2975 * sequential then we need to copy the items we have and redo
2976 * our search
2977 */
Liu Bo4e2f84e2012-08-27 10:52:20 -06002978 if (args.nr && em->mod_start != args.next_offset) {
Liu Bod2794402012-08-29 01:07:56 -06002979 ret = copy_items(trans, inode, dst_path, args.src,
Josef Bacik5dc562c2012-08-17 13:14:17 -04002980 args.start_slot, args.nr,
2981 LOG_INODE_ALL);
Josef Bacikff44c6e2012-09-14 12:59:20 -04002982 if (ret) {
2983 free_extent_map(em);
2984 write_lock(&tree->lock);
Josef Bacik5dc562c2012-08-17 13:14:17 -04002985 continue;
Josef Bacikff44c6e2012-09-14 12:59:20 -04002986 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04002987 btrfs_release_path(path);
2988 args.nr = 0;
2989 }
2990
2991 ret = log_one_extent(trans, inode, root, em, path, dst_path, &args);
Josef Bacikff44c6e2012-09-14 12:59:20 -04002992 free_extent_map(em);
2993 write_lock(&tree->lock);
Josef Bacik5dc562c2012-08-17 13:14:17 -04002994 }
Josef Bacikff44c6e2012-09-14 12:59:20 -04002995 WARN_ON(!list_empty(&extents));
2996 write_unlock(&tree->lock);
Josef Bacik5dc562c2012-08-17 13:14:17 -04002997
2998 if (!ret && args.nr)
Liu Bod2794402012-08-29 01:07:56 -06002999 ret = copy_items(trans, inode, dst_path, args.src,
Josef Bacik5dc562c2012-08-17 13:14:17 -04003000 args.start_slot, args.nr, LOG_INODE_ALL);
3001 btrfs_release_path(path);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003002 return ret;
3003}
3004
Chris Masone02119d2008-09-05 16:13:11 -04003005/* log a single inode in the tree log.
3006 * At least one parent directory for this inode must exist in the tree
3007 * or be logged already.
3008 *
3009 * Any items from this inode changed by the current transaction are copied
3010 * to the log tree. An extra reference is taken on any extents in this
3011 * file, allowing us to avoid a whole pile of corner cases around logging
3012 * blocks that have been removed from the tree.
3013 *
3014 * See LOG_INODE_ALL and related defines for a description of what inode_only
3015 * does.
3016 *
3017 * This handles both files and directories.
3018 */
Chris Mason12fcfd22009-03-24 10:24:20 -04003019static int btrfs_log_inode(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -04003020 struct btrfs_root *root, struct inode *inode,
3021 int inode_only)
3022{
3023 struct btrfs_path *path;
3024 struct btrfs_path *dst_path;
3025 struct btrfs_key min_key;
3026 struct btrfs_key max_key;
3027 struct btrfs_root *log = root->log_root;
Chris Mason31ff1cd2008-09-11 16:17:57 -04003028 struct extent_buffer *src = NULL;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003029 int err = 0;
Chris Masone02119d2008-09-05 16:13:11 -04003030 int ret;
Chris Mason3a5f1d42008-09-11 15:53:37 -04003031 int nritems;
Chris Mason31ff1cd2008-09-11 16:17:57 -04003032 int ins_start_slot = 0;
3033 int ins_nr;
Josef Bacik5dc562c2012-08-17 13:14:17 -04003034 bool fast_search = false;
Li Zefan33345d012011-04-20 10:31:50 +08003035 u64 ino = btrfs_ino(inode);
Chris Masone02119d2008-09-05 16:13:11 -04003036
3037 log = root->log_root;
3038
3039 path = btrfs_alloc_path();
Tsutomu Itoh5df67082011-02-01 09:17:35 +00003040 if (!path)
3041 return -ENOMEM;
Chris Masone02119d2008-09-05 16:13:11 -04003042 dst_path = btrfs_alloc_path();
Tsutomu Itoh5df67082011-02-01 09:17:35 +00003043 if (!dst_path) {
3044 btrfs_free_path(path);
3045 return -ENOMEM;
3046 }
Chris Masone02119d2008-09-05 16:13:11 -04003047
Li Zefan33345d012011-04-20 10:31:50 +08003048 min_key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04003049 min_key.type = BTRFS_INODE_ITEM_KEY;
3050 min_key.offset = 0;
3051
Li Zefan33345d012011-04-20 10:31:50 +08003052 max_key.objectid = ino;
Chris Mason12fcfd22009-03-24 10:24:20 -04003053
Chris Mason12fcfd22009-03-24 10:24:20 -04003054
Josef Bacik5dc562c2012-08-17 13:14:17 -04003055 /* today the code can only do partial logging of directories */
Chris Masone02119d2008-09-05 16:13:11 -04003056 if (inode_only == LOG_INODE_EXISTS || S_ISDIR(inode->i_mode))
3057 max_key.type = BTRFS_XATTR_ITEM_KEY;
3058 else
3059 max_key.type = (u8)-1;
3060 max_key.offset = (u64)-1;
3061
Miao Xie16cdcec2011-04-22 18:12:22 +08003062 ret = btrfs_commit_inode_delayed_items(trans, inode);
3063 if (ret) {
3064 btrfs_free_path(path);
3065 btrfs_free_path(dst_path);
3066 return ret;
3067 }
3068
Chris Masone02119d2008-09-05 16:13:11 -04003069 mutex_lock(&BTRFS_I(inode)->log_mutex);
3070
3071 /*
3072 * a brute force approach to making sure we get the most uptodate
3073 * copies of everything.
3074 */
3075 if (S_ISDIR(inode->i_mode)) {
3076 int max_key_type = BTRFS_DIR_LOG_INDEX_KEY;
3077
3078 if (inode_only == LOG_INODE_EXISTS)
3079 max_key_type = BTRFS_XATTR_ITEM_KEY;
Li Zefan33345d012011-04-20 10:31:50 +08003080 ret = drop_objectid_items(trans, log, path, ino, max_key_type);
Chris Masone02119d2008-09-05 16:13:11 -04003081 } else {
Josef Bacik5dc562c2012-08-17 13:14:17 -04003082 if (test_and_clear_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3083 &BTRFS_I(inode)->runtime_flags)) {
3084 ret = btrfs_truncate_inode_items(trans, log,
3085 inode, 0, 0);
3086 } else {
3087 fast_search = true;
3088 max_key.type = BTRFS_XATTR_ITEM_KEY;
3089 ret = drop_objectid_items(trans, log, path, ino,
3090 BTRFS_XATTR_ITEM_KEY);
3091 }
Chris Masone02119d2008-09-05 16:13:11 -04003092 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003093 if (ret) {
3094 err = ret;
3095 goto out_unlock;
3096 }
Chris Masone02119d2008-09-05 16:13:11 -04003097 path->keep_locks = 1;
3098
Chris Masond3977122009-01-05 21:25:51 -05003099 while (1) {
Chris Mason31ff1cd2008-09-11 16:17:57 -04003100 ins_nr = 0;
Chris Masone02119d2008-09-05 16:13:11 -04003101 ret = btrfs_search_forward(root, &min_key, &max_key,
3102 path, 0, trans->transid);
3103 if (ret != 0)
3104 break;
Chris Mason3a5f1d42008-09-11 15:53:37 -04003105again:
Chris Mason31ff1cd2008-09-11 16:17:57 -04003106 /* note, ins_nr might be > 0 here, cleanup outside the loop */
Li Zefan33345d012011-04-20 10:31:50 +08003107 if (min_key.objectid != ino)
Chris Masone02119d2008-09-05 16:13:11 -04003108 break;
3109 if (min_key.type > max_key.type)
3110 break;
Chris Mason31ff1cd2008-09-11 16:17:57 -04003111
Chris Masone02119d2008-09-05 16:13:11 -04003112 src = path->nodes[0];
Chris Mason31ff1cd2008-09-11 16:17:57 -04003113 if (ins_nr && ins_start_slot + ins_nr == path->slots[0]) {
3114 ins_nr++;
3115 goto next_slot;
3116 } else if (!ins_nr) {
3117 ins_start_slot = path->slots[0];
3118 ins_nr = 1;
3119 goto next_slot;
Chris Masone02119d2008-09-05 16:13:11 -04003120 }
3121
Liu Bod2794402012-08-29 01:07:56 -06003122 ret = copy_items(trans, inode, dst_path, src, ins_start_slot,
Chris Mason31ff1cd2008-09-11 16:17:57 -04003123 ins_nr, inode_only);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003124 if (ret) {
3125 err = ret;
3126 goto out_unlock;
3127 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04003128 ins_nr = 1;
3129 ins_start_slot = path->slots[0];
3130next_slot:
Chris Masone02119d2008-09-05 16:13:11 -04003131
Chris Mason3a5f1d42008-09-11 15:53:37 -04003132 nritems = btrfs_header_nritems(path->nodes[0]);
3133 path->slots[0]++;
3134 if (path->slots[0] < nritems) {
3135 btrfs_item_key_to_cpu(path->nodes[0], &min_key,
3136 path->slots[0]);
3137 goto again;
3138 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04003139 if (ins_nr) {
Liu Bod2794402012-08-29 01:07:56 -06003140 ret = copy_items(trans, inode, dst_path, src,
Chris Mason31ff1cd2008-09-11 16:17:57 -04003141 ins_start_slot,
3142 ins_nr, inode_only);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003143 if (ret) {
3144 err = ret;
3145 goto out_unlock;
3146 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04003147 ins_nr = 0;
3148 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003149 btrfs_release_path(path);
Chris Mason3a5f1d42008-09-11 15:53:37 -04003150
Chris Masone02119d2008-09-05 16:13:11 -04003151 if (min_key.offset < (u64)-1)
3152 min_key.offset++;
3153 else if (min_key.type < (u8)-1)
3154 min_key.type++;
3155 else if (min_key.objectid < (u64)-1)
3156 min_key.objectid++;
3157 else
3158 break;
3159 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04003160 if (ins_nr) {
Liu Bod2794402012-08-29 01:07:56 -06003161 ret = copy_items(trans, inode, dst_path, src, ins_start_slot,
Chris Mason31ff1cd2008-09-11 16:17:57 -04003162 ins_nr, inode_only);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003163 if (ret) {
3164 err = ret;
3165 goto out_unlock;
3166 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04003167 ins_nr = 0;
3168 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04003169
3170 if (fast_search) {
3171 btrfs_release_path(path);
3172 btrfs_release_path(dst_path);
3173 ret = btrfs_log_changed_extents(trans, root, inode, path,
3174 dst_path);
3175 if (ret) {
3176 err = ret;
3177 goto out_unlock;
3178 }
Liu Bo06d3d222012-08-27 10:52:19 -06003179 } else {
3180 struct extent_map_tree *tree = &BTRFS_I(inode)->extent_tree;
3181 struct extent_map *em, *n;
3182
3183 list_for_each_entry_safe(em, n, &tree->modified_extents, list)
3184 list_del_init(&em->list);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003185 }
3186
Chris Mason9623f9a2008-09-11 17:42:42 -04003187 if (inode_only == LOG_INODE_ALL && S_ISDIR(inode->i_mode)) {
David Sterbab3b4aa72011-04-21 01:20:15 +02003188 btrfs_release_path(path);
3189 btrfs_release_path(dst_path);
Chris Masone02119d2008-09-05 16:13:11 -04003190 ret = log_directory_changes(trans, root, inode, path, dst_path);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003191 if (ret) {
3192 err = ret;
3193 goto out_unlock;
3194 }
Chris Masone02119d2008-09-05 16:13:11 -04003195 }
Chris Mason3a5f1d42008-09-11 15:53:37 -04003196 BTRFS_I(inode)->logged_trans = trans->transid;
Liu Bo46d8bc32012-08-29 01:07:55 -06003197 BTRFS_I(inode)->last_log_commit = BTRFS_I(inode)->last_sub_trans;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003198out_unlock:
Chris Masone02119d2008-09-05 16:13:11 -04003199 mutex_unlock(&BTRFS_I(inode)->log_mutex);
3200
3201 btrfs_free_path(path);
3202 btrfs_free_path(dst_path);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003203 return err;
Chris Masone02119d2008-09-05 16:13:11 -04003204}
3205
Chris Mason12fcfd22009-03-24 10:24:20 -04003206/*
3207 * follow the dentry parent pointers up the chain and see if any
3208 * of the directories in it require a full commit before they can
3209 * be logged. Returns zero if nothing special needs to be done or 1 if
3210 * a full commit is required.
3211 */
3212static noinline int check_parent_dirs_for_sync(struct btrfs_trans_handle *trans,
3213 struct inode *inode,
3214 struct dentry *parent,
3215 struct super_block *sb,
3216 u64 last_committed)
Chris Masone02119d2008-09-05 16:13:11 -04003217{
Chris Mason12fcfd22009-03-24 10:24:20 -04003218 int ret = 0;
3219 struct btrfs_root *root;
Josef Bacik6a912212010-11-20 09:48:00 +00003220 struct dentry *old_parent = NULL;
Chris Masone02119d2008-09-05 16:13:11 -04003221
Chris Masonaf4176b2009-03-24 10:24:31 -04003222 /*
3223 * for regular files, if its inode is already on disk, we don't
3224 * have to worry about the parents at all. This is because
3225 * we can use the last_unlink_trans field to record renames
3226 * and other fun in this file.
3227 */
3228 if (S_ISREG(inode->i_mode) &&
3229 BTRFS_I(inode)->generation <= last_committed &&
3230 BTRFS_I(inode)->last_unlink_trans <= last_committed)
3231 goto out;
3232
Chris Mason12fcfd22009-03-24 10:24:20 -04003233 if (!S_ISDIR(inode->i_mode)) {
3234 if (!parent || !parent->d_inode || sb != parent->d_inode->i_sb)
3235 goto out;
3236 inode = parent->d_inode;
3237 }
3238
3239 while (1) {
3240 BTRFS_I(inode)->logged_trans = trans->transid;
3241 smp_mb();
3242
3243 if (BTRFS_I(inode)->last_unlink_trans > last_committed) {
3244 root = BTRFS_I(inode)->root;
3245
3246 /*
3247 * make sure any commits to the log are forced
3248 * to be full commits
3249 */
3250 root->fs_info->last_trans_log_full_commit =
3251 trans->transid;
3252 ret = 1;
3253 break;
3254 }
3255
3256 if (!parent || !parent->d_inode || sb != parent->d_inode->i_sb)
3257 break;
3258
Yan, Zheng76dda932009-09-21 16:00:26 -04003259 if (IS_ROOT(parent))
Chris Mason12fcfd22009-03-24 10:24:20 -04003260 break;
3261
Josef Bacik6a912212010-11-20 09:48:00 +00003262 parent = dget_parent(parent);
3263 dput(old_parent);
3264 old_parent = parent;
Chris Mason12fcfd22009-03-24 10:24:20 -04003265 inode = parent->d_inode;
3266
3267 }
Josef Bacik6a912212010-11-20 09:48:00 +00003268 dput(old_parent);
Chris Mason12fcfd22009-03-24 10:24:20 -04003269out:
Chris Masone02119d2008-09-05 16:13:11 -04003270 return ret;
3271}
3272
3273/*
3274 * helper function around btrfs_log_inode to make sure newly created
3275 * parent directories also end up in the log. A minimal inode and backref
3276 * only logging is done of any parent directories that are older than
3277 * the last committed transaction
3278 */
Chris Mason12fcfd22009-03-24 10:24:20 -04003279int btrfs_log_inode_parent(struct btrfs_trans_handle *trans,
3280 struct btrfs_root *root, struct inode *inode,
3281 struct dentry *parent, int exists_only)
Chris Masone02119d2008-09-05 16:13:11 -04003282{
Chris Mason12fcfd22009-03-24 10:24:20 -04003283 int inode_only = exists_only ? LOG_INODE_EXISTS : LOG_INODE_ALL;
Chris Masone02119d2008-09-05 16:13:11 -04003284 struct super_block *sb;
Josef Bacik6a912212010-11-20 09:48:00 +00003285 struct dentry *old_parent = NULL;
Chris Mason12fcfd22009-03-24 10:24:20 -04003286 int ret = 0;
3287 u64 last_committed = root->fs_info->last_trans_committed;
3288
3289 sb = inode->i_sb;
3290
Sage Weil3a5e1402009-04-02 16:49:40 -04003291 if (btrfs_test_opt(root, NOTREELOG)) {
3292 ret = 1;
3293 goto end_no_trans;
3294 }
3295
Chris Mason12fcfd22009-03-24 10:24:20 -04003296 if (root->fs_info->last_trans_log_full_commit >
3297 root->fs_info->last_trans_committed) {
3298 ret = 1;
3299 goto end_no_trans;
3300 }
3301
Yan, Zheng76dda932009-09-21 16:00:26 -04003302 if (root != BTRFS_I(inode)->root ||
3303 btrfs_root_refs(&root->root_item) == 0) {
3304 ret = 1;
3305 goto end_no_trans;
3306 }
3307
Chris Mason12fcfd22009-03-24 10:24:20 -04003308 ret = check_parent_dirs_for_sync(trans, inode, parent,
3309 sb, last_committed);
3310 if (ret)
3311 goto end_no_trans;
Chris Masone02119d2008-09-05 16:13:11 -04003312
Josef Bacik22ee6982012-05-29 16:57:49 -04003313 if (btrfs_inode_in_log(inode, trans->transid)) {
Chris Mason257c62e2009-10-13 13:21:08 -04003314 ret = BTRFS_NO_LOG_SYNC;
3315 goto end_no_trans;
3316 }
3317
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003318 ret = start_log_trans(trans, root);
3319 if (ret)
3320 goto end_trans;
Chris Mason12fcfd22009-03-24 10:24:20 -04003321
3322 ret = btrfs_log_inode(trans, root, inode, inode_only);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003323 if (ret)
3324 goto end_trans;
Chris Mason12fcfd22009-03-24 10:24:20 -04003325
Chris Masonaf4176b2009-03-24 10:24:31 -04003326 /*
3327 * for regular files, if its inode is already on disk, we don't
3328 * have to worry about the parents at all. This is because
3329 * we can use the last_unlink_trans field to record renames
3330 * and other fun in this file.
3331 */
3332 if (S_ISREG(inode->i_mode) &&
3333 BTRFS_I(inode)->generation <= last_committed &&
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003334 BTRFS_I(inode)->last_unlink_trans <= last_committed) {
3335 ret = 0;
3336 goto end_trans;
3337 }
Chris Masonaf4176b2009-03-24 10:24:31 -04003338
3339 inode_only = LOG_INODE_EXISTS;
Chris Masond3977122009-01-05 21:25:51 -05003340 while (1) {
Chris Mason12fcfd22009-03-24 10:24:20 -04003341 if (!parent || !parent->d_inode || sb != parent->d_inode->i_sb)
Chris Masone02119d2008-09-05 16:13:11 -04003342 break;
3343
Chris Mason12fcfd22009-03-24 10:24:20 -04003344 inode = parent->d_inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04003345 if (root != BTRFS_I(inode)->root)
3346 break;
3347
Chris Mason12fcfd22009-03-24 10:24:20 -04003348 if (BTRFS_I(inode)->generation >
3349 root->fs_info->last_trans_committed) {
3350 ret = btrfs_log_inode(trans, root, inode, inode_only);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003351 if (ret)
3352 goto end_trans;
Chris Mason12fcfd22009-03-24 10:24:20 -04003353 }
Yan, Zheng76dda932009-09-21 16:00:26 -04003354 if (IS_ROOT(parent))
Chris Masone02119d2008-09-05 16:13:11 -04003355 break;
Chris Mason12fcfd22009-03-24 10:24:20 -04003356
Josef Bacik6a912212010-11-20 09:48:00 +00003357 parent = dget_parent(parent);
3358 dput(old_parent);
3359 old_parent = parent;
Chris Masone02119d2008-09-05 16:13:11 -04003360 }
Chris Mason12fcfd22009-03-24 10:24:20 -04003361 ret = 0;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003362end_trans:
Josef Bacik6a912212010-11-20 09:48:00 +00003363 dput(old_parent);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003364 if (ret < 0) {
Josef Bacik0fa83cd2012-08-24 14:48:11 -04003365 WARN_ON(ret != -ENOSPC);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003366 root->fs_info->last_trans_log_full_commit = trans->transid;
3367 ret = 1;
3368 }
Chris Mason12fcfd22009-03-24 10:24:20 -04003369 btrfs_end_log_trans(root);
3370end_no_trans:
3371 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04003372}
3373
3374/*
3375 * it is not safe to log dentry if the chunk root has added new
3376 * chunks. This returns 0 if the dentry was logged, and 1 otherwise.
3377 * If this returns 1, you must commit the transaction to safely get your
3378 * data on disk.
3379 */
3380int btrfs_log_dentry_safe(struct btrfs_trans_handle *trans,
3381 struct btrfs_root *root, struct dentry *dentry)
3382{
Josef Bacik6a912212010-11-20 09:48:00 +00003383 struct dentry *parent = dget_parent(dentry);
3384 int ret;
3385
3386 ret = btrfs_log_inode_parent(trans, root, dentry->d_inode, parent, 0);
3387 dput(parent);
3388
3389 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04003390}
3391
3392/*
3393 * should be called during mount to recover any replay any log trees
3394 * from the FS
3395 */
3396int btrfs_recover_log_trees(struct btrfs_root *log_root_tree)
3397{
3398 int ret;
3399 struct btrfs_path *path;
3400 struct btrfs_trans_handle *trans;
3401 struct btrfs_key key;
3402 struct btrfs_key found_key;
3403 struct btrfs_key tmp_key;
3404 struct btrfs_root *log;
3405 struct btrfs_fs_info *fs_info = log_root_tree->fs_info;
3406 struct walk_control wc = {
3407 .process_func = process_one_buffer,
3408 .stage = 0,
3409 };
3410
Chris Masone02119d2008-09-05 16:13:11 -04003411 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003412 if (!path)
3413 return -ENOMEM;
3414
3415 fs_info->log_root_recovering = 1;
Chris Masone02119d2008-09-05 16:13:11 -04003416
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003417 trans = btrfs_start_transaction(fs_info->tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003418 if (IS_ERR(trans)) {
3419 ret = PTR_ERR(trans);
3420 goto error;
3421 }
Chris Masone02119d2008-09-05 16:13:11 -04003422
3423 wc.trans = trans;
3424 wc.pin = 1;
3425
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003426 ret = walk_log_tree(trans, log_root_tree, &wc);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003427 if (ret) {
3428 btrfs_error(fs_info, ret, "Failed to pin buffers while "
3429 "recovering log root tree.");
3430 goto error;
3431 }
Chris Masone02119d2008-09-05 16:13:11 -04003432
3433again:
3434 key.objectid = BTRFS_TREE_LOG_OBJECTID;
3435 key.offset = (u64)-1;
3436 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
3437
Chris Masond3977122009-01-05 21:25:51 -05003438 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04003439 ret = btrfs_search_slot(NULL, log_root_tree, &key, path, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003440
3441 if (ret < 0) {
3442 btrfs_error(fs_info, ret,
3443 "Couldn't find tree log root.");
3444 goto error;
3445 }
Chris Masone02119d2008-09-05 16:13:11 -04003446 if (ret > 0) {
3447 if (path->slots[0] == 0)
3448 break;
3449 path->slots[0]--;
3450 }
3451 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
3452 path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02003453 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003454 if (found_key.objectid != BTRFS_TREE_LOG_OBJECTID)
3455 break;
3456
3457 log = btrfs_read_fs_root_no_radix(log_root_tree,
3458 &found_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003459 if (IS_ERR(log)) {
3460 ret = PTR_ERR(log);
3461 btrfs_error(fs_info, ret,
3462 "Couldn't read tree log root.");
3463 goto error;
3464 }
Chris Masone02119d2008-09-05 16:13:11 -04003465
3466 tmp_key.objectid = found_key.offset;
3467 tmp_key.type = BTRFS_ROOT_ITEM_KEY;
3468 tmp_key.offset = (u64)-1;
3469
3470 wc.replay_dest = btrfs_read_fs_root_no_name(fs_info, &tmp_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003471 if (IS_ERR(wc.replay_dest)) {
3472 ret = PTR_ERR(wc.replay_dest);
3473 btrfs_error(fs_info, ret, "Couldn't read target root "
3474 "for tree log recovery.");
3475 goto error;
3476 }
Chris Masone02119d2008-09-05 16:13:11 -04003477
Yan Zheng07d400a2009-01-06 11:42:00 -05003478 wc.replay_dest->log_root = log;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003479 btrfs_record_root_in_trans(trans, wc.replay_dest);
Chris Masone02119d2008-09-05 16:13:11 -04003480 ret = walk_log_tree(trans, log, &wc);
3481 BUG_ON(ret);
3482
3483 if (wc.stage == LOG_WALK_REPLAY_ALL) {
3484 ret = fixup_inode_link_counts(trans, wc.replay_dest,
3485 path);
3486 BUG_ON(ret);
3487 }
Chris Masone02119d2008-09-05 16:13:11 -04003488
3489 key.offset = found_key.offset - 1;
Yan Zheng07d400a2009-01-06 11:42:00 -05003490 wc.replay_dest->log_root = NULL;
Chris Masone02119d2008-09-05 16:13:11 -04003491 free_extent_buffer(log->node);
Chris Masonb263c2c2009-06-11 11:24:47 -04003492 free_extent_buffer(log->commit_root);
Chris Masone02119d2008-09-05 16:13:11 -04003493 kfree(log);
3494
3495 if (found_key.offset == 0)
3496 break;
3497 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003498 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003499
3500 /* step one is to pin it all, step two is to replay just inodes */
3501 if (wc.pin) {
3502 wc.pin = 0;
3503 wc.process_func = replay_one_buffer;
3504 wc.stage = LOG_WALK_REPLAY_INODES;
3505 goto again;
3506 }
3507 /* step three is to replay everything */
3508 if (wc.stage < LOG_WALK_REPLAY_ALL) {
3509 wc.stage++;
3510 goto again;
3511 }
3512
3513 btrfs_free_path(path);
3514
3515 free_extent_buffer(log_root_tree->node);
3516 log_root_tree->log_root = NULL;
3517 fs_info->log_root_recovering = 0;
3518
3519 /* step 4: commit the transaction, which also unpins the blocks */
3520 btrfs_commit_transaction(trans, fs_info->tree_root);
3521
3522 kfree(log_root_tree);
3523 return 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003524
3525error:
3526 btrfs_free_path(path);
3527 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04003528}
Chris Mason12fcfd22009-03-24 10:24:20 -04003529
3530/*
3531 * there are some corner cases where we want to force a full
3532 * commit instead of allowing a directory to be logged.
3533 *
3534 * They revolve around files there were unlinked from the directory, and
3535 * this function updates the parent directory so that a full commit is
3536 * properly done if it is fsync'd later after the unlinks are done.
3537 */
3538void btrfs_record_unlink_dir(struct btrfs_trans_handle *trans,
3539 struct inode *dir, struct inode *inode,
3540 int for_rename)
3541{
3542 /*
Chris Masonaf4176b2009-03-24 10:24:31 -04003543 * when we're logging a file, if it hasn't been renamed
3544 * or unlinked, and its inode is fully committed on disk,
3545 * we don't have to worry about walking up the directory chain
3546 * to log its parents.
3547 *
3548 * So, we use the last_unlink_trans field to put this transid
3549 * into the file. When the file is logged we check it and
3550 * don't log the parents if the file is fully on disk.
3551 */
3552 if (S_ISREG(inode->i_mode))
3553 BTRFS_I(inode)->last_unlink_trans = trans->transid;
3554
3555 /*
Chris Mason12fcfd22009-03-24 10:24:20 -04003556 * if this directory was already logged any new
3557 * names for this file/dir will get recorded
3558 */
3559 smp_mb();
3560 if (BTRFS_I(dir)->logged_trans == trans->transid)
3561 return;
3562
3563 /*
3564 * if the inode we're about to unlink was logged,
3565 * the log will be properly updated for any new names
3566 */
3567 if (BTRFS_I(inode)->logged_trans == trans->transid)
3568 return;
3569
3570 /*
3571 * when renaming files across directories, if the directory
3572 * there we're unlinking from gets fsync'd later on, there's
3573 * no way to find the destination directory later and fsync it
3574 * properly. So, we have to be conservative and force commits
3575 * so the new name gets discovered.
3576 */
3577 if (for_rename)
3578 goto record;
3579
3580 /* we can safely do the unlink without any special recording */
3581 return;
3582
3583record:
3584 BTRFS_I(dir)->last_unlink_trans = trans->transid;
3585}
3586
3587/*
3588 * Call this after adding a new name for a file and it will properly
3589 * update the log to reflect the new name.
3590 *
3591 * It will return zero if all goes well, and it will return 1 if a
3592 * full transaction commit is required.
3593 */
3594int btrfs_log_new_name(struct btrfs_trans_handle *trans,
3595 struct inode *inode, struct inode *old_dir,
3596 struct dentry *parent)
3597{
3598 struct btrfs_root * root = BTRFS_I(inode)->root;
3599
3600 /*
Chris Masonaf4176b2009-03-24 10:24:31 -04003601 * this will force the logging code to walk the dentry chain
3602 * up for the file
3603 */
3604 if (S_ISREG(inode->i_mode))
3605 BTRFS_I(inode)->last_unlink_trans = trans->transid;
3606
3607 /*
Chris Mason12fcfd22009-03-24 10:24:20 -04003608 * if this inode hasn't been logged and directory we're renaming it
3609 * from hasn't been logged, we don't need to log it
3610 */
3611 if (BTRFS_I(inode)->logged_trans <=
3612 root->fs_info->last_trans_committed &&
3613 (!old_dir || BTRFS_I(old_dir)->logged_trans <=
3614 root->fs_info->last_trans_committed))
3615 return 0;
3616
3617 return btrfs_log_inode_parent(trans, root, inode, parent, 1);
3618}
3619