blob: dce89da9c8635925f6c06f19d8c3f4ebb13d1c09 [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>
Chris Masone02119d2008-09-05 16:13:11 -040021#include "ctree.h"
22#include "transaction.h"
23#include "disk-io.h"
24#include "locking.h"
25#include "print-tree.h"
26#include "compat.h"
Christoph Hellwigb2950862008-12-02 09:54:17 -050027#include "tree-log.h"
Chris Masone02119d2008-09-05 16:13:11 -040028
29/* magic values for the inode_only field in btrfs_log_inode:
30 *
31 * LOG_INODE_ALL means to log everything
32 * LOG_INODE_EXISTS means to log just enough to recreate the inode
33 * during log replay
34 */
35#define LOG_INODE_ALL 0
36#define LOG_INODE_EXISTS 1
37
38/*
Chris Mason12fcfd22009-03-24 10:24:20 -040039 * directory trouble cases
40 *
41 * 1) on rename or unlink, if the inode being unlinked isn't in the fsync
42 * log, we must force a full commit before doing an fsync of the directory
43 * where the unlink was done.
44 * ---> record transid of last unlink/rename per directory
45 *
46 * mkdir foo/some_dir
47 * normal commit
48 * rename foo/some_dir foo2/some_dir
49 * mkdir foo/some_dir
50 * fsync foo/some_dir/some_file
51 *
52 * The fsync above will unlink the original some_dir without recording
53 * it in its new location (foo2). After a crash, some_dir will be gone
54 * unless the fsync of some_file forces a full commit
55 *
56 * 2) we must log any new names for any file or dir that is in the fsync
57 * log. ---> check inode while renaming/linking.
58 *
59 * 2a) we must log any new names for any file or dir during rename
60 * when the directory they are being removed from was logged.
61 * ---> check inode and old parent dir during rename
62 *
63 * 2a is actually the more important variant. With the extra logging
64 * a crash might unlink the old name without recreating the new one
65 *
66 * 3) after a crash, we must go through any directories with a link count
67 * of zero and redo the rm -rf
68 *
69 * mkdir f1/foo
70 * normal commit
71 * rm -rf f1/foo
72 * fsync(f1)
73 *
74 * The directory f1 was fully removed from the FS, but fsync was never
75 * called on f1, only its parent dir. After a crash the rm -rf must
76 * be replayed. This must be able to recurse down the entire
77 * directory tree. The inode link count fixup code takes care of the
78 * ugly details.
79 */
80
81/*
Chris Masone02119d2008-09-05 16:13:11 -040082 * stages for the tree walking. The first
83 * stage (0) is to only pin down the blocks we find
84 * the second stage (1) is to make sure that all the inodes
85 * we find in the log are created in the subvolume.
86 *
87 * The last stage is to deal with directories and links and extents
88 * and all the other fun semantics
89 */
90#define LOG_WALK_PIN_ONLY 0
91#define LOG_WALK_REPLAY_INODES 1
92#define LOG_WALK_REPLAY_ALL 2
93
Chris Mason12fcfd22009-03-24 10:24:20 -040094static int btrfs_log_inode(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -040095 struct btrfs_root *root, struct inode *inode,
96 int inode_only);
Yan Zhengec051c02009-01-05 15:43:42 -050097static int link_to_fixup_dir(struct btrfs_trans_handle *trans,
98 struct btrfs_root *root,
99 struct btrfs_path *path, u64 objectid);
Chris Mason12fcfd22009-03-24 10:24:20 -0400100static noinline int replay_dir_deletes(struct btrfs_trans_handle *trans,
101 struct btrfs_root *root,
102 struct btrfs_root *log,
103 struct btrfs_path *path,
104 u64 dirid, int del_all);
Chris Masone02119d2008-09-05 16:13:11 -0400105
106/*
107 * tree logging is a special write ahead log used to make sure that
108 * fsyncs and O_SYNCs can happen without doing full tree commits.
109 *
110 * Full tree commits are expensive because they require commonly
111 * modified blocks to be recowed, creating many dirty pages in the
112 * extent tree an 4x-6x higher write load than ext3.
113 *
114 * Instead of doing a tree commit on every fsync, we use the
115 * key ranges and transaction ids to find items for a given file or directory
116 * that have changed in this transaction. Those items are copied into
117 * a special tree (one per subvolume root), that tree is written to disk
118 * and then the fsync is considered complete.
119 *
120 * After a crash, items are copied out of the log-tree back into the
121 * subvolume tree. Any file data extents found are recorded in the extent
122 * allocation tree, and the log-tree freed.
123 *
124 * The log tree is read three times, once to pin down all the extents it is
125 * using in ram and once, once to create all the inodes logged in the tree
126 * and once to do all the other items.
127 */
128
129/*
Chris Masone02119d2008-09-05 16:13:11 -0400130 * start a sub transaction and setup the log tree
131 * this increments the log tree writer count to make the people
132 * syncing the tree wait for us to finish
133 */
134static int start_log_trans(struct btrfs_trans_handle *trans,
135 struct btrfs_root *root)
136{
137 int ret;
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400138 int err = 0;
Yan Zheng7237f182009-01-21 12:54:03 -0500139
140 mutex_lock(&root->log_mutex);
141 if (root->log_root) {
Josef Bacikff782e02009-10-08 15:30:04 -0400142 if (!root->log_start_pid) {
143 root->log_start_pid = current->pid;
144 root->log_multiple_pids = false;
145 } else if (root->log_start_pid != current->pid) {
146 root->log_multiple_pids = true;
147 }
148
Yan Zheng7237f182009-01-21 12:54:03 -0500149 root->log_batch++;
150 atomic_inc(&root->log_writers);
151 mutex_unlock(&root->log_mutex);
152 return 0;
153 }
Josef Bacikff782e02009-10-08 15:30:04 -0400154 root->log_multiple_pids = false;
155 root->log_start_pid = current->pid;
Chris Masone02119d2008-09-05 16:13:11 -0400156 mutex_lock(&root->fs_info->tree_log_mutex);
157 if (!root->fs_info->log_root_tree) {
158 ret = btrfs_init_log_root_tree(trans, root->fs_info);
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400159 if (ret)
160 err = ret;
Chris Masone02119d2008-09-05 16:13:11 -0400161 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400162 if (err == 0 && !root->log_root) {
Chris Masone02119d2008-09-05 16:13:11 -0400163 ret = btrfs_add_log_tree(trans, root);
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400164 if (ret)
165 err = ret;
Chris Masone02119d2008-09-05 16:13:11 -0400166 }
Chris Masone02119d2008-09-05 16:13:11 -0400167 mutex_unlock(&root->fs_info->tree_log_mutex);
Yan Zheng7237f182009-01-21 12:54:03 -0500168 root->log_batch++;
169 atomic_inc(&root->log_writers);
170 mutex_unlock(&root->log_mutex);
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400171 return err;
Chris Masone02119d2008-09-05 16:13:11 -0400172}
173
174/*
175 * returns 0 if there was a log transaction running and we were able
176 * to join, or returns -ENOENT if there were not transactions
177 * in progress
178 */
179static int join_running_log_trans(struct btrfs_root *root)
180{
181 int ret = -ENOENT;
182
183 smp_mb();
184 if (!root->log_root)
185 return -ENOENT;
186
Yan Zheng7237f182009-01-21 12:54:03 -0500187 mutex_lock(&root->log_mutex);
Chris Masone02119d2008-09-05 16:13:11 -0400188 if (root->log_root) {
189 ret = 0;
Yan Zheng7237f182009-01-21 12:54:03 -0500190 atomic_inc(&root->log_writers);
Chris Masone02119d2008-09-05 16:13:11 -0400191 }
Yan Zheng7237f182009-01-21 12:54:03 -0500192 mutex_unlock(&root->log_mutex);
Chris Masone02119d2008-09-05 16:13:11 -0400193 return ret;
194}
195
196/*
Chris Mason12fcfd22009-03-24 10:24:20 -0400197 * This either makes the current running log transaction wait
198 * until you call btrfs_end_log_trans() or it makes any future
199 * log transactions wait until you call btrfs_end_log_trans()
200 */
201int btrfs_pin_log_trans(struct btrfs_root *root)
202{
203 int ret = -ENOENT;
204
205 mutex_lock(&root->log_mutex);
206 atomic_inc(&root->log_writers);
207 mutex_unlock(&root->log_mutex);
208 return ret;
209}
210
211/*
Chris Masone02119d2008-09-05 16:13:11 -0400212 * indicate we're done making changes to the log tree
213 * and wake up anyone waiting to do a sync
214 */
Jeff Mahoney143bede2012-03-01 14:56:26 +0100215void btrfs_end_log_trans(struct btrfs_root *root)
Chris Masone02119d2008-09-05 16:13:11 -0400216{
Yan Zheng7237f182009-01-21 12:54:03 -0500217 if (atomic_dec_and_test(&root->log_writers)) {
218 smp_mb();
219 if (waitqueue_active(&root->log_writer_wait))
220 wake_up(&root->log_writer_wait);
221 }
Chris Masone02119d2008-09-05 16:13:11 -0400222}
223
224
225/*
226 * the walk control struct is used to pass state down the chain when
227 * processing the log tree. The stage field tells us which part
228 * of the log tree processing we are currently doing. The others
229 * are state fields used for that specific part
230 */
231struct walk_control {
232 /* should we free the extent on disk when done? This is used
233 * at transaction commit time while freeing a log tree
234 */
235 int free;
236
237 /* should we write out the extent buffer? This is used
238 * while flushing the log tree to disk during a sync
239 */
240 int write;
241
242 /* should we wait for the extent buffer io to finish? Also used
243 * while flushing the log tree to disk for a sync
244 */
245 int wait;
246
247 /* pin only walk, we record which extents on disk belong to the
248 * log trees
249 */
250 int pin;
251
252 /* what stage of the replay code we're currently in */
253 int stage;
254
255 /* the root we are currently replaying */
256 struct btrfs_root *replay_dest;
257
258 /* the trans handle for the current replay */
259 struct btrfs_trans_handle *trans;
260
261 /* the function that gets used to process blocks we find in the
262 * tree. Note the extent_buffer might not be up to date when it is
263 * passed in, and it must be checked or read if you need the data
264 * inside it
265 */
266 int (*process_func)(struct btrfs_root *log, struct extent_buffer *eb,
267 struct walk_control *wc, u64 gen);
268};
269
270/*
271 * process_func used to pin down extents, write them or wait on them
272 */
273static int process_one_buffer(struct btrfs_root *log,
274 struct extent_buffer *eb,
275 struct walk_control *wc, u64 gen)
276{
Josef Bacik04018de2009-04-03 10:14:18 -0400277 if (wc->pin)
Chris Masone688b722011-10-31 20:52:39 -0400278 btrfs_pin_extent_for_log_replay(wc->trans,
279 log->fs_info->extent_root,
280 eb->start, eb->len);
Chris Masone02119d2008-09-05 16:13:11 -0400281
Chris Masonb9fab912012-05-06 07:23:47 -0400282 if (btrfs_buffer_uptodate(eb, gen, 0)) {
Chris Masone02119d2008-09-05 16:13:11 -0400283 if (wc->write)
284 btrfs_write_tree_block(eb);
285 if (wc->wait)
286 btrfs_wait_tree_block_writeback(eb);
287 }
288 return 0;
289}
290
291/*
292 * Item overwrite used by replay and tree logging. eb, slot and key all refer
293 * to the src data we are copying out.
294 *
295 * root is the tree we are copying into, and path is a scratch
296 * path for use in this function (it should be released on entry and
297 * will be released on exit).
298 *
299 * If the key is already in the destination tree the existing item is
300 * overwritten. If the existing item isn't big enough, it is extended.
301 * If it is too large, it is truncated.
302 *
303 * If the key isn't in the destination yet, a new item is inserted.
304 */
305static noinline int overwrite_item(struct btrfs_trans_handle *trans,
306 struct btrfs_root *root,
307 struct btrfs_path *path,
308 struct extent_buffer *eb, int slot,
309 struct btrfs_key *key)
310{
311 int ret;
312 u32 item_size;
313 u64 saved_i_size = 0;
314 int save_old_i_size = 0;
315 unsigned long src_ptr;
316 unsigned long dst_ptr;
317 int overwrite_root = 0;
318
319 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID)
320 overwrite_root = 1;
321
322 item_size = btrfs_item_size_nr(eb, slot);
323 src_ptr = btrfs_item_ptr_offset(eb, slot);
324
325 /* look for the key in the destination tree */
326 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
327 if (ret == 0) {
328 char *src_copy;
329 char *dst_copy;
330 u32 dst_size = btrfs_item_size_nr(path->nodes[0],
331 path->slots[0]);
332 if (dst_size != item_size)
333 goto insert;
334
335 if (item_size == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200336 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400337 return 0;
338 }
339 dst_copy = kmalloc(item_size, GFP_NOFS);
340 src_copy = kmalloc(item_size, GFP_NOFS);
liubo2a29edc2011-01-26 06:22:08 +0000341 if (!dst_copy || !src_copy) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200342 btrfs_release_path(path);
liubo2a29edc2011-01-26 06:22:08 +0000343 kfree(dst_copy);
344 kfree(src_copy);
345 return -ENOMEM;
346 }
Chris Masone02119d2008-09-05 16:13:11 -0400347
348 read_extent_buffer(eb, src_copy, src_ptr, item_size);
349
350 dst_ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]);
351 read_extent_buffer(path->nodes[0], dst_copy, dst_ptr,
352 item_size);
353 ret = memcmp(dst_copy, src_copy, item_size);
354
355 kfree(dst_copy);
356 kfree(src_copy);
357 /*
358 * they have the same contents, just return, this saves
359 * us from cowing blocks in the destination tree and doing
360 * extra writes that may not have been done by a previous
361 * sync
362 */
363 if (ret == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200364 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400365 return 0;
366 }
367
368 }
369insert:
David Sterbab3b4aa72011-04-21 01:20:15 +0200370 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400371 /* try to insert the key into the destination tree */
372 ret = btrfs_insert_empty_item(trans, root, path,
373 key, item_size);
374
375 /* make sure any existing item is the correct size */
376 if (ret == -EEXIST) {
377 u32 found_size;
378 found_size = btrfs_item_size_nr(path->nodes[0],
379 path->slots[0]);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100380 if (found_size > item_size)
Chris Masone02119d2008-09-05 16:13:11 -0400381 btrfs_truncate_item(trans, root, path, item_size, 1);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100382 else if (found_size < item_size)
383 btrfs_extend_item(trans, root, path,
384 item_size - found_size);
Chris Masone02119d2008-09-05 16:13:11 -0400385 } else if (ret) {
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400386 return ret;
Chris Masone02119d2008-09-05 16:13:11 -0400387 }
388 dst_ptr = btrfs_item_ptr_offset(path->nodes[0],
389 path->slots[0]);
390
391 /* don't overwrite an existing inode if the generation number
392 * was logged as zero. This is done when the tree logging code
393 * is just logging an inode to make sure it exists after recovery.
394 *
395 * Also, don't overwrite i_size on directories during replay.
396 * log replay inserts and removes directory items based on the
397 * state of the tree found in the subvolume, and i_size is modified
398 * as it goes
399 */
400 if (key->type == BTRFS_INODE_ITEM_KEY && ret == -EEXIST) {
401 struct btrfs_inode_item *src_item;
402 struct btrfs_inode_item *dst_item;
403
404 src_item = (struct btrfs_inode_item *)src_ptr;
405 dst_item = (struct btrfs_inode_item *)dst_ptr;
406
407 if (btrfs_inode_generation(eb, src_item) == 0)
408 goto no_copy;
409
410 if (overwrite_root &&
411 S_ISDIR(btrfs_inode_mode(eb, src_item)) &&
412 S_ISDIR(btrfs_inode_mode(path->nodes[0], dst_item))) {
413 save_old_i_size = 1;
414 saved_i_size = btrfs_inode_size(path->nodes[0],
415 dst_item);
416 }
417 }
418
419 copy_extent_buffer(path->nodes[0], eb, dst_ptr,
420 src_ptr, item_size);
421
422 if (save_old_i_size) {
423 struct btrfs_inode_item *dst_item;
424 dst_item = (struct btrfs_inode_item *)dst_ptr;
425 btrfs_set_inode_size(path->nodes[0], dst_item, saved_i_size);
426 }
427
428 /* make sure the generation is filled in */
429 if (key->type == BTRFS_INODE_ITEM_KEY) {
430 struct btrfs_inode_item *dst_item;
431 dst_item = (struct btrfs_inode_item *)dst_ptr;
432 if (btrfs_inode_generation(path->nodes[0], dst_item) == 0) {
433 btrfs_set_inode_generation(path->nodes[0], dst_item,
434 trans->transid);
435 }
436 }
437no_copy:
438 btrfs_mark_buffer_dirty(path->nodes[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +0200439 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400440 return 0;
441}
442
443/*
444 * simple helper to read an inode off the disk from a given root
445 * This can only be called for subvolume roots and not for the log
446 */
447static noinline struct inode *read_one_inode(struct btrfs_root *root,
448 u64 objectid)
449{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400450 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -0400451 struct inode *inode;
Chris Masone02119d2008-09-05 16:13:11 -0400452
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400453 key.objectid = objectid;
454 key.type = BTRFS_INODE_ITEM_KEY;
455 key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +0000456 inode = btrfs_iget(root->fs_info->sb, &key, root, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400457 if (IS_ERR(inode)) {
458 inode = NULL;
459 } else if (is_bad_inode(inode)) {
Chris Masone02119d2008-09-05 16:13:11 -0400460 iput(inode);
461 inode = NULL;
462 }
463 return inode;
464}
465
466/* replays a single extent in 'eb' at 'slot' with 'key' into the
467 * subvolume 'root'. path is released on entry and should be released
468 * on exit.
469 *
470 * extents in the log tree have not been allocated out of the extent
471 * tree yet. So, this completes the allocation, taking a reference
472 * as required if the extent already exists or creating a new extent
473 * if it isn't in the extent allocation tree yet.
474 *
475 * The extent is inserted into the file, dropping any existing extents
476 * from the file that overlap the new one.
477 */
478static noinline int replay_one_extent(struct btrfs_trans_handle *trans,
479 struct btrfs_root *root,
480 struct btrfs_path *path,
481 struct extent_buffer *eb, int slot,
482 struct btrfs_key *key)
483{
484 int found_type;
485 u64 mask = root->sectorsize - 1;
486 u64 extent_end;
487 u64 alloc_hint;
488 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 */
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000553 ret = btrfs_drop_extents(trans, inode, start, extent_end,
554 &alloc_hint, 1);
Chris Masone02119d2008-09-05 16:13:11 -0400555 BUG_ON(ret);
556
Yan Zheng07d400a2009-01-06 11:42:00 -0500557 if (found_type == BTRFS_FILE_EXTENT_REG ||
558 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400559 u64 offset;
Yan Zheng07d400a2009-01-06 11:42:00 -0500560 unsigned long dest_offset;
561 struct btrfs_key ins;
Chris Masone02119d2008-09-05 16:13:11 -0400562
Yan Zheng07d400a2009-01-06 11:42:00 -0500563 ret = btrfs_insert_empty_item(trans, root, path, key,
564 sizeof(*item));
565 BUG_ON(ret);
566 dest_offset = btrfs_item_ptr_offset(path->nodes[0],
567 path->slots[0]);
568 copy_extent_buffer(path->nodes[0], eb, dest_offset,
569 (unsigned long)item, sizeof(*item));
570
571 ins.objectid = btrfs_file_extent_disk_bytenr(eb, item);
572 ins.offset = btrfs_file_extent_disk_num_bytes(eb, item);
573 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400574 offset = key->offset - btrfs_file_extent_offset(eb, item);
Yan Zheng07d400a2009-01-06 11:42:00 -0500575
576 if (ins.objectid > 0) {
577 u64 csum_start;
578 u64 csum_end;
579 LIST_HEAD(ordered_sums);
580 /*
581 * is this extent already allocated in the extent
582 * allocation tree? If so, just add a reference
583 */
584 ret = btrfs_lookup_extent(root, ins.objectid,
585 ins.offset);
586 if (ret == 0) {
587 ret = btrfs_inc_extent_ref(trans, root,
588 ins.objectid, ins.offset,
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400589 0, root->root_key.objectid,
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200590 key->objectid, offset, 0);
Tsutomu Itoh37daa4f2011-04-28 09:18:21 +0000591 BUG_ON(ret);
Yan Zheng07d400a2009-01-06 11:42:00 -0500592 } else {
593 /*
594 * insert the extent pointer in the extent
595 * allocation tree
596 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400597 ret = btrfs_alloc_logged_file_extent(trans,
598 root, root->root_key.objectid,
599 key->objectid, offset, &ins);
Yan Zheng07d400a2009-01-06 11:42:00 -0500600 BUG_ON(ret);
601 }
David Sterbab3b4aa72011-04-21 01:20:15 +0200602 btrfs_release_path(path);
Yan Zheng07d400a2009-01-06 11:42:00 -0500603
604 if (btrfs_file_extent_compression(eb, item)) {
605 csum_start = ins.objectid;
606 csum_end = csum_start + ins.offset;
607 } else {
608 csum_start = ins.objectid +
609 btrfs_file_extent_offset(eb, item);
610 csum_end = csum_start +
611 btrfs_file_extent_num_bytes(eb, item);
612 }
613
614 ret = btrfs_lookup_csums_range(root->log_root,
615 csum_start, csum_end - 1,
Arne Jansena2de7332011-03-08 14:14:00 +0100616 &ordered_sums, 0);
Yan Zheng07d400a2009-01-06 11:42:00 -0500617 BUG_ON(ret);
618 while (!list_empty(&ordered_sums)) {
619 struct btrfs_ordered_sum *sums;
620 sums = list_entry(ordered_sums.next,
621 struct btrfs_ordered_sum,
622 list);
623 ret = btrfs_csum_file_blocks(trans,
624 root->fs_info->csum_root,
625 sums);
626 BUG_ON(ret);
627 list_del(&sums->list);
628 kfree(sums);
629 }
630 } else {
David Sterbab3b4aa72011-04-21 01:20:15 +0200631 btrfs_release_path(path);
Yan Zheng07d400a2009-01-06 11:42:00 -0500632 }
633 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
634 /* inline extents are easy, we just overwrite them */
635 ret = overwrite_item(trans, root, path, eb, slot, key);
636 BUG_ON(ret);
637 }
638
639 inode_set_bytes(inode, saved_nbytes);
Chris Masone02119d2008-09-05 16:13:11 -0400640 btrfs_update_inode(trans, root, inode);
641out:
642 if (inode)
643 iput(inode);
644 return ret;
645}
646
647/*
648 * when cleaning up conflicts between the directory names in the
649 * subvolume, directory names in the log and directory names in the
650 * inode back references, we may have to unlink inodes from directories.
651 *
652 * This is a helper function to do the unlink of a specific directory
653 * item
654 */
655static noinline int drop_one_dir_item(struct btrfs_trans_handle *trans,
656 struct btrfs_root *root,
657 struct btrfs_path *path,
658 struct inode *dir,
659 struct btrfs_dir_item *di)
660{
661 struct inode *inode;
662 char *name;
663 int name_len;
664 struct extent_buffer *leaf;
665 struct btrfs_key location;
666 int ret;
667
668 leaf = path->nodes[0];
669
670 btrfs_dir_item_key_to_cpu(leaf, di, &location);
671 name_len = btrfs_dir_name_len(leaf, di);
672 name = kmalloc(name_len, GFP_NOFS);
liubo2a29edc2011-01-26 06:22:08 +0000673 if (!name)
674 return -ENOMEM;
675
Chris Masone02119d2008-09-05 16:13:11 -0400676 read_extent_buffer(leaf, name, (unsigned long)(di + 1), name_len);
David Sterbab3b4aa72011-04-21 01:20:15 +0200677 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400678
679 inode = read_one_inode(root, location.objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +0000680 if (!inode) {
681 kfree(name);
682 return -EIO;
683 }
Chris Masone02119d2008-09-05 16:13:11 -0400684
Yan Zhengec051c02009-01-05 15:43:42 -0500685 ret = link_to_fixup_dir(trans, root, path, location.objectid);
686 BUG_ON(ret);
Chris Mason12fcfd22009-03-24 10:24:20 -0400687
Chris Masone02119d2008-09-05 16:13:11 -0400688 ret = btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
Yan Zhengec051c02009-01-05 15:43:42 -0500689 BUG_ON(ret);
Chris Masone02119d2008-09-05 16:13:11 -0400690 kfree(name);
691
692 iput(inode);
Chris Masondbc90432012-07-02 15:29:53 -0400693
694 btrfs_run_delayed_items(trans, root);
Chris Masone02119d2008-09-05 16:13:11 -0400695 return ret;
696}
697
698/*
699 * helper function to see if a given name and sequence number found
700 * in an inode back reference are already in a directory and correctly
701 * point to this inode
702 */
703static noinline int inode_in_dir(struct btrfs_root *root,
704 struct btrfs_path *path,
705 u64 dirid, u64 objectid, u64 index,
706 const char *name, int name_len)
707{
708 struct btrfs_dir_item *di;
709 struct btrfs_key location;
710 int match = 0;
711
712 di = btrfs_lookup_dir_index_item(NULL, root, path, dirid,
713 index, name, name_len, 0);
714 if (di && !IS_ERR(di)) {
715 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location);
716 if (location.objectid != objectid)
717 goto out;
718 } else
719 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +0200720 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400721
722 di = btrfs_lookup_dir_item(NULL, root, path, dirid, name, name_len, 0);
723 if (di && !IS_ERR(di)) {
724 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location);
725 if (location.objectid != objectid)
726 goto out;
727 } else
728 goto out;
729 match = 1;
730out:
David Sterbab3b4aa72011-04-21 01:20:15 +0200731 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400732 return match;
733}
734
735/*
736 * helper function to check a log tree for a named back reference in
737 * an inode. This is used to decide if a back reference that is
738 * found in the subvolume conflicts with what we find in the log.
739 *
740 * inode backreferences may have multiple refs in a single item,
741 * during replay we process one reference at a time, and we don't
742 * want to delete valid links to a file from the subvolume if that
743 * link is also in the log.
744 */
745static noinline int backref_in_log(struct btrfs_root *log,
746 struct btrfs_key *key,
747 char *name, int namelen)
748{
749 struct btrfs_path *path;
750 struct btrfs_inode_ref *ref;
751 unsigned long ptr;
752 unsigned long ptr_end;
753 unsigned long name_ptr;
754 int found_name_len;
755 int item_size;
756 int ret;
757 int match = 0;
758
759 path = btrfs_alloc_path();
liubo2a29edc2011-01-26 06:22:08 +0000760 if (!path)
761 return -ENOMEM;
762
Chris Masone02119d2008-09-05 16:13:11 -0400763 ret = btrfs_search_slot(NULL, log, key, path, 0, 0);
764 if (ret != 0)
765 goto out;
766
767 item_size = btrfs_item_size_nr(path->nodes[0], path->slots[0]);
768 ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]);
769 ptr_end = ptr + item_size;
770 while (ptr < ptr_end) {
771 ref = (struct btrfs_inode_ref *)ptr;
772 found_name_len = btrfs_inode_ref_name_len(path->nodes[0], ref);
773 if (found_name_len == namelen) {
774 name_ptr = (unsigned long)(ref + 1);
775 ret = memcmp_extent_buffer(path->nodes[0], name,
776 name_ptr, namelen);
777 if (ret == 0) {
778 match = 1;
779 goto out;
780 }
781 }
782 ptr = (unsigned long)(ref + 1) + found_name_len;
783 }
784out:
785 btrfs_free_path(path);
786 return match;
787}
788
789
790/*
791 * replay one inode back reference item found in the log tree.
792 * eb, slot and key refer to the buffer and key found in the log tree.
793 * root is the destination we are replaying into, and path is for temp
794 * use by this function. (it should be released on return).
795 */
796static noinline int add_inode_ref(struct btrfs_trans_handle *trans,
797 struct btrfs_root *root,
798 struct btrfs_root *log,
799 struct btrfs_path *path,
800 struct extent_buffer *eb, int slot,
801 struct btrfs_key *key)
802{
Chris Masone02119d2008-09-05 16:13:11 -0400803 struct btrfs_inode_ref *ref;
liubo34f3e4f2011-08-06 08:35:23 +0000804 struct btrfs_dir_item *di;
805 struct inode *dir;
Chris Masone02119d2008-09-05 16:13:11 -0400806 struct inode *inode;
Chris Masone02119d2008-09-05 16:13:11 -0400807 unsigned long ref_ptr;
808 unsigned long ref_end;
liubo34f3e4f2011-08-06 08:35:23 +0000809 char *name;
810 int namelen;
811 int ret;
liuboc622ae62011-03-26 08:01:12 -0400812 int search_done = 0;
Chris Masone02119d2008-09-05 16:13:11 -0400813
Chris Masone02119d2008-09-05 16:13:11 -0400814 /*
815 * it is possible that we didn't log all the parent directories
816 * for a given inode. If we don't find the dir, just don't
817 * copy the back ref in. The link count fixup code will take
818 * care of the rest
819 */
820 dir = read_one_inode(root, key->offset);
821 if (!dir)
822 return -ENOENT;
823
824 inode = read_one_inode(root, key->objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +0000825 if (!inode) {
826 iput(dir);
827 return -EIO;
828 }
Chris Masone02119d2008-09-05 16:13:11 -0400829
830 ref_ptr = btrfs_item_ptr_offset(eb, slot);
831 ref_end = ref_ptr + btrfs_item_size_nr(eb, slot);
832
833again:
834 ref = (struct btrfs_inode_ref *)ref_ptr;
835
836 namelen = btrfs_inode_ref_name_len(eb, ref);
837 name = kmalloc(namelen, GFP_NOFS);
838 BUG_ON(!name);
839
840 read_extent_buffer(eb, name, (unsigned long)(ref + 1), namelen);
841
842 /* if we already have a perfect match, we're done */
Li Zefan33345d012011-04-20 10:31:50 +0800843 if (inode_in_dir(root, path, btrfs_ino(dir), btrfs_ino(inode),
Chris Masone02119d2008-09-05 16:13:11 -0400844 btrfs_inode_ref_index(eb, ref),
845 name, namelen)) {
846 goto out;
847 }
848
849 /*
850 * look for a conflicting back reference in the metadata.
851 * if we find one we have to unlink that name of the file
852 * before we add our new link. Later on, we overwrite any
853 * existing back reference, and we don't want to create
854 * dangling pointers in the directory.
855 */
liuboc622ae62011-03-26 08:01:12 -0400856
857 if (search_done)
858 goto insert;
859
Chris Masone02119d2008-09-05 16:13:11 -0400860 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
861 if (ret == 0) {
862 char *victim_name;
863 int victim_name_len;
864 struct btrfs_inode_ref *victim_ref;
865 unsigned long ptr;
866 unsigned long ptr_end;
867 struct extent_buffer *leaf = path->nodes[0];
868
869 /* are we trying to overwrite a back ref for the root directory
870 * if so, just jump out, we're done
871 */
872 if (key->objectid == key->offset)
873 goto out_nowrite;
874
875 /* check all the names in this back reference to see
876 * if they are in the log. if so, we allow them to stay
877 * otherwise they must be unlinked as a conflict
878 */
879 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
880 ptr_end = ptr + btrfs_item_size_nr(leaf, path->slots[0]);
Chris Masond3977122009-01-05 21:25:51 -0500881 while (ptr < ptr_end) {
Chris Masone02119d2008-09-05 16:13:11 -0400882 victim_ref = (struct btrfs_inode_ref *)ptr;
883 victim_name_len = btrfs_inode_ref_name_len(leaf,
884 victim_ref);
885 victim_name = kmalloc(victim_name_len, GFP_NOFS);
886 BUG_ON(!victim_name);
887
888 read_extent_buffer(leaf, victim_name,
889 (unsigned long)(victim_ref + 1),
890 victim_name_len);
891
892 if (!backref_in_log(log, key, victim_name,
893 victim_name_len)) {
894 btrfs_inc_nlink(inode);
David Sterbab3b4aa72011-04-21 01:20:15 +0200895 btrfs_release_path(path);
Chris Mason12fcfd22009-03-24 10:24:20 -0400896
Chris Masone02119d2008-09-05 16:13:11 -0400897 ret = btrfs_unlink_inode(trans, root, dir,
898 inode, victim_name,
899 victim_name_len);
Chris Masondbc90432012-07-02 15:29:53 -0400900 btrfs_run_delayed_items(trans, root);
Chris Masone02119d2008-09-05 16:13:11 -0400901 }
902 kfree(victim_name);
903 ptr = (unsigned long)(victim_ref + 1) + victim_name_len;
904 }
905 BUG_ON(ret);
liuboc622ae62011-03-26 08:01:12 -0400906
907 /*
908 * NOTE: we have searched root tree and checked the
909 * coresponding ref, it does not need to check again.
910 */
911 search_done = 1;
Chris Masone02119d2008-09-05 16:13:11 -0400912 }
David Sterbab3b4aa72011-04-21 01:20:15 +0200913 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400914
liubo34f3e4f2011-08-06 08:35:23 +0000915 /* look for a conflicting sequence number */
916 di = btrfs_lookup_dir_index_item(trans, root, path, btrfs_ino(dir),
917 btrfs_inode_ref_index(eb, ref),
918 name, namelen, 0);
919 if (di && !IS_ERR(di)) {
920 ret = drop_one_dir_item(trans, root, path, dir, di);
921 BUG_ON(ret);
922 }
923 btrfs_release_path(path);
924
925 /* look for a conflicing name */
926 di = btrfs_lookup_dir_item(trans, root, path, btrfs_ino(dir),
927 name, namelen, 0);
928 if (di && !IS_ERR(di)) {
929 ret = drop_one_dir_item(trans, root, path, dir, di);
930 BUG_ON(ret);
931 }
932 btrfs_release_path(path);
933
liuboc622ae62011-03-26 08:01:12 -0400934insert:
Chris Masone02119d2008-09-05 16:13:11 -0400935 /* insert our name */
936 ret = btrfs_add_link(trans, dir, inode, name, namelen, 0,
937 btrfs_inode_ref_index(eb, ref));
938 BUG_ON(ret);
939
940 btrfs_update_inode(trans, root, inode);
941
942out:
943 ref_ptr = (unsigned long)(ref + 1) + namelen;
944 kfree(name);
945 if (ref_ptr < ref_end)
946 goto again;
947
948 /* finally write the back reference in the inode */
949 ret = overwrite_item(trans, root, path, eb, slot, key);
950 BUG_ON(ret);
951
952out_nowrite:
David Sterbab3b4aa72011-04-21 01:20:15 +0200953 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400954 iput(dir);
955 iput(inode);
956 return 0;
957}
958
Yan, Zhengc71bf092009-11-12 09:34:40 +0000959static int insert_orphan_item(struct btrfs_trans_handle *trans,
960 struct btrfs_root *root, u64 offset)
961{
962 int ret;
963 ret = btrfs_find_orphan_item(root, offset);
964 if (ret > 0)
965 ret = btrfs_insert_orphan_item(trans, root, offset);
966 return ret;
967}
968
969
Chris Masone02119d2008-09-05 16:13:11 -0400970/*
Chris Masone02119d2008-09-05 16:13:11 -0400971 * There are a few corners where the link count of the file can't
972 * be properly maintained during replay. So, instead of adding
973 * lots of complexity to the log code, we just scan the backrefs
974 * for any file that has been through replay.
975 *
976 * The scan will update the link count on the inode to reflect the
977 * number of back refs found. If it goes down to zero, the iput
978 * will free the inode.
979 */
980static noinline int fixup_inode_link_count(struct btrfs_trans_handle *trans,
981 struct btrfs_root *root,
982 struct inode *inode)
983{
984 struct btrfs_path *path;
985 int ret;
986 struct btrfs_key key;
987 u64 nlink = 0;
988 unsigned long ptr;
989 unsigned long ptr_end;
990 int name_len;
Li Zefan33345d012011-04-20 10:31:50 +0800991 u64 ino = btrfs_ino(inode);
Chris Masone02119d2008-09-05 16:13:11 -0400992
Li Zefan33345d012011-04-20 10:31:50 +0800993 key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -0400994 key.type = BTRFS_INODE_REF_KEY;
995 key.offset = (u64)-1;
996
997 path = btrfs_alloc_path();
liubo2a29edc2011-01-26 06:22:08 +0000998 if (!path)
999 return -ENOMEM;
Chris Masone02119d2008-09-05 16:13:11 -04001000
Chris Masond3977122009-01-05 21:25:51 -05001001 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04001002 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1003 if (ret < 0)
1004 break;
1005 if (ret > 0) {
1006 if (path->slots[0] == 0)
1007 break;
1008 path->slots[0]--;
1009 }
1010 btrfs_item_key_to_cpu(path->nodes[0], &key,
1011 path->slots[0]);
Li Zefan33345d012011-04-20 10:31:50 +08001012 if (key.objectid != ino ||
Chris Masone02119d2008-09-05 16:13:11 -04001013 key.type != BTRFS_INODE_REF_KEY)
1014 break;
1015 ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]);
1016 ptr_end = ptr + btrfs_item_size_nr(path->nodes[0],
1017 path->slots[0]);
Chris Masond3977122009-01-05 21:25:51 -05001018 while (ptr < ptr_end) {
Chris Masone02119d2008-09-05 16:13:11 -04001019 struct btrfs_inode_ref *ref;
1020
1021 ref = (struct btrfs_inode_ref *)ptr;
1022 name_len = btrfs_inode_ref_name_len(path->nodes[0],
1023 ref);
1024 ptr = (unsigned long)(ref + 1) + name_len;
1025 nlink++;
1026 }
1027
1028 if (key.offset == 0)
1029 break;
1030 key.offset--;
David Sterbab3b4aa72011-04-21 01:20:15 +02001031 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001032 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001033 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001034 if (nlink != inode->i_nlink) {
Miklos Szeredibfe86842011-10-28 14:13:29 +02001035 set_nlink(inode, nlink);
Chris Masone02119d2008-09-05 16:13:11 -04001036 btrfs_update_inode(trans, root, inode);
1037 }
Chris Mason8d5bf1c2008-09-11 15:51:21 -04001038 BTRFS_I(inode)->index_cnt = (u64)-1;
Chris Masone02119d2008-09-05 16:13:11 -04001039
Yan, Zhengc71bf092009-11-12 09:34:40 +00001040 if (inode->i_nlink == 0) {
1041 if (S_ISDIR(inode->i_mode)) {
1042 ret = replay_dir_deletes(trans, root, NULL, path,
Li Zefan33345d012011-04-20 10:31:50 +08001043 ino, 1);
Yan, Zhengc71bf092009-11-12 09:34:40 +00001044 BUG_ON(ret);
1045 }
Li Zefan33345d012011-04-20 10:31:50 +08001046 ret = insert_orphan_item(trans, root, ino);
Chris Mason12fcfd22009-03-24 10:24:20 -04001047 BUG_ON(ret);
1048 }
1049 btrfs_free_path(path);
1050
Chris Masone02119d2008-09-05 16:13:11 -04001051 return 0;
1052}
1053
1054static noinline int fixup_inode_link_counts(struct btrfs_trans_handle *trans,
1055 struct btrfs_root *root,
1056 struct btrfs_path *path)
1057{
1058 int ret;
1059 struct btrfs_key key;
1060 struct inode *inode;
1061
1062 key.objectid = BTRFS_TREE_LOG_FIXUP_OBJECTID;
1063 key.type = BTRFS_ORPHAN_ITEM_KEY;
1064 key.offset = (u64)-1;
Chris Masond3977122009-01-05 21:25:51 -05001065 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04001066 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1067 if (ret < 0)
1068 break;
1069
1070 if (ret == 1) {
1071 if (path->slots[0] == 0)
1072 break;
1073 path->slots[0]--;
1074 }
1075
1076 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1077 if (key.objectid != BTRFS_TREE_LOG_FIXUP_OBJECTID ||
1078 key.type != BTRFS_ORPHAN_ITEM_KEY)
1079 break;
1080
1081 ret = btrfs_del_item(trans, root, path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00001082 if (ret)
1083 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001084
David Sterbab3b4aa72011-04-21 01:20:15 +02001085 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001086 inode = read_one_inode(root, key.offset);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001087 if (!inode)
1088 return -EIO;
Chris Masone02119d2008-09-05 16:13:11 -04001089
1090 ret = fixup_inode_link_count(trans, root, inode);
1091 BUG_ON(ret);
1092
1093 iput(inode);
1094
Chris Mason12fcfd22009-03-24 10:24:20 -04001095 /*
1096 * fixup on a directory may create new entries,
1097 * make sure we always look for the highset possible
1098 * offset
1099 */
1100 key.offset = (u64)-1;
Chris Masone02119d2008-09-05 16:13:11 -04001101 }
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00001102 ret = 0;
1103out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001104 btrfs_release_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00001105 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001106}
1107
1108
1109/*
1110 * record a given inode in the fixup dir so we can check its link
1111 * count when replay is done. The link count is incremented here
1112 * so the inode won't go away until we check it
1113 */
1114static noinline int link_to_fixup_dir(struct btrfs_trans_handle *trans,
1115 struct btrfs_root *root,
1116 struct btrfs_path *path,
1117 u64 objectid)
1118{
1119 struct btrfs_key key;
1120 int ret = 0;
1121 struct inode *inode;
1122
1123 inode = read_one_inode(root, objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001124 if (!inode)
1125 return -EIO;
Chris Masone02119d2008-09-05 16:13:11 -04001126
1127 key.objectid = BTRFS_TREE_LOG_FIXUP_OBJECTID;
1128 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
1129 key.offset = objectid;
1130
1131 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
1132
David Sterbab3b4aa72011-04-21 01:20:15 +02001133 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001134 if (ret == 0) {
1135 btrfs_inc_nlink(inode);
1136 btrfs_update_inode(trans, root, inode);
1137 } else if (ret == -EEXIST) {
1138 ret = 0;
1139 } else {
1140 BUG();
1141 }
1142 iput(inode);
1143
1144 return ret;
1145}
1146
1147/*
1148 * when replaying the log for a directory, we only insert names
1149 * for inodes that actually exist. This means an fsync on a directory
1150 * does not implicitly fsync all the new files in it
1151 */
1152static noinline int insert_one_name(struct btrfs_trans_handle *trans,
1153 struct btrfs_root *root,
1154 struct btrfs_path *path,
1155 u64 dirid, u64 index,
1156 char *name, int name_len, u8 type,
1157 struct btrfs_key *location)
1158{
1159 struct inode *inode;
1160 struct inode *dir;
1161 int ret;
1162
1163 inode = read_one_inode(root, location->objectid);
1164 if (!inode)
1165 return -ENOENT;
1166
1167 dir = read_one_inode(root, dirid);
1168 if (!dir) {
1169 iput(inode);
1170 return -EIO;
1171 }
1172 ret = btrfs_add_link(trans, dir, inode, name, name_len, 1, index);
1173
1174 /* FIXME, put inode into FIXUP list */
1175
1176 iput(inode);
1177 iput(dir);
1178 return ret;
1179}
1180
1181/*
1182 * take a single entry in a log directory item and replay it into
1183 * the subvolume.
1184 *
1185 * if a conflicting item exists in the subdirectory already,
1186 * the inode it points to is unlinked and put into the link count
1187 * fix up tree.
1188 *
1189 * If a name from the log points to a file or directory that does
1190 * not exist in the FS, it is skipped. fsyncs on directories
1191 * do not force down inodes inside that directory, just changes to the
1192 * names or unlinks in a directory.
1193 */
1194static noinline int replay_one_name(struct btrfs_trans_handle *trans,
1195 struct btrfs_root *root,
1196 struct btrfs_path *path,
1197 struct extent_buffer *eb,
1198 struct btrfs_dir_item *di,
1199 struct btrfs_key *key)
1200{
1201 char *name;
1202 int name_len;
1203 struct btrfs_dir_item *dst_di;
1204 struct btrfs_key found_key;
1205 struct btrfs_key log_key;
1206 struct inode *dir;
Chris Masone02119d2008-09-05 16:13:11 -04001207 u8 log_type;
Chris Mason4bef0842008-09-08 11:18:08 -04001208 int exists;
Chris Masone02119d2008-09-05 16:13:11 -04001209 int ret;
1210
1211 dir = read_one_inode(root, key->objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001212 if (!dir)
1213 return -EIO;
Chris Masone02119d2008-09-05 16:13:11 -04001214
1215 name_len = btrfs_dir_name_len(eb, di);
1216 name = kmalloc(name_len, GFP_NOFS);
liubo2a29edc2011-01-26 06:22:08 +00001217 if (!name)
1218 return -ENOMEM;
1219
Chris Masone02119d2008-09-05 16:13:11 -04001220 log_type = btrfs_dir_type(eb, di);
1221 read_extent_buffer(eb, name, (unsigned long)(di + 1),
1222 name_len);
1223
1224 btrfs_dir_item_key_to_cpu(eb, di, &log_key);
Chris Mason4bef0842008-09-08 11:18:08 -04001225 exists = btrfs_lookup_inode(trans, root, path, &log_key, 0);
1226 if (exists == 0)
1227 exists = 1;
1228 else
1229 exists = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02001230 btrfs_release_path(path);
Chris Mason4bef0842008-09-08 11:18:08 -04001231
Chris Masone02119d2008-09-05 16:13:11 -04001232 if (key->type == BTRFS_DIR_ITEM_KEY) {
1233 dst_di = btrfs_lookup_dir_item(trans, root, path, key->objectid,
1234 name, name_len, 1);
Chris Masond3977122009-01-05 21:25:51 -05001235 } else if (key->type == BTRFS_DIR_INDEX_KEY) {
Chris Masone02119d2008-09-05 16:13:11 -04001236 dst_di = btrfs_lookup_dir_index_item(trans, root, path,
1237 key->objectid,
1238 key->offset, name,
1239 name_len, 1);
1240 } else {
1241 BUG();
1242 }
David Sterbac7040052011-04-19 18:00:01 +02001243 if (IS_ERR_OR_NULL(dst_di)) {
Chris Masone02119d2008-09-05 16:13:11 -04001244 /* we need a sequence number to insert, so we only
1245 * do inserts for the BTRFS_DIR_INDEX_KEY types
1246 */
1247 if (key->type != BTRFS_DIR_INDEX_KEY)
1248 goto out;
1249 goto insert;
1250 }
1251
1252 btrfs_dir_item_key_to_cpu(path->nodes[0], dst_di, &found_key);
1253 /* the existing item matches the logged item */
1254 if (found_key.objectid == log_key.objectid &&
1255 found_key.type == log_key.type &&
1256 found_key.offset == log_key.offset &&
1257 btrfs_dir_type(path->nodes[0], dst_di) == log_type) {
1258 goto out;
1259 }
1260
1261 /*
1262 * don't drop the conflicting directory entry if the inode
1263 * for the new entry doesn't exist
1264 */
Chris Mason4bef0842008-09-08 11:18:08 -04001265 if (!exists)
Chris Masone02119d2008-09-05 16:13:11 -04001266 goto out;
1267
Chris Masone02119d2008-09-05 16:13:11 -04001268 ret = drop_one_dir_item(trans, root, path, dir, dst_di);
1269 BUG_ON(ret);
1270
1271 if (key->type == BTRFS_DIR_INDEX_KEY)
1272 goto insert;
1273out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001274 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001275 kfree(name);
1276 iput(dir);
1277 return 0;
1278
1279insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02001280 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001281 ret = insert_one_name(trans, root, path, key->objectid, key->offset,
1282 name, name_len, log_type, &log_key);
1283
Stoyan Gaydarovc2934982009-04-02 17:05:11 -04001284 BUG_ON(ret && ret != -ENOENT);
Chris Masone02119d2008-09-05 16:13:11 -04001285 goto out;
1286}
1287
1288/*
1289 * find all the names in a directory item and reconcile them into
1290 * the subvolume. Only BTRFS_DIR_ITEM_KEY types will have more than
1291 * one name in a directory item, but the same code gets used for
1292 * both directory index types
1293 */
1294static noinline int replay_one_dir_item(struct btrfs_trans_handle *trans,
1295 struct btrfs_root *root,
1296 struct btrfs_path *path,
1297 struct extent_buffer *eb, int slot,
1298 struct btrfs_key *key)
1299{
1300 int ret;
1301 u32 item_size = btrfs_item_size_nr(eb, slot);
1302 struct btrfs_dir_item *di;
1303 int name_len;
1304 unsigned long ptr;
1305 unsigned long ptr_end;
1306
1307 ptr = btrfs_item_ptr_offset(eb, slot);
1308 ptr_end = ptr + item_size;
Chris Masond3977122009-01-05 21:25:51 -05001309 while (ptr < ptr_end) {
Chris Masone02119d2008-09-05 16:13:11 -04001310 di = (struct btrfs_dir_item *)ptr;
Josef Bacik22a94d42011-03-16 16:47:17 -04001311 if (verify_dir_item(root, eb, di))
1312 return -EIO;
Chris Masone02119d2008-09-05 16:13:11 -04001313 name_len = btrfs_dir_name_len(eb, di);
1314 ret = replay_one_name(trans, root, path, eb, di, key);
1315 BUG_ON(ret);
1316 ptr = (unsigned long)(di + 1);
1317 ptr += name_len;
1318 }
1319 return 0;
1320}
1321
1322/*
1323 * directory replay has two parts. There are the standard directory
1324 * items in the log copied from the subvolume, and range items
1325 * created in the log while the subvolume was logged.
1326 *
1327 * The range items tell us which parts of the key space the log
1328 * is authoritative for. During replay, if a key in the subvolume
1329 * directory is in a logged range item, but not actually in the log
1330 * that means it was deleted from the directory before the fsync
1331 * and should be removed.
1332 */
1333static noinline int find_dir_range(struct btrfs_root *root,
1334 struct btrfs_path *path,
1335 u64 dirid, int key_type,
1336 u64 *start_ret, u64 *end_ret)
1337{
1338 struct btrfs_key key;
1339 u64 found_end;
1340 struct btrfs_dir_log_item *item;
1341 int ret;
1342 int nritems;
1343
1344 if (*start_ret == (u64)-1)
1345 return 1;
1346
1347 key.objectid = dirid;
1348 key.type = key_type;
1349 key.offset = *start_ret;
1350
1351 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1352 if (ret < 0)
1353 goto out;
1354 if (ret > 0) {
1355 if (path->slots[0] == 0)
1356 goto out;
1357 path->slots[0]--;
1358 }
1359 if (ret != 0)
1360 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1361
1362 if (key.type != key_type || key.objectid != dirid) {
1363 ret = 1;
1364 goto next;
1365 }
1366 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1367 struct btrfs_dir_log_item);
1368 found_end = btrfs_dir_log_end(path->nodes[0], item);
1369
1370 if (*start_ret >= key.offset && *start_ret <= found_end) {
1371 ret = 0;
1372 *start_ret = key.offset;
1373 *end_ret = found_end;
1374 goto out;
1375 }
1376 ret = 1;
1377next:
1378 /* check the next slot in the tree to see if it is a valid item */
1379 nritems = btrfs_header_nritems(path->nodes[0]);
1380 if (path->slots[0] >= nritems) {
1381 ret = btrfs_next_leaf(root, path);
1382 if (ret)
1383 goto out;
1384 } else {
1385 path->slots[0]++;
1386 }
1387
1388 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1389
1390 if (key.type != key_type || key.objectid != dirid) {
1391 ret = 1;
1392 goto out;
1393 }
1394 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1395 struct btrfs_dir_log_item);
1396 found_end = btrfs_dir_log_end(path->nodes[0], item);
1397 *start_ret = key.offset;
1398 *end_ret = found_end;
1399 ret = 0;
1400out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001401 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001402 return ret;
1403}
1404
1405/*
1406 * this looks for a given directory item in the log. If the directory
1407 * item is not in the log, the item is removed and the inode it points
1408 * to is unlinked
1409 */
1410static noinline int check_item_in_log(struct btrfs_trans_handle *trans,
1411 struct btrfs_root *root,
1412 struct btrfs_root *log,
1413 struct btrfs_path *path,
1414 struct btrfs_path *log_path,
1415 struct inode *dir,
1416 struct btrfs_key *dir_key)
1417{
1418 int ret;
1419 struct extent_buffer *eb;
1420 int slot;
1421 u32 item_size;
1422 struct btrfs_dir_item *di;
1423 struct btrfs_dir_item *log_di;
1424 int name_len;
1425 unsigned long ptr;
1426 unsigned long ptr_end;
1427 char *name;
1428 struct inode *inode;
1429 struct btrfs_key location;
1430
1431again:
1432 eb = path->nodes[0];
1433 slot = path->slots[0];
1434 item_size = btrfs_item_size_nr(eb, slot);
1435 ptr = btrfs_item_ptr_offset(eb, slot);
1436 ptr_end = ptr + item_size;
Chris Masond3977122009-01-05 21:25:51 -05001437 while (ptr < ptr_end) {
Chris Masone02119d2008-09-05 16:13:11 -04001438 di = (struct btrfs_dir_item *)ptr;
Josef Bacik22a94d42011-03-16 16:47:17 -04001439 if (verify_dir_item(root, eb, di)) {
1440 ret = -EIO;
1441 goto out;
1442 }
1443
Chris Masone02119d2008-09-05 16:13:11 -04001444 name_len = btrfs_dir_name_len(eb, di);
1445 name = kmalloc(name_len, GFP_NOFS);
1446 if (!name) {
1447 ret = -ENOMEM;
1448 goto out;
1449 }
1450 read_extent_buffer(eb, name, (unsigned long)(di + 1),
1451 name_len);
1452 log_di = NULL;
Chris Mason12fcfd22009-03-24 10:24:20 -04001453 if (log && dir_key->type == BTRFS_DIR_ITEM_KEY) {
Chris Masone02119d2008-09-05 16:13:11 -04001454 log_di = btrfs_lookup_dir_item(trans, log, log_path,
1455 dir_key->objectid,
1456 name, name_len, 0);
Chris Mason12fcfd22009-03-24 10:24:20 -04001457 } else if (log && dir_key->type == BTRFS_DIR_INDEX_KEY) {
Chris Masone02119d2008-09-05 16:13:11 -04001458 log_di = btrfs_lookup_dir_index_item(trans, log,
1459 log_path,
1460 dir_key->objectid,
1461 dir_key->offset,
1462 name, name_len, 0);
1463 }
David Sterbac7040052011-04-19 18:00:01 +02001464 if (IS_ERR_OR_NULL(log_di)) {
Chris Masone02119d2008-09-05 16:13:11 -04001465 btrfs_dir_item_key_to_cpu(eb, di, &location);
David Sterbab3b4aa72011-04-21 01:20:15 +02001466 btrfs_release_path(path);
1467 btrfs_release_path(log_path);
Chris Masone02119d2008-09-05 16:13:11 -04001468 inode = read_one_inode(root, location.objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001469 if (!inode) {
1470 kfree(name);
1471 return -EIO;
1472 }
Chris Masone02119d2008-09-05 16:13:11 -04001473
1474 ret = link_to_fixup_dir(trans, root,
1475 path, location.objectid);
1476 BUG_ON(ret);
1477 btrfs_inc_nlink(inode);
1478 ret = btrfs_unlink_inode(trans, root, dir, inode,
1479 name, name_len);
1480 BUG_ON(ret);
Chris Masondbc90432012-07-02 15:29:53 -04001481
1482 btrfs_run_delayed_items(trans, root);
1483
Chris Masone02119d2008-09-05 16:13:11 -04001484 kfree(name);
1485 iput(inode);
1486
1487 /* there might still be more names under this key
1488 * check and repeat if required
1489 */
1490 ret = btrfs_search_slot(NULL, root, dir_key, path,
1491 0, 0);
1492 if (ret == 0)
1493 goto again;
1494 ret = 0;
1495 goto out;
1496 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001497 btrfs_release_path(log_path);
Chris Masone02119d2008-09-05 16:13:11 -04001498 kfree(name);
1499
1500 ptr = (unsigned long)(di + 1);
1501 ptr += name_len;
1502 }
1503 ret = 0;
1504out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001505 btrfs_release_path(path);
1506 btrfs_release_path(log_path);
Chris Masone02119d2008-09-05 16:13:11 -04001507 return ret;
1508}
1509
1510/*
1511 * deletion replay happens before we copy any new directory items
1512 * out of the log or out of backreferences from inodes. It
1513 * scans the log to find ranges of keys that log is authoritative for,
1514 * and then scans the directory to find items in those ranges that are
1515 * not present in the log.
1516 *
1517 * Anything we don't find in the log is unlinked and removed from the
1518 * directory.
1519 */
1520static noinline int replay_dir_deletes(struct btrfs_trans_handle *trans,
1521 struct btrfs_root *root,
1522 struct btrfs_root *log,
1523 struct btrfs_path *path,
Chris Mason12fcfd22009-03-24 10:24:20 -04001524 u64 dirid, int del_all)
Chris Masone02119d2008-09-05 16:13:11 -04001525{
1526 u64 range_start;
1527 u64 range_end;
1528 int key_type = BTRFS_DIR_LOG_ITEM_KEY;
1529 int ret = 0;
1530 struct btrfs_key dir_key;
1531 struct btrfs_key found_key;
1532 struct btrfs_path *log_path;
1533 struct inode *dir;
1534
1535 dir_key.objectid = dirid;
1536 dir_key.type = BTRFS_DIR_ITEM_KEY;
1537 log_path = btrfs_alloc_path();
1538 if (!log_path)
1539 return -ENOMEM;
1540
1541 dir = read_one_inode(root, dirid);
1542 /* it isn't an error if the inode isn't there, that can happen
1543 * because we replay the deletes before we copy in the inode item
1544 * from the log
1545 */
1546 if (!dir) {
1547 btrfs_free_path(log_path);
1548 return 0;
1549 }
1550again:
1551 range_start = 0;
1552 range_end = 0;
Chris Masond3977122009-01-05 21:25:51 -05001553 while (1) {
Chris Mason12fcfd22009-03-24 10:24:20 -04001554 if (del_all)
1555 range_end = (u64)-1;
1556 else {
1557 ret = find_dir_range(log, path, dirid, key_type,
1558 &range_start, &range_end);
1559 if (ret != 0)
1560 break;
1561 }
Chris Masone02119d2008-09-05 16:13:11 -04001562
1563 dir_key.offset = range_start;
Chris Masond3977122009-01-05 21:25:51 -05001564 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04001565 int nritems;
1566 ret = btrfs_search_slot(NULL, root, &dir_key, path,
1567 0, 0);
1568 if (ret < 0)
1569 goto out;
1570
1571 nritems = btrfs_header_nritems(path->nodes[0]);
1572 if (path->slots[0] >= nritems) {
1573 ret = btrfs_next_leaf(root, path);
1574 if (ret)
1575 break;
1576 }
1577 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1578 path->slots[0]);
1579 if (found_key.objectid != dirid ||
1580 found_key.type != dir_key.type)
1581 goto next_type;
1582
1583 if (found_key.offset > range_end)
1584 break;
1585
1586 ret = check_item_in_log(trans, root, log, path,
Chris Mason12fcfd22009-03-24 10:24:20 -04001587 log_path, dir,
1588 &found_key);
Chris Masone02119d2008-09-05 16:13:11 -04001589 BUG_ON(ret);
1590 if (found_key.offset == (u64)-1)
1591 break;
1592 dir_key.offset = found_key.offset + 1;
1593 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001594 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001595 if (range_end == (u64)-1)
1596 break;
1597 range_start = range_end + 1;
1598 }
1599
1600next_type:
1601 ret = 0;
1602 if (key_type == BTRFS_DIR_LOG_ITEM_KEY) {
1603 key_type = BTRFS_DIR_LOG_INDEX_KEY;
1604 dir_key.type = BTRFS_DIR_INDEX_KEY;
David Sterbab3b4aa72011-04-21 01:20:15 +02001605 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001606 goto again;
1607 }
1608out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001609 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001610 btrfs_free_path(log_path);
1611 iput(dir);
1612 return ret;
1613}
1614
1615/*
1616 * the process_func used to replay items from the log tree. This
1617 * gets called in two different stages. The first stage just looks
1618 * for inodes and makes sure they are all copied into the subvolume.
1619 *
1620 * The second stage copies all the other item types from the log into
1621 * the subvolume. The two stage approach is slower, but gets rid of
1622 * lots of complexity around inodes referencing other inodes that exist
1623 * only in the log (references come from either directory items or inode
1624 * back refs).
1625 */
1626static int replay_one_buffer(struct btrfs_root *log, struct extent_buffer *eb,
1627 struct walk_control *wc, u64 gen)
1628{
1629 int nritems;
1630 struct btrfs_path *path;
1631 struct btrfs_root *root = wc->replay_dest;
1632 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04001633 int level;
1634 int i;
1635 int ret;
1636
1637 btrfs_read_buffer(eb, gen);
1638
1639 level = btrfs_header_level(eb);
1640
1641 if (level != 0)
1642 return 0;
1643
1644 path = btrfs_alloc_path();
Mark Fasheh1e5063d2011-07-12 10:46:06 -07001645 if (!path)
1646 return -ENOMEM;
Chris Masone02119d2008-09-05 16:13:11 -04001647
1648 nritems = btrfs_header_nritems(eb);
1649 for (i = 0; i < nritems; i++) {
1650 btrfs_item_key_to_cpu(eb, &key, i);
Chris Masone02119d2008-09-05 16:13:11 -04001651
1652 /* inode keys are done during the first stage */
1653 if (key.type == BTRFS_INODE_ITEM_KEY &&
1654 wc->stage == LOG_WALK_REPLAY_INODES) {
Chris Masone02119d2008-09-05 16:13:11 -04001655 struct btrfs_inode_item *inode_item;
1656 u32 mode;
1657
1658 inode_item = btrfs_item_ptr(eb, i,
1659 struct btrfs_inode_item);
1660 mode = btrfs_inode_mode(eb, inode_item);
1661 if (S_ISDIR(mode)) {
1662 ret = replay_dir_deletes(wc->trans,
Chris Mason12fcfd22009-03-24 10:24:20 -04001663 root, log, path, key.objectid, 0);
Chris Masone02119d2008-09-05 16:13:11 -04001664 BUG_ON(ret);
1665 }
1666 ret = overwrite_item(wc->trans, root, path,
1667 eb, i, &key);
1668 BUG_ON(ret);
1669
Yan, Zhengc71bf092009-11-12 09:34:40 +00001670 /* for regular files, make sure corresponding
1671 * orhpan item exist. extents past the new EOF
1672 * will be truncated later by orphan cleanup.
Chris Masone02119d2008-09-05 16:13:11 -04001673 */
1674 if (S_ISREG(mode)) {
Yan, Zhengc71bf092009-11-12 09:34:40 +00001675 ret = insert_orphan_item(wc->trans, root,
1676 key.objectid);
Chris Masone02119d2008-09-05 16:13:11 -04001677 BUG_ON(ret);
Chris Masone02119d2008-09-05 16:13:11 -04001678 }
Yan, Zhengc71bf092009-11-12 09:34:40 +00001679
Chris Masone02119d2008-09-05 16:13:11 -04001680 ret = link_to_fixup_dir(wc->trans, root,
1681 path, key.objectid);
1682 BUG_ON(ret);
1683 }
1684 if (wc->stage < LOG_WALK_REPLAY_ALL)
1685 continue;
1686
1687 /* these keys are simply copied */
1688 if (key.type == BTRFS_XATTR_ITEM_KEY) {
1689 ret = overwrite_item(wc->trans, root, path,
1690 eb, i, &key);
1691 BUG_ON(ret);
1692 } else if (key.type == BTRFS_INODE_REF_KEY) {
1693 ret = add_inode_ref(wc->trans, root, log, path,
1694 eb, i, &key);
1695 BUG_ON(ret && ret != -ENOENT);
1696 } else if (key.type == BTRFS_EXTENT_DATA_KEY) {
1697 ret = replay_one_extent(wc->trans, root, path,
1698 eb, i, &key);
1699 BUG_ON(ret);
Chris Masone02119d2008-09-05 16:13:11 -04001700 } else if (key.type == BTRFS_DIR_ITEM_KEY ||
1701 key.type == BTRFS_DIR_INDEX_KEY) {
1702 ret = replay_one_dir_item(wc->trans, root, path,
1703 eb, i, &key);
1704 BUG_ON(ret);
1705 }
1706 }
1707 btrfs_free_path(path);
1708 return 0;
1709}
1710
Chris Masond3977122009-01-05 21:25:51 -05001711static noinline int walk_down_log_tree(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -04001712 struct btrfs_root *root,
1713 struct btrfs_path *path, int *level,
1714 struct walk_control *wc)
1715{
1716 u64 root_owner;
Chris Masone02119d2008-09-05 16:13:11 -04001717 u64 bytenr;
1718 u64 ptr_gen;
1719 struct extent_buffer *next;
1720 struct extent_buffer *cur;
1721 struct extent_buffer *parent;
1722 u32 blocksize;
1723 int ret = 0;
1724
1725 WARN_ON(*level < 0);
1726 WARN_ON(*level >= BTRFS_MAX_LEVEL);
1727
Chris Masond3977122009-01-05 21:25:51 -05001728 while (*level > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04001729 WARN_ON(*level < 0);
1730 WARN_ON(*level >= BTRFS_MAX_LEVEL);
1731 cur = path->nodes[*level];
1732
1733 if (btrfs_header_level(cur) != *level)
1734 WARN_ON(1);
1735
1736 if (path->slots[*level] >=
1737 btrfs_header_nritems(cur))
1738 break;
1739
1740 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
1741 ptr_gen = btrfs_node_ptr_generation(cur, path->slots[*level]);
1742 blocksize = btrfs_level_size(root, *level - 1);
1743
1744 parent = path->nodes[*level];
1745 root_owner = btrfs_header_owner(parent);
Chris Masone02119d2008-09-05 16:13:11 -04001746
1747 next = btrfs_find_create_tree_block(root, bytenr, blocksize);
liubo2a29edc2011-01-26 06:22:08 +00001748 if (!next)
1749 return -ENOMEM;
Chris Masone02119d2008-09-05 16:13:11 -04001750
Chris Masone02119d2008-09-05 16:13:11 -04001751 if (*level == 1) {
Mark Fasheh1e5063d2011-07-12 10:46:06 -07001752 ret = wc->process_func(root, next, wc, ptr_gen);
1753 if (ret)
1754 return ret;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04001755
Chris Masone02119d2008-09-05 16:13:11 -04001756 path->slots[*level]++;
1757 if (wc->free) {
1758 btrfs_read_buffer(next, ptr_gen);
1759
1760 btrfs_tree_lock(next);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001761 btrfs_set_lock_blocking(next);
Chris Masonbd681512011-07-16 15:23:14 -04001762 clean_tree_block(trans, root, next);
Chris Masone02119d2008-09-05 16:13:11 -04001763 btrfs_wait_tree_block_writeback(next);
1764 btrfs_tree_unlock(next);
1765
Chris Masone02119d2008-09-05 16:13:11 -04001766 WARN_ON(root_owner !=
1767 BTRFS_TREE_LOG_OBJECTID);
Chris Masone688b722011-10-31 20:52:39 -04001768 ret = btrfs_free_and_pin_reserved_extent(root,
Chris Masond00aff02008-09-11 15:54:42 -04001769 bytenr, blocksize);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001770 BUG_ON(ret); /* -ENOMEM or logic errors */
Chris Masone02119d2008-09-05 16:13:11 -04001771 }
1772 free_extent_buffer(next);
1773 continue;
1774 }
1775 btrfs_read_buffer(next, ptr_gen);
1776
1777 WARN_ON(*level <= 0);
1778 if (path->nodes[*level-1])
1779 free_extent_buffer(path->nodes[*level-1]);
1780 path->nodes[*level-1] = next;
1781 *level = btrfs_header_level(next);
1782 path->slots[*level] = 0;
1783 cond_resched();
1784 }
1785 WARN_ON(*level < 0);
1786 WARN_ON(*level >= BTRFS_MAX_LEVEL);
1787
Yan, Zheng4a500fd2010-05-16 10:49:59 -04001788 path->slots[*level] = btrfs_header_nritems(path->nodes[*level]);
Chris Masone02119d2008-09-05 16:13:11 -04001789
1790 cond_resched();
1791 return 0;
1792}
1793
Chris Masond3977122009-01-05 21:25:51 -05001794static noinline int walk_up_log_tree(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -04001795 struct btrfs_root *root,
1796 struct btrfs_path *path, int *level,
1797 struct walk_control *wc)
1798{
1799 u64 root_owner;
Chris Masone02119d2008-09-05 16:13:11 -04001800 int i;
1801 int slot;
1802 int ret;
1803
Chris Masond3977122009-01-05 21:25:51 -05001804 for (i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
Chris Masone02119d2008-09-05 16:13:11 -04001805 slot = path->slots[i];
Yan, Zheng4a500fd2010-05-16 10:49:59 -04001806 if (slot + 1 < btrfs_header_nritems(path->nodes[i])) {
Chris Masone02119d2008-09-05 16:13:11 -04001807 path->slots[i]++;
1808 *level = i;
1809 WARN_ON(*level == 0);
1810 return 0;
1811 } else {
Zheng Yan31840ae2008-09-23 13:14:14 -04001812 struct extent_buffer *parent;
1813 if (path->nodes[*level] == root->node)
1814 parent = path->nodes[*level];
1815 else
1816 parent = path->nodes[*level + 1];
1817
1818 root_owner = btrfs_header_owner(parent);
Mark Fasheh1e5063d2011-07-12 10:46:06 -07001819 ret = wc->process_func(root, path->nodes[*level], wc,
Chris Masone02119d2008-09-05 16:13:11 -04001820 btrfs_header_generation(path->nodes[*level]));
Mark Fasheh1e5063d2011-07-12 10:46:06 -07001821 if (ret)
1822 return ret;
1823
Chris Masone02119d2008-09-05 16:13:11 -04001824 if (wc->free) {
1825 struct extent_buffer *next;
1826
1827 next = path->nodes[*level];
1828
1829 btrfs_tree_lock(next);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001830 btrfs_set_lock_blocking(next);
Chris Masonbd681512011-07-16 15:23:14 -04001831 clean_tree_block(trans, root, next);
Chris Masone02119d2008-09-05 16:13:11 -04001832 btrfs_wait_tree_block_writeback(next);
1833 btrfs_tree_unlock(next);
1834
Chris Masone02119d2008-09-05 16:13:11 -04001835 WARN_ON(root_owner != BTRFS_TREE_LOG_OBJECTID);
Chris Masone688b722011-10-31 20:52:39 -04001836 ret = btrfs_free_and_pin_reserved_extent(root,
Chris Masone02119d2008-09-05 16:13:11 -04001837 path->nodes[*level]->start,
Chris Masond00aff02008-09-11 15:54:42 -04001838 path->nodes[*level]->len);
Chris Masone02119d2008-09-05 16:13:11 -04001839 BUG_ON(ret);
1840 }
1841 free_extent_buffer(path->nodes[*level]);
1842 path->nodes[*level] = NULL;
1843 *level = i + 1;
1844 }
1845 }
1846 return 1;
1847}
1848
1849/*
1850 * drop the reference count on the tree rooted at 'snap'. This traverses
1851 * the tree freeing any blocks that have a ref count of zero after being
1852 * decremented.
1853 */
1854static int walk_log_tree(struct btrfs_trans_handle *trans,
1855 struct btrfs_root *log, struct walk_control *wc)
1856{
1857 int ret = 0;
1858 int wret;
1859 int level;
1860 struct btrfs_path *path;
1861 int i;
1862 int orig_level;
1863
1864 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00001865 if (!path)
1866 return -ENOMEM;
Chris Masone02119d2008-09-05 16:13:11 -04001867
1868 level = btrfs_header_level(log->node);
1869 orig_level = level;
1870 path->nodes[level] = log->node;
1871 extent_buffer_get(log->node);
1872 path->slots[level] = 0;
1873
Chris Masond3977122009-01-05 21:25:51 -05001874 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04001875 wret = walk_down_log_tree(trans, log, path, &level, wc);
1876 if (wret > 0)
1877 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001878 if (wret < 0) {
Chris Masone02119d2008-09-05 16:13:11 -04001879 ret = wret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001880 goto out;
1881 }
Chris Masone02119d2008-09-05 16:13:11 -04001882
1883 wret = walk_up_log_tree(trans, log, path, &level, wc);
1884 if (wret > 0)
1885 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001886 if (wret < 0) {
Chris Masone02119d2008-09-05 16:13:11 -04001887 ret = wret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001888 goto out;
1889 }
Chris Masone02119d2008-09-05 16:13:11 -04001890 }
1891
1892 /* was the root node processed? if not, catch it here */
1893 if (path->nodes[orig_level]) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001894 ret = wc->process_func(log, path->nodes[orig_level], wc,
Chris Masone02119d2008-09-05 16:13:11 -04001895 btrfs_header_generation(path->nodes[orig_level]));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001896 if (ret)
1897 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001898 if (wc->free) {
1899 struct extent_buffer *next;
1900
1901 next = path->nodes[orig_level];
1902
1903 btrfs_tree_lock(next);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001904 btrfs_set_lock_blocking(next);
Chris Masonbd681512011-07-16 15:23:14 -04001905 clean_tree_block(trans, log, next);
Chris Masone02119d2008-09-05 16:13:11 -04001906 btrfs_wait_tree_block_writeback(next);
1907 btrfs_tree_unlock(next);
1908
Chris Masone02119d2008-09-05 16:13:11 -04001909 WARN_ON(log->root_key.objectid !=
1910 BTRFS_TREE_LOG_OBJECTID);
Chris Masone688b722011-10-31 20:52:39 -04001911 ret = btrfs_free_and_pin_reserved_extent(log, next->start,
Chris Masond00aff02008-09-11 15:54:42 -04001912 next->len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001913 BUG_ON(ret); /* -ENOMEM or logic errors */
Chris Masone02119d2008-09-05 16:13:11 -04001914 }
1915 }
1916
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001917out:
Chris Masone02119d2008-09-05 16:13:11 -04001918 for (i = 0; i <= orig_level; i++) {
1919 if (path->nodes[i]) {
1920 free_extent_buffer(path->nodes[i]);
1921 path->nodes[i] = NULL;
1922 }
1923 }
1924 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001925 return ret;
1926}
1927
Yan Zheng7237f182009-01-21 12:54:03 -05001928/*
1929 * helper function to update the item for a given subvolumes log root
1930 * in the tree of log roots
1931 */
1932static int update_log_root(struct btrfs_trans_handle *trans,
1933 struct btrfs_root *log)
1934{
1935 int ret;
1936
1937 if (log->log_transid == 1) {
1938 /* insert root item on the first sync */
1939 ret = btrfs_insert_root(trans, log->fs_info->log_root_tree,
1940 &log->root_key, &log->root_item);
1941 } else {
1942 ret = btrfs_update_root(trans, log->fs_info->log_root_tree,
1943 &log->root_key, &log->root_item);
1944 }
1945 return ret;
1946}
1947
Chris Mason12fcfd22009-03-24 10:24:20 -04001948static int wait_log_commit(struct btrfs_trans_handle *trans,
1949 struct btrfs_root *root, unsigned long transid)
Chris Masone02119d2008-09-05 16:13:11 -04001950{
1951 DEFINE_WAIT(wait);
Yan Zheng7237f182009-01-21 12:54:03 -05001952 int index = transid % 2;
Chris Masone02119d2008-09-05 16:13:11 -04001953
Yan Zheng7237f182009-01-21 12:54:03 -05001954 /*
1955 * we only allow two pending log transactions at a time,
1956 * so we know that if ours is more than 2 older than the
1957 * current transaction, we're done
1958 */
Chris Masone02119d2008-09-05 16:13:11 -04001959 do {
Yan Zheng7237f182009-01-21 12:54:03 -05001960 prepare_to_wait(&root->log_commit_wait[index],
1961 &wait, TASK_UNINTERRUPTIBLE);
1962 mutex_unlock(&root->log_mutex);
Chris Mason12fcfd22009-03-24 10:24:20 -04001963
1964 if (root->fs_info->last_trans_log_full_commit !=
1965 trans->transid && root->log_transid < transid + 2 &&
Yan Zheng7237f182009-01-21 12:54:03 -05001966 atomic_read(&root->log_commit[index]))
Chris Masone02119d2008-09-05 16:13:11 -04001967 schedule();
Chris Mason12fcfd22009-03-24 10:24:20 -04001968
Yan Zheng7237f182009-01-21 12:54:03 -05001969 finish_wait(&root->log_commit_wait[index], &wait);
1970 mutex_lock(&root->log_mutex);
Jan Kara6dd70ce2012-01-26 15:01:11 -05001971 } while (root->fs_info->last_trans_log_full_commit !=
1972 trans->transid && root->log_transid < transid + 2 &&
Yan Zheng7237f182009-01-21 12:54:03 -05001973 atomic_read(&root->log_commit[index]));
1974 return 0;
1975}
1976
Jeff Mahoney143bede2012-03-01 14:56:26 +01001977static void wait_for_writer(struct btrfs_trans_handle *trans,
1978 struct btrfs_root *root)
Yan Zheng7237f182009-01-21 12:54:03 -05001979{
1980 DEFINE_WAIT(wait);
Jan Kara6dd70ce2012-01-26 15:01:11 -05001981 while (root->fs_info->last_trans_log_full_commit !=
1982 trans->transid && atomic_read(&root->log_writers)) {
Yan Zheng7237f182009-01-21 12:54:03 -05001983 prepare_to_wait(&root->log_writer_wait,
1984 &wait, TASK_UNINTERRUPTIBLE);
1985 mutex_unlock(&root->log_mutex);
Chris Mason12fcfd22009-03-24 10:24:20 -04001986 if (root->fs_info->last_trans_log_full_commit !=
1987 trans->transid && atomic_read(&root->log_writers))
Yan Zheng7237f182009-01-21 12:54:03 -05001988 schedule();
1989 mutex_lock(&root->log_mutex);
1990 finish_wait(&root->log_writer_wait, &wait);
1991 }
Chris Masone02119d2008-09-05 16:13:11 -04001992}
1993
1994/*
1995 * btrfs_sync_log does sends a given tree log down to the disk and
1996 * updates the super blocks to record it. When this call is done,
Chris Mason12fcfd22009-03-24 10:24:20 -04001997 * you know that any inodes previously logged are safely on disk only
1998 * if it returns 0.
1999 *
2000 * Any other return value means you need to call btrfs_commit_transaction.
2001 * Some of the edge cases for fsyncing directories that have had unlinks
2002 * or renames done in the past mean that sometimes the only safe
2003 * fsync is to commit the whole FS. When btrfs_sync_log returns -EAGAIN,
2004 * that has happened.
Chris Masone02119d2008-09-05 16:13:11 -04002005 */
2006int btrfs_sync_log(struct btrfs_trans_handle *trans,
2007 struct btrfs_root *root)
2008{
Yan Zheng7237f182009-01-21 12:54:03 -05002009 int index1;
2010 int index2;
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002011 int mark;
Chris Masone02119d2008-09-05 16:13:11 -04002012 int ret;
Chris Masone02119d2008-09-05 16:13:11 -04002013 struct btrfs_root *log = root->log_root;
Yan Zheng7237f182009-01-21 12:54:03 -05002014 struct btrfs_root *log_root_tree = root->fs_info->log_root_tree;
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002015 unsigned long log_transid = 0;
Chris Masone02119d2008-09-05 16:13:11 -04002016
Yan Zheng7237f182009-01-21 12:54:03 -05002017 mutex_lock(&root->log_mutex);
2018 index1 = root->log_transid % 2;
2019 if (atomic_read(&root->log_commit[index1])) {
Chris Mason12fcfd22009-03-24 10:24:20 -04002020 wait_log_commit(trans, root, root->log_transid);
Yan Zheng7237f182009-01-21 12:54:03 -05002021 mutex_unlock(&root->log_mutex);
2022 return 0;
Chris Masone02119d2008-09-05 16:13:11 -04002023 }
Yan Zheng7237f182009-01-21 12:54:03 -05002024 atomic_set(&root->log_commit[index1], 1);
2025
2026 /* wait for previous tree log sync to complete */
2027 if (atomic_read(&root->log_commit[(index1 + 1) % 2]))
Chris Mason12fcfd22009-03-24 10:24:20 -04002028 wait_log_commit(trans, root, root->log_transid - 1);
Yan, Zheng86df7eb2009-10-14 09:24:59 -04002029 while (1) {
Yan Zheng7237f182009-01-21 12:54:03 -05002030 unsigned long batch = root->log_batch;
Chris Masoncd354ad2011-10-20 15:45:37 -04002031 /* when we're on an ssd, just kick the log commit out */
2032 if (!btrfs_test_opt(root, SSD) && root->log_multiple_pids) {
Yan, Zheng86df7eb2009-10-14 09:24:59 -04002033 mutex_unlock(&root->log_mutex);
2034 schedule_timeout_uninterruptible(1);
2035 mutex_lock(&root->log_mutex);
2036 }
Chris Mason12fcfd22009-03-24 10:24:20 -04002037 wait_for_writer(trans, root);
Yan Zheng7237f182009-01-21 12:54:03 -05002038 if (batch == root->log_batch)
Chris Masone02119d2008-09-05 16:13:11 -04002039 break;
2040 }
Chris Masond0c803c2008-09-11 16:17:57 -04002041
Chris Mason12fcfd22009-03-24 10:24:20 -04002042 /* bail out if we need to do a full commit */
2043 if (root->fs_info->last_trans_log_full_commit == trans->transid) {
2044 ret = -EAGAIN;
2045 mutex_unlock(&root->log_mutex);
2046 goto out;
2047 }
2048
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002049 log_transid = root->log_transid;
2050 if (log_transid % 2 == 0)
2051 mark = EXTENT_DIRTY;
2052 else
2053 mark = EXTENT_NEW;
2054
Chris Mason690587d2009-10-13 13:29:19 -04002055 /* we start IO on all the marked extents here, but we don't actually
2056 * wait for them until later.
2057 */
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002058 ret = btrfs_write_marked_extents(log, &log->dirty_log_pages, mark);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002059 if (ret) {
2060 btrfs_abort_transaction(trans, root, ret);
2061 mutex_unlock(&root->log_mutex);
2062 goto out;
2063 }
Yan Zheng7237f182009-01-21 12:54:03 -05002064
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002065 btrfs_set_root_node(&log->root_item, log->node);
Yan Zheng7237f182009-01-21 12:54:03 -05002066
2067 root->log_batch = 0;
2068 root->log_transid++;
2069 log->log_transid = root->log_transid;
Josef Bacikff782e02009-10-08 15:30:04 -04002070 root->log_start_pid = 0;
Yan Zheng7237f182009-01-21 12:54:03 -05002071 smp_mb();
2072 /*
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002073 * IO has been started, blocks of the log tree have WRITTEN flag set
2074 * in their headers. new modifications of the log will be written to
2075 * new positions. so it's safe to allow log writers to go in.
Yan Zheng7237f182009-01-21 12:54:03 -05002076 */
2077 mutex_unlock(&root->log_mutex);
2078
2079 mutex_lock(&log_root_tree->log_mutex);
2080 log_root_tree->log_batch++;
2081 atomic_inc(&log_root_tree->log_writers);
2082 mutex_unlock(&log_root_tree->log_mutex);
2083
2084 ret = update_log_root(trans, log);
Yan Zheng7237f182009-01-21 12:54:03 -05002085
2086 mutex_lock(&log_root_tree->log_mutex);
2087 if (atomic_dec_and_test(&log_root_tree->log_writers)) {
2088 smp_mb();
2089 if (waitqueue_active(&log_root_tree->log_writer_wait))
2090 wake_up(&log_root_tree->log_writer_wait);
2091 }
2092
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002093 if (ret) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002094 if (ret != -ENOSPC) {
2095 btrfs_abort_transaction(trans, root, ret);
2096 mutex_unlock(&log_root_tree->log_mutex);
2097 goto out;
2098 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002099 root->fs_info->last_trans_log_full_commit = trans->transid;
2100 btrfs_wait_marked_extents(log, &log->dirty_log_pages, mark);
2101 mutex_unlock(&log_root_tree->log_mutex);
2102 ret = -EAGAIN;
2103 goto out;
2104 }
2105
Yan Zheng7237f182009-01-21 12:54:03 -05002106 index2 = log_root_tree->log_transid % 2;
2107 if (atomic_read(&log_root_tree->log_commit[index2])) {
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002108 btrfs_wait_marked_extents(log, &log->dirty_log_pages, mark);
Chris Mason12fcfd22009-03-24 10:24:20 -04002109 wait_log_commit(trans, log_root_tree,
2110 log_root_tree->log_transid);
Yan Zheng7237f182009-01-21 12:54:03 -05002111 mutex_unlock(&log_root_tree->log_mutex);
Chris Masonb31eabd2011-01-31 16:48:24 -05002112 ret = 0;
Yan Zheng7237f182009-01-21 12:54:03 -05002113 goto out;
2114 }
2115 atomic_set(&log_root_tree->log_commit[index2], 1);
2116
Chris Mason12fcfd22009-03-24 10:24:20 -04002117 if (atomic_read(&log_root_tree->log_commit[(index2 + 1) % 2])) {
2118 wait_log_commit(trans, log_root_tree,
2119 log_root_tree->log_transid - 1);
2120 }
Yan Zheng7237f182009-01-21 12:54:03 -05002121
Chris Mason12fcfd22009-03-24 10:24:20 -04002122 wait_for_writer(trans, log_root_tree);
2123
2124 /*
2125 * now that we've moved on to the tree of log tree roots,
2126 * check the full commit flag again
2127 */
2128 if (root->fs_info->last_trans_log_full_commit == trans->transid) {
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002129 btrfs_wait_marked_extents(log, &log->dirty_log_pages, mark);
Chris Mason12fcfd22009-03-24 10:24:20 -04002130 mutex_unlock(&log_root_tree->log_mutex);
2131 ret = -EAGAIN;
2132 goto out_wake_log_root;
2133 }
Yan Zheng7237f182009-01-21 12:54:03 -05002134
2135 ret = btrfs_write_and_wait_marked_extents(log_root_tree,
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002136 &log_root_tree->dirty_log_pages,
2137 EXTENT_DIRTY | EXTENT_NEW);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002138 if (ret) {
2139 btrfs_abort_transaction(trans, root, ret);
2140 mutex_unlock(&log_root_tree->log_mutex);
2141 goto out_wake_log_root;
2142 }
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002143 btrfs_wait_marked_extents(log, &log->dirty_log_pages, mark);
Chris Masone02119d2008-09-05 16:13:11 -04002144
David Sterba6c417612011-04-13 15:41:04 +02002145 btrfs_set_super_log_root(root->fs_info->super_for_commit,
Yan Zheng7237f182009-01-21 12:54:03 -05002146 log_root_tree->node->start);
David Sterba6c417612011-04-13 15:41:04 +02002147 btrfs_set_super_log_root_level(root->fs_info->super_for_commit,
Yan Zheng7237f182009-01-21 12:54:03 -05002148 btrfs_header_level(log_root_tree->node));
Chris Masone02119d2008-09-05 16:13:11 -04002149
Yan Zheng7237f182009-01-21 12:54:03 -05002150 log_root_tree->log_batch = 0;
2151 log_root_tree->log_transid++;
Chris Masone02119d2008-09-05 16:13:11 -04002152 smp_mb();
Yan Zheng7237f182009-01-21 12:54:03 -05002153
2154 mutex_unlock(&log_root_tree->log_mutex);
2155
2156 /*
2157 * nobody else is going to jump in and write the the ctree
2158 * super here because the log_commit atomic below is protecting
2159 * us. We must be called with a transaction handle pinning
2160 * the running transaction open, so a full commit can't hop
2161 * in and cause problems either.
2162 */
Arne Jansena2de7332011-03-08 14:14:00 +01002163 btrfs_scrub_pause_super(root);
Chris Mason47226072009-10-13 12:55:09 -04002164 write_ctree_super(trans, root->fs_info->tree_root, 1);
Arne Jansena2de7332011-03-08 14:14:00 +01002165 btrfs_scrub_continue_super(root);
Chris Mason12fcfd22009-03-24 10:24:20 -04002166 ret = 0;
Yan Zheng7237f182009-01-21 12:54:03 -05002167
Chris Mason257c62e2009-10-13 13:21:08 -04002168 mutex_lock(&root->log_mutex);
2169 if (root->last_log_commit < log_transid)
2170 root->last_log_commit = log_transid;
2171 mutex_unlock(&root->log_mutex);
2172
Chris Mason12fcfd22009-03-24 10:24:20 -04002173out_wake_log_root:
Yan Zheng7237f182009-01-21 12:54:03 -05002174 atomic_set(&log_root_tree->log_commit[index2], 0);
2175 smp_mb();
2176 if (waitqueue_active(&log_root_tree->log_commit_wait[index2]))
2177 wake_up(&log_root_tree->log_commit_wait[index2]);
Chris Masone02119d2008-09-05 16:13:11 -04002178out:
Yan Zheng7237f182009-01-21 12:54:03 -05002179 atomic_set(&root->log_commit[index1], 0);
2180 smp_mb();
2181 if (waitqueue_active(&root->log_commit_wait[index1]))
2182 wake_up(&root->log_commit_wait[index1]);
Chris Masonb31eabd2011-01-31 16:48:24 -05002183 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002184}
2185
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002186static void free_log_tree(struct btrfs_trans_handle *trans,
2187 struct btrfs_root *log)
Chris Masone02119d2008-09-05 16:13:11 -04002188{
2189 int ret;
Chris Masond0c803c2008-09-11 16:17:57 -04002190 u64 start;
2191 u64 end;
Chris Masone02119d2008-09-05 16:13:11 -04002192 struct walk_control wc = {
2193 .free = 1,
2194 .process_func = process_one_buffer
2195 };
2196
Chris Masone02119d2008-09-05 16:13:11 -04002197 ret = walk_log_tree(trans, log, &wc);
2198 BUG_ON(ret);
2199
Chris Masond3977122009-01-05 21:25:51 -05002200 while (1) {
Chris Masond0c803c2008-09-11 16:17:57 -04002201 ret = find_first_extent_bit(&log->dirty_log_pages,
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002202 0, &start, &end, EXTENT_DIRTY | EXTENT_NEW);
Chris Masond0c803c2008-09-11 16:17:57 -04002203 if (ret)
2204 break;
2205
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002206 clear_extent_bits(&log->dirty_log_pages, start, end,
2207 EXTENT_DIRTY | EXTENT_NEW, GFP_NOFS);
Chris Masond0c803c2008-09-11 16:17:57 -04002208 }
2209
Yan Zheng7237f182009-01-21 12:54:03 -05002210 free_extent_buffer(log->node);
2211 kfree(log);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002212}
2213
2214/*
2215 * free all the extents used by the tree log. This should be called
2216 * at commit time of the full transaction
2217 */
2218int btrfs_free_log(struct btrfs_trans_handle *trans, struct btrfs_root *root)
2219{
2220 if (root->log_root) {
2221 free_log_tree(trans, root->log_root);
2222 root->log_root = NULL;
2223 }
2224 return 0;
2225}
2226
2227int btrfs_free_log_root_tree(struct btrfs_trans_handle *trans,
2228 struct btrfs_fs_info *fs_info)
2229{
2230 if (fs_info->log_root_tree) {
2231 free_log_tree(trans, fs_info->log_root_tree);
2232 fs_info->log_root_tree = NULL;
2233 }
Chris Masone02119d2008-09-05 16:13:11 -04002234 return 0;
2235}
2236
2237/*
Chris Masone02119d2008-09-05 16:13:11 -04002238 * If both a file and directory are logged, and unlinks or renames are
2239 * mixed in, we have a few interesting corners:
2240 *
2241 * create file X in dir Y
2242 * link file X to X.link in dir Y
2243 * fsync file X
2244 * unlink file X but leave X.link
2245 * fsync dir Y
2246 *
2247 * After a crash we would expect only X.link to exist. But file X
2248 * didn't get fsync'd again so the log has back refs for X and X.link.
2249 *
2250 * We solve this by removing directory entries and inode backrefs from the
2251 * log when a file that was logged in the current transaction is
2252 * unlinked. Any later fsync will include the updated log entries, and
2253 * we'll be able to reconstruct the proper directory items from backrefs.
2254 *
2255 * This optimizations allows us to avoid relogging the entire inode
2256 * or the entire directory.
2257 */
2258int btrfs_del_dir_entries_in_log(struct btrfs_trans_handle *trans,
2259 struct btrfs_root *root,
2260 const char *name, int name_len,
2261 struct inode *dir, u64 index)
2262{
2263 struct btrfs_root *log;
2264 struct btrfs_dir_item *di;
2265 struct btrfs_path *path;
2266 int ret;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002267 int err = 0;
Chris Masone02119d2008-09-05 16:13:11 -04002268 int bytes_del = 0;
Li Zefan33345d012011-04-20 10:31:50 +08002269 u64 dir_ino = btrfs_ino(dir);
Chris Masone02119d2008-09-05 16:13:11 -04002270
Chris Mason3a5f1d42008-09-11 15:53:37 -04002271 if (BTRFS_I(dir)->logged_trans < trans->transid)
2272 return 0;
2273
Chris Masone02119d2008-09-05 16:13:11 -04002274 ret = join_running_log_trans(root);
2275 if (ret)
2276 return 0;
2277
2278 mutex_lock(&BTRFS_I(dir)->log_mutex);
2279
2280 log = root->log_root;
2281 path = btrfs_alloc_path();
Tsutomu Itoha62f44a2011-04-25 19:43:51 -04002282 if (!path) {
2283 err = -ENOMEM;
2284 goto out_unlock;
2285 }
liubo2a29edc2011-01-26 06:22:08 +00002286
Li Zefan33345d012011-04-20 10:31:50 +08002287 di = btrfs_lookup_dir_item(trans, log, path, dir_ino,
Chris Masone02119d2008-09-05 16:13:11 -04002288 name, name_len, -1);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002289 if (IS_ERR(di)) {
2290 err = PTR_ERR(di);
2291 goto fail;
2292 }
2293 if (di) {
Chris Masone02119d2008-09-05 16:13:11 -04002294 ret = btrfs_delete_one_dir_name(trans, log, path, di);
2295 bytes_del += name_len;
2296 BUG_ON(ret);
2297 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002298 btrfs_release_path(path);
Li Zefan33345d012011-04-20 10:31:50 +08002299 di = btrfs_lookup_dir_index_item(trans, log, path, dir_ino,
Chris Masone02119d2008-09-05 16:13:11 -04002300 index, name, name_len, -1);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002301 if (IS_ERR(di)) {
2302 err = PTR_ERR(di);
2303 goto fail;
2304 }
2305 if (di) {
Chris Masone02119d2008-09-05 16:13:11 -04002306 ret = btrfs_delete_one_dir_name(trans, log, path, di);
2307 bytes_del += name_len;
2308 BUG_ON(ret);
2309 }
2310
2311 /* update the directory size in the log to reflect the names
2312 * we have removed
2313 */
2314 if (bytes_del) {
2315 struct btrfs_key key;
2316
Li Zefan33345d012011-04-20 10:31:50 +08002317 key.objectid = dir_ino;
Chris Masone02119d2008-09-05 16:13:11 -04002318 key.offset = 0;
2319 key.type = BTRFS_INODE_ITEM_KEY;
David Sterbab3b4aa72011-04-21 01:20:15 +02002320 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002321
2322 ret = btrfs_search_slot(trans, log, &key, path, 0, 1);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002323 if (ret < 0) {
2324 err = ret;
2325 goto fail;
2326 }
Chris Masone02119d2008-09-05 16:13:11 -04002327 if (ret == 0) {
2328 struct btrfs_inode_item *item;
2329 u64 i_size;
2330
2331 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
2332 struct btrfs_inode_item);
2333 i_size = btrfs_inode_size(path->nodes[0], item);
2334 if (i_size > bytes_del)
2335 i_size -= bytes_del;
2336 else
2337 i_size = 0;
2338 btrfs_set_inode_size(path->nodes[0], item, i_size);
2339 btrfs_mark_buffer_dirty(path->nodes[0]);
2340 } else
2341 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02002342 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002343 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002344fail:
Chris Masone02119d2008-09-05 16:13:11 -04002345 btrfs_free_path(path);
Tsutomu Itoha62f44a2011-04-25 19:43:51 -04002346out_unlock:
Chris Masone02119d2008-09-05 16:13:11 -04002347 mutex_unlock(&BTRFS_I(dir)->log_mutex);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002348 if (ret == -ENOSPC) {
2349 root->fs_info->last_trans_log_full_commit = trans->transid;
2350 ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002351 } else if (ret < 0)
2352 btrfs_abort_transaction(trans, root, ret);
2353
Chris Mason12fcfd22009-03-24 10:24:20 -04002354 btrfs_end_log_trans(root);
Chris Masone02119d2008-09-05 16:13:11 -04002355
Andi Kleen411fc6b2010-10-29 15:14:31 -04002356 return err;
Chris Masone02119d2008-09-05 16:13:11 -04002357}
2358
2359/* see comments for btrfs_del_dir_entries_in_log */
2360int btrfs_del_inode_ref_in_log(struct btrfs_trans_handle *trans,
2361 struct btrfs_root *root,
2362 const char *name, int name_len,
2363 struct inode *inode, u64 dirid)
2364{
2365 struct btrfs_root *log;
2366 u64 index;
2367 int ret;
2368
Chris Mason3a5f1d42008-09-11 15:53:37 -04002369 if (BTRFS_I(inode)->logged_trans < trans->transid)
2370 return 0;
2371
Chris Masone02119d2008-09-05 16:13:11 -04002372 ret = join_running_log_trans(root);
2373 if (ret)
2374 return 0;
2375 log = root->log_root;
2376 mutex_lock(&BTRFS_I(inode)->log_mutex);
2377
Li Zefan33345d012011-04-20 10:31:50 +08002378 ret = btrfs_del_inode_ref(trans, log, name, name_len, btrfs_ino(inode),
Chris Masone02119d2008-09-05 16:13:11 -04002379 dirid, &index);
2380 mutex_unlock(&BTRFS_I(inode)->log_mutex);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002381 if (ret == -ENOSPC) {
2382 root->fs_info->last_trans_log_full_commit = trans->transid;
2383 ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002384 } else if (ret < 0 && ret != -ENOENT)
2385 btrfs_abort_transaction(trans, root, ret);
Chris Mason12fcfd22009-03-24 10:24:20 -04002386 btrfs_end_log_trans(root);
Chris Masone02119d2008-09-05 16:13:11 -04002387
Chris Masone02119d2008-09-05 16:13:11 -04002388 return ret;
2389}
2390
2391/*
2392 * creates a range item in the log for 'dirid'. first_offset and
2393 * last_offset tell us which parts of the key space the log should
2394 * be considered authoritative for.
2395 */
2396static noinline int insert_dir_log_key(struct btrfs_trans_handle *trans,
2397 struct btrfs_root *log,
2398 struct btrfs_path *path,
2399 int key_type, u64 dirid,
2400 u64 first_offset, u64 last_offset)
2401{
2402 int ret;
2403 struct btrfs_key key;
2404 struct btrfs_dir_log_item *item;
2405
2406 key.objectid = dirid;
2407 key.offset = first_offset;
2408 if (key_type == BTRFS_DIR_ITEM_KEY)
2409 key.type = BTRFS_DIR_LOG_ITEM_KEY;
2410 else
2411 key.type = BTRFS_DIR_LOG_INDEX_KEY;
2412 ret = btrfs_insert_empty_item(trans, log, path, &key, sizeof(*item));
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002413 if (ret)
2414 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002415
2416 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
2417 struct btrfs_dir_log_item);
2418 btrfs_set_dir_log_end(path->nodes[0], item, last_offset);
2419 btrfs_mark_buffer_dirty(path->nodes[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02002420 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002421 return 0;
2422}
2423
2424/*
2425 * log all the items included in the current transaction for a given
2426 * directory. This also creates the range items in the log tree required
2427 * to replay anything deleted before the fsync
2428 */
2429static noinline int log_dir_items(struct btrfs_trans_handle *trans,
2430 struct btrfs_root *root, struct inode *inode,
2431 struct btrfs_path *path,
2432 struct btrfs_path *dst_path, int key_type,
2433 u64 min_offset, u64 *last_offset_ret)
2434{
2435 struct btrfs_key min_key;
2436 struct btrfs_key max_key;
2437 struct btrfs_root *log = root->log_root;
2438 struct extent_buffer *src;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002439 int err = 0;
Chris Masone02119d2008-09-05 16:13:11 -04002440 int ret;
2441 int i;
2442 int nritems;
2443 u64 first_offset = min_offset;
2444 u64 last_offset = (u64)-1;
Li Zefan33345d012011-04-20 10:31:50 +08002445 u64 ino = btrfs_ino(inode);
Chris Masone02119d2008-09-05 16:13:11 -04002446
2447 log = root->log_root;
Li Zefan33345d012011-04-20 10:31:50 +08002448 max_key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04002449 max_key.offset = (u64)-1;
2450 max_key.type = key_type;
2451
Li Zefan33345d012011-04-20 10:31:50 +08002452 min_key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04002453 min_key.type = key_type;
2454 min_key.offset = min_offset;
2455
2456 path->keep_locks = 1;
2457
2458 ret = btrfs_search_forward(root, &min_key, &max_key,
2459 path, 0, trans->transid);
2460
2461 /*
2462 * we didn't find anything from this transaction, see if there
2463 * is anything at all
2464 */
Li Zefan33345d012011-04-20 10:31:50 +08002465 if (ret != 0 || min_key.objectid != ino || min_key.type != key_type) {
2466 min_key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04002467 min_key.type = key_type;
2468 min_key.offset = (u64)-1;
David Sterbab3b4aa72011-04-21 01:20:15 +02002469 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002470 ret = btrfs_search_slot(NULL, root, &min_key, path, 0, 0);
2471 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02002472 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002473 return ret;
2474 }
Li Zefan33345d012011-04-20 10:31:50 +08002475 ret = btrfs_previous_item(root, path, ino, key_type);
Chris Masone02119d2008-09-05 16:13:11 -04002476
2477 /* if ret == 0 there are items for this type,
2478 * create a range to tell us the last key of this type.
2479 * otherwise, there are no items in this directory after
2480 * *min_offset, and we create a range to indicate that.
2481 */
2482 if (ret == 0) {
2483 struct btrfs_key tmp;
2484 btrfs_item_key_to_cpu(path->nodes[0], &tmp,
2485 path->slots[0]);
Chris Masond3977122009-01-05 21:25:51 -05002486 if (key_type == tmp.type)
Chris Masone02119d2008-09-05 16:13:11 -04002487 first_offset = max(min_offset, tmp.offset) + 1;
Chris Masone02119d2008-09-05 16:13:11 -04002488 }
2489 goto done;
2490 }
2491
2492 /* go backward to find any previous key */
Li Zefan33345d012011-04-20 10:31:50 +08002493 ret = btrfs_previous_item(root, path, ino, key_type);
Chris Masone02119d2008-09-05 16:13:11 -04002494 if (ret == 0) {
2495 struct btrfs_key tmp;
2496 btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]);
2497 if (key_type == tmp.type) {
2498 first_offset = tmp.offset;
2499 ret = overwrite_item(trans, log, dst_path,
2500 path->nodes[0], path->slots[0],
2501 &tmp);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002502 if (ret) {
2503 err = ret;
2504 goto done;
2505 }
Chris Masone02119d2008-09-05 16:13:11 -04002506 }
2507 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002508 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002509
2510 /* find the first key from this transaction again */
2511 ret = btrfs_search_slot(NULL, root, &min_key, path, 0, 0);
2512 if (ret != 0) {
2513 WARN_ON(1);
2514 goto done;
2515 }
2516
2517 /*
2518 * we have a block from this transaction, log every item in it
2519 * from our directory
2520 */
Chris Masond3977122009-01-05 21:25:51 -05002521 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04002522 struct btrfs_key tmp;
2523 src = path->nodes[0];
2524 nritems = btrfs_header_nritems(src);
2525 for (i = path->slots[0]; i < nritems; i++) {
2526 btrfs_item_key_to_cpu(src, &min_key, i);
2527
Li Zefan33345d012011-04-20 10:31:50 +08002528 if (min_key.objectid != ino || min_key.type != key_type)
Chris Masone02119d2008-09-05 16:13:11 -04002529 goto done;
2530 ret = overwrite_item(trans, log, dst_path, src, i,
2531 &min_key);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002532 if (ret) {
2533 err = ret;
2534 goto done;
2535 }
Chris Masone02119d2008-09-05 16:13:11 -04002536 }
2537 path->slots[0] = nritems;
2538
2539 /*
2540 * look ahead to the next item and see if it is also
2541 * from this directory and from this transaction
2542 */
2543 ret = btrfs_next_leaf(root, path);
2544 if (ret == 1) {
2545 last_offset = (u64)-1;
2546 goto done;
2547 }
2548 btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]);
Li Zefan33345d012011-04-20 10:31:50 +08002549 if (tmp.objectid != ino || tmp.type != key_type) {
Chris Masone02119d2008-09-05 16:13:11 -04002550 last_offset = (u64)-1;
2551 goto done;
2552 }
2553 if (btrfs_header_generation(path->nodes[0]) != trans->transid) {
2554 ret = overwrite_item(trans, log, dst_path,
2555 path->nodes[0], path->slots[0],
2556 &tmp);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002557 if (ret)
2558 err = ret;
2559 else
2560 last_offset = tmp.offset;
Chris Masone02119d2008-09-05 16:13:11 -04002561 goto done;
2562 }
2563 }
2564done:
David Sterbab3b4aa72011-04-21 01:20:15 +02002565 btrfs_release_path(path);
2566 btrfs_release_path(dst_path);
Chris Masone02119d2008-09-05 16:13:11 -04002567
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002568 if (err == 0) {
2569 *last_offset_ret = last_offset;
2570 /*
2571 * insert the log range keys to indicate where the log
2572 * is valid
2573 */
2574 ret = insert_dir_log_key(trans, log, path, key_type,
Li Zefan33345d012011-04-20 10:31:50 +08002575 ino, first_offset, last_offset);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002576 if (ret)
2577 err = ret;
2578 }
2579 return err;
Chris Masone02119d2008-09-05 16:13:11 -04002580}
2581
2582/*
2583 * logging directories is very similar to logging inodes, We find all the items
2584 * from the current transaction and write them to the log.
2585 *
2586 * The recovery code scans the directory in the subvolume, and if it finds a
2587 * key in the range logged that is not present in the log tree, then it means
2588 * that dir entry was unlinked during the transaction.
2589 *
2590 * In order for that scan to work, we must include one key smaller than
2591 * the smallest logged by this transaction and one key larger than the largest
2592 * key logged by this transaction.
2593 */
2594static noinline int log_directory_changes(struct btrfs_trans_handle *trans,
2595 struct btrfs_root *root, struct inode *inode,
2596 struct btrfs_path *path,
2597 struct btrfs_path *dst_path)
2598{
2599 u64 min_key;
2600 u64 max_key;
2601 int ret;
2602 int key_type = BTRFS_DIR_ITEM_KEY;
2603
2604again:
2605 min_key = 0;
2606 max_key = 0;
Chris Masond3977122009-01-05 21:25:51 -05002607 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04002608 ret = log_dir_items(trans, root, inode, path,
2609 dst_path, key_type, min_key,
2610 &max_key);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002611 if (ret)
2612 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002613 if (max_key == (u64)-1)
2614 break;
2615 min_key = max_key + 1;
2616 }
2617
2618 if (key_type == BTRFS_DIR_ITEM_KEY) {
2619 key_type = BTRFS_DIR_INDEX_KEY;
2620 goto again;
2621 }
2622 return 0;
2623}
2624
2625/*
2626 * a helper function to drop items from the log before we relog an
2627 * inode. max_key_type indicates the highest item type to remove.
2628 * This cannot be run for file data extents because it does not
2629 * free the extents they point to.
2630 */
2631static int drop_objectid_items(struct btrfs_trans_handle *trans,
2632 struct btrfs_root *log,
2633 struct btrfs_path *path,
2634 u64 objectid, int max_key_type)
2635{
2636 int ret;
2637 struct btrfs_key key;
2638 struct btrfs_key found_key;
2639
2640 key.objectid = objectid;
2641 key.type = max_key_type;
2642 key.offset = (u64)-1;
2643
Chris Masond3977122009-01-05 21:25:51 -05002644 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04002645 ret = btrfs_search_slot(trans, log, &key, path, -1, 1);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002646 BUG_ON(ret == 0);
2647 if (ret < 0)
Chris Masone02119d2008-09-05 16:13:11 -04002648 break;
2649
2650 if (path->slots[0] == 0)
2651 break;
2652
2653 path->slots[0]--;
2654 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
2655 path->slots[0]);
2656
2657 if (found_key.objectid != objectid)
2658 break;
2659
2660 ret = btrfs_del_item(trans, log, path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00002661 if (ret)
2662 break;
David Sterbab3b4aa72011-04-21 01:20:15 +02002663 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002664 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002665 btrfs_release_path(path);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002666 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002667}
2668
Chris Mason31ff1cd2008-09-11 16:17:57 -04002669static noinline int copy_items(struct btrfs_trans_handle *trans,
2670 struct btrfs_root *log,
2671 struct btrfs_path *dst_path,
2672 struct extent_buffer *src,
2673 int start_slot, int nr, int inode_only)
2674{
2675 unsigned long src_offset;
2676 unsigned long dst_offset;
2677 struct btrfs_file_extent_item *extent;
2678 struct btrfs_inode_item *inode_item;
2679 int ret;
2680 struct btrfs_key *ins_keys;
2681 u32 *ins_sizes;
2682 char *ins_data;
2683 int i;
Chris Masond20f7042008-12-08 16:58:54 -05002684 struct list_head ordered_sums;
2685
2686 INIT_LIST_HEAD(&ordered_sums);
Chris Mason31ff1cd2008-09-11 16:17:57 -04002687
2688 ins_data = kmalloc(nr * sizeof(struct btrfs_key) +
2689 nr * sizeof(u32), GFP_NOFS);
liubo2a29edc2011-01-26 06:22:08 +00002690 if (!ins_data)
2691 return -ENOMEM;
2692
Chris Mason31ff1cd2008-09-11 16:17:57 -04002693 ins_sizes = (u32 *)ins_data;
2694 ins_keys = (struct btrfs_key *)(ins_data + nr * sizeof(u32));
2695
2696 for (i = 0; i < nr; i++) {
2697 ins_sizes[i] = btrfs_item_size_nr(src, i + start_slot);
2698 btrfs_item_key_to_cpu(src, ins_keys + i, i + start_slot);
2699 }
2700 ret = btrfs_insert_empty_items(trans, log, dst_path,
2701 ins_keys, ins_sizes, nr);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002702 if (ret) {
2703 kfree(ins_data);
2704 return ret;
2705 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04002706
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002707 for (i = 0; i < nr; i++, dst_path->slots[0]++) {
Chris Mason31ff1cd2008-09-11 16:17:57 -04002708 dst_offset = btrfs_item_ptr_offset(dst_path->nodes[0],
2709 dst_path->slots[0]);
2710
2711 src_offset = btrfs_item_ptr_offset(src, start_slot + i);
2712
2713 copy_extent_buffer(dst_path->nodes[0], src, dst_offset,
2714 src_offset, ins_sizes[i]);
2715
2716 if (inode_only == LOG_INODE_EXISTS &&
2717 ins_keys[i].type == BTRFS_INODE_ITEM_KEY) {
2718 inode_item = btrfs_item_ptr(dst_path->nodes[0],
2719 dst_path->slots[0],
2720 struct btrfs_inode_item);
2721 btrfs_set_inode_size(dst_path->nodes[0], inode_item, 0);
2722
2723 /* set the generation to zero so the recover code
2724 * can tell the difference between an logging
2725 * just to say 'this inode exists' and a logging
2726 * to say 'update this inode with these values'
2727 */
2728 btrfs_set_inode_generation(dst_path->nodes[0],
2729 inode_item, 0);
2730 }
2731 /* take a reference on file data extents so that truncates
2732 * or deletes of this inode don't have to relog the inode
2733 * again
2734 */
2735 if (btrfs_key_type(ins_keys + i) == BTRFS_EXTENT_DATA_KEY) {
2736 int found_type;
2737 extent = btrfs_item_ptr(src, start_slot + i,
2738 struct btrfs_file_extent_item);
2739
liubo8e531cd2011-05-06 10:36:09 +08002740 if (btrfs_file_extent_generation(src, extent) < trans->transid)
2741 continue;
2742
Chris Mason31ff1cd2008-09-11 16:17:57 -04002743 found_type = btrfs_file_extent_type(src, extent);
Yan Zhengd899e052008-10-30 14:25:28 -04002744 if (found_type == BTRFS_FILE_EXTENT_REG ||
2745 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002746 u64 ds, dl, cs, cl;
2747 ds = btrfs_file_extent_disk_bytenr(src,
2748 extent);
2749 /* ds == 0 is a hole */
2750 if (ds == 0)
2751 continue;
2752
2753 dl = btrfs_file_extent_disk_num_bytes(src,
2754 extent);
2755 cs = btrfs_file_extent_offset(src, extent);
2756 cl = btrfs_file_extent_num_bytes(src,
Joe Perchesa419aef2009-08-18 11:18:35 -07002757 extent);
Chris Mason580afd72008-12-08 19:15:39 -05002758 if (btrfs_file_extent_compression(src,
2759 extent)) {
2760 cs = 0;
2761 cl = dl;
2762 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002763
2764 ret = btrfs_lookup_csums_range(
2765 log->fs_info->csum_root,
2766 ds + cs, ds + cs + cl - 1,
Arne Jansena2de7332011-03-08 14:14:00 +01002767 &ordered_sums, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002768 BUG_ON(ret);
Chris Mason31ff1cd2008-09-11 16:17:57 -04002769 }
2770 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04002771 }
2772
2773 btrfs_mark_buffer_dirty(dst_path->nodes[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02002774 btrfs_release_path(dst_path);
Chris Mason31ff1cd2008-09-11 16:17:57 -04002775 kfree(ins_data);
Chris Masond20f7042008-12-08 16:58:54 -05002776
2777 /*
2778 * we have to do this after the loop above to avoid changing the
2779 * log tree while trying to change the log tree.
2780 */
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002781 ret = 0;
Chris Masond3977122009-01-05 21:25:51 -05002782 while (!list_empty(&ordered_sums)) {
Chris Masond20f7042008-12-08 16:58:54 -05002783 struct btrfs_ordered_sum *sums = list_entry(ordered_sums.next,
2784 struct btrfs_ordered_sum,
2785 list);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002786 if (!ret)
2787 ret = btrfs_csum_file_blocks(trans, log, sums);
Chris Masond20f7042008-12-08 16:58:54 -05002788 list_del(&sums->list);
2789 kfree(sums);
2790 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002791 return ret;
Chris Mason31ff1cd2008-09-11 16:17:57 -04002792}
2793
Chris Masone02119d2008-09-05 16:13:11 -04002794/* log a single inode in the tree log.
2795 * At least one parent directory for this inode must exist in the tree
2796 * or be logged already.
2797 *
2798 * Any items from this inode changed by the current transaction are copied
2799 * to the log tree. An extra reference is taken on any extents in this
2800 * file, allowing us to avoid a whole pile of corner cases around logging
2801 * blocks that have been removed from the tree.
2802 *
2803 * See LOG_INODE_ALL and related defines for a description of what inode_only
2804 * does.
2805 *
2806 * This handles both files and directories.
2807 */
Chris Mason12fcfd22009-03-24 10:24:20 -04002808static int btrfs_log_inode(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -04002809 struct btrfs_root *root, struct inode *inode,
2810 int inode_only)
2811{
2812 struct btrfs_path *path;
2813 struct btrfs_path *dst_path;
2814 struct btrfs_key min_key;
2815 struct btrfs_key max_key;
2816 struct btrfs_root *log = root->log_root;
Chris Mason31ff1cd2008-09-11 16:17:57 -04002817 struct extent_buffer *src = NULL;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002818 int err = 0;
Chris Masone02119d2008-09-05 16:13:11 -04002819 int ret;
Chris Mason3a5f1d42008-09-11 15:53:37 -04002820 int nritems;
Chris Mason31ff1cd2008-09-11 16:17:57 -04002821 int ins_start_slot = 0;
2822 int ins_nr;
Li Zefan33345d012011-04-20 10:31:50 +08002823 u64 ino = btrfs_ino(inode);
Chris Masone02119d2008-09-05 16:13:11 -04002824
2825 log = root->log_root;
2826
2827 path = btrfs_alloc_path();
Tsutomu Itoh5df67082011-02-01 09:17:35 +00002828 if (!path)
2829 return -ENOMEM;
Chris Masone02119d2008-09-05 16:13:11 -04002830 dst_path = btrfs_alloc_path();
Tsutomu Itoh5df67082011-02-01 09:17:35 +00002831 if (!dst_path) {
2832 btrfs_free_path(path);
2833 return -ENOMEM;
2834 }
Chris Masone02119d2008-09-05 16:13:11 -04002835
Li Zefan33345d012011-04-20 10:31:50 +08002836 min_key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04002837 min_key.type = BTRFS_INODE_ITEM_KEY;
2838 min_key.offset = 0;
2839
Li Zefan33345d012011-04-20 10:31:50 +08002840 max_key.objectid = ino;
Chris Mason12fcfd22009-03-24 10:24:20 -04002841
2842 /* today the code can only do partial logging of directories */
2843 if (!S_ISDIR(inode->i_mode))
2844 inode_only = LOG_INODE_ALL;
2845
Chris Masone02119d2008-09-05 16:13:11 -04002846 if (inode_only == LOG_INODE_EXISTS || S_ISDIR(inode->i_mode))
2847 max_key.type = BTRFS_XATTR_ITEM_KEY;
2848 else
2849 max_key.type = (u8)-1;
2850 max_key.offset = (u64)-1;
2851
Miao Xie16cdcec2011-04-22 18:12:22 +08002852 ret = btrfs_commit_inode_delayed_items(trans, inode);
2853 if (ret) {
2854 btrfs_free_path(path);
2855 btrfs_free_path(dst_path);
2856 return ret;
2857 }
2858
Chris Masone02119d2008-09-05 16:13:11 -04002859 mutex_lock(&BTRFS_I(inode)->log_mutex);
2860
2861 /*
2862 * a brute force approach to making sure we get the most uptodate
2863 * copies of everything.
2864 */
2865 if (S_ISDIR(inode->i_mode)) {
2866 int max_key_type = BTRFS_DIR_LOG_INDEX_KEY;
2867
2868 if (inode_only == LOG_INODE_EXISTS)
2869 max_key_type = BTRFS_XATTR_ITEM_KEY;
Li Zefan33345d012011-04-20 10:31:50 +08002870 ret = drop_objectid_items(trans, log, path, ino, max_key_type);
Chris Masone02119d2008-09-05 16:13:11 -04002871 } else {
2872 ret = btrfs_truncate_inode_items(trans, log, inode, 0, 0);
2873 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002874 if (ret) {
2875 err = ret;
2876 goto out_unlock;
2877 }
Chris Masone02119d2008-09-05 16:13:11 -04002878 path->keep_locks = 1;
2879
Chris Masond3977122009-01-05 21:25:51 -05002880 while (1) {
Chris Mason31ff1cd2008-09-11 16:17:57 -04002881 ins_nr = 0;
Chris Masone02119d2008-09-05 16:13:11 -04002882 ret = btrfs_search_forward(root, &min_key, &max_key,
2883 path, 0, trans->transid);
2884 if (ret != 0)
2885 break;
Chris Mason3a5f1d42008-09-11 15:53:37 -04002886again:
Chris Mason31ff1cd2008-09-11 16:17:57 -04002887 /* note, ins_nr might be > 0 here, cleanup outside the loop */
Li Zefan33345d012011-04-20 10:31:50 +08002888 if (min_key.objectid != ino)
Chris Masone02119d2008-09-05 16:13:11 -04002889 break;
2890 if (min_key.type > max_key.type)
2891 break;
Chris Mason31ff1cd2008-09-11 16:17:57 -04002892
Chris Masone02119d2008-09-05 16:13:11 -04002893 src = path->nodes[0];
Chris Mason31ff1cd2008-09-11 16:17:57 -04002894 if (ins_nr && ins_start_slot + ins_nr == path->slots[0]) {
2895 ins_nr++;
2896 goto next_slot;
2897 } else if (!ins_nr) {
2898 ins_start_slot = path->slots[0];
2899 ins_nr = 1;
2900 goto next_slot;
Chris Masone02119d2008-09-05 16:13:11 -04002901 }
2902
Chris Mason31ff1cd2008-09-11 16:17:57 -04002903 ret = copy_items(trans, log, dst_path, src, ins_start_slot,
2904 ins_nr, inode_only);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002905 if (ret) {
2906 err = ret;
2907 goto out_unlock;
2908 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04002909 ins_nr = 1;
2910 ins_start_slot = path->slots[0];
2911next_slot:
Chris Masone02119d2008-09-05 16:13:11 -04002912
Chris Mason3a5f1d42008-09-11 15:53:37 -04002913 nritems = btrfs_header_nritems(path->nodes[0]);
2914 path->slots[0]++;
2915 if (path->slots[0] < nritems) {
2916 btrfs_item_key_to_cpu(path->nodes[0], &min_key,
2917 path->slots[0]);
2918 goto again;
2919 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04002920 if (ins_nr) {
2921 ret = copy_items(trans, log, dst_path, src,
2922 ins_start_slot,
2923 ins_nr, inode_only);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002924 if (ret) {
2925 err = ret;
2926 goto out_unlock;
2927 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04002928 ins_nr = 0;
2929 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002930 btrfs_release_path(path);
Chris Mason3a5f1d42008-09-11 15:53:37 -04002931
Chris Masone02119d2008-09-05 16:13:11 -04002932 if (min_key.offset < (u64)-1)
2933 min_key.offset++;
2934 else if (min_key.type < (u8)-1)
2935 min_key.type++;
2936 else if (min_key.objectid < (u64)-1)
2937 min_key.objectid++;
2938 else
2939 break;
2940 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04002941 if (ins_nr) {
2942 ret = copy_items(trans, log, dst_path, src,
2943 ins_start_slot,
2944 ins_nr, inode_only);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002945 if (ret) {
2946 err = ret;
2947 goto out_unlock;
2948 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04002949 ins_nr = 0;
2950 }
2951 WARN_ON(ins_nr);
Chris Mason9623f9a2008-09-11 17:42:42 -04002952 if (inode_only == LOG_INODE_ALL && S_ISDIR(inode->i_mode)) {
David Sterbab3b4aa72011-04-21 01:20:15 +02002953 btrfs_release_path(path);
2954 btrfs_release_path(dst_path);
Chris Masone02119d2008-09-05 16:13:11 -04002955 ret = log_directory_changes(trans, root, inode, path, dst_path);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002956 if (ret) {
2957 err = ret;
2958 goto out_unlock;
2959 }
Chris Masone02119d2008-09-05 16:13:11 -04002960 }
Chris Mason3a5f1d42008-09-11 15:53:37 -04002961 BTRFS_I(inode)->logged_trans = trans->transid;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002962out_unlock:
Chris Masone02119d2008-09-05 16:13:11 -04002963 mutex_unlock(&BTRFS_I(inode)->log_mutex);
2964
2965 btrfs_free_path(path);
2966 btrfs_free_path(dst_path);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002967 return err;
Chris Masone02119d2008-09-05 16:13:11 -04002968}
2969
Chris Mason12fcfd22009-03-24 10:24:20 -04002970/*
2971 * follow the dentry parent pointers up the chain and see if any
2972 * of the directories in it require a full commit before they can
2973 * be logged. Returns zero if nothing special needs to be done or 1 if
2974 * a full commit is required.
2975 */
2976static noinline int check_parent_dirs_for_sync(struct btrfs_trans_handle *trans,
2977 struct inode *inode,
2978 struct dentry *parent,
2979 struct super_block *sb,
2980 u64 last_committed)
Chris Masone02119d2008-09-05 16:13:11 -04002981{
Chris Mason12fcfd22009-03-24 10:24:20 -04002982 int ret = 0;
2983 struct btrfs_root *root;
Josef Bacik6a912212010-11-20 09:48:00 +00002984 struct dentry *old_parent = NULL;
Chris Masone02119d2008-09-05 16:13:11 -04002985
Chris Masonaf4176b2009-03-24 10:24:31 -04002986 /*
2987 * for regular files, if its inode is already on disk, we don't
2988 * have to worry about the parents at all. This is because
2989 * we can use the last_unlink_trans field to record renames
2990 * and other fun in this file.
2991 */
2992 if (S_ISREG(inode->i_mode) &&
2993 BTRFS_I(inode)->generation <= last_committed &&
2994 BTRFS_I(inode)->last_unlink_trans <= last_committed)
2995 goto out;
2996
Chris Mason12fcfd22009-03-24 10:24:20 -04002997 if (!S_ISDIR(inode->i_mode)) {
2998 if (!parent || !parent->d_inode || sb != parent->d_inode->i_sb)
2999 goto out;
3000 inode = parent->d_inode;
3001 }
3002
3003 while (1) {
3004 BTRFS_I(inode)->logged_trans = trans->transid;
3005 smp_mb();
3006
3007 if (BTRFS_I(inode)->last_unlink_trans > last_committed) {
3008 root = BTRFS_I(inode)->root;
3009
3010 /*
3011 * make sure any commits to the log are forced
3012 * to be full commits
3013 */
3014 root->fs_info->last_trans_log_full_commit =
3015 trans->transid;
3016 ret = 1;
3017 break;
3018 }
3019
3020 if (!parent || !parent->d_inode || sb != parent->d_inode->i_sb)
3021 break;
3022
Yan, Zheng76dda932009-09-21 16:00:26 -04003023 if (IS_ROOT(parent))
Chris Mason12fcfd22009-03-24 10:24:20 -04003024 break;
3025
Josef Bacik6a912212010-11-20 09:48:00 +00003026 parent = dget_parent(parent);
3027 dput(old_parent);
3028 old_parent = parent;
Chris Mason12fcfd22009-03-24 10:24:20 -04003029 inode = parent->d_inode;
3030
3031 }
Josef Bacik6a912212010-11-20 09:48:00 +00003032 dput(old_parent);
Chris Mason12fcfd22009-03-24 10:24:20 -04003033out:
Chris Masone02119d2008-09-05 16:13:11 -04003034 return ret;
3035}
3036
Chris Mason257c62e2009-10-13 13:21:08 -04003037static int inode_in_log(struct btrfs_trans_handle *trans,
3038 struct inode *inode)
3039{
3040 struct btrfs_root *root = BTRFS_I(inode)->root;
3041 int ret = 0;
3042
3043 mutex_lock(&root->log_mutex);
3044 if (BTRFS_I(inode)->logged_trans == trans->transid &&
3045 BTRFS_I(inode)->last_sub_trans <= root->last_log_commit)
3046 ret = 1;
3047 mutex_unlock(&root->log_mutex);
3048 return ret;
3049}
3050
3051
Chris Masone02119d2008-09-05 16:13:11 -04003052/*
3053 * helper function around btrfs_log_inode to make sure newly created
3054 * parent directories also end up in the log. A minimal inode and backref
3055 * only logging is done of any parent directories that are older than
3056 * the last committed transaction
3057 */
Chris Mason12fcfd22009-03-24 10:24:20 -04003058int btrfs_log_inode_parent(struct btrfs_trans_handle *trans,
3059 struct btrfs_root *root, struct inode *inode,
3060 struct dentry *parent, int exists_only)
Chris Masone02119d2008-09-05 16:13:11 -04003061{
Chris Mason12fcfd22009-03-24 10:24:20 -04003062 int inode_only = exists_only ? LOG_INODE_EXISTS : LOG_INODE_ALL;
Chris Masone02119d2008-09-05 16:13:11 -04003063 struct super_block *sb;
Josef Bacik6a912212010-11-20 09:48:00 +00003064 struct dentry *old_parent = NULL;
Chris Mason12fcfd22009-03-24 10:24:20 -04003065 int ret = 0;
3066 u64 last_committed = root->fs_info->last_trans_committed;
3067
3068 sb = inode->i_sb;
3069
Sage Weil3a5e1402009-04-02 16:49:40 -04003070 if (btrfs_test_opt(root, NOTREELOG)) {
3071 ret = 1;
3072 goto end_no_trans;
3073 }
3074
Chris Mason12fcfd22009-03-24 10:24:20 -04003075 if (root->fs_info->last_trans_log_full_commit >
3076 root->fs_info->last_trans_committed) {
3077 ret = 1;
3078 goto end_no_trans;
3079 }
3080
Yan, Zheng76dda932009-09-21 16:00:26 -04003081 if (root != BTRFS_I(inode)->root ||
3082 btrfs_root_refs(&root->root_item) == 0) {
3083 ret = 1;
3084 goto end_no_trans;
3085 }
3086
Chris Mason12fcfd22009-03-24 10:24:20 -04003087 ret = check_parent_dirs_for_sync(trans, inode, parent,
3088 sb, last_committed);
3089 if (ret)
3090 goto end_no_trans;
Chris Masone02119d2008-09-05 16:13:11 -04003091
Chris Mason257c62e2009-10-13 13:21:08 -04003092 if (inode_in_log(trans, inode)) {
3093 ret = BTRFS_NO_LOG_SYNC;
3094 goto end_no_trans;
3095 }
3096
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003097 ret = start_log_trans(trans, root);
3098 if (ret)
3099 goto end_trans;
Chris Mason12fcfd22009-03-24 10:24:20 -04003100
3101 ret = btrfs_log_inode(trans, root, inode, inode_only);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003102 if (ret)
3103 goto end_trans;
Chris Mason12fcfd22009-03-24 10:24:20 -04003104
Chris Masonaf4176b2009-03-24 10:24:31 -04003105 /*
3106 * for regular files, if its inode is already on disk, we don't
3107 * have to worry about the parents at all. This is because
3108 * we can use the last_unlink_trans field to record renames
3109 * and other fun in this file.
3110 */
3111 if (S_ISREG(inode->i_mode) &&
3112 BTRFS_I(inode)->generation <= last_committed &&
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003113 BTRFS_I(inode)->last_unlink_trans <= last_committed) {
3114 ret = 0;
3115 goto end_trans;
3116 }
Chris Masonaf4176b2009-03-24 10:24:31 -04003117
3118 inode_only = LOG_INODE_EXISTS;
Chris Masond3977122009-01-05 21:25:51 -05003119 while (1) {
Chris Mason12fcfd22009-03-24 10:24:20 -04003120 if (!parent || !parent->d_inode || sb != parent->d_inode->i_sb)
Chris Masone02119d2008-09-05 16:13:11 -04003121 break;
3122
Chris Mason12fcfd22009-03-24 10:24:20 -04003123 inode = parent->d_inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04003124 if (root != BTRFS_I(inode)->root)
3125 break;
3126
Chris Mason12fcfd22009-03-24 10:24:20 -04003127 if (BTRFS_I(inode)->generation >
3128 root->fs_info->last_trans_committed) {
3129 ret = btrfs_log_inode(trans, root, inode, inode_only);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003130 if (ret)
3131 goto end_trans;
Chris Mason12fcfd22009-03-24 10:24:20 -04003132 }
Yan, Zheng76dda932009-09-21 16:00:26 -04003133 if (IS_ROOT(parent))
Chris Masone02119d2008-09-05 16:13:11 -04003134 break;
Chris Mason12fcfd22009-03-24 10:24:20 -04003135
Josef Bacik6a912212010-11-20 09:48:00 +00003136 parent = dget_parent(parent);
3137 dput(old_parent);
3138 old_parent = parent;
Chris Masone02119d2008-09-05 16:13:11 -04003139 }
Chris Mason12fcfd22009-03-24 10:24:20 -04003140 ret = 0;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003141end_trans:
Josef Bacik6a912212010-11-20 09:48:00 +00003142 dput(old_parent);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003143 if (ret < 0) {
3144 BUG_ON(ret != -ENOSPC);
3145 root->fs_info->last_trans_log_full_commit = trans->transid;
3146 ret = 1;
3147 }
Chris Mason12fcfd22009-03-24 10:24:20 -04003148 btrfs_end_log_trans(root);
3149end_no_trans:
3150 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04003151}
3152
3153/*
3154 * it is not safe to log dentry if the chunk root has added new
3155 * chunks. This returns 0 if the dentry was logged, and 1 otherwise.
3156 * If this returns 1, you must commit the transaction to safely get your
3157 * data on disk.
3158 */
3159int btrfs_log_dentry_safe(struct btrfs_trans_handle *trans,
3160 struct btrfs_root *root, struct dentry *dentry)
3161{
Josef Bacik6a912212010-11-20 09:48:00 +00003162 struct dentry *parent = dget_parent(dentry);
3163 int ret;
3164
3165 ret = btrfs_log_inode_parent(trans, root, dentry->d_inode, parent, 0);
3166 dput(parent);
3167
3168 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04003169}
3170
3171/*
3172 * should be called during mount to recover any replay any log trees
3173 * from the FS
3174 */
3175int btrfs_recover_log_trees(struct btrfs_root *log_root_tree)
3176{
3177 int ret;
3178 struct btrfs_path *path;
3179 struct btrfs_trans_handle *trans;
3180 struct btrfs_key key;
3181 struct btrfs_key found_key;
3182 struct btrfs_key tmp_key;
3183 struct btrfs_root *log;
3184 struct btrfs_fs_info *fs_info = log_root_tree->fs_info;
3185 struct walk_control wc = {
3186 .process_func = process_one_buffer,
3187 .stage = 0,
3188 };
3189
Chris Masone02119d2008-09-05 16:13:11 -04003190 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003191 if (!path)
3192 return -ENOMEM;
3193
3194 fs_info->log_root_recovering = 1;
Chris Masone02119d2008-09-05 16:13:11 -04003195
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003196 trans = btrfs_start_transaction(fs_info->tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003197 if (IS_ERR(trans)) {
3198 ret = PTR_ERR(trans);
3199 goto error;
3200 }
Chris Masone02119d2008-09-05 16:13:11 -04003201
3202 wc.trans = trans;
3203 wc.pin = 1;
3204
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003205 ret = walk_log_tree(trans, log_root_tree, &wc);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003206 if (ret) {
3207 btrfs_error(fs_info, ret, "Failed to pin buffers while "
3208 "recovering log root tree.");
3209 goto error;
3210 }
Chris Masone02119d2008-09-05 16:13:11 -04003211
3212again:
3213 key.objectid = BTRFS_TREE_LOG_OBJECTID;
3214 key.offset = (u64)-1;
3215 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
3216
Chris Masond3977122009-01-05 21:25:51 -05003217 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04003218 ret = btrfs_search_slot(NULL, log_root_tree, &key, path, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003219
3220 if (ret < 0) {
3221 btrfs_error(fs_info, ret,
3222 "Couldn't find tree log root.");
3223 goto error;
3224 }
Chris Masone02119d2008-09-05 16:13:11 -04003225 if (ret > 0) {
3226 if (path->slots[0] == 0)
3227 break;
3228 path->slots[0]--;
3229 }
3230 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
3231 path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02003232 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003233 if (found_key.objectid != BTRFS_TREE_LOG_OBJECTID)
3234 break;
3235
3236 log = btrfs_read_fs_root_no_radix(log_root_tree,
3237 &found_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003238 if (IS_ERR(log)) {
3239 ret = PTR_ERR(log);
3240 btrfs_error(fs_info, ret,
3241 "Couldn't read tree log root.");
3242 goto error;
3243 }
Chris Masone02119d2008-09-05 16:13:11 -04003244
3245 tmp_key.objectid = found_key.offset;
3246 tmp_key.type = BTRFS_ROOT_ITEM_KEY;
3247 tmp_key.offset = (u64)-1;
3248
3249 wc.replay_dest = btrfs_read_fs_root_no_name(fs_info, &tmp_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003250 if (IS_ERR(wc.replay_dest)) {
3251 ret = PTR_ERR(wc.replay_dest);
3252 btrfs_error(fs_info, ret, "Couldn't read target root "
3253 "for tree log recovery.");
3254 goto error;
3255 }
Chris Masone02119d2008-09-05 16:13:11 -04003256
Yan Zheng07d400a2009-01-06 11:42:00 -05003257 wc.replay_dest->log_root = log;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003258 btrfs_record_root_in_trans(trans, wc.replay_dest);
Chris Masone02119d2008-09-05 16:13:11 -04003259 ret = walk_log_tree(trans, log, &wc);
3260 BUG_ON(ret);
3261
3262 if (wc.stage == LOG_WALK_REPLAY_ALL) {
3263 ret = fixup_inode_link_counts(trans, wc.replay_dest,
3264 path);
3265 BUG_ON(ret);
3266 }
Chris Masone02119d2008-09-05 16:13:11 -04003267
3268 key.offset = found_key.offset - 1;
Yan Zheng07d400a2009-01-06 11:42:00 -05003269 wc.replay_dest->log_root = NULL;
Chris Masone02119d2008-09-05 16:13:11 -04003270 free_extent_buffer(log->node);
Chris Masonb263c2c2009-06-11 11:24:47 -04003271 free_extent_buffer(log->commit_root);
Chris Masone02119d2008-09-05 16:13:11 -04003272 kfree(log);
3273
3274 if (found_key.offset == 0)
3275 break;
3276 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003277 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003278
3279 /* step one is to pin it all, step two is to replay just inodes */
3280 if (wc.pin) {
3281 wc.pin = 0;
3282 wc.process_func = replay_one_buffer;
3283 wc.stage = LOG_WALK_REPLAY_INODES;
3284 goto again;
3285 }
3286 /* step three is to replay everything */
3287 if (wc.stage < LOG_WALK_REPLAY_ALL) {
3288 wc.stage++;
3289 goto again;
3290 }
3291
3292 btrfs_free_path(path);
3293
3294 free_extent_buffer(log_root_tree->node);
3295 log_root_tree->log_root = NULL;
3296 fs_info->log_root_recovering = 0;
3297
3298 /* step 4: commit the transaction, which also unpins the blocks */
3299 btrfs_commit_transaction(trans, fs_info->tree_root);
3300
3301 kfree(log_root_tree);
3302 return 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003303
3304error:
3305 btrfs_free_path(path);
3306 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04003307}
Chris Mason12fcfd22009-03-24 10:24:20 -04003308
3309/*
3310 * there are some corner cases where we want to force a full
3311 * commit instead of allowing a directory to be logged.
3312 *
3313 * They revolve around files there were unlinked from the directory, and
3314 * this function updates the parent directory so that a full commit is
3315 * properly done if it is fsync'd later after the unlinks are done.
3316 */
3317void btrfs_record_unlink_dir(struct btrfs_trans_handle *trans,
3318 struct inode *dir, struct inode *inode,
3319 int for_rename)
3320{
3321 /*
Chris Masonaf4176b2009-03-24 10:24:31 -04003322 * when we're logging a file, if it hasn't been renamed
3323 * or unlinked, and its inode is fully committed on disk,
3324 * we don't have to worry about walking up the directory chain
3325 * to log its parents.
3326 *
3327 * So, we use the last_unlink_trans field to put this transid
3328 * into the file. When the file is logged we check it and
3329 * don't log the parents if the file is fully on disk.
3330 */
3331 if (S_ISREG(inode->i_mode))
3332 BTRFS_I(inode)->last_unlink_trans = trans->transid;
3333
3334 /*
Chris Mason12fcfd22009-03-24 10:24:20 -04003335 * if this directory was already logged any new
3336 * names for this file/dir will get recorded
3337 */
3338 smp_mb();
3339 if (BTRFS_I(dir)->logged_trans == trans->transid)
3340 return;
3341
3342 /*
3343 * if the inode we're about to unlink was logged,
3344 * the log will be properly updated for any new names
3345 */
3346 if (BTRFS_I(inode)->logged_trans == trans->transid)
3347 return;
3348
3349 /*
3350 * when renaming files across directories, if the directory
3351 * there we're unlinking from gets fsync'd later on, there's
3352 * no way to find the destination directory later and fsync it
3353 * properly. So, we have to be conservative and force commits
3354 * so the new name gets discovered.
3355 */
3356 if (for_rename)
3357 goto record;
3358
3359 /* we can safely do the unlink without any special recording */
3360 return;
3361
3362record:
3363 BTRFS_I(dir)->last_unlink_trans = trans->transid;
3364}
3365
3366/*
3367 * Call this after adding a new name for a file and it will properly
3368 * update the log to reflect the new name.
3369 *
3370 * It will return zero if all goes well, and it will return 1 if a
3371 * full transaction commit is required.
3372 */
3373int btrfs_log_new_name(struct btrfs_trans_handle *trans,
3374 struct inode *inode, struct inode *old_dir,
3375 struct dentry *parent)
3376{
3377 struct btrfs_root * root = BTRFS_I(inode)->root;
3378
3379 /*
Chris Masonaf4176b2009-03-24 10:24:31 -04003380 * this will force the logging code to walk the dentry chain
3381 * up for the file
3382 */
3383 if (S_ISREG(inode->i_mode))
3384 BTRFS_I(inode)->last_unlink_trans = trans->transid;
3385
3386 /*
Chris Mason12fcfd22009-03-24 10:24:20 -04003387 * if this inode hasn't been logged and directory we're renaming it
3388 * from hasn't been logged, we don't need to log it
3389 */
3390 if (BTRFS_I(inode)->logged_trans <=
3391 root->fs_info->last_trans_committed &&
3392 (!old_dir || BTRFS_I(old_dir)->logged_trans <=
3393 root->fs_info->last_trans_committed))
3394 return 0;
3395
3396 return btrfs_log_inode_parent(trans, root, inode, parent, 1);
3397}
3398