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