GNU Linux-libre 4.9.304-gnu1
[releases.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 <linux/blkdev.h>
22 #include <linux/list_sort.h>
23 #include "tree-log.h"
24 #include "disk-io.h"
25 #include "locking.h"
26 #include "print-tree.h"
27 #include "backref.h"
28 #include "hash.h"
29 #include "compression.h"
30 #include "qgroup.h"
31 #include "inode-map.h"
32
33 /* magic values for the inode_only field in btrfs_log_inode:
34  *
35  * LOG_INODE_ALL means to log everything
36  * LOG_INODE_EXISTS means to log just enough to recreate the inode
37  * during log replay
38  */
39 #define LOG_INODE_ALL 0
40 #define LOG_INODE_EXISTS 1
41 #define LOG_OTHER_INODE 2
42
43 /*
44  * directory trouble cases
45  *
46  * 1) on rename or unlink, if the inode being unlinked isn't in the fsync
47  * log, we must force a full commit before doing an fsync of the directory
48  * where the unlink was done.
49  * ---> record transid of last unlink/rename per directory
50  *
51  * mkdir foo/some_dir
52  * normal commit
53  * rename foo/some_dir foo2/some_dir
54  * mkdir foo/some_dir
55  * fsync foo/some_dir/some_file
56  *
57  * The fsync above will unlink the original some_dir without recording
58  * it in its new location (foo2).  After a crash, some_dir will be gone
59  * unless the fsync of some_file forces a full commit
60  *
61  * 2) we must log any new names for any file or dir that is in the fsync
62  * log. ---> check inode while renaming/linking.
63  *
64  * 2a) we must log any new names for any file or dir during rename
65  * when the directory they are being removed from was logged.
66  * ---> check inode and old parent dir during rename
67  *
68  *  2a is actually the more important variant.  With the extra logging
69  *  a crash might unlink the old name without recreating the new one
70  *
71  * 3) after a crash, we must go through any directories with a link count
72  * of zero and redo the rm -rf
73  *
74  * mkdir f1/foo
75  * normal commit
76  * rm -rf f1/foo
77  * fsync(f1)
78  *
79  * The directory f1 was fully removed from the FS, but fsync was never
80  * called on f1, only its parent dir.  After a crash the rm -rf must
81  * be replayed.  This must be able to recurse down the entire
82  * directory tree.  The inode link count fixup code takes care of the
83  * ugly details.
84  */
85
86 /*
87  * stages for the tree walking.  The first
88  * stage (0) is to only pin down the blocks we find
89  * the second stage (1) is to make sure that all the inodes
90  * we find in the log are created in the subvolume.
91  *
92  * The last stage is to deal with directories and links and extents
93  * and all the other fun semantics
94  */
95 #define LOG_WALK_PIN_ONLY 0
96 #define LOG_WALK_REPLAY_INODES 1
97 #define LOG_WALK_REPLAY_DIR_INDEX 2
98 #define LOG_WALK_REPLAY_ALL 3
99
100 static int btrfs_log_inode(struct btrfs_trans_handle *trans,
101                            struct btrfs_root *root, struct inode *inode,
102                            int inode_only,
103                            const loff_t start,
104                            const loff_t end,
105                            struct btrfs_log_ctx *ctx);
106 static int link_to_fixup_dir(struct btrfs_trans_handle *trans,
107                              struct btrfs_root *root,
108                              struct btrfs_path *path, u64 objectid);
109 static noinline int replay_dir_deletes(struct btrfs_trans_handle *trans,
110                                        struct btrfs_root *root,
111                                        struct btrfs_root *log,
112                                        struct btrfs_path *path,
113                                        u64 dirid, int del_all);
114
115 /*
116  * tree logging is a special write ahead log used to make sure that
117  * fsyncs and O_SYNCs can happen without doing full tree commits.
118  *
119  * Full tree commits are expensive because they require commonly
120  * modified blocks to be recowed, creating many dirty pages in the
121  * extent tree an 4x-6x higher write load than ext3.
122  *
123  * Instead of doing a tree commit on every fsync, we use the
124  * key ranges and transaction ids to find items for a given file or directory
125  * that have changed in this transaction.  Those items are copied into
126  * a special tree (one per subvolume root), that tree is written to disk
127  * and then the fsync is considered complete.
128  *
129  * After a crash, items are copied out of the log-tree back into the
130  * subvolume tree.  Any file data extents found are recorded in the extent
131  * allocation tree, and the log-tree freed.
132  *
133  * The log tree is read three times, once to pin down all the extents it is
134  * using in ram and once, once to create all the inodes logged in the tree
135  * and once to do all the other items.
136  */
137
138 /*
139  * start a sub transaction and setup the log tree
140  * this increments the log tree writer count to make the people
141  * syncing the tree wait for us to finish
142  */
143 static int start_log_trans(struct btrfs_trans_handle *trans,
144                            struct btrfs_root *root,
145                            struct btrfs_log_ctx *ctx)
146 {
147         int ret = 0;
148
149         mutex_lock(&root->log_mutex);
150
151         if (root->log_root) {
152                 if (btrfs_need_log_full_commit(root->fs_info, trans)) {
153                         ret = -EAGAIN;
154                         goto out;
155                 }
156
157                 if (!root->log_start_pid) {
158                         clear_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state);
159                         root->log_start_pid = current->pid;
160                 } else if (root->log_start_pid != current->pid) {
161                         set_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state);
162                 }
163         } else {
164                 mutex_lock(&root->fs_info->tree_log_mutex);
165                 if (!root->fs_info->log_root_tree)
166                         ret = btrfs_init_log_root_tree(trans, root->fs_info);
167                 mutex_unlock(&root->fs_info->tree_log_mutex);
168                 if (ret)
169                         goto out;
170
171                 ret = btrfs_add_log_tree(trans, root);
172                 if (ret)
173                         goto out;
174
175                 clear_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state);
176                 root->log_start_pid = current->pid;
177         }
178
179         atomic_inc(&root->log_batch);
180         atomic_inc(&root->log_writers);
181         if (ctx) {
182                 int index = root->log_transid % 2;
183                 list_add_tail(&ctx->list, &root->log_ctxs[index]);
184                 ctx->log_transid = root->log_transid;
185         }
186
187 out:
188         mutex_unlock(&root->log_mutex);
189         return ret;
190 }
191
192 /*
193  * returns 0 if there was a log transaction running and we were able
194  * to join, or returns -ENOENT if there were not transactions
195  * in progress
196  */
197 static int join_running_log_trans(struct btrfs_root *root)
198 {
199         int ret = -ENOENT;
200
201         smp_mb();
202         if (!root->log_root)
203                 return -ENOENT;
204
205         mutex_lock(&root->log_mutex);
206         if (root->log_root) {
207                 ret = 0;
208                 atomic_inc(&root->log_writers);
209         }
210         mutex_unlock(&root->log_mutex);
211         return ret;
212 }
213
214 /*
215  * This either makes the current running log transaction wait
216  * until you call btrfs_end_log_trans() or it makes any future
217  * log transactions wait until you call btrfs_end_log_trans()
218  */
219 int btrfs_pin_log_trans(struct btrfs_root *root)
220 {
221         int ret = -ENOENT;
222
223         mutex_lock(&root->log_mutex);
224         atomic_inc(&root->log_writers);
225         mutex_unlock(&root->log_mutex);
226         return ret;
227 }
228
229 /*
230  * indicate we're done making changes to the log tree
231  * and wake up anyone waiting to do a sync
232  */
233 void btrfs_end_log_trans(struct btrfs_root *root)
234 {
235         if (atomic_dec_and_test(&root->log_writers)) {
236                 /*
237                  * Implicit memory barrier after atomic_dec_and_test
238                  */
239                 if (waitqueue_active(&root->log_writer_wait))
240                         wake_up(&root->log_writer_wait);
241         }
242 }
243
244
245 /*
246  * the walk control struct is used to pass state down the chain when
247  * processing the log tree.  The stage field tells us which part
248  * of the log tree processing we are currently doing.  The others
249  * are state fields used for that specific part
250  */
251 struct walk_control {
252         /* should we free the extent on disk when done?  This is used
253          * at transaction commit time while freeing a log tree
254          */
255         int free;
256
257         /* should we write out the extent buffer?  This is used
258          * while flushing the log tree to disk during a sync
259          */
260         int write;
261
262         /* should we wait for the extent buffer io to finish?  Also used
263          * while flushing the log tree to disk for a sync
264          */
265         int wait;
266
267         /* pin only walk, we record which extents on disk belong to the
268          * log trees
269          */
270         int pin;
271
272         /* what stage of the replay code we're currently in */
273         int stage;
274
275         /* the root we are currently replaying */
276         struct btrfs_root *replay_dest;
277
278         /* the trans handle for the current replay */
279         struct btrfs_trans_handle *trans;
280
281         /* the function that gets used to process blocks we find in the
282          * tree.  Note the extent_buffer might not be up to date when it is
283          * passed in, and it must be checked or read if you need the data
284          * inside it
285          */
286         int (*process_func)(struct btrfs_root *log, struct extent_buffer *eb,
287                             struct walk_control *wc, u64 gen);
288 };
289
290 /*
291  * process_func used to pin down extents, write them or wait on them
292  */
293 static int process_one_buffer(struct btrfs_root *log,
294                               struct extent_buffer *eb,
295                               struct walk_control *wc, u64 gen)
296 {
297         int ret = 0;
298
299         /*
300          * If this fs is mixed then we need to be able to process the leaves to
301          * pin down any logged extents, so we have to read the block.
302          */
303         if (btrfs_fs_incompat(log->fs_info, MIXED_GROUPS)) {
304                 ret = btrfs_read_buffer(eb, gen);
305                 if (ret)
306                         return ret;
307         }
308
309         if (wc->pin)
310                 ret = btrfs_pin_extent_for_log_replay(log->fs_info->extent_root,
311                                                       eb->start, eb->len);
312
313         if (!ret && btrfs_buffer_uptodate(eb, gen, 0)) {
314                 if (wc->pin && btrfs_header_level(eb) == 0)
315                         ret = btrfs_exclude_logged_extents(log, eb);
316                 if (wc->write)
317                         btrfs_write_tree_block(eb);
318                 if (wc->wait)
319                         btrfs_wait_tree_block_writeback(eb);
320         }
321         return ret;
322 }
323
324 /*
325  * Item overwrite used by replay and tree logging.  eb, slot and key all refer
326  * to the src data we are copying out.
327  *
328  * root is the tree we are copying into, and path is a scratch
329  * path for use in this function (it should be released on entry and
330  * will be released on exit).
331  *
332  * If the key is already in the destination tree the existing item is
333  * overwritten.  If the existing item isn't big enough, it is extended.
334  * If it is too large, it is truncated.
335  *
336  * If the key isn't in the destination yet, a new item is inserted.
337  */
338 static noinline int overwrite_item(struct btrfs_trans_handle *trans,
339                                    struct btrfs_root *root,
340                                    struct btrfs_path *path,
341                                    struct extent_buffer *eb, int slot,
342                                    struct btrfs_key *key)
343 {
344         int ret;
345         u32 item_size;
346         u64 saved_i_size = 0;
347         int save_old_i_size = 0;
348         unsigned long src_ptr;
349         unsigned long dst_ptr;
350         int overwrite_root = 0;
351         bool inode_item = key->type == BTRFS_INODE_ITEM_KEY;
352
353         if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID)
354                 overwrite_root = 1;
355
356         item_size = btrfs_item_size_nr(eb, slot);
357         src_ptr = btrfs_item_ptr_offset(eb, slot);
358
359         /* look for the key in the destination tree */
360         ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
361         if (ret < 0)
362                 return ret;
363
364         if (ret == 0) {
365                 char *src_copy;
366                 char *dst_copy;
367                 u32 dst_size = btrfs_item_size_nr(path->nodes[0],
368                                                   path->slots[0]);
369                 if (dst_size != item_size)
370                         goto insert;
371
372                 if (item_size == 0) {
373                         btrfs_release_path(path);
374                         return 0;
375                 }
376                 dst_copy = kmalloc(item_size, GFP_NOFS);
377                 src_copy = kmalloc(item_size, GFP_NOFS);
378                 if (!dst_copy || !src_copy) {
379                         btrfs_release_path(path);
380                         kfree(dst_copy);
381                         kfree(src_copy);
382                         return -ENOMEM;
383                 }
384
385                 read_extent_buffer(eb, src_copy, src_ptr, item_size);
386
387                 dst_ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]);
388                 read_extent_buffer(path->nodes[0], dst_copy, dst_ptr,
389                                    item_size);
390                 ret = memcmp(dst_copy, src_copy, item_size);
391
392                 kfree(dst_copy);
393                 kfree(src_copy);
394                 /*
395                  * they have the same contents, just return, this saves
396                  * us from cowing blocks in the destination tree and doing
397                  * extra writes that may not have been done by a previous
398                  * sync
399                  */
400                 if (ret == 0) {
401                         btrfs_release_path(path);
402                         return 0;
403                 }
404
405                 /*
406                  * We need to load the old nbytes into the inode so when we
407                  * replay the extents we've logged we get the right nbytes.
408                  */
409                 if (inode_item) {
410                         struct btrfs_inode_item *item;
411                         u64 nbytes;
412                         u32 mode;
413
414                         item = btrfs_item_ptr(path->nodes[0], path->slots[0],
415                                               struct btrfs_inode_item);
416                         nbytes = btrfs_inode_nbytes(path->nodes[0], item);
417                         item = btrfs_item_ptr(eb, slot,
418                                               struct btrfs_inode_item);
419                         btrfs_set_inode_nbytes(eb, item, nbytes);
420
421                         /*
422                          * If this is a directory we need to reset the i_size to
423                          * 0 so that we can set it up properly when replaying
424                          * the rest of the items in this log.
425                          */
426                         mode = btrfs_inode_mode(eb, item);
427                         if (S_ISDIR(mode))
428                                 btrfs_set_inode_size(eb, item, 0);
429                 }
430         } else if (inode_item) {
431                 struct btrfs_inode_item *item;
432                 u32 mode;
433
434                 /*
435                  * New inode, set nbytes to 0 so that the nbytes comes out
436                  * properly when we replay the extents.
437                  */
438                 item = btrfs_item_ptr(eb, slot, struct btrfs_inode_item);
439                 btrfs_set_inode_nbytes(eb, item, 0);
440
441                 /*
442                  * If this is a directory we need to reset the i_size to 0 so
443                  * that we can set it up properly when replaying the rest of
444                  * the items in this log.
445                  */
446                 mode = btrfs_inode_mode(eb, item);
447                 if (S_ISDIR(mode))
448                         btrfs_set_inode_size(eb, item, 0);
449         }
450 insert:
451         btrfs_release_path(path);
452         /* try to insert the key into the destination tree */
453         path->skip_release_on_error = 1;
454         ret = btrfs_insert_empty_item(trans, root, path,
455                                       key, item_size);
456         path->skip_release_on_error = 0;
457
458         /* make sure any existing item is the correct size */
459         if (ret == -EEXIST || ret == -EOVERFLOW) {
460                 u32 found_size;
461                 found_size = btrfs_item_size_nr(path->nodes[0],
462                                                 path->slots[0]);
463                 if (found_size > item_size)
464                         btrfs_truncate_item(root, path, item_size, 1);
465                 else if (found_size < item_size)
466                         btrfs_extend_item(root, path,
467                                           item_size - found_size);
468         } else if (ret) {
469                 return ret;
470         }
471         dst_ptr = btrfs_item_ptr_offset(path->nodes[0],
472                                         path->slots[0]);
473
474         /* don't overwrite an existing inode if the generation number
475          * was logged as zero.  This is done when the tree logging code
476          * is just logging an inode to make sure it exists after recovery.
477          *
478          * Also, don't overwrite i_size on directories during replay.
479          * log replay inserts and removes directory items based on the
480          * state of the tree found in the subvolume, and i_size is modified
481          * as it goes
482          */
483         if (key->type == BTRFS_INODE_ITEM_KEY && ret == -EEXIST) {
484                 struct btrfs_inode_item *src_item;
485                 struct btrfs_inode_item *dst_item;
486
487                 src_item = (struct btrfs_inode_item *)src_ptr;
488                 dst_item = (struct btrfs_inode_item *)dst_ptr;
489
490                 if (btrfs_inode_generation(eb, src_item) == 0) {
491                         struct extent_buffer *dst_eb = path->nodes[0];
492                         const u64 ino_size = btrfs_inode_size(eb, src_item);
493
494                         /*
495                          * For regular files an ino_size == 0 is used only when
496                          * logging that an inode exists, as part of a directory
497                          * fsync, and the inode wasn't fsynced before. In this
498                          * case don't set the size of the inode in the fs/subvol
499                          * tree, otherwise we would be throwing valid data away.
500                          */
501                         if (S_ISREG(btrfs_inode_mode(eb, src_item)) &&
502                             S_ISREG(btrfs_inode_mode(dst_eb, dst_item)) &&
503                             ino_size != 0) {
504                                 struct btrfs_map_token token;
505
506                                 btrfs_init_map_token(&token);
507                                 btrfs_set_token_inode_size(dst_eb, dst_item,
508                                                            ino_size, &token);
509                         }
510                         goto no_copy;
511                 }
512
513                 if (overwrite_root &&
514                     S_ISDIR(btrfs_inode_mode(eb, src_item)) &&
515                     S_ISDIR(btrfs_inode_mode(path->nodes[0], dst_item))) {
516                         save_old_i_size = 1;
517                         saved_i_size = btrfs_inode_size(path->nodes[0],
518                                                         dst_item);
519                 }
520         }
521
522         copy_extent_buffer(path->nodes[0], eb, dst_ptr,
523                            src_ptr, item_size);
524
525         if (save_old_i_size) {
526                 struct btrfs_inode_item *dst_item;
527                 dst_item = (struct btrfs_inode_item *)dst_ptr;
528                 btrfs_set_inode_size(path->nodes[0], dst_item, saved_i_size);
529         }
530
531         /* make sure the generation is filled in */
532         if (key->type == BTRFS_INODE_ITEM_KEY) {
533                 struct btrfs_inode_item *dst_item;
534                 dst_item = (struct btrfs_inode_item *)dst_ptr;
535                 if (btrfs_inode_generation(path->nodes[0], dst_item) == 0) {
536                         btrfs_set_inode_generation(path->nodes[0], dst_item,
537                                                    trans->transid);
538                 }
539         }
540 no_copy:
541         btrfs_mark_buffer_dirty(path->nodes[0]);
542         btrfs_release_path(path);
543         return 0;
544 }
545
546 /*
547  * simple helper to read an inode off the disk from a given root
548  * This can only be called for subvolume roots and not for the log
549  */
550 static noinline struct inode *read_one_inode(struct btrfs_root *root,
551                                              u64 objectid)
552 {
553         struct btrfs_key key;
554         struct inode *inode;
555
556         key.objectid = objectid;
557         key.type = BTRFS_INODE_ITEM_KEY;
558         key.offset = 0;
559         inode = btrfs_iget(root->fs_info->sb, &key, root, NULL);
560         if (IS_ERR(inode)) {
561                 inode = NULL;
562         } else if (is_bad_inode(inode)) {
563                 iput(inode);
564                 inode = NULL;
565         }
566         return inode;
567 }
568
569 /* replays a single extent in 'eb' at 'slot' with 'key' into the
570  * subvolume 'root'.  path is released on entry and should be released
571  * on exit.
572  *
573  * extents in the log tree have not been allocated out of the extent
574  * tree yet.  So, this completes the allocation, taking a reference
575  * as required if the extent already exists or creating a new extent
576  * if it isn't in the extent allocation tree yet.
577  *
578  * The extent is inserted into the file, dropping any existing extents
579  * from the file that overlap the new one.
580  */
581 static noinline int replay_one_extent(struct btrfs_trans_handle *trans,
582                                       struct btrfs_root *root,
583                                       struct btrfs_path *path,
584                                       struct extent_buffer *eb, int slot,
585                                       struct btrfs_key *key)
586 {
587         int found_type;
588         u64 extent_end;
589         u64 start = key->offset;
590         u64 nbytes = 0;
591         struct btrfs_file_extent_item *item;
592         struct inode *inode = NULL;
593         unsigned long size;
594         int ret = 0;
595
596         item = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item);
597         found_type = btrfs_file_extent_type(eb, item);
598
599         if (found_type == BTRFS_FILE_EXTENT_REG ||
600             found_type == BTRFS_FILE_EXTENT_PREALLOC) {
601                 nbytes = btrfs_file_extent_num_bytes(eb, item);
602                 extent_end = start + nbytes;
603
604                 /*
605                  * We don't add to the inodes nbytes if we are prealloc or a
606                  * hole.
607                  */
608                 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
609                         nbytes = 0;
610         } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
611                 size = btrfs_file_extent_inline_len(eb, slot, item);
612                 nbytes = btrfs_file_extent_ram_bytes(eb, item);
613                 extent_end = ALIGN(start + size, root->sectorsize);
614         } else {
615                 ret = 0;
616                 goto out;
617         }
618
619         inode = read_one_inode(root, key->objectid);
620         if (!inode) {
621                 ret = -EIO;
622                 goto out;
623         }
624
625         /*
626          * first check to see if we already have this extent in the
627          * file.  This must be done before the btrfs_drop_extents run
628          * so we don't try to drop this extent.
629          */
630         ret = btrfs_lookup_file_extent(trans, root, path, btrfs_ino(inode),
631                                        start, 0);
632
633         if (ret == 0 &&
634             (found_type == BTRFS_FILE_EXTENT_REG ||
635              found_type == BTRFS_FILE_EXTENT_PREALLOC)) {
636                 struct btrfs_file_extent_item cmp1;
637                 struct btrfs_file_extent_item cmp2;
638                 struct btrfs_file_extent_item *existing;
639                 struct extent_buffer *leaf;
640
641                 leaf = path->nodes[0];
642                 existing = btrfs_item_ptr(leaf, path->slots[0],
643                                           struct btrfs_file_extent_item);
644
645                 read_extent_buffer(eb, &cmp1, (unsigned long)item,
646                                    sizeof(cmp1));
647                 read_extent_buffer(leaf, &cmp2, (unsigned long)existing,
648                                    sizeof(cmp2));
649
650                 /*
651                  * we already have a pointer to this exact extent,
652                  * we don't have to do anything
653                  */
654                 if (memcmp(&cmp1, &cmp2, sizeof(cmp1)) == 0) {
655                         btrfs_release_path(path);
656                         goto out;
657                 }
658         }
659         btrfs_release_path(path);
660
661         /* drop any overlapping extents */
662         ret = btrfs_drop_extents(trans, root, inode, start, extent_end, 1);
663         if (ret)
664                 goto out;
665
666         if (found_type == BTRFS_FILE_EXTENT_REG ||
667             found_type == BTRFS_FILE_EXTENT_PREALLOC) {
668                 u64 offset;
669                 unsigned long dest_offset;
670                 struct btrfs_key ins;
671
672                 ret = btrfs_insert_empty_item(trans, root, path, key,
673                                               sizeof(*item));
674                 if (ret)
675                         goto out;
676                 dest_offset = btrfs_item_ptr_offset(path->nodes[0],
677                                                     path->slots[0]);
678                 copy_extent_buffer(path->nodes[0], eb, dest_offset,
679                                 (unsigned long)item,  sizeof(*item));
680
681                 ins.objectid = btrfs_file_extent_disk_bytenr(eb, item);
682                 ins.offset = btrfs_file_extent_disk_num_bytes(eb, item);
683                 ins.type = BTRFS_EXTENT_ITEM_KEY;
684                 offset = key->offset - btrfs_file_extent_offset(eb, item);
685
686                 /*
687                  * Manually record dirty extent, as here we did a shallow
688                  * file extent item copy and skip normal backref update,
689                  * but modifying extent tree all by ourselves.
690                  * So need to manually record dirty extent for qgroup,
691                  * as the owner of the file extent changed from log tree
692                  * (doesn't affect qgroup) to fs/file tree(affects qgroup)
693                  */
694                 ret = btrfs_qgroup_insert_dirty_extent(trans, root->fs_info,
695                                 btrfs_file_extent_disk_bytenr(eb, item),
696                                 btrfs_file_extent_disk_num_bytes(eb, item),
697                                 GFP_NOFS);
698                 if (ret < 0)
699                         goto out;
700
701                 if (ins.objectid > 0) {
702                         u64 csum_start;
703                         u64 csum_end;
704                         LIST_HEAD(ordered_sums);
705                         /*
706                          * is this extent already allocated in the extent
707                          * allocation tree?  If so, just add a reference
708                          */
709                         ret = btrfs_lookup_data_extent(root, ins.objectid,
710                                                 ins.offset);
711                         if (ret == 0) {
712                                 ret = btrfs_inc_extent_ref(trans, root,
713                                                 ins.objectid, ins.offset,
714                                                 0, root->root_key.objectid,
715                                                 key->objectid, offset);
716                                 if (ret)
717                                         goto out;
718                         } else {
719                                 /*
720                                  * insert the extent pointer in the extent
721                                  * allocation tree
722                                  */
723                                 ret = btrfs_alloc_logged_file_extent(trans,
724                                                 root, root->root_key.objectid,
725                                                 key->objectid, offset, &ins);
726                                 if (ret)
727                                         goto out;
728                         }
729                         btrfs_release_path(path);
730
731                         if (btrfs_file_extent_compression(eb, item)) {
732                                 csum_start = ins.objectid;
733                                 csum_end = csum_start + ins.offset;
734                         } else {
735                                 csum_start = ins.objectid +
736                                         btrfs_file_extent_offset(eb, item);
737                                 csum_end = csum_start +
738                                         btrfs_file_extent_num_bytes(eb, item);
739                         }
740
741                         ret = btrfs_lookup_csums_range(root->log_root,
742                                                 csum_start, csum_end - 1,
743                                                 &ordered_sums, 0);
744                         if (ret)
745                                 goto out;
746                         /*
747                          * Now delete all existing cums in the csum root that
748                          * cover our range. We do this because we can have an
749                          * extent that is completely referenced by one file
750                          * extent item and partially referenced by another
751                          * file extent item (like after using the clone or
752                          * extent_same ioctls). In this case if we end up doing
753                          * the replay of the one that partially references the
754                          * extent first, and we do not do the csum deletion
755                          * below, we can get 2 csum items in the csum tree that
756                          * overlap each other. For example, imagine our log has
757                          * the two following file extent items:
758                          *
759                          * key (257 EXTENT_DATA 409600)
760                          *     extent data disk byte 12845056 nr 102400
761                          *     extent data offset 20480 nr 20480 ram 102400
762                          *
763                          * key (257 EXTENT_DATA 819200)
764                          *     extent data disk byte 12845056 nr 102400
765                          *     extent data offset 0 nr 102400 ram 102400
766                          *
767                          * Where the second one fully references the 100K extent
768                          * that starts at disk byte 12845056, and the log tree
769                          * has a single csum item that covers the entire range
770                          * of the extent:
771                          *
772                          * key (EXTENT_CSUM EXTENT_CSUM 12845056) itemsize 100
773                          *
774                          * After the first file extent item is replayed, the
775                          * csum tree gets the following csum item:
776                          *
777                          * key (EXTENT_CSUM EXTENT_CSUM 12865536) itemsize 20
778                          *
779                          * Which covers the 20K sub-range starting at offset 20K
780                          * of our extent. Now when we replay the second file
781                          * extent item, if we do not delete existing csum items
782                          * that cover any of its blocks, we end up getting two
783                          * csum items in our csum tree that overlap each other:
784                          *
785                          * key (EXTENT_CSUM EXTENT_CSUM 12845056) itemsize 100
786                          * key (EXTENT_CSUM EXTENT_CSUM 12865536) itemsize 20
787                          *
788                          * Which is a problem, because after this anyone trying
789                          * to lookup up for the checksum of any block of our
790                          * extent starting at an offset of 40K or higher, will
791                          * end up looking at the second csum item only, which
792                          * does not contain the checksum for any block starting
793                          * at offset 40K or higher of our extent.
794                          */
795                         while (!list_empty(&ordered_sums)) {
796                                 struct btrfs_ordered_sum *sums;
797                                 sums = list_entry(ordered_sums.next,
798                                                 struct btrfs_ordered_sum,
799                                                 list);
800                                 if (!ret)
801                                         ret = btrfs_del_csums(trans,
802                                                       root->fs_info->csum_root,
803                                                       sums->bytenr,
804                                                       sums->len);
805                                 if (!ret)
806                                         ret = btrfs_csum_file_blocks(trans,
807                                                 root->fs_info->csum_root,
808                                                 sums);
809                                 list_del(&sums->list);
810                                 kfree(sums);
811                         }
812                         if (ret)
813                                 goto out;
814                 } else {
815                         btrfs_release_path(path);
816                 }
817         } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
818                 /* inline extents are easy, we just overwrite them */
819                 ret = overwrite_item(trans, root, path, eb, slot, key);
820                 if (ret)
821                         goto out;
822         }
823
824         inode_add_bytes(inode, nbytes);
825         ret = btrfs_update_inode(trans, root, inode);
826 out:
827         if (inode)
828                 iput(inode);
829         return ret;
830 }
831
832 /*
833  * when cleaning up conflicts between the directory names in the
834  * subvolume, directory names in the log and directory names in the
835  * inode back references, we may have to unlink inodes from directories.
836  *
837  * This is a helper function to do the unlink of a specific directory
838  * item
839  */
840 static noinline int drop_one_dir_item(struct btrfs_trans_handle *trans,
841                                       struct btrfs_root *root,
842                                       struct btrfs_path *path,
843                                       struct inode *dir,
844                                       struct btrfs_dir_item *di)
845 {
846         struct inode *inode;
847         char *name;
848         int name_len;
849         struct extent_buffer *leaf;
850         struct btrfs_key location;
851         int ret;
852
853         leaf = path->nodes[0];
854
855         btrfs_dir_item_key_to_cpu(leaf, di, &location);
856         name_len = btrfs_dir_name_len(leaf, di);
857         name = kmalloc(name_len, GFP_NOFS);
858         if (!name)
859                 return -ENOMEM;
860
861         read_extent_buffer(leaf, name, (unsigned long)(di + 1), name_len);
862         btrfs_release_path(path);
863
864         inode = read_one_inode(root, location.objectid);
865         if (!inode) {
866                 ret = -EIO;
867                 goto out;
868         }
869
870         ret = link_to_fixup_dir(trans, root, path, location.objectid);
871         if (ret)
872                 goto out;
873
874         ret = btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
875         if (ret)
876                 goto out;
877         else
878                 ret = btrfs_run_delayed_items(trans, root);
879 out:
880         kfree(name);
881         iput(inode);
882         return ret;
883 }
884
885 /*
886  * helper function to see if a given name and sequence number found
887  * in an inode back reference are already in a directory and correctly
888  * point to this inode
889  */
890 static noinline int inode_in_dir(struct btrfs_root *root,
891                                  struct btrfs_path *path,
892                                  u64 dirid, u64 objectid, u64 index,
893                                  const char *name, int name_len)
894 {
895         struct btrfs_dir_item *di;
896         struct btrfs_key location;
897         int match = 0;
898
899         di = btrfs_lookup_dir_index_item(NULL, root, path, dirid,
900                                          index, name, name_len, 0);
901         if (di && !IS_ERR(di)) {
902                 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location);
903                 if (location.objectid != objectid)
904                         goto out;
905         } else
906                 goto out;
907         btrfs_release_path(path);
908
909         di = btrfs_lookup_dir_item(NULL, root, path, dirid, name, name_len, 0);
910         if (di && !IS_ERR(di)) {
911                 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location);
912                 if (location.objectid != objectid)
913                         goto out;
914         } else
915                 goto out;
916         match = 1;
917 out:
918         btrfs_release_path(path);
919         return match;
920 }
921
922 /*
923  * helper function to check a log tree for a named back reference in
924  * an inode.  This is used to decide if a back reference that is
925  * found in the subvolume conflicts with what we find in the log.
926  *
927  * inode backreferences may have multiple refs in a single item,
928  * during replay we process one reference at a time, and we don't
929  * want to delete valid links to a file from the subvolume if that
930  * link is also in the log.
931  */
932 static noinline int backref_in_log(struct btrfs_root *log,
933                                    struct btrfs_key *key,
934                                    u64 ref_objectid,
935                                    const char *name, int namelen)
936 {
937         struct btrfs_path *path;
938         struct btrfs_inode_ref *ref;
939         unsigned long ptr;
940         unsigned long ptr_end;
941         unsigned long name_ptr;
942         int found_name_len;
943         int item_size;
944         int ret;
945         int match = 0;
946
947         path = btrfs_alloc_path();
948         if (!path)
949                 return -ENOMEM;
950
951         ret = btrfs_search_slot(NULL, log, key, path, 0, 0);
952         if (ret != 0)
953                 goto out;
954
955         ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]);
956
957         if (key->type == BTRFS_INODE_EXTREF_KEY) {
958                 if (btrfs_find_name_in_ext_backref(path, ref_objectid,
959                                                    name, namelen, NULL))
960                         match = 1;
961
962                 goto out;
963         }
964
965         item_size = btrfs_item_size_nr(path->nodes[0], path->slots[0]);
966         ptr_end = ptr + item_size;
967         while (ptr < ptr_end) {
968                 ref = (struct btrfs_inode_ref *)ptr;
969                 found_name_len = btrfs_inode_ref_name_len(path->nodes[0], ref);
970                 if (found_name_len == namelen) {
971                         name_ptr = (unsigned long)(ref + 1);
972                         ret = memcmp_extent_buffer(path->nodes[0], name,
973                                                    name_ptr, namelen);
974                         if (ret == 0) {
975                                 match = 1;
976                                 goto out;
977                         }
978                 }
979                 ptr = (unsigned long)(ref + 1) + found_name_len;
980         }
981 out:
982         btrfs_free_path(path);
983         return match;
984 }
985
986 static inline int __add_inode_ref(struct btrfs_trans_handle *trans,
987                                   struct btrfs_root *root,
988                                   struct btrfs_path *path,
989                                   struct btrfs_root *log_root,
990                                   struct inode *dir, struct inode *inode,
991                                   struct extent_buffer *eb,
992                                   u64 inode_objectid, u64 parent_objectid,
993                                   u64 ref_index, char *name, int namelen,
994                                   int *search_done)
995 {
996         int ret;
997         char *victim_name;
998         int victim_name_len;
999         struct extent_buffer *leaf;
1000         struct btrfs_dir_item *di;
1001         struct btrfs_key search_key;
1002         struct btrfs_inode_extref *extref;
1003
1004 again:
1005         /* Search old style refs */
1006         search_key.objectid = inode_objectid;
1007         search_key.type = BTRFS_INODE_REF_KEY;
1008         search_key.offset = parent_objectid;
1009         ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0);
1010         if (ret == 0) {
1011                 struct btrfs_inode_ref *victim_ref;
1012                 unsigned long ptr;
1013                 unsigned long ptr_end;
1014
1015                 leaf = path->nodes[0];
1016
1017                 /* are we trying to overwrite a back ref for the root directory
1018                  * if so, just jump out, we're done
1019                  */
1020                 if (search_key.objectid == search_key.offset)
1021                         return 1;
1022
1023                 /* check all the names in this back reference to see
1024                  * if they are in the log.  if so, we allow them to stay
1025                  * otherwise they must be unlinked as a conflict
1026                  */
1027                 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
1028                 ptr_end = ptr + btrfs_item_size_nr(leaf, path->slots[0]);
1029                 while (ptr < ptr_end) {
1030                         victim_ref = (struct btrfs_inode_ref *)ptr;
1031                         victim_name_len = btrfs_inode_ref_name_len(leaf,
1032                                                                    victim_ref);
1033                         victim_name = kmalloc(victim_name_len, GFP_NOFS);
1034                         if (!victim_name)
1035                                 return -ENOMEM;
1036
1037                         read_extent_buffer(leaf, victim_name,
1038                                            (unsigned long)(victim_ref + 1),
1039                                            victim_name_len);
1040
1041                         if (!backref_in_log(log_root, &search_key,
1042                                             parent_objectid,
1043                                             victim_name,
1044                                             victim_name_len)) {
1045                                 inc_nlink(inode);
1046                                 btrfs_release_path(path);
1047
1048                                 ret = btrfs_unlink_inode(trans, root, dir,
1049                                                          inode, victim_name,
1050                                                          victim_name_len);
1051                                 kfree(victim_name);
1052                                 if (ret)
1053                                         return ret;
1054                                 ret = btrfs_run_delayed_items(trans, root);
1055                                 if (ret)
1056                                         return ret;
1057                                 *search_done = 1;
1058                                 goto again;
1059                         }
1060                         kfree(victim_name);
1061
1062                         ptr = (unsigned long)(victim_ref + 1) + victim_name_len;
1063                 }
1064
1065                 /*
1066                  * NOTE: we have searched root tree and checked the
1067                  * corresponding ref, it does not need to check again.
1068                  */
1069                 *search_done = 1;
1070         }
1071         btrfs_release_path(path);
1072
1073         /* Same search but for extended refs */
1074         extref = btrfs_lookup_inode_extref(NULL, root, path, name, namelen,
1075                                            inode_objectid, parent_objectid, 0,
1076                                            0);
1077         if (!IS_ERR_OR_NULL(extref)) {
1078                 u32 item_size;
1079                 u32 cur_offset = 0;
1080                 unsigned long base;
1081                 struct inode *victim_parent;
1082
1083                 leaf = path->nodes[0];
1084
1085                 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1086                 base = btrfs_item_ptr_offset(leaf, path->slots[0]);
1087
1088                 while (cur_offset < item_size) {
1089                         extref = (struct btrfs_inode_extref *)(base + cur_offset);
1090
1091                         victim_name_len = btrfs_inode_extref_name_len(leaf, extref);
1092
1093                         if (btrfs_inode_extref_parent(leaf, extref) != parent_objectid)
1094                                 goto next;
1095
1096                         victim_name = kmalloc(victim_name_len, GFP_NOFS);
1097                         if (!victim_name)
1098                                 return -ENOMEM;
1099                         read_extent_buffer(leaf, victim_name, (unsigned long)&extref->name,
1100                                            victim_name_len);
1101
1102                         search_key.objectid = inode_objectid;
1103                         search_key.type = BTRFS_INODE_EXTREF_KEY;
1104                         search_key.offset = btrfs_extref_hash(parent_objectid,
1105                                                               victim_name,
1106                                                               victim_name_len);
1107                         ret = 0;
1108                         if (!backref_in_log(log_root, &search_key,
1109                                             parent_objectid, victim_name,
1110                                             victim_name_len)) {
1111                                 ret = -ENOENT;
1112                                 victim_parent = read_one_inode(root,
1113                                                                parent_objectid);
1114                                 if (victim_parent) {
1115                                         inc_nlink(inode);
1116                                         btrfs_release_path(path);
1117
1118                                         ret = btrfs_unlink_inode(trans, root,
1119                                                                  victim_parent,
1120                                                                  inode,
1121                                                                  victim_name,
1122                                                                  victim_name_len);
1123                                         if (!ret)
1124                                                 ret = btrfs_run_delayed_items(
1125                                                                   trans, root);
1126                                 }
1127                                 iput(victim_parent);
1128                                 kfree(victim_name);
1129                                 if (ret)
1130                                         return ret;
1131                                 *search_done = 1;
1132                                 goto again;
1133                         }
1134                         kfree(victim_name);
1135                         if (ret)
1136                                 return ret;
1137 next:
1138                         cur_offset += victim_name_len + sizeof(*extref);
1139                 }
1140                 *search_done = 1;
1141         }
1142         btrfs_release_path(path);
1143
1144         /* look for a conflicting sequence number */
1145         di = btrfs_lookup_dir_index_item(trans, root, path, btrfs_ino(dir),
1146                                          ref_index, name, namelen, 0);
1147         if (di && !IS_ERR(di)) {
1148                 ret = drop_one_dir_item(trans, root, path, dir, di);
1149                 if (ret)
1150                         return ret;
1151         }
1152         btrfs_release_path(path);
1153
1154         /* look for a conflicing name */
1155         di = btrfs_lookup_dir_item(trans, root, path, btrfs_ino(dir),
1156                                    name, namelen, 0);
1157         if (di && !IS_ERR(di)) {
1158                 ret = drop_one_dir_item(trans, root, path, dir, di);
1159                 if (ret)
1160                         return ret;
1161         }
1162         btrfs_release_path(path);
1163
1164         return 0;
1165 }
1166
1167 static int extref_get_fields(struct extent_buffer *eb, unsigned long ref_ptr,
1168                              u32 *namelen, char **name, u64 *index,
1169                              u64 *parent_objectid)
1170 {
1171         struct btrfs_inode_extref *extref;
1172
1173         extref = (struct btrfs_inode_extref *)ref_ptr;
1174
1175         *namelen = btrfs_inode_extref_name_len(eb, extref);
1176         *name = kmalloc(*namelen, GFP_NOFS);
1177         if (*name == NULL)
1178                 return -ENOMEM;
1179
1180         read_extent_buffer(eb, *name, (unsigned long)&extref->name,
1181                            *namelen);
1182
1183         *index = btrfs_inode_extref_index(eb, extref);
1184         if (parent_objectid)
1185                 *parent_objectid = btrfs_inode_extref_parent(eb, extref);
1186
1187         return 0;
1188 }
1189
1190 static int ref_get_fields(struct extent_buffer *eb, unsigned long ref_ptr,
1191                           u32 *namelen, char **name, u64 *index)
1192 {
1193         struct btrfs_inode_ref *ref;
1194
1195         ref = (struct btrfs_inode_ref *)ref_ptr;
1196
1197         *namelen = btrfs_inode_ref_name_len(eb, ref);
1198         *name = kmalloc(*namelen, GFP_NOFS);
1199         if (*name == NULL)
1200                 return -ENOMEM;
1201
1202         read_extent_buffer(eb, *name, (unsigned long)(ref + 1), *namelen);
1203
1204         *index = btrfs_inode_ref_index(eb, ref);
1205
1206         return 0;
1207 }
1208
1209 /*
1210  * replay one inode back reference item found in the log tree.
1211  * eb, slot and key refer to the buffer and key found in the log tree.
1212  * root is the destination we are replaying into, and path is for temp
1213  * use by this function.  (it should be released on return).
1214  */
1215 static noinline int add_inode_ref(struct btrfs_trans_handle *trans,
1216                                   struct btrfs_root *root,
1217                                   struct btrfs_root *log,
1218                                   struct btrfs_path *path,
1219                                   struct extent_buffer *eb, int slot,
1220                                   struct btrfs_key *key)
1221 {
1222         struct inode *dir = NULL;
1223         struct inode *inode = NULL;
1224         unsigned long ref_ptr;
1225         unsigned long ref_end;
1226         char *name = NULL;
1227         int namelen;
1228         int ret;
1229         int search_done = 0;
1230         int log_ref_ver = 0;
1231         u64 parent_objectid;
1232         u64 inode_objectid;
1233         u64 ref_index = 0;
1234         int ref_struct_size;
1235
1236         ref_ptr = btrfs_item_ptr_offset(eb, slot);
1237         ref_end = ref_ptr + btrfs_item_size_nr(eb, slot);
1238
1239         if (key->type == BTRFS_INODE_EXTREF_KEY) {
1240                 struct btrfs_inode_extref *r;
1241
1242                 ref_struct_size = sizeof(struct btrfs_inode_extref);
1243                 log_ref_ver = 1;
1244                 r = (struct btrfs_inode_extref *)ref_ptr;
1245                 parent_objectid = btrfs_inode_extref_parent(eb, r);
1246         } else {
1247                 ref_struct_size = sizeof(struct btrfs_inode_ref);
1248                 parent_objectid = key->offset;
1249         }
1250         inode_objectid = key->objectid;
1251
1252         /*
1253          * it is possible that we didn't log all the parent directories
1254          * for a given inode.  If we don't find the dir, just don't
1255          * copy the back ref in.  The link count fixup code will take
1256          * care of the rest
1257          */
1258         dir = read_one_inode(root, parent_objectid);
1259         if (!dir) {
1260                 ret = -ENOENT;
1261                 goto out;
1262         }
1263
1264         inode = read_one_inode(root, inode_objectid);
1265         if (!inode) {
1266                 ret = -EIO;
1267                 goto out;
1268         }
1269
1270         while (ref_ptr < ref_end) {
1271                 if (log_ref_ver) {
1272                         ret = extref_get_fields(eb, ref_ptr, &namelen, &name,
1273                                                 &ref_index, &parent_objectid);
1274                         /*
1275                          * parent object can change from one array
1276                          * item to another.
1277                          */
1278                         if (!dir)
1279                                 dir = read_one_inode(root, parent_objectid);
1280                         if (!dir) {
1281                                 ret = -ENOENT;
1282                                 goto out;
1283                         }
1284                 } else {
1285                         ret = ref_get_fields(eb, ref_ptr, &namelen, &name,
1286                                              &ref_index);
1287                 }
1288                 if (ret)
1289                         goto out;
1290
1291                 /* if we already have a perfect match, we're done */
1292                 if (!inode_in_dir(root, path, btrfs_ino(dir), btrfs_ino(inode),
1293                                   ref_index, name, namelen)) {
1294                         /*
1295                          * look for a conflicting back reference in the
1296                          * metadata. if we find one we have to unlink that name
1297                          * of the file before we add our new link.  Later on, we
1298                          * overwrite any existing back reference, and we don't
1299                          * want to create dangling pointers in the directory.
1300                          */
1301
1302                         if (!search_done) {
1303                                 ret = __add_inode_ref(trans, root, path, log,
1304                                                       dir, inode, eb,
1305                                                       inode_objectid,
1306                                                       parent_objectid,
1307                                                       ref_index, name, namelen,
1308                                                       &search_done);
1309                                 if (ret) {
1310                                         if (ret == 1)
1311                                                 ret = 0;
1312                                         goto out;
1313                                 }
1314                         }
1315
1316                         /* insert our name */
1317                         ret = btrfs_add_link(trans, dir, inode, name, namelen,
1318                                              0, ref_index);
1319                         if (ret)
1320                                 goto out;
1321
1322                         btrfs_update_inode(trans, root, inode);
1323                 }
1324
1325                 ref_ptr = (unsigned long)(ref_ptr + ref_struct_size) + namelen;
1326                 kfree(name);
1327                 name = NULL;
1328                 if (log_ref_ver) {
1329                         iput(dir);
1330                         dir = NULL;
1331                 }
1332         }
1333
1334         /* finally write the back reference in the inode */
1335         ret = overwrite_item(trans, root, path, eb, slot, key);
1336 out:
1337         btrfs_release_path(path);
1338         kfree(name);
1339         iput(dir);
1340         iput(inode);
1341         return ret;
1342 }
1343
1344 static int insert_orphan_item(struct btrfs_trans_handle *trans,
1345                               struct btrfs_root *root, u64 ino)
1346 {
1347         int ret;
1348
1349         ret = btrfs_insert_orphan_item(trans, root, ino);
1350         if (ret == -EEXIST)
1351                 ret = 0;
1352
1353         return ret;
1354 }
1355
1356 static int count_inode_extrefs(struct btrfs_root *root,
1357                                struct inode *inode, struct btrfs_path *path)
1358 {
1359         int ret = 0;
1360         int name_len;
1361         unsigned int nlink = 0;
1362         u32 item_size;
1363         u32 cur_offset = 0;
1364         u64 inode_objectid = btrfs_ino(inode);
1365         u64 offset = 0;
1366         unsigned long ptr;
1367         struct btrfs_inode_extref *extref;
1368         struct extent_buffer *leaf;
1369
1370         while (1) {
1371                 ret = btrfs_find_one_extref(root, inode_objectid, offset, path,
1372                                             &extref, &offset);
1373                 if (ret)
1374                         break;
1375
1376                 leaf = path->nodes[0];
1377                 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1378                 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
1379                 cur_offset = 0;
1380
1381                 while (cur_offset < item_size) {
1382                         extref = (struct btrfs_inode_extref *) (ptr + cur_offset);
1383                         name_len = btrfs_inode_extref_name_len(leaf, extref);
1384
1385                         nlink++;
1386
1387                         cur_offset += name_len + sizeof(*extref);
1388                 }
1389
1390                 offset++;
1391                 btrfs_release_path(path);
1392         }
1393         btrfs_release_path(path);
1394
1395         if (ret < 0 && ret != -ENOENT)
1396                 return ret;
1397         return nlink;
1398 }
1399
1400 static int count_inode_refs(struct btrfs_root *root,
1401                                struct inode *inode, struct btrfs_path *path)
1402 {
1403         int ret;
1404         struct btrfs_key key;
1405         unsigned int nlink = 0;
1406         unsigned long ptr;
1407         unsigned long ptr_end;
1408         int name_len;
1409         u64 ino = btrfs_ino(inode);
1410
1411         key.objectid = ino;
1412         key.type = BTRFS_INODE_REF_KEY;
1413         key.offset = (u64)-1;
1414
1415         while (1) {
1416                 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1417                 if (ret < 0)
1418                         break;
1419                 if (ret > 0) {
1420                         if (path->slots[0] == 0)
1421                                 break;
1422                         path->slots[0]--;
1423                 }
1424 process_slot:
1425                 btrfs_item_key_to_cpu(path->nodes[0], &key,
1426                                       path->slots[0]);
1427                 if (key.objectid != ino ||
1428                     key.type != BTRFS_INODE_REF_KEY)
1429                         break;
1430                 ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]);
1431                 ptr_end = ptr + btrfs_item_size_nr(path->nodes[0],
1432                                                    path->slots[0]);
1433                 while (ptr < ptr_end) {
1434                         struct btrfs_inode_ref *ref;
1435
1436                         ref = (struct btrfs_inode_ref *)ptr;
1437                         name_len = btrfs_inode_ref_name_len(path->nodes[0],
1438                                                             ref);
1439                         ptr = (unsigned long)(ref + 1) + name_len;
1440                         nlink++;
1441                 }
1442
1443                 if (key.offset == 0)
1444                         break;
1445                 if (path->slots[0] > 0) {
1446                         path->slots[0]--;
1447                         goto process_slot;
1448                 }
1449                 key.offset--;
1450                 btrfs_release_path(path);
1451         }
1452         btrfs_release_path(path);
1453
1454         return nlink;
1455 }
1456
1457 /*
1458  * There are a few corners where the link count of the file can't
1459  * be properly maintained during replay.  So, instead of adding
1460  * lots of complexity to the log code, we just scan the backrefs
1461  * for any file that has been through replay.
1462  *
1463  * The scan will update the link count on the inode to reflect the
1464  * number of back refs found.  If it goes down to zero, the iput
1465  * will free the inode.
1466  */
1467 static noinline int fixup_inode_link_count(struct btrfs_trans_handle *trans,
1468                                            struct btrfs_root *root,
1469                                            struct inode *inode)
1470 {
1471         struct btrfs_path *path;
1472         int ret;
1473         u64 nlink = 0;
1474         u64 ino = btrfs_ino(inode);
1475
1476         path = btrfs_alloc_path();
1477         if (!path)
1478                 return -ENOMEM;
1479
1480         ret = count_inode_refs(root, inode, path);
1481         if (ret < 0)
1482                 goto out;
1483
1484         nlink = ret;
1485
1486         ret = count_inode_extrefs(root, inode, path);
1487         if (ret < 0)
1488                 goto out;
1489
1490         nlink += ret;
1491
1492         ret = 0;
1493
1494         if (nlink != inode->i_nlink) {
1495                 set_nlink(inode, nlink);
1496                 btrfs_update_inode(trans, root, inode);
1497         }
1498         BTRFS_I(inode)->index_cnt = (u64)-1;
1499
1500         if (inode->i_nlink == 0) {
1501                 if (S_ISDIR(inode->i_mode)) {
1502                         ret = replay_dir_deletes(trans, root, NULL, path,
1503                                                  ino, 1);
1504                         if (ret)
1505                                 goto out;
1506                 }
1507                 ret = insert_orphan_item(trans, root, ino);
1508         }
1509
1510 out:
1511         btrfs_free_path(path);
1512         return ret;
1513 }
1514
1515 static noinline int fixup_inode_link_counts(struct btrfs_trans_handle *trans,
1516                                             struct btrfs_root *root,
1517                                             struct btrfs_path *path)
1518 {
1519         int ret;
1520         struct btrfs_key key;
1521         struct inode *inode;
1522
1523         key.objectid = BTRFS_TREE_LOG_FIXUP_OBJECTID;
1524         key.type = BTRFS_ORPHAN_ITEM_KEY;
1525         key.offset = (u64)-1;
1526         while (1) {
1527                 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1528                 if (ret < 0)
1529                         break;
1530
1531                 if (ret == 1) {
1532                         ret = 0;
1533                         if (path->slots[0] == 0)
1534                                 break;
1535                         path->slots[0]--;
1536                 }
1537
1538                 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1539                 if (key.objectid != BTRFS_TREE_LOG_FIXUP_OBJECTID ||
1540                     key.type != BTRFS_ORPHAN_ITEM_KEY)
1541                         break;
1542
1543                 ret = btrfs_del_item(trans, root, path);
1544                 if (ret)
1545                         break;
1546
1547                 btrfs_release_path(path);
1548                 inode = read_one_inode(root, key.offset);
1549                 if (!inode) {
1550                         ret = -EIO;
1551                         break;
1552                 }
1553
1554                 ret = fixup_inode_link_count(trans, root, inode);
1555                 iput(inode);
1556                 if (ret)
1557                         break;
1558
1559                 /*
1560                  * fixup on a directory may create new entries,
1561                  * make sure we always look for the highset possible
1562                  * offset
1563                  */
1564                 key.offset = (u64)-1;
1565         }
1566         btrfs_release_path(path);
1567         return ret;
1568 }
1569
1570
1571 /*
1572  * record a given inode in the fixup dir so we can check its link
1573  * count when replay is done.  The link count is incremented here
1574  * so the inode won't go away until we check it
1575  */
1576 static noinline int link_to_fixup_dir(struct btrfs_trans_handle *trans,
1577                                       struct btrfs_root *root,
1578                                       struct btrfs_path *path,
1579                                       u64 objectid)
1580 {
1581         struct btrfs_key key;
1582         int ret = 0;
1583         struct inode *inode;
1584
1585         inode = read_one_inode(root, objectid);
1586         if (!inode)
1587                 return -EIO;
1588
1589         key.objectid = BTRFS_TREE_LOG_FIXUP_OBJECTID;
1590         key.type = BTRFS_ORPHAN_ITEM_KEY;
1591         key.offset = objectid;
1592
1593         ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
1594
1595         btrfs_release_path(path);
1596         if (ret == 0) {
1597                 if (!inode->i_nlink)
1598                         set_nlink(inode, 1);
1599                 else
1600                         inc_nlink(inode);
1601                 ret = btrfs_update_inode(trans, root, inode);
1602         } else if (ret == -EEXIST) {
1603                 ret = 0;
1604         }
1605         iput(inode);
1606
1607         return ret;
1608 }
1609
1610 /*
1611  * when replaying the log for a directory, we only insert names
1612  * for inodes that actually exist.  This means an fsync on a directory
1613  * does not implicitly fsync all the new files in it
1614  */
1615 static noinline int insert_one_name(struct btrfs_trans_handle *trans,
1616                                     struct btrfs_root *root,
1617                                     u64 dirid, u64 index,
1618                                     char *name, int name_len,
1619                                     struct btrfs_key *location)
1620 {
1621         struct inode *inode;
1622         struct inode *dir;
1623         int ret;
1624
1625         inode = read_one_inode(root, location->objectid);
1626         if (!inode)
1627                 return -ENOENT;
1628
1629         dir = read_one_inode(root, dirid);
1630         if (!dir) {
1631                 iput(inode);
1632                 return -EIO;
1633         }
1634
1635         ret = btrfs_add_link(trans, dir, inode, name, name_len, 1, index);
1636
1637         /* FIXME, put inode into FIXUP list */
1638
1639         iput(inode);
1640         iput(dir);
1641         return ret;
1642 }
1643
1644 /*
1645  * Return true if an inode reference exists in the log for the given name,
1646  * inode and parent inode.
1647  */
1648 static bool name_in_log_ref(struct btrfs_root *log_root,
1649                             const char *name, const int name_len,
1650                             const u64 dirid, const u64 ino)
1651 {
1652         struct btrfs_key search_key;
1653
1654         search_key.objectid = ino;
1655         search_key.type = BTRFS_INODE_REF_KEY;
1656         search_key.offset = dirid;
1657         if (backref_in_log(log_root, &search_key, dirid, name, name_len))
1658                 return true;
1659
1660         search_key.type = BTRFS_INODE_EXTREF_KEY;
1661         search_key.offset = btrfs_extref_hash(dirid, name, name_len);
1662         if (backref_in_log(log_root, &search_key, dirid, name, name_len))
1663                 return true;
1664
1665         return false;
1666 }
1667
1668 /*
1669  * take a single entry in a log directory item and replay it into
1670  * the subvolume.
1671  *
1672  * if a conflicting item exists in the subdirectory already,
1673  * the inode it points to is unlinked and put into the link count
1674  * fix up tree.
1675  *
1676  * If a name from the log points to a file or directory that does
1677  * not exist in the FS, it is skipped.  fsyncs on directories
1678  * do not force down inodes inside that directory, just changes to the
1679  * names or unlinks in a directory.
1680  *
1681  * Returns < 0 on error, 0 if the name wasn't replayed (dentry points to a
1682  * non-existing inode) and 1 if the name was replayed.
1683  */
1684 static noinline int replay_one_name(struct btrfs_trans_handle *trans,
1685                                     struct btrfs_root *root,
1686                                     struct btrfs_path *path,
1687                                     struct extent_buffer *eb,
1688                                     struct btrfs_dir_item *di,
1689                                     struct btrfs_key *key)
1690 {
1691         char *name;
1692         int name_len;
1693         struct btrfs_dir_item *dst_di;
1694         struct btrfs_key found_key;
1695         struct btrfs_key log_key;
1696         struct inode *dir;
1697         u8 log_type;
1698         int exists;
1699         int ret = 0;
1700         bool update_size = (key->type == BTRFS_DIR_INDEX_KEY);
1701         bool name_added = false;
1702
1703         dir = read_one_inode(root, key->objectid);
1704         if (!dir)
1705                 return -EIO;
1706
1707         name_len = btrfs_dir_name_len(eb, di);
1708         name = kmalloc(name_len, GFP_NOFS);
1709         if (!name) {
1710                 ret = -ENOMEM;
1711                 goto out;
1712         }
1713
1714         log_type = btrfs_dir_type(eb, di);
1715         read_extent_buffer(eb, name, (unsigned long)(di + 1),
1716                    name_len);
1717
1718         btrfs_dir_item_key_to_cpu(eb, di, &log_key);
1719         exists = btrfs_lookup_inode(trans, root, path, &log_key, 0);
1720         if (exists == 0)
1721                 exists = 1;
1722         else
1723                 exists = 0;
1724         btrfs_release_path(path);
1725
1726         if (key->type == BTRFS_DIR_ITEM_KEY) {
1727                 dst_di = btrfs_lookup_dir_item(trans, root, path, key->objectid,
1728                                        name, name_len, 1);
1729         } else if (key->type == BTRFS_DIR_INDEX_KEY) {
1730                 dst_di = btrfs_lookup_dir_index_item(trans, root, path,
1731                                                      key->objectid,
1732                                                      key->offset, name,
1733                                                      name_len, 1);
1734         } else {
1735                 /* Corruption */
1736                 ret = -EINVAL;
1737                 goto out;
1738         }
1739         if (IS_ERR_OR_NULL(dst_di)) {
1740                 /* we need a sequence number to insert, so we only
1741                  * do inserts for the BTRFS_DIR_INDEX_KEY types
1742                  */
1743                 if (key->type != BTRFS_DIR_INDEX_KEY)
1744                         goto out;
1745                 goto insert;
1746         }
1747
1748         btrfs_dir_item_key_to_cpu(path->nodes[0], dst_di, &found_key);
1749         /* the existing item matches the logged item */
1750         if (found_key.objectid == log_key.objectid &&
1751             found_key.type == log_key.type &&
1752             found_key.offset == log_key.offset &&
1753             btrfs_dir_type(path->nodes[0], dst_di) == log_type) {
1754                 update_size = false;
1755                 goto out;
1756         }
1757
1758         /*
1759          * don't drop the conflicting directory entry if the inode
1760          * for the new entry doesn't exist
1761          */
1762         if (!exists)
1763                 goto out;
1764
1765         ret = drop_one_dir_item(trans, root, path, dir, dst_di);
1766         if (ret)
1767                 goto out;
1768
1769         if (key->type == BTRFS_DIR_INDEX_KEY)
1770                 goto insert;
1771 out:
1772         btrfs_release_path(path);
1773         if (!ret && update_size) {
1774                 btrfs_i_size_write(dir, dir->i_size + name_len * 2);
1775                 ret = btrfs_update_inode(trans, root, dir);
1776         }
1777         kfree(name);
1778         iput(dir);
1779         if (!ret && name_added)
1780                 ret = 1;
1781         return ret;
1782
1783 insert:
1784         if (name_in_log_ref(root->log_root, name, name_len,
1785                             key->objectid, log_key.objectid)) {
1786                 /* The dentry will be added later. */
1787                 ret = 0;
1788                 update_size = false;
1789                 goto out;
1790         }
1791         btrfs_release_path(path);
1792         ret = insert_one_name(trans, root, key->objectid, key->offset,
1793                               name, name_len, &log_key);
1794         if (ret && ret != -ENOENT && ret != -EEXIST)
1795                 goto out;
1796         if (!ret)
1797                 name_added = true;
1798         update_size = false;
1799         ret = 0;
1800         goto out;
1801 }
1802
1803 /*
1804  * find all the names in a directory item and reconcile them into
1805  * the subvolume.  Only BTRFS_DIR_ITEM_KEY types will have more than
1806  * one name in a directory item, but the same code gets used for
1807  * both directory index types
1808  */
1809 static noinline int replay_one_dir_item(struct btrfs_trans_handle *trans,
1810                                         struct btrfs_root *root,
1811                                         struct btrfs_path *path,
1812                                         struct extent_buffer *eb, int slot,
1813                                         struct btrfs_key *key)
1814 {
1815         int ret = 0;
1816         u32 item_size = btrfs_item_size_nr(eb, slot);
1817         struct btrfs_dir_item *di;
1818         int name_len;
1819         unsigned long ptr;
1820         unsigned long ptr_end;
1821         struct btrfs_path *fixup_path = NULL;
1822
1823         ptr = btrfs_item_ptr_offset(eb, slot);
1824         ptr_end = ptr + item_size;
1825         while (ptr < ptr_end) {
1826                 di = (struct btrfs_dir_item *)ptr;
1827                 if (verify_dir_item(root, eb, di))
1828                         return -EIO;
1829                 name_len = btrfs_dir_name_len(eb, di);
1830                 ret = replay_one_name(trans, root, path, eb, di, key);
1831                 if (ret < 0)
1832                         break;
1833                 ptr = (unsigned long)(di + 1);
1834                 ptr += name_len;
1835
1836                 /*
1837                  * If this entry refers to a non-directory (directories can not
1838                  * have a link count > 1) and it was added in the transaction
1839                  * that was not committed, make sure we fixup the link count of
1840                  * the inode it the entry points to. Otherwise something like
1841                  * the following would result in a directory pointing to an
1842                  * inode with a wrong link that does not account for this dir
1843                  * entry:
1844                  *
1845                  * mkdir testdir
1846                  * touch testdir/foo
1847                  * touch testdir/bar
1848                  * sync
1849                  *
1850                  * ln testdir/bar testdir/bar_link
1851                  * ln testdir/foo testdir/foo_link
1852                  * xfs_io -c "fsync" testdir/bar
1853                  *
1854                  * <power failure>
1855                  *
1856                  * mount fs, log replay happens
1857                  *
1858                  * File foo would remain with a link count of 1 when it has two
1859                  * entries pointing to it in the directory testdir. This would
1860                  * make it impossible to ever delete the parent directory has
1861                  * it would result in stale dentries that can never be deleted.
1862                  */
1863                 if (ret == 1 && btrfs_dir_type(eb, di) != BTRFS_FT_DIR) {
1864                         struct btrfs_key di_key;
1865
1866                         if (!fixup_path) {
1867                                 fixup_path = btrfs_alloc_path();
1868                                 if (!fixup_path) {
1869                                         ret = -ENOMEM;
1870                                         break;
1871                                 }
1872                         }
1873
1874                         btrfs_dir_item_key_to_cpu(eb, di, &di_key);
1875                         ret = link_to_fixup_dir(trans, root, fixup_path,
1876                                                 di_key.objectid);
1877                         if (ret)
1878                                 break;
1879                 }
1880                 ret = 0;
1881         }
1882         btrfs_free_path(fixup_path);
1883         return ret;
1884 }
1885
1886 /*
1887  * directory replay has two parts.  There are the standard directory
1888  * items in the log copied from the subvolume, and range items
1889  * created in the log while the subvolume was logged.
1890  *
1891  * The range items tell us which parts of the key space the log
1892  * is authoritative for.  During replay, if a key in the subvolume
1893  * directory is in a logged range item, but not actually in the log
1894  * that means it was deleted from the directory before the fsync
1895  * and should be removed.
1896  */
1897 static noinline int find_dir_range(struct btrfs_root *root,
1898                                    struct btrfs_path *path,
1899                                    u64 dirid, int key_type,
1900                                    u64 *start_ret, u64 *end_ret)
1901 {
1902         struct btrfs_key key;
1903         u64 found_end;
1904         struct btrfs_dir_log_item *item;
1905         int ret;
1906         int nritems;
1907
1908         if (*start_ret == (u64)-1)
1909                 return 1;
1910
1911         key.objectid = dirid;
1912         key.type = key_type;
1913         key.offset = *start_ret;
1914
1915         ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1916         if (ret < 0)
1917                 goto out;
1918         if (ret > 0) {
1919                 if (path->slots[0] == 0)
1920                         goto out;
1921                 path->slots[0]--;
1922         }
1923         if (ret != 0)
1924                 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1925
1926         if (key.type != key_type || key.objectid != dirid) {
1927                 ret = 1;
1928                 goto next;
1929         }
1930         item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1931                               struct btrfs_dir_log_item);
1932         found_end = btrfs_dir_log_end(path->nodes[0], item);
1933
1934         if (*start_ret >= key.offset && *start_ret <= found_end) {
1935                 ret = 0;
1936                 *start_ret = key.offset;
1937                 *end_ret = found_end;
1938                 goto out;
1939         }
1940         ret = 1;
1941 next:
1942         /* check the next slot in the tree to see if it is a valid item */
1943         nritems = btrfs_header_nritems(path->nodes[0]);
1944         path->slots[0]++;
1945         if (path->slots[0] >= nritems) {
1946                 ret = btrfs_next_leaf(root, path);
1947                 if (ret)
1948                         goto out;
1949         }
1950
1951         btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1952
1953         if (key.type != key_type || key.objectid != dirid) {
1954                 ret = 1;
1955                 goto out;
1956         }
1957         item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1958                               struct btrfs_dir_log_item);
1959         found_end = btrfs_dir_log_end(path->nodes[0], item);
1960         *start_ret = key.offset;
1961         *end_ret = found_end;
1962         ret = 0;
1963 out:
1964         btrfs_release_path(path);
1965         return ret;
1966 }
1967
1968 /*
1969  * this looks for a given directory item in the log.  If the directory
1970  * item is not in the log, the item is removed and the inode it points
1971  * to is unlinked
1972  */
1973 static noinline int check_item_in_log(struct btrfs_trans_handle *trans,
1974                                       struct btrfs_root *root,
1975                                       struct btrfs_root *log,
1976                                       struct btrfs_path *path,
1977                                       struct btrfs_path *log_path,
1978                                       struct inode *dir,
1979                                       struct btrfs_key *dir_key)
1980 {
1981         int ret;
1982         struct extent_buffer *eb;
1983         int slot;
1984         u32 item_size;
1985         struct btrfs_dir_item *di;
1986         struct btrfs_dir_item *log_di;
1987         int name_len;
1988         unsigned long ptr;
1989         unsigned long ptr_end;
1990         char *name;
1991         struct inode *inode;
1992         struct btrfs_key location;
1993
1994 again:
1995         eb = path->nodes[0];
1996         slot = path->slots[0];
1997         item_size = btrfs_item_size_nr(eb, slot);
1998         ptr = btrfs_item_ptr_offset(eb, slot);
1999         ptr_end = ptr + item_size;
2000         while (ptr < ptr_end) {
2001                 di = (struct btrfs_dir_item *)ptr;
2002                 if (verify_dir_item(root, eb, di)) {
2003                         ret = -EIO;
2004                         goto out;
2005                 }
2006
2007                 name_len = btrfs_dir_name_len(eb, di);
2008                 name = kmalloc(name_len, GFP_NOFS);
2009                 if (!name) {
2010                         ret = -ENOMEM;
2011                         goto out;
2012                 }
2013                 read_extent_buffer(eb, name, (unsigned long)(di + 1),
2014                                   name_len);
2015                 log_di = NULL;
2016                 if (log && dir_key->type == BTRFS_DIR_ITEM_KEY) {
2017                         log_di = btrfs_lookup_dir_item(trans, log, log_path,
2018                                                        dir_key->objectid,
2019                                                        name, name_len, 0);
2020                 } else if (log && dir_key->type == BTRFS_DIR_INDEX_KEY) {
2021                         log_di = btrfs_lookup_dir_index_item(trans, log,
2022                                                      log_path,
2023                                                      dir_key->objectid,
2024                                                      dir_key->offset,
2025                                                      name, name_len, 0);
2026                 }
2027                 if (!log_di || (IS_ERR(log_di) && PTR_ERR(log_di) == -ENOENT)) {
2028                         btrfs_dir_item_key_to_cpu(eb, di, &location);
2029                         btrfs_release_path(path);
2030                         btrfs_release_path(log_path);
2031                         inode = read_one_inode(root, location.objectid);
2032                         if (!inode) {
2033                                 kfree(name);
2034                                 return -EIO;
2035                         }
2036
2037                         ret = link_to_fixup_dir(trans, root,
2038                                                 path, location.objectid);
2039                         if (ret) {
2040                                 kfree(name);
2041                                 iput(inode);
2042                                 goto out;
2043                         }
2044
2045                         inc_nlink(inode);
2046                         ret = btrfs_unlink_inode(trans, root, dir, inode,
2047                                                  name, name_len);
2048                         if (!ret)
2049                                 ret = btrfs_run_delayed_items(trans, root);
2050                         kfree(name);
2051                         iput(inode);
2052                         if (ret)
2053                                 goto out;
2054
2055                         /* there might still be more names under this key
2056                          * check and repeat if required
2057                          */
2058                         ret = btrfs_search_slot(NULL, root, dir_key, path,
2059                                                 0, 0);
2060                         if (ret == 0)
2061                                 goto again;
2062                         ret = 0;
2063                         goto out;
2064                 } else if (IS_ERR(log_di)) {
2065                         kfree(name);
2066                         return PTR_ERR(log_di);
2067                 }
2068                 btrfs_release_path(log_path);
2069                 kfree(name);
2070
2071                 ptr = (unsigned long)(di + 1);
2072                 ptr += name_len;
2073         }
2074         ret = 0;
2075 out:
2076         btrfs_release_path(path);
2077         btrfs_release_path(log_path);
2078         return ret;
2079 }
2080
2081 static int replay_xattr_deletes(struct btrfs_trans_handle *trans,
2082                               struct btrfs_root *root,
2083                               struct btrfs_root *log,
2084                               struct btrfs_path *path,
2085                               const u64 ino)
2086 {
2087         struct btrfs_key search_key;
2088         struct btrfs_path *log_path;
2089         int i;
2090         int nritems;
2091         int ret;
2092
2093         log_path = btrfs_alloc_path();
2094         if (!log_path)
2095                 return -ENOMEM;
2096
2097         search_key.objectid = ino;
2098         search_key.type = BTRFS_XATTR_ITEM_KEY;
2099         search_key.offset = 0;
2100 again:
2101         ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0);
2102         if (ret < 0)
2103                 goto out;
2104 process_leaf:
2105         nritems = btrfs_header_nritems(path->nodes[0]);
2106         for (i = path->slots[0]; i < nritems; i++) {
2107                 struct btrfs_key key;
2108                 struct btrfs_dir_item *di;
2109                 struct btrfs_dir_item *log_di;
2110                 u32 total_size;
2111                 u32 cur;
2112
2113                 btrfs_item_key_to_cpu(path->nodes[0], &key, i);
2114                 if (key.objectid != ino || key.type != BTRFS_XATTR_ITEM_KEY) {
2115                         ret = 0;
2116                         goto out;
2117                 }
2118
2119                 di = btrfs_item_ptr(path->nodes[0], i, struct btrfs_dir_item);
2120                 total_size = btrfs_item_size_nr(path->nodes[0], i);
2121                 cur = 0;
2122                 while (cur < total_size) {
2123                         u16 name_len = btrfs_dir_name_len(path->nodes[0], di);
2124                         u16 data_len = btrfs_dir_data_len(path->nodes[0], di);
2125                         u32 this_len = sizeof(*di) + name_len + data_len;
2126                         char *name;
2127
2128                         name = kmalloc(name_len, GFP_NOFS);
2129                         if (!name) {
2130                                 ret = -ENOMEM;
2131                                 goto out;
2132                         }
2133                         read_extent_buffer(path->nodes[0], name,
2134                                            (unsigned long)(di + 1), name_len);
2135
2136                         log_di = btrfs_lookup_xattr(NULL, log, log_path, ino,
2137                                                     name, name_len, 0);
2138                         btrfs_release_path(log_path);
2139                         if (!log_di) {
2140                                 /* Doesn't exist in log tree, so delete it. */
2141                                 btrfs_release_path(path);
2142                                 di = btrfs_lookup_xattr(trans, root, path, ino,
2143                                                         name, name_len, -1);
2144                                 kfree(name);
2145                                 if (IS_ERR(di)) {
2146                                         ret = PTR_ERR(di);
2147                                         goto out;
2148                                 }
2149                                 ASSERT(di);
2150                                 ret = btrfs_delete_one_dir_name(trans, root,
2151                                                                 path, di);
2152                                 if (ret)
2153                                         goto out;
2154                                 btrfs_release_path(path);
2155                                 search_key = key;
2156                                 goto again;
2157                         }
2158                         kfree(name);
2159                         if (IS_ERR(log_di)) {
2160                                 ret = PTR_ERR(log_di);
2161                                 goto out;
2162                         }
2163                         cur += this_len;
2164                         di = (struct btrfs_dir_item *)((char *)di + this_len);
2165                 }
2166         }
2167         ret = btrfs_next_leaf(root, path);
2168         if (ret > 0)
2169                 ret = 0;
2170         else if (ret == 0)
2171                 goto process_leaf;
2172 out:
2173         btrfs_free_path(log_path);
2174         btrfs_release_path(path);
2175         return ret;
2176 }
2177
2178
2179 /*
2180  * deletion replay happens before we copy any new directory items
2181  * out of the log or out of backreferences from inodes.  It
2182  * scans the log to find ranges of keys that log is authoritative for,
2183  * and then scans the directory to find items in those ranges that are
2184  * not present in the log.
2185  *
2186  * Anything we don't find in the log is unlinked and removed from the
2187  * directory.
2188  */
2189 static noinline int replay_dir_deletes(struct btrfs_trans_handle *trans,
2190                                        struct btrfs_root *root,
2191                                        struct btrfs_root *log,
2192                                        struct btrfs_path *path,
2193                                        u64 dirid, int del_all)
2194 {
2195         u64 range_start;
2196         u64 range_end;
2197         int key_type = BTRFS_DIR_LOG_ITEM_KEY;
2198         int ret = 0;
2199         struct btrfs_key dir_key;
2200         struct btrfs_key found_key;
2201         struct btrfs_path *log_path;
2202         struct inode *dir;
2203
2204         dir_key.objectid = dirid;
2205         dir_key.type = BTRFS_DIR_ITEM_KEY;
2206         log_path = btrfs_alloc_path();
2207         if (!log_path)
2208                 return -ENOMEM;
2209
2210         dir = read_one_inode(root, dirid);
2211         /* it isn't an error if the inode isn't there, that can happen
2212          * because we replay the deletes before we copy in the inode item
2213          * from the log
2214          */
2215         if (!dir) {
2216                 btrfs_free_path(log_path);
2217                 return 0;
2218         }
2219 again:
2220         range_start = 0;
2221         range_end = 0;
2222         while (1) {
2223                 if (del_all)
2224                         range_end = (u64)-1;
2225                 else {
2226                         ret = find_dir_range(log, path, dirid, key_type,
2227                                              &range_start, &range_end);
2228                         if (ret < 0)
2229                                 goto out;
2230                         else if (ret > 0)
2231                                 break;
2232                 }
2233
2234                 dir_key.offset = range_start;
2235                 while (1) {
2236                         int nritems;
2237                         ret = btrfs_search_slot(NULL, root, &dir_key, path,
2238                                                 0, 0);
2239                         if (ret < 0)
2240                                 goto out;
2241
2242                         nritems = btrfs_header_nritems(path->nodes[0]);
2243                         if (path->slots[0] >= nritems) {
2244                                 ret = btrfs_next_leaf(root, path);
2245                                 if (ret == 1)
2246                                         break;
2247                                 else if (ret < 0)
2248                                         goto out;
2249                         }
2250                         btrfs_item_key_to_cpu(path->nodes[0], &found_key,
2251                                               path->slots[0]);
2252                         if (found_key.objectid != dirid ||
2253                             found_key.type != dir_key.type)
2254                                 goto next_type;
2255
2256                         if (found_key.offset > range_end)
2257                                 break;
2258
2259                         ret = check_item_in_log(trans, root, log, path,
2260                                                 log_path, dir,
2261                                                 &found_key);
2262                         if (ret)
2263                                 goto out;
2264                         if (found_key.offset == (u64)-1)
2265                                 break;
2266                         dir_key.offset = found_key.offset + 1;
2267                 }
2268                 btrfs_release_path(path);
2269                 if (range_end == (u64)-1)
2270                         break;
2271                 range_start = range_end + 1;
2272         }
2273
2274 next_type:
2275         ret = 0;
2276         if (key_type == BTRFS_DIR_LOG_ITEM_KEY) {
2277                 key_type = BTRFS_DIR_LOG_INDEX_KEY;
2278                 dir_key.type = BTRFS_DIR_INDEX_KEY;
2279                 btrfs_release_path(path);
2280                 goto again;
2281         }
2282 out:
2283         btrfs_release_path(path);
2284         btrfs_free_path(log_path);
2285         iput(dir);
2286         return ret;
2287 }
2288
2289 /*
2290  * the process_func used to replay items from the log tree.  This
2291  * gets called in two different stages.  The first stage just looks
2292  * for inodes and makes sure they are all copied into the subvolume.
2293  *
2294  * The second stage copies all the other item types from the log into
2295  * the subvolume.  The two stage approach is slower, but gets rid of
2296  * lots of complexity around inodes referencing other inodes that exist
2297  * only in the log (references come from either directory items or inode
2298  * back refs).
2299  */
2300 static int replay_one_buffer(struct btrfs_root *log, struct extent_buffer *eb,
2301                              struct walk_control *wc, u64 gen)
2302 {
2303         int nritems;
2304         struct btrfs_path *path;
2305         struct btrfs_root *root = wc->replay_dest;
2306         struct btrfs_key key;
2307         int level;
2308         int i;
2309         int ret;
2310
2311         ret = btrfs_read_buffer(eb, gen);
2312         if (ret)
2313                 return ret;
2314
2315         level = btrfs_header_level(eb);
2316
2317         if (level != 0)
2318                 return 0;
2319
2320         path = btrfs_alloc_path();
2321         if (!path)
2322                 return -ENOMEM;
2323
2324         nritems = btrfs_header_nritems(eb);
2325         for (i = 0; i < nritems; i++) {
2326                 btrfs_item_key_to_cpu(eb, &key, i);
2327
2328                 /* inode keys are done during the first stage */
2329                 if (key.type == BTRFS_INODE_ITEM_KEY &&
2330                     wc->stage == LOG_WALK_REPLAY_INODES) {
2331                         struct btrfs_inode_item *inode_item;
2332                         u32 mode;
2333
2334                         inode_item = btrfs_item_ptr(eb, i,
2335                                             struct btrfs_inode_item);
2336                         ret = replay_xattr_deletes(wc->trans, root, log,
2337                                                    path, key.objectid);
2338                         if (ret)
2339                                 break;
2340                         mode = btrfs_inode_mode(eb, inode_item);
2341                         if (S_ISDIR(mode)) {
2342                                 ret = replay_dir_deletes(wc->trans,
2343                                          root, log, path, key.objectid, 0);
2344                                 if (ret)
2345                                         break;
2346                         }
2347                         ret = overwrite_item(wc->trans, root, path,
2348                                              eb, i, &key);
2349                         if (ret)
2350                                 break;
2351
2352                         /* for regular files, make sure corresponding
2353                          * orphan item exist. extents past the new EOF
2354                          * will be truncated later by orphan cleanup.
2355                          */
2356                         if (S_ISREG(mode)) {
2357                                 ret = insert_orphan_item(wc->trans, root,
2358                                                          key.objectid);
2359                                 if (ret)
2360                                         break;
2361                         }
2362
2363                         ret = link_to_fixup_dir(wc->trans, root,
2364                                                 path, key.objectid);
2365                         if (ret)
2366                                 break;
2367                 }
2368
2369                 if (key.type == BTRFS_DIR_INDEX_KEY &&
2370                     wc->stage == LOG_WALK_REPLAY_DIR_INDEX) {
2371                         ret = replay_one_dir_item(wc->trans, root, path,
2372                                                   eb, i, &key);
2373                         if (ret)
2374                                 break;
2375                 }
2376
2377                 if (wc->stage < LOG_WALK_REPLAY_ALL)
2378                         continue;
2379
2380                 /* these keys are simply copied */
2381                 if (key.type == BTRFS_XATTR_ITEM_KEY) {
2382                         ret = overwrite_item(wc->trans, root, path,
2383                                              eb, i, &key);
2384                         if (ret)
2385                                 break;
2386                 } else if (key.type == BTRFS_INODE_REF_KEY ||
2387                            key.type == BTRFS_INODE_EXTREF_KEY) {
2388                         ret = add_inode_ref(wc->trans, root, log, path,
2389                                             eb, i, &key);
2390                         if (ret && ret != -ENOENT)
2391                                 break;
2392                         ret = 0;
2393                 } else if (key.type == BTRFS_EXTENT_DATA_KEY) {
2394                         ret = replay_one_extent(wc->trans, root, path,
2395                                                 eb, i, &key);
2396                         if (ret)
2397                                 break;
2398                 } else if (key.type == BTRFS_DIR_ITEM_KEY) {
2399                         ret = replay_one_dir_item(wc->trans, root, path,
2400                                                   eb, i, &key);
2401                         if (ret)
2402                                 break;
2403                 }
2404         }
2405         btrfs_free_path(path);
2406         return ret;
2407 }
2408
2409 static noinline int walk_down_log_tree(struct btrfs_trans_handle *trans,
2410                                    struct btrfs_root *root,
2411                                    struct btrfs_path *path, int *level,
2412                                    struct walk_control *wc)
2413 {
2414         u64 root_owner;
2415         u64 bytenr;
2416         u64 ptr_gen;
2417         struct extent_buffer *next;
2418         struct extent_buffer *cur;
2419         struct extent_buffer *parent;
2420         u32 blocksize;
2421         int ret = 0;
2422
2423         WARN_ON(*level < 0);
2424         WARN_ON(*level >= BTRFS_MAX_LEVEL);
2425
2426         while (*level > 0) {
2427                 WARN_ON(*level < 0);
2428                 WARN_ON(*level >= BTRFS_MAX_LEVEL);
2429                 cur = path->nodes[*level];
2430
2431                 WARN_ON(btrfs_header_level(cur) != *level);
2432
2433                 if (path->slots[*level] >=
2434                     btrfs_header_nritems(cur))
2435                         break;
2436
2437                 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
2438                 ptr_gen = btrfs_node_ptr_generation(cur, path->slots[*level]);
2439                 blocksize = root->nodesize;
2440
2441                 parent = path->nodes[*level];
2442                 root_owner = btrfs_header_owner(parent);
2443
2444                 next = btrfs_find_create_tree_block(root, bytenr);
2445                 if (IS_ERR(next))
2446                         return PTR_ERR(next);
2447
2448                 if (*level == 1) {
2449                         ret = wc->process_func(root, next, wc, ptr_gen);
2450                         if (ret) {
2451                                 free_extent_buffer(next);
2452                                 return ret;
2453                         }
2454
2455                         path->slots[*level]++;
2456                         if (wc->free) {
2457                                 ret = btrfs_read_buffer(next, ptr_gen);
2458                                 if (ret) {
2459                                         free_extent_buffer(next);
2460                                         return ret;
2461                                 }
2462
2463                                 if (trans) {
2464                                         btrfs_tree_lock(next);
2465                                         btrfs_set_lock_blocking(next);
2466                                         clean_tree_block(trans, root->fs_info,
2467                                                         next);
2468                                         btrfs_wait_tree_block_writeback(next);
2469                                         btrfs_tree_unlock(next);
2470                                 } else {
2471                                         if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &next->bflags))
2472                                                 clear_extent_buffer_dirty(next);
2473                                 }
2474
2475                                 WARN_ON(root_owner !=
2476                                         BTRFS_TREE_LOG_OBJECTID);
2477                                 ret = btrfs_free_and_pin_reserved_extent(root,
2478                                                          bytenr, blocksize);
2479                                 if (ret) {
2480                                         free_extent_buffer(next);
2481                                         return ret;
2482                                 }
2483                         }
2484                         free_extent_buffer(next);
2485                         continue;
2486                 }
2487                 ret = btrfs_read_buffer(next, ptr_gen);
2488                 if (ret) {
2489                         free_extent_buffer(next);
2490                         return ret;
2491                 }
2492
2493                 WARN_ON(*level <= 0);
2494                 if (path->nodes[*level-1])
2495                         free_extent_buffer(path->nodes[*level-1]);
2496                 path->nodes[*level-1] = next;
2497                 *level = btrfs_header_level(next);
2498                 path->slots[*level] = 0;
2499                 cond_resched();
2500         }
2501         WARN_ON(*level < 0);
2502         WARN_ON(*level >= BTRFS_MAX_LEVEL);
2503
2504         path->slots[*level] = btrfs_header_nritems(path->nodes[*level]);
2505
2506         cond_resched();
2507         return 0;
2508 }
2509
2510 static noinline int walk_up_log_tree(struct btrfs_trans_handle *trans,
2511                                  struct btrfs_root *root,
2512                                  struct btrfs_path *path, int *level,
2513                                  struct walk_control *wc)
2514 {
2515         u64 root_owner;
2516         int i;
2517         int slot;
2518         int ret;
2519
2520         for (i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
2521                 slot = path->slots[i];
2522                 if (slot + 1 < btrfs_header_nritems(path->nodes[i])) {
2523                         path->slots[i]++;
2524                         *level = i;
2525                         WARN_ON(*level == 0);
2526                         return 0;
2527                 } else {
2528                         struct extent_buffer *parent;
2529                         if (path->nodes[*level] == root->node)
2530                                 parent = path->nodes[*level];
2531                         else
2532                                 parent = path->nodes[*level + 1];
2533
2534                         root_owner = btrfs_header_owner(parent);
2535                         ret = wc->process_func(root, path->nodes[*level], wc,
2536                                  btrfs_header_generation(path->nodes[*level]));
2537                         if (ret)
2538                                 return ret;
2539
2540                         if (wc->free) {
2541                                 struct extent_buffer *next;
2542
2543                                 next = path->nodes[*level];
2544
2545                                 if (trans) {
2546                                         btrfs_tree_lock(next);
2547                                         btrfs_set_lock_blocking(next);
2548                                         clean_tree_block(trans, root->fs_info,
2549                                                         next);
2550                                         btrfs_wait_tree_block_writeback(next);
2551                                         btrfs_tree_unlock(next);
2552                                 } else {
2553                                         if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &next->bflags))
2554                                                 clear_extent_buffer_dirty(next);
2555                                 }
2556
2557                                 WARN_ON(root_owner != BTRFS_TREE_LOG_OBJECTID);
2558                                 ret = btrfs_free_and_pin_reserved_extent(root,
2559                                                 path->nodes[*level]->start,
2560                                                 path->nodes[*level]->len);
2561                                 if (ret)
2562                                         return ret;
2563                         }
2564                         free_extent_buffer(path->nodes[*level]);
2565                         path->nodes[*level] = NULL;
2566                         *level = i + 1;
2567                 }
2568         }
2569         return 1;
2570 }
2571
2572 /*
2573  * drop the reference count on the tree rooted at 'snap'.  This traverses
2574  * the tree freeing any blocks that have a ref count of zero after being
2575  * decremented.
2576  */
2577 static int walk_log_tree(struct btrfs_trans_handle *trans,
2578                          struct btrfs_root *log, struct walk_control *wc)
2579 {
2580         int ret = 0;
2581         int wret;
2582         int level;
2583         struct btrfs_path *path;
2584         int orig_level;
2585
2586         path = btrfs_alloc_path();
2587         if (!path)
2588                 return -ENOMEM;
2589
2590         level = btrfs_header_level(log->node);
2591         orig_level = level;
2592         path->nodes[level] = log->node;
2593         extent_buffer_get(log->node);
2594         path->slots[level] = 0;
2595
2596         while (1) {
2597                 wret = walk_down_log_tree(trans, log, path, &level, wc);
2598                 if (wret > 0)
2599                         break;
2600                 if (wret < 0) {
2601                         ret = wret;
2602                         goto out;
2603                 }
2604
2605                 wret = walk_up_log_tree(trans, log, path, &level, wc);
2606                 if (wret > 0)
2607                         break;
2608                 if (wret < 0) {
2609                         ret = wret;
2610                         goto out;
2611                 }
2612         }
2613
2614         /* was the root node processed? if not, catch it here */
2615         if (path->nodes[orig_level]) {
2616                 ret = wc->process_func(log, path->nodes[orig_level], wc,
2617                          btrfs_header_generation(path->nodes[orig_level]));
2618                 if (ret)
2619                         goto out;
2620                 if (wc->free) {
2621                         struct extent_buffer *next;
2622
2623                         next = path->nodes[orig_level];
2624
2625                         if (trans) {
2626                                 btrfs_tree_lock(next);
2627                                 btrfs_set_lock_blocking(next);
2628                                 clean_tree_block(trans, log->fs_info, next);
2629                                 btrfs_wait_tree_block_writeback(next);
2630                                 btrfs_tree_unlock(next);
2631                         } else {
2632                                 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &next->bflags))
2633                                         clear_extent_buffer_dirty(next);
2634                         }
2635
2636                         WARN_ON(log->root_key.objectid !=
2637                                 BTRFS_TREE_LOG_OBJECTID);
2638                         ret = btrfs_free_and_pin_reserved_extent(log, next->start,
2639                                                          next->len);
2640                         if (ret)
2641                                 goto out;
2642                 }
2643         }
2644
2645 out:
2646         btrfs_free_path(path);
2647         return ret;
2648 }
2649
2650 /*
2651  * helper function to update the item for a given subvolumes log root
2652  * in the tree of log roots
2653  */
2654 static int update_log_root(struct btrfs_trans_handle *trans,
2655                            struct btrfs_root *log)
2656 {
2657         int ret;
2658
2659         if (log->log_transid == 1) {
2660                 /* insert root item on the first sync */
2661                 ret = btrfs_insert_root(trans, log->fs_info->log_root_tree,
2662                                 &log->root_key, &log->root_item);
2663         } else {
2664                 ret = btrfs_update_root(trans, log->fs_info->log_root_tree,
2665                                 &log->root_key, &log->root_item);
2666         }
2667         return ret;
2668 }
2669
2670 static void wait_log_commit(struct btrfs_root *root, int transid)
2671 {
2672         DEFINE_WAIT(wait);
2673         int index = transid % 2;
2674
2675         /*
2676          * we only allow two pending log transactions at a time,
2677          * so we know that if ours is more than 2 older than the
2678          * current transaction, we're done
2679          */
2680         do {
2681                 prepare_to_wait(&root->log_commit_wait[index],
2682                                 &wait, TASK_UNINTERRUPTIBLE);
2683                 mutex_unlock(&root->log_mutex);
2684
2685                 if (root->log_transid_committed < transid &&
2686                     atomic_read(&root->log_commit[index]))
2687                         schedule();
2688
2689                 finish_wait(&root->log_commit_wait[index], &wait);
2690                 mutex_lock(&root->log_mutex);
2691         } while (root->log_transid_committed < transid &&
2692                  atomic_read(&root->log_commit[index]));
2693 }
2694
2695 static void wait_for_writer(struct btrfs_root *root)
2696 {
2697         DEFINE_WAIT(wait);
2698
2699         while (atomic_read(&root->log_writers)) {
2700                 prepare_to_wait(&root->log_writer_wait,
2701                                 &wait, TASK_UNINTERRUPTIBLE);
2702                 mutex_unlock(&root->log_mutex);
2703                 if (atomic_read(&root->log_writers))
2704                         schedule();
2705                 finish_wait(&root->log_writer_wait, &wait);
2706                 mutex_lock(&root->log_mutex);
2707         }
2708 }
2709
2710 static inline void btrfs_remove_log_ctx(struct btrfs_root *root,
2711                                         struct btrfs_log_ctx *ctx)
2712 {
2713         if (!ctx)
2714                 return;
2715
2716         mutex_lock(&root->log_mutex);
2717         list_del_init(&ctx->list);
2718         mutex_unlock(&root->log_mutex);
2719 }
2720
2721 /* 
2722  * Invoked in log mutex context, or be sure there is no other task which
2723  * can access the list.
2724  */
2725 static inline void btrfs_remove_all_log_ctxs(struct btrfs_root *root,
2726                                              int index, int error)
2727 {
2728         struct btrfs_log_ctx *ctx;
2729         struct btrfs_log_ctx *safe;
2730
2731         list_for_each_entry_safe(ctx, safe, &root->log_ctxs[index], list) {
2732                 list_del_init(&ctx->list);
2733                 ctx->log_ret = error;
2734         }
2735
2736         INIT_LIST_HEAD(&root->log_ctxs[index]);
2737 }
2738
2739 /*
2740  * btrfs_sync_log does sends a given tree log down to the disk and
2741  * updates the super blocks to record it.  When this call is done,
2742  * you know that any inodes previously logged are safely on disk only
2743  * if it returns 0.
2744  *
2745  * Any other return value means you need to call btrfs_commit_transaction.
2746  * Some of the edge cases for fsyncing directories that have had unlinks
2747  * or renames done in the past mean that sometimes the only safe
2748  * fsync is to commit the whole FS.  When btrfs_sync_log returns -EAGAIN,
2749  * that has happened.
2750  */
2751 int btrfs_sync_log(struct btrfs_trans_handle *trans,
2752                    struct btrfs_root *root, struct btrfs_log_ctx *ctx)
2753 {
2754         int index1;
2755         int index2;
2756         int mark;
2757         int ret;
2758         struct btrfs_root *log = root->log_root;
2759         struct btrfs_root *log_root_tree = root->fs_info->log_root_tree;
2760         int log_transid = 0;
2761         struct btrfs_log_ctx root_log_ctx;
2762         struct blk_plug plug;
2763
2764         mutex_lock(&root->log_mutex);
2765         log_transid = ctx->log_transid;
2766         if (root->log_transid_committed >= log_transid) {
2767                 mutex_unlock(&root->log_mutex);
2768                 return ctx->log_ret;
2769         }
2770
2771         index1 = log_transid % 2;
2772         if (atomic_read(&root->log_commit[index1])) {
2773                 wait_log_commit(root, log_transid);
2774                 mutex_unlock(&root->log_mutex);
2775                 return ctx->log_ret;
2776         }
2777         ASSERT(log_transid == root->log_transid);
2778         atomic_set(&root->log_commit[index1], 1);
2779
2780         /* wait for previous tree log sync to complete */
2781         if (atomic_read(&root->log_commit[(index1 + 1) % 2]))
2782                 wait_log_commit(root, log_transid - 1);
2783
2784         while (1) {
2785                 int batch = atomic_read(&root->log_batch);
2786                 /* when we're on an ssd, just kick the log commit out */
2787                 if (!btrfs_test_opt(root->fs_info, SSD) &&
2788                     test_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state)) {
2789                         mutex_unlock(&root->log_mutex);
2790                         schedule_timeout_uninterruptible(1);
2791                         mutex_lock(&root->log_mutex);
2792                 }
2793                 wait_for_writer(root);
2794                 if (batch == atomic_read(&root->log_batch))
2795                         break;
2796         }
2797
2798         /* bail out if we need to do a full commit */
2799         if (btrfs_need_log_full_commit(root->fs_info, trans)) {
2800                 ret = -EAGAIN;
2801                 btrfs_free_logged_extents(log, log_transid);
2802                 mutex_unlock(&root->log_mutex);
2803                 goto out;
2804         }
2805
2806         if (log_transid % 2 == 0)
2807                 mark = EXTENT_DIRTY;
2808         else
2809                 mark = EXTENT_NEW;
2810
2811         /* we start IO on  all the marked extents here, but we don't actually
2812          * wait for them until later.
2813          */
2814         blk_start_plug(&plug);
2815         ret = btrfs_write_marked_extents(log, &log->dirty_log_pages, mark);
2816         if (ret) {
2817                 blk_finish_plug(&plug);
2818                 btrfs_abort_transaction(trans, ret);
2819                 btrfs_free_logged_extents(log, log_transid);
2820                 btrfs_set_log_full_commit(root->fs_info, trans);
2821                 mutex_unlock(&root->log_mutex);
2822                 goto out;
2823         }
2824
2825         btrfs_set_root_node(&log->root_item, log->node);
2826
2827         root->log_transid++;
2828         log->log_transid = root->log_transid;
2829         root->log_start_pid = 0;
2830         /*
2831          * Update or create log root item under the root's log_mutex to prevent
2832          * races with concurrent log syncs that can lead to failure to update
2833          * log root item because it was not created yet.
2834          */
2835         ret = update_log_root(trans, log);
2836         /*
2837          * IO has been started, blocks of the log tree have WRITTEN flag set
2838          * in their headers. new modifications of the log will be written to
2839          * new positions. so it's safe to allow log writers to go in.
2840          */
2841         mutex_unlock(&root->log_mutex);
2842
2843         btrfs_init_log_ctx(&root_log_ctx, NULL);
2844
2845         mutex_lock(&log_root_tree->log_mutex);
2846         atomic_inc(&log_root_tree->log_batch);
2847         atomic_inc(&log_root_tree->log_writers);
2848
2849         index2 = log_root_tree->log_transid % 2;
2850         list_add_tail(&root_log_ctx.list, &log_root_tree->log_ctxs[index2]);
2851         root_log_ctx.log_transid = log_root_tree->log_transid;
2852
2853         mutex_unlock(&log_root_tree->log_mutex);
2854
2855         mutex_lock(&log_root_tree->log_mutex);
2856         if (atomic_dec_and_test(&log_root_tree->log_writers)) {
2857                 /*
2858                  * Implicit memory barrier after atomic_dec_and_test
2859                  */
2860                 if (waitqueue_active(&log_root_tree->log_writer_wait))
2861                         wake_up(&log_root_tree->log_writer_wait);
2862         }
2863
2864         if (ret) {
2865                 if (!list_empty(&root_log_ctx.list))
2866                         list_del_init(&root_log_ctx.list);
2867
2868                 blk_finish_plug(&plug);
2869                 btrfs_set_log_full_commit(root->fs_info, trans);
2870
2871                 if (ret != -ENOSPC) {
2872                         btrfs_abort_transaction(trans, ret);
2873                         mutex_unlock(&log_root_tree->log_mutex);
2874                         goto out;
2875                 }
2876                 btrfs_wait_marked_extents(log, &log->dirty_log_pages, mark);
2877                 btrfs_free_logged_extents(log, log_transid);
2878                 mutex_unlock(&log_root_tree->log_mutex);
2879                 ret = -EAGAIN;
2880                 goto out;
2881         }
2882
2883         if (log_root_tree->log_transid_committed >= root_log_ctx.log_transid) {
2884                 blk_finish_plug(&plug);
2885                 list_del_init(&root_log_ctx.list);
2886                 mutex_unlock(&log_root_tree->log_mutex);
2887                 ret = root_log_ctx.log_ret;
2888                 goto out;
2889         }
2890
2891         index2 = root_log_ctx.log_transid % 2;
2892         if (atomic_read(&log_root_tree->log_commit[index2])) {
2893                 blk_finish_plug(&plug);
2894                 ret = btrfs_wait_marked_extents(log, &log->dirty_log_pages,
2895                                                 mark);
2896                 btrfs_wait_logged_extents(trans, log, log_transid);
2897                 wait_log_commit(log_root_tree,
2898                                 root_log_ctx.log_transid);
2899                 mutex_unlock(&log_root_tree->log_mutex);
2900                 if (!ret)
2901                         ret = root_log_ctx.log_ret;
2902                 goto out;
2903         }
2904         ASSERT(root_log_ctx.log_transid == log_root_tree->log_transid);
2905         atomic_set(&log_root_tree->log_commit[index2], 1);
2906
2907         if (atomic_read(&log_root_tree->log_commit[(index2 + 1) % 2])) {
2908                 wait_log_commit(log_root_tree,
2909                                 root_log_ctx.log_transid - 1);
2910         }
2911
2912         wait_for_writer(log_root_tree);
2913
2914         /*
2915          * now that we've moved on to the tree of log tree roots,
2916          * check the full commit flag again
2917          */
2918         if (btrfs_need_log_full_commit(root->fs_info, trans)) {
2919                 blk_finish_plug(&plug);
2920                 btrfs_wait_marked_extents(log, &log->dirty_log_pages, mark);
2921                 btrfs_free_logged_extents(log, log_transid);
2922                 mutex_unlock(&log_root_tree->log_mutex);
2923                 ret = -EAGAIN;
2924                 goto out_wake_log_root;
2925         }
2926
2927         ret = btrfs_write_marked_extents(log_root_tree,
2928                                          &log_root_tree->dirty_log_pages,
2929                                          EXTENT_DIRTY | EXTENT_NEW);
2930         blk_finish_plug(&plug);
2931         if (ret) {
2932                 btrfs_set_log_full_commit(root->fs_info, trans);
2933                 btrfs_abort_transaction(trans, ret);
2934                 btrfs_free_logged_extents(log, log_transid);
2935                 mutex_unlock(&log_root_tree->log_mutex);
2936                 goto out_wake_log_root;
2937         }
2938         ret = btrfs_wait_marked_extents(log, &log->dirty_log_pages, mark);
2939         if (!ret)
2940                 ret = btrfs_wait_marked_extents(log_root_tree,
2941                                                 &log_root_tree->dirty_log_pages,
2942                                                 EXTENT_NEW | EXTENT_DIRTY);
2943         if (ret) {
2944                 btrfs_set_log_full_commit(root->fs_info, trans);
2945                 btrfs_free_logged_extents(log, log_transid);
2946                 mutex_unlock(&log_root_tree->log_mutex);
2947                 goto out_wake_log_root;
2948         }
2949         btrfs_wait_logged_extents(trans, log, log_transid);
2950
2951         btrfs_set_super_log_root(root->fs_info->super_for_commit,
2952                                 log_root_tree->node->start);
2953         btrfs_set_super_log_root_level(root->fs_info->super_for_commit,
2954                                 btrfs_header_level(log_root_tree->node));
2955
2956         log_root_tree->log_transid++;
2957         mutex_unlock(&log_root_tree->log_mutex);
2958
2959         /*
2960          * nobody else is going to jump in and write the the ctree
2961          * super here because the log_commit atomic below is protecting
2962          * us.  We must be called with a transaction handle pinning
2963          * the running transaction open, so a full commit can't hop
2964          * in and cause problems either.
2965          */
2966         ret = write_ctree_super(trans, root->fs_info->tree_root, 1);
2967         if (ret) {
2968                 btrfs_set_log_full_commit(root->fs_info, trans);
2969                 btrfs_abort_transaction(trans, ret);
2970                 goto out_wake_log_root;
2971         }
2972
2973         mutex_lock(&root->log_mutex);
2974         if (root->last_log_commit < log_transid)
2975                 root->last_log_commit = log_transid;
2976         mutex_unlock(&root->log_mutex);
2977
2978 out_wake_log_root:
2979         mutex_lock(&log_root_tree->log_mutex);
2980         btrfs_remove_all_log_ctxs(log_root_tree, index2, ret);
2981
2982         log_root_tree->log_transid_committed++;
2983         atomic_set(&log_root_tree->log_commit[index2], 0);
2984         mutex_unlock(&log_root_tree->log_mutex);
2985
2986         /*
2987          * The barrier before waitqueue_active is needed so all the updates
2988          * above are seen by the woken threads. It might not be necessary, but
2989          * proving that seems to be hard.
2990          */
2991         smp_mb();
2992         if (waitqueue_active(&log_root_tree->log_commit_wait[index2]))
2993                 wake_up(&log_root_tree->log_commit_wait[index2]);
2994 out:
2995         mutex_lock(&root->log_mutex);
2996         btrfs_remove_all_log_ctxs(root, index1, ret);
2997         root->log_transid_committed++;
2998         atomic_set(&root->log_commit[index1], 0);
2999         mutex_unlock(&root->log_mutex);
3000
3001         /*
3002          * The barrier before waitqueue_active is needed so all the updates
3003          * above are seen by the woken threads. It might not be necessary, but
3004          * proving that seems to be hard.
3005          */
3006         smp_mb();
3007         if (waitqueue_active(&root->log_commit_wait[index1]))
3008                 wake_up(&root->log_commit_wait[index1]);
3009         return ret;
3010 }
3011
3012 static void free_log_tree(struct btrfs_trans_handle *trans,
3013                           struct btrfs_root *log)
3014 {
3015         int ret;
3016         u64 start;
3017         u64 end;
3018         struct walk_control wc = {
3019                 .free = 1,
3020                 .process_func = process_one_buffer
3021         };
3022
3023         ret = walk_log_tree(trans, log, &wc);
3024         if (ret) {
3025                 if (trans)
3026                         btrfs_abort_transaction(trans, ret);
3027                 else
3028                         btrfs_handle_fs_error(log->fs_info, ret, NULL);
3029         }
3030
3031         while (1) {
3032                 ret = find_first_extent_bit(&log->dirty_log_pages,
3033                                 0, &start, &end,
3034                                 EXTENT_DIRTY | EXTENT_NEW | EXTENT_NEED_WAIT,
3035                                 NULL);
3036                 if (ret)
3037                         break;
3038
3039                 clear_extent_bits(&log->dirty_log_pages, start, end,
3040                                   EXTENT_DIRTY | EXTENT_NEW | EXTENT_NEED_WAIT);
3041         }
3042
3043         /*
3044          * We may have short-circuited the log tree with the full commit logic
3045          * and left ordered extents on our list, so clear these out to keep us
3046          * from leaking inodes and memory.
3047          */
3048         btrfs_free_logged_extents(log, 0);
3049         btrfs_free_logged_extents(log, 1);
3050
3051         free_extent_buffer(log->node);
3052         kfree(log);
3053 }
3054
3055 /*
3056  * free all the extents used by the tree log.  This should be called
3057  * at commit time of the full transaction
3058  */
3059 int btrfs_free_log(struct btrfs_trans_handle *trans, struct btrfs_root *root)
3060 {
3061         if (root->log_root) {
3062                 free_log_tree(trans, root->log_root);
3063                 root->log_root = NULL;
3064         }
3065         return 0;
3066 }
3067
3068 int btrfs_free_log_root_tree(struct btrfs_trans_handle *trans,
3069                              struct btrfs_fs_info *fs_info)
3070 {
3071         if (fs_info->log_root_tree) {
3072                 free_log_tree(trans, fs_info->log_root_tree);
3073                 fs_info->log_root_tree = NULL;
3074         }
3075         return 0;
3076 }
3077
3078 /*
3079  * If both a file and directory are logged, and unlinks or renames are
3080  * mixed in, we have a few interesting corners:
3081  *
3082  * create file X in dir Y
3083  * link file X to X.link in dir Y
3084  * fsync file X
3085  * unlink file X but leave X.link
3086  * fsync dir Y
3087  *
3088  * After a crash we would expect only X.link to exist.  But file X
3089  * didn't get fsync'd again so the log has back refs for X and X.link.
3090  *
3091  * We solve this by removing directory entries and inode backrefs from the
3092  * log when a file that was logged in the current transaction is
3093  * unlinked.  Any later fsync will include the updated log entries, and
3094  * we'll be able to reconstruct the proper directory items from backrefs.
3095  *
3096  * This optimizations allows us to avoid relogging the entire inode
3097  * or the entire directory.
3098  */
3099 int btrfs_del_dir_entries_in_log(struct btrfs_trans_handle *trans,
3100                                  struct btrfs_root *root,
3101                                  const char *name, int name_len,
3102                                  struct inode *dir, u64 index)
3103 {
3104         struct btrfs_root *log;
3105         struct btrfs_dir_item *di;
3106         struct btrfs_path *path;
3107         int ret;
3108         int err = 0;
3109         int bytes_del = 0;
3110         u64 dir_ino = btrfs_ino(dir);
3111
3112         if (BTRFS_I(dir)->logged_trans < trans->transid)
3113                 return 0;
3114
3115         ret = join_running_log_trans(root);
3116         if (ret)
3117                 return 0;
3118
3119         mutex_lock(&BTRFS_I(dir)->log_mutex);
3120
3121         log = root->log_root;
3122         path = btrfs_alloc_path();
3123         if (!path) {
3124                 err = -ENOMEM;
3125                 goto out_unlock;
3126         }
3127
3128         di = btrfs_lookup_dir_item(trans, log, path, dir_ino,
3129                                    name, name_len, -1);
3130         if (IS_ERR(di)) {
3131                 err = PTR_ERR(di);
3132                 goto fail;
3133         }
3134         if (di) {
3135                 ret = btrfs_delete_one_dir_name(trans, log, path, di);
3136                 bytes_del += name_len;
3137                 if (ret) {
3138                         err = ret;
3139                         goto fail;
3140                 }
3141         }
3142         btrfs_release_path(path);
3143         di = btrfs_lookup_dir_index_item(trans, log, path, dir_ino,
3144                                          index, name, name_len, -1);
3145         if (IS_ERR(di)) {
3146                 err = PTR_ERR(di);
3147                 goto fail;
3148         }
3149         if (di) {
3150                 ret = btrfs_delete_one_dir_name(trans, log, path, di);
3151                 bytes_del += name_len;
3152                 if (ret) {
3153                         err = ret;
3154                         goto fail;
3155                 }
3156         }
3157
3158         /* update the directory size in the log to reflect the names
3159          * we have removed
3160          */
3161         if (bytes_del) {
3162                 struct btrfs_key key;
3163
3164                 key.objectid = dir_ino;
3165                 key.offset = 0;
3166                 key.type = BTRFS_INODE_ITEM_KEY;
3167                 btrfs_release_path(path);
3168
3169                 ret = btrfs_search_slot(trans, log, &key, path, 0, 1);
3170                 if (ret < 0) {
3171                         err = ret;
3172                         goto fail;
3173                 }
3174                 if (ret == 0) {
3175                         struct btrfs_inode_item *item;
3176                         u64 i_size;
3177
3178                         item = btrfs_item_ptr(path->nodes[0], path->slots[0],
3179                                               struct btrfs_inode_item);
3180                         i_size = btrfs_inode_size(path->nodes[0], item);
3181                         if (i_size > bytes_del)
3182                                 i_size -= bytes_del;
3183                         else
3184                                 i_size = 0;
3185                         btrfs_set_inode_size(path->nodes[0], item, i_size);
3186                         btrfs_mark_buffer_dirty(path->nodes[0]);
3187                 } else
3188                         ret = 0;
3189                 btrfs_release_path(path);
3190         }
3191 fail:
3192         btrfs_free_path(path);
3193 out_unlock:
3194         mutex_unlock(&BTRFS_I(dir)->log_mutex);
3195         if (err == -ENOSPC) {
3196                 btrfs_set_log_full_commit(root->fs_info, trans);
3197                 err = 0;
3198         } else if (err < 0 && err != -ENOENT) {
3199                 /* ENOENT can be returned if the entry hasn't been fsynced yet */
3200                 btrfs_abort_transaction(trans, err);
3201         }
3202
3203         btrfs_end_log_trans(root);
3204
3205         return err;
3206 }
3207
3208 /* see comments for btrfs_del_dir_entries_in_log */
3209 int btrfs_del_inode_ref_in_log(struct btrfs_trans_handle *trans,
3210                                struct btrfs_root *root,
3211                                const char *name, int name_len,
3212                                struct inode *inode, u64 dirid)
3213 {
3214         struct btrfs_root *log;
3215         u64 index;
3216         int ret;
3217
3218         if (BTRFS_I(inode)->logged_trans < trans->transid)
3219                 return 0;
3220
3221         ret = join_running_log_trans(root);
3222         if (ret)
3223                 return 0;
3224         log = root->log_root;
3225         mutex_lock(&BTRFS_I(inode)->log_mutex);
3226
3227         ret = btrfs_del_inode_ref(trans, log, name, name_len, btrfs_ino(inode),
3228                                   dirid, &index);
3229         mutex_unlock(&BTRFS_I(inode)->log_mutex);
3230         if (ret == -ENOSPC) {
3231                 btrfs_set_log_full_commit(root->fs_info, trans);
3232                 ret = 0;
3233         } else if (ret < 0 && ret != -ENOENT)
3234                 btrfs_abort_transaction(trans, ret);
3235         btrfs_end_log_trans(root);
3236
3237         return ret;
3238 }
3239
3240 /*
3241  * creates a range item in the log for 'dirid'.  first_offset and
3242  * last_offset tell us which parts of the key space the log should
3243  * be considered authoritative for.
3244  */
3245 static noinline int insert_dir_log_key(struct btrfs_trans_handle *trans,
3246                                        struct btrfs_root *log,
3247                                        struct btrfs_path *path,
3248                                        int key_type, u64 dirid,
3249                                        u64 first_offset, u64 last_offset)
3250 {
3251         int ret;
3252         struct btrfs_key key;
3253         struct btrfs_dir_log_item *item;
3254
3255         key.objectid = dirid;
3256         key.offset = first_offset;
3257         if (key_type == BTRFS_DIR_ITEM_KEY)
3258                 key.type = BTRFS_DIR_LOG_ITEM_KEY;
3259         else
3260                 key.type = BTRFS_DIR_LOG_INDEX_KEY;
3261         ret = btrfs_insert_empty_item(trans, log, path, &key, sizeof(*item));
3262         if (ret)
3263                 return ret;
3264
3265         item = btrfs_item_ptr(path->nodes[0], path->slots[0],
3266                               struct btrfs_dir_log_item);
3267         btrfs_set_dir_log_end(path->nodes[0], item, last_offset);
3268         btrfs_mark_buffer_dirty(path->nodes[0]);
3269         btrfs_release_path(path);
3270         return 0;
3271 }
3272
3273 /*
3274  * log all the items included in the current transaction for a given
3275  * directory.  This also creates the range items in the log tree required
3276  * to replay anything deleted before the fsync
3277  */
3278 static noinline int log_dir_items(struct btrfs_trans_handle *trans,
3279                           struct btrfs_root *root, struct inode *inode,
3280                           struct btrfs_path *path,
3281                           struct btrfs_path *dst_path, int key_type,
3282                           struct btrfs_log_ctx *ctx,
3283                           u64 min_offset, u64 *last_offset_ret)
3284 {
3285         struct btrfs_key min_key;
3286         struct btrfs_root *log = root->log_root;
3287         struct extent_buffer *src;
3288         int err = 0;
3289         int ret;
3290         int i;
3291         int nritems;
3292         u64 first_offset = min_offset;
3293         u64 last_offset = (u64)-1;
3294         u64 ino = btrfs_ino(inode);
3295
3296         log = root->log_root;
3297
3298         min_key.objectid = ino;
3299         min_key.type = key_type;
3300         min_key.offset = min_offset;
3301
3302         ret = btrfs_search_forward(root, &min_key, path, trans->transid);
3303
3304         /*
3305          * we didn't find anything from this transaction, see if there
3306          * is anything at all
3307          */
3308         if (ret != 0 || min_key.objectid != ino || min_key.type != key_type) {
3309                 min_key.objectid = ino;
3310                 min_key.type = key_type;
3311                 min_key.offset = (u64)-1;
3312                 btrfs_release_path(path);
3313                 ret = btrfs_search_slot(NULL, root, &min_key, path, 0, 0);
3314                 if (ret < 0) {
3315                         btrfs_release_path(path);
3316                         return ret;
3317                 }
3318                 ret = btrfs_previous_item(root, path, ino, key_type);
3319
3320                 /* if ret == 0 there are items for this type,
3321                  * create a range to tell us the last key of this type.
3322                  * otherwise, there are no items in this directory after
3323                  * *min_offset, and we create a range to indicate that.
3324                  */
3325                 if (ret == 0) {
3326                         struct btrfs_key tmp;
3327                         btrfs_item_key_to_cpu(path->nodes[0], &tmp,
3328                                               path->slots[0]);
3329                         if (key_type == tmp.type)
3330                                 first_offset = max(min_offset, tmp.offset) + 1;
3331                 }
3332                 goto done;
3333         }
3334
3335         /* go backward to find any previous key */
3336         ret = btrfs_previous_item(root, path, ino, key_type);
3337         if (ret == 0) {
3338                 struct btrfs_key tmp;
3339                 btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]);
3340                 if (key_type == tmp.type) {
3341                         first_offset = tmp.offset;
3342                         ret = overwrite_item(trans, log, dst_path,
3343                                              path->nodes[0], path->slots[0],
3344                                              &tmp);
3345                         if (ret) {
3346                                 err = ret;
3347                                 goto done;
3348                         }
3349                 }
3350         }
3351         btrfs_release_path(path);
3352
3353         /*
3354          * Find the first key from this transaction again.  See the note for
3355          * log_new_dir_dentries, if we're logging a directory recursively we
3356          * won't be holding its i_mutex, which means we can modify the directory
3357          * while we're logging it.  If we remove an entry between our first
3358          * search and this search we'll not find the key again and can just
3359          * bail.
3360          */
3361 search:
3362         ret = btrfs_search_slot(NULL, root, &min_key, path, 0, 0);
3363         if (ret != 0)
3364                 goto done;
3365
3366         /*
3367          * we have a block from this transaction, log every item in it
3368          * from our directory
3369          */
3370         while (1) {
3371                 struct btrfs_key tmp;
3372                 src = path->nodes[0];
3373                 nritems = btrfs_header_nritems(src);
3374                 for (i = path->slots[0]; i < nritems; i++) {
3375                         struct btrfs_dir_item *di;
3376
3377                         btrfs_item_key_to_cpu(src, &min_key, i);
3378
3379                         if (min_key.objectid != ino || min_key.type != key_type)
3380                                 goto done;
3381
3382                         if (need_resched()) {
3383                                 btrfs_release_path(path);
3384                                 cond_resched();
3385                                 goto search;
3386                         }
3387
3388                         ret = overwrite_item(trans, log, dst_path, src, i,
3389                                              &min_key);
3390                         if (ret) {
3391                                 err = ret;
3392                                 goto done;
3393                         }
3394
3395                         /*
3396                          * We must make sure that when we log a directory entry,
3397                          * the corresponding inode, after log replay, has a
3398                          * matching link count. For example:
3399                          *
3400                          * touch foo
3401                          * mkdir mydir
3402                          * sync
3403                          * ln foo mydir/bar
3404                          * xfs_io -c "fsync" mydir
3405                          * <crash>
3406                          * <mount fs and log replay>
3407                          *
3408                          * Would result in a fsync log that when replayed, our
3409                          * file inode would have a link count of 1, but we get
3410                          * two directory entries pointing to the same inode.
3411                          * After removing one of the names, it would not be
3412                          * possible to remove the other name, which resulted
3413                          * always in stale file handle errors, and would not
3414                          * be possible to rmdir the parent directory, since
3415                          * its i_size could never decrement to the value
3416                          * BTRFS_EMPTY_DIR_SIZE, resulting in -ENOTEMPTY errors.
3417                          */
3418                         di = btrfs_item_ptr(src, i, struct btrfs_dir_item);
3419                         btrfs_dir_item_key_to_cpu(src, di, &tmp);
3420                         if (ctx &&
3421                             (btrfs_dir_transid(src, di) == trans->transid ||
3422                              btrfs_dir_type(src, di) == BTRFS_FT_DIR) &&
3423                             tmp.type != BTRFS_ROOT_ITEM_KEY)
3424                                 ctx->log_new_dentries = true;
3425                 }
3426                 path->slots[0] = nritems;
3427
3428                 /*
3429                  * look ahead to the next item and see if it is also
3430                  * from this directory and from this transaction
3431                  */
3432                 ret = btrfs_next_leaf(root, path);
3433                 if (ret) {
3434                         if (ret == 1)
3435                                 last_offset = (u64)-1;
3436                         else
3437                                 err = ret;
3438                         goto done;
3439                 }
3440                 btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]);
3441                 if (tmp.objectid != ino || tmp.type != key_type) {
3442                         last_offset = (u64)-1;
3443                         goto done;
3444                 }
3445                 if (btrfs_header_generation(path->nodes[0]) != trans->transid) {
3446                         ret = overwrite_item(trans, log, dst_path,
3447                                              path->nodes[0], path->slots[0],
3448                                              &tmp);
3449                         if (ret)
3450                                 err = ret;
3451                         else
3452                                 last_offset = tmp.offset;
3453                         goto done;
3454                 }
3455         }
3456 done:
3457         btrfs_release_path(path);
3458         btrfs_release_path(dst_path);
3459
3460         if (err == 0) {
3461                 *last_offset_ret = last_offset;
3462                 /*
3463                  * insert the log range keys to indicate where the log
3464                  * is valid
3465                  */
3466                 ret = insert_dir_log_key(trans, log, path, key_type,
3467                                          ino, first_offset, last_offset);
3468                 if (ret)
3469                         err = ret;
3470         }
3471         return err;
3472 }
3473
3474 /*
3475  * logging directories is very similar to logging inodes, We find all the items
3476  * from the current transaction and write them to the log.
3477  *
3478  * The recovery code scans the directory in the subvolume, and if it finds a
3479  * key in the range logged that is not present in the log tree, then it means
3480  * that dir entry was unlinked during the transaction.
3481  *
3482  * In order for that scan to work, we must include one key smaller than
3483  * the smallest logged by this transaction and one key larger than the largest
3484  * key logged by this transaction.
3485  */
3486 static noinline int log_directory_changes(struct btrfs_trans_handle *trans,
3487                           struct btrfs_root *root, struct inode *inode,
3488                           struct btrfs_path *path,
3489                           struct btrfs_path *dst_path,
3490                           struct btrfs_log_ctx *ctx)
3491 {
3492         u64 min_key;
3493         u64 max_key;
3494         int ret;
3495         int key_type = BTRFS_DIR_ITEM_KEY;
3496
3497 again:
3498         min_key = 0;
3499         max_key = 0;
3500         while (1) {
3501                 ret = log_dir_items(trans, root, inode, path,
3502                                     dst_path, key_type, ctx, min_key,
3503                                     &max_key);
3504                 if (ret)
3505                         return ret;
3506                 if (max_key == (u64)-1)
3507                         break;
3508                 min_key = max_key + 1;
3509         }
3510
3511         if (key_type == BTRFS_DIR_ITEM_KEY) {
3512                 key_type = BTRFS_DIR_INDEX_KEY;
3513                 goto again;
3514         }
3515         return 0;
3516 }
3517
3518 /*
3519  * a helper function to drop items from the log before we relog an
3520  * inode.  max_key_type indicates the highest item type to remove.
3521  * This cannot be run for file data extents because it does not
3522  * free the extents they point to.
3523  */
3524 static int drop_objectid_items(struct btrfs_trans_handle *trans,
3525                                   struct btrfs_root *log,
3526                                   struct btrfs_path *path,
3527                                   u64 objectid, int max_key_type)
3528 {
3529         int ret;
3530         struct btrfs_key key;
3531         struct btrfs_key found_key;
3532         int start_slot;
3533
3534         key.objectid = objectid;
3535         key.type = max_key_type;
3536         key.offset = (u64)-1;
3537
3538         while (1) {
3539                 ret = btrfs_search_slot(trans, log, &key, path, -1, 1);
3540                 BUG_ON(ret == 0); /* Logic error */
3541                 if (ret < 0)
3542                         break;
3543
3544                 if (path->slots[0] == 0)
3545                         break;
3546
3547                 path->slots[0]--;
3548                 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
3549                                       path->slots[0]);
3550
3551                 if (found_key.objectid != objectid)
3552                         break;
3553
3554                 found_key.offset = 0;
3555                 found_key.type = 0;
3556                 ret = btrfs_bin_search(path->nodes[0], &found_key, 0,
3557                                        &start_slot);
3558
3559                 ret = btrfs_del_items(trans, log, path, start_slot,
3560                                       path->slots[0] - start_slot + 1);
3561                 /*
3562                  * If start slot isn't 0 then we don't need to re-search, we've
3563                  * found the last guy with the objectid in this tree.
3564                  */
3565                 if (ret || start_slot != 0)
3566                         break;
3567                 btrfs_release_path(path);
3568         }
3569         btrfs_release_path(path);
3570         if (ret > 0)
3571                 ret = 0;
3572         return ret;
3573 }
3574
3575 static void fill_inode_item(struct btrfs_trans_handle *trans,
3576                             struct extent_buffer *leaf,
3577                             struct btrfs_inode_item *item,
3578                             struct inode *inode, int log_inode_only,
3579                             u64 logged_isize)
3580 {
3581         struct btrfs_map_token token;
3582
3583         btrfs_init_map_token(&token);
3584
3585         if (log_inode_only) {
3586                 /* set the generation to zero so the recover code
3587                  * can tell the difference between an logging
3588                  * just to say 'this inode exists' and a logging
3589                  * to say 'update this inode with these values'
3590                  */
3591                 btrfs_set_token_inode_generation(leaf, item, 0, &token);
3592                 btrfs_set_token_inode_size(leaf, item, logged_isize, &token);
3593         } else {
3594                 btrfs_set_token_inode_generation(leaf, item,
3595                                                  BTRFS_I(inode)->generation,
3596                                                  &token);
3597                 btrfs_set_token_inode_size(leaf, item, inode->i_size, &token);
3598         }
3599
3600         btrfs_set_token_inode_uid(leaf, item, i_uid_read(inode), &token);
3601         btrfs_set_token_inode_gid(leaf, item, i_gid_read(inode), &token);
3602         btrfs_set_token_inode_mode(leaf, item, inode->i_mode, &token);
3603         btrfs_set_token_inode_nlink(leaf, item, inode->i_nlink, &token);
3604
3605         btrfs_set_token_timespec_sec(leaf, &item->atime,
3606                                      inode->i_atime.tv_sec, &token);
3607         btrfs_set_token_timespec_nsec(leaf, &item->atime,
3608                                       inode->i_atime.tv_nsec, &token);
3609
3610         btrfs_set_token_timespec_sec(leaf, &item->mtime,
3611                                      inode->i_mtime.tv_sec, &token);
3612         btrfs_set_token_timespec_nsec(leaf, &item->mtime,
3613                                       inode->i_mtime.tv_nsec, &token);
3614
3615         btrfs_set_token_timespec_sec(leaf, &item->ctime,
3616                                      inode->i_ctime.tv_sec, &token);
3617         btrfs_set_token_timespec_nsec(leaf, &item->ctime,
3618                                       inode->i_ctime.tv_nsec, &token);
3619
3620         btrfs_set_token_inode_nbytes(leaf, item, inode_get_bytes(inode),
3621                                      &token);
3622
3623         btrfs_set_token_inode_sequence(leaf, item, inode->i_version, &token);
3624         btrfs_set_token_inode_transid(leaf, item, trans->transid, &token);
3625         btrfs_set_token_inode_rdev(leaf, item, inode->i_rdev, &token);
3626         btrfs_set_token_inode_flags(leaf, item, BTRFS_I(inode)->flags, &token);
3627         btrfs_set_token_inode_block_group(leaf, item, 0, &token);
3628 }
3629
3630 static int log_inode_item(struct btrfs_trans_handle *trans,
3631                           struct btrfs_root *log, struct btrfs_path *path,
3632                           struct inode *inode)
3633 {
3634         struct btrfs_inode_item *inode_item;
3635         int ret;
3636
3637         ret = btrfs_insert_empty_item(trans, log, path,
3638                                       &BTRFS_I(inode)->location,
3639                                       sizeof(*inode_item));
3640         if (ret && ret != -EEXIST)
3641                 return ret;
3642         inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
3643                                     struct btrfs_inode_item);
3644         fill_inode_item(trans, path->nodes[0], inode_item, inode, 0, 0);
3645         btrfs_release_path(path);
3646         return 0;
3647 }
3648
3649 static noinline int copy_items(struct btrfs_trans_handle *trans,
3650                                struct inode *inode,
3651                                struct btrfs_path *dst_path,
3652                                struct btrfs_path *src_path, u64 *last_extent,
3653                                int start_slot, int nr, int inode_only,
3654                                u64 logged_isize)
3655 {
3656         unsigned long src_offset;
3657         unsigned long dst_offset;
3658         struct btrfs_root *log = BTRFS_I(inode)->root->log_root;
3659         struct btrfs_file_extent_item *extent;
3660         struct btrfs_inode_item *inode_item;
3661         struct extent_buffer *src = src_path->nodes[0];
3662         struct btrfs_key first_key, last_key, key;
3663         int ret;
3664         struct btrfs_key *ins_keys;
3665         u32 *ins_sizes;
3666         char *ins_data;
3667         int i;
3668         struct list_head ordered_sums;
3669         int skip_csum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
3670         bool has_extents = false;
3671         bool need_find_last_extent = true;
3672         bool done = false;
3673
3674         INIT_LIST_HEAD(&ordered_sums);
3675
3676         ins_data = kmalloc(nr * sizeof(struct btrfs_key) +
3677                            nr * sizeof(u32), GFP_NOFS);
3678         if (!ins_data)
3679                 return -ENOMEM;
3680
3681         first_key.objectid = (u64)-1;
3682
3683         ins_sizes = (u32 *)ins_data;
3684         ins_keys = (struct btrfs_key *)(ins_data + nr * sizeof(u32));
3685
3686         for (i = 0; i < nr; i++) {
3687                 ins_sizes[i] = btrfs_item_size_nr(src, i + start_slot);
3688                 btrfs_item_key_to_cpu(src, ins_keys + i, i + start_slot);
3689         }
3690         ret = btrfs_insert_empty_items(trans, log, dst_path,
3691                                        ins_keys, ins_sizes, nr);
3692         if (ret) {
3693                 kfree(ins_data);
3694                 return ret;
3695         }
3696
3697         for (i = 0; i < nr; i++, dst_path->slots[0]++) {
3698                 dst_offset = btrfs_item_ptr_offset(dst_path->nodes[0],
3699                                                    dst_path->slots[0]);
3700
3701                 src_offset = btrfs_item_ptr_offset(src, start_slot + i);
3702
3703                 if (i == nr - 1)
3704                         last_key = ins_keys[i];
3705
3706                 if (ins_keys[i].type == BTRFS_INODE_ITEM_KEY) {
3707                         inode_item = btrfs_item_ptr(dst_path->nodes[0],
3708                                                     dst_path->slots[0],
3709                                                     struct btrfs_inode_item);
3710                         fill_inode_item(trans, dst_path->nodes[0], inode_item,
3711                                         inode, inode_only == LOG_INODE_EXISTS,
3712                                         logged_isize);
3713                 } else {
3714                         copy_extent_buffer(dst_path->nodes[0], src, dst_offset,
3715                                            src_offset, ins_sizes[i]);
3716                 }
3717
3718                 /*
3719                  * We set need_find_last_extent here in case we know we were
3720                  * processing other items and then walk into the first extent in
3721                  * the inode.  If we don't hit an extent then nothing changes,
3722                  * we'll do the last search the next time around.
3723                  */
3724                 if (ins_keys[i].type == BTRFS_EXTENT_DATA_KEY) {
3725                         has_extents = true;
3726                         if (first_key.objectid == (u64)-1)
3727                                 first_key = ins_keys[i];
3728                 } else {
3729                         need_find_last_extent = false;
3730                 }
3731
3732                 /* take a reference on file data extents so that truncates
3733                  * or deletes of this inode don't have to relog the inode
3734                  * again
3735                  */
3736                 if (ins_keys[i].type == BTRFS_EXTENT_DATA_KEY &&
3737                     !skip_csum) {
3738                         int found_type;
3739                         extent = btrfs_item_ptr(src, start_slot + i,
3740                                                 struct btrfs_file_extent_item);
3741
3742                         if (btrfs_file_extent_generation(src, extent) < trans->transid)
3743                                 continue;
3744
3745                         found_type = btrfs_file_extent_type(src, extent);
3746                         if (found_type == BTRFS_FILE_EXTENT_REG) {
3747                                 u64 ds, dl, cs, cl;
3748                                 ds = btrfs_file_extent_disk_bytenr(src,
3749                                                                 extent);
3750                                 /* ds == 0 is a hole */
3751                                 if (ds == 0)
3752                                         continue;
3753
3754                                 dl = btrfs_file_extent_disk_num_bytes(src,
3755                                                                 extent);
3756                                 cs = btrfs_file_extent_offset(src, extent);
3757                                 cl = btrfs_file_extent_num_bytes(src,
3758                                                                 extent);
3759                                 if (btrfs_file_extent_compression(src,
3760                                                                   extent)) {
3761                                         cs = 0;
3762                                         cl = dl;
3763                                 }
3764
3765                                 ret = btrfs_lookup_csums_range(
3766                                                 log->fs_info->csum_root,
3767                                                 ds + cs, ds + cs + cl - 1,
3768                                                 &ordered_sums, 0);
3769                                 if (ret)
3770                                         break;
3771                         }
3772                 }
3773         }
3774
3775         btrfs_mark_buffer_dirty(dst_path->nodes[0]);
3776         btrfs_release_path(dst_path);
3777         kfree(ins_data);
3778
3779         /*
3780          * we have to do this after the loop above to avoid changing the
3781          * log tree while trying to change the log tree.
3782          */
3783         while (!list_empty(&ordered_sums)) {
3784                 struct btrfs_ordered_sum *sums = list_entry(ordered_sums.next,
3785                                                    struct btrfs_ordered_sum,
3786                                                    list);
3787                 if (!ret)
3788                         ret = btrfs_csum_file_blocks(trans, log, sums);
3789                 list_del(&sums->list);
3790                 kfree(sums);
3791         }
3792
3793         if (!has_extents)
3794                 return ret;
3795
3796         if (need_find_last_extent && *last_extent == first_key.offset) {
3797                 /*
3798                  * We don't have any leafs between our current one and the one
3799                  * we processed before that can have file extent items for our
3800                  * inode (and have a generation number smaller than our current
3801                  * transaction id).
3802                  */
3803                 need_find_last_extent = false;
3804         }
3805
3806         /*
3807          * Because we use btrfs_search_forward we could skip leaves that were
3808          * not modified and then assume *last_extent is valid when it really
3809          * isn't.  So back up to the previous leaf and read the end of the last
3810          * extent before we go and fill in holes.
3811          */
3812         if (need_find_last_extent) {
3813                 u64 len;
3814
3815                 ret = btrfs_prev_leaf(BTRFS_I(inode)->root, src_path);
3816                 if (ret < 0)
3817                         return ret;
3818                 if (ret)
3819                         goto fill_holes;
3820                 if (src_path->slots[0])
3821                         src_path->slots[0]--;
3822                 src = src_path->nodes[0];
3823                 btrfs_item_key_to_cpu(src, &key, src_path->slots[0]);
3824                 if (key.objectid != btrfs_ino(inode) ||
3825                     key.type != BTRFS_EXTENT_DATA_KEY)
3826                         goto fill_holes;
3827                 extent = btrfs_item_ptr(src, src_path->slots[0],
3828                                         struct btrfs_file_extent_item);
3829                 if (btrfs_file_extent_type(src, extent) ==
3830                     BTRFS_FILE_EXTENT_INLINE) {
3831                         len = btrfs_file_extent_inline_len(src,
3832                                                            src_path->slots[0],
3833                                                            extent);
3834                         *last_extent = ALIGN(key.offset + len,
3835                                              log->sectorsize);
3836                 } else {
3837                         len = btrfs_file_extent_num_bytes(src, extent);
3838                         *last_extent = key.offset + len;
3839                 }
3840         }
3841 fill_holes:
3842         /* So we did prev_leaf, now we need to move to the next leaf, but a few
3843          * things could have happened
3844          *
3845          * 1) A merge could have happened, so we could currently be on a leaf
3846          * that holds what we were copying in the first place.
3847          * 2) A split could have happened, and now not all of the items we want
3848          * are on the same leaf.
3849          *
3850          * So we need to adjust how we search for holes, we need to drop the
3851          * path and re-search for the first extent key we found, and then walk
3852          * forward until we hit the last one we copied.
3853          */
3854         if (need_find_last_extent) {
3855                 /* btrfs_prev_leaf could return 1 without releasing the path */
3856                 btrfs_release_path(src_path);
3857                 ret = btrfs_search_slot(NULL, BTRFS_I(inode)->root, &first_key,
3858                                         src_path, 0, 0);
3859                 if (ret < 0)
3860                         return ret;
3861                 ASSERT(ret == 0);
3862                 src = src_path->nodes[0];
3863                 i = src_path->slots[0];
3864         } else {
3865                 i = start_slot;
3866         }
3867
3868         /*
3869          * Ok so here we need to go through and fill in any holes we may have
3870          * to make sure that holes are punched for those areas in case they had
3871          * extents previously.
3872          */
3873         while (!done) {
3874                 u64 offset, len;
3875                 u64 extent_end;
3876
3877                 if (i >= btrfs_header_nritems(src_path->nodes[0])) {
3878                         ret = btrfs_next_leaf(BTRFS_I(inode)->root, src_path);
3879                         if (ret < 0)
3880                                 return ret;
3881                         ASSERT(ret == 0);
3882                         src = src_path->nodes[0];
3883                         i = 0;
3884                         need_find_last_extent = true;
3885                 }
3886
3887                 btrfs_item_key_to_cpu(src, &key, i);
3888                 if (!btrfs_comp_cpu_keys(&key, &last_key))
3889                         done = true;
3890                 if (key.objectid != btrfs_ino(inode) ||
3891                     key.type != BTRFS_EXTENT_DATA_KEY) {
3892                         i++;
3893                         continue;
3894                 }
3895                 extent = btrfs_item_ptr(src, i, struct btrfs_file_extent_item);
3896                 if (btrfs_file_extent_type(src, extent) ==
3897                     BTRFS_FILE_EXTENT_INLINE) {
3898                         len = btrfs_file_extent_inline_len(src, i, extent);
3899                         extent_end = ALIGN(key.offset + len, log->sectorsize);
3900                 } else {
3901                         len = btrfs_file_extent_num_bytes(src, extent);
3902                         extent_end = key.offset + len;
3903                 }
3904                 i++;
3905
3906                 if (*last_extent == key.offset) {
3907                         *last_extent = extent_end;
3908                         continue;
3909                 }
3910                 offset = *last_extent;
3911                 len = key.offset - *last_extent;
3912                 ret = btrfs_insert_file_extent(trans, log, btrfs_ino(inode),
3913                                                offset, 0, 0, len, 0, len, 0,
3914                                                0, 0);
3915                 if (ret)
3916                         break;
3917                 *last_extent = extent_end;
3918         }
3919         /*
3920          * Need to let the callers know we dropped the path so they should
3921          * re-search.
3922          */
3923         if (!ret && need_find_last_extent)
3924                 ret = 1;
3925         return ret;
3926 }
3927
3928 static int extent_cmp(void *priv, struct list_head *a, struct list_head *b)
3929 {
3930         struct extent_map *em1, *em2;
3931
3932         em1 = list_entry(a, struct extent_map, list);
3933         em2 = list_entry(b, struct extent_map, list);
3934
3935         if (em1->start < em2->start)
3936                 return -1;
3937         else if (em1->start > em2->start)
3938                 return 1;
3939         return 0;
3940 }
3941
3942 static int wait_ordered_extents(struct btrfs_trans_handle *trans,
3943                                 struct inode *inode,
3944                                 struct btrfs_root *root,
3945                                 const struct extent_map *em,
3946                                 const struct list_head *logged_list,
3947                                 bool *ordered_io_error)
3948 {
3949         struct btrfs_ordered_extent *ordered;
3950         struct btrfs_root *log = root->log_root;
3951         u64 mod_start = em->mod_start;
3952         u64 mod_len = em->mod_len;
3953         const bool skip_csum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
3954         u64 csum_offset;
3955         u64 csum_len;
3956         LIST_HEAD(ordered_sums);
3957         int ret = 0;
3958
3959         *ordered_io_error = false;
3960
3961         if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
3962             em->block_start == EXTENT_MAP_HOLE)
3963                 return 0;
3964
3965         /*
3966          * Wait far any ordered extent that covers our extent map. If it
3967          * finishes without an error, first check and see if our csums are on
3968          * our outstanding ordered extents.
3969          */
3970         list_for_each_entry(ordered, logged_list, log_list) {
3971                 struct btrfs_ordered_sum *sum;
3972
3973                 if (!mod_len)
3974                         break;
3975
3976                 if (ordered->file_offset + ordered->len <= mod_start ||
3977                     mod_start + mod_len <= ordered->file_offset)
3978                         continue;
3979
3980                 if (!test_bit(BTRFS_ORDERED_IO_DONE, &ordered->flags) &&
3981                     !test_bit(BTRFS_ORDERED_IOERR, &ordered->flags) &&
3982                     !test_bit(BTRFS_ORDERED_DIRECT, &ordered->flags)) {
3983                         const u64 start = ordered->file_offset;
3984                         const u64 end = ordered->file_offset + ordered->len - 1;
3985
3986                         WARN_ON(ordered->inode != inode);
3987                         filemap_fdatawrite_range(inode->i_mapping, start, end);
3988                 }
3989
3990                 wait_event(ordered->wait,
3991                            (test_bit(BTRFS_ORDERED_IO_DONE, &ordered->flags) ||
3992                             test_bit(BTRFS_ORDERED_IOERR, &ordered->flags)));
3993
3994                 if (test_bit(BTRFS_ORDERED_IOERR, &ordered->flags)) {
3995                         /*
3996                          * Clear the AS_EIO/AS_ENOSPC flags from the inode's
3997                          * i_mapping flags, so that the next fsync won't get
3998                          * an outdated io error too.
3999                          */
4000                         filemap_check_errors(inode->i_mapping);
4001                         *ordered_io_error = true;
4002                         break;
4003                 }
4004                 /*
4005                  * We are going to copy all the csums on this ordered extent, so
4006                  * go ahead and adjust mod_start and mod_len in case this
4007                  * ordered extent has already been logged.
4008                  */
4009                 if (ordered->file_offset > mod_start) {
4010                         if (ordered->file_offset + ordered->len >=
4011                             mod_start + mod_len)
4012                                 mod_len = ordered->file_offset - mod_start;
4013                         /*
4014                          * If we have this case
4015                          *
4016                          * |--------- logged extent ---------|
4017                          *       |----- ordered extent ----|
4018                          *
4019                          * Just don't mess with mod_start and mod_len, we'll
4020                          * just end up logging more csums than we need and it
4021                          * will be ok.
4022                          */
4023                 } else {
4024                         if (ordered->file_offset + ordered->len <
4025                             mod_start + mod_len) {
4026                                 mod_len = (mod_start + mod_len) -
4027                                         (ordered->file_offset + ordered->len);
4028                                 mod_start = ordered->file_offset +
4029                                         ordered->len;
4030                         } else {
4031                                 mod_len = 0;
4032                         }
4033                 }
4034
4035                 if (skip_csum)
4036                         continue;
4037
4038                 /*
4039                  * To keep us from looping for the above case of an ordered
4040                  * extent that falls inside of the logged extent.
4041                  */
4042                 if (test_and_set_bit(BTRFS_ORDERED_LOGGED_CSUM,
4043                                      &ordered->flags))
4044                         continue;
4045
4046                 list_for_each_entry(sum, &ordered->list, list) {
4047                         ret = btrfs_csum_file_blocks(trans, log, sum);
4048                         if (ret)
4049                                 break;
4050                 }
4051         }
4052
4053         if (*ordered_io_error || !mod_len || ret || skip_csum)
4054                 return ret;
4055
4056         if (em->compress_type) {
4057                 csum_offset = 0;
4058                 csum_len = max(em->block_len, em->orig_block_len);
4059         } else {
4060                 csum_offset = mod_start - em->start;
4061                 csum_len = mod_len;
4062         }
4063
4064         /* block start is already adjusted for the file extent offset. */
4065         ret = btrfs_lookup_csums_range(log->fs_info->csum_root,
4066                                        em->block_start + csum_offset,
4067                                        em->block_start + csum_offset +
4068                                        csum_len - 1, &ordered_sums, 0);
4069         if (ret)
4070                 return ret;
4071
4072         while (!list_empty(&ordered_sums)) {
4073                 struct btrfs_ordered_sum *sums = list_entry(ordered_sums.next,
4074                                                    struct btrfs_ordered_sum,
4075                                                    list);
4076                 if (!ret)
4077                         ret = btrfs_csum_file_blocks(trans, log, sums);
4078                 list_del(&sums->list);
4079                 kfree(sums);
4080         }
4081
4082         return ret;
4083 }
4084
4085 static int log_one_extent(struct btrfs_trans_handle *trans,
4086                           struct inode *inode, struct btrfs_root *root,
4087                           const struct extent_map *em,
4088                           struct btrfs_path *path,
4089                           const struct list_head *logged_list,
4090                           struct btrfs_log_ctx *ctx)
4091 {
4092         struct btrfs_root *log = root->log_root;
4093         struct btrfs_file_extent_item *fi;
4094         struct extent_buffer *leaf;
4095         struct btrfs_map_token token;
4096         struct btrfs_key key;
4097         u64 extent_offset = em->start - em->orig_start;
4098         u64 block_len;
4099         int ret;
4100         int extent_inserted = 0;
4101         bool ordered_io_err = false;
4102
4103         ret = wait_ordered_extents(trans, inode, root, em, logged_list,
4104                                    &ordered_io_err);
4105         if (ret)
4106                 return ret;
4107
4108         if (ordered_io_err) {
4109                 ctx->io_err = -EIO;
4110                 return 0;
4111         }
4112
4113         btrfs_init_map_token(&token);
4114
4115         ret = __btrfs_drop_extents(trans, log, inode, path, em->start,
4116                                    em->start + em->len, NULL, 0, 1,
4117                                    sizeof(*fi), &extent_inserted);
4118         if (ret)
4119                 return ret;
4120
4121         if (!extent_inserted) {
4122                 key.objectid = btrfs_ino(inode);
4123                 key.type = BTRFS_EXTENT_DATA_KEY;
4124                 key.offset = em->start;
4125
4126                 ret = btrfs_insert_empty_item(trans, log, path, &key,
4127                                               sizeof(*fi));
4128                 if (ret)
4129                         return ret;
4130         }
4131         leaf = path->nodes[0];
4132         fi = btrfs_item_ptr(leaf, path->slots[0],
4133                             struct btrfs_file_extent_item);
4134
4135         btrfs_set_token_file_extent_generation(leaf, fi, trans->transid,
4136                                                &token);
4137         if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
4138                 btrfs_set_token_file_extent_type(leaf, fi,
4139                                                  BTRFS_FILE_EXTENT_PREALLOC,
4140                                                  &token);
4141         else
4142                 btrfs_set_token_file_extent_type(leaf, fi,
4143                                                  BTRFS_FILE_EXTENT_REG,
4144                                                  &token);
4145
4146         block_len = max(em->block_len, em->orig_block_len);
4147         if (em->compress_type != BTRFS_COMPRESS_NONE) {
4148                 btrfs_set_token_file_extent_disk_bytenr(leaf, fi,
4149                                                         em->block_start,
4150                                                         &token);
4151                 btrfs_set_token_file_extent_disk_num_bytes(leaf, fi, block_len,
4152                                                            &token);
4153         } else if (em->block_start < EXTENT_MAP_LAST_BYTE) {
4154                 btrfs_set_token_file_extent_disk_bytenr(leaf, fi,
4155                                                         em->block_start -
4156                                                         extent_offset, &token);
4157                 btrfs_set_token_file_extent_disk_num_bytes(leaf, fi, block_len,
4158                                                            &token);
4159         } else {
4160                 btrfs_set_token_file_extent_disk_bytenr(leaf, fi, 0, &token);
4161                 btrfs_set_token_file_extent_disk_num_bytes(leaf, fi, 0,
4162                                                            &token);
4163         }
4164
4165         btrfs_set_token_file_extent_offset(leaf, fi, extent_offset, &token);
4166         btrfs_set_token_file_extent_num_bytes(leaf, fi, em->len, &token);
4167         btrfs_set_token_file_extent_ram_bytes(leaf, fi, em->ram_bytes, &token);
4168         btrfs_set_token_file_extent_compression(leaf, fi, em->compress_type,
4169                                                 &token);
4170         btrfs_set_token_file_extent_encryption(leaf, fi, 0, &token);
4171         btrfs_set_token_file_extent_other_encoding(leaf, fi, 0, &token);
4172         btrfs_mark_buffer_dirty(leaf);
4173
4174         btrfs_release_path(path);
4175
4176         return ret;
4177 }
4178
4179 static int btrfs_log_changed_extents(struct btrfs_trans_handle *trans,
4180                                      struct btrfs_root *root,
4181                                      struct inode *inode,
4182                                      struct btrfs_path *path,
4183                                      struct list_head *logged_list,
4184                                      struct btrfs_log_ctx *ctx,
4185                                      const u64 start,
4186                                      const u64 end)
4187 {
4188         struct extent_map *em, *n;
4189         struct list_head extents;
4190         struct extent_map_tree *tree = &BTRFS_I(inode)->extent_tree;
4191         u64 test_gen;
4192         int ret = 0;
4193         int num = 0;
4194
4195         INIT_LIST_HEAD(&extents);
4196
4197         down_write(&BTRFS_I(inode)->dio_sem);
4198         write_lock(&tree->lock);
4199         test_gen = root->fs_info->last_trans_committed;
4200
4201         list_for_each_entry_safe(em, n, &tree->modified_extents, list) {
4202                 list_del_init(&em->list);
4203
4204                 /*
4205                  * Just an arbitrary number, this can be really CPU intensive
4206                  * once we start getting a lot of extents, and really once we
4207                  * have a bunch of extents we just want to commit since it will
4208                  * be faster.
4209                  */
4210                 if (++num > 32768) {
4211                         list_del_init(&tree->modified_extents);
4212                         ret = -EFBIG;
4213                         goto process;
4214                 }
4215
4216                 if (em->generation <= test_gen)
4217                         continue;
4218                 /* Need a ref to keep it from getting evicted from cache */
4219                 atomic_inc(&em->refs);
4220                 set_bit(EXTENT_FLAG_LOGGING, &em->flags);
4221                 list_add_tail(&em->list, &extents);
4222                 num++;
4223         }
4224
4225         list_sort(NULL, &extents, extent_cmp);
4226         btrfs_get_logged_extents(inode, logged_list, start, end);
4227         /*
4228          * Some ordered extents started by fsync might have completed
4229          * before we could collect them into the list logged_list, which
4230          * means they're gone, not in our logged_list nor in the inode's
4231          * ordered tree. We want the application/user space to know an
4232          * error happened while attempting to persist file data so that
4233          * it can take proper action. If such error happened, we leave
4234          * without writing to the log tree and the fsync must report the
4235          * file data write error and not commit the current transaction.
4236          */
4237         ret = filemap_check_errors(inode->i_mapping);
4238         if (ret)
4239                 ctx->io_err = ret;
4240 process:
4241         while (!list_empty(&extents)) {
4242                 em = list_entry(extents.next, struct extent_map, list);
4243
4244                 list_del_init(&em->list);
4245
4246                 /*
4247                  * If we had an error we just need to delete everybody from our
4248                  * private list.
4249                  */
4250                 if (ret) {
4251                         clear_em_logging(tree, em);
4252                         free_extent_map(em);
4253                         continue;
4254                 }
4255
4256                 write_unlock(&tree->lock);
4257
4258                 ret = log_one_extent(trans, inode, root, em, path, logged_list,
4259                                      ctx);
4260                 write_lock(&tree->lock);
4261                 clear_em_logging(tree, em);
4262                 free_extent_map(em);
4263         }
4264         WARN_ON(!list_empty(&extents));
4265         write_unlock(&tree->lock);
4266         up_write(&BTRFS_I(inode)->dio_sem);
4267
4268         btrfs_release_path(path);
4269         return ret;
4270 }
4271
4272 static int logged_inode_size(struct btrfs_root *log, struct inode *inode,
4273                              struct btrfs_path *path, u64 *size_ret)
4274 {
4275         struct btrfs_key key;
4276         int ret;
4277
4278         key.objectid = btrfs_ino(inode);
4279         key.type = BTRFS_INODE_ITEM_KEY;
4280         key.offset = 0;
4281
4282         ret = btrfs_search_slot(NULL, log, &key, path, 0, 0);
4283         if (ret < 0) {
4284                 return ret;
4285         } else if (ret > 0) {
4286                 *size_ret = 0;
4287         } else {
4288                 struct btrfs_inode_item *item;
4289
4290                 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4291                                       struct btrfs_inode_item);
4292                 *size_ret = btrfs_inode_size(path->nodes[0], item);
4293         }
4294
4295         btrfs_release_path(path);
4296         return 0;
4297 }
4298
4299 /*
4300  * At the moment we always log all xattrs. This is to figure out at log replay
4301  * time which xattrs must have their deletion replayed. If a xattr is missing
4302  * in the log tree and exists in the fs/subvol tree, we delete it. This is
4303  * because if a xattr is deleted, the inode is fsynced and a power failure
4304  * happens, causing the log to be replayed the next time the fs is mounted,
4305  * we want the xattr to not exist anymore (same behaviour as other filesystems
4306  * with a journal, ext3/4, xfs, f2fs, etc).
4307  */
4308 static int btrfs_log_all_xattrs(struct btrfs_trans_handle *trans,
4309                                 struct btrfs_root *root,
4310                                 struct inode *inode,
4311                                 struct btrfs_path *path,
4312                                 struct btrfs_path *dst_path)
4313 {
4314         int ret;
4315         struct btrfs_key key;
4316         const u64 ino = btrfs_ino(inode);
4317         int ins_nr = 0;
4318         int start_slot = 0;
4319
4320         key.objectid = ino;
4321         key.type = BTRFS_XATTR_ITEM_KEY;
4322         key.offset = 0;
4323
4324         ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4325         if (ret < 0)
4326                 return ret;
4327
4328         while (true) {
4329                 int slot = path->slots[0];
4330                 struct extent_buffer *leaf = path->nodes[0];
4331                 int nritems = btrfs_header_nritems(leaf);
4332
4333                 if (slot >= nritems) {
4334                         if (ins_nr > 0) {
4335                                 u64 last_extent = 0;
4336
4337                                 ret = copy_items(trans, inode, dst_path, path,
4338                                                  &last_extent, start_slot,
4339                                                  ins_nr, 1, 0);
4340                                 /* can't be 1, extent items aren't processed */
4341                                 ASSERT(ret <= 0);
4342                                 if (ret < 0)
4343                                         return ret;
4344                                 ins_nr = 0;
4345                         }
4346                         ret = btrfs_next_leaf(root, path);
4347                         if (ret < 0)
4348                                 return ret;
4349                         else if (ret > 0)
4350                                 break;
4351                         continue;
4352                 }
4353
4354                 btrfs_item_key_to_cpu(leaf, &key, slot);
4355                 if (key.objectid != ino || key.type != BTRFS_XATTR_ITEM_KEY)
4356                         break;
4357
4358                 if (ins_nr == 0)
4359                         start_slot = slot;
4360                 ins_nr++;
4361                 path->slots[0]++;
4362                 cond_resched();
4363         }
4364         if (ins_nr > 0) {
4365                 u64 last_extent = 0;
4366
4367                 ret = copy_items(trans, inode, dst_path, path,
4368                                  &last_extent, start_slot,
4369                                  ins_nr, 1, 0);
4370                 /* can't be 1, extent items aren't processed */
4371                 ASSERT(ret <= 0);
4372                 if (ret < 0)
4373                         return ret;
4374         }
4375
4376         return 0;
4377 }
4378
4379 /*
4380  * If the no holes feature is enabled we need to make sure any hole between the
4381  * last extent and the i_size of our inode is explicitly marked in the log. This
4382  * is to make sure that doing something like:
4383  *
4384  *      1) create file with 128Kb of data
4385  *      2) truncate file to 64Kb
4386  *      3) truncate file to 256Kb
4387  *      4) fsync file
4388  *      5) <crash/power failure>
4389  *      6) mount fs and trigger log replay
4390  *
4391  * Will give us a file with a size of 256Kb, the first 64Kb of data match what
4392  * the file had in its first 64Kb of data at step 1 and the last 192Kb of the
4393  * file correspond to a hole. The presence of explicit holes in a log tree is
4394  * what guarantees that log replay will remove/adjust file extent items in the
4395  * fs/subvol tree.
4396  *
4397  * Here we do not need to care about holes between extents, that is already done
4398  * by copy_items(). We also only need to do this in the full sync path, where we
4399  * lookup for extents from the fs/subvol tree only. In the fast path case, we
4400  * lookup the list of modified extent maps and if any represents a hole, we
4401  * insert a corresponding extent representing a hole in the log tree.
4402  */
4403 static int btrfs_log_trailing_hole(struct btrfs_trans_handle *trans,
4404                                    struct btrfs_root *root,
4405                                    struct inode *inode,
4406                                    struct btrfs_path *path)
4407 {
4408         int ret;
4409         struct btrfs_key key;
4410         u64 hole_start;
4411         u64 hole_size;
4412         struct extent_buffer *leaf;
4413         struct btrfs_root *log = root->log_root;
4414         const u64 ino = btrfs_ino(inode);
4415         const u64 i_size = i_size_read(inode);
4416
4417         if (!btrfs_fs_incompat(root->fs_info, NO_HOLES))
4418                 return 0;
4419
4420         key.objectid = ino;
4421         key.type = BTRFS_EXTENT_DATA_KEY;
4422         key.offset = (u64)-1;
4423
4424         ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4425         ASSERT(ret != 0);
4426         if (ret < 0)
4427                 return ret;
4428
4429         ASSERT(path->slots[0] > 0);
4430         path->slots[0]--;
4431         leaf = path->nodes[0];
4432         btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
4433
4434         if (key.objectid != ino || key.type != BTRFS_EXTENT_DATA_KEY) {
4435                 /* inode does not have any extents */
4436                 hole_start = 0;
4437                 hole_size = i_size;
4438         } else {
4439                 struct btrfs_file_extent_item *extent;
4440                 u64 len;
4441
4442                 /*
4443                  * If there's an extent beyond i_size, an explicit hole was
4444                  * already inserted by copy_items().
4445                  */
4446                 if (key.offset >= i_size)
4447                         return 0;
4448
4449                 extent = btrfs_item_ptr(leaf, path->slots[0],
4450                                         struct btrfs_file_extent_item);
4451
4452                 if (btrfs_file_extent_type(leaf, extent) ==
4453                     BTRFS_FILE_EXTENT_INLINE)
4454                         return 0;
4455
4456                 len = btrfs_file_extent_num_bytes(leaf, extent);
4457                 /* Last extent goes beyond i_size, no need to log a hole. */
4458                 if (key.offset + len > i_size)
4459                         return 0;
4460                 hole_start = key.offset + len;
4461                 hole_size = i_size - hole_start;
4462         }
4463         btrfs_release_path(path);
4464
4465         /* Last extent ends at i_size. */
4466         if (hole_size == 0)
4467                 return 0;
4468
4469         hole_size = ALIGN(hole_size, root->sectorsize);
4470         ret = btrfs_insert_file_extent(trans, log, ino, hole_start, 0, 0,
4471                                        hole_size, 0, hole_size, 0, 0, 0);
4472         return ret;
4473 }
4474
4475 /*
4476  * When we are logging a new inode X, check if it doesn't have a reference that
4477  * matches the reference from some other inode Y created in a past transaction
4478  * and that was renamed in the current transaction. If we don't do this, then at
4479  * log replay time we can lose inode Y (and all its files if it's a directory):
4480  *
4481  * mkdir /mnt/x
4482  * echo "hello world" > /mnt/x/foobar
4483  * sync
4484  * mv /mnt/x /mnt/y
4485  * mkdir /mnt/x                 # or touch /mnt/x
4486  * xfs_io -c fsync /mnt/x
4487  * <power fail>
4488  * mount fs, trigger log replay
4489  *
4490  * After the log replay procedure, we would lose the first directory and all its
4491  * files (file foobar).
4492  * For the case where inode Y is not a directory we simply end up losing it:
4493  *
4494  * echo "123" > /mnt/foo
4495  * sync
4496  * mv /mnt/foo /mnt/bar
4497  * echo "abc" > /mnt/foo
4498  * xfs_io -c fsync /mnt/foo
4499  * <power fail>
4500  *
4501  * We also need this for cases where a snapshot entry is replaced by some other
4502  * entry (file or directory) otherwise we end up with an unreplayable log due to
4503  * attempts to delete the snapshot entry (entry of type BTRFS_ROOT_ITEM_KEY) as
4504  * if it were a regular entry:
4505  *
4506  * mkdir /mnt/x
4507  * btrfs subvolume snapshot /mnt /mnt/x/snap
4508  * btrfs subvolume delete /mnt/x/snap
4509  * rmdir /mnt/x
4510  * mkdir /mnt/x
4511  * fsync /mnt/x or fsync some new file inside it
4512  * <power fail>
4513  *
4514  * The snapshot delete, rmdir of x, mkdir of a new x and the fsync all happen in
4515  * the same transaction.
4516  */
4517 static int btrfs_check_ref_name_override(struct extent_buffer *eb,
4518                                          const int slot,
4519                                          const struct btrfs_key *key,
4520                                          struct inode *inode,
4521                                          u64 *other_ino)
4522 {
4523         int ret;
4524         struct btrfs_path *search_path;
4525         char *name = NULL;
4526         u32 name_len = 0;
4527         u32 item_size = btrfs_item_size_nr(eb, slot);
4528         u32 cur_offset = 0;
4529         unsigned long ptr = btrfs_item_ptr_offset(eb, slot);
4530
4531         search_path = btrfs_alloc_path();
4532         if (!search_path)
4533                 return -ENOMEM;
4534         search_path->search_commit_root = 1;
4535         search_path->skip_locking = 1;
4536
4537         while (cur_offset < item_size) {
4538                 u64 parent;
4539                 u32 this_name_len;
4540                 u32 this_len;
4541                 unsigned long name_ptr;
4542                 struct btrfs_dir_item *di;
4543
4544                 if (key->type == BTRFS_INODE_REF_KEY) {
4545                         struct btrfs_inode_ref *iref;
4546
4547                         iref = (struct btrfs_inode_ref *)(ptr + cur_offset);
4548                         parent = key->offset;
4549                         this_name_len = btrfs_inode_ref_name_len(eb, iref);
4550                         name_ptr = (unsigned long)(iref + 1);
4551                         this_len = sizeof(*iref) + this_name_len;
4552                 } else {
4553                         struct btrfs_inode_extref *extref;
4554
4555                         extref = (struct btrfs_inode_extref *)(ptr +
4556                                                                cur_offset);
4557                         parent = btrfs_inode_extref_parent(eb, extref);
4558                         this_name_len = btrfs_inode_extref_name_len(eb, extref);
4559                         name_ptr = (unsigned long)&extref->name;
4560                         this_len = sizeof(*extref) + this_name_len;
4561                 }
4562
4563                 if (this_name_len > name_len) {
4564                         char *new_name;
4565
4566                         new_name = krealloc(name, this_name_len, GFP_NOFS);
4567                         if (!new_name) {
4568                                 ret = -ENOMEM;
4569                                 goto out;
4570                         }
4571                         name_len = this_name_len;
4572                         name = new_name;
4573                 }
4574
4575                 read_extent_buffer(eb, name, name_ptr, this_name_len);
4576                 di = btrfs_lookup_dir_item(NULL, BTRFS_I(inode)->root,
4577                                            search_path, parent,
4578                                            name, this_name_len, 0);
4579                 if (di && !IS_ERR(di)) {
4580                         struct btrfs_key di_key;
4581
4582                         btrfs_dir_item_key_to_cpu(search_path->nodes[0],
4583                                                   di, &di_key);
4584                         if (di_key.type == BTRFS_INODE_ITEM_KEY) {
4585                                 ret = 1;
4586                                 *other_ino = di_key.objectid;
4587                         } else {
4588                                 ret = -EAGAIN;
4589                         }
4590                         goto out;
4591                 } else if (IS_ERR(di)) {
4592                         ret = PTR_ERR(di);
4593                         goto out;
4594                 }
4595                 btrfs_release_path(search_path);
4596
4597                 cur_offset += this_len;
4598         }
4599         ret = 0;
4600 out:
4601         btrfs_free_path(search_path);
4602         kfree(name);
4603         return ret;
4604 }
4605
4606 /* log a single inode in the tree log.
4607  * At least one parent directory for this inode must exist in the tree
4608  * or be logged already.
4609  *
4610  * Any items from this inode changed by the current transaction are copied
4611  * to the log tree.  An extra reference is taken on any extents in this
4612  * file, allowing us to avoid a whole pile of corner cases around logging
4613  * blocks that have been removed from the tree.
4614  *
4615  * See LOG_INODE_ALL and related defines for a description of what inode_only
4616  * does.
4617  *
4618  * This handles both files and directories.
4619  */
4620 static int btrfs_log_inode(struct btrfs_trans_handle *trans,
4621                            struct btrfs_root *root, struct inode *inode,
4622                            int inode_only,
4623                            const loff_t start,
4624                            const loff_t end,
4625                            struct btrfs_log_ctx *ctx)
4626 {
4627         struct btrfs_path *path;
4628         struct btrfs_path *dst_path;
4629         struct btrfs_key min_key;
4630         struct btrfs_key max_key;
4631         struct btrfs_root *log = root->log_root;
4632         struct extent_buffer *src = NULL;
4633         LIST_HEAD(logged_list);
4634         u64 last_extent = 0;
4635         int err = 0;
4636         int ret;
4637         int nritems;
4638         int ins_start_slot = 0;
4639         int ins_nr;
4640         bool fast_search = false;
4641         u64 ino = btrfs_ino(inode);
4642         struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
4643         u64 logged_isize = 0;
4644         bool need_log_inode_item = true;
4645         bool xattrs_logged = false;
4646
4647         path = btrfs_alloc_path();
4648         if (!path)
4649                 return -ENOMEM;
4650         dst_path = btrfs_alloc_path();
4651         if (!dst_path) {
4652                 btrfs_free_path(path);
4653                 return -ENOMEM;
4654         }
4655
4656         min_key.objectid = ino;
4657         min_key.type = BTRFS_INODE_ITEM_KEY;
4658         min_key.offset = 0;
4659
4660         max_key.objectid = ino;
4661
4662
4663         /* today the code can only do partial logging of directories */
4664         if (S_ISDIR(inode->i_mode) ||
4665             (!test_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
4666                        &BTRFS_I(inode)->runtime_flags) &&
4667              inode_only >= LOG_INODE_EXISTS))
4668                 max_key.type = BTRFS_XATTR_ITEM_KEY;
4669         else
4670                 max_key.type = (u8)-1;
4671         max_key.offset = (u64)-1;
4672
4673         /*
4674          * Only run delayed items if we are a dir or a new file.
4675          * Otherwise commit the delayed inode only, which is needed in
4676          * order for the log replay code to mark inodes for link count
4677          * fixup (create temporary BTRFS_TREE_LOG_FIXUP_OBJECTID items).
4678          */
4679         if (S_ISDIR(inode->i_mode) ||
4680             BTRFS_I(inode)->generation > root->fs_info->last_trans_committed)
4681                 ret = btrfs_commit_inode_delayed_items(trans, inode);
4682         else
4683                 ret = btrfs_commit_inode_delayed_inode(inode);
4684
4685         if (ret) {
4686                 btrfs_free_path(path);
4687                 btrfs_free_path(dst_path);
4688                 return ret;
4689         }
4690
4691         if (inode_only == LOG_OTHER_INODE) {
4692                 inode_only = LOG_INODE_EXISTS;
4693                 mutex_lock_nested(&BTRFS_I(inode)->log_mutex,
4694                                   SINGLE_DEPTH_NESTING);
4695         } else {
4696                 mutex_lock(&BTRFS_I(inode)->log_mutex);
4697         }
4698
4699         /*
4700          * a brute force approach to making sure we get the most uptodate
4701          * copies of everything.
4702          */
4703         if (S_ISDIR(inode->i_mode)) {
4704                 int max_key_type = BTRFS_DIR_LOG_INDEX_KEY;
4705
4706                 if (inode_only == LOG_INODE_EXISTS)
4707                         max_key_type = BTRFS_XATTR_ITEM_KEY;
4708                 ret = drop_objectid_items(trans, log, path, ino, max_key_type);
4709         } else {
4710                 if (inode_only == LOG_INODE_EXISTS) {
4711                         /*
4712                          * Make sure the new inode item we write to the log has
4713                          * the same isize as the current one (if it exists).
4714                          * This is necessary to prevent data loss after log
4715                          * replay, and also to prevent doing a wrong expanding
4716                          * truncate - for e.g. create file, write 4K into offset
4717                          * 0, fsync, write 4K into offset 4096, add hard link,
4718                          * fsync some other file (to sync log), power fail - if
4719                          * we use the inode's current i_size, after log replay
4720                          * we get a 8Kb file, with the last 4Kb extent as a hole
4721                          * (zeroes), as if an expanding truncate happened,
4722                          * instead of getting a file of 4Kb only.
4723                          */
4724                         err = logged_inode_size(log, inode, path,
4725                                                 &logged_isize);
4726                         if (err)
4727                                 goto out_unlock;
4728                 }
4729                 if (test_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
4730                              &BTRFS_I(inode)->runtime_flags)) {
4731                         if (inode_only == LOG_INODE_EXISTS) {
4732                                 max_key.type = BTRFS_XATTR_ITEM_KEY;
4733                                 ret = drop_objectid_items(trans, log, path, ino,
4734                                                           max_key.type);
4735                         } else {
4736                                 clear_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
4737                                           &BTRFS_I(inode)->runtime_flags);
4738                                 clear_bit(BTRFS_INODE_COPY_EVERYTHING,
4739                                           &BTRFS_I(inode)->runtime_flags);
4740                                 while(1) {
4741                                         ret = btrfs_truncate_inode_items(trans,
4742                                                          log, inode, 0, 0);
4743                                         if (ret != -EAGAIN)
4744                                                 break;
4745                                 }
4746                         }
4747                 } else if (test_and_clear_bit(BTRFS_INODE_COPY_EVERYTHING,
4748                                               &BTRFS_I(inode)->runtime_flags) ||
4749                            inode_only == LOG_INODE_EXISTS) {
4750                         if (inode_only == LOG_INODE_ALL)
4751                                 fast_search = true;
4752                         max_key.type = BTRFS_XATTR_ITEM_KEY;
4753                         ret = drop_objectid_items(trans, log, path, ino,
4754                                                   max_key.type);
4755                 } else {
4756                         if (inode_only == LOG_INODE_ALL)
4757                                 fast_search = true;
4758                         goto log_extents;
4759                 }
4760
4761         }
4762         if (ret) {
4763                 err = ret;
4764                 goto out_unlock;
4765         }
4766
4767         while (1) {
4768                 ins_nr = 0;
4769                 ret = btrfs_search_forward(root, &min_key,
4770                                            path, trans->transid);
4771                 if (ret < 0) {
4772                         err = ret;
4773                         goto out_unlock;
4774                 }
4775                 if (ret != 0)
4776                         break;
4777 again:
4778                 /* note, ins_nr might be > 0 here, cleanup outside the loop */
4779                 if (min_key.objectid != ino)
4780                         break;
4781                 if (min_key.type > max_key.type)
4782                         break;
4783
4784                 if (min_key.type == BTRFS_INODE_ITEM_KEY)
4785                         need_log_inode_item = false;
4786
4787                 if ((min_key.type == BTRFS_INODE_REF_KEY ||
4788                      min_key.type == BTRFS_INODE_EXTREF_KEY) &&
4789                     BTRFS_I(inode)->generation == trans->transid) {
4790                         u64 other_ino = 0;
4791
4792                         ret = btrfs_check_ref_name_override(path->nodes[0],
4793                                                             path->slots[0],
4794                                                             &min_key, inode,
4795                                                             &other_ino);
4796                         if (ret < 0) {
4797                                 err = ret;
4798                                 goto out_unlock;
4799                         } else if (ret > 0 && ctx &&
4800                                    other_ino != btrfs_ino(ctx->inode)) {
4801                                 struct btrfs_key inode_key;
4802                                 struct inode *other_inode;
4803
4804                                 if (ins_nr > 0) {
4805                                         ins_nr++;
4806                                 } else {
4807                                         ins_nr = 1;
4808                                         ins_start_slot = path->slots[0];
4809                                 }
4810                                 ret = copy_items(trans, inode, dst_path, path,
4811                                                  &last_extent, ins_start_slot,
4812                                                  ins_nr, inode_only,
4813                                                  logged_isize);
4814                                 if (ret < 0) {
4815                                         err = ret;
4816                                         goto out_unlock;
4817                                 }
4818                                 ins_nr = 0;
4819                                 btrfs_release_path(path);
4820                                 inode_key.objectid = other_ino;
4821                                 inode_key.type = BTRFS_INODE_ITEM_KEY;
4822                                 inode_key.offset = 0;
4823                                 other_inode = btrfs_iget(root->fs_info->sb,
4824                                                          &inode_key, root,
4825                                                          NULL);
4826                                 /*
4827                                  * If the other inode that had a conflicting dir
4828                                  * entry was deleted in the current transaction,
4829                                  * we don't need to do more work nor fallback to
4830                                  * a transaction commit.
4831                                  */
4832                                 if (IS_ERR(other_inode) &&
4833                                     PTR_ERR(other_inode) == -ENOENT) {
4834                                         goto next_key;
4835                                 } else if (IS_ERR(other_inode)) {
4836                                         err = PTR_ERR(other_inode);
4837                                         goto out_unlock;
4838                                 }
4839                                 /*
4840                                  * We are safe logging the other inode without
4841                                  * acquiring its i_mutex as long as we log with
4842                                  * the LOG_INODE_EXISTS mode. We're safe against
4843                                  * concurrent renames of the other inode as well
4844                                  * because during a rename we pin the log and
4845                                  * update the log with the new name before we
4846                                  * unpin it.
4847                                  */
4848                                 err = btrfs_log_inode(trans, root, other_inode,
4849                                                       LOG_OTHER_INODE,
4850                                                       0, LLONG_MAX, ctx);
4851                                 btrfs_add_delayed_iput(other_inode);
4852                                 if (err)
4853                                         goto out_unlock;
4854                                 else
4855                                         goto next_key;
4856                         }
4857                 }
4858
4859                 /* Skip xattrs, we log them later with btrfs_log_all_xattrs() */
4860                 if (min_key.type == BTRFS_XATTR_ITEM_KEY) {
4861                         if (ins_nr == 0)
4862                                 goto next_slot;
4863                         ret = copy_items(trans, inode, dst_path, path,
4864                                          &last_extent, ins_start_slot,
4865                                          ins_nr, inode_only, logged_isize);
4866                         if (ret < 0) {
4867                                 err = ret;
4868                                 goto out_unlock;
4869                         }
4870                         ins_nr = 0;
4871                         if (ret) {
4872                                 btrfs_release_path(path);
4873                                 continue;
4874                         }
4875                         goto next_slot;
4876                 }
4877
4878                 src = path->nodes[0];
4879                 if (ins_nr && ins_start_slot + ins_nr == path->slots[0]) {
4880                         ins_nr++;
4881                         goto next_slot;
4882                 } else if (!ins_nr) {
4883                         ins_start_slot = path->slots[0];
4884                         ins_nr = 1;
4885                         goto next_slot;
4886                 }
4887
4888                 ret = copy_items(trans, inode, dst_path, path, &last_extent,
4889                                  ins_start_slot, ins_nr, inode_only,
4890                                  logged_isize);
4891                 if (ret < 0) {
4892                         err = ret;
4893                         goto out_unlock;
4894                 }
4895                 if (ret) {
4896                         ins_nr = 0;
4897                         btrfs_release_path(path);
4898                         continue;
4899                 }
4900                 ins_nr = 1;
4901                 ins_start_slot = path->slots[0];
4902 next_slot:
4903
4904                 nritems = btrfs_header_nritems(path->nodes[0]);
4905                 path->slots[0]++;
4906                 if (path->slots[0] < nritems) {
4907                         btrfs_item_key_to_cpu(path->nodes[0], &min_key,
4908                                               path->slots[0]);
4909                         goto again;
4910                 }
4911                 if (ins_nr) {
4912                         ret = copy_items(trans, inode, dst_path, path,
4913                                          &last_extent, ins_start_slot,
4914                                          ins_nr, inode_only, logged_isize);
4915                         if (ret < 0) {
4916                                 err = ret;
4917                                 goto out_unlock;
4918                         }
4919                         ret = 0;
4920                         ins_nr = 0;
4921                 }
4922                 btrfs_release_path(path);
4923 next_key:
4924                 if (min_key.offset < (u64)-1) {
4925                         min_key.offset++;
4926                 } else if (min_key.type < max_key.type) {
4927                         min_key.type++;
4928                         min_key.offset = 0;
4929                 } else {
4930                         break;
4931                 }
4932         }
4933         if (ins_nr) {
4934                 ret = copy_items(trans, inode, dst_path, path, &last_extent,
4935                                  ins_start_slot, ins_nr, inode_only,
4936                                  logged_isize);
4937                 if (ret < 0) {
4938                         err = ret;
4939                         goto out_unlock;
4940                 }
4941                 ret = 0;
4942                 ins_nr = 0;
4943         }
4944
4945         btrfs_release_path(path);
4946         btrfs_release_path(dst_path);
4947         err = btrfs_log_all_xattrs(trans, root, inode, path, dst_path);
4948         if (err)
4949                 goto out_unlock;
4950         xattrs_logged = true;
4951         if (max_key.type >= BTRFS_EXTENT_DATA_KEY && !fast_search) {
4952                 btrfs_release_path(path);
4953                 btrfs_release_path(dst_path);
4954                 err = btrfs_log_trailing_hole(trans, root, inode, path);
4955                 if (err)
4956                         goto out_unlock;
4957         }
4958 log_extents:
4959         btrfs_release_path(path);
4960         btrfs_release_path(dst_path);
4961         if (need_log_inode_item) {
4962                 err = log_inode_item(trans, log, dst_path, inode);
4963                 if (!err && !xattrs_logged) {
4964                         err = btrfs_log_all_xattrs(trans, root, inode, path,
4965                                                    dst_path);
4966                         btrfs_release_path(path);
4967                 }
4968                 if (err)
4969                         goto out_unlock;
4970         }
4971         if (fast_search) {
4972                 ret = btrfs_log_changed_extents(trans, root, inode, dst_path,
4973                                                 &logged_list, ctx, start, end);
4974                 if (ret) {
4975                         err = ret;
4976                         goto out_unlock;
4977                 }
4978         } else if (inode_only == LOG_INODE_ALL) {
4979                 struct extent_map *em, *n;
4980
4981                 write_lock(&em_tree->lock);
4982                 /*
4983                  * We can't just remove every em if we're called for a ranged
4984                  * fsync - that is, one that doesn't cover the whole possible
4985                  * file range (0 to LLONG_MAX). This is because we can have
4986                  * em's that fall outside the range we're logging and therefore
4987                  * their ordered operations haven't completed yet
4988                  * (btrfs_finish_ordered_io() not invoked yet). This means we
4989                  * didn't get their respective file extent item in the fs/subvol
4990                  * tree yet, and need to let the next fast fsync (one which
4991                  * consults the list of modified extent maps) find the em so
4992                  * that it logs a matching file extent item and waits for the
4993                  * respective ordered operation to complete (if it's still
4994                  * running).
4995                  *
4996                  * Removing every em outside the range we're logging would make
4997                  * the next fast fsync not log their matching file extent items,
4998                  * therefore making us lose data after a log replay.
4999                  */
5000                 list_for_each_entry_safe(em, n, &em_tree->modified_extents,
5001                                          list) {
5002                         const u64 mod_end = em->mod_start + em->mod_len - 1;
5003
5004                         if (em->mod_start >= start && mod_end <= end)
5005                                 list_del_init(&em->list);
5006                 }
5007                 write_unlock(&em_tree->lock);
5008         }
5009
5010         if (inode_only == LOG_INODE_ALL && S_ISDIR(inode->i_mode)) {
5011                 ret = log_directory_changes(trans, root, inode, path, dst_path,
5012                                             ctx);
5013                 if (ret) {
5014                         err = ret;
5015                         goto out_unlock;
5016                 }
5017         }
5018
5019         spin_lock(&BTRFS_I(inode)->lock);
5020         BTRFS_I(inode)->logged_trans = trans->transid;
5021         BTRFS_I(inode)->last_log_commit = BTRFS_I(inode)->last_sub_trans;
5022         spin_unlock(&BTRFS_I(inode)->lock);
5023 out_unlock:
5024         if (unlikely(err))
5025                 btrfs_put_logged_extents(&logged_list);
5026         else
5027                 btrfs_submit_logged_extents(&logged_list, log);
5028         mutex_unlock(&BTRFS_I(inode)->log_mutex);
5029
5030         btrfs_free_path(path);
5031         btrfs_free_path(dst_path);
5032         return err;
5033 }
5034
5035 /*
5036  * Check if we must fallback to a transaction commit when logging an inode.
5037  * This must be called after logging the inode and is used only in the context
5038  * when fsyncing an inode requires the need to log some other inode - in which
5039  * case we can't lock the i_mutex of each other inode we need to log as that
5040  * can lead to deadlocks with concurrent fsync against other inodes (as we can
5041  * log inodes up or down in the hierarchy) or rename operations for example. So
5042  * we take the log_mutex of the inode after we have logged it and then check for
5043  * its last_unlink_trans value - this is safe because any task setting
5044  * last_unlink_trans must take the log_mutex and it must do this before it does
5045  * the actual unlink operation, so if we do this check before a concurrent task
5046  * sets last_unlink_trans it means we've logged a consistent version/state of
5047  * all the inode items, otherwise we are not sure and must do a transaction
5048  * commit (the concurrent task might have only updated last_unlink_trans before
5049  * we logged the inode or it might have also done the unlink).
5050  */
5051 static bool btrfs_must_commit_transaction(struct btrfs_trans_handle *trans,
5052                                           struct inode *inode)
5053 {
5054         struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
5055         bool ret = false;
5056
5057         mutex_lock(&BTRFS_I(inode)->log_mutex);
5058         if (BTRFS_I(inode)->last_unlink_trans > fs_info->last_trans_committed) {
5059                 /*
5060                  * Make sure any commits to the log are forced to be full
5061                  * commits.
5062                  */
5063                 btrfs_set_log_full_commit(fs_info, trans);
5064                 ret = true;
5065         }
5066         mutex_unlock(&BTRFS_I(inode)->log_mutex);
5067
5068         return ret;
5069 }
5070
5071 /*
5072  * follow the dentry parent pointers up the chain and see if any
5073  * of the directories in it require a full commit before they can
5074  * be logged.  Returns zero if nothing special needs to be done or 1 if
5075  * a full commit is required.
5076  */
5077 static noinline int check_parent_dirs_for_sync(struct btrfs_trans_handle *trans,
5078                                                struct inode *inode,
5079                                                struct dentry *parent,
5080                                                struct super_block *sb,
5081                                                u64 last_committed)
5082 {
5083         int ret = 0;
5084         struct dentry *old_parent = NULL;
5085         struct inode *orig_inode = inode;
5086
5087         /*
5088          * for regular files, if its inode is already on disk, we don't
5089          * have to worry about the parents at all.  This is because
5090          * we can use the last_unlink_trans field to record renames
5091          * and other fun in this file.
5092          */
5093         if (S_ISREG(inode->i_mode) &&
5094             BTRFS_I(inode)->generation <= last_committed &&
5095             BTRFS_I(inode)->last_unlink_trans <= last_committed)
5096                         goto out;
5097
5098         if (!S_ISDIR(inode->i_mode)) {
5099                 if (!parent || d_really_is_negative(parent) || sb != parent->d_sb)
5100                         goto out;
5101                 inode = d_inode(parent);
5102         }
5103
5104         while (1) {
5105                 /*
5106                  * If we are logging a directory then we start with our inode,
5107                  * not our parent's inode, so we need to skip setting the
5108                  * logged_trans so that further down in the log code we don't
5109                  * think this inode has already been logged.
5110                  */
5111                 if (inode != orig_inode)
5112                         BTRFS_I(inode)->logged_trans = trans->transid;
5113                 smp_mb();
5114
5115                 if (btrfs_must_commit_transaction(trans, inode)) {
5116                         ret = 1;
5117                         break;
5118                 }
5119
5120                 if (!parent || d_really_is_negative(parent) || sb != parent->d_sb)
5121                         break;
5122
5123                 if (IS_ROOT(parent)) {
5124                         inode = d_inode(parent);
5125                         if (btrfs_must_commit_transaction(trans, inode))
5126                                 ret = 1;
5127                         break;
5128                 }
5129
5130                 parent = dget_parent(parent);
5131                 dput(old_parent);
5132                 old_parent = parent;
5133                 inode = d_inode(parent);
5134
5135         }
5136         dput(old_parent);
5137 out:
5138         return ret;
5139 }
5140
5141 struct btrfs_dir_list {
5142         u64 ino;
5143         struct list_head list;
5144 };
5145
5146 /*
5147  * Log the inodes of the new dentries of a directory. See log_dir_items() for
5148  * details about the why it is needed.
5149  * This is a recursive operation - if an existing dentry corresponds to a
5150  * directory, that directory's new entries are logged too (same behaviour as
5151  * ext3/4, xfs, f2fs, reiserfs, nilfs2). Note that when logging the inodes
5152  * the dentries point to we do not lock their i_mutex, otherwise lockdep
5153  * complains about the following circular lock dependency / possible deadlock:
5154  *
5155  *        CPU0                                        CPU1
5156  *        ----                                        ----
5157  * lock(&type->i_mutex_dir_key#3/2);
5158  *                                            lock(sb_internal#2);
5159  *                                            lock(&type->i_mutex_dir_key#3/2);
5160  * lock(&sb->s_type->i_mutex_key#14);
5161  *
5162  * Where sb_internal is the lock (a counter that works as a lock) acquired by
5163  * sb_start_intwrite() in btrfs_start_transaction().
5164  * Not locking i_mutex of the inodes is still safe because:
5165  *
5166  * 1) For regular files we log with a mode of LOG_INODE_EXISTS. It's possible
5167  *    that while logging the inode new references (names) are added or removed
5168  *    from the inode, leaving the logged inode item with a link count that does
5169  *    not match the number of logged inode reference items. This is fine because
5170  *    at log replay time we compute the real number of links and correct the
5171  *    link count in the inode item (see replay_one_buffer() and
5172  *    link_to_fixup_dir());
5173  *
5174  * 2) For directories we log with a mode of LOG_INODE_ALL. It's possible that
5175  *    while logging the inode's items new items with keys BTRFS_DIR_ITEM_KEY and
5176  *    BTRFS_DIR_INDEX_KEY are added to fs/subvol tree and the logged inode item
5177  *    has a size that doesn't match the sum of the lengths of all the logged
5178  *    names. This does not result in a problem because if a dir_item key is
5179  *    logged but its matching dir_index key is not logged, at log replay time we
5180  *    don't use it to replay the respective name (see replay_one_name()). On the
5181  *    other hand if only the dir_index key ends up being logged, the respective
5182  *    name is added to the fs/subvol tree with both the dir_item and dir_index
5183  *    keys created (see replay_one_name()).
5184  *    The directory's inode item with a wrong i_size is not a problem as well,
5185  *    since we don't use it at log replay time to set the i_size in the inode
5186  *    item of the fs/subvol tree (see overwrite_item()).
5187  */
5188 static int log_new_dir_dentries(struct btrfs_trans_handle *trans,
5189                                 struct btrfs_root *root,
5190                                 struct inode *start_inode,
5191                                 struct btrfs_log_ctx *ctx)
5192 {
5193         struct btrfs_root *log = root->log_root;
5194         struct btrfs_path *path;
5195         LIST_HEAD(dir_list);
5196         struct btrfs_dir_list *dir_elem;
5197         int ret = 0;
5198
5199         path = btrfs_alloc_path();
5200         if (!path)
5201                 return -ENOMEM;
5202
5203         dir_elem = kmalloc(sizeof(*dir_elem), GFP_NOFS);
5204         if (!dir_elem) {
5205                 btrfs_free_path(path);
5206                 return -ENOMEM;
5207         }
5208         dir_elem->ino = btrfs_ino(start_inode);
5209         list_add_tail(&dir_elem->list, &dir_list);
5210
5211         while (!list_empty(&dir_list)) {
5212                 struct extent_buffer *leaf;
5213                 struct btrfs_key min_key;
5214                 int nritems;
5215                 int i;
5216
5217                 dir_elem = list_first_entry(&dir_list, struct btrfs_dir_list,
5218                                             list);
5219                 if (ret)
5220                         goto next_dir_inode;
5221
5222                 min_key.objectid = dir_elem->ino;
5223                 min_key.type = BTRFS_DIR_ITEM_KEY;
5224                 min_key.offset = 0;
5225 again:
5226                 btrfs_release_path(path);
5227                 ret = btrfs_search_forward(log, &min_key, path, trans->transid);
5228                 if (ret < 0) {
5229                         goto next_dir_inode;
5230                 } else if (ret > 0) {
5231                         ret = 0;
5232                         goto next_dir_inode;
5233                 }
5234
5235 process_leaf:
5236                 leaf = path->nodes[0];
5237                 nritems = btrfs_header_nritems(leaf);
5238                 for (i = path->slots[0]; i < nritems; i++) {
5239                         struct btrfs_dir_item *di;
5240                         struct btrfs_key di_key;
5241                         struct inode *di_inode;
5242                         struct btrfs_dir_list *new_dir_elem;
5243                         int log_mode = LOG_INODE_EXISTS;
5244                         int type;
5245
5246                         btrfs_item_key_to_cpu(leaf, &min_key, i);
5247                         if (min_key.objectid != dir_elem->ino ||
5248                             min_key.type != BTRFS_DIR_ITEM_KEY)
5249                                 goto next_dir_inode;
5250
5251                         di = btrfs_item_ptr(leaf, i, struct btrfs_dir_item);
5252                         type = btrfs_dir_type(leaf, di);
5253                         if (btrfs_dir_transid(leaf, di) < trans->transid &&
5254                             type != BTRFS_FT_DIR)
5255                                 continue;
5256                         btrfs_dir_item_key_to_cpu(leaf, di, &di_key);
5257                         if (di_key.type == BTRFS_ROOT_ITEM_KEY)
5258                                 continue;
5259
5260                         btrfs_release_path(path);
5261                         di_inode = btrfs_iget(root->fs_info->sb, &di_key,
5262                                               root, NULL);
5263                         if (IS_ERR(di_inode)) {
5264                                 ret = PTR_ERR(di_inode);
5265                                 goto next_dir_inode;
5266                         }
5267
5268                         if (btrfs_inode_in_log(di_inode, trans->transid)) {
5269                                 btrfs_add_delayed_iput(di_inode);
5270                                 break;
5271                         }
5272
5273                         ctx->log_new_dentries = false;
5274                         if (type == BTRFS_FT_DIR || type == BTRFS_FT_SYMLINK)
5275                                 log_mode = LOG_INODE_ALL;
5276                         ret = btrfs_log_inode(trans, root, di_inode,
5277                                               log_mode, 0, LLONG_MAX, ctx);
5278                         if (!ret &&
5279                             btrfs_must_commit_transaction(trans, di_inode))
5280                                 ret = 1;
5281                         btrfs_add_delayed_iput(di_inode);
5282                         if (ret)
5283                                 goto next_dir_inode;
5284                         if (ctx->log_new_dentries) {
5285                                 new_dir_elem = kmalloc(sizeof(*new_dir_elem),
5286                                                        GFP_NOFS);
5287                                 if (!new_dir_elem) {
5288                                         ret = -ENOMEM;
5289                                         goto next_dir_inode;
5290                                 }
5291                                 new_dir_elem->ino = di_key.objectid;
5292                                 list_add_tail(&new_dir_elem->list, &dir_list);
5293                         }
5294                         break;
5295                 }
5296                 if (i == nritems) {
5297                         ret = btrfs_next_leaf(log, path);
5298                         if (ret < 0) {
5299                                 goto next_dir_inode;
5300                         } else if (ret > 0) {
5301                                 ret = 0;
5302                                 goto next_dir_inode;
5303                         }
5304                         goto process_leaf;
5305                 }
5306                 if (min_key.offset < (u64)-1) {
5307                         min_key.offset++;
5308                         goto again;
5309                 }
5310 next_dir_inode:
5311                 list_del(&dir_elem->list);
5312                 kfree(dir_elem);
5313         }
5314
5315         btrfs_free_path(path);
5316         return ret;
5317 }
5318
5319 static int btrfs_log_all_parents(struct btrfs_trans_handle *trans,
5320                                  struct inode *inode,
5321                                  struct btrfs_log_ctx *ctx)
5322 {
5323         int ret;
5324         struct btrfs_path *path;
5325         struct btrfs_key key;
5326         struct btrfs_root *root = BTRFS_I(inode)->root;
5327         const u64 ino = btrfs_ino(inode);
5328
5329         path = btrfs_alloc_path();
5330         if (!path)
5331                 return -ENOMEM;
5332         path->skip_locking = 1;
5333         path->search_commit_root = 1;
5334
5335         key.objectid = ino;
5336         key.type = BTRFS_INODE_REF_KEY;
5337         key.offset = 0;
5338         ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5339         if (ret < 0)
5340                 goto out;
5341
5342         while (true) {
5343                 struct extent_buffer *leaf = path->nodes[0];
5344                 int slot = path->slots[0];
5345                 u32 cur_offset = 0;
5346                 u32 item_size;
5347                 unsigned long ptr;
5348
5349                 if (slot >= btrfs_header_nritems(leaf)) {
5350                         ret = btrfs_next_leaf(root, path);
5351                         if (ret < 0)
5352                                 goto out;
5353                         else if (ret > 0)
5354                                 break;
5355                         continue;
5356                 }
5357
5358                 btrfs_item_key_to_cpu(leaf, &key, slot);
5359                 /* BTRFS_INODE_EXTREF_KEY is BTRFS_INODE_REF_KEY + 1 */
5360                 if (key.objectid != ino || key.type > BTRFS_INODE_EXTREF_KEY)
5361                         break;
5362
5363                 item_size = btrfs_item_size_nr(leaf, slot);
5364                 ptr = btrfs_item_ptr_offset(leaf, slot);
5365                 while (cur_offset < item_size) {
5366                         struct btrfs_key inode_key;
5367                         struct inode *dir_inode;
5368
5369                         inode_key.type = BTRFS_INODE_ITEM_KEY;
5370                         inode_key.offset = 0;
5371
5372                         if (key.type == BTRFS_INODE_EXTREF_KEY) {
5373                                 struct btrfs_inode_extref *extref;
5374
5375                                 extref = (struct btrfs_inode_extref *)
5376                                         (ptr + cur_offset);
5377                                 inode_key.objectid = btrfs_inode_extref_parent(
5378                                         leaf, extref);
5379                                 cur_offset += sizeof(*extref);
5380                                 cur_offset += btrfs_inode_extref_name_len(leaf,
5381                                         extref);
5382                         } else {
5383                                 inode_key.objectid = key.offset;
5384                                 cur_offset = item_size;
5385                         }
5386
5387                         dir_inode = btrfs_iget(root->fs_info->sb, &inode_key,
5388                                                root, NULL);
5389                         /*
5390                          * If the parent inode was deleted, return an error to
5391                          * fallback to a transaction commit. This is to prevent
5392                          * getting an inode that was moved from one parent A to
5393                          * a parent B, got its former parent A deleted and then
5394                          * it got fsync'ed, from existing at both parents after
5395                          * a log replay (and the old parent still existing).
5396                          * Example:
5397                          *
5398                          * mkdir /mnt/A
5399                          * mkdir /mnt/B
5400                          * touch /mnt/B/bar
5401                          * sync
5402                          * mv /mnt/B/bar /mnt/A/bar
5403                          * mv -T /mnt/A /mnt/B
5404                          * fsync /mnt/B/bar
5405                          * <power fail>
5406                          *
5407                          * If we ignore the old parent B which got deleted,
5408                          * after a log replay we would have file bar linked
5409                          * at both parents and the old parent B would still
5410                          * exist.
5411                          */
5412                         if (IS_ERR(dir_inode)) {
5413                                 ret = PTR_ERR(dir_inode);
5414                                 goto out;
5415                         }
5416
5417                         if (ctx)
5418                                 ctx->log_new_dentries = false;
5419                         ret = btrfs_log_inode(trans, root, dir_inode,
5420                                               LOG_INODE_ALL, 0, LLONG_MAX, ctx);
5421                         if (!ret &&
5422                             btrfs_must_commit_transaction(trans, dir_inode))
5423                                 ret = 1;
5424                         if (!ret && ctx && ctx->log_new_dentries)
5425                                 ret = log_new_dir_dentries(trans, root,
5426                                                            dir_inode, ctx);
5427                         btrfs_add_delayed_iput(dir_inode);
5428                         if (ret)
5429                                 goto out;
5430                 }
5431                 path->slots[0]++;
5432         }
5433         ret = 0;
5434 out:
5435         btrfs_free_path(path);
5436         return ret;
5437 }
5438
5439 /*
5440  * helper function around btrfs_log_inode to make sure newly created
5441  * parent directories also end up in the log.  A minimal inode and backref
5442  * only logging is done of any parent directories that are older than
5443  * the last committed transaction
5444  */
5445 static int btrfs_log_inode_parent(struct btrfs_trans_handle *trans,
5446                                   struct btrfs_root *root, struct inode *inode,
5447                                   struct dentry *parent,
5448                                   const loff_t start,
5449                                   const loff_t end,
5450                                   int exists_only,
5451                                   struct btrfs_log_ctx *ctx)
5452 {
5453         int inode_only = exists_only ? LOG_INODE_EXISTS : LOG_INODE_ALL;
5454         struct super_block *sb;
5455         struct dentry *old_parent = NULL;
5456         int ret = 0;
5457         u64 last_committed = root->fs_info->last_trans_committed;
5458         bool log_dentries = false;
5459         struct inode *orig_inode = inode;
5460
5461         sb = inode->i_sb;
5462
5463         if (btrfs_test_opt(root->fs_info, NOTREELOG)) {
5464                 ret = 1;
5465                 goto end_no_trans;
5466         }
5467
5468         /*
5469          * The prev transaction commit doesn't complete, we need do
5470          * full commit by ourselves.
5471          */
5472         if (root->fs_info->last_trans_log_full_commit >
5473             root->fs_info->last_trans_committed) {
5474                 ret = 1;
5475                 goto end_no_trans;
5476         }
5477
5478         if (root != BTRFS_I(inode)->root ||
5479             btrfs_root_refs(&root->root_item) == 0) {
5480                 ret = 1;
5481                 goto end_no_trans;
5482         }
5483
5484         ret = check_parent_dirs_for_sync(trans, inode, parent,
5485                                          sb, last_committed);
5486         if (ret)
5487                 goto end_no_trans;
5488
5489         if (btrfs_inode_in_log(inode, trans->transid)) {
5490                 ret = BTRFS_NO_LOG_SYNC;
5491                 goto end_no_trans;
5492         }
5493
5494         ret = start_log_trans(trans, root, ctx);
5495         if (ret)
5496                 goto end_no_trans;
5497
5498         ret = btrfs_log_inode(trans, root, inode, inode_only, start, end, ctx);
5499         if (ret)
5500                 goto end_trans;
5501
5502         /*
5503          * for regular files, if its inode is already on disk, we don't
5504          * have to worry about the parents at all.  This is because
5505          * we can use the last_unlink_trans field to record renames
5506          * and other fun in this file.
5507          */
5508         if (S_ISREG(inode->i_mode) &&
5509             BTRFS_I(inode)->generation <= last_committed &&
5510             BTRFS_I(inode)->last_unlink_trans <= last_committed) {
5511                 ret = 0;
5512                 goto end_trans;
5513         }
5514
5515         if (S_ISDIR(inode->i_mode) && ctx && ctx->log_new_dentries)
5516                 log_dentries = true;
5517
5518         /*
5519          * On unlink we must make sure all our current and old parent directory
5520          * inodes are fully logged. This is to prevent leaving dangling
5521          * directory index entries in directories that were our parents but are
5522          * not anymore. Not doing this results in old parent directory being
5523          * impossible to delete after log replay (rmdir will always fail with
5524          * error -ENOTEMPTY).
5525          *
5526          * Example 1:
5527          *
5528          * mkdir testdir
5529          * touch testdir/foo
5530          * ln testdir/foo testdir/bar
5531          * sync
5532          * unlink testdir/bar
5533          * xfs_io -c fsync testdir/foo
5534          * <power failure>
5535          * mount fs, triggers log replay
5536          *
5537          * If we don't log the parent directory (testdir), after log replay the
5538          * directory still has an entry pointing to the file inode using the bar
5539          * name, but a matching BTRFS_INODE_[REF|EXTREF]_KEY does not exist and
5540          * the file inode has a link count of 1.
5541          *
5542          * Example 2:
5543          *
5544          * mkdir testdir
5545          * touch foo
5546          * ln foo testdir/foo2
5547          * ln foo testdir/foo3
5548          * sync
5549          * unlink testdir/foo3
5550          * xfs_io -c fsync foo
5551          * <power failure>
5552          * mount fs, triggers log replay
5553          *
5554          * Similar as the first example, after log replay the parent directory
5555          * testdir still has an entry pointing to the inode file with name foo3
5556          * but the file inode does not have a matching BTRFS_INODE_REF_KEY item
5557          * and has a link count of 2.
5558          */
5559         if (BTRFS_I(inode)->last_unlink_trans > last_committed) {
5560                 ret = btrfs_log_all_parents(trans, orig_inode, ctx);
5561                 if (ret)
5562                         goto end_trans;
5563         }
5564
5565         while (1) {
5566                 if (!parent || d_really_is_negative(parent) || sb != parent->d_sb)
5567                         break;
5568
5569                 inode = d_inode(parent);
5570                 if (root != BTRFS_I(inode)->root)
5571                         break;
5572
5573                 if (BTRFS_I(inode)->generation > last_committed) {
5574                         ret = btrfs_log_inode(trans, root, inode,
5575                                               LOG_INODE_EXISTS,
5576                                               0, LLONG_MAX, ctx);
5577                         if (ret)
5578                                 goto end_trans;
5579                 }
5580                 if (IS_ROOT(parent))
5581                         break;
5582
5583                 parent = dget_parent(parent);
5584                 dput(old_parent);
5585                 old_parent = parent;
5586         }
5587         if (log_dentries)
5588                 ret = log_new_dir_dentries(trans, root, orig_inode, ctx);
5589         else
5590                 ret = 0;
5591 end_trans:
5592         dput(old_parent);
5593         if (ret < 0) {
5594                 btrfs_set_log_full_commit(root->fs_info, trans);
5595                 ret = 1;
5596         }
5597
5598         if (ret)
5599                 btrfs_remove_log_ctx(root, ctx);
5600         btrfs_end_log_trans(root);
5601 end_no_trans:
5602         return ret;
5603 }
5604
5605 /*
5606  * it is not safe to log dentry if the chunk root has added new
5607  * chunks.  This returns 0 if the dentry was logged, and 1 otherwise.
5608  * If this returns 1, you must commit the transaction to safely get your
5609  * data on disk.
5610  */
5611 int btrfs_log_dentry_safe(struct btrfs_trans_handle *trans,
5612                           struct btrfs_root *root, struct dentry *dentry,
5613                           const loff_t start,
5614                           const loff_t end,
5615                           struct btrfs_log_ctx *ctx)
5616 {
5617         struct dentry *parent = dget_parent(dentry);
5618         int ret;
5619
5620         ret = btrfs_log_inode_parent(trans, root, d_inode(dentry), parent,
5621                                      start, end, 0, ctx);
5622         dput(parent);
5623
5624         return ret;
5625 }
5626
5627 /*
5628  * should be called during mount to recover any replay any log trees
5629  * from the FS
5630  */
5631 int btrfs_recover_log_trees(struct btrfs_root *log_root_tree)
5632 {
5633         int ret;
5634         struct btrfs_path *path;
5635         struct btrfs_trans_handle *trans;
5636         struct btrfs_key key;
5637         struct btrfs_key found_key;
5638         struct btrfs_key tmp_key;
5639         struct btrfs_root *log;
5640         struct btrfs_fs_info *fs_info = log_root_tree->fs_info;
5641         struct walk_control wc = {
5642                 .process_func = process_one_buffer,
5643                 .stage = 0,
5644         };
5645
5646         path = btrfs_alloc_path();
5647         if (!path)
5648                 return -ENOMEM;
5649
5650         set_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags);
5651
5652         trans = btrfs_start_transaction(fs_info->tree_root, 0);
5653         if (IS_ERR(trans)) {
5654                 ret = PTR_ERR(trans);
5655                 goto error;
5656         }
5657
5658         wc.trans = trans;
5659         wc.pin = 1;
5660
5661         ret = walk_log_tree(trans, log_root_tree, &wc);
5662         if (ret) {
5663                 btrfs_handle_fs_error(fs_info, ret,
5664                         "Failed to pin buffers while recovering log root tree.");
5665                 goto error;
5666         }
5667
5668 again:
5669         key.objectid = BTRFS_TREE_LOG_OBJECTID;
5670         key.offset = (u64)-1;
5671         key.type = BTRFS_ROOT_ITEM_KEY;
5672
5673         while (1) {
5674                 ret = btrfs_search_slot(NULL, log_root_tree, &key, path, 0, 0);
5675
5676                 if (ret < 0) {
5677                         btrfs_handle_fs_error(fs_info, ret,
5678                                     "Couldn't find tree log root.");
5679                         goto error;
5680                 }
5681                 if (ret > 0) {
5682                         if (path->slots[0] == 0)
5683                                 break;
5684                         path->slots[0]--;
5685                 }
5686                 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
5687                                       path->slots[0]);
5688                 btrfs_release_path(path);
5689                 if (found_key.objectid != BTRFS_TREE_LOG_OBJECTID)
5690                         break;
5691
5692                 log = btrfs_read_fs_root(log_root_tree, &found_key);
5693                 if (IS_ERR(log)) {
5694                         ret = PTR_ERR(log);
5695                         btrfs_handle_fs_error(fs_info, ret,
5696                                     "Couldn't read tree log root.");
5697                         goto error;
5698                 }
5699
5700                 tmp_key.objectid = found_key.offset;
5701                 tmp_key.type = BTRFS_ROOT_ITEM_KEY;
5702                 tmp_key.offset = (u64)-1;
5703
5704                 wc.replay_dest = btrfs_read_fs_root_no_name(fs_info, &tmp_key);
5705                 if (IS_ERR(wc.replay_dest)) {
5706                         ret = PTR_ERR(wc.replay_dest);
5707
5708                         /*
5709                          * We didn't find the subvol, likely because it was
5710                          * deleted.  This is ok, simply skip this log and go to
5711                          * the next one.
5712                          *
5713                          * We need to exclude the root because we can't have
5714                          * other log replays overwriting this log as we'll read
5715                          * it back in a few more times.  This will keep our
5716                          * block from being modified, and we'll just bail for
5717                          * each subsequent pass.
5718                          */
5719                         if (ret == -ENOENT)
5720                                 ret = btrfs_pin_extent_for_log_replay(fs_info->extent_root,
5721                                                         log->node->start,
5722                                                         log->node->len);
5723                         free_extent_buffer(log->node);
5724                         free_extent_buffer(log->commit_root);
5725                         kfree(log);
5726
5727                         if (!ret)
5728                                 goto next;
5729                         btrfs_handle_fs_error(fs_info, ret,
5730                                 "Couldn't read target root for tree log recovery.");
5731                         goto error;
5732                 }
5733
5734                 wc.replay_dest->log_root = log;
5735                 btrfs_record_root_in_trans(trans, wc.replay_dest);
5736                 ret = walk_log_tree(trans, log, &wc);
5737
5738                 if (!ret && wc.stage == LOG_WALK_REPLAY_ALL) {
5739                         ret = fixup_inode_link_counts(trans, wc.replay_dest,
5740                                                       path);
5741                 }
5742
5743                 if (!ret && wc.stage == LOG_WALK_REPLAY_ALL) {
5744                         struct btrfs_root *root = wc.replay_dest;
5745
5746                         btrfs_release_path(path);
5747
5748                         /*
5749                          * We have just replayed everything, and the highest
5750                          * objectid of fs roots probably has changed in case
5751                          * some inode_item's got replayed.
5752                          *
5753                          * root->objectid_mutex is not acquired as log replay
5754                          * could only happen during mount.
5755                          */
5756                         ret = btrfs_find_highest_objectid(root,
5757                                                   &root->highest_objectid);
5758                 }
5759
5760                 wc.replay_dest->log_root = NULL;
5761                 free_extent_buffer(log->node);
5762                 free_extent_buffer(log->commit_root);
5763                 kfree(log);
5764
5765                 if (ret)
5766                         goto error;
5767 next:
5768                 if (found_key.offset == 0)
5769                         break;
5770                 key.offset = found_key.offset - 1;
5771         }
5772         btrfs_release_path(path);
5773
5774         /* step one is to pin it all, step two is to replay just inodes */
5775         if (wc.pin) {
5776                 wc.pin = 0;
5777                 wc.process_func = replay_one_buffer;
5778                 wc.stage = LOG_WALK_REPLAY_INODES;
5779                 goto again;
5780         }
5781         /* step three is to replay everything */
5782         if (wc.stage < LOG_WALK_REPLAY_ALL) {
5783                 wc.stage++;
5784                 goto again;
5785         }
5786
5787         btrfs_free_path(path);
5788
5789         /* step 4: commit the transaction, which also unpins the blocks */
5790         ret = btrfs_commit_transaction(trans, fs_info->tree_root);
5791         if (ret)
5792                 return ret;
5793
5794         free_extent_buffer(log_root_tree->node);
5795         log_root_tree->log_root = NULL;
5796         clear_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags);
5797         kfree(log_root_tree);
5798
5799         return 0;
5800 error:
5801         if (wc.trans)
5802                 btrfs_end_transaction(wc.trans, fs_info->tree_root);
5803         btrfs_free_path(path);
5804         return ret;
5805 }
5806
5807 /*
5808  * there are some corner cases where we want to force a full
5809  * commit instead of allowing a directory to be logged.
5810  *
5811  * They revolve around files there were unlinked from the directory, and
5812  * this function updates the parent directory so that a full commit is
5813  * properly done if it is fsync'd later after the unlinks are done.
5814  *
5815  * Must be called before the unlink operations (updates to the subvolume tree,
5816  * inodes, etc) are done.
5817  */
5818 void btrfs_record_unlink_dir(struct btrfs_trans_handle *trans,
5819                              struct inode *dir, struct inode *inode,
5820                              int for_rename)
5821 {
5822         /*
5823          * when we're logging a file, if it hasn't been renamed
5824          * or unlinked, and its inode is fully committed on disk,
5825          * we don't have to worry about walking up the directory chain
5826          * to log its parents.
5827          *
5828          * So, we use the last_unlink_trans field to put this transid
5829          * into the file.  When the file is logged we check it and
5830          * don't log the parents if the file is fully on disk.
5831          */
5832         mutex_lock(&BTRFS_I(inode)->log_mutex);
5833         BTRFS_I(inode)->last_unlink_trans = trans->transid;
5834         mutex_unlock(&BTRFS_I(inode)->log_mutex);
5835
5836         /*
5837          * if this directory was already logged any new
5838          * names for this file/dir will get recorded
5839          */
5840         smp_mb();
5841         if (BTRFS_I(dir)->logged_trans == trans->transid)
5842                 return;
5843
5844         /*
5845          * if the inode we're about to unlink was logged,
5846          * the log will be properly updated for any new names
5847          */
5848         if (BTRFS_I(inode)->logged_trans == trans->transid)
5849                 return;
5850
5851         /*
5852          * when renaming files across directories, if the directory
5853          * there we're unlinking from gets fsync'd later on, there's
5854          * no way to find the destination directory later and fsync it
5855          * properly.  So, we have to be conservative and force commits
5856          * so the new name gets discovered.
5857          */
5858         if (for_rename)
5859                 goto record;
5860
5861         /* we can safely do the unlink without any special recording */
5862         return;
5863
5864 record:
5865         mutex_lock(&BTRFS_I(dir)->log_mutex);
5866         BTRFS_I(dir)->last_unlink_trans = trans->transid;
5867         mutex_unlock(&BTRFS_I(dir)->log_mutex);
5868 }
5869
5870 /*
5871  * Make sure that if someone attempts to fsync the parent directory of a deleted
5872  * snapshot, it ends up triggering a transaction commit. This is to guarantee
5873  * that after replaying the log tree of the parent directory's root we will not
5874  * see the snapshot anymore and at log replay time we will not see any log tree
5875  * corresponding to the deleted snapshot's root, which could lead to replaying
5876  * it after replaying the log tree of the parent directory (which would replay
5877  * the snapshot delete operation).
5878  *
5879  * Must be called before the actual snapshot destroy operation (updates to the
5880  * parent root and tree of tree roots trees, etc) are done.
5881  */
5882 void btrfs_record_snapshot_destroy(struct btrfs_trans_handle *trans,
5883                                    struct inode *dir)
5884 {
5885         mutex_lock(&BTRFS_I(dir)->log_mutex);
5886         BTRFS_I(dir)->last_unlink_trans = trans->transid;
5887         mutex_unlock(&BTRFS_I(dir)->log_mutex);
5888 }
5889
5890 /*
5891  * Call this after adding a new name for a file and it will properly
5892  * update the log to reflect the new name.
5893  *
5894  * It will return zero if all goes well, and it will return 1 if a
5895  * full transaction commit is required.
5896  */
5897 int btrfs_log_new_name(struct btrfs_trans_handle *trans,
5898                         struct inode *inode, struct inode *old_dir,
5899                         struct dentry *parent)
5900 {
5901         struct btrfs_root * root = BTRFS_I(inode)->root;
5902
5903         /*
5904          * this will force the logging code to walk the dentry chain
5905          * up for the file
5906          */
5907         if (S_ISREG(inode->i_mode))
5908                 BTRFS_I(inode)->last_unlink_trans = trans->transid;
5909
5910         /*
5911          * if this inode hasn't been logged and directory we're renaming it
5912          * from hasn't been logged, we don't need to log it
5913          */
5914         if (BTRFS_I(inode)->logged_trans <=
5915             root->fs_info->last_trans_committed &&
5916             (!old_dir || BTRFS_I(old_dir)->logged_trans <=
5917                     root->fs_info->last_trans_committed))
5918                 return 0;
5919
5920         return btrfs_log_inode_parent(trans, root, inode, parent, 0,
5921                                       LLONG_MAX, 1, NULL);
5922 }
5923