blob: c6bfa86e2f228ef27965e78faabd2d44151425b9 [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>
Jeff Laytonc7f88c42017-12-11 06:35:12 -050023#include <linux/iversion.h>
Nikolay Borisov9678c542018-01-08 11:45:05 +020024#include "ctree.h"
Miao Xie995946d2014-04-02 19:51:06 +080025#include "tree-log.h"
Chris Masone02119d2008-09-05 16:13:11 -040026#include "disk-io.h"
27#include "locking.h"
28#include "print-tree.h"
Mark Fashehf1863732012-08-08 11:32:27 -070029#include "backref.h"
Anand Jainebb87652016-03-10 17:26:59 +080030#include "compression.h"
Qu Wenruodf2c95f2016-08-15 10:36:52 +080031#include "qgroup.h"
Liu Bo900c9982018-01-25 11:02:56 -070032#include "inode-map.h"
Chris Masone02119d2008-09-05 16:13:11 -040033
34/* magic values for the inode_only field in btrfs_log_inode:
35 *
36 * LOG_INODE_ALL means to log everything
37 * LOG_INODE_EXISTS means to log just enough to recreate the inode
38 * during log replay
39 */
40#define LOG_INODE_ALL 0
41#define LOG_INODE_EXISTS 1
Liu Bo781feef2016-11-30 16:20:25 -080042#define LOG_OTHER_INODE 2
Chris Masone02119d2008-09-05 16:13:11 -040043
44/*
Chris Mason12fcfd22009-03-24 10:24:20 -040045 * directory trouble cases
46 *
47 * 1) on rename or unlink, if the inode being unlinked isn't in the fsync
48 * log, we must force a full commit before doing an fsync of the directory
49 * where the unlink was done.
50 * ---> record transid of last unlink/rename per directory
51 *
52 * mkdir foo/some_dir
53 * normal commit
54 * rename foo/some_dir foo2/some_dir
55 * mkdir foo/some_dir
56 * fsync foo/some_dir/some_file
57 *
58 * The fsync above will unlink the original some_dir without recording
59 * it in its new location (foo2). After a crash, some_dir will be gone
60 * unless the fsync of some_file forces a full commit
61 *
62 * 2) we must log any new names for any file or dir that is in the fsync
63 * log. ---> check inode while renaming/linking.
64 *
65 * 2a) we must log any new names for any file or dir during rename
66 * when the directory they are being removed from was logged.
67 * ---> check inode and old parent dir during rename
68 *
69 * 2a is actually the more important variant. With the extra logging
70 * a crash might unlink the old name without recreating the new one
71 *
72 * 3) after a crash, we must go through any directories with a link count
73 * of zero and redo the rm -rf
74 *
75 * mkdir f1/foo
76 * normal commit
77 * rm -rf f1/foo
78 * fsync(f1)
79 *
80 * The directory f1 was fully removed from the FS, but fsync was never
81 * called on f1, only its parent dir. After a crash the rm -rf must
82 * be replayed. This must be able to recurse down the entire
83 * directory tree. The inode link count fixup code takes care of the
84 * ugly details.
85 */
86
87/*
Chris Masone02119d2008-09-05 16:13:11 -040088 * stages for the tree walking. The first
89 * stage (0) is to only pin down the blocks we find
90 * the second stage (1) is to make sure that all the inodes
91 * we find in the log are created in the subvolume.
92 *
93 * The last stage is to deal with directories and links and extents
94 * and all the other fun semantics
95 */
96#define LOG_WALK_PIN_ONLY 0
97#define LOG_WALK_REPLAY_INODES 1
Josef Bacikdd8e7212013-09-11 11:57:23 -040098#define LOG_WALK_REPLAY_DIR_INDEX 2
99#define LOG_WALK_REPLAY_ALL 3
Chris Masone02119d2008-09-05 16:13:11 -0400100
Chris Mason12fcfd22009-03-24 10:24:20 -0400101static int btrfs_log_inode(struct btrfs_trans_handle *trans,
Nikolay Borisova59108a2017-01-18 00:31:48 +0200102 struct btrfs_root *root, struct btrfs_inode *inode,
Filipe Manana49dae1b2014-09-06 22:34:39 +0100103 int inode_only,
104 const loff_t start,
Filipe Manana8407f552014-09-05 15:14:39 +0100105 const loff_t end,
106 struct btrfs_log_ctx *ctx);
Yan Zhengec051c02009-01-05 15:43:42 -0500107static int link_to_fixup_dir(struct btrfs_trans_handle *trans,
108 struct btrfs_root *root,
109 struct btrfs_path *path, u64 objectid);
Chris Mason12fcfd22009-03-24 10:24:20 -0400110static noinline int replay_dir_deletes(struct btrfs_trans_handle *trans,
111 struct btrfs_root *root,
112 struct btrfs_root *log,
113 struct btrfs_path *path,
114 u64 dirid, int del_all);
Chris Masone02119d2008-09-05 16:13:11 -0400115
116/*
117 * tree logging is a special write ahead log used to make sure that
118 * fsyncs and O_SYNCs can happen without doing full tree commits.
119 *
120 * Full tree commits are expensive because they require commonly
121 * modified blocks to be recowed, creating many dirty pages in the
122 * extent tree an 4x-6x higher write load than ext3.
123 *
124 * Instead of doing a tree commit on every fsync, we use the
125 * key ranges and transaction ids to find items for a given file or directory
126 * that have changed in this transaction. Those items are copied into
127 * a special tree (one per subvolume root), that tree is written to disk
128 * and then the fsync is considered complete.
129 *
130 * After a crash, items are copied out of the log-tree back into the
131 * subvolume tree. Any file data extents found are recorded in the extent
132 * allocation tree, and the log-tree freed.
133 *
134 * The log tree is read three times, once to pin down all the extents it is
135 * using in ram and once, once to create all the inodes logged in the tree
136 * and once to do all the other items.
137 */
138
139/*
Chris Masone02119d2008-09-05 16:13:11 -0400140 * start a sub transaction and setup the log tree
141 * this increments the log tree writer count to make the people
142 * syncing the tree wait for us to finish
143 */
144static int start_log_trans(struct btrfs_trans_handle *trans,
Miao Xie8b050d32014-02-20 18:08:58 +0800145 struct btrfs_root *root,
146 struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -0400147{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400148 struct btrfs_fs_info *fs_info = root->fs_info;
Zhaolei34eb2a52015-08-17 18:44:45 +0800149 int ret = 0;
Yan Zheng7237f182009-01-21 12:54:03 -0500150
151 mutex_lock(&root->log_mutex);
Zhaolei34eb2a52015-08-17 18:44:45 +0800152
Yan Zheng7237f182009-01-21 12:54:03 -0500153 if (root->log_root) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400154 if (btrfs_need_log_full_commit(fs_info, trans)) {
Miao Xie50471a32014-02-20 18:08:57 +0800155 ret = -EAGAIN;
156 goto out;
157 }
Zhaolei34eb2a52015-08-17 18:44:45 +0800158
Josef Bacikff782e02009-10-08 15:30:04 -0400159 if (!root->log_start_pid) {
Miao Xie27cdeb72014-04-02 19:51:05 +0800160 clear_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state);
Zhaolei34eb2a52015-08-17 18:44:45 +0800161 root->log_start_pid = current->pid;
Josef Bacikff782e02009-10-08 15:30:04 -0400162 } else if (root->log_start_pid != current->pid) {
Miao Xie27cdeb72014-04-02 19:51:05 +0800163 set_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state);
Josef Bacikff782e02009-10-08 15:30:04 -0400164 }
Zhaolei34eb2a52015-08-17 18:44:45 +0800165 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400166 mutex_lock(&fs_info->tree_log_mutex);
167 if (!fs_info->log_root_tree)
168 ret = btrfs_init_log_root_tree(trans, fs_info);
169 mutex_unlock(&fs_info->tree_log_mutex);
Zhaolei34eb2a52015-08-17 18:44:45 +0800170 if (ret)
171 goto out;
Josef Bacikff782e02009-10-08 15:30:04 -0400172
Chris Masone02119d2008-09-05 16:13:11 -0400173 ret = btrfs_add_log_tree(trans, root);
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400174 if (ret)
Miao Xiee87ac132014-02-20 18:08:53 +0800175 goto out;
Zhaolei34eb2a52015-08-17 18:44:45 +0800176
177 clear_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state);
178 root->log_start_pid = current->pid;
Chris Masone02119d2008-09-05 16:13:11 -0400179 }
Zhaolei34eb2a52015-08-17 18:44:45 +0800180
Miao Xie2ecb7922012-09-06 04:04:27 -0600181 atomic_inc(&root->log_batch);
Yan Zheng7237f182009-01-21 12:54:03 -0500182 atomic_inc(&root->log_writers);
Miao Xie8b050d32014-02-20 18:08:58 +0800183 if (ctx) {
Zhaolei34eb2a52015-08-17 18:44:45 +0800184 int index = root->log_transid % 2;
Miao Xie8b050d32014-02-20 18:08:58 +0800185 list_add_tail(&ctx->list, &root->log_ctxs[index]);
Miao Xied1433de2014-02-20 18:08:59 +0800186 ctx->log_transid = root->log_transid;
Miao Xie8b050d32014-02-20 18:08:58 +0800187 }
Zhaolei34eb2a52015-08-17 18:44:45 +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)) {
David Sterba779adf02015-02-16 19:39:00 +0100238 /*
239 * Implicit memory barrier after atomic_dec_and_test
240 */
Yan Zheng7237f182009-01-21 12:54:03 -0500241 if (waitqueue_active(&root->log_writer_wait))
242 wake_up(&root->log_writer_wait);
243 }
Chris Masone02119d2008-09-05 16:13:11 -0400244}
245
246
247/*
248 * the walk control struct is used to pass state down the chain when
249 * processing the log tree. The stage field tells us which part
250 * of the log tree processing we are currently doing. The others
251 * are state fields used for that specific part
252 */
253struct walk_control {
254 /* should we free the extent on disk when done? This is used
255 * at transaction commit time while freeing a log tree
256 */
257 int free;
258
259 /* should we write out the extent buffer? This is used
260 * while flushing the log tree to disk during a sync
261 */
262 int write;
263
264 /* should we wait for the extent buffer io to finish? Also used
265 * while flushing the log tree to disk for a sync
266 */
267 int wait;
268
269 /* pin only walk, we record which extents on disk belong to the
270 * log trees
271 */
272 int pin;
273
274 /* what stage of the replay code we're currently in */
275 int stage;
276
277 /* the root we are currently replaying */
278 struct btrfs_root *replay_dest;
279
280 /* the trans handle for the current replay */
281 struct btrfs_trans_handle *trans;
282
283 /* the function that gets used to process blocks we find in the
284 * tree. Note the extent_buffer might not be up to date when it is
285 * passed in, and it must be checked or read if you need the data
286 * inside it
287 */
288 int (*process_func)(struct btrfs_root *log, struct extent_buffer *eb,
Qu Wenruo581c1762018-03-29 09:08:11 +0800289 struct walk_control *wc, u64 gen, int level);
Chris Masone02119d2008-09-05 16:13:11 -0400290};
291
292/*
293 * process_func used to pin down extents, write them or wait on them
294 */
295static int process_one_buffer(struct btrfs_root *log,
296 struct extent_buffer *eb,
Qu Wenruo581c1762018-03-29 09:08:11 +0800297 struct walk_control *wc, u64 gen, int level)
Chris Masone02119d2008-09-05 16:13:11 -0400298{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400299 struct btrfs_fs_info *fs_info = log->fs_info;
Josef Bacikb50c6e22013-04-25 15:55:30 -0400300 int ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -0400301
Josef Bacik8c2a1a32013-06-06 13:19:32 -0400302 /*
303 * If this fs is mixed then we need to be able to process the leaves to
304 * pin down any logged extents, so we have to read the block.
305 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400306 if (btrfs_fs_incompat(fs_info, MIXED_GROUPS)) {
Qu Wenruo581c1762018-03-29 09:08:11 +0800307 ret = btrfs_read_buffer(eb, gen, level, NULL);
Josef Bacik8c2a1a32013-06-06 13:19:32 -0400308 if (ret)
309 return ret;
310 }
311
Josef Bacikb50c6e22013-04-25 15:55:30 -0400312 if (wc->pin)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400313 ret = btrfs_pin_extent_for_log_replay(fs_info, eb->start,
314 eb->len);
Josef Bacikb50c6e22013-04-25 15:55:30 -0400315
316 if (!ret && btrfs_buffer_uptodate(eb, gen, 0)) {
Josef Bacik8c2a1a32013-06-06 13:19:32 -0400317 if (wc->pin && btrfs_header_level(eb) == 0)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400318 ret = btrfs_exclude_logged_extents(fs_info, eb);
Chris Masone02119d2008-09-05 16:13:11 -0400319 if (wc->write)
320 btrfs_write_tree_block(eb);
321 if (wc->wait)
322 btrfs_wait_tree_block_writeback(eb);
323 }
Josef Bacikb50c6e22013-04-25 15:55:30 -0400324 return ret;
Chris Masone02119d2008-09-05 16:13:11 -0400325}
326
327/*
328 * Item overwrite used by replay and tree logging. eb, slot and key all refer
329 * to the src data we are copying out.
330 *
331 * root is the tree we are copying into, and path is a scratch
332 * path for use in this function (it should be released on entry and
333 * will be released on exit).
334 *
335 * If the key is already in the destination tree the existing item is
336 * overwritten. If the existing item isn't big enough, it is extended.
337 * If it is too large, it is truncated.
338 *
339 * If the key isn't in the destination yet, a new item is inserted.
340 */
341static noinline int overwrite_item(struct btrfs_trans_handle *trans,
342 struct btrfs_root *root,
343 struct btrfs_path *path,
344 struct extent_buffer *eb, int slot,
345 struct btrfs_key *key)
346{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400347 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -0400348 int ret;
349 u32 item_size;
350 u64 saved_i_size = 0;
351 int save_old_i_size = 0;
352 unsigned long src_ptr;
353 unsigned long dst_ptr;
354 int overwrite_root = 0;
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000355 bool inode_item = key->type == BTRFS_INODE_ITEM_KEY;
Chris Masone02119d2008-09-05 16:13:11 -0400356
357 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID)
358 overwrite_root = 1;
359
360 item_size = btrfs_item_size_nr(eb, slot);
361 src_ptr = btrfs_item_ptr_offset(eb, slot);
362
363 /* look for the key in the destination tree */
364 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000365 if (ret < 0)
366 return ret;
367
Chris Masone02119d2008-09-05 16:13:11 -0400368 if (ret == 0) {
369 char *src_copy;
370 char *dst_copy;
371 u32 dst_size = btrfs_item_size_nr(path->nodes[0],
372 path->slots[0]);
373 if (dst_size != item_size)
374 goto insert;
375
376 if (item_size == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200377 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400378 return 0;
379 }
380 dst_copy = kmalloc(item_size, GFP_NOFS);
381 src_copy = kmalloc(item_size, GFP_NOFS);
liubo2a29edc2011-01-26 06:22:08 +0000382 if (!dst_copy || !src_copy) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200383 btrfs_release_path(path);
liubo2a29edc2011-01-26 06:22:08 +0000384 kfree(dst_copy);
385 kfree(src_copy);
386 return -ENOMEM;
387 }
Chris Masone02119d2008-09-05 16:13:11 -0400388
389 read_extent_buffer(eb, src_copy, src_ptr, item_size);
390
391 dst_ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]);
392 read_extent_buffer(path->nodes[0], dst_copy, dst_ptr,
393 item_size);
394 ret = memcmp(dst_copy, src_copy, item_size);
395
396 kfree(dst_copy);
397 kfree(src_copy);
398 /*
399 * they have the same contents, just return, this saves
400 * us from cowing blocks in the destination tree and doing
401 * extra writes that may not have been done by a previous
402 * sync
403 */
404 if (ret == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200405 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400406 return 0;
407 }
408
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000409 /*
410 * We need to load the old nbytes into the inode so when we
411 * replay the extents we've logged we get the right nbytes.
412 */
413 if (inode_item) {
414 struct btrfs_inode_item *item;
415 u64 nbytes;
Josef Bacikd5554382013-09-11 14:17:00 -0400416 u32 mode;
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000417
418 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
419 struct btrfs_inode_item);
420 nbytes = btrfs_inode_nbytes(path->nodes[0], item);
421 item = btrfs_item_ptr(eb, slot,
422 struct btrfs_inode_item);
423 btrfs_set_inode_nbytes(eb, item, nbytes);
Josef Bacikd5554382013-09-11 14:17:00 -0400424
425 /*
426 * If this is a directory we need to reset the i_size to
427 * 0 so that we can set it up properly when replaying
428 * the rest of the items in this log.
429 */
430 mode = btrfs_inode_mode(eb, item);
431 if (S_ISDIR(mode))
432 btrfs_set_inode_size(eb, item, 0);
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000433 }
434 } else if (inode_item) {
435 struct btrfs_inode_item *item;
Josef Bacikd5554382013-09-11 14:17:00 -0400436 u32 mode;
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000437
438 /*
439 * New inode, set nbytes to 0 so that the nbytes comes out
440 * properly when we replay the extents.
441 */
442 item = btrfs_item_ptr(eb, slot, struct btrfs_inode_item);
443 btrfs_set_inode_nbytes(eb, item, 0);
Josef Bacikd5554382013-09-11 14:17:00 -0400444
445 /*
446 * If this is a directory we need to reset the i_size to 0 so
447 * that we can set it up properly when replaying the rest of
448 * the items in this log.
449 */
450 mode = btrfs_inode_mode(eb, item);
451 if (S_ISDIR(mode))
452 btrfs_set_inode_size(eb, item, 0);
Chris Masone02119d2008-09-05 16:13:11 -0400453 }
454insert:
David Sterbab3b4aa72011-04-21 01:20:15 +0200455 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400456 /* try to insert the key into the destination tree */
Filipe Mananadf8d1162015-01-14 01:52:25 +0000457 path->skip_release_on_error = 1;
Chris Masone02119d2008-09-05 16:13:11 -0400458 ret = btrfs_insert_empty_item(trans, root, path,
459 key, item_size);
Filipe Mananadf8d1162015-01-14 01:52:25 +0000460 path->skip_release_on_error = 0;
Chris Masone02119d2008-09-05 16:13:11 -0400461
462 /* make sure any existing item is the correct size */
Filipe Mananadf8d1162015-01-14 01:52:25 +0000463 if (ret == -EEXIST || ret == -EOVERFLOW) {
Chris Masone02119d2008-09-05 16:13:11 -0400464 u32 found_size;
465 found_size = btrfs_item_size_nr(path->nodes[0],
466 path->slots[0]);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100467 if (found_size > item_size)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400468 btrfs_truncate_item(fs_info, path, item_size, 1);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100469 else if (found_size < item_size)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400470 btrfs_extend_item(fs_info, path,
Jeff Mahoney143bede2012-03-01 14:56:26 +0100471 item_size - found_size);
Chris Masone02119d2008-09-05 16:13:11 -0400472 } else if (ret) {
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400473 return ret;
Chris Masone02119d2008-09-05 16:13:11 -0400474 }
475 dst_ptr = btrfs_item_ptr_offset(path->nodes[0],
476 path->slots[0]);
477
478 /* don't overwrite an existing inode if the generation number
479 * was logged as zero. This is done when the tree logging code
480 * is just logging an inode to make sure it exists after recovery.
481 *
482 * Also, don't overwrite i_size on directories during replay.
483 * log replay inserts and removes directory items based on the
484 * state of the tree found in the subvolume, and i_size is modified
485 * as it goes
486 */
487 if (key->type == BTRFS_INODE_ITEM_KEY && ret == -EEXIST) {
488 struct btrfs_inode_item *src_item;
489 struct btrfs_inode_item *dst_item;
490
491 src_item = (struct btrfs_inode_item *)src_ptr;
492 dst_item = (struct btrfs_inode_item *)dst_ptr;
493
Filipe Manana1a4bcf42015-02-13 12:30:56 +0000494 if (btrfs_inode_generation(eb, src_item) == 0) {
495 struct extent_buffer *dst_eb = path->nodes[0];
Filipe Manana2f2ff0e2015-03-20 17:19:46 +0000496 const u64 ino_size = btrfs_inode_size(eb, src_item);
Filipe Manana1a4bcf42015-02-13 12:30:56 +0000497
Filipe Manana2f2ff0e2015-03-20 17:19:46 +0000498 /*
499 * For regular files an ino_size == 0 is used only when
500 * logging that an inode exists, as part of a directory
501 * fsync, and the inode wasn't fsynced before. In this
502 * case don't set the size of the inode in the fs/subvol
503 * tree, otherwise we would be throwing valid data away.
504 */
Filipe Manana1a4bcf42015-02-13 12:30:56 +0000505 if (S_ISREG(btrfs_inode_mode(eb, src_item)) &&
Filipe Manana2f2ff0e2015-03-20 17:19:46 +0000506 S_ISREG(btrfs_inode_mode(dst_eb, dst_item)) &&
507 ino_size != 0) {
Filipe Manana1a4bcf42015-02-13 12:30:56 +0000508 struct btrfs_map_token token;
Filipe Manana1a4bcf42015-02-13 12:30:56 +0000509
510 btrfs_init_map_token(&token);
511 btrfs_set_token_inode_size(dst_eb, dst_item,
512 ino_size, &token);
513 }
Chris Masone02119d2008-09-05 16:13:11 -0400514 goto no_copy;
Filipe Manana1a4bcf42015-02-13 12:30:56 +0000515 }
Chris Masone02119d2008-09-05 16:13:11 -0400516
517 if (overwrite_root &&
518 S_ISDIR(btrfs_inode_mode(eb, src_item)) &&
519 S_ISDIR(btrfs_inode_mode(path->nodes[0], dst_item))) {
520 save_old_i_size = 1;
521 saved_i_size = btrfs_inode_size(path->nodes[0],
522 dst_item);
523 }
524 }
525
526 copy_extent_buffer(path->nodes[0], eb, dst_ptr,
527 src_ptr, item_size);
528
529 if (save_old_i_size) {
530 struct btrfs_inode_item *dst_item;
531 dst_item = (struct btrfs_inode_item *)dst_ptr;
532 btrfs_set_inode_size(path->nodes[0], dst_item, saved_i_size);
533 }
534
535 /* make sure the generation is filled in */
536 if (key->type == BTRFS_INODE_ITEM_KEY) {
537 struct btrfs_inode_item *dst_item;
538 dst_item = (struct btrfs_inode_item *)dst_ptr;
539 if (btrfs_inode_generation(path->nodes[0], dst_item) == 0) {
540 btrfs_set_inode_generation(path->nodes[0], dst_item,
541 trans->transid);
542 }
543 }
544no_copy:
545 btrfs_mark_buffer_dirty(path->nodes[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +0200546 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400547 return 0;
548}
549
550/*
551 * simple helper to read an inode off the disk from a given root
552 * This can only be called for subvolume roots and not for the log
553 */
554static noinline struct inode *read_one_inode(struct btrfs_root *root,
555 u64 objectid)
556{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400557 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -0400558 struct inode *inode;
Chris Masone02119d2008-09-05 16:13:11 -0400559
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400560 key.objectid = objectid;
561 key.type = BTRFS_INODE_ITEM_KEY;
562 key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +0000563 inode = btrfs_iget(root->fs_info->sb, &key, root, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400564 if (IS_ERR(inode)) {
565 inode = NULL;
566 } else if (is_bad_inode(inode)) {
Chris Masone02119d2008-09-05 16:13:11 -0400567 iput(inode);
568 inode = NULL;
569 }
570 return inode;
571}
572
573/* replays a single extent in 'eb' at 'slot' with 'key' into the
574 * subvolume 'root'. path is released on entry and should be released
575 * on exit.
576 *
577 * extents in the log tree have not been allocated out of the extent
578 * tree yet. So, this completes the allocation, taking a reference
579 * as required if the extent already exists or creating a new extent
580 * if it isn't in the extent allocation tree yet.
581 *
582 * The extent is inserted into the file, dropping any existing extents
583 * from the file that overlap the new one.
584 */
585static noinline int replay_one_extent(struct btrfs_trans_handle *trans,
586 struct btrfs_root *root,
587 struct btrfs_path *path,
588 struct extent_buffer *eb, int slot,
589 struct btrfs_key *key)
590{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400591 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -0400592 int found_type;
Chris Masone02119d2008-09-05 16:13:11 -0400593 u64 extent_end;
Chris Masone02119d2008-09-05 16:13:11 -0400594 u64 start = key->offset;
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000595 u64 nbytes = 0;
Chris Masone02119d2008-09-05 16:13:11 -0400596 struct btrfs_file_extent_item *item;
597 struct inode *inode = NULL;
598 unsigned long size;
599 int ret = 0;
600
601 item = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item);
602 found_type = btrfs_file_extent_type(eb, item);
603
Yan Zhengd899e052008-10-30 14:25:28 -0400604 if (found_type == BTRFS_FILE_EXTENT_REG ||
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000605 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
606 nbytes = btrfs_file_extent_num_bytes(eb, item);
607 extent_end = start + nbytes;
608
609 /*
610 * We don't add to the inodes nbytes if we are prealloc or a
611 * hole.
612 */
613 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
614 nbytes = 0;
615 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason514ac8a2014-01-03 21:07:00 -0800616 size = btrfs_file_extent_inline_len(eb, slot, item);
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000617 nbytes = btrfs_file_extent_ram_bytes(eb, item);
Jeff Mahoneyda170662016-06-15 09:22:56 -0400618 extent_end = ALIGN(start + size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400619 fs_info->sectorsize);
Chris Masone02119d2008-09-05 16:13:11 -0400620 } else {
621 ret = 0;
622 goto out;
623 }
624
625 inode = read_one_inode(root, key->objectid);
626 if (!inode) {
627 ret = -EIO;
628 goto out;
629 }
630
631 /*
632 * first check to see if we already have this extent in the
633 * file. This must be done before the btrfs_drop_extents run
634 * so we don't try to drop this extent.
635 */
David Sterbaf85b7372017-01-20 14:54:07 +0100636 ret = btrfs_lookup_file_extent(trans, root, path,
637 btrfs_ino(BTRFS_I(inode)), start, 0);
Chris Masone02119d2008-09-05 16:13:11 -0400638
Yan Zhengd899e052008-10-30 14:25:28 -0400639 if (ret == 0 &&
640 (found_type == BTRFS_FILE_EXTENT_REG ||
641 found_type == BTRFS_FILE_EXTENT_PREALLOC)) {
Chris Masone02119d2008-09-05 16:13:11 -0400642 struct btrfs_file_extent_item cmp1;
643 struct btrfs_file_extent_item cmp2;
644 struct btrfs_file_extent_item *existing;
645 struct extent_buffer *leaf;
646
647 leaf = path->nodes[0];
648 existing = btrfs_item_ptr(leaf, path->slots[0],
649 struct btrfs_file_extent_item);
650
651 read_extent_buffer(eb, &cmp1, (unsigned long)item,
652 sizeof(cmp1));
653 read_extent_buffer(leaf, &cmp2, (unsigned long)existing,
654 sizeof(cmp2));
655
656 /*
657 * we already have a pointer to this exact extent,
658 * we don't have to do anything
659 */
660 if (memcmp(&cmp1, &cmp2, sizeof(cmp1)) == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200661 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400662 goto out;
663 }
664 }
David Sterbab3b4aa72011-04-21 01:20:15 +0200665 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400666
667 /* drop any overlapping extents */
Josef Bacik26714852012-08-29 12:24:27 -0400668 ret = btrfs_drop_extents(trans, root, inode, start, extent_end, 1);
Josef Bacik36508602013-04-25 16:23:32 -0400669 if (ret)
670 goto out;
Chris Masone02119d2008-09-05 16:13:11 -0400671
Yan Zheng07d400a2009-01-06 11:42:00 -0500672 if (found_type == BTRFS_FILE_EXTENT_REG ||
673 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400674 u64 offset;
Yan Zheng07d400a2009-01-06 11:42:00 -0500675 unsigned long dest_offset;
676 struct btrfs_key ins;
Chris Masone02119d2008-09-05 16:13:11 -0400677
Filipe Manana3168021c2017-02-01 14:58:02 +0000678 if (btrfs_file_extent_disk_bytenr(eb, item) == 0 &&
679 btrfs_fs_incompat(fs_info, NO_HOLES))
680 goto update_inode;
681
Yan Zheng07d400a2009-01-06 11:42:00 -0500682 ret = btrfs_insert_empty_item(trans, root, path, key,
683 sizeof(*item));
Josef Bacik36508602013-04-25 16:23:32 -0400684 if (ret)
685 goto out;
Yan Zheng07d400a2009-01-06 11:42:00 -0500686 dest_offset = btrfs_item_ptr_offset(path->nodes[0],
687 path->slots[0]);
688 copy_extent_buffer(path->nodes[0], eb, dest_offset,
689 (unsigned long)item, sizeof(*item));
690
691 ins.objectid = btrfs_file_extent_disk_bytenr(eb, item);
692 ins.offset = btrfs_file_extent_disk_num_bytes(eb, item);
693 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400694 offset = key->offset - btrfs_file_extent_offset(eb, item);
Yan Zheng07d400a2009-01-06 11:42:00 -0500695
Qu Wenruodf2c95f2016-08-15 10:36:52 +0800696 /*
697 * Manually record dirty extent, as here we did a shallow
698 * file extent item copy and skip normal backref update,
699 * but modifying extent tree all by ourselves.
700 * So need to manually record dirty extent for qgroup,
701 * as the owner of the file extent changed from log tree
702 * (doesn't affect qgroup) to fs/file tree(affects qgroup)
703 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400704 ret = btrfs_qgroup_trace_extent(trans, fs_info,
Qu Wenruodf2c95f2016-08-15 10:36:52 +0800705 btrfs_file_extent_disk_bytenr(eb, item),
706 btrfs_file_extent_disk_num_bytes(eb, item),
707 GFP_NOFS);
708 if (ret < 0)
709 goto out;
710
Yan Zheng07d400a2009-01-06 11:42:00 -0500711 if (ins.objectid > 0) {
712 u64 csum_start;
713 u64 csum_end;
714 LIST_HEAD(ordered_sums);
715 /*
716 * is this extent already allocated in the extent
717 * allocation tree? If so, just add a reference
718 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400719 ret = btrfs_lookup_data_extent(fs_info, ins.objectid,
Yan Zheng07d400a2009-01-06 11:42:00 -0500720 ins.offset);
721 if (ret == 0) {
Josef Bacik84f7d8e2017-09-29 15:43:49 -0400722 ret = btrfs_inc_extent_ref(trans, root,
Yan Zheng07d400a2009-01-06 11:42:00 -0500723 ins.objectid, ins.offset,
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400724 0, root->root_key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +0100725 key->objectid, offset);
Josef Bacikb50c6e22013-04-25 15:55:30 -0400726 if (ret)
727 goto out;
Yan Zheng07d400a2009-01-06 11:42:00 -0500728 } else {
729 /*
730 * insert the extent pointer in the extent
731 * allocation tree
732 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400733 ret = btrfs_alloc_logged_file_extent(trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400734 fs_info,
735 root->root_key.objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400736 key->objectid, offset, &ins);
Josef Bacikb50c6e22013-04-25 15:55:30 -0400737 if (ret)
738 goto out;
Yan Zheng07d400a2009-01-06 11:42:00 -0500739 }
David Sterbab3b4aa72011-04-21 01:20:15 +0200740 btrfs_release_path(path);
Yan Zheng07d400a2009-01-06 11:42:00 -0500741
742 if (btrfs_file_extent_compression(eb, item)) {
743 csum_start = ins.objectid;
744 csum_end = csum_start + ins.offset;
745 } else {
746 csum_start = ins.objectid +
747 btrfs_file_extent_offset(eb, item);
748 csum_end = csum_start +
749 btrfs_file_extent_num_bytes(eb, item);
750 }
751
752 ret = btrfs_lookup_csums_range(root->log_root,
753 csum_start, csum_end - 1,
Arne Jansena2de7332011-03-08 14:14:00 +0100754 &ordered_sums, 0);
Josef Bacik36508602013-04-25 16:23:32 -0400755 if (ret)
756 goto out;
Filipe Mananab84b8392015-08-19 11:09:40 +0100757 /*
758 * Now delete all existing cums in the csum root that
759 * cover our range. We do this because we can have an
760 * extent that is completely referenced by one file
761 * extent item and partially referenced by another
762 * file extent item (like after using the clone or
763 * extent_same ioctls). In this case if we end up doing
764 * the replay of the one that partially references the
765 * extent first, and we do not do the csum deletion
766 * below, we can get 2 csum items in the csum tree that
767 * overlap each other. For example, imagine our log has
768 * the two following file extent items:
769 *
770 * key (257 EXTENT_DATA 409600)
771 * extent data disk byte 12845056 nr 102400
772 * extent data offset 20480 nr 20480 ram 102400
773 *
774 * key (257 EXTENT_DATA 819200)
775 * extent data disk byte 12845056 nr 102400
776 * extent data offset 0 nr 102400 ram 102400
777 *
778 * Where the second one fully references the 100K extent
779 * that starts at disk byte 12845056, and the log tree
780 * has a single csum item that covers the entire range
781 * of the extent:
782 *
783 * key (EXTENT_CSUM EXTENT_CSUM 12845056) itemsize 100
784 *
785 * After the first file extent item is replayed, the
786 * csum tree gets the following csum item:
787 *
788 * key (EXTENT_CSUM EXTENT_CSUM 12865536) itemsize 20
789 *
790 * Which covers the 20K sub-range starting at offset 20K
791 * of our extent. Now when we replay the second file
792 * extent item, if we do not delete existing csum items
793 * that cover any of its blocks, we end up getting two
794 * csum items in our csum tree that overlap each other:
795 *
796 * key (EXTENT_CSUM EXTENT_CSUM 12845056) itemsize 100
797 * key (EXTENT_CSUM EXTENT_CSUM 12865536) itemsize 20
798 *
799 * Which is a problem, because after this anyone trying
800 * to lookup up for the checksum of any block of our
801 * extent starting at an offset of 40K or higher, will
802 * end up looking at the second csum item only, which
803 * does not contain the checksum for any block starting
804 * at offset 40K or higher of our extent.
805 */
Yan Zheng07d400a2009-01-06 11:42:00 -0500806 while (!list_empty(&ordered_sums)) {
807 struct btrfs_ordered_sum *sums;
808 sums = list_entry(ordered_sums.next,
809 struct btrfs_ordered_sum,
810 list);
Josef Bacik36508602013-04-25 16:23:32 -0400811 if (!ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400812 ret = btrfs_del_csums(trans, fs_info,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -0400813 sums->bytenr,
814 sums->len);
Filipe Mananab84b8392015-08-19 11:09:40 +0100815 if (!ret)
Josef Bacik36508602013-04-25 16:23:32 -0400816 ret = btrfs_csum_file_blocks(trans,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400817 fs_info->csum_root, sums);
Yan Zheng07d400a2009-01-06 11:42:00 -0500818 list_del(&sums->list);
819 kfree(sums);
820 }
Josef Bacik36508602013-04-25 16:23:32 -0400821 if (ret)
822 goto out;
Yan Zheng07d400a2009-01-06 11:42:00 -0500823 } else {
David Sterbab3b4aa72011-04-21 01:20:15 +0200824 btrfs_release_path(path);
Yan Zheng07d400a2009-01-06 11:42:00 -0500825 }
826 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
827 /* inline extents are easy, we just overwrite them */
828 ret = overwrite_item(trans, root, path, eb, slot, key);
Josef Bacik36508602013-04-25 16:23:32 -0400829 if (ret)
830 goto out;
Yan Zheng07d400a2009-01-06 11:42:00 -0500831 }
832
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000833 inode_add_bytes(inode, nbytes);
Filipe Manana3168021c2017-02-01 14:58:02 +0000834update_inode:
Tsutomu Itohb9959292012-06-25 21:25:22 -0600835 ret = btrfs_update_inode(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -0400836out:
837 if (inode)
838 iput(inode);
839 return ret;
840}
841
842/*
843 * when cleaning up conflicts between the directory names in the
844 * subvolume, directory names in the log and directory names in the
845 * inode back references, we may have to unlink inodes from directories.
846 *
847 * This is a helper function to do the unlink of a specific directory
848 * item
849 */
850static noinline int drop_one_dir_item(struct btrfs_trans_handle *trans,
851 struct btrfs_root *root,
852 struct btrfs_path *path,
Nikolay Borisov207e7d92017-01-18 00:31:45 +0200853 struct btrfs_inode *dir,
Chris Masone02119d2008-09-05 16:13:11 -0400854 struct btrfs_dir_item *di)
855{
856 struct inode *inode;
857 char *name;
858 int name_len;
859 struct extent_buffer *leaf;
860 struct btrfs_key location;
861 int ret;
862
863 leaf = path->nodes[0];
864
865 btrfs_dir_item_key_to_cpu(leaf, di, &location);
866 name_len = btrfs_dir_name_len(leaf, di);
867 name = kmalloc(name_len, GFP_NOFS);
liubo2a29edc2011-01-26 06:22:08 +0000868 if (!name)
869 return -ENOMEM;
870
Chris Masone02119d2008-09-05 16:13:11 -0400871 read_extent_buffer(leaf, name, (unsigned long)(di + 1), name_len);
David Sterbab3b4aa72011-04-21 01:20:15 +0200872 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400873
874 inode = read_one_inode(root, location.objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +0000875 if (!inode) {
Josef Bacik36508602013-04-25 16:23:32 -0400876 ret = -EIO;
877 goto out;
Tsutomu Itohc00e9492011-04-28 09:10:23 +0000878 }
Chris Masone02119d2008-09-05 16:13:11 -0400879
Yan Zhengec051c02009-01-05 15:43:42 -0500880 ret = link_to_fixup_dir(trans, root, path, location.objectid);
Josef Bacik36508602013-04-25 16:23:32 -0400881 if (ret)
882 goto out;
Chris Mason12fcfd22009-03-24 10:24:20 -0400883
Nikolay Borisov207e7d92017-01-18 00:31:45 +0200884 ret = btrfs_unlink_inode(trans, root, dir, BTRFS_I(inode), name,
885 name_len);
Josef Bacik36508602013-04-25 16:23:32 -0400886 if (ret)
887 goto out;
Filipe David Borba Mananaada9af22013-08-05 09:25:47 +0100888 else
Nikolay Borisove5c304e62018-02-07 17:55:43 +0200889 ret = btrfs_run_delayed_items(trans);
Josef Bacik36508602013-04-25 16:23:32 -0400890out:
891 kfree(name);
892 iput(inode);
Chris Masone02119d2008-09-05 16:13:11 -0400893 return ret;
894}
895
896/*
897 * helper function to see if a given name and sequence number found
898 * in an inode back reference are already in a directory and correctly
899 * point to this inode
900 */
901static noinline int inode_in_dir(struct btrfs_root *root,
902 struct btrfs_path *path,
903 u64 dirid, u64 objectid, u64 index,
904 const char *name, int name_len)
905{
906 struct btrfs_dir_item *di;
907 struct btrfs_key location;
908 int match = 0;
909
910 di = btrfs_lookup_dir_index_item(NULL, root, path, dirid,
911 index, name, name_len, 0);
912 if (di && !IS_ERR(di)) {
913 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location);
914 if (location.objectid != objectid)
915 goto out;
916 } else
917 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +0200918 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400919
920 di = btrfs_lookup_dir_item(NULL, root, path, dirid, name, name_len, 0);
921 if (di && !IS_ERR(di)) {
922 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location);
923 if (location.objectid != objectid)
924 goto out;
925 } else
926 goto out;
927 match = 1;
928out:
David Sterbab3b4aa72011-04-21 01:20:15 +0200929 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400930 return match;
931}
932
933/*
934 * helper function to check a log tree for a named back reference in
935 * an inode. This is used to decide if a back reference that is
936 * found in the subvolume conflicts with what we find in the log.
937 *
938 * inode backreferences may have multiple refs in a single item,
939 * during replay we process one reference at a time, and we don't
940 * want to delete valid links to a file from the subvolume if that
941 * link is also in the log.
942 */
943static noinline int backref_in_log(struct btrfs_root *log,
944 struct btrfs_key *key,
Mark Fashehf1863732012-08-08 11:32:27 -0700945 u64 ref_objectid,
Filipe Mananadf8d1162015-01-14 01:52:25 +0000946 const char *name, int namelen)
Chris Masone02119d2008-09-05 16:13:11 -0400947{
948 struct btrfs_path *path;
949 struct btrfs_inode_ref *ref;
950 unsigned long ptr;
951 unsigned long ptr_end;
952 unsigned long name_ptr;
953 int found_name_len;
954 int item_size;
955 int ret;
956 int match = 0;
957
958 path = btrfs_alloc_path();
liubo2a29edc2011-01-26 06:22:08 +0000959 if (!path)
960 return -ENOMEM;
961
Chris Masone02119d2008-09-05 16:13:11 -0400962 ret = btrfs_search_slot(NULL, log, key, path, 0, 0);
963 if (ret != 0)
964 goto out;
965
Chris Masone02119d2008-09-05 16:13:11 -0400966 ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]);
Mark Fashehf1863732012-08-08 11:32:27 -0700967
968 if (key->type == BTRFS_INODE_EXTREF_KEY) {
Filipe Manana1f250e92018-02-28 15:56:10 +0000969 if (btrfs_find_name_in_ext_backref(path->nodes[0],
970 path->slots[0],
971 ref_objectid,
Mark Fashehf1863732012-08-08 11:32:27 -0700972 name, namelen, NULL))
973 match = 1;
974
975 goto out;
976 }
977
978 item_size = btrfs_item_size_nr(path->nodes[0], path->slots[0]);
Chris Masone02119d2008-09-05 16:13:11 -0400979 ptr_end = ptr + item_size;
980 while (ptr < ptr_end) {
981 ref = (struct btrfs_inode_ref *)ptr;
982 found_name_len = btrfs_inode_ref_name_len(path->nodes[0], ref);
983 if (found_name_len == namelen) {
984 name_ptr = (unsigned long)(ref + 1);
985 ret = memcmp_extent_buffer(path->nodes[0], name,
986 name_ptr, namelen);
987 if (ret == 0) {
988 match = 1;
989 goto out;
990 }
991 }
992 ptr = (unsigned long)(ref + 1) + found_name_len;
993 }
994out:
995 btrfs_free_path(path);
996 return match;
997}
998
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700999static inline int __add_inode_ref(struct btrfs_trans_handle *trans,
1000 struct btrfs_root *root,
1001 struct btrfs_path *path,
1002 struct btrfs_root *log_root,
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001003 struct btrfs_inode *dir,
1004 struct btrfs_inode *inode,
Mark Fashehf1863732012-08-08 11:32:27 -07001005 u64 inode_objectid, u64 parent_objectid,
1006 u64 ref_index, char *name, int namelen,
1007 int *search_done)
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001008{
1009 int ret;
Mark Fashehf1863732012-08-08 11:32:27 -07001010 char *victim_name;
1011 int victim_name_len;
1012 struct extent_buffer *leaf;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001013 struct btrfs_dir_item *di;
Mark Fashehf1863732012-08-08 11:32:27 -07001014 struct btrfs_key search_key;
1015 struct btrfs_inode_extref *extref;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001016
Mark Fashehf1863732012-08-08 11:32:27 -07001017again:
1018 /* Search old style refs */
1019 search_key.objectid = inode_objectid;
1020 search_key.type = BTRFS_INODE_REF_KEY;
1021 search_key.offset = parent_objectid;
1022 ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0);
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001023 if (ret == 0) {
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001024 struct btrfs_inode_ref *victim_ref;
1025 unsigned long ptr;
1026 unsigned long ptr_end;
Mark Fashehf1863732012-08-08 11:32:27 -07001027
1028 leaf = path->nodes[0];
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001029
1030 /* are we trying to overwrite a back ref for the root directory
1031 * if so, just jump out, we're done
1032 */
Mark Fashehf1863732012-08-08 11:32:27 -07001033 if (search_key.objectid == search_key.offset)
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001034 return 1;
1035
1036 /* check all the names in this back reference to see
1037 * if they are in the log. if so, we allow them to stay
1038 * otherwise they must be unlinked as a conflict
1039 */
1040 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
1041 ptr_end = ptr + btrfs_item_size_nr(leaf, path->slots[0]);
1042 while (ptr < ptr_end) {
1043 victim_ref = (struct btrfs_inode_ref *)ptr;
1044 victim_name_len = btrfs_inode_ref_name_len(leaf,
1045 victim_ref);
1046 victim_name = kmalloc(victim_name_len, GFP_NOFS);
Josef Bacik36508602013-04-25 16:23:32 -04001047 if (!victim_name)
1048 return -ENOMEM;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001049
1050 read_extent_buffer(leaf, victim_name,
1051 (unsigned long)(victim_ref + 1),
1052 victim_name_len);
1053
Mark Fashehf1863732012-08-08 11:32:27 -07001054 if (!backref_in_log(log_root, &search_key,
1055 parent_objectid,
1056 victim_name,
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001057 victim_name_len)) {
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001058 inc_nlink(&inode->vfs_inode);
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001059 btrfs_release_path(path);
1060
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001061 ret = btrfs_unlink_inode(trans, root, dir, inode,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02001062 victim_name, victim_name_len);
Mark Fashehf1863732012-08-08 11:32:27 -07001063 kfree(victim_name);
Josef Bacik36508602013-04-25 16:23:32 -04001064 if (ret)
1065 return ret;
Nikolay Borisove5c304e62018-02-07 17:55:43 +02001066 ret = btrfs_run_delayed_items(trans);
Filipe David Borba Mananaada9af22013-08-05 09:25:47 +01001067 if (ret)
1068 return ret;
Mark Fashehf1863732012-08-08 11:32:27 -07001069 *search_done = 1;
1070 goto again;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001071 }
1072 kfree(victim_name);
Mark Fashehf1863732012-08-08 11:32:27 -07001073
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001074 ptr = (unsigned long)(victim_ref + 1) + victim_name_len;
1075 }
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001076
1077 /*
1078 * NOTE: we have searched root tree and checked the
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08001079 * corresponding ref, it does not need to check again.
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001080 */
1081 *search_done = 1;
1082 }
1083 btrfs_release_path(path);
1084
Mark Fashehf1863732012-08-08 11:32:27 -07001085 /* Same search but for extended refs */
1086 extref = btrfs_lookup_inode_extref(NULL, root, path, name, namelen,
1087 inode_objectid, parent_objectid, 0,
1088 0);
1089 if (!IS_ERR_OR_NULL(extref)) {
1090 u32 item_size;
1091 u32 cur_offset = 0;
1092 unsigned long base;
1093 struct inode *victim_parent;
1094
1095 leaf = path->nodes[0];
1096
1097 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1098 base = btrfs_item_ptr_offset(leaf, path->slots[0]);
1099
1100 while (cur_offset < item_size) {
Quentin Casasnovasdd9ef132015-03-03 16:31:38 +01001101 extref = (struct btrfs_inode_extref *)(base + cur_offset);
Mark Fashehf1863732012-08-08 11:32:27 -07001102
1103 victim_name_len = btrfs_inode_extref_name_len(leaf, extref);
1104
1105 if (btrfs_inode_extref_parent(leaf, extref) != parent_objectid)
1106 goto next;
1107
1108 victim_name = kmalloc(victim_name_len, GFP_NOFS);
Josef Bacik36508602013-04-25 16:23:32 -04001109 if (!victim_name)
1110 return -ENOMEM;
Mark Fashehf1863732012-08-08 11:32:27 -07001111 read_extent_buffer(leaf, victim_name, (unsigned long)&extref->name,
1112 victim_name_len);
1113
1114 search_key.objectid = inode_objectid;
1115 search_key.type = BTRFS_INODE_EXTREF_KEY;
1116 search_key.offset = btrfs_extref_hash(parent_objectid,
1117 victim_name,
1118 victim_name_len);
1119 ret = 0;
1120 if (!backref_in_log(log_root, &search_key,
1121 parent_objectid, victim_name,
1122 victim_name_len)) {
1123 ret = -ENOENT;
1124 victim_parent = read_one_inode(root,
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001125 parent_objectid);
Mark Fashehf1863732012-08-08 11:32:27 -07001126 if (victim_parent) {
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001127 inc_nlink(&inode->vfs_inode);
Mark Fashehf1863732012-08-08 11:32:27 -07001128 btrfs_release_path(path);
1129
1130 ret = btrfs_unlink_inode(trans, root,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02001131 BTRFS_I(victim_parent),
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001132 inode,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02001133 victim_name,
1134 victim_name_len);
Filipe David Borba Mananaada9af22013-08-05 09:25:47 +01001135 if (!ret)
1136 ret = btrfs_run_delayed_items(
Nikolay Borisove5c304e62018-02-07 17:55:43 +02001137 trans);
Mark Fashehf1863732012-08-08 11:32:27 -07001138 }
Mark Fashehf1863732012-08-08 11:32:27 -07001139 iput(victim_parent);
1140 kfree(victim_name);
Josef Bacik36508602013-04-25 16:23:32 -04001141 if (ret)
1142 return ret;
Mark Fashehf1863732012-08-08 11:32:27 -07001143 *search_done = 1;
1144 goto again;
1145 }
1146 kfree(victim_name);
Mark Fashehf1863732012-08-08 11:32:27 -07001147next:
1148 cur_offset += victim_name_len + sizeof(*extref);
1149 }
1150 *search_done = 1;
1151 }
1152 btrfs_release_path(path);
1153
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001154 /* look for a conflicting sequence number */
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001155 di = btrfs_lookup_dir_index_item(trans, root, path, btrfs_ino(dir),
Mark Fashehf1863732012-08-08 11:32:27 -07001156 ref_index, name, namelen, 0);
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001157 if (di && !IS_ERR(di)) {
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001158 ret = drop_one_dir_item(trans, root, path, dir, di);
Josef Bacik36508602013-04-25 16:23:32 -04001159 if (ret)
1160 return ret;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001161 }
1162 btrfs_release_path(path);
1163
1164 /* look for a conflicing name */
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001165 di = btrfs_lookup_dir_item(trans, root, path, btrfs_ino(dir),
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001166 name, namelen, 0);
1167 if (di && !IS_ERR(di)) {
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001168 ret = drop_one_dir_item(trans, root, path, dir, di);
Josef Bacik36508602013-04-25 16:23:32 -04001169 if (ret)
1170 return ret;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001171 }
1172 btrfs_release_path(path);
1173
1174 return 0;
1175}
Chris Masone02119d2008-09-05 16:13:11 -04001176
Qu Wenruobae15d92017-11-08 08:54:26 +08001177static int extref_get_fields(struct extent_buffer *eb, unsigned long ref_ptr,
1178 u32 *namelen, char **name, u64 *index,
1179 u64 *parent_objectid)
Mark Fashehf1863732012-08-08 11:32:27 -07001180{
1181 struct btrfs_inode_extref *extref;
1182
1183 extref = (struct btrfs_inode_extref *)ref_ptr;
1184
1185 *namelen = btrfs_inode_extref_name_len(eb, extref);
1186 *name = kmalloc(*namelen, GFP_NOFS);
1187 if (*name == NULL)
1188 return -ENOMEM;
1189
1190 read_extent_buffer(eb, *name, (unsigned long)&extref->name,
1191 *namelen);
1192
Filipe Manana1f250e92018-02-28 15:56:10 +00001193 if (index)
1194 *index = btrfs_inode_extref_index(eb, extref);
Mark Fashehf1863732012-08-08 11:32:27 -07001195 if (parent_objectid)
1196 *parent_objectid = btrfs_inode_extref_parent(eb, extref);
1197
1198 return 0;
1199}
1200
Qu Wenruobae15d92017-11-08 08:54:26 +08001201static int ref_get_fields(struct extent_buffer *eb, unsigned long ref_ptr,
1202 u32 *namelen, char **name, u64 *index)
Mark Fashehf1863732012-08-08 11:32:27 -07001203{
1204 struct btrfs_inode_ref *ref;
1205
1206 ref = (struct btrfs_inode_ref *)ref_ptr;
1207
1208 *namelen = btrfs_inode_ref_name_len(eb, ref);
1209 *name = kmalloc(*namelen, GFP_NOFS);
1210 if (*name == NULL)
1211 return -ENOMEM;
1212
1213 read_extent_buffer(eb, *name, (unsigned long)(ref + 1), *namelen);
1214
Filipe Manana1f250e92018-02-28 15:56:10 +00001215 if (index)
1216 *index = btrfs_inode_ref_index(eb, ref);
Mark Fashehf1863732012-08-08 11:32:27 -07001217
1218 return 0;
1219}
1220
Chris Masone02119d2008-09-05 16:13:11 -04001221/*
Filipe Manana1f250e92018-02-28 15:56:10 +00001222 * Take an inode reference item from the log tree and iterate all names from the
1223 * inode reference item in the subvolume tree with the same key (if it exists).
1224 * For any name that is not in the inode reference item from the log tree, do a
1225 * proper unlink of that name (that is, remove its entry from the inode
1226 * reference item and both dir index keys).
1227 */
1228static int unlink_old_inode_refs(struct btrfs_trans_handle *trans,
1229 struct btrfs_root *root,
1230 struct btrfs_path *path,
1231 struct btrfs_inode *inode,
1232 struct extent_buffer *log_eb,
1233 int log_slot,
1234 struct btrfs_key *key)
1235{
1236 int ret;
1237 unsigned long ref_ptr;
1238 unsigned long ref_end;
1239 struct extent_buffer *eb;
1240
1241again:
1242 btrfs_release_path(path);
1243 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
1244 if (ret > 0) {
1245 ret = 0;
1246 goto out;
1247 }
1248 if (ret < 0)
1249 goto out;
1250
1251 eb = path->nodes[0];
1252 ref_ptr = btrfs_item_ptr_offset(eb, path->slots[0]);
1253 ref_end = ref_ptr + btrfs_item_size_nr(eb, path->slots[0]);
1254 while (ref_ptr < ref_end) {
1255 char *name = NULL;
1256 int namelen;
1257 u64 parent_id;
1258
1259 if (key->type == BTRFS_INODE_EXTREF_KEY) {
1260 ret = extref_get_fields(eb, ref_ptr, &namelen, &name,
1261 NULL, &parent_id);
1262 } else {
1263 parent_id = key->offset;
1264 ret = ref_get_fields(eb, ref_ptr, &namelen, &name,
1265 NULL);
1266 }
1267 if (ret)
1268 goto out;
1269
1270 if (key->type == BTRFS_INODE_EXTREF_KEY)
1271 ret = btrfs_find_name_in_ext_backref(log_eb, log_slot,
1272 parent_id, name,
1273 namelen, NULL);
1274 else
1275 ret = btrfs_find_name_in_backref(log_eb, log_slot, name,
1276 namelen, NULL);
1277
1278 if (!ret) {
1279 struct inode *dir;
1280
1281 btrfs_release_path(path);
1282 dir = read_one_inode(root, parent_id);
1283 if (!dir) {
1284 ret = -ENOENT;
1285 kfree(name);
1286 goto out;
1287 }
1288 ret = btrfs_unlink_inode(trans, root, BTRFS_I(dir),
1289 inode, name, namelen);
1290 kfree(name);
1291 iput(dir);
1292 if (ret)
1293 goto out;
1294 goto again;
1295 }
1296
1297 kfree(name);
1298 ref_ptr += namelen;
1299 if (key->type == BTRFS_INODE_EXTREF_KEY)
1300 ref_ptr += sizeof(struct btrfs_inode_extref);
1301 else
1302 ref_ptr += sizeof(struct btrfs_inode_ref);
1303 }
1304 ret = 0;
1305 out:
1306 btrfs_release_path(path);
1307 return ret;
1308}
1309
1310/*
Chris Masone02119d2008-09-05 16:13:11 -04001311 * replay one inode back reference item found in the log tree.
1312 * eb, slot and key refer to the buffer and key found in the log tree.
1313 * root is the destination we are replaying into, and path is for temp
1314 * use by this function. (it should be released on return).
1315 */
1316static noinline int add_inode_ref(struct btrfs_trans_handle *trans,
1317 struct btrfs_root *root,
1318 struct btrfs_root *log,
1319 struct btrfs_path *path,
1320 struct extent_buffer *eb, int slot,
1321 struct btrfs_key *key)
1322{
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001323 struct inode *dir = NULL;
1324 struct inode *inode = NULL;
Chris Masone02119d2008-09-05 16:13:11 -04001325 unsigned long ref_ptr;
1326 unsigned long ref_end;
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001327 char *name = NULL;
liubo34f3e4f2011-08-06 08:35:23 +00001328 int namelen;
1329 int ret;
liuboc622ae62011-03-26 08:01:12 -04001330 int search_done = 0;
Mark Fashehf1863732012-08-08 11:32:27 -07001331 int log_ref_ver = 0;
1332 u64 parent_objectid;
1333 u64 inode_objectid;
Chris Masonf46dbe32012-10-09 11:17:20 -04001334 u64 ref_index = 0;
Mark Fashehf1863732012-08-08 11:32:27 -07001335 int ref_struct_size;
1336
1337 ref_ptr = btrfs_item_ptr_offset(eb, slot);
1338 ref_end = ref_ptr + btrfs_item_size_nr(eb, slot);
1339
1340 if (key->type == BTRFS_INODE_EXTREF_KEY) {
1341 struct btrfs_inode_extref *r;
1342
1343 ref_struct_size = sizeof(struct btrfs_inode_extref);
1344 log_ref_ver = 1;
1345 r = (struct btrfs_inode_extref *)ref_ptr;
1346 parent_objectid = btrfs_inode_extref_parent(eb, r);
1347 } else {
1348 ref_struct_size = sizeof(struct btrfs_inode_ref);
1349 parent_objectid = key->offset;
1350 }
1351 inode_objectid = key->objectid;
Chris Masone02119d2008-09-05 16:13:11 -04001352
Chris Masone02119d2008-09-05 16:13:11 -04001353 /*
1354 * it is possible that we didn't log all the parent directories
1355 * for a given inode. If we don't find the dir, just don't
1356 * copy the back ref in. The link count fixup code will take
1357 * care of the rest
1358 */
Mark Fashehf1863732012-08-08 11:32:27 -07001359 dir = read_one_inode(root, parent_objectid);
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001360 if (!dir) {
1361 ret = -ENOENT;
1362 goto out;
1363 }
Chris Masone02119d2008-09-05 16:13:11 -04001364
Mark Fashehf1863732012-08-08 11:32:27 -07001365 inode = read_one_inode(root, inode_objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001366 if (!inode) {
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001367 ret = -EIO;
1368 goto out;
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001369 }
Chris Masone02119d2008-09-05 16:13:11 -04001370
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001371 while (ref_ptr < ref_end) {
Mark Fashehf1863732012-08-08 11:32:27 -07001372 if (log_ref_ver) {
Qu Wenruobae15d92017-11-08 08:54:26 +08001373 ret = extref_get_fields(eb, ref_ptr, &namelen, &name,
1374 &ref_index, &parent_objectid);
Mark Fashehf1863732012-08-08 11:32:27 -07001375 /*
1376 * parent object can change from one array
1377 * item to another.
1378 */
1379 if (!dir)
1380 dir = read_one_inode(root, parent_objectid);
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001381 if (!dir) {
1382 ret = -ENOENT;
1383 goto out;
1384 }
Mark Fashehf1863732012-08-08 11:32:27 -07001385 } else {
Qu Wenruobae15d92017-11-08 08:54:26 +08001386 ret = ref_get_fields(eb, ref_ptr, &namelen, &name,
1387 &ref_index);
Mark Fashehf1863732012-08-08 11:32:27 -07001388 }
1389 if (ret)
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001390 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001391
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001392 /* if we already have a perfect match, we're done */
David Sterbaf85b7372017-01-20 14:54:07 +01001393 if (!inode_in_dir(root, path, btrfs_ino(BTRFS_I(dir)),
1394 btrfs_ino(BTRFS_I(inode)), ref_index,
1395 name, namelen)) {
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001396 /*
1397 * look for a conflicting back reference in the
1398 * metadata. if we find one we have to unlink that name
1399 * of the file before we add our new link. Later on, we
1400 * overwrite any existing back reference, and we don't
1401 * want to create dangling pointers in the directory.
1402 */
Chris Masone02119d2008-09-05 16:13:11 -04001403
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001404 if (!search_done) {
1405 ret = __add_inode_ref(trans, root, path, log,
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001406 BTRFS_I(dir),
David Sterbad75eefd2017-02-10 20:20:19 +01001407 BTRFS_I(inode),
Mark Fashehf1863732012-08-08 11:32:27 -07001408 inode_objectid,
1409 parent_objectid,
1410 ref_index, name, namelen,
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001411 &search_done);
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001412 if (ret) {
1413 if (ret == 1)
1414 ret = 0;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001415 goto out;
Josef Bacik36508602013-04-25 16:23:32 -04001416 }
Chris Masone02119d2008-09-05 16:13:11 -04001417 }
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001418
1419 /* insert our name */
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02001420 ret = btrfs_add_link(trans, BTRFS_I(dir),
1421 BTRFS_I(inode),
1422 name, namelen, 0, ref_index);
Josef Bacik36508602013-04-25 16:23:32 -04001423 if (ret)
1424 goto out;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001425
1426 btrfs_update_inode(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -04001427 }
liuboc622ae62011-03-26 08:01:12 -04001428
Mark Fashehf1863732012-08-08 11:32:27 -07001429 ref_ptr = (unsigned long)(ref_ptr + ref_struct_size) + namelen;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001430 kfree(name);
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001431 name = NULL;
Mark Fashehf1863732012-08-08 11:32:27 -07001432 if (log_ref_ver) {
1433 iput(dir);
1434 dir = NULL;
1435 }
Chris Masone02119d2008-09-05 16:13:11 -04001436 }
Chris Masone02119d2008-09-05 16:13:11 -04001437
Filipe Manana1f250e92018-02-28 15:56:10 +00001438 /*
1439 * Before we overwrite the inode reference item in the subvolume tree
1440 * with the item from the log tree, we must unlink all names from the
1441 * parent directory that are in the subvolume's tree inode reference
1442 * item, otherwise we end up with an inconsistent subvolume tree where
1443 * dir index entries exist for a name but there is no inode reference
1444 * item with the same name.
1445 */
1446 ret = unlink_old_inode_refs(trans, root, path, BTRFS_I(inode), eb, slot,
1447 key);
1448 if (ret)
1449 goto out;
1450
Chris Masone02119d2008-09-05 16:13:11 -04001451 /* finally write the back reference in the inode */
1452 ret = overwrite_item(trans, root, path, eb, slot, key);
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001453out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001454 btrfs_release_path(path);
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001455 kfree(name);
Chris Masone02119d2008-09-05 16:13:11 -04001456 iput(dir);
1457 iput(inode);
Josef Bacik36508602013-04-25 16:23:32 -04001458 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001459}
1460
Yan, Zhengc71bf092009-11-12 09:34:40 +00001461static int insert_orphan_item(struct btrfs_trans_handle *trans,
David Sterba9c4f61f2015-01-02 19:12:57 +01001462 struct btrfs_root *root, u64 ino)
Yan, Zhengc71bf092009-11-12 09:34:40 +00001463{
1464 int ret;
David Sterba381cf652015-01-02 18:45:16 +01001465
David Sterba9c4f61f2015-01-02 19:12:57 +01001466 ret = btrfs_insert_orphan_item(trans, root, ino);
1467 if (ret == -EEXIST)
1468 ret = 0;
David Sterba381cf652015-01-02 18:45:16 +01001469
Yan, Zhengc71bf092009-11-12 09:34:40 +00001470 return ret;
1471}
1472
Mark Fashehf1863732012-08-08 11:32:27 -07001473static int count_inode_extrefs(struct btrfs_root *root,
Nikolay Borisov36283652017-01-18 00:31:49 +02001474 struct btrfs_inode *inode, struct btrfs_path *path)
Chris Masone02119d2008-09-05 16:13:11 -04001475{
Mark Fashehf1863732012-08-08 11:32:27 -07001476 int ret = 0;
1477 int name_len;
1478 unsigned int nlink = 0;
1479 u32 item_size;
1480 u32 cur_offset = 0;
Nikolay Borisov36283652017-01-18 00:31:49 +02001481 u64 inode_objectid = btrfs_ino(inode);
Mark Fashehf1863732012-08-08 11:32:27 -07001482 u64 offset = 0;
1483 unsigned long ptr;
1484 struct btrfs_inode_extref *extref;
1485 struct extent_buffer *leaf;
1486
1487 while (1) {
1488 ret = btrfs_find_one_extref(root, inode_objectid, offset, path,
1489 &extref, &offset);
1490 if (ret)
1491 break;
1492
1493 leaf = path->nodes[0];
1494 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1495 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
Filipe Manana2c2c4522015-01-13 16:40:04 +00001496 cur_offset = 0;
Mark Fashehf1863732012-08-08 11:32:27 -07001497
1498 while (cur_offset < item_size) {
1499 extref = (struct btrfs_inode_extref *) (ptr + cur_offset);
1500 name_len = btrfs_inode_extref_name_len(leaf, extref);
1501
1502 nlink++;
1503
1504 cur_offset += name_len + sizeof(*extref);
1505 }
1506
1507 offset++;
1508 btrfs_release_path(path);
1509 }
1510 btrfs_release_path(path);
1511
Filipe Manana2c2c4522015-01-13 16:40:04 +00001512 if (ret < 0 && ret != -ENOENT)
Mark Fashehf1863732012-08-08 11:32:27 -07001513 return ret;
1514 return nlink;
1515}
1516
1517static int count_inode_refs(struct btrfs_root *root,
Nikolay Borisovf329e312017-01-18 00:31:50 +02001518 struct btrfs_inode *inode, struct btrfs_path *path)
Mark Fashehf1863732012-08-08 11:32:27 -07001519{
Chris Masone02119d2008-09-05 16:13:11 -04001520 int ret;
1521 struct btrfs_key key;
Mark Fashehf1863732012-08-08 11:32:27 -07001522 unsigned int nlink = 0;
Chris Masone02119d2008-09-05 16:13:11 -04001523 unsigned long ptr;
1524 unsigned long ptr_end;
1525 int name_len;
Nikolay Borisovf329e312017-01-18 00:31:50 +02001526 u64 ino = btrfs_ino(inode);
Chris Masone02119d2008-09-05 16:13:11 -04001527
Li Zefan33345d012011-04-20 10:31:50 +08001528 key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04001529 key.type = BTRFS_INODE_REF_KEY;
1530 key.offset = (u64)-1;
1531
Chris Masond3977122009-01-05 21:25:51 -05001532 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04001533 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1534 if (ret < 0)
1535 break;
1536 if (ret > 0) {
1537 if (path->slots[0] == 0)
1538 break;
1539 path->slots[0]--;
1540 }
Filipe David Borba Mananae93ae262013-10-14 22:49:11 +01001541process_slot:
Chris Masone02119d2008-09-05 16:13:11 -04001542 btrfs_item_key_to_cpu(path->nodes[0], &key,
1543 path->slots[0]);
Li Zefan33345d012011-04-20 10:31:50 +08001544 if (key.objectid != ino ||
Chris Masone02119d2008-09-05 16:13:11 -04001545 key.type != BTRFS_INODE_REF_KEY)
1546 break;
1547 ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]);
1548 ptr_end = ptr + btrfs_item_size_nr(path->nodes[0],
1549 path->slots[0]);
Chris Masond3977122009-01-05 21:25:51 -05001550 while (ptr < ptr_end) {
Chris Masone02119d2008-09-05 16:13:11 -04001551 struct btrfs_inode_ref *ref;
1552
1553 ref = (struct btrfs_inode_ref *)ptr;
1554 name_len = btrfs_inode_ref_name_len(path->nodes[0],
1555 ref);
1556 ptr = (unsigned long)(ref + 1) + name_len;
1557 nlink++;
1558 }
1559
1560 if (key.offset == 0)
1561 break;
Filipe David Borba Mananae93ae262013-10-14 22:49:11 +01001562 if (path->slots[0] > 0) {
1563 path->slots[0]--;
1564 goto process_slot;
1565 }
Chris Masone02119d2008-09-05 16:13:11 -04001566 key.offset--;
David Sterbab3b4aa72011-04-21 01:20:15 +02001567 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001568 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001569 btrfs_release_path(path);
Mark Fashehf1863732012-08-08 11:32:27 -07001570
1571 return nlink;
1572}
1573
1574/*
1575 * There are a few corners where the link count of the file can't
1576 * be properly maintained during replay. So, instead of adding
1577 * lots of complexity to the log code, we just scan the backrefs
1578 * for any file that has been through replay.
1579 *
1580 * The scan will update the link count on the inode to reflect the
1581 * number of back refs found. If it goes down to zero, the iput
1582 * will free the inode.
1583 */
1584static noinline int fixup_inode_link_count(struct btrfs_trans_handle *trans,
1585 struct btrfs_root *root,
1586 struct inode *inode)
1587{
1588 struct btrfs_path *path;
1589 int ret;
1590 u64 nlink = 0;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001591 u64 ino = btrfs_ino(BTRFS_I(inode));
Mark Fashehf1863732012-08-08 11:32:27 -07001592
1593 path = btrfs_alloc_path();
1594 if (!path)
1595 return -ENOMEM;
1596
Nikolay Borisovf329e312017-01-18 00:31:50 +02001597 ret = count_inode_refs(root, BTRFS_I(inode), path);
Mark Fashehf1863732012-08-08 11:32:27 -07001598 if (ret < 0)
1599 goto out;
1600
1601 nlink = ret;
1602
Nikolay Borisov36283652017-01-18 00:31:49 +02001603 ret = count_inode_extrefs(root, BTRFS_I(inode), path);
Mark Fashehf1863732012-08-08 11:32:27 -07001604 if (ret < 0)
1605 goto out;
1606
1607 nlink += ret;
1608
1609 ret = 0;
1610
Chris Masone02119d2008-09-05 16:13:11 -04001611 if (nlink != inode->i_nlink) {
Miklos Szeredibfe86842011-10-28 14:13:29 +02001612 set_nlink(inode, nlink);
Chris Masone02119d2008-09-05 16:13:11 -04001613 btrfs_update_inode(trans, root, inode);
1614 }
Chris Mason8d5bf1c2008-09-11 15:51:21 -04001615 BTRFS_I(inode)->index_cnt = (u64)-1;
Chris Masone02119d2008-09-05 16:13:11 -04001616
Yan, Zhengc71bf092009-11-12 09:34:40 +00001617 if (inode->i_nlink == 0) {
1618 if (S_ISDIR(inode->i_mode)) {
1619 ret = replay_dir_deletes(trans, root, NULL, path,
Li Zefan33345d012011-04-20 10:31:50 +08001620 ino, 1);
Josef Bacik36508602013-04-25 16:23:32 -04001621 if (ret)
1622 goto out;
Yan, Zhengc71bf092009-11-12 09:34:40 +00001623 }
Li Zefan33345d012011-04-20 10:31:50 +08001624 ret = insert_orphan_item(trans, root, ino);
Chris Mason12fcfd22009-03-24 10:24:20 -04001625 }
Chris Mason12fcfd22009-03-24 10:24:20 -04001626
Mark Fashehf1863732012-08-08 11:32:27 -07001627out:
1628 btrfs_free_path(path);
1629 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001630}
1631
1632static noinline int fixup_inode_link_counts(struct btrfs_trans_handle *trans,
1633 struct btrfs_root *root,
1634 struct btrfs_path *path)
1635{
1636 int ret;
1637 struct btrfs_key key;
1638 struct inode *inode;
1639
1640 key.objectid = BTRFS_TREE_LOG_FIXUP_OBJECTID;
1641 key.type = BTRFS_ORPHAN_ITEM_KEY;
1642 key.offset = (u64)-1;
Chris Masond3977122009-01-05 21:25:51 -05001643 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04001644 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1645 if (ret < 0)
1646 break;
1647
1648 if (ret == 1) {
1649 if (path->slots[0] == 0)
1650 break;
1651 path->slots[0]--;
1652 }
1653
1654 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1655 if (key.objectid != BTRFS_TREE_LOG_FIXUP_OBJECTID ||
1656 key.type != BTRFS_ORPHAN_ITEM_KEY)
1657 break;
1658
1659 ret = btrfs_del_item(trans, root, path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00001660 if (ret)
1661 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001662
David Sterbab3b4aa72011-04-21 01:20:15 +02001663 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001664 inode = read_one_inode(root, key.offset);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001665 if (!inode)
1666 return -EIO;
Chris Masone02119d2008-09-05 16:13:11 -04001667
1668 ret = fixup_inode_link_count(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -04001669 iput(inode);
Josef Bacik36508602013-04-25 16:23:32 -04001670 if (ret)
1671 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001672
Chris Mason12fcfd22009-03-24 10:24:20 -04001673 /*
1674 * fixup on a directory may create new entries,
1675 * make sure we always look for the highset possible
1676 * offset
1677 */
1678 key.offset = (u64)-1;
Chris Masone02119d2008-09-05 16:13:11 -04001679 }
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00001680 ret = 0;
1681out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001682 btrfs_release_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00001683 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001684}
1685
1686
1687/*
1688 * record a given inode in the fixup dir so we can check its link
1689 * count when replay is done. The link count is incremented here
1690 * so the inode won't go away until we check it
1691 */
1692static noinline int link_to_fixup_dir(struct btrfs_trans_handle *trans,
1693 struct btrfs_root *root,
1694 struct btrfs_path *path,
1695 u64 objectid)
1696{
1697 struct btrfs_key key;
1698 int ret = 0;
1699 struct inode *inode;
1700
1701 inode = read_one_inode(root, objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001702 if (!inode)
1703 return -EIO;
Chris Masone02119d2008-09-05 16:13:11 -04001704
1705 key.objectid = BTRFS_TREE_LOG_FIXUP_OBJECTID;
David Sterba962a2982014-06-04 18:41:45 +02001706 key.type = BTRFS_ORPHAN_ITEM_KEY;
Chris Masone02119d2008-09-05 16:13:11 -04001707 key.offset = objectid;
1708
1709 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
1710
David Sterbab3b4aa72011-04-21 01:20:15 +02001711 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001712 if (ret == 0) {
Josef Bacik9bf7a482013-03-01 13:35:47 -05001713 if (!inode->i_nlink)
1714 set_nlink(inode, 1);
1715 else
Zach Brown8b558c52013-10-16 12:10:34 -07001716 inc_nlink(inode);
Tsutomu Itohb9959292012-06-25 21:25:22 -06001717 ret = btrfs_update_inode(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -04001718 } else if (ret == -EEXIST) {
1719 ret = 0;
1720 } else {
Josef Bacik36508602013-04-25 16:23:32 -04001721 BUG(); /* Logic Error */
Chris Masone02119d2008-09-05 16:13:11 -04001722 }
1723 iput(inode);
1724
1725 return ret;
1726}
1727
1728/*
1729 * when replaying the log for a directory, we only insert names
1730 * for inodes that actually exist. This means an fsync on a directory
1731 * does not implicitly fsync all the new files in it
1732 */
1733static noinline int insert_one_name(struct btrfs_trans_handle *trans,
1734 struct btrfs_root *root,
Chris Masone02119d2008-09-05 16:13:11 -04001735 u64 dirid, u64 index,
Zhaolei60d53eb2015-08-17 18:44:46 +08001736 char *name, int name_len,
Chris Masone02119d2008-09-05 16:13:11 -04001737 struct btrfs_key *location)
1738{
1739 struct inode *inode;
1740 struct inode *dir;
1741 int ret;
1742
1743 inode = read_one_inode(root, location->objectid);
1744 if (!inode)
1745 return -ENOENT;
1746
1747 dir = read_one_inode(root, dirid);
1748 if (!dir) {
1749 iput(inode);
1750 return -EIO;
1751 }
Josef Bacikd5554382013-09-11 14:17:00 -04001752
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02001753 ret = btrfs_add_link(trans, BTRFS_I(dir), BTRFS_I(inode), name,
1754 name_len, 1, index);
Chris Masone02119d2008-09-05 16:13:11 -04001755
1756 /* FIXME, put inode into FIXUP list */
1757
1758 iput(inode);
1759 iput(dir);
1760 return ret;
1761}
1762
1763/*
Filipe Mananadf8d1162015-01-14 01:52:25 +00001764 * Return true if an inode reference exists in the log for the given name,
1765 * inode and parent inode.
1766 */
1767static bool name_in_log_ref(struct btrfs_root *log_root,
1768 const char *name, const int name_len,
1769 const u64 dirid, const u64 ino)
1770{
1771 struct btrfs_key search_key;
1772
1773 search_key.objectid = ino;
1774 search_key.type = BTRFS_INODE_REF_KEY;
1775 search_key.offset = dirid;
1776 if (backref_in_log(log_root, &search_key, dirid, name, name_len))
1777 return true;
1778
1779 search_key.type = BTRFS_INODE_EXTREF_KEY;
1780 search_key.offset = btrfs_extref_hash(dirid, name, name_len);
1781 if (backref_in_log(log_root, &search_key, dirid, name, name_len))
1782 return true;
1783
1784 return false;
1785}
1786
1787/*
Chris Masone02119d2008-09-05 16:13:11 -04001788 * take a single entry in a log directory item and replay it into
1789 * the subvolume.
1790 *
1791 * if a conflicting item exists in the subdirectory already,
1792 * the inode it points to is unlinked and put into the link count
1793 * fix up tree.
1794 *
1795 * If a name from the log points to a file or directory that does
1796 * not exist in the FS, it is skipped. fsyncs on directories
1797 * do not force down inodes inside that directory, just changes to the
1798 * names or unlinks in a directory.
Filipe Mananabb53eda2015-07-15 23:26:43 +01001799 *
1800 * Returns < 0 on error, 0 if the name wasn't replayed (dentry points to a
1801 * non-existing inode) and 1 if the name was replayed.
Chris Masone02119d2008-09-05 16:13:11 -04001802 */
1803static noinline int replay_one_name(struct btrfs_trans_handle *trans,
1804 struct btrfs_root *root,
1805 struct btrfs_path *path,
1806 struct extent_buffer *eb,
1807 struct btrfs_dir_item *di,
1808 struct btrfs_key *key)
1809{
1810 char *name;
1811 int name_len;
1812 struct btrfs_dir_item *dst_di;
1813 struct btrfs_key found_key;
1814 struct btrfs_key log_key;
1815 struct inode *dir;
Chris Masone02119d2008-09-05 16:13:11 -04001816 u8 log_type;
Chris Mason4bef0842008-09-08 11:18:08 -04001817 int exists;
Josef Bacik36508602013-04-25 16:23:32 -04001818 int ret = 0;
Josef Bacikd5554382013-09-11 14:17:00 -04001819 bool update_size = (key->type == BTRFS_DIR_INDEX_KEY);
Filipe Mananabb53eda2015-07-15 23:26:43 +01001820 bool name_added = false;
Chris Masone02119d2008-09-05 16:13:11 -04001821
1822 dir = read_one_inode(root, key->objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001823 if (!dir)
1824 return -EIO;
Chris Masone02119d2008-09-05 16:13:11 -04001825
1826 name_len = btrfs_dir_name_len(eb, di);
1827 name = kmalloc(name_len, GFP_NOFS);
Filipe David Borba Manana2bac3252013-08-04 19:58:57 +01001828 if (!name) {
1829 ret = -ENOMEM;
1830 goto out;
1831 }
liubo2a29edc2011-01-26 06:22:08 +00001832
Chris Masone02119d2008-09-05 16:13:11 -04001833 log_type = btrfs_dir_type(eb, di);
1834 read_extent_buffer(eb, name, (unsigned long)(di + 1),
1835 name_len);
1836
1837 btrfs_dir_item_key_to_cpu(eb, di, &log_key);
Chris Mason4bef0842008-09-08 11:18:08 -04001838 exists = btrfs_lookup_inode(trans, root, path, &log_key, 0);
1839 if (exists == 0)
1840 exists = 1;
1841 else
1842 exists = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02001843 btrfs_release_path(path);
Chris Mason4bef0842008-09-08 11:18:08 -04001844
Chris Masone02119d2008-09-05 16:13:11 -04001845 if (key->type == BTRFS_DIR_ITEM_KEY) {
1846 dst_di = btrfs_lookup_dir_item(trans, root, path, key->objectid,
1847 name, name_len, 1);
Chris Masond3977122009-01-05 21:25:51 -05001848 } else if (key->type == BTRFS_DIR_INDEX_KEY) {
Chris Masone02119d2008-09-05 16:13:11 -04001849 dst_di = btrfs_lookup_dir_index_item(trans, root, path,
1850 key->objectid,
1851 key->offset, name,
1852 name_len, 1);
1853 } else {
Josef Bacik36508602013-04-25 16:23:32 -04001854 /* Corruption */
1855 ret = -EINVAL;
1856 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001857 }
David Sterbac7040052011-04-19 18:00:01 +02001858 if (IS_ERR_OR_NULL(dst_di)) {
Chris Masone02119d2008-09-05 16:13:11 -04001859 /* we need a sequence number to insert, so we only
1860 * do inserts for the BTRFS_DIR_INDEX_KEY types
1861 */
1862 if (key->type != BTRFS_DIR_INDEX_KEY)
1863 goto out;
1864 goto insert;
1865 }
1866
1867 btrfs_dir_item_key_to_cpu(path->nodes[0], dst_di, &found_key);
1868 /* the existing item matches the logged item */
1869 if (found_key.objectid == log_key.objectid &&
1870 found_key.type == log_key.type &&
1871 found_key.offset == log_key.offset &&
1872 btrfs_dir_type(path->nodes[0], dst_di) == log_type) {
Filipe Mananaa2cc11d2014-09-08 22:53:18 +01001873 update_size = false;
Chris Masone02119d2008-09-05 16:13:11 -04001874 goto out;
1875 }
1876
1877 /*
1878 * don't drop the conflicting directory entry if the inode
1879 * for the new entry doesn't exist
1880 */
Chris Mason4bef0842008-09-08 11:18:08 -04001881 if (!exists)
Chris Masone02119d2008-09-05 16:13:11 -04001882 goto out;
1883
Nikolay Borisov207e7d92017-01-18 00:31:45 +02001884 ret = drop_one_dir_item(trans, root, path, BTRFS_I(dir), dst_di);
Josef Bacik36508602013-04-25 16:23:32 -04001885 if (ret)
1886 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001887
1888 if (key->type == BTRFS_DIR_INDEX_KEY)
1889 goto insert;
1890out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001891 btrfs_release_path(path);
Josef Bacikd5554382013-09-11 14:17:00 -04001892 if (!ret && update_size) {
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02001893 btrfs_i_size_write(BTRFS_I(dir), dir->i_size + name_len * 2);
Josef Bacikd5554382013-09-11 14:17:00 -04001894 ret = btrfs_update_inode(trans, root, dir);
1895 }
Chris Masone02119d2008-09-05 16:13:11 -04001896 kfree(name);
1897 iput(dir);
Filipe Mananabb53eda2015-07-15 23:26:43 +01001898 if (!ret && name_added)
1899 ret = 1;
Josef Bacik36508602013-04-25 16:23:32 -04001900 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001901
1902insert:
Filipe Mananadf8d1162015-01-14 01:52:25 +00001903 if (name_in_log_ref(root->log_root, name, name_len,
1904 key->objectid, log_key.objectid)) {
1905 /* The dentry will be added later. */
1906 ret = 0;
1907 update_size = false;
1908 goto out;
1909 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001910 btrfs_release_path(path);
Zhaolei60d53eb2015-08-17 18:44:46 +08001911 ret = insert_one_name(trans, root, key->objectid, key->offset,
1912 name, name_len, &log_key);
Filipe Mananadf8d1162015-01-14 01:52:25 +00001913 if (ret && ret != -ENOENT && ret != -EEXIST)
Josef Bacik36508602013-04-25 16:23:32 -04001914 goto out;
Filipe Mananabb53eda2015-07-15 23:26:43 +01001915 if (!ret)
1916 name_added = true;
Josef Bacikd5554382013-09-11 14:17:00 -04001917 update_size = false;
Josef Bacik36508602013-04-25 16:23:32 -04001918 ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -04001919 goto out;
1920}
1921
1922/*
1923 * find all the names in a directory item and reconcile them into
1924 * the subvolume. Only BTRFS_DIR_ITEM_KEY types will have more than
1925 * one name in a directory item, but the same code gets used for
1926 * both directory index types
1927 */
1928static noinline int replay_one_dir_item(struct btrfs_trans_handle *trans,
1929 struct btrfs_root *root,
1930 struct btrfs_path *path,
1931 struct extent_buffer *eb, int slot,
1932 struct btrfs_key *key)
1933{
Filipe Mananabb53eda2015-07-15 23:26:43 +01001934 int ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -04001935 u32 item_size = btrfs_item_size_nr(eb, slot);
1936 struct btrfs_dir_item *di;
1937 int name_len;
1938 unsigned long ptr;
1939 unsigned long ptr_end;
Filipe Mananabb53eda2015-07-15 23:26:43 +01001940 struct btrfs_path *fixup_path = NULL;
Chris Masone02119d2008-09-05 16:13:11 -04001941
1942 ptr = btrfs_item_ptr_offset(eb, slot);
1943 ptr_end = ptr + item_size;
Chris Masond3977122009-01-05 21:25:51 -05001944 while (ptr < ptr_end) {
Chris Masone02119d2008-09-05 16:13:11 -04001945 di = (struct btrfs_dir_item *)ptr;
1946 name_len = btrfs_dir_name_len(eb, di);
1947 ret = replay_one_name(trans, root, path, eb, di, key);
Filipe Mananabb53eda2015-07-15 23:26:43 +01001948 if (ret < 0)
1949 break;
Chris Masone02119d2008-09-05 16:13:11 -04001950 ptr = (unsigned long)(di + 1);
1951 ptr += name_len;
Filipe Mananabb53eda2015-07-15 23:26:43 +01001952
1953 /*
1954 * If this entry refers to a non-directory (directories can not
1955 * have a link count > 1) and it was added in the transaction
1956 * that was not committed, make sure we fixup the link count of
1957 * the inode it the entry points to. Otherwise something like
1958 * the following would result in a directory pointing to an
1959 * inode with a wrong link that does not account for this dir
1960 * entry:
1961 *
1962 * mkdir testdir
1963 * touch testdir/foo
1964 * touch testdir/bar
1965 * sync
1966 *
1967 * ln testdir/bar testdir/bar_link
1968 * ln testdir/foo testdir/foo_link
1969 * xfs_io -c "fsync" testdir/bar
1970 *
1971 * <power failure>
1972 *
1973 * mount fs, log replay happens
1974 *
1975 * File foo would remain with a link count of 1 when it has two
1976 * entries pointing to it in the directory testdir. This would
1977 * make it impossible to ever delete the parent directory has
1978 * it would result in stale dentries that can never be deleted.
1979 */
1980 if (ret == 1 && btrfs_dir_type(eb, di) != BTRFS_FT_DIR) {
1981 struct btrfs_key di_key;
1982
1983 if (!fixup_path) {
1984 fixup_path = btrfs_alloc_path();
1985 if (!fixup_path) {
1986 ret = -ENOMEM;
1987 break;
1988 }
1989 }
1990
1991 btrfs_dir_item_key_to_cpu(eb, di, &di_key);
1992 ret = link_to_fixup_dir(trans, root, fixup_path,
1993 di_key.objectid);
1994 if (ret)
1995 break;
1996 }
1997 ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -04001998 }
Filipe Mananabb53eda2015-07-15 23:26:43 +01001999 btrfs_free_path(fixup_path);
2000 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002001}
2002
2003/*
2004 * directory replay has two parts. There are the standard directory
2005 * items in the log copied from the subvolume, and range items
2006 * created in the log while the subvolume was logged.
2007 *
2008 * The range items tell us which parts of the key space the log
2009 * is authoritative for. During replay, if a key in the subvolume
2010 * directory is in a logged range item, but not actually in the log
2011 * that means it was deleted from the directory before the fsync
2012 * and should be removed.
2013 */
2014static noinline int find_dir_range(struct btrfs_root *root,
2015 struct btrfs_path *path,
2016 u64 dirid, int key_type,
2017 u64 *start_ret, u64 *end_ret)
2018{
2019 struct btrfs_key key;
2020 u64 found_end;
2021 struct btrfs_dir_log_item *item;
2022 int ret;
2023 int nritems;
2024
2025 if (*start_ret == (u64)-1)
2026 return 1;
2027
2028 key.objectid = dirid;
2029 key.type = key_type;
2030 key.offset = *start_ret;
2031
2032 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2033 if (ret < 0)
2034 goto out;
2035 if (ret > 0) {
2036 if (path->slots[0] == 0)
2037 goto out;
2038 path->slots[0]--;
2039 }
2040 if (ret != 0)
2041 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
2042
2043 if (key.type != key_type || key.objectid != dirid) {
2044 ret = 1;
2045 goto next;
2046 }
2047 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
2048 struct btrfs_dir_log_item);
2049 found_end = btrfs_dir_log_end(path->nodes[0], item);
2050
2051 if (*start_ret >= key.offset && *start_ret <= found_end) {
2052 ret = 0;
2053 *start_ret = key.offset;
2054 *end_ret = found_end;
2055 goto out;
2056 }
2057 ret = 1;
2058next:
2059 /* check the next slot in the tree to see if it is a valid item */
2060 nritems = btrfs_header_nritems(path->nodes[0]);
Robbie Ko2a7bf532016-10-07 17:30:47 +08002061 path->slots[0]++;
Chris Masone02119d2008-09-05 16:13:11 -04002062 if (path->slots[0] >= nritems) {
2063 ret = btrfs_next_leaf(root, path);
2064 if (ret)
2065 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04002066 }
2067
2068 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
2069
2070 if (key.type != key_type || key.objectid != dirid) {
2071 ret = 1;
2072 goto out;
2073 }
2074 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
2075 struct btrfs_dir_log_item);
2076 found_end = btrfs_dir_log_end(path->nodes[0], item);
2077 *start_ret = key.offset;
2078 *end_ret = found_end;
2079 ret = 0;
2080out:
David Sterbab3b4aa72011-04-21 01:20:15 +02002081 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002082 return ret;
2083}
2084
2085/*
2086 * this looks for a given directory item in the log. If the directory
2087 * item is not in the log, the item is removed and the inode it points
2088 * to is unlinked
2089 */
2090static noinline int check_item_in_log(struct btrfs_trans_handle *trans,
2091 struct btrfs_root *root,
2092 struct btrfs_root *log,
2093 struct btrfs_path *path,
2094 struct btrfs_path *log_path,
2095 struct inode *dir,
2096 struct btrfs_key *dir_key)
2097{
2098 int ret;
2099 struct extent_buffer *eb;
2100 int slot;
2101 u32 item_size;
2102 struct btrfs_dir_item *di;
2103 struct btrfs_dir_item *log_di;
2104 int name_len;
2105 unsigned long ptr;
2106 unsigned long ptr_end;
2107 char *name;
2108 struct inode *inode;
2109 struct btrfs_key location;
2110
2111again:
2112 eb = path->nodes[0];
2113 slot = path->slots[0];
2114 item_size = btrfs_item_size_nr(eb, slot);
2115 ptr = btrfs_item_ptr_offset(eb, slot);
2116 ptr_end = ptr + item_size;
Chris Masond3977122009-01-05 21:25:51 -05002117 while (ptr < ptr_end) {
Chris Masone02119d2008-09-05 16:13:11 -04002118 di = (struct btrfs_dir_item *)ptr;
2119 name_len = btrfs_dir_name_len(eb, di);
2120 name = kmalloc(name_len, GFP_NOFS);
2121 if (!name) {
2122 ret = -ENOMEM;
2123 goto out;
2124 }
2125 read_extent_buffer(eb, name, (unsigned long)(di + 1),
2126 name_len);
2127 log_di = NULL;
Chris Mason12fcfd22009-03-24 10:24:20 -04002128 if (log && dir_key->type == BTRFS_DIR_ITEM_KEY) {
Chris Masone02119d2008-09-05 16:13:11 -04002129 log_di = btrfs_lookup_dir_item(trans, log, log_path,
2130 dir_key->objectid,
2131 name, name_len, 0);
Chris Mason12fcfd22009-03-24 10:24:20 -04002132 } else if (log && dir_key->type == BTRFS_DIR_INDEX_KEY) {
Chris Masone02119d2008-09-05 16:13:11 -04002133 log_di = btrfs_lookup_dir_index_item(trans, log,
2134 log_path,
2135 dir_key->objectid,
2136 dir_key->offset,
2137 name, name_len, 0);
2138 }
Filipe David Borba Manana269d0402013-10-28 17:39:21 +00002139 if (!log_di || (IS_ERR(log_di) && PTR_ERR(log_di) == -ENOENT)) {
Chris Masone02119d2008-09-05 16:13:11 -04002140 btrfs_dir_item_key_to_cpu(eb, di, &location);
David Sterbab3b4aa72011-04-21 01:20:15 +02002141 btrfs_release_path(path);
2142 btrfs_release_path(log_path);
Chris Masone02119d2008-09-05 16:13:11 -04002143 inode = read_one_inode(root, location.objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00002144 if (!inode) {
2145 kfree(name);
2146 return -EIO;
2147 }
Chris Masone02119d2008-09-05 16:13:11 -04002148
2149 ret = link_to_fixup_dir(trans, root,
2150 path, location.objectid);
Josef Bacik36508602013-04-25 16:23:32 -04002151 if (ret) {
2152 kfree(name);
2153 iput(inode);
2154 goto out;
2155 }
2156
Zach Brown8b558c52013-10-16 12:10:34 -07002157 inc_nlink(inode);
Nikolay Borisov4ec59342017-01-18 00:31:44 +02002158 ret = btrfs_unlink_inode(trans, root, BTRFS_I(dir),
2159 BTRFS_I(inode), name, name_len);
Josef Bacik36508602013-04-25 16:23:32 -04002160 if (!ret)
Nikolay Borisove5c304e62018-02-07 17:55:43 +02002161 ret = btrfs_run_delayed_items(trans);
Chris Masone02119d2008-09-05 16:13:11 -04002162 kfree(name);
2163 iput(inode);
Josef Bacik36508602013-04-25 16:23:32 -04002164 if (ret)
2165 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04002166
2167 /* there might still be more names under this key
2168 * check and repeat if required
2169 */
2170 ret = btrfs_search_slot(NULL, root, dir_key, path,
2171 0, 0);
2172 if (ret == 0)
2173 goto again;
2174 ret = 0;
2175 goto out;
Filipe David Borba Manana269d0402013-10-28 17:39:21 +00002176 } else if (IS_ERR(log_di)) {
2177 kfree(name);
2178 return PTR_ERR(log_di);
Chris Masone02119d2008-09-05 16:13:11 -04002179 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002180 btrfs_release_path(log_path);
Chris Masone02119d2008-09-05 16:13:11 -04002181 kfree(name);
2182
2183 ptr = (unsigned long)(di + 1);
2184 ptr += name_len;
2185 }
2186 ret = 0;
2187out:
David Sterbab3b4aa72011-04-21 01:20:15 +02002188 btrfs_release_path(path);
2189 btrfs_release_path(log_path);
Chris Masone02119d2008-09-05 16:13:11 -04002190 return ret;
2191}
2192
Filipe Manana4f764e52015-02-23 19:53:35 +00002193static int replay_xattr_deletes(struct btrfs_trans_handle *trans,
2194 struct btrfs_root *root,
2195 struct btrfs_root *log,
2196 struct btrfs_path *path,
2197 const u64 ino)
2198{
2199 struct btrfs_key search_key;
2200 struct btrfs_path *log_path;
2201 int i;
2202 int nritems;
2203 int ret;
2204
2205 log_path = btrfs_alloc_path();
2206 if (!log_path)
2207 return -ENOMEM;
2208
2209 search_key.objectid = ino;
2210 search_key.type = BTRFS_XATTR_ITEM_KEY;
2211 search_key.offset = 0;
2212again:
2213 ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0);
2214 if (ret < 0)
2215 goto out;
2216process_leaf:
2217 nritems = btrfs_header_nritems(path->nodes[0]);
2218 for (i = path->slots[0]; i < nritems; i++) {
2219 struct btrfs_key key;
2220 struct btrfs_dir_item *di;
2221 struct btrfs_dir_item *log_di;
2222 u32 total_size;
2223 u32 cur;
2224
2225 btrfs_item_key_to_cpu(path->nodes[0], &key, i);
2226 if (key.objectid != ino || key.type != BTRFS_XATTR_ITEM_KEY) {
2227 ret = 0;
2228 goto out;
2229 }
2230
2231 di = btrfs_item_ptr(path->nodes[0], i, struct btrfs_dir_item);
2232 total_size = btrfs_item_size_nr(path->nodes[0], i);
2233 cur = 0;
2234 while (cur < total_size) {
2235 u16 name_len = btrfs_dir_name_len(path->nodes[0], di);
2236 u16 data_len = btrfs_dir_data_len(path->nodes[0], di);
2237 u32 this_len = sizeof(*di) + name_len + data_len;
2238 char *name;
2239
2240 name = kmalloc(name_len, GFP_NOFS);
2241 if (!name) {
2242 ret = -ENOMEM;
2243 goto out;
2244 }
2245 read_extent_buffer(path->nodes[0], name,
2246 (unsigned long)(di + 1), name_len);
2247
2248 log_di = btrfs_lookup_xattr(NULL, log, log_path, ino,
2249 name, name_len, 0);
2250 btrfs_release_path(log_path);
2251 if (!log_di) {
2252 /* Doesn't exist in log tree, so delete it. */
2253 btrfs_release_path(path);
2254 di = btrfs_lookup_xattr(trans, root, path, ino,
2255 name, name_len, -1);
2256 kfree(name);
2257 if (IS_ERR(di)) {
2258 ret = PTR_ERR(di);
2259 goto out;
2260 }
2261 ASSERT(di);
2262 ret = btrfs_delete_one_dir_name(trans, root,
2263 path, di);
2264 if (ret)
2265 goto out;
2266 btrfs_release_path(path);
2267 search_key = key;
2268 goto again;
2269 }
2270 kfree(name);
2271 if (IS_ERR(log_di)) {
2272 ret = PTR_ERR(log_di);
2273 goto out;
2274 }
2275 cur += this_len;
2276 di = (struct btrfs_dir_item *)((char *)di + this_len);
2277 }
2278 }
2279 ret = btrfs_next_leaf(root, path);
2280 if (ret > 0)
2281 ret = 0;
2282 else if (ret == 0)
2283 goto process_leaf;
2284out:
2285 btrfs_free_path(log_path);
2286 btrfs_release_path(path);
2287 return ret;
2288}
2289
2290
Chris Masone02119d2008-09-05 16:13:11 -04002291/*
2292 * deletion replay happens before we copy any new directory items
2293 * out of the log or out of backreferences from inodes. It
2294 * scans the log to find ranges of keys that log is authoritative for,
2295 * and then scans the directory to find items in those ranges that are
2296 * not present in the log.
2297 *
2298 * Anything we don't find in the log is unlinked and removed from the
2299 * directory.
2300 */
2301static noinline int replay_dir_deletes(struct btrfs_trans_handle *trans,
2302 struct btrfs_root *root,
2303 struct btrfs_root *log,
2304 struct btrfs_path *path,
Chris Mason12fcfd22009-03-24 10:24:20 -04002305 u64 dirid, int del_all)
Chris Masone02119d2008-09-05 16:13:11 -04002306{
2307 u64 range_start;
2308 u64 range_end;
2309 int key_type = BTRFS_DIR_LOG_ITEM_KEY;
2310 int ret = 0;
2311 struct btrfs_key dir_key;
2312 struct btrfs_key found_key;
2313 struct btrfs_path *log_path;
2314 struct inode *dir;
2315
2316 dir_key.objectid = dirid;
2317 dir_key.type = BTRFS_DIR_ITEM_KEY;
2318 log_path = btrfs_alloc_path();
2319 if (!log_path)
2320 return -ENOMEM;
2321
2322 dir = read_one_inode(root, dirid);
2323 /* it isn't an error if the inode isn't there, that can happen
2324 * because we replay the deletes before we copy in the inode item
2325 * from the log
2326 */
2327 if (!dir) {
2328 btrfs_free_path(log_path);
2329 return 0;
2330 }
2331again:
2332 range_start = 0;
2333 range_end = 0;
Chris Masond3977122009-01-05 21:25:51 -05002334 while (1) {
Chris Mason12fcfd22009-03-24 10:24:20 -04002335 if (del_all)
2336 range_end = (u64)-1;
2337 else {
2338 ret = find_dir_range(log, path, dirid, key_type,
2339 &range_start, &range_end);
2340 if (ret != 0)
2341 break;
2342 }
Chris Masone02119d2008-09-05 16:13:11 -04002343
2344 dir_key.offset = range_start;
Chris Masond3977122009-01-05 21:25:51 -05002345 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04002346 int nritems;
2347 ret = btrfs_search_slot(NULL, root, &dir_key, path,
2348 0, 0);
2349 if (ret < 0)
2350 goto out;
2351
2352 nritems = btrfs_header_nritems(path->nodes[0]);
2353 if (path->slots[0] >= nritems) {
2354 ret = btrfs_next_leaf(root, path);
2355 if (ret)
2356 break;
2357 }
2358 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
2359 path->slots[0]);
2360 if (found_key.objectid != dirid ||
2361 found_key.type != dir_key.type)
2362 goto next_type;
2363
2364 if (found_key.offset > range_end)
2365 break;
2366
2367 ret = check_item_in_log(trans, root, log, path,
Chris Mason12fcfd22009-03-24 10:24:20 -04002368 log_path, dir,
2369 &found_key);
Josef Bacik36508602013-04-25 16:23:32 -04002370 if (ret)
2371 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04002372 if (found_key.offset == (u64)-1)
2373 break;
2374 dir_key.offset = found_key.offset + 1;
2375 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002376 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002377 if (range_end == (u64)-1)
2378 break;
2379 range_start = range_end + 1;
2380 }
2381
2382next_type:
2383 ret = 0;
2384 if (key_type == BTRFS_DIR_LOG_ITEM_KEY) {
2385 key_type = BTRFS_DIR_LOG_INDEX_KEY;
2386 dir_key.type = BTRFS_DIR_INDEX_KEY;
David Sterbab3b4aa72011-04-21 01:20:15 +02002387 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002388 goto again;
2389 }
2390out:
David Sterbab3b4aa72011-04-21 01:20:15 +02002391 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002392 btrfs_free_path(log_path);
2393 iput(dir);
2394 return ret;
2395}
2396
2397/*
2398 * the process_func used to replay items from the log tree. This
2399 * gets called in two different stages. The first stage just looks
2400 * for inodes and makes sure they are all copied into the subvolume.
2401 *
2402 * The second stage copies all the other item types from the log into
2403 * the subvolume. The two stage approach is slower, but gets rid of
2404 * lots of complexity around inodes referencing other inodes that exist
2405 * only in the log (references come from either directory items or inode
2406 * back refs).
2407 */
2408static int replay_one_buffer(struct btrfs_root *log, struct extent_buffer *eb,
Qu Wenruo581c1762018-03-29 09:08:11 +08002409 struct walk_control *wc, u64 gen, int level)
Chris Masone02119d2008-09-05 16:13:11 -04002410{
2411 int nritems;
2412 struct btrfs_path *path;
2413 struct btrfs_root *root = wc->replay_dest;
2414 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04002415 int i;
2416 int ret;
2417
Qu Wenruo581c1762018-03-29 09:08:11 +08002418 ret = btrfs_read_buffer(eb, gen, level, NULL);
Tsutomu Itoh018642a2012-05-29 18:10:13 +09002419 if (ret)
2420 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002421
2422 level = btrfs_header_level(eb);
2423
2424 if (level != 0)
2425 return 0;
2426
2427 path = btrfs_alloc_path();
Mark Fasheh1e5063d2011-07-12 10:46:06 -07002428 if (!path)
2429 return -ENOMEM;
Chris Masone02119d2008-09-05 16:13:11 -04002430
2431 nritems = btrfs_header_nritems(eb);
2432 for (i = 0; i < nritems; i++) {
2433 btrfs_item_key_to_cpu(eb, &key, i);
Chris Masone02119d2008-09-05 16:13:11 -04002434
2435 /* inode keys are done during the first stage */
2436 if (key.type == BTRFS_INODE_ITEM_KEY &&
2437 wc->stage == LOG_WALK_REPLAY_INODES) {
Chris Masone02119d2008-09-05 16:13:11 -04002438 struct btrfs_inode_item *inode_item;
2439 u32 mode;
2440
2441 inode_item = btrfs_item_ptr(eb, i,
2442 struct btrfs_inode_item);
Filipe Manana4f764e52015-02-23 19:53:35 +00002443 ret = replay_xattr_deletes(wc->trans, root, log,
2444 path, key.objectid);
2445 if (ret)
2446 break;
Chris Masone02119d2008-09-05 16:13:11 -04002447 mode = btrfs_inode_mode(eb, inode_item);
2448 if (S_ISDIR(mode)) {
2449 ret = replay_dir_deletes(wc->trans,
Chris Mason12fcfd22009-03-24 10:24:20 -04002450 root, log, path, key.objectid, 0);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002451 if (ret)
2452 break;
Chris Masone02119d2008-09-05 16:13:11 -04002453 }
2454 ret = overwrite_item(wc->trans, root, path,
2455 eb, i, &key);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002456 if (ret)
2457 break;
Chris Masone02119d2008-09-05 16:13:11 -04002458
Yan, Zhengc71bf092009-11-12 09:34:40 +00002459 /* for regular files, make sure corresponding
Nicholas D Steeves01327612016-05-19 21:18:45 -04002460 * orphan item exist. extents past the new EOF
Yan, Zhengc71bf092009-11-12 09:34:40 +00002461 * will be truncated later by orphan cleanup.
Chris Masone02119d2008-09-05 16:13:11 -04002462 */
2463 if (S_ISREG(mode)) {
Yan, Zhengc71bf092009-11-12 09:34:40 +00002464 ret = insert_orphan_item(wc->trans, root,
2465 key.objectid);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002466 if (ret)
2467 break;
Chris Masone02119d2008-09-05 16:13:11 -04002468 }
Yan, Zhengc71bf092009-11-12 09:34:40 +00002469
Chris Masone02119d2008-09-05 16:13:11 -04002470 ret = link_to_fixup_dir(wc->trans, root,
2471 path, key.objectid);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002472 if (ret)
2473 break;
Chris Masone02119d2008-09-05 16:13:11 -04002474 }
Josef Bacikdd8e7212013-09-11 11:57:23 -04002475
2476 if (key.type == BTRFS_DIR_INDEX_KEY &&
2477 wc->stage == LOG_WALK_REPLAY_DIR_INDEX) {
2478 ret = replay_one_dir_item(wc->trans, root, path,
2479 eb, i, &key);
2480 if (ret)
2481 break;
2482 }
2483
Chris Masone02119d2008-09-05 16:13:11 -04002484 if (wc->stage < LOG_WALK_REPLAY_ALL)
2485 continue;
2486
2487 /* these keys are simply copied */
2488 if (key.type == BTRFS_XATTR_ITEM_KEY) {
2489 ret = overwrite_item(wc->trans, root, path,
2490 eb, i, &key);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002491 if (ret)
2492 break;
Liu Bo2da1c662013-05-26 13:50:29 +00002493 } else if (key.type == BTRFS_INODE_REF_KEY ||
2494 key.type == BTRFS_INODE_EXTREF_KEY) {
Mark Fashehf1863732012-08-08 11:32:27 -07002495 ret = add_inode_ref(wc->trans, root, log, path,
2496 eb, i, &key);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002497 if (ret && ret != -ENOENT)
2498 break;
2499 ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -04002500 } else if (key.type == BTRFS_EXTENT_DATA_KEY) {
2501 ret = replay_one_extent(wc->trans, root, path,
2502 eb, i, &key);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002503 if (ret)
2504 break;
Josef Bacikdd8e7212013-09-11 11:57:23 -04002505 } else if (key.type == BTRFS_DIR_ITEM_KEY) {
Chris Masone02119d2008-09-05 16:13:11 -04002506 ret = replay_one_dir_item(wc->trans, root, path,
2507 eb, i, &key);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002508 if (ret)
2509 break;
Chris Masone02119d2008-09-05 16:13:11 -04002510 }
2511 }
2512 btrfs_free_path(path);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002513 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002514}
2515
Chris Masond3977122009-01-05 21:25:51 -05002516static noinline int walk_down_log_tree(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -04002517 struct btrfs_root *root,
2518 struct btrfs_path *path, int *level,
2519 struct walk_control *wc)
2520{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002521 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04002522 u64 root_owner;
Chris Masone02119d2008-09-05 16:13:11 -04002523 u64 bytenr;
2524 u64 ptr_gen;
2525 struct extent_buffer *next;
2526 struct extent_buffer *cur;
2527 struct extent_buffer *parent;
2528 u32 blocksize;
2529 int ret = 0;
2530
2531 WARN_ON(*level < 0);
2532 WARN_ON(*level >= BTRFS_MAX_LEVEL);
2533
Chris Masond3977122009-01-05 21:25:51 -05002534 while (*level > 0) {
Qu Wenruo581c1762018-03-29 09:08:11 +08002535 struct btrfs_key first_key;
2536
Chris Masone02119d2008-09-05 16:13:11 -04002537 WARN_ON(*level < 0);
2538 WARN_ON(*level >= BTRFS_MAX_LEVEL);
2539 cur = path->nodes[*level];
2540
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05302541 WARN_ON(btrfs_header_level(cur) != *level);
Chris Masone02119d2008-09-05 16:13:11 -04002542
2543 if (path->slots[*level] >=
2544 btrfs_header_nritems(cur))
2545 break;
2546
2547 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
2548 ptr_gen = btrfs_node_ptr_generation(cur, path->slots[*level]);
Qu Wenruo581c1762018-03-29 09:08:11 +08002549 btrfs_node_key_to_cpu(cur, &first_key, path->slots[*level]);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002550 blocksize = fs_info->nodesize;
Chris Masone02119d2008-09-05 16:13:11 -04002551
2552 parent = path->nodes[*level];
2553 root_owner = btrfs_header_owner(parent);
Chris Masone02119d2008-09-05 16:13:11 -04002554
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002555 next = btrfs_find_create_tree_block(fs_info, bytenr);
Liu Boc871b0f2016-06-06 12:01:23 -07002556 if (IS_ERR(next))
2557 return PTR_ERR(next);
Chris Masone02119d2008-09-05 16:13:11 -04002558
Chris Masone02119d2008-09-05 16:13:11 -04002559 if (*level == 1) {
Qu Wenruo581c1762018-03-29 09:08:11 +08002560 ret = wc->process_func(root, next, wc, ptr_gen,
2561 *level - 1);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002562 if (ret) {
2563 free_extent_buffer(next);
Mark Fasheh1e5063d2011-07-12 10:46:06 -07002564 return ret;
Josef Bacikb50c6e22013-04-25 15:55:30 -04002565 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002566
Chris Masone02119d2008-09-05 16:13:11 -04002567 path->slots[*level]++;
2568 if (wc->free) {
Qu Wenruo581c1762018-03-29 09:08:11 +08002569 ret = btrfs_read_buffer(next, ptr_gen,
2570 *level - 1, &first_key);
Tsutomu Itoh018642a2012-05-29 18:10:13 +09002571 if (ret) {
2572 free_extent_buffer(next);
2573 return ret;
2574 }
Chris Masone02119d2008-09-05 16:13:11 -04002575
Josef Bacik681ae502013-10-07 15:11:00 -04002576 if (trans) {
2577 btrfs_tree_lock(next);
2578 btrfs_set_lock_blocking(next);
David Sterba7c302b42017-02-10 18:47:57 +01002579 clean_tree_block(fs_info, next);
Josef Bacik681ae502013-10-07 15:11:00 -04002580 btrfs_wait_tree_block_writeback(next);
2581 btrfs_tree_unlock(next);
Liu Bo18464302018-01-25 11:02:51 -07002582 } else {
2583 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &next->bflags))
2584 clear_extent_buffer_dirty(next);
Josef Bacik681ae502013-10-07 15:11:00 -04002585 }
Chris Masone02119d2008-09-05 16:13:11 -04002586
Chris Masone02119d2008-09-05 16:13:11 -04002587 WARN_ON(root_owner !=
2588 BTRFS_TREE_LOG_OBJECTID);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002589 ret = btrfs_free_and_pin_reserved_extent(
2590 fs_info, bytenr,
2591 blocksize);
Josef Bacik36508602013-04-25 16:23:32 -04002592 if (ret) {
2593 free_extent_buffer(next);
2594 return ret;
2595 }
Chris Masone02119d2008-09-05 16:13:11 -04002596 }
2597 free_extent_buffer(next);
2598 continue;
2599 }
Qu Wenruo581c1762018-03-29 09:08:11 +08002600 ret = btrfs_read_buffer(next, ptr_gen, *level - 1, &first_key);
Tsutomu Itoh018642a2012-05-29 18:10:13 +09002601 if (ret) {
2602 free_extent_buffer(next);
2603 return ret;
2604 }
Chris Masone02119d2008-09-05 16:13:11 -04002605
2606 WARN_ON(*level <= 0);
2607 if (path->nodes[*level-1])
2608 free_extent_buffer(path->nodes[*level-1]);
2609 path->nodes[*level-1] = next;
2610 *level = btrfs_header_level(next);
2611 path->slots[*level] = 0;
2612 cond_resched();
2613 }
2614 WARN_ON(*level < 0);
2615 WARN_ON(*level >= BTRFS_MAX_LEVEL);
2616
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002617 path->slots[*level] = btrfs_header_nritems(path->nodes[*level]);
Chris Masone02119d2008-09-05 16:13:11 -04002618
2619 cond_resched();
2620 return 0;
2621}
2622
Chris Masond3977122009-01-05 21:25:51 -05002623static noinline int walk_up_log_tree(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -04002624 struct btrfs_root *root,
2625 struct btrfs_path *path, int *level,
2626 struct walk_control *wc)
2627{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002628 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04002629 u64 root_owner;
Chris Masone02119d2008-09-05 16:13:11 -04002630 int i;
2631 int slot;
2632 int ret;
2633
Chris Masond3977122009-01-05 21:25:51 -05002634 for (i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
Chris Masone02119d2008-09-05 16:13:11 -04002635 slot = path->slots[i];
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002636 if (slot + 1 < btrfs_header_nritems(path->nodes[i])) {
Chris Masone02119d2008-09-05 16:13:11 -04002637 path->slots[i]++;
2638 *level = i;
2639 WARN_ON(*level == 0);
2640 return 0;
2641 } else {
Zheng Yan31840ae2008-09-23 13:14:14 -04002642 struct extent_buffer *parent;
2643 if (path->nodes[*level] == root->node)
2644 parent = path->nodes[*level];
2645 else
2646 parent = path->nodes[*level + 1];
2647
2648 root_owner = btrfs_header_owner(parent);
Mark Fasheh1e5063d2011-07-12 10:46:06 -07002649 ret = wc->process_func(root, path->nodes[*level], wc,
Qu Wenruo581c1762018-03-29 09:08:11 +08002650 btrfs_header_generation(path->nodes[*level]),
2651 *level);
Mark Fasheh1e5063d2011-07-12 10:46:06 -07002652 if (ret)
2653 return ret;
2654
Chris Masone02119d2008-09-05 16:13:11 -04002655 if (wc->free) {
2656 struct extent_buffer *next;
2657
2658 next = path->nodes[*level];
2659
Josef Bacik681ae502013-10-07 15:11:00 -04002660 if (trans) {
2661 btrfs_tree_lock(next);
2662 btrfs_set_lock_blocking(next);
David Sterba7c302b42017-02-10 18:47:57 +01002663 clean_tree_block(fs_info, next);
Josef Bacik681ae502013-10-07 15:11:00 -04002664 btrfs_wait_tree_block_writeback(next);
2665 btrfs_tree_unlock(next);
Liu Bo18464302018-01-25 11:02:51 -07002666 } else {
2667 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &next->bflags))
2668 clear_extent_buffer_dirty(next);
Josef Bacik681ae502013-10-07 15:11:00 -04002669 }
Chris Masone02119d2008-09-05 16:13:11 -04002670
Chris Masone02119d2008-09-05 16:13:11 -04002671 WARN_ON(root_owner != BTRFS_TREE_LOG_OBJECTID);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002672 ret = btrfs_free_and_pin_reserved_extent(
2673 fs_info,
Chris Masone02119d2008-09-05 16:13:11 -04002674 path->nodes[*level]->start,
Chris Masond00aff02008-09-11 15:54:42 -04002675 path->nodes[*level]->len);
Josef Bacik36508602013-04-25 16:23:32 -04002676 if (ret)
2677 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002678 }
2679 free_extent_buffer(path->nodes[*level]);
2680 path->nodes[*level] = NULL;
2681 *level = i + 1;
2682 }
2683 }
2684 return 1;
2685}
2686
2687/*
2688 * drop the reference count on the tree rooted at 'snap'. This traverses
2689 * the tree freeing any blocks that have a ref count of zero after being
2690 * decremented.
2691 */
2692static int walk_log_tree(struct btrfs_trans_handle *trans,
2693 struct btrfs_root *log, struct walk_control *wc)
2694{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002695 struct btrfs_fs_info *fs_info = log->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04002696 int ret = 0;
2697 int wret;
2698 int level;
2699 struct btrfs_path *path;
Chris Masone02119d2008-09-05 16:13:11 -04002700 int orig_level;
2701
2702 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00002703 if (!path)
2704 return -ENOMEM;
Chris Masone02119d2008-09-05 16:13:11 -04002705
2706 level = btrfs_header_level(log->node);
2707 orig_level = level;
2708 path->nodes[level] = log->node;
2709 extent_buffer_get(log->node);
2710 path->slots[level] = 0;
2711
Chris Masond3977122009-01-05 21:25:51 -05002712 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04002713 wret = walk_down_log_tree(trans, log, path, &level, wc);
2714 if (wret > 0)
2715 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002716 if (wret < 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002717 ret = wret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002718 goto out;
2719 }
Chris Masone02119d2008-09-05 16:13:11 -04002720
2721 wret = walk_up_log_tree(trans, log, path, &level, wc);
2722 if (wret > 0)
2723 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002724 if (wret < 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002725 ret = wret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002726 goto out;
2727 }
Chris Masone02119d2008-09-05 16:13:11 -04002728 }
2729
2730 /* was the root node processed? if not, catch it here */
2731 if (path->nodes[orig_level]) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002732 ret = wc->process_func(log, path->nodes[orig_level], wc,
Qu Wenruo581c1762018-03-29 09:08:11 +08002733 btrfs_header_generation(path->nodes[orig_level]),
2734 orig_level);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002735 if (ret)
2736 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04002737 if (wc->free) {
2738 struct extent_buffer *next;
2739
2740 next = path->nodes[orig_level];
2741
Josef Bacik681ae502013-10-07 15:11:00 -04002742 if (trans) {
2743 btrfs_tree_lock(next);
2744 btrfs_set_lock_blocking(next);
David Sterba7c302b42017-02-10 18:47:57 +01002745 clean_tree_block(fs_info, next);
Josef Bacik681ae502013-10-07 15:11:00 -04002746 btrfs_wait_tree_block_writeback(next);
2747 btrfs_tree_unlock(next);
Liu Bo18464302018-01-25 11:02:51 -07002748 } else {
2749 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &next->bflags))
2750 clear_extent_buffer_dirty(next);
Josef Bacik681ae502013-10-07 15:11:00 -04002751 }
Chris Masone02119d2008-09-05 16:13:11 -04002752
Chris Masone02119d2008-09-05 16:13:11 -04002753 WARN_ON(log->root_key.objectid !=
2754 BTRFS_TREE_LOG_OBJECTID);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002755 ret = btrfs_free_and_pin_reserved_extent(fs_info,
2756 next->start, next->len);
Josef Bacik36508602013-04-25 16:23:32 -04002757 if (ret)
2758 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04002759 }
2760 }
2761
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002762out:
Chris Masone02119d2008-09-05 16:13:11 -04002763 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002764 return ret;
2765}
2766
Yan Zheng7237f182009-01-21 12:54:03 -05002767/*
2768 * helper function to update the item for a given subvolumes log root
2769 * in the tree of log roots
2770 */
2771static int update_log_root(struct btrfs_trans_handle *trans,
2772 struct btrfs_root *log)
2773{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002774 struct btrfs_fs_info *fs_info = log->fs_info;
Yan Zheng7237f182009-01-21 12:54:03 -05002775 int ret;
2776
2777 if (log->log_transid == 1) {
2778 /* insert root item on the first sync */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002779 ret = btrfs_insert_root(trans, fs_info->log_root_tree,
Yan Zheng7237f182009-01-21 12:54:03 -05002780 &log->root_key, &log->root_item);
2781 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002782 ret = btrfs_update_root(trans, fs_info->log_root_tree,
Yan Zheng7237f182009-01-21 12:54:03 -05002783 &log->root_key, &log->root_item);
2784 }
2785 return ret;
2786}
2787
Zhaolei60d53eb2015-08-17 18:44:46 +08002788static void wait_log_commit(struct btrfs_root *root, int transid)
Chris Masone02119d2008-09-05 16:13:11 -04002789{
2790 DEFINE_WAIT(wait);
Yan Zheng7237f182009-01-21 12:54:03 -05002791 int index = transid % 2;
Chris Masone02119d2008-09-05 16:13:11 -04002792
Yan Zheng7237f182009-01-21 12:54:03 -05002793 /*
2794 * we only allow two pending log transactions at a time,
2795 * so we know that if ours is more than 2 older than the
2796 * current transaction, we're done
2797 */
Liu Bo49e83f52017-09-01 16:14:30 -06002798 for (;;) {
Yan Zheng7237f182009-01-21 12:54:03 -05002799 prepare_to_wait(&root->log_commit_wait[index],
2800 &wait, TASK_UNINTERRUPTIBLE);
Liu Bo49e83f52017-09-01 16:14:30 -06002801
2802 if (!(root->log_transid_committed < transid &&
2803 atomic_read(&root->log_commit[index])))
2804 break;
2805
Yan Zheng7237f182009-01-21 12:54:03 -05002806 mutex_unlock(&root->log_mutex);
Liu Bo49e83f52017-09-01 16:14:30 -06002807 schedule();
Yan Zheng7237f182009-01-21 12:54:03 -05002808 mutex_lock(&root->log_mutex);
Liu Bo49e83f52017-09-01 16:14:30 -06002809 }
2810 finish_wait(&root->log_commit_wait[index], &wait);
Yan Zheng7237f182009-01-21 12:54:03 -05002811}
2812
Zhaolei60d53eb2015-08-17 18:44:46 +08002813static void wait_for_writer(struct btrfs_root *root)
Yan Zheng7237f182009-01-21 12:54:03 -05002814{
2815 DEFINE_WAIT(wait);
Miao Xie8b050d32014-02-20 18:08:58 +08002816
Liu Bo49e83f52017-09-01 16:14:30 -06002817 for (;;) {
2818 prepare_to_wait(&root->log_writer_wait, &wait,
2819 TASK_UNINTERRUPTIBLE);
2820 if (!atomic_read(&root->log_writers))
2821 break;
2822
Yan Zheng7237f182009-01-21 12:54:03 -05002823 mutex_unlock(&root->log_mutex);
Liu Bo49e83f52017-09-01 16:14:30 -06002824 schedule();
Filipe Manana575849e2015-02-11 11:12:39 +00002825 mutex_lock(&root->log_mutex);
Yan Zheng7237f182009-01-21 12:54:03 -05002826 }
Liu Bo49e83f52017-09-01 16:14:30 -06002827 finish_wait(&root->log_writer_wait, &wait);
Chris Masone02119d2008-09-05 16:13:11 -04002828}
2829
Miao Xie8b050d32014-02-20 18:08:58 +08002830static inline void btrfs_remove_log_ctx(struct btrfs_root *root,
2831 struct btrfs_log_ctx *ctx)
2832{
2833 if (!ctx)
2834 return;
2835
2836 mutex_lock(&root->log_mutex);
2837 list_del_init(&ctx->list);
2838 mutex_unlock(&root->log_mutex);
2839}
2840
2841/*
2842 * Invoked in log mutex context, or be sure there is no other task which
2843 * can access the list.
2844 */
2845static inline void btrfs_remove_all_log_ctxs(struct btrfs_root *root,
2846 int index, int error)
2847{
2848 struct btrfs_log_ctx *ctx;
Chris Mason570dd452016-10-27 10:42:20 -07002849 struct btrfs_log_ctx *safe;
Miao Xie8b050d32014-02-20 18:08:58 +08002850
Chris Mason570dd452016-10-27 10:42:20 -07002851 list_for_each_entry_safe(ctx, safe, &root->log_ctxs[index], list) {
2852 list_del_init(&ctx->list);
Miao Xie8b050d32014-02-20 18:08:58 +08002853 ctx->log_ret = error;
Chris Mason570dd452016-10-27 10:42:20 -07002854 }
Miao Xie8b050d32014-02-20 18:08:58 +08002855
2856 INIT_LIST_HEAD(&root->log_ctxs[index]);
2857}
2858
Chris Masone02119d2008-09-05 16:13:11 -04002859/*
2860 * btrfs_sync_log does sends a given tree log down to the disk and
2861 * updates the super blocks to record it. When this call is done,
Chris Mason12fcfd22009-03-24 10:24:20 -04002862 * you know that any inodes previously logged are safely on disk only
2863 * if it returns 0.
2864 *
2865 * Any other return value means you need to call btrfs_commit_transaction.
2866 * Some of the edge cases for fsyncing directories that have had unlinks
2867 * or renames done in the past mean that sometimes the only safe
2868 * fsync is to commit the whole FS. When btrfs_sync_log returns -EAGAIN,
2869 * that has happened.
Chris Masone02119d2008-09-05 16:13:11 -04002870 */
2871int btrfs_sync_log(struct btrfs_trans_handle *trans,
Miao Xie8b050d32014-02-20 18:08:58 +08002872 struct btrfs_root *root, struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -04002873{
Yan Zheng7237f182009-01-21 12:54:03 -05002874 int index1;
2875 int index2;
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002876 int mark;
Chris Masone02119d2008-09-05 16:13:11 -04002877 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002878 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04002879 struct btrfs_root *log = root->log_root;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002880 struct btrfs_root *log_root_tree = fs_info->log_root_tree;
Miao Xiebb14a592014-02-20 18:08:56 +08002881 int log_transid = 0;
Miao Xie8b050d32014-02-20 18:08:58 +08002882 struct btrfs_log_ctx root_log_ctx;
Miao Xiec6adc9c2013-05-28 10:05:39 +00002883 struct blk_plug plug;
Chris Masone02119d2008-09-05 16:13:11 -04002884
Yan Zheng7237f182009-01-21 12:54:03 -05002885 mutex_lock(&root->log_mutex);
Miao Xied1433de2014-02-20 18:08:59 +08002886 log_transid = ctx->log_transid;
2887 if (root->log_transid_committed >= log_transid) {
Yan Zheng7237f182009-01-21 12:54:03 -05002888 mutex_unlock(&root->log_mutex);
Miao Xie8b050d32014-02-20 18:08:58 +08002889 return ctx->log_ret;
Chris Masone02119d2008-09-05 16:13:11 -04002890 }
Miao Xied1433de2014-02-20 18:08:59 +08002891
2892 index1 = log_transid % 2;
2893 if (atomic_read(&root->log_commit[index1])) {
Zhaolei60d53eb2015-08-17 18:44:46 +08002894 wait_log_commit(root, log_transid);
Miao Xied1433de2014-02-20 18:08:59 +08002895 mutex_unlock(&root->log_mutex);
2896 return ctx->log_ret;
2897 }
2898 ASSERT(log_transid == root->log_transid);
Yan Zheng7237f182009-01-21 12:54:03 -05002899 atomic_set(&root->log_commit[index1], 1);
2900
2901 /* wait for previous tree log sync to complete */
2902 if (atomic_read(&root->log_commit[(index1 + 1) % 2]))
Zhaolei60d53eb2015-08-17 18:44:46 +08002903 wait_log_commit(root, log_transid - 1);
Miao Xie48cab2e2014-02-20 18:08:52 +08002904
Yan, Zheng86df7eb2009-10-14 09:24:59 -04002905 while (1) {
Miao Xie2ecb7922012-09-06 04:04:27 -06002906 int batch = atomic_read(&root->log_batch);
Chris Masoncd354ad2011-10-20 15:45:37 -04002907 /* when we're on an ssd, just kick the log commit out */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002908 if (!btrfs_test_opt(fs_info, SSD) &&
Miao Xie27cdeb72014-04-02 19:51:05 +08002909 test_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state)) {
Yan, Zheng86df7eb2009-10-14 09:24:59 -04002910 mutex_unlock(&root->log_mutex);
2911 schedule_timeout_uninterruptible(1);
2912 mutex_lock(&root->log_mutex);
2913 }
Zhaolei60d53eb2015-08-17 18:44:46 +08002914 wait_for_writer(root);
Miao Xie2ecb7922012-09-06 04:04:27 -06002915 if (batch == atomic_read(&root->log_batch))
Chris Masone02119d2008-09-05 16:13:11 -04002916 break;
2917 }
Chris Masond0c803c2008-09-11 16:17:57 -04002918
Chris Mason12fcfd22009-03-24 10:24:20 -04002919 /* bail out if we need to do a full commit */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002920 if (btrfs_need_log_full_commit(fs_info, trans)) {
Chris Mason12fcfd22009-03-24 10:24:20 -04002921 ret = -EAGAIN;
Josef Bacik2ab28f32012-10-12 15:27:49 -04002922 btrfs_free_logged_extents(log, log_transid);
Chris Mason12fcfd22009-03-24 10:24:20 -04002923 mutex_unlock(&root->log_mutex);
2924 goto out;
2925 }
2926
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002927 if (log_transid % 2 == 0)
2928 mark = EXTENT_DIRTY;
2929 else
2930 mark = EXTENT_NEW;
2931
Chris Mason690587d2009-10-13 13:29:19 -04002932 /* we start IO on all the marked extents here, but we don't actually
2933 * wait for them until later.
2934 */
Miao Xiec6adc9c2013-05-28 10:05:39 +00002935 blk_start_plug(&plug);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002936 ret = btrfs_write_marked_extents(fs_info, &log->dirty_log_pages, mark);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002937 if (ret) {
Miao Xiec6adc9c2013-05-28 10:05:39 +00002938 blk_finish_plug(&plug);
Jeff Mahoney66642832016-06-10 18:19:25 -04002939 btrfs_abort_transaction(trans, ret);
Josef Bacik2ab28f32012-10-12 15:27:49 -04002940 btrfs_free_logged_extents(log, log_transid);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002941 btrfs_set_log_full_commit(fs_info, trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002942 mutex_unlock(&root->log_mutex);
2943 goto out;
2944 }
Yan Zheng7237f182009-01-21 12:54:03 -05002945
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002946 btrfs_set_root_node(&log->root_item, log->node);
Yan Zheng7237f182009-01-21 12:54:03 -05002947
Yan Zheng7237f182009-01-21 12:54:03 -05002948 root->log_transid++;
2949 log->log_transid = root->log_transid;
Josef Bacikff782e02009-10-08 15:30:04 -04002950 root->log_start_pid = 0;
Yan Zheng7237f182009-01-21 12:54:03 -05002951 /*
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002952 * IO has been started, blocks of the log tree have WRITTEN flag set
2953 * in their headers. new modifications of the log will be written to
2954 * new positions. so it's safe to allow log writers to go in.
Yan Zheng7237f182009-01-21 12:54:03 -05002955 */
2956 mutex_unlock(&root->log_mutex);
2957
Filipe Manana28a23592016-08-23 21:13:51 +01002958 btrfs_init_log_ctx(&root_log_ctx, NULL);
Miao Xied1433de2014-02-20 18:08:59 +08002959
Yan Zheng7237f182009-01-21 12:54:03 -05002960 mutex_lock(&log_root_tree->log_mutex);
Miao Xie2ecb7922012-09-06 04:04:27 -06002961 atomic_inc(&log_root_tree->log_batch);
Yan Zheng7237f182009-01-21 12:54:03 -05002962 atomic_inc(&log_root_tree->log_writers);
Miao Xied1433de2014-02-20 18:08:59 +08002963
2964 index2 = log_root_tree->log_transid % 2;
2965 list_add_tail(&root_log_ctx.list, &log_root_tree->log_ctxs[index2]);
2966 root_log_ctx.log_transid = log_root_tree->log_transid;
2967
Yan Zheng7237f182009-01-21 12:54:03 -05002968 mutex_unlock(&log_root_tree->log_mutex);
2969
2970 ret = update_log_root(trans, log);
Yan Zheng7237f182009-01-21 12:54:03 -05002971
2972 mutex_lock(&log_root_tree->log_mutex);
2973 if (atomic_dec_and_test(&log_root_tree->log_writers)) {
David Sterba779adf02015-02-16 19:39:00 +01002974 /*
2975 * Implicit memory barrier after atomic_dec_and_test
2976 */
Yan Zheng7237f182009-01-21 12:54:03 -05002977 if (waitqueue_active(&log_root_tree->log_writer_wait))
2978 wake_up(&log_root_tree->log_writer_wait);
2979 }
2980
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002981 if (ret) {
Miao Xied1433de2014-02-20 18:08:59 +08002982 if (!list_empty(&root_log_ctx.list))
2983 list_del_init(&root_log_ctx.list);
2984
Miao Xiec6adc9c2013-05-28 10:05:39 +00002985 blk_finish_plug(&plug);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002986 btrfs_set_log_full_commit(fs_info, trans);
Miao Xie995946d2014-04-02 19:51:06 +08002987
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002988 if (ret != -ENOSPC) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002989 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002990 mutex_unlock(&log_root_tree->log_mutex);
2991 goto out;
2992 }
Jeff Mahoneybf89d382016-09-09 20:42:44 -04002993 btrfs_wait_tree_log_extents(log, mark);
Josef Bacik2ab28f32012-10-12 15:27:49 -04002994 btrfs_free_logged_extents(log, log_transid);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002995 mutex_unlock(&log_root_tree->log_mutex);
2996 ret = -EAGAIN;
2997 goto out;
2998 }
2999
Miao Xied1433de2014-02-20 18:08:59 +08003000 if (log_root_tree->log_transid_committed >= root_log_ctx.log_transid) {
Forrest Liu3da5ab52015-01-30 19:42:12 +08003001 blk_finish_plug(&plug);
Chris Masoncbd60aa2016-09-06 05:37:40 -07003002 list_del_init(&root_log_ctx.list);
Miao Xied1433de2014-02-20 18:08:59 +08003003 mutex_unlock(&log_root_tree->log_mutex);
3004 ret = root_log_ctx.log_ret;
3005 goto out;
3006 }
Miao Xie8b050d32014-02-20 18:08:58 +08003007
Miao Xied1433de2014-02-20 18:08:59 +08003008 index2 = root_log_ctx.log_transid % 2;
Yan Zheng7237f182009-01-21 12:54:03 -05003009 if (atomic_read(&log_root_tree->log_commit[index2])) {
Miao Xiec6adc9c2013-05-28 10:05:39 +00003010 blk_finish_plug(&plug);
Jeff Mahoneybf89d382016-09-09 20:42:44 -04003011 ret = btrfs_wait_tree_log_extents(log, mark);
Josef Bacik50d9aa92014-11-21 14:52:38 -05003012 btrfs_wait_logged_extents(trans, log, log_transid);
Zhaolei60d53eb2015-08-17 18:44:46 +08003013 wait_log_commit(log_root_tree,
Miao Xied1433de2014-02-20 18:08:59 +08003014 root_log_ctx.log_transid);
Yan Zheng7237f182009-01-21 12:54:03 -05003015 mutex_unlock(&log_root_tree->log_mutex);
Filipe Manana5ab5e442014-11-13 16:59:53 +00003016 if (!ret)
3017 ret = root_log_ctx.log_ret;
Yan Zheng7237f182009-01-21 12:54:03 -05003018 goto out;
3019 }
Miao Xied1433de2014-02-20 18:08:59 +08003020 ASSERT(root_log_ctx.log_transid == log_root_tree->log_transid);
Yan Zheng7237f182009-01-21 12:54:03 -05003021 atomic_set(&log_root_tree->log_commit[index2], 1);
3022
Chris Mason12fcfd22009-03-24 10:24:20 -04003023 if (atomic_read(&log_root_tree->log_commit[(index2 + 1) % 2])) {
Zhaolei60d53eb2015-08-17 18:44:46 +08003024 wait_log_commit(log_root_tree,
Miao Xied1433de2014-02-20 18:08:59 +08003025 root_log_ctx.log_transid - 1);
Chris Mason12fcfd22009-03-24 10:24:20 -04003026 }
Yan Zheng7237f182009-01-21 12:54:03 -05003027
Zhaolei60d53eb2015-08-17 18:44:46 +08003028 wait_for_writer(log_root_tree);
Chris Mason12fcfd22009-03-24 10:24:20 -04003029
3030 /*
3031 * now that we've moved on to the tree of log tree roots,
3032 * check the full commit flag again
3033 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003034 if (btrfs_need_log_full_commit(fs_info, trans)) {
Miao Xiec6adc9c2013-05-28 10:05:39 +00003035 blk_finish_plug(&plug);
Jeff Mahoneybf89d382016-09-09 20:42:44 -04003036 btrfs_wait_tree_log_extents(log, mark);
Josef Bacik2ab28f32012-10-12 15:27:49 -04003037 btrfs_free_logged_extents(log, log_transid);
Chris Mason12fcfd22009-03-24 10:24:20 -04003038 mutex_unlock(&log_root_tree->log_mutex);
3039 ret = -EAGAIN;
3040 goto out_wake_log_root;
3041 }
Yan Zheng7237f182009-01-21 12:54:03 -05003042
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003043 ret = btrfs_write_marked_extents(fs_info,
Miao Xiec6adc9c2013-05-28 10:05:39 +00003044 &log_root_tree->dirty_log_pages,
3045 EXTENT_DIRTY | EXTENT_NEW);
3046 blk_finish_plug(&plug);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003047 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003048 btrfs_set_log_full_commit(fs_info, trans);
Jeff Mahoney66642832016-06-10 18:19:25 -04003049 btrfs_abort_transaction(trans, ret);
Josef Bacik2ab28f32012-10-12 15:27:49 -04003050 btrfs_free_logged_extents(log, log_transid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003051 mutex_unlock(&log_root_tree->log_mutex);
3052 goto out_wake_log_root;
3053 }
Jeff Mahoneybf89d382016-09-09 20:42:44 -04003054 ret = btrfs_wait_tree_log_extents(log, mark);
Filipe Manana5ab5e442014-11-13 16:59:53 +00003055 if (!ret)
Jeff Mahoneybf89d382016-09-09 20:42:44 -04003056 ret = btrfs_wait_tree_log_extents(log_root_tree,
3057 EXTENT_NEW | EXTENT_DIRTY);
Filipe Manana5ab5e442014-11-13 16:59:53 +00003058 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003059 btrfs_set_log_full_commit(fs_info, trans);
Filipe Manana5ab5e442014-11-13 16:59:53 +00003060 btrfs_free_logged_extents(log, log_transid);
3061 mutex_unlock(&log_root_tree->log_mutex);
3062 goto out_wake_log_root;
3063 }
Josef Bacik50d9aa92014-11-21 14:52:38 -05003064 btrfs_wait_logged_extents(trans, log, log_transid);
Chris Masone02119d2008-09-05 16:13:11 -04003065
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003066 btrfs_set_super_log_root(fs_info->super_for_commit,
3067 log_root_tree->node->start);
3068 btrfs_set_super_log_root_level(fs_info->super_for_commit,
3069 btrfs_header_level(log_root_tree->node));
Chris Masone02119d2008-09-05 16:13:11 -04003070
Yan Zheng7237f182009-01-21 12:54:03 -05003071 log_root_tree->log_transid++;
Yan Zheng7237f182009-01-21 12:54:03 -05003072 mutex_unlock(&log_root_tree->log_mutex);
3073
3074 /*
3075 * nobody else is going to jump in and write the the ctree
3076 * super here because the log_commit atomic below is protecting
3077 * us. We must be called with a transaction handle pinning
3078 * the running transaction open, so a full commit can't hop
3079 * in and cause problems either.
3080 */
David Sterbaeece6a92017-02-10 19:04:32 +01003081 ret = write_all_supers(fs_info, 1);
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003082 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003083 btrfs_set_log_full_commit(fs_info, trans);
Jeff Mahoney66642832016-06-10 18:19:25 -04003084 btrfs_abort_transaction(trans, ret);
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003085 goto out_wake_log_root;
3086 }
Yan Zheng7237f182009-01-21 12:54:03 -05003087
Chris Mason257c62e2009-10-13 13:21:08 -04003088 mutex_lock(&root->log_mutex);
3089 if (root->last_log_commit < log_transid)
3090 root->last_log_commit = log_transid;
3091 mutex_unlock(&root->log_mutex);
3092
Chris Mason12fcfd22009-03-24 10:24:20 -04003093out_wake_log_root:
Chris Mason570dd452016-10-27 10:42:20 -07003094 mutex_lock(&log_root_tree->log_mutex);
Miao Xie8b050d32014-02-20 18:08:58 +08003095 btrfs_remove_all_log_ctxs(log_root_tree, index2, ret);
3096
Miao Xied1433de2014-02-20 18:08:59 +08003097 log_root_tree->log_transid_committed++;
Yan Zheng7237f182009-01-21 12:54:03 -05003098 atomic_set(&log_root_tree->log_commit[index2], 0);
Miao Xied1433de2014-02-20 18:08:59 +08003099 mutex_unlock(&log_root_tree->log_mutex);
3100
David Sterba33a9eca2015-10-10 18:35:10 +02003101 /*
3102 * The barrier before waitqueue_active is implied by mutex_unlock
3103 */
Yan Zheng7237f182009-01-21 12:54:03 -05003104 if (waitqueue_active(&log_root_tree->log_commit_wait[index2]))
3105 wake_up(&log_root_tree->log_commit_wait[index2]);
Chris Masone02119d2008-09-05 16:13:11 -04003106out:
Miao Xied1433de2014-02-20 18:08:59 +08003107 mutex_lock(&root->log_mutex);
Chris Mason570dd452016-10-27 10:42:20 -07003108 btrfs_remove_all_log_ctxs(root, index1, ret);
Miao Xied1433de2014-02-20 18:08:59 +08003109 root->log_transid_committed++;
Yan Zheng7237f182009-01-21 12:54:03 -05003110 atomic_set(&root->log_commit[index1], 0);
Miao Xied1433de2014-02-20 18:08:59 +08003111 mutex_unlock(&root->log_mutex);
Miao Xie8b050d32014-02-20 18:08:58 +08003112
David Sterba33a9eca2015-10-10 18:35:10 +02003113 /*
3114 * The barrier before waitqueue_active is implied by mutex_unlock
3115 */
Yan Zheng7237f182009-01-21 12:54:03 -05003116 if (waitqueue_active(&root->log_commit_wait[index1]))
3117 wake_up(&root->log_commit_wait[index1]);
Chris Masonb31eabd2011-01-31 16:48:24 -05003118 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04003119}
3120
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003121static void free_log_tree(struct btrfs_trans_handle *trans,
3122 struct btrfs_root *log)
Chris Masone02119d2008-09-05 16:13:11 -04003123{
3124 int ret;
Chris Masond0c803c2008-09-11 16:17:57 -04003125 u64 start;
3126 u64 end;
Chris Masone02119d2008-09-05 16:13:11 -04003127 struct walk_control wc = {
3128 .free = 1,
3129 .process_func = process_one_buffer
3130 };
3131
Josef Bacik681ae502013-10-07 15:11:00 -04003132 ret = walk_log_tree(trans, log, &wc);
3133 /* I don't think this can happen but just in case */
3134 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04003135 btrfs_abort_transaction(trans, ret);
Chris Masone02119d2008-09-05 16:13:11 -04003136
Chris Masond3977122009-01-05 21:25:51 -05003137 while (1) {
Chris Masond0c803c2008-09-11 16:17:57 -04003138 ret = find_first_extent_bit(&log->dirty_log_pages,
Liu Bo55237a52018-01-25 11:02:52 -07003139 0, &start, &end,
3140 EXTENT_DIRTY | EXTENT_NEW | EXTENT_NEED_WAIT,
Josef Bacike6138872012-09-27 17:07:30 -04003141 NULL);
Chris Masond0c803c2008-09-11 16:17:57 -04003142 if (ret)
3143 break;
3144
Yan, Zheng8cef4e12009-11-12 09:33:26 +00003145 clear_extent_bits(&log->dirty_log_pages, start, end,
Liu Bo55237a52018-01-25 11:02:52 -07003146 EXTENT_DIRTY | EXTENT_NEW | EXTENT_NEED_WAIT);
Chris Masond0c803c2008-09-11 16:17:57 -04003147 }
3148
Josef Bacik2ab28f32012-10-12 15:27:49 -04003149 /*
3150 * We may have short-circuited the log tree with the full commit logic
3151 * and left ordered extents on our list, so clear these out to keep us
3152 * from leaking inodes and memory.
3153 */
3154 btrfs_free_logged_extents(log, 0);
3155 btrfs_free_logged_extents(log, 1);
3156
Yan Zheng7237f182009-01-21 12:54:03 -05003157 free_extent_buffer(log->node);
3158 kfree(log);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003159}
3160
3161/*
3162 * free all the extents used by the tree log. This should be called
3163 * at commit time of the full transaction
3164 */
3165int btrfs_free_log(struct btrfs_trans_handle *trans, struct btrfs_root *root)
3166{
3167 if (root->log_root) {
3168 free_log_tree(trans, root->log_root);
3169 root->log_root = NULL;
3170 }
3171 return 0;
3172}
3173
3174int btrfs_free_log_root_tree(struct btrfs_trans_handle *trans,
3175 struct btrfs_fs_info *fs_info)
3176{
3177 if (fs_info->log_root_tree) {
3178 free_log_tree(trans, fs_info->log_root_tree);
3179 fs_info->log_root_tree = NULL;
3180 }
Chris Masone02119d2008-09-05 16:13:11 -04003181 return 0;
3182}
3183
3184/*
Chris Masone02119d2008-09-05 16:13:11 -04003185 * If both a file and directory are logged, and unlinks or renames are
3186 * mixed in, we have a few interesting corners:
3187 *
3188 * create file X in dir Y
3189 * link file X to X.link in dir Y
3190 * fsync file X
3191 * unlink file X but leave X.link
3192 * fsync dir Y
3193 *
3194 * After a crash we would expect only X.link to exist. But file X
3195 * didn't get fsync'd again so the log has back refs for X and X.link.
3196 *
3197 * We solve this by removing directory entries and inode backrefs from the
3198 * log when a file that was logged in the current transaction is
3199 * unlinked. Any later fsync will include the updated log entries, and
3200 * we'll be able to reconstruct the proper directory items from backrefs.
3201 *
3202 * This optimizations allows us to avoid relogging the entire inode
3203 * or the entire directory.
3204 */
3205int btrfs_del_dir_entries_in_log(struct btrfs_trans_handle *trans,
3206 struct btrfs_root *root,
3207 const char *name, int name_len,
Nikolay Borisov49f34d12017-01-18 00:31:32 +02003208 struct btrfs_inode *dir, u64 index)
Chris Masone02119d2008-09-05 16:13:11 -04003209{
3210 struct btrfs_root *log;
3211 struct btrfs_dir_item *di;
3212 struct btrfs_path *path;
3213 int ret;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003214 int err = 0;
Chris Masone02119d2008-09-05 16:13:11 -04003215 int bytes_del = 0;
Nikolay Borisov49f34d12017-01-18 00:31:32 +02003216 u64 dir_ino = btrfs_ino(dir);
Chris Masone02119d2008-09-05 16:13:11 -04003217
Nikolay Borisov49f34d12017-01-18 00:31:32 +02003218 if (dir->logged_trans < trans->transid)
Chris Mason3a5f1d42008-09-11 15:53:37 -04003219 return 0;
3220
Chris Masone02119d2008-09-05 16:13:11 -04003221 ret = join_running_log_trans(root);
3222 if (ret)
3223 return 0;
3224
Nikolay Borisov49f34d12017-01-18 00:31:32 +02003225 mutex_lock(&dir->log_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04003226
3227 log = root->log_root;
3228 path = btrfs_alloc_path();
Tsutomu Itoha62f44a2011-04-25 19:43:51 -04003229 if (!path) {
3230 err = -ENOMEM;
3231 goto out_unlock;
3232 }
liubo2a29edc2011-01-26 06:22:08 +00003233
Li Zefan33345d012011-04-20 10:31:50 +08003234 di = btrfs_lookup_dir_item(trans, log, path, dir_ino,
Chris Masone02119d2008-09-05 16:13:11 -04003235 name, name_len, -1);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003236 if (IS_ERR(di)) {
3237 err = PTR_ERR(di);
3238 goto fail;
3239 }
3240 if (di) {
Chris Masone02119d2008-09-05 16:13:11 -04003241 ret = btrfs_delete_one_dir_name(trans, log, path, di);
3242 bytes_del += name_len;
Josef Bacik36508602013-04-25 16:23:32 -04003243 if (ret) {
3244 err = ret;
3245 goto fail;
3246 }
Chris Masone02119d2008-09-05 16:13:11 -04003247 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003248 btrfs_release_path(path);
Li Zefan33345d012011-04-20 10:31:50 +08003249 di = btrfs_lookup_dir_index_item(trans, log, path, dir_ino,
Chris Masone02119d2008-09-05 16:13:11 -04003250 index, name, name_len, -1);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003251 if (IS_ERR(di)) {
3252 err = PTR_ERR(di);
3253 goto fail;
3254 }
3255 if (di) {
Chris Masone02119d2008-09-05 16:13:11 -04003256 ret = btrfs_delete_one_dir_name(trans, log, path, di);
3257 bytes_del += name_len;
Josef Bacik36508602013-04-25 16:23:32 -04003258 if (ret) {
3259 err = ret;
3260 goto fail;
3261 }
Chris Masone02119d2008-09-05 16:13:11 -04003262 }
3263
3264 /* update the directory size in the log to reflect the names
3265 * we have removed
3266 */
3267 if (bytes_del) {
3268 struct btrfs_key key;
3269
Li Zefan33345d012011-04-20 10:31:50 +08003270 key.objectid = dir_ino;
Chris Masone02119d2008-09-05 16:13:11 -04003271 key.offset = 0;
3272 key.type = BTRFS_INODE_ITEM_KEY;
David Sterbab3b4aa72011-04-21 01:20:15 +02003273 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003274
3275 ret = btrfs_search_slot(trans, log, &key, path, 0, 1);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003276 if (ret < 0) {
3277 err = ret;
3278 goto fail;
3279 }
Chris Masone02119d2008-09-05 16:13:11 -04003280 if (ret == 0) {
3281 struct btrfs_inode_item *item;
3282 u64 i_size;
3283
3284 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
3285 struct btrfs_inode_item);
3286 i_size = btrfs_inode_size(path->nodes[0], item);
3287 if (i_size > bytes_del)
3288 i_size -= bytes_del;
3289 else
3290 i_size = 0;
3291 btrfs_set_inode_size(path->nodes[0], item, i_size);
3292 btrfs_mark_buffer_dirty(path->nodes[0]);
3293 } else
3294 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02003295 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003296 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003297fail:
Chris Masone02119d2008-09-05 16:13:11 -04003298 btrfs_free_path(path);
Tsutomu Itoha62f44a2011-04-25 19:43:51 -04003299out_unlock:
Nikolay Borisov49f34d12017-01-18 00:31:32 +02003300 mutex_unlock(&dir->log_mutex);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003301 if (ret == -ENOSPC) {
Miao Xie995946d2014-04-02 19:51:06 +08003302 btrfs_set_log_full_commit(root->fs_info, trans);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003303 ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003304 } else if (ret < 0)
Jeff Mahoney66642832016-06-10 18:19:25 -04003305 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003306
Chris Mason12fcfd22009-03-24 10:24:20 -04003307 btrfs_end_log_trans(root);
Chris Masone02119d2008-09-05 16:13:11 -04003308
Andi Kleen411fc6b2010-10-29 15:14:31 -04003309 return err;
Chris Masone02119d2008-09-05 16:13:11 -04003310}
3311
3312/* see comments for btrfs_del_dir_entries_in_log */
3313int btrfs_del_inode_ref_in_log(struct btrfs_trans_handle *trans,
3314 struct btrfs_root *root,
3315 const char *name, int name_len,
Nikolay Borisova491abb2017-01-18 00:31:33 +02003316 struct btrfs_inode *inode, u64 dirid)
Chris Masone02119d2008-09-05 16:13:11 -04003317{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003318 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04003319 struct btrfs_root *log;
3320 u64 index;
3321 int ret;
3322
Nikolay Borisova491abb2017-01-18 00:31:33 +02003323 if (inode->logged_trans < trans->transid)
Chris Mason3a5f1d42008-09-11 15:53:37 -04003324 return 0;
3325
Chris Masone02119d2008-09-05 16:13:11 -04003326 ret = join_running_log_trans(root);
3327 if (ret)
3328 return 0;
3329 log = root->log_root;
Nikolay Borisova491abb2017-01-18 00:31:33 +02003330 mutex_lock(&inode->log_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04003331
Nikolay Borisova491abb2017-01-18 00:31:33 +02003332 ret = btrfs_del_inode_ref(trans, log, name, name_len, btrfs_ino(inode),
Chris Masone02119d2008-09-05 16:13:11 -04003333 dirid, &index);
Nikolay Borisova491abb2017-01-18 00:31:33 +02003334 mutex_unlock(&inode->log_mutex);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003335 if (ret == -ENOSPC) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003336 btrfs_set_log_full_commit(fs_info, trans);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003337 ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003338 } else if (ret < 0 && ret != -ENOENT)
Jeff Mahoney66642832016-06-10 18:19:25 -04003339 btrfs_abort_transaction(trans, ret);
Chris Mason12fcfd22009-03-24 10:24:20 -04003340 btrfs_end_log_trans(root);
Chris Masone02119d2008-09-05 16:13:11 -04003341
Chris Masone02119d2008-09-05 16:13:11 -04003342 return ret;
3343}
3344
3345/*
3346 * creates a range item in the log for 'dirid'. first_offset and
3347 * last_offset tell us which parts of the key space the log should
3348 * be considered authoritative for.
3349 */
3350static noinline int insert_dir_log_key(struct btrfs_trans_handle *trans,
3351 struct btrfs_root *log,
3352 struct btrfs_path *path,
3353 int key_type, u64 dirid,
3354 u64 first_offset, u64 last_offset)
3355{
3356 int ret;
3357 struct btrfs_key key;
3358 struct btrfs_dir_log_item *item;
3359
3360 key.objectid = dirid;
3361 key.offset = first_offset;
3362 if (key_type == BTRFS_DIR_ITEM_KEY)
3363 key.type = BTRFS_DIR_LOG_ITEM_KEY;
3364 else
3365 key.type = BTRFS_DIR_LOG_INDEX_KEY;
3366 ret = btrfs_insert_empty_item(trans, log, path, &key, sizeof(*item));
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003367 if (ret)
3368 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04003369
3370 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
3371 struct btrfs_dir_log_item);
3372 btrfs_set_dir_log_end(path->nodes[0], item, last_offset);
3373 btrfs_mark_buffer_dirty(path->nodes[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02003374 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003375 return 0;
3376}
3377
3378/*
3379 * log all the items included in the current transaction for a given
3380 * directory. This also creates the range items in the log tree required
3381 * to replay anything deleted before the fsync
3382 */
3383static noinline int log_dir_items(struct btrfs_trans_handle *trans,
Nikolay Borisov684a5772017-01-18 00:31:41 +02003384 struct btrfs_root *root, struct btrfs_inode *inode,
Chris Masone02119d2008-09-05 16:13:11 -04003385 struct btrfs_path *path,
3386 struct btrfs_path *dst_path, int key_type,
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00003387 struct btrfs_log_ctx *ctx,
Chris Masone02119d2008-09-05 16:13:11 -04003388 u64 min_offset, u64 *last_offset_ret)
3389{
3390 struct btrfs_key min_key;
Chris Masone02119d2008-09-05 16:13:11 -04003391 struct btrfs_root *log = root->log_root;
3392 struct extent_buffer *src;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003393 int err = 0;
Chris Masone02119d2008-09-05 16:13:11 -04003394 int ret;
3395 int i;
3396 int nritems;
3397 u64 first_offset = min_offset;
3398 u64 last_offset = (u64)-1;
Nikolay Borisov684a5772017-01-18 00:31:41 +02003399 u64 ino = btrfs_ino(inode);
Chris Masone02119d2008-09-05 16:13:11 -04003400
3401 log = root->log_root;
Chris Masone02119d2008-09-05 16:13:11 -04003402
Li Zefan33345d012011-04-20 10:31:50 +08003403 min_key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04003404 min_key.type = key_type;
3405 min_key.offset = min_offset;
3406
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01003407 ret = btrfs_search_forward(root, &min_key, path, trans->transid);
Chris Masone02119d2008-09-05 16:13:11 -04003408
3409 /*
3410 * we didn't find anything from this transaction, see if there
3411 * is anything at all
3412 */
Li Zefan33345d012011-04-20 10:31:50 +08003413 if (ret != 0 || min_key.objectid != ino || min_key.type != key_type) {
3414 min_key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04003415 min_key.type = key_type;
3416 min_key.offset = (u64)-1;
David Sterbab3b4aa72011-04-21 01:20:15 +02003417 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003418 ret = btrfs_search_slot(NULL, root, &min_key, path, 0, 0);
3419 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02003420 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003421 return ret;
3422 }
Li Zefan33345d012011-04-20 10:31:50 +08003423 ret = btrfs_previous_item(root, path, ino, key_type);
Chris Masone02119d2008-09-05 16:13:11 -04003424
3425 /* if ret == 0 there are items for this type,
3426 * create a range to tell us the last key of this type.
3427 * otherwise, there are no items in this directory after
3428 * *min_offset, and we create a range to indicate that.
3429 */
3430 if (ret == 0) {
3431 struct btrfs_key tmp;
3432 btrfs_item_key_to_cpu(path->nodes[0], &tmp,
3433 path->slots[0]);
Chris Masond3977122009-01-05 21:25:51 -05003434 if (key_type == tmp.type)
Chris Masone02119d2008-09-05 16:13:11 -04003435 first_offset = max(min_offset, tmp.offset) + 1;
Chris Masone02119d2008-09-05 16:13:11 -04003436 }
3437 goto done;
3438 }
3439
3440 /* go backward to find any previous key */
Li Zefan33345d012011-04-20 10:31:50 +08003441 ret = btrfs_previous_item(root, path, ino, key_type);
Chris Masone02119d2008-09-05 16:13:11 -04003442 if (ret == 0) {
3443 struct btrfs_key tmp;
3444 btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]);
3445 if (key_type == tmp.type) {
3446 first_offset = tmp.offset;
3447 ret = overwrite_item(trans, log, dst_path,
3448 path->nodes[0], path->slots[0],
3449 &tmp);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003450 if (ret) {
3451 err = ret;
3452 goto done;
3453 }
Chris Masone02119d2008-09-05 16:13:11 -04003454 }
3455 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003456 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003457
3458 /* find the first key from this transaction again */
3459 ret = btrfs_search_slot(NULL, root, &min_key, path, 0, 0);
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303460 if (WARN_ON(ret != 0))
Chris Masone02119d2008-09-05 16:13:11 -04003461 goto done;
Chris Masone02119d2008-09-05 16:13:11 -04003462
3463 /*
3464 * we have a block from this transaction, log every item in it
3465 * from our directory
3466 */
Chris Masond3977122009-01-05 21:25:51 -05003467 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04003468 struct btrfs_key tmp;
3469 src = path->nodes[0];
3470 nritems = btrfs_header_nritems(src);
3471 for (i = path->slots[0]; i < nritems; i++) {
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00003472 struct btrfs_dir_item *di;
3473
Chris Masone02119d2008-09-05 16:13:11 -04003474 btrfs_item_key_to_cpu(src, &min_key, i);
3475
Li Zefan33345d012011-04-20 10:31:50 +08003476 if (min_key.objectid != ino || min_key.type != key_type)
Chris Masone02119d2008-09-05 16:13:11 -04003477 goto done;
3478 ret = overwrite_item(trans, log, dst_path, src, i,
3479 &min_key);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003480 if (ret) {
3481 err = ret;
3482 goto done;
3483 }
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00003484
3485 /*
3486 * We must make sure that when we log a directory entry,
3487 * the corresponding inode, after log replay, has a
3488 * matching link count. For example:
3489 *
3490 * touch foo
3491 * mkdir mydir
3492 * sync
3493 * ln foo mydir/bar
3494 * xfs_io -c "fsync" mydir
3495 * <crash>
3496 * <mount fs and log replay>
3497 *
3498 * Would result in a fsync log that when replayed, our
3499 * file inode would have a link count of 1, but we get
3500 * two directory entries pointing to the same inode.
3501 * After removing one of the names, it would not be
3502 * possible to remove the other name, which resulted
3503 * always in stale file handle errors, and would not
3504 * be possible to rmdir the parent directory, since
3505 * its i_size could never decrement to the value
3506 * BTRFS_EMPTY_DIR_SIZE, resulting in -ENOTEMPTY errors.
3507 */
3508 di = btrfs_item_ptr(src, i, struct btrfs_dir_item);
3509 btrfs_dir_item_key_to_cpu(src, di, &tmp);
3510 if (ctx &&
3511 (btrfs_dir_transid(src, di) == trans->transid ||
3512 btrfs_dir_type(src, di) == BTRFS_FT_DIR) &&
3513 tmp.type != BTRFS_ROOT_ITEM_KEY)
3514 ctx->log_new_dentries = true;
Chris Masone02119d2008-09-05 16:13:11 -04003515 }
3516 path->slots[0] = nritems;
3517
3518 /*
3519 * look ahead to the next item and see if it is also
3520 * from this directory and from this transaction
3521 */
3522 ret = btrfs_next_leaf(root, path);
Liu Bo80c0b422018-04-03 01:59:47 +08003523 if (ret) {
3524 if (ret == 1)
3525 last_offset = (u64)-1;
3526 else
3527 err = ret;
Chris Masone02119d2008-09-05 16:13:11 -04003528 goto done;
3529 }
3530 btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]);
Li Zefan33345d012011-04-20 10:31:50 +08003531 if (tmp.objectid != ino || tmp.type != key_type) {
Chris Masone02119d2008-09-05 16:13:11 -04003532 last_offset = (u64)-1;
3533 goto done;
3534 }
3535 if (btrfs_header_generation(path->nodes[0]) != trans->transid) {
3536 ret = overwrite_item(trans, log, dst_path,
3537 path->nodes[0], path->slots[0],
3538 &tmp);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003539 if (ret)
3540 err = ret;
3541 else
3542 last_offset = tmp.offset;
Chris Masone02119d2008-09-05 16:13:11 -04003543 goto done;
3544 }
3545 }
3546done:
David Sterbab3b4aa72011-04-21 01:20:15 +02003547 btrfs_release_path(path);
3548 btrfs_release_path(dst_path);
Chris Masone02119d2008-09-05 16:13:11 -04003549
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003550 if (err == 0) {
3551 *last_offset_ret = last_offset;
3552 /*
3553 * insert the log range keys to indicate where the log
3554 * is valid
3555 */
3556 ret = insert_dir_log_key(trans, log, path, key_type,
Li Zefan33345d012011-04-20 10:31:50 +08003557 ino, first_offset, last_offset);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003558 if (ret)
3559 err = ret;
3560 }
3561 return err;
Chris Masone02119d2008-09-05 16:13:11 -04003562}
3563
3564/*
3565 * logging directories is very similar to logging inodes, We find all the items
3566 * from the current transaction and write them to the log.
3567 *
3568 * The recovery code scans the directory in the subvolume, and if it finds a
3569 * key in the range logged that is not present in the log tree, then it means
3570 * that dir entry was unlinked during the transaction.
3571 *
3572 * In order for that scan to work, we must include one key smaller than
3573 * the smallest logged by this transaction and one key larger than the largest
3574 * key logged by this transaction.
3575 */
3576static noinline int log_directory_changes(struct btrfs_trans_handle *trans,
Nikolay Borisovdbf39ea2017-01-18 00:31:42 +02003577 struct btrfs_root *root, struct btrfs_inode *inode,
Chris Masone02119d2008-09-05 16:13:11 -04003578 struct btrfs_path *path,
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00003579 struct btrfs_path *dst_path,
3580 struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -04003581{
3582 u64 min_key;
3583 u64 max_key;
3584 int ret;
3585 int key_type = BTRFS_DIR_ITEM_KEY;
3586
3587again:
3588 min_key = 0;
3589 max_key = 0;
Chris Masond3977122009-01-05 21:25:51 -05003590 while (1) {
Nikolay Borisovdbf39ea2017-01-18 00:31:42 +02003591 ret = log_dir_items(trans, root, inode, path, dst_path, key_type,
3592 ctx, min_key, &max_key);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003593 if (ret)
3594 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04003595 if (max_key == (u64)-1)
3596 break;
3597 min_key = max_key + 1;
3598 }
3599
3600 if (key_type == BTRFS_DIR_ITEM_KEY) {
3601 key_type = BTRFS_DIR_INDEX_KEY;
3602 goto again;
3603 }
3604 return 0;
3605}
3606
3607/*
3608 * a helper function to drop items from the log before we relog an
3609 * inode. max_key_type indicates the highest item type to remove.
3610 * This cannot be run for file data extents because it does not
3611 * free the extents they point to.
3612 */
3613static int drop_objectid_items(struct btrfs_trans_handle *trans,
3614 struct btrfs_root *log,
3615 struct btrfs_path *path,
3616 u64 objectid, int max_key_type)
3617{
3618 int ret;
3619 struct btrfs_key key;
3620 struct btrfs_key found_key;
Josef Bacik18ec90d2012-09-28 11:56:28 -04003621 int start_slot;
Chris Masone02119d2008-09-05 16:13:11 -04003622
3623 key.objectid = objectid;
3624 key.type = max_key_type;
3625 key.offset = (u64)-1;
3626
Chris Masond3977122009-01-05 21:25:51 -05003627 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04003628 ret = btrfs_search_slot(trans, log, &key, path, -1, 1);
Josef Bacik36508602013-04-25 16:23:32 -04003629 BUG_ON(ret == 0); /* Logic error */
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003630 if (ret < 0)
Chris Masone02119d2008-09-05 16:13:11 -04003631 break;
3632
3633 if (path->slots[0] == 0)
3634 break;
3635
3636 path->slots[0]--;
3637 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
3638 path->slots[0]);
3639
3640 if (found_key.objectid != objectid)
3641 break;
3642
Josef Bacik18ec90d2012-09-28 11:56:28 -04003643 found_key.offset = 0;
3644 found_key.type = 0;
3645 ret = btrfs_bin_search(path->nodes[0], &found_key, 0,
3646 &start_slot);
3647
3648 ret = btrfs_del_items(trans, log, path, start_slot,
3649 path->slots[0] - start_slot + 1);
3650 /*
3651 * If start slot isn't 0 then we don't need to re-search, we've
3652 * found the last guy with the objectid in this tree.
3653 */
3654 if (ret || start_slot != 0)
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00003655 break;
David Sterbab3b4aa72011-04-21 01:20:15 +02003656 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003657 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003658 btrfs_release_path(path);
Josef Bacik5bdbeb22012-05-29 16:59:49 -04003659 if (ret > 0)
3660 ret = 0;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003661 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04003662}
3663
Josef Bacik94edf4a2012-09-25 14:56:25 -04003664static void fill_inode_item(struct btrfs_trans_handle *trans,
3665 struct extent_buffer *leaf,
3666 struct btrfs_inode_item *item,
Filipe Manana1a4bcf42015-02-13 12:30:56 +00003667 struct inode *inode, int log_inode_only,
3668 u64 logged_isize)
Josef Bacik94edf4a2012-09-25 14:56:25 -04003669{
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003670 struct btrfs_map_token token;
Josef Bacik94edf4a2012-09-25 14:56:25 -04003671
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003672 btrfs_init_map_token(&token);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003673
3674 if (log_inode_only) {
3675 /* set the generation to zero so the recover code
3676 * can tell the difference between an logging
3677 * just to say 'this inode exists' and a logging
3678 * to say 'update this inode with these values'
3679 */
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003680 btrfs_set_token_inode_generation(leaf, item, 0, &token);
Filipe Manana1a4bcf42015-02-13 12:30:56 +00003681 btrfs_set_token_inode_size(leaf, item, logged_isize, &token);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003682 } else {
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003683 btrfs_set_token_inode_generation(leaf, item,
3684 BTRFS_I(inode)->generation,
3685 &token);
3686 btrfs_set_token_inode_size(leaf, item, inode->i_size, &token);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003687 }
3688
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003689 btrfs_set_token_inode_uid(leaf, item, i_uid_read(inode), &token);
3690 btrfs_set_token_inode_gid(leaf, item, i_gid_read(inode), &token);
3691 btrfs_set_token_inode_mode(leaf, item, inode->i_mode, &token);
3692 btrfs_set_token_inode_nlink(leaf, item, inode->i_nlink, &token);
3693
David Sterbaa937b972014-12-12 17:39:12 +01003694 btrfs_set_token_timespec_sec(leaf, &item->atime,
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003695 inode->i_atime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003696 btrfs_set_token_timespec_nsec(leaf, &item->atime,
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003697 inode->i_atime.tv_nsec, &token);
3698
David Sterbaa937b972014-12-12 17:39:12 +01003699 btrfs_set_token_timespec_sec(leaf, &item->mtime,
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003700 inode->i_mtime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003701 btrfs_set_token_timespec_nsec(leaf, &item->mtime,
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003702 inode->i_mtime.tv_nsec, &token);
3703
David Sterbaa937b972014-12-12 17:39:12 +01003704 btrfs_set_token_timespec_sec(leaf, &item->ctime,
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003705 inode->i_ctime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003706 btrfs_set_token_timespec_nsec(leaf, &item->ctime,
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003707 inode->i_ctime.tv_nsec, &token);
3708
3709 btrfs_set_token_inode_nbytes(leaf, item, inode_get_bytes(inode),
3710 &token);
3711
Jeff Laytonc7f88c42017-12-11 06:35:12 -05003712 btrfs_set_token_inode_sequence(leaf, item,
3713 inode_peek_iversion(inode), &token);
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003714 btrfs_set_token_inode_transid(leaf, item, trans->transid, &token);
3715 btrfs_set_token_inode_rdev(leaf, item, inode->i_rdev, &token);
3716 btrfs_set_token_inode_flags(leaf, item, BTRFS_I(inode)->flags, &token);
3717 btrfs_set_token_inode_block_group(leaf, item, 0, &token);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003718}
3719
Josef Bacika95249b2012-10-11 16:17:34 -04003720static int log_inode_item(struct btrfs_trans_handle *trans,
3721 struct btrfs_root *log, struct btrfs_path *path,
Nikolay Borisov6d889a32017-01-18 00:31:47 +02003722 struct btrfs_inode *inode)
Josef Bacika95249b2012-10-11 16:17:34 -04003723{
3724 struct btrfs_inode_item *inode_item;
Josef Bacika95249b2012-10-11 16:17:34 -04003725 int ret;
3726
Filipe David Borba Mananaefd0c402013-10-07 21:20:44 +01003727 ret = btrfs_insert_empty_item(trans, log, path,
Nikolay Borisov6d889a32017-01-18 00:31:47 +02003728 &inode->location, sizeof(*inode_item));
Josef Bacika95249b2012-10-11 16:17:34 -04003729 if (ret && ret != -EEXIST)
3730 return ret;
3731 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
3732 struct btrfs_inode_item);
Nikolay Borisov6d889a32017-01-18 00:31:47 +02003733 fill_inode_item(trans, path->nodes[0], inode_item, &inode->vfs_inode,
3734 0, 0);
Josef Bacika95249b2012-10-11 16:17:34 -04003735 btrfs_release_path(path);
3736 return 0;
3737}
3738
Chris Mason31ff1cd2008-09-11 16:17:57 -04003739static noinline int copy_items(struct btrfs_trans_handle *trans,
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003740 struct btrfs_inode *inode,
Chris Mason31ff1cd2008-09-11 16:17:57 -04003741 struct btrfs_path *dst_path,
Josef Bacik16e75492013-10-22 12:18:51 -04003742 struct btrfs_path *src_path, u64 *last_extent,
Filipe Manana1a4bcf42015-02-13 12:30:56 +00003743 int start_slot, int nr, int inode_only,
3744 u64 logged_isize)
Chris Mason31ff1cd2008-09-11 16:17:57 -04003745{
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003746 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Chris Mason31ff1cd2008-09-11 16:17:57 -04003747 unsigned long src_offset;
3748 unsigned long dst_offset;
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003749 struct btrfs_root *log = inode->root->log_root;
Chris Mason31ff1cd2008-09-11 16:17:57 -04003750 struct btrfs_file_extent_item *extent;
3751 struct btrfs_inode_item *inode_item;
Josef Bacik16e75492013-10-22 12:18:51 -04003752 struct extent_buffer *src = src_path->nodes[0];
3753 struct btrfs_key first_key, last_key, key;
Chris Mason31ff1cd2008-09-11 16:17:57 -04003754 int ret;
3755 struct btrfs_key *ins_keys;
3756 u32 *ins_sizes;
3757 char *ins_data;
3758 int i;
Chris Masond20f7042008-12-08 16:58:54 -05003759 struct list_head ordered_sums;
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003760 int skip_csum = inode->flags & BTRFS_INODE_NODATASUM;
Josef Bacik16e75492013-10-22 12:18:51 -04003761 bool has_extents = false;
Filipe Manana74121f7c2014-08-07 12:00:44 +01003762 bool need_find_last_extent = true;
Josef Bacik16e75492013-10-22 12:18:51 -04003763 bool done = false;
Chris Masond20f7042008-12-08 16:58:54 -05003764
3765 INIT_LIST_HEAD(&ordered_sums);
Chris Mason31ff1cd2008-09-11 16:17:57 -04003766
3767 ins_data = kmalloc(nr * sizeof(struct btrfs_key) +
3768 nr * sizeof(u32), GFP_NOFS);
liubo2a29edc2011-01-26 06:22:08 +00003769 if (!ins_data)
3770 return -ENOMEM;
3771
Josef Bacik16e75492013-10-22 12:18:51 -04003772 first_key.objectid = (u64)-1;
3773
Chris Mason31ff1cd2008-09-11 16:17:57 -04003774 ins_sizes = (u32 *)ins_data;
3775 ins_keys = (struct btrfs_key *)(ins_data + nr * sizeof(u32));
3776
3777 for (i = 0; i < nr; i++) {
3778 ins_sizes[i] = btrfs_item_size_nr(src, i + start_slot);
3779 btrfs_item_key_to_cpu(src, ins_keys + i, i + start_slot);
3780 }
3781 ret = btrfs_insert_empty_items(trans, log, dst_path,
3782 ins_keys, ins_sizes, nr);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003783 if (ret) {
3784 kfree(ins_data);
3785 return ret;
3786 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04003787
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003788 for (i = 0; i < nr; i++, dst_path->slots[0]++) {
Chris Mason31ff1cd2008-09-11 16:17:57 -04003789 dst_offset = btrfs_item_ptr_offset(dst_path->nodes[0],
3790 dst_path->slots[0]);
3791
3792 src_offset = btrfs_item_ptr_offset(src, start_slot + i);
3793
Matthias Kaehlcke0dde10b2017-07-27 14:30:23 -07003794 if (i == nr - 1)
Josef Bacik16e75492013-10-22 12:18:51 -04003795 last_key = ins_keys[i];
3796
Josef Bacik94edf4a2012-09-25 14:56:25 -04003797 if (ins_keys[i].type == BTRFS_INODE_ITEM_KEY) {
Chris Mason31ff1cd2008-09-11 16:17:57 -04003798 inode_item = btrfs_item_ptr(dst_path->nodes[0],
3799 dst_path->slots[0],
3800 struct btrfs_inode_item);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003801 fill_inode_item(trans, dst_path->nodes[0], inode_item,
David Sterbaf85b7372017-01-20 14:54:07 +01003802 &inode->vfs_inode,
3803 inode_only == LOG_INODE_EXISTS,
Filipe Manana1a4bcf42015-02-13 12:30:56 +00003804 logged_isize);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003805 } else {
3806 copy_extent_buffer(dst_path->nodes[0], src, dst_offset,
3807 src_offset, ins_sizes[i]);
Chris Mason31ff1cd2008-09-11 16:17:57 -04003808 }
Josef Bacik94edf4a2012-09-25 14:56:25 -04003809
Josef Bacik16e75492013-10-22 12:18:51 -04003810 /*
3811 * We set need_find_last_extent here in case we know we were
3812 * processing other items and then walk into the first extent in
3813 * the inode. If we don't hit an extent then nothing changes,
3814 * we'll do the last search the next time around.
3815 */
3816 if (ins_keys[i].type == BTRFS_EXTENT_DATA_KEY) {
3817 has_extents = true;
Filipe Manana74121f7c2014-08-07 12:00:44 +01003818 if (first_key.objectid == (u64)-1)
Josef Bacik16e75492013-10-22 12:18:51 -04003819 first_key = ins_keys[i];
3820 } else {
3821 need_find_last_extent = false;
3822 }
3823
Chris Mason31ff1cd2008-09-11 16:17:57 -04003824 /* take a reference on file data extents so that truncates
3825 * or deletes of this inode don't have to relog the inode
3826 * again
3827 */
David Sterba962a2982014-06-04 18:41:45 +02003828 if (ins_keys[i].type == BTRFS_EXTENT_DATA_KEY &&
Liu Bod2794402012-08-29 01:07:56 -06003829 !skip_csum) {
Chris Mason31ff1cd2008-09-11 16:17:57 -04003830 int found_type;
3831 extent = btrfs_item_ptr(src, start_slot + i,
3832 struct btrfs_file_extent_item);
3833
liubo8e531cd2011-05-06 10:36:09 +08003834 if (btrfs_file_extent_generation(src, extent) < trans->transid)
3835 continue;
3836
Chris Mason31ff1cd2008-09-11 16:17:57 -04003837 found_type = btrfs_file_extent_type(src, extent);
Josef Bacik6f1fed72012-09-26 11:07:06 -04003838 if (found_type == BTRFS_FILE_EXTENT_REG) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003839 u64 ds, dl, cs, cl;
3840 ds = btrfs_file_extent_disk_bytenr(src,
3841 extent);
3842 /* ds == 0 is a hole */
3843 if (ds == 0)
3844 continue;
3845
3846 dl = btrfs_file_extent_disk_num_bytes(src,
3847 extent);
3848 cs = btrfs_file_extent_offset(src, extent);
3849 cl = btrfs_file_extent_num_bytes(src,
Joe Perchesa419aef2009-08-18 11:18:35 -07003850 extent);
Chris Mason580afd72008-12-08 19:15:39 -05003851 if (btrfs_file_extent_compression(src,
3852 extent)) {
3853 cs = 0;
3854 cl = dl;
3855 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003856
3857 ret = btrfs_lookup_csums_range(
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003858 fs_info->csum_root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003859 ds + cs, ds + cs + cl - 1,
Arne Jansena2de7332011-03-08 14:14:00 +01003860 &ordered_sums, 0);
Josef Bacik36508602013-04-25 16:23:32 -04003861 if (ret) {
3862 btrfs_release_path(dst_path);
3863 kfree(ins_data);
3864 return ret;
3865 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04003866 }
3867 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04003868 }
3869
3870 btrfs_mark_buffer_dirty(dst_path->nodes[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02003871 btrfs_release_path(dst_path);
Chris Mason31ff1cd2008-09-11 16:17:57 -04003872 kfree(ins_data);
Chris Masond20f7042008-12-08 16:58:54 -05003873
3874 /*
3875 * we have to do this after the loop above to avoid changing the
3876 * log tree while trying to change the log tree.
3877 */
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003878 ret = 0;
Chris Masond3977122009-01-05 21:25:51 -05003879 while (!list_empty(&ordered_sums)) {
Chris Masond20f7042008-12-08 16:58:54 -05003880 struct btrfs_ordered_sum *sums = list_entry(ordered_sums.next,
3881 struct btrfs_ordered_sum,
3882 list);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003883 if (!ret)
3884 ret = btrfs_csum_file_blocks(trans, log, sums);
Chris Masond20f7042008-12-08 16:58:54 -05003885 list_del(&sums->list);
3886 kfree(sums);
3887 }
Josef Bacik16e75492013-10-22 12:18:51 -04003888
3889 if (!has_extents)
3890 return ret;
3891
Filipe Manana74121f7c2014-08-07 12:00:44 +01003892 if (need_find_last_extent && *last_extent == first_key.offset) {
3893 /*
3894 * We don't have any leafs between our current one and the one
3895 * we processed before that can have file extent items for our
3896 * inode (and have a generation number smaller than our current
3897 * transaction id).
3898 */
3899 need_find_last_extent = false;
3900 }
3901
Josef Bacik16e75492013-10-22 12:18:51 -04003902 /*
3903 * Because we use btrfs_search_forward we could skip leaves that were
3904 * not modified and then assume *last_extent is valid when it really
3905 * isn't. So back up to the previous leaf and read the end of the last
3906 * extent before we go and fill in holes.
3907 */
3908 if (need_find_last_extent) {
3909 u64 len;
3910
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003911 ret = btrfs_prev_leaf(inode->root, src_path);
Josef Bacik16e75492013-10-22 12:18:51 -04003912 if (ret < 0)
3913 return ret;
3914 if (ret)
3915 goto fill_holes;
3916 if (src_path->slots[0])
3917 src_path->slots[0]--;
3918 src = src_path->nodes[0];
3919 btrfs_item_key_to_cpu(src, &key, src_path->slots[0]);
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003920 if (key.objectid != btrfs_ino(inode) ||
Josef Bacik16e75492013-10-22 12:18:51 -04003921 key.type != BTRFS_EXTENT_DATA_KEY)
3922 goto fill_holes;
3923 extent = btrfs_item_ptr(src, src_path->slots[0],
3924 struct btrfs_file_extent_item);
3925 if (btrfs_file_extent_type(src, extent) ==
3926 BTRFS_FILE_EXTENT_INLINE) {
Chris Mason514ac8a2014-01-03 21:07:00 -08003927 len = btrfs_file_extent_inline_len(src,
3928 src_path->slots[0],
3929 extent);
Josef Bacik16e75492013-10-22 12:18:51 -04003930 *last_extent = ALIGN(key.offset + len,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003931 fs_info->sectorsize);
Josef Bacik16e75492013-10-22 12:18:51 -04003932 } else {
3933 len = btrfs_file_extent_num_bytes(src, extent);
3934 *last_extent = key.offset + len;
3935 }
3936 }
3937fill_holes:
3938 /* So we did prev_leaf, now we need to move to the next leaf, but a few
3939 * things could have happened
3940 *
3941 * 1) A merge could have happened, so we could currently be on a leaf
3942 * that holds what we were copying in the first place.
3943 * 2) A split could have happened, and now not all of the items we want
3944 * are on the same leaf.
3945 *
3946 * So we need to adjust how we search for holes, we need to drop the
3947 * path and re-search for the first extent key we found, and then walk
3948 * forward until we hit the last one we copied.
3949 */
3950 if (need_find_last_extent) {
3951 /* btrfs_prev_leaf could return 1 without releasing the path */
3952 btrfs_release_path(src_path);
David Sterbaf85b7372017-01-20 14:54:07 +01003953 ret = btrfs_search_slot(NULL, inode->root, &first_key,
3954 src_path, 0, 0);
Josef Bacik16e75492013-10-22 12:18:51 -04003955 if (ret < 0)
3956 return ret;
3957 ASSERT(ret == 0);
3958 src = src_path->nodes[0];
3959 i = src_path->slots[0];
3960 } else {
3961 i = start_slot;
3962 }
3963
3964 /*
3965 * Ok so here we need to go through and fill in any holes we may have
3966 * to make sure that holes are punched for those areas in case they had
3967 * extents previously.
3968 */
3969 while (!done) {
3970 u64 offset, len;
3971 u64 extent_end;
3972
3973 if (i >= btrfs_header_nritems(src_path->nodes[0])) {
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003974 ret = btrfs_next_leaf(inode->root, src_path);
Josef Bacik16e75492013-10-22 12:18:51 -04003975 if (ret < 0)
3976 return ret;
3977 ASSERT(ret == 0);
3978 src = src_path->nodes[0];
3979 i = 0;
Filipe Manana8434ec42018-03-26 23:59:12 +01003980 need_find_last_extent = true;
Josef Bacik16e75492013-10-22 12:18:51 -04003981 }
3982
3983 btrfs_item_key_to_cpu(src, &key, i);
3984 if (!btrfs_comp_cpu_keys(&key, &last_key))
3985 done = true;
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003986 if (key.objectid != btrfs_ino(inode) ||
Josef Bacik16e75492013-10-22 12:18:51 -04003987 key.type != BTRFS_EXTENT_DATA_KEY) {
3988 i++;
3989 continue;
3990 }
3991 extent = btrfs_item_ptr(src, i, struct btrfs_file_extent_item);
3992 if (btrfs_file_extent_type(src, extent) ==
3993 BTRFS_FILE_EXTENT_INLINE) {
Chris Mason514ac8a2014-01-03 21:07:00 -08003994 len = btrfs_file_extent_inline_len(src, i, extent);
Jeff Mahoneyda170662016-06-15 09:22:56 -04003995 extent_end = ALIGN(key.offset + len,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003996 fs_info->sectorsize);
Josef Bacik16e75492013-10-22 12:18:51 -04003997 } else {
3998 len = btrfs_file_extent_num_bytes(src, extent);
3999 extent_end = key.offset + len;
4000 }
4001 i++;
4002
4003 if (*last_extent == key.offset) {
4004 *last_extent = extent_end;
4005 continue;
4006 }
4007 offset = *last_extent;
4008 len = key.offset - *last_extent;
Nikolay Borisov44d70e12017-01-18 00:31:36 +02004009 ret = btrfs_insert_file_extent(trans, log, btrfs_ino(inode),
David Sterbaf85b7372017-01-20 14:54:07 +01004010 offset, 0, 0, len, 0, len, 0, 0, 0);
Josef Bacik16e75492013-10-22 12:18:51 -04004011 if (ret)
4012 break;
Filipe Manana74121f7c2014-08-07 12:00:44 +01004013 *last_extent = extent_end;
Josef Bacik16e75492013-10-22 12:18:51 -04004014 }
Filipe Manana4ee3fad2018-03-26 23:59:00 +01004015
4016 /*
4017 * Check if there is a hole between the last extent found in our leaf
4018 * and the first extent in the next leaf. If there is one, we need to
4019 * log an explicit hole so that at replay time we can punch the hole.
4020 */
4021 if (ret == 0 &&
4022 key.objectid == btrfs_ino(inode) &&
4023 key.type == BTRFS_EXTENT_DATA_KEY &&
4024 i == btrfs_header_nritems(src_path->nodes[0])) {
4025 ret = btrfs_next_leaf(inode->root, src_path);
4026 need_find_last_extent = true;
4027 if (ret > 0) {
4028 ret = 0;
4029 } else if (ret == 0) {
4030 btrfs_item_key_to_cpu(src_path->nodes[0], &key,
4031 src_path->slots[0]);
4032 if (key.objectid == btrfs_ino(inode) &&
4033 key.type == BTRFS_EXTENT_DATA_KEY &&
4034 *last_extent < key.offset) {
4035 const u64 len = key.offset - *last_extent;
4036
4037 ret = btrfs_insert_file_extent(trans, log,
4038 btrfs_ino(inode),
4039 *last_extent, 0,
4040 0, len, 0, len,
4041 0, 0, 0);
4042 }
4043 }
4044 }
Josef Bacik16e75492013-10-22 12:18:51 -04004045 /*
4046 * Need to let the callers know we dropped the path so they should
4047 * re-search.
4048 */
4049 if (!ret && need_find_last_extent)
4050 ret = 1;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004051 return ret;
Chris Mason31ff1cd2008-09-11 16:17:57 -04004052}
4053
Josef Bacik5dc562c2012-08-17 13:14:17 -04004054static int extent_cmp(void *priv, struct list_head *a, struct list_head *b)
4055{
4056 struct extent_map *em1, *em2;
4057
4058 em1 = list_entry(a, struct extent_map, list);
4059 em2 = list_entry(b, struct extent_map, list);
4060
4061 if (em1->start < em2->start)
4062 return -1;
4063 else if (em1->start > em2->start)
4064 return 1;
4065 return 0;
4066}
4067
Filipe Manana8407f552014-09-05 15:14:39 +01004068static int wait_ordered_extents(struct btrfs_trans_handle *trans,
4069 struct inode *inode,
4070 struct btrfs_root *root,
4071 const struct extent_map *em,
4072 const struct list_head *logged_list,
4073 bool *ordered_io_error)
Josef Bacik5dc562c2012-08-17 13:14:17 -04004074{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004075 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik2ab28f32012-10-12 15:27:49 -04004076 struct btrfs_ordered_extent *ordered;
Filipe Manana8407f552014-09-05 15:14:39 +01004077 struct btrfs_root *log = root->log_root;
Josef Bacik2ab28f32012-10-12 15:27:49 -04004078 u64 mod_start = em->mod_start;
4079 u64 mod_len = em->mod_len;
Filipe Manana8407f552014-09-05 15:14:39 +01004080 const bool skip_csum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Josef Bacik2ab28f32012-10-12 15:27:49 -04004081 u64 csum_offset;
4082 u64 csum_len;
Filipe Manana8407f552014-09-05 15:14:39 +01004083 LIST_HEAD(ordered_sums);
4084 int ret = 0;
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004085
Filipe Manana8407f552014-09-05 15:14:39 +01004086 *ordered_io_error = false;
Josef Bacik70c8a912012-10-11 16:54:30 -04004087
Filipe Manana8407f552014-09-05 15:14:39 +01004088 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
4089 em->block_start == EXTENT_MAP_HOLE)
Josef Bacik70c8a912012-10-11 16:54:30 -04004090 return 0;
4091
Josef Bacik2ab28f32012-10-12 15:27:49 -04004092 /*
Filipe Manana8407f552014-09-05 15:14:39 +01004093 * Wait far any ordered extent that covers our extent map. If it
4094 * finishes without an error, first check and see if our csums are on
4095 * our outstanding ordered extents.
Josef Bacik2ab28f32012-10-12 15:27:49 -04004096 */
Miao Xie827463c2014-01-14 20:31:51 +08004097 list_for_each_entry(ordered, logged_list, log_list) {
Josef Bacik2ab28f32012-10-12 15:27:49 -04004098 struct btrfs_ordered_sum *sum;
4099
4100 if (!mod_len)
4101 break;
4102
Josef Bacik2ab28f32012-10-12 15:27:49 -04004103 if (ordered->file_offset + ordered->len <= mod_start ||
4104 mod_start + mod_len <= ordered->file_offset)
4105 continue;
4106
Filipe Manana8407f552014-09-05 15:14:39 +01004107 if (!test_bit(BTRFS_ORDERED_IO_DONE, &ordered->flags) &&
4108 !test_bit(BTRFS_ORDERED_IOERR, &ordered->flags) &&
4109 !test_bit(BTRFS_ORDERED_DIRECT, &ordered->flags)) {
4110 const u64 start = ordered->file_offset;
4111 const u64 end = ordered->file_offset + ordered->len - 1;
4112
4113 WARN_ON(ordered->inode != inode);
4114 filemap_fdatawrite_range(inode->i_mapping, start, end);
4115 }
4116
4117 wait_event(ordered->wait,
4118 (test_bit(BTRFS_ORDERED_IO_DONE, &ordered->flags) ||
4119 test_bit(BTRFS_ORDERED_IOERR, &ordered->flags)));
4120
4121 if (test_bit(BTRFS_ORDERED_IOERR, &ordered->flags)) {
Filipe Mananab38ef712014-11-13 17:01:45 +00004122 /*
4123 * Clear the AS_EIO/AS_ENOSPC flags from the inode's
4124 * i_mapping flags, so that the next fsync won't get
4125 * an outdated io error too.
4126 */
Miklos Szeredif0312212016-09-16 12:44:21 +02004127 filemap_check_errors(inode->i_mapping);
Filipe Manana8407f552014-09-05 15:14:39 +01004128 *ordered_io_error = true;
4129 break;
4130 }
Josef Bacik2ab28f32012-10-12 15:27:49 -04004131 /*
4132 * We are going to copy all the csums on this ordered extent, so
4133 * go ahead and adjust mod_start and mod_len in case this
4134 * ordered extent has already been logged.
4135 */
4136 if (ordered->file_offset > mod_start) {
4137 if (ordered->file_offset + ordered->len >=
4138 mod_start + mod_len)
4139 mod_len = ordered->file_offset - mod_start;
4140 /*
4141 * If we have this case
4142 *
4143 * |--------- logged extent ---------|
4144 * |----- ordered extent ----|
4145 *
4146 * Just don't mess with mod_start and mod_len, we'll
4147 * just end up logging more csums than we need and it
4148 * will be ok.
4149 */
4150 } else {
4151 if (ordered->file_offset + ordered->len <
4152 mod_start + mod_len) {
4153 mod_len = (mod_start + mod_len) -
4154 (ordered->file_offset + ordered->len);
4155 mod_start = ordered->file_offset +
4156 ordered->len;
4157 } else {
4158 mod_len = 0;
4159 }
4160 }
4161
Filipe Manana8407f552014-09-05 15:14:39 +01004162 if (skip_csum)
4163 continue;
4164
Josef Bacik2ab28f32012-10-12 15:27:49 -04004165 /*
4166 * To keep us from looping for the above case of an ordered
4167 * extent that falls inside of the logged extent.
4168 */
4169 if (test_and_set_bit(BTRFS_ORDERED_LOGGED_CSUM,
4170 &ordered->flags))
4171 continue;
Josef Bacik2ab28f32012-10-12 15:27:49 -04004172
Josef Bacik2ab28f32012-10-12 15:27:49 -04004173 list_for_each_entry(sum, &ordered->list, list) {
4174 ret = btrfs_csum_file_blocks(trans, log, sum);
Miao Xie827463c2014-01-14 20:31:51 +08004175 if (ret)
Filipe Manana8407f552014-09-05 15:14:39 +01004176 break;
Josef Bacik2ab28f32012-10-12 15:27:49 -04004177 }
Josef Bacik2ab28f32012-10-12 15:27:49 -04004178 }
Josef Bacik2ab28f32012-10-12 15:27:49 -04004179
Filipe Manana8407f552014-09-05 15:14:39 +01004180 if (*ordered_io_error || !mod_len || ret || skip_csum)
Josef Bacik2ab28f32012-10-12 15:27:49 -04004181 return ret;
4182
Filipe David Borba Manana488111a2013-10-28 16:30:29 +00004183 if (em->compress_type) {
4184 csum_offset = 0;
Filipe Manana8407f552014-09-05 15:14:39 +01004185 csum_len = max(em->block_len, em->orig_block_len);
Filipe David Borba Manana488111a2013-10-28 16:30:29 +00004186 } else {
4187 csum_offset = mod_start - em->start;
4188 csum_len = mod_len;
4189 }
Josef Bacik2ab28f32012-10-12 15:27:49 -04004190
Josef Bacik70c8a912012-10-11 16:54:30 -04004191 /* block start is already adjusted for the file extent offset. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004192 ret = btrfs_lookup_csums_range(fs_info->csum_root,
Josef Bacik70c8a912012-10-11 16:54:30 -04004193 em->block_start + csum_offset,
4194 em->block_start + csum_offset +
4195 csum_len - 1, &ordered_sums, 0);
4196 if (ret)
4197 return ret;
4198
4199 while (!list_empty(&ordered_sums)) {
4200 struct btrfs_ordered_sum *sums = list_entry(ordered_sums.next,
4201 struct btrfs_ordered_sum,
4202 list);
4203 if (!ret)
4204 ret = btrfs_csum_file_blocks(trans, log, sums);
4205 list_del(&sums->list);
4206 kfree(sums);
4207 }
4208
4209 return ret;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004210}
4211
Filipe Manana8407f552014-09-05 15:14:39 +01004212static int log_one_extent(struct btrfs_trans_handle *trans,
Nikolay Borisov9d122622017-01-18 00:31:40 +02004213 struct btrfs_inode *inode, struct btrfs_root *root,
Filipe Manana8407f552014-09-05 15:14:39 +01004214 const struct extent_map *em,
4215 struct btrfs_path *path,
4216 const struct list_head *logged_list,
4217 struct btrfs_log_ctx *ctx)
4218{
4219 struct btrfs_root *log = root->log_root;
4220 struct btrfs_file_extent_item *fi;
4221 struct extent_buffer *leaf;
4222 struct btrfs_map_token token;
4223 struct btrfs_key key;
4224 u64 extent_offset = em->start - em->orig_start;
4225 u64 block_len;
4226 int ret;
4227 int extent_inserted = 0;
4228 bool ordered_io_err = false;
4229
David Sterbaf85b7372017-01-20 14:54:07 +01004230 ret = wait_ordered_extents(trans, &inode->vfs_inode, root, em,
4231 logged_list, &ordered_io_err);
Filipe Manana8407f552014-09-05 15:14:39 +01004232 if (ret)
4233 return ret;
4234
4235 if (ordered_io_err) {
4236 ctx->io_err = -EIO;
Liu Boebb70442017-11-21 14:35:40 -07004237 return ctx->io_err;
Filipe Manana8407f552014-09-05 15:14:39 +01004238 }
4239
4240 btrfs_init_map_token(&token);
4241
Nikolay Borisov9d122622017-01-18 00:31:40 +02004242 ret = __btrfs_drop_extents(trans, log, &inode->vfs_inode, path, em->start,
Filipe Manana8407f552014-09-05 15:14:39 +01004243 em->start + em->len, NULL, 0, 1,
4244 sizeof(*fi), &extent_inserted);
4245 if (ret)
4246 return ret;
4247
4248 if (!extent_inserted) {
Nikolay Borisov9d122622017-01-18 00:31:40 +02004249 key.objectid = btrfs_ino(inode);
Filipe Manana8407f552014-09-05 15:14:39 +01004250 key.type = BTRFS_EXTENT_DATA_KEY;
4251 key.offset = em->start;
4252
4253 ret = btrfs_insert_empty_item(trans, log, path, &key,
4254 sizeof(*fi));
4255 if (ret)
4256 return ret;
4257 }
4258 leaf = path->nodes[0];
4259 fi = btrfs_item_ptr(leaf, path->slots[0],
4260 struct btrfs_file_extent_item);
4261
Josef Bacik50d9aa92014-11-21 14:52:38 -05004262 btrfs_set_token_file_extent_generation(leaf, fi, trans->transid,
Filipe Manana8407f552014-09-05 15:14:39 +01004263 &token);
4264 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
4265 btrfs_set_token_file_extent_type(leaf, fi,
4266 BTRFS_FILE_EXTENT_PREALLOC,
4267 &token);
4268 else
4269 btrfs_set_token_file_extent_type(leaf, fi,
4270 BTRFS_FILE_EXTENT_REG,
4271 &token);
4272
4273 block_len = max(em->block_len, em->orig_block_len);
4274 if (em->compress_type != BTRFS_COMPRESS_NONE) {
4275 btrfs_set_token_file_extent_disk_bytenr(leaf, fi,
4276 em->block_start,
4277 &token);
4278 btrfs_set_token_file_extent_disk_num_bytes(leaf, fi, block_len,
4279 &token);
4280 } else if (em->block_start < EXTENT_MAP_LAST_BYTE) {
4281 btrfs_set_token_file_extent_disk_bytenr(leaf, fi,
4282 em->block_start -
4283 extent_offset, &token);
4284 btrfs_set_token_file_extent_disk_num_bytes(leaf, fi, block_len,
4285 &token);
4286 } else {
4287 btrfs_set_token_file_extent_disk_bytenr(leaf, fi, 0, &token);
4288 btrfs_set_token_file_extent_disk_num_bytes(leaf, fi, 0,
4289 &token);
4290 }
4291
4292 btrfs_set_token_file_extent_offset(leaf, fi, extent_offset, &token);
4293 btrfs_set_token_file_extent_num_bytes(leaf, fi, em->len, &token);
4294 btrfs_set_token_file_extent_ram_bytes(leaf, fi, em->ram_bytes, &token);
4295 btrfs_set_token_file_extent_compression(leaf, fi, em->compress_type,
4296 &token);
4297 btrfs_set_token_file_extent_encryption(leaf, fi, 0, &token);
4298 btrfs_set_token_file_extent_other_encoding(leaf, fi, 0, &token);
4299 btrfs_mark_buffer_dirty(leaf);
4300
4301 btrfs_release_path(path);
4302
4303 return ret;
4304}
4305
Josef Bacik5dc562c2012-08-17 13:14:17 -04004306static int btrfs_log_changed_extents(struct btrfs_trans_handle *trans,
4307 struct btrfs_root *root,
Nikolay Borisov9d122622017-01-18 00:31:40 +02004308 struct btrfs_inode *inode,
Miao Xie827463c2014-01-14 20:31:51 +08004309 struct btrfs_path *path,
Filipe Manana8407f552014-09-05 15:14:39 +01004310 struct list_head *logged_list,
Filipe Mananade0ee0e2016-01-21 10:17:54 +00004311 struct btrfs_log_ctx *ctx,
4312 const u64 start,
4313 const u64 end)
Josef Bacik5dc562c2012-08-17 13:14:17 -04004314{
Josef Bacik5dc562c2012-08-17 13:14:17 -04004315 struct extent_map *em, *n;
4316 struct list_head extents;
Nikolay Borisov9d122622017-01-18 00:31:40 +02004317 struct extent_map_tree *tree = &inode->extent_tree;
Josef Bacik8c6c5922017-08-29 10:11:39 -04004318 u64 logged_start, logged_end;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004319 u64 test_gen;
4320 int ret = 0;
Josef Bacik2ab28f32012-10-12 15:27:49 -04004321 int num = 0;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004322
4323 INIT_LIST_HEAD(&extents);
4324
Nikolay Borisov9d122622017-01-18 00:31:40 +02004325 down_write(&inode->dio_sem);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004326 write_lock(&tree->lock);
4327 test_gen = root->fs_info->last_trans_committed;
Josef Bacik8c6c5922017-08-29 10:11:39 -04004328 logged_start = start;
4329 logged_end = end;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004330
4331 list_for_each_entry_safe(em, n, &tree->modified_extents, list) {
4332 list_del_init(&em->list);
Josef Bacik2ab28f32012-10-12 15:27:49 -04004333 /*
4334 * Just an arbitrary number, this can be really CPU intensive
4335 * once we start getting a lot of extents, and really once we
4336 * have a bunch of extents we just want to commit since it will
4337 * be faster.
4338 */
4339 if (++num > 32768) {
4340 list_del_init(&tree->modified_extents);
4341 ret = -EFBIG;
4342 goto process;
4343 }
4344
Josef Bacik5dc562c2012-08-17 13:14:17 -04004345 if (em->generation <= test_gen)
4346 continue;
Josef Bacik8c6c5922017-08-29 10:11:39 -04004347
4348 if (em->start < logged_start)
4349 logged_start = em->start;
4350 if ((em->start + em->len - 1) > logged_end)
4351 logged_end = em->start + em->len - 1;
4352
Josef Bacikff44c6e2012-09-14 12:59:20 -04004353 /* Need a ref to keep it from getting evicted from cache */
Elena Reshetova490b54d2017-03-03 10:55:12 +02004354 refcount_inc(&em->refs);
Josef Bacikff44c6e2012-09-14 12:59:20 -04004355 set_bit(EXTENT_FLAG_LOGGING, &em->flags);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004356 list_add_tail(&em->list, &extents);
Josef Bacik2ab28f32012-10-12 15:27:49 -04004357 num++;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004358 }
4359
4360 list_sort(NULL, &extents, extent_cmp);
Josef Bacik8c6c5922017-08-29 10:11:39 -04004361 btrfs_get_logged_extents(inode, logged_list, logged_start, logged_end);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01004362 /*
4363 * Some ordered extents started by fsync might have completed
4364 * before we could collect them into the list logged_list, which
4365 * means they're gone, not in our logged_list nor in the inode's
4366 * ordered tree. We want the application/user space to know an
4367 * error happened while attempting to persist file data so that
4368 * it can take proper action. If such error happened, we leave
4369 * without writing to the log tree and the fsync must report the
4370 * file data write error and not commit the current transaction.
4371 */
Nikolay Borisov9d122622017-01-18 00:31:40 +02004372 ret = filemap_check_errors(inode->vfs_inode.i_mapping);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01004373 if (ret)
4374 ctx->io_err = ret;
Josef Bacik2ab28f32012-10-12 15:27:49 -04004375process:
Josef Bacik5dc562c2012-08-17 13:14:17 -04004376 while (!list_empty(&extents)) {
4377 em = list_entry(extents.next, struct extent_map, list);
4378
4379 list_del_init(&em->list);
4380
4381 /*
4382 * If we had an error we just need to delete everybody from our
4383 * private list.
4384 */
Josef Bacikff44c6e2012-09-14 12:59:20 -04004385 if (ret) {
Josef Bacik201a9032013-01-24 12:02:07 -05004386 clear_em_logging(tree, em);
Josef Bacikff44c6e2012-09-14 12:59:20 -04004387 free_extent_map(em);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004388 continue;
Josef Bacikff44c6e2012-09-14 12:59:20 -04004389 }
4390
4391 write_unlock(&tree->lock);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004392
Filipe Manana8407f552014-09-05 15:14:39 +01004393 ret = log_one_extent(trans, inode, root, em, path, logged_list,
4394 ctx);
Josef Bacikff44c6e2012-09-14 12:59:20 -04004395 write_lock(&tree->lock);
Josef Bacik201a9032013-01-24 12:02:07 -05004396 clear_em_logging(tree, em);
4397 free_extent_map(em);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004398 }
Josef Bacikff44c6e2012-09-14 12:59:20 -04004399 WARN_ON(!list_empty(&extents));
4400 write_unlock(&tree->lock);
Nikolay Borisov9d122622017-01-18 00:31:40 +02004401 up_write(&inode->dio_sem);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004402
Josef Bacik5dc562c2012-08-17 13:14:17 -04004403 btrfs_release_path(path);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004404 return ret;
4405}
4406
Nikolay Borisov481b01c2017-01-18 00:31:34 +02004407static int logged_inode_size(struct btrfs_root *log, struct btrfs_inode *inode,
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004408 struct btrfs_path *path, u64 *size_ret)
4409{
4410 struct btrfs_key key;
4411 int ret;
4412
Nikolay Borisov481b01c2017-01-18 00:31:34 +02004413 key.objectid = btrfs_ino(inode);
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004414 key.type = BTRFS_INODE_ITEM_KEY;
4415 key.offset = 0;
4416
4417 ret = btrfs_search_slot(NULL, log, &key, path, 0, 0);
4418 if (ret < 0) {
4419 return ret;
4420 } else if (ret > 0) {
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00004421 *size_ret = 0;
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004422 } else {
4423 struct btrfs_inode_item *item;
4424
4425 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4426 struct btrfs_inode_item);
4427 *size_ret = btrfs_inode_size(path->nodes[0], item);
4428 }
4429
4430 btrfs_release_path(path);
4431 return 0;
4432}
4433
Filipe Manana36283bf2015-06-20 00:44:51 +01004434/*
4435 * At the moment we always log all xattrs. This is to figure out at log replay
4436 * time which xattrs must have their deletion replayed. If a xattr is missing
4437 * in the log tree and exists in the fs/subvol tree, we delete it. This is
4438 * because if a xattr is deleted, the inode is fsynced and a power failure
4439 * happens, causing the log to be replayed the next time the fs is mounted,
4440 * we want the xattr to not exist anymore (same behaviour as other filesystems
4441 * with a journal, ext3/4, xfs, f2fs, etc).
4442 */
4443static int btrfs_log_all_xattrs(struct btrfs_trans_handle *trans,
4444 struct btrfs_root *root,
Nikolay Borisov1a93c362017-01-18 00:31:37 +02004445 struct btrfs_inode *inode,
Filipe Manana36283bf2015-06-20 00:44:51 +01004446 struct btrfs_path *path,
4447 struct btrfs_path *dst_path)
4448{
4449 int ret;
4450 struct btrfs_key key;
Nikolay Borisov1a93c362017-01-18 00:31:37 +02004451 const u64 ino = btrfs_ino(inode);
Filipe Manana36283bf2015-06-20 00:44:51 +01004452 int ins_nr = 0;
4453 int start_slot = 0;
4454
4455 key.objectid = ino;
4456 key.type = BTRFS_XATTR_ITEM_KEY;
4457 key.offset = 0;
4458
4459 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4460 if (ret < 0)
4461 return ret;
4462
4463 while (true) {
4464 int slot = path->slots[0];
4465 struct extent_buffer *leaf = path->nodes[0];
4466 int nritems = btrfs_header_nritems(leaf);
4467
4468 if (slot >= nritems) {
4469 if (ins_nr > 0) {
4470 u64 last_extent = 0;
4471
Nikolay Borisov1a93c362017-01-18 00:31:37 +02004472 ret = copy_items(trans, inode, dst_path, path,
Filipe Manana36283bf2015-06-20 00:44:51 +01004473 &last_extent, start_slot,
4474 ins_nr, 1, 0);
4475 /* can't be 1, extent items aren't processed */
4476 ASSERT(ret <= 0);
4477 if (ret < 0)
4478 return ret;
4479 ins_nr = 0;
4480 }
4481 ret = btrfs_next_leaf(root, path);
4482 if (ret < 0)
4483 return ret;
4484 else if (ret > 0)
4485 break;
4486 continue;
4487 }
4488
4489 btrfs_item_key_to_cpu(leaf, &key, slot);
4490 if (key.objectid != ino || key.type != BTRFS_XATTR_ITEM_KEY)
4491 break;
4492
4493 if (ins_nr == 0)
4494 start_slot = slot;
4495 ins_nr++;
4496 path->slots[0]++;
4497 cond_resched();
4498 }
4499 if (ins_nr > 0) {
4500 u64 last_extent = 0;
4501
Nikolay Borisov1a93c362017-01-18 00:31:37 +02004502 ret = copy_items(trans, inode, dst_path, path,
Filipe Manana36283bf2015-06-20 00:44:51 +01004503 &last_extent, start_slot,
4504 ins_nr, 1, 0);
4505 /* can't be 1, extent items aren't processed */
4506 ASSERT(ret <= 0);
4507 if (ret < 0)
4508 return ret;
4509 }
4510
4511 return 0;
4512}
4513
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01004514/*
4515 * If the no holes feature is enabled we need to make sure any hole between the
4516 * last extent and the i_size of our inode is explicitly marked in the log. This
4517 * is to make sure that doing something like:
4518 *
4519 * 1) create file with 128Kb of data
4520 * 2) truncate file to 64Kb
4521 * 3) truncate file to 256Kb
4522 * 4) fsync file
4523 * 5) <crash/power failure>
4524 * 6) mount fs and trigger log replay
4525 *
4526 * Will give us a file with a size of 256Kb, the first 64Kb of data match what
4527 * the file had in its first 64Kb of data at step 1 and the last 192Kb of the
4528 * file correspond to a hole. The presence of explicit holes in a log tree is
4529 * what guarantees that log replay will remove/adjust file extent items in the
4530 * fs/subvol tree.
4531 *
4532 * Here we do not need to care about holes between extents, that is already done
4533 * by copy_items(). We also only need to do this in the full sync path, where we
4534 * lookup for extents from the fs/subvol tree only. In the fast path case, we
4535 * lookup the list of modified extent maps and if any represents a hole, we
4536 * insert a corresponding extent representing a hole in the log tree.
4537 */
4538static int btrfs_log_trailing_hole(struct btrfs_trans_handle *trans,
4539 struct btrfs_root *root,
Nikolay Borisova0308dd2017-01-18 00:31:38 +02004540 struct btrfs_inode *inode,
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01004541 struct btrfs_path *path)
4542{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004543 struct btrfs_fs_info *fs_info = root->fs_info;
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01004544 int ret;
4545 struct btrfs_key key;
4546 u64 hole_start;
4547 u64 hole_size;
4548 struct extent_buffer *leaf;
4549 struct btrfs_root *log = root->log_root;
Nikolay Borisova0308dd2017-01-18 00:31:38 +02004550 const u64 ino = btrfs_ino(inode);
4551 const u64 i_size = i_size_read(&inode->vfs_inode);
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01004552
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004553 if (!btrfs_fs_incompat(fs_info, NO_HOLES))
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01004554 return 0;
4555
4556 key.objectid = ino;
4557 key.type = BTRFS_EXTENT_DATA_KEY;
4558 key.offset = (u64)-1;
4559
4560 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4561 ASSERT(ret != 0);
4562 if (ret < 0)
4563 return ret;
4564
4565 ASSERT(path->slots[0] > 0);
4566 path->slots[0]--;
4567 leaf = path->nodes[0];
4568 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
4569
4570 if (key.objectid != ino || key.type != BTRFS_EXTENT_DATA_KEY) {
4571 /* inode does not have any extents */
4572 hole_start = 0;
4573 hole_size = i_size;
4574 } else {
4575 struct btrfs_file_extent_item *extent;
4576 u64 len;
4577
4578 /*
4579 * If there's an extent beyond i_size, an explicit hole was
4580 * already inserted by copy_items().
4581 */
4582 if (key.offset >= i_size)
4583 return 0;
4584
4585 extent = btrfs_item_ptr(leaf, path->slots[0],
4586 struct btrfs_file_extent_item);
4587
4588 if (btrfs_file_extent_type(leaf, extent) ==
4589 BTRFS_FILE_EXTENT_INLINE) {
4590 len = btrfs_file_extent_inline_len(leaf,
4591 path->slots[0],
4592 extent);
Filipe Manana6399fb52017-07-28 15:22:36 +01004593 ASSERT(len == i_size ||
4594 (len == fs_info->sectorsize &&
4595 btrfs_file_extent_compression(leaf, extent) !=
4596 BTRFS_COMPRESS_NONE));
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01004597 return 0;
4598 }
4599
4600 len = btrfs_file_extent_num_bytes(leaf, extent);
4601 /* Last extent goes beyond i_size, no need to log a hole. */
4602 if (key.offset + len > i_size)
4603 return 0;
4604 hole_start = key.offset + len;
4605 hole_size = i_size - hole_start;
4606 }
4607 btrfs_release_path(path);
4608
4609 /* Last extent ends at i_size. */
4610 if (hole_size == 0)
4611 return 0;
4612
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004613 hole_size = ALIGN(hole_size, fs_info->sectorsize);
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01004614 ret = btrfs_insert_file_extent(trans, log, ino, hole_start, 0, 0,
4615 hole_size, 0, hole_size, 0, 0, 0);
4616 return ret;
4617}
4618
Filipe Manana56f23fd2016-03-30 23:37:21 +01004619/*
4620 * When we are logging a new inode X, check if it doesn't have a reference that
4621 * matches the reference from some other inode Y created in a past transaction
4622 * and that was renamed in the current transaction. If we don't do this, then at
4623 * log replay time we can lose inode Y (and all its files if it's a directory):
4624 *
4625 * mkdir /mnt/x
4626 * echo "hello world" > /mnt/x/foobar
4627 * sync
4628 * mv /mnt/x /mnt/y
4629 * mkdir /mnt/x # or touch /mnt/x
4630 * xfs_io -c fsync /mnt/x
4631 * <power fail>
4632 * mount fs, trigger log replay
4633 *
4634 * After the log replay procedure, we would lose the first directory and all its
4635 * files (file foobar).
4636 * For the case where inode Y is not a directory we simply end up losing it:
4637 *
4638 * echo "123" > /mnt/foo
4639 * sync
4640 * mv /mnt/foo /mnt/bar
4641 * echo "abc" > /mnt/foo
4642 * xfs_io -c fsync /mnt/foo
4643 * <power fail>
4644 *
4645 * We also need this for cases where a snapshot entry is replaced by some other
4646 * entry (file or directory) otherwise we end up with an unreplayable log due to
4647 * attempts to delete the snapshot entry (entry of type BTRFS_ROOT_ITEM_KEY) as
4648 * if it were a regular entry:
4649 *
4650 * mkdir /mnt/x
4651 * btrfs subvolume snapshot /mnt /mnt/x/snap
4652 * btrfs subvolume delete /mnt/x/snap
4653 * rmdir /mnt/x
4654 * mkdir /mnt/x
4655 * fsync /mnt/x or fsync some new file inside it
4656 * <power fail>
4657 *
4658 * The snapshot delete, rmdir of x, mkdir of a new x and the fsync all happen in
4659 * the same transaction.
4660 */
4661static int btrfs_check_ref_name_override(struct extent_buffer *eb,
4662 const int slot,
4663 const struct btrfs_key *key,
Nikolay Borisov4791c8f2017-01-18 00:31:35 +02004664 struct btrfs_inode *inode,
Filipe Manana44f714d2016-06-06 16:11:13 +01004665 u64 *other_ino)
Filipe Manana56f23fd2016-03-30 23:37:21 +01004666{
4667 int ret;
4668 struct btrfs_path *search_path;
4669 char *name = NULL;
4670 u32 name_len = 0;
4671 u32 item_size = btrfs_item_size_nr(eb, slot);
4672 u32 cur_offset = 0;
4673 unsigned long ptr = btrfs_item_ptr_offset(eb, slot);
4674
4675 search_path = btrfs_alloc_path();
4676 if (!search_path)
4677 return -ENOMEM;
4678 search_path->search_commit_root = 1;
4679 search_path->skip_locking = 1;
4680
4681 while (cur_offset < item_size) {
4682 u64 parent;
4683 u32 this_name_len;
4684 u32 this_len;
4685 unsigned long name_ptr;
4686 struct btrfs_dir_item *di;
4687
4688 if (key->type == BTRFS_INODE_REF_KEY) {
4689 struct btrfs_inode_ref *iref;
4690
4691 iref = (struct btrfs_inode_ref *)(ptr + cur_offset);
4692 parent = key->offset;
4693 this_name_len = btrfs_inode_ref_name_len(eb, iref);
4694 name_ptr = (unsigned long)(iref + 1);
4695 this_len = sizeof(*iref) + this_name_len;
4696 } else {
4697 struct btrfs_inode_extref *extref;
4698
4699 extref = (struct btrfs_inode_extref *)(ptr +
4700 cur_offset);
4701 parent = btrfs_inode_extref_parent(eb, extref);
4702 this_name_len = btrfs_inode_extref_name_len(eb, extref);
4703 name_ptr = (unsigned long)&extref->name;
4704 this_len = sizeof(*extref) + this_name_len;
4705 }
4706
4707 if (this_name_len > name_len) {
4708 char *new_name;
4709
4710 new_name = krealloc(name, this_name_len, GFP_NOFS);
4711 if (!new_name) {
4712 ret = -ENOMEM;
4713 goto out;
4714 }
4715 name_len = this_name_len;
4716 name = new_name;
4717 }
4718
4719 read_extent_buffer(eb, name, name_ptr, this_name_len);
Nikolay Borisov4791c8f2017-01-18 00:31:35 +02004720 di = btrfs_lookup_dir_item(NULL, inode->root, search_path,
4721 parent, name, this_name_len, 0);
Filipe Manana56f23fd2016-03-30 23:37:21 +01004722 if (di && !IS_ERR(di)) {
Filipe Manana44f714d2016-06-06 16:11:13 +01004723 struct btrfs_key di_key;
4724
4725 btrfs_dir_item_key_to_cpu(search_path->nodes[0],
4726 di, &di_key);
4727 if (di_key.type == BTRFS_INODE_ITEM_KEY) {
4728 ret = 1;
4729 *other_ino = di_key.objectid;
4730 } else {
4731 ret = -EAGAIN;
4732 }
Filipe Manana56f23fd2016-03-30 23:37:21 +01004733 goto out;
4734 } else if (IS_ERR(di)) {
4735 ret = PTR_ERR(di);
4736 goto out;
4737 }
4738 btrfs_release_path(search_path);
4739
4740 cur_offset += this_len;
4741 }
4742 ret = 0;
4743out:
4744 btrfs_free_path(search_path);
4745 kfree(name);
4746 return ret;
4747}
4748
Chris Masone02119d2008-09-05 16:13:11 -04004749/* log a single inode in the tree log.
4750 * At least one parent directory for this inode must exist in the tree
4751 * or be logged already.
4752 *
4753 * Any items from this inode changed by the current transaction are copied
4754 * to the log tree. An extra reference is taken on any extents in this
4755 * file, allowing us to avoid a whole pile of corner cases around logging
4756 * blocks that have been removed from the tree.
4757 *
4758 * See LOG_INODE_ALL and related defines for a description of what inode_only
4759 * does.
4760 *
4761 * This handles both files and directories.
4762 */
Chris Mason12fcfd22009-03-24 10:24:20 -04004763static int btrfs_log_inode(struct btrfs_trans_handle *trans,
Nikolay Borisova59108a2017-01-18 00:31:48 +02004764 struct btrfs_root *root, struct btrfs_inode *inode,
Filipe Manana49dae1b2014-09-06 22:34:39 +01004765 int inode_only,
4766 const loff_t start,
Filipe Manana8407f552014-09-05 15:14:39 +01004767 const loff_t end,
4768 struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -04004769{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004770 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04004771 struct btrfs_path *path;
4772 struct btrfs_path *dst_path;
4773 struct btrfs_key min_key;
4774 struct btrfs_key max_key;
4775 struct btrfs_root *log = root->log_root;
Miao Xie827463c2014-01-14 20:31:51 +08004776 LIST_HEAD(logged_list);
Josef Bacik16e75492013-10-22 12:18:51 -04004777 u64 last_extent = 0;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004778 int err = 0;
Chris Masone02119d2008-09-05 16:13:11 -04004779 int ret;
Chris Mason3a5f1d42008-09-11 15:53:37 -04004780 int nritems;
Chris Mason31ff1cd2008-09-11 16:17:57 -04004781 int ins_start_slot = 0;
4782 int ins_nr;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004783 bool fast_search = false;
Nikolay Borisova59108a2017-01-18 00:31:48 +02004784 u64 ino = btrfs_ino(inode);
4785 struct extent_map_tree *em_tree = &inode->extent_tree;
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004786 u64 logged_isize = 0;
Filipe Mananae4545de2015-06-17 12:49:23 +01004787 bool need_log_inode_item = true;
Chris Masone02119d2008-09-05 16:13:11 -04004788
Chris Masone02119d2008-09-05 16:13:11 -04004789 path = btrfs_alloc_path();
Tsutomu Itoh5df67082011-02-01 09:17:35 +00004790 if (!path)
4791 return -ENOMEM;
Chris Masone02119d2008-09-05 16:13:11 -04004792 dst_path = btrfs_alloc_path();
Tsutomu Itoh5df67082011-02-01 09:17:35 +00004793 if (!dst_path) {
4794 btrfs_free_path(path);
4795 return -ENOMEM;
4796 }
Chris Masone02119d2008-09-05 16:13:11 -04004797
Li Zefan33345d012011-04-20 10:31:50 +08004798 min_key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04004799 min_key.type = BTRFS_INODE_ITEM_KEY;
4800 min_key.offset = 0;
4801
Li Zefan33345d012011-04-20 10:31:50 +08004802 max_key.objectid = ino;
Chris Mason12fcfd22009-03-24 10:24:20 -04004803
Chris Mason12fcfd22009-03-24 10:24:20 -04004804
Josef Bacik5dc562c2012-08-17 13:14:17 -04004805 /* today the code can only do partial logging of directories */
Nikolay Borisova59108a2017-01-18 00:31:48 +02004806 if (S_ISDIR(inode->vfs_inode.i_mode) ||
Miao Xie5269b672012-11-01 07:35:23 +00004807 (!test_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisova59108a2017-01-18 00:31:48 +02004808 &inode->runtime_flags) &&
Liu Bo781feef2016-11-30 16:20:25 -08004809 inode_only >= LOG_INODE_EXISTS))
Chris Masone02119d2008-09-05 16:13:11 -04004810 max_key.type = BTRFS_XATTR_ITEM_KEY;
4811 else
4812 max_key.type = (u8)-1;
4813 max_key.offset = (u64)-1;
4814
Filipe Manana2c2c4522015-01-13 16:40:04 +00004815 /*
4816 * Only run delayed items if we are a dir or a new file.
4817 * Otherwise commit the delayed inode only, which is needed in
4818 * order for the log replay code to mark inodes for link count
4819 * fixup (create temporary BTRFS_TREE_LOG_FIXUP_OBJECTID items).
4820 */
Nikolay Borisova59108a2017-01-18 00:31:48 +02004821 if (S_ISDIR(inode->vfs_inode.i_mode) ||
4822 inode->generation > fs_info->last_trans_committed)
4823 ret = btrfs_commit_inode_delayed_items(trans, inode);
Filipe Manana2c2c4522015-01-13 16:40:04 +00004824 else
Nikolay Borisova59108a2017-01-18 00:31:48 +02004825 ret = btrfs_commit_inode_delayed_inode(inode);
Filipe Manana2c2c4522015-01-13 16:40:04 +00004826
4827 if (ret) {
4828 btrfs_free_path(path);
4829 btrfs_free_path(dst_path);
4830 return ret;
Miao Xie16cdcec2011-04-22 18:12:22 +08004831 }
4832
Liu Bo781feef2016-11-30 16:20:25 -08004833 if (inode_only == LOG_OTHER_INODE) {
4834 inode_only = LOG_INODE_EXISTS;
Nikolay Borisova59108a2017-01-18 00:31:48 +02004835 mutex_lock_nested(&inode->log_mutex, SINGLE_DEPTH_NESTING);
Liu Bo781feef2016-11-30 16:20:25 -08004836 } else {
Nikolay Borisova59108a2017-01-18 00:31:48 +02004837 mutex_lock(&inode->log_mutex);
Liu Bo781feef2016-11-30 16:20:25 -08004838 }
Chris Masone02119d2008-09-05 16:13:11 -04004839
Filipe Manana5e33a2b2016-02-25 23:19:38 +00004840 /*
Chris Masone02119d2008-09-05 16:13:11 -04004841 * a brute force approach to making sure we get the most uptodate
4842 * copies of everything.
4843 */
Nikolay Borisova59108a2017-01-18 00:31:48 +02004844 if (S_ISDIR(inode->vfs_inode.i_mode)) {
Chris Masone02119d2008-09-05 16:13:11 -04004845 int max_key_type = BTRFS_DIR_LOG_INDEX_KEY;
4846
Filipe Manana4f764e52015-02-23 19:53:35 +00004847 if (inode_only == LOG_INODE_EXISTS)
4848 max_key_type = BTRFS_XATTR_ITEM_KEY;
Li Zefan33345d012011-04-20 10:31:50 +08004849 ret = drop_objectid_items(trans, log, path, ino, max_key_type);
Chris Masone02119d2008-09-05 16:13:11 -04004850 } else {
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004851 if (inode_only == LOG_INODE_EXISTS) {
4852 /*
4853 * Make sure the new inode item we write to the log has
4854 * the same isize as the current one (if it exists).
4855 * This is necessary to prevent data loss after log
4856 * replay, and also to prevent doing a wrong expanding
4857 * truncate - for e.g. create file, write 4K into offset
4858 * 0, fsync, write 4K into offset 4096, add hard link,
4859 * fsync some other file (to sync log), power fail - if
4860 * we use the inode's current i_size, after log replay
4861 * we get a 8Kb file, with the last 4Kb extent as a hole
4862 * (zeroes), as if an expanding truncate happened,
4863 * instead of getting a file of 4Kb only.
4864 */
Nikolay Borisova59108a2017-01-18 00:31:48 +02004865 err = logged_inode_size(log, inode, path, &logged_isize);
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004866 if (err)
4867 goto out_unlock;
4868 }
Filipe Mananaa7429942015-02-13 16:56:14 +00004869 if (test_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisova59108a2017-01-18 00:31:48 +02004870 &inode->runtime_flags)) {
Filipe Mananaa7429942015-02-13 16:56:14 +00004871 if (inode_only == LOG_INODE_EXISTS) {
Filipe Manana4f764e52015-02-23 19:53:35 +00004872 max_key.type = BTRFS_XATTR_ITEM_KEY;
Filipe Mananaa7429942015-02-13 16:56:14 +00004873 ret = drop_objectid_items(trans, log, path, ino,
4874 max_key.type);
4875 } else {
4876 clear_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisova59108a2017-01-18 00:31:48 +02004877 &inode->runtime_flags);
Filipe Mananaa7429942015-02-13 16:56:14 +00004878 clear_bit(BTRFS_INODE_COPY_EVERYTHING,
Nikolay Borisova59108a2017-01-18 00:31:48 +02004879 &inode->runtime_flags);
Chris Mason28ed1342014-12-17 09:41:04 -08004880 while(1) {
4881 ret = btrfs_truncate_inode_items(trans,
Nikolay Borisova59108a2017-01-18 00:31:48 +02004882 log, &inode->vfs_inode, 0, 0);
Chris Mason28ed1342014-12-17 09:41:04 -08004883 if (ret != -EAGAIN)
4884 break;
4885 }
Filipe Mananaa7429942015-02-13 16:56:14 +00004886 }
Filipe Manana4f764e52015-02-23 19:53:35 +00004887 } else if (test_and_clear_bit(BTRFS_INODE_COPY_EVERYTHING,
Nikolay Borisova59108a2017-01-18 00:31:48 +02004888 &inode->runtime_flags) ||
Josef Bacik6cfab852013-11-12 16:25:58 -05004889 inode_only == LOG_INODE_EXISTS) {
Filipe Manana4f764e52015-02-23 19:53:35 +00004890 if (inode_only == LOG_INODE_ALL)
Josef Bacika95249b2012-10-11 16:17:34 -04004891 fast_search = true;
Filipe Manana4f764e52015-02-23 19:53:35 +00004892 max_key.type = BTRFS_XATTR_ITEM_KEY;
Josef Bacika95249b2012-10-11 16:17:34 -04004893 ret = drop_objectid_items(trans, log, path, ino,
4894 max_key.type);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004895 } else {
Liu Bo183f37f2012-11-01 06:38:47 +00004896 if (inode_only == LOG_INODE_ALL)
4897 fast_search = true;
Josef Bacika95249b2012-10-11 16:17:34 -04004898 goto log_extents;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004899 }
Josef Bacika95249b2012-10-11 16:17:34 -04004900
Chris Masone02119d2008-09-05 16:13:11 -04004901 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004902 if (ret) {
4903 err = ret;
4904 goto out_unlock;
4905 }
Chris Masone02119d2008-09-05 16:13:11 -04004906
Chris Masond3977122009-01-05 21:25:51 -05004907 while (1) {
Chris Mason31ff1cd2008-09-11 16:17:57 -04004908 ins_nr = 0;
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01004909 ret = btrfs_search_forward(root, &min_key,
Eric Sandeende78b512013-01-31 18:21:12 +00004910 path, trans->transid);
Liu Bofb770ae2016-07-05 12:10:14 -07004911 if (ret < 0) {
4912 err = ret;
4913 goto out_unlock;
4914 }
Chris Masone02119d2008-09-05 16:13:11 -04004915 if (ret != 0)
4916 break;
Chris Mason3a5f1d42008-09-11 15:53:37 -04004917again:
Chris Mason31ff1cd2008-09-11 16:17:57 -04004918 /* note, ins_nr might be > 0 here, cleanup outside the loop */
Li Zefan33345d012011-04-20 10:31:50 +08004919 if (min_key.objectid != ino)
Chris Masone02119d2008-09-05 16:13:11 -04004920 break;
4921 if (min_key.type > max_key.type)
4922 break;
Chris Mason31ff1cd2008-09-11 16:17:57 -04004923
Filipe Mananae4545de2015-06-17 12:49:23 +01004924 if (min_key.type == BTRFS_INODE_ITEM_KEY)
4925 need_log_inode_item = false;
4926
Filipe Manana56f23fd2016-03-30 23:37:21 +01004927 if ((min_key.type == BTRFS_INODE_REF_KEY ||
4928 min_key.type == BTRFS_INODE_EXTREF_KEY) &&
Nikolay Borisova59108a2017-01-18 00:31:48 +02004929 inode->generation == trans->transid) {
Filipe Manana44f714d2016-06-06 16:11:13 +01004930 u64 other_ino = 0;
4931
Filipe Manana56f23fd2016-03-30 23:37:21 +01004932 ret = btrfs_check_ref_name_override(path->nodes[0],
Nikolay Borisova59108a2017-01-18 00:31:48 +02004933 path->slots[0], &min_key, inode,
4934 &other_ino);
Filipe Manana56f23fd2016-03-30 23:37:21 +01004935 if (ret < 0) {
4936 err = ret;
4937 goto out_unlock;
Filipe Manana28a23592016-08-23 21:13:51 +01004938 } else if (ret > 0 && ctx &&
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004939 other_ino != btrfs_ino(BTRFS_I(ctx->inode))) {
Filipe Manana44f714d2016-06-06 16:11:13 +01004940 struct btrfs_key inode_key;
4941 struct inode *other_inode;
4942
4943 if (ins_nr > 0) {
4944 ins_nr++;
4945 } else {
4946 ins_nr = 1;
4947 ins_start_slot = path->slots[0];
4948 }
Nikolay Borisova59108a2017-01-18 00:31:48 +02004949 ret = copy_items(trans, inode, dst_path, path,
Filipe Manana44f714d2016-06-06 16:11:13 +01004950 &last_extent, ins_start_slot,
4951 ins_nr, inode_only,
4952 logged_isize);
4953 if (ret < 0) {
4954 err = ret;
4955 goto out_unlock;
4956 }
4957 ins_nr = 0;
4958 btrfs_release_path(path);
4959 inode_key.objectid = other_ino;
4960 inode_key.type = BTRFS_INODE_ITEM_KEY;
4961 inode_key.offset = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004962 other_inode = btrfs_iget(fs_info->sb,
Filipe Manana44f714d2016-06-06 16:11:13 +01004963 &inode_key, root,
4964 NULL);
4965 /*
4966 * If the other inode that had a conflicting dir
4967 * entry was deleted in the current transaction,
4968 * we don't need to do more work nor fallback to
4969 * a transaction commit.
4970 */
4971 if (IS_ERR(other_inode) &&
4972 PTR_ERR(other_inode) == -ENOENT) {
4973 goto next_key;
4974 } else if (IS_ERR(other_inode)) {
4975 err = PTR_ERR(other_inode);
4976 goto out_unlock;
4977 }
4978 /*
4979 * We are safe logging the other inode without
4980 * acquiring its i_mutex as long as we log with
4981 * the LOG_INODE_EXISTS mode. We're safe against
4982 * concurrent renames of the other inode as well
4983 * because during a rename we pin the log and
4984 * update the log with the new name before we
4985 * unpin it.
4986 */
Nikolay Borisova59108a2017-01-18 00:31:48 +02004987 err = btrfs_log_inode(trans, root,
4988 BTRFS_I(other_inode),
4989 LOG_OTHER_INODE, 0, LLONG_MAX,
4990 ctx);
Filipe Manana44f714d2016-06-06 16:11:13 +01004991 iput(other_inode);
4992 if (err)
4993 goto out_unlock;
4994 else
4995 goto next_key;
Filipe Manana56f23fd2016-03-30 23:37:21 +01004996 }
4997 }
4998
Filipe Manana36283bf2015-06-20 00:44:51 +01004999 /* Skip xattrs, we log them later with btrfs_log_all_xattrs() */
5000 if (min_key.type == BTRFS_XATTR_ITEM_KEY) {
5001 if (ins_nr == 0)
5002 goto next_slot;
Nikolay Borisova59108a2017-01-18 00:31:48 +02005003 ret = copy_items(trans, inode, dst_path, path,
Filipe Manana36283bf2015-06-20 00:44:51 +01005004 &last_extent, ins_start_slot,
5005 ins_nr, inode_only, logged_isize);
5006 if (ret < 0) {
5007 err = ret;
5008 goto out_unlock;
5009 }
5010 ins_nr = 0;
5011 if (ret) {
5012 btrfs_release_path(path);
5013 continue;
5014 }
5015 goto next_slot;
5016 }
5017
Chris Mason31ff1cd2008-09-11 16:17:57 -04005018 if (ins_nr && ins_start_slot + ins_nr == path->slots[0]) {
5019 ins_nr++;
5020 goto next_slot;
5021 } else if (!ins_nr) {
5022 ins_start_slot = path->slots[0];
5023 ins_nr = 1;
5024 goto next_slot;
Chris Masone02119d2008-09-05 16:13:11 -04005025 }
5026
Nikolay Borisova59108a2017-01-18 00:31:48 +02005027 ret = copy_items(trans, inode, dst_path, path, &last_extent,
Filipe Manana1a4bcf42015-02-13 12:30:56 +00005028 ins_start_slot, ins_nr, inode_only,
5029 logged_isize);
Josef Bacik16e75492013-10-22 12:18:51 -04005030 if (ret < 0) {
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005031 err = ret;
5032 goto out_unlock;
Rasmus Villemoesa71db862014-06-20 21:51:43 +02005033 }
5034 if (ret) {
Josef Bacik16e75492013-10-22 12:18:51 -04005035 ins_nr = 0;
5036 btrfs_release_path(path);
5037 continue;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005038 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04005039 ins_nr = 1;
5040 ins_start_slot = path->slots[0];
5041next_slot:
Chris Masone02119d2008-09-05 16:13:11 -04005042
Chris Mason3a5f1d42008-09-11 15:53:37 -04005043 nritems = btrfs_header_nritems(path->nodes[0]);
5044 path->slots[0]++;
5045 if (path->slots[0] < nritems) {
5046 btrfs_item_key_to_cpu(path->nodes[0], &min_key,
5047 path->slots[0]);
5048 goto again;
5049 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04005050 if (ins_nr) {
Nikolay Borisova59108a2017-01-18 00:31:48 +02005051 ret = copy_items(trans, inode, dst_path, path,
Josef Bacik16e75492013-10-22 12:18:51 -04005052 &last_extent, ins_start_slot,
Filipe Manana1a4bcf42015-02-13 12:30:56 +00005053 ins_nr, inode_only, logged_isize);
Josef Bacik16e75492013-10-22 12:18:51 -04005054 if (ret < 0) {
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005055 err = ret;
5056 goto out_unlock;
5057 }
Josef Bacik16e75492013-10-22 12:18:51 -04005058 ret = 0;
Chris Mason31ff1cd2008-09-11 16:17:57 -04005059 ins_nr = 0;
5060 }
David Sterbab3b4aa72011-04-21 01:20:15 +02005061 btrfs_release_path(path);
Filipe Manana44f714d2016-06-06 16:11:13 +01005062next_key:
Filipe David Borba Manana3d41d702013-10-01 17:06:53 +01005063 if (min_key.offset < (u64)-1) {
Chris Masone02119d2008-09-05 16:13:11 -04005064 min_key.offset++;
Filipe David Borba Manana3d41d702013-10-01 17:06:53 +01005065 } else if (min_key.type < max_key.type) {
Chris Masone02119d2008-09-05 16:13:11 -04005066 min_key.type++;
Filipe David Borba Manana3d41d702013-10-01 17:06:53 +01005067 min_key.offset = 0;
5068 } else {
Chris Masone02119d2008-09-05 16:13:11 -04005069 break;
Filipe David Borba Manana3d41d702013-10-01 17:06:53 +01005070 }
Chris Masone02119d2008-09-05 16:13:11 -04005071 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04005072 if (ins_nr) {
Nikolay Borisova59108a2017-01-18 00:31:48 +02005073 ret = copy_items(trans, inode, dst_path, path, &last_extent,
Filipe Manana1a4bcf42015-02-13 12:30:56 +00005074 ins_start_slot, ins_nr, inode_only,
5075 logged_isize);
Josef Bacik16e75492013-10-22 12:18:51 -04005076 if (ret < 0) {
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005077 err = ret;
5078 goto out_unlock;
5079 }
Josef Bacik16e75492013-10-22 12:18:51 -04005080 ret = 0;
Chris Mason31ff1cd2008-09-11 16:17:57 -04005081 ins_nr = 0;
5082 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04005083
Filipe Manana36283bf2015-06-20 00:44:51 +01005084 btrfs_release_path(path);
5085 btrfs_release_path(dst_path);
Nikolay Borisova59108a2017-01-18 00:31:48 +02005086 err = btrfs_log_all_xattrs(trans, root, inode, path, dst_path);
Filipe Manana36283bf2015-06-20 00:44:51 +01005087 if (err)
5088 goto out_unlock;
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01005089 if (max_key.type >= BTRFS_EXTENT_DATA_KEY && !fast_search) {
5090 btrfs_release_path(path);
5091 btrfs_release_path(dst_path);
Nikolay Borisova59108a2017-01-18 00:31:48 +02005092 err = btrfs_log_trailing_hole(trans, root, inode, path);
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01005093 if (err)
5094 goto out_unlock;
5095 }
Josef Bacika95249b2012-10-11 16:17:34 -04005096log_extents:
Josef Bacikf3b15cc2013-07-22 12:54:30 -04005097 btrfs_release_path(path);
5098 btrfs_release_path(dst_path);
Filipe Mananae4545de2015-06-17 12:49:23 +01005099 if (need_log_inode_item) {
Nikolay Borisova59108a2017-01-18 00:31:48 +02005100 err = log_inode_item(trans, log, dst_path, inode);
Filipe Mananae4545de2015-06-17 12:49:23 +01005101 if (err)
5102 goto out_unlock;
5103 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04005104 if (fast_search) {
Nikolay Borisova59108a2017-01-18 00:31:48 +02005105 ret = btrfs_log_changed_extents(trans, root, inode, dst_path,
Filipe Mananade0ee0e2016-01-21 10:17:54 +00005106 &logged_list, ctx, start, end);
Josef Bacik5dc562c2012-08-17 13:14:17 -04005107 if (ret) {
5108 err = ret;
5109 goto out_unlock;
5110 }
Josef Bacikd006a042013-11-12 20:54:09 -05005111 } else if (inode_only == LOG_INODE_ALL) {
Liu Bo06d3d222012-08-27 10:52:19 -06005112 struct extent_map *em, *n;
5113
Filipe Manana49dae1b2014-09-06 22:34:39 +01005114 write_lock(&em_tree->lock);
5115 /*
5116 * We can't just remove every em if we're called for a ranged
5117 * fsync - that is, one that doesn't cover the whole possible
5118 * file range (0 to LLONG_MAX). This is because we can have
5119 * em's that fall outside the range we're logging and therefore
5120 * their ordered operations haven't completed yet
5121 * (btrfs_finish_ordered_io() not invoked yet). This means we
5122 * didn't get their respective file extent item in the fs/subvol
5123 * tree yet, and need to let the next fast fsync (one which
5124 * consults the list of modified extent maps) find the em so
5125 * that it logs a matching file extent item and waits for the
5126 * respective ordered operation to complete (if it's still
5127 * running).
5128 *
5129 * Removing every em outside the range we're logging would make
5130 * the next fast fsync not log their matching file extent items,
5131 * therefore making us lose data after a log replay.
5132 */
5133 list_for_each_entry_safe(em, n, &em_tree->modified_extents,
5134 list) {
5135 const u64 mod_end = em->mod_start + em->mod_len - 1;
5136
5137 if (em->mod_start >= start && mod_end <= end)
5138 list_del_init(&em->list);
5139 }
5140 write_unlock(&em_tree->lock);
Josef Bacik5dc562c2012-08-17 13:14:17 -04005141 }
5142
Nikolay Borisova59108a2017-01-18 00:31:48 +02005143 if (inode_only == LOG_INODE_ALL && S_ISDIR(inode->vfs_inode.i_mode)) {
5144 ret = log_directory_changes(trans, root, inode, path, dst_path,
5145 ctx);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005146 if (ret) {
5147 err = ret;
5148 goto out_unlock;
5149 }
Chris Masone02119d2008-09-05 16:13:11 -04005150 }
Filipe Manana49dae1b2014-09-06 22:34:39 +01005151
Nikolay Borisova59108a2017-01-18 00:31:48 +02005152 spin_lock(&inode->lock);
5153 inode->logged_trans = trans->transid;
5154 inode->last_log_commit = inode->last_sub_trans;
5155 spin_unlock(&inode->lock);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005156out_unlock:
Miao Xie827463c2014-01-14 20:31:51 +08005157 if (unlikely(err))
5158 btrfs_put_logged_extents(&logged_list);
5159 else
5160 btrfs_submit_logged_extents(&logged_list, log);
Nikolay Borisova59108a2017-01-18 00:31:48 +02005161 mutex_unlock(&inode->log_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04005162
5163 btrfs_free_path(path);
5164 btrfs_free_path(dst_path);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005165 return err;
Chris Masone02119d2008-09-05 16:13:11 -04005166}
5167
Chris Mason12fcfd22009-03-24 10:24:20 -04005168/*
Filipe Manana2be63d52016-02-12 11:34:23 +00005169 * Check if we must fallback to a transaction commit when logging an inode.
5170 * This must be called after logging the inode and is used only in the context
5171 * when fsyncing an inode requires the need to log some other inode - in which
5172 * case we can't lock the i_mutex of each other inode we need to log as that
5173 * can lead to deadlocks with concurrent fsync against other inodes (as we can
5174 * log inodes up or down in the hierarchy) or rename operations for example. So
5175 * we take the log_mutex of the inode after we have logged it and then check for
5176 * its last_unlink_trans value - this is safe because any task setting
5177 * last_unlink_trans must take the log_mutex and it must do this before it does
5178 * the actual unlink operation, so if we do this check before a concurrent task
5179 * sets last_unlink_trans it means we've logged a consistent version/state of
5180 * all the inode items, otherwise we are not sure and must do a transaction
Nicholas D Steeves01327612016-05-19 21:18:45 -04005181 * commit (the concurrent task might have only updated last_unlink_trans before
Filipe Manana2be63d52016-02-12 11:34:23 +00005182 * we logged the inode or it might have also done the unlink).
5183 */
5184static bool btrfs_must_commit_transaction(struct btrfs_trans_handle *trans,
Nikolay Borisovab1717b2017-01-18 00:31:27 +02005185 struct btrfs_inode *inode)
Filipe Manana2be63d52016-02-12 11:34:23 +00005186{
Nikolay Borisovab1717b2017-01-18 00:31:27 +02005187 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Filipe Manana2be63d52016-02-12 11:34:23 +00005188 bool ret = false;
5189
Nikolay Borisovab1717b2017-01-18 00:31:27 +02005190 mutex_lock(&inode->log_mutex);
5191 if (inode->last_unlink_trans > fs_info->last_trans_committed) {
Filipe Manana2be63d52016-02-12 11:34:23 +00005192 /*
5193 * Make sure any commits to the log are forced to be full
5194 * commits.
5195 */
5196 btrfs_set_log_full_commit(fs_info, trans);
5197 ret = true;
5198 }
Nikolay Borisovab1717b2017-01-18 00:31:27 +02005199 mutex_unlock(&inode->log_mutex);
Filipe Manana2be63d52016-02-12 11:34:23 +00005200
5201 return ret;
5202}
5203
5204/*
Chris Mason12fcfd22009-03-24 10:24:20 -04005205 * follow the dentry parent pointers up the chain and see if any
5206 * of the directories in it require a full commit before they can
5207 * be logged. Returns zero if nothing special needs to be done or 1 if
5208 * a full commit is required.
5209 */
5210static noinline int check_parent_dirs_for_sync(struct btrfs_trans_handle *trans,
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005211 struct btrfs_inode *inode,
Chris Mason12fcfd22009-03-24 10:24:20 -04005212 struct dentry *parent,
5213 struct super_block *sb,
5214 u64 last_committed)
Chris Masone02119d2008-09-05 16:13:11 -04005215{
Chris Mason12fcfd22009-03-24 10:24:20 -04005216 int ret = 0;
Josef Bacik6a912212010-11-20 09:48:00 +00005217 struct dentry *old_parent = NULL;
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005218 struct btrfs_inode *orig_inode = inode;
Chris Masone02119d2008-09-05 16:13:11 -04005219
Chris Masonaf4176b2009-03-24 10:24:31 -04005220 /*
5221 * for regular files, if its inode is already on disk, we don't
5222 * have to worry about the parents at all. This is because
5223 * we can use the last_unlink_trans field to record renames
5224 * and other fun in this file.
5225 */
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005226 if (S_ISREG(inode->vfs_inode.i_mode) &&
5227 inode->generation <= last_committed &&
5228 inode->last_unlink_trans <= last_committed)
5229 goto out;
Chris Masonaf4176b2009-03-24 10:24:31 -04005230
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005231 if (!S_ISDIR(inode->vfs_inode.i_mode)) {
Al Virofc640052016-04-10 01:33:30 -04005232 if (!parent || d_really_is_negative(parent) || sb != parent->d_sb)
Chris Mason12fcfd22009-03-24 10:24:20 -04005233 goto out;
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005234 inode = BTRFS_I(d_inode(parent));
Chris Mason12fcfd22009-03-24 10:24:20 -04005235 }
5236
5237 while (1) {
Josef Bacikde2b5302013-09-11 09:36:30 -04005238 /*
5239 * If we are logging a directory then we start with our inode,
Nicholas D Steeves01327612016-05-19 21:18:45 -04005240 * not our parent's inode, so we need to skip setting the
Josef Bacikde2b5302013-09-11 09:36:30 -04005241 * logged_trans so that further down in the log code we don't
5242 * think this inode has already been logged.
5243 */
5244 if (inode != orig_inode)
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005245 inode->logged_trans = trans->transid;
Chris Mason12fcfd22009-03-24 10:24:20 -04005246 smp_mb();
5247
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005248 if (btrfs_must_commit_transaction(trans, inode)) {
Chris Mason12fcfd22009-03-24 10:24:20 -04005249 ret = 1;
5250 break;
5251 }
5252
Al Virofc640052016-04-10 01:33:30 -04005253 if (!parent || d_really_is_negative(parent) || sb != parent->d_sb)
Chris Mason12fcfd22009-03-24 10:24:20 -04005254 break;
5255
Filipe Manana44f714d2016-06-06 16:11:13 +01005256 if (IS_ROOT(parent)) {
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005257 inode = BTRFS_I(d_inode(parent));
5258 if (btrfs_must_commit_transaction(trans, inode))
Filipe Manana44f714d2016-06-06 16:11:13 +01005259 ret = 1;
Chris Mason12fcfd22009-03-24 10:24:20 -04005260 break;
Filipe Manana44f714d2016-06-06 16:11:13 +01005261 }
Chris Mason12fcfd22009-03-24 10:24:20 -04005262
Josef Bacik6a912212010-11-20 09:48:00 +00005263 parent = dget_parent(parent);
5264 dput(old_parent);
5265 old_parent = parent;
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005266 inode = BTRFS_I(d_inode(parent));
Chris Mason12fcfd22009-03-24 10:24:20 -04005267
5268 }
Josef Bacik6a912212010-11-20 09:48:00 +00005269 dput(old_parent);
Chris Mason12fcfd22009-03-24 10:24:20 -04005270out:
Chris Masone02119d2008-09-05 16:13:11 -04005271 return ret;
5272}
5273
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005274struct btrfs_dir_list {
5275 u64 ino;
5276 struct list_head list;
5277};
5278
5279/*
5280 * Log the inodes of the new dentries of a directory. See log_dir_items() for
5281 * details about the why it is needed.
5282 * This is a recursive operation - if an existing dentry corresponds to a
5283 * directory, that directory's new entries are logged too (same behaviour as
5284 * ext3/4, xfs, f2fs, reiserfs, nilfs2). Note that when logging the inodes
5285 * the dentries point to we do not lock their i_mutex, otherwise lockdep
5286 * complains about the following circular lock dependency / possible deadlock:
5287 *
5288 * CPU0 CPU1
5289 * ---- ----
5290 * lock(&type->i_mutex_dir_key#3/2);
5291 * lock(sb_internal#2);
5292 * lock(&type->i_mutex_dir_key#3/2);
5293 * lock(&sb->s_type->i_mutex_key#14);
5294 *
5295 * Where sb_internal is the lock (a counter that works as a lock) acquired by
5296 * sb_start_intwrite() in btrfs_start_transaction().
5297 * Not locking i_mutex of the inodes is still safe because:
5298 *
5299 * 1) For regular files we log with a mode of LOG_INODE_EXISTS. It's possible
5300 * that while logging the inode new references (names) are added or removed
5301 * from the inode, leaving the logged inode item with a link count that does
5302 * not match the number of logged inode reference items. This is fine because
5303 * at log replay time we compute the real number of links and correct the
5304 * link count in the inode item (see replay_one_buffer() and
5305 * link_to_fixup_dir());
5306 *
5307 * 2) For directories we log with a mode of LOG_INODE_ALL. It's possible that
5308 * while logging the inode's items new items with keys BTRFS_DIR_ITEM_KEY and
5309 * BTRFS_DIR_INDEX_KEY are added to fs/subvol tree and the logged inode item
5310 * has a size that doesn't match the sum of the lengths of all the logged
5311 * names. This does not result in a problem because if a dir_item key is
5312 * logged but its matching dir_index key is not logged, at log replay time we
5313 * don't use it to replay the respective name (see replay_one_name()). On the
5314 * other hand if only the dir_index key ends up being logged, the respective
5315 * name is added to the fs/subvol tree with both the dir_item and dir_index
5316 * keys created (see replay_one_name()).
5317 * The directory's inode item with a wrong i_size is not a problem as well,
5318 * since we don't use it at log replay time to set the i_size in the inode
5319 * item of the fs/subvol tree (see overwrite_item()).
5320 */
5321static int log_new_dir_dentries(struct btrfs_trans_handle *trans,
5322 struct btrfs_root *root,
Nikolay Borisov51cc0d32017-01-18 00:31:43 +02005323 struct btrfs_inode *start_inode,
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005324 struct btrfs_log_ctx *ctx)
5325{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005326 struct btrfs_fs_info *fs_info = root->fs_info;
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005327 struct btrfs_root *log = root->log_root;
5328 struct btrfs_path *path;
5329 LIST_HEAD(dir_list);
5330 struct btrfs_dir_list *dir_elem;
5331 int ret = 0;
5332
5333 path = btrfs_alloc_path();
5334 if (!path)
5335 return -ENOMEM;
5336
5337 dir_elem = kmalloc(sizeof(*dir_elem), GFP_NOFS);
5338 if (!dir_elem) {
5339 btrfs_free_path(path);
5340 return -ENOMEM;
5341 }
Nikolay Borisov51cc0d32017-01-18 00:31:43 +02005342 dir_elem->ino = btrfs_ino(start_inode);
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005343 list_add_tail(&dir_elem->list, &dir_list);
5344
5345 while (!list_empty(&dir_list)) {
5346 struct extent_buffer *leaf;
5347 struct btrfs_key min_key;
5348 int nritems;
5349 int i;
5350
5351 dir_elem = list_first_entry(&dir_list, struct btrfs_dir_list,
5352 list);
5353 if (ret)
5354 goto next_dir_inode;
5355
5356 min_key.objectid = dir_elem->ino;
5357 min_key.type = BTRFS_DIR_ITEM_KEY;
5358 min_key.offset = 0;
5359again:
5360 btrfs_release_path(path);
5361 ret = btrfs_search_forward(log, &min_key, path, trans->transid);
5362 if (ret < 0) {
5363 goto next_dir_inode;
5364 } else if (ret > 0) {
5365 ret = 0;
5366 goto next_dir_inode;
5367 }
5368
5369process_leaf:
5370 leaf = path->nodes[0];
5371 nritems = btrfs_header_nritems(leaf);
5372 for (i = path->slots[0]; i < nritems; i++) {
5373 struct btrfs_dir_item *di;
5374 struct btrfs_key di_key;
5375 struct inode *di_inode;
5376 struct btrfs_dir_list *new_dir_elem;
5377 int log_mode = LOG_INODE_EXISTS;
5378 int type;
5379
5380 btrfs_item_key_to_cpu(leaf, &min_key, i);
5381 if (min_key.objectid != dir_elem->ino ||
5382 min_key.type != BTRFS_DIR_ITEM_KEY)
5383 goto next_dir_inode;
5384
5385 di = btrfs_item_ptr(leaf, i, struct btrfs_dir_item);
5386 type = btrfs_dir_type(leaf, di);
5387 if (btrfs_dir_transid(leaf, di) < trans->transid &&
5388 type != BTRFS_FT_DIR)
5389 continue;
5390 btrfs_dir_item_key_to_cpu(leaf, di, &di_key);
5391 if (di_key.type == BTRFS_ROOT_ITEM_KEY)
5392 continue;
5393
Robbie Koec125cf2016-10-28 10:48:26 +08005394 btrfs_release_path(path);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005395 di_inode = btrfs_iget(fs_info->sb, &di_key, root, NULL);
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005396 if (IS_ERR(di_inode)) {
5397 ret = PTR_ERR(di_inode);
5398 goto next_dir_inode;
5399 }
5400
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02005401 if (btrfs_inode_in_log(BTRFS_I(di_inode), trans->transid)) {
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005402 iput(di_inode);
Robbie Koec125cf2016-10-28 10:48:26 +08005403 break;
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005404 }
5405
5406 ctx->log_new_dentries = false;
Filipe Manana3f9749f2016-04-25 04:45:02 +01005407 if (type == BTRFS_FT_DIR || type == BTRFS_FT_SYMLINK)
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005408 log_mode = LOG_INODE_ALL;
Nikolay Borisova59108a2017-01-18 00:31:48 +02005409 ret = btrfs_log_inode(trans, root, BTRFS_I(di_inode),
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005410 log_mode, 0, LLONG_MAX, ctx);
Filipe Manana2be63d52016-02-12 11:34:23 +00005411 if (!ret &&
Nikolay Borisovab1717b2017-01-18 00:31:27 +02005412 btrfs_must_commit_transaction(trans, BTRFS_I(di_inode)))
Filipe Manana2be63d52016-02-12 11:34:23 +00005413 ret = 1;
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005414 iput(di_inode);
5415 if (ret)
5416 goto next_dir_inode;
5417 if (ctx->log_new_dentries) {
5418 new_dir_elem = kmalloc(sizeof(*new_dir_elem),
5419 GFP_NOFS);
5420 if (!new_dir_elem) {
5421 ret = -ENOMEM;
5422 goto next_dir_inode;
5423 }
5424 new_dir_elem->ino = di_key.objectid;
5425 list_add_tail(&new_dir_elem->list, &dir_list);
5426 }
5427 break;
5428 }
5429 if (i == nritems) {
5430 ret = btrfs_next_leaf(log, path);
5431 if (ret < 0) {
5432 goto next_dir_inode;
5433 } else if (ret > 0) {
5434 ret = 0;
5435 goto next_dir_inode;
5436 }
5437 goto process_leaf;
5438 }
5439 if (min_key.offset < (u64)-1) {
5440 min_key.offset++;
5441 goto again;
5442 }
5443next_dir_inode:
5444 list_del(&dir_elem->list);
5445 kfree(dir_elem);
5446 }
5447
5448 btrfs_free_path(path);
5449 return ret;
5450}
5451
Filipe Manana18aa0922015-08-05 16:49:08 +01005452static int btrfs_log_all_parents(struct btrfs_trans_handle *trans,
Nikolay Borisovd0a0b782017-02-20 13:50:30 +02005453 struct btrfs_inode *inode,
Filipe Manana18aa0922015-08-05 16:49:08 +01005454 struct btrfs_log_ctx *ctx)
5455{
Nikolay Borisovd0a0b782017-02-20 13:50:30 +02005456 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Filipe Manana18aa0922015-08-05 16:49:08 +01005457 int ret;
5458 struct btrfs_path *path;
5459 struct btrfs_key key;
Nikolay Borisovd0a0b782017-02-20 13:50:30 +02005460 struct btrfs_root *root = inode->root;
5461 const u64 ino = btrfs_ino(inode);
Filipe Manana18aa0922015-08-05 16:49:08 +01005462
5463 path = btrfs_alloc_path();
5464 if (!path)
5465 return -ENOMEM;
5466 path->skip_locking = 1;
5467 path->search_commit_root = 1;
5468
5469 key.objectid = ino;
5470 key.type = BTRFS_INODE_REF_KEY;
5471 key.offset = 0;
5472 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5473 if (ret < 0)
5474 goto out;
5475
5476 while (true) {
5477 struct extent_buffer *leaf = path->nodes[0];
5478 int slot = path->slots[0];
5479 u32 cur_offset = 0;
5480 u32 item_size;
5481 unsigned long ptr;
5482
5483 if (slot >= btrfs_header_nritems(leaf)) {
5484 ret = btrfs_next_leaf(root, path);
5485 if (ret < 0)
5486 goto out;
5487 else if (ret > 0)
5488 break;
5489 continue;
5490 }
5491
5492 btrfs_item_key_to_cpu(leaf, &key, slot);
5493 /* BTRFS_INODE_EXTREF_KEY is BTRFS_INODE_REF_KEY + 1 */
5494 if (key.objectid != ino || key.type > BTRFS_INODE_EXTREF_KEY)
5495 break;
5496
5497 item_size = btrfs_item_size_nr(leaf, slot);
5498 ptr = btrfs_item_ptr_offset(leaf, slot);
5499 while (cur_offset < item_size) {
5500 struct btrfs_key inode_key;
5501 struct inode *dir_inode;
5502
5503 inode_key.type = BTRFS_INODE_ITEM_KEY;
5504 inode_key.offset = 0;
5505
5506 if (key.type == BTRFS_INODE_EXTREF_KEY) {
5507 struct btrfs_inode_extref *extref;
5508
5509 extref = (struct btrfs_inode_extref *)
5510 (ptr + cur_offset);
5511 inode_key.objectid = btrfs_inode_extref_parent(
5512 leaf, extref);
5513 cur_offset += sizeof(*extref);
5514 cur_offset += btrfs_inode_extref_name_len(leaf,
5515 extref);
5516 } else {
5517 inode_key.objectid = key.offset;
5518 cur_offset = item_size;
5519 }
5520
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005521 dir_inode = btrfs_iget(fs_info->sb, &inode_key,
Filipe Manana18aa0922015-08-05 16:49:08 +01005522 root, NULL);
5523 /* If parent inode was deleted, skip it. */
5524 if (IS_ERR(dir_inode))
5525 continue;
5526
Filipe Manana657ed1a2016-04-06 17:11:56 +01005527 if (ctx)
5528 ctx->log_new_dentries = false;
Nikolay Borisova59108a2017-01-18 00:31:48 +02005529 ret = btrfs_log_inode(trans, root, BTRFS_I(dir_inode),
Filipe Manana18aa0922015-08-05 16:49:08 +01005530 LOG_INODE_ALL, 0, LLONG_MAX, ctx);
Filipe Manana2be63d52016-02-12 11:34:23 +00005531 if (!ret &&
Nikolay Borisovab1717b2017-01-18 00:31:27 +02005532 btrfs_must_commit_transaction(trans, BTRFS_I(dir_inode)))
Filipe Manana2be63d52016-02-12 11:34:23 +00005533 ret = 1;
Filipe Manana657ed1a2016-04-06 17:11:56 +01005534 if (!ret && ctx && ctx->log_new_dentries)
5535 ret = log_new_dir_dentries(trans, root,
David Sterbaf85b7372017-01-20 14:54:07 +01005536 BTRFS_I(dir_inode), ctx);
Filipe Manana18aa0922015-08-05 16:49:08 +01005537 iput(dir_inode);
5538 if (ret)
5539 goto out;
5540 }
5541 path->slots[0]++;
5542 }
5543 ret = 0;
5544out:
5545 btrfs_free_path(path);
5546 return ret;
5547}
5548
Chris Masone02119d2008-09-05 16:13:11 -04005549/*
5550 * helper function around btrfs_log_inode to make sure newly created
5551 * parent directories also end up in the log. A minimal inode and backref
5552 * only logging is done of any parent directories that are older than
5553 * the last committed transaction
5554 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00005555static int btrfs_log_inode_parent(struct btrfs_trans_handle *trans,
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005556 struct btrfs_inode *inode,
Filipe Manana49dae1b2014-09-06 22:34:39 +01005557 struct dentry *parent,
5558 const loff_t start,
5559 const loff_t end,
Edmund Nadolski41a1ead2017-11-20 13:24:47 -07005560 int inode_only,
Miao Xie8b050d32014-02-20 18:08:58 +08005561 struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -04005562{
Nikolay Borisovf8822742018-02-27 17:37:17 +02005563 struct btrfs_root *root = inode->root;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005564 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04005565 struct super_block *sb;
Josef Bacik6a912212010-11-20 09:48:00 +00005566 struct dentry *old_parent = NULL;
Chris Mason12fcfd22009-03-24 10:24:20 -04005567 int ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005568 u64 last_committed = fs_info->last_trans_committed;
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005569 bool log_dentries = false;
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005570 struct btrfs_inode *orig_inode = inode;
Chris Mason12fcfd22009-03-24 10:24:20 -04005571
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005572 sb = inode->vfs_inode.i_sb;
Chris Mason12fcfd22009-03-24 10:24:20 -04005573
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005574 if (btrfs_test_opt(fs_info, NOTREELOG)) {
Sage Weil3a5e1402009-04-02 16:49:40 -04005575 ret = 1;
5576 goto end_no_trans;
5577 }
5578
Miao Xie995946d2014-04-02 19:51:06 +08005579 /*
5580 * The prev transaction commit doesn't complete, we need do
5581 * full commit by ourselves.
5582 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005583 if (fs_info->last_trans_log_full_commit >
5584 fs_info->last_trans_committed) {
Chris Mason12fcfd22009-03-24 10:24:20 -04005585 ret = 1;
5586 goto end_no_trans;
5587 }
5588
Nikolay Borisovf8822742018-02-27 17:37:17 +02005589 if (btrfs_root_refs(&root->root_item) == 0) {
Yan, Zheng76dda932009-09-21 16:00:26 -04005590 ret = 1;
5591 goto end_no_trans;
5592 }
5593
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005594 ret = check_parent_dirs_for_sync(trans, inode, parent, sb,
5595 last_committed);
Chris Mason12fcfd22009-03-24 10:24:20 -04005596 if (ret)
5597 goto end_no_trans;
Chris Masone02119d2008-09-05 16:13:11 -04005598
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005599 if (btrfs_inode_in_log(inode, trans->transid)) {
Chris Mason257c62e2009-10-13 13:21:08 -04005600 ret = BTRFS_NO_LOG_SYNC;
5601 goto end_no_trans;
5602 }
5603
Miao Xie8b050d32014-02-20 18:08:58 +08005604 ret = start_log_trans(trans, root, ctx);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005605 if (ret)
Miao Xiee87ac132014-02-20 18:08:53 +08005606 goto end_no_trans;
Chris Mason12fcfd22009-03-24 10:24:20 -04005607
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005608 ret = btrfs_log_inode(trans, root, inode, inode_only, start, end, ctx);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005609 if (ret)
5610 goto end_trans;
Chris Mason12fcfd22009-03-24 10:24:20 -04005611
Chris Masonaf4176b2009-03-24 10:24:31 -04005612 /*
5613 * for regular files, if its inode is already on disk, we don't
5614 * have to worry about the parents at all. This is because
5615 * we can use the last_unlink_trans field to record renames
5616 * and other fun in this file.
5617 */
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005618 if (S_ISREG(inode->vfs_inode.i_mode) &&
5619 inode->generation <= last_committed &&
5620 inode->last_unlink_trans <= last_committed) {
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005621 ret = 0;
5622 goto end_trans;
5623 }
Chris Masonaf4176b2009-03-24 10:24:31 -04005624
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005625 if (S_ISDIR(inode->vfs_inode.i_mode) && ctx && ctx->log_new_dentries)
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005626 log_dentries = true;
5627
Filipe Manana18aa0922015-08-05 16:49:08 +01005628 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04005629 * On unlink we must make sure all our current and old parent directory
Filipe Manana18aa0922015-08-05 16:49:08 +01005630 * inodes are fully logged. This is to prevent leaving dangling
5631 * directory index entries in directories that were our parents but are
5632 * not anymore. Not doing this results in old parent directory being
5633 * impossible to delete after log replay (rmdir will always fail with
5634 * error -ENOTEMPTY).
5635 *
5636 * Example 1:
5637 *
5638 * mkdir testdir
5639 * touch testdir/foo
5640 * ln testdir/foo testdir/bar
5641 * sync
5642 * unlink testdir/bar
5643 * xfs_io -c fsync testdir/foo
5644 * <power failure>
5645 * mount fs, triggers log replay
5646 *
5647 * If we don't log the parent directory (testdir), after log replay the
5648 * directory still has an entry pointing to the file inode using the bar
5649 * name, but a matching BTRFS_INODE_[REF|EXTREF]_KEY does not exist and
5650 * the file inode has a link count of 1.
5651 *
5652 * Example 2:
5653 *
5654 * mkdir testdir
5655 * touch foo
5656 * ln foo testdir/foo2
5657 * ln foo testdir/foo3
5658 * sync
5659 * unlink testdir/foo3
5660 * xfs_io -c fsync foo
5661 * <power failure>
5662 * mount fs, triggers log replay
5663 *
5664 * Similar as the first example, after log replay the parent directory
5665 * testdir still has an entry pointing to the inode file with name foo3
5666 * but the file inode does not have a matching BTRFS_INODE_REF_KEY item
5667 * and has a link count of 2.
5668 */
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005669 if (inode->last_unlink_trans > last_committed) {
Filipe Manana18aa0922015-08-05 16:49:08 +01005670 ret = btrfs_log_all_parents(trans, orig_inode, ctx);
5671 if (ret)
5672 goto end_trans;
5673 }
5674
Chris Masond3977122009-01-05 21:25:51 -05005675 while (1) {
Al Virofc640052016-04-10 01:33:30 -04005676 if (!parent || d_really_is_negative(parent) || sb != parent->d_sb)
Chris Masone02119d2008-09-05 16:13:11 -04005677 break;
5678
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005679 inode = BTRFS_I(d_inode(parent));
5680 if (root != inode->root)
Yan, Zheng76dda932009-09-21 16:00:26 -04005681 break;
5682
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005683 if (inode->generation > last_committed) {
5684 ret = btrfs_log_inode(trans, root, inode,
5685 LOG_INODE_EXISTS, 0, LLONG_MAX, ctx);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005686 if (ret)
5687 goto end_trans;
Chris Mason12fcfd22009-03-24 10:24:20 -04005688 }
Yan, Zheng76dda932009-09-21 16:00:26 -04005689 if (IS_ROOT(parent))
Chris Masone02119d2008-09-05 16:13:11 -04005690 break;
Chris Mason12fcfd22009-03-24 10:24:20 -04005691
Josef Bacik6a912212010-11-20 09:48:00 +00005692 parent = dget_parent(parent);
5693 dput(old_parent);
5694 old_parent = parent;
Chris Masone02119d2008-09-05 16:13:11 -04005695 }
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005696 if (log_dentries)
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005697 ret = log_new_dir_dentries(trans, root, orig_inode, ctx);
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005698 else
5699 ret = 0;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005700end_trans:
Josef Bacik6a912212010-11-20 09:48:00 +00005701 dput(old_parent);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005702 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005703 btrfs_set_log_full_commit(fs_info, trans);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005704 ret = 1;
5705 }
Miao Xie8b050d32014-02-20 18:08:58 +08005706
5707 if (ret)
5708 btrfs_remove_log_ctx(root, ctx);
Chris Mason12fcfd22009-03-24 10:24:20 -04005709 btrfs_end_log_trans(root);
5710end_no_trans:
5711 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04005712}
5713
5714/*
5715 * it is not safe to log dentry if the chunk root has added new
5716 * chunks. This returns 0 if the dentry was logged, and 1 otherwise.
5717 * If this returns 1, you must commit the transaction to safely get your
5718 * data on disk.
5719 */
5720int btrfs_log_dentry_safe(struct btrfs_trans_handle *trans,
Nikolay Borisove5b84f7a2018-02-27 17:37:18 +02005721 struct dentry *dentry,
Filipe Manana49dae1b2014-09-06 22:34:39 +01005722 const loff_t start,
5723 const loff_t end,
Miao Xie8b050d32014-02-20 18:08:58 +08005724 struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -04005725{
Josef Bacik6a912212010-11-20 09:48:00 +00005726 struct dentry *parent = dget_parent(dentry);
5727 int ret;
5728
Nikolay Borisovf8822742018-02-27 17:37:17 +02005729 ret = btrfs_log_inode_parent(trans, BTRFS_I(d_inode(dentry)), parent,
5730 start, end, LOG_INODE_ALL, ctx);
Josef Bacik6a912212010-11-20 09:48:00 +00005731 dput(parent);
5732
5733 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04005734}
5735
5736/*
5737 * should be called during mount to recover any replay any log trees
5738 * from the FS
5739 */
5740int btrfs_recover_log_trees(struct btrfs_root *log_root_tree)
5741{
5742 int ret;
5743 struct btrfs_path *path;
5744 struct btrfs_trans_handle *trans;
5745 struct btrfs_key key;
5746 struct btrfs_key found_key;
5747 struct btrfs_key tmp_key;
5748 struct btrfs_root *log;
5749 struct btrfs_fs_info *fs_info = log_root_tree->fs_info;
5750 struct walk_control wc = {
5751 .process_func = process_one_buffer,
5752 .stage = 0,
5753 };
5754
Chris Masone02119d2008-09-05 16:13:11 -04005755 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00005756 if (!path)
5757 return -ENOMEM;
5758
Josef Bacikafcdd122016-09-02 15:40:02 -04005759 set_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags);
Chris Masone02119d2008-09-05 16:13:11 -04005760
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005761 trans = btrfs_start_transaction(fs_info->tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005762 if (IS_ERR(trans)) {
5763 ret = PTR_ERR(trans);
5764 goto error;
5765 }
Chris Masone02119d2008-09-05 16:13:11 -04005766
5767 wc.trans = trans;
5768 wc.pin = 1;
5769
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00005770 ret = walk_log_tree(trans, log_root_tree, &wc);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005771 if (ret) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005772 btrfs_handle_fs_error(fs_info, ret,
5773 "Failed to pin buffers while recovering log root tree.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005774 goto error;
5775 }
Chris Masone02119d2008-09-05 16:13:11 -04005776
5777again:
5778 key.objectid = BTRFS_TREE_LOG_OBJECTID;
5779 key.offset = (u64)-1;
David Sterba962a2982014-06-04 18:41:45 +02005780 key.type = BTRFS_ROOT_ITEM_KEY;
Chris Masone02119d2008-09-05 16:13:11 -04005781
Chris Masond3977122009-01-05 21:25:51 -05005782 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04005783 ret = btrfs_search_slot(NULL, log_root_tree, &key, path, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005784
5785 if (ret < 0) {
Anand Jain34d97002016-03-16 16:43:06 +08005786 btrfs_handle_fs_error(fs_info, ret,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005787 "Couldn't find tree log root.");
5788 goto error;
5789 }
Chris Masone02119d2008-09-05 16:13:11 -04005790 if (ret > 0) {
5791 if (path->slots[0] == 0)
5792 break;
5793 path->slots[0]--;
5794 }
5795 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
5796 path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02005797 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04005798 if (found_key.objectid != BTRFS_TREE_LOG_OBJECTID)
5799 break;
5800
Miao Xiecb517ea2013-05-15 07:48:19 +00005801 log = btrfs_read_fs_root(log_root_tree, &found_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005802 if (IS_ERR(log)) {
5803 ret = PTR_ERR(log);
Anand Jain34d97002016-03-16 16:43:06 +08005804 btrfs_handle_fs_error(fs_info, ret,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005805 "Couldn't read tree log root.");
5806 goto error;
5807 }
Chris Masone02119d2008-09-05 16:13:11 -04005808
5809 tmp_key.objectid = found_key.offset;
5810 tmp_key.type = BTRFS_ROOT_ITEM_KEY;
5811 tmp_key.offset = (u64)-1;
5812
5813 wc.replay_dest = btrfs_read_fs_root_no_name(fs_info, &tmp_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005814 if (IS_ERR(wc.replay_dest)) {
5815 ret = PTR_ERR(wc.replay_dest);
Josef Bacikb50c6e22013-04-25 15:55:30 -04005816 free_extent_buffer(log->node);
5817 free_extent_buffer(log->commit_root);
5818 kfree(log);
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005819 btrfs_handle_fs_error(fs_info, ret,
5820 "Couldn't read target root for tree log recovery.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005821 goto error;
5822 }
Chris Masone02119d2008-09-05 16:13:11 -04005823
Yan Zheng07d400a2009-01-06 11:42:00 -05005824 wc.replay_dest->log_root = log;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005825 btrfs_record_root_in_trans(trans, wc.replay_dest);
Chris Masone02119d2008-09-05 16:13:11 -04005826 ret = walk_log_tree(trans, log, &wc);
Chris Masone02119d2008-09-05 16:13:11 -04005827
Josef Bacikb50c6e22013-04-25 15:55:30 -04005828 if (!ret && wc.stage == LOG_WALK_REPLAY_ALL) {
Chris Masone02119d2008-09-05 16:13:11 -04005829 ret = fixup_inode_link_counts(trans, wc.replay_dest,
5830 path);
Chris Masone02119d2008-09-05 16:13:11 -04005831 }
Chris Masone02119d2008-09-05 16:13:11 -04005832
Liu Bo900c9982018-01-25 11:02:56 -07005833 if (!ret && wc.stage == LOG_WALK_REPLAY_ALL) {
5834 struct btrfs_root *root = wc.replay_dest;
5835
5836 btrfs_release_path(path);
5837
5838 /*
5839 * We have just replayed everything, and the highest
5840 * objectid of fs roots probably has changed in case
5841 * some inode_item's got replayed.
5842 *
5843 * root->objectid_mutex is not acquired as log replay
5844 * could only happen during mount.
5845 */
5846 ret = btrfs_find_highest_objectid(root,
5847 &root->highest_objectid);
5848 }
5849
Chris Masone02119d2008-09-05 16:13:11 -04005850 key.offset = found_key.offset - 1;
Yan Zheng07d400a2009-01-06 11:42:00 -05005851 wc.replay_dest->log_root = NULL;
Chris Masone02119d2008-09-05 16:13:11 -04005852 free_extent_buffer(log->node);
Chris Masonb263c2c2009-06-11 11:24:47 -04005853 free_extent_buffer(log->commit_root);
Chris Masone02119d2008-09-05 16:13:11 -04005854 kfree(log);
5855
Josef Bacikb50c6e22013-04-25 15:55:30 -04005856 if (ret)
5857 goto error;
5858
Chris Masone02119d2008-09-05 16:13:11 -04005859 if (found_key.offset == 0)
5860 break;
5861 }
David Sterbab3b4aa72011-04-21 01:20:15 +02005862 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04005863
5864 /* step one is to pin it all, step two is to replay just inodes */
5865 if (wc.pin) {
5866 wc.pin = 0;
5867 wc.process_func = replay_one_buffer;
5868 wc.stage = LOG_WALK_REPLAY_INODES;
5869 goto again;
5870 }
5871 /* step three is to replay everything */
5872 if (wc.stage < LOG_WALK_REPLAY_ALL) {
5873 wc.stage++;
5874 goto again;
5875 }
5876
5877 btrfs_free_path(path);
5878
Josef Bacikabefa552013-04-24 16:40:05 -04005879 /* step 4: commit the transaction, which also unpins the blocks */
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005880 ret = btrfs_commit_transaction(trans);
Josef Bacikabefa552013-04-24 16:40:05 -04005881 if (ret)
5882 return ret;
5883
Chris Masone02119d2008-09-05 16:13:11 -04005884 free_extent_buffer(log_root_tree->node);
5885 log_root_tree->log_root = NULL;
Josef Bacikafcdd122016-09-02 15:40:02 -04005886 clear_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags);
Chris Masone02119d2008-09-05 16:13:11 -04005887 kfree(log_root_tree);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005888
Josef Bacikabefa552013-04-24 16:40:05 -04005889 return 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005890error:
Josef Bacikb50c6e22013-04-25 15:55:30 -04005891 if (wc.trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005892 btrfs_end_transaction(wc.trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005893 btrfs_free_path(path);
5894 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04005895}
Chris Mason12fcfd22009-03-24 10:24:20 -04005896
5897/*
5898 * there are some corner cases where we want to force a full
5899 * commit instead of allowing a directory to be logged.
5900 *
5901 * They revolve around files there were unlinked from the directory, and
5902 * this function updates the parent directory so that a full commit is
5903 * properly done if it is fsync'd later after the unlinks are done.
Filipe Manana2be63d52016-02-12 11:34:23 +00005904 *
5905 * Must be called before the unlink operations (updates to the subvolume tree,
5906 * inodes, etc) are done.
Chris Mason12fcfd22009-03-24 10:24:20 -04005907 */
5908void btrfs_record_unlink_dir(struct btrfs_trans_handle *trans,
Nikolay Borisov4176bdb2017-01-18 00:31:28 +02005909 struct btrfs_inode *dir, struct btrfs_inode *inode,
Chris Mason12fcfd22009-03-24 10:24:20 -04005910 int for_rename)
5911{
5912 /*
Chris Masonaf4176b2009-03-24 10:24:31 -04005913 * when we're logging a file, if it hasn't been renamed
5914 * or unlinked, and its inode is fully committed on disk,
5915 * we don't have to worry about walking up the directory chain
5916 * to log its parents.
5917 *
5918 * So, we use the last_unlink_trans field to put this transid
5919 * into the file. When the file is logged we check it and
5920 * don't log the parents if the file is fully on disk.
5921 */
Nikolay Borisov4176bdb2017-01-18 00:31:28 +02005922 mutex_lock(&inode->log_mutex);
5923 inode->last_unlink_trans = trans->transid;
5924 mutex_unlock(&inode->log_mutex);
Chris Masonaf4176b2009-03-24 10:24:31 -04005925
5926 /*
Chris Mason12fcfd22009-03-24 10:24:20 -04005927 * if this directory was already logged any new
5928 * names for this file/dir will get recorded
5929 */
5930 smp_mb();
Nikolay Borisov4176bdb2017-01-18 00:31:28 +02005931 if (dir->logged_trans == trans->transid)
Chris Mason12fcfd22009-03-24 10:24:20 -04005932 return;
5933
5934 /*
5935 * if the inode we're about to unlink was logged,
5936 * the log will be properly updated for any new names
5937 */
Nikolay Borisov4176bdb2017-01-18 00:31:28 +02005938 if (inode->logged_trans == trans->transid)
Chris Mason12fcfd22009-03-24 10:24:20 -04005939 return;
5940
5941 /*
5942 * when renaming files across directories, if the directory
5943 * there we're unlinking from gets fsync'd later on, there's
5944 * no way to find the destination directory later and fsync it
5945 * properly. So, we have to be conservative and force commits
5946 * so the new name gets discovered.
5947 */
5948 if (for_rename)
5949 goto record;
5950
5951 /* we can safely do the unlink without any special recording */
5952 return;
5953
5954record:
Nikolay Borisov4176bdb2017-01-18 00:31:28 +02005955 mutex_lock(&dir->log_mutex);
5956 dir->last_unlink_trans = trans->transid;
5957 mutex_unlock(&dir->log_mutex);
Chris Mason12fcfd22009-03-24 10:24:20 -04005958}
5959
5960/*
Filipe Manana1ec9a1a2016-02-10 10:42:25 +00005961 * Make sure that if someone attempts to fsync the parent directory of a deleted
5962 * snapshot, it ends up triggering a transaction commit. This is to guarantee
5963 * that after replaying the log tree of the parent directory's root we will not
5964 * see the snapshot anymore and at log replay time we will not see any log tree
5965 * corresponding to the deleted snapshot's root, which could lead to replaying
5966 * it after replaying the log tree of the parent directory (which would replay
5967 * the snapshot delete operation).
Filipe Manana2be63d52016-02-12 11:34:23 +00005968 *
5969 * Must be called before the actual snapshot destroy operation (updates to the
5970 * parent root and tree of tree roots trees, etc) are done.
Filipe Manana1ec9a1a2016-02-10 10:42:25 +00005971 */
5972void btrfs_record_snapshot_destroy(struct btrfs_trans_handle *trans,
Nikolay Borisov43663552017-01-18 00:31:29 +02005973 struct btrfs_inode *dir)
Filipe Manana1ec9a1a2016-02-10 10:42:25 +00005974{
Nikolay Borisov43663552017-01-18 00:31:29 +02005975 mutex_lock(&dir->log_mutex);
5976 dir->last_unlink_trans = trans->transid;
5977 mutex_unlock(&dir->log_mutex);
Filipe Manana1ec9a1a2016-02-10 10:42:25 +00005978}
5979
5980/*
Chris Mason12fcfd22009-03-24 10:24:20 -04005981 * Call this after adding a new name for a file and it will properly
5982 * update the log to reflect the new name.
5983 *
5984 * It will return zero if all goes well, and it will return 1 if a
5985 * full transaction commit is required.
5986 */
5987int btrfs_log_new_name(struct btrfs_trans_handle *trans,
Nikolay Borisov9ca5fbfb2017-01-18 00:31:31 +02005988 struct btrfs_inode *inode, struct btrfs_inode *old_dir,
Chris Mason12fcfd22009-03-24 10:24:20 -04005989 struct dentry *parent)
5990{
Nikolay Borisov9ca5fbfb2017-01-18 00:31:31 +02005991 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Chris Mason12fcfd22009-03-24 10:24:20 -04005992
5993 /*
Chris Masonaf4176b2009-03-24 10:24:31 -04005994 * this will force the logging code to walk the dentry chain
5995 * up for the file
5996 */
Filipe Manana9a6509c2018-02-28 15:55:40 +00005997 if (!S_ISDIR(inode->vfs_inode.i_mode))
Nikolay Borisov9ca5fbfb2017-01-18 00:31:31 +02005998 inode->last_unlink_trans = trans->transid;
Chris Masonaf4176b2009-03-24 10:24:31 -04005999
6000 /*
Chris Mason12fcfd22009-03-24 10:24:20 -04006001 * if this inode hasn't been logged and directory we're renaming it
6002 * from hasn't been logged, we don't need to log it
6003 */
Nikolay Borisov9ca5fbfb2017-01-18 00:31:31 +02006004 if (inode->logged_trans <= fs_info->last_trans_committed &&
6005 (!old_dir || old_dir->logged_trans <= fs_info->last_trans_committed))
Chris Mason12fcfd22009-03-24 10:24:20 -04006006 return 0;
6007
Nikolay Borisovf8822742018-02-27 17:37:17 +02006008 return btrfs_log_inode_parent(trans, inode, parent, 0, LLONG_MAX,
6009 LOG_INODE_EXISTS, NULL);
Chris Mason12fcfd22009-03-24 10:24:20 -04006010}
6011