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