blob: 7e0e6e3029dd4e36e9fd72e68b151ac991b66c12 [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>
Miao Xiec6adc9c2013-05-28 10:05:39 +000021#include <linux/blkdev.h>
Josef Bacik5dc562c2012-08-17 13:14:17 -040022#include <linux/list_sort.h>
Miao Xie995946d2014-04-02 19:51:06 +080023#include "tree-log.h"
Chris Masone02119d2008-09-05 16:13:11 -040024#include "disk-io.h"
25#include "locking.h"
26#include "print-tree.h"
Mark Fashehf1863732012-08-08 11:32:27 -070027#include "backref.h"
Mark Fashehf1863732012-08-08 11:32:27 -070028#include "hash.h"
Chris Masone02119d2008-09-05 16:13:11 -040029
30/* magic values for the inode_only field in btrfs_log_inode:
31 *
32 * LOG_INODE_ALL means to log everything
33 * LOG_INODE_EXISTS means to log just enough to recreate the inode
34 * during log replay
35 */
36#define LOG_INODE_ALL 0
37#define LOG_INODE_EXISTS 1
38
39/*
Chris Mason12fcfd22009-03-24 10:24:20 -040040 * directory trouble cases
41 *
42 * 1) on rename or unlink, if the inode being unlinked isn't in the fsync
43 * log, we must force a full commit before doing an fsync of the directory
44 * where the unlink was done.
45 * ---> record transid of last unlink/rename per directory
46 *
47 * mkdir foo/some_dir
48 * normal commit
49 * rename foo/some_dir foo2/some_dir
50 * mkdir foo/some_dir
51 * fsync foo/some_dir/some_file
52 *
53 * The fsync above will unlink the original some_dir without recording
54 * it in its new location (foo2). After a crash, some_dir will be gone
55 * unless the fsync of some_file forces a full commit
56 *
57 * 2) we must log any new names for any file or dir that is in the fsync
58 * log. ---> check inode while renaming/linking.
59 *
60 * 2a) we must log any new names for any file or dir during rename
61 * when the directory they are being removed from was logged.
62 * ---> check inode and old parent dir during rename
63 *
64 * 2a is actually the more important variant. With the extra logging
65 * a crash might unlink the old name without recreating the new one
66 *
67 * 3) after a crash, we must go through any directories with a link count
68 * of zero and redo the rm -rf
69 *
70 * mkdir f1/foo
71 * normal commit
72 * rm -rf f1/foo
73 * fsync(f1)
74 *
75 * The directory f1 was fully removed from the FS, but fsync was never
76 * called on f1, only its parent dir. After a crash the rm -rf must
77 * be replayed. This must be able to recurse down the entire
78 * directory tree. The inode link count fixup code takes care of the
79 * ugly details.
80 */
81
82/*
Chris Masone02119d2008-09-05 16:13:11 -040083 * stages for the tree walking. The first
84 * stage (0) is to only pin down the blocks we find
85 * the second stage (1) is to make sure that all the inodes
86 * we find in the log are created in the subvolume.
87 *
88 * The last stage is to deal with directories and links and extents
89 * and all the other fun semantics
90 */
91#define LOG_WALK_PIN_ONLY 0
92#define LOG_WALK_REPLAY_INODES 1
Josef Bacikdd8e7212013-09-11 11:57:23 -040093#define LOG_WALK_REPLAY_DIR_INDEX 2
94#define LOG_WALK_REPLAY_ALL 3
Chris Masone02119d2008-09-05 16:13:11 -040095
Chris Mason12fcfd22009-03-24 10:24:20 -040096static int btrfs_log_inode(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -040097 struct btrfs_root *root, struct inode *inode,
98 int inode_only);
Yan Zhengec051c02009-01-05 15:43:42 -050099static int link_to_fixup_dir(struct btrfs_trans_handle *trans,
100 struct btrfs_root *root,
101 struct btrfs_path *path, u64 objectid);
Chris Mason12fcfd22009-03-24 10:24:20 -0400102static noinline int replay_dir_deletes(struct btrfs_trans_handle *trans,
103 struct btrfs_root *root,
104 struct btrfs_root *log,
105 struct btrfs_path *path,
106 u64 dirid, int del_all);
Chris Masone02119d2008-09-05 16:13:11 -0400107
108/*
109 * tree logging is a special write ahead log used to make sure that
110 * fsyncs and O_SYNCs can happen without doing full tree commits.
111 *
112 * Full tree commits are expensive because they require commonly
113 * modified blocks to be recowed, creating many dirty pages in the
114 * extent tree an 4x-6x higher write load than ext3.
115 *
116 * Instead of doing a tree commit on every fsync, we use the
117 * key ranges and transaction ids to find items for a given file or directory
118 * that have changed in this transaction. Those items are copied into
119 * a special tree (one per subvolume root), that tree is written to disk
120 * and then the fsync is considered complete.
121 *
122 * After a crash, items are copied out of the log-tree back into the
123 * subvolume tree. Any file data extents found are recorded in the extent
124 * allocation tree, and the log-tree freed.
125 *
126 * The log tree is read three times, once to pin down all the extents it is
127 * using in ram and once, once to create all the inodes logged in the tree
128 * and once to do all the other items.
129 */
130
131/*
Chris Masone02119d2008-09-05 16:13:11 -0400132 * start a sub transaction and setup the log tree
133 * this increments the log tree writer count to make the people
134 * syncing the tree wait for us to finish
135 */
136static int start_log_trans(struct btrfs_trans_handle *trans,
Miao Xie8b050d32014-02-20 18:08:58 +0800137 struct btrfs_root *root,
138 struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -0400139{
Miao Xie8b050d32014-02-20 18:08:58 +0800140 int index;
Chris Masone02119d2008-09-05 16:13:11 -0400141 int ret;
Yan Zheng7237f182009-01-21 12:54:03 -0500142
143 mutex_lock(&root->log_mutex);
144 if (root->log_root) {
Miao Xie995946d2014-04-02 19:51:06 +0800145 if (btrfs_need_log_full_commit(root->fs_info, trans)) {
Miao Xie50471a32014-02-20 18:08:57 +0800146 ret = -EAGAIN;
147 goto out;
148 }
Josef Bacikff782e02009-10-08 15:30:04 -0400149 if (!root->log_start_pid) {
150 root->log_start_pid = current->pid;
Miao Xie27cdeb72014-04-02 19:51:05 +0800151 clear_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state);
Josef Bacikff782e02009-10-08 15:30:04 -0400152 } else if (root->log_start_pid != current->pid) {
Miao Xie27cdeb72014-04-02 19:51:05 +0800153 set_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state);
Josef Bacikff782e02009-10-08 15:30:04 -0400154 }
155
Miao Xie2ecb7922012-09-06 04:04:27 -0600156 atomic_inc(&root->log_batch);
Yan Zheng7237f182009-01-21 12:54:03 -0500157 atomic_inc(&root->log_writers);
Miao Xie8b050d32014-02-20 18:08:58 +0800158 if (ctx) {
159 index = root->log_transid % 2;
160 list_add_tail(&ctx->list, &root->log_ctxs[index]);
Miao Xied1433de2014-02-20 18:08:59 +0800161 ctx->log_transid = root->log_transid;
Miao Xie8b050d32014-02-20 18:08:58 +0800162 }
Yan Zheng7237f182009-01-21 12:54:03 -0500163 mutex_unlock(&root->log_mutex);
164 return 0;
165 }
Miao Xiee87ac132014-02-20 18:08:53 +0800166
167 ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -0400168 mutex_lock(&root->fs_info->tree_log_mutex);
Miao Xiee87ac132014-02-20 18:08:53 +0800169 if (!root->fs_info->log_root_tree)
Chris Masone02119d2008-09-05 16:13:11 -0400170 ret = btrfs_init_log_root_tree(trans, root->fs_info);
Miao Xiee87ac132014-02-20 18:08:53 +0800171 mutex_unlock(&root->fs_info->tree_log_mutex);
172 if (ret)
173 goto out;
174
175 if (!root->log_root) {
Chris Masone02119d2008-09-05 16:13:11 -0400176 ret = btrfs_add_log_tree(trans, root);
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400177 if (ret)
Miao Xiee87ac132014-02-20 18:08:53 +0800178 goto out;
Chris Masone02119d2008-09-05 16:13:11 -0400179 }
Miao Xie27cdeb72014-04-02 19:51:05 +0800180 clear_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state);
Miao Xiee87ac132014-02-20 18:08:53 +0800181 root->log_start_pid = current->pid;
Miao Xie2ecb7922012-09-06 04:04:27 -0600182 atomic_inc(&root->log_batch);
Yan Zheng7237f182009-01-21 12:54:03 -0500183 atomic_inc(&root->log_writers);
Miao Xie8b050d32014-02-20 18:08:58 +0800184 if (ctx) {
185 index = root->log_transid % 2;
186 list_add_tail(&ctx->list, &root->log_ctxs[index]);
Miao Xied1433de2014-02-20 18:08:59 +0800187 ctx->log_transid = root->log_transid;
Miao Xie8b050d32014-02-20 18:08:58 +0800188 }
Miao Xiee87ac132014-02-20 18:08:53 +0800189out:
Yan Zheng7237f182009-01-21 12:54:03 -0500190 mutex_unlock(&root->log_mutex);
Miao Xiee87ac132014-02-20 18:08:53 +0800191 return ret;
Chris Masone02119d2008-09-05 16:13:11 -0400192}
193
194/*
195 * returns 0 if there was a log transaction running and we were able
196 * to join, or returns -ENOENT if there were not transactions
197 * in progress
198 */
199static int join_running_log_trans(struct btrfs_root *root)
200{
201 int ret = -ENOENT;
202
203 smp_mb();
204 if (!root->log_root)
205 return -ENOENT;
206
Yan Zheng7237f182009-01-21 12:54:03 -0500207 mutex_lock(&root->log_mutex);
Chris Masone02119d2008-09-05 16:13:11 -0400208 if (root->log_root) {
209 ret = 0;
Yan Zheng7237f182009-01-21 12:54:03 -0500210 atomic_inc(&root->log_writers);
Chris Masone02119d2008-09-05 16:13:11 -0400211 }
Yan Zheng7237f182009-01-21 12:54:03 -0500212 mutex_unlock(&root->log_mutex);
Chris Masone02119d2008-09-05 16:13:11 -0400213 return ret;
214}
215
216/*
Chris Mason12fcfd22009-03-24 10:24:20 -0400217 * This either makes the current running log transaction wait
218 * until you call btrfs_end_log_trans() or it makes any future
219 * log transactions wait until you call btrfs_end_log_trans()
220 */
221int btrfs_pin_log_trans(struct btrfs_root *root)
222{
223 int ret = -ENOENT;
224
225 mutex_lock(&root->log_mutex);
226 atomic_inc(&root->log_writers);
227 mutex_unlock(&root->log_mutex);
228 return ret;
229}
230
231/*
Chris Masone02119d2008-09-05 16:13:11 -0400232 * indicate we're done making changes to the log tree
233 * and wake up anyone waiting to do a sync
234 */
Jeff Mahoney143bede2012-03-01 14:56:26 +0100235void btrfs_end_log_trans(struct btrfs_root *root)
Chris Masone02119d2008-09-05 16:13:11 -0400236{
Yan Zheng7237f182009-01-21 12:54:03 -0500237 if (atomic_dec_and_test(&root->log_writers)) {
238 smp_mb();
239 if (waitqueue_active(&root->log_writer_wait))
240 wake_up(&root->log_writer_wait);
241 }
Chris Masone02119d2008-09-05 16:13:11 -0400242}
243
244
245/*
246 * the walk control struct is used to pass state down the chain when
247 * processing the log tree. The stage field tells us which part
248 * of the log tree processing we are currently doing. The others
249 * are state fields used for that specific part
250 */
251struct walk_control {
252 /* should we free the extent on disk when done? This is used
253 * at transaction commit time while freeing a log tree
254 */
255 int free;
256
257 /* should we write out the extent buffer? This is used
258 * while flushing the log tree to disk during a sync
259 */
260 int write;
261
262 /* should we wait for the extent buffer io to finish? Also used
263 * while flushing the log tree to disk for a sync
264 */
265 int wait;
266
267 /* pin only walk, we record which extents on disk belong to the
268 * log trees
269 */
270 int pin;
271
272 /* what stage of the replay code we're currently in */
273 int stage;
274
275 /* the root we are currently replaying */
276 struct btrfs_root *replay_dest;
277
278 /* the trans handle for the current replay */
279 struct btrfs_trans_handle *trans;
280
281 /* the function that gets used to process blocks we find in the
282 * tree. Note the extent_buffer might not be up to date when it is
283 * passed in, and it must be checked or read if you need the data
284 * inside it
285 */
286 int (*process_func)(struct btrfs_root *log, struct extent_buffer *eb,
287 struct walk_control *wc, u64 gen);
288};
289
290/*
291 * process_func used to pin down extents, write them or wait on them
292 */
293static int process_one_buffer(struct btrfs_root *log,
294 struct extent_buffer *eb,
295 struct walk_control *wc, u64 gen)
296{
Josef Bacikb50c6e22013-04-25 15:55:30 -0400297 int ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -0400298
Josef Bacik8c2a1a32013-06-06 13:19:32 -0400299 /*
300 * If this fs is mixed then we need to be able to process the leaves to
301 * pin down any logged extents, so we have to read the block.
302 */
303 if (btrfs_fs_incompat(log->fs_info, MIXED_GROUPS)) {
304 ret = btrfs_read_buffer(eb, gen);
305 if (ret)
306 return ret;
307 }
308
Josef Bacikb50c6e22013-04-25 15:55:30 -0400309 if (wc->pin)
310 ret = btrfs_pin_extent_for_log_replay(log->fs_info->extent_root,
311 eb->start, eb->len);
312
313 if (!ret && btrfs_buffer_uptodate(eb, gen, 0)) {
Josef Bacik8c2a1a32013-06-06 13:19:32 -0400314 if (wc->pin && btrfs_header_level(eb) == 0)
315 ret = btrfs_exclude_logged_extents(log, eb);
Chris Masone02119d2008-09-05 16:13:11 -0400316 if (wc->write)
317 btrfs_write_tree_block(eb);
318 if (wc->wait)
319 btrfs_wait_tree_block_writeback(eb);
320 }
Josef Bacikb50c6e22013-04-25 15:55:30 -0400321 return ret;
Chris Masone02119d2008-09-05 16:13:11 -0400322}
323
324/*
325 * Item overwrite used by replay and tree logging. eb, slot and key all refer
326 * to the src data we are copying out.
327 *
328 * root is the tree we are copying into, and path is a scratch
329 * path for use in this function (it should be released on entry and
330 * will be released on exit).
331 *
332 * If the key is already in the destination tree the existing item is
333 * overwritten. If the existing item isn't big enough, it is extended.
334 * If it is too large, it is truncated.
335 *
336 * If the key isn't in the destination yet, a new item is inserted.
337 */
338static noinline int overwrite_item(struct btrfs_trans_handle *trans,
339 struct btrfs_root *root,
340 struct btrfs_path *path,
341 struct extent_buffer *eb, int slot,
342 struct btrfs_key *key)
343{
344 int ret;
345 u32 item_size;
346 u64 saved_i_size = 0;
347 int save_old_i_size = 0;
348 unsigned long src_ptr;
349 unsigned long dst_ptr;
350 int overwrite_root = 0;
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000351 bool inode_item = key->type == BTRFS_INODE_ITEM_KEY;
Chris Masone02119d2008-09-05 16:13:11 -0400352
353 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID)
354 overwrite_root = 1;
355
356 item_size = btrfs_item_size_nr(eb, slot);
357 src_ptr = btrfs_item_ptr_offset(eb, slot);
358
359 /* look for the key in the destination tree */
360 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000361 if (ret < 0)
362 return ret;
363
Chris Masone02119d2008-09-05 16:13:11 -0400364 if (ret == 0) {
365 char *src_copy;
366 char *dst_copy;
367 u32 dst_size = btrfs_item_size_nr(path->nodes[0],
368 path->slots[0]);
369 if (dst_size != item_size)
370 goto insert;
371
372 if (item_size == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200373 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400374 return 0;
375 }
376 dst_copy = kmalloc(item_size, GFP_NOFS);
377 src_copy = kmalloc(item_size, GFP_NOFS);
liubo2a29edc2011-01-26 06:22:08 +0000378 if (!dst_copy || !src_copy) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200379 btrfs_release_path(path);
liubo2a29edc2011-01-26 06:22:08 +0000380 kfree(dst_copy);
381 kfree(src_copy);
382 return -ENOMEM;
383 }
Chris Masone02119d2008-09-05 16:13:11 -0400384
385 read_extent_buffer(eb, src_copy, src_ptr, item_size);
386
387 dst_ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]);
388 read_extent_buffer(path->nodes[0], dst_copy, dst_ptr,
389 item_size);
390 ret = memcmp(dst_copy, src_copy, item_size);
391
392 kfree(dst_copy);
393 kfree(src_copy);
394 /*
395 * they have the same contents, just return, this saves
396 * us from cowing blocks in the destination tree and doing
397 * extra writes that may not have been done by a previous
398 * sync
399 */
400 if (ret == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200401 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400402 return 0;
403 }
404
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000405 /*
406 * We need to load the old nbytes into the inode so when we
407 * replay the extents we've logged we get the right nbytes.
408 */
409 if (inode_item) {
410 struct btrfs_inode_item *item;
411 u64 nbytes;
Josef Bacikd5554382013-09-11 14:17:00 -0400412 u32 mode;
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000413
414 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
415 struct btrfs_inode_item);
416 nbytes = btrfs_inode_nbytes(path->nodes[0], item);
417 item = btrfs_item_ptr(eb, slot,
418 struct btrfs_inode_item);
419 btrfs_set_inode_nbytes(eb, item, nbytes);
Josef Bacikd5554382013-09-11 14:17:00 -0400420
421 /*
422 * If this is a directory we need to reset the i_size to
423 * 0 so that we can set it up properly when replaying
424 * the rest of the items in this log.
425 */
426 mode = btrfs_inode_mode(eb, item);
427 if (S_ISDIR(mode))
428 btrfs_set_inode_size(eb, item, 0);
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000429 }
430 } else if (inode_item) {
431 struct btrfs_inode_item *item;
Josef Bacikd5554382013-09-11 14:17:00 -0400432 u32 mode;
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000433
434 /*
435 * New inode, set nbytes to 0 so that the nbytes comes out
436 * properly when we replay the extents.
437 */
438 item = btrfs_item_ptr(eb, slot, struct btrfs_inode_item);
439 btrfs_set_inode_nbytes(eb, item, 0);
Josef Bacikd5554382013-09-11 14:17:00 -0400440
441 /*
442 * If this is a directory we need to reset the i_size to 0 so
443 * that we can set it up properly when replaying the rest of
444 * the items in this log.
445 */
446 mode = btrfs_inode_mode(eb, item);
447 if (S_ISDIR(mode))
448 btrfs_set_inode_size(eb, item, 0);
Chris Masone02119d2008-09-05 16:13:11 -0400449 }
450insert:
David Sterbab3b4aa72011-04-21 01:20:15 +0200451 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400452 /* try to insert the key into the destination tree */
453 ret = btrfs_insert_empty_item(trans, root, path,
454 key, item_size);
455
456 /* make sure any existing item is the correct size */
457 if (ret == -EEXIST) {
458 u32 found_size;
459 found_size = btrfs_item_size_nr(path->nodes[0],
460 path->slots[0]);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100461 if (found_size > item_size)
Tsutomu Itohafe5fea2013-04-16 05:18:22 +0000462 btrfs_truncate_item(root, path, item_size, 1);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100463 else if (found_size < item_size)
Tsutomu Itoh4b90c682013-04-16 05:18:49 +0000464 btrfs_extend_item(root, path,
Jeff Mahoney143bede2012-03-01 14:56:26 +0100465 item_size - found_size);
Chris Masone02119d2008-09-05 16:13:11 -0400466 } else if (ret) {
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400467 return ret;
Chris Masone02119d2008-09-05 16:13:11 -0400468 }
469 dst_ptr = btrfs_item_ptr_offset(path->nodes[0],
470 path->slots[0]);
471
472 /* don't overwrite an existing inode if the generation number
473 * was logged as zero. This is done when the tree logging code
474 * is just logging an inode to make sure it exists after recovery.
475 *
476 * Also, don't overwrite i_size on directories during replay.
477 * log replay inserts and removes directory items based on the
478 * state of the tree found in the subvolume, and i_size is modified
479 * as it goes
480 */
481 if (key->type == BTRFS_INODE_ITEM_KEY && ret == -EEXIST) {
482 struct btrfs_inode_item *src_item;
483 struct btrfs_inode_item *dst_item;
484
485 src_item = (struct btrfs_inode_item *)src_ptr;
486 dst_item = (struct btrfs_inode_item *)dst_ptr;
487
488 if (btrfs_inode_generation(eb, src_item) == 0)
489 goto no_copy;
490
491 if (overwrite_root &&
492 S_ISDIR(btrfs_inode_mode(eb, src_item)) &&
493 S_ISDIR(btrfs_inode_mode(path->nodes[0], dst_item))) {
494 save_old_i_size = 1;
495 saved_i_size = btrfs_inode_size(path->nodes[0],
496 dst_item);
497 }
498 }
499
500 copy_extent_buffer(path->nodes[0], eb, dst_ptr,
501 src_ptr, item_size);
502
503 if (save_old_i_size) {
504 struct btrfs_inode_item *dst_item;
505 dst_item = (struct btrfs_inode_item *)dst_ptr;
506 btrfs_set_inode_size(path->nodes[0], dst_item, saved_i_size);
507 }
508
509 /* make sure the generation is filled in */
510 if (key->type == BTRFS_INODE_ITEM_KEY) {
511 struct btrfs_inode_item *dst_item;
512 dst_item = (struct btrfs_inode_item *)dst_ptr;
513 if (btrfs_inode_generation(path->nodes[0], dst_item) == 0) {
514 btrfs_set_inode_generation(path->nodes[0], dst_item,
515 trans->transid);
516 }
517 }
518no_copy:
519 btrfs_mark_buffer_dirty(path->nodes[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +0200520 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400521 return 0;
522}
523
524/*
525 * simple helper to read an inode off the disk from a given root
526 * This can only be called for subvolume roots and not for the log
527 */
528static noinline struct inode *read_one_inode(struct btrfs_root *root,
529 u64 objectid)
530{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400531 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -0400532 struct inode *inode;
Chris Masone02119d2008-09-05 16:13:11 -0400533
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400534 key.objectid = objectid;
535 key.type = BTRFS_INODE_ITEM_KEY;
536 key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +0000537 inode = btrfs_iget(root->fs_info->sb, &key, root, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400538 if (IS_ERR(inode)) {
539 inode = NULL;
540 } else if (is_bad_inode(inode)) {
Chris Masone02119d2008-09-05 16:13:11 -0400541 iput(inode);
542 inode = NULL;
543 }
544 return inode;
545}
546
547/* replays a single extent in 'eb' at 'slot' with 'key' into the
548 * subvolume 'root'. path is released on entry and should be released
549 * on exit.
550 *
551 * extents in the log tree have not been allocated out of the extent
552 * tree yet. So, this completes the allocation, taking a reference
553 * as required if the extent already exists or creating a new extent
554 * if it isn't in the extent allocation tree yet.
555 *
556 * The extent is inserted into the file, dropping any existing extents
557 * from the file that overlap the new one.
558 */
559static noinline int replay_one_extent(struct btrfs_trans_handle *trans,
560 struct btrfs_root *root,
561 struct btrfs_path *path,
562 struct extent_buffer *eb, int slot,
563 struct btrfs_key *key)
564{
565 int found_type;
Chris Masone02119d2008-09-05 16:13:11 -0400566 u64 extent_end;
Chris Masone02119d2008-09-05 16:13:11 -0400567 u64 start = key->offset;
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000568 u64 nbytes = 0;
Chris Masone02119d2008-09-05 16:13:11 -0400569 struct btrfs_file_extent_item *item;
570 struct inode *inode = NULL;
571 unsigned long size;
572 int ret = 0;
573
574 item = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item);
575 found_type = btrfs_file_extent_type(eb, item);
576
Yan Zhengd899e052008-10-30 14:25:28 -0400577 if (found_type == BTRFS_FILE_EXTENT_REG ||
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000578 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
579 nbytes = btrfs_file_extent_num_bytes(eb, item);
580 extent_end = start + nbytes;
581
582 /*
583 * We don't add to the inodes nbytes if we are prealloc or a
584 * hole.
585 */
586 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
587 nbytes = 0;
588 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason514ac8a2014-01-03 21:07:00 -0800589 size = btrfs_file_extent_inline_len(eb, slot, item);
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000590 nbytes = btrfs_file_extent_ram_bytes(eb, item);
Qu Wenruofda28322013-02-26 08:10:22 +0000591 extent_end = ALIGN(start + size, root->sectorsize);
Chris Masone02119d2008-09-05 16:13:11 -0400592 } else {
593 ret = 0;
594 goto out;
595 }
596
597 inode = read_one_inode(root, key->objectid);
598 if (!inode) {
599 ret = -EIO;
600 goto out;
601 }
602
603 /*
604 * first check to see if we already have this extent in the
605 * file. This must be done before the btrfs_drop_extents run
606 * so we don't try to drop this extent.
607 */
Li Zefan33345d012011-04-20 10:31:50 +0800608 ret = btrfs_lookup_file_extent(trans, root, path, btrfs_ino(inode),
Chris Masone02119d2008-09-05 16:13:11 -0400609 start, 0);
610
Yan Zhengd899e052008-10-30 14:25:28 -0400611 if (ret == 0 &&
612 (found_type == BTRFS_FILE_EXTENT_REG ||
613 found_type == BTRFS_FILE_EXTENT_PREALLOC)) {
Chris Masone02119d2008-09-05 16:13:11 -0400614 struct btrfs_file_extent_item cmp1;
615 struct btrfs_file_extent_item cmp2;
616 struct btrfs_file_extent_item *existing;
617 struct extent_buffer *leaf;
618
619 leaf = path->nodes[0];
620 existing = btrfs_item_ptr(leaf, path->slots[0],
621 struct btrfs_file_extent_item);
622
623 read_extent_buffer(eb, &cmp1, (unsigned long)item,
624 sizeof(cmp1));
625 read_extent_buffer(leaf, &cmp2, (unsigned long)existing,
626 sizeof(cmp2));
627
628 /*
629 * we already have a pointer to this exact extent,
630 * we don't have to do anything
631 */
632 if (memcmp(&cmp1, &cmp2, sizeof(cmp1)) == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200633 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400634 goto out;
635 }
636 }
David Sterbab3b4aa72011-04-21 01:20:15 +0200637 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400638
639 /* drop any overlapping extents */
Josef Bacik26714852012-08-29 12:24:27 -0400640 ret = btrfs_drop_extents(trans, root, inode, start, extent_end, 1);
Josef Bacik36508602013-04-25 16:23:32 -0400641 if (ret)
642 goto out;
Chris Masone02119d2008-09-05 16:13:11 -0400643
Yan Zheng07d400a2009-01-06 11:42:00 -0500644 if (found_type == BTRFS_FILE_EXTENT_REG ||
645 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400646 u64 offset;
Yan Zheng07d400a2009-01-06 11:42:00 -0500647 unsigned long dest_offset;
648 struct btrfs_key ins;
Chris Masone02119d2008-09-05 16:13:11 -0400649
Yan Zheng07d400a2009-01-06 11:42:00 -0500650 ret = btrfs_insert_empty_item(trans, root, path, key,
651 sizeof(*item));
Josef Bacik36508602013-04-25 16:23:32 -0400652 if (ret)
653 goto out;
Yan Zheng07d400a2009-01-06 11:42:00 -0500654 dest_offset = btrfs_item_ptr_offset(path->nodes[0],
655 path->slots[0]);
656 copy_extent_buffer(path->nodes[0], eb, dest_offset,
657 (unsigned long)item, sizeof(*item));
658
659 ins.objectid = btrfs_file_extent_disk_bytenr(eb, item);
660 ins.offset = btrfs_file_extent_disk_num_bytes(eb, item);
661 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400662 offset = key->offset - btrfs_file_extent_offset(eb, item);
Yan Zheng07d400a2009-01-06 11:42:00 -0500663
664 if (ins.objectid > 0) {
665 u64 csum_start;
666 u64 csum_end;
667 LIST_HEAD(ordered_sums);
668 /*
669 * is this extent already allocated in the extent
670 * allocation tree? If so, just add a reference
671 */
672 ret = btrfs_lookup_extent(root, ins.objectid,
673 ins.offset);
674 if (ret == 0) {
675 ret = btrfs_inc_extent_ref(trans, root,
676 ins.objectid, ins.offset,
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400677 0, root->root_key.objectid,
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200678 key->objectid, offset, 0);
Josef Bacikb50c6e22013-04-25 15:55:30 -0400679 if (ret)
680 goto out;
Yan Zheng07d400a2009-01-06 11:42:00 -0500681 } else {
682 /*
683 * insert the extent pointer in the extent
684 * allocation tree
685 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400686 ret = btrfs_alloc_logged_file_extent(trans,
687 root, root->root_key.objectid,
688 key->objectid, offset, &ins);
Josef Bacikb50c6e22013-04-25 15:55:30 -0400689 if (ret)
690 goto out;
Yan Zheng07d400a2009-01-06 11:42:00 -0500691 }
David Sterbab3b4aa72011-04-21 01:20:15 +0200692 btrfs_release_path(path);
Yan Zheng07d400a2009-01-06 11:42:00 -0500693
694 if (btrfs_file_extent_compression(eb, item)) {
695 csum_start = ins.objectid;
696 csum_end = csum_start + ins.offset;
697 } else {
698 csum_start = ins.objectid +
699 btrfs_file_extent_offset(eb, item);
700 csum_end = csum_start +
701 btrfs_file_extent_num_bytes(eb, item);
702 }
703
704 ret = btrfs_lookup_csums_range(root->log_root,
705 csum_start, csum_end - 1,
Arne Jansena2de7332011-03-08 14:14:00 +0100706 &ordered_sums, 0);
Josef Bacik36508602013-04-25 16:23:32 -0400707 if (ret)
708 goto out;
Yan Zheng07d400a2009-01-06 11:42:00 -0500709 while (!list_empty(&ordered_sums)) {
710 struct btrfs_ordered_sum *sums;
711 sums = list_entry(ordered_sums.next,
712 struct btrfs_ordered_sum,
713 list);
Josef Bacik36508602013-04-25 16:23:32 -0400714 if (!ret)
715 ret = btrfs_csum_file_blocks(trans,
Yan Zheng07d400a2009-01-06 11:42:00 -0500716 root->fs_info->csum_root,
717 sums);
Yan Zheng07d400a2009-01-06 11:42:00 -0500718 list_del(&sums->list);
719 kfree(sums);
720 }
Josef Bacik36508602013-04-25 16:23:32 -0400721 if (ret)
722 goto out;
Yan Zheng07d400a2009-01-06 11:42:00 -0500723 } else {
David Sterbab3b4aa72011-04-21 01:20:15 +0200724 btrfs_release_path(path);
Yan Zheng07d400a2009-01-06 11:42:00 -0500725 }
726 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
727 /* inline extents are easy, we just overwrite them */
728 ret = overwrite_item(trans, root, path, eb, slot, key);
Josef Bacik36508602013-04-25 16:23:32 -0400729 if (ret)
730 goto out;
Yan Zheng07d400a2009-01-06 11:42:00 -0500731 }
732
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000733 inode_add_bytes(inode, nbytes);
Tsutomu Itohb9959292012-06-25 21:25:22 -0600734 ret = btrfs_update_inode(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -0400735out:
736 if (inode)
737 iput(inode);
738 return ret;
739}
740
741/*
742 * when cleaning up conflicts between the directory names in the
743 * subvolume, directory names in the log and directory names in the
744 * inode back references, we may have to unlink inodes from directories.
745 *
746 * This is a helper function to do the unlink of a specific directory
747 * item
748 */
749static noinline int drop_one_dir_item(struct btrfs_trans_handle *trans,
750 struct btrfs_root *root,
751 struct btrfs_path *path,
752 struct inode *dir,
753 struct btrfs_dir_item *di)
754{
755 struct inode *inode;
756 char *name;
757 int name_len;
758 struct extent_buffer *leaf;
759 struct btrfs_key location;
760 int ret;
761
762 leaf = path->nodes[0];
763
764 btrfs_dir_item_key_to_cpu(leaf, di, &location);
765 name_len = btrfs_dir_name_len(leaf, di);
766 name = kmalloc(name_len, GFP_NOFS);
liubo2a29edc2011-01-26 06:22:08 +0000767 if (!name)
768 return -ENOMEM;
769
Chris Masone02119d2008-09-05 16:13:11 -0400770 read_extent_buffer(leaf, name, (unsigned long)(di + 1), name_len);
David Sterbab3b4aa72011-04-21 01:20:15 +0200771 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400772
773 inode = read_one_inode(root, location.objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +0000774 if (!inode) {
Josef Bacik36508602013-04-25 16:23:32 -0400775 ret = -EIO;
776 goto out;
Tsutomu Itohc00e9492011-04-28 09:10:23 +0000777 }
Chris Masone02119d2008-09-05 16:13:11 -0400778
Yan Zhengec051c02009-01-05 15:43:42 -0500779 ret = link_to_fixup_dir(trans, root, path, location.objectid);
Josef Bacik36508602013-04-25 16:23:32 -0400780 if (ret)
781 goto out;
Chris Mason12fcfd22009-03-24 10:24:20 -0400782
Chris Masone02119d2008-09-05 16:13:11 -0400783 ret = btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
Josef Bacik36508602013-04-25 16:23:32 -0400784 if (ret)
785 goto out;
Filipe David Borba Mananaada9af22013-08-05 09:25:47 +0100786 else
787 ret = btrfs_run_delayed_items(trans, root);
Josef Bacik36508602013-04-25 16:23:32 -0400788out:
789 kfree(name);
790 iput(inode);
Chris Masone02119d2008-09-05 16:13:11 -0400791 return ret;
792}
793
794/*
795 * helper function to see if a given name and sequence number found
796 * in an inode back reference are already in a directory and correctly
797 * point to this inode
798 */
799static noinline int inode_in_dir(struct btrfs_root *root,
800 struct btrfs_path *path,
801 u64 dirid, u64 objectid, u64 index,
802 const char *name, int name_len)
803{
804 struct btrfs_dir_item *di;
805 struct btrfs_key location;
806 int match = 0;
807
808 di = btrfs_lookup_dir_index_item(NULL, root, path, dirid,
809 index, name, name_len, 0);
810 if (di && !IS_ERR(di)) {
811 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location);
812 if (location.objectid != objectid)
813 goto out;
814 } else
815 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +0200816 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400817
818 di = btrfs_lookup_dir_item(NULL, root, path, dirid, name, name_len, 0);
819 if (di && !IS_ERR(di)) {
820 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location);
821 if (location.objectid != objectid)
822 goto out;
823 } else
824 goto out;
825 match = 1;
826out:
David Sterbab3b4aa72011-04-21 01:20:15 +0200827 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400828 return match;
829}
830
831/*
832 * helper function to check a log tree for a named back reference in
833 * an inode. This is used to decide if a back reference that is
834 * found in the subvolume conflicts with what we find in the log.
835 *
836 * inode backreferences may have multiple refs in a single item,
837 * during replay we process one reference at a time, and we don't
838 * want to delete valid links to a file from the subvolume if that
839 * link is also in the log.
840 */
841static noinline int backref_in_log(struct btrfs_root *log,
842 struct btrfs_key *key,
Mark Fashehf1863732012-08-08 11:32:27 -0700843 u64 ref_objectid,
Chris Masone02119d2008-09-05 16:13:11 -0400844 char *name, int namelen)
845{
846 struct btrfs_path *path;
847 struct btrfs_inode_ref *ref;
848 unsigned long ptr;
849 unsigned long ptr_end;
850 unsigned long name_ptr;
851 int found_name_len;
852 int item_size;
853 int ret;
854 int match = 0;
855
856 path = btrfs_alloc_path();
liubo2a29edc2011-01-26 06:22:08 +0000857 if (!path)
858 return -ENOMEM;
859
Chris Masone02119d2008-09-05 16:13:11 -0400860 ret = btrfs_search_slot(NULL, log, key, path, 0, 0);
861 if (ret != 0)
862 goto out;
863
Chris Masone02119d2008-09-05 16:13:11 -0400864 ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]);
Mark Fashehf1863732012-08-08 11:32:27 -0700865
866 if (key->type == BTRFS_INODE_EXTREF_KEY) {
867 if (btrfs_find_name_in_ext_backref(path, ref_objectid,
868 name, namelen, NULL))
869 match = 1;
870
871 goto out;
872 }
873
874 item_size = btrfs_item_size_nr(path->nodes[0], path->slots[0]);
Chris Masone02119d2008-09-05 16:13:11 -0400875 ptr_end = ptr + item_size;
876 while (ptr < ptr_end) {
877 ref = (struct btrfs_inode_ref *)ptr;
878 found_name_len = btrfs_inode_ref_name_len(path->nodes[0], ref);
879 if (found_name_len == namelen) {
880 name_ptr = (unsigned long)(ref + 1);
881 ret = memcmp_extent_buffer(path->nodes[0], name,
882 name_ptr, namelen);
883 if (ret == 0) {
884 match = 1;
885 goto out;
886 }
887 }
888 ptr = (unsigned long)(ref + 1) + found_name_len;
889 }
890out:
891 btrfs_free_path(path);
892 return match;
893}
894
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700895static inline int __add_inode_ref(struct btrfs_trans_handle *trans,
896 struct btrfs_root *root,
897 struct btrfs_path *path,
898 struct btrfs_root *log_root,
899 struct inode *dir, struct inode *inode,
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700900 struct extent_buffer *eb,
Mark Fashehf1863732012-08-08 11:32:27 -0700901 u64 inode_objectid, u64 parent_objectid,
902 u64 ref_index, char *name, int namelen,
903 int *search_done)
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700904{
905 int ret;
Mark Fashehf1863732012-08-08 11:32:27 -0700906 char *victim_name;
907 int victim_name_len;
908 struct extent_buffer *leaf;
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700909 struct btrfs_dir_item *di;
Mark Fashehf1863732012-08-08 11:32:27 -0700910 struct btrfs_key search_key;
911 struct btrfs_inode_extref *extref;
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700912
Mark Fashehf1863732012-08-08 11:32:27 -0700913again:
914 /* Search old style refs */
915 search_key.objectid = inode_objectid;
916 search_key.type = BTRFS_INODE_REF_KEY;
917 search_key.offset = parent_objectid;
918 ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0);
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700919 if (ret == 0) {
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700920 struct btrfs_inode_ref *victim_ref;
921 unsigned long ptr;
922 unsigned long ptr_end;
Mark Fashehf1863732012-08-08 11:32:27 -0700923
924 leaf = path->nodes[0];
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700925
926 /* are we trying to overwrite a back ref for the root directory
927 * if so, just jump out, we're done
928 */
Mark Fashehf1863732012-08-08 11:32:27 -0700929 if (search_key.objectid == search_key.offset)
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700930 return 1;
931
932 /* check all the names in this back reference to see
933 * if they are in the log. if so, we allow them to stay
934 * otherwise they must be unlinked as a conflict
935 */
936 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
937 ptr_end = ptr + btrfs_item_size_nr(leaf, path->slots[0]);
938 while (ptr < ptr_end) {
939 victim_ref = (struct btrfs_inode_ref *)ptr;
940 victim_name_len = btrfs_inode_ref_name_len(leaf,
941 victim_ref);
942 victim_name = kmalloc(victim_name_len, GFP_NOFS);
Josef Bacik36508602013-04-25 16:23:32 -0400943 if (!victim_name)
944 return -ENOMEM;
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700945
946 read_extent_buffer(leaf, victim_name,
947 (unsigned long)(victim_ref + 1),
948 victim_name_len);
949
Mark Fashehf1863732012-08-08 11:32:27 -0700950 if (!backref_in_log(log_root, &search_key,
951 parent_objectid,
952 victim_name,
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700953 victim_name_len)) {
Zach Brown8b558c52013-10-16 12:10:34 -0700954 inc_nlink(inode);
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700955 btrfs_release_path(path);
956
957 ret = btrfs_unlink_inode(trans, root, dir,
958 inode, victim_name,
959 victim_name_len);
Mark Fashehf1863732012-08-08 11:32:27 -0700960 kfree(victim_name);
Josef Bacik36508602013-04-25 16:23:32 -0400961 if (ret)
962 return ret;
Filipe David Borba Mananaada9af22013-08-05 09:25:47 +0100963 ret = btrfs_run_delayed_items(trans, root);
964 if (ret)
965 return ret;
Mark Fashehf1863732012-08-08 11:32:27 -0700966 *search_done = 1;
967 goto again;
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700968 }
969 kfree(victim_name);
Mark Fashehf1863732012-08-08 11:32:27 -0700970
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700971 ptr = (unsigned long)(victim_ref + 1) + victim_name_len;
972 }
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700973
974 /*
975 * NOTE: we have searched root tree and checked the
976 * coresponding ref, it does not need to check again.
977 */
978 *search_done = 1;
979 }
980 btrfs_release_path(path);
981
Mark Fashehf1863732012-08-08 11:32:27 -0700982 /* Same search but for extended refs */
983 extref = btrfs_lookup_inode_extref(NULL, root, path, name, namelen,
984 inode_objectid, parent_objectid, 0,
985 0);
986 if (!IS_ERR_OR_NULL(extref)) {
987 u32 item_size;
988 u32 cur_offset = 0;
989 unsigned long base;
990 struct inode *victim_parent;
991
992 leaf = path->nodes[0];
993
994 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
995 base = btrfs_item_ptr_offset(leaf, path->slots[0]);
996
997 while (cur_offset < item_size) {
998 extref = (struct btrfs_inode_extref *)base + cur_offset;
999
1000 victim_name_len = btrfs_inode_extref_name_len(leaf, extref);
1001
1002 if (btrfs_inode_extref_parent(leaf, extref) != parent_objectid)
1003 goto next;
1004
1005 victim_name = kmalloc(victim_name_len, GFP_NOFS);
Josef Bacik36508602013-04-25 16:23:32 -04001006 if (!victim_name)
1007 return -ENOMEM;
Mark Fashehf1863732012-08-08 11:32:27 -07001008 read_extent_buffer(leaf, victim_name, (unsigned long)&extref->name,
1009 victim_name_len);
1010
1011 search_key.objectid = inode_objectid;
1012 search_key.type = BTRFS_INODE_EXTREF_KEY;
1013 search_key.offset = btrfs_extref_hash(parent_objectid,
1014 victim_name,
1015 victim_name_len);
1016 ret = 0;
1017 if (!backref_in_log(log_root, &search_key,
1018 parent_objectid, victim_name,
1019 victim_name_len)) {
1020 ret = -ENOENT;
1021 victim_parent = read_one_inode(root,
1022 parent_objectid);
1023 if (victim_parent) {
Zach Brown8b558c52013-10-16 12:10:34 -07001024 inc_nlink(inode);
Mark Fashehf1863732012-08-08 11:32:27 -07001025 btrfs_release_path(path);
1026
1027 ret = btrfs_unlink_inode(trans, root,
1028 victim_parent,
1029 inode,
1030 victim_name,
1031 victim_name_len);
Filipe David Borba Mananaada9af22013-08-05 09:25:47 +01001032 if (!ret)
1033 ret = btrfs_run_delayed_items(
1034 trans, root);
Mark Fashehf1863732012-08-08 11:32:27 -07001035 }
Mark Fashehf1863732012-08-08 11:32:27 -07001036 iput(victim_parent);
1037 kfree(victim_name);
Josef Bacik36508602013-04-25 16:23:32 -04001038 if (ret)
1039 return ret;
Mark Fashehf1863732012-08-08 11:32:27 -07001040 *search_done = 1;
1041 goto again;
1042 }
1043 kfree(victim_name);
Josef Bacik36508602013-04-25 16:23:32 -04001044 if (ret)
1045 return ret;
Mark Fashehf1863732012-08-08 11:32:27 -07001046next:
1047 cur_offset += victim_name_len + sizeof(*extref);
1048 }
1049 *search_done = 1;
1050 }
1051 btrfs_release_path(path);
1052
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001053 /* look for a conflicting sequence number */
1054 di = btrfs_lookup_dir_index_item(trans, root, path, btrfs_ino(dir),
Mark Fashehf1863732012-08-08 11:32:27 -07001055 ref_index, name, namelen, 0);
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001056 if (di && !IS_ERR(di)) {
1057 ret = drop_one_dir_item(trans, root, path, dir, di);
Josef Bacik36508602013-04-25 16:23:32 -04001058 if (ret)
1059 return ret;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001060 }
1061 btrfs_release_path(path);
1062
1063 /* look for a conflicing name */
1064 di = btrfs_lookup_dir_item(trans, root, path, btrfs_ino(dir),
1065 name, namelen, 0);
1066 if (di && !IS_ERR(di)) {
1067 ret = drop_one_dir_item(trans, root, path, dir, di);
Josef Bacik36508602013-04-25 16:23:32 -04001068 if (ret)
1069 return ret;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001070 }
1071 btrfs_release_path(path);
1072
1073 return 0;
1074}
Chris Masone02119d2008-09-05 16:13:11 -04001075
Mark Fashehf1863732012-08-08 11:32:27 -07001076static int extref_get_fields(struct extent_buffer *eb, unsigned long ref_ptr,
1077 u32 *namelen, char **name, u64 *index,
1078 u64 *parent_objectid)
1079{
1080 struct btrfs_inode_extref *extref;
1081
1082 extref = (struct btrfs_inode_extref *)ref_ptr;
1083
1084 *namelen = btrfs_inode_extref_name_len(eb, extref);
1085 *name = kmalloc(*namelen, GFP_NOFS);
1086 if (*name == NULL)
1087 return -ENOMEM;
1088
1089 read_extent_buffer(eb, *name, (unsigned long)&extref->name,
1090 *namelen);
1091
1092 *index = btrfs_inode_extref_index(eb, extref);
1093 if (parent_objectid)
1094 *parent_objectid = btrfs_inode_extref_parent(eb, extref);
1095
1096 return 0;
1097}
1098
1099static int ref_get_fields(struct extent_buffer *eb, unsigned long ref_ptr,
1100 u32 *namelen, char **name, u64 *index)
1101{
1102 struct btrfs_inode_ref *ref;
1103
1104 ref = (struct btrfs_inode_ref *)ref_ptr;
1105
1106 *namelen = btrfs_inode_ref_name_len(eb, ref);
1107 *name = kmalloc(*namelen, GFP_NOFS);
1108 if (*name == NULL)
1109 return -ENOMEM;
1110
1111 read_extent_buffer(eb, *name, (unsigned long)(ref + 1), *namelen);
1112
1113 *index = btrfs_inode_ref_index(eb, ref);
1114
1115 return 0;
1116}
1117
Chris Masone02119d2008-09-05 16:13:11 -04001118/*
1119 * replay one inode back reference item found in the log tree.
1120 * eb, slot and key refer to the buffer and key found in the log tree.
1121 * root is the destination we are replaying into, and path is for temp
1122 * use by this function. (it should be released on return).
1123 */
1124static noinline int add_inode_ref(struct btrfs_trans_handle *trans,
1125 struct btrfs_root *root,
1126 struct btrfs_root *log,
1127 struct btrfs_path *path,
1128 struct extent_buffer *eb, int slot,
1129 struct btrfs_key *key)
1130{
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001131 struct inode *dir = NULL;
1132 struct inode *inode = NULL;
Chris Masone02119d2008-09-05 16:13:11 -04001133 unsigned long ref_ptr;
1134 unsigned long ref_end;
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001135 char *name = NULL;
liubo34f3e4f2011-08-06 08:35:23 +00001136 int namelen;
1137 int ret;
liuboc622ae62011-03-26 08:01:12 -04001138 int search_done = 0;
Mark Fashehf1863732012-08-08 11:32:27 -07001139 int log_ref_ver = 0;
1140 u64 parent_objectid;
1141 u64 inode_objectid;
Chris Masonf46dbe3de2012-10-09 11:17:20 -04001142 u64 ref_index = 0;
Mark Fashehf1863732012-08-08 11:32:27 -07001143 int ref_struct_size;
1144
1145 ref_ptr = btrfs_item_ptr_offset(eb, slot);
1146 ref_end = ref_ptr + btrfs_item_size_nr(eb, slot);
1147
1148 if (key->type == BTRFS_INODE_EXTREF_KEY) {
1149 struct btrfs_inode_extref *r;
1150
1151 ref_struct_size = sizeof(struct btrfs_inode_extref);
1152 log_ref_ver = 1;
1153 r = (struct btrfs_inode_extref *)ref_ptr;
1154 parent_objectid = btrfs_inode_extref_parent(eb, r);
1155 } else {
1156 ref_struct_size = sizeof(struct btrfs_inode_ref);
1157 parent_objectid = key->offset;
1158 }
1159 inode_objectid = key->objectid;
Chris Masone02119d2008-09-05 16:13:11 -04001160
Chris Masone02119d2008-09-05 16:13:11 -04001161 /*
1162 * it is possible that we didn't log all the parent directories
1163 * for a given inode. If we don't find the dir, just don't
1164 * copy the back ref in. The link count fixup code will take
1165 * care of the rest
1166 */
Mark Fashehf1863732012-08-08 11:32:27 -07001167 dir = read_one_inode(root, parent_objectid);
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001168 if (!dir) {
1169 ret = -ENOENT;
1170 goto out;
1171 }
Chris Masone02119d2008-09-05 16:13:11 -04001172
Mark Fashehf1863732012-08-08 11:32:27 -07001173 inode = read_one_inode(root, inode_objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001174 if (!inode) {
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001175 ret = -EIO;
1176 goto out;
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001177 }
Chris Masone02119d2008-09-05 16:13:11 -04001178
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001179 while (ref_ptr < ref_end) {
Mark Fashehf1863732012-08-08 11:32:27 -07001180 if (log_ref_ver) {
1181 ret = extref_get_fields(eb, ref_ptr, &namelen, &name,
1182 &ref_index, &parent_objectid);
1183 /*
1184 * parent object can change from one array
1185 * item to another.
1186 */
1187 if (!dir)
1188 dir = read_one_inode(root, parent_objectid);
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001189 if (!dir) {
1190 ret = -ENOENT;
1191 goto out;
1192 }
Mark Fashehf1863732012-08-08 11:32:27 -07001193 } else {
1194 ret = ref_get_fields(eb, ref_ptr, &namelen, &name,
1195 &ref_index);
1196 }
1197 if (ret)
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001198 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001199
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001200 /* if we already have a perfect match, we're done */
1201 if (!inode_in_dir(root, path, btrfs_ino(dir), btrfs_ino(inode),
Mark Fashehf1863732012-08-08 11:32:27 -07001202 ref_index, name, namelen)) {
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001203 /*
1204 * look for a conflicting back reference in the
1205 * metadata. if we find one we have to unlink that name
1206 * of the file before we add our new link. Later on, we
1207 * overwrite any existing back reference, and we don't
1208 * want to create dangling pointers in the directory.
1209 */
Chris Masone02119d2008-09-05 16:13:11 -04001210
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001211 if (!search_done) {
1212 ret = __add_inode_ref(trans, root, path, log,
Mark Fashehf1863732012-08-08 11:32:27 -07001213 dir, inode, eb,
1214 inode_objectid,
1215 parent_objectid,
1216 ref_index, name, namelen,
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001217 &search_done);
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001218 if (ret) {
1219 if (ret == 1)
1220 ret = 0;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001221 goto out;
Josef Bacik36508602013-04-25 16:23:32 -04001222 }
Chris Masone02119d2008-09-05 16:13:11 -04001223 }
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001224
1225 /* insert our name */
1226 ret = btrfs_add_link(trans, dir, inode, name, namelen,
Mark Fashehf1863732012-08-08 11:32:27 -07001227 0, ref_index);
Josef Bacik36508602013-04-25 16:23:32 -04001228 if (ret)
1229 goto out;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001230
1231 btrfs_update_inode(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -04001232 }
liuboc622ae62011-03-26 08:01:12 -04001233
Mark Fashehf1863732012-08-08 11:32:27 -07001234 ref_ptr = (unsigned long)(ref_ptr + ref_struct_size) + namelen;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001235 kfree(name);
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001236 name = NULL;
Mark Fashehf1863732012-08-08 11:32:27 -07001237 if (log_ref_ver) {
1238 iput(dir);
1239 dir = NULL;
1240 }
Chris Masone02119d2008-09-05 16:13:11 -04001241 }
Chris Masone02119d2008-09-05 16:13:11 -04001242
1243 /* finally write the back reference in the inode */
1244 ret = overwrite_item(trans, root, path, eb, slot, key);
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001245out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001246 btrfs_release_path(path);
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001247 kfree(name);
Chris Masone02119d2008-09-05 16:13:11 -04001248 iput(dir);
1249 iput(inode);
Josef Bacik36508602013-04-25 16:23:32 -04001250 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001251}
1252
Yan, Zhengc71bf092009-11-12 09:34:40 +00001253static int insert_orphan_item(struct btrfs_trans_handle *trans,
1254 struct btrfs_root *root, u64 offset)
1255{
1256 int ret;
Kelley Nielsen3f870c22013-11-04 19:37:39 -08001257 ret = btrfs_find_item(root, NULL, BTRFS_ORPHAN_OBJECTID,
1258 offset, BTRFS_ORPHAN_ITEM_KEY, NULL);
Yan, Zhengc71bf092009-11-12 09:34:40 +00001259 if (ret > 0)
1260 ret = btrfs_insert_orphan_item(trans, root, offset);
1261 return ret;
1262}
1263
Mark Fashehf1863732012-08-08 11:32:27 -07001264static int count_inode_extrefs(struct btrfs_root *root,
1265 struct inode *inode, struct btrfs_path *path)
Chris Masone02119d2008-09-05 16:13:11 -04001266{
Mark Fashehf1863732012-08-08 11:32:27 -07001267 int ret = 0;
1268 int name_len;
1269 unsigned int nlink = 0;
1270 u32 item_size;
1271 u32 cur_offset = 0;
1272 u64 inode_objectid = btrfs_ino(inode);
1273 u64 offset = 0;
1274 unsigned long ptr;
1275 struct btrfs_inode_extref *extref;
1276 struct extent_buffer *leaf;
1277
1278 while (1) {
1279 ret = btrfs_find_one_extref(root, inode_objectid, offset, path,
1280 &extref, &offset);
1281 if (ret)
1282 break;
1283
1284 leaf = path->nodes[0];
1285 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1286 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
1287
1288 while (cur_offset < item_size) {
1289 extref = (struct btrfs_inode_extref *) (ptr + cur_offset);
1290 name_len = btrfs_inode_extref_name_len(leaf, extref);
1291
1292 nlink++;
1293
1294 cur_offset += name_len + sizeof(*extref);
1295 }
1296
1297 offset++;
1298 btrfs_release_path(path);
1299 }
1300 btrfs_release_path(path);
1301
1302 if (ret < 0)
1303 return ret;
1304 return nlink;
1305}
1306
1307static int count_inode_refs(struct btrfs_root *root,
1308 struct inode *inode, struct btrfs_path *path)
1309{
Chris Masone02119d2008-09-05 16:13:11 -04001310 int ret;
1311 struct btrfs_key key;
Mark Fashehf1863732012-08-08 11:32:27 -07001312 unsigned int nlink = 0;
Chris Masone02119d2008-09-05 16:13:11 -04001313 unsigned long ptr;
1314 unsigned long ptr_end;
1315 int name_len;
Li Zefan33345d012011-04-20 10:31:50 +08001316 u64 ino = btrfs_ino(inode);
Chris Masone02119d2008-09-05 16:13:11 -04001317
Li Zefan33345d012011-04-20 10:31:50 +08001318 key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04001319 key.type = BTRFS_INODE_REF_KEY;
1320 key.offset = (u64)-1;
1321
Chris Masond3977122009-01-05 21:25:51 -05001322 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04001323 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1324 if (ret < 0)
1325 break;
1326 if (ret > 0) {
1327 if (path->slots[0] == 0)
1328 break;
1329 path->slots[0]--;
1330 }
Filipe David Borba Mananae93ae262013-10-14 22:49:11 +01001331process_slot:
Chris Masone02119d2008-09-05 16:13:11 -04001332 btrfs_item_key_to_cpu(path->nodes[0], &key,
1333 path->slots[0]);
Li Zefan33345d012011-04-20 10:31:50 +08001334 if (key.objectid != ino ||
Chris Masone02119d2008-09-05 16:13:11 -04001335 key.type != BTRFS_INODE_REF_KEY)
1336 break;
1337 ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]);
1338 ptr_end = ptr + btrfs_item_size_nr(path->nodes[0],
1339 path->slots[0]);
Chris Masond3977122009-01-05 21:25:51 -05001340 while (ptr < ptr_end) {
Chris Masone02119d2008-09-05 16:13:11 -04001341 struct btrfs_inode_ref *ref;
1342
1343 ref = (struct btrfs_inode_ref *)ptr;
1344 name_len = btrfs_inode_ref_name_len(path->nodes[0],
1345 ref);
1346 ptr = (unsigned long)(ref + 1) + name_len;
1347 nlink++;
1348 }
1349
1350 if (key.offset == 0)
1351 break;
Filipe David Borba Mananae93ae262013-10-14 22:49:11 +01001352 if (path->slots[0] > 0) {
1353 path->slots[0]--;
1354 goto process_slot;
1355 }
Chris Masone02119d2008-09-05 16:13:11 -04001356 key.offset--;
David Sterbab3b4aa72011-04-21 01:20:15 +02001357 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001358 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001359 btrfs_release_path(path);
Mark Fashehf1863732012-08-08 11:32:27 -07001360
1361 return nlink;
1362}
1363
1364/*
1365 * There are a few corners where the link count of the file can't
1366 * be properly maintained during replay. So, instead of adding
1367 * lots of complexity to the log code, we just scan the backrefs
1368 * for any file that has been through replay.
1369 *
1370 * The scan will update the link count on the inode to reflect the
1371 * number of back refs found. If it goes down to zero, the iput
1372 * will free the inode.
1373 */
1374static noinline int fixup_inode_link_count(struct btrfs_trans_handle *trans,
1375 struct btrfs_root *root,
1376 struct inode *inode)
1377{
1378 struct btrfs_path *path;
1379 int ret;
1380 u64 nlink = 0;
1381 u64 ino = btrfs_ino(inode);
1382
1383 path = btrfs_alloc_path();
1384 if (!path)
1385 return -ENOMEM;
1386
1387 ret = count_inode_refs(root, inode, path);
1388 if (ret < 0)
1389 goto out;
1390
1391 nlink = ret;
1392
1393 ret = count_inode_extrefs(root, inode, path);
1394 if (ret == -ENOENT)
1395 ret = 0;
1396
1397 if (ret < 0)
1398 goto out;
1399
1400 nlink += ret;
1401
1402 ret = 0;
1403
Chris Masone02119d2008-09-05 16:13:11 -04001404 if (nlink != inode->i_nlink) {
Miklos Szeredibfe86842011-10-28 14:13:29 +02001405 set_nlink(inode, nlink);
Chris Masone02119d2008-09-05 16:13:11 -04001406 btrfs_update_inode(trans, root, inode);
1407 }
Chris Mason8d5bf1c2008-09-11 15:51:21 -04001408 BTRFS_I(inode)->index_cnt = (u64)-1;
Chris Masone02119d2008-09-05 16:13:11 -04001409
Yan, Zhengc71bf092009-11-12 09:34:40 +00001410 if (inode->i_nlink == 0) {
1411 if (S_ISDIR(inode->i_mode)) {
1412 ret = replay_dir_deletes(trans, root, NULL, path,
Li Zefan33345d012011-04-20 10:31:50 +08001413 ino, 1);
Josef Bacik36508602013-04-25 16:23:32 -04001414 if (ret)
1415 goto out;
Yan, Zhengc71bf092009-11-12 09:34:40 +00001416 }
Li Zefan33345d012011-04-20 10:31:50 +08001417 ret = insert_orphan_item(trans, root, ino);
Chris Mason12fcfd22009-03-24 10:24:20 -04001418 }
Chris Mason12fcfd22009-03-24 10:24:20 -04001419
Mark Fashehf1863732012-08-08 11:32:27 -07001420out:
1421 btrfs_free_path(path);
1422 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001423}
1424
1425static noinline int fixup_inode_link_counts(struct btrfs_trans_handle *trans,
1426 struct btrfs_root *root,
1427 struct btrfs_path *path)
1428{
1429 int ret;
1430 struct btrfs_key key;
1431 struct inode *inode;
1432
1433 key.objectid = BTRFS_TREE_LOG_FIXUP_OBJECTID;
1434 key.type = BTRFS_ORPHAN_ITEM_KEY;
1435 key.offset = (u64)-1;
Chris Masond3977122009-01-05 21:25:51 -05001436 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04001437 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1438 if (ret < 0)
1439 break;
1440
1441 if (ret == 1) {
1442 if (path->slots[0] == 0)
1443 break;
1444 path->slots[0]--;
1445 }
1446
1447 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1448 if (key.objectid != BTRFS_TREE_LOG_FIXUP_OBJECTID ||
1449 key.type != BTRFS_ORPHAN_ITEM_KEY)
1450 break;
1451
1452 ret = btrfs_del_item(trans, root, path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00001453 if (ret)
1454 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001455
David Sterbab3b4aa72011-04-21 01:20:15 +02001456 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001457 inode = read_one_inode(root, key.offset);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001458 if (!inode)
1459 return -EIO;
Chris Masone02119d2008-09-05 16:13:11 -04001460
1461 ret = fixup_inode_link_count(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -04001462 iput(inode);
Josef Bacik36508602013-04-25 16:23:32 -04001463 if (ret)
1464 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001465
Chris Mason12fcfd22009-03-24 10:24:20 -04001466 /*
1467 * fixup on a directory may create new entries,
1468 * make sure we always look for the highset possible
1469 * offset
1470 */
1471 key.offset = (u64)-1;
Chris Masone02119d2008-09-05 16:13:11 -04001472 }
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00001473 ret = 0;
1474out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001475 btrfs_release_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00001476 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001477}
1478
1479
1480/*
1481 * record a given inode in the fixup dir so we can check its link
1482 * count when replay is done. The link count is incremented here
1483 * so the inode won't go away until we check it
1484 */
1485static noinline int link_to_fixup_dir(struct btrfs_trans_handle *trans,
1486 struct btrfs_root *root,
1487 struct btrfs_path *path,
1488 u64 objectid)
1489{
1490 struct btrfs_key key;
1491 int ret = 0;
1492 struct inode *inode;
1493
1494 inode = read_one_inode(root, objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001495 if (!inode)
1496 return -EIO;
Chris Masone02119d2008-09-05 16:13:11 -04001497
1498 key.objectid = BTRFS_TREE_LOG_FIXUP_OBJECTID;
1499 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
1500 key.offset = objectid;
1501
1502 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
1503
David Sterbab3b4aa72011-04-21 01:20:15 +02001504 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001505 if (ret == 0) {
Josef Bacik9bf7a482013-03-01 13:35:47 -05001506 if (!inode->i_nlink)
1507 set_nlink(inode, 1);
1508 else
Zach Brown8b558c52013-10-16 12:10:34 -07001509 inc_nlink(inode);
Tsutomu Itohb9959292012-06-25 21:25:22 -06001510 ret = btrfs_update_inode(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -04001511 } else if (ret == -EEXIST) {
1512 ret = 0;
1513 } else {
Josef Bacik36508602013-04-25 16:23:32 -04001514 BUG(); /* Logic Error */
Chris Masone02119d2008-09-05 16:13:11 -04001515 }
1516 iput(inode);
1517
1518 return ret;
1519}
1520
1521/*
1522 * when replaying the log for a directory, we only insert names
1523 * for inodes that actually exist. This means an fsync on a directory
1524 * does not implicitly fsync all the new files in it
1525 */
1526static noinline int insert_one_name(struct btrfs_trans_handle *trans,
1527 struct btrfs_root *root,
1528 struct btrfs_path *path,
1529 u64 dirid, u64 index,
1530 char *name, int name_len, u8 type,
1531 struct btrfs_key *location)
1532{
1533 struct inode *inode;
1534 struct inode *dir;
1535 int ret;
1536
1537 inode = read_one_inode(root, location->objectid);
1538 if (!inode)
1539 return -ENOENT;
1540
1541 dir = read_one_inode(root, dirid);
1542 if (!dir) {
1543 iput(inode);
1544 return -EIO;
1545 }
Josef Bacikd5554382013-09-11 14:17:00 -04001546
Chris Masone02119d2008-09-05 16:13:11 -04001547 ret = btrfs_add_link(trans, dir, inode, name, name_len, 1, index);
1548
1549 /* FIXME, put inode into FIXUP list */
1550
1551 iput(inode);
1552 iput(dir);
1553 return ret;
1554}
1555
1556/*
1557 * take a single entry in a log directory item and replay it into
1558 * the subvolume.
1559 *
1560 * if a conflicting item exists in the subdirectory already,
1561 * the inode it points to is unlinked and put into the link count
1562 * fix up tree.
1563 *
1564 * If a name from the log points to a file or directory that does
1565 * not exist in the FS, it is skipped. fsyncs on directories
1566 * do not force down inodes inside that directory, just changes to the
1567 * names or unlinks in a directory.
1568 */
1569static noinline int replay_one_name(struct btrfs_trans_handle *trans,
1570 struct btrfs_root *root,
1571 struct btrfs_path *path,
1572 struct extent_buffer *eb,
1573 struct btrfs_dir_item *di,
1574 struct btrfs_key *key)
1575{
1576 char *name;
1577 int name_len;
1578 struct btrfs_dir_item *dst_di;
1579 struct btrfs_key found_key;
1580 struct btrfs_key log_key;
1581 struct inode *dir;
Chris Masone02119d2008-09-05 16:13:11 -04001582 u8 log_type;
Chris Mason4bef0842008-09-08 11:18:08 -04001583 int exists;
Josef Bacik36508602013-04-25 16:23:32 -04001584 int ret = 0;
Josef Bacikd5554382013-09-11 14:17:00 -04001585 bool update_size = (key->type == BTRFS_DIR_INDEX_KEY);
Chris Masone02119d2008-09-05 16:13:11 -04001586
1587 dir = read_one_inode(root, key->objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001588 if (!dir)
1589 return -EIO;
Chris Masone02119d2008-09-05 16:13:11 -04001590
1591 name_len = btrfs_dir_name_len(eb, di);
1592 name = kmalloc(name_len, GFP_NOFS);
Filipe David Borba Manana2bac3252013-08-04 19:58:57 +01001593 if (!name) {
1594 ret = -ENOMEM;
1595 goto out;
1596 }
liubo2a29edc2011-01-26 06:22:08 +00001597
Chris Masone02119d2008-09-05 16:13:11 -04001598 log_type = btrfs_dir_type(eb, di);
1599 read_extent_buffer(eb, name, (unsigned long)(di + 1),
1600 name_len);
1601
1602 btrfs_dir_item_key_to_cpu(eb, di, &log_key);
Chris Mason4bef0842008-09-08 11:18:08 -04001603 exists = btrfs_lookup_inode(trans, root, path, &log_key, 0);
1604 if (exists == 0)
1605 exists = 1;
1606 else
1607 exists = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02001608 btrfs_release_path(path);
Chris Mason4bef0842008-09-08 11:18:08 -04001609
Chris Masone02119d2008-09-05 16:13:11 -04001610 if (key->type == BTRFS_DIR_ITEM_KEY) {
1611 dst_di = btrfs_lookup_dir_item(trans, root, path, key->objectid,
1612 name, name_len, 1);
Chris Masond3977122009-01-05 21:25:51 -05001613 } else if (key->type == BTRFS_DIR_INDEX_KEY) {
Chris Masone02119d2008-09-05 16:13:11 -04001614 dst_di = btrfs_lookup_dir_index_item(trans, root, path,
1615 key->objectid,
1616 key->offset, name,
1617 name_len, 1);
1618 } else {
Josef Bacik36508602013-04-25 16:23:32 -04001619 /* Corruption */
1620 ret = -EINVAL;
1621 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001622 }
David Sterbac7040052011-04-19 18:00:01 +02001623 if (IS_ERR_OR_NULL(dst_di)) {
Chris Masone02119d2008-09-05 16:13:11 -04001624 /* we need a sequence number to insert, so we only
1625 * do inserts for the BTRFS_DIR_INDEX_KEY types
1626 */
1627 if (key->type != BTRFS_DIR_INDEX_KEY)
1628 goto out;
1629 goto insert;
1630 }
1631
1632 btrfs_dir_item_key_to_cpu(path->nodes[0], dst_di, &found_key);
1633 /* the existing item matches the logged item */
1634 if (found_key.objectid == log_key.objectid &&
1635 found_key.type == log_key.type &&
1636 found_key.offset == log_key.offset &&
1637 btrfs_dir_type(path->nodes[0], dst_di) == log_type) {
1638 goto out;
1639 }
1640
1641 /*
1642 * don't drop the conflicting directory entry if the inode
1643 * for the new entry doesn't exist
1644 */
Chris Mason4bef0842008-09-08 11:18:08 -04001645 if (!exists)
Chris Masone02119d2008-09-05 16:13:11 -04001646 goto out;
1647
Chris Masone02119d2008-09-05 16:13:11 -04001648 ret = drop_one_dir_item(trans, root, path, dir, dst_di);
Josef Bacik36508602013-04-25 16:23:32 -04001649 if (ret)
1650 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001651
1652 if (key->type == BTRFS_DIR_INDEX_KEY)
1653 goto insert;
1654out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001655 btrfs_release_path(path);
Josef Bacikd5554382013-09-11 14:17:00 -04001656 if (!ret && update_size) {
1657 btrfs_i_size_write(dir, dir->i_size + name_len * 2);
1658 ret = btrfs_update_inode(trans, root, dir);
1659 }
Chris Masone02119d2008-09-05 16:13:11 -04001660 kfree(name);
1661 iput(dir);
Josef Bacik36508602013-04-25 16:23:32 -04001662 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001663
1664insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02001665 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001666 ret = insert_one_name(trans, root, path, key->objectid, key->offset,
1667 name, name_len, log_type, &log_key);
Josef Bacik36508602013-04-25 16:23:32 -04001668 if (ret && ret != -ENOENT)
1669 goto out;
Josef Bacikd5554382013-09-11 14:17:00 -04001670 update_size = false;
Josef Bacik36508602013-04-25 16:23:32 -04001671 ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -04001672 goto out;
1673}
1674
1675/*
1676 * find all the names in a directory item and reconcile them into
1677 * the subvolume. Only BTRFS_DIR_ITEM_KEY types will have more than
1678 * one name in a directory item, but the same code gets used for
1679 * both directory index types
1680 */
1681static noinline int replay_one_dir_item(struct btrfs_trans_handle *trans,
1682 struct btrfs_root *root,
1683 struct btrfs_path *path,
1684 struct extent_buffer *eb, int slot,
1685 struct btrfs_key *key)
1686{
1687 int ret;
1688 u32 item_size = btrfs_item_size_nr(eb, slot);
1689 struct btrfs_dir_item *di;
1690 int name_len;
1691 unsigned long ptr;
1692 unsigned long ptr_end;
1693
1694 ptr = btrfs_item_ptr_offset(eb, slot);
1695 ptr_end = ptr + item_size;
Chris Masond3977122009-01-05 21:25:51 -05001696 while (ptr < ptr_end) {
Chris Masone02119d2008-09-05 16:13:11 -04001697 di = (struct btrfs_dir_item *)ptr;
Josef Bacik22a94d42011-03-16 16:47:17 -04001698 if (verify_dir_item(root, eb, di))
1699 return -EIO;
Chris Masone02119d2008-09-05 16:13:11 -04001700 name_len = btrfs_dir_name_len(eb, di);
1701 ret = replay_one_name(trans, root, path, eb, di, key);
Josef Bacik36508602013-04-25 16:23:32 -04001702 if (ret)
1703 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001704 ptr = (unsigned long)(di + 1);
1705 ptr += name_len;
1706 }
1707 return 0;
1708}
1709
1710/*
1711 * directory replay has two parts. There are the standard directory
1712 * items in the log copied from the subvolume, and range items
1713 * created in the log while the subvolume was logged.
1714 *
1715 * The range items tell us which parts of the key space the log
1716 * is authoritative for. During replay, if a key in the subvolume
1717 * directory is in a logged range item, but not actually in the log
1718 * that means it was deleted from the directory before the fsync
1719 * and should be removed.
1720 */
1721static noinline int find_dir_range(struct btrfs_root *root,
1722 struct btrfs_path *path,
1723 u64 dirid, int key_type,
1724 u64 *start_ret, u64 *end_ret)
1725{
1726 struct btrfs_key key;
1727 u64 found_end;
1728 struct btrfs_dir_log_item *item;
1729 int ret;
1730 int nritems;
1731
1732 if (*start_ret == (u64)-1)
1733 return 1;
1734
1735 key.objectid = dirid;
1736 key.type = key_type;
1737 key.offset = *start_ret;
1738
1739 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1740 if (ret < 0)
1741 goto out;
1742 if (ret > 0) {
1743 if (path->slots[0] == 0)
1744 goto out;
1745 path->slots[0]--;
1746 }
1747 if (ret != 0)
1748 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1749
1750 if (key.type != key_type || key.objectid != dirid) {
1751 ret = 1;
1752 goto next;
1753 }
1754 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1755 struct btrfs_dir_log_item);
1756 found_end = btrfs_dir_log_end(path->nodes[0], item);
1757
1758 if (*start_ret >= key.offset && *start_ret <= found_end) {
1759 ret = 0;
1760 *start_ret = key.offset;
1761 *end_ret = found_end;
1762 goto out;
1763 }
1764 ret = 1;
1765next:
1766 /* check the next slot in the tree to see if it is a valid item */
1767 nritems = btrfs_header_nritems(path->nodes[0]);
1768 if (path->slots[0] >= nritems) {
1769 ret = btrfs_next_leaf(root, path);
1770 if (ret)
1771 goto out;
1772 } else {
1773 path->slots[0]++;
1774 }
1775
1776 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1777
1778 if (key.type != key_type || key.objectid != dirid) {
1779 ret = 1;
1780 goto out;
1781 }
1782 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1783 struct btrfs_dir_log_item);
1784 found_end = btrfs_dir_log_end(path->nodes[0], item);
1785 *start_ret = key.offset;
1786 *end_ret = found_end;
1787 ret = 0;
1788out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001789 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001790 return ret;
1791}
1792
1793/*
1794 * this looks for a given directory item in the log. If the directory
1795 * item is not in the log, the item is removed and the inode it points
1796 * to is unlinked
1797 */
1798static noinline int check_item_in_log(struct btrfs_trans_handle *trans,
1799 struct btrfs_root *root,
1800 struct btrfs_root *log,
1801 struct btrfs_path *path,
1802 struct btrfs_path *log_path,
1803 struct inode *dir,
1804 struct btrfs_key *dir_key)
1805{
1806 int ret;
1807 struct extent_buffer *eb;
1808 int slot;
1809 u32 item_size;
1810 struct btrfs_dir_item *di;
1811 struct btrfs_dir_item *log_di;
1812 int name_len;
1813 unsigned long ptr;
1814 unsigned long ptr_end;
1815 char *name;
1816 struct inode *inode;
1817 struct btrfs_key location;
1818
1819again:
1820 eb = path->nodes[0];
1821 slot = path->slots[0];
1822 item_size = btrfs_item_size_nr(eb, slot);
1823 ptr = btrfs_item_ptr_offset(eb, slot);
1824 ptr_end = ptr + item_size;
Chris Masond3977122009-01-05 21:25:51 -05001825 while (ptr < ptr_end) {
Chris Masone02119d2008-09-05 16:13:11 -04001826 di = (struct btrfs_dir_item *)ptr;
Josef Bacik22a94d42011-03-16 16:47:17 -04001827 if (verify_dir_item(root, eb, di)) {
1828 ret = -EIO;
1829 goto out;
1830 }
1831
Chris Masone02119d2008-09-05 16:13:11 -04001832 name_len = btrfs_dir_name_len(eb, di);
1833 name = kmalloc(name_len, GFP_NOFS);
1834 if (!name) {
1835 ret = -ENOMEM;
1836 goto out;
1837 }
1838 read_extent_buffer(eb, name, (unsigned long)(di + 1),
1839 name_len);
1840 log_di = NULL;
Chris Mason12fcfd22009-03-24 10:24:20 -04001841 if (log && dir_key->type == BTRFS_DIR_ITEM_KEY) {
Chris Masone02119d2008-09-05 16:13:11 -04001842 log_di = btrfs_lookup_dir_item(trans, log, log_path,
1843 dir_key->objectid,
1844 name, name_len, 0);
Chris Mason12fcfd22009-03-24 10:24:20 -04001845 } else if (log && dir_key->type == BTRFS_DIR_INDEX_KEY) {
Chris Masone02119d2008-09-05 16:13:11 -04001846 log_di = btrfs_lookup_dir_index_item(trans, log,
1847 log_path,
1848 dir_key->objectid,
1849 dir_key->offset,
1850 name, name_len, 0);
1851 }
Filipe David Borba Manana269d0402013-10-28 17:39:21 +00001852 if (!log_di || (IS_ERR(log_di) && PTR_ERR(log_di) == -ENOENT)) {
Chris Masone02119d2008-09-05 16:13:11 -04001853 btrfs_dir_item_key_to_cpu(eb, di, &location);
David Sterbab3b4aa72011-04-21 01:20:15 +02001854 btrfs_release_path(path);
1855 btrfs_release_path(log_path);
Chris Masone02119d2008-09-05 16:13:11 -04001856 inode = read_one_inode(root, location.objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001857 if (!inode) {
1858 kfree(name);
1859 return -EIO;
1860 }
Chris Masone02119d2008-09-05 16:13:11 -04001861
1862 ret = link_to_fixup_dir(trans, root,
1863 path, location.objectid);
Josef Bacik36508602013-04-25 16:23:32 -04001864 if (ret) {
1865 kfree(name);
1866 iput(inode);
1867 goto out;
1868 }
1869
Zach Brown8b558c52013-10-16 12:10:34 -07001870 inc_nlink(inode);
Chris Masone02119d2008-09-05 16:13:11 -04001871 ret = btrfs_unlink_inode(trans, root, dir, inode,
1872 name, name_len);
Josef Bacik36508602013-04-25 16:23:32 -04001873 if (!ret)
Filipe David Borba Mananaada9af22013-08-05 09:25:47 +01001874 ret = btrfs_run_delayed_items(trans, root);
Chris Masone02119d2008-09-05 16:13:11 -04001875 kfree(name);
1876 iput(inode);
Josef Bacik36508602013-04-25 16:23:32 -04001877 if (ret)
1878 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001879
1880 /* there might still be more names under this key
1881 * check and repeat if required
1882 */
1883 ret = btrfs_search_slot(NULL, root, dir_key, path,
1884 0, 0);
1885 if (ret == 0)
1886 goto again;
1887 ret = 0;
1888 goto out;
Filipe David Borba Manana269d0402013-10-28 17:39:21 +00001889 } else if (IS_ERR(log_di)) {
1890 kfree(name);
1891 return PTR_ERR(log_di);
Chris Masone02119d2008-09-05 16:13:11 -04001892 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001893 btrfs_release_path(log_path);
Chris Masone02119d2008-09-05 16:13:11 -04001894 kfree(name);
1895
1896 ptr = (unsigned long)(di + 1);
1897 ptr += name_len;
1898 }
1899 ret = 0;
1900out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001901 btrfs_release_path(path);
1902 btrfs_release_path(log_path);
Chris Masone02119d2008-09-05 16:13:11 -04001903 return ret;
1904}
1905
1906/*
1907 * deletion replay happens before we copy any new directory items
1908 * out of the log or out of backreferences from inodes. It
1909 * scans the log to find ranges of keys that log is authoritative for,
1910 * and then scans the directory to find items in those ranges that are
1911 * not present in the log.
1912 *
1913 * Anything we don't find in the log is unlinked and removed from the
1914 * directory.
1915 */
1916static noinline int replay_dir_deletes(struct btrfs_trans_handle *trans,
1917 struct btrfs_root *root,
1918 struct btrfs_root *log,
1919 struct btrfs_path *path,
Chris Mason12fcfd22009-03-24 10:24:20 -04001920 u64 dirid, int del_all)
Chris Masone02119d2008-09-05 16:13:11 -04001921{
1922 u64 range_start;
1923 u64 range_end;
1924 int key_type = BTRFS_DIR_LOG_ITEM_KEY;
1925 int ret = 0;
1926 struct btrfs_key dir_key;
1927 struct btrfs_key found_key;
1928 struct btrfs_path *log_path;
1929 struct inode *dir;
1930
1931 dir_key.objectid = dirid;
1932 dir_key.type = BTRFS_DIR_ITEM_KEY;
1933 log_path = btrfs_alloc_path();
1934 if (!log_path)
1935 return -ENOMEM;
1936
1937 dir = read_one_inode(root, dirid);
1938 /* it isn't an error if the inode isn't there, that can happen
1939 * because we replay the deletes before we copy in the inode item
1940 * from the log
1941 */
1942 if (!dir) {
1943 btrfs_free_path(log_path);
1944 return 0;
1945 }
1946again:
1947 range_start = 0;
1948 range_end = 0;
Chris Masond3977122009-01-05 21:25:51 -05001949 while (1) {
Chris Mason12fcfd22009-03-24 10:24:20 -04001950 if (del_all)
1951 range_end = (u64)-1;
1952 else {
1953 ret = find_dir_range(log, path, dirid, key_type,
1954 &range_start, &range_end);
1955 if (ret != 0)
1956 break;
1957 }
Chris Masone02119d2008-09-05 16:13:11 -04001958
1959 dir_key.offset = range_start;
Chris Masond3977122009-01-05 21:25:51 -05001960 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04001961 int nritems;
1962 ret = btrfs_search_slot(NULL, root, &dir_key, path,
1963 0, 0);
1964 if (ret < 0)
1965 goto out;
1966
1967 nritems = btrfs_header_nritems(path->nodes[0]);
1968 if (path->slots[0] >= nritems) {
1969 ret = btrfs_next_leaf(root, path);
1970 if (ret)
1971 break;
1972 }
1973 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1974 path->slots[0]);
1975 if (found_key.objectid != dirid ||
1976 found_key.type != dir_key.type)
1977 goto next_type;
1978
1979 if (found_key.offset > range_end)
1980 break;
1981
1982 ret = check_item_in_log(trans, root, log, path,
Chris Mason12fcfd22009-03-24 10:24:20 -04001983 log_path, dir,
1984 &found_key);
Josef Bacik36508602013-04-25 16:23:32 -04001985 if (ret)
1986 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001987 if (found_key.offset == (u64)-1)
1988 break;
1989 dir_key.offset = found_key.offset + 1;
1990 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001991 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001992 if (range_end == (u64)-1)
1993 break;
1994 range_start = range_end + 1;
1995 }
1996
1997next_type:
1998 ret = 0;
1999 if (key_type == BTRFS_DIR_LOG_ITEM_KEY) {
2000 key_type = BTRFS_DIR_LOG_INDEX_KEY;
2001 dir_key.type = BTRFS_DIR_INDEX_KEY;
David Sterbab3b4aa72011-04-21 01:20:15 +02002002 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002003 goto again;
2004 }
2005out:
David Sterbab3b4aa72011-04-21 01:20:15 +02002006 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002007 btrfs_free_path(log_path);
2008 iput(dir);
2009 return ret;
2010}
2011
2012/*
2013 * the process_func used to replay items from the log tree. This
2014 * gets called in two different stages. The first stage just looks
2015 * for inodes and makes sure they are all copied into the subvolume.
2016 *
2017 * The second stage copies all the other item types from the log into
2018 * the subvolume. The two stage approach is slower, but gets rid of
2019 * lots of complexity around inodes referencing other inodes that exist
2020 * only in the log (references come from either directory items or inode
2021 * back refs).
2022 */
2023static int replay_one_buffer(struct btrfs_root *log, struct extent_buffer *eb,
2024 struct walk_control *wc, u64 gen)
2025{
2026 int nritems;
2027 struct btrfs_path *path;
2028 struct btrfs_root *root = wc->replay_dest;
2029 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04002030 int level;
2031 int i;
2032 int ret;
2033
Tsutomu Itoh018642a2012-05-29 18:10:13 +09002034 ret = btrfs_read_buffer(eb, gen);
2035 if (ret)
2036 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002037
2038 level = btrfs_header_level(eb);
2039
2040 if (level != 0)
2041 return 0;
2042
2043 path = btrfs_alloc_path();
Mark Fasheh1e5063d2011-07-12 10:46:06 -07002044 if (!path)
2045 return -ENOMEM;
Chris Masone02119d2008-09-05 16:13:11 -04002046
2047 nritems = btrfs_header_nritems(eb);
2048 for (i = 0; i < nritems; i++) {
2049 btrfs_item_key_to_cpu(eb, &key, i);
Chris Masone02119d2008-09-05 16:13:11 -04002050
2051 /* inode keys are done during the first stage */
2052 if (key.type == BTRFS_INODE_ITEM_KEY &&
2053 wc->stage == LOG_WALK_REPLAY_INODES) {
Chris Masone02119d2008-09-05 16:13:11 -04002054 struct btrfs_inode_item *inode_item;
2055 u32 mode;
2056
2057 inode_item = btrfs_item_ptr(eb, i,
2058 struct btrfs_inode_item);
2059 mode = btrfs_inode_mode(eb, inode_item);
2060 if (S_ISDIR(mode)) {
2061 ret = replay_dir_deletes(wc->trans,
Chris Mason12fcfd22009-03-24 10:24:20 -04002062 root, log, path, key.objectid, 0);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002063 if (ret)
2064 break;
Chris Masone02119d2008-09-05 16:13:11 -04002065 }
2066 ret = overwrite_item(wc->trans, root, path,
2067 eb, i, &key);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002068 if (ret)
2069 break;
Chris Masone02119d2008-09-05 16:13:11 -04002070
Yan, Zhengc71bf092009-11-12 09:34:40 +00002071 /* for regular files, make sure corresponding
2072 * orhpan item exist. extents past the new EOF
2073 * will be truncated later by orphan cleanup.
Chris Masone02119d2008-09-05 16:13:11 -04002074 */
2075 if (S_ISREG(mode)) {
Yan, Zhengc71bf092009-11-12 09:34:40 +00002076 ret = insert_orphan_item(wc->trans, root,
2077 key.objectid);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002078 if (ret)
2079 break;
Chris Masone02119d2008-09-05 16:13:11 -04002080 }
Yan, Zhengc71bf092009-11-12 09:34:40 +00002081
Chris Masone02119d2008-09-05 16:13:11 -04002082 ret = link_to_fixup_dir(wc->trans, root,
2083 path, key.objectid);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002084 if (ret)
2085 break;
Chris Masone02119d2008-09-05 16:13:11 -04002086 }
Josef Bacikdd8e7212013-09-11 11:57:23 -04002087
2088 if (key.type == BTRFS_DIR_INDEX_KEY &&
2089 wc->stage == LOG_WALK_REPLAY_DIR_INDEX) {
2090 ret = replay_one_dir_item(wc->trans, root, path,
2091 eb, i, &key);
2092 if (ret)
2093 break;
2094 }
2095
Chris Masone02119d2008-09-05 16:13:11 -04002096 if (wc->stage < LOG_WALK_REPLAY_ALL)
2097 continue;
2098
2099 /* these keys are simply copied */
2100 if (key.type == BTRFS_XATTR_ITEM_KEY) {
2101 ret = overwrite_item(wc->trans, root, path,
2102 eb, i, &key);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002103 if (ret)
2104 break;
Liu Bo2da1c662013-05-26 13:50:29 +00002105 } else if (key.type == BTRFS_INODE_REF_KEY ||
2106 key.type == BTRFS_INODE_EXTREF_KEY) {
Mark Fashehf1863732012-08-08 11:32:27 -07002107 ret = add_inode_ref(wc->trans, root, log, path,
2108 eb, i, &key);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002109 if (ret && ret != -ENOENT)
2110 break;
2111 ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -04002112 } else if (key.type == BTRFS_EXTENT_DATA_KEY) {
2113 ret = replay_one_extent(wc->trans, root, path,
2114 eb, i, &key);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002115 if (ret)
2116 break;
Josef Bacikdd8e7212013-09-11 11:57:23 -04002117 } else if (key.type == BTRFS_DIR_ITEM_KEY) {
Chris Masone02119d2008-09-05 16:13:11 -04002118 ret = replay_one_dir_item(wc->trans, root, path,
2119 eb, i, &key);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002120 if (ret)
2121 break;
Chris Masone02119d2008-09-05 16:13:11 -04002122 }
2123 }
2124 btrfs_free_path(path);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002125 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002126}
2127
Chris Masond3977122009-01-05 21:25:51 -05002128static noinline int walk_down_log_tree(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -04002129 struct btrfs_root *root,
2130 struct btrfs_path *path, int *level,
2131 struct walk_control *wc)
2132{
2133 u64 root_owner;
Chris Masone02119d2008-09-05 16:13:11 -04002134 u64 bytenr;
2135 u64 ptr_gen;
2136 struct extent_buffer *next;
2137 struct extent_buffer *cur;
2138 struct extent_buffer *parent;
2139 u32 blocksize;
2140 int ret = 0;
2141
2142 WARN_ON(*level < 0);
2143 WARN_ON(*level >= BTRFS_MAX_LEVEL);
2144
Chris Masond3977122009-01-05 21:25:51 -05002145 while (*level > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002146 WARN_ON(*level < 0);
2147 WARN_ON(*level >= BTRFS_MAX_LEVEL);
2148 cur = path->nodes[*level];
2149
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05302150 WARN_ON(btrfs_header_level(cur) != *level);
Chris Masone02119d2008-09-05 16:13:11 -04002151
2152 if (path->slots[*level] >=
2153 btrfs_header_nritems(cur))
2154 break;
2155
2156 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
2157 ptr_gen = btrfs_node_ptr_generation(cur, path->slots[*level]);
2158 blocksize = btrfs_level_size(root, *level - 1);
2159
2160 parent = path->nodes[*level];
2161 root_owner = btrfs_header_owner(parent);
Chris Masone02119d2008-09-05 16:13:11 -04002162
2163 next = btrfs_find_create_tree_block(root, bytenr, blocksize);
liubo2a29edc2011-01-26 06:22:08 +00002164 if (!next)
2165 return -ENOMEM;
Chris Masone02119d2008-09-05 16:13:11 -04002166
Chris Masone02119d2008-09-05 16:13:11 -04002167 if (*level == 1) {
Mark Fasheh1e5063d2011-07-12 10:46:06 -07002168 ret = wc->process_func(root, next, wc, ptr_gen);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002169 if (ret) {
2170 free_extent_buffer(next);
Mark Fasheh1e5063d2011-07-12 10:46:06 -07002171 return ret;
Josef Bacikb50c6e22013-04-25 15:55:30 -04002172 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002173
Chris Masone02119d2008-09-05 16:13:11 -04002174 path->slots[*level]++;
2175 if (wc->free) {
Tsutomu Itoh018642a2012-05-29 18:10:13 +09002176 ret = btrfs_read_buffer(next, ptr_gen);
2177 if (ret) {
2178 free_extent_buffer(next);
2179 return ret;
2180 }
Chris Masone02119d2008-09-05 16:13:11 -04002181
Josef Bacik681ae502013-10-07 15:11:00 -04002182 if (trans) {
2183 btrfs_tree_lock(next);
2184 btrfs_set_lock_blocking(next);
2185 clean_tree_block(trans, root, next);
2186 btrfs_wait_tree_block_writeback(next);
2187 btrfs_tree_unlock(next);
2188 }
Chris Masone02119d2008-09-05 16:13:11 -04002189
Chris Masone02119d2008-09-05 16:13:11 -04002190 WARN_ON(root_owner !=
2191 BTRFS_TREE_LOG_OBJECTID);
Chris Masone688b7252011-10-31 20:52:39 -04002192 ret = btrfs_free_and_pin_reserved_extent(root,
Chris Masond00aff02008-09-11 15:54:42 -04002193 bytenr, blocksize);
Josef Bacik36508602013-04-25 16:23:32 -04002194 if (ret) {
2195 free_extent_buffer(next);
2196 return ret;
2197 }
Chris Masone02119d2008-09-05 16:13:11 -04002198 }
2199 free_extent_buffer(next);
2200 continue;
2201 }
Tsutomu Itoh018642a2012-05-29 18:10:13 +09002202 ret = btrfs_read_buffer(next, ptr_gen);
2203 if (ret) {
2204 free_extent_buffer(next);
2205 return ret;
2206 }
Chris Masone02119d2008-09-05 16:13:11 -04002207
2208 WARN_ON(*level <= 0);
2209 if (path->nodes[*level-1])
2210 free_extent_buffer(path->nodes[*level-1]);
2211 path->nodes[*level-1] = next;
2212 *level = btrfs_header_level(next);
2213 path->slots[*level] = 0;
2214 cond_resched();
2215 }
2216 WARN_ON(*level < 0);
2217 WARN_ON(*level >= BTRFS_MAX_LEVEL);
2218
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002219 path->slots[*level] = btrfs_header_nritems(path->nodes[*level]);
Chris Masone02119d2008-09-05 16:13:11 -04002220
2221 cond_resched();
2222 return 0;
2223}
2224
Chris Masond3977122009-01-05 21:25:51 -05002225static noinline int walk_up_log_tree(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -04002226 struct btrfs_root *root,
2227 struct btrfs_path *path, int *level,
2228 struct walk_control *wc)
2229{
2230 u64 root_owner;
Chris Masone02119d2008-09-05 16:13:11 -04002231 int i;
2232 int slot;
2233 int ret;
2234
Chris Masond3977122009-01-05 21:25:51 -05002235 for (i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
Chris Masone02119d2008-09-05 16:13:11 -04002236 slot = path->slots[i];
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002237 if (slot + 1 < btrfs_header_nritems(path->nodes[i])) {
Chris Masone02119d2008-09-05 16:13:11 -04002238 path->slots[i]++;
2239 *level = i;
2240 WARN_ON(*level == 0);
2241 return 0;
2242 } else {
Zheng Yan31840ae2008-09-23 13:14:14 -04002243 struct extent_buffer *parent;
2244 if (path->nodes[*level] == root->node)
2245 parent = path->nodes[*level];
2246 else
2247 parent = path->nodes[*level + 1];
2248
2249 root_owner = btrfs_header_owner(parent);
Mark Fasheh1e5063d2011-07-12 10:46:06 -07002250 ret = wc->process_func(root, path->nodes[*level], wc,
Chris Masone02119d2008-09-05 16:13:11 -04002251 btrfs_header_generation(path->nodes[*level]));
Mark Fasheh1e5063d2011-07-12 10:46:06 -07002252 if (ret)
2253 return ret;
2254
Chris Masone02119d2008-09-05 16:13:11 -04002255 if (wc->free) {
2256 struct extent_buffer *next;
2257
2258 next = path->nodes[*level];
2259
Josef Bacik681ae502013-10-07 15:11:00 -04002260 if (trans) {
2261 btrfs_tree_lock(next);
2262 btrfs_set_lock_blocking(next);
2263 clean_tree_block(trans, root, next);
2264 btrfs_wait_tree_block_writeback(next);
2265 btrfs_tree_unlock(next);
2266 }
Chris Masone02119d2008-09-05 16:13:11 -04002267
Chris Masone02119d2008-09-05 16:13:11 -04002268 WARN_ON(root_owner != BTRFS_TREE_LOG_OBJECTID);
Chris Masone688b7252011-10-31 20:52:39 -04002269 ret = btrfs_free_and_pin_reserved_extent(root,
Chris Masone02119d2008-09-05 16:13:11 -04002270 path->nodes[*level]->start,
Chris Masond00aff02008-09-11 15:54:42 -04002271 path->nodes[*level]->len);
Josef Bacik36508602013-04-25 16:23:32 -04002272 if (ret)
2273 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002274 }
2275 free_extent_buffer(path->nodes[*level]);
2276 path->nodes[*level] = NULL;
2277 *level = i + 1;
2278 }
2279 }
2280 return 1;
2281}
2282
2283/*
2284 * drop the reference count on the tree rooted at 'snap'. This traverses
2285 * the tree freeing any blocks that have a ref count of zero after being
2286 * decremented.
2287 */
2288static int walk_log_tree(struct btrfs_trans_handle *trans,
2289 struct btrfs_root *log, struct walk_control *wc)
2290{
2291 int ret = 0;
2292 int wret;
2293 int level;
2294 struct btrfs_path *path;
Chris Masone02119d2008-09-05 16:13:11 -04002295 int orig_level;
2296
2297 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00002298 if (!path)
2299 return -ENOMEM;
Chris Masone02119d2008-09-05 16:13:11 -04002300
2301 level = btrfs_header_level(log->node);
2302 orig_level = level;
2303 path->nodes[level] = log->node;
2304 extent_buffer_get(log->node);
2305 path->slots[level] = 0;
2306
Chris Masond3977122009-01-05 21:25:51 -05002307 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04002308 wret = walk_down_log_tree(trans, log, path, &level, wc);
2309 if (wret > 0)
2310 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002311 if (wret < 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002312 ret = wret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002313 goto out;
2314 }
Chris Masone02119d2008-09-05 16:13:11 -04002315
2316 wret = walk_up_log_tree(trans, log, path, &level, wc);
2317 if (wret > 0)
2318 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002319 if (wret < 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002320 ret = wret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002321 goto out;
2322 }
Chris Masone02119d2008-09-05 16:13:11 -04002323 }
2324
2325 /* was the root node processed? if not, catch it here */
2326 if (path->nodes[orig_level]) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002327 ret = wc->process_func(log, path->nodes[orig_level], wc,
Chris Masone02119d2008-09-05 16:13:11 -04002328 btrfs_header_generation(path->nodes[orig_level]));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002329 if (ret)
2330 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04002331 if (wc->free) {
2332 struct extent_buffer *next;
2333
2334 next = path->nodes[orig_level];
2335
Josef Bacik681ae502013-10-07 15:11:00 -04002336 if (trans) {
2337 btrfs_tree_lock(next);
2338 btrfs_set_lock_blocking(next);
2339 clean_tree_block(trans, log, next);
2340 btrfs_wait_tree_block_writeback(next);
2341 btrfs_tree_unlock(next);
2342 }
Chris Masone02119d2008-09-05 16:13:11 -04002343
Chris Masone02119d2008-09-05 16:13:11 -04002344 WARN_ON(log->root_key.objectid !=
2345 BTRFS_TREE_LOG_OBJECTID);
Chris Masone688b7252011-10-31 20:52:39 -04002346 ret = btrfs_free_and_pin_reserved_extent(log, next->start,
Chris Masond00aff02008-09-11 15:54:42 -04002347 next->len);
Josef Bacik36508602013-04-25 16:23:32 -04002348 if (ret)
2349 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04002350 }
2351 }
2352
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002353out:
Chris Masone02119d2008-09-05 16:13:11 -04002354 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002355 return ret;
2356}
2357
Yan Zheng7237f182009-01-21 12:54:03 -05002358/*
2359 * helper function to update the item for a given subvolumes log root
2360 * in the tree of log roots
2361 */
2362static int update_log_root(struct btrfs_trans_handle *trans,
2363 struct btrfs_root *log)
2364{
2365 int ret;
2366
2367 if (log->log_transid == 1) {
2368 /* insert root item on the first sync */
2369 ret = btrfs_insert_root(trans, log->fs_info->log_root_tree,
2370 &log->root_key, &log->root_item);
2371 } else {
2372 ret = btrfs_update_root(trans, log->fs_info->log_root_tree,
2373 &log->root_key, &log->root_item);
2374 }
2375 return ret;
2376}
2377
Miao Xie8b050d32014-02-20 18:08:58 +08002378static void wait_log_commit(struct btrfs_trans_handle *trans,
2379 struct btrfs_root *root, int transid)
Chris Masone02119d2008-09-05 16:13:11 -04002380{
2381 DEFINE_WAIT(wait);
Yan Zheng7237f182009-01-21 12:54:03 -05002382 int index = transid % 2;
Chris Masone02119d2008-09-05 16:13:11 -04002383
Yan Zheng7237f182009-01-21 12:54:03 -05002384 /*
2385 * we only allow two pending log transactions at a time,
2386 * so we know that if ours is more than 2 older than the
2387 * current transaction, we're done
2388 */
Chris Masone02119d2008-09-05 16:13:11 -04002389 do {
Yan Zheng7237f182009-01-21 12:54:03 -05002390 prepare_to_wait(&root->log_commit_wait[index],
2391 &wait, TASK_UNINTERRUPTIBLE);
2392 mutex_unlock(&root->log_mutex);
Chris Mason12fcfd22009-03-24 10:24:20 -04002393
Miao Xied1433de2014-02-20 18:08:59 +08002394 if (root->log_transid_committed < transid &&
Yan Zheng7237f182009-01-21 12:54:03 -05002395 atomic_read(&root->log_commit[index]))
Chris Masone02119d2008-09-05 16:13:11 -04002396 schedule();
Chris Mason12fcfd22009-03-24 10:24:20 -04002397
Yan Zheng7237f182009-01-21 12:54:03 -05002398 finish_wait(&root->log_commit_wait[index], &wait);
2399 mutex_lock(&root->log_mutex);
Miao Xied1433de2014-02-20 18:08:59 +08002400 } while (root->log_transid_committed < transid &&
Yan Zheng7237f182009-01-21 12:54:03 -05002401 atomic_read(&root->log_commit[index]));
Yan Zheng7237f182009-01-21 12:54:03 -05002402}
2403
Jeff Mahoney143bede2012-03-01 14:56:26 +01002404static void wait_for_writer(struct btrfs_trans_handle *trans,
2405 struct btrfs_root *root)
Yan Zheng7237f182009-01-21 12:54:03 -05002406{
2407 DEFINE_WAIT(wait);
Miao Xie8b050d32014-02-20 18:08:58 +08002408
2409 while (atomic_read(&root->log_writers)) {
Yan Zheng7237f182009-01-21 12:54:03 -05002410 prepare_to_wait(&root->log_writer_wait,
2411 &wait, TASK_UNINTERRUPTIBLE);
2412 mutex_unlock(&root->log_mutex);
Miao Xie8b050d32014-02-20 18:08:58 +08002413 if (atomic_read(&root->log_writers))
Yan Zheng7237f182009-01-21 12:54:03 -05002414 schedule();
2415 mutex_lock(&root->log_mutex);
2416 finish_wait(&root->log_writer_wait, &wait);
2417 }
Chris Masone02119d2008-09-05 16:13:11 -04002418}
2419
Miao Xie8b050d32014-02-20 18:08:58 +08002420static inline void btrfs_remove_log_ctx(struct btrfs_root *root,
2421 struct btrfs_log_ctx *ctx)
2422{
2423 if (!ctx)
2424 return;
2425
2426 mutex_lock(&root->log_mutex);
2427 list_del_init(&ctx->list);
2428 mutex_unlock(&root->log_mutex);
2429}
2430
2431/*
2432 * Invoked in log mutex context, or be sure there is no other task which
2433 * can access the list.
2434 */
2435static inline void btrfs_remove_all_log_ctxs(struct btrfs_root *root,
2436 int index, int error)
2437{
2438 struct btrfs_log_ctx *ctx;
2439
2440 if (!error) {
2441 INIT_LIST_HEAD(&root->log_ctxs[index]);
2442 return;
2443 }
2444
2445 list_for_each_entry(ctx, &root->log_ctxs[index], list)
2446 ctx->log_ret = error;
2447
2448 INIT_LIST_HEAD(&root->log_ctxs[index]);
2449}
2450
Chris Masone02119d2008-09-05 16:13:11 -04002451/*
2452 * btrfs_sync_log does sends a given tree log down to the disk and
2453 * updates the super blocks to record it. When this call is done,
Chris Mason12fcfd22009-03-24 10:24:20 -04002454 * you know that any inodes previously logged are safely on disk only
2455 * if it returns 0.
2456 *
2457 * Any other return value means you need to call btrfs_commit_transaction.
2458 * Some of the edge cases for fsyncing directories that have had unlinks
2459 * or renames done in the past mean that sometimes the only safe
2460 * fsync is to commit the whole FS. When btrfs_sync_log returns -EAGAIN,
2461 * that has happened.
Chris Masone02119d2008-09-05 16:13:11 -04002462 */
2463int btrfs_sync_log(struct btrfs_trans_handle *trans,
Miao Xie8b050d32014-02-20 18:08:58 +08002464 struct btrfs_root *root, struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -04002465{
Yan Zheng7237f182009-01-21 12:54:03 -05002466 int index1;
2467 int index2;
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002468 int mark;
Chris Masone02119d2008-09-05 16:13:11 -04002469 int ret;
Chris Masone02119d2008-09-05 16:13:11 -04002470 struct btrfs_root *log = root->log_root;
Yan Zheng7237f182009-01-21 12:54:03 -05002471 struct btrfs_root *log_root_tree = root->fs_info->log_root_tree;
Miao Xiebb14a592014-02-20 18:08:56 +08002472 int log_transid = 0;
Miao Xie8b050d32014-02-20 18:08:58 +08002473 struct btrfs_log_ctx root_log_ctx;
Miao Xiec6adc9c2013-05-28 10:05:39 +00002474 struct blk_plug plug;
Chris Masone02119d2008-09-05 16:13:11 -04002475
Yan Zheng7237f182009-01-21 12:54:03 -05002476 mutex_lock(&root->log_mutex);
Miao Xied1433de2014-02-20 18:08:59 +08002477 log_transid = ctx->log_transid;
2478 if (root->log_transid_committed >= log_transid) {
Yan Zheng7237f182009-01-21 12:54:03 -05002479 mutex_unlock(&root->log_mutex);
Miao Xie8b050d32014-02-20 18:08:58 +08002480 return ctx->log_ret;
Chris Masone02119d2008-09-05 16:13:11 -04002481 }
Miao Xied1433de2014-02-20 18:08:59 +08002482
2483 index1 = log_transid % 2;
2484 if (atomic_read(&root->log_commit[index1])) {
2485 wait_log_commit(trans, root, log_transid);
2486 mutex_unlock(&root->log_mutex);
2487 return ctx->log_ret;
2488 }
2489 ASSERT(log_transid == root->log_transid);
Yan Zheng7237f182009-01-21 12:54:03 -05002490 atomic_set(&root->log_commit[index1], 1);
2491
2492 /* wait for previous tree log sync to complete */
2493 if (atomic_read(&root->log_commit[(index1 + 1) % 2]))
Miao Xied1433de2014-02-20 18:08:59 +08002494 wait_log_commit(trans, root, log_transid - 1);
Miao Xie48cab2e2014-02-20 18:08:52 +08002495
Yan, Zheng86df7eb2009-10-14 09:24:59 -04002496 while (1) {
Miao Xie2ecb7922012-09-06 04:04:27 -06002497 int batch = atomic_read(&root->log_batch);
Chris Masoncd354ad2011-10-20 15:45:37 -04002498 /* when we're on an ssd, just kick the log commit out */
Miao Xie27cdeb72014-04-02 19:51:05 +08002499 if (!btrfs_test_opt(root, SSD) &&
2500 test_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state)) {
Yan, Zheng86df7eb2009-10-14 09:24:59 -04002501 mutex_unlock(&root->log_mutex);
2502 schedule_timeout_uninterruptible(1);
2503 mutex_lock(&root->log_mutex);
2504 }
Chris Mason12fcfd22009-03-24 10:24:20 -04002505 wait_for_writer(trans, root);
Miao Xie2ecb7922012-09-06 04:04:27 -06002506 if (batch == atomic_read(&root->log_batch))
Chris Masone02119d2008-09-05 16:13:11 -04002507 break;
2508 }
Chris Masond0c803c2008-09-11 16:17:57 -04002509
Chris Mason12fcfd22009-03-24 10:24:20 -04002510 /* bail out if we need to do a full commit */
Miao Xie995946d2014-04-02 19:51:06 +08002511 if (btrfs_need_log_full_commit(root->fs_info, trans)) {
Chris Mason12fcfd22009-03-24 10:24:20 -04002512 ret = -EAGAIN;
Josef Bacik2ab28f32012-10-12 15:27:49 -04002513 btrfs_free_logged_extents(log, log_transid);
Chris Mason12fcfd22009-03-24 10:24:20 -04002514 mutex_unlock(&root->log_mutex);
2515 goto out;
2516 }
2517
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002518 if (log_transid % 2 == 0)
2519 mark = EXTENT_DIRTY;
2520 else
2521 mark = EXTENT_NEW;
2522
Chris Mason690587d2009-10-13 13:29:19 -04002523 /* we start IO on all the marked extents here, but we don't actually
2524 * wait for them until later.
2525 */
Miao Xiec6adc9c2013-05-28 10:05:39 +00002526 blk_start_plug(&plug);
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002527 ret = btrfs_write_marked_extents(log, &log->dirty_log_pages, mark);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002528 if (ret) {
Miao Xiec6adc9c2013-05-28 10:05:39 +00002529 blk_finish_plug(&plug);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002530 btrfs_abort_transaction(trans, root, ret);
Josef Bacik2ab28f32012-10-12 15:27:49 -04002531 btrfs_free_logged_extents(log, log_transid);
Miao Xie995946d2014-04-02 19:51:06 +08002532 btrfs_set_log_full_commit(root->fs_info, trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002533 mutex_unlock(&root->log_mutex);
2534 goto out;
2535 }
Yan Zheng7237f182009-01-21 12:54:03 -05002536
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002537 btrfs_set_root_node(&log->root_item, log->node);
Yan Zheng7237f182009-01-21 12:54:03 -05002538
Yan Zheng7237f182009-01-21 12:54:03 -05002539 root->log_transid++;
2540 log->log_transid = root->log_transid;
Josef Bacikff782e02009-10-08 15:30:04 -04002541 root->log_start_pid = 0;
Yan Zheng7237f182009-01-21 12:54:03 -05002542 /*
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002543 * IO has been started, blocks of the log tree have WRITTEN flag set
2544 * in their headers. new modifications of the log will be written to
2545 * new positions. so it's safe to allow log writers to go in.
Yan Zheng7237f182009-01-21 12:54:03 -05002546 */
2547 mutex_unlock(&root->log_mutex);
2548
Miao Xied1433de2014-02-20 18:08:59 +08002549 btrfs_init_log_ctx(&root_log_ctx);
2550
Yan Zheng7237f182009-01-21 12:54:03 -05002551 mutex_lock(&log_root_tree->log_mutex);
Miao Xie2ecb7922012-09-06 04:04:27 -06002552 atomic_inc(&log_root_tree->log_batch);
Yan Zheng7237f182009-01-21 12:54:03 -05002553 atomic_inc(&log_root_tree->log_writers);
Miao Xied1433de2014-02-20 18:08:59 +08002554
2555 index2 = log_root_tree->log_transid % 2;
2556 list_add_tail(&root_log_ctx.list, &log_root_tree->log_ctxs[index2]);
2557 root_log_ctx.log_transid = log_root_tree->log_transid;
2558
Yan Zheng7237f182009-01-21 12:54:03 -05002559 mutex_unlock(&log_root_tree->log_mutex);
2560
2561 ret = update_log_root(trans, log);
Yan Zheng7237f182009-01-21 12:54:03 -05002562
2563 mutex_lock(&log_root_tree->log_mutex);
2564 if (atomic_dec_and_test(&log_root_tree->log_writers)) {
2565 smp_mb();
2566 if (waitqueue_active(&log_root_tree->log_writer_wait))
2567 wake_up(&log_root_tree->log_writer_wait);
2568 }
2569
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002570 if (ret) {
Miao Xied1433de2014-02-20 18:08:59 +08002571 if (!list_empty(&root_log_ctx.list))
2572 list_del_init(&root_log_ctx.list);
2573
Miao Xiec6adc9c2013-05-28 10:05:39 +00002574 blk_finish_plug(&plug);
Miao Xie995946d2014-04-02 19:51:06 +08002575 btrfs_set_log_full_commit(root->fs_info, trans);
2576
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002577 if (ret != -ENOSPC) {
2578 btrfs_abort_transaction(trans, root, ret);
2579 mutex_unlock(&log_root_tree->log_mutex);
2580 goto out;
2581 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002582 btrfs_wait_marked_extents(log, &log->dirty_log_pages, mark);
Josef Bacik2ab28f32012-10-12 15:27:49 -04002583 btrfs_free_logged_extents(log, log_transid);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002584 mutex_unlock(&log_root_tree->log_mutex);
2585 ret = -EAGAIN;
2586 goto out;
2587 }
2588
Miao Xied1433de2014-02-20 18:08:59 +08002589 if (log_root_tree->log_transid_committed >= root_log_ctx.log_transid) {
2590 mutex_unlock(&log_root_tree->log_mutex);
2591 ret = root_log_ctx.log_ret;
2592 goto out;
2593 }
Miao Xie8b050d32014-02-20 18:08:58 +08002594
Miao Xied1433de2014-02-20 18:08:59 +08002595 index2 = root_log_ctx.log_transid % 2;
Yan Zheng7237f182009-01-21 12:54:03 -05002596 if (atomic_read(&log_root_tree->log_commit[index2])) {
Miao Xiec6adc9c2013-05-28 10:05:39 +00002597 blk_finish_plug(&plug);
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002598 btrfs_wait_marked_extents(log, &log->dirty_log_pages, mark);
Miao Xie8b050d32014-02-20 18:08:58 +08002599 wait_log_commit(trans, log_root_tree,
Miao Xied1433de2014-02-20 18:08:59 +08002600 root_log_ctx.log_transid);
Josef Bacik2ab28f32012-10-12 15:27:49 -04002601 btrfs_free_logged_extents(log, log_transid);
Yan Zheng7237f182009-01-21 12:54:03 -05002602 mutex_unlock(&log_root_tree->log_mutex);
Miao Xie8b050d32014-02-20 18:08:58 +08002603 ret = root_log_ctx.log_ret;
Yan Zheng7237f182009-01-21 12:54:03 -05002604 goto out;
2605 }
Miao Xied1433de2014-02-20 18:08:59 +08002606 ASSERT(root_log_ctx.log_transid == log_root_tree->log_transid);
Yan Zheng7237f182009-01-21 12:54:03 -05002607 atomic_set(&log_root_tree->log_commit[index2], 1);
2608
Chris Mason12fcfd22009-03-24 10:24:20 -04002609 if (atomic_read(&log_root_tree->log_commit[(index2 + 1) % 2])) {
2610 wait_log_commit(trans, log_root_tree,
Miao Xied1433de2014-02-20 18:08:59 +08002611 root_log_ctx.log_transid - 1);
Chris Mason12fcfd22009-03-24 10:24:20 -04002612 }
Yan Zheng7237f182009-01-21 12:54:03 -05002613
Chris Mason12fcfd22009-03-24 10:24:20 -04002614 wait_for_writer(trans, log_root_tree);
2615
2616 /*
2617 * now that we've moved on to the tree of log tree roots,
2618 * check the full commit flag again
2619 */
Miao Xie995946d2014-04-02 19:51:06 +08002620 if (btrfs_need_log_full_commit(root->fs_info, trans)) {
Miao Xiec6adc9c2013-05-28 10:05:39 +00002621 blk_finish_plug(&plug);
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002622 btrfs_wait_marked_extents(log, &log->dirty_log_pages, mark);
Josef Bacik2ab28f32012-10-12 15:27:49 -04002623 btrfs_free_logged_extents(log, log_transid);
Chris Mason12fcfd22009-03-24 10:24:20 -04002624 mutex_unlock(&log_root_tree->log_mutex);
2625 ret = -EAGAIN;
2626 goto out_wake_log_root;
2627 }
Yan Zheng7237f182009-01-21 12:54:03 -05002628
Miao Xiec6adc9c2013-05-28 10:05:39 +00002629 ret = btrfs_write_marked_extents(log_root_tree,
2630 &log_root_tree->dirty_log_pages,
2631 EXTENT_DIRTY | EXTENT_NEW);
2632 blk_finish_plug(&plug);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002633 if (ret) {
Miao Xie995946d2014-04-02 19:51:06 +08002634 btrfs_set_log_full_commit(root->fs_info, trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002635 btrfs_abort_transaction(trans, root, ret);
Josef Bacik2ab28f32012-10-12 15:27:49 -04002636 btrfs_free_logged_extents(log, log_transid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002637 mutex_unlock(&log_root_tree->log_mutex);
2638 goto out_wake_log_root;
2639 }
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002640 btrfs_wait_marked_extents(log, &log->dirty_log_pages, mark);
Miao Xiec6adc9c2013-05-28 10:05:39 +00002641 btrfs_wait_marked_extents(log_root_tree,
2642 &log_root_tree->dirty_log_pages,
2643 EXTENT_NEW | EXTENT_DIRTY);
Josef Bacik2ab28f32012-10-12 15:27:49 -04002644 btrfs_wait_logged_extents(log, log_transid);
Chris Masone02119d2008-09-05 16:13:11 -04002645
David Sterba6c417612011-04-13 15:41:04 +02002646 btrfs_set_super_log_root(root->fs_info->super_for_commit,
Yan Zheng7237f182009-01-21 12:54:03 -05002647 log_root_tree->node->start);
David Sterba6c417612011-04-13 15:41:04 +02002648 btrfs_set_super_log_root_level(root->fs_info->super_for_commit,
Yan Zheng7237f182009-01-21 12:54:03 -05002649 btrfs_header_level(log_root_tree->node));
Chris Masone02119d2008-09-05 16:13:11 -04002650
Yan Zheng7237f182009-01-21 12:54:03 -05002651 log_root_tree->log_transid++;
Yan Zheng7237f182009-01-21 12:54:03 -05002652 mutex_unlock(&log_root_tree->log_mutex);
2653
2654 /*
2655 * nobody else is going to jump in and write the the ctree
2656 * super here because the log_commit atomic below is protecting
2657 * us. We must be called with a transaction handle pinning
2658 * the running transaction open, so a full commit can't hop
2659 * in and cause problems either.
2660 */
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02002661 ret = write_ctree_super(trans, root->fs_info->tree_root, 1);
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02002662 if (ret) {
Miao Xie995946d2014-04-02 19:51:06 +08002663 btrfs_set_log_full_commit(root->fs_info, trans);
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02002664 btrfs_abort_transaction(trans, root, ret);
2665 goto out_wake_log_root;
2666 }
Yan Zheng7237f182009-01-21 12:54:03 -05002667
Chris Mason257c62e2009-10-13 13:21:08 -04002668 mutex_lock(&root->log_mutex);
2669 if (root->last_log_commit < log_transid)
2670 root->last_log_commit = log_transid;
2671 mutex_unlock(&root->log_mutex);
2672
Chris Mason12fcfd22009-03-24 10:24:20 -04002673out_wake_log_root:
Miao Xie8b050d32014-02-20 18:08:58 +08002674 /*
2675 * We needn't get log_mutex here because we are sure all
2676 * the other tasks are blocked.
2677 */
2678 btrfs_remove_all_log_ctxs(log_root_tree, index2, ret);
2679
Miao Xied1433de2014-02-20 18:08:59 +08002680 mutex_lock(&log_root_tree->log_mutex);
2681 log_root_tree->log_transid_committed++;
Yan Zheng7237f182009-01-21 12:54:03 -05002682 atomic_set(&log_root_tree->log_commit[index2], 0);
Miao Xied1433de2014-02-20 18:08:59 +08002683 mutex_unlock(&log_root_tree->log_mutex);
2684
Yan Zheng7237f182009-01-21 12:54:03 -05002685 if (waitqueue_active(&log_root_tree->log_commit_wait[index2]))
2686 wake_up(&log_root_tree->log_commit_wait[index2]);
Chris Masone02119d2008-09-05 16:13:11 -04002687out:
Miao Xie8b050d32014-02-20 18:08:58 +08002688 /* See above. */
2689 btrfs_remove_all_log_ctxs(root, index1, ret);
2690
Miao Xied1433de2014-02-20 18:08:59 +08002691 mutex_lock(&root->log_mutex);
2692 root->log_transid_committed++;
Yan Zheng7237f182009-01-21 12:54:03 -05002693 atomic_set(&root->log_commit[index1], 0);
Miao Xied1433de2014-02-20 18:08:59 +08002694 mutex_unlock(&root->log_mutex);
Miao Xie8b050d32014-02-20 18:08:58 +08002695
Yan Zheng7237f182009-01-21 12:54:03 -05002696 if (waitqueue_active(&root->log_commit_wait[index1]))
2697 wake_up(&root->log_commit_wait[index1]);
Chris Masonb31eabd2011-01-31 16:48:24 -05002698 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002699}
2700
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002701static void free_log_tree(struct btrfs_trans_handle *trans,
2702 struct btrfs_root *log)
Chris Masone02119d2008-09-05 16:13:11 -04002703{
2704 int ret;
Chris Masond0c803c2008-09-11 16:17:57 -04002705 u64 start;
2706 u64 end;
Chris Masone02119d2008-09-05 16:13:11 -04002707 struct walk_control wc = {
2708 .free = 1,
2709 .process_func = process_one_buffer
2710 };
2711
Josef Bacik681ae502013-10-07 15:11:00 -04002712 ret = walk_log_tree(trans, log, &wc);
2713 /* I don't think this can happen but just in case */
2714 if (ret)
2715 btrfs_abort_transaction(trans, log, ret);
Chris Masone02119d2008-09-05 16:13:11 -04002716
Chris Masond3977122009-01-05 21:25:51 -05002717 while (1) {
Chris Masond0c803c2008-09-11 16:17:57 -04002718 ret = find_first_extent_bit(&log->dirty_log_pages,
Josef Bacike6138872012-09-27 17:07:30 -04002719 0, &start, &end, EXTENT_DIRTY | EXTENT_NEW,
2720 NULL);
Chris Masond0c803c2008-09-11 16:17:57 -04002721 if (ret)
2722 break;
2723
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002724 clear_extent_bits(&log->dirty_log_pages, start, end,
2725 EXTENT_DIRTY | EXTENT_NEW, GFP_NOFS);
Chris Masond0c803c2008-09-11 16:17:57 -04002726 }
2727
Josef Bacik2ab28f32012-10-12 15:27:49 -04002728 /*
2729 * We may have short-circuited the log tree with the full commit logic
2730 * and left ordered extents on our list, so clear these out to keep us
2731 * from leaking inodes and memory.
2732 */
2733 btrfs_free_logged_extents(log, 0);
2734 btrfs_free_logged_extents(log, 1);
2735
Yan Zheng7237f182009-01-21 12:54:03 -05002736 free_extent_buffer(log->node);
2737 kfree(log);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002738}
2739
2740/*
2741 * free all the extents used by the tree log. This should be called
2742 * at commit time of the full transaction
2743 */
2744int btrfs_free_log(struct btrfs_trans_handle *trans, struct btrfs_root *root)
2745{
2746 if (root->log_root) {
2747 free_log_tree(trans, root->log_root);
2748 root->log_root = NULL;
2749 }
2750 return 0;
2751}
2752
2753int btrfs_free_log_root_tree(struct btrfs_trans_handle *trans,
2754 struct btrfs_fs_info *fs_info)
2755{
2756 if (fs_info->log_root_tree) {
2757 free_log_tree(trans, fs_info->log_root_tree);
2758 fs_info->log_root_tree = NULL;
2759 }
Chris Masone02119d2008-09-05 16:13:11 -04002760 return 0;
2761}
2762
2763/*
Chris Masone02119d2008-09-05 16:13:11 -04002764 * If both a file and directory are logged, and unlinks or renames are
2765 * mixed in, we have a few interesting corners:
2766 *
2767 * create file X in dir Y
2768 * link file X to X.link in dir Y
2769 * fsync file X
2770 * unlink file X but leave X.link
2771 * fsync dir Y
2772 *
2773 * After a crash we would expect only X.link to exist. But file X
2774 * didn't get fsync'd again so the log has back refs for X and X.link.
2775 *
2776 * We solve this by removing directory entries and inode backrefs from the
2777 * log when a file that was logged in the current transaction is
2778 * unlinked. Any later fsync will include the updated log entries, and
2779 * we'll be able to reconstruct the proper directory items from backrefs.
2780 *
2781 * This optimizations allows us to avoid relogging the entire inode
2782 * or the entire directory.
2783 */
2784int btrfs_del_dir_entries_in_log(struct btrfs_trans_handle *trans,
2785 struct btrfs_root *root,
2786 const char *name, int name_len,
2787 struct inode *dir, u64 index)
2788{
2789 struct btrfs_root *log;
2790 struct btrfs_dir_item *di;
2791 struct btrfs_path *path;
2792 int ret;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002793 int err = 0;
Chris Masone02119d2008-09-05 16:13:11 -04002794 int bytes_del = 0;
Li Zefan33345d012011-04-20 10:31:50 +08002795 u64 dir_ino = btrfs_ino(dir);
Chris Masone02119d2008-09-05 16:13:11 -04002796
Chris Mason3a5f1d42008-09-11 15:53:37 -04002797 if (BTRFS_I(dir)->logged_trans < trans->transid)
2798 return 0;
2799
Chris Masone02119d2008-09-05 16:13:11 -04002800 ret = join_running_log_trans(root);
2801 if (ret)
2802 return 0;
2803
2804 mutex_lock(&BTRFS_I(dir)->log_mutex);
2805
2806 log = root->log_root;
2807 path = btrfs_alloc_path();
Tsutomu Itoha62f44a2011-04-25 19:43:51 -04002808 if (!path) {
2809 err = -ENOMEM;
2810 goto out_unlock;
2811 }
liubo2a29edc2011-01-26 06:22:08 +00002812
Li Zefan33345d012011-04-20 10:31:50 +08002813 di = btrfs_lookup_dir_item(trans, log, path, dir_ino,
Chris Masone02119d2008-09-05 16:13:11 -04002814 name, name_len, -1);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002815 if (IS_ERR(di)) {
2816 err = PTR_ERR(di);
2817 goto fail;
2818 }
2819 if (di) {
Chris Masone02119d2008-09-05 16:13:11 -04002820 ret = btrfs_delete_one_dir_name(trans, log, path, di);
2821 bytes_del += name_len;
Josef Bacik36508602013-04-25 16:23:32 -04002822 if (ret) {
2823 err = ret;
2824 goto fail;
2825 }
Chris Masone02119d2008-09-05 16:13:11 -04002826 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002827 btrfs_release_path(path);
Li Zefan33345d012011-04-20 10:31:50 +08002828 di = btrfs_lookup_dir_index_item(trans, log, path, dir_ino,
Chris Masone02119d2008-09-05 16:13:11 -04002829 index, name, name_len, -1);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002830 if (IS_ERR(di)) {
2831 err = PTR_ERR(di);
2832 goto fail;
2833 }
2834 if (di) {
Chris Masone02119d2008-09-05 16:13:11 -04002835 ret = btrfs_delete_one_dir_name(trans, log, path, di);
2836 bytes_del += name_len;
Josef Bacik36508602013-04-25 16:23:32 -04002837 if (ret) {
2838 err = ret;
2839 goto fail;
2840 }
Chris Masone02119d2008-09-05 16:13:11 -04002841 }
2842
2843 /* update the directory size in the log to reflect the names
2844 * we have removed
2845 */
2846 if (bytes_del) {
2847 struct btrfs_key key;
2848
Li Zefan33345d012011-04-20 10:31:50 +08002849 key.objectid = dir_ino;
Chris Masone02119d2008-09-05 16:13:11 -04002850 key.offset = 0;
2851 key.type = BTRFS_INODE_ITEM_KEY;
David Sterbab3b4aa72011-04-21 01:20:15 +02002852 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002853
2854 ret = btrfs_search_slot(trans, log, &key, path, 0, 1);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002855 if (ret < 0) {
2856 err = ret;
2857 goto fail;
2858 }
Chris Masone02119d2008-09-05 16:13:11 -04002859 if (ret == 0) {
2860 struct btrfs_inode_item *item;
2861 u64 i_size;
2862
2863 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
2864 struct btrfs_inode_item);
2865 i_size = btrfs_inode_size(path->nodes[0], item);
2866 if (i_size > bytes_del)
2867 i_size -= bytes_del;
2868 else
2869 i_size = 0;
2870 btrfs_set_inode_size(path->nodes[0], item, i_size);
2871 btrfs_mark_buffer_dirty(path->nodes[0]);
2872 } else
2873 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02002874 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002875 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002876fail:
Chris Masone02119d2008-09-05 16:13:11 -04002877 btrfs_free_path(path);
Tsutomu Itoha62f44a2011-04-25 19:43:51 -04002878out_unlock:
Chris Masone02119d2008-09-05 16:13:11 -04002879 mutex_unlock(&BTRFS_I(dir)->log_mutex);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002880 if (ret == -ENOSPC) {
Miao Xie995946d2014-04-02 19:51:06 +08002881 btrfs_set_log_full_commit(root->fs_info, trans);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002882 ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002883 } else if (ret < 0)
2884 btrfs_abort_transaction(trans, root, ret);
2885
Chris Mason12fcfd22009-03-24 10:24:20 -04002886 btrfs_end_log_trans(root);
Chris Masone02119d2008-09-05 16:13:11 -04002887
Andi Kleen411fc6b2010-10-29 15:14:31 -04002888 return err;
Chris Masone02119d2008-09-05 16:13:11 -04002889}
2890
2891/* see comments for btrfs_del_dir_entries_in_log */
2892int btrfs_del_inode_ref_in_log(struct btrfs_trans_handle *trans,
2893 struct btrfs_root *root,
2894 const char *name, int name_len,
2895 struct inode *inode, u64 dirid)
2896{
2897 struct btrfs_root *log;
2898 u64 index;
2899 int ret;
2900
Chris Mason3a5f1d42008-09-11 15:53:37 -04002901 if (BTRFS_I(inode)->logged_trans < trans->transid)
2902 return 0;
2903
Chris Masone02119d2008-09-05 16:13:11 -04002904 ret = join_running_log_trans(root);
2905 if (ret)
2906 return 0;
2907 log = root->log_root;
2908 mutex_lock(&BTRFS_I(inode)->log_mutex);
2909
Li Zefan33345d012011-04-20 10:31:50 +08002910 ret = btrfs_del_inode_ref(trans, log, name, name_len, btrfs_ino(inode),
Chris Masone02119d2008-09-05 16:13:11 -04002911 dirid, &index);
2912 mutex_unlock(&BTRFS_I(inode)->log_mutex);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002913 if (ret == -ENOSPC) {
Miao Xie995946d2014-04-02 19:51:06 +08002914 btrfs_set_log_full_commit(root->fs_info, trans);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002915 ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002916 } else if (ret < 0 && ret != -ENOENT)
2917 btrfs_abort_transaction(trans, root, ret);
Chris Mason12fcfd22009-03-24 10:24:20 -04002918 btrfs_end_log_trans(root);
Chris Masone02119d2008-09-05 16:13:11 -04002919
Chris Masone02119d2008-09-05 16:13:11 -04002920 return ret;
2921}
2922
2923/*
2924 * creates a range item in the log for 'dirid'. first_offset and
2925 * last_offset tell us which parts of the key space the log should
2926 * be considered authoritative for.
2927 */
2928static noinline int insert_dir_log_key(struct btrfs_trans_handle *trans,
2929 struct btrfs_root *log,
2930 struct btrfs_path *path,
2931 int key_type, u64 dirid,
2932 u64 first_offset, u64 last_offset)
2933{
2934 int ret;
2935 struct btrfs_key key;
2936 struct btrfs_dir_log_item *item;
2937
2938 key.objectid = dirid;
2939 key.offset = first_offset;
2940 if (key_type == BTRFS_DIR_ITEM_KEY)
2941 key.type = BTRFS_DIR_LOG_ITEM_KEY;
2942 else
2943 key.type = BTRFS_DIR_LOG_INDEX_KEY;
2944 ret = btrfs_insert_empty_item(trans, log, path, &key, sizeof(*item));
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002945 if (ret)
2946 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002947
2948 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
2949 struct btrfs_dir_log_item);
2950 btrfs_set_dir_log_end(path->nodes[0], item, last_offset);
2951 btrfs_mark_buffer_dirty(path->nodes[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02002952 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002953 return 0;
2954}
2955
2956/*
2957 * log all the items included in the current transaction for a given
2958 * directory. This also creates the range items in the log tree required
2959 * to replay anything deleted before the fsync
2960 */
2961static noinline int log_dir_items(struct btrfs_trans_handle *trans,
2962 struct btrfs_root *root, struct inode *inode,
2963 struct btrfs_path *path,
2964 struct btrfs_path *dst_path, int key_type,
2965 u64 min_offset, u64 *last_offset_ret)
2966{
2967 struct btrfs_key min_key;
Chris Masone02119d2008-09-05 16:13:11 -04002968 struct btrfs_root *log = root->log_root;
2969 struct extent_buffer *src;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002970 int err = 0;
Chris Masone02119d2008-09-05 16:13:11 -04002971 int ret;
2972 int i;
2973 int nritems;
2974 u64 first_offset = min_offset;
2975 u64 last_offset = (u64)-1;
Li Zefan33345d012011-04-20 10:31:50 +08002976 u64 ino = btrfs_ino(inode);
Chris Masone02119d2008-09-05 16:13:11 -04002977
2978 log = root->log_root;
Chris Masone02119d2008-09-05 16:13:11 -04002979
Li Zefan33345d012011-04-20 10:31:50 +08002980 min_key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04002981 min_key.type = key_type;
2982 min_key.offset = min_offset;
2983
2984 path->keep_locks = 1;
2985
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01002986 ret = btrfs_search_forward(root, &min_key, path, trans->transid);
Chris Masone02119d2008-09-05 16:13:11 -04002987
2988 /*
2989 * we didn't find anything from this transaction, see if there
2990 * is anything at all
2991 */
Li Zefan33345d012011-04-20 10:31:50 +08002992 if (ret != 0 || min_key.objectid != ino || min_key.type != key_type) {
2993 min_key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04002994 min_key.type = key_type;
2995 min_key.offset = (u64)-1;
David Sterbab3b4aa72011-04-21 01:20:15 +02002996 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002997 ret = btrfs_search_slot(NULL, root, &min_key, path, 0, 0);
2998 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02002999 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003000 return ret;
3001 }
Li Zefan33345d012011-04-20 10:31:50 +08003002 ret = btrfs_previous_item(root, path, ino, key_type);
Chris Masone02119d2008-09-05 16:13:11 -04003003
3004 /* if ret == 0 there are items for this type,
3005 * create a range to tell us the last key of this type.
3006 * otherwise, there are no items in this directory after
3007 * *min_offset, and we create a range to indicate that.
3008 */
3009 if (ret == 0) {
3010 struct btrfs_key tmp;
3011 btrfs_item_key_to_cpu(path->nodes[0], &tmp,
3012 path->slots[0]);
Chris Masond3977122009-01-05 21:25:51 -05003013 if (key_type == tmp.type)
Chris Masone02119d2008-09-05 16:13:11 -04003014 first_offset = max(min_offset, tmp.offset) + 1;
Chris Masone02119d2008-09-05 16:13:11 -04003015 }
3016 goto done;
3017 }
3018
3019 /* go backward to find any previous key */
Li Zefan33345d012011-04-20 10:31:50 +08003020 ret = btrfs_previous_item(root, path, ino, key_type);
Chris Masone02119d2008-09-05 16:13:11 -04003021 if (ret == 0) {
3022 struct btrfs_key tmp;
3023 btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]);
3024 if (key_type == tmp.type) {
3025 first_offset = tmp.offset;
3026 ret = overwrite_item(trans, log, dst_path,
3027 path->nodes[0], path->slots[0],
3028 &tmp);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003029 if (ret) {
3030 err = ret;
3031 goto done;
3032 }
Chris Masone02119d2008-09-05 16:13:11 -04003033 }
3034 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003035 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003036
3037 /* find the first key from this transaction again */
3038 ret = btrfs_search_slot(NULL, root, &min_key, path, 0, 0);
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303039 if (WARN_ON(ret != 0))
Chris Masone02119d2008-09-05 16:13:11 -04003040 goto done;
Chris Masone02119d2008-09-05 16:13:11 -04003041
3042 /*
3043 * we have a block from this transaction, log every item in it
3044 * from our directory
3045 */
Chris Masond3977122009-01-05 21:25:51 -05003046 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04003047 struct btrfs_key tmp;
3048 src = path->nodes[0];
3049 nritems = btrfs_header_nritems(src);
3050 for (i = path->slots[0]; i < nritems; i++) {
3051 btrfs_item_key_to_cpu(src, &min_key, i);
3052
Li Zefan33345d012011-04-20 10:31:50 +08003053 if (min_key.objectid != ino || min_key.type != key_type)
Chris Masone02119d2008-09-05 16:13:11 -04003054 goto done;
3055 ret = overwrite_item(trans, log, dst_path, src, i,
3056 &min_key);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003057 if (ret) {
3058 err = ret;
3059 goto done;
3060 }
Chris Masone02119d2008-09-05 16:13:11 -04003061 }
3062 path->slots[0] = nritems;
3063
3064 /*
3065 * look ahead to the next item and see if it is also
3066 * from this directory and from this transaction
3067 */
3068 ret = btrfs_next_leaf(root, path);
3069 if (ret == 1) {
3070 last_offset = (u64)-1;
3071 goto done;
3072 }
3073 btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]);
Li Zefan33345d012011-04-20 10:31:50 +08003074 if (tmp.objectid != ino || tmp.type != key_type) {
Chris Masone02119d2008-09-05 16:13:11 -04003075 last_offset = (u64)-1;
3076 goto done;
3077 }
3078 if (btrfs_header_generation(path->nodes[0]) != trans->transid) {
3079 ret = overwrite_item(trans, log, dst_path,
3080 path->nodes[0], path->slots[0],
3081 &tmp);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003082 if (ret)
3083 err = ret;
3084 else
3085 last_offset = tmp.offset;
Chris Masone02119d2008-09-05 16:13:11 -04003086 goto done;
3087 }
3088 }
3089done:
David Sterbab3b4aa72011-04-21 01:20:15 +02003090 btrfs_release_path(path);
3091 btrfs_release_path(dst_path);
Chris Masone02119d2008-09-05 16:13:11 -04003092
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003093 if (err == 0) {
3094 *last_offset_ret = last_offset;
3095 /*
3096 * insert the log range keys to indicate where the log
3097 * is valid
3098 */
3099 ret = insert_dir_log_key(trans, log, path, key_type,
Li Zefan33345d012011-04-20 10:31:50 +08003100 ino, first_offset, last_offset);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003101 if (ret)
3102 err = ret;
3103 }
3104 return err;
Chris Masone02119d2008-09-05 16:13:11 -04003105}
3106
3107/*
3108 * logging directories is very similar to logging inodes, We find all the items
3109 * from the current transaction and write them to the log.
3110 *
3111 * The recovery code scans the directory in the subvolume, and if it finds a
3112 * key in the range logged that is not present in the log tree, then it means
3113 * that dir entry was unlinked during the transaction.
3114 *
3115 * In order for that scan to work, we must include one key smaller than
3116 * the smallest logged by this transaction and one key larger than the largest
3117 * key logged by this transaction.
3118 */
3119static noinline int log_directory_changes(struct btrfs_trans_handle *trans,
3120 struct btrfs_root *root, struct inode *inode,
3121 struct btrfs_path *path,
3122 struct btrfs_path *dst_path)
3123{
3124 u64 min_key;
3125 u64 max_key;
3126 int ret;
3127 int key_type = BTRFS_DIR_ITEM_KEY;
3128
3129again:
3130 min_key = 0;
3131 max_key = 0;
Chris Masond3977122009-01-05 21:25:51 -05003132 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04003133 ret = log_dir_items(trans, root, inode, path,
3134 dst_path, key_type, min_key,
3135 &max_key);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003136 if (ret)
3137 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04003138 if (max_key == (u64)-1)
3139 break;
3140 min_key = max_key + 1;
3141 }
3142
3143 if (key_type == BTRFS_DIR_ITEM_KEY) {
3144 key_type = BTRFS_DIR_INDEX_KEY;
3145 goto again;
3146 }
3147 return 0;
3148}
3149
3150/*
3151 * a helper function to drop items from the log before we relog an
3152 * inode. max_key_type indicates the highest item type to remove.
3153 * This cannot be run for file data extents because it does not
3154 * free the extents they point to.
3155 */
3156static int drop_objectid_items(struct btrfs_trans_handle *trans,
3157 struct btrfs_root *log,
3158 struct btrfs_path *path,
3159 u64 objectid, int max_key_type)
3160{
3161 int ret;
3162 struct btrfs_key key;
3163 struct btrfs_key found_key;
Josef Bacik18ec90d2012-09-28 11:56:28 -04003164 int start_slot;
Chris Masone02119d2008-09-05 16:13:11 -04003165
3166 key.objectid = objectid;
3167 key.type = max_key_type;
3168 key.offset = (u64)-1;
3169
Chris Masond3977122009-01-05 21:25:51 -05003170 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04003171 ret = btrfs_search_slot(trans, log, &key, path, -1, 1);
Josef Bacik36508602013-04-25 16:23:32 -04003172 BUG_ON(ret == 0); /* Logic error */
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003173 if (ret < 0)
Chris Masone02119d2008-09-05 16:13:11 -04003174 break;
3175
3176 if (path->slots[0] == 0)
3177 break;
3178
3179 path->slots[0]--;
3180 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
3181 path->slots[0]);
3182
3183 if (found_key.objectid != objectid)
3184 break;
3185
Josef Bacik18ec90d2012-09-28 11:56:28 -04003186 found_key.offset = 0;
3187 found_key.type = 0;
3188 ret = btrfs_bin_search(path->nodes[0], &found_key, 0,
3189 &start_slot);
3190
3191 ret = btrfs_del_items(trans, log, path, start_slot,
3192 path->slots[0] - start_slot + 1);
3193 /*
3194 * If start slot isn't 0 then we don't need to re-search, we've
3195 * found the last guy with the objectid in this tree.
3196 */
3197 if (ret || start_slot != 0)
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00003198 break;
David Sterbab3b4aa72011-04-21 01:20:15 +02003199 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003200 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003201 btrfs_release_path(path);
Josef Bacik5bdbeb22012-05-29 16:59:49 -04003202 if (ret > 0)
3203 ret = 0;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003204 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04003205}
3206
Josef Bacik94edf4a2012-09-25 14:56:25 -04003207static void fill_inode_item(struct btrfs_trans_handle *trans,
3208 struct extent_buffer *leaf,
3209 struct btrfs_inode_item *item,
3210 struct inode *inode, int log_inode_only)
3211{
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003212 struct btrfs_map_token token;
Josef Bacik94edf4a2012-09-25 14:56:25 -04003213
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003214 btrfs_init_map_token(&token);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003215
3216 if (log_inode_only) {
3217 /* set the generation to zero so the recover code
3218 * can tell the difference between an logging
3219 * just to say 'this inode exists' and a logging
3220 * to say 'update this inode with these values'
3221 */
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003222 btrfs_set_token_inode_generation(leaf, item, 0, &token);
3223 btrfs_set_token_inode_size(leaf, item, 0, &token);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003224 } else {
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003225 btrfs_set_token_inode_generation(leaf, item,
3226 BTRFS_I(inode)->generation,
3227 &token);
3228 btrfs_set_token_inode_size(leaf, item, inode->i_size, &token);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003229 }
3230
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003231 btrfs_set_token_inode_uid(leaf, item, i_uid_read(inode), &token);
3232 btrfs_set_token_inode_gid(leaf, item, i_gid_read(inode), &token);
3233 btrfs_set_token_inode_mode(leaf, item, inode->i_mode, &token);
3234 btrfs_set_token_inode_nlink(leaf, item, inode->i_nlink, &token);
3235
3236 btrfs_set_token_timespec_sec(leaf, btrfs_inode_atime(item),
3237 inode->i_atime.tv_sec, &token);
3238 btrfs_set_token_timespec_nsec(leaf, btrfs_inode_atime(item),
3239 inode->i_atime.tv_nsec, &token);
3240
3241 btrfs_set_token_timespec_sec(leaf, btrfs_inode_mtime(item),
3242 inode->i_mtime.tv_sec, &token);
3243 btrfs_set_token_timespec_nsec(leaf, btrfs_inode_mtime(item),
3244 inode->i_mtime.tv_nsec, &token);
3245
3246 btrfs_set_token_timespec_sec(leaf, btrfs_inode_ctime(item),
3247 inode->i_ctime.tv_sec, &token);
3248 btrfs_set_token_timespec_nsec(leaf, btrfs_inode_ctime(item),
3249 inode->i_ctime.tv_nsec, &token);
3250
3251 btrfs_set_token_inode_nbytes(leaf, item, inode_get_bytes(inode),
3252 &token);
3253
3254 btrfs_set_token_inode_sequence(leaf, item, inode->i_version, &token);
3255 btrfs_set_token_inode_transid(leaf, item, trans->transid, &token);
3256 btrfs_set_token_inode_rdev(leaf, item, inode->i_rdev, &token);
3257 btrfs_set_token_inode_flags(leaf, item, BTRFS_I(inode)->flags, &token);
3258 btrfs_set_token_inode_block_group(leaf, item, 0, &token);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003259}
3260
Josef Bacika95249b2012-10-11 16:17:34 -04003261static int log_inode_item(struct btrfs_trans_handle *trans,
3262 struct btrfs_root *log, struct btrfs_path *path,
3263 struct inode *inode)
3264{
3265 struct btrfs_inode_item *inode_item;
Josef Bacika95249b2012-10-11 16:17:34 -04003266 int ret;
3267
Filipe David Borba Mananaefd0c402013-10-07 21:20:44 +01003268 ret = btrfs_insert_empty_item(trans, log, path,
3269 &BTRFS_I(inode)->location,
Josef Bacika95249b2012-10-11 16:17:34 -04003270 sizeof(*inode_item));
3271 if (ret && ret != -EEXIST)
3272 return ret;
3273 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
3274 struct btrfs_inode_item);
3275 fill_inode_item(trans, path->nodes[0], inode_item, inode, 0);
3276 btrfs_release_path(path);
3277 return 0;
3278}
3279
Chris Mason31ff1cd2008-09-11 16:17:57 -04003280static noinline int copy_items(struct btrfs_trans_handle *trans,
Liu Bod2794402012-08-29 01:07:56 -06003281 struct inode *inode,
Chris Mason31ff1cd2008-09-11 16:17:57 -04003282 struct btrfs_path *dst_path,
Josef Bacik16e75492013-10-22 12:18:51 -04003283 struct btrfs_path *src_path, u64 *last_extent,
Chris Mason31ff1cd2008-09-11 16:17:57 -04003284 int start_slot, int nr, int inode_only)
3285{
3286 unsigned long src_offset;
3287 unsigned long dst_offset;
Liu Bod2794402012-08-29 01:07:56 -06003288 struct btrfs_root *log = BTRFS_I(inode)->root->log_root;
Chris Mason31ff1cd2008-09-11 16:17:57 -04003289 struct btrfs_file_extent_item *extent;
3290 struct btrfs_inode_item *inode_item;
Josef Bacik16e75492013-10-22 12:18:51 -04003291 struct extent_buffer *src = src_path->nodes[0];
3292 struct btrfs_key first_key, last_key, key;
Chris Mason31ff1cd2008-09-11 16:17:57 -04003293 int ret;
3294 struct btrfs_key *ins_keys;
3295 u32 *ins_sizes;
3296 char *ins_data;
3297 int i;
Chris Masond20f7042008-12-08 16:58:54 -05003298 struct list_head ordered_sums;
Liu Bod2794402012-08-29 01:07:56 -06003299 int skip_csum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Josef Bacik16e75492013-10-22 12:18:51 -04003300 bool has_extents = false;
Filipe Manana74121f72014-08-07 12:00:44 +01003301 bool need_find_last_extent = true;
Josef Bacik16e75492013-10-22 12:18:51 -04003302 bool done = false;
Chris Masond20f7042008-12-08 16:58:54 -05003303
3304 INIT_LIST_HEAD(&ordered_sums);
Chris Mason31ff1cd2008-09-11 16:17:57 -04003305
3306 ins_data = kmalloc(nr * sizeof(struct btrfs_key) +
3307 nr * sizeof(u32), GFP_NOFS);
liubo2a29edc2011-01-26 06:22:08 +00003308 if (!ins_data)
3309 return -ENOMEM;
3310
Josef Bacik16e75492013-10-22 12:18:51 -04003311 first_key.objectid = (u64)-1;
3312
Chris Mason31ff1cd2008-09-11 16:17:57 -04003313 ins_sizes = (u32 *)ins_data;
3314 ins_keys = (struct btrfs_key *)(ins_data + nr * sizeof(u32));
3315
3316 for (i = 0; i < nr; i++) {
3317 ins_sizes[i] = btrfs_item_size_nr(src, i + start_slot);
3318 btrfs_item_key_to_cpu(src, ins_keys + i, i + start_slot);
3319 }
3320 ret = btrfs_insert_empty_items(trans, log, dst_path,
3321 ins_keys, ins_sizes, nr);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003322 if (ret) {
3323 kfree(ins_data);
3324 return ret;
3325 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04003326
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003327 for (i = 0; i < nr; i++, dst_path->slots[0]++) {
Chris Mason31ff1cd2008-09-11 16:17:57 -04003328 dst_offset = btrfs_item_ptr_offset(dst_path->nodes[0],
3329 dst_path->slots[0]);
3330
3331 src_offset = btrfs_item_ptr_offset(src, start_slot + i);
3332
Josef Bacik16e75492013-10-22 12:18:51 -04003333 if ((i == (nr - 1)))
3334 last_key = ins_keys[i];
3335
Josef Bacik94edf4a2012-09-25 14:56:25 -04003336 if (ins_keys[i].type == BTRFS_INODE_ITEM_KEY) {
Chris Mason31ff1cd2008-09-11 16:17:57 -04003337 inode_item = btrfs_item_ptr(dst_path->nodes[0],
3338 dst_path->slots[0],
3339 struct btrfs_inode_item);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003340 fill_inode_item(trans, dst_path->nodes[0], inode_item,
3341 inode, inode_only == LOG_INODE_EXISTS);
3342 } else {
3343 copy_extent_buffer(dst_path->nodes[0], src, dst_offset,
3344 src_offset, ins_sizes[i]);
Chris Mason31ff1cd2008-09-11 16:17:57 -04003345 }
Josef Bacik94edf4a2012-09-25 14:56:25 -04003346
Josef Bacik16e75492013-10-22 12:18:51 -04003347 /*
3348 * We set need_find_last_extent here in case we know we were
3349 * processing other items and then walk into the first extent in
3350 * the inode. If we don't hit an extent then nothing changes,
3351 * we'll do the last search the next time around.
3352 */
3353 if (ins_keys[i].type == BTRFS_EXTENT_DATA_KEY) {
3354 has_extents = true;
Filipe Manana74121f72014-08-07 12:00:44 +01003355 if (first_key.objectid == (u64)-1)
Josef Bacik16e75492013-10-22 12:18:51 -04003356 first_key = ins_keys[i];
3357 } else {
3358 need_find_last_extent = false;
3359 }
3360
Chris Mason31ff1cd2008-09-11 16:17:57 -04003361 /* take a reference on file data extents so that truncates
3362 * or deletes of this inode don't have to relog the inode
3363 * again
3364 */
Liu Bod2794402012-08-29 01:07:56 -06003365 if (btrfs_key_type(ins_keys + i) == BTRFS_EXTENT_DATA_KEY &&
3366 !skip_csum) {
Chris Mason31ff1cd2008-09-11 16:17:57 -04003367 int found_type;
3368 extent = btrfs_item_ptr(src, start_slot + i,
3369 struct btrfs_file_extent_item);
3370
liubo8e531cd2011-05-06 10:36:09 +08003371 if (btrfs_file_extent_generation(src, extent) < trans->transid)
3372 continue;
3373
Chris Mason31ff1cd2008-09-11 16:17:57 -04003374 found_type = btrfs_file_extent_type(src, extent);
Josef Bacik6f1fed72012-09-26 11:07:06 -04003375 if (found_type == BTRFS_FILE_EXTENT_REG) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003376 u64 ds, dl, cs, cl;
3377 ds = btrfs_file_extent_disk_bytenr(src,
3378 extent);
3379 /* ds == 0 is a hole */
3380 if (ds == 0)
3381 continue;
3382
3383 dl = btrfs_file_extent_disk_num_bytes(src,
3384 extent);
3385 cs = btrfs_file_extent_offset(src, extent);
3386 cl = btrfs_file_extent_num_bytes(src,
Joe Perchesa419aef2009-08-18 11:18:35 -07003387 extent);
Chris Mason580afd72008-12-08 19:15:39 -05003388 if (btrfs_file_extent_compression(src,
3389 extent)) {
3390 cs = 0;
3391 cl = dl;
3392 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003393
3394 ret = btrfs_lookup_csums_range(
3395 log->fs_info->csum_root,
3396 ds + cs, ds + cs + cl - 1,
Arne Jansena2de7332011-03-08 14:14:00 +01003397 &ordered_sums, 0);
Josef Bacik36508602013-04-25 16:23:32 -04003398 if (ret) {
3399 btrfs_release_path(dst_path);
3400 kfree(ins_data);
3401 return ret;
3402 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04003403 }
3404 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04003405 }
3406
3407 btrfs_mark_buffer_dirty(dst_path->nodes[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02003408 btrfs_release_path(dst_path);
Chris Mason31ff1cd2008-09-11 16:17:57 -04003409 kfree(ins_data);
Chris Masond20f7042008-12-08 16:58:54 -05003410
3411 /*
3412 * we have to do this after the loop above to avoid changing the
3413 * log tree while trying to change the log tree.
3414 */
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003415 ret = 0;
Chris Masond3977122009-01-05 21:25:51 -05003416 while (!list_empty(&ordered_sums)) {
Chris Masond20f7042008-12-08 16:58:54 -05003417 struct btrfs_ordered_sum *sums = list_entry(ordered_sums.next,
3418 struct btrfs_ordered_sum,
3419 list);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003420 if (!ret)
3421 ret = btrfs_csum_file_blocks(trans, log, sums);
Chris Masond20f7042008-12-08 16:58:54 -05003422 list_del(&sums->list);
3423 kfree(sums);
3424 }
Josef Bacik16e75492013-10-22 12:18:51 -04003425
3426 if (!has_extents)
3427 return ret;
3428
Filipe Manana74121f72014-08-07 12:00:44 +01003429 if (need_find_last_extent && *last_extent == first_key.offset) {
3430 /*
3431 * We don't have any leafs between our current one and the one
3432 * we processed before that can have file extent items for our
3433 * inode (and have a generation number smaller than our current
3434 * transaction id).
3435 */
3436 need_find_last_extent = false;
3437 }
3438
Josef Bacik16e75492013-10-22 12:18:51 -04003439 /*
3440 * Because we use btrfs_search_forward we could skip leaves that were
3441 * not modified and then assume *last_extent is valid when it really
3442 * isn't. So back up to the previous leaf and read the end of the last
3443 * extent before we go and fill in holes.
3444 */
3445 if (need_find_last_extent) {
3446 u64 len;
3447
3448 ret = btrfs_prev_leaf(BTRFS_I(inode)->root, src_path);
3449 if (ret < 0)
3450 return ret;
3451 if (ret)
3452 goto fill_holes;
3453 if (src_path->slots[0])
3454 src_path->slots[0]--;
3455 src = src_path->nodes[0];
3456 btrfs_item_key_to_cpu(src, &key, src_path->slots[0]);
3457 if (key.objectid != btrfs_ino(inode) ||
3458 key.type != BTRFS_EXTENT_DATA_KEY)
3459 goto fill_holes;
3460 extent = btrfs_item_ptr(src, src_path->slots[0],
3461 struct btrfs_file_extent_item);
3462 if (btrfs_file_extent_type(src, extent) ==
3463 BTRFS_FILE_EXTENT_INLINE) {
Chris Mason514ac8a2014-01-03 21:07:00 -08003464 len = btrfs_file_extent_inline_len(src,
3465 src_path->slots[0],
3466 extent);
Josef Bacik16e75492013-10-22 12:18:51 -04003467 *last_extent = ALIGN(key.offset + len,
3468 log->sectorsize);
3469 } else {
3470 len = btrfs_file_extent_num_bytes(src, extent);
3471 *last_extent = key.offset + len;
3472 }
3473 }
3474fill_holes:
3475 /* So we did prev_leaf, now we need to move to the next leaf, but a few
3476 * things could have happened
3477 *
3478 * 1) A merge could have happened, so we could currently be on a leaf
3479 * that holds what we were copying in the first place.
3480 * 2) A split could have happened, and now not all of the items we want
3481 * are on the same leaf.
3482 *
3483 * So we need to adjust how we search for holes, we need to drop the
3484 * path and re-search for the first extent key we found, and then walk
3485 * forward until we hit the last one we copied.
3486 */
3487 if (need_find_last_extent) {
3488 /* btrfs_prev_leaf could return 1 without releasing the path */
3489 btrfs_release_path(src_path);
3490 ret = btrfs_search_slot(NULL, BTRFS_I(inode)->root, &first_key,
3491 src_path, 0, 0);
3492 if (ret < 0)
3493 return ret;
3494 ASSERT(ret == 0);
3495 src = src_path->nodes[0];
3496 i = src_path->slots[0];
3497 } else {
3498 i = start_slot;
3499 }
3500
3501 /*
3502 * Ok so here we need to go through and fill in any holes we may have
3503 * to make sure that holes are punched for those areas in case they had
3504 * extents previously.
3505 */
3506 while (!done) {
3507 u64 offset, len;
3508 u64 extent_end;
3509
3510 if (i >= btrfs_header_nritems(src_path->nodes[0])) {
3511 ret = btrfs_next_leaf(BTRFS_I(inode)->root, src_path);
3512 if (ret < 0)
3513 return ret;
3514 ASSERT(ret == 0);
3515 src = src_path->nodes[0];
3516 i = 0;
3517 }
3518
3519 btrfs_item_key_to_cpu(src, &key, i);
3520 if (!btrfs_comp_cpu_keys(&key, &last_key))
3521 done = true;
3522 if (key.objectid != btrfs_ino(inode) ||
3523 key.type != BTRFS_EXTENT_DATA_KEY) {
3524 i++;
3525 continue;
3526 }
3527 extent = btrfs_item_ptr(src, i, struct btrfs_file_extent_item);
3528 if (btrfs_file_extent_type(src, extent) ==
3529 BTRFS_FILE_EXTENT_INLINE) {
Chris Mason514ac8a2014-01-03 21:07:00 -08003530 len = btrfs_file_extent_inline_len(src, i, extent);
Josef Bacik16e75492013-10-22 12:18:51 -04003531 extent_end = ALIGN(key.offset + len, log->sectorsize);
3532 } else {
3533 len = btrfs_file_extent_num_bytes(src, extent);
3534 extent_end = key.offset + len;
3535 }
3536 i++;
3537
3538 if (*last_extent == key.offset) {
3539 *last_extent = extent_end;
3540 continue;
3541 }
3542 offset = *last_extent;
3543 len = key.offset - *last_extent;
3544 ret = btrfs_insert_file_extent(trans, log, btrfs_ino(inode),
3545 offset, 0, 0, len, 0, len, 0,
3546 0, 0);
3547 if (ret)
3548 break;
Filipe Manana74121f72014-08-07 12:00:44 +01003549 *last_extent = extent_end;
Josef Bacik16e75492013-10-22 12:18:51 -04003550 }
3551 /*
3552 * Need to let the callers know we dropped the path so they should
3553 * re-search.
3554 */
3555 if (!ret && need_find_last_extent)
3556 ret = 1;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003557 return ret;
Chris Mason31ff1cd2008-09-11 16:17:57 -04003558}
3559
Josef Bacik5dc562c2012-08-17 13:14:17 -04003560static int extent_cmp(void *priv, struct list_head *a, struct list_head *b)
3561{
3562 struct extent_map *em1, *em2;
3563
3564 em1 = list_entry(a, struct extent_map, list);
3565 em2 = list_entry(b, struct extent_map, list);
3566
3567 if (em1->start < em2->start)
3568 return -1;
3569 else if (em1->start > em2->start)
3570 return 1;
3571 return 0;
3572}
3573
Josef Bacik5dc562c2012-08-17 13:14:17 -04003574static int log_one_extent(struct btrfs_trans_handle *trans,
3575 struct inode *inode, struct btrfs_root *root,
Miao Xie827463c2014-01-14 20:31:51 +08003576 struct extent_map *em, struct btrfs_path *path,
3577 struct list_head *logged_list)
Josef Bacik5dc562c2012-08-17 13:14:17 -04003578{
3579 struct btrfs_root *log = root->log_root;
Josef Bacik70c8a912012-10-11 16:54:30 -04003580 struct btrfs_file_extent_item *fi;
3581 struct extent_buffer *leaf;
Josef Bacik2ab28f32012-10-12 15:27:49 -04003582 struct btrfs_ordered_extent *ordered;
Josef Bacik70c8a912012-10-11 16:54:30 -04003583 struct list_head ordered_sums;
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003584 struct btrfs_map_token token;
Josef Bacik5dc562c2012-08-17 13:14:17 -04003585 struct btrfs_key key;
Josef Bacik2ab28f32012-10-12 15:27:49 -04003586 u64 mod_start = em->mod_start;
3587 u64 mod_len = em->mod_len;
3588 u64 csum_offset;
3589 u64 csum_len;
Josef Bacik70c8a912012-10-11 16:54:30 -04003590 u64 extent_offset = em->start - em->orig_start;
3591 u64 block_len;
Josef Bacik5dc562c2012-08-17 13:14:17 -04003592 int ret;
Josef Bacik70c8a912012-10-11 16:54:30 -04003593 bool skip_csum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00003594 int extent_inserted = 0;
Josef Bacik09a2a8f92013-04-05 16:51:15 -04003595
Josef Bacik70c8a912012-10-11 16:54:30 -04003596 INIT_LIST_HEAD(&ordered_sums);
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003597 btrfs_init_map_token(&token);
Josef Bacik70c8a912012-10-11 16:54:30 -04003598
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00003599 ret = __btrfs_drop_extents(trans, log, inode, path, em->start,
3600 em->start + em->len, NULL, 0, 1,
3601 sizeof(*fi), &extent_inserted);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04003602 if (ret)
Josef Bacik70c8a912012-10-11 16:54:30 -04003603 return ret;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00003604
3605 if (!extent_inserted) {
3606 key.objectid = btrfs_ino(inode);
3607 key.type = BTRFS_EXTENT_DATA_KEY;
3608 key.offset = em->start;
3609
3610 ret = btrfs_insert_empty_item(trans, log, path, &key,
3611 sizeof(*fi));
3612 if (ret)
3613 return ret;
3614 }
Josef Bacik70c8a912012-10-11 16:54:30 -04003615 leaf = path->nodes[0];
3616 fi = btrfs_item_ptr(leaf, path->slots[0],
3617 struct btrfs_file_extent_item);
Josef Bacik124fe662013-03-01 11:47:21 -05003618
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003619 btrfs_set_token_file_extent_generation(leaf, fi, em->generation,
3620 &token);
Josef Bacik70c8a912012-10-11 16:54:30 -04003621 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
3622 skip_csum = true;
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003623 btrfs_set_token_file_extent_type(leaf, fi,
3624 BTRFS_FILE_EXTENT_PREALLOC,
3625 &token);
Josef Bacik70c8a912012-10-11 16:54:30 -04003626 } else {
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003627 btrfs_set_token_file_extent_type(leaf, fi,
3628 BTRFS_FILE_EXTENT_REG,
3629 &token);
Josef Baciked9e8af2013-10-14 17:23:08 -04003630 if (em->block_start == EXTENT_MAP_HOLE)
Josef Bacik70c8a912012-10-11 16:54:30 -04003631 skip_csum = true;
Josef Bacik5dc562c2012-08-17 13:14:17 -04003632 }
3633
Josef Bacik70c8a912012-10-11 16:54:30 -04003634 block_len = max(em->block_len, em->orig_block_len);
3635 if (em->compress_type != BTRFS_COMPRESS_NONE) {
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003636 btrfs_set_token_file_extent_disk_bytenr(leaf, fi,
3637 em->block_start,
3638 &token);
3639 btrfs_set_token_file_extent_disk_num_bytes(leaf, fi, block_len,
3640 &token);
Josef Bacik70c8a912012-10-11 16:54:30 -04003641 } else if (em->block_start < EXTENT_MAP_LAST_BYTE) {
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003642 btrfs_set_token_file_extent_disk_bytenr(leaf, fi,
3643 em->block_start -
3644 extent_offset, &token);
3645 btrfs_set_token_file_extent_disk_num_bytes(leaf, fi, block_len,
3646 &token);
Josef Bacik70c8a912012-10-11 16:54:30 -04003647 } else {
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003648 btrfs_set_token_file_extent_disk_bytenr(leaf, fi, 0, &token);
3649 btrfs_set_token_file_extent_disk_num_bytes(leaf, fi, 0,
3650 &token);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003651 }
3652
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003653 btrfs_set_token_file_extent_offset(leaf, fi,
3654 em->start - em->orig_start,
3655 &token);
3656 btrfs_set_token_file_extent_num_bytes(leaf, fi, em->len, &token);
Josef Bacikcc95bef2013-04-04 14:31:27 -04003657 btrfs_set_token_file_extent_ram_bytes(leaf, fi, em->ram_bytes, &token);
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003658 btrfs_set_token_file_extent_compression(leaf, fi, em->compress_type,
3659 &token);
3660 btrfs_set_token_file_extent_encryption(leaf, fi, 0, &token);
3661 btrfs_set_token_file_extent_other_encoding(leaf, fi, 0, &token);
Josef Bacik70c8a912012-10-11 16:54:30 -04003662 btrfs_mark_buffer_dirty(leaf);
3663
Josef Bacik70c8a912012-10-11 16:54:30 -04003664 btrfs_release_path(path);
Josef Bacik70c8a912012-10-11 16:54:30 -04003665 if (ret) {
3666 return ret;
3667 }
3668
3669 if (skip_csum)
3670 return 0;
3671
Josef Bacik2ab28f32012-10-12 15:27:49 -04003672 /*
3673 * First check and see if our csums are on our outstanding ordered
3674 * extents.
3675 */
Miao Xie827463c2014-01-14 20:31:51 +08003676 list_for_each_entry(ordered, logged_list, log_list) {
Josef Bacik2ab28f32012-10-12 15:27:49 -04003677 struct btrfs_ordered_sum *sum;
3678
3679 if (!mod_len)
3680 break;
3681
Josef Bacik2ab28f32012-10-12 15:27:49 -04003682 if (ordered->file_offset + ordered->len <= mod_start ||
3683 mod_start + mod_len <= ordered->file_offset)
3684 continue;
3685
3686 /*
3687 * We are going to copy all the csums on this ordered extent, so
3688 * go ahead and adjust mod_start and mod_len in case this
3689 * ordered extent has already been logged.
3690 */
3691 if (ordered->file_offset > mod_start) {
3692 if (ordered->file_offset + ordered->len >=
3693 mod_start + mod_len)
3694 mod_len = ordered->file_offset - mod_start;
3695 /*
3696 * If we have this case
3697 *
3698 * |--------- logged extent ---------|
3699 * |----- ordered extent ----|
3700 *
3701 * Just don't mess with mod_start and mod_len, we'll
3702 * just end up logging more csums than we need and it
3703 * will be ok.
3704 */
3705 } else {
3706 if (ordered->file_offset + ordered->len <
3707 mod_start + mod_len) {
3708 mod_len = (mod_start + mod_len) -
3709 (ordered->file_offset + ordered->len);
3710 mod_start = ordered->file_offset +
3711 ordered->len;
3712 } else {
3713 mod_len = 0;
3714 }
3715 }
3716
3717 /*
3718 * To keep us from looping for the above case of an ordered
3719 * extent that falls inside of the logged extent.
3720 */
3721 if (test_and_set_bit(BTRFS_ORDERED_LOGGED_CSUM,
3722 &ordered->flags))
3723 continue;
Josef Bacik2ab28f32012-10-12 15:27:49 -04003724
Miao Xie23c671a2014-01-14 20:31:52 +08003725 if (ordered->csum_bytes_left) {
3726 btrfs_start_ordered_extent(inode, ordered, 0);
3727 wait_event(ordered->wait,
3728 ordered->csum_bytes_left == 0);
3729 }
Josef Bacik2ab28f32012-10-12 15:27:49 -04003730
3731 list_for_each_entry(sum, &ordered->list, list) {
3732 ret = btrfs_csum_file_blocks(trans, log, sum);
Miao Xie827463c2014-01-14 20:31:51 +08003733 if (ret)
Josef Bacik2ab28f32012-10-12 15:27:49 -04003734 goto unlocked;
Josef Bacik2ab28f32012-10-12 15:27:49 -04003735 }
Josef Bacik2ab28f32012-10-12 15:27:49 -04003736
3737 }
Josef Bacik2ab28f32012-10-12 15:27:49 -04003738unlocked:
3739
3740 if (!mod_len || ret)
3741 return ret;
3742
Filipe David Borba Manana488111a2013-10-28 16:30:29 +00003743 if (em->compress_type) {
3744 csum_offset = 0;
3745 csum_len = block_len;
3746 } else {
3747 csum_offset = mod_start - em->start;
3748 csum_len = mod_len;
3749 }
Josef Bacik2ab28f32012-10-12 15:27:49 -04003750
Josef Bacik70c8a912012-10-11 16:54:30 -04003751 /* block start is already adjusted for the file extent offset. */
3752 ret = btrfs_lookup_csums_range(log->fs_info->csum_root,
3753 em->block_start + csum_offset,
3754 em->block_start + csum_offset +
3755 csum_len - 1, &ordered_sums, 0);
3756 if (ret)
3757 return ret;
3758
3759 while (!list_empty(&ordered_sums)) {
3760 struct btrfs_ordered_sum *sums = list_entry(ordered_sums.next,
3761 struct btrfs_ordered_sum,
3762 list);
3763 if (!ret)
3764 ret = btrfs_csum_file_blocks(trans, log, sums);
3765 list_del(&sums->list);
3766 kfree(sums);
3767 }
3768
3769 return ret;
Josef Bacik5dc562c2012-08-17 13:14:17 -04003770}
3771
3772static int btrfs_log_changed_extents(struct btrfs_trans_handle *trans,
3773 struct btrfs_root *root,
3774 struct inode *inode,
Miao Xie827463c2014-01-14 20:31:51 +08003775 struct btrfs_path *path,
3776 struct list_head *logged_list)
Josef Bacik5dc562c2012-08-17 13:14:17 -04003777{
Josef Bacik5dc562c2012-08-17 13:14:17 -04003778 struct extent_map *em, *n;
3779 struct list_head extents;
3780 struct extent_map_tree *tree = &BTRFS_I(inode)->extent_tree;
3781 u64 test_gen;
3782 int ret = 0;
Josef Bacik2ab28f32012-10-12 15:27:49 -04003783 int num = 0;
Josef Bacik5dc562c2012-08-17 13:14:17 -04003784
3785 INIT_LIST_HEAD(&extents);
3786
Josef Bacik5dc562c2012-08-17 13:14:17 -04003787 write_lock(&tree->lock);
3788 test_gen = root->fs_info->last_trans_committed;
3789
3790 list_for_each_entry_safe(em, n, &tree->modified_extents, list) {
3791 list_del_init(&em->list);
Josef Bacik2ab28f32012-10-12 15:27:49 -04003792
3793 /*
3794 * Just an arbitrary number, this can be really CPU intensive
3795 * once we start getting a lot of extents, and really once we
3796 * have a bunch of extents we just want to commit since it will
3797 * be faster.
3798 */
3799 if (++num > 32768) {
3800 list_del_init(&tree->modified_extents);
3801 ret = -EFBIG;
3802 goto process;
3803 }
3804
Josef Bacik5dc562c2012-08-17 13:14:17 -04003805 if (em->generation <= test_gen)
3806 continue;
Josef Bacikff44c6e2012-09-14 12:59:20 -04003807 /* Need a ref to keep it from getting evicted from cache */
3808 atomic_inc(&em->refs);
3809 set_bit(EXTENT_FLAG_LOGGING, &em->flags);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003810 list_add_tail(&em->list, &extents);
Josef Bacik2ab28f32012-10-12 15:27:49 -04003811 num++;
Josef Bacik5dc562c2012-08-17 13:14:17 -04003812 }
3813
3814 list_sort(NULL, &extents, extent_cmp);
3815
Josef Bacik2ab28f32012-10-12 15:27:49 -04003816process:
Josef Bacik5dc562c2012-08-17 13:14:17 -04003817 while (!list_empty(&extents)) {
3818 em = list_entry(extents.next, struct extent_map, list);
3819
3820 list_del_init(&em->list);
3821
3822 /*
3823 * If we had an error we just need to delete everybody from our
3824 * private list.
3825 */
Josef Bacikff44c6e2012-09-14 12:59:20 -04003826 if (ret) {
Josef Bacik201a9032013-01-24 12:02:07 -05003827 clear_em_logging(tree, em);
Josef Bacikff44c6e2012-09-14 12:59:20 -04003828 free_extent_map(em);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003829 continue;
Josef Bacikff44c6e2012-09-14 12:59:20 -04003830 }
3831
3832 write_unlock(&tree->lock);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003833
Miao Xie827463c2014-01-14 20:31:51 +08003834 ret = log_one_extent(trans, inode, root, em, path, logged_list);
Josef Bacikff44c6e2012-09-14 12:59:20 -04003835 write_lock(&tree->lock);
Josef Bacik201a9032013-01-24 12:02:07 -05003836 clear_em_logging(tree, em);
3837 free_extent_map(em);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003838 }
Josef Bacikff44c6e2012-09-14 12:59:20 -04003839 WARN_ON(!list_empty(&extents));
3840 write_unlock(&tree->lock);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003841
Josef Bacik5dc562c2012-08-17 13:14:17 -04003842 btrfs_release_path(path);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003843 return ret;
3844}
3845
Chris Masone02119d2008-09-05 16:13:11 -04003846/* log a single inode in the tree log.
3847 * At least one parent directory for this inode must exist in the tree
3848 * or be logged already.
3849 *
3850 * Any items from this inode changed by the current transaction are copied
3851 * to the log tree. An extra reference is taken on any extents in this
3852 * file, allowing us to avoid a whole pile of corner cases around logging
3853 * blocks that have been removed from the tree.
3854 *
3855 * See LOG_INODE_ALL and related defines for a description of what inode_only
3856 * does.
3857 *
3858 * This handles both files and directories.
3859 */
Chris Mason12fcfd22009-03-24 10:24:20 -04003860static int btrfs_log_inode(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -04003861 struct btrfs_root *root, struct inode *inode,
3862 int inode_only)
3863{
3864 struct btrfs_path *path;
3865 struct btrfs_path *dst_path;
3866 struct btrfs_key min_key;
3867 struct btrfs_key max_key;
3868 struct btrfs_root *log = root->log_root;
Chris Mason31ff1cd2008-09-11 16:17:57 -04003869 struct extent_buffer *src = NULL;
Miao Xie827463c2014-01-14 20:31:51 +08003870 LIST_HEAD(logged_list);
Josef Bacik16e75492013-10-22 12:18:51 -04003871 u64 last_extent = 0;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003872 int err = 0;
Chris Masone02119d2008-09-05 16:13:11 -04003873 int ret;
Chris Mason3a5f1d42008-09-11 15:53:37 -04003874 int nritems;
Chris Mason31ff1cd2008-09-11 16:17:57 -04003875 int ins_start_slot = 0;
3876 int ins_nr;
Josef Bacik5dc562c2012-08-17 13:14:17 -04003877 bool fast_search = false;
Li Zefan33345d012011-04-20 10:31:50 +08003878 u64 ino = btrfs_ino(inode);
Chris Masone02119d2008-09-05 16:13:11 -04003879
Chris Masone02119d2008-09-05 16:13:11 -04003880 path = btrfs_alloc_path();
Tsutomu Itoh5df67082011-02-01 09:17:35 +00003881 if (!path)
3882 return -ENOMEM;
Chris Masone02119d2008-09-05 16:13:11 -04003883 dst_path = btrfs_alloc_path();
Tsutomu Itoh5df67082011-02-01 09:17:35 +00003884 if (!dst_path) {
3885 btrfs_free_path(path);
3886 return -ENOMEM;
3887 }
Chris Masone02119d2008-09-05 16:13:11 -04003888
Li Zefan33345d012011-04-20 10:31:50 +08003889 min_key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04003890 min_key.type = BTRFS_INODE_ITEM_KEY;
3891 min_key.offset = 0;
3892
Li Zefan33345d012011-04-20 10:31:50 +08003893 max_key.objectid = ino;
Chris Mason12fcfd22009-03-24 10:24:20 -04003894
Chris Mason12fcfd22009-03-24 10:24:20 -04003895
Josef Bacik5dc562c2012-08-17 13:14:17 -04003896 /* today the code can only do partial logging of directories */
Miao Xie5269b672012-11-01 07:35:23 +00003897 if (S_ISDIR(inode->i_mode) ||
3898 (!test_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3899 &BTRFS_I(inode)->runtime_flags) &&
3900 inode_only == LOG_INODE_EXISTS))
Chris Masone02119d2008-09-05 16:13:11 -04003901 max_key.type = BTRFS_XATTR_ITEM_KEY;
3902 else
3903 max_key.type = (u8)-1;
3904 max_key.offset = (u64)-1;
3905
Josef Bacik94edf4a2012-09-25 14:56:25 -04003906 /* Only run delayed items if we are a dir or a new file */
3907 if (S_ISDIR(inode->i_mode) ||
3908 BTRFS_I(inode)->generation > root->fs_info->last_trans_committed) {
3909 ret = btrfs_commit_inode_delayed_items(trans, inode);
3910 if (ret) {
3911 btrfs_free_path(path);
3912 btrfs_free_path(dst_path);
3913 return ret;
3914 }
Miao Xie16cdcec2011-04-22 18:12:22 +08003915 }
3916
Chris Masone02119d2008-09-05 16:13:11 -04003917 mutex_lock(&BTRFS_I(inode)->log_mutex);
3918
Miao Xie827463c2014-01-14 20:31:51 +08003919 btrfs_get_logged_extents(inode, &logged_list);
Josef Bacik2ab28f32012-10-12 15:27:49 -04003920
Chris Masone02119d2008-09-05 16:13:11 -04003921 /*
3922 * a brute force approach to making sure we get the most uptodate
3923 * copies of everything.
3924 */
3925 if (S_ISDIR(inode->i_mode)) {
3926 int max_key_type = BTRFS_DIR_LOG_INDEX_KEY;
3927
3928 if (inode_only == LOG_INODE_EXISTS)
3929 max_key_type = BTRFS_XATTR_ITEM_KEY;
Li Zefan33345d012011-04-20 10:31:50 +08003930 ret = drop_objectid_items(trans, log, path, ino, max_key_type);
Chris Masone02119d2008-09-05 16:13:11 -04003931 } else {
Josef Bacik5dc562c2012-08-17 13:14:17 -04003932 if (test_and_clear_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3933 &BTRFS_I(inode)->runtime_flags)) {
Josef Bacike9976152012-10-11 15:53:56 -04003934 clear_bit(BTRFS_INODE_COPY_EVERYTHING,
3935 &BTRFS_I(inode)->runtime_flags);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003936 ret = btrfs_truncate_inode_items(trans, log,
3937 inode, 0, 0);
Josef Bacika95249b2012-10-11 16:17:34 -04003938 } else if (test_and_clear_bit(BTRFS_INODE_COPY_EVERYTHING,
Josef Bacik6cfab852013-11-12 16:25:58 -05003939 &BTRFS_I(inode)->runtime_flags) ||
3940 inode_only == LOG_INODE_EXISTS) {
Josef Bacika95249b2012-10-11 16:17:34 -04003941 if (inode_only == LOG_INODE_ALL)
3942 fast_search = true;
3943 max_key.type = BTRFS_XATTR_ITEM_KEY;
3944 ret = drop_objectid_items(trans, log, path, ino,
3945 max_key.type);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003946 } else {
Liu Bo183f37f2012-11-01 06:38:47 +00003947 if (inode_only == LOG_INODE_ALL)
3948 fast_search = true;
Josef Bacika95249b2012-10-11 16:17:34 -04003949 ret = log_inode_item(trans, log, dst_path, inode);
3950 if (ret) {
3951 err = ret;
3952 goto out_unlock;
3953 }
3954 goto log_extents;
Josef Bacik5dc562c2012-08-17 13:14:17 -04003955 }
Josef Bacika95249b2012-10-11 16:17:34 -04003956
Chris Masone02119d2008-09-05 16:13:11 -04003957 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003958 if (ret) {
3959 err = ret;
3960 goto out_unlock;
3961 }
Chris Masone02119d2008-09-05 16:13:11 -04003962 path->keep_locks = 1;
3963
Chris Masond3977122009-01-05 21:25:51 -05003964 while (1) {
Chris Mason31ff1cd2008-09-11 16:17:57 -04003965 ins_nr = 0;
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01003966 ret = btrfs_search_forward(root, &min_key,
Eric Sandeende78b512013-01-31 18:21:12 +00003967 path, trans->transid);
Chris Masone02119d2008-09-05 16:13:11 -04003968 if (ret != 0)
3969 break;
Chris Mason3a5f1d42008-09-11 15:53:37 -04003970again:
Chris Mason31ff1cd2008-09-11 16:17:57 -04003971 /* note, ins_nr might be > 0 here, cleanup outside the loop */
Li Zefan33345d012011-04-20 10:31:50 +08003972 if (min_key.objectid != ino)
Chris Masone02119d2008-09-05 16:13:11 -04003973 break;
3974 if (min_key.type > max_key.type)
3975 break;
Chris Mason31ff1cd2008-09-11 16:17:57 -04003976
Chris Masone02119d2008-09-05 16:13:11 -04003977 src = path->nodes[0];
Chris Mason31ff1cd2008-09-11 16:17:57 -04003978 if (ins_nr && ins_start_slot + ins_nr == path->slots[0]) {
3979 ins_nr++;
3980 goto next_slot;
3981 } else if (!ins_nr) {
3982 ins_start_slot = path->slots[0];
3983 ins_nr = 1;
3984 goto next_slot;
Chris Masone02119d2008-09-05 16:13:11 -04003985 }
3986
Josef Bacik16e75492013-10-22 12:18:51 -04003987 ret = copy_items(trans, inode, dst_path, path, &last_extent,
3988 ins_start_slot, ins_nr, inode_only);
3989 if (ret < 0) {
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003990 err = ret;
3991 goto out_unlock;
Josef Bacik16e75492013-10-22 12:18:51 -04003992 } if (ret) {
3993 ins_nr = 0;
3994 btrfs_release_path(path);
3995 continue;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003996 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04003997 ins_nr = 1;
3998 ins_start_slot = path->slots[0];
3999next_slot:
Chris Masone02119d2008-09-05 16:13:11 -04004000
Chris Mason3a5f1d42008-09-11 15:53:37 -04004001 nritems = btrfs_header_nritems(path->nodes[0]);
4002 path->slots[0]++;
4003 if (path->slots[0] < nritems) {
4004 btrfs_item_key_to_cpu(path->nodes[0], &min_key,
4005 path->slots[0]);
4006 goto again;
4007 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04004008 if (ins_nr) {
Josef Bacik16e75492013-10-22 12:18:51 -04004009 ret = copy_items(trans, inode, dst_path, path,
4010 &last_extent, ins_start_slot,
Chris Mason31ff1cd2008-09-11 16:17:57 -04004011 ins_nr, inode_only);
Josef Bacik16e75492013-10-22 12:18:51 -04004012 if (ret < 0) {
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004013 err = ret;
4014 goto out_unlock;
4015 }
Josef Bacik16e75492013-10-22 12:18:51 -04004016 ret = 0;
Chris Mason31ff1cd2008-09-11 16:17:57 -04004017 ins_nr = 0;
4018 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004019 btrfs_release_path(path);
Chris Mason3a5f1d42008-09-11 15:53:37 -04004020
Filipe David Borba Manana3d41d702013-10-01 17:06:53 +01004021 if (min_key.offset < (u64)-1) {
Chris Masone02119d2008-09-05 16:13:11 -04004022 min_key.offset++;
Filipe David Borba Manana3d41d702013-10-01 17:06:53 +01004023 } else if (min_key.type < max_key.type) {
Chris Masone02119d2008-09-05 16:13:11 -04004024 min_key.type++;
Filipe David Borba Manana3d41d702013-10-01 17:06:53 +01004025 min_key.offset = 0;
4026 } else {
Chris Masone02119d2008-09-05 16:13:11 -04004027 break;
Filipe David Borba Manana3d41d702013-10-01 17:06:53 +01004028 }
Chris Masone02119d2008-09-05 16:13:11 -04004029 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04004030 if (ins_nr) {
Josef Bacik16e75492013-10-22 12:18:51 -04004031 ret = copy_items(trans, inode, dst_path, path, &last_extent,
4032 ins_start_slot, ins_nr, inode_only);
4033 if (ret < 0) {
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004034 err = ret;
4035 goto out_unlock;
4036 }
Josef Bacik16e75492013-10-22 12:18:51 -04004037 ret = 0;
Chris Mason31ff1cd2008-09-11 16:17:57 -04004038 ins_nr = 0;
4039 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04004040
Josef Bacika95249b2012-10-11 16:17:34 -04004041log_extents:
Josef Bacikf3b15cc2013-07-22 12:54:30 -04004042 btrfs_release_path(path);
4043 btrfs_release_path(dst_path);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004044 if (fast_search) {
Miao Xie827463c2014-01-14 20:31:51 +08004045 ret = btrfs_log_changed_extents(trans, root, inode, dst_path,
4046 &logged_list);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004047 if (ret) {
4048 err = ret;
4049 goto out_unlock;
4050 }
Josef Bacikd006a042013-11-12 20:54:09 -05004051 } else if (inode_only == LOG_INODE_ALL) {
Liu Bo06d3d222012-08-27 10:52:19 -06004052 struct extent_map_tree *tree = &BTRFS_I(inode)->extent_tree;
4053 struct extent_map *em, *n;
4054
Miao Xiebbe14262012-11-01 07:34:54 +00004055 write_lock(&tree->lock);
Liu Bo06d3d222012-08-27 10:52:19 -06004056 list_for_each_entry_safe(em, n, &tree->modified_extents, list)
4057 list_del_init(&em->list);
Miao Xiebbe14262012-11-01 07:34:54 +00004058 write_unlock(&tree->lock);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004059 }
4060
Chris Mason9623f9a2008-09-11 17:42:42 -04004061 if (inode_only == LOG_INODE_ALL && S_ISDIR(inode->i_mode)) {
Chris Masone02119d2008-09-05 16:13:11 -04004062 ret = log_directory_changes(trans, root, inode, path, dst_path);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004063 if (ret) {
4064 err = ret;
4065 goto out_unlock;
4066 }
Chris Masone02119d2008-09-05 16:13:11 -04004067 }
Chris Mason3a5f1d42008-09-11 15:53:37 -04004068 BTRFS_I(inode)->logged_trans = trans->transid;
Liu Bo46d8bc32012-08-29 01:07:55 -06004069 BTRFS_I(inode)->last_log_commit = BTRFS_I(inode)->last_sub_trans;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004070out_unlock:
Miao Xie827463c2014-01-14 20:31:51 +08004071 if (unlikely(err))
4072 btrfs_put_logged_extents(&logged_list);
4073 else
4074 btrfs_submit_logged_extents(&logged_list, log);
Chris Masone02119d2008-09-05 16:13:11 -04004075 mutex_unlock(&BTRFS_I(inode)->log_mutex);
4076
4077 btrfs_free_path(path);
4078 btrfs_free_path(dst_path);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004079 return err;
Chris Masone02119d2008-09-05 16:13:11 -04004080}
4081
Chris Mason12fcfd22009-03-24 10:24:20 -04004082/*
4083 * follow the dentry parent pointers up the chain and see if any
4084 * of the directories in it require a full commit before they can
4085 * be logged. Returns zero if nothing special needs to be done or 1 if
4086 * a full commit is required.
4087 */
4088static noinline int check_parent_dirs_for_sync(struct btrfs_trans_handle *trans,
4089 struct inode *inode,
4090 struct dentry *parent,
4091 struct super_block *sb,
4092 u64 last_committed)
Chris Masone02119d2008-09-05 16:13:11 -04004093{
Chris Mason12fcfd22009-03-24 10:24:20 -04004094 int ret = 0;
4095 struct btrfs_root *root;
Josef Bacik6a912212010-11-20 09:48:00 +00004096 struct dentry *old_parent = NULL;
Josef Bacikde2b5302013-09-11 09:36:30 -04004097 struct inode *orig_inode = inode;
Chris Masone02119d2008-09-05 16:13:11 -04004098
Chris Masonaf4176b2009-03-24 10:24:31 -04004099 /*
4100 * for regular files, if its inode is already on disk, we don't
4101 * have to worry about the parents at all. This is because
4102 * we can use the last_unlink_trans field to record renames
4103 * and other fun in this file.
4104 */
4105 if (S_ISREG(inode->i_mode) &&
4106 BTRFS_I(inode)->generation <= last_committed &&
4107 BTRFS_I(inode)->last_unlink_trans <= last_committed)
4108 goto out;
4109
Chris Mason12fcfd22009-03-24 10:24:20 -04004110 if (!S_ISDIR(inode->i_mode)) {
4111 if (!parent || !parent->d_inode || sb != parent->d_inode->i_sb)
4112 goto out;
4113 inode = parent->d_inode;
4114 }
4115
4116 while (1) {
Josef Bacikde2b5302013-09-11 09:36:30 -04004117 /*
4118 * If we are logging a directory then we start with our inode,
4119 * not our parents inode, so we need to skipp setting the
4120 * logged_trans so that further down in the log code we don't
4121 * think this inode has already been logged.
4122 */
4123 if (inode != orig_inode)
4124 BTRFS_I(inode)->logged_trans = trans->transid;
Chris Mason12fcfd22009-03-24 10:24:20 -04004125 smp_mb();
4126
4127 if (BTRFS_I(inode)->last_unlink_trans > last_committed) {
4128 root = BTRFS_I(inode)->root;
4129
4130 /*
4131 * make sure any commits to the log are forced
4132 * to be full commits
4133 */
Miao Xie995946d2014-04-02 19:51:06 +08004134 btrfs_set_log_full_commit(root->fs_info, trans);
Chris Mason12fcfd22009-03-24 10:24:20 -04004135 ret = 1;
4136 break;
4137 }
4138
4139 if (!parent || !parent->d_inode || sb != parent->d_inode->i_sb)
4140 break;
4141
Yan, Zheng76dda932009-09-21 16:00:26 -04004142 if (IS_ROOT(parent))
Chris Mason12fcfd22009-03-24 10:24:20 -04004143 break;
4144
Josef Bacik6a912212010-11-20 09:48:00 +00004145 parent = dget_parent(parent);
4146 dput(old_parent);
4147 old_parent = parent;
Chris Mason12fcfd22009-03-24 10:24:20 -04004148 inode = parent->d_inode;
4149
4150 }
Josef Bacik6a912212010-11-20 09:48:00 +00004151 dput(old_parent);
Chris Mason12fcfd22009-03-24 10:24:20 -04004152out:
Chris Masone02119d2008-09-05 16:13:11 -04004153 return ret;
4154}
4155
4156/*
4157 * helper function around btrfs_log_inode to make sure newly created
4158 * parent directories also end up in the log. A minimal inode and backref
4159 * only logging is done of any parent directories that are older than
4160 * the last committed transaction
4161 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00004162static int btrfs_log_inode_parent(struct btrfs_trans_handle *trans,
4163 struct btrfs_root *root, struct inode *inode,
Miao Xie8b050d32014-02-20 18:08:58 +08004164 struct dentry *parent, int exists_only,
4165 struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -04004166{
Chris Mason12fcfd22009-03-24 10:24:20 -04004167 int inode_only = exists_only ? LOG_INODE_EXISTS : LOG_INODE_ALL;
Chris Masone02119d2008-09-05 16:13:11 -04004168 struct super_block *sb;
Josef Bacik6a912212010-11-20 09:48:00 +00004169 struct dentry *old_parent = NULL;
Chris Mason12fcfd22009-03-24 10:24:20 -04004170 int ret = 0;
4171 u64 last_committed = root->fs_info->last_trans_committed;
4172
4173 sb = inode->i_sb;
4174
Sage Weil3a5e1402009-04-02 16:49:40 -04004175 if (btrfs_test_opt(root, NOTREELOG)) {
4176 ret = 1;
4177 goto end_no_trans;
4178 }
4179
Miao Xie995946d2014-04-02 19:51:06 +08004180 /*
4181 * The prev transaction commit doesn't complete, we need do
4182 * full commit by ourselves.
4183 */
Chris Mason12fcfd22009-03-24 10:24:20 -04004184 if (root->fs_info->last_trans_log_full_commit >
4185 root->fs_info->last_trans_committed) {
4186 ret = 1;
4187 goto end_no_trans;
4188 }
4189
Yan, Zheng76dda932009-09-21 16:00:26 -04004190 if (root != BTRFS_I(inode)->root ||
4191 btrfs_root_refs(&root->root_item) == 0) {
4192 ret = 1;
4193 goto end_no_trans;
4194 }
4195
Chris Mason12fcfd22009-03-24 10:24:20 -04004196 ret = check_parent_dirs_for_sync(trans, inode, parent,
4197 sb, last_committed);
4198 if (ret)
4199 goto end_no_trans;
Chris Masone02119d2008-09-05 16:13:11 -04004200
Josef Bacik22ee6982012-05-29 16:57:49 -04004201 if (btrfs_inode_in_log(inode, trans->transid)) {
Chris Mason257c62e2009-10-13 13:21:08 -04004202 ret = BTRFS_NO_LOG_SYNC;
4203 goto end_no_trans;
4204 }
4205
Miao Xie8b050d32014-02-20 18:08:58 +08004206 ret = start_log_trans(trans, root, ctx);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004207 if (ret)
Miao Xiee87ac132014-02-20 18:08:53 +08004208 goto end_no_trans;
Chris Mason12fcfd22009-03-24 10:24:20 -04004209
4210 ret = btrfs_log_inode(trans, root, inode, inode_only);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004211 if (ret)
4212 goto end_trans;
Chris Mason12fcfd22009-03-24 10:24:20 -04004213
Chris Masonaf4176b2009-03-24 10:24:31 -04004214 /*
4215 * for regular files, if its inode is already on disk, we don't
4216 * have to worry about the parents at all. This is because
4217 * we can use the last_unlink_trans field to record renames
4218 * and other fun in this file.
4219 */
4220 if (S_ISREG(inode->i_mode) &&
4221 BTRFS_I(inode)->generation <= last_committed &&
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004222 BTRFS_I(inode)->last_unlink_trans <= last_committed) {
4223 ret = 0;
4224 goto end_trans;
4225 }
Chris Masonaf4176b2009-03-24 10:24:31 -04004226
4227 inode_only = LOG_INODE_EXISTS;
Chris Masond3977122009-01-05 21:25:51 -05004228 while (1) {
Chris Mason12fcfd22009-03-24 10:24:20 -04004229 if (!parent || !parent->d_inode || sb != parent->d_inode->i_sb)
Chris Masone02119d2008-09-05 16:13:11 -04004230 break;
4231
Chris Mason12fcfd22009-03-24 10:24:20 -04004232 inode = parent->d_inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04004233 if (root != BTRFS_I(inode)->root)
4234 break;
4235
Chris Mason12fcfd22009-03-24 10:24:20 -04004236 if (BTRFS_I(inode)->generation >
4237 root->fs_info->last_trans_committed) {
4238 ret = btrfs_log_inode(trans, root, inode, inode_only);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004239 if (ret)
4240 goto end_trans;
Chris Mason12fcfd22009-03-24 10:24:20 -04004241 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004242 if (IS_ROOT(parent))
Chris Masone02119d2008-09-05 16:13:11 -04004243 break;
Chris Mason12fcfd22009-03-24 10:24:20 -04004244
Josef Bacik6a912212010-11-20 09:48:00 +00004245 parent = dget_parent(parent);
4246 dput(old_parent);
4247 old_parent = parent;
Chris Masone02119d2008-09-05 16:13:11 -04004248 }
Chris Mason12fcfd22009-03-24 10:24:20 -04004249 ret = 0;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004250end_trans:
Josef Bacik6a912212010-11-20 09:48:00 +00004251 dput(old_parent);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004252 if (ret < 0) {
Miao Xie995946d2014-04-02 19:51:06 +08004253 btrfs_set_log_full_commit(root->fs_info, trans);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004254 ret = 1;
4255 }
Miao Xie8b050d32014-02-20 18:08:58 +08004256
4257 if (ret)
4258 btrfs_remove_log_ctx(root, ctx);
Chris Mason12fcfd22009-03-24 10:24:20 -04004259 btrfs_end_log_trans(root);
4260end_no_trans:
4261 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04004262}
4263
4264/*
4265 * it is not safe to log dentry if the chunk root has added new
4266 * chunks. This returns 0 if the dentry was logged, and 1 otherwise.
4267 * If this returns 1, you must commit the transaction to safely get your
4268 * data on disk.
4269 */
4270int btrfs_log_dentry_safe(struct btrfs_trans_handle *trans,
Miao Xie8b050d32014-02-20 18:08:58 +08004271 struct btrfs_root *root, struct dentry *dentry,
4272 struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -04004273{
Josef Bacik6a912212010-11-20 09:48:00 +00004274 struct dentry *parent = dget_parent(dentry);
4275 int ret;
4276
Miao Xie8b050d32014-02-20 18:08:58 +08004277 ret = btrfs_log_inode_parent(trans, root, dentry->d_inode, parent,
4278 0, ctx);
Josef Bacik6a912212010-11-20 09:48:00 +00004279 dput(parent);
4280
4281 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04004282}
4283
4284/*
4285 * should be called during mount to recover any replay any log trees
4286 * from the FS
4287 */
4288int btrfs_recover_log_trees(struct btrfs_root *log_root_tree)
4289{
4290 int ret;
4291 struct btrfs_path *path;
4292 struct btrfs_trans_handle *trans;
4293 struct btrfs_key key;
4294 struct btrfs_key found_key;
4295 struct btrfs_key tmp_key;
4296 struct btrfs_root *log;
4297 struct btrfs_fs_info *fs_info = log_root_tree->fs_info;
4298 struct walk_control wc = {
4299 .process_func = process_one_buffer,
4300 .stage = 0,
4301 };
4302
Chris Masone02119d2008-09-05 16:13:11 -04004303 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004304 if (!path)
4305 return -ENOMEM;
4306
4307 fs_info->log_root_recovering = 1;
Chris Masone02119d2008-09-05 16:13:11 -04004308
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004309 trans = btrfs_start_transaction(fs_info->tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004310 if (IS_ERR(trans)) {
4311 ret = PTR_ERR(trans);
4312 goto error;
4313 }
Chris Masone02119d2008-09-05 16:13:11 -04004314
4315 wc.trans = trans;
4316 wc.pin = 1;
4317
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004318 ret = walk_log_tree(trans, log_root_tree, &wc);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004319 if (ret) {
4320 btrfs_error(fs_info, ret, "Failed to pin buffers while "
4321 "recovering log root tree.");
4322 goto error;
4323 }
Chris Masone02119d2008-09-05 16:13:11 -04004324
4325again:
4326 key.objectid = BTRFS_TREE_LOG_OBJECTID;
4327 key.offset = (u64)-1;
4328 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
4329
Chris Masond3977122009-01-05 21:25:51 -05004330 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04004331 ret = btrfs_search_slot(NULL, log_root_tree, &key, path, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004332
4333 if (ret < 0) {
4334 btrfs_error(fs_info, ret,
4335 "Couldn't find tree log root.");
4336 goto error;
4337 }
Chris Masone02119d2008-09-05 16:13:11 -04004338 if (ret > 0) {
4339 if (path->slots[0] == 0)
4340 break;
4341 path->slots[0]--;
4342 }
4343 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
4344 path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02004345 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04004346 if (found_key.objectid != BTRFS_TREE_LOG_OBJECTID)
4347 break;
4348
Miao Xiecb517ea2013-05-15 07:48:19 +00004349 log = btrfs_read_fs_root(log_root_tree, &found_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004350 if (IS_ERR(log)) {
4351 ret = PTR_ERR(log);
4352 btrfs_error(fs_info, ret,
4353 "Couldn't read tree log root.");
4354 goto error;
4355 }
Chris Masone02119d2008-09-05 16:13:11 -04004356
4357 tmp_key.objectid = found_key.offset;
4358 tmp_key.type = BTRFS_ROOT_ITEM_KEY;
4359 tmp_key.offset = (u64)-1;
4360
4361 wc.replay_dest = btrfs_read_fs_root_no_name(fs_info, &tmp_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004362 if (IS_ERR(wc.replay_dest)) {
4363 ret = PTR_ERR(wc.replay_dest);
Josef Bacikb50c6e22013-04-25 15:55:30 -04004364 free_extent_buffer(log->node);
4365 free_extent_buffer(log->commit_root);
4366 kfree(log);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004367 btrfs_error(fs_info, ret, "Couldn't read target root "
4368 "for tree log recovery.");
4369 goto error;
4370 }
Chris Masone02119d2008-09-05 16:13:11 -04004371
Yan Zheng07d400a2009-01-06 11:42:00 -05004372 wc.replay_dest->log_root = log;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004373 btrfs_record_root_in_trans(trans, wc.replay_dest);
Chris Masone02119d2008-09-05 16:13:11 -04004374 ret = walk_log_tree(trans, log, &wc);
Chris Masone02119d2008-09-05 16:13:11 -04004375
Josef Bacikb50c6e22013-04-25 15:55:30 -04004376 if (!ret && wc.stage == LOG_WALK_REPLAY_ALL) {
Chris Masone02119d2008-09-05 16:13:11 -04004377 ret = fixup_inode_link_counts(trans, wc.replay_dest,
4378 path);
Chris Masone02119d2008-09-05 16:13:11 -04004379 }
Chris Masone02119d2008-09-05 16:13:11 -04004380
4381 key.offset = found_key.offset - 1;
Yan Zheng07d400a2009-01-06 11:42:00 -05004382 wc.replay_dest->log_root = NULL;
Chris Masone02119d2008-09-05 16:13:11 -04004383 free_extent_buffer(log->node);
Chris Masonb263c2c2009-06-11 11:24:47 -04004384 free_extent_buffer(log->commit_root);
Chris Masone02119d2008-09-05 16:13:11 -04004385 kfree(log);
4386
Josef Bacikb50c6e22013-04-25 15:55:30 -04004387 if (ret)
4388 goto error;
4389
Chris Masone02119d2008-09-05 16:13:11 -04004390 if (found_key.offset == 0)
4391 break;
4392 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004393 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04004394
4395 /* step one is to pin it all, step two is to replay just inodes */
4396 if (wc.pin) {
4397 wc.pin = 0;
4398 wc.process_func = replay_one_buffer;
4399 wc.stage = LOG_WALK_REPLAY_INODES;
4400 goto again;
4401 }
4402 /* step three is to replay everything */
4403 if (wc.stage < LOG_WALK_REPLAY_ALL) {
4404 wc.stage++;
4405 goto again;
4406 }
4407
4408 btrfs_free_path(path);
4409
Josef Bacikabefa552013-04-24 16:40:05 -04004410 /* step 4: commit the transaction, which also unpins the blocks */
4411 ret = btrfs_commit_transaction(trans, fs_info->tree_root);
4412 if (ret)
4413 return ret;
4414
Chris Masone02119d2008-09-05 16:13:11 -04004415 free_extent_buffer(log_root_tree->node);
4416 log_root_tree->log_root = NULL;
4417 fs_info->log_root_recovering = 0;
Chris Masone02119d2008-09-05 16:13:11 -04004418 kfree(log_root_tree);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004419
Josef Bacikabefa552013-04-24 16:40:05 -04004420 return 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004421error:
Josef Bacikb50c6e22013-04-25 15:55:30 -04004422 if (wc.trans)
4423 btrfs_end_transaction(wc.trans, fs_info->tree_root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004424 btrfs_free_path(path);
4425 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04004426}
Chris Mason12fcfd22009-03-24 10:24:20 -04004427
4428/*
4429 * there are some corner cases where we want to force a full
4430 * commit instead of allowing a directory to be logged.
4431 *
4432 * They revolve around files there were unlinked from the directory, and
4433 * this function updates the parent directory so that a full commit is
4434 * properly done if it is fsync'd later after the unlinks are done.
4435 */
4436void btrfs_record_unlink_dir(struct btrfs_trans_handle *trans,
4437 struct inode *dir, struct inode *inode,
4438 int for_rename)
4439{
4440 /*
Chris Masonaf4176b2009-03-24 10:24:31 -04004441 * when we're logging a file, if it hasn't been renamed
4442 * or unlinked, and its inode is fully committed on disk,
4443 * we don't have to worry about walking up the directory chain
4444 * to log its parents.
4445 *
4446 * So, we use the last_unlink_trans field to put this transid
4447 * into the file. When the file is logged we check it and
4448 * don't log the parents if the file is fully on disk.
4449 */
4450 if (S_ISREG(inode->i_mode))
4451 BTRFS_I(inode)->last_unlink_trans = trans->transid;
4452
4453 /*
Chris Mason12fcfd22009-03-24 10:24:20 -04004454 * if this directory was already logged any new
4455 * names for this file/dir will get recorded
4456 */
4457 smp_mb();
4458 if (BTRFS_I(dir)->logged_trans == trans->transid)
4459 return;
4460
4461 /*
4462 * if the inode we're about to unlink was logged,
4463 * the log will be properly updated for any new names
4464 */
4465 if (BTRFS_I(inode)->logged_trans == trans->transid)
4466 return;
4467
4468 /*
4469 * when renaming files across directories, if the directory
4470 * there we're unlinking from gets fsync'd later on, there's
4471 * no way to find the destination directory later and fsync it
4472 * properly. So, we have to be conservative and force commits
4473 * so the new name gets discovered.
4474 */
4475 if (for_rename)
4476 goto record;
4477
4478 /* we can safely do the unlink without any special recording */
4479 return;
4480
4481record:
4482 BTRFS_I(dir)->last_unlink_trans = trans->transid;
4483}
4484
4485/*
4486 * Call this after adding a new name for a file and it will properly
4487 * update the log to reflect the new name.
4488 *
4489 * It will return zero if all goes well, and it will return 1 if a
4490 * full transaction commit is required.
4491 */
4492int btrfs_log_new_name(struct btrfs_trans_handle *trans,
4493 struct inode *inode, struct inode *old_dir,
4494 struct dentry *parent)
4495{
4496 struct btrfs_root * root = BTRFS_I(inode)->root;
4497
4498 /*
Chris Masonaf4176b2009-03-24 10:24:31 -04004499 * this will force the logging code to walk the dentry chain
4500 * up for the file
4501 */
4502 if (S_ISREG(inode->i_mode))
4503 BTRFS_I(inode)->last_unlink_trans = trans->transid;
4504
4505 /*
Chris Mason12fcfd22009-03-24 10:24:20 -04004506 * if this inode hasn't been logged and directory we're renaming it
4507 * from hasn't been logged, we don't need to log it
4508 */
4509 if (BTRFS_I(inode)->logged_trans <=
4510 root->fs_info->last_trans_committed &&
4511 (!old_dir || BTRFS_I(old_dir)->logged_trans <=
4512 root->fs_info->last_trans_committed))
4513 return 0;
4514
Miao Xie8b050d32014-02-20 18:08:58 +08004515 return btrfs_log_inode_parent(trans, root, inode, parent, 1, NULL);
Chris Mason12fcfd22009-03-24 10:24:20 -04004516}
4517