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