blob: b069fafbc3de9f367c712c4aa3e8af39825114bd [file] [log] [blame]
Chris Masone02119d2008-09-05 16:13:11 -04001/*
2 * Copyright (C) 2008 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
19#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Josef Bacik5dc562c2012-08-17 13:14:17 -040021#include <linux/list_sort.h>
Chris Masone02119d2008-09-05 16:13:11 -040022#include "ctree.h"
23#include "transaction.h"
24#include "disk-io.h"
25#include "locking.h"
26#include "print-tree.h"
Mark Fashehf1863732012-08-08 11:32:27 -070027#include "backref.h"
Chris Masone02119d2008-09-05 16:13:11 -040028#include "compat.h"
Christoph Hellwigb2950862008-12-02 09:54:17 -050029#include "tree-log.h"
Mark Fashehf1863732012-08-08 11:32:27 -070030#include "hash.h"
Chris Masone02119d2008-09-05 16:13:11 -040031
32/* magic values for the inode_only field in btrfs_log_inode:
33 *
34 * LOG_INODE_ALL means to log everything
35 * LOG_INODE_EXISTS means to log just enough to recreate the inode
36 * during log replay
37 */
38#define LOG_INODE_ALL 0
39#define LOG_INODE_EXISTS 1
40
41/*
Chris Mason12fcfd22009-03-24 10:24:20 -040042 * directory trouble cases
43 *
44 * 1) on rename or unlink, if the inode being unlinked isn't in the fsync
45 * log, we must force a full commit before doing an fsync of the directory
46 * where the unlink was done.
47 * ---> record transid of last unlink/rename per directory
48 *
49 * mkdir foo/some_dir
50 * normal commit
51 * rename foo/some_dir foo2/some_dir
52 * mkdir foo/some_dir
53 * fsync foo/some_dir/some_file
54 *
55 * The fsync above will unlink the original some_dir without recording
56 * it in its new location (foo2). After a crash, some_dir will be gone
57 * unless the fsync of some_file forces a full commit
58 *
59 * 2) we must log any new names for any file or dir that is in the fsync
60 * log. ---> check inode while renaming/linking.
61 *
62 * 2a) we must log any new names for any file or dir during rename
63 * when the directory they are being removed from was logged.
64 * ---> check inode and old parent dir during rename
65 *
66 * 2a is actually the more important variant. With the extra logging
67 * a crash might unlink the old name without recreating the new one
68 *
69 * 3) after a crash, we must go through any directories with a link count
70 * of zero and redo the rm -rf
71 *
72 * mkdir f1/foo
73 * normal commit
74 * rm -rf f1/foo
75 * fsync(f1)
76 *
77 * The directory f1 was fully removed from the FS, but fsync was never
78 * called on f1, only its parent dir. After a crash the rm -rf must
79 * be replayed. This must be able to recurse down the entire
80 * directory tree. The inode link count fixup code takes care of the
81 * ugly details.
82 */
83
84/*
Chris Masone02119d2008-09-05 16:13:11 -040085 * stages for the tree walking. The first
86 * stage (0) is to only pin down the blocks we find
87 * the second stage (1) is to make sure that all the inodes
88 * we find in the log are created in the subvolume.
89 *
90 * The last stage is to deal with directories and links and extents
91 * and all the other fun semantics
92 */
93#define LOG_WALK_PIN_ONLY 0
94#define LOG_WALK_REPLAY_INODES 1
95#define LOG_WALK_REPLAY_ALL 2
96
Chris Mason12fcfd22009-03-24 10:24:20 -040097static int btrfs_log_inode(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -040098 struct btrfs_root *root, struct inode *inode,
99 int inode_only);
Yan Zhengec051c02009-01-05 15:43:42 -0500100static int link_to_fixup_dir(struct btrfs_trans_handle *trans,
101 struct btrfs_root *root,
102 struct btrfs_path *path, u64 objectid);
Chris Mason12fcfd22009-03-24 10:24:20 -0400103static 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);
Chris Masone02119d2008-09-05 16:13:11 -0400108
109/*
110 * tree logging is a special write ahead log used to make sure that
111 * fsyncs and O_SYNCs can happen without doing full tree commits.
112 *
113 * Full tree commits are expensive because they require commonly
114 * modified blocks to be recowed, creating many dirty pages in the
115 * extent tree an 4x-6x higher write load than ext3.
116 *
117 * Instead of doing a tree commit on every fsync, we use the
118 * key ranges and transaction ids to find items for a given file or directory
119 * that have changed in this transaction. Those items are copied into
120 * a special tree (one per subvolume root), that tree is written to disk
121 * and then the fsync is considered complete.
122 *
123 * After a crash, items are copied out of the log-tree back into the
124 * subvolume tree. Any file data extents found are recorded in the extent
125 * allocation tree, and the log-tree freed.
126 *
127 * The log tree is read three times, once to pin down all the extents it is
128 * using in ram and once, once to create all the inodes logged in the tree
129 * and once to do all the other items.
130 */
131
132/*
Chris Masone02119d2008-09-05 16:13:11 -0400133 * start a sub transaction and setup the log tree
134 * this increments the log tree writer count to make the people
135 * syncing the tree wait for us to finish
136 */
137static int start_log_trans(struct btrfs_trans_handle *trans,
138 struct btrfs_root *root)
139{
140 int ret;
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400141 int err = 0;
Yan Zheng7237f182009-01-21 12:54:03 -0500142
143 mutex_lock(&root->log_mutex);
144 if (root->log_root) {
Josef Bacikff782e02009-10-08 15:30:04 -0400145 if (!root->log_start_pid) {
146 root->log_start_pid = current->pid;
147 root->log_multiple_pids = false;
148 } else if (root->log_start_pid != current->pid) {
149 root->log_multiple_pids = true;
150 }
151
Miao Xie2ecb7922012-09-06 04:04:27 -0600152 atomic_inc(&root->log_batch);
Yan Zheng7237f182009-01-21 12:54:03 -0500153 atomic_inc(&root->log_writers);
154 mutex_unlock(&root->log_mutex);
155 return 0;
156 }
Josef Bacikff782e02009-10-08 15:30:04 -0400157 root->log_multiple_pids = false;
158 root->log_start_pid = current->pid;
Chris Masone02119d2008-09-05 16:13:11 -0400159 mutex_lock(&root->fs_info->tree_log_mutex);
160 if (!root->fs_info->log_root_tree) {
161 ret = btrfs_init_log_root_tree(trans, root->fs_info);
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400162 if (ret)
163 err = ret;
Chris Masone02119d2008-09-05 16:13:11 -0400164 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400165 if (err == 0 && !root->log_root) {
Chris Masone02119d2008-09-05 16:13:11 -0400166 ret = btrfs_add_log_tree(trans, root);
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400167 if (ret)
168 err = ret;
Chris Masone02119d2008-09-05 16:13:11 -0400169 }
Chris Masone02119d2008-09-05 16:13:11 -0400170 mutex_unlock(&root->fs_info->tree_log_mutex);
Miao Xie2ecb7922012-09-06 04:04:27 -0600171 atomic_inc(&root->log_batch);
Yan Zheng7237f182009-01-21 12:54:03 -0500172 atomic_inc(&root->log_writers);
173 mutex_unlock(&root->log_mutex);
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400174 return err;
Chris Masone02119d2008-09-05 16:13:11 -0400175}
176
177/*
178 * returns 0 if there was a log transaction running and we were able
179 * to join, or returns -ENOENT if there were not transactions
180 * in progress
181 */
182static int join_running_log_trans(struct btrfs_root *root)
183{
184 int ret = -ENOENT;
185
186 smp_mb();
187 if (!root->log_root)
188 return -ENOENT;
189
Yan Zheng7237f182009-01-21 12:54:03 -0500190 mutex_lock(&root->log_mutex);
Chris Masone02119d2008-09-05 16:13:11 -0400191 if (root->log_root) {
192 ret = 0;
Yan Zheng7237f182009-01-21 12:54:03 -0500193 atomic_inc(&root->log_writers);
Chris Masone02119d2008-09-05 16:13:11 -0400194 }
Yan Zheng7237f182009-01-21 12:54:03 -0500195 mutex_unlock(&root->log_mutex);
Chris Masone02119d2008-09-05 16:13:11 -0400196 return ret;
197}
198
199/*
Chris Mason12fcfd22009-03-24 10:24:20 -0400200 * This either makes the current running log transaction wait
201 * until you call btrfs_end_log_trans() or it makes any future
202 * log transactions wait until you call btrfs_end_log_trans()
203 */
204int btrfs_pin_log_trans(struct btrfs_root *root)
205{
206 int ret = -ENOENT;
207
208 mutex_lock(&root->log_mutex);
209 atomic_inc(&root->log_writers);
210 mutex_unlock(&root->log_mutex);
211 return ret;
212}
213
214/*
Chris Masone02119d2008-09-05 16:13:11 -0400215 * indicate we're done making changes to the log tree
216 * and wake up anyone waiting to do a sync
217 */
Jeff Mahoney143bede2012-03-01 14:56:26 +0100218void btrfs_end_log_trans(struct btrfs_root *root)
Chris Masone02119d2008-09-05 16:13:11 -0400219{
Yan Zheng7237f182009-01-21 12:54:03 -0500220 if (atomic_dec_and_test(&root->log_writers)) {
221 smp_mb();
222 if (waitqueue_active(&root->log_writer_wait))
223 wake_up(&root->log_writer_wait);
224 }
Chris Masone02119d2008-09-05 16:13:11 -0400225}
226
227
228/*
229 * the walk control struct is used to pass state down the chain when
230 * processing the log tree. The stage field tells us which part
231 * of the log tree processing we are currently doing. The others
232 * are state fields used for that specific part
233 */
234struct walk_control {
235 /* should we free the extent on disk when done? This is used
236 * at transaction commit time while freeing a log tree
237 */
238 int free;
239
240 /* should we write out the extent buffer? This is used
241 * while flushing the log tree to disk during a sync
242 */
243 int write;
244
245 /* should we wait for the extent buffer io to finish? Also used
246 * while flushing the log tree to disk for a sync
247 */
248 int wait;
249
250 /* pin only walk, we record which extents on disk belong to the
251 * log trees
252 */
253 int pin;
254
255 /* what stage of the replay code we're currently in */
256 int stage;
257
258 /* the root we are currently replaying */
259 struct btrfs_root *replay_dest;
260
261 /* the trans handle for the current replay */
262 struct btrfs_trans_handle *trans;
263
264 /* the function that gets used to process blocks we find in the
265 * tree. Note the extent_buffer might not be up to date when it is
266 * passed in, and it must be checked or read if you need the data
267 * inside it
268 */
269 int (*process_func)(struct btrfs_root *log, struct extent_buffer *eb,
270 struct walk_control *wc, u64 gen);
271};
272
273/*
274 * process_func used to pin down extents, write them or wait on them
275 */
276static int process_one_buffer(struct btrfs_root *log,
277 struct extent_buffer *eb,
278 struct walk_control *wc, u64 gen)
279{
Josef Bacik04018de2009-04-03 10:14:18 -0400280 if (wc->pin)
Liu Bodcfac412012-12-27 09:01:20 +0000281 btrfs_pin_extent_for_log_replay(log->fs_info->extent_root,
Chris Masone688b7252011-10-31 20:52:39 -0400282 eb->start, eb->len);
Chris Masone02119d2008-09-05 16:13:11 -0400283
Chris Masonb9fab912012-05-06 07:23:47 -0400284 if (btrfs_buffer_uptodate(eb, gen, 0)) {
Chris Masone02119d2008-09-05 16:13:11 -0400285 if (wc->write)
286 btrfs_write_tree_block(eb);
287 if (wc->wait)
288 btrfs_wait_tree_block_writeback(eb);
289 }
290 return 0;
291}
292
293/*
294 * Item overwrite used by replay and tree logging. eb, slot and key all refer
295 * to the src data we are copying out.
296 *
297 * root is the tree we are copying into, and path is a scratch
298 * path for use in this function (it should be released on entry and
299 * will be released on exit).
300 *
301 * If the key is already in the destination tree the existing item is
302 * overwritten. If the existing item isn't big enough, it is extended.
303 * If it is too large, it is truncated.
304 *
305 * If the key isn't in the destination yet, a new item is inserted.
306 */
307static noinline int overwrite_item(struct btrfs_trans_handle *trans,
308 struct btrfs_root *root,
309 struct btrfs_path *path,
310 struct extent_buffer *eb, int slot,
311 struct btrfs_key *key)
312{
313 int ret;
314 u32 item_size;
315 u64 saved_i_size = 0;
316 int save_old_i_size = 0;
317 unsigned long src_ptr;
318 unsigned long dst_ptr;
319 int overwrite_root = 0;
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000320 bool inode_item = key->type == BTRFS_INODE_ITEM_KEY;
Chris Masone02119d2008-09-05 16:13:11 -0400321
322 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID)
323 overwrite_root = 1;
324
325 item_size = btrfs_item_size_nr(eb, slot);
326 src_ptr = btrfs_item_ptr_offset(eb, slot);
327
328 /* look for the key in the destination tree */
329 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000330 if (ret < 0)
331 return ret;
332
Chris Masone02119d2008-09-05 16:13:11 -0400333 if (ret == 0) {
334 char *src_copy;
335 char *dst_copy;
336 u32 dst_size = btrfs_item_size_nr(path->nodes[0],
337 path->slots[0]);
338 if (dst_size != item_size)
339 goto insert;
340
341 if (item_size == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200342 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400343 return 0;
344 }
345 dst_copy = kmalloc(item_size, GFP_NOFS);
346 src_copy = kmalloc(item_size, GFP_NOFS);
liubo2a29edc2011-01-26 06:22:08 +0000347 if (!dst_copy || !src_copy) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200348 btrfs_release_path(path);
liubo2a29edc2011-01-26 06:22:08 +0000349 kfree(dst_copy);
350 kfree(src_copy);
351 return -ENOMEM;
352 }
Chris Masone02119d2008-09-05 16:13:11 -0400353
354 read_extent_buffer(eb, src_copy, src_ptr, item_size);
355
356 dst_ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]);
357 read_extent_buffer(path->nodes[0], dst_copy, dst_ptr,
358 item_size);
359 ret = memcmp(dst_copy, src_copy, item_size);
360
361 kfree(dst_copy);
362 kfree(src_copy);
363 /*
364 * they have the same contents, just return, this saves
365 * us from cowing blocks in the destination tree and doing
366 * extra writes that may not have been done by a previous
367 * sync
368 */
369 if (ret == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200370 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400371 return 0;
372 }
373
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000374 /*
375 * We need to load the old nbytes into the inode so when we
376 * replay the extents we've logged we get the right nbytes.
377 */
378 if (inode_item) {
379 struct btrfs_inode_item *item;
380 u64 nbytes;
381
382 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
383 struct btrfs_inode_item);
384 nbytes = btrfs_inode_nbytes(path->nodes[0], item);
385 item = btrfs_item_ptr(eb, slot,
386 struct btrfs_inode_item);
387 btrfs_set_inode_nbytes(eb, item, nbytes);
388 }
389 } else if (inode_item) {
390 struct btrfs_inode_item *item;
391
392 /*
393 * New inode, set nbytes to 0 so that the nbytes comes out
394 * properly when we replay the extents.
395 */
396 item = btrfs_item_ptr(eb, slot, struct btrfs_inode_item);
397 btrfs_set_inode_nbytes(eb, item, 0);
Chris Masone02119d2008-09-05 16:13:11 -0400398 }
399insert:
David Sterbab3b4aa72011-04-21 01:20:15 +0200400 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400401 /* try to insert the key into the destination tree */
402 ret = btrfs_insert_empty_item(trans, root, path,
403 key, item_size);
404
405 /* make sure any existing item is the correct size */
406 if (ret == -EEXIST) {
407 u32 found_size;
408 found_size = btrfs_item_size_nr(path->nodes[0],
409 path->slots[0]);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100410 if (found_size > item_size)
Chris Masone02119d2008-09-05 16:13:11 -0400411 btrfs_truncate_item(trans, root, path, item_size, 1);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100412 else if (found_size < item_size)
413 btrfs_extend_item(trans, root, path,
414 item_size - found_size);
Chris Masone02119d2008-09-05 16:13:11 -0400415 } else if (ret) {
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400416 return ret;
Chris Masone02119d2008-09-05 16:13:11 -0400417 }
418 dst_ptr = btrfs_item_ptr_offset(path->nodes[0],
419 path->slots[0]);
420
421 /* don't overwrite an existing inode if the generation number
422 * was logged as zero. This is done when the tree logging code
423 * is just logging an inode to make sure it exists after recovery.
424 *
425 * Also, don't overwrite i_size on directories during replay.
426 * log replay inserts and removes directory items based on the
427 * state of the tree found in the subvolume, and i_size is modified
428 * as it goes
429 */
430 if (key->type == BTRFS_INODE_ITEM_KEY && ret == -EEXIST) {
431 struct btrfs_inode_item *src_item;
432 struct btrfs_inode_item *dst_item;
433
434 src_item = (struct btrfs_inode_item *)src_ptr;
435 dst_item = (struct btrfs_inode_item *)dst_ptr;
436
437 if (btrfs_inode_generation(eb, src_item) == 0)
438 goto no_copy;
439
440 if (overwrite_root &&
441 S_ISDIR(btrfs_inode_mode(eb, src_item)) &&
442 S_ISDIR(btrfs_inode_mode(path->nodes[0], dst_item))) {
443 save_old_i_size = 1;
444 saved_i_size = btrfs_inode_size(path->nodes[0],
445 dst_item);
446 }
447 }
448
449 copy_extent_buffer(path->nodes[0], eb, dst_ptr,
450 src_ptr, item_size);
451
452 if (save_old_i_size) {
453 struct btrfs_inode_item *dst_item;
454 dst_item = (struct btrfs_inode_item *)dst_ptr;
455 btrfs_set_inode_size(path->nodes[0], dst_item, saved_i_size);
456 }
457
458 /* make sure the generation is filled in */
459 if (key->type == BTRFS_INODE_ITEM_KEY) {
460 struct btrfs_inode_item *dst_item;
461 dst_item = (struct btrfs_inode_item *)dst_ptr;
462 if (btrfs_inode_generation(path->nodes[0], dst_item) == 0) {
463 btrfs_set_inode_generation(path->nodes[0], dst_item,
464 trans->transid);
465 }
466 }
467no_copy:
468 btrfs_mark_buffer_dirty(path->nodes[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +0200469 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400470 return 0;
471}
472
473/*
474 * simple helper to read an inode off the disk from a given root
475 * This can only be called for subvolume roots and not for the log
476 */
477static noinline struct inode *read_one_inode(struct btrfs_root *root,
478 u64 objectid)
479{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400480 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -0400481 struct inode *inode;
Chris Masone02119d2008-09-05 16:13:11 -0400482
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400483 key.objectid = objectid;
484 key.type = BTRFS_INODE_ITEM_KEY;
485 key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +0000486 inode = btrfs_iget(root->fs_info->sb, &key, root, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400487 if (IS_ERR(inode)) {
488 inode = NULL;
489 } else if (is_bad_inode(inode)) {
Chris Masone02119d2008-09-05 16:13:11 -0400490 iput(inode);
491 inode = NULL;
492 }
493 return inode;
494}
495
496/* replays a single extent in 'eb' at 'slot' with 'key' into the
497 * subvolume 'root'. path is released on entry and should be released
498 * on exit.
499 *
500 * extents in the log tree have not been allocated out of the extent
501 * tree yet. So, this completes the allocation, taking a reference
502 * as required if the extent already exists or creating a new extent
503 * if it isn't in the extent allocation tree yet.
504 *
505 * The extent is inserted into the file, dropping any existing extents
506 * from the file that overlap the new one.
507 */
508static noinline int replay_one_extent(struct btrfs_trans_handle *trans,
509 struct btrfs_root *root,
510 struct btrfs_path *path,
511 struct extent_buffer *eb, int slot,
512 struct btrfs_key *key)
513{
514 int found_type;
Chris Masone02119d2008-09-05 16:13:11 -0400515 u64 extent_end;
Chris Masone02119d2008-09-05 16:13:11 -0400516 u64 start = key->offset;
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000517 u64 nbytes = 0;
Chris Masone02119d2008-09-05 16:13:11 -0400518 struct btrfs_file_extent_item *item;
519 struct inode *inode = NULL;
520 unsigned long size;
521 int ret = 0;
522
523 item = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item);
524 found_type = btrfs_file_extent_type(eb, item);
525
Yan Zhengd899e052008-10-30 14:25:28 -0400526 if (found_type == BTRFS_FILE_EXTENT_REG ||
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000527 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
528 nbytes = btrfs_file_extent_num_bytes(eb, item);
529 extent_end = start + nbytes;
530
531 /*
532 * We don't add to the inodes nbytes if we are prealloc or a
533 * hole.
534 */
535 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
536 nbytes = 0;
537 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -0400538 size = btrfs_file_extent_inline_len(eb, item);
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000539 nbytes = btrfs_file_extent_ram_bytes(eb, item);
Qu Wenruofda28322013-02-26 08:10:22 +0000540 extent_end = ALIGN(start + size, root->sectorsize);
Chris Masone02119d2008-09-05 16:13:11 -0400541 } else {
542 ret = 0;
543 goto out;
544 }
545
546 inode = read_one_inode(root, key->objectid);
547 if (!inode) {
548 ret = -EIO;
549 goto out;
550 }
551
552 /*
553 * first check to see if we already have this extent in the
554 * file. This must be done before the btrfs_drop_extents run
555 * so we don't try to drop this extent.
556 */
Li Zefan33345d012011-04-20 10:31:50 +0800557 ret = btrfs_lookup_file_extent(trans, root, path, btrfs_ino(inode),
Chris Masone02119d2008-09-05 16:13:11 -0400558 start, 0);
559
Yan Zhengd899e052008-10-30 14:25:28 -0400560 if (ret == 0 &&
561 (found_type == BTRFS_FILE_EXTENT_REG ||
562 found_type == BTRFS_FILE_EXTENT_PREALLOC)) {
Chris Masone02119d2008-09-05 16:13:11 -0400563 struct btrfs_file_extent_item cmp1;
564 struct btrfs_file_extent_item cmp2;
565 struct btrfs_file_extent_item *existing;
566 struct extent_buffer *leaf;
567
568 leaf = path->nodes[0];
569 existing = btrfs_item_ptr(leaf, path->slots[0],
570 struct btrfs_file_extent_item);
571
572 read_extent_buffer(eb, &cmp1, (unsigned long)item,
573 sizeof(cmp1));
574 read_extent_buffer(leaf, &cmp2, (unsigned long)existing,
575 sizeof(cmp2));
576
577 /*
578 * we already have a pointer to this exact extent,
579 * we don't have to do anything
580 */
581 if (memcmp(&cmp1, &cmp2, sizeof(cmp1)) == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200582 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400583 goto out;
584 }
585 }
David Sterbab3b4aa72011-04-21 01:20:15 +0200586 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400587
588 /* drop any overlapping extents */
Josef Bacik26714852012-08-29 12:24:27 -0400589 ret = btrfs_drop_extents(trans, root, inode, start, extent_end, 1);
Chris Masone02119d2008-09-05 16:13:11 -0400590 BUG_ON(ret);
591
Yan Zheng07d400a2009-01-06 11:42:00 -0500592 if (found_type == BTRFS_FILE_EXTENT_REG ||
593 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400594 u64 offset;
Yan Zheng07d400a2009-01-06 11:42:00 -0500595 unsigned long dest_offset;
596 struct btrfs_key ins;
Chris Masone02119d2008-09-05 16:13:11 -0400597
Yan Zheng07d400a2009-01-06 11:42:00 -0500598 ret = btrfs_insert_empty_item(trans, root, path, key,
599 sizeof(*item));
600 BUG_ON(ret);
601 dest_offset = btrfs_item_ptr_offset(path->nodes[0],
602 path->slots[0]);
603 copy_extent_buffer(path->nodes[0], eb, dest_offset,
604 (unsigned long)item, sizeof(*item));
605
606 ins.objectid = btrfs_file_extent_disk_bytenr(eb, item);
607 ins.offset = btrfs_file_extent_disk_num_bytes(eb, item);
608 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400609 offset = key->offset - btrfs_file_extent_offset(eb, item);
Yan Zheng07d400a2009-01-06 11:42:00 -0500610
611 if (ins.objectid > 0) {
612 u64 csum_start;
613 u64 csum_end;
614 LIST_HEAD(ordered_sums);
615 /*
616 * is this extent already allocated in the extent
617 * allocation tree? If so, just add a reference
618 */
619 ret = btrfs_lookup_extent(root, ins.objectid,
620 ins.offset);
621 if (ret == 0) {
622 ret = btrfs_inc_extent_ref(trans, root,
623 ins.objectid, ins.offset,
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400624 0, root->root_key.objectid,
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200625 key->objectid, offset, 0);
Tsutomu Itoh37daa4f2011-04-28 09:18:21 +0000626 BUG_ON(ret);
Yan Zheng07d400a2009-01-06 11:42:00 -0500627 } else {
628 /*
629 * insert the extent pointer in the extent
630 * allocation tree
631 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400632 ret = btrfs_alloc_logged_file_extent(trans,
633 root, root->root_key.objectid,
634 key->objectid, offset, &ins);
Yan Zheng07d400a2009-01-06 11:42:00 -0500635 BUG_ON(ret);
636 }
David Sterbab3b4aa72011-04-21 01:20:15 +0200637 btrfs_release_path(path);
Yan Zheng07d400a2009-01-06 11:42:00 -0500638
639 if (btrfs_file_extent_compression(eb, item)) {
640 csum_start = ins.objectid;
641 csum_end = csum_start + ins.offset;
642 } else {
643 csum_start = ins.objectid +
644 btrfs_file_extent_offset(eb, item);
645 csum_end = csum_start +
646 btrfs_file_extent_num_bytes(eb, item);
647 }
648
649 ret = btrfs_lookup_csums_range(root->log_root,
650 csum_start, csum_end - 1,
Arne Jansena2de7332011-03-08 14:14:00 +0100651 &ordered_sums, 0);
Yan Zheng07d400a2009-01-06 11:42:00 -0500652 BUG_ON(ret);
653 while (!list_empty(&ordered_sums)) {
654 struct btrfs_ordered_sum *sums;
655 sums = list_entry(ordered_sums.next,
656 struct btrfs_ordered_sum,
657 list);
658 ret = btrfs_csum_file_blocks(trans,
659 root->fs_info->csum_root,
660 sums);
661 BUG_ON(ret);
662 list_del(&sums->list);
663 kfree(sums);
664 }
665 } else {
David Sterbab3b4aa72011-04-21 01:20:15 +0200666 btrfs_release_path(path);
Yan Zheng07d400a2009-01-06 11:42:00 -0500667 }
668 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
669 /* inline extents are easy, we just overwrite them */
670 ret = overwrite_item(trans, root, path, eb, slot, key);
671 BUG_ON(ret);
672 }
673
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000674 inode_add_bytes(inode, nbytes);
Tsutomu Itohb9959292012-06-25 21:25:22 -0600675 ret = btrfs_update_inode(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -0400676out:
677 if (inode)
678 iput(inode);
679 return ret;
680}
681
682/*
683 * when cleaning up conflicts between the directory names in the
684 * subvolume, directory names in the log and directory names in the
685 * inode back references, we may have to unlink inodes from directories.
686 *
687 * This is a helper function to do the unlink of a specific directory
688 * item
689 */
690static noinline int drop_one_dir_item(struct btrfs_trans_handle *trans,
691 struct btrfs_root *root,
692 struct btrfs_path *path,
693 struct inode *dir,
694 struct btrfs_dir_item *di)
695{
696 struct inode *inode;
697 char *name;
698 int name_len;
699 struct extent_buffer *leaf;
700 struct btrfs_key location;
701 int ret;
702
703 leaf = path->nodes[0];
704
705 btrfs_dir_item_key_to_cpu(leaf, di, &location);
706 name_len = btrfs_dir_name_len(leaf, di);
707 name = kmalloc(name_len, GFP_NOFS);
liubo2a29edc2011-01-26 06:22:08 +0000708 if (!name)
709 return -ENOMEM;
710
Chris Masone02119d2008-09-05 16:13:11 -0400711 read_extent_buffer(leaf, name, (unsigned long)(di + 1), name_len);
David Sterbab3b4aa72011-04-21 01:20:15 +0200712 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400713
714 inode = read_one_inode(root, location.objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +0000715 if (!inode) {
716 kfree(name);
717 return -EIO;
718 }
Chris Masone02119d2008-09-05 16:13:11 -0400719
Yan Zhengec051c02009-01-05 15:43:42 -0500720 ret = link_to_fixup_dir(trans, root, path, location.objectid);
721 BUG_ON(ret);
Chris Mason12fcfd22009-03-24 10:24:20 -0400722
Chris Masone02119d2008-09-05 16:13:11 -0400723 ret = btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
Yan Zhengec051c02009-01-05 15:43:42 -0500724 BUG_ON(ret);
Chris Masone02119d2008-09-05 16:13:11 -0400725 kfree(name);
726
727 iput(inode);
Chris Masonb6305562012-07-02 15:29:53 -0400728
729 btrfs_run_delayed_items(trans, root);
Chris Masone02119d2008-09-05 16:13:11 -0400730 return ret;
731}
732
733/*
734 * helper function to see if a given name and sequence number found
735 * in an inode back reference are already in a directory and correctly
736 * point to this inode
737 */
738static noinline int inode_in_dir(struct btrfs_root *root,
739 struct btrfs_path *path,
740 u64 dirid, u64 objectid, u64 index,
741 const char *name, int name_len)
742{
743 struct btrfs_dir_item *di;
744 struct btrfs_key location;
745 int match = 0;
746
747 di = btrfs_lookup_dir_index_item(NULL, root, path, dirid,
748 index, name, name_len, 0);
749 if (di && !IS_ERR(di)) {
750 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location);
751 if (location.objectid != objectid)
752 goto out;
753 } else
754 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +0200755 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400756
757 di = btrfs_lookup_dir_item(NULL, root, path, dirid, name, name_len, 0);
758 if (di && !IS_ERR(di)) {
759 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location);
760 if (location.objectid != objectid)
761 goto out;
762 } else
763 goto out;
764 match = 1;
765out:
David Sterbab3b4aa72011-04-21 01:20:15 +0200766 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400767 return match;
768}
769
770/*
771 * helper function to check a log tree for a named back reference in
772 * an inode. This is used to decide if a back reference that is
773 * found in the subvolume conflicts with what we find in the log.
774 *
775 * inode backreferences may have multiple refs in a single item,
776 * during replay we process one reference at a time, and we don't
777 * want to delete valid links to a file from the subvolume if that
778 * link is also in the log.
779 */
780static noinline int backref_in_log(struct btrfs_root *log,
781 struct btrfs_key *key,
Mark Fashehf1863732012-08-08 11:32:27 -0700782 u64 ref_objectid,
Chris Masone02119d2008-09-05 16:13:11 -0400783 char *name, int namelen)
784{
785 struct btrfs_path *path;
786 struct btrfs_inode_ref *ref;
787 unsigned long ptr;
788 unsigned long ptr_end;
789 unsigned long name_ptr;
790 int found_name_len;
791 int item_size;
792 int ret;
793 int match = 0;
794
795 path = btrfs_alloc_path();
liubo2a29edc2011-01-26 06:22:08 +0000796 if (!path)
797 return -ENOMEM;
798
Chris Masone02119d2008-09-05 16:13:11 -0400799 ret = btrfs_search_slot(NULL, log, key, path, 0, 0);
800 if (ret != 0)
801 goto out;
802
Chris Masone02119d2008-09-05 16:13:11 -0400803 ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]);
Mark Fashehf1863732012-08-08 11:32:27 -0700804
805 if (key->type == BTRFS_INODE_EXTREF_KEY) {
806 if (btrfs_find_name_in_ext_backref(path, ref_objectid,
807 name, namelen, NULL))
808 match = 1;
809
810 goto out;
811 }
812
813 item_size = btrfs_item_size_nr(path->nodes[0], path->slots[0]);
Chris Masone02119d2008-09-05 16:13:11 -0400814 ptr_end = ptr + item_size;
815 while (ptr < ptr_end) {
816 ref = (struct btrfs_inode_ref *)ptr;
817 found_name_len = btrfs_inode_ref_name_len(path->nodes[0], ref);
818 if (found_name_len == namelen) {
819 name_ptr = (unsigned long)(ref + 1);
820 ret = memcmp_extent_buffer(path->nodes[0], name,
821 name_ptr, namelen);
822 if (ret == 0) {
823 match = 1;
824 goto out;
825 }
826 }
827 ptr = (unsigned long)(ref + 1) + found_name_len;
828 }
829out:
830 btrfs_free_path(path);
831 return match;
832}
833
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700834static inline int __add_inode_ref(struct btrfs_trans_handle *trans,
835 struct btrfs_root *root,
836 struct btrfs_path *path,
837 struct btrfs_root *log_root,
838 struct inode *dir, struct inode *inode,
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700839 struct extent_buffer *eb,
Mark Fashehf1863732012-08-08 11:32:27 -0700840 u64 inode_objectid, u64 parent_objectid,
841 u64 ref_index, char *name, int namelen,
842 int *search_done)
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700843{
844 int ret;
Mark Fashehf1863732012-08-08 11:32:27 -0700845 char *victim_name;
846 int victim_name_len;
847 struct extent_buffer *leaf;
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700848 struct btrfs_dir_item *di;
Mark Fashehf1863732012-08-08 11:32:27 -0700849 struct btrfs_key search_key;
850 struct btrfs_inode_extref *extref;
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700851
Mark Fashehf1863732012-08-08 11:32:27 -0700852again:
853 /* Search old style refs */
854 search_key.objectid = inode_objectid;
855 search_key.type = BTRFS_INODE_REF_KEY;
856 search_key.offset = parent_objectid;
857 ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0);
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700858 if (ret == 0) {
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700859 struct btrfs_inode_ref *victim_ref;
860 unsigned long ptr;
861 unsigned long ptr_end;
Mark Fashehf1863732012-08-08 11:32:27 -0700862
863 leaf = path->nodes[0];
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700864
865 /* are we trying to overwrite a back ref for the root directory
866 * if so, just jump out, we're done
867 */
Mark Fashehf1863732012-08-08 11:32:27 -0700868 if (search_key.objectid == search_key.offset)
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700869 return 1;
870
871 /* check all the names in this back reference to see
872 * if they are in the log. if so, we allow them to stay
873 * otherwise they must be unlinked as a conflict
874 */
875 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
876 ptr_end = ptr + btrfs_item_size_nr(leaf, path->slots[0]);
877 while (ptr < ptr_end) {
878 victim_ref = (struct btrfs_inode_ref *)ptr;
879 victim_name_len = btrfs_inode_ref_name_len(leaf,
880 victim_ref);
881 victim_name = kmalloc(victim_name_len, GFP_NOFS);
882 BUG_ON(!victim_name);
883
884 read_extent_buffer(leaf, victim_name,
885 (unsigned long)(victim_ref + 1),
886 victim_name_len);
887
Mark Fashehf1863732012-08-08 11:32:27 -0700888 if (!backref_in_log(log_root, &search_key,
889 parent_objectid,
890 victim_name,
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700891 victim_name_len)) {
892 btrfs_inc_nlink(inode);
893 btrfs_release_path(path);
894
895 ret = btrfs_unlink_inode(trans, root, dir,
896 inode, victim_name,
897 victim_name_len);
Mark Fashehf1863732012-08-08 11:32:27 -0700898 BUG_ON(ret);
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700899 btrfs_run_delayed_items(trans, root);
Mark Fashehf1863732012-08-08 11:32:27 -0700900 kfree(victim_name);
901 *search_done = 1;
902 goto again;
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700903 }
904 kfree(victim_name);
Mark Fashehf1863732012-08-08 11:32:27 -0700905
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700906 ptr = (unsigned long)(victim_ref + 1) + victim_name_len;
907 }
908 BUG_ON(ret);
909
910 /*
911 * NOTE: we have searched root tree and checked the
912 * coresponding ref, it does not need to check again.
913 */
914 *search_done = 1;
915 }
916 btrfs_release_path(path);
917
Mark Fashehf1863732012-08-08 11:32:27 -0700918 /* Same search but for extended refs */
919 extref = btrfs_lookup_inode_extref(NULL, root, path, name, namelen,
920 inode_objectid, parent_objectid, 0,
921 0);
922 if (!IS_ERR_OR_NULL(extref)) {
923 u32 item_size;
924 u32 cur_offset = 0;
925 unsigned long base;
926 struct inode *victim_parent;
927
928 leaf = path->nodes[0];
929
930 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
931 base = btrfs_item_ptr_offset(leaf, path->slots[0]);
932
933 while (cur_offset < item_size) {
934 extref = (struct btrfs_inode_extref *)base + cur_offset;
935
936 victim_name_len = btrfs_inode_extref_name_len(leaf, extref);
937
938 if (btrfs_inode_extref_parent(leaf, extref) != parent_objectid)
939 goto next;
940
941 victim_name = kmalloc(victim_name_len, GFP_NOFS);
942 read_extent_buffer(leaf, victim_name, (unsigned long)&extref->name,
943 victim_name_len);
944
945 search_key.objectid = inode_objectid;
946 search_key.type = BTRFS_INODE_EXTREF_KEY;
947 search_key.offset = btrfs_extref_hash(parent_objectid,
948 victim_name,
949 victim_name_len);
950 ret = 0;
951 if (!backref_in_log(log_root, &search_key,
952 parent_objectid, victim_name,
953 victim_name_len)) {
954 ret = -ENOENT;
955 victim_parent = read_one_inode(root,
956 parent_objectid);
957 if (victim_parent) {
958 btrfs_inc_nlink(inode);
959 btrfs_release_path(path);
960
961 ret = btrfs_unlink_inode(trans, root,
962 victim_parent,
963 inode,
964 victim_name,
965 victim_name_len);
966 btrfs_run_delayed_items(trans, root);
967 }
968 BUG_ON(ret);
969 iput(victim_parent);
970 kfree(victim_name);
971 *search_done = 1;
972 goto again;
973 }
974 kfree(victim_name);
975 BUG_ON(ret);
976next:
977 cur_offset += victim_name_len + sizeof(*extref);
978 }
979 *search_done = 1;
980 }
981 btrfs_release_path(path);
982
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700983 /* look for a conflicting sequence number */
984 di = btrfs_lookup_dir_index_item(trans, root, path, btrfs_ino(dir),
Mark Fashehf1863732012-08-08 11:32:27 -0700985 ref_index, name, namelen, 0);
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700986 if (di && !IS_ERR(di)) {
987 ret = drop_one_dir_item(trans, root, path, dir, di);
988 BUG_ON(ret);
989 }
990 btrfs_release_path(path);
991
992 /* look for a conflicing name */
993 di = btrfs_lookup_dir_item(trans, root, path, btrfs_ino(dir),
994 name, namelen, 0);
995 if (di && !IS_ERR(di)) {
996 ret = drop_one_dir_item(trans, root, path, dir, di);
997 BUG_ON(ret);
998 }
999 btrfs_release_path(path);
1000
1001 return 0;
1002}
Chris Masone02119d2008-09-05 16:13:11 -04001003
Mark Fashehf1863732012-08-08 11:32:27 -07001004static int extref_get_fields(struct extent_buffer *eb, unsigned long ref_ptr,
1005 u32 *namelen, char **name, u64 *index,
1006 u64 *parent_objectid)
1007{
1008 struct btrfs_inode_extref *extref;
1009
1010 extref = (struct btrfs_inode_extref *)ref_ptr;
1011
1012 *namelen = btrfs_inode_extref_name_len(eb, extref);
1013 *name = kmalloc(*namelen, GFP_NOFS);
1014 if (*name == NULL)
1015 return -ENOMEM;
1016
1017 read_extent_buffer(eb, *name, (unsigned long)&extref->name,
1018 *namelen);
1019
1020 *index = btrfs_inode_extref_index(eb, extref);
1021 if (parent_objectid)
1022 *parent_objectid = btrfs_inode_extref_parent(eb, extref);
1023
1024 return 0;
1025}
1026
1027static int ref_get_fields(struct extent_buffer *eb, unsigned long ref_ptr,
1028 u32 *namelen, char **name, u64 *index)
1029{
1030 struct btrfs_inode_ref *ref;
1031
1032 ref = (struct btrfs_inode_ref *)ref_ptr;
1033
1034 *namelen = btrfs_inode_ref_name_len(eb, ref);
1035 *name = kmalloc(*namelen, GFP_NOFS);
1036 if (*name == NULL)
1037 return -ENOMEM;
1038
1039 read_extent_buffer(eb, *name, (unsigned long)(ref + 1), *namelen);
1040
1041 *index = btrfs_inode_ref_index(eb, ref);
1042
1043 return 0;
1044}
1045
Chris Masone02119d2008-09-05 16:13:11 -04001046/*
1047 * replay one inode back reference item found in the log tree.
1048 * eb, slot and key refer to the buffer and key found in the log tree.
1049 * root is the destination we are replaying into, and path is for temp
1050 * use by this function. (it should be released on return).
1051 */
1052static noinline int add_inode_ref(struct btrfs_trans_handle *trans,
1053 struct btrfs_root *root,
1054 struct btrfs_root *log,
1055 struct btrfs_path *path,
1056 struct extent_buffer *eb, int slot,
1057 struct btrfs_key *key)
1058{
liubo34f3e4f2011-08-06 08:35:23 +00001059 struct inode *dir;
Chris Masone02119d2008-09-05 16:13:11 -04001060 struct inode *inode;
Chris Masone02119d2008-09-05 16:13:11 -04001061 unsigned long ref_ptr;
1062 unsigned long ref_end;
liubo34f3e4f2011-08-06 08:35:23 +00001063 char *name;
1064 int namelen;
1065 int ret;
liuboc622ae62011-03-26 08:01:12 -04001066 int search_done = 0;
Mark Fashehf1863732012-08-08 11:32:27 -07001067 int log_ref_ver = 0;
1068 u64 parent_objectid;
1069 u64 inode_objectid;
Chris Masonf46dbe3de2012-10-09 11:17:20 -04001070 u64 ref_index = 0;
Mark Fashehf1863732012-08-08 11:32:27 -07001071 int ref_struct_size;
1072
1073 ref_ptr = btrfs_item_ptr_offset(eb, slot);
1074 ref_end = ref_ptr + btrfs_item_size_nr(eb, slot);
1075
1076 if (key->type == BTRFS_INODE_EXTREF_KEY) {
1077 struct btrfs_inode_extref *r;
1078
1079 ref_struct_size = sizeof(struct btrfs_inode_extref);
1080 log_ref_ver = 1;
1081 r = (struct btrfs_inode_extref *)ref_ptr;
1082 parent_objectid = btrfs_inode_extref_parent(eb, r);
1083 } else {
1084 ref_struct_size = sizeof(struct btrfs_inode_ref);
1085 parent_objectid = key->offset;
1086 }
1087 inode_objectid = key->objectid;
Chris Masone02119d2008-09-05 16:13:11 -04001088
Chris Masone02119d2008-09-05 16:13:11 -04001089 /*
1090 * it is possible that we didn't log all the parent directories
1091 * for a given inode. If we don't find the dir, just don't
1092 * copy the back ref in. The link count fixup code will take
1093 * care of the rest
1094 */
Mark Fashehf1863732012-08-08 11:32:27 -07001095 dir = read_one_inode(root, parent_objectid);
Chris Masone02119d2008-09-05 16:13:11 -04001096 if (!dir)
1097 return -ENOENT;
1098
Mark Fashehf1863732012-08-08 11:32:27 -07001099 inode = read_one_inode(root, inode_objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001100 if (!inode) {
1101 iput(dir);
1102 return -EIO;
1103 }
Chris Masone02119d2008-09-05 16:13:11 -04001104
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001105 while (ref_ptr < ref_end) {
Mark Fashehf1863732012-08-08 11:32:27 -07001106 if (log_ref_ver) {
1107 ret = extref_get_fields(eb, ref_ptr, &namelen, &name,
1108 &ref_index, &parent_objectid);
1109 /*
1110 * parent object can change from one array
1111 * item to another.
1112 */
1113 if (!dir)
1114 dir = read_one_inode(root, parent_objectid);
1115 if (!dir)
1116 return -ENOENT;
1117 } else {
1118 ret = ref_get_fields(eb, ref_ptr, &namelen, &name,
1119 &ref_index);
1120 }
1121 if (ret)
1122 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001123
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001124 /* if we already have a perfect match, we're done */
1125 if (!inode_in_dir(root, path, btrfs_ino(dir), btrfs_ino(inode),
Mark Fashehf1863732012-08-08 11:32:27 -07001126 ref_index, name, namelen)) {
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001127 /*
1128 * look for a conflicting back reference in the
1129 * metadata. if we find one we have to unlink that name
1130 * of the file before we add our new link. Later on, we
1131 * overwrite any existing back reference, and we don't
1132 * want to create dangling pointers in the directory.
1133 */
Chris Masone02119d2008-09-05 16:13:11 -04001134
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001135 if (!search_done) {
1136 ret = __add_inode_ref(trans, root, path, log,
Mark Fashehf1863732012-08-08 11:32:27 -07001137 dir, inode, eb,
1138 inode_objectid,
1139 parent_objectid,
1140 ref_index, name, namelen,
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001141 &search_done);
1142 if (ret == 1)
1143 goto out;
1144 BUG_ON(ret);
Chris Masone02119d2008-09-05 16:13:11 -04001145 }
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001146
1147 /* insert our name */
1148 ret = btrfs_add_link(trans, dir, inode, name, namelen,
Mark Fashehf1863732012-08-08 11:32:27 -07001149 0, ref_index);
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001150 BUG_ON(ret);
1151
1152 btrfs_update_inode(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -04001153 }
liuboc622ae62011-03-26 08:01:12 -04001154
Mark Fashehf1863732012-08-08 11:32:27 -07001155 ref_ptr = (unsigned long)(ref_ptr + ref_struct_size) + namelen;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001156 kfree(name);
Mark Fashehf1863732012-08-08 11:32:27 -07001157 if (log_ref_ver) {
1158 iput(dir);
1159 dir = NULL;
1160 }
Chris Masone02119d2008-09-05 16:13:11 -04001161 }
Chris Masone02119d2008-09-05 16:13:11 -04001162
1163 /* finally write the back reference in the inode */
1164 ret = overwrite_item(trans, root, path, eb, slot, key);
1165 BUG_ON(ret);
1166
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001167out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001168 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001169 iput(dir);
1170 iput(inode);
1171 return 0;
1172}
1173
Yan, Zhengc71bf092009-11-12 09:34:40 +00001174static int insert_orphan_item(struct btrfs_trans_handle *trans,
1175 struct btrfs_root *root, u64 offset)
1176{
1177 int ret;
1178 ret = btrfs_find_orphan_item(root, offset);
1179 if (ret > 0)
1180 ret = btrfs_insert_orphan_item(trans, root, offset);
1181 return ret;
1182}
1183
Mark Fashehf1863732012-08-08 11:32:27 -07001184static int count_inode_extrefs(struct btrfs_root *root,
1185 struct inode *inode, struct btrfs_path *path)
Chris Masone02119d2008-09-05 16:13:11 -04001186{
Mark Fashehf1863732012-08-08 11:32:27 -07001187 int ret = 0;
1188 int name_len;
1189 unsigned int nlink = 0;
1190 u32 item_size;
1191 u32 cur_offset = 0;
1192 u64 inode_objectid = btrfs_ino(inode);
1193 u64 offset = 0;
1194 unsigned long ptr;
1195 struct btrfs_inode_extref *extref;
1196 struct extent_buffer *leaf;
1197
1198 while (1) {
1199 ret = btrfs_find_one_extref(root, inode_objectid, offset, path,
1200 &extref, &offset);
1201 if (ret)
1202 break;
1203
1204 leaf = path->nodes[0];
1205 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1206 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
1207
1208 while (cur_offset < item_size) {
1209 extref = (struct btrfs_inode_extref *) (ptr + cur_offset);
1210 name_len = btrfs_inode_extref_name_len(leaf, extref);
1211
1212 nlink++;
1213
1214 cur_offset += name_len + sizeof(*extref);
1215 }
1216
1217 offset++;
1218 btrfs_release_path(path);
1219 }
1220 btrfs_release_path(path);
1221
1222 if (ret < 0)
1223 return ret;
1224 return nlink;
1225}
1226
1227static int count_inode_refs(struct btrfs_root *root,
1228 struct inode *inode, struct btrfs_path *path)
1229{
Chris Masone02119d2008-09-05 16:13:11 -04001230 int ret;
1231 struct btrfs_key key;
Mark Fashehf1863732012-08-08 11:32:27 -07001232 unsigned int nlink = 0;
Chris Masone02119d2008-09-05 16:13:11 -04001233 unsigned long ptr;
1234 unsigned long ptr_end;
1235 int name_len;
Li Zefan33345d012011-04-20 10:31:50 +08001236 u64 ino = btrfs_ino(inode);
Chris Masone02119d2008-09-05 16:13:11 -04001237
Li Zefan33345d012011-04-20 10:31:50 +08001238 key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04001239 key.type = BTRFS_INODE_REF_KEY;
1240 key.offset = (u64)-1;
1241
Chris Masond3977122009-01-05 21:25:51 -05001242 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04001243 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1244 if (ret < 0)
1245 break;
1246 if (ret > 0) {
1247 if (path->slots[0] == 0)
1248 break;
1249 path->slots[0]--;
1250 }
1251 btrfs_item_key_to_cpu(path->nodes[0], &key,
1252 path->slots[0]);
Li Zefan33345d012011-04-20 10:31:50 +08001253 if (key.objectid != ino ||
Chris Masone02119d2008-09-05 16:13:11 -04001254 key.type != BTRFS_INODE_REF_KEY)
1255 break;
1256 ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]);
1257 ptr_end = ptr + btrfs_item_size_nr(path->nodes[0],
1258 path->slots[0]);
Chris Masond3977122009-01-05 21:25:51 -05001259 while (ptr < ptr_end) {
Chris Masone02119d2008-09-05 16:13:11 -04001260 struct btrfs_inode_ref *ref;
1261
1262 ref = (struct btrfs_inode_ref *)ptr;
1263 name_len = btrfs_inode_ref_name_len(path->nodes[0],
1264 ref);
1265 ptr = (unsigned long)(ref + 1) + name_len;
1266 nlink++;
1267 }
1268
1269 if (key.offset == 0)
1270 break;
1271 key.offset--;
David Sterbab3b4aa72011-04-21 01:20:15 +02001272 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001273 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001274 btrfs_release_path(path);
Mark Fashehf1863732012-08-08 11:32:27 -07001275
1276 return nlink;
1277}
1278
1279/*
1280 * There are a few corners where the link count of the file can't
1281 * be properly maintained during replay. So, instead of adding
1282 * lots of complexity to the log code, we just scan the backrefs
1283 * for any file that has been through replay.
1284 *
1285 * The scan will update the link count on the inode to reflect the
1286 * number of back refs found. If it goes down to zero, the iput
1287 * will free the inode.
1288 */
1289static noinline int fixup_inode_link_count(struct btrfs_trans_handle *trans,
1290 struct btrfs_root *root,
1291 struct inode *inode)
1292{
1293 struct btrfs_path *path;
1294 int ret;
1295 u64 nlink = 0;
1296 u64 ino = btrfs_ino(inode);
1297
1298 path = btrfs_alloc_path();
1299 if (!path)
1300 return -ENOMEM;
1301
1302 ret = count_inode_refs(root, inode, path);
1303 if (ret < 0)
1304 goto out;
1305
1306 nlink = ret;
1307
1308 ret = count_inode_extrefs(root, inode, path);
1309 if (ret == -ENOENT)
1310 ret = 0;
1311
1312 if (ret < 0)
1313 goto out;
1314
1315 nlink += ret;
1316
1317 ret = 0;
1318
Chris Masone02119d2008-09-05 16:13:11 -04001319 if (nlink != inode->i_nlink) {
Miklos Szeredibfe86842011-10-28 14:13:29 +02001320 set_nlink(inode, nlink);
Chris Masone02119d2008-09-05 16:13:11 -04001321 btrfs_update_inode(trans, root, inode);
1322 }
Chris Mason8d5bf1c2008-09-11 15:51:21 -04001323 BTRFS_I(inode)->index_cnt = (u64)-1;
Chris Masone02119d2008-09-05 16:13:11 -04001324
Yan, Zhengc71bf092009-11-12 09:34:40 +00001325 if (inode->i_nlink == 0) {
1326 if (S_ISDIR(inode->i_mode)) {
1327 ret = replay_dir_deletes(trans, root, NULL, path,
Li Zefan33345d012011-04-20 10:31:50 +08001328 ino, 1);
Yan, Zhengc71bf092009-11-12 09:34:40 +00001329 BUG_ON(ret);
1330 }
Li Zefan33345d012011-04-20 10:31:50 +08001331 ret = insert_orphan_item(trans, root, ino);
Chris Mason12fcfd22009-03-24 10:24:20 -04001332 BUG_ON(ret);
1333 }
Chris Mason12fcfd22009-03-24 10:24:20 -04001334
Mark Fashehf1863732012-08-08 11:32:27 -07001335out:
1336 btrfs_free_path(path);
1337 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001338}
1339
1340static noinline int fixup_inode_link_counts(struct btrfs_trans_handle *trans,
1341 struct btrfs_root *root,
1342 struct btrfs_path *path)
1343{
1344 int ret;
1345 struct btrfs_key key;
1346 struct inode *inode;
1347
1348 key.objectid = BTRFS_TREE_LOG_FIXUP_OBJECTID;
1349 key.type = BTRFS_ORPHAN_ITEM_KEY;
1350 key.offset = (u64)-1;
Chris Masond3977122009-01-05 21:25:51 -05001351 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04001352 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1353 if (ret < 0)
1354 break;
1355
1356 if (ret == 1) {
1357 if (path->slots[0] == 0)
1358 break;
1359 path->slots[0]--;
1360 }
1361
1362 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1363 if (key.objectid != BTRFS_TREE_LOG_FIXUP_OBJECTID ||
1364 key.type != BTRFS_ORPHAN_ITEM_KEY)
1365 break;
1366
1367 ret = btrfs_del_item(trans, root, path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00001368 if (ret)
1369 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001370
David Sterbab3b4aa72011-04-21 01:20:15 +02001371 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001372 inode = read_one_inode(root, key.offset);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001373 if (!inode)
1374 return -EIO;
Chris Masone02119d2008-09-05 16:13:11 -04001375
1376 ret = fixup_inode_link_count(trans, root, inode);
1377 BUG_ON(ret);
1378
1379 iput(inode);
1380
Chris Mason12fcfd22009-03-24 10:24:20 -04001381 /*
1382 * fixup on a directory may create new entries,
1383 * make sure we always look for the highset possible
1384 * offset
1385 */
1386 key.offset = (u64)-1;
Chris Masone02119d2008-09-05 16:13:11 -04001387 }
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00001388 ret = 0;
1389out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001390 btrfs_release_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00001391 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001392}
1393
1394
1395/*
1396 * record a given inode in the fixup dir so we can check its link
1397 * count when replay is done. The link count is incremented here
1398 * so the inode won't go away until we check it
1399 */
1400static noinline int link_to_fixup_dir(struct btrfs_trans_handle *trans,
1401 struct btrfs_root *root,
1402 struct btrfs_path *path,
1403 u64 objectid)
1404{
1405 struct btrfs_key key;
1406 int ret = 0;
1407 struct inode *inode;
1408
1409 inode = read_one_inode(root, objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001410 if (!inode)
1411 return -EIO;
Chris Masone02119d2008-09-05 16:13:11 -04001412
1413 key.objectid = BTRFS_TREE_LOG_FIXUP_OBJECTID;
1414 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
1415 key.offset = objectid;
1416
1417 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
1418
David Sterbab3b4aa72011-04-21 01:20:15 +02001419 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001420 if (ret == 0) {
Josef Bacik9bf7a482013-03-01 13:35:47 -05001421 if (!inode->i_nlink)
1422 set_nlink(inode, 1);
1423 else
1424 btrfs_inc_nlink(inode);
Tsutomu Itohb9959292012-06-25 21:25:22 -06001425 ret = btrfs_update_inode(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -04001426 } else if (ret == -EEXIST) {
1427 ret = 0;
1428 } else {
1429 BUG();
1430 }
1431 iput(inode);
1432
1433 return ret;
1434}
1435
1436/*
1437 * when replaying the log for a directory, we only insert names
1438 * for inodes that actually exist. This means an fsync on a directory
1439 * does not implicitly fsync all the new files in it
1440 */
1441static noinline int insert_one_name(struct btrfs_trans_handle *trans,
1442 struct btrfs_root *root,
1443 struct btrfs_path *path,
1444 u64 dirid, u64 index,
1445 char *name, int name_len, u8 type,
1446 struct btrfs_key *location)
1447{
1448 struct inode *inode;
1449 struct inode *dir;
1450 int ret;
1451
1452 inode = read_one_inode(root, location->objectid);
1453 if (!inode)
1454 return -ENOENT;
1455
1456 dir = read_one_inode(root, dirid);
1457 if (!dir) {
1458 iput(inode);
1459 return -EIO;
1460 }
1461 ret = btrfs_add_link(trans, dir, inode, name, name_len, 1, index);
1462
1463 /* FIXME, put inode into FIXUP list */
1464
1465 iput(inode);
1466 iput(dir);
1467 return ret;
1468}
1469
1470/*
1471 * take a single entry in a log directory item and replay it into
1472 * the subvolume.
1473 *
1474 * if a conflicting item exists in the subdirectory already,
1475 * the inode it points to is unlinked and put into the link count
1476 * fix up tree.
1477 *
1478 * If a name from the log points to a file or directory that does
1479 * not exist in the FS, it is skipped. fsyncs on directories
1480 * do not force down inodes inside that directory, just changes to the
1481 * names or unlinks in a directory.
1482 */
1483static noinline int replay_one_name(struct btrfs_trans_handle *trans,
1484 struct btrfs_root *root,
1485 struct btrfs_path *path,
1486 struct extent_buffer *eb,
1487 struct btrfs_dir_item *di,
1488 struct btrfs_key *key)
1489{
1490 char *name;
1491 int name_len;
1492 struct btrfs_dir_item *dst_di;
1493 struct btrfs_key found_key;
1494 struct btrfs_key log_key;
1495 struct inode *dir;
Chris Masone02119d2008-09-05 16:13:11 -04001496 u8 log_type;
Chris Mason4bef0842008-09-08 11:18:08 -04001497 int exists;
Chris Masone02119d2008-09-05 16:13:11 -04001498 int ret;
1499
1500 dir = read_one_inode(root, key->objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001501 if (!dir)
1502 return -EIO;
Chris Masone02119d2008-09-05 16:13:11 -04001503
1504 name_len = btrfs_dir_name_len(eb, di);
1505 name = kmalloc(name_len, GFP_NOFS);
liubo2a29edc2011-01-26 06:22:08 +00001506 if (!name)
1507 return -ENOMEM;
1508
Chris Masone02119d2008-09-05 16:13:11 -04001509 log_type = btrfs_dir_type(eb, di);
1510 read_extent_buffer(eb, name, (unsigned long)(di + 1),
1511 name_len);
1512
1513 btrfs_dir_item_key_to_cpu(eb, di, &log_key);
Chris Mason4bef0842008-09-08 11:18:08 -04001514 exists = btrfs_lookup_inode(trans, root, path, &log_key, 0);
1515 if (exists == 0)
1516 exists = 1;
1517 else
1518 exists = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02001519 btrfs_release_path(path);
Chris Mason4bef0842008-09-08 11:18:08 -04001520
Chris Masone02119d2008-09-05 16:13:11 -04001521 if (key->type == BTRFS_DIR_ITEM_KEY) {
1522 dst_di = btrfs_lookup_dir_item(trans, root, path, key->objectid,
1523 name, name_len, 1);
Chris Masond3977122009-01-05 21:25:51 -05001524 } else if (key->type == BTRFS_DIR_INDEX_KEY) {
Chris Masone02119d2008-09-05 16:13:11 -04001525 dst_di = btrfs_lookup_dir_index_item(trans, root, path,
1526 key->objectid,
1527 key->offset, name,
1528 name_len, 1);
1529 } else {
1530 BUG();
1531 }
David Sterbac7040052011-04-19 18:00:01 +02001532 if (IS_ERR_OR_NULL(dst_di)) {
Chris Masone02119d2008-09-05 16:13:11 -04001533 /* we need a sequence number to insert, so we only
1534 * do inserts for the BTRFS_DIR_INDEX_KEY types
1535 */
1536 if (key->type != BTRFS_DIR_INDEX_KEY)
1537 goto out;
1538 goto insert;
1539 }
1540
1541 btrfs_dir_item_key_to_cpu(path->nodes[0], dst_di, &found_key);
1542 /* the existing item matches the logged item */
1543 if (found_key.objectid == log_key.objectid &&
1544 found_key.type == log_key.type &&
1545 found_key.offset == log_key.offset &&
1546 btrfs_dir_type(path->nodes[0], dst_di) == log_type) {
1547 goto out;
1548 }
1549
1550 /*
1551 * don't drop the conflicting directory entry if the inode
1552 * for the new entry doesn't exist
1553 */
Chris Mason4bef0842008-09-08 11:18:08 -04001554 if (!exists)
Chris Masone02119d2008-09-05 16:13:11 -04001555 goto out;
1556
Chris Masone02119d2008-09-05 16:13:11 -04001557 ret = drop_one_dir_item(trans, root, path, dir, dst_di);
1558 BUG_ON(ret);
1559
1560 if (key->type == BTRFS_DIR_INDEX_KEY)
1561 goto insert;
1562out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001563 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001564 kfree(name);
1565 iput(dir);
1566 return 0;
1567
1568insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02001569 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001570 ret = insert_one_name(trans, root, path, key->objectid, key->offset,
1571 name, name_len, log_type, &log_key);
1572
Stoyan Gaydarovc2934982009-04-02 17:05:11 -04001573 BUG_ON(ret && ret != -ENOENT);
Chris Masone02119d2008-09-05 16:13:11 -04001574 goto out;
1575}
1576
1577/*
1578 * find all the names in a directory item and reconcile them into
1579 * the subvolume. Only BTRFS_DIR_ITEM_KEY types will have more than
1580 * one name in a directory item, but the same code gets used for
1581 * both directory index types
1582 */
1583static noinline int replay_one_dir_item(struct btrfs_trans_handle *trans,
1584 struct btrfs_root *root,
1585 struct btrfs_path *path,
1586 struct extent_buffer *eb, int slot,
1587 struct btrfs_key *key)
1588{
1589 int ret;
1590 u32 item_size = btrfs_item_size_nr(eb, slot);
1591 struct btrfs_dir_item *di;
1592 int name_len;
1593 unsigned long ptr;
1594 unsigned long ptr_end;
1595
1596 ptr = btrfs_item_ptr_offset(eb, slot);
1597 ptr_end = ptr + item_size;
Chris Masond3977122009-01-05 21:25:51 -05001598 while (ptr < ptr_end) {
Chris Masone02119d2008-09-05 16:13:11 -04001599 di = (struct btrfs_dir_item *)ptr;
Josef Bacik22a94d42011-03-16 16:47:17 -04001600 if (verify_dir_item(root, eb, di))
1601 return -EIO;
Chris Masone02119d2008-09-05 16:13:11 -04001602 name_len = btrfs_dir_name_len(eb, di);
1603 ret = replay_one_name(trans, root, path, eb, di, key);
1604 BUG_ON(ret);
1605 ptr = (unsigned long)(di + 1);
1606 ptr += name_len;
1607 }
1608 return 0;
1609}
1610
1611/*
1612 * directory replay has two parts. There are the standard directory
1613 * items in the log copied from the subvolume, and range items
1614 * created in the log while the subvolume was logged.
1615 *
1616 * The range items tell us which parts of the key space the log
1617 * is authoritative for. During replay, if a key in the subvolume
1618 * directory is in a logged range item, but not actually in the log
1619 * that means it was deleted from the directory before the fsync
1620 * and should be removed.
1621 */
1622static noinline int find_dir_range(struct btrfs_root *root,
1623 struct btrfs_path *path,
1624 u64 dirid, int key_type,
1625 u64 *start_ret, u64 *end_ret)
1626{
1627 struct btrfs_key key;
1628 u64 found_end;
1629 struct btrfs_dir_log_item *item;
1630 int ret;
1631 int nritems;
1632
1633 if (*start_ret == (u64)-1)
1634 return 1;
1635
1636 key.objectid = dirid;
1637 key.type = key_type;
1638 key.offset = *start_ret;
1639
1640 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1641 if (ret < 0)
1642 goto out;
1643 if (ret > 0) {
1644 if (path->slots[0] == 0)
1645 goto out;
1646 path->slots[0]--;
1647 }
1648 if (ret != 0)
1649 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1650
1651 if (key.type != key_type || key.objectid != dirid) {
1652 ret = 1;
1653 goto next;
1654 }
1655 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1656 struct btrfs_dir_log_item);
1657 found_end = btrfs_dir_log_end(path->nodes[0], item);
1658
1659 if (*start_ret >= key.offset && *start_ret <= found_end) {
1660 ret = 0;
1661 *start_ret = key.offset;
1662 *end_ret = found_end;
1663 goto out;
1664 }
1665 ret = 1;
1666next:
1667 /* check the next slot in the tree to see if it is a valid item */
1668 nritems = btrfs_header_nritems(path->nodes[0]);
1669 if (path->slots[0] >= nritems) {
1670 ret = btrfs_next_leaf(root, path);
1671 if (ret)
1672 goto out;
1673 } else {
1674 path->slots[0]++;
1675 }
1676
1677 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1678
1679 if (key.type != key_type || key.objectid != dirid) {
1680 ret = 1;
1681 goto out;
1682 }
1683 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1684 struct btrfs_dir_log_item);
1685 found_end = btrfs_dir_log_end(path->nodes[0], item);
1686 *start_ret = key.offset;
1687 *end_ret = found_end;
1688 ret = 0;
1689out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001690 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001691 return ret;
1692}
1693
1694/*
1695 * this looks for a given directory item in the log. If the directory
1696 * item is not in the log, the item is removed and the inode it points
1697 * to is unlinked
1698 */
1699static noinline int check_item_in_log(struct btrfs_trans_handle *trans,
1700 struct btrfs_root *root,
1701 struct btrfs_root *log,
1702 struct btrfs_path *path,
1703 struct btrfs_path *log_path,
1704 struct inode *dir,
1705 struct btrfs_key *dir_key)
1706{
1707 int ret;
1708 struct extent_buffer *eb;
1709 int slot;
1710 u32 item_size;
1711 struct btrfs_dir_item *di;
1712 struct btrfs_dir_item *log_di;
1713 int name_len;
1714 unsigned long ptr;
1715 unsigned long ptr_end;
1716 char *name;
1717 struct inode *inode;
1718 struct btrfs_key location;
1719
1720again:
1721 eb = path->nodes[0];
1722 slot = path->slots[0];
1723 item_size = btrfs_item_size_nr(eb, slot);
1724 ptr = btrfs_item_ptr_offset(eb, slot);
1725 ptr_end = ptr + item_size;
Chris Masond3977122009-01-05 21:25:51 -05001726 while (ptr < ptr_end) {
Chris Masone02119d2008-09-05 16:13:11 -04001727 di = (struct btrfs_dir_item *)ptr;
Josef Bacik22a94d42011-03-16 16:47:17 -04001728 if (verify_dir_item(root, eb, di)) {
1729 ret = -EIO;
1730 goto out;
1731 }
1732
Chris Masone02119d2008-09-05 16:13:11 -04001733 name_len = btrfs_dir_name_len(eb, di);
1734 name = kmalloc(name_len, GFP_NOFS);
1735 if (!name) {
1736 ret = -ENOMEM;
1737 goto out;
1738 }
1739 read_extent_buffer(eb, name, (unsigned long)(di + 1),
1740 name_len);
1741 log_di = NULL;
Chris Mason12fcfd22009-03-24 10:24:20 -04001742 if (log && dir_key->type == BTRFS_DIR_ITEM_KEY) {
Chris Masone02119d2008-09-05 16:13:11 -04001743 log_di = btrfs_lookup_dir_item(trans, log, log_path,
1744 dir_key->objectid,
1745 name, name_len, 0);
Chris Mason12fcfd22009-03-24 10:24:20 -04001746 } else if (log && dir_key->type == BTRFS_DIR_INDEX_KEY) {
Chris Masone02119d2008-09-05 16:13:11 -04001747 log_di = btrfs_lookup_dir_index_item(trans, log,
1748 log_path,
1749 dir_key->objectid,
1750 dir_key->offset,
1751 name, name_len, 0);
1752 }
David Sterbac7040052011-04-19 18:00:01 +02001753 if (IS_ERR_OR_NULL(log_di)) {
Chris Masone02119d2008-09-05 16:13:11 -04001754 btrfs_dir_item_key_to_cpu(eb, di, &location);
David Sterbab3b4aa72011-04-21 01:20:15 +02001755 btrfs_release_path(path);
1756 btrfs_release_path(log_path);
Chris Masone02119d2008-09-05 16:13:11 -04001757 inode = read_one_inode(root, location.objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001758 if (!inode) {
1759 kfree(name);
1760 return -EIO;
1761 }
Chris Masone02119d2008-09-05 16:13:11 -04001762
1763 ret = link_to_fixup_dir(trans, root,
1764 path, location.objectid);
1765 BUG_ON(ret);
1766 btrfs_inc_nlink(inode);
1767 ret = btrfs_unlink_inode(trans, root, dir, inode,
1768 name, name_len);
1769 BUG_ON(ret);
Chris Masonb6305562012-07-02 15:29:53 -04001770
1771 btrfs_run_delayed_items(trans, root);
1772
Chris Masone02119d2008-09-05 16:13:11 -04001773 kfree(name);
1774 iput(inode);
1775
1776 /* there might still be more names under this key
1777 * check and repeat if required
1778 */
1779 ret = btrfs_search_slot(NULL, root, dir_key, path,
1780 0, 0);
1781 if (ret == 0)
1782 goto again;
1783 ret = 0;
1784 goto out;
1785 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001786 btrfs_release_path(log_path);
Chris Masone02119d2008-09-05 16:13:11 -04001787 kfree(name);
1788
1789 ptr = (unsigned long)(di + 1);
1790 ptr += name_len;
1791 }
1792 ret = 0;
1793out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001794 btrfs_release_path(path);
1795 btrfs_release_path(log_path);
Chris Masone02119d2008-09-05 16:13:11 -04001796 return ret;
1797}
1798
1799/*
1800 * deletion replay happens before we copy any new directory items
1801 * out of the log or out of backreferences from inodes. It
1802 * scans the log to find ranges of keys that log is authoritative for,
1803 * and then scans the directory to find items in those ranges that are
1804 * not present in the log.
1805 *
1806 * Anything we don't find in the log is unlinked and removed from the
1807 * directory.
1808 */
1809static noinline int replay_dir_deletes(struct btrfs_trans_handle *trans,
1810 struct btrfs_root *root,
1811 struct btrfs_root *log,
1812 struct btrfs_path *path,
Chris Mason12fcfd22009-03-24 10:24:20 -04001813 u64 dirid, int del_all)
Chris Masone02119d2008-09-05 16:13:11 -04001814{
1815 u64 range_start;
1816 u64 range_end;
1817 int key_type = BTRFS_DIR_LOG_ITEM_KEY;
1818 int ret = 0;
1819 struct btrfs_key dir_key;
1820 struct btrfs_key found_key;
1821 struct btrfs_path *log_path;
1822 struct inode *dir;
1823
1824 dir_key.objectid = dirid;
1825 dir_key.type = BTRFS_DIR_ITEM_KEY;
1826 log_path = btrfs_alloc_path();
1827 if (!log_path)
1828 return -ENOMEM;
1829
1830 dir = read_one_inode(root, dirid);
1831 /* it isn't an error if the inode isn't there, that can happen
1832 * because we replay the deletes before we copy in the inode item
1833 * from the log
1834 */
1835 if (!dir) {
1836 btrfs_free_path(log_path);
1837 return 0;
1838 }
1839again:
1840 range_start = 0;
1841 range_end = 0;
Chris Masond3977122009-01-05 21:25:51 -05001842 while (1) {
Chris Mason12fcfd22009-03-24 10:24:20 -04001843 if (del_all)
1844 range_end = (u64)-1;
1845 else {
1846 ret = find_dir_range(log, path, dirid, key_type,
1847 &range_start, &range_end);
1848 if (ret != 0)
1849 break;
1850 }
Chris Masone02119d2008-09-05 16:13:11 -04001851
1852 dir_key.offset = range_start;
Chris Masond3977122009-01-05 21:25:51 -05001853 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04001854 int nritems;
1855 ret = btrfs_search_slot(NULL, root, &dir_key, path,
1856 0, 0);
1857 if (ret < 0)
1858 goto out;
1859
1860 nritems = btrfs_header_nritems(path->nodes[0]);
1861 if (path->slots[0] >= nritems) {
1862 ret = btrfs_next_leaf(root, path);
1863 if (ret)
1864 break;
1865 }
1866 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1867 path->slots[0]);
1868 if (found_key.objectid != dirid ||
1869 found_key.type != dir_key.type)
1870 goto next_type;
1871
1872 if (found_key.offset > range_end)
1873 break;
1874
1875 ret = check_item_in_log(trans, root, log, path,
Chris Mason12fcfd22009-03-24 10:24:20 -04001876 log_path, dir,
1877 &found_key);
Chris Masone02119d2008-09-05 16:13:11 -04001878 BUG_ON(ret);
1879 if (found_key.offset == (u64)-1)
1880 break;
1881 dir_key.offset = found_key.offset + 1;
1882 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001883 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001884 if (range_end == (u64)-1)
1885 break;
1886 range_start = range_end + 1;
1887 }
1888
1889next_type:
1890 ret = 0;
1891 if (key_type == BTRFS_DIR_LOG_ITEM_KEY) {
1892 key_type = BTRFS_DIR_LOG_INDEX_KEY;
1893 dir_key.type = BTRFS_DIR_INDEX_KEY;
David Sterbab3b4aa72011-04-21 01:20:15 +02001894 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001895 goto again;
1896 }
1897out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001898 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001899 btrfs_free_path(log_path);
1900 iput(dir);
1901 return ret;
1902}
1903
1904/*
1905 * the process_func used to replay items from the log tree. This
1906 * gets called in two different stages. The first stage just looks
1907 * for inodes and makes sure they are all copied into the subvolume.
1908 *
1909 * The second stage copies all the other item types from the log into
1910 * the subvolume. The two stage approach is slower, but gets rid of
1911 * lots of complexity around inodes referencing other inodes that exist
1912 * only in the log (references come from either directory items or inode
1913 * back refs).
1914 */
1915static int replay_one_buffer(struct btrfs_root *log, struct extent_buffer *eb,
1916 struct walk_control *wc, u64 gen)
1917{
1918 int nritems;
1919 struct btrfs_path *path;
1920 struct btrfs_root *root = wc->replay_dest;
1921 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04001922 int level;
1923 int i;
1924 int ret;
1925
Tsutomu Itoh018642a2012-05-29 18:10:13 +09001926 ret = btrfs_read_buffer(eb, gen);
1927 if (ret)
1928 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001929
1930 level = btrfs_header_level(eb);
1931
1932 if (level != 0)
1933 return 0;
1934
1935 path = btrfs_alloc_path();
Mark Fasheh1e5063d2011-07-12 10:46:06 -07001936 if (!path)
1937 return -ENOMEM;
Chris Masone02119d2008-09-05 16:13:11 -04001938
1939 nritems = btrfs_header_nritems(eb);
1940 for (i = 0; i < nritems; i++) {
1941 btrfs_item_key_to_cpu(eb, &key, i);
Chris Masone02119d2008-09-05 16:13:11 -04001942
1943 /* inode keys are done during the first stage */
1944 if (key.type == BTRFS_INODE_ITEM_KEY &&
1945 wc->stage == LOG_WALK_REPLAY_INODES) {
Chris Masone02119d2008-09-05 16:13:11 -04001946 struct btrfs_inode_item *inode_item;
1947 u32 mode;
1948
1949 inode_item = btrfs_item_ptr(eb, i,
1950 struct btrfs_inode_item);
1951 mode = btrfs_inode_mode(eb, inode_item);
1952 if (S_ISDIR(mode)) {
1953 ret = replay_dir_deletes(wc->trans,
Chris Mason12fcfd22009-03-24 10:24:20 -04001954 root, log, path, key.objectid, 0);
Chris Masone02119d2008-09-05 16:13:11 -04001955 BUG_ON(ret);
1956 }
1957 ret = overwrite_item(wc->trans, root, path,
1958 eb, i, &key);
1959 BUG_ON(ret);
1960
Yan, Zhengc71bf092009-11-12 09:34:40 +00001961 /* for regular files, make sure corresponding
1962 * orhpan item exist. extents past the new EOF
1963 * will be truncated later by orphan cleanup.
Chris Masone02119d2008-09-05 16:13:11 -04001964 */
1965 if (S_ISREG(mode)) {
Yan, Zhengc71bf092009-11-12 09:34:40 +00001966 ret = insert_orphan_item(wc->trans, root,
1967 key.objectid);
Chris Masone02119d2008-09-05 16:13:11 -04001968 BUG_ON(ret);
Chris Masone02119d2008-09-05 16:13:11 -04001969 }
Yan, Zhengc71bf092009-11-12 09:34:40 +00001970
Chris Masone02119d2008-09-05 16:13:11 -04001971 ret = link_to_fixup_dir(wc->trans, root,
1972 path, key.objectid);
1973 BUG_ON(ret);
1974 }
1975 if (wc->stage < LOG_WALK_REPLAY_ALL)
1976 continue;
1977
1978 /* these keys are simply copied */
1979 if (key.type == BTRFS_XATTR_ITEM_KEY) {
1980 ret = overwrite_item(wc->trans, root, path,
1981 eb, i, &key);
1982 BUG_ON(ret);
1983 } else if (key.type == BTRFS_INODE_REF_KEY) {
1984 ret = add_inode_ref(wc->trans, root, log, path,
1985 eb, i, &key);
1986 BUG_ON(ret && ret != -ENOENT);
Mark Fashehf1863732012-08-08 11:32:27 -07001987 } else if (key.type == BTRFS_INODE_EXTREF_KEY) {
1988 ret = add_inode_ref(wc->trans, root, log, path,
1989 eb, i, &key);
1990 BUG_ON(ret && ret != -ENOENT);
Chris Masone02119d2008-09-05 16:13:11 -04001991 } else if (key.type == BTRFS_EXTENT_DATA_KEY) {
1992 ret = replay_one_extent(wc->trans, root, path,
1993 eb, i, &key);
1994 BUG_ON(ret);
Chris Masone02119d2008-09-05 16:13:11 -04001995 } else if (key.type == BTRFS_DIR_ITEM_KEY ||
1996 key.type == BTRFS_DIR_INDEX_KEY) {
1997 ret = replay_one_dir_item(wc->trans, root, path,
1998 eb, i, &key);
1999 BUG_ON(ret);
2000 }
2001 }
2002 btrfs_free_path(path);
2003 return 0;
2004}
2005
Chris Masond3977122009-01-05 21:25:51 -05002006static noinline int walk_down_log_tree(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -04002007 struct btrfs_root *root,
2008 struct btrfs_path *path, int *level,
2009 struct walk_control *wc)
2010{
2011 u64 root_owner;
Chris Masone02119d2008-09-05 16:13:11 -04002012 u64 bytenr;
2013 u64 ptr_gen;
2014 struct extent_buffer *next;
2015 struct extent_buffer *cur;
2016 struct extent_buffer *parent;
2017 u32 blocksize;
2018 int ret = 0;
2019
2020 WARN_ON(*level < 0);
2021 WARN_ON(*level >= BTRFS_MAX_LEVEL);
2022
Chris Masond3977122009-01-05 21:25:51 -05002023 while (*level > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002024 WARN_ON(*level < 0);
2025 WARN_ON(*level >= BTRFS_MAX_LEVEL);
2026 cur = path->nodes[*level];
2027
2028 if (btrfs_header_level(cur) != *level)
2029 WARN_ON(1);
2030
2031 if (path->slots[*level] >=
2032 btrfs_header_nritems(cur))
2033 break;
2034
2035 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
2036 ptr_gen = btrfs_node_ptr_generation(cur, path->slots[*level]);
2037 blocksize = btrfs_level_size(root, *level - 1);
2038
2039 parent = path->nodes[*level];
2040 root_owner = btrfs_header_owner(parent);
Chris Masone02119d2008-09-05 16:13:11 -04002041
2042 next = btrfs_find_create_tree_block(root, bytenr, blocksize);
liubo2a29edc2011-01-26 06:22:08 +00002043 if (!next)
2044 return -ENOMEM;
Chris Masone02119d2008-09-05 16:13:11 -04002045
Chris Masone02119d2008-09-05 16:13:11 -04002046 if (*level == 1) {
Mark Fasheh1e5063d2011-07-12 10:46:06 -07002047 ret = wc->process_func(root, next, wc, ptr_gen);
2048 if (ret)
2049 return ret;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002050
Chris Masone02119d2008-09-05 16:13:11 -04002051 path->slots[*level]++;
2052 if (wc->free) {
Tsutomu Itoh018642a2012-05-29 18:10:13 +09002053 ret = btrfs_read_buffer(next, ptr_gen);
2054 if (ret) {
2055 free_extent_buffer(next);
2056 return ret;
2057 }
Chris Masone02119d2008-09-05 16:13:11 -04002058
2059 btrfs_tree_lock(next);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002060 btrfs_set_lock_blocking(next);
Chris Masonbd681512011-07-16 15:23:14 -04002061 clean_tree_block(trans, root, next);
Chris Masone02119d2008-09-05 16:13:11 -04002062 btrfs_wait_tree_block_writeback(next);
2063 btrfs_tree_unlock(next);
2064
Chris Masone02119d2008-09-05 16:13:11 -04002065 WARN_ON(root_owner !=
2066 BTRFS_TREE_LOG_OBJECTID);
Chris Masone688b7252011-10-31 20:52:39 -04002067 ret = btrfs_free_and_pin_reserved_extent(root,
Chris Masond00aff02008-09-11 15:54:42 -04002068 bytenr, blocksize);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002069 BUG_ON(ret); /* -ENOMEM or logic errors */
Chris Masone02119d2008-09-05 16:13:11 -04002070 }
2071 free_extent_buffer(next);
2072 continue;
2073 }
Tsutomu Itoh018642a2012-05-29 18:10:13 +09002074 ret = btrfs_read_buffer(next, ptr_gen);
2075 if (ret) {
2076 free_extent_buffer(next);
2077 return ret;
2078 }
Chris Masone02119d2008-09-05 16:13:11 -04002079
2080 WARN_ON(*level <= 0);
2081 if (path->nodes[*level-1])
2082 free_extent_buffer(path->nodes[*level-1]);
2083 path->nodes[*level-1] = next;
2084 *level = btrfs_header_level(next);
2085 path->slots[*level] = 0;
2086 cond_resched();
2087 }
2088 WARN_ON(*level < 0);
2089 WARN_ON(*level >= BTRFS_MAX_LEVEL);
2090
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002091 path->slots[*level] = btrfs_header_nritems(path->nodes[*level]);
Chris Masone02119d2008-09-05 16:13:11 -04002092
2093 cond_resched();
2094 return 0;
2095}
2096
Chris Masond3977122009-01-05 21:25:51 -05002097static noinline int walk_up_log_tree(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -04002098 struct btrfs_root *root,
2099 struct btrfs_path *path, int *level,
2100 struct walk_control *wc)
2101{
2102 u64 root_owner;
Chris Masone02119d2008-09-05 16:13:11 -04002103 int i;
2104 int slot;
2105 int ret;
2106
Chris Masond3977122009-01-05 21:25:51 -05002107 for (i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
Chris Masone02119d2008-09-05 16:13:11 -04002108 slot = path->slots[i];
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002109 if (slot + 1 < btrfs_header_nritems(path->nodes[i])) {
Chris Masone02119d2008-09-05 16:13:11 -04002110 path->slots[i]++;
2111 *level = i;
2112 WARN_ON(*level == 0);
2113 return 0;
2114 } else {
Zheng Yan31840ae2008-09-23 13:14:14 -04002115 struct extent_buffer *parent;
2116 if (path->nodes[*level] == root->node)
2117 parent = path->nodes[*level];
2118 else
2119 parent = path->nodes[*level + 1];
2120
2121 root_owner = btrfs_header_owner(parent);
Mark Fasheh1e5063d2011-07-12 10:46:06 -07002122 ret = wc->process_func(root, path->nodes[*level], wc,
Chris Masone02119d2008-09-05 16:13:11 -04002123 btrfs_header_generation(path->nodes[*level]));
Mark Fasheh1e5063d2011-07-12 10:46:06 -07002124 if (ret)
2125 return ret;
2126
Chris Masone02119d2008-09-05 16:13:11 -04002127 if (wc->free) {
2128 struct extent_buffer *next;
2129
2130 next = path->nodes[*level];
2131
2132 btrfs_tree_lock(next);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002133 btrfs_set_lock_blocking(next);
Chris Masonbd681512011-07-16 15:23:14 -04002134 clean_tree_block(trans, root, next);
Chris Masone02119d2008-09-05 16:13:11 -04002135 btrfs_wait_tree_block_writeback(next);
2136 btrfs_tree_unlock(next);
2137
Chris Masone02119d2008-09-05 16:13:11 -04002138 WARN_ON(root_owner != BTRFS_TREE_LOG_OBJECTID);
Chris Masone688b7252011-10-31 20:52:39 -04002139 ret = btrfs_free_and_pin_reserved_extent(root,
Chris Masone02119d2008-09-05 16:13:11 -04002140 path->nodes[*level]->start,
Chris Masond00aff02008-09-11 15:54:42 -04002141 path->nodes[*level]->len);
Chris Masone02119d2008-09-05 16:13:11 -04002142 BUG_ON(ret);
2143 }
2144 free_extent_buffer(path->nodes[*level]);
2145 path->nodes[*level] = NULL;
2146 *level = i + 1;
2147 }
2148 }
2149 return 1;
2150}
2151
2152/*
2153 * drop the reference count on the tree rooted at 'snap'. This traverses
2154 * the tree freeing any blocks that have a ref count of zero after being
2155 * decremented.
2156 */
2157static int walk_log_tree(struct btrfs_trans_handle *trans,
2158 struct btrfs_root *log, struct walk_control *wc)
2159{
2160 int ret = 0;
2161 int wret;
2162 int level;
2163 struct btrfs_path *path;
2164 int i;
2165 int orig_level;
2166
2167 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00002168 if (!path)
2169 return -ENOMEM;
Chris Masone02119d2008-09-05 16:13:11 -04002170
2171 level = btrfs_header_level(log->node);
2172 orig_level = level;
2173 path->nodes[level] = log->node;
2174 extent_buffer_get(log->node);
2175 path->slots[level] = 0;
2176
Chris Masond3977122009-01-05 21:25:51 -05002177 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04002178 wret = walk_down_log_tree(trans, log, path, &level, wc);
2179 if (wret > 0)
2180 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002181 if (wret < 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002182 ret = wret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002183 goto out;
2184 }
Chris Masone02119d2008-09-05 16:13:11 -04002185
2186 wret = walk_up_log_tree(trans, log, path, &level, wc);
2187 if (wret > 0)
2188 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002189 if (wret < 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002190 ret = wret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002191 goto out;
2192 }
Chris Masone02119d2008-09-05 16:13:11 -04002193 }
2194
2195 /* was the root node processed? if not, catch it here */
2196 if (path->nodes[orig_level]) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002197 ret = wc->process_func(log, path->nodes[orig_level], wc,
Chris Masone02119d2008-09-05 16:13:11 -04002198 btrfs_header_generation(path->nodes[orig_level]));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002199 if (ret)
2200 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04002201 if (wc->free) {
2202 struct extent_buffer *next;
2203
2204 next = path->nodes[orig_level];
2205
2206 btrfs_tree_lock(next);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002207 btrfs_set_lock_blocking(next);
Chris Masonbd681512011-07-16 15:23:14 -04002208 clean_tree_block(trans, log, next);
Chris Masone02119d2008-09-05 16:13:11 -04002209 btrfs_wait_tree_block_writeback(next);
2210 btrfs_tree_unlock(next);
2211
Chris Masone02119d2008-09-05 16:13:11 -04002212 WARN_ON(log->root_key.objectid !=
2213 BTRFS_TREE_LOG_OBJECTID);
Chris Masone688b7252011-10-31 20:52:39 -04002214 ret = btrfs_free_and_pin_reserved_extent(log, next->start,
Chris Masond00aff02008-09-11 15:54:42 -04002215 next->len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002216 BUG_ON(ret); /* -ENOMEM or logic errors */
Chris Masone02119d2008-09-05 16:13:11 -04002217 }
2218 }
2219
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002220out:
Chris Masone02119d2008-09-05 16:13:11 -04002221 for (i = 0; i <= orig_level; i++) {
2222 if (path->nodes[i]) {
2223 free_extent_buffer(path->nodes[i]);
2224 path->nodes[i] = NULL;
2225 }
2226 }
2227 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002228 return ret;
2229}
2230
Yan Zheng7237f182009-01-21 12:54:03 -05002231/*
2232 * helper function to update the item for a given subvolumes log root
2233 * in the tree of log roots
2234 */
2235static int update_log_root(struct btrfs_trans_handle *trans,
2236 struct btrfs_root *log)
2237{
2238 int ret;
2239
2240 if (log->log_transid == 1) {
2241 /* insert root item on the first sync */
2242 ret = btrfs_insert_root(trans, log->fs_info->log_root_tree,
2243 &log->root_key, &log->root_item);
2244 } else {
2245 ret = btrfs_update_root(trans, log->fs_info->log_root_tree,
2246 &log->root_key, &log->root_item);
2247 }
2248 return ret;
2249}
2250
Chris Mason12fcfd22009-03-24 10:24:20 -04002251static int wait_log_commit(struct btrfs_trans_handle *trans,
2252 struct btrfs_root *root, unsigned long transid)
Chris Masone02119d2008-09-05 16:13:11 -04002253{
2254 DEFINE_WAIT(wait);
Yan Zheng7237f182009-01-21 12:54:03 -05002255 int index = transid % 2;
Chris Masone02119d2008-09-05 16:13:11 -04002256
Yan Zheng7237f182009-01-21 12:54:03 -05002257 /*
2258 * we only allow two pending log transactions at a time,
2259 * so we know that if ours is more than 2 older than the
2260 * current transaction, we're done
2261 */
Chris Masone02119d2008-09-05 16:13:11 -04002262 do {
Yan Zheng7237f182009-01-21 12:54:03 -05002263 prepare_to_wait(&root->log_commit_wait[index],
2264 &wait, TASK_UNINTERRUPTIBLE);
2265 mutex_unlock(&root->log_mutex);
Chris Mason12fcfd22009-03-24 10:24:20 -04002266
2267 if (root->fs_info->last_trans_log_full_commit !=
2268 trans->transid && root->log_transid < transid + 2 &&
Yan Zheng7237f182009-01-21 12:54:03 -05002269 atomic_read(&root->log_commit[index]))
Chris Masone02119d2008-09-05 16:13:11 -04002270 schedule();
Chris Mason12fcfd22009-03-24 10:24:20 -04002271
Yan Zheng7237f182009-01-21 12:54:03 -05002272 finish_wait(&root->log_commit_wait[index], &wait);
2273 mutex_lock(&root->log_mutex);
Jan Kara6dd70ce2012-01-26 15:01:11 -05002274 } while (root->fs_info->last_trans_log_full_commit !=
2275 trans->transid && root->log_transid < transid + 2 &&
Yan Zheng7237f182009-01-21 12:54:03 -05002276 atomic_read(&root->log_commit[index]));
2277 return 0;
2278}
2279
Jeff Mahoney143bede2012-03-01 14:56:26 +01002280static void wait_for_writer(struct btrfs_trans_handle *trans,
2281 struct btrfs_root *root)
Yan Zheng7237f182009-01-21 12:54:03 -05002282{
2283 DEFINE_WAIT(wait);
Jan Kara6dd70ce2012-01-26 15:01:11 -05002284 while (root->fs_info->last_trans_log_full_commit !=
2285 trans->transid && atomic_read(&root->log_writers)) {
Yan Zheng7237f182009-01-21 12:54:03 -05002286 prepare_to_wait(&root->log_writer_wait,
2287 &wait, TASK_UNINTERRUPTIBLE);
2288 mutex_unlock(&root->log_mutex);
Chris Mason12fcfd22009-03-24 10:24:20 -04002289 if (root->fs_info->last_trans_log_full_commit !=
2290 trans->transid && atomic_read(&root->log_writers))
Yan Zheng7237f182009-01-21 12:54:03 -05002291 schedule();
2292 mutex_lock(&root->log_mutex);
2293 finish_wait(&root->log_writer_wait, &wait);
2294 }
Chris Masone02119d2008-09-05 16:13:11 -04002295}
2296
2297/*
2298 * btrfs_sync_log does sends a given tree log down to the disk and
2299 * updates the super blocks to record it. When this call is done,
Chris Mason12fcfd22009-03-24 10:24:20 -04002300 * you know that any inodes previously logged are safely on disk only
2301 * if it returns 0.
2302 *
2303 * Any other return value means you need to call btrfs_commit_transaction.
2304 * Some of the edge cases for fsyncing directories that have had unlinks
2305 * or renames done in the past mean that sometimes the only safe
2306 * fsync is to commit the whole FS. When btrfs_sync_log returns -EAGAIN,
2307 * that has happened.
Chris Masone02119d2008-09-05 16:13:11 -04002308 */
2309int btrfs_sync_log(struct btrfs_trans_handle *trans,
2310 struct btrfs_root *root)
2311{
Yan Zheng7237f182009-01-21 12:54:03 -05002312 int index1;
2313 int index2;
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002314 int mark;
Chris Masone02119d2008-09-05 16:13:11 -04002315 int ret;
Chris Masone02119d2008-09-05 16:13:11 -04002316 struct btrfs_root *log = root->log_root;
Yan Zheng7237f182009-01-21 12:54:03 -05002317 struct btrfs_root *log_root_tree = root->fs_info->log_root_tree;
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002318 unsigned long log_transid = 0;
Chris Masone02119d2008-09-05 16:13:11 -04002319
Yan Zheng7237f182009-01-21 12:54:03 -05002320 mutex_lock(&root->log_mutex);
Josef Bacik2ab28f32012-10-12 15:27:49 -04002321 log_transid = root->log_transid;
Yan Zheng7237f182009-01-21 12:54:03 -05002322 index1 = root->log_transid % 2;
2323 if (atomic_read(&root->log_commit[index1])) {
Chris Mason12fcfd22009-03-24 10:24:20 -04002324 wait_log_commit(trans, root, root->log_transid);
Yan Zheng7237f182009-01-21 12:54:03 -05002325 mutex_unlock(&root->log_mutex);
2326 return 0;
Chris Masone02119d2008-09-05 16:13:11 -04002327 }
Yan Zheng7237f182009-01-21 12:54:03 -05002328 atomic_set(&root->log_commit[index1], 1);
2329
2330 /* wait for previous tree log sync to complete */
2331 if (atomic_read(&root->log_commit[(index1 + 1) % 2]))
Chris Mason12fcfd22009-03-24 10:24:20 -04002332 wait_log_commit(trans, root, root->log_transid - 1);
Yan, Zheng86df7eb2009-10-14 09:24:59 -04002333 while (1) {
Miao Xie2ecb7922012-09-06 04:04:27 -06002334 int batch = atomic_read(&root->log_batch);
Chris Masoncd354ad2011-10-20 15:45:37 -04002335 /* when we're on an ssd, just kick the log commit out */
2336 if (!btrfs_test_opt(root, SSD) && root->log_multiple_pids) {
Yan, Zheng86df7eb2009-10-14 09:24:59 -04002337 mutex_unlock(&root->log_mutex);
2338 schedule_timeout_uninterruptible(1);
2339 mutex_lock(&root->log_mutex);
2340 }
Chris Mason12fcfd22009-03-24 10:24:20 -04002341 wait_for_writer(trans, root);
Miao Xie2ecb7922012-09-06 04:04:27 -06002342 if (batch == atomic_read(&root->log_batch))
Chris Masone02119d2008-09-05 16:13:11 -04002343 break;
2344 }
Chris Masond0c803c2008-09-11 16:17:57 -04002345
Chris Mason12fcfd22009-03-24 10:24:20 -04002346 /* bail out if we need to do a full commit */
2347 if (root->fs_info->last_trans_log_full_commit == trans->transid) {
2348 ret = -EAGAIN;
Josef Bacik2ab28f32012-10-12 15:27:49 -04002349 btrfs_free_logged_extents(log, log_transid);
Chris Mason12fcfd22009-03-24 10:24:20 -04002350 mutex_unlock(&root->log_mutex);
2351 goto out;
2352 }
2353
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002354 if (log_transid % 2 == 0)
2355 mark = EXTENT_DIRTY;
2356 else
2357 mark = EXTENT_NEW;
2358
Chris Mason690587d2009-10-13 13:29:19 -04002359 /* we start IO on all the marked extents here, but we don't actually
2360 * wait for them until later.
2361 */
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002362 ret = btrfs_write_marked_extents(log, &log->dirty_log_pages, mark);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002363 if (ret) {
2364 btrfs_abort_transaction(trans, root, ret);
Josef Bacik2ab28f32012-10-12 15:27:49 -04002365 btrfs_free_logged_extents(log, log_transid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002366 mutex_unlock(&root->log_mutex);
2367 goto out;
2368 }
Yan Zheng7237f182009-01-21 12:54:03 -05002369
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002370 btrfs_set_root_node(&log->root_item, log->node);
Yan Zheng7237f182009-01-21 12:54:03 -05002371
Yan Zheng7237f182009-01-21 12:54:03 -05002372 root->log_transid++;
2373 log->log_transid = root->log_transid;
Josef Bacikff782e02009-10-08 15:30:04 -04002374 root->log_start_pid = 0;
Yan Zheng7237f182009-01-21 12:54:03 -05002375 smp_mb();
2376 /*
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002377 * IO has been started, blocks of the log tree have WRITTEN flag set
2378 * in their headers. new modifications of the log will be written to
2379 * new positions. so it's safe to allow log writers to go in.
Yan Zheng7237f182009-01-21 12:54:03 -05002380 */
2381 mutex_unlock(&root->log_mutex);
2382
2383 mutex_lock(&log_root_tree->log_mutex);
Miao Xie2ecb7922012-09-06 04:04:27 -06002384 atomic_inc(&log_root_tree->log_batch);
Yan Zheng7237f182009-01-21 12:54:03 -05002385 atomic_inc(&log_root_tree->log_writers);
2386 mutex_unlock(&log_root_tree->log_mutex);
2387
2388 ret = update_log_root(trans, log);
Yan Zheng7237f182009-01-21 12:54:03 -05002389
2390 mutex_lock(&log_root_tree->log_mutex);
2391 if (atomic_dec_and_test(&log_root_tree->log_writers)) {
2392 smp_mb();
2393 if (waitqueue_active(&log_root_tree->log_writer_wait))
2394 wake_up(&log_root_tree->log_writer_wait);
2395 }
2396
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002397 if (ret) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002398 if (ret != -ENOSPC) {
2399 btrfs_abort_transaction(trans, root, ret);
2400 mutex_unlock(&log_root_tree->log_mutex);
2401 goto out;
2402 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002403 root->fs_info->last_trans_log_full_commit = trans->transid;
2404 btrfs_wait_marked_extents(log, &log->dirty_log_pages, mark);
Josef Bacik2ab28f32012-10-12 15:27:49 -04002405 btrfs_free_logged_extents(log, log_transid);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002406 mutex_unlock(&log_root_tree->log_mutex);
2407 ret = -EAGAIN;
2408 goto out;
2409 }
2410
Yan Zheng7237f182009-01-21 12:54:03 -05002411 index2 = log_root_tree->log_transid % 2;
2412 if (atomic_read(&log_root_tree->log_commit[index2])) {
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002413 btrfs_wait_marked_extents(log, &log->dirty_log_pages, mark);
Chris Mason12fcfd22009-03-24 10:24:20 -04002414 wait_log_commit(trans, log_root_tree,
2415 log_root_tree->log_transid);
Josef Bacik2ab28f32012-10-12 15:27:49 -04002416 btrfs_free_logged_extents(log, log_transid);
Yan Zheng7237f182009-01-21 12:54:03 -05002417 mutex_unlock(&log_root_tree->log_mutex);
Chris Masonb31eabd2011-01-31 16:48:24 -05002418 ret = 0;
Yan Zheng7237f182009-01-21 12:54:03 -05002419 goto out;
2420 }
2421 atomic_set(&log_root_tree->log_commit[index2], 1);
2422
Chris Mason12fcfd22009-03-24 10:24:20 -04002423 if (atomic_read(&log_root_tree->log_commit[(index2 + 1) % 2])) {
2424 wait_log_commit(trans, log_root_tree,
2425 log_root_tree->log_transid - 1);
2426 }
Yan Zheng7237f182009-01-21 12:54:03 -05002427
Chris Mason12fcfd22009-03-24 10:24:20 -04002428 wait_for_writer(trans, log_root_tree);
2429
2430 /*
2431 * now that we've moved on to the tree of log tree roots,
2432 * check the full commit flag again
2433 */
2434 if (root->fs_info->last_trans_log_full_commit == trans->transid) {
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002435 btrfs_wait_marked_extents(log, &log->dirty_log_pages, mark);
Josef Bacik2ab28f32012-10-12 15:27:49 -04002436 btrfs_free_logged_extents(log, log_transid);
Chris Mason12fcfd22009-03-24 10:24:20 -04002437 mutex_unlock(&log_root_tree->log_mutex);
2438 ret = -EAGAIN;
2439 goto out_wake_log_root;
2440 }
Yan Zheng7237f182009-01-21 12:54:03 -05002441
2442 ret = btrfs_write_and_wait_marked_extents(log_root_tree,
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002443 &log_root_tree->dirty_log_pages,
2444 EXTENT_DIRTY | EXTENT_NEW);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002445 if (ret) {
2446 btrfs_abort_transaction(trans, root, ret);
Josef Bacik2ab28f32012-10-12 15:27:49 -04002447 btrfs_free_logged_extents(log, log_transid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002448 mutex_unlock(&log_root_tree->log_mutex);
2449 goto out_wake_log_root;
2450 }
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002451 btrfs_wait_marked_extents(log, &log->dirty_log_pages, mark);
Josef Bacik2ab28f32012-10-12 15:27:49 -04002452 btrfs_wait_logged_extents(log, log_transid);
Chris Masone02119d2008-09-05 16:13:11 -04002453
David Sterba6c417612011-04-13 15:41:04 +02002454 btrfs_set_super_log_root(root->fs_info->super_for_commit,
Yan Zheng7237f182009-01-21 12:54:03 -05002455 log_root_tree->node->start);
David Sterba6c417612011-04-13 15:41:04 +02002456 btrfs_set_super_log_root_level(root->fs_info->super_for_commit,
Yan Zheng7237f182009-01-21 12:54:03 -05002457 btrfs_header_level(log_root_tree->node));
Chris Masone02119d2008-09-05 16:13:11 -04002458
Yan Zheng7237f182009-01-21 12:54:03 -05002459 log_root_tree->log_transid++;
Chris Masone02119d2008-09-05 16:13:11 -04002460 smp_mb();
Yan Zheng7237f182009-01-21 12:54:03 -05002461
2462 mutex_unlock(&log_root_tree->log_mutex);
2463
2464 /*
2465 * nobody else is going to jump in and write the the ctree
2466 * super here because the log_commit atomic below is protecting
2467 * us. We must be called with a transaction handle pinning
2468 * the running transaction open, so a full commit can't hop
2469 * in and cause problems either.
2470 */
Arne Jansena2de7332011-03-08 14:14:00 +01002471 btrfs_scrub_pause_super(root);
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02002472 ret = write_ctree_super(trans, root->fs_info->tree_root, 1);
Arne Jansena2de7332011-03-08 14:14:00 +01002473 btrfs_scrub_continue_super(root);
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02002474 if (ret) {
2475 btrfs_abort_transaction(trans, root, ret);
2476 goto out_wake_log_root;
2477 }
Yan Zheng7237f182009-01-21 12:54:03 -05002478
Chris Mason257c62e2009-10-13 13:21:08 -04002479 mutex_lock(&root->log_mutex);
2480 if (root->last_log_commit < log_transid)
2481 root->last_log_commit = log_transid;
2482 mutex_unlock(&root->log_mutex);
2483
Chris Mason12fcfd22009-03-24 10:24:20 -04002484out_wake_log_root:
Yan Zheng7237f182009-01-21 12:54:03 -05002485 atomic_set(&log_root_tree->log_commit[index2], 0);
2486 smp_mb();
2487 if (waitqueue_active(&log_root_tree->log_commit_wait[index2]))
2488 wake_up(&log_root_tree->log_commit_wait[index2]);
Chris Masone02119d2008-09-05 16:13:11 -04002489out:
Yan Zheng7237f182009-01-21 12:54:03 -05002490 atomic_set(&root->log_commit[index1], 0);
2491 smp_mb();
2492 if (waitqueue_active(&root->log_commit_wait[index1]))
2493 wake_up(&root->log_commit_wait[index1]);
Chris Masonb31eabd2011-01-31 16:48:24 -05002494 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002495}
2496
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002497static void free_log_tree(struct btrfs_trans_handle *trans,
2498 struct btrfs_root *log)
Chris Masone02119d2008-09-05 16:13:11 -04002499{
2500 int ret;
Chris Masond0c803c2008-09-11 16:17:57 -04002501 u64 start;
2502 u64 end;
Chris Masone02119d2008-09-05 16:13:11 -04002503 struct walk_control wc = {
2504 .free = 1,
2505 .process_func = process_one_buffer
2506 };
2507
Liu Bo33217192013-02-27 13:28:24 +00002508 if (trans) {
2509 ret = walk_log_tree(trans, log, &wc);
2510 BUG_ON(ret);
2511 }
Chris Masone02119d2008-09-05 16:13:11 -04002512
Chris Masond3977122009-01-05 21:25:51 -05002513 while (1) {
Chris Masond0c803c2008-09-11 16:17:57 -04002514 ret = find_first_extent_bit(&log->dirty_log_pages,
Josef Bacike6138872012-09-27 17:07:30 -04002515 0, &start, &end, EXTENT_DIRTY | EXTENT_NEW,
2516 NULL);
Chris Masond0c803c2008-09-11 16:17:57 -04002517 if (ret)
2518 break;
2519
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002520 clear_extent_bits(&log->dirty_log_pages, start, end,
2521 EXTENT_DIRTY | EXTENT_NEW, GFP_NOFS);
Chris Masond0c803c2008-09-11 16:17:57 -04002522 }
2523
Josef Bacik2ab28f32012-10-12 15:27:49 -04002524 /*
2525 * We may have short-circuited the log tree with the full commit logic
2526 * and left ordered extents on our list, so clear these out to keep us
2527 * from leaking inodes and memory.
2528 */
2529 btrfs_free_logged_extents(log, 0);
2530 btrfs_free_logged_extents(log, 1);
2531
Yan Zheng7237f182009-01-21 12:54:03 -05002532 free_extent_buffer(log->node);
2533 kfree(log);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002534}
2535
2536/*
2537 * free all the extents used by the tree log. This should be called
2538 * at commit time of the full transaction
2539 */
2540int btrfs_free_log(struct btrfs_trans_handle *trans, struct btrfs_root *root)
2541{
2542 if (root->log_root) {
2543 free_log_tree(trans, root->log_root);
2544 root->log_root = NULL;
2545 }
2546 return 0;
2547}
2548
2549int btrfs_free_log_root_tree(struct btrfs_trans_handle *trans,
2550 struct btrfs_fs_info *fs_info)
2551{
2552 if (fs_info->log_root_tree) {
2553 free_log_tree(trans, fs_info->log_root_tree);
2554 fs_info->log_root_tree = NULL;
2555 }
Chris Masone02119d2008-09-05 16:13:11 -04002556 return 0;
2557}
2558
2559/*
Chris Masone02119d2008-09-05 16:13:11 -04002560 * If both a file and directory are logged, and unlinks or renames are
2561 * mixed in, we have a few interesting corners:
2562 *
2563 * create file X in dir Y
2564 * link file X to X.link in dir Y
2565 * fsync file X
2566 * unlink file X but leave X.link
2567 * fsync dir Y
2568 *
2569 * After a crash we would expect only X.link to exist. But file X
2570 * didn't get fsync'd again so the log has back refs for X and X.link.
2571 *
2572 * We solve this by removing directory entries and inode backrefs from the
2573 * log when a file that was logged in the current transaction is
2574 * unlinked. Any later fsync will include the updated log entries, and
2575 * we'll be able to reconstruct the proper directory items from backrefs.
2576 *
2577 * This optimizations allows us to avoid relogging the entire inode
2578 * or the entire directory.
2579 */
2580int btrfs_del_dir_entries_in_log(struct btrfs_trans_handle *trans,
2581 struct btrfs_root *root,
2582 const char *name, int name_len,
2583 struct inode *dir, u64 index)
2584{
2585 struct btrfs_root *log;
2586 struct btrfs_dir_item *di;
2587 struct btrfs_path *path;
2588 int ret;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002589 int err = 0;
Chris Masone02119d2008-09-05 16:13:11 -04002590 int bytes_del = 0;
Li Zefan33345d012011-04-20 10:31:50 +08002591 u64 dir_ino = btrfs_ino(dir);
Chris Masone02119d2008-09-05 16:13:11 -04002592
Chris Mason3a5f1d42008-09-11 15:53:37 -04002593 if (BTRFS_I(dir)->logged_trans < trans->transid)
2594 return 0;
2595
Chris Masone02119d2008-09-05 16:13:11 -04002596 ret = join_running_log_trans(root);
2597 if (ret)
2598 return 0;
2599
2600 mutex_lock(&BTRFS_I(dir)->log_mutex);
2601
2602 log = root->log_root;
2603 path = btrfs_alloc_path();
Tsutomu Itoha62f44a2011-04-25 19:43:51 -04002604 if (!path) {
2605 err = -ENOMEM;
2606 goto out_unlock;
2607 }
liubo2a29edc2011-01-26 06:22:08 +00002608
Li Zefan33345d012011-04-20 10:31:50 +08002609 di = btrfs_lookup_dir_item(trans, log, path, dir_ino,
Chris Masone02119d2008-09-05 16:13:11 -04002610 name, name_len, -1);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002611 if (IS_ERR(di)) {
2612 err = PTR_ERR(di);
2613 goto fail;
2614 }
2615 if (di) {
Chris Masone02119d2008-09-05 16:13:11 -04002616 ret = btrfs_delete_one_dir_name(trans, log, path, di);
2617 bytes_del += name_len;
2618 BUG_ON(ret);
2619 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002620 btrfs_release_path(path);
Li Zefan33345d012011-04-20 10:31:50 +08002621 di = btrfs_lookup_dir_index_item(trans, log, path, dir_ino,
Chris Masone02119d2008-09-05 16:13:11 -04002622 index, name, name_len, -1);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002623 if (IS_ERR(di)) {
2624 err = PTR_ERR(di);
2625 goto fail;
2626 }
2627 if (di) {
Chris Masone02119d2008-09-05 16:13:11 -04002628 ret = btrfs_delete_one_dir_name(trans, log, path, di);
2629 bytes_del += name_len;
2630 BUG_ON(ret);
2631 }
2632
2633 /* update the directory size in the log to reflect the names
2634 * we have removed
2635 */
2636 if (bytes_del) {
2637 struct btrfs_key key;
2638
Li Zefan33345d012011-04-20 10:31:50 +08002639 key.objectid = dir_ino;
Chris Masone02119d2008-09-05 16:13:11 -04002640 key.offset = 0;
2641 key.type = BTRFS_INODE_ITEM_KEY;
David Sterbab3b4aa72011-04-21 01:20:15 +02002642 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002643
2644 ret = btrfs_search_slot(trans, log, &key, path, 0, 1);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002645 if (ret < 0) {
2646 err = ret;
2647 goto fail;
2648 }
Chris Masone02119d2008-09-05 16:13:11 -04002649 if (ret == 0) {
2650 struct btrfs_inode_item *item;
2651 u64 i_size;
2652
2653 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
2654 struct btrfs_inode_item);
2655 i_size = btrfs_inode_size(path->nodes[0], item);
2656 if (i_size > bytes_del)
2657 i_size -= bytes_del;
2658 else
2659 i_size = 0;
2660 btrfs_set_inode_size(path->nodes[0], item, i_size);
2661 btrfs_mark_buffer_dirty(path->nodes[0]);
2662 } else
2663 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02002664 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002665 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002666fail:
Chris Masone02119d2008-09-05 16:13:11 -04002667 btrfs_free_path(path);
Tsutomu Itoha62f44a2011-04-25 19:43:51 -04002668out_unlock:
Chris Masone02119d2008-09-05 16:13:11 -04002669 mutex_unlock(&BTRFS_I(dir)->log_mutex);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002670 if (ret == -ENOSPC) {
2671 root->fs_info->last_trans_log_full_commit = trans->transid;
2672 ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002673 } else if (ret < 0)
2674 btrfs_abort_transaction(trans, root, ret);
2675
Chris Mason12fcfd22009-03-24 10:24:20 -04002676 btrfs_end_log_trans(root);
Chris Masone02119d2008-09-05 16:13:11 -04002677
Andi Kleen411fc6b2010-10-29 15:14:31 -04002678 return err;
Chris Masone02119d2008-09-05 16:13:11 -04002679}
2680
2681/* see comments for btrfs_del_dir_entries_in_log */
2682int btrfs_del_inode_ref_in_log(struct btrfs_trans_handle *trans,
2683 struct btrfs_root *root,
2684 const char *name, int name_len,
2685 struct inode *inode, u64 dirid)
2686{
2687 struct btrfs_root *log;
2688 u64 index;
2689 int ret;
2690
Chris Mason3a5f1d42008-09-11 15:53:37 -04002691 if (BTRFS_I(inode)->logged_trans < trans->transid)
2692 return 0;
2693
Chris Masone02119d2008-09-05 16:13:11 -04002694 ret = join_running_log_trans(root);
2695 if (ret)
2696 return 0;
2697 log = root->log_root;
2698 mutex_lock(&BTRFS_I(inode)->log_mutex);
2699
Li Zefan33345d012011-04-20 10:31:50 +08002700 ret = btrfs_del_inode_ref(trans, log, name, name_len, btrfs_ino(inode),
Chris Masone02119d2008-09-05 16:13:11 -04002701 dirid, &index);
2702 mutex_unlock(&BTRFS_I(inode)->log_mutex);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002703 if (ret == -ENOSPC) {
2704 root->fs_info->last_trans_log_full_commit = trans->transid;
2705 ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002706 } else if (ret < 0 && ret != -ENOENT)
2707 btrfs_abort_transaction(trans, root, ret);
Chris Mason12fcfd22009-03-24 10:24:20 -04002708 btrfs_end_log_trans(root);
Chris Masone02119d2008-09-05 16:13:11 -04002709
Chris Masone02119d2008-09-05 16:13:11 -04002710 return ret;
2711}
2712
2713/*
2714 * creates a range item in the log for 'dirid'. first_offset and
2715 * last_offset tell us which parts of the key space the log should
2716 * be considered authoritative for.
2717 */
2718static noinline int insert_dir_log_key(struct btrfs_trans_handle *trans,
2719 struct btrfs_root *log,
2720 struct btrfs_path *path,
2721 int key_type, u64 dirid,
2722 u64 first_offset, u64 last_offset)
2723{
2724 int ret;
2725 struct btrfs_key key;
2726 struct btrfs_dir_log_item *item;
2727
2728 key.objectid = dirid;
2729 key.offset = first_offset;
2730 if (key_type == BTRFS_DIR_ITEM_KEY)
2731 key.type = BTRFS_DIR_LOG_ITEM_KEY;
2732 else
2733 key.type = BTRFS_DIR_LOG_INDEX_KEY;
2734 ret = btrfs_insert_empty_item(trans, log, path, &key, sizeof(*item));
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002735 if (ret)
2736 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002737
2738 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
2739 struct btrfs_dir_log_item);
2740 btrfs_set_dir_log_end(path->nodes[0], item, last_offset);
2741 btrfs_mark_buffer_dirty(path->nodes[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02002742 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002743 return 0;
2744}
2745
2746/*
2747 * log all the items included in the current transaction for a given
2748 * directory. This also creates the range items in the log tree required
2749 * to replay anything deleted before the fsync
2750 */
2751static noinline int log_dir_items(struct btrfs_trans_handle *trans,
2752 struct btrfs_root *root, struct inode *inode,
2753 struct btrfs_path *path,
2754 struct btrfs_path *dst_path, int key_type,
2755 u64 min_offset, u64 *last_offset_ret)
2756{
2757 struct btrfs_key min_key;
2758 struct btrfs_key max_key;
2759 struct btrfs_root *log = root->log_root;
2760 struct extent_buffer *src;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002761 int err = 0;
Chris Masone02119d2008-09-05 16:13:11 -04002762 int ret;
2763 int i;
2764 int nritems;
2765 u64 first_offset = min_offset;
2766 u64 last_offset = (u64)-1;
Li Zefan33345d012011-04-20 10:31:50 +08002767 u64 ino = btrfs_ino(inode);
Chris Masone02119d2008-09-05 16:13:11 -04002768
2769 log = root->log_root;
Li Zefan33345d012011-04-20 10:31:50 +08002770 max_key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04002771 max_key.offset = (u64)-1;
2772 max_key.type = key_type;
2773
Li Zefan33345d012011-04-20 10:31:50 +08002774 min_key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04002775 min_key.type = key_type;
2776 min_key.offset = min_offset;
2777
2778 path->keep_locks = 1;
2779
2780 ret = btrfs_search_forward(root, &min_key, &max_key,
Eric Sandeende78b512013-01-31 18:21:12 +00002781 path, trans->transid);
Chris Masone02119d2008-09-05 16:13:11 -04002782
2783 /*
2784 * we didn't find anything from this transaction, see if there
2785 * is anything at all
2786 */
Li Zefan33345d012011-04-20 10:31:50 +08002787 if (ret != 0 || min_key.objectid != ino || min_key.type != key_type) {
2788 min_key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04002789 min_key.type = key_type;
2790 min_key.offset = (u64)-1;
David Sterbab3b4aa72011-04-21 01:20:15 +02002791 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002792 ret = btrfs_search_slot(NULL, root, &min_key, path, 0, 0);
2793 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02002794 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002795 return ret;
2796 }
Li Zefan33345d012011-04-20 10:31:50 +08002797 ret = btrfs_previous_item(root, path, ino, key_type);
Chris Masone02119d2008-09-05 16:13:11 -04002798
2799 /* if ret == 0 there are items for this type,
2800 * create a range to tell us the last key of this type.
2801 * otherwise, there are no items in this directory after
2802 * *min_offset, and we create a range to indicate that.
2803 */
2804 if (ret == 0) {
2805 struct btrfs_key tmp;
2806 btrfs_item_key_to_cpu(path->nodes[0], &tmp,
2807 path->slots[0]);
Chris Masond3977122009-01-05 21:25:51 -05002808 if (key_type == tmp.type)
Chris Masone02119d2008-09-05 16:13:11 -04002809 first_offset = max(min_offset, tmp.offset) + 1;
Chris Masone02119d2008-09-05 16:13:11 -04002810 }
2811 goto done;
2812 }
2813
2814 /* go backward to find any previous key */
Li Zefan33345d012011-04-20 10:31:50 +08002815 ret = btrfs_previous_item(root, path, ino, key_type);
Chris Masone02119d2008-09-05 16:13:11 -04002816 if (ret == 0) {
2817 struct btrfs_key tmp;
2818 btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]);
2819 if (key_type == tmp.type) {
2820 first_offset = tmp.offset;
2821 ret = overwrite_item(trans, log, dst_path,
2822 path->nodes[0], path->slots[0],
2823 &tmp);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002824 if (ret) {
2825 err = ret;
2826 goto done;
2827 }
Chris Masone02119d2008-09-05 16:13:11 -04002828 }
2829 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002830 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002831
2832 /* find the first key from this transaction again */
2833 ret = btrfs_search_slot(NULL, root, &min_key, path, 0, 0);
2834 if (ret != 0) {
2835 WARN_ON(1);
2836 goto done;
2837 }
2838
2839 /*
2840 * we have a block from this transaction, log every item in it
2841 * from our directory
2842 */
Chris Masond3977122009-01-05 21:25:51 -05002843 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04002844 struct btrfs_key tmp;
2845 src = path->nodes[0];
2846 nritems = btrfs_header_nritems(src);
2847 for (i = path->slots[0]; i < nritems; i++) {
2848 btrfs_item_key_to_cpu(src, &min_key, i);
2849
Li Zefan33345d012011-04-20 10:31:50 +08002850 if (min_key.objectid != ino || min_key.type != key_type)
Chris Masone02119d2008-09-05 16:13:11 -04002851 goto done;
2852 ret = overwrite_item(trans, log, dst_path, src, i,
2853 &min_key);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002854 if (ret) {
2855 err = ret;
2856 goto done;
2857 }
Chris Masone02119d2008-09-05 16:13:11 -04002858 }
2859 path->slots[0] = nritems;
2860
2861 /*
2862 * look ahead to the next item and see if it is also
2863 * from this directory and from this transaction
2864 */
2865 ret = btrfs_next_leaf(root, path);
2866 if (ret == 1) {
2867 last_offset = (u64)-1;
2868 goto done;
2869 }
2870 btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]);
Li Zefan33345d012011-04-20 10:31:50 +08002871 if (tmp.objectid != ino || tmp.type != key_type) {
Chris Masone02119d2008-09-05 16:13:11 -04002872 last_offset = (u64)-1;
2873 goto done;
2874 }
2875 if (btrfs_header_generation(path->nodes[0]) != trans->transid) {
2876 ret = overwrite_item(trans, log, dst_path,
2877 path->nodes[0], path->slots[0],
2878 &tmp);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002879 if (ret)
2880 err = ret;
2881 else
2882 last_offset = tmp.offset;
Chris Masone02119d2008-09-05 16:13:11 -04002883 goto done;
2884 }
2885 }
2886done:
David Sterbab3b4aa72011-04-21 01:20:15 +02002887 btrfs_release_path(path);
2888 btrfs_release_path(dst_path);
Chris Masone02119d2008-09-05 16:13:11 -04002889
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002890 if (err == 0) {
2891 *last_offset_ret = last_offset;
2892 /*
2893 * insert the log range keys to indicate where the log
2894 * is valid
2895 */
2896 ret = insert_dir_log_key(trans, log, path, key_type,
Li Zefan33345d012011-04-20 10:31:50 +08002897 ino, first_offset, last_offset);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002898 if (ret)
2899 err = ret;
2900 }
2901 return err;
Chris Masone02119d2008-09-05 16:13:11 -04002902}
2903
2904/*
2905 * logging directories is very similar to logging inodes, We find all the items
2906 * from the current transaction and write them to the log.
2907 *
2908 * The recovery code scans the directory in the subvolume, and if it finds a
2909 * key in the range logged that is not present in the log tree, then it means
2910 * that dir entry was unlinked during the transaction.
2911 *
2912 * In order for that scan to work, we must include one key smaller than
2913 * the smallest logged by this transaction and one key larger than the largest
2914 * key logged by this transaction.
2915 */
2916static noinline int log_directory_changes(struct btrfs_trans_handle *trans,
2917 struct btrfs_root *root, struct inode *inode,
2918 struct btrfs_path *path,
2919 struct btrfs_path *dst_path)
2920{
2921 u64 min_key;
2922 u64 max_key;
2923 int ret;
2924 int key_type = BTRFS_DIR_ITEM_KEY;
2925
2926again:
2927 min_key = 0;
2928 max_key = 0;
Chris Masond3977122009-01-05 21:25:51 -05002929 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04002930 ret = log_dir_items(trans, root, inode, path,
2931 dst_path, key_type, min_key,
2932 &max_key);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002933 if (ret)
2934 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002935 if (max_key == (u64)-1)
2936 break;
2937 min_key = max_key + 1;
2938 }
2939
2940 if (key_type == BTRFS_DIR_ITEM_KEY) {
2941 key_type = BTRFS_DIR_INDEX_KEY;
2942 goto again;
2943 }
2944 return 0;
2945}
2946
2947/*
2948 * a helper function to drop items from the log before we relog an
2949 * inode. max_key_type indicates the highest item type to remove.
2950 * This cannot be run for file data extents because it does not
2951 * free the extents they point to.
2952 */
2953static int drop_objectid_items(struct btrfs_trans_handle *trans,
2954 struct btrfs_root *log,
2955 struct btrfs_path *path,
2956 u64 objectid, int max_key_type)
2957{
2958 int ret;
2959 struct btrfs_key key;
2960 struct btrfs_key found_key;
Josef Bacik18ec90d2012-09-28 11:56:28 -04002961 int start_slot;
Chris Masone02119d2008-09-05 16:13:11 -04002962
2963 key.objectid = objectid;
2964 key.type = max_key_type;
2965 key.offset = (u64)-1;
2966
Chris Masond3977122009-01-05 21:25:51 -05002967 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04002968 ret = btrfs_search_slot(trans, log, &key, path, -1, 1);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002969 BUG_ON(ret == 0);
2970 if (ret < 0)
Chris Masone02119d2008-09-05 16:13:11 -04002971 break;
2972
2973 if (path->slots[0] == 0)
2974 break;
2975
2976 path->slots[0]--;
2977 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
2978 path->slots[0]);
2979
2980 if (found_key.objectid != objectid)
2981 break;
2982
Josef Bacik18ec90d2012-09-28 11:56:28 -04002983 found_key.offset = 0;
2984 found_key.type = 0;
2985 ret = btrfs_bin_search(path->nodes[0], &found_key, 0,
2986 &start_slot);
2987
2988 ret = btrfs_del_items(trans, log, path, start_slot,
2989 path->slots[0] - start_slot + 1);
2990 /*
2991 * If start slot isn't 0 then we don't need to re-search, we've
2992 * found the last guy with the objectid in this tree.
2993 */
2994 if (ret || start_slot != 0)
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00002995 break;
David Sterbab3b4aa72011-04-21 01:20:15 +02002996 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002997 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002998 btrfs_release_path(path);
Josef Bacik5bdbeb22012-05-29 16:59:49 -04002999 if (ret > 0)
3000 ret = 0;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003001 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04003002}
3003
Josef Bacik94edf4a2012-09-25 14:56:25 -04003004static void fill_inode_item(struct btrfs_trans_handle *trans,
3005 struct extent_buffer *leaf,
3006 struct btrfs_inode_item *item,
3007 struct inode *inode, int log_inode_only)
3008{
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003009 struct btrfs_map_token token;
Josef Bacik94edf4a2012-09-25 14:56:25 -04003010
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003011 btrfs_init_map_token(&token);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003012
3013 if (log_inode_only) {
3014 /* set the generation to zero so the recover code
3015 * can tell the difference between an logging
3016 * just to say 'this inode exists' and a logging
3017 * to say 'update this inode with these values'
3018 */
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003019 btrfs_set_token_inode_generation(leaf, item, 0, &token);
3020 btrfs_set_token_inode_size(leaf, item, 0, &token);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003021 } else {
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003022 btrfs_set_token_inode_generation(leaf, item,
3023 BTRFS_I(inode)->generation,
3024 &token);
3025 btrfs_set_token_inode_size(leaf, item, inode->i_size, &token);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003026 }
3027
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003028 btrfs_set_token_inode_uid(leaf, item, i_uid_read(inode), &token);
3029 btrfs_set_token_inode_gid(leaf, item, i_gid_read(inode), &token);
3030 btrfs_set_token_inode_mode(leaf, item, inode->i_mode, &token);
3031 btrfs_set_token_inode_nlink(leaf, item, inode->i_nlink, &token);
3032
3033 btrfs_set_token_timespec_sec(leaf, btrfs_inode_atime(item),
3034 inode->i_atime.tv_sec, &token);
3035 btrfs_set_token_timespec_nsec(leaf, btrfs_inode_atime(item),
3036 inode->i_atime.tv_nsec, &token);
3037
3038 btrfs_set_token_timespec_sec(leaf, btrfs_inode_mtime(item),
3039 inode->i_mtime.tv_sec, &token);
3040 btrfs_set_token_timespec_nsec(leaf, btrfs_inode_mtime(item),
3041 inode->i_mtime.tv_nsec, &token);
3042
3043 btrfs_set_token_timespec_sec(leaf, btrfs_inode_ctime(item),
3044 inode->i_ctime.tv_sec, &token);
3045 btrfs_set_token_timespec_nsec(leaf, btrfs_inode_ctime(item),
3046 inode->i_ctime.tv_nsec, &token);
3047
3048 btrfs_set_token_inode_nbytes(leaf, item, inode_get_bytes(inode),
3049 &token);
3050
3051 btrfs_set_token_inode_sequence(leaf, item, inode->i_version, &token);
3052 btrfs_set_token_inode_transid(leaf, item, trans->transid, &token);
3053 btrfs_set_token_inode_rdev(leaf, item, inode->i_rdev, &token);
3054 btrfs_set_token_inode_flags(leaf, item, BTRFS_I(inode)->flags, &token);
3055 btrfs_set_token_inode_block_group(leaf, item, 0, &token);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003056}
3057
Josef Bacika95249b2012-10-11 16:17:34 -04003058static int log_inode_item(struct btrfs_trans_handle *trans,
3059 struct btrfs_root *log, struct btrfs_path *path,
3060 struct inode *inode)
3061{
3062 struct btrfs_inode_item *inode_item;
3063 struct btrfs_key key;
3064 int ret;
3065
3066 memcpy(&key, &BTRFS_I(inode)->location, sizeof(key));
3067 ret = btrfs_insert_empty_item(trans, log, path, &key,
3068 sizeof(*inode_item));
3069 if (ret && ret != -EEXIST)
3070 return ret;
3071 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
3072 struct btrfs_inode_item);
3073 fill_inode_item(trans, path->nodes[0], inode_item, inode, 0);
3074 btrfs_release_path(path);
3075 return 0;
3076}
3077
Chris Mason31ff1cd2008-09-11 16:17:57 -04003078static noinline int copy_items(struct btrfs_trans_handle *trans,
Liu Bod2794402012-08-29 01:07:56 -06003079 struct inode *inode,
Chris Mason31ff1cd2008-09-11 16:17:57 -04003080 struct btrfs_path *dst_path,
3081 struct extent_buffer *src,
3082 int start_slot, int nr, int inode_only)
3083{
3084 unsigned long src_offset;
3085 unsigned long dst_offset;
Liu Bod2794402012-08-29 01:07:56 -06003086 struct btrfs_root *log = BTRFS_I(inode)->root->log_root;
Chris Mason31ff1cd2008-09-11 16:17:57 -04003087 struct btrfs_file_extent_item *extent;
3088 struct btrfs_inode_item *inode_item;
3089 int ret;
3090 struct btrfs_key *ins_keys;
3091 u32 *ins_sizes;
3092 char *ins_data;
3093 int i;
Chris Masond20f7042008-12-08 16:58:54 -05003094 struct list_head ordered_sums;
Liu Bod2794402012-08-29 01:07:56 -06003095 int skip_csum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masond20f7042008-12-08 16:58:54 -05003096
3097 INIT_LIST_HEAD(&ordered_sums);
Chris Mason31ff1cd2008-09-11 16:17:57 -04003098
3099 ins_data = kmalloc(nr * sizeof(struct btrfs_key) +
3100 nr * sizeof(u32), GFP_NOFS);
liubo2a29edc2011-01-26 06:22:08 +00003101 if (!ins_data)
3102 return -ENOMEM;
3103
Chris Mason31ff1cd2008-09-11 16:17:57 -04003104 ins_sizes = (u32 *)ins_data;
3105 ins_keys = (struct btrfs_key *)(ins_data + nr * sizeof(u32));
3106
3107 for (i = 0; i < nr; i++) {
3108 ins_sizes[i] = btrfs_item_size_nr(src, i + start_slot);
3109 btrfs_item_key_to_cpu(src, ins_keys + i, i + start_slot);
3110 }
3111 ret = btrfs_insert_empty_items(trans, log, dst_path,
3112 ins_keys, ins_sizes, nr);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003113 if (ret) {
3114 kfree(ins_data);
3115 return ret;
3116 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04003117
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003118 for (i = 0; i < nr; i++, dst_path->slots[0]++) {
Chris Mason31ff1cd2008-09-11 16:17:57 -04003119 dst_offset = btrfs_item_ptr_offset(dst_path->nodes[0],
3120 dst_path->slots[0]);
3121
3122 src_offset = btrfs_item_ptr_offset(src, start_slot + i);
3123
Josef Bacik94edf4a2012-09-25 14:56:25 -04003124 if (ins_keys[i].type == BTRFS_INODE_ITEM_KEY) {
Chris Mason31ff1cd2008-09-11 16:17:57 -04003125 inode_item = btrfs_item_ptr(dst_path->nodes[0],
3126 dst_path->slots[0],
3127 struct btrfs_inode_item);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003128 fill_inode_item(trans, dst_path->nodes[0], inode_item,
3129 inode, inode_only == LOG_INODE_EXISTS);
3130 } else {
3131 copy_extent_buffer(dst_path->nodes[0], src, dst_offset,
3132 src_offset, ins_sizes[i]);
Chris Mason31ff1cd2008-09-11 16:17:57 -04003133 }
Josef Bacik94edf4a2012-09-25 14:56:25 -04003134
Chris Mason31ff1cd2008-09-11 16:17:57 -04003135 /* take a reference on file data extents so that truncates
3136 * or deletes of this inode don't have to relog the inode
3137 * again
3138 */
Liu Bod2794402012-08-29 01:07:56 -06003139 if (btrfs_key_type(ins_keys + i) == BTRFS_EXTENT_DATA_KEY &&
3140 !skip_csum) {
Chris Mason31ff1cd2008-09-11 16:17:57 -04003141 int found_type;
3142 extent = btrfs_item_ptr(src, start_slot + i,
3143 struct btrfs_file_extent_item);
3144
liubo8e531cd2011-05-06 10:36:09 +08003145 if (btrfs_file_extent_generation(src, extent) < trans->transid)
3146 continue;
3147
Chris Mason31ff1cd2008-09-11 16:17:57 -04003148 found_type = btrfs_file_extent_type(src, extent);
Josef Bacik6f1fed72012-09-26 11:07:06 -04003149 if (found_type == BTRFS_FILE_EXTENT_REG) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003150 u64 ds, dl, cs, cl;
3151 ds = btrfs_file_extent_disk_bytenr(src,
3152 extent);
3153 /* ds == 0 is a hole */
3154 if (ds == 0)
3155 continue;
3156
3157 dl = btrfs_file_extent_disk_num_bytes(src,
3158 extent);
3159 cs = btrfs_file_extent_offset(src, extent);
3160 cl = btrfs_file_extent_num_bytes(src,
Joe Perchesa419aef2009-08-18 11:18:35 -07003161 extent);
Chris Mason580afd72008-12-08 19:15:39 -05003162 if (btrfs_file_extent_compression(src,
3163 extent)) {
3164 cs = 0;
3165 cl = dl;
3166 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003167
3168 ret = btrfs_lookup_csums_range(
3169 log->fs_info->csum_root,
3170 ds + cs, ds + cs + cl - 1,
Arne Jansena2de7332011-03-08 14:14:00 +01003171 &ordered_sums, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003172 BUG_ON(ret);
Chris Mason31ff1cd2008-09-11 16:17:57 -04003173 }
3174 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04003175 }
3176
3177 btrfs_mark_buffer_dirty(dst_path->nodes[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02003178 btrfs_release_path(dst_path);
Chris Mason31ff1cd2008-09-11 16:17:57 -04003179 kfree(ins_data);
Chris Masond20f7042008-12-08 16:58:54 -05003180
3181 /*
3182 * we have to do this after the loop above to avoid changing the
3183 * log tree while trying to change the log tree.
3184 */
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003185 ret = 0;
Chris Masond3977122009-01-05 21:25:51 -05003186 while (!list_empty(&ordered_sums)) {
Chris Masond20f7042008-12-08 16:58:54 -05003187 struct btrfs_ordered_sum *sums = list_entry(ordered_sums.next,
3188 struct btrfs_ordered_sum,
3189 list);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003190 if (!ret)
3191 ret = btrfs_csum_file_blocks(trans, log, sums);
Chris Masond20f7042008-12-08 16:58:54 -05003192 list_del(&sums->list);
3193 kfree(sums);
3194 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003195 return ret;
Chris Mason31ff1cd2008-09-11 16:17:57 -04003196}
3197
Josef Bacik5dc562c2012-08-17 13:14:17 -04003198static int extent_cmp(void *priv, struct list_head *a, struct list_head *b)
3199{
3200 struct extent_map *em1, *em2;
3201
3202 em1 = list_entry(a, struct extent_map, list);
3203 em2 = list_entry(b, struct extent_map, list);
3204
3205 if (em1->start < em2->start)
3206 return -1;
3207 else if (em1->start > em2->start)
3208 return 1;
3209 return 0;
3210}
3211
Josef Bacik5dc562c2012-08-17 13:14:17 -04003212static int log_one_extent(struct btrfs_trans_handle *trans,
3213 struct inode *inode, struct btrfs_root *root,
Josef Bacik70c8a912012-10-11 16:54:30 -04003214 struct extent_map *em, struct btrfs_path *path)
Josef Bacik5dc562c2012-08-17 13:14:17 -04003215{
3216 struct btrfs_root *log = root->log_root;
Josef Bacik70c8a912012-10-11 16:54:30 -04003217 struct btrfs_file_extent_item *fi;
3218 struct extent_buffer *leaf;
Josef Bacik2ab28f32012-10-12 15:27:49 -04003219 struct btrfs_ordered_extent *ordered;
Josef Bacik70c8a912012-10-11 16:54:30 -04003220 struct list_head ordered_sums;
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003221 struct btrfs_map_token token;
Josef Bacik5dc562c2012-08-17 13:14:17 -04003222 struct btrfs_key key;
Josef Bacik2ab28f32012-10-12 15:27:49 -04003223 u64 mod_start = em->mod_start;
3224 u64 mod_len = em->mod_len;
3225 u64 csum_offset;
3226 u64 csum_len;
Josef Bacik70c8a912012-10-11 16:54:30 -04003227 u64 extent_offset = em->start - em->orig_start;
3228 u64 block_len;
Josef Bacik5dc562c2012-08-17 13:14:17 -04003229 int ret;
Josef Bacik2ab28f32012-10-12 15:27:49 -04003230 int index = log->log_transid % 2;
Josef Bacik70c8a912012-10-11 16:54:30 -04003231 bool skip_csum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Josef Bacik5dc562c2012-08-17 13:14:17 -04003232
Josef Bacik09a2a8f92013-04-05 16:51:15 -04003233 ret = __btrfs_drop_extents(trans, log, inode, path, em->start,
3234 em->start + em->len, NULL, 0);
3235 if (ret)
3236 return ret;
3237
Josef Bacik70c8a912012-10-11 16:54:30 -04003238 INIT_LIST_HEAD(&ordered_sums);
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003239 btrfs_init_map_token(&token);
Josef Bacik70c8a912012-10-11 16:54:30 -04003240 key.objectid = btrfs_ino(inode);
3241 key.type = BTRFS_EXTENT_DATA_KEY;
3242 key.offset = em->start;
Josef Bacik70c8a912012-10-11 16:54:30 -04003243
3244 ret = btrfs_insert_empty_item(trans, log, path, &key, sizeof(*fi));
Josef Bacik09a2a8f92013-04-05 16:51:15 -04003245 if (ret)
Josef Bacik70c8a912012-10-11 16:54:30 -04003246 return ret;
Josef Bacik70c8a912012-10-11 16:54:30 -04003247 leaf = path->nodes[0];
3248 fi = btrfs_item_ptr(leaf, path->slots[0],
3249 struct btrfs_file_extent_item);
Josef Bacik124fe662013-03-01 11:47:21 -05003250
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003251 btrfs_set_token_file_extent_generation(leaf, fi, em->generation,
3252 &token);
Josef Bacik70c8a912012-10-11 16:54:30 -04003253 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
3254 skip_csum = true;
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003255 btrfs_set_token_file_extent_type(leaf, fi,
3256 BTRFS_FILE_EXTENT_PREALLOC,
3257 &token);
Josef Bacik70c8a912012-10-11 16:54:30 -04003258 } else {
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003259 btrfs_set_token_file_extent_type(leaf, fi,
3260 BTRFS_FILE_EXTENT_REG,
3261 &token);
Josef Bacik70c8a912012-10-11 16:54:30 -04003262 if (em->block_start == 0)
3263 skip_csum = true;
Josef Bacik5dc562c2012-08-17 13:14:17 -04003264 }
3265
Josef Bacik70c8a912012-10-11 16:54:30 -04003266 block_len = max(em->block_len, em->orig_block_len);
3267 if (em->compress_type != BTRFS_COMPRESS_NONE) {
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003268 btrfs_set_token_file_extent_disk_bytenr(leaf, fi,
3269 em->block_start,
3270 &token);
3271 btrfs_set_token_file_extent_disk_num_bytes(leaf, fi, block_len,
3272 &token);
Josef Bacik70c8a912012-10-11 16:54:30 -04003273 } else if (em->block_start < EXTENT_MAP_LAST_BYTE) {
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003274 btrfs_set_token_file_extent_disk_bytenr(leaf, fi,
3275 em->block_start -
3276 extent_offset, &token);
3277 btrfs_set_token_file_extent_disk_num_bytes(leaf, fi, block_len,
3278 &token);
Josef Bacik70c8a912012-10-11 16:54:30 -04003279 } else {
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003280 btrfs_set_token_file_extent_disk_bytenr(leaf, fi, 0, &token);
3281 btrfs_set_token_file_extent_disk_num_bytes(leaf, fi, 0,
3282 &token);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003283 }
3284
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003285 btrfs_set_token_file_extent_offset(leaf, fi,
3286 em->start - em->orig_start,
3287 &token);
3288 btrfs_set_token_file_extent_num_bytes(leaf, fi, em->len, &token);
Josef Bacikcc95bef2013-04-04 14:31:27 -04003289 btrfs_set_token_file_extent_ram_bytes(leaf, fi, em->ram_bytes, &token);
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003290 btrfs_set_token_file_extent_compression(leaf, fi, em->compress_type,
3291 &token);
3292 btrfs_set_token_file_extent_encryption(leaf, fi, 0, &token);
3293 btrfs_set_token_file_extent_other_encoding(leaf, fi, 0, &token);
Josef Bacik70c8a912012-10-11 16:54:30 -04003294 btrfs_mark_buffer_dirty(leaf);
3295
Josef Bacik70c8a912012-10-11 16:54:30 -04003296 btrfs_release_path(path);
Josef Bacik70c8a912012-10-11 16:54:30 -04003297 if (ret) {
3298 return ret;
3299 }
3300
3301 if (skip_csum)
3302 return 0;
3303
Liu Bo192000d2013-01-06 03:38:22 +00003304 if (em->compress_type) {
3305 csum_offset = 0;
3306 csum_len = block_len;
3307 }
3308
Josef Bacik2ab28f32012-10-12 15:27:49 -04003309 /*
3310 * First check and see if our csums are on our outstanding ordered
3311 * extents.
3312 */
3313again:
3314 spin_lock_irq(&log->log_extents_lock[index]);
3315 list_for_each_entry(ordered, &log->logged_list[index], log_list) {
3316 struct btrfs_ordered_sum *sum;
3317
3318 if (!mod_len)
3319 break;
3320
3321 if (ordered->inode != inode)
3322 continue;
3323
3324 if (ordered->file_offset + ordered->len <= mod_start ||
3325 mod_start + mod_len <= ordered->file_offset)
3326 continue;
3327
3328 /*
3329 * We are going to copy all the csums on this ordered extent, so
3330 * go ahead and adjust mod_start and mod_len in case this
3331 * ordered extent has already been logged.
3332 */
3333 if (ordered->file_offset > mod_start) {
3334 if (ordered->file_offset + ordered->len >=
3335 mod_start + mod_len)
3336 mod_len = ordered->file_offset - mod_start;
3337 /*
3338 * If we have this case
3339 *
3340 * |--------- logged extent ---------|
3341 * |----- ordered extent ----|
3342 *
3343 * Just don't mess with mod_start and mod_len, we'll
3344 * just end up logging more csums than we need and it
3345 * will be ok.
3346 */
3347 } else {
3348 if (ordered->file_offset + ordered->len <
3349 mod_start + mod_len) {
3350 mod_len = (mod_start + mod_len) -
3351 (ordered->file_offset + ordered->len);
3352 mod_start = ordered->file_offset +
3353 ordered->len;
3354 } else {
3355 mod_len = 0;
3356 }
3357 }
3358
3359 /*
3360 * To keep us from looping for the above case of an ordered
3361 * extent that falls inside of the logged extent.
3362 */
3363 if (test_and_set_bit(BTRFS_ORDERED_LOGGED_CSUM,
3364 &ordered->flags))
3365 continue;
3366 atomic_inc(&ordered->refs);
3367 spin_unlock_irq(&log->log_extents_lock[index]);
3368 /*
3369 * we've dropped the lock, we must either break or
3370 * start over after this.
3371 */
3372
3373 wait_event(ordered->wait, ordered->csum_bytes_left == 0);
3374
3375 list_for_each_entry(sum, &ordered->list, list) {
3376 ret = btrfs_csum_file_blocks(trans, log, sum);
3377 if (ret) {
3378 btrfs_put_ordered_extent(ordered);
3379 goto unlocked;
3380 }
3381 }
3382 btrfs_put_ordered_extent(ordered);
3383 goto again;
3384
3385 }
3386 spin_unlock_irq(&log->log_extents_lock[index]);
3387unlocked:
3388
3389 if (!mod_len || ret)
3390 return ret;
3391
3392 csum_offset = mod_start - em->start;
3393 csum_len = mod_len;
3394
Josef Bacik70c8a912012-10-11 16:54:30 -04003395 /* block start is already adjusted for the file extent offset. */
3396 ret = btrfs_lookup_csums_range(log->fs_info->csum_root,
3397 em->block_start + csum_offset,
3398 em->block_start + csum_offset +
3399 csum_len - 1, &ordered_sums, 0);
3400 if (ret)
3401 return ret;
3402
3403 while (!list_empty(&ordered_sums)) {
3404 struct btrfs_ordered_sum *sums = list_entry(ordered_sums.next,
3405 struct btrfs_ordered_sum,
3406 list);
3407 if (!ret)
3408 ret = btrfs_csum_file_blocks(trans, log, sums);
3409 list_del(&sums->list);
3410 kfree(sums);
3411 }
3412
3413 return ret;
Josef Bacik5dc562c2012-08-17 13:14:17 -04003414}
3415
3416static int btrfs_log_changed_extents(struct btrfs_trans_handle *trans,
3417 struct btrfs_root *root,
3418 struct inode *inode,
Josef Bacik70c8a912012-10-11 16:54:30 -04003419 struct btrfs_path *path)
Josef Bacik5dc562c2012-08-17 13:14:17 -04003420{
Josef Bacik5dc562c2012-08-17 13:14:17 -04003421 struct extent_map *em, *n;
3422 struct list_head extents;
3423 struct extent_map_tree *tree = &BTRFS_I(inode)->extent_tree;
3424 u64 test_gen;
3425 int ret = 0;
Josef Bacik2ab28f32012-10-12 15:27:49 -04003426 int num = 0;
Josef Bacik5dc562c2012-08-17 13:14:17 -04003427
3428 INIT_LIST_HEAD(&extents);
3429
Josef Bacik5dc562c2012-08-17 13:14:17 -04003430 write_lock(&tree->lock);
3431 test_gen = root->fs_info->last_trans_committed;
3432
3433 list_for_each_entry_safe(em, n, &tree->modified_extents, list) {
3434 list_del_init(&em->list);
Josef Bacik2ab28f32012-10-12 15:27:49 -04003435
3436 /*
3437 * Just an arbitrary number, this can be really CPU intensive
3438 * once we start getting a lot of extents, and really once we
3439 * have a bunch of extents we just want to commit since it will
3440 * be faster.
3441 */
3442 if (++num > 32768) {
3443 list_del_init(&tree->modified_extents);
3444 ret = -EFBIG;
3445 goto process;
3446 }
3447
Josef Bacik5dc562c2012-08-17 13:14:17 -04003448 if (em->generation <= test_gen)
3449 continue;
Josef Bacikff44c6e2012-09-14 12:59:20 -04003450 /* Need a ref to keep it from getting evicted from cache */
3451 atomic_inc(&em->refs);
3452 set_bit(EXTENT_FLAG_LOGGING, &em->flags);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003453 list_add_tail(&em->list, &extents);
Josef Bacik2ab28f32012-10-12 15:27:49 -04003454 num++;
Josef Bacik5dc562c2012-08-17 13:14:17 -04003455 }
3456
3457 list_sort(NULL, &extents, extent_cmp);
3458
Josef Bacik2ab28f32012-10-12 15:27:49 -04003459process:
Josef Bacik5dc562c2012-08-17 13:14:17 -04003460 while (!list_empty(&extents)) {
3461 em = list_entry(extents.next, struct extent_map, list);
3462
3463 list_del_init(&em->list);
3464
3465 /*
3466 * If we had an error we just need to delete everybody from our
3467 * private list.
3468 */
Josef Bacikff44c6e2012-09-14 12:59:20 -04003469 if (ret) {
Josef Bacik201a9032013-01-24 12:02:07 -05003470 clear_em_logging(tree, em);
Josef Bacikff44c6e2012-09-14 12:59:20 -04003471 free_extent_map(em);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003472 continue;
Josef Bacikff44c6e2012-09-14 12:59:20 -04003473 }
3474
3475 write_unlock(&tree->lock);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003476
Josef Bacik70c8a912012-10-11 16:54:30 -04003477 ret = log_one_extent(trans, inode, root, em, path);
Josef Bacikff44c6e2012-09-14 12:59:20 -04003478 write_lock(&tree->lock);
Josef Bacik201a9032013-01-24 12:02:07 -05003479 clear_em_logging(tree, em);
3480 free_extent_map(em);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003481 }
Josef Bacikff44c6e2012-09-14 12:59:20 -04003482 WARN_ON(!list_empty(&extents));
3483 write_unlock(&tree->lock);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003484
Josef Bacik5dc562c2012-08-17 13:14:17 -04003485 btrfs_release_path(path);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003486 return ret;
3487}
3488
Chris Masone02119d2008-09-05 16:13:11 -04003489/* log a single inode in the tree log.
3490 * At least one parent directory for this inode must exist in the tree
3491 * or be logged already.
3492 *
3493 * Any items from this inode changed by the current transaction are copied
3494 * to the log tree. An extra reference is taken on any extents in this
3495 * file, allowing us to avoid a whole pile of corner cases around logging
3496 * blocks that have been removed from the tree.
3497 *
3498 * See LOG_INODE_ALL and related defines for a description of what inode_only
3499 * does.
3500 *
3501 * This handles both files and directories.
3502 */
Chris Mason12fcfd22009-03-24 10:24:20 -04003503static int btrfs_log_inode(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -04003504 struct btrfs_root *root, struct inode *inode,
3505 int inode_only)
3506{
3507 struct btrfs_path *path;
3508 struct btrfs_path *dst_path;
3509 struct btrfs_key min_key;
3510 struct btrfs_key max_key;
3511 struct btrfs_root *log = root->log_root;
Chris Mason31ff1cd2008-09-11 16:17:57 -04003512 struct extent_buffer *src = NULL;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003513 int err = 0;
Chris Masone02119d2008-09-05 16:13:11 -04003514 int ret;
Chris Mason3a5f1d42008-09-11 15:53:37 -04003515 int nritems;
Chris Mason31ff1cd2008-09-11 16:17:57 -04003516 int ins_start_slot = 0;
3517 int ins_nr;
Josef Bacik5dc562c2012-08-17 13:14:17 -04003518 bool fast_search = false;
Li Zefan33345d012011-04-20 10:31:50 +08003519 u64 ino = btrfs_ino(inode);
Chris Masone02119d2008-09-05 16:13:11 -04003520
Chris Masone02119d2008-09-05 16:13:11 -04003521 path = btrfs_alloc_path();
Tsutomu Itoh5df67082011-02-01 09:17:35 +00003522 if (!path)
3523 return -ENOMEM;
Chris Masone02119d2008-09-05 16:13:11 -04003524 dst_path = btrfs_alloc_path();
Tsutomu Itoh5df67082011-02-01 09:17:35 +00003525 if (!dst_path) {
3526 btrfs_free_path(path);
3527 return -ENOMEM;
3528 }
Chris Masone02119d2008-09-05 16:13:11 -04003529
Li Zefan33345d012011-04-20 10:31:50 +08003530 min_key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04003531 min_key.type = BTRFS_INODE_ITEM_KEY;
3532 min_key.offset = 0;
3533
Li Zefan33345d012011-04-20 10:31:50 +08003534 max_key.objectid = ino;
Chris Mason12fcfd22009-03-24 10:24:20 -04003535
Chris Mason12fcfd22009-03-24 10:24:20 -04003536
Josef Bacik5dc562c2012-08-17 13:14:17 -04003537 /* today the code can only do partial logging of directories */
Miao Xie5269b672012-11-01 07:35:23 +00003538 if (S_ISDIR(inode->i_mode) ||
3539 (!test_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3540 &BTRFS_I(inode)->runtime_flags) &&
3541 inode_only == LOG_INODE_EXISTS))
Chris Masone02119d2008-09-05 16:13:11 -04003542 max_key.type = BTRFS_XATTR_ITEM_KEY;
3543 else
3544 max_key.type = (u8)-1;
3545 max_key.offset = (u64)-1;
3546
Josef Bacik94edf4a2012-09-25 14:56:25 -04003547 /* Only run delayed items if we are a dir or a new file */
3548 if (S_ISDIR(inode->i_mode) ||
3549 BTRFS_I(inode)->generation > root->fs_info->last_trans_committed) {
3550 ret = btrfs_commit_inode_delayed_items(trans, inode);
3551 if (ret) {
3552 btrfs_free_path(path);
3553 btrfs_free_path(dst_path);
3554 return ret;
3555 }
Miao Xie16cdcec2011-04-22 18:12:22 +08003556 }
3557
Chris Masone02119d2008-09-05 16:13:11 -04003558 mutex_lock(&BTRFS_I(inode)->log_mutex);
3559
Josef Bacik2ab28f32012-10-12 15:27:49 -04003560 btrfs_get_logged_extents(log, inode);
3561
Chris Masone02119d2008-09-05 16:13:11 -04003562 /*
3563 * a brute force approach to making sure we get the most uptodate
3564 * copies of everything.
3565 */
3566 if (S_ISDIR(inode->i_mode)) {
3567 int max_key_type = BTRFS_DIR_LOG_INDEX_KEY;
3568
3569 if (inode_only == LOG_INODE_EXISTS)
3570 max_key_type = BTRFS_XATTR_ITEM_KEY;
Li Zefan33345d012011-04-20 10:31:50 +08003571 ret = drop_objectid_items(trans, log, path, ino, max_key_type);
Chris Masone02119d2008-09-05 16:13:11 -04003572 } else {
Josef Bacik5dc562c2012-08-17 13:14:17 -04003573 if (test_and_clear_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3574 &BTRFS_I(inode)->runtime_flags)) {
Josef Bacike9976152012-10-11 15:53:56 -04003575 clear_bit(BTRFS_INODE_COPY_EVERYTHING,
3576 &BTRFS_I(inode)->runtime_flags);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003577 ret = btrfs_truncate_inode_items(trans, log,
3578 inode, 0, 0);
Josef Bacika95249b2012-10-11 16:17:34 -04003579 } else if (test_and_clear_bit(BTRFS_INODE_COPY_EVERYTHING,
3580 &BTRFS_I(inode)->runtime_flags)) {
3581 if (inode_only == LOG_INODE_ALL)
3582 fast_search = true;
3583 max_key.type = BTRFS_XATTR_ITEM_KEY;
3584 ret = drop_objectid_items(trans, log, path, ino,
3585 max_key.type);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003586 } else {
Liu Bo183f37f2012-11-01 06:38:47 +00003587 if (inode_only == LOG_INODE_ALL)
3588 fast_search = true;
Josef Bacika95249b2012-10-11 16:17:34 -04003589 ret = log_inode_item(trans, log, dst_path, inode);
3590 if (ret) {
3591 err = ret;
3592 goto out_unlock;
3593 }
3594 goto log_extents;
Josef Bacik5dc562c2012-08-17 13:14:17 -04003595 }
Josef Bacika95249b2012-10-11 16:17:34 -04003596
Chris Masone02119d2008-09-05 16:13:11 -04003597 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003598 if (ret) {
3599 err = ret;
3600 goto out_unlock;
3601 }
Chris Masone02119d2008-09-05 16:13:11 -04003602 path->keep_locks = 1;
3603
Chris Masond3977122009-01-05 21:25:51 -05003604 while (1) {
Chris Mason31ff1cd2008-09-11 16:17:57 -04003605 ins_nr = 0;
Chris Masone02119d2008-09-05 16:13:11 -04003606 ret = btrfs_search_forward(root, &min_key, &max_key,
Eric Sandeende78b512013-01-31 18:21:12 +00003607 path, trans->transid);
Chris Masone02119d2008-09-05 16:13:11 -04003608 if (ret != 0)
3609 break;
Chris Mason3a5f1d42008-09-11 15:53:37 -04003610again:
Chris Mason31ff1cd2008-09-11 16:17:57 -04003611 /* note, ins_nr might be > 0 here, cleanup outside the loop */
Li Zefan33345d012011-04-20 10:31:50 +08003612 if (min_key.objectid != ino)
Chris Masone02119d2008-09-05 16:13:11 -04003613 break;
3614 if (min_key.type > max_key.type)
3615 break;
Chris Mason31ff1cd2008-09-11 16:17:57 -04003616
Chris Masone02119d2008-09-05 16:13:11 -04003617 src = path->nodes[0];
Chris Mason31ff1cd2008-09-11 16:17:57 -04003618 if (ins_nr && ins_start_slot + ins_nr == path->slots[0]) {
3619 ins_nr++;
3620 goto next_slot;
3621 } else if (!ins_nr) {
3622 ins_start_slot = path->slots[0];
3623 ins_nr = 1;
3624 goto next_slot;
Chris Masone02119d2008-09-05 16:13:11 -04003625 }
3626
Liu Bod2794402012-08-29 01:07:56 -06003627 ret = copy_items(trans, inode, dst_path, src, ins_start_slot,
Chris Mason31ff1cd2008-09-11 16:17:57 -04003628 ins_nr, inode_only);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003629 if (ret) {
3630 err = ret;
3631 goto out_unlock;
3632 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04003633 ins_nr = 1;
3634 ins_start_slot = path->slots[0];
3635next_slot:
Chris Masone02119d2008-09-05 16:13:11 -04003636
Chris Mason3a5f1d42008-09-11 15:53:37 -04003637 nritems = btrfs_header_nritems(path->nodes[0]);
3638 path->slots[0]++;
3639 if (path->slots[0] < nritems) {
3640 btrfs_item_key_to_cpu(path->nodes[0], &min_key,
3641 path->slots[0]);
3642 goto again;
3643 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04003644 if (ins_nr) {
Liu Bod2794402012-08-29 01:07:56 -06003645 ret = copy_items(trans, inode, dst_path, src,
Chris Mason31ff1cd2008-09-11 16:17:57 -04003646 ins_start_slot,
3647 ins_nr, inode_only);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003648 if (ret) {
3649 err = ret;
3650 goto out_unlock;
3651 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04003652 ins_nr = 0;
3653 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003654 btrfs_release_path(path);
Chris Mason3a5f1d42008-09-11 15:53:37 -04003655
Chris Masone02119d2008-09-05 16:13:11 -04003656 if (min_key.offset < (u64)-1)
3657 min_key.offset++;
3658 else if (min_key.type < (u8)-1)
3659 min_key.type++;
3660 else if (min_key.objectid < (u64)-1)
3661 min_key.objectid++;
3662 else
3663 break;
3664 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04003665 if (ins_nr) {
Liu Bod2794402012-08-29 01:07:56 -06003666 ret = copy_items(trans, inode, dst_path, src, ins_start_slot,
Chris Mason31ff1cd2008-09-11 16:17:57 -04003667 ins_nr, inode_only);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003668 if (ret) {
3669 err = ret;
3670 goto out_unlock;
3671 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04003672 ins_nr = 0;
3673 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04003674
Josef Bacika95249b2012-10-11 16:17:34 -04003675log_extents:
Josef Bacik5dc562c2012-08-17 13:14:17 -04003676 if (fast_search) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04003677 btrfs_release_path(dst_path);
Josef Bacik70c8a912012-10-11 16:54:30 -04003678 ret = btrfs_log_changed_extents(trans, root, inode, dst_path);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003679 if (ret) {
3680 err = ret;
3681 goto out_unlock;
3682 }
Liu Bo06d3d222012-08-27 10:52:19 -06003683 } else {
3684 struct extent_map_tree *tree = &BTRFS_I(inode)->extent_tree;
3685 struct extent_map *em, *n;
3686
Miao Xiebbe14262012-11-01 07:34:54 +00003687 write_lock(&tree->lock);
Liu Bo06d3d222012-08-27 10:52:19 -06003688 list_for_each_entry_safe(em, n, &tree->modified_extents, list)
3689 list_del_init(&em->list);
Miao Xiebbe14262012-11-01 07:34:54 +00003690 write_unlock(&tree->lock);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003691 }
3692
Chris Mason9623f9a2008-09-11 17:42:42 -04003693 if (inode_only == LOG_INODE_ALL && S_ISDIR(inode->i_mode)) {
David Sterbab3b4aa72011-04-21 01:20:15 +02003694 btrfs_release_path(path);
3695 btrfs_release_path(dst_path);
Chris Masone02119d2008-09-05 16:13:11 -04003696 ret = log_directory_changes(trans, root, inode, path, dst_path);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003697 if (ret) {
3698 err = ret;
3699 goto out_unlock;
3700 }
Chris Masone02119d2008-09-05 16:13:11 -04003701 }
Chris Mason3a5f1d42008-09-11 15:53:37 -04003702 BTRFS_I(inode)->logged_trans = trans->transid;
Liu Bo46d8bc32012-08-29 01:07:55 -06003703 BTRFS_I(inode)->last_log_commit = BTRFS_I(inode)->last_sub_trans;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003704out_unlock:
Josef Bacik2ab28f32012-10-12 15:27:49 -04003705 if (err)
3706 btrfs_free_logged_extents(log, log->log_transid);
Chris Masone02119d2008-09-05 16:13:11 -04003707 mutex_unlock(&BTRFS_I(inode)->log_mutex);
3708
3709 btrfs_free_path(path);
3710 btrfs_free_path(dst_path);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003711 return err;
Chris Masone02119d2008-09-05 16:13:11 -04003712}
3713
Chris Mason12fcfd22009-03-24 10:24:20 -04003714/*
3715 * follow the dentry parent pointers up the chain and see if any
3716 * of the directories in it require a full commit before they can
3717 * be logged. Returns zero if nothing special needs to be done or 1 if
3718 * a full commit is required.
3719 */
3720static noinline int check_parent_dirs_for_sync(struct btrfs_trans_handle *trans,
3721 struct inode *inode,
3722 struct dentry *parent,
3723 struct super_block *sb,
3724 u64 last_committed)
Chris Masone02119d2008-09-05 16:13:11 -04003725{
Chris Mason12fcfd22009-03-24 10:24:20 -04003726 int ret = 0;
3727 struct btrfs_root *root;
Josef Bacik6a912212010-11-20 09:48:00 +00003728 struct dentry *old_parent = NULL;
Chris Masone02119d2008-09-05 16:13:11 -04003729
Chris Masonaf4176b2009-03-24 10:24:31 -04003730 /*
3731 * for regular files, if its inode is already on disk, we don't
3732 * have to worry about the parents at all. This is because
3733 * we can use the last_unlink_trans field to record renames
3734 * and other fun in this file.
3735 */
3736 if (S_ISREG(inode->i_mode) &&
3737 BTRFS_I(inode)->generation <= last_committed &&
3738 BTRFS_I(inode)->last_unlink_trans <= last_committed)
3739 goto out;
3740
Chris Mason12fcfd22009-03-24 10:24:20 -04003741 if (!S_ISDIR(inode->i_mode)) {
3742 if (!parent || !parent->d_inode || sb != parent->d_inode->i_sb)
3743 goto out;
3744 inode = parent->d_inode;
3745 }
3746
3747 while (1) {
3748 BTRFS_I(inode)->logged_trans = trans->transid;
3749 smp_mb();
3750
3751 if (BTRFS_I(inode)->last_unlink_trans > last_committed) {
3752 root = BTRFS_I(inode)->root;
3753
3754 /*
3755 * make sure any commits to the log are forced
3756 * to be full commits
3757 */
3758 root->fs_info->last_trans_log_full_commit =
3759 trans->transid;
3760 ret = 1;
3761 break;
3762 }
3763
3764 if (!parent || !parent->d_inode || sb != parent->d_inode->i_sb)
3765 break;
3766
Yan, Zheng76dda932009-09-21 16:00:26 -04003767 if (IS_ROOT(parent))
Chris Mason12fcfd22009-03-24 10:24:20 -04003768 break;
3769
Josef Bacik6a912212010-11-20 09:48:00 +00003770 parent = dget_parent(parent);
3771 dput(old_parent);
3772 old_parent = parent;
Chris Mason12fcfd22009-03-24 10:24:20 -04003773 inode = parent->d_inode;
3774
3775 }
Josef Bacik6a912212010-11-20 09:48:00 +00003776 dput(old_parent);
Chris Mason12fcfd22009-03-24 10:24:20 -04003777out:
Chris Masone02119d2008-09-05 16:13:11 -04003778 return ret;
3779}
3780
3781/*
3782 * helper function around btrfs_log_inode to make sure newly created
3783 * parent directories also end up in the log. A minimal inode and backref
3784 * only logging is done of any parent directories that are older than
3785 * the last committed transaction
3786 */
Chris Mason12fcfd22009-03-24 10:24:20 -04003787int btrfs_log_inode_parent(struct btrfs_trans_handle *trans,
3788 struct btrfs_root *root, struct inode *inode,
3789 struct dentry *parent, int exists_only)
Chris Masone02119d2008-09-05 16:13:11 -04003790{
Chris Mason12fcfd22009-03-24 10:24:20 -04003791 int inode_only = exists_only ? LOG_INODE_EXISTS : LOG_INODE_ALL;
Chris Masone02119d2008-09-05 16:13:11 -04003792 struct super_block *sb;
Josef Bacik6a912212010-11-20 09:48:00 +00003793 struct dentry *old_parent = NULL;
Chris Mason12fcfd22009-03-24 10:24:20 -04003794 int ret = 0;
3795 u64 last_committed = root->fs_info->last_trans_committed;
3796
3797 sb = inode->i_sb;
3798
Sage Weil3a5e1402009-04-02 16:49:40 -04003799 if (btrfs_test_opt(root, NOTREELOG)) {
3800 ret = 1;
3801 goto end_no_trans;
3802 }
3803
Chris Mason12fcfd22009-03-24 10:24:20 -04003804 if (root->fs_info->last_trans_log_full_commit >
3805 root->fs_info->last_trans_committed) {
3806 ret = 1;
3807 goto end_no_trans;
3808 }
3809
Yan, Zheng76dda932009-09-21 16:00:26 -04003810 if (root != BTRFS_I(inode)->root ||
3811 btrfs_root_refs(&root->root_item) == 0) {
3812 ret = 1;
3813 goto end_no_trans;
3814 }
3815
Chris Mason12fcfd22009-03-24 10:24:20 -04003816 ret = check_parent_dirs_for_sync(trans, inode, parent,
3817 sb, last_committed);
3818 if (ret)
3819 goto end_no_trans;
Chris Masone02119d2008-09-05 16:13:11 -04003820
Josef Bacik22ee6982012-05-29 16:57:49 -04003821 if (btrfs_inode_in_log(inode, trans->transid)) {
Chris Mason257c62e2009-10-13 13:21:08 -04003822 ret = BTRFS_NO_LOG_SYNC;
3823 goto end_no_trans;
3824 }
3825
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003826 ret = start_log_trans(trans, root);
3827 if (ret)
3828 goto end_trans;
Chris Mason12fcfd22009-03-24 10:24:20 -04003829
3830 ret = btrfs_log_inode(trans, root, inode, inode_only);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003831 if (ret)
3832 goto end_trans;
Chris Mason12fcfd22009-03-24 10:24:20 -04003833
Chris Masonaf4176b2009-03-24 10:24:31 -04003834 /*
3835 * for regular files, if its inode is already on disk, we don't
3836 * have to worry about the parents at all. This is because
3837 * we can use the last_unlink_trans field to record renames
3838 * and other fun in this file.
3839 */
3840 if (S_ISREG(inode->i_mode) &&
3841 BTRFS_I(inode)->generation <= last_committed &&
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003842 BTRFS_I(inode)->last_unlink_trans <= last_committed) {
3843 ret = 0;
3844 goto end_trans;
3845 }
Chris Masonaf4176b2009-03-24 10:24:31 -04003846
3847 inode_only = LOG_INODE_EXISTS;
Chris Masond3977122009-01-05 21:25:51 -05003848 while (1) {
Chris Mason12fcfd22009-03-24 10:24:20 -04003849 if (!parent || !parent->d_inode || sb != parent->d_inode->i_sb)
Chris Masone02119d2008-09-05 16:13:11 -04003850 break;
3851
Chris Mason12fcfd22009-03-24 10:24:20 -04003852 inode = parent->d_inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04003853 if (root != BTRFS_I(inode)->root)
3854 break;
3855
Chris Mason12fcfd22009-03-24 10:24:20 -04003856 if (BTRFS_I(inode)->generation >
3857 root->fs_info->last_trans_committed) {
3858 ret = btrfs_log_inode(trans, root, inode, inode_only);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003859 if (ret)
3860 goto end_trans;
Chris Mason12fcfd22009-03-24 10:24:20 -04003861 }
Yan, Zheng76dda932009-09-21 16:00:26 -04003862 if (IS_ROOT(parent))
Chris Masone02119d2008-09-05 16:13:11 -04003863 break;
Chris Mason12fcfd22009-03-24 10:24:20 -04003864
Josef Bacik6a912212010-11-20 09:48:00 +00003865 parent = dget_parent(parent);
3866 dput(old_parent);
3867 old_parent = parent;
Chris Masone02119d2008-09-05 16:13:11 -04003868 }
Chris Mason12fcfd22009-03-24 10:24:20 -04003869 ret = 0;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003870end_trans:
Josef Bacik6a912212010-11-20 09:48:00 +00003871 dput(old_parent);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003872 if (ret < 0) {
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003873 root->fs_info->last_trans_log_full_commit = trans->transid;
3874 ret = 1;
3875 }
Chris Mason12fcfd22009-03-24 10:24:20 -04003876 btrfs_end_log_trans(root);
3877end_no_trans:
3878 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04003879}
3880
3881/*
3882 * it is not safe to log dentry if the chunk root has added new
3883 * chunks. This returns 0 if the dentry was logged, and 1 otherwise.
3884 * If this returns 1, you must commit the transaction to safely get your
3885 * data on disk.
3886 */
3887int btrfs_log_dentry_safe(struct btrfs_trans_handle *trans,
3888 struct btrfs_root *root, struct dentry *dentry)
3889{
Josef Bacik6a912212010-11-20 09:48:00 +00003890 struct dentry *parent = dget_parent(dentry);
3891 int ret;
3892
3893 ret = btrfs_log_inode_parent(trans, root, dentry->d_inode, parent, 0);
3894 dput(parent);
3895
3896 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04003897}
3898
3899/*
3900 * should be called during mount to recover any replay any log trees
3901 * from the FS
3902 */
3903int btrfs_recover_log_trees(struct btrfs_root *log_root_tree)
3904{
3905 int ret;
3906 struct btrfs_path *path;
3907 struct btrfs_trans_handle *trans;
3908 struct btrfs_key key;
3909 struct btrfs_key found_key;
3910 struct btrfs_key tmp_key;
3911 struct btrfs_root *log;
3912 struct btrfs_fs_info *fs_info = log_root_tree->fs_info;
3913 struct walk_control wc = {
3914 .process_func = process_one_buffer,
3915 .stage = 0,
3916 };
3917
Chris Masone02119d2008-09-05 16:13:11 -04003918 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003919 if (!path)
3920 return -ENOMEM;
3921
3922 fs_info->log_root_recovering = 1;
Chris Masone02119d2008-09-05 16:13:11 -04003923
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003924 trans = btrfs_start_transaction(fs_info->tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003925 if (IS_ERR(trans)) {
3926 ret = PTR_ERR(trans);
3927 goto error;
3928 }
Chris Masone02119d2008-09-05 16:13:11 -04003929
3930 wc.trans = trans;
3931 wc.pin = 1;
3932
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003933 ret = walk_log_tree(trans, log_root_tree, &wc);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003934 if (ret) {
3935 btrfs_error(fs_info, ret, "Failed to pin buffers while "
3936 "recovering log root tree.");
3937 goto error;
3938 }
Chris Masone02119d2008-09-05 16:13:11 -04003939
3940again:
3941 key.objectid = BTRFS_TREE_LOG_OBJECTID;
3942 key.offset = (u64)-1;
3943 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
3944
Chris Masond3977122009-01-05 21:25:51 -05003945 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04003946 ret = btrfs_search_slot(NULL, log_root_tree, &key, path, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003947
3948 if (ret < 0) {
3949 btrfs_error(fs_info, ret,
3950 "Couldn't find tree log root.");
3951 goto error;
3952 }
Chris Masone02119d2008-09-05 16:13:11 -04003953 if (ret > 0) {
3954 if (path->slots[0] == 0)
3955 break;
3956 path->slots[0]--;
3957 }
3958 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
3959 path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02003960 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003961 if (found_key.objectid != BTRFS_TREE_LOG_OBJECTID)
3962 break;
3963
3964 log = btrfs_read_fs_root_no_radix(log_root_tree,
3965 &found_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003966 if (IS_ERR(log)) {
3967 ret = PTR_ERR(log);
3968 btrfs_error(fs_info, ret,
3969 "Couldn't read tree log root.");
3970 goto error;
3971 }
Chris Masone02119d2008-09-05 16:13:11 -04003972
3973 tmp_key.objectid = found_key.offset;
3974 tmp_key.type = BTRFS_ROOT_ITEM_KEY;
3975 tmp_key.offset = (u64)-1;
3976
3977 wc.replay_dest = btrfs_read_fs_root_no_name(fs_info, &tmp_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003978 if (IS_ERR(wc.replay_dest)) {
3979 ret = PTR_ERR(wc.replay_dest);
3980 btrfs_error(fs_info, ret, "Couldn't read target root "
3981 "for tree log recovery.");
3982 goto error;
3983 }
Chris Masone02119d2008-09-05 16:13:11 -04003984
Yan Zheng07d400a2009-01-06 11:42:00 -05003985 wc.replay_dest->log_root = log;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003986 btrfs_record_root_in_trans(trans, wc.replay_dest);
Chris Masone02119d2008-09-05 16:13:11 -04003987 ret = walk_log_tree(trans, log, &wc);
3988 BUG_ON(ret);
3989
3990 if (wc.stage == LOG_WALK_REPLAY_ALL) {
3991 ret = fixup_inode_link_counts(trans, wc.replay_dest,
3992 path);
3993 BUG_ON(ret);
3994 }
Chris Masone02119d2008-09-05 16:13:11 -04003995
3996 key.offset = found_key.offset - 1;
Yan Zheng07d400a2009-01-06 11:42:00 -05003997 wc.replay_dest->log_root = NULL;
Chris Masone02119d2008-09-05 16:13:11 -04003998 free_extent_buffer(log->node);
Chris Masonb263c2c2009-06-11 11:24:47 -04003999 free_extent_buffer(log->commit_root);
Chris Masone02119d2008-09-05 16:13:11 -04004000 kfree(log);
4001
4002 if (found_key.offset == 0)
4003 break;
4004 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004005 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04004006
4007 /* step one is to pin it all, step two is to replay just inodes */
4008 if (wc.pin) {
4009 wc.pin = 0;
4010 wc.process_func = replay_one_buffer;
4011 wc.stage = LOG_WALK_REPLAY_INODES;
4012 goto again;
4013 }
4014 /* step three is to replay everything */
4015 if (wc.stage < LOG_WALK_REPLAY_ALL) {
4016 wc.stage++;
4017 goto again;
4018 }
4019
4020 btrfs_free_path(path);
4021
4022 free_extent_buffer(log_root_tree->node);
4023 log_root_tree->log_root = NULL;
4024 fs_info->log_root_recovering = 0;
4025
4026 /* step 4: commit the transaction, which also unpins the blocks */
4027 btrfs_commit_transaction(trans, fs_info->tree_root);
4028
4029 kfree(log_root_tree);
4030 return 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004031
4032error:
4033 btrfs_free_path(path);
4034 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04004035}
Chris Mason12fcfd22009-03-24 10:24:20 -04004036
4037/*
4038 * there are some corner cases where we want to force a full
4039 * commit instead of allowing a directory to be logged.
4040 *
4041 * They revolve around files there were unlinked from the directory, and
4042 * this function updates the parent directory so that a full commit is
4043 * properly done if it is fsync'd later after the unlinks are done.
4044 */
4045void btrfs_record_unlink_dir(struct btrfs_trans_handle *trans,
4046 struct inode *dir, struct inode *inode,
4047 int for_rename)
4048{
4049 /*
Chris Masonaf4176b2009-03-24 10:24:31 -04004050 * when we're logging a file, if it hasn't been renamed
4051 * or unlinked, and its inode is fully committed on disk,
4052 * we don't have to worry about walking up the directory chain
4053 * to log its parents.
4054 *
4055 * So, we use the last_unlink_trans field to put this transid
4056 * into the file. When the file is logged we check it and
4057 * don't log the parents if the file is fully on disk.
4058 */
4059 if (S_ISREG(inode->i_mode))
4060 BTRFS_I(inode)->last_unlink_trans = trans->transid;
4061
4062 /*
Chris Mason12fcfd22009-03-24 10:24:20 -04004063 * if this directory was already logged any new
4064 * names for this file/dir will get recorded
4065 */
4066 smp_mb();
4067 if (BTRFS_I(dir)->logged_trans == trans->transid)
4068 return;
4069
4070 /*
4071 * if the inode we're about to unlink was logged,
4072 * the log will be properly updated for any new names
4073 */
4074 if (BTRFS_I(inode)->logged_trans == trans->transid)
4075 return;
4076
4077 /*
4078 * when renaming files across directories, if the directory
4079 * there we're unlinking from gets fsync'd later on, there's
4080 * no way to find the destination directory later and fsync it
4081 * properly. So, we have to be conservative and force commits
4082 * so the new name gets discovered.
4083 */
4084 if (for_rename)
4085 goto record;
4086
4087 /* we can safely do the unlink without any special recording */
4088 return;
4089
4090record:
4091 BTRFS_I(dir)->last_unlink_trans = trans->transid;
4092}
4093
4094/*
4095 * Call this after adding a new name for a file and it will properly
4096 * update the log to reflect the new name.
4097 *
4098 * It will return zero if all goes well, and it will return 1 if a
4099 * full transaction commit is required.
4100 */
4101int btrfs_log_new_name(struct btrfs_trans_handle *trans,
4102 struct inode *inode, struct inode *old_dir,
4103 struct dentry *parent)
4104{
4105 struct btrfs_root * root = BTRFS_I(inode)->root;
4106
4107 /*
Chris Masonaf4176b2009-03-24 10:24:31 -04004108 * this will force the logging code to walk the dentry chain
4109 * up for the file
4110 */
4111 if (S_ISREG(inode->i_mode))
4112 BTRFS_I(inode)->last_unlink_trans = trans->transid;
4113
4114 /*
Chris Mason12fcfd22009-03-24 10:24:20 -04004115 * if this inode hasn't been logged and directory we're renaming it
4116 * from hasn't been logged, we don't need to log it
4117 */
4118 if (BTRFS_I(inode)->logged_trans <=
4119 root->fs_info->last_trans_committed &&
4120 (!old_dir || BTRFS_I(old_dir)->logged_trans <=
4121 root->fs_info->last_trans_committed))
4122 return 0;
4123
4124 return btrfs_log_inode_parent(trans, root, inode, parent, 1);
4125}
4126