blob: 3ee014c06b82a544df86c9df228bbcc72d5f3b56 [file] [log] [blame]
David Sterbac1d7c512018-04-03 19:23:33 +02001// SPDX-License-Identifier: GPL-2.0
Chris Masone02119d2008-09-05 16:13:11 -04002/*
3 * Copyright (C) 2008 Oracle. All rights reserved.
Chris Masone02119d2008-09-05 16:13:11 -04004 */
5
6#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09007#include <linux/slab.h>
Miao Xiec6adc9c2013-05-28 10:05:39 +00008#include <linux/blkdev.h>
Josef Bacik5dc562c2012-08-17 13:14:17 -04009#include <linux/list_sort.h>
Jeff Laytonc7f88c42017-12-11 06:35:12 -050010#include <linux/iversion.h>
David Sterba602cbe92019-08-21 18:48:25 +020011#include "misc.h"
Nikolay Borisov9678c542018-01-08 11:45:05 +020012#include "ctree.h"
Miao Xie995946d2014-04-02 19:51:06 +080013#include "tree-log.h"
Chris Masone02119d2008-09-05 16:13:11 -040014#include "disk-io.h"
15#include "locking.h"
16#include "print-tree.h"
Mark Fashehf1863732012-08-08 11:32:27 -070017#include "backref.h"
Anand Jainebb87652016-03-10 17:26:59 +080018#include "compression.h"
Qu Wenruodf2c95f2016-08-15 10:36:52 +080019#include "qgroup.h"
Nikolay Borisov6787bb92020-01-20 16:09:10 +020020#include "block-group.h"
21#include "space-info.h"
Naohiro Aotad35751562021-02-04 19:21:54 +090022#include "zoned.h"
Josef Bacik26c2c452021-12-03 17:18:03 -050023#include "inode-item.h"
Chris Masone02119d2008-09-05 16:13:11 -040024
25/* magic values for the inode_only field in btrfs_log_inode:
26 *
27 * LOG_INODE_ALL means to log everything
28 * LOG_INODE_EXISTS means to log just enough to recreate the inode
29 * during log replay
30 */
David Sterbae13976c2019-08-01 14:50:30 +020031enum {
32 LOG_INODE_ALL,
33 LOG_INODE_EXISTS,
34 LOG_OTHER_INODE,
35 LOG_OTHER_INODE_ALL,
36};
Chris Masone02119d2008-09-05 16:13:11 -040037
38/*
Chris Mason12fcfd22009-03-24 10:24:20 -040039 * directory trouble cases
40 *
41 * 1) on rename or unlink, if the inode being unlinked isn't in the fsync
42 * log, we must force a full commit before doing an fsync of the directory
43 * where the unlink was done.
44 * ---> record transid of last unlink/rename per directory
45 *
46 * mkdir foo/some_dir
47 * normal commit
48 * rename foo/some_dir foo2/some_dir
49 * mkdir foo/some_dir
50 * fsync foo/some_dir/some_file
51 *
52 * The fsync above will unlink the original some_dir without recording
53 * it in its new location (foo2). After a crash, some_dir will be gone
54 * unless the fsync of some_file forces a full commit
55 *
56 * 2) we must log any new names for any file or dir that is in the fsync
57 * log. ---> check inode while renaming/linking.
58 *
59 * 2a) we must log any new names for any file or dir during rename
60 * when the directory they are being removed from was logged.
61 * ---> check inode and old parent dir during rename
62 *
63 * 2a is actually the more important variant. With the extra logging
64 * a crash might unlink the old name without recreating the new one
65 *
66 * 3) after a crash, we must go through any directories with a link count
67 * of zero and redo the rm -rf
68 *
69 * mkdir f1/foo
70 * normal commit
71 * rm -rf f1/foo
72 * fsync(f1)
73 *
74 * The directory f1 was fully removed from the FS, but fsync was never
75 * called on f1, only its parent dir. After a crash the rm -rf must
76 * be replayed. This must be able to recurse down the entire
77 * directory tree. The inode link count fixup code takes care of the
78 * ugly details.
79 */
80
81/*
Chris Masone02119d2008-09-05 16:13:11 -040082 * stages for the tree walking. The first
83 * stage (0) is to only pin down the blocks we find
84 * the second stage (1) is to make sure that all the inodes
85 * we find in the log are created in the subvolume.
86 *
87 * The last stage is to deal with directories and links and extents
88 * and all the other fun semantics
89 */
David Sterbae13976c2019-08-01 14:50:30 +020090enum {
91 LOG_WALK_PIN_ONLY,
92 LOG_WALK_REPLAY_INODES,
93 LOG_WALK_REPLAY_DIR_INDEX,
94 LOG_WALK_REPLAY_ALL,
95};
Chris Masone02119d2008-09-05 16:13:11 -040096
Chris Mason12fcfd22009-03-24 10:24:20 -040097static int btrfs_log_inode(struct btrfs_trans_handle *trans,
Filipe Manana90d04512021-09-16 11:32:10 +010098 struct btrfs_inode *inode,
Filipe Manana49dae1b2014-09-06 22:34:39 +010099 int inode_only,
Filipe Manana8407f552014-09-05 15:14:39 +0100100 struct btrfs_log_ctx *ctx);
Yan Zhengec051c02009-01-05 15:43:42 -0500101static int link_to_fixup_dir(struct btrfs_trans_handle *trans,
102 struct btrfs_root *root,
103 struct btrfs_path *path, u64 objectid);
Chris Mason12fcfd22009-03-24 10:24:20 -0400104static noinline int replay_dir_deletes(struct btrfs_trans_handle *trans,
105 struct btrfs_root *root,
106 struct btrfs_root *log,
107 struct btrfs_path *path,
108 u64 dirid, int del_all);
Naohiro Aotafa1a0f42021-02-04 19:22:19 +0900109static void wait_log_commit(struct btrfs_root *root, int transid);
Chris Masone02119d2008-09-05 16:13:11 -0400110
111/*
112 * tree logging is a special write ahead log used to make sure that
113 * fsyncs and O_SYNCs can happen without doing full tree commits.
114 *
115 * Full tree commits are expensive because they require commonly
116 * modified blocks to be recowed, creating many dirty pages in the
117 * extent tree an 4x-6x higher write load than ext3.
118 *
119 * Instead of doing a tree commit on every fsync, we use the
120 * key ranges and transaction ids to find items for a given file or directory
121 * that have changed in this transaction. Those items are copied into
122 * a special tree (one per subvolume root), that tree is written to disk
123 * and then the fsync is considered complete.
124 *
125 * After a crash, items are copied out of the log-tree back into the
126 * subvolume tree. Any file data extents found are recorded in the extent
127 * allocation tree, and the log-tree freed.
128 *
129 * The log tree is read three times, once to pin down all the extents it is
130 * using in ram and once, once to create all the inodes logged in the tree
131 * and once to do all the other items.
132 */
133
134/*
Chris Masone02119d2008-09-05 16:13:11 -0400135 * start a sub transaction and setup the log tree
136 * this increments the log tree writer count to make the people
137 * syncing the tree wait for us to finish
138 */
139static int start_log_trans(struct btrfs_trans_handle *trans,
Miao Xie8b050d32014-02-20 18:08:58 +0800140 struct btrfs_root *root,
141 struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -0400142{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400143 struct btrfs_fs_info *fs_info = root->fs_info;
Filipe Manana47876f72020-11-25 12:19:28 +0000144 struct btrfs_root *tree_root = fs_info->tree_root;
Naohiro Aotafa1a0f42021-02-04 19:22:19 +0900145 const bool zoned = btrfs_is_zoned(fs_info);
Zhaolei34eb2a52015-08-17 18:44:45 +0800146 int ret = 0;
Naohiro Aotafa1a0f42021-02-04 19:22:19 +0900147 bool created = false;
Yan Zheng7237f182009-01-21 12:54:03 -0500148
Filipe Manana47876f72020-11-25 12:19:28 +0000149 /*
150 * First check if the log root tree was already created. If not, create
151 * it before locking the root's log_mutex, just to keep lockdep happy.
152 */
153 if (!test_bit(BTRFS_ROOT_HAS_LOG_TREE, &tree_root->state)) {
154 mutex_lock(&tree_root->log_mutex);
155 if (!fs_info->log_root_tree) {
156 ret = btrfs_init_log_root_tree(trans, fs_info);
Naohiro Aotafa1a0f42021-02-04 19:22:19 +0900157 if (!ret) {
Filipe Manana47876f72020-11-25 12:19:28 +0000158 set_bit(BTRFS_ROOT_HAS_LOG_TREE, &tree_root->state);
Naohiro Aotafa1a0f42021-02-04 19:22:19 +0900159 created = true;
160 }
Filipe Manana47876f72020-11-25 12:19:28 +0000161 }
162 mutex_unlock(&tree_root->log_mutex);
163 if (ret)
164 return ret;
165 }
166
Yan Zheng7237f182009-01-21 12:54:03 -0500167 mutex_lock(&root->log_mutex);
Zhaolei34eb2a52015-08-17 18:44:45 +0800168
Naohiro Aotafa1a0f42021-02-04 19:22:19 +0900169again:
Yan Zheng7237f182009-01-21 12:54:03 -0500170 if (root->log_root) {
Naohiro Aotafa1a0f42021-02-04 19:22:19 +0900171 int index = (root->log_transid + 1) % 2;
172
David Sterba4884b8e2019-03-20 13:25:34 +0100173 if (btrfs_need_log_full_commit(trans)) {
Miao Xie50471a32014-02-20 18:08:57 +0800174 ret = -EAGAIN;
175 goto out;
176 }
Zhaolei34eb2a52015-08-17 18:44:45 +0800177
Naohiro Aotafa1a0f42021-02-04 19:22:19 +0900178 if (zoned && atomic_read(&root->log_commit[index])) {
179 wait_log_commit(root, root->log_transid - 1);
180 goto again;
181 }
182
Josef Bacikff782e02009-10-08 15:30:04 -0400183 if (!root->log_start_pid) {
Miao Xie27cdeb72014-04-02 19:51:05 +0800184 clear_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state);
Zhaolei34eb2a52015-08-17 18:44:45 +0800185 root->log_start_pid = current->pid;
Josef Bacikff782e02009-10-08 15:30:04 -0400186 } else if (root->log_start_pid != current->pid) {
Miao Xie27cdeb72014-04-02 19:51:05 +0800187 set_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state);
Josef Bacikff782e02009-10-08 15:30:04 -0400188 }
Zhaolei34eb2a52015-08-17 18:44:45 +0800189 } else {
Naohiro Aotafa1a0f42021-02-04 19:22:19 +0900190 /*
191 * This means fs_info->log_root_tree was already created
192 * for some other FS trees. Do the full commit not to mix
193 * nodes from multiple log transactions to do sequential
194 * writing.
195 */
196 if (zoned && !created) {
197 ret = -EAGAIN;
198 goto out;
199 }
200
Chris Masone02119d2008-09-05 16:13:11 -0400201 ret = btrfs_add_log_tree(trans, root);
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400202 if (ret)
Miao Xiee87ac132014-02-20 18:08:53 +0800203 goto out;
Zhaolei34eb2a52015-08-17 18:44:45 +0800204
Filipe Mananae7a79812020-06-15 10:38:44 +0100205 set_bit(BTRFS_ROOT_HAS_LOG_TREE, &root->state);
Zhaolei34eb2a52015-08-17 18:44:45 +0800206 clear_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state);
207 root->log_start_pid = current->pid;
Chris Masone02119d2008-09-05 16:13:11 -0400208 }
Zhaolei34eb2a52015-08-17 18:44:45 +0800209
Yan Zheng7237f182009-01-21 12:54:03 -0500210 atomic_inc(&root->log_writers);
Filipe Manana289cffc2021-08-31 15:30:32 +0100211 if (!ctx->logging_new_name) {
Zhaolei34eb2a52015-08-17 18:44:45 +0800212 int index = root->log_transid % 2;
Miao Xie8b050d32014-02-20 18:08:58 +0800213 list_add_tail(&ctx->list, &root->log_ctxs[index]);
Miao Xied1433de2014-02-20 18:08:59 +0800214 ctx->log_transid = root->log_transid;
Miao Xie8b050d32014-02-20 18:08:58 +0800215 }
Zhaolei34eb2a52015-08-17 18:44:45 +0800216
Miao Xiee87ac132014-02-20 18:08:53 +0800217out:
Yan Zheng7237f182009-01-21 12:54:03 -0500218 mutex_unlock(&root->log_mutex);
Miao Xiee87ac132014-02-20 18:08:53 +0800219 return ret;
Chris Masone02119d2008-09-05 16:13:11 -0400220}
221
222/*
223 * returns 0 if there was a log transaction running and we were able
224 * to join, or returns -ENOENT if there were not transactions
225 * in progress
226 */
227static int join_running_log_trans(struct btrfs_root *root)
228{
Naohiro Aotafa1a0f42021-02-04 19:22:19 +0900229 const bool zoned = btrfs_is_zoned(root->fs_info);
Chris Masone02119d2008-09-05 16:13:11 -0400230 int ret = -ENOENT;
231
Filipe Mananae7a79812020-06-15 10:38:44 +0100232 if (!test_bit(BTRFS_ROOT_HAS_LOG_TREE, &root->state))
233 return ret;
234
Yan Zheng7237f182009-01-21 12:54:03 -0500235 mutex_lock(&root->log_mutex);
Naohiro Aotafa1a0f42021-02-04 19:22:19 +0900236again:
Chris Masone02119d2008-09-05 16:13:11 -0400237 if (root->log_root) {
Naohiro Aotafa1a0f42021-02-04 19:22:19 +0900238 int index = (root->log_transid + 1) % 2;
239
Chris Masone02119d2008-09-05 16:13:11 -0400240 ret = 0;
Naohiro Aotafa1a0f42021-02-04 19:22:19 +0900241 if (zoned && atomic_read(&root->log_commit[index])) {
242 wait_log_commit(root, root->log_transid - 1);
243 goto again;
244 }
Yan Zheng7237f182009-01-21 12:54:03 -0500245 atomic_inc(&root->log_writers);
Chris Masone02119d2008-09-05 16:13:11 -0400246 }
Yan Zheng7237f182009-01-21 12:54:03 -0500247 mutex_unlock(&root->log_mutex);
Chris Masone02119d2008-09-05 16:13:11 -0400248 return ret;
249}
250
251/*
Chris Mason12fcfd22009-03-24 10:24:20 -0400252 * This either makes the current running log transaction wait
253 * until you call btrfs_end_log_trans() or it makes any future
254 * log transactions wait until you call btrfs_end_log_trans()
255 */
zhong jiang45128b02018-08-17 00:37:15 +0800256void btrfs_pin_log_trans(struct btrfs_root *root)
Chris Mason12fcfd22009-03-24 10:24:20 -0400257{
Chris Mason12fcfd22009-03-24 10:24:20 -0400258 atomic_inc(&root->log_writers);
Chris Mason12fcfd22009-03-24 10:24:20 -0400259}
260
261/*
Chris Masone02119d2008-09-05 16:13:11 -0400262 * indicate we're done making changes to the log tree
263 * and wake up anyone waiting to do a sync
264 */
Jeff Mahoney143bede2012-03-01 14:56:26 +0100265void btrfs_end_log_trans(struct btrfs_root *root)
Chris Masone02119d2008-09-05 16:13:11 -0400266{
Yan Zheng7237f182009-01-21 12:54:03 -0500267 if (atomic_dec_and_test(&root->log_writers)) {
David Sterba093258e2018-02-26 16:15:17 +0100268 /* atomic_dec_and_test implies a barrier */
269 cond_wake_up_nomb(&root->log_writer_wait);
Yan Zheng7237f182009-01-21 12:54:03 -0500270 }
Chris Masone02119d2008-09-05 16:13:11 -0400271}
272
David Sterba247462a2019-03-21 20:21:05 +0100273static int btrfs_write_tree_block(struct extent_buffer *buf)
274{
275 return filemap_fdatawrite_range(buf->pages[0]->mapping, buf->start,
276 buf->start + buf->len - 1);
277}
278
279static void btrfs_wait_tree_block_writeback(struct extent_buffer *buf)
280{
281 filemap_fdatawait_range(buf->pages[0]->mapping,
282 buf->start, buf->start + buf->len - 1);
283}
Chris Masone02119d2008-09-05 16:13:11 -0400284
285/*
286 * the walk control struct is used to pass state down the chain when
287 * processing the log tree. The stage field tells us which part
288 * of the log tree processing we are currently doing. The others
289 * are state fields used for that specific part
290 */
291struct walk_control {
292 /* should we free the extent on disk when done? This is used
293 * at transaction commit time while freeing a log tree
294 */
295 int free;
296
297 /* should we write out the extent buffer? This is used
298 * while flushing the log tree to disk during a sync
299 */
300 int write;
301
302 /* should we wait for the extent buffer io to finish? Also used
303 * while flushing the log tree to disk for a sync
304 */
305 int wait;
306
307 /* pin only walk, we record which extents on disk belong to the
308 * log trees
309 */
310 int pin;
311
312 /* what stage of the replay code we're currently in */
313 int stage;
314
Filipe Mananaf2d72f42018-10-08 11:12:55 +0100315 /*
316 * Ignore any items from the inode currently being processed. Needs
317 * to be set every time we find a BTRFS_INODE_ITEM_KEY and we are in
318 * the LOG_WALK_REPLAY_INODES stage.
319 */
320 bool ignore_cur_inode;
321
Chris Masone02119d2008-09-05 16:13:11 -0400322 /* the root we are currently replaying */
323 struct btrfs_root *replay_dest;
324
325 /* the trans handle for the current replay */
326 struct btrfs_trans_handle *trans;
327
328 /* the function that gets used to process blocks we find in the
329 * tree. Note the extent_buffer might not be up to date when it is
330 * passed in, and it must be checked or read if you need the data
331 * inside it
332 */
333 int (*process_func)(struct btrfs_root *log, struct extent_buffer *eb,
Qu Wenruo581c1762018-03-29 09:08:11 +0800334 struct walk_control *wc, u64 gen, int level);
Chris Masone02119d2008-09-05 16:13:11 -0400335};
336
337/*
338 * process_func used to pin down extents, write them or wait on them
339 */
340static int process_one_buffer(struct btrfs_root *log,
341 struct extent_buffer *eb,
Qu Wenruo581c1762018-03-29 09:08:11 +0800342 struct walk_control *wc, u64 gen, int level)
Chris Masone02119d2008-09-05 16:13:11 -0400343{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400344 struct btrfs_fs_info *fs_info = log->fs_info;
Josef Bacikb50c6e22013-04-25 15:55:30 -0400345 int ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -0400346
Josef Bacik8c2a1a32013-06-06 13:19:32 -0400347 /*
348 * If this fs is mixed then we need to be able to process the leaves to
349 * pin down any logged extents, so we have to read the block.
350 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400351 if (btrfs_fs_incompat(fs_info, MIXED_GROUPS)) {
Qu Wenruo581c1762018-03-29 09:08:11 +0800352 ret = btrfs_read_buffer(eb, gen, level, NULL);
Josef Bacik8c2a1a32013-06-06 13:19:32 -0400353 if (ret)
354 return ret;
355 }
356
Josef Bacikb50c6e22013-04-25 15:55:30 -0400357 if (wc->pin)
Nikolay Borisov9fce5702020-01-20 16:09:13 +0200358 ret = btrfs_pin_extent_for_log_replay(wc->trans, eb->start,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400359 eb->len);
Josef Bacikb50c6e22013-04-25 15:55:30 -0400360
361 if (!ret && btrfs_buffer_uptodate(eb, gen, 0)) {
Josef Bacik8c2a1a32013-06-06 13:19:32 -0400362 if (wc->pin && btrfs_header_level(eb) == 0)
David Sterbabcdc4282019-03-20 12:14:33 +0100363 ret = btrfs_exclude_logged_extents(eb);
Chris Masone02119d2008-09-05 16:13:11 -0400364 if (wc->write)
365 btrfs_write_tree_block(eb);
366 if (wc->wait)
367 btrfs_wait_tree_block_writeback(eb);
368 }
Josef Bacikb50c6e22013-04-25 15:55:30 -0400369 return ret;
Chris Masone02119d2008-09-05 16:13:11 -0400370}
371
Filipe Manana086dcbf2021-09-16 11:32:13 +0100372static int do_overwrite_item(struct btrfs_trans_handle *trans,
373 struct btrfs_root *root,
374 struct btrfs_path *path,
375 struct extent_buffer *eb, int slot,
376 struct btrfs_key *key)
Chris Masone02119d2008-09-05 16:13:11 -0400377{
378 int ret;
379 u32 item_size;
380 u64 saved_i_size = 0;
381 int save_old_i_size = 0;
382 unsigned long src_ptr;
383 unsigned long dst_ptr;
384 int overwrite_root = 0;
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000385 bool inode_item = key->type == BTRFS_INODE_ITEM_KEY;
Chris Masone02119d2008-09-05 16:13:11 -0400386
387 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID)
388 overwrite_root = 1;
389
Josef Bacik3212fa12021-10-21 14:58:35 -0400390 item_size = btrfs_item_size(eb, slot);
Chris Masone02119d2008-09-05 16:13:11 -0400391 src_ptr = btrfs_item_ptr_offset(eb, slot);
392
Filipe Manana086dcbf2021-09-16 11:32:13 +0100393 /* Our caller must have done a search for the key for us. */
394 ASSERT(path->nodes[0] != NULL);
395
396 /*
397 * And the slot must point to the exact key or the slot where the key
398 * should be at (the first item with a key greater than 'key')
399 */
400 if (path->slots[0] < btrfs_header_nritems(path->nodes[0])) {
401 struct btrfs_key found_key;
402
403 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
404 ret = btrfs_comp_cpu_keys(&found_key, key);
405 ASSERT(ret >= 0);
406 } else {
407 ret = 1;
408 }
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000409
Chris Masone02119d2008-09-05 16:13:11 -0400410 if (ret == 0) {
411 char *src_copy;
412 char *dst_copy;
Josef Bacik3212fa12021-10-21 14:58:35 -0400413 u32 dst_size = btrfs_item_size(path->nodes[0],
Chris Masone02119d2008-09-05 16:13:11 -0400414 path->slots[0]);
415 if (dst_size != item_size)
416 goto insert;
417
418 if (item_size == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200419 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400420 return 0;
421 }
422 dst_copy = kmalloc(item_size, GFP_NOFS);
423 src_copy = kmalloc(item_size, GFP_NOFS);
liubo2a29edc2011-01-26 06:22:08 +0000424 if (!dst_copy || !src_copy) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200425 btrfs_release_path(path);
liubo2a29edc2011-01-26 06:22:08 +0000426 kfree(dst_copy);
427 kfree(src_copy);
428 return -ENOMEM;
429 }
Chris Masone02119d2008-09-05 16:13:11 -0400430
431 read_extent_buffer(eb, src_copy, src_ptr, item_size);
432
433 dst_ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]);
434 read_extent_buffer(path->nodes[0], dst_copy, dst_ptr,
435 item_size);
436 ret = memcmp(dst_copy, src_copy, item_size);
437
438 kfree(dst_copy);
439 kfree(src_copy);
440 /*
441 * they have the same contents, just return, this saves
442 * us from cowing blocks in the destination tree and doing
443 * extra writes that may not have been done by a previous
444 * sync
445 */
446 if (ret == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200447 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400448 return 0;
449 }
450
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000451 /*
452 * We need to load the old nbytes into the inode so when we
453 * replay the extents we've logged we get the right nbytes.
454 */
455 if (inode_item) {
456 struct btrfs_inode_item *item;
457 u64 nbytes;
Josef Bacikd5554382013-09-11 14:17:00 -0400458 u32 mode;
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000459
460 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
461 struct btrfs_inode_item);
462 nbytes = btrfs_inode_nbytes(path->nodes[0], item);
463 item = btrfs_item_ptr(eb, slot,
464 struct btrfs_inode_item);
465 btrfs_set_inode_nbytes(eb, item, nbytes);
Josef Bacikd5554382013-09-11 14:17:00 -0400466
467 /*
468 * If this is a directory we need to reset the i_size to
469 * 0 so that we can set it up properly when replaying
470 * the rest of the items in this log.
471 */
472 mode = btrfs_inode_mode(eb, item);
473 if (S_ISDIR(mode))
474 btrfs_set_inode_size(eb, item, 0);
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000475 }
476 } else if (inode_item) {
477 struct btrfs_inode_item *item;
Josef Bacikd5554382013-09-11 14:17:00 -0400478 u32 mode;
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000479
480 /*
481 * New inode, set nbytes to 0 so that the nbytes comes out
482 * properly when we replay the extents.
483 */
484 item = btrfs_item_ptr(eb, slot, struct btrfs_inode_item);
485 btrfs_set_inode_nbytes(eb, item, 0);
Josef Bacikd5554382013-09-11 14:17:00 -0400486
487 /*
488 * If this is a directory we need to reset the i_size to 0 so
489 * that we can set it up properly when replaying the rest of
490 * the items in this log.
491 */
492 mode = btrfs_inode_mode(eb, item);
493 if (S_ISDIR(mode))
494 btrfs_set_inode_size(eb, item, 0);
Chris Masone02119d2008-09-05 16:13:11 -0400495 }
496insert:
David Sterbab3b4aa72011-04-21 01:20:15 +0200497 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400498 /* try to insert the key into the destination tree */
Filipe Mananadf8d1162015-01-14 01:52:25 +0000499 path->skip_release_on_error = 1;
Chris Masone02119d2008-09-05 16:13:11 -0400500 ret = btrfs_insert_empty_item(trans, root, path,
501 key, item_size);
Filipe Mananadf8d1162015-01-14 01:52:25 +0000502 path->skip_release_on_error = 0;
Chris Masone02119d2008-09-05 16:13:11 -0400503
504 /* make sure any existing item is the correct size */
Filipe Mananadf8d1162015-01-14 01:52:25 +0000505 if (ret == -EEXIST || ret == -EOVERFLOW) {
Chris Masone02119d2008-09-05 16:13:11 -0400506 u32 found_size;
Josef Bacik3212fa12021-10-21 14:58:35 -0400507 found_size = btrfs_item_size(path->nodes[0],
Chris Masone02119d2008-09-05 16:13:11 -0400508 path->slots[0]);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100509 if (found_size > item_size)
David Sterba78ac4f92019-03-20 14:49:12 +0100510 btrfs_truncate_item(path, item_size, 1);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100511 else if (found_size < item_size)
David Sterbac71dd882019-03-20 14:51:10 +0100512 btrfs_extend_item(path, item_size - found_size);
Chris Masone02119d2008-09-05 16:13:11 -0400513 } else if (ret) {
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400514 return ret;
Chris Masone02119d2008-09-05 16:13:11 -0400515 }
516 dst_ptr = btrfs_item_ptr_offset(path->nodes[0],
517 path->slots[0]);
518
519 /* don't overwrite an existing inode if the generation number
520 * was logged as zero. This is done when the tree logging code
521 * is just logging an inode to make sure it exists after recovery.
522 *
523 * Also, don't overwrite i_size on directories during replay.
524 * log replay inserts and removes directory items based on the
525 * state of the tree found in the subvolume, and i_size is modified
526 * as it goes
527 */
528 if (key->type == BTRFS_INODE_ITEM_KEY && ret == -EEXIST) {
529 struct btrfs_inode_item *src_item;
530 struct btrfs_inode_item *dst_item;
531
532 src_item = (struct btrfs_inode_item *)src_ptr;
533 dst_item = (struct btrfs_inode_item *)dst_ptr;
534
Filipe Manana1a4bcf42015-02-13 12:30:56 +0000535 if (btrfs_inode_generation(eb, src_item) == 0) {
536 struct extent_buffer *dst_eb = path->nodes[0];
Filipe Manana2f2ff0e2015-03-20 17:19:46 +0000537 const u64 ino_size = btrfs_inode_size(eb, src_item);
Filipe Manana1a4bcf42015-02-13 12:30:56 +0000538
Filipe Manana2f2ff0e2015-03-20 17:19:46 +0000539 /*
540 * For regular files an ino_size == 0 is used only when
541 * logging that an inode exists, as part of a directory
542 * fsync, and the inode wasn't fsynced before. In this
543 * case don't set the size of the inode in the fs/subvol
544 * tree, otherwise we would be throwing valid data away.
545 */
Filipe Manana1a4bcf42015-02-13 12:30:56 +0000546 if (S_ISREG(btrfs_inode_mode(eb, src_item)) &&
Filipe Manana2f2ff0e2015-03-20 17:19:46 +0000547 S_ISREG(btrfs_inode_mode(dst_eb, dst_item)) &&
David Sterba60d48e22020-04-29 15:29:53 +0200548 ino_size != 0)
549 btrfs_set_inode_size(dst_eb, dst_item, ino_size);
Chris Masone02119d2008-09-05 16:13:11 -0400550 goto no_copy;
Filipe Manana1a4bcf42015-02-13 12:30:56 +0000551 }
Chris Masone02119d2008-09-05 16:13:11 -0400552
553 if (overwrite_root &&
554 S_ISDIR(btrfs_inode_mode(eb, src_item)) &&
555 S_ISDIR(btrfs_inode_mode(path->nodes[0], dst_item))) {
556 save_old_i_size = 1;
557 saved_i_size = btrfs_inode_size(path->nodes[0],
558 dst_item);
559 }
560 }
561
562 copy_extent_buffer(path->nodes[0], eb, dst_ptr,
563 src_ptr, item_size);
564
565 if (save_old_i_size) {
566 struct btrfs_inode_item *dst_item;
567 dst_item = (struct btrfs_inode_item *)dst_ptr;
568 btrfs_set_inode_size(path->nodes[0], dst_item, saved_i_size);
569 }
570
571 /* make sure the generation is filled in */
572 if (key->type == BTRFS_INODE_ITEM_KEY) {
573 struct btrfs_inode_item *dst_item;
574 dst_item = (struct btrfs_inode_item *)dst_ptr;
575 if (btrfs_inode_generation(path->nodes[0], dst_item) == 0) {
576 btrfs_set_inode_generation(path->nodes[0], dst_item,
577 trans->transid);
578 }
579 }
580no_copy:
581 btrfs_mark_buffer_dirty(path->nodes[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +0200582 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400583 return 0;
584}
585
586/*
Filipe Manana086dcbf2021-09-16 11:32:13 +0100587 * Item overwrite used by replay and tree logging. eb, slot and key all refer
588 * to the src data we are copying out.
589 *
590 * root is the tree we are copying into, and path is a scratch
591 * path for use in this function (it should be released on entry and
592 * will be released on exit).
593 *
594 * If the key is already in the destination tree the existing item is
595 * overwritten. If the existing item isn't big enough, it is extended.
596 * If it is too large, it is truncated.
597 *
598 * If the key isn't in the destination yet, a new item is inserted.
599 */
600static int overwrite_item(struct btrfs_trans_handle *trans,
601 struct btrfs_root *root,
602 struct btrfs_path *path,
603 struct extent_buffer *eb, int slot,
604 struct btrfs_key *key)
605{
606 int ret;
607
608 /* Look for the key in the destination tree. */
609 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
610 if (ret < 0)
611 return ret;
612
613 return do_overwrite_item(trans, root, path, eb, slot, key);
614}
615
616/*
Chris Masone02119d2008-09-05 16:13:11 -0400617 * simple helper to read an inode off the disk from a given root
618 * This can only be called for subvolume roots and not for the log
619 */
620static noinline struct inode *read_one_inode(struct btrfs_root *root,
621 u64 objectid)
622{
623 struct inode *inode;
Chris Masone02119d2008-09-05 16:13:11 -0400624
David Sterba0202e832020-05-15 19:35:59 +0200625 inode = btrfs_iget(root->fs_info->sb, objectid, root);
Al Viro2e19f1f2018-07-29 23:04:45 +0100626 if (IS_ERR(inode))
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400627 inode = NULL;
Chris Masone02119d2008-09-05 16:13:11 -0400628 return inode;
629}
630
631/* replays a single extent in 'eb' at 'slot' with 'key' into the
632 * subvolume 'root'. path is released on entry and should be released
633 * on exit.
634 *
635 * extents in the log tree have not been allocated out of the extent
636 * tree yet. So, this completes the allocation, taking a reference
637 * as required if the extent already exists or creating a new extent
638 * if it isn't in the extent allocation tree yet.
639 *
640 * The extent is inserted into the file, dropping any existing extents
641 * from the file that overlap the new one.
642 */
643static noinline int replay_one_extent(struct btrfs_trans_handle *trans,
644 struct btrfs_root *root,
645 struct btrfs_path *path,
646 struct extent_buffer *eb, int slot,
647 struct btrfs_key *key)
648{
Filipe Manana5893dfb2020-11-04 11:07:32 +0000649 struct btrfs_drop_extents_args drop_args = { 0 };
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400650 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -0400651 int found_type;
Chris Masone02119d2008-09-05 16:13:11 -0400652 u64 extent_end;
Chris Masone02119d2008-09-05 16:13:11 -0400653 u64 start = key->offset;
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000654 u64 nbytes = 0;
Chris Masone02119d2008-09-05 16:13:11 -0400655 struct btrfs_file_extent_item *item;
656 struct inode *inode = NULL;
657 unsigned long size;
658 int ret = 0;
659
660 item = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item);
661 found_type = btrfs_file_extent_type(eb, item);
662
Yan Zhengd899e052008-10-30 14:25:28 -0400663 if (found_type == BTRFS_FILE_EXTENT_REG ||
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000664 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
665 nbytes = btrfs_file_extent_num_bytes(eb, item);
666 extent_end = start + nbytes;
667
668 /*
669 * We don't add to the inodes nbytes if we are prealloc or a
670 * hole.
671 */
672 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
673 nbytes = 0;
674 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Qu Wenruoe41ca582018-06-06 15:41:49 +0800675 size = btrfs_file_extent_ram_bytes(eb, item);
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000676 nbytes = btrfs_file_extent_ram_bytes(eb, item);
Jeff Mahoneyda170662016-06-15 09:22:56 -0400677 extent_end = ALIGN(start + size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400678 fs_info->sectorsize);
Chris Masone02119d2008-09-05 16:13:11 -0400679 } else {
680 ret = 0;
681 goto out;
682 }
683
684 inode = read_one_inode(root, key->objectid);
685 if (!inode) {
686 ret = -EIO;
687 goto out;
688 }
689
690 /*
691 * first check to see if we already have this extent in the
692 * file. This must be done before the btrfs_drop_extents run
693 * so we don't try to drop this extent.
694 */
David Sterbaf85b7372017-01-20 14:54:07 +0100695 ret = btrfs_lookup_file_extent(trans, root, path,
696 btrfs_ino(BTRFS_I(inode)), start, 0);
Chris Masone02119d2008-09-05 16:13:11 -0400697
Yan Zhengd899e052008-10-30 14:25:28 -0400698 if (ret == 0 &&
699 (found_type == BTRFS_FILE_EXTENT_REG ||
700 found_type == BTRFS_FILE_EXTENT_PREALLOC)) {
Chris Masone02119d2008-09-05 16:13:11 -0400701 struct btrfs_file_extent_item cmp1;
702 struct btrfs_file_extent_item cmp2;
703 struct btrfs_file_extent_item *existing;
704 struct extent_buffer *leaf;
705
706 leaf = path->nodes[0];
707 existing = btrfs_item_ptr(leaf, path->slots[0],
708 struct btrfs_file_extent_item);
709
710 read_extent_buffer(eb, &cmp1, (unsigned long)item,
711 sizeof(cmp1));
712 read_extent_buffer(leaf, &cmp2, (unsigned long)existing,
713 sizeof(cmp2));
714
715 /*
716 * we already have a pointer to this exact extent,
717 * we don't have to do anything
718 */
719 if (memcmp(&cmp1, &cmp2, sizeof(cmp1)) == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200720 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400721 goto out;
722 }
723 }
David Sterbab3b4aa72011-04-21 01:20:15 +0200724 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400725
726 /* drop any overlapping extents */
Filipe Manana5893dfb2020-11-04 11:07:32 +0000727 drop_args.start = start;
728 drop_args.end = extent_end;
729 drop_args.drop_cache = true;
730 ret = btrfs_drop_extents(trans, root, BTRFS_I(inode), &drop_args);
Josef Bacik36508602013-04-25 16:23:32 -0400731 if (ret)
732 goto out;
Chris Masone02119d2008-09-05 16:13:11 -0400733
Yan Zheng07d400a2009-01-06 11:42:00 -0500734 if (found_type == BTRFS_FILE_EXTENT_REG ||
735 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400736 u64 offset;
Yan Zheng07d400a2009-01-06 11:42:00 -0500737 unsigned long dest_offset;
738 struct btrfs_key ins;
Chris Masone02119d2008-09-05 16:13:11 -0400739
Filipe Manana3168021c2017-02-01 14:58:02 +0000740 if (btrfs_file_extent_disk_bytenr(eb, item) == 0 &&
741 btrfs_fs_incompat(fs_info, NO_HOLES))
742 goto update_inode;
743
Yan Zheng07d400a2009-01-06 11:42:00 -0500744 ret = btrfs_insert_empty_item(trans, root, path, key,
745 sizeof(*item));
Josef Bacik36508602013-04-25 16:23:32 -0400746 if (ret)
747 goto out;
Yan Zheng07d400a2009-01-06 11:42:00 -0500748 dest_offset = btrfs_item_ptr_offset(path->nodes[0],
749 path->slots[0]);
750 copy_extent_buffer(path->nodes[0], eb, dest_offset,
751 (unsigned long)item, sizeof(*item));
752
753 ins.objectid = btrfs_file_extent_disk_bytenr(eb, item);
754 ins.offset = btrfs_file_extent_disk_num_bytes(eb, item);
755 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400756 offset = key->offset - btrfs_file_extent_offset(eb, item);
Yan Zheng07d400a2009-01-06 11:42:00 -0500757
Qu Wenruodf2c95f2016-08-15 10:36:52 +0800758 /*
759 * Manually record dirty extent, as here we did a shallow
760 * file extent item copy and skip normal backref update,
761 * but modifying extent tree all by ourselves.
762 * So need to manually record dirty extent for qgroup,
763 * as the owner of the file extent changed from log tree
764 * (doesn't affect qgroup) to fs/file tree(affects qgroup)
765 */
Lu Fengqia95f3aa2018-07-18 16:28:03 +0800766 ret = btrfs_qgroup_trace_extent(trans,
Qu Wenruodf2c95f2016-08-15 10:36:52 +0800767 btrfs_file_extent_disk_bytenr(eb, item),
768 btrfs_file_extent_disk_num_bytes(eb, item),
769 GFP_NOFS);
770 if (ret < 0)
771 goto out;
772
Yan Zheng07d400a2009-01-06 11:42:00 -0500773 if (ins.objectid > 0) {
Qu Wenruo82fa1132019-04-04 14:45:35 +0800774 struct btrfs_ref ref = { 0 };
Yan Zheng07d400a2009-01-06 11:42:00 -0500775 u64 csum_start;
776 u64 csum_end;
777 LIST_HEAD(ordered_sums);
Qu Wenruo82fa1132019-04-04 14:45:35 +0800778
Yan Zheng07d400a2009-01-06 11:42:00 -0500779 /*
780 * is this extent already allocated in the extent
781 * allocation tree? If so, just add a reference
782 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400783 ret = btrfs_lookup_data_extent(fs_info, ins.objectid,
Yan Zheng07d400a2009-01-06 11:42:00 -0500784 ins.offset);
Marcos Paulo de Souza37361272021-08-02 09:34:00 -0300785 if (ret < 0) {
786 goto out;
787 } else if (ret == 0) {
Qu Wenruo82fa1132019-04-04 14:45:35 +0800788 btrfs_init_generic_ref(&ref,
789 BTRFS_ADD_DELAYED_REF,
790 ins.objectid, ins.offset, 0);
791 btrfs_init_data_ref(&ref,
792 root->root_key.objectid,
Nikolay Borisovf42c5da2021-10-12 11:21:35 +0300793 key->objectid, offset, 0, false);
Qu Wenruo82fa1132019-04-04 14:45:35 +0800794 ret = btrfs_inc_extent_ref(trans, &ref);
Josef Bacikb50c6e22013-04-25 15:55:30 -0400795 if (ret)
796 goto out;
Yan Zheng07d400a2009-01-06 11:42:00 -0500797 } else {
798 /*
799 * insert the extent pointer in the extent
800 * allocation tree
801 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400802 ret = btrfs_alloc_logged_file_extent(trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400803 root->root_key.objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400804 key->objectid, offset, &ins);
Josef Bacikb50c6e22013-04-25 15:55:30 -0400805 if (ret)
806 goto out;
Yan Zheng07d400a2009-01-06 11:42:00 -0500807 }
David Sterbab3b4aa72011-04-21 01:20:15 +0200808 btrfs_release_path(path);
Yan Zheng07d400a2009-01-06 11:42:00 -0500809
810 if (btrfs_file_extent_compression(eb, item)) {
811 csum_start = ins.objectid;
812 csum_end = csum_start + ins.offset;
813 } else {
814 csum_start = ins.objectid +
815 btrfs_file_extent_offset(eb, item);
816 csum_end = csum_start +
817 btrfs_file_extent_num_bytes(eb, item);
818 }
819
820 ret = btrfs_lookup_csums_range(root->log_root,
821 csum_start, csum_end - 1,
Arne Jansena2de7332011-03-08 14:14:00 +0100822 &ordered_sums, 0);
Josef Bacik36508602013-04-25 16:23:32 -0400823 if (ret)
824 goto out;
Filipe Mananab84b8392015-08-19 11:09:40 +0100825 /*
826 * Now delete all existing cums in the csum root that
827 * cover our range. We do this because we can have an
828 * extent that is completely referenced by one file
829 * extent item and partially referenced by another
830 * file extent item (like after using the clone or
831 * extent_same ioctls). In this case if we end up doing
832 * the replay of the one that partially references the
833 * extent first, and we do not do the csum deletion
834 * below, we can get 2 csum items in the csum tree that
835 * overlap each other. For example, imagine our log has
836 * the two following file extent items:
837 *
838 * key (257 EXTENT_DATA 409600)
839 * extent data disk byte 12845056 nr 102400
840 * extent data offset 20480 nr 20480 ram 102400
841 *
842 * key (257 EXTENT_DATA 819200)
843 * extent data disk byte 12845056 nr 102400
844 * extent data offset 0 nr 102400 ram 102400
845 *
846 * Where the second one fully references the 100K extent
847 * that starts at disk byte 12845056, and the log tree
848 * has a single csum item that covers the entire range
849 * of the extent:
850 *
851 * key (EXTENT_CSUM EXTENT_CSUM 12845056) itemsize 100
852 *
853 * After the first file extent item is replayed, the
854 * csum tree gets the following csum item:
855 *
856 * key (EXTENT_CSUM EXTENT_CSUM 12865536) itemsize 20
857 *
858 * Which covers the 20K sub-range starting at offset 20K
859 * of our extent. Now when we replay the second file
860 * extent item, if we do not delete existing csum items
861 * that cover any of its blocks, we end up getting two
862 * csum items in our csum tree that overlap each other:
863 *
864 * key (EXTENT_CSUM EXTENT_CSUM 12845056) itemsize 100
865 * key (EXTENT_CSUM EXTENT_CSUM 12865536) itemsize 20
866 *
867 * Which is a problem, because after this anyone trying
868 * to lookup up for the checksum of any block of our
869 * extent starting at an offset of 40K or higher, will
870 * end up looking at the second csum item only, which
871 * does not contain the checksum for any block starting
872 * at offset 40K or higher of our extent.
873 */
Yan Zheng07d400a2009-01-06 11:42:00 -0500874 while (!list_empty(&ordered_sums)) {
875 struct btrfs_ordered_sum *sums;
Josef Bacikfc28b252021-11-05 16:45:48 -0400876 struct btrfs_root *csum_root;
877
Yan Zheng07d400a2009-01-06 11:42:00 -0500878 sums = list_entry(ordered_sums.next,
879 struct btrfs_ordered_sum,
880 list);
Josef Bacikfc28b252021-11-05 16:45:48 -0400881 csum_root = btrfs_csum_root(fs_info,
882 sums->bytenr);
Josef Bacik36508602013-04-25 16:23:32 -0400883 if (!ret)
Josef Bacikfc28b252021-11-05 16:45:48 -0400884 ret = btrfs_del_csums(trans, csum_root,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -0400885 sums->bytenr,
886 sums->len);
Filipe Mananab84b8392015-08-19 11:09:40 +0100887 if (!ret)
Josef Bacik36508602013-04-25 16:23:32 -0400888 ret = btrfs_csum_file_blocks(trans,
Josef Bacikfc28b252021-11-05 16:45:48 -0400889 csum_root,
890 sums);
Yan Zheng07d400a2009-01-06 11:42:00 -0500891 list_del(&sums->list);
892 kfree(sums);
893 }
Josef Bacik36508602013-04-25 16:23:32 -0400894 if (ret)
895 goto out;
Yan Zheng07d400a2009-01-06 11:42:00 -0500896 } else {
David Sterbab3b4aa72011-04-21 01:20:15 +0200897 btrfs_release_path(path);
Yan Zheng07d400a2009-01-06 11:42:00 -0500898 }
899 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
900 /* inline extents are easy, we just overwrite them */
901 ret = overwrite_item(trans, root, path, eb, slot, key);
Josef Bacik36508602013-04-25 16:23:32 -0400902 if (ret)
903 goto out;
Yan Zheng07d400a2009-01-06 11:42:00 -0500904 }
905
Josef Bacik9ddc9592020-01-17 09:02:22 -0500906 ret = btrfs_inode_set_file_extent_range(BTRFS_I(inode), start,
907 extent_end - start);
908 if (ret)
909 goto out;
910
Filipe Manana3168021c2017-02-01 14:58:02 +0000911update_inode:
Filipe Manana2766ff62020-11-04 11:07:34 +0000912 btrfs_update_inode_bytes(BTRFS_I(inode), nbytes, drop_args.bytes_found);
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +0200913 ret = btrfs_update_inode(trans, root, BTRFS_I(inode));
Chris Masone02119d2008-09-05 16:13:11 -0400914out:
915 if (inode)
916 iput(inode);
917 return ret;
918}
919
920/*
921 * when cleaning up conflicts between the directory names in the
922 * subvolume, directory names in the log and directory names in the
923 * inode back references, we may have to unlink inodes from directories.
924 *
925 * This is a helper function to do the unlink of a specific directory
926 * item
927 */
928static noinline int drop_one_dir_item(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -0400929 struct btrfs_path *path,
Nikolay Borisov207e7d92017-01-18 00:31:45 +0200930 struct btrfs_inode *dir,
Chris Masone02119d2008-09-05 16:13:11 -0400931 struct btrfs_dir_item *di)
932{
Filipe Manana9798ba22021-10-25 17:31:49 +0100933 struct btrfs_root *root = dir->root;
Chris Masone02119d2008-09-05 16:13:11 -0400934 struct inode *inode;
935 char *name;
936 int name_len;
937 struct extent_buffer *leaf;
938 struct btrfs_key location;
939 int ret;
940
941 leaf = path->nodes[0];
942
943 btrfs_dir_item_key_to_cpu(leaf, di, &location);
944 name_len = btrfs_dir_name_len(leaf, di);
945 name = kmalloc(name_len, GFP_NOFS);
liubo2a29edc2011-01-26 06:22:08 +0000946 if (!name)
947 return -ENOMEM;
948
Chris Masone02119d2008-09-05 16:13:11 -0400949 read_extent_buffer(leaf, name, (unsigned long)(di + 1), name_len);
David Sterbab3b4aa72011-04-21 01:20:15 +0200950 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400951
952 inode = read_one_inode(root, location.objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +0000953 if (!inode) {
Josef Bacik36508602013-04-25 16:23:32 -0400954 ret = -EIO;
955 goto out;
Tsutomu Itohc00e9492011-04-28 09:10:23 +0000956 }
Chris Masone02119d2008-09-05 16:13:11 -0400957
Yan Zhengec051c02009-01-05 15:43:42 -0500958 ret = link_to_fixup_dir(trans, root, path, location.objectid);
Josef Bacik36508602013-04-25 16:23:32 -0400959 if (ret)
960 goto out;
Chris Mason12fcfd22009-03-24 10:24:20 -0400961
Filipe Manana4467af82021-10-25 17:31:50 +0100962 ret = btrfs_unlink_inode(trans, dir, BTRFS_I(inode), name,
Nikolay Borisov207e7d92017-01-18 00:31:45 +0200963 name_len);
Josef Bacik36508602013-04-25 16:23:32 -0400964 if (ret)
965 goto out;
Filipe David Borba Mananaada9af22013-08-05 09:25:47 +0100966 else
Nikolay Borisove5c304e62018-02-07 17:55:43 +0200967 ret = btrfs_run_delayed_items(trans);
Josef Bacik36508602013-04-25 16:23:32 -0400968out:
969 kfree(name);
970 iput(inode);
Chris Masone02119d2008-09-05 16:13:11 -0400971 return ret;
972}
973
974/*
Filipe Manana77a5b9e2021-10-01 13:52:30 +0100975 * See if a given name and sequence number found in an inode back reference are
976 * already in a directory and correctly point to this inode.
977 *
978 * Returns: < 0 on error, 0 if the directory entry does not exists and 1 if it
979 * exists.
Chris Masone02119d2008-09-05 16:13:11 -0400980 */
981static noinline int inode_in_dir(struct btrfs_root *root,
982 struct btrfs_path *path,
983 u64 dirid, u64 objectid, u64 index,
984 const char *name, int name_len)
985{
986 struct btrfs_dir_item *di;
987 struct btrfs_key location;
Filipe Manana77a5b9e2021-10-01 13:52:30 +0100988 int ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -0400989
990 di = btrfs_lookup_dir_index_item(NULL, root, path, dirid,
991 index, name, name_len, 0);
Filipe Manana77a5b9e2021-10-01 13:52:30 +0100992 if (IS_ERR(di)) {
Filipe Manana8dcbc262021-10-01 13:52:33 +0100993 ret = PTR_ERR(di);
Filipe Manana77a5b9e2021-10-01 13:52:30 +0100994 goto out;
995 } else if (di) {
Chris Masone02119d2008-09-05 16:13:11 -0400996 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location);
997 if (location.objectid != objectid)
998 goto out;
Filipe Manana77a5b9e2021-10-01 13:52:30 +0100999 } else {
Chris Masone02119d2008-09-05 16:13:11 -04001000 goto out;
Filipe Manana77a5b9e2021-10-01 13:52:30 +01001001 }
Chris Masone02119d2008-09-05 16:13:11 -04001002
Filipe Manana77a5b9e2021-10-01 13:52:30 +01001003 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001004 di = btrfs_lookup_dir_item(NULL, root, path, dirid, name, name_len, 0);
Filipe Manana77a5b9e2021-10-01 13:52:30 +01001005 if (IS_ERR(di)) {
1006 ret = PTR_ERR(di);
Chris Masone02119d2008-09-05 16:13:11 -04001007 goto out;
Filipe Manana77a5b9e2021-10-01 13:52:30 +01001008 } else if (di) {
1009 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location);
1010 if (location.objectid == objectid)
1011 ret = 1;
1012 }
Chris Masone02119d2008-09-05 16:13:11 -04001013out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001014 btrfs_release_path(path);
Filipe Manana77a5b9e2021-10-01 13:52:30 +01001015 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001016}
1017
1018/*
1019 * helper function to check a log tree for a named back reference in
1020 * an inode. This is used to decide if a back reference that is
1021 * found in the subvolume conflicts with what we find in the log.
1022 *
1023 * inode backreferences may have multiple refs in a single item,
1024 * during replay we process one reference at a time, and we don't
1025 * want to delete valid links to a file from the subvolume if that
1026 * link is also in the log.
1027 */
1028static noinline int backref_in_log(struct btrfs_root *log,
1029 struct btrfs_key *key,
Mark Fashehf1863732012-08-08 11:32:27 -07001030 u64 ref_objectid,
Filipe Mananadf8d1162015-01-14 01:52:25 +00001031 const char *name, int namelen)
Chris Masone02119d2008-09-05 16:13:11 -04001032{
1033 struct btrfs_path *path;
Chris Masone02119d2008-09-05 16:13:11 -04001034 int ret;
Chris Masone02119d2008-09-05 16:13:11 -04001035
1036 path = btrfs_alloc_path();
liubo2a29edc2011-01-26 06:22:08 +00001037 if (!path)
1038 return -ENOMEM;
1039
Chris Masone02119d2008-09-05 16:13:11 -04001040 ret = btrfs_search_slot(NULL, log, key, path, 0, 0);
Nikolay Borisovd3316c82019-09-25 14:03:03 +03001041 if (ret < 0) {
1042 goto out;
1043 } else if (ret == 1) {
Nikolay Borisov89cbf5f6b2019-08-30 17:44:47 +03001044 ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -04001045 goto out;
Nikolay Borisov89cbf5f6b2019-08-30 17:44:47 +03001046 }
Chris Masone02119d2008-09-05 16:13:11 -04001047
Nikolay Borisov89cbf5f6b2019-08-30 17:44:47 +03001048 if (key->type == BTRFS_INODE_EXTREF_KEY)
1049 ret = !!btrfs_find_name_in_ext_backref(path->nodes[0],
1050 path->slots[0],
1051 ref_objectid,
1052 name, namelen);
1053 else
1054 ret = !!btrfs_find_name_in_backref(path->nodes[0],
Filipe Manana1f250e92018-02-28 15:56:10 +00001055 path->slots[0],
Nikolay Borisov89cbf5f6b2019-08-30 17:44:47 +03001056 name, namelen);
Chris Masone02119d2008-09-05 16:13:11 -04001057out:
1058 btrfs_free_path(path);
Nikolay Borisov89cbf5f6b2019-08-30 17:44:47 +03001059 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001060}
1061
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001062static inline int __add_inode_ref(struct btrfs_trans_handle *trans,
1063 struct btrfs_root *root,
1064 struct btrfs_path *path,
1065 struct btrfs_root *log_root,
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001066 struct btrfs_inode *dir,
1067 struct btrfs_inode *inode,
Mark Fashehf1863732012-08-08 11:32:27 -07001068 u64 inode_objectid, u64 parent_objectid,
1069 u64 ref_index, char *name, int namelen,
1070 int *search_done)
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001071{
1072 int ret;
Mark Fashehf1863732012-08-08 11:32:27 -07001073 char *victim_name;
1074 int victim_name_len;
1075 struct extent_buffer *leaf;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001076 struct btrfs_dir_item *di;
Mark Fashehf1863732012-08-08 11:32:27 -07001077 struct btrfs_key search_key;
1078 struct btrfs_inode_extref *extref;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001079
Mark Fashehf1863732012-08-08 11:32:27 -07001080again:
1081 /* Search old style refs */
1082 search_key.objectid = inode_objectid;
1083 search_key.type = BTRFS_INODE_REF_KEY;
1084 search_key.offset = parent_objectid;
1085 ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0);
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001086 if (ret == 0) {
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001087 struct btrfs_inode_ref *victim_ref;
1088 unsigned long ptr;
1089 unsigned long ptr_end;
Mark Fashehf1863732012-08-08 11:32:27 -07001090
1091 leaf = path->nodes[0];
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001092
1093 /* are we trying to overwrite a back ref for the root directory
1094 * if so, just jump out, we're done
1095 */
Mark Fashehf1863732012-08-08 11:32:27 -07001096 if (search_key.objectid == search_key.offset)
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001097 return 1;
1098
1099 /* check all the names in this back reference to see
1100 * if they are in the log. if so, we allow them to stay
1101 * otherwise they must be unlinked as a conflict
1102 */
1103 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
Josef Bacik3212fa12021-10-21 14:58:35 -04001104 ptr_end = ptr + btrfs_item_size(leaf, path->slots[0]);
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001105 while (ptr < ptr_end) {
1106 victim_ref = (struct btrfs_inode_ref *)ptr;
1107 victim_name_len = btrfs_inode_ref_name_len(leaf,
1108 victim_ref);
1109 victim_name = kmalloc(victim_name_len, GFP_NOFS);
Josef Bacik36508602013-04-25 16:23:32 -04001110 if (!victim_name)
1111 return -ENOMEM;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001112
1113 read_extent_buffer(leaf, victim_name,
1114 (unsigned long)(victim_ref + 1),
1115 victim_name_len);
1116
Nikolay Borisovd3316c82019-09-25 14:03:03 +03001117 ret = backref_in_log(log_root, &search_key,
1118 parent_objectid, victim_name,
1119 victim_name_len);
1120 if (ret < 0) {
1121 kfree(victim_name);
1122 return ret;
1123 } else if (!ret) {
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001124 inc_nlink(&inode->vfs_inode);
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001125 btrfs_release_path(path);
1126
Filipe Manana4467af82021-10-25 17:31:50 +01001127 ret = btrfs_unlink_inode(trans, dir, inode,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02001128 victim_name, victim_name_len);
Mark Fashehf1863732012-08-08 11:32:27 -07001129 kfree(victim_name);
Josef Bacik36508602013-04-25 16:23:32 -04001130 if (ret)
1131 return ret;
Nikolay Borisove5c304e62018-02-07 17:55:43 +02001132 ret = btrfs_run_delayed_items(trans);
Filipe David Borba Mananaada9af22013-08-05 09:25:47 +01001133 if (ret)
1134 return ret;
Mark Fashehf1863732012-08-08 11:32:27 -07001135 *search_done = 1;
1136 goto again;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001137 }
1138 kfree(victim_name);
Mark Fashehf1863732012-08-08 11:32:27 -07001139
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001140 ptr = (unsigned long)(victim_ref + 1) + victim_name_len;
1141 }
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001142
1143 /*
1144 * NOTE: we have searched root tree and checked the
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08001145 * corresponding ref, it does not need to check again.
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001146 */
1147 *search_done = 1;
1148 }
1149 btrfs_release_path(path);
1150
Mark Fashehf1863732012-08-08 11:32:27 -07001151 /* Same search but for extended refs */
1152 extref = btrfs_lookup_inode_extref(NULL, root, path, name, namelen,
1153 inode_objectid, parent_objectid, 0,
1154 0);
1155 if (!IS_ERR_OR_NULL(extref)) {
1156 u32 item_size;
1157 u32 cur_offset = 0;
1158 unsigned long base;
1159 struct inode *victim_parent;
1160
1161 leaf = path->nodes[0];
1162
Josef Bacik3212fa12021-10-21 14:58:35 -04001163 item_size = btrfs_item_size(leaf, path->slots[0]);
Mark Fashehf1863732012-08-08 11:32:27 -07001164 base = btrfs_item_ptr_offset(leaf, path->slots[0]);
1165
1166 while (cur_offset < item_size) {
Quentin Casasnovasdd9ef132015-03-03 16:31:38 +01001167 extref = (struct btrfs_inode_extref *)(base + cur_offset);
Mark Fashehf1863732012-08-08 11:32:27 -07001168
1169 victim_name_len = btrfs_inode_extref_name_len(leaf, extref);
1170
1171 if (btrfs_inode_extref_parent(leaf, extref) != parent_objectid)
1172 goto next;
1173
1174 victim_name = kmalloc(victim_name_len, GFP_NOFS);
Josef Bacik36508602013-04-25 16:23:32 -04001175 if (!victim_name)
1176 return -ENOMEM;
Mark Fashehf1863732012-08-08 11:32:27 -07001177 read_extent_buffer(leaf, victim_name, (unsigned long)&extref->name,
1178 victim_name_len);
1179
1180 search_key.objectid = inode_objectid;
1181 search_key.type = BTRFS_INODE_EXTREF_KEY;
1182 search_key.offset = btrfs_extref_hash(parent_objectid,
1183 victim_name,
1184 victim_name_len);
Nikolay Borisovd3316c82019-09-25 14:03:03 +03001185 ret = backref_in_log(log_root, &search_key,
1186 parent_objectid, victim_name,
1187 victim_name_len);
1188 if (ret < 0) {
Jianglei Nief35838a2021-12-09 14:56:31 +08001189 kfree(victim_name);
Nikolay Borisovd3316c82019-09-25 14:03:03 +03001190 return ret;
1191 } else if (!ret) {
Mark Fashehf1863732012-08-08 11:32:27 -07001192 ret = -ENOENT;
1193 victim_parent = read_one_inode(root,
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001194 parent_objectid);
Mark Fashehf1863732012-08-08 11:32:27 -07001195 if (victim_parent) {
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001196 inc_nlink(&inode->vfs_inode);
Mark Fashehf1863732012-08-08 11:32:27 -07001197 btrfs_release_path(path);
1198
Filipe Manana4467af82021-10-25 17:31:50 +01001199 ret = btrfs_unlink_inode(trans,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02001200 BTRFS_I(victim_parent),
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001201 inode,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02001202 victim_name,
1203 victim_name_len);
Filipe David Borba Mananaada9af22013-08-05 09:25:47 +01001204 if (!ret)
1205 ret = btrfs_run_delayed_items(
Nikolay Borisove5c304e62018-02-07 17:55:43 +02001206 trans);
Mark Fashehf1863732012-08-08 11:32:27 -07001207 }
Mark Fashehf1863732012-08-08 11:32:27 -07001208 iput(victim_parent);
1209 kfree(victim_name);
Josef Bacik36508602013-04-25 16:23:32 -04001210 if (ret)
1211 return ret;
Mark Fashehf1863732012-08-08 11:32:27 -07001212 *search_done = 1;
1213 goto again;
1214 }
1215 kfree(victim_name);
Mark Fashehf1863732012-08-08 11:32:27 -07001216next:
1217 cur_offset += victim_name_len + sizeof(*extref);
1218 }
1219 *search_done = 1;
1220 }
1221 btrfs_release_path(path);
1222
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001223 /* look for a conflicting sequence number */
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001224 di = btrfs_lookup_dir_index_item(trans, root, path, btrfs_ino(dir),
Mark Fashehf1863732012-08-08 11:32:27 -07001225 ref_index, name, namelen, 0);
Filipe Manana52db7772021-10-01 13:52:32 +01001226 if (IS_ERR(di)) {
Filipe Manana8dcbc262021-10-01 13:52:33 +01001227 return PTR_ERR(di);
Filipe Manana52db7772021-10-01 13:52:32 +01001228 } else if (di) {
Filipe Manana9798ba22021-10-25 17:31:49 +01001229 ret = drop_one_dir_item(trans, path, dir, di);
Josef Bacik36508602013-04-25 16:23:32 -04001230 if (ret)
1231 return ret;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001232 }
1233 btrfs_release_path(path);
1234
Andrea Gelmini52042d82018-11-28 12:05:13 +01001235 /* look for a conflicting name */
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001236 di = btrfs_lookup_dir_item(trans, root, path, btrfs_ino(dir),
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001237 name, namelen, 0);
Filipe Manana52db7772021-10-01 13:52:32 +01001238 if (IS_ERR(di)) {
1239 return PTR_ERR(di);
1240 } else if (di) {
Filipe Manana9798ba22021-10-25 17:31:49 +01001241 ret = drop_one_dir_item(trans, path, dir, di);
Josef Bacik36508602013-04-25 16:23:32 -04001242 if (ret)
1243 return ret;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001244 }
1245 btrfs_release_path(path);
1246
1247 return 0;
1248}
Chris Masone02119d2008-09-05 16:13:11 -04001249
Qu Wenruobae15d92017-11-08 08:54:26 +08001250static int extref_get_fields(struct extent_buffer *eb, unsigned long ref_ptr,
1251 u32 *namelen, char **name, u64 *index,
1252 u64 *parent_objectid)
Mark Fashehf1863732012-08-08 11:32:27 -07001253{
1254 struct btrfs_inode_extref *extref;
1255
1256 extref = (struct btrfs_inode_extref *)ref_ptr;
1257
1258 *namelen = btrfs_inode_extref_name_len(eb, extref);
1259 *name = kmalloc(*namelen, GFP_NOFS);
1260 if (*name == NULL)
1261 return -ENOMEM;
1262
1263 read_extent_buffer(eb, *name, (unsigned long)&extref->name,
1264 *namelen);
1265
Filipe Manana1f250e92018-02-28 15:56:10 +00001266 if (index)
1267 *index = btrfs_inode_extref_index(eb, extref);
Mark Fashehf1863732012-08-08 11:32:27 -07001268 if (parent_objectid)
1269 *parent_objectid = btrfs_inode_extref_parent(eb, extref);
1270
1271 return 0;
1272}
1273
Qu Wenruobae15d92017-11-08 08:54:26 +08001274static int ref_get_fields(struct extent_buffer *eb, unsigned long ref_ptr,
1275 u32 *namelen, char **name, u64 *index)
Mark Fashehf1863732012-08-08 11:32:27 -07001276{
1277 struct btrfs_inode_ref *ref;
1278
1279 ref = (struct btrfs_inode_ref *)ref_ptr;
1280
1281 *namelen = btrfs_inode_ref_name_len(eb, ref);
1282 *name = kmalloc(*namelen, GFP_NOFS);
1283 if (*name == NULL)
1284 return -ENOMEM;
1285
1286 read_extent_buffer(eb, *name, (unsigned long)(ref + 1), *namelen);
1287
Filipe Manana1f250e92018-02-28 15:56:10 +00001288 if (index)
1289 *index = btrfs_inode_ref_index(eb, ref);
Mark Fashehf1863732012-08-08 11:32:27 -07001290
1291 return 0;
1292}
1293
Chris Masone02119d2008-09-05 16:13:11 -04001294/*
Filipe Manana1f250e92018-02-28 15:56:10 +00001295 * Take an inode reference item from the log tree and iterate all names from the
1296 * inode reference item in the subvolume tree with the same key (if it exists).
1297 * For any name that is not in the inode reference item from the log tree, do a
1298 * proper unlink of that name (that is, remove its entry from the inode
1299 * reference item and both dir index keys).
1300 */
1301static int unlink_old_inode_refs(struct btrfs_trans_handle *trans,
1302 struct btrfs_root *root,
1303 struct btrfs_path *path,
1304 struct btrfs_inode *inode,
1305 struct extent_buffer *log_eb,
1306 int log_slot,
1307 struct btrfs_key *key)
1308{
1309 int ret;
1310 unsigned long ref_ptr;
1311 unsigned long ref_end;
1312 struct extent_buffer *eb;
1313
1314again:
1315 btrfs_release_path(path);
1316 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
1317 if (ret > 0) {
1318 ret = 0;
1319 goto out;
1320 }
1321 if (ret < 0)
1322 goto out;
1323
1324 eb = path->nodes[0];
1325 ref_ptr = btrfs_item_ptr_offset(eb, path->slots[0]);
Josef Bacik3212fa12021-10-21 14:58:35 -04001326 ref_end = ref_ptr + btrfs_item_size(eb, path->slots[0]);
Filipe Manana1f250e92018-02-28 15:56:10 +00001327 while (ref_ptr < ref_end) {
1328 char *name = NULL;
1329 int namelen;
1330 u64 parent_id;
1331
1332 if (key->type == BTRFS_INODE_EXTREF_KEY) {
1333 ret = extref_get_fields(eb, ref_ptr, &namelen, &name,
1334 NULL, &parent_id);
1335 } else {
1336 parent_id = key->offset;
1337 ret = ref_get_fields(eb, ref_ptr, &namelen, &name,
1338 NULL);
1339 }
1340 if (ret)
1341 goto out;
1342
1343 if (key->type == BTRFS_INODE_EXTREF_KEY)
Nikolay Borisov6ff49c62019-08-27 14:46:29 +03001344 ret = !!btrfs_find_name_in_ext_backref(log_eb, log_slot,
1345 parent_id, name,
1346 namelen);
Filipe Manana1f250e92018-02-28 15:56:10 +00001347 else
Nikolay Borisov9bb84072019-08-27 14:46:28 +03001348 ret = !!btrfs_find_name_in_backref(log_eb, log_slot,
1349 name, namelen);
Filipe Manana1f250e92018-02-28 15:56:10 +00001350
1351 if (!ret) {
1352 struct inode *dir;
1353
1354 btrfs_release_path(path);
1355 dir = read_one_inode(root, parent_id);
1356 if (!dir) {
1357 ret = -ENOENT;
1358 kfree(name);
1359 goto out;
1360 }
Filipe Manana4467af82021-10-25 17:31:50 +01001361 ret = btrfs_unlink_inode(trans, BTRFS_I(dir),
Filipe Manana1f250e92018-02-28 15:56:10 +00001362 inode, name, namelen);
1363 kfree(name);
1364 iput(dir);
1365 if (ret)
1366 goto out;
1367 goto again;
1368 }
1369
1370 kfree(name);
1371 ref_ptr += namelen;
1372 if (key->type == BTRFS_INODE_EXTREF_KEY)
1373 ref_ptr += sizeof(struct btrfs_inode_extref);
1374 else
1375 ref_ptr += sizeof(struct btrfs_inode_ref);
1376 }
1377 ret = 0;
1378 out:
1379 btrfs_release_path(path);
1380 return ret;
1381}
1382
Filipe Manana0d836392018-07-20 10:59:06 +01001383static int btrfs_inode_ref_exists(struct inode *inode, struct inode *dir,
1384 const u8 ref_type, const char *name,
1385 const int namelen)
1386{
1387 struct btrfs_key key;
1388 struct btrfs_path *path;
1389 const u64 parent_id = btrfs_ino(BTRFS_I(dir));
1390 int ret;
1391
1392 path = btrfs_alloc_path();
1393 if (!path)
1394 return -ENOMEM;
1395
1396 key.objectid = btrfs_ino(BTRFS_I(inode));
1397 key.type = ref_type;
1398 if (key.type == BTRFS_INODE_REF_KEY)
1399 key.offset = parent_id;
1400 else
1401 key.offset = btrfs_extref_hash(parent_id, name, namelen);
1402
1403 ret = btrfs_search_slot(NULL, BTRFS_I(inode)->root, &key, path, 0, 0);
1404 if (ret < 0)
1405 goto out;
1406 if (ret > 0) {
1407 ret = 0;
1408 goto out;
1409 }
1410 if (key.type == BTRFS_INODE_EXTREF_KEY)
Nikolay Borisov6ff49c62019-08-27 14:46:29 +03001411 ret = !!btrfs_find_name_in_ext_backref(path->nodes[0],
1412 path->slots[0], parent_id, name, namelen);
Filipe Manana0d836392018-07-20 10:59:06 +01001413 else
Nikolay Borisov9bb84072019-08-27 14:46:28 +03001414 ret = !!btrfs_find_name_in_backref(path->nodes[0], path->slots[0],
1415 name, namelen);
Filipe Manana0d836392018-07-20 10:59:06 +01001416
1417out:
1418 btrfs_free_path(path);
1419 return ret;
1420}
1421
Filipe Manana6d9cc072021-10-25 17:31:51 +01001422static int add_link(struct btrfs_trans_handle *trans,
Filipe Manana6b5fc432019-02-13 12:14:03 +00001423 struct inode *dir, struct inode *inode, const char *name,
1424 int namelen, u64 ref_index)
1425{
Filipe Manana6d9cc072021-10-25 17:31:51 +01001426 struct btrfs_root *root = BTRFS_I(dir)->root;
Filipe Manana6b5fc432019-02-13 12:14:03 +00001427 struct btrfs_dir_item *dir_item;
1428 struct btrfs_key key;
1429 struct btrfs_path *path;
1430 struct inode *other_inode = NULL;
1431 int ret;
1432
1433 path = btrfs_alloc_path();
1434 if (!path)
1435 return -ENOMEM;
1436
1437 dir_item = btrfs_lookup_dir_item(NULL, root, path,
1438 btrfs_ino(BTRFS_I(dir)),
1439 name, namelen, 0);
1440 if (!dir_item) {
1441 btrfs_release_path(path);
1442 goto add_link;
1443 } else if (IS_ERR(dir_item)) {
1444 ret = PTR_ERR(dir_item);
1445 goto out;
1446 }
1447
1448 /*
1449 * Our inode's dentry collides with the dentry of another inode which is
1450 * in the log but not yet processed since it has a higher inode number.
1451 * So delete that other dentry.
1452 */
1453 btrfs_dir_item_key_to_cpu(path->nodes[0], dir_item, &key);
1454 btrfs_release_path(path);
1455 other_inode = read_one_inode(root, key.objectid);
1456 if (!other_inode) {
1457 ret = -ENOENT;
1458 goto out;
1459 }
Filipe Manana4467af82021-10-25 17:31:50 +01001460 ret = btrfs_unlink_inode(trans, BTRFS_I(dir), BTRFS_I(other_inode),
Filipe Manana6b5fc432019-02-13 12:14:03 +00001461 name, namelen);
1462 if (ret)
1463 goto out;
1464 /*
1465 * If we dropped the link count to 0, bump it so that later the iput()
1466 * on the inode will not free it. We will fixup the link count later.
1467 */
1468 if (other_inode->i_nlink == 0)
1469 inc_nlink(other_inode);
1470
1471 ret = btrfs_run_delayed_items(trans);
1472 if (ret)
1473 goto out;
1474add_link:
1475 ret = btrfs_add_link(trans, BTRFS_I(dir), BTRFS_I(inode),
1476 name, namelen, 0, ref_index);
1477out:
1478 iput(other_inode);
1479 btrfs_free_path(path);
1480
1481 return ret;
1482}
1483
Filipe Manana1f250e92018-02-28 15:56:10 +00001484/*
Chris Masone02119d2008-09-05 16:13:11 -04001485 * replay one inode back reference item found in the log tree.
1486 * eb, slot and key refer to the buffer and key found in the log tree.
1487 * root is the destination we are replaying into, and path is for temp
1488 * use by this function. (it should be released on return).
1489 */
1490static noinline int add_inode_ref(struct btrfs_trans_handle *trans,
1491 struct btrfs_root *root,
1492 struct btrfs_root *log,
1493 struct btrfs_path *path,
1494 struct extent_buffer *eb, int slot,
1495 struct btrfs_key *key)
1496{
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001497 struct inode *dir = NULL;
1498 struct inode *inode = NULL;
Chris Masone02119d2008-09-05 16:13:11 -04001499 unsigned long ref_ptr;
1500 unsigned long ref_end;
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001501 char *name = NULL;
liubo34f3e4f2011-08-06 08:35:23 +00001502 int namelen;
1503 int ret;
liuboc622ae62011-03-26 08:01:12 -04001504 int search_done = 0;
Mark Fashehf1863732012-08-08 11:32:27 -07001505 int log_ref_ver = 0;
1506 u64 parent_objectid;
1507 u64 inode_objectid;
Chris Masonf46dbe32012-10-09 11:17:20 -04001508 u64 ref_index = 0;
Mark Fashehf1863732012-08-08 11:32:27 -07001509 int ref_struct_size;
1510
1511 ref_ptr = btrfs_item_ptr_offset(eb, slot);
Josef Bacik3212fa12021-10-21 14:58:35 -04001512 ref_end = ref_ptr + btrfs_item_size(eb, slot);
Mark Fashehf1863732012-08-08 11:32:27 -07001513
1514 if (key->type == BTRFS_INODE_EXTREF_KEY) {
1515 struct btrfs_inode_extref *r;
1516
1517 ref_struct_size = sizeof(struct btrfs_inode_extref);
1518 log_ref_ver = 1;
1519 r = (struct btrfs_inode_extref *)ref_ptr;
1520 parent_objectid = btrfs_inode_extref_parent(eb, r);
1521 } else {
1522 ref_struct_size = sizeof(struct btrfs_inode_ref);
1523 parent_objectid = key->offset;
1524 }
1525 inode_objectid = key->objectid;
Chris Masone02119d2008-09-05 16:13:11 -04001526
Chris Masone02119d2008-09-05 16:13:11 -04001527 /*
1528 * it is possible that we didn't log all the parent directories
1529 * for a given inode. If we don't find the dir, just don't
1530 * copy the back ref in. The link count fixup code will take
1531 * care of the rest
1532 */
Mark Fashehf1863732012-08-08 11:32:27 -07001533 dir = read_one_inode(root, parent_objectid);
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001534 if (!dir) {
1535 ret = -ENOENT;
1536 goto out;
1537 }
Chris Masone02119d2008-09-05 16:13:11 -04001538
Mark Fashehf1863732012-08-08 11:32:27 -07001539 inode = read_one_inode(root, inode_objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001540 if (!inode) {
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001541 ret = -EIO;
1542 goto out;
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001543 }
Chris Masone02119d2008-09-05 16:13:11 -04001544
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001545 while (ref_ptr < ref_end) {
Mark Fashehf1863732012-08-08 11:32:27 -07001546 if (log_ref_ver) {
Qu Wenruobae15d92017-11-08 08:54:26 +08001547 ret = extref_get_fields(eb, ref_ptr, &namelen, &name,
1548 &ref_index, &parent_objectid);
Mark Fashehf1863732012-08-08 11:32:27 -07001549 /*
1550 * parent object can change from one array
1551 * item to another.
1552 */
1553 if (!dir)
1554 dir = read_one_inode(root, parent_objectid);
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001555 if (!dir) {
1556 ret = -ENOENT;
1557 goto out;
1558 }
Mark Fashehf1863732012-08-08 11:32:27 -07001559 } else {
Qu Wenruobae15d92017-11-08 08:54:26 +08001560 ret = ref_get_fields(eb, ref_ptr, &namelen, &name,
1561 &ref_index);
Mark Fashehf1863732012-08-08 11:32:27 -07001562 }
1563 if (ret)
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001564 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001565
Filipe Manana77a5b9e2021-10-01 13:52:30 +01001566 ret = inode_in_dir(root, path, btrfs_ino(BTRFS_I(dir)),
1567 btrfs_ino(BTRFS_I(inode)), ref_index,
1568 name, namelen);
1569 if (ret < 0) {
1570 goto out;
1571 } else if (ret == 0) {
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001572 /*
1573 * look for a conflicting back reference in the
1574 * metadata. if we find one we have to unlink that name
1575 * of the file before we add our new link. Later on, we
1576 * overwrite any existing back reference, and we don't
1577 * want to create dangling pointers in the directory.
1578 */
Chris Masone02119d2008-09-05 16:13:11 -04001579
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001580 if (!search_done) {
1581 ret = __add_inode_ref(trans, root, path, log,
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001582 BTRFS_I(dir),
David Sterbad75eefd2017-02-10 20:20:19 +01001583 BTRFS_I(inode),
Mark Fashehf1863732012-08-08 11:32:27 -07001584 inode_objectid,
1585 parent_objectid,
1586 ref_index, name, namelen,
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001587 &search_done);
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001588 if (ret) {
1589 if (ret == 1)
1590 ret = 0;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001591 goto out;
Josef Bacik36508602013-04-25 16:23:32 -04001592 }
Chris Masone02119d2008-09-05 16:13:11 -04001593 }
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001594
Filipe Manana0d836392018-07-20 10:59:06 +01001595 /*
1596 * If a reference item already exists for this inode
1597 * with the same parent and name, but different index,
1598 * drop it and the corresponding directory index entries
1599 * from the parent before adding the new reference item
1600 * and dir index entries, otherwise we would fail with
1601 * -EEXIST returned from btrfs_add_link() below.
1602 */
1603 ret = btrfs_inode_ref_exists(inode, dir, key->type,
1604 name, namelen);
1605 if (ret > 0) {
Filipe Manana4467af82021-10-25 17:31:50 +01001606 ret = btrfs_unlink_inode(trans,
Filipe Manana0d836392018-07-20 10:59:06 +01001607 BTRFS_I(dir),
1608 BTRFS_I(inode),
1609 name, namelen);
1610 /*
1611 * If we dropped the link count to 0, bump it so
1612 * that later the iput() on the inode will not
1613 * free it. We will fixup the link count later.
1614 */
1615 if (!ret && inode->i_nlink == 0)
1616 inc_nlink(inode);
1617 }
1618 if (ret < 0)
1619 goto out;
1620
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001621 /* insert our name */
Filipe Manana6d9cc072021-10-25 17:31:51 +01001622 ret = add_link(trans, dir, inode, name, namelen,
Filipe Manana6b5fc432019-02-13 12:14:03 +00001623 ref_index);
Josef Bacik36508602013-04-25 16:23:32 -04001624 if (ret)
1625 goto out;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001626
Josef Bacikf96d4472021-05-19 11:26:25 -04001627 ret = btrfs_update_inode(trans, root, BTRFS_I(inode));
1628 if (ret)
1629 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001630 }
Filipe Manana77a5b9e2021-10-01 13:52:30 +01001631 /* Else, ret == 1, we already have a perfect match, we're done. */
liuboc622ae62011-03-26 08:01:12 -04001632
Mark Fashehf1863732012-08-08 11:32:27 -07001633 ref_ptr = (unsigned long)(ref_ptr + ref_struct_size) + namelen;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001634 kfree(name);
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001635 name = NULL;
Mark Fashehf1863732012-08-08 11:32:27 -07001636 if (log_ref_ver) {
1637 iput(dir);
1638 dir = NULL;
1639 }
Chris Masone02119d2008-09-05 16:13:11 -04001640 }
Chris Masone02119d2008-09-05 16:13:11 -04001641
Filipe Manana1f250e92018-02-28 15:56:10 +00001642 /*
1643 * Before we overwrite the inode reference item in the subvolume tree
1644 * with the item from the log tree, we must unlink all names from the
1645 * parent directory that are in the subvolume's tree inode reference
1646 * item, otherwise we end up with an inconsistent subvolume tree where
1647 * dir index entries exist for a name but there is no inode reference
1648 * item with the same name.
1649 */
1650 ret = unlink_old_inode_refs(trans, root, path, BTRFS_I(inode), eb, slot,
1651 key);
1652 if (ret)
1653 goto out;
1654
Chris Masone02119d2008-09-05 16:13:11 -04001655 /* finally write the back reference in the inode */
1656 ret = overwrite_item(trans, root, path, eb, slot, key);
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001657out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001658 btrfs_release_path(path);
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001659 kfree(name);
Chris Masone02119d2008-09-05 16:13:11 -04001660 iput(dir);
1661 iput(inode);
Josef Bacik36508602013-04-25 16:23:32 -04001662 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001663}
1664
Mark Fashehf1863732012-08-08 11:32:27 -07001665static int count_inode_extrefs(struct btrfs_root *root,
Nikolay Borisov36283652017-01-18 00:31:49 +02001666 struct btrfs_inode *inode, struct btrfs_path *path)
Chris Masone02119d2008-09-05 16:13:11 -04001667{
Mark Fashehf1863732012-08-08 11:32:27 -07001668 int ret = 0;
1669 int name_len;
1670 unsigned int nlink = 0;
1671 u32 item_size;
1672 u32 cur_offset = 0;
Nikolay Borisov36283652017-01-18 00:31:49 +02001673 u64 inode_objectid = btrfs_ino(inode);
Mark Fashehf1863732012-08-08 11:32:27 -07001674 u64 offset = 0;
1675 unsigned long ptr;
1676 struct btrfs_inode_extref *extref;
1677 struct extent_buffer *leaf;
1678
1679 while (1) {
1680 ret = btrfs_find_one_extref(root, inode_objectid, offset, path,
1681 &extref, &offset);
1682 if (ret)
1683 break;
1684
1685 leaf = path->nodes[0];
Josef Bacik3212fa12021-10-21 14:58:35 -04001686 item_size = btrfs_item_size(leaf, path->slots[0]);
Mark Fashehf1863732012-08-08 11:32:27 -07001687 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
Filipe Manana2c2c4522015-01-13 16:40:04 +00001688 cur_offset = 0;
Mark Fashehf1863732012-08-08 11:32:27 -07001689
1690 while (cur_offset < item_size) {
1691 extref = (struct btrfs_inode_extref *) (ptr + cur_offset);
1692 name_len = btrfs_inode_extref_name_len(leaf, extref);
1693
1694 nlink++;
1695
1696 cur_offset += name_len + sizeof(*extref);
1697 }
1698
1699 offset++;
1700 btrfs_release_path(path);
1701 }
1702 btrfs_release_path(path);
1703
Filipe Manana2c2c4522015-01-13 16:40:04 +00001704 if (ret < 0 && ret != -ENOENT)
Mark Fashehf1863732012-08-08 11:32:27 -07001705 return ret;
1706 return nlink;
1707}
1708
1709static int count_inode_refs(struct btrfs_root *root,
Nikolay Borisovf329e312017-01-18 00:31:50 +02001710 struct btrfs_inode *inode, struct btrfs_path *path)
Mark Fashehf1863732012-08-08 11:32:27 -07001711{
Chris Masone02119d2008-09-05 16:13:11 -04001712 int ret;
1713 struct btrfs_key key;
Mark Fashehf1863732012-08-08 11:32:27 -07001714 unsigned int nlink = 0;
Chris Masone02119d2008-09-05 16:13:11 -04001715 unsigned long ptr;
1716 unsigned long ptr_end;
1717 int name_len;
Nikolay Borisovf329e312017-01-18 00:31:50 +02001718 u64 ino = btrfs_ino(inode);
Chris Masone02119d2008-09-05 16:13:11 -04001719
Li Zefan33345d012011-04-20 10:31:50 +08001720 key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04001721 key.type = BTRFS_INODE_REF_KEY;
1722 key.offset = (u64)-1;
1723
Chris Masond3977122009-01-05 21:25:51 -05001724 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04001725 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1726 if (ret < 0)
1727 break;
1728 if (ret > 0) {
1729 if (path->slots[0] == 0)
1730 break;
1731 path->slots[0]--;
1732 }
Filipe David Borba Mananae93ae262013-10-14 22:49:11 +01001733process_slot:
Chris Masone02119d2008-09-05 16:13:11 -04001734 btrfs_item_key_to_cpu(path->nodes[0], &key,
1735 path->slots[0]);
Li Zefan33345d012011-04-20 10:31:50 +08001736 if (key.objectid != ino ||
Chris Masone02119d2008-09-05 16:13:11 -04001737 key.type != BTRFS_INODE_REF_KEY)
1738 break;
1739 ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]);
Josef Bacik3212fa12021-10-21 14:58:35 -04001740 ptr_end = ptr + btrfs_item_size(path->nodes[0],
Chris Masone02119d2008-09-05 16:13:11 -04001741 path->slots[0]);
Chris Masond3977122009-01-05 21:25:51 -05001742 while (ptr < ptr_end) {
Chris Masone02119d2008-09-05 16:13:11 -04001743 struct btrfs_inode_ref *ref;
1744
1745 ref = (struct btrfs_inode_ref *)ptr;
1746 name_len = btrfs_inode_ref_name_len(path->nodes[0],
1747 ref);
1748 ptr = (unsigned long)(ref + 1) + name_len;
1749 nlink++;
1750 }
1751
1752 if (key.offset == 0)
1753 break;
Filipe David Borba Mananae93ae262013-10-14 22:49:11 +01001754 if (path->slots[0] > 0) {
1755 path->slots[0]--;
1756 goto process_slot;
1757 }
Chris Masone02119d2008-09-05 16:13:11 -04001758 key.offset--;
David Sterbab3b4aa72011-04-21 01:20:15 +02001759 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001760 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001761 btrfs_release_path(path);
Mark Fashehf1863732012-08-08 11:32:27 -07001762
1763 return nlink;
1764}
1765
1766/*
1767 * There are a few corners where the link count of the file can't
1768 * be properly maintained during replay. So, instead of adding
1769 * lots of complexity to the log code, we just scan the backrefs
1770 * for any file that has been through replay.
1771 *
1772 * The scan will update the link count on the inode to reflect the
1773 * number of back refs found. If it goes down to zero, the iput
1774 * will free the inode.
1775 */
1776static noinline int fixup_inode_link_count(struct btrfs_trans_handle *trans,
1777 struct btrfs_root *root,
1778 struct inode *inode)
1779{
1780 struct btrfs_path *path;
1781 int ret;
1782 u64 nlink = 0;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001783 u64 ino = btrfs_ino(BTRFS_I(inode));
Mark Fashehf1863732012-08-08 11:32:27 -07001784
1785 path = btrfs_alloc_path();
1786 if (!path)
1787 return -ENOMEM;
1788
Nikolay Borisovf329e312017-01-18 00:31:50 +02001789 ret = count_inode_refs(root, BTRFS_I(inode), path);
Mark Fashehf1863732012-08-08 11:32:27 -07001790 if (ret < 0)
1791 goto out;
1792
1793 nlink = ret;
1794
Nikolay Borisov36283652017-01-18 00:31:49 +02001795 ret = count_inode_extrefs(root, BTRFS_I(inode), path);
Mark Fashehf1863732012-08-08 11:32:27 -07001796 if (ret < 0)
1797 goto out;
1798
1799 nlink += ret;
1800
1801 ret = 0;
1802
Chris Masone02119d2008-09-05 16:13:11 -04001803 if (nlink != inode->i_nlink) {
Miklos Szeredibfe86842011-10-28 14:13:29 +02001804 set_nlink(inode, nlink);
Josef Bacikf96d4472021-05-19 11:26:25 -04001805 ret = btrfs_update_inode(trans, root, BTRFS_I(inode));
1806 if (ret)
1807 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001808 }
Chris Mason8d5bf1c2008-09-11 15:51:21 -04001809 BTRFS_I(inode)->index_cnt = (u64)-1;
Chris Masone02119d2008-09-05 16:13:11 -04001810
Yan, Zhengc71bf092009-11-12 09:34:40 +00001811 if (inode->i_nlink == 0) {
1812 if (S_ISDIR(inode->i_mode)) {
1813 ret = replay_dir_deletes(trans, root, NULL, path,
Li Zefan33345d012011-04-20 10:31:50 +08001814 ino, 1);
Josef Bacik36508602013-04-25 16:23:32 -04001815 if (ret)
1816 goto out;
Yan, Zhengc71bf092009-11-12 09:34:40 +00001817 }
Nikolay Borisovecdcf3c2020-10-22 18:40:46 +03001818 ret = btrfs_insert_orphan_item(trans, root, ino);
1819 if (ret == -EEXIST)
1820 ret = 0;
Chris Mason12fcfd22009-03-24 10:24:20 -04001821 }
Chris Mason12fcfd22009-03-24 10:24:20 -04001822
Mark Fashehf1863732012-08-08 11:32:27 -07001823out:
1824 btrfs_free_path(path);
1825 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001826}
1827
1828static noinline int fixup_inode_link_counts(struct btrfs_trans_handle *trans,
1829 struct btrfs_root *root,
1830 struct btrfs_path *path)
1831{
1832 int ret;
1833 struct btrfs_key key;
1834 struct inode *inode;
1835
1836 key.objectid = BTRFS_TREE_LOG_FIXUP_OBJECTID;
1837 key.type = BTRFS_ORPHAN_ITEM_KEY;
1838 key.offset = (u64)-1;
Chris Masond3977122009-01-05 21:25:51 -05001839 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04001840 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1841 if (ret < 0)
1842 break;
1843
1844 if (ret == 1) {
Josef Bacik011b28a2021-05-19 13:13:15 -04001845 ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -04001846 if (path->slots[0] == 0)
1847 break;
1848 path->slots[0]--;
1849 }
1850
1851 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1852 if (key.objectid != BTRFS_TREE_LOG_FIXUP_OBJECTID ||
1853 key.type != BTRFS_ORPHAN_ITEM_KEY)
1854 break;
1855
1856 ret = btrfs_del_item(trans, root, path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00001857 if (ret)
Josef Bacik011b28a2021-05-19 13:13:15 -04001858 break;
Chris Masone02119d2008-09-05 16:13:11 -04001859
David Sterbab3b4aa72011-04-21 01:20:15 +02001860 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001861 inode = read_one_inode(root, key.offset);
Josef Bacik011b28a2021-05-19 13:13:15 -04001862 if (!inode) {
1863 ret = -EIO;
1864 break;
1865 }
Chris Masone02119d2008-09-05 16:13:11 -04001866
1867 ret = fixup_inode_link_count(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -04001868 iput(inode);
Josef Bacik36508602013-04-25 16:23:32 -04001869 if (ret)
Josef Bacik011b28a2021-05-19 13:13:15 -04001870 break;
Chris Masone02119d2008-09-05 16:13:11 -04001871
Chris Mason12fcfd22009-03-24 10:24:20 -04001872 /*
1873 * fixup on a directory may create new entries,
1874 * make sure we always look for the highset possible
1875 * offset
1876 */
1877 key.offset = (u64)-1;
Chris Masone02119d2008-09-05 16:13:11 -04001878 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001879 btrfs_release_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00001880 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001881}
1882
1883
1884/*
1885 * record a given inode in the fixup dir so we can check its link
1886 * count when replay is done. The link count is incremented here
1887 * so the inode won't go away until we check it
1888 */
1889static noinline int link_to_fixup_dir(struct btrfs_trans_handle *trans,
1890 struct btrfs_root *root,
1891 struct btrfs_path *path,
1892 u64 objectid)
1893{
1894 struct btrfs_key key;
1895 int ret = 0;
1896 struct inode *inode;
1897
1898 inode = read_one_inode(root, objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001899 if (!inode)
1900 return -EIO;
Chris Masone02119d2008-09-05 16:13:11 -04001901
1902 key.objectid = BTRFS_TREE_LOG_FIXUP_OBJECTID;
David Sterba962a2982014-06-04 18:41:45 +02001903 key.type = BTRFS_ORPHAN_ITEM_KEY;
Chris Masone02119d2008-09-05 16:13:11 -04001904 key.offset = objectid;
1905
1906 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
1907
David Sterbab3b4aa72011-04-21 01:20:15 +02001908 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001909 if (ret == 0) {
Josef Bacik9bf7a482013-03-01 13:35:47 -05001910 if (!inode->i_nlink)
1911 set_nlink(inode, 1);
1912 else
Zach Brown8b558c52013-10-16 12:10:34 -07001913 inc_nlink(inode);
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +02001914 ret = btrfs_update_inode(trans, root, BTRFS_I(inode));
Chris Masone02119d2008-09-05 16:13:11 -04001915 } else if (ret == -EEXIST) {
1916 ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -04001917 }
1918 iput(inode);
1919
1920 return ret;
1921}
1922
1923/*
1924 * when replaying the log for a directory, we only insert names
1925 * for inodes that actually exist. This means an fsync on a directory
1926 * does not implicitly fsync all the new files in it
1927 */
1928static noinline int insert_one_name(struct btrfs_trans_handle *trans,
1929 struct btrfs_root *root,
Chris Masone02119d2008-09-05 16:13:11 -04001930 u64 dirid, u64 index,
Zhaolei60d53eb2015-08-17 18:44:46 +08001931 char *name, int name_len,
Chris Masone02119d2008-09-05 16:13:11 -04001932 struct btrfs_key *location)
1933{
1934 struct inode *inode;
1935 struct inode *dir;
1936 int ret;
1937
1938 inode = read_one_inode(root, location->objectid);
1939 if (!inode)
1940 return -ENOENT;
1941
1942 dir = read_one_inode(root, dirid);
1943 if (!dir) {
1944 iput(inode);
1945 return -EIO;
1946 }
Josef Bacikd5554382013-09-11 14:17:00 -04001947
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02001948 ret = btrfs_add_link(trans, BTRFS_I(dir), BTRFS_I(inode), name,
1949 name_len, 1, index);
Chris Masone02119d2008-09-05 16:13:11 -04001950
1951 /* FIXME, put inode into FIXUP list */
1952
1953 iput(inode);
1954 iput(dir);
1955 return ret;
1956}
1957
Filipe Manana339d0352021-10-25 17:31:53 +01001958static int delete_conflicting_dir_entry(struct btrfs_trans_handle *trans,
1959 struct btrfs_inode *dir,
1960 struct btrfs_path *path,
1961 struct btrfs_dir_item *dst_di,
1962 const struct btrfs_key *log_key,
1963 u8 log_type,
1964 bool exists)
1965{
1966 struct btrfs_key found_key;
1967
1968 btrfs_dir_item_key_to_cpu(path->nodes[0], dst_di, &found_key);
1969 /* The existing dentry points to the same inode, don't delete it. */
1970 if (found_key.objectid == log_key->objectid &&
1971 found_key.type == log_key->type &&
1972 found_key.offset == log_key->offset &&
1973 btrfs_dir_type(path->nodes[0], dst_di) == log_type)
1974 return 1;
1975
1976 /*
1977 * Don't drop the conflicting directory entry if the inode for the new
1978 * entry doesn't exist.
1979 */
1980 if (!exists)
1981 return 0;
1982
1983 return drop_one_dir_item(trans, path, dir, dst_di);
1984}
1985
Chris Masone02119d2008-09-05 16:13:11 -04001986/*
1987 * take a single entry in a log directory item and replay it into
1988 * the subvolume.
1989 *
1990 * if a conflicting item exists in the subdirectory already,
1991 * the inode it points to is unlinked and put into the link count
1992 * fix up tree.
1993 *
1994 * If a name from the log points to a file or directory that does
1995 * not exist in the FS, it is skipped. fsyncs on directories
1996 * do not force down inodes inside that directory, just changes to the
1997 * names or unlinks in a directory.
Filipe Mananabb53eda2015-07-15 23:26:43 +01001998 *
1999 * Returns < 0 on error, 0 if the name wasn't replayed (dentry points to a
2000 * non-existing inode) and 1 if the name was replayed.
Chris Masone02119d2008-09-05 16:13:11 -04002001 */
2002static noinline int replay_one_name(struct btrfs_trans_handle *trans,
2003 struct btrfs_root *root,
2004 struct btrfs_path *path,
2005 struct extent_buffer *eb,
2006 struct btrfs_dir_item *di,
2007 struct btrfs_key *key)
2008{
2009 char *name;
2010 int name_len;
Filipe Manana339d0352021-10-25 17:31:53 +01002011 struct btrfs_dir_item *dir_dst_di;
2012 struct btrfs_dir_item *index_dst_di;
2013 bool dir_dst_matches = false;
2014 bool index_dst_matches = false;
Chris Masone02119d2008-09-05 16:13:11 -04002015 struct btrfs_key log_key;
Filipe Manana339d0352021-10-25 17:31:53 +01002016 struct btrfs_key search_key;
Chris Masone02119d2008-09-05 16:13:11 -04002017 struct inode *dir;
Chris Masone02119d2008-09-05 16:13:11 -04002018 u8 log_type;
Filipe Mananacfd31262021-10-01 13:48:18 +01002019 bool exists;
2020 int ret;
Filipe Manana339d0352021-10-25 17:31:53 +01002021 bool update_size = true;
Filipe Mananabb53eda2015-07-15 23:26:43 +01002022 bool name_added = false;
Chris Masone02119d2008-09-05 16:13:11 -04002023
2024 dir = read_one_inode(root, key->objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00002025 if (!dir)
2026 return -EIO;
Chris Masone02119d2008-09-05 16:13:11 -04002027
2028 name_len = btrfs_dir_name_len(eb, di);
2029 name = kmalloc(name_len, GFP_NOFS);
Filipe David Borba Manana2bac3252013-08-04 19:58:57 +01002030 if (!name) {
2031 ret = -ENOMEM;
2032 goto out;
2033 }
liubo2a29edc2011-01-26 06:22:08 +00002034
Chris Masone02119d2008-09-05 16:13:11 -04002035 log_type = btrfs_dir_type(eb, di);
2036 read_extent_buffer(eb, name, (unsigned long)(di + 1),
2037 name_len);
2038
2039 btrfs_dir_item_key_to_cpu(eb, di, &log_key);
Filipe Mananacfd31262021-10-01 13:48:18 +01002040 ret = btrfs_lookup_inode(trans, root, path, &log_key, 0);
David Sterbab3b4aa72011-04-21 01:20:15 +02002041 btrfs_release_path(path);
Filipe Mananacfd31262021-10-01 13:48:18 +01002042 if (ret < 0)
2043 goto out;
2044 exists = (ret == 0);
2045 ret = 0;
Chris Mason4bef0842008-09-08 11:18:08 -04002046
Filipe Manana339d0352021-10-25 17:31:53 +01002047 dir_dst_di = btrfs_lookup_dir_item(trans, root, path, key->objectid,
2048 name, name_len, 1);
2049 if (IS_ERR(dir_dst_di)) {
2050 ret = PTR_ERR(dir_dst_di);
Josef Bacik36508602013-04-25 16:23:32 -04002051 goto out;
Filipe Manana339d0352021-10-25 17:31:53 +01002052 } else if (dir_dst_di) {
2053 ret = delete_conflicting_dir_entry(trans, BTRFS_I(dir), path,
2054 dir_dst_di, &log_key, log_type,
2055 exists);
2056 if (ret < 0)
Chris Masone02119d2008-09-05 16:13:11 -04002057 goto out;
Filipe Manana339d0352021-10-25 17:31:53 +01002058 dir_dst_matches = (ret == 1);
Chris Masone02119d2008-09-05 16:13:11 -04002059 }
2060
Filipe Manana339d0352021-10-25 17:31:53 +01002061 btrfs_release_path(path);
2062
2063 index_dst_di = btrfs_lookup_dir_index_item(trans, root, path,
2064 key->objectid, key->offset,
2065 name, name_len, 1);
2066 if (IS_ERR(index_dst_di)) {
2067 ret = PTR_ERR(index_dst_di);
2068 goto out;
2069 } else if (index_dst_di) {
2070 ret = delete_conflicting_dir_entry(trans, BTRFS_I(dir), path,
2071 index_dst_di, &log_key,
2072 log_type, exists);
2073 if (ret < 0)
2074 goto out;
2075 index_dst_matches = (ret == 1);
2076 }
2077
2078 btrfs_release_path(path);
2079
2080 if (dir_dst_matches && index_dst_matches) {
2081 ret = 0;
Filipe Mananaa2cc11d2014-09-08 22:53:18 +01002082 update_size = false;
Chris Masone02119d2008-09-05 16:13:11 -04002083 goto out;
2084 }
2085
2086 /*
Nikolay Borisov725af922019-08-30 17:44:49 +03002087 * Check if the inode reference exists in the log for the given name,
2088 * inode and parent inode
2089 */
Filipe Manana339d0352021-10-25 17:31:53 +01002090 search_key.objectid = log_key.objectid;
2091 search_key.type = BTRFS_INODE_REF_KEY;
2092 search_key.offset = key->objectid;
2093 ret = backref_in_log(root->log_root, &search_key, 0, name, name_len);
Nikolay Borisov725af922019-08-30 17:44:49 +03002094 if (ret < 0) {
2095 goto out;
2096 } else if (ret) {
2097 /* The dentry will be added later. */
2098 ret = 0;
2099 update_size = false;
2100 goto out;
2101 }
2102
Filipe Manana339d0352021-10-25 17:31:53 +01002103 search_key.objectid = log_key.objectid;
2104 search_key.type = BTRFS_INODE_EXTREF_KEY;
2105 search_key.offset = key->objectid;
2106 ret = backref_in_log(root->log_root, &search_key, key->objectid, name,
Nikolay Borisov725af922019-08-30 17:44:49 +03002107 name_len);
2108 if (ret < 0) {
2109 goto out;
2110 } else if (ret) {
Filipe Mananadf8d1162015-01-14 01:52:25 +00002111 /* The dentry will be added later. */
2112 ret = 0;
2113 update_size = false;
2114 goto out;
2115 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002116 btrfs_release_path(path);
Zhaolei60d53eb2015-08-17 18:44:46 +08002117 ret = insert_one_name(trans, root, key->objectid, key->offset,
2118 name, name_len, &log_key);
Filipe Mananadf8d1162015-01-14 01:52:25 +00002119 if (ret && ret != -ENOENT && ret != -EEXIST)
Josef Bacik36508602013-04-25 16:23:32 -04002120 goto out;
Filipe Mananabb53eda2015-07-15 23:26:43 +01002121 if (!ret)
2122 name_added = true;
Josef Bacikd5554382013-09-11 14:17:00 -04002123 update_size = false;
Josef Bacik36508602013-04-25 16:23:32 -04002124 ret = 0;
Filipe Manana339d0352021-10-25 17:31:53 +01002125
2126out:
2127 if (!ret && update_size) {
2128 btrfs_i_size_write(BTRFS_I(dir), dir->i_size + name_len * 2);
2129 ret = btrfs_update_inode(trans, root, BTRFS_I(dir));
2130 }
2131 kfree(name);
2132 iput(dir);
2133 if (!ret && name_added)
2134 ret = 1;
2135 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002136}
2137
Filipe Manana339d0352021-10-25 17:31:53 +01002138/* Replay one dir item from a BTRFS_DIR_INDEX_KEY key. */
Chris Masone02119d2008-09-05 16:13:11 -04002139static noinline int replay_one_dir_item(struct btrfs_trans_handle *trans,
2140 struct btrfs_root *root,
2141 struct btrfs_path *path,
2142 struct extent_buffer *eb, int slot,
2143 struct btrfs_key *key)
2144{
Filipe Manana339d0352021-10-25 17:31:53 +01002145 int ret;
Chris Masone02119d2008-09-05 16:13:11 -04002146 struct btrfs_dir_item *di;
Chris Masone02119d2008-09-05 16:13:11 -04002147
Filipe Manana339d0352021-10-25 17:31:53 +01002148 /* We only log dir index keys, which only contain a single dir item. */
2149 ASSERT(key->type == BTRFS_DIR_INDEX_KEY);
Filipe Mananabb53eda2015-07-15 23:26:43 +01002150
Filipe Manana339d0352021-10-25 17:31:53 +01002151 di = btrfs_item_ptr(eb, slot, struct btrfs_dir_item);
2152 ret = replay_one_name(trans, root, path, eb, di, key);
2153 if (ret < 0)
2154 return ret;
Filipe Mananabb53eda2015-07-15 23:26:43 +01002155
Filipe Manana339d0352021-10-25 17:31:53 +01002156 /*
2157 * If this entry refers to a non-directory (directories can not have a
2158 * link count > 1) and it was added in the transaction that was not
2159 * committed, make sure we fixup the link count of the inode the entry
2160 * points to. Otherwise something like the following would result in a
2161 * directory pointing to an inode with a wrong link that does not account
2162 * for this dir entry:
2163 *
2164 * mkdir testdir
2165 * touch testdir/foo
2166 * touch testdir/bar
2167 * sync
2168 *
2169 * ln testdir/bar testdir/bar_link
2170 * ln testdir/foo testdir/foo_link
2171 * xfs_io -c "fsync" testdir/bar
2172 *
2173 * <power failure>
2174 *
2175 * mount fs, log replay happens
2176 *
2177 * File foo would remain with a link count of 1 when it has two entries
2178 * pointing to it in the directory testdir. This would make it impossible
2179 * to ever delete the parent directory has it would result in stale
2180 * dentries that can never be deleted.
2181 */
2182 if (ret == 1 && btrfs_dir_type(eb, di) != BTRFS_FT_DIR) {
2183 struct btrfs_path *fixup_path;
2184 struct btrfs_key di_key;
Filipe Mananabb53eda2015-07-15 23:26:43 +01002185
Filipe Manana339d0352021-10-25 17:31:53 +01002186 fixup_path = btrfs_alloc_path();
2187 if (!fixup_path)
2188 return -ENOMEM;
2189
2190 btrfs_dir_item_key_to_cpu(eb, di, &di_key);
2191 ret = link_to_fixup_dir(trans, root, fixup_path, di_key.objectid);
2192 btrfs_free_path(fixup_path);
Chris Masone02119d2008-09-05 16:13:11 -04002193 }
Filipe Manana339d0352021-10-25 17:31:53 +01002194
Filipe Mananabb53eda2015-07-15 23:26:43 +01002195 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002196}
2197
2198/*
2199 * directory replay has two parts. There are the standard directory
2200 * items in the log copied from the subvolume, and range items
2201 * created in the log while the subvolume was logged.
2202 *
2203 * The range items tell us which parts of the key space the log
2204 * is authoritative for. During replay, if a key in the subvolume
2205 * directory is in a logged range item, but not actually in the log
2206 * that means it was deleted from the directory before the fsync
2207 * and should be removed.
2208 */
2209static noinline int find_dir_range(struct btrfs_root *root,
2210 struct btrfs_path *path,
Filipe Mananaccae4a12021-10-25 17:31:54 +01002211 u64 dirid,
Chris Masone02119d2008-09-05 16:13:11 -04002212 u64 *start_ret, u64 *end_ret)
2213{
2214 struct btrfs_key key;
2215 u64 found_end;
2216 struct btrfs_dir_log_item *item;
2217 int ret;
2218 int nritems;
2219
2220 if (*start_ret == (u64)-1)
2221 return 1;
2222
2223 key.objectid = dirid;
Filipe Mananaccae4a12021-10-25 17:31:54 +01002224 key.type = BTRFS_DIR_LOG_INDEX_KEY;
Chris Masone02119d2008-09-05 16:13:11 -04002225 key.offset = *start_ret;
2226
2227 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2228 if (ret < 0)
2229 goto out;
2230 if (ret > 0) {
2231 if (path->slots[0] == 0)
2232 goto out;
2233 path->slots[0]--;
2234 }
2235 if (ret != 0)
2236 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
2237
Filipe Mananaccae4a12021-10-25 17:31:54 +01002238 if (key.type != BTRFS_DIR_LOG_INDEX_KEY || key.objectid != dirid) {
Chris Masone02119d2008-09-05 16:13:11 -04002239 ret = 1;
2240 goto next;
2241 }
2242 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
2243 struct btrfs_dir_log_item);
2244 found_end = btrfs_dir_log_end(path->nodes[0], item);
2245
2246 if (*start_ret >= key.offset && *start_ret <= found_end) {
2247 ret = 0;
2248 *start_ret = key.offset;
2249 *end_ret = found_end;
2250 goto out;
2251 }
2252 ret = 1;
2253next:
2254 /* check the next slot in the tree to see if it is a valid item */
2255 nritems = btrfs_header_nritems(path->nodes[0]);
Robbie Ko2a7bf532016-10-07 17:30:47 +08002256 path->slots[0]++;
Chris Masone02119d2008-09-05 16:13:11 -04002257 if (path->slots[0] >= nritems) {
2258 ret = btrfs_next_leaf(root, path);
2259 if (ret)
2260 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04002261 }
2262
2263 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
2264
Filipe Mananaccae4a12021-10-25 17:31:54 +01002265 if (key.type != BTRFS_DIR_LOG_INDEX_KEY || key.objectid != dirid) {
Chris Masone02119d2008-09-05 16:13:11 -04002266 ret = 1;
2267 goto out;
2268 }
2269 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
2270 struct btrfs_dir_log_item);
2271 found_end = btrfs_dir_log_end(path->nodes[0], item);
2272 *start_ret = key.offset;
2273 *end_ret = found_end;
2274 ret = 0;
2275out:
David Sterbab3b4aa72011-04-21 01:20:15 +02002276 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002277 return ret;
2278}
2279
2280/*
2281 * this looks for a given directory item in the log. If the directory
2282 * item is not in the log, the item is removed and the inode it points
2283 * to is unlinked
2284 */
2285static noinline int check_item_in_log(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -04002286 struct btrfs_root *log,
2287 struct btrfs_path *path,
2288 struct btrfs_path *log_path,
2289 struct inode *dir,
2290 struct btrfs_key *dir_key)
2291{
Filipe Mananad1ed82f2021-10-25 17:31:52 +01002292 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Masone02119d2008-09-05 16:13:11 -04002293 int ret;
2294 struct extent_buffer *eb;
2295 int slot;
Chris Masone02119d2008-09-05 16:13:11 -04002296 struct btrfs_dir_item *di;
Chris Masone02119d2008-09-05 16:13:11 -04002297 int name_len;
Chris Masone02119d2008-09-05 16:13:11 -04002298 char *name;
Filipe Mananaccae4a12021-10-25 17:31:54 +01002299 struct inode *inode = NULL;
Chris Masone02119d2008-09-05 16:13:11 -04002300 struct btrfs_key location;
2301
Filipe Mananaccae4a12021-10-25 17:31:54 +01002302 /*
2303 * Currenly we only log dir index keys. Even if we replay a log created
2304 * by an older kernel that logged both dir index and dir item keys, all
2305 * we need to do is process the dir index keys, we (and our caller) can
2306 * safely ignore dir item keys (key type BTRFS_DIR_ITEM_KEY).
2307 */
2308 ASSERT(dir_key->type == BTRFS_DIR_INDEX_KEY);
2309
Chris Masone02119d2008-09-05 16:13:11 -04002310 eb = path->nodes[0];
2311 slot = path->slots[0];
Filipe Mananaccae4a12021-10-25 17:31:54 +01002312 di = btrfs_item_ptr(eb, slot, struct btrfs_dir_item);
2313 name_len = btrfs_dir_name_len(eb, di);
2314 name = kmalloc(name_len, GFP_NOFS);
2315 if (!name) {
2316 ret = -ENOMEM;
2317 goto out;
2318 }
2319
2320 read_extent_buffer(eb, name, (unsigned long)(di + 1), name_len);
2321
2322 if (log) {
2323 struct btrfs_dir_item *log_di;
2324
2325 log_di = btrfs_lookup_dir_index_item(trans, log, log_path,
Chris Masone02119d2008-09-05 16:13:11 -04002326 dir_key->objectid,
2327 dir_key->offset,
2328 name, name_len, 0);
Filipe Mananaccae4a12021-10-25 17:31:54 +01002329 if (IS_ERR(log_di)) {
2330 ret = PTR_ERR(log_di);
2331 goto out;
2332 } else if (log_di) {
2333 /* The dentry exists in the log, we have nothing to do. */
Chris Masone02119d2008-09-05 16:13:11 -04002334 ret = 0;
2335 goto out;
2336 }
Chris Masone02119d2008-09-05 16:13:11 -04002337 }
Filipe Mananaccae4a12021-10-25 17:31:54 +01002338
2339 btrfs_dir_item_key_to_cpu(eb, di, &location);
2340 btrfs_release_path(path);
2341 btrfs_release_path(log_path);
2342 inode = read_one_inode(root, location.objectid);
2343 if (!inode) {
2344 ret = -EIO;
2345 goto out;
2346 }
2347
2348 ret = link_to_fixup_dir(trans, root, path, location.objectid);
2349 if (ret)
2350 goto out;
2351
2352 inc_nlink(inode);
2353 ret = btrfs_unlink_inode(trans, BTRFS_I(dir), BTRFS_I(inode), name,
2354 name_len);
2355 if (ret)
2356 goto out;
2357
2358 ret = btrfs_run_delayed_items(trans);
2359 if (ret)
2360 goto out;
2361
2362 /*
2363 * Unlike dir item keys, dir index keys can only have one name (entry) in
2364 * them, as there are no key collisions since each key has a unique offset
2365 * (an index number), so we're done.
2366 */
Chris Masone02119d2008-09-05 16:13:11 -04002367out:
David Sterbab3b4aa72011-04-21 01:20:15 +02002368 btrfs_release_path(path);
2369 btrfs_release_path(log_path);
Filipe Mananaccae4a12021-10-25 17:31:54 +01002370 kfree(name);
2371 iput(inode);
Chris Masone02119d2008-09-05 16:13:11 -04002372 return ret;
2373}
2374
Filipe Manana4f764e52015-02-23 19:53:35 +00002375static int replay_xattr_deletes(struct btrfs_trans_handle *trans,
2376 struct btrfs_root *root,
2377 struct btrfs_root *log,
2378 struct btrfs_path *path,
2379 const u64 ino)
2380{
2381 struct btrfs_key search_key;
2382 struct btrfs_path *log_path;
2383 int i;
2384 int nritems;
2385 int ret;
2386
2387 log_path = btrfs_alloc_path();
2388 if (!log_path)
2389 return -ENOMEM;
2390
2391 search_key.objectid = ino;
2392 search_key.type = BTRFS_XATTR_ITEM_KEY;
2393 search_key.offset = 0;
2394again:
2395 ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0);
2396 if (ret < 0)
2397 goto out;
2398process_leaf:
2399 nritems = btrfs_header_nritems(path->nodes[0]);
2400 for (i = path->slots[0]; i < nritems; i++) {
2401 struct btrfs_key key;
2402 struct btrfs_dir_item *di;
2403 struct btrfs_dir_item *log_di;
2404 u32 total_size;
2405 u32 cur;
2406
2407 btrfs_item_key_to_cpu(path->nodes[0], &key, i);
2408 if (key.objectid != ino || key.type != BTRFS_XATTR_ITEM_KEY) {
2409 ret = 0;
2410 goto out;
2411 }
2412
2413 di = btrfs_item_ptr(path->nodes[0], i, struct btrfs_dir_item);
Josef Bacik3212fa12021-10-21 14:58:35 -04002414 total_size = btrfs_item_size(path->nodes[0], i);
Filipe Manana4f764e52015-02-23 19:53:35 +00002415 cur = 0;
2416 while (cur < total_size) {
2417 u16 name_len = btrfs_dir_name_len(path->nodes[0], di);
2418 u16 data_len = btrfs_dir_data_len(path->nodes[0], di);
2419 u32 this_len = sizeof(*di) + name_len + data_len;
2420 char *name;
2421
2422 name = kmalloc(name_len, GFP_NOFS);
2423 if (!name) {
2424 ret = -ENOMEM;
2425 goto out;
2426 }
2427 read_extent_buffer(path->nodes[0], name,
2428 (unsigned long)(di + 1), name_len);
2429
2430 log_di = btrfs_lookup_xattr(NULL, log, log_path, ino,
2431 name, name_len, 0);
2432 btrfs_release_path(log_path);
2433 if (!log_di) {
2434 /* Doesn't exist in log tree, so delete it. */
2435 btrfs_release_path(path);
2436 di = btrfs_lookup_xattr(trans, root, path, ino,
2437 name, name_len, -1);
2438 kfree(name);
2439 if (IS_ERR(di)) {
2440 ret = PTR_ERR(di);
2441 goto out;
2442 }
2443 ASSERT(di);
2444 ret = btrfs_delete_one_dir_name(trans, root,
2445 path, di);
2446 if (ret)
2447 goto out;
2448 btrfs_release_path(path);
2449 search_key = key;
2450 goto again;
2451 }
2452 kfree(name);
2453 if (IS_ERR(log_di)) {
2454 ret = PTR_ERR(log_di);
2455 goto out;
2456 }
2457 cur += this_len;
2458 di = (struct btrfs_dir_item *)((char *)di + this_len);
2459 }
2460 }
2461 ret = btrfs_next_leaf(root, path);
2462 if (ret > 0)
2463 ret = 0;
2464 else if (ret == 0)
2465 goto process_leaf;
2466out:
2467 btrfs_free_path(log_path);
2468 btrfs_release_path(path);
2469 return ret;
2470}
2471
2472
Chris Masone02119d2008-09-05 16:13:11 -04002473/*
2474 * deletion replay happens before we copy any new directory items
2475 * out of the log or out of backreferences from inodes. It
2476 * scans the log to find ranges of keys that log is authoritative for,
2477 * and then scans the directory to find items in those ranges that are
2478 * not present in the log.
2479 *
2480 * Anything we don't find in the log is unlinked and removed from the
2481 * directory.
2482 */
2483static noinline int replay_dir_deletes(struct btrfs_trans_handle *trans,
2484 struct btrfs_root *root,
2485 struct btrfs_root *log,
2486 struct btrfs_path *path,
Chris Mason12fcfd22009-03-24 10:24:20 -04002487 u64 dirid, int del_all)
Chris Masone02119d2008-09-05 16:13:11 -04002488{
2489 u64 range_start;
2490 u64 range_end;
Chris Masone02119d2008-09-05 16:13:11 -04002491 int ret = 0;
2492 struct btrfs_key dir_key;
2493 struct btrfs_key found_key;
2494 struct btrfs_path *log_path;
2495 struct inode *dir;
2496
2497 dir_key.objectid = dirid;
Filipe Mananaccae4a12021-10-25 17:31:54 +01002498 dir_key.type = BTRFS_DIR_INDEX_KEY;
Chris Masone02119d2008-09-05 16:13:11 -04002499 log_path = btrfs_alloc_path();
2500 if (!log_path)
2501 return -ENOMEM;
2502
2503 dir = read_one_inode(root, dirid);
2504 /* it isn't an error if the inode isn't there, that can happen
2505 * because we replay the deletes before we copy in the inode item
2506 * from the log
2507 */
2508 if (!dir) {
2509 btrfs_free_path(log_path);
2510 return 0;
2511 }
Filipe Mananaccae4a12021-10-25 17:31:54 +01002512
Chris Masone02119d2008-09-05 16:13:11 -04002513 range_start = 0;
2514 range_end = 0;
Chris Masond3977122009-01-05 21:25:51 -05002515 while (1) {
Chris Mason12fcfd22009-03-24 10:24:20 -04002516 if (del_all)
2517 range_end = (u64)-1;
2518 else {
Filipe Mananaccae4a12021-10-25 17:31:54 +01002519 ret = find_dir_range(log, path, dirid,
Chris Mason12fcfd22009-03-24 10:24:20 -04002520 &range_start, &range_end);
Filipe Manana10adb112021-10-14 17:26:04 +01002521 if (ret < 0)
2522 goto out;
2523 else if (ret > 0)
Chris Mason12fcfd22009-03-24 10:24:20 -04002524 break;
2525 }
Chris Masone02119d2008-09-05 16:13:11 -04002526
2527 dir_key.offset = range_start;
Chris Masond3977122009-01-05 21:25:51 -05002528 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04002529 int nritems;
2530 ret = btrfs_search_slot(NULL, root, &dir_key, path,
2531 0, 0);
2532 if (ret < 0)
2533 goto out;
2534
2535 nritems = btrfs_header_nritems(path->nodes[0]);
2536 if (path->slots[0] >= nritems) {
2537 ret = btrfs_next_leaf(root, path);
Liu Bob98def72018-04-03 01:59:48 +08002538 if (ret == 1)
Chris Masone02119d2008-09-05 16:13:11 -04002539 break;
Liu Bob98def72018-04-03 01:59:48 +08002540 else if (ret < 0)
2541 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04002542 }
2543 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
2544 path->slots[0]);
2545 if (found_key.objectid != dirid ||
Filipe Mananaccae4a12021-10-25 17:31:54 +01002546 found_key.type != dir_key.type) {
2547 ret = 0;
2548 goto out;
2549 }
Chris Masone02119d2008-09-05 16:13:11 -04002550
2551 if (found_key.offset > range_end)
2552 break;
2553
Filipe Mananad1ed82f2021-10-25 17:31:52 +01002554 ret = check_item_in_log(trans, log, path,
Chris Mason12fcfd22009-03-24 10:24:20 -04002555 log_path, dir,
2556 &found_key);
Josef Bacik36508602013-04-25 16:23:32 -04002557 if (ret)
2558 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04002559 if (found_key.offset == (u64)-1)
2560 break;
2561 dir_key.offset = found_key.offset + 1;
2562 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002563 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002564 if (range_end == (u64)-1)
2565 break;
2566 range_start = range_end + 1;
2567 }
Chris Masone02119d2008-09-05 16:13:11 -04002568 ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -04002569out:
David Sterbab3b4aa72011-04-21 01:20:15 +02002570 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002571 btrfs_free_path(log_path);
2572 iput(dir);
2573 return ret;
2574}
2575
2576/*
2577 * the process_func used to replay items from the log tree. This
2578 * gets called in two different stages. The first stage just looks
2579 * for inodes and makes sure they are all copied into the subvolume.
2580 *
2581 * The second stage copies all the other item types from the log into
2582 * the subvolume. The two stage approach is slower, but gets rid of
2583 * lots of complexity around inodes referencing other inodes that exist
2584 * only in the log (references come from either directory items or inode
2585 * back refs).
2586 */
2587static int replay_one_buffer(struct btrfs_root *log, struct extent_buffer *eb,
Qu Wenruo581c1762018-03-29 09:08:11 +08002588 struct walk_control *wc, u64 gen, int level)
Chris Masone02119d2008-09-05 16:13:11 -04002589{
2590 int nritems;
2591 struct btrfs_path *path;
2592 struct btrfs_root *root = wc->replay_dest;
2593 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04002594 int i;
2595 int ret;
2596
Qu Wenruo581c1762018-03-29 09:08:11 +08002597 ret = btrfs_read_buffer(eb, gen, level, NULL);
Tsutomu Itoh018642a2012-05-29 18:10:13 +09002598 if (ret)
2599 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002600
2601 level = btrfs_header_level(eb);
2602
2603 if (level != 0)
2604 return 0;
2605
2606 path = btrfs_alloc_path();
Mark Fasheh1e5063d2011-07-12 10:46:06 -07002607 if (!path)
2608 return -ENOMEM;
Chris Masone02119d2008-09-05 16:13:11 -04002609
2610 nritems = btrfs_header_nritems(eb);
2611 for (i = 0; i < nritems; i++) {
2612 btrfs_item_key_to_cpu(eb, &key, i);
Chris Masone02119d2008-09-05 16:13:11 -04002613
2614 /* inode keys are done during the first stage */
2615 if (key.type == BTRFS_INODE_ITEM_KEY &&
2616 wc->stage == LOG_WALK_REPLAY_INODES) {
Chris Masone02119d2008-09-05 16:13:11 -04002617 struct btrfs_inode_item *inode_item;
2618 u32 mode;
2619
2620 inode_item = btrfs_item_ptr(eb, i,
2621 struct btrfs_inode_item);
Filipe Mananaf2d72f42018-10-08 11:12:55 +01002622 /*
2623 * If we have a tmpfile (O_TMPFILE) that got fsync'ed
2624 * and never got linked before the fsync, skip it, as
2625 * replaying it is pointless since it would be deleted
2626 * later. We skip logging tmpfiles, but it's always
2627 * possible we are replaying a log created with a kernel
2628 * that used to log tmpfiles.
2629 */
2630 if (btrfs_inode_nlink(eb, inode_item) == 0) {
2631 wc->ignore_cur_inode = true;
2632 continue;
2633 } else {
2634 wc->ignore_cur_inode = false;
2635 }
Filipe Manana4f764e52015-02-23 19:53:35 +00002636 ret = replay_xattr_deletes(wc->trans, root, log,
2637 path, key.objectid);
2638 if (ret)
2639 break;
Chris Masone02119d2008-09-05 16:13:11 -04002640 mode = btrfs_inode_mode(eb, inode_item);
2641 if (S_ISDIR(mode)) {
2642 ret = replay_dir_deletes(wc->trans,
Chris Mason12fcfd22009-03-24 10:24:20 -04002643 root, log, path, key.objectid, 0);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002644 if (ret)
2645 break;
Chris Masone02119d2008-09-05 16:13:11 -04002646 }
2647 ret = overwrite_item(wc->trans, root, path,
2648 eb, i, &key);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002649 if (ret)
2650 break;
Chris Masone02119d2008-09-05 16:13:11 -04002651
Filipe Manana471d5572018-04-05 22:55:12 +01002652 /*
2653 * Before replaying extents, truncate the inode to its
2654 * size. We need to do it now and not after log replay
2655 * because before an fsync we can have prealloc extents
2656 * added beyond the inode's i_size. If we did it after,
2657 * through orphan cleanup for example, we would drop
2658 * those prealloc extents just after replaying them.
Chris Masone02119d2008-09-05 16:13:11 -04002659 */
2660 if (S_ISREG(mode)) {
Filipe Manana5893dfb2020-11-04 11:07:32 +00002661 struct btrfs_drop_extents_args drop_args = { 0 };
Filipe Manana471d5572018-04-05 22:55:12 +01002662 struct inode *inode;
2663 u64 from;
2664
2665 inode = read_one_inode(root, key.objectid);
2666 if (!inode) {
2667 ret = -EIO;
2668 break;
2669 }
2670 from = ALIGN(i_size_read(inode),
2671 root->fs_info->sectorsize);
Filipe Manana5893dfb2020-11-04 11:07:32 +00002672 drop_args.start = from;
2673 drop_args.end = (u64)-1;
2674 drop_args.drop_cache = true;
2675 ret = btrfs_drop_extents(wc->trans, root,
2676 BTRFS_I(inode),
2677 &drop_args);
Filipe Manana471d5572018-04-05 22:55:12 +01002678 if (!ret) {
Filipe Manana2766ff62020-11-04 11:07:34 +00002679 inode_sub_bytes(inode,
2680 drop_args.bytes_found);
Filipe Mananaf2d72f42018-10-08 11:12:55 +01002681 /* Update the inode's nbytes. */
Filipe Manana471d5572018-04-05 22:55:12 +01002682 ret = btrfs_update_inode(wc->trans,
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +02002683 root, BTRFS_I(inode));
Filipe Manana471d5572018-04-05 22:55:12 +01002684 }
2685 iput(inode);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002686 if (ret)
2687 break;
Chris Masone02119d2008-09-05 16:13:11 -04002688 }
Yan, Zhengc71bf092009-11-12 09:34:40 +00002689
Chris Masone02119d2008-09-05 16:13:11 -04002690 ret = link_to_fixup_dir(wc->trans, root,
2691 path, key.objectid);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002692 if (ret)
2693 break;
Chris Masone02119d2008-09-05 16:13:11 -04002694 }
Josef Bacikdd8e7212013-09-11 11:57:23 -04002695
Filipe Mananaf2d72f42018-10-08 11:12:55 +01002696 if (wc->ignore_cur_inode)
2697 continue;
2698
Josef Bacikdd8e7212013-09-11 11:57:23 -04002699 if (key.type == BTRFS_DIR_INDEX_KEY &&
2700 wc->stage == LOG_WALK_REPLAY_DIR_INDEX) {
2701 ret = replay_one_dir_item(wc->trans, root, path,
2702 eb, i, &key);
2703 if (ret)
2704 break;
2705 }
2706
Chris Masone02119d2008-09-05 16:13:11 -04002707 if (wc->stage < LOG_WALK_REPLAY_ALL)
2708 continue;
2709
2710 /* these keys are simply copied */
2711 if (key.type == BTRFS_XATTR_ITEM_KEY) {
2712 ret = overwrite_item(wc->trans, root, path,
2713 eb, i, &key);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002714 if (ret)
2715 break;
Liu Bo2da1c662013-05-26 13:50:29 +00002716 } else if (key.type == BTRFS_INODE_REF_KEY ||
2717 key.type == BTRFS_INODE_EXTREF_KEY) {
Mark Fashehf1863732012-08-08 11:32:27 -07002718 ret = add_inode_ref(wc->trans, root, log, path,
2719 eb, i, &key);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002720 if (ret && ret != -ENOENT)
2721 break;
2722 ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -04002723 } else if (key.type == BTRFS_EXTENT_DATA_KEY) {
2724 ret = replay_one_extent(wc->trans, root, path,
2725 eb, i, &key);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002726 if (ret)
2727 break;
Chris Masone02119d2008-09-05 16:13:11 -04002728 }
Filipe Manana339d0352021-10-25 17:31:53 +01002729 /*
2730 * We don't log BTRFS_DIR_ITEM_KEY keys anymore, only the
2731 * BTRFS_DIR_INDEX_KEY items which we use to derive the
2732 * BTRFS_DIR_ITEM_KEY items. If we are replaying a log from an
2733 * older kernel with such keys, ignore them.
2734 */
Chris Masone02119d2008-09-05 16:13:11 -04002735 }
2736 btrfs_free_path(path);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002737 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002738}
2739
Nikolay Borisov6787bb92020-01-20 16:09:10 +02002740/*
2741 * Correctly adjust the reserved bytes occupied by a log tree extent buffer
2742 */
2743static void unaccount_log_buffer(struct btrfs_fs_info *fs_info, u64 start)
2744{
2745 struct btrfs_block_group *cache;
2746
2747 cache = btrfs_lookup_block_group(fs_info, start);
2748 if (!cache) {
2749 btrfs_err(fs_info, "unable to find block group for %llu", start);
2750 return;
2751 }
2752
2753 spin_lock(&cache->space_info->lock);
2754 spin_lock(&cache->lock);
2755 cache->reserved -= fs_info->nodesize;
2756 cache->space_info->bytes_reserved -= fs_info->nodesize;
2757 spin_unlock(&cache->lock);
2758 spin_unlock(&cache->space_info->lock);
2759
2760 btrfs_put_block_group(cache);
2761}
2762
Chris Masond3977122009-01-05 21:25:51 -05002763static noinline int walk_down_log_tree(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -04002764 struct btrfs_root *root,
2765 struct btrfs_path *path, int *level,
2766 struct walk_control *wc)
2767{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002768 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04002769 u64 bytenr;
2770 u64 ptr_gen;
2771 struct extent_buffer *next;
2772 struct extent_buffer *cur;
Chris Masone02119d2008-09-05 16:13:11 -04002773 u32 blocksize;
2774 int ret = 0;
2775
Chris Masond3977122009-01-05 21:25:51 -05002776 while (*level > 0) {
Qu Wenruo581c1762018-03-29 09:08:11 +08002777 struct btrfs_key first_key;
2778
Chris Masone02119d2008-09-05 16:13:11 -04002779 cur = path->nodes[*level];
2780
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05302781 WARN_ON(btrfs_header_level(cur) != *level);
Chris Masone02119d2008-09-05 16:13:11 -04002782
2783 if (path->slots[*level] >=
2784 btrfs_header_nritems(cur))
2785 break;
2786
2787 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
2788 ptr_gen = btrfs_node_ptr_generation(cur, path->slots[*level]);
Qu Wenruo581c1762018-03-29 09:08:11 +08002789 btrfs_node_key_to_cpu(cur, &first_key, path->slots[*level]);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002790 blocksize = fs_info->nodesize;
Chris Masone02119d2008-09-05 16:13:11 -04002791
Josef Bacik3fbaf252020-11-05 10:45:20 -05002792 next = btrfs_find_create_tree_block(fs_info, bytenr,
2793 btrfs_header_owner(cur),
2794 *level - 1);
Liu Boc871b0f2016-06-06 12:01:23 -07002795 if (IS_ERR(next))
2796 return PTR_ERR(next);
Chris Masone02119d2008-09-05 16:13:11 -04002797
Chris Masone02119d2008-09-05 16:13:11 -04002798 if (*level == 1) {
Qu Wenruo581c1762018-03-29 09:08:11 +08002799 ret = wc->process_func(root, next, wc, ptr_gen,
2800 *level - 1);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002801 if (ret) {
2802 free_extent_buffer(next);
Mark Fasheh1e5063d2011-07-12 10:46:06 -07002803 return ret;
Josef Bacikb50c6e22013-04-25 15:55:30 -04002804 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002805
Chris Masone02119d2008-09-05 16:13:11 -04002806 path->slots[*level]++;
2807 if (wc->free) {
Qu Wenruo581c1762018-03-29 09:08:11 +08002808 ret = btrfs_read_buffer(next, ptr_gen,
2809 *level - 1, &first_key);
Tsutomu Itoh018642a2012-05-29 18:10:13 +09002810 if (ret) {
2811 free_extent_buffer(next);
2812 return ret;
2813 }
Chris Masone02119d2008-09-05 16:13:11 -04002814
Josef Bacik681ae502013-10-07 15:11:00 -04002815 if (trans) {
2816 btrfs_tree_lock(next);
David Sterba6a884d7d2019-03-20 14:30:02 +01002817 btrfs_clean_tree_block(next);
Josef Bacik681ae502013-10-07 15:11:00 -04002818 btrfs_wait_tree_block_writeback(next);
2819 btrfs_tree_unlock(next);
Nikolay Borisov7bfc1002020-01-20 16:09:12 +02002820 ret = btrfs_pin_reserved_extent(trans,
Nikolay Borisov10e958d2020-01-20 16:09:11 +02002821 bytenr, blocksize);
2822 if (ret) {
2823 free_extent_buffer(next);
2824 return ret;
2825 }
Naohiro Aotad35751562021-02-04 19:21:54 +09002826 btrfs_redirty_list_add(
2827 trans->transaction, next);
Liu Bo18464302018-01-25 11:02:51 -07002828 } else {
2829 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &next->bflags))
2830 clear_extent_buffer_dirty(next);
Nikolay Borisov10e958d2020-01-20 16:09:11 +02002831 unaccount_log_buffer(fs_info, bytenr);
Josef Bacik36508602013-04-25 16:23:32 -04002832 }
Chris Masone02119d2008-09-05 16:13:11 -04002833 }
2834 free_extent_buffer(next);
2835 continue;
2836 }
Qu Wenruo581c1762018-03-29 09:08:11 +08002837 ret = btrfs_read_buffer(next, ptr_gen, *level - 1, &first_key);
Tsutomu Itoh018642a2012-05-29 18:10:13 +09002838 if (ret) {
2839 free_extent_buffer(next);
2840 return ret;
2841 }
Chris Masone02119d2008-09-05 16:13:11 -04002842
Chris Masone02119d2008-09-05 16:13:11 -04002843 if (path->nodes[*level-1])
2844 free_extent_buffer(path->nodes[*level-1]);
2845 path->nodes[*level-1] = next;
2846 *level = btrfs_header_level(next);
2847 path->slots[*level] = 0;
2848 cond_resched();
2849 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002850 path->slots[*level] = btrfs_header_nritems(path->nodes[*level]);
Chris Masone02119d2008-09-05 16:13:11 -04002851
2852 cond_resched();
2853 return 0;
2854}
2855
Chris Masond3977122009-01-05 21:25:51 -05002856static noinline int walk_up_log_tree(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -04002857 struct btrfs_root *root,
2858 struct btrfs_path *path, int *level,
2859 struct walk_control *wc)
2860{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002861 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04002862 int i;
2863 int slot;
2864 int ret;
2865
Chris Masond3977122009-01-05 21:25:51 -05002866 for (i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
Chris Masone02119d2008-09-05 16:13:11 -04002867 slot = path->slots[i];
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002868 if (slot + 1 < btrfs_header_nritems(path->nodes[i])) {
Chris Masone02119d2008-09-05 16:13:11 -04002869 path->slots[i]++;
2870 *level = i;
2871 WARN_ON(*level == 0);
2872 return 0;
2873 } else {
Mark Fasheh1e5063d2011-07-12 10:46:06 -07002874 ret = wc->process_func(root, path->nodes[*level], wc,
Qu Wenruo581c1762018-03-29 09:08:11 +08002875 btrfs_header_generation(path->nodes[*level]),
2876 *level);
Mark Fasheh1e5063d2011-07-12 10:46:06 -07002877 if (ret)
2878 return ret;
2879
Chris Masone02119d2008-09-05 16:13:11 -04002880 if (wc->free) {
2881 struct extent_buffer *next;
2882
2883 next = path->nodes[*level];
2884
Josef Bacik681ae502013-10-07 15:11:00 -04002885 if (trans) {
2886 btrfs_tree_lock(next);
David Sterba6a884d7d2019-03-20 14:30:02 +01002887 btrfs_clean_tree_block(next);
Josef Bacik681ae502013-10-07 15:11:00 -04002888 btrfs_wait_tree_block_writeback(next);
2889 btrfs_tree_unlock(next);
Nikolay Borisov7bfc1002020-01-20 16:09:12 +02002890 ret = btrfs_pin_reserved_extent(trans,
Nikolay Borisov10e958d2020-01-20 16:09:11 +02002891 path->nodes[*level]->start,
2892 path->nodes[*level]->len);
2893 if (ret)
2894 return ret;
Naohiro Aota84c25442021-11-30 12:40:21 +09002895 btrfs_redirty_list_add(trans->transaction,
2896 next);
Liu Bo18464302018-01-25 11:02:51 -07002897 } else {
2898 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &next->bflags))
2899 clear_extent_buffer_dirty(next);
Chris Masone02119d2008-09-05 16:13:11 -04002900
Nikolay Borisov10e958d2020-01-20 16:09:11 +02002901 unaccount_log_buffer(fs_info,
2902 path->nodes[*level]->start);
2903 }
Chris Masone02119d2008-09-05 16:13:11 -04002904 }
2905 free_extent_buffer(path->nodes[*level]);
2906 path->nodes[*level] = NULL;
2907 *level = i + 1;
2908 }
2909 }
2910 return 1;
2911}
2912
2913/*
2914 * drop the reference count on the tree rooted at 'snap'. This traverses
2915 * the tree freeing any blocks that have a ref count of zero after being
2916 * decremented.
2917 */
2918static int walk_log_tree(struct btrfs_trans_handle *trans,
2919 struct btrfs_root *log, struct walk_control *wc)
2920{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002921 struct btrfs_fs_info *fs_info = log->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04002922 int ret = 0;
2923 int wret;
2924 int level;
2925 struct btrfs_path *path;
Chris Masone02119d2008-09-05 16:13:11 -04002926 int orig_level;
2927
2928 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00002929 if (!path)
2930 return -ENOMEM;
Chris Masone02119d2008-09-05 16:13:11 -04002931
2932 level = btrfs_header_level(log->node);
2933 orig_level = level;
2934 path->nodes[level] = log->node;
David Sterba67439da2019-10-08 13:28:47 +02002935 atomic_inc(&log->node->refs);
Chris Masone02119d2008-09-05 16:13:11 -04002936 path->slots[level] = 0;
2937
Chris Masond3977122009-01-05 21:25:51 -05002938 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04002939 wret = walk_down_log_tree(trans, log, path, &level, wc);
2940 if (wret > 0)
2941 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002942 if (wret < 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002943 ret = wret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002944 goto out;
2945 }
Chris Masone02119d2008-09-05 16:13:11 -04002946
2947 wret = walk_up_log_tree(trans, log, path, &level, wc);
2948 if (wret > 0)
2949 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002950 if (wret < 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002951 ret = wret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002952 goto out;
2953 }
Chris Masone02119d2008-09-05 16:13:11 -04002954 }
2955
2956 /* was the root node processed? if not, catch it here */
2957 if (path->nodes[orig_level]) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002958 ret = wc->process_func(log, path->nodes[orig_level], wc,
Qu Wenruo581c1762018-03-29 09:08:11 +08002959 btrfs_header_generation(path->nodes[orig_level]),
2960 orig_level);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002961 if (ret)
2962 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04002963 if (wc->free) {
2964 struct extent_buffer *next;
2965
2966 next = path->nodes[orig_level];
2967
Josef Bacik681ae502013-10-07 15:11:00 -04002968 if (trans) {
2969 btrfs_tree_lock(next);
David Sterba6a884d7d2019-03-20 14:30:02 +01002970 btrfs_clean_tree_block(next);
Josef Bacik681ae502013-10-07 15:11:00 -04002971 btrfs_wait_tree_block_writeback(next);
2972 btrfs_tree_unlock(next);
Nikolay Borisov7bfc1002020-01-20 16:09:12 +02002973 ret = btrfs_pin_reserved_extent(trans,
Nikolay Borisov10e958d2020-01-20 16:09:11 +02002974 next->start, next->len);
2975 if (ret)
2976 goto out;
Naohiro Aota84c25442021-11-30 12:40:21 +09002977 btrfs_redirty_list_add(trans->transaction, next);
Liu Bo18464302018-01-25 11:02:51 -07002978 } else {
2979 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &next->bflags))
2980 clear_extent_buffer_dirty(next);
Nikolay Borisov10e958d2020-01-20 16:09:11 +02002981 unaccount_log_buffer(fs_info, next->start);
Josef Bacik681ae502013-10-07 15:11:00 -04002982 }
Chris Masone02119d2008-09-05 16:13:11 -04002983 }
2984 }
2985
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002986out:
Chris Masone02119d2008-09-05 16:13:11 -04002987 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002988 return ret;
2989}
2990
Yan Zheng7237f182009-01-21 12:54:03 -05002991/*
2992 * helper function to update the item for a given subvolumes log root
2993 * in the tree of log roots
2994 */
2995static int update_log_root(struct btrfs_trans_handle *trans,
Josef Bacik4203e962019-09-30 16:27:25 -04002996 struct btrfs_root *log,
2997 struct btrfs_root_item *root_item)
Yan Zheng7237f182009-01-21 12:54:03 -05002998{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002999 struct btrfs_fs_info *fs_info = log->fs_info;
Yan Zheng7237f182009-01-21 12:54:03 -05003000 int ret;
3001
3002 if (log->log_transid == 1) {
3003 /* insert root item on the first sync */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003004 ret = btrfs_insert_root(trans, fs_info->log_root_tree,
Josef Bacik4203e962019-09-30 16:27:25 -04003005 &log->root_key, root_item);
Yan Zheng7237f182009-01-21 12:54:03 -05003006 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003007 ret = btrfs_update_root(trans, fs_info->log_root_tree,
Josef Bacik4203e962019-09-30 16:27:25 -04003008 &log->root_key, root_item);
Yan Zheng7237f182009-01-21 12:54:03 -05003009 }
3010 return ret;
3011}
3012
Zhaolei60d53eb2015-08-17 18:44:46 +08003013static void wait_log_commit(struct btrfs_root *root, int transid)
Chris Masone02119d2008-09-05 16:13:11 -04003014{
3015 DEFINE_WAIT(wait);
Yan Zheng7237f182009-01-21 12:54:03 -05003016 int index = transid % 2;
Chris Masone02119d2008-09-05 16:13:11 -04003017
Yan Zheng7237f182009-01-21 12:54:03 -05003018 /*
3019 * we only allow two pending log transactions at a time,
3020 * so we know that if ours is more than 2 older than the
3021 * current transaction, we're done
3022 */
Liu Bo49e83f52017-09-01 16:14:30 -06003023 for (;;) {
Yan Zheng7237f182009-01-21 12:54:03 -05003024 prepare_to_wait(&root->log_commit_wait[index],
3025 &wait, TASK_UNINTERRUPTIBLE);
Liu Bo49e83f52017-09-01 16:14:30 -06003026
3027 if (!(root->log_transid_committed < transid &&
3028 atomic_read(&root->log_commit[index])))
3029 break;
3030
Yan Zheng7237f182009-01-21 12:54:03 -05003031 mutex_unlock(&root->log_mutex);
Liu Bo49e83f52017-09-01 16:14:30 -06003032 schedule();
Yan Zheng7237f182009-01-21 12:54:03 -05003033 mutex_lock(&root->log_mutex);
Liu Bo49e83f52017-09-01 16:14:30 -06003034 }
3035 finish_wait(&root->log_commit_wait[index], &wait);
Yan Zheng7237f182009-01-21 12:54:03 -05003036}
3037
Zhaolei60d53eb2015-08-17 18:44:46 +08003038static void wait_for_writer(struct btrfs_root *root)
Yan Zheng7237f182009-01-21 12:54:03 -05003039{
3040 DEFINE_WAIT(wait);
Miao Xie8b050d32014-02-20 18:08:58 +08003041
Liu Bo49e83f52017-09-01 16:14:30 -06003042 for (;;) {
3043 prepare_to_wait(&root->log_writer_wait, &wait,
3044 TASK_UNINTERRUPTIBLE);
3045 if (!atomic_read(&root->log_writers))
3046 break;
3047
Yan Zheng7237f182009-01-21 12:54:03 -05003048 mutex_unlock(&root->log_mutex);
Liu Bo49e83f52017-09-01 16:14:30 -06003049 schedule();
Filipe Manana575849e2015-02-11 11:12:39 +00003050 mutex_lock(&root->log_mutex);
Yan Zheng7237f182009-01-21 12:54:03 -05003051 }
Liu Bo49e83f52017-09-01 16:14:30 -06003052 finish_wait(&root->log_writer_wait, &wait);
Chris Masone02119d2008-09-05 16:13:11 -04003053}
3054
Miao Xie8b050d32014-02-20 18:08:58 +08003055static inline void btrfs_remove_log_ctx(struct btrfs_root *root,
3056 struct btrfs_log_ctx *ctx)
3057{
Miao Xie8b050d32014-02-20 18:08:58 +08003058 mutex_lock(&root->log_mutex);
3059 list_del_init(&ctx->list);
3060 mutex_unlock(&root->log_mutex);
3061}
3062
3063/*
3064 * Invoked in log mutex context, or be sure there is no other task which
3065 * can access the list.
3066 */
3067static inline void btrfs_remove_all_log_ctxs(struct btrfs_root *root,
3068 int index, int error)
3069{
3070 struct btrfs_log_ctx *ctx;
Chris Mason570dd452016-10-27 10:42:20 -07003071 struct btrfs_log_ctx *safe;
Miao Xie8b050d32014-02-20 18:08:58 +08003072
Chris Mason570dd452016-10-27 10:42:20 -07003073 list_for_each_entry_safe(ctx, safe, &root->log_ctxs[index], list) {
3074 list_del_init(&ctx->list);
Miao Xie8b050d32014-02-20 18:08:58 +08003075 ctx->log_ret = error;
Chris Mason570dd452016-10-27 10:42:20 -07003076 }
Miao Xie8b050d32014-02-20 18:08:58 +08003077}
3078
Chris Masone02119d2008-09-05 16:13:11 -04003079/*
3080 * btrfs_sync_log does sends a given tree log down to the disk and
3081 * updates the super blocks to record it. When this call is done,
Chris Mason12fcfd22009-03-24 10:24:20 -04003082 * you know that any inodes previously logged are safely on disk only
3083 * if it returns 0.
3084 *
3085 * Any other return value means you need to call btrfs_commit_transaction.
3086 * Some of the edge cases for fsyncing directories that have had unlinks
3087 * or renames done in the past mean that sometimes the only safe
3088 * fsync is to commit the whole FS. When btrfs_sync_log returns -EAGAIN,
3089 * that has happened.
Chris Masone02119d2008-09-05 16:13:11 -04003090 */
3091int btrfs_sync_log(struct btrfs_trans_handle *trans,
Miao Xie8b050d32014-02-20 18:08:58 +08003092 struct btrfs_root *root, struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -04003093{
Yan Zheng7237f182009-01-21 12:54:03 -05003094 int index1;
3095 int index2;
Yan, Zheng8cef4e12009-11-12 09:33:26 +00003096 int mark;
Chris Masone02119d2008-09-05 16:13:11 -04003097 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003098 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04003099 struct btrfs_root *log = root->log_root;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003100 struct btrfs_root *log_root_tree = fs_info->log_root_tree;
Josef Bacik4203e962019-09-30 16:27:25 -04003101 struct btrfs_root_item new_root_item;
Miao Xiebb14a592014-02-20 18:08:56 +08003102 int log_transid = 0;
Miao Xie8b050d32014-02-20 18:08:58 +08003103 struct btrfs_log_ctx root_log_ctx;
Miao Xiec6adc9c2013-05-28 10:05:39 +00003104 struct blk_plug plug;
Filipe Manana47876f72020-11-25 12:19:28 +00003105 u64 log_root_start;
3106 u64 log_root_level;
Chris Masone02119d2008-09-05 16:13:11 -04003107
Yan Zheng7237f182009-01-21 12:54:03 -05003108 mutex_lock(&root->log_mutex);
Miao Xied1433de2014-02-20 18:08:59 +08003109 log_transid = ctx->log_transid;
3110 if (root->log_transid_committed >= log_transid) {
Yan Zheng7237f182009-01-21 12:54:03 -05003111 mutex_unlock(&root->log_mutex);
Miao Xie8b050d32014-02-20 18:08:58 +08003112 return ctx->log_ret;
Chris Masone02119d2008-09-05 16:13:11 -04003113 }
Miao Xied1433de2014-02-20 18:08:59 +08003114
3115 index1 = log_transid % 2;
3116 if (atomic_read(&root->log_commit[index1])) {
Zhaolei60d53eb2015-08-17 18:44:46 +08003117 wait_log_commit(root, log_transid);
Miao Xied1433de2014-02-20 18:08:59 +08003118 mutex_unlock(&root->log_mutex);
3119 return ctx->log_ret;
3120 }
3121 ASSERT(log_transid == root->log_transid);
Yan Zheng7237f182009-01-21 12:54:03 -05003122 atomic_set(&root->log_commit[index1], 1);
3123
3124 /* wait for previous tree log sync to complete */
3125 if (atomic_read(&root->log_commit[(index1 + 1) % 2]))
Zhaolei60d53eb2015-08-17 18:44:46 +08003126 wait_log_commit(root, log_transid - 1);
Miao Xie48cab2e2014-02-20 18:08:52 +08003127
Yan, Zheng86df7eb2009-10-14 09:24:59 -04003128 while (1) {
Miao Xie2ecb7922012-09-06 04:04:27 -06003129 int batch = atomic_read(&root->log_batch);
Chris Masoncd354ad2011-10-20 15:45:37 -04003130 /* when we're on an ssd, just kick the log commit out */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003131 if (!btrfs_test_opt(fs_info, SSD) &&
Miao Xie27cdeb72014-04-02 19:51:05 +08003132 test_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state)) {
Yan, Zheng86df7eb2009-10-14 09:24:59 -04003133 mutex_unlock(&root->log_mutex);
3134 schedule_timeout_uninterruptible(1);
3135 mutex_lock(&root->log_mutex);
3136 }
Zhaolei60d53eb2015-08-17 18:44:46 +08003137 wait_for_writer(root);
Miao Xie2ecb7922012-09-06 04:04:27 -06003138 if (batch == atomic_read(&root->log_batch))
Chris Masone02119d2008-09-05 16:13:11 -04003139 break;
3140 }
Chris Masond0c803c2008-09-11 16:17:57 -04003141
Chris Mason12fcfd22009-03-24 10:24:20 -04003142 /* bail out if we need to do a full commit */
David Sterba4884b8e2019-03-20 13:25:34 +01003143 if (btrfs_need_log_full_commit(trans)) {
Chris Mason12fcfd22009-03-24 10:24:20 -04003144 ret = -EAGAIN;
3145 mutex_unlock(&root->log_mutex);
3146 goto out;
3147 }
3148
Yan, Zheng8cef4e12009-11-12 09:33:26 +00003149 if (log_transid % 2 == 0)
3150 mark = EXTENT_DIRTY;
3151 else
3152 mark = EXTENT_NEW;
3153
Chris Mason690587d2009-10-13 13:29:19 -04003154 /* we start IO on all the marked extents here, but we don't actually
3155 * wait for them until later.
3156 */
Miao Xiec6adc9c2013-05-28 10:05:39 +00003157 blk_start_plug(&plug);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003158 ret = btrfs_write_marked_extents(fs_info, &log->dirty_log_pages, mark);
Naohiro Aotab528f462021-02-05 23:58:36 +09003159 /*
3160 * -EAGAIN happens when someone, e.g., a concurrent transaction
3161 * commit, writes a dirty extent in this tree-log commit. This
3162 * concurrent write will create a hole writing out the extents,
3163 * and we cannot proceed on a zoned filesystem, requiring
3164 * sequential writing. While we can bail out to a full commit
3165 * here, but we can continue hoping the concurrent writing fills
3166 * the hole.
3167 */
3168 if (ret == -EAGAIN && btrfs_is_zoned(fs_info))
3169 ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003170 if (ret) {
Miao Xiec6adc9c2013-05-28 10:05:39 +00003171 blk_finish_plug(&plug);
Jeff Mahoney66642832016-06-10 18:19:25 -04003172 btrfs_abort_transaction(trans, ret);
David Sterba90787762019-03-20 13:28:05 +01003173 btrfs_set_log_full_commit(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003174 mutex_unlock(&root->log_mutex);
3175 goto out;
3176 }
Yan Zheng7237f182009-01-21 12:54:03 -05003177
Josef Bacik4203e962019-09-30 16:27:25 -04003178 /*
3179 * We _must_ update under the root->log_mutex in order to make sure we
3180 * have a consistent view of the log root we are trying to commit at
3181 * this moment.
3182 *
3183 * We _must_ copy this into a local copy, because we are not holding the
3184 * log_root_tree->log_mutex yet. This is important because when we
3185 * commit the log_root_tree we must have a consistent view of the
3186 * log_root_tree when we update the super block to point at the
3187 * log_root_tree bytenr. If we update the log_root_tree here we'll race
3188 * with the commit and possibly point at the new block which we may not
3189 * have written out.
3190 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003191 btrfs_set_root_node(&log->root_item, log->node);
Josef Bacik4203e962019-09-30 16:27:25 -04003192 memcpy(&new_root_item, &log->root_item, sizeof(new_root_item));
Yan Zheng7237f182009-01-21 12:54:03 -05003193
Yan Zheng7237f182009-01-21 12:54:03 -05003194 root->log_transid++;
3195 log->log_transid = root->log_transid;
Josef Bacikff782e02009-10-08 15:30:04 -04003196 root->log_start_pid = 0;
Yan Zheng7237f182009-01-21 12:54:03 -05003197 /*
Yan, Zheng8cef4e12009-11-12 09:33:26 +00003198 * IO has been started, blocks of the log tree have WRITTEN flag set
3199 * in their headers. new modifications of the log will be written to
3200 * new positions. so it's safe to allow log writers to go in.
Yan Zheng7237f182009-01-21 12:54:03 -05003201 */
3202 mutex_unlock(&root->log_mutex);
3203
Naohiro Aota3ddebf22021-02-04 19:22:20 +09003204 if (btrfs_is_zoned(fs_info)) {
Naohiro Aotae75f9fd2021-03-24 23:23:11 +09003205 mutex_lock(&fs_info->tree_root->log_mutex);
Naohiro Aota3ddebf22021-02-04 19:22:20 +09003206 if (!log_root_tree->node) {
3207 ret = btrfs_alloc_log_tree_node(trans, log_root_tree);
3208 if (ret) {
Filipe Mananaea32af42021-07-07 12:23:45 +01003209 mutex_unlock(&fs_info->tree_root->log_mutex);
Naohiro Aota3ddebf22021-02-04 19:22:20 +09003210 goto out;
3211 }
3212 }
Naohiro Aotae75f9fd2021-03-24 23:23:11 +09003213 mutex_unlock(&fs_info->tree_root->log_mutex);
Naohiro Aota3ddebf22021-02-04 19:22:20 +09003214 }
3215
Naohiro Aotae75f9fd2021-03-24 23:23:11 +09003216 btrfs_init_log_ctx(&root_log_ctx, NULL);
3217
3218 mutex_lock(&log_root_tree->log_mutex);
3219
Filipe Mananae3d3b412021-03-11 15:13:30 +00003220 index2 = log_root_tree->log_transid % 2;
3221 list_add_tail(&root_log_ctx.list, &log_root_tree->log_ctxs[index2]);
3222 root_log_ctx.log_transid = log_root_tree->log_transid;
3223
Josef Bacik4203e962019-09-30 16:27:25 -04003224 /*
3225 * Now we are safe to update the log_root_tree because we're under the
3226 * log_mutex, and we're a current writer so we're holding the commit
3227 * open until we drop the log_mutex.
3228 */
3229 ret = update_log_root(trans, log, &new_root_item);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003230 if (ret) {
Miao Xied1433de2014-02-20 18:08:59 +08003231 if (!list_empty(&root_log_ctx.list))
3232 list_del_init(&root_log_ctx.list);
3233
Miao Xiec6adc9c2013-05-28 10:05:39 +00003234 blk_finish_plug(&plug);
David Sterba90787762019-03-20 13:28:05 +01003235 btrfs_set_log_full_commit(trans);
Miao Xie995946d2014-04-02 19:51:06 +08003236
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003237 if (ret != -ENOSPC) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003238 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003239 mutex_unlock(&log_root_tree->log_mutex);
3240 goto out;
3241 }
Jeff Mahoneybf89d382016-09-09 20:42:44 -04003242 btrfs_wait_tree_log_extents(log, mark);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003243 mutex_unlock(&log_root_tree->log_mutex);
3244 ret = -EAGAIN;
3245 goto out;
3246 }
3247
Miao Xied1433de2014-02-20 18:08:59 +08003248 if (log_root_tree->log_transid_committed >= root_log_ctx.log_transid) {
Forrest Liu3da5ab52015-01-30 19:42:12 +08003249 blk_finish_plug(&plug);
Chris Masoncbd60aa2016-09-06 05:37:40 -07003250 list_del_init(&root_log_ctx.list);
Miao Xied1433de2014-02-20 18:08:59 +08003251 mutex_unlock(&log_root_tree->log_mutex);
3252 ret = root_log_ctx.log_ret;
3253 goto out;
3254 }
Miao Xie8b050d32014-02-20 18:08:58 +08003255
Miao Xied1433de2014-02-20 18:08:59 +08003256 index2 = root_log_ctx.log_transid % 2;
Yan Zheng7237f182009-01-21 12:54:03 -05003257 if (atomic_read(&log_root_tree->log_commit[index2])) {
Miao Xiec6adc9c2013-05-28 10:05:39 +00003258 blk_finish_plug(&plug);
Jeff Mahoneybf89d382016-09-09 20:42:44 -04003259 ret = btrfs_wait_tree_log_extents(log, mark);
Zhaolei60d53eb2015-08-17 18:44:46 +08003260 wait_log_commit(log_root_tree,
Miao Xied1433de2014-02-20 18:08:59 +08003261 root_log_ctx.log_transid);
Yan Zheng7237f182009-01-21 12:54:03 -05003262 mutex_unlock(&log_root_tree->log_mutex);
Filipe Manana5ab5e442014-11-13 16:59:53 +00003263 if (!ret)
3264 ret = root_log_ctx.log_ret;
Yan Zheng7237f182009-01-21 12:54:03 -05003265 goto out;
3266 }
Miao Xied1433de2014-02-20 18:08:59 +08003267 ASSERT(root_log_ctx.log_transid == log_root_tree->log_transid);
Yan Zheng7237f182009-01-21 12:54:03 -05003268 atomic_set(&log_root_tree->log_commit[index2], 1);
3269
Chris Mason12fcfd22009-03-24 10:24:20 -04003270 if (atomic_read(&log_root_tree->log_commit[(index2 + 1) % 2])) {
Zhaolei60d53eb2015-08-17 18:44:46 +08003271 wait_log_commit(log_root_tree,
Miao Xied1433de2014-02-20 18:08:59 +08003272 root_log_ctx.log_transid - 1);
Chris Mason12fcfd22009-03-24 10:24:20 -04003273 }
Yan Zheng7237f182009-01-21 12:54:03 -05003274
Chris Mason12fcfd22009-03-24 10:24:20 -04003275 /*
3276 * now that we've moved on to the tree of log tree roots,
3277 * check the full commit flag again
3278 */
David Sterba4884b8e2019-03-20 13:25:34 +01003279 if (btrfs_need_log_full_commit(trans)) {
Miao Xiec6adc9c2013-05-28 10:05:39 +00003280 blk_finish_plug(&plug);
Jeff Mahoneybf89d382016-09-09 20:42:44 -04003281 btrfs_wait_tree_log_extents(log, mark);
Chris Mason12fcfd22009-03-24 10:24:20 -04003282 mutex_unlock(&log_root_tree->log_mutex);
3283 ret = -EAGAIN;
3284 goto out_wake_log_root;
3285 }
Yan Zheng7237f182009-01-21 12:54:03 -05003286
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003287 ret = btrfs_write_marked_extents(fs_info,
Miao Xiec6adc9c2013-05-28 10:05:39 +00003288 &log_root_tree->dirty_log_pages,
3289 EXTENT_DIRTY | EXTENT_NEW);
3290 blk_finish_plug(&plug);
Naohiro Aotab528f462021-02-05 23:58:36 +09003291 /*
3292 * As described above, -EAGAIN indicates a hole in the extents. We
3293 * cannot wait for these write outs since the waiting cause a
3294 * deadlock. Bail out to the full commit instead.
3295 */
3296 if (ret == -EAGAIN && btrfs_is_zoned(fs_info)) {
3297 btrfs_set_log_full_commit(trans);
3298 btrfs_wait_tree_log_extents(log, mark);
3299 mutex_unlock(&log_root_tree->log_mutex);
3300 goto out_wake_log_root;
3301 } else if (ret) {
David Sterba90787762019-03-20 13:28:05 +01003302 btrfs_set_log_full_commit(trans);
Jeff Mahoney66642832016-06-10 18:19:25 -04003303 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003304 mutex_unlock(&log_root_tree->log_mutex);
3305 goto out_wake_log_root;
3306 }
Jeff Mahoneybf89d382016-09-09 20:42:44 -04003307 ret = btrfs_wait_tree_log_extents(log, mark);
Filipe Manana5ab5e442014-11-13 16:59:53 +00003308 if (!ret)
Jeff Mahoneybf89d382016-09-09 20:42:44 -04003309 ret = btrfs_wait_tree_log_extents(log_root_tree,
3310 EXTENT_NEW | EXTENT_DIRTY);
Filipe Manana5ab5e442014-11-13 16:59:53 +00003311 if (ret) {
David Sterba90787762019-03-20 13:28:05 +01003312 btrfs_set_log_full_commit(trans);
Filipe Manana5ab5e442014-11-13 16:59:53 +00003313 mutex_unlock(&log_root_tree->log_mutex);
3314 goto out_wake_log_root;
3315 }
Chris Masone02119d2008-09-05 16:13:11 -04003316
Filipe Manana47876f72020-11-25 12:19:28 +00003317 log_root_start = log_root_tree->node->start;
3318 log_root_level = btrfs_header_level(log_root_tree->node);
Yan Zheng7237f182009-01-21 12:54:03 -05003319 log_root_tree->log_transid++;
Yan Zheng7237f182009-01-21 12:54:03 -05003320 mutex_unlock(&log_root_tree->log_mutex);
3321
3322 /*
Filipe Manana47876f72020-11-25 12:19:28 +00003323 * Here we are guaranteed that nobody is going to write the superblock
3324 * for the current transaction before us and that neither we do write
3325 * our superblock before the previous transaction finishes its commit
3326 * and writes its superblock, because:
3327 *
3328 * 1) We are holding a handle on the current transaction, so no body
3329 * can commit it until we release the handle;
3330 *
3331 * 2) Before writing our superblock we acquire the tree_log_mutex, so
3332 * if the previous transaction is still committing, and hasn't yet
3333 * written its superblock, we wait for it to do it, because a
3334 * transaction commit acquires the tree_log_mutex when the commit
3335 * begins and releases it only after writing its superblock.
Yan Zheng7237f182009-01-21 12:54:03 -05003336 */
Filipe Manana47876f72020-11-25 12:19:28 +00003337 mutex_lock(&fs_info->tree_log_mutex);
Josef Bacik165ea852021-05-19 17:15:53 -04003338
3339 /*
3340 * The previous transaction writeout phase could have failed, and thus
3341 * marked the fs in an error state. We must not commit here, as we
3342 * could have updated our generation in the super_for_commit and
3343 * writing the super here would result in transid mismatches. If there
3344 * is an error here just bail.
3345 */
Josef Bacik84961532021-10-05 16:35:25 -04003346 if (BTRFS_FS_ERROR(fs_info)) {
Josef Bacik165ea852021-05-19 17:15:53 -04003347 ret = -EIO;
3348 btrfs_set_log_full_commit(trans);
3349 btrfs_abort_transaction(trans, ret);
3350 mutex_unlock(&fs_info->tree_log_mutex);
3351 goto out_wake_log_root;
3352 }
3353
Filipe Manana47876f72020-11-25 12:19:28 +00003354 btrfs_set_super_log_root(fs_info->super_for_commit, log_root_start);
3355 btrfs_set_super_log_root_level(fs_info->super_for_commit, log_root_level);
David Sterbaeece6a92017-02-10 19:04:32 +01003356 ret = write_all_supers(fs_info, 1);
Filipe Manana47876f72020-11-25 12:19:28 +00003357 mutex_unlock(&fs_info->tree_log_mutex);
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003358 if (ret) {
David Sterba90787762019-03-20 13:28:05 +01003359 btrfs_set_log_full_commit(trans);
Jeff Mahoney66642832016-06-10 18:19:25 -04003360 btrfs_abort_transaction(trans, ret);
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003361 goto out_wake_log_root;
3362 }
Yan Zheng7237f182009-01-21 12:54:03 -05003363
Filipe Mananae1a6d262021-07-20 16:03:41 +01003364 /*
3365 * We know there can only be one task here, since we have not yet set
3366 * root->log_commit[index1] to 0 and any task attempting to sync the
3367 * log must wait for the previous log transaction to commit if it's
3368 * still in progress or wait for the current log transaction commit if
3369 * someone else already started it. We use <= and not < because the
3370 * first log transaction has an ID of 0.
3371 */
3372 ASSERT(root->last_log_commit <= log_transid);
3373 root->last_log_commit = log_transid;
Chris Mason257c62e2009-10-13 13:21:08 -04003374
Chris Mason12fcfd22009-03-24 10:24:20 -04003375out_wake_log_root:
Chris Mason570dd452016-10-27 10:42:20 -07003376 mutex_lock(&log_root_tree->log_mutex);
Miao Xie8b050d32014-02-20 18:08:58 +08003377 btrfs_remove_all_log_ctxs(log_root_tree, index2, ret);
3378
Miao Xied1433de2014-02-20 18:08:59 +08003379 log_root_tree->log_transid_committed++;
Yan Zheng7237f182009-01-21 12:54:03 -05003380 atomic_set(&log_root_tree->log_commit[index2], 0);
Miao Xied1433de2014-02-20 18:08:59 +08003381 mutex_unlock(&log_root_tree->log_mutex);
3382
David Sterba33a9eca2015-10-10 18:35:10 +02003383 /*
David Sterba093258e2018-02-26 16:15:17 +01003384 * The barrier before waitqueue_active (in cond_wake_up) is needed so
3385 * all the updates above are seen by the woken threads. It might not be
3386 * necessary, but proving that seems to be hard.
David Sterba33a9eca2015-10-10 18:35:10 +02003387 */
David Sterba093258e2018-02-26 16:15:17 +01003388 cond_wake_up(&log_root_tree->log_commit_wait[index2]);
Chris Masone02119d2008-09-05 16:13:11 -04003389out:
Miao Xied1433de2014-02-20 18:08:59 +08003390 mutex_lock(&root->log_mutex);
Chris Mason570dd452016-10-27 10:42:20 -07003391 btrfs_remove_all_log_ctxs(root, index1, ret);
Miao Xied1433de2014-02-20 18:08:59 +08003392 root->log_transid_committed++;
Yan Zheng7237f182009-01-21 12:54:03 -05003393 atomic_set(&root->log_commit[index1], 0);
Miao Xied1433de2014-02-20 18:08:59 +08003394 mutex_unlock(&root->log_mutex);
Miao Xie8b050d32014-02-20 18:08:58 +08003395
David Sterba33a9eca2015-10-10 18:35:10 +02003396 /*
David Sterba093258e2018-02-26 16:15:17 +01003397 * The barrier before waitqueue_active (in cond_wake_up) is needed so
3398 * all the updates above are seen by the woken threads. It might not be
3399 * necessary, but proving that seems to be hard.
David Sterba33a9eca2015-10-10 18:35:10 +02003400 */
David Sterba093258e2018-02-26 16:15:17 +01003401 cond_wake_up(&root->log_commit_wait[index1]);
Chris Masonb31eabd2011-01-31 16:48:24 -05003402 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04003403}
3404
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003405static void free_log_tree(struct btrfs_trans_handle *trans,
3406 struct btrfs_root *log)
Chris Masone02119d2008-09-05 16:13:11 -04003407{
3408 int ret;
Chris Masone02119d2008-09-05 16:13:11 -04003409 struct walk_control wc = {
3410 .free = 1,
3411 .process_func = process_one_buffer
3412 };
3413
Naohiro Aota3ddebf22021-02-04 19:22:20 +09003414 if (log->node) {
3415 ret = walk_log_tree(trans, log, &wc);
3416 if (ret) {
Filipe Manana40cdc502022-01-18 13:39:34 +00003417 /*
3418 * We weren't able to traverse the entire log tree, the
3419 * typical scenario is getting an -EIO when reading an
3420 * extent buffer of the tree, due to a previous writeback
3421 * failure of it.
3422 */
3423 set_bit(BTRFS_FS_STATE_LOG_CLEANUP_ERROR,
3424 &log->fs_info->fs_state);
3425
3426 /*
3427 * Some extent buffers of the log tree may still be dirty
3428 * and not yet written back to storage, because we may
3429 * have updates to a log tree without syncing a log tree,
3430 * such as during rename and link operations. So flush
3431 * them out and wait for their writeback to complete, so
3432 * that we properly cleanup their state and pages.
3433 */
3434 btrfs_write_marked_extents(log->fs_info,
3435 &log->dirty_log_pages,
3436 EXTENT_DIRTY | EXTENT_NEW);
3437 btrfs_wait_tree_log_extents(log,
3438 EXTENT_DIRTY | EXTENT_NEW);
3439
Naohiro Aota3ddebf22021-02-04 19:22:20 +09003440 if (trans)
3441 btrfs_abort_transaction(trans, ret);
3442 else
3443 btrfs_handle_fs_error(log->fs_info, ret, NULL);
3444 }
Jeff Mahoney374b0e22018-09-06 16:59:33 -04003445 }
Chris Masone02119d2008-09-05 16:13:11 -04003446
Filipe Manana59b07132018-11-09 10:43:08 +00003447 clear_extent_bits(&log->dirty_log_pages, 0, (u64)-1,
3448 EXTENT_DIRTY | EXTENT_NEW | EXTENT_NEED_WAIT);
Filipe Mananae289f032020-05-18 12:14:50 +01003449 extent_io_tree_release(&log->log_csum_range);
Naohiro Aotad35751562021-02-04 19:21:54 +09003450
Josef Bacik00246522020-01-24 09:33:01 -05003451 btrfs_put_root(log);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003452}
3453
3454/*
3455 * free all the extents used by the tree log. This should be called
3456 * at commit time of the full transaction
3457 */
3458int btrfs_free_log(struct btrfs_trans_handle *trans, struct btrfs_root *root)
3459{
3460 if (root->log_root) {
3461 free_log_tree(trans, root->log_root);
3462 root->log_root = NULL;
Filipe Mananae7a79812020-06-15 10:38:44 +01003463 clear_bit(BTRFS_ROOT_HAS_LOG_TREE, &root->state);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003464 }
3465 return 0;
3466}
3467
3468int btrfs_free_log_root_tree(struct btrfs_trans_handle *trans,
3469 struct btrfs_fs_info *fs_info)
3470{
3471 if (fs_info->log_root_tree) {
3472 free_log_tree(trans, fs_info->log_root_tree);
3473 fs_info->log_root_tree = NULL;
Filipe Manana47876f72020-11-25 12:19:28 +00003474 clear_bit(BTRFS_ROOT_HAS_LOG_TREE, &fs_info->tree_root->state);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003475 }
Chris Masone02119d2008-09-05 16:13:11 -04003476 return 0;
3477}
3478
3479/*
Filipe Manana6e8e7772021-07-27 11:24:44 +01003480 * Check if an inode was logged in the current transaction. This may often
3481 * return some false positives, because logged_trans is an in memory only field,
3482 * not persisted anywhere. This is meant to be used in contexts where a false
3483 * positive has no functional consequences.
Filipe Manana803f0f62019-06-19 13:05:39 +01003484 */
3485static bool inode_logged(struct btrfs_trans_handle *trans,
3486 struct btrfs_inode *inode)
3487{
3488 if (inode->logged_trans == trans->transid)
3489 return true;
3490
Filipe Manana1e0860f2021-08-31 15:30:31 +01003491 if (!test_bit(BTRFS_ROOT_HAS_LOG_TREE, &inode->root->state))
3492 return false;
3493
Filipe Manana6e8e7772021-07-27 11:24:44 +01003494 /*
3495 * The inode's logged_trans is always 0 when we load it (because it is
3496 * not persisted in the inode item or elsewhere). So if it is 0, the
Filipe Mananad135a532021-07-29 15:29:01 +01003497 * inode was last modified in the current transaction then the inode may
3498 * have been logged before in the current transaction, then evicted and
3499 * loaded again in the current transaction - or may have never been logged
3500 * in the current transaction, but since we can not be sure, we have to
3501 * assume it was, otherwise our callers can leave an inconsistent log.
Filipe Manana6e8e7772021-07-27 11:24:44 +01003502 */
3503 if (inode->logged_trans == 0 &&
3504 inode->last_trans == trans->transid &&
Filipe Manana803f0f62019-06-19 13:05:39 +01003505 !test_bit(BTRFS_FS_LOG_RECOVERING, &trans->fs_info->flags))
3506 return true;
3507
3508 return false;
3509}
3510
3511/*
Chris Masone02119d2008-09-05 16:13:11 -04003512 * If both a file and directory are logged, and unlinks or renames are
3513 * mixed in, we have a few interesting corners:
3514 *
3515 * create file X in dir Y
3516 * link file X to X.link in dir Y
3517 * fsync file X
3518 * unlink file X but leave X.link
3519 * fsync dir Y
3520 *
3521 * After a crash we would expect only X.link to exist. But file X
3522 * didn't get fsync'd again so the log has back refs for X and X.link.
3523 *
3524 * We solve this by removing directory entries and inode backrefs from the
3525 * log when a file that was logged in the current transaction is
3526 * unlinked. Any later fsync will include the updated log entries, and
3527 * we'll be able to reconstruct the proper directory items from backrefs.
3528 *
3529 * This optimizations allows us to avoid relogging the entire inode
3530 * or the entire directory.
3531 */
Josef Bacik9a35fc92021-10-05 16:35:24 -04003532void btrfs_del_dir_entries_in_log(struct btrfs_trans_handle *trans,
3533 struct btrfs_root *root,
3534 const char *name, int name_len,
3535 struct btrfs_inode *dir, u64 index)
Chris Masone02119d2008-09-05 16:13:11 -04003536{
3537 struct btrfs_root *log;
3538 struct btrfs_dir_item *di;
3539 struct btrfs_path *path;
3540 int ret;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003541 int err = 0;
Nikolay Borisov49f34d12017-01-18 00:31:32 +02003542 u64 dir_ino = btrfs_ino(dir);
Chris Masone02119d2008-09-05 16:13:11 -04003543
Filipe Manana803f0f62019-06-19 13:05:39 +01003544 if (!inode_logged(trans, dir))
Josef Bacik9a35fc92021-10-05 16:35:24 -04003545 return;
Chris Mason3a5f1d42008-09-11 15:53:37 -04003546
Chris Masone02119d2008-09-05 16:13:11 -04003547 ret = join_running_log_trans(root);
3548 if (ret)
Josef Bacik9a35fc92021-10-05 16:35:24 -04003549 return;
Chris Masone02119d2008-09-05 16:13:11 -04003550
Nikolay Borisov49f34d12017-01-18 00:31:32 +02003551 mutex_lock(&dir->log_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04003552
3553 log = root->log_root;
3554 path = btrfs_alloc_path();
Tsutomu Itoha62f44a2011-04-25 19:43:51 -04003555 if (!path) {
3556 err = -ENOMEM;
3557 goto out_unlock;
3558 }
liubo2a29edc2011-01-26 06:22:08 +00003559
Filipe Manana339d0352021-10-25 17:31:53 +01003560 /*
3561 * We only log dir index items of a directory, so we don't need to look
3562 * for dir item keys.
3563 */
Li Zefan33345d012011-04-20 10:31:50 +08003564 di = btrfs_lookup_dir_index_item(trans, log, path, dir_ino,
Chris Masone02119d2008-09-05 16:13:11 -04003565 index, name, name_len, -1);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003566 if (IS_ERR(di)) {
3567 err = PTR_ERR(di);
3568 goto fail;
3569 }
3570 if (di) {
Chris Masone02119d2008-09-05 16:13:11 -04003571 ret = btrfs_delete_one_dir_name(trans, log, path, di);
Josef Bacik36508602013-04-25 16:23:32 -04003572 if (ret) {
3573 err = ret;
3574 goto fail;
3575 }
Chris Masone02119d2008-09-05 16:13:11 -04003576 }
3577
Filipe Mananaddffcf62021-01-27 10:34:54 +00003578 /*
3579 * We do not need to update the size field of the directory's inode item
3580 * because on log replay we update the field to reflect all existing
3581 * entries in the directory (see overwrite_item()).
Chris Masone02119d2008-09-05 16:13:11 -04003582 */
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003583fail:
Chris Masone02119d2008-09-05 16:13:11 -04003584 btrfs_free_path(path);
Tsutomu Itoha62f44a2011-04-25 19:43:51 -04003585out_unlock:
Nikolay Borisov49f34d12017-01-18 00:31:32 +02003586 mutex_unlock(&dir->log_mutex);
Josef Bacik9a35fc92021-10-05 16:35:24 -04003587 if (err < 0)
David Sterba90787762019-03-20 13:28:05 +01003588 btrfs_set_log_full_commit(trans);
Chris Mason12fcfd22009-03-24 10:24:20 -04003589 btrfs_end_log_trans(root);
Chris Masone02119d2008-09-05 16:13:11 -04003590}
3591
3592/* see comments for btrfs_del_dir_entries_in_log */
Josef Bacik9a35fc92021-10-05 16:35:24 -04003593void btrfs_del_inode_ref_in_log(struct btrfs_trans_handle *trans,
3594 struct btrfs_root *root,
3595 const char *name, int name_len,
3596 struct btrfs_inode *inode, u64 dirid)
Chris Masone02119d2008-09-05 16:13:11 -04003597{
3598 struct btrfs_root *log;
3599 u64 index;
3600 int ret;
3601
Filipe Manana803f0f62019-06-19 13:05:39 +01003602 if (!inode_logged(trans, inode))
Josef Bacik9a35fc92021-10-05 16:35:24 -04003603 return;
Chris Mason3a5f1d42008-09-11 15:53:37 -04003604
Chris Masone02119d2008-09-05 16:13:11 -04003605 ret = join_running_log_trans(root);
3606 if (ret)
Josef Bacik9a35fc92021-10-05 16:35:24 -04003607 return;
Chris Masone02119d2008-09-05 16:13:11 -04003608 log = root->log_root;
Nikolay Borisova491abb2017-01-18 00:31:33 +02003609 mutex_lock(&inode->log_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04003610
Nikolay Borisova491abb2017-01-18 00:31:33 +02003611 ret = btrfs_del_inode_ref(trans, log, name, name_len, btrfs_ino(inode),
Chris Masone02119d2008-09-05 16:13:11 -04003612 dirid, &index);
Nikolay Borisova491abb2017-01-18 00:31:33 +02003613 mutex_unlock(&inode->log_mutex);
Josef Bacik9a35fc92021-10-05 16:35:24 -04003614 if (ret < 0 && ret != -ENOENT)
David Sterba90787762019-03-20 13:28:05 +01003615 btrfs_set_log_full_commit(trans);
Chris Mason12fcfd22009-03-24 10:24:20 -04003616 btrfs_end_log_trans(root);
Chris Masone02119d2008-09-05 16:13:11 -04003617}
3618
3619/*
3620 * creates a range item in the log for 'dirid'. first_offset and
3621 * last_offset tell us which parts of the key space the log should
3622 * be considered authoritative for.
3623 */
3624static noinline int insert_dir_log_key(struct btrfs_trans_handle *trans,
3625 struct btrfs_root *log,
3626 struct btrfs_path *path,
Filipe Manana339d0352021-10-25 17:31:53 +01003627 u64 dirid,
Chris Masone02119d2008-09-05 16:13:11 -04003628 u64 first_offset, u64 last_offset)
3629{
3630 int ret;
3631 struct btrfs_key key;
3632 struct btrfs_dir_log_item *item;
3633
3634 key.objectid = dirid;
3635 key.offset = first_offset;
Filipe Manana339d0352021-10-25 17:31:53 +01003636 key.type = BTRFS_DIR_LOG_INDEX_KEY;
Chris Masone02119d2008-09-05 16:13:11 -04003637 ret = btrfs_insert_empty_item(trans, log, path, &key, sizeof(*item));
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003638 if (ret)
3639 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04003640
3641 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
3642 struct btrfs_dir_log_item);
3643 btrfs_set_dir_log_end(path->nodes[0], item, last_offset);
3644 btrfs_mark_buffer_dirty(path->nodes[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02003645 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003646 return 0;
3647}
3648
Filipe Manana086dcbf2021-09-16 11:32:13 +01003649static int flush_dir_items_batch(struct btrfs_trans_handle *trans,
3650 struct btrfs_root *log,
3651 struct extent_buffer *src,
3652 struct btrfs_path *dst_path,
3653 int start_slot,
3654 int count)
3655{
3656 char *ins_data = NULL;
Filipe Mananab7ef5f32021-09-24 12:28:13 +01003657 struct btrfs_item_batch batch;
Filipe Manana086dcbf2021-09-16 11:32:13 +01003658 struct extent_buffer *dst;
Filipe Mananada1b8112021-09-24 12:28:15 +01003659 unsigned long src_offset;
3660 unsigned long dst_offset;
Filipe Manana086dcbf2021-09-16 11:32:13 +01003661 struct btrfs_key key;
3662 u32 item_size;
3663 int ret;
3664 int i;
3665
3666 ASSERT(count > 0);
Filipe Mananab7ef5f32021-09-24 12:28:13 +01003667 batch.nr = count;
Filipe Manana086dcbf2021-09-16 11:32:13 +01003668
3669 if (count == 1) {
3670 btrfs_item_key_to_cpu(src, &key, start_slot);
Josef Bacik3212fa12021-10-21 14:58:35 -04003671 item_size = btrfs_item_size(src, start_slot);
Filipe Mananab7ef5f32021-09-24 12:28:13 +01003672 batch.keys = &key;
3673 batch.data_sizes = &item_size;
3674 batch.total_data_size = item_size;
Filipe Manana086dcbf2021-09-16 11:32:13 +01003675 } else {
Filipe Mananab7ef5f32021-09-24 12:28:13 +01003676 struct btrfs_key *ins_keys;
3677 u32 *ins_sizes;
3678
Filipe Manana086dcbf2021-09-16 11:32:13 +01003679 ins_data = kmalloc(count * sizeof(u32) +
3680 count * sizeof(struct btrfs_key), GFP_NOFS);
3681 if (!ins_data)
3682 return -ENOMEM;
3683
3684 ins_sizes = (u32 *)ins_data;
3685 ins_keys = (struct btrfs_key *)(ins_data + count * sizeof(u32));
Filipe Mananab7ef5f32021-09-24 12:28:13 +01003686 batch.keys = ins_keys;
3687 batch.data_sizes = ins_sizes;
3688 batch.total_data_size = 0;
Filipe Manana086dcbf2021-09-16 11:32:13 +01003689
3690 for (i = 0; i < count; i++) {
3691 const int slot = start_slot + i;
3692
3693 btrfs_item_key_to_cpu(src, &ins_keys[i], slot);
Josef Bacik3212fa12021-10-21 14:58:35 -04003694 ins_sizes[i] = btrfs_item_size(src, slot);
Filipe Mananab7ef5f32021-09-24 12:28:13 +01003695 batch.total_data_size += ins_sizes[i];
Filipe Manana086dcbf2021-09-16 11:32:13 +01003696 }
3697 }
3698
Filipe Mananab7ef5f32021-09-24 12:28:13 +01003699 ret = btrfs_insert_empty_items(trans, log, dst_path, &batch);
Filipe Manana086dcbf2021-09-16 11:32:13 +01003700 if (ret)
3701 goto out;
3702
3703 dst = dst_path->nodes[0];
Filipe Mananada1b8112021-09-24 12:28:15 +01003704 /*
3705 * Copy all the items in bulk, in a single copy operation. Item data is
3706 * organized such that it's placed at the end of a leaf and from right
3707 * to left. For example, the data for the second item ends at an offset
3708 * that matches the offset where the data for the first item starts, the
3709 * data for the third item ends at an offset that matches the offset
3710 * where the data of the second items starts, and so on.
3711 * Therefore our source and destination start offsets for copy match the
3712 * offsets of the last items (highest slots).
3713 */
3714 dst_offset = btrfs_item_ptr_offset(dst, dst_path->slots[0] + count - 1);
3715 src_offset = btrfs_item_ptr_offset(src, start_slot + count - 1);
3716 copy_extent_buffer(dst, src, dst_offset, src_offset, batch.total_data_size);
Filipe Manana086dcbf2021-09-16 11:32:13 +01003717 btrfs_release_path(dst_path);
3718out:
3719 kfree(ins_data);
3720
3721 return ret;
3722}
3723
Filipe Mananaeb10d852021-09-16 11:32:12 +01003724static int process_dir_items_leaf(struct btrfs_trans_handle *trans,
3725 struct btrfs_inode *inode,
3726 struct btrfs_path *path,
3727 struct btrfs_path *dst_path,
Filipe Mananaeb10d852021-09-16 11:32:12 +01003728 struct btrfs_log_ctx *ctx)
3729{
3730 struct btrfs_root *log = inode->root->log_root;
3731 struct extent_buffer *src = path->nodes[0];
3732 const int nritems = btrfs_header_nritems(src);
3733 const u64 ino = btrfs_ino(inode);
Filipe Manana086dcbf2021-09-16 11:32:13 +01003734 const bool inode_logged_before = inode_logged(trans, inode);
3735 bool last_found = false;
3736 int batch_start = 0;
3737 int batch_size = 0;
Filipe Mananaeb10d852021-09-16 11:32:12 +01003738 int i;
3739
3740 for (i = path->slots[0]; i < nritems; i++) {
3741 struct btrfs_key key;
Filipe Mananaeb10d852021-09-16 11:32:12 +01003742 int ret;
3743
3744 btrfs_item_key_to_cpu(src, &key, i);
3745
Filipe Manana339d0352021-10-25 17:31:53 +01003746 if (key.objectid != ino || key.type != BTRFS_DIR_INDEX_KEY) {
Filipe Manana086dcbf2021-09-16 11:32:13 +01003747 last_found = true;
3748 break;
3749 }
Filipe Mananaeb10d852021-09-16 11:32:12 +01003750
Filipe Mananadc287222021-09-16 11:32:14 +01003751 ctx->last_dir_item_offset = key.offset;
Filipe Mananaeb10d852021-09-16 11:32:12 +01003752 /*
3753 * We must make sure that when we log a directory entry, the
3754 * corresponding inode, after log replay, has a matching link
3755 * count. For example:
3756 *
3757 * touch foo
3758 * mkdir mydir
3759 * sync
3760 * ln foo mydir/bar
3761 * xfs_io -c "fsync" mydir
3762 * <crash>
3763 * <mount fs and log replay>
3764 *
3765 * Would result in a fsync log that when replayed, our file inode
3766 * would have a link count of 1, but we get two directory entries
3767 * pointing to the same inode. After removing one of the names,
3768 * it would not be possible to remove the other name, which
3769 * resulted always in stale file handle errors, and would not be
3770 * possible to rmdir the parent directory, since its i_size could
3771 * never be decremented to the value BTRFS_EMPTY_DIR_SIZE,
3772 * resulting in -ENOTEMPTY errors.
3773 */
Filipe Manana086dcbf2021-09-16 11:32:13 +01003774 if (!ctx->log_new_dentries) {
3775 struct btrfs_dir_item *di;
3776 struct btrfs_key di_key;
3777
3778 di = btrfs_item_ptr(src, i, struct btrfs_dir_item);
3779 btrfs_dir_item_key_to_cpu(src, di, &di_key);
3780 if ((btrfs_dir_transid(src, di) == trans->transid ||
3781 btrfs_dir_type(src, di) == BTRFS_FT_DIR) &&
3782 di_key.type != BTRFS_ROOT_ITEM_KEY)
3783 ctx->log_new_dentries = true;
3784 }
3785
3786 if (!inode_logged_before)
3787 goto add_to_batch;
Filipe Mananadc287222021-09-16 11:32:14 +01003788
3789 /*
3790 * If we were logged before and have logged dir items, we can skip
3791 * checking if any item with a key offset larger than the last one
3792 * we logged is in the log tree, saving time and avoiding adding
3793 * contention on the log tree.
3794 */
Filipe Manana339d0352021-10-25 17:31:53 +01003795 if (key.offset > inode->last_dir_index_offset)
Filipe Mananadc287222021-09-16 11:32:14 +01003796 goto add_to_batch;
Filipe Manana086dcbf2021-09-16 11:32:13 +01003797 /*
3798 * Check if the key was already logged before. If not we can add
3799 * it to a batch for bulk insertion.
3800 */
3801 ret = btrfs_search_slot(NULL, log, &key, dst_path, 0, 0);
3802 if (ret < 0) {
3803 return ret;
3804 } else if (ret > 0) {
3805 btrfs_release_path(dst_path);
3806 goto add_to_batch;
3807 }
3808
3809 /*
3810 * Item exists in the log. Overwrite the item in the log if it
3811 * has different content or do nothing if it has exactly the same
3812 * content. And then flush the current batch if any - do it after
3813 * overwriting the current item, or we would deadlock otherwise,
3814 * since we are holding a path for the existing item.
3815 */
3816 ret = do_overwrite_item(trans, log, dst_path, src, i, &key);
3817 if (ret < 0)
3818 return ret;
3819
3820 if (batch_size > 0) {
3821 ret = flush_dir_items_batch(trans, log, src, dst_path,
3822 batch_start, batch_size);
3823 if (ret < 0)
3824 return ret;
3825 batch_size = 0;
3826 }
3827 continue;
3828add_to_batch:
3829 if (batch_size == 0)
3830 batch_start = i;
3831 batch_size++;
Filipe Mananaeb10d852021-09-16 11:32:12 +01003832 }
3833
Filipe Manana086dcbf2021-09-16 11:32:13 +01003834 if (batch_size > 0) {
3835 int ret;
3836
3837 ret = flush_dir_items_batch(trans, log, src, dst_path,
3838 batch_start, batch_size);
3839 if (ret < 0)
3840 return ret;
3841 }
3842
3843 return last_found ? 1 : 0;
Filipe Mananaeb10d852021-09-16 11:32:12 +01003844}
3845
Chris Masone02119d2008-09-05 16:13:11 -04003846/*
3847 * log all the items included in the current transaction for a given
3848 * directory. This also creates the range items in the log tree required
3849 * to replay anything deleted before the fsync
3850 */
3851static noinline int log_dir_items(struct btrfs_trans_handle *trans,
Filipe Manana90d04512021-09-16 11:32:10 +01003852 struct btrfs_inode *inode,
Chris Masone02119d2008-09-05 16:13:11 -04003853 struct btrfs_path *path,
Filipe Manana339d0352021-10-25 17:31:53 +01003854 struct btrfs_path *dst_path,
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00003855 struct btrfs_log_ctx *ctx,
Chris Masone02119d2008-09-05 16:13:11 -04003856 u64 min_offset, u64 *last_offset_ret)
3857{
3858 struct btrfs_key min_key;
Filipe Manana90d04512021-09-16 11:32:10 +01003859 struct btrfs_root *root = inode->root;
Chris Masone02119d2008-09-05 16:13:11 -04003860 struct btrfs_root *log = root->log_root;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003861 int err = 0;
Chris Masone02119d2008-09-05 16:13:11 -04003862 int ret;
Chris Masone02119d2008-09-05 16:13:11 -04003863 u64 first_offset = min_offset;
3864 u64 last_offset = (u64)-1;
Nikolay Borisov684a5772017-01-18 00:31:41 +02003865 u64 ino = btrfs_ino(inode);
Chris Masone02119d2008-09-05 16:13:11 -04003866
Li Zefan33345d012011-04-20 10:31:50 +08003867 min_key.objectid = ino;
Filipe Manana339d0352021-10-25 17:31:53 +01003868 min_key.type = BTRFS_DIR_INDEX_KEY;
Chris Masone02119d2008-09-05 16:13:11 -04003869 min_key.offset = min_offset;
3870
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01003871 ret = btrfs_search_forward(root, &min_key, path, trans->transid);
Chris Masone02119d2008-09-05 16:13:11 -04003872
3873 /*
3874 * we didn't find anything from this transaction, see if there
3875 * is anything at all
3876 */
Filipe Manana339d0352021-10-25 17:31:53 +01003877 if (ret != 0 || min_key.objectid != ino ||
3878 min_key.type != BTRFS_DIR_INDEX_KEY) {
Li Zefan33345d012011-04-20 10:31:50 +08003879 min_key.objectid = ino;
Filipe Manana339d0352021-10-25 17:31:53 +01003880 min_key.type = BTRFS_DIR_INDEX_KEY;
Chris Masone02119d2008-09-05 16:13:11 -04003881 min_key.offset = (u64)-1;
David Sterbab3b4aa72011-04-21 01:20:15 +02003882 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003883 ret = btrfs_search_slot(NULL, root, &min_key, path, 0, 0);
3884 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02003885 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003886 return ret;
3887 }
Filipe Manana339d0352021-10-25 17:31:53 +01003888 ret = btrfs_previous_item(root, path, ino, BTRFS_DIR_INDEX_KEY);
Chris Masone02119d2008-09-05 16:13:11 -04003889
3890 /* if ret == 0 there are items for this type,
3891 * create a range to tell us the last key of this type.
3892 * otherwise, there are no items in this directory after
3893 * *min_offset, and we create a range to indicate that.
3894 */
3895 if (ret == 0) {
3896 struct btrfs_key tmp;
3897 btrfs_item_key_to_cpu(path->nodes[0], &tmp,
3898 path->slots[0]);
Filipe Manana339d0352021-10-25 17:31:53 +01003899 if (tmp.type == BTRFS_DIR_INDEX_KEY)
Chris Masone02119d2008-09-05 16:13:11 -04003900 first_offset = max(min_offset, tmp.offset) + 1;
Chris Masone02119d2008-09-05 16:13:11 -04003901 }
3902 goto done;
3903 }
3904
3905 /* go backward to find any previous key */
Filipe Manana339d0352021-10-25 17:31:53 +01003906 ret = btrfs_previous_item(root, path, ino, BTRFS_DIR_INDEX_KEY);
Chris Masone02119d2008-09-05 16:13:11 -04003907 if (ret == 0) {
3908 struct btrfs_key tmp;
3909 btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]);
Filipe Manana339d0352021-10-25 17:31:53 +01003910 if (tmp.type == BTRFS_DIR_INDEX_KEY) {
Chris Masone02119d2008-09-05 16:13:11 -04003911 first_offset = tmp.offset;
3912 ret = overwrite_item(trans, log, dst_path,
3913 path->nodes[0], path->slots[0],
3914 &tmp);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003915 if (ret) {
3916 err = ret;
3917 goto done;
3918 }
Chris Masone02119d2008-09-05 16:13:11 -04003919 }
3920 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003921 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003922
Josef Bacik2cc83342019-03-06 17:13:04 -05003923 /*
3924 * Find the first key from this transaction again. See the note for
3925 * log_new_dir_dentries, if we're logging a directory recursively we
3926 * won't be holding its i_mutex, which means we can modify the directory
3927 * while we're logging it. If we remove an entry between our first
3928 * search and this search we'll not find the key again and can just
3929 * bail.
3930 */
Filipe Mananabb56f022020-09-14 15:27:50 +01003931search:
Chris Masone02119d2008-09-05 16:13:11 -04003932 ret = btrfs_search_slot(NULL, root, &min_key, path, 0, 0);
Josef Bacik2cc83342019-03-06 17:13:04 -05003933 if (ret != 0)
Chris Masone02119d2008-09-05 16:13:11 -04003934 goto done;
Chris Masone02119d2008-09-05 16:13:11 -04003935
3936 /*
3937 * we have a block from this transaction, log every item in it
3938 * from our directory
3939 */
Chris Masond3977122009-01-05 21:25:51 -05003940 while (1) {
Filipe Manana339d0352021-10-25 17:31:53 +01003941 ret = process_dir_items_leaf(trans, inode, path, dst_path, ctx);
Filipe Mananaeb10d852021-09-16 11:32:12 +01003942 if (ret != 0) {
3943 if (ret < 0)
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003944 err = ret;
Filipe Mananaeb10d852021-09-16 11:32:12 +01003945 goto done;
Chris Masone02119d2008-09-05 16:13:11 -04003946 }
Filipe Mananaeb10d852021-09-16 11:32:12 +01003947 path->slots[0] = btrfs_header_nritems(path->nodes[0]);
Chris Masone02119d2008-09-05 16:13:11 -04003948
3949 /*
3950 * look ahead to the next item and see if it is also
3951 * from this directory and from this transaction
3952 */
3953 ret = btrfs_next_leaf(root, path);
Liu Bo80c0b422018-04-03 01:59:47 +08003954 if (ret) {
3955 if (ret == 1)
3956 last_offset = (u64)-1;
3957 else
3958 err = ret;
Chris Masone02119d2008-09-05 16:13:11 -04003959 goto done;
3960 }
Filipe Mananaeb10d852021-09-16 11:32:12 +01003961 btrfs_item_key_to_cpu(path->nodes[0], &min_key, path->slots[0]);
Filipe Manana339d0352021-10-25 17:31:53 +01003962 if (min_key.objectid != ino || min_key.type != BTRFS_DIR_INDEX_KEY) {
Chris Masone02119d2008-09-05 16:13:11 -04003963 last_offset = (u64)-1;
3964 goto done;
3965 }
3966 if (btrfs_header_generation(path->nodes[0]) != trans->transid) {
Filipe Manana1b2e5e52021-12-14 11:29:01 +00003967 ctx->last_dir_item_offset = min_key.offset;
Chris Masone02119d2008-09-05 16:13:11 -04003968 ret = overwrite_item(trans, log, dst_path,
3969 path->nodes[0], path->slots[0],
Filipe Mananaeb10d852021-09-16 11:32:12 +01003970 &min_key);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003971 if (ret)
3972 err = ret;
3973 else
Filipe Mananaeb10d852021-09-16 11:32:12 +01003974 last_offset = min_key.offset;
Chris Masone02119d2008-09-05 16:13:11 -04003975 goto done;
3976 }
Filipe Mananaeb10d852021-09-16 11:32:12 +01003977 if (need_resched()) {
3978 btrfs_release_path(path);
3979 cond_resched();
3980 goto search;
3981 }
Chris Masone02119d2008-09-05 16:13:11 -04003982 }
3983done:
David Sterbab3b4aa72011-04-21 01:20:15 +02003984 btrfs_release_path(path);
3985 btrfs_release_path(dst_path);
Chris Masone02119d2008-09-05 16:13:11 -04003986
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003987 if (err == 0) {
3988 *last_offset_ret = last_offset;
3989 /*
3990 * insert the log range keys to indicate where the log
3991 * is valid
3992 */
Filipe Manana339d0352021-10-25 17:31:53 +01003993 ret = insert_dir_log_key(trans, log, path, ino, first_offset,
3994 last_offset);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003995 if (ret)
3996 err = ret;
3997 }
3998 return err;
Chris Masone02119d2008-09-05 16:13:11 -04003999}
4000
4001/*
4002 * logging directories is very similar to logging inodes, We find all the items
4003 * from the current transaction and write them to the log.
4004 *
4005 * The recovery code scans the directory in the subvolume, and if it finds a
4006 * key in the range logged that is not present in the log tree, then it means
4007 * that dir entry was unlinked during the transaction.
4008 *
4009 * In order for that scan to work, we must include one key smaller than
4010 * the smallest logged by this transaction and one key larger than the largest
4011 * key logged by this transaction.
4012 */
4013static noinline int log_directory_changes(struct btrfs_trans_handle *trans,
Filipe Manana90d04512021-09-16 11:32:10 +01004014 struct btrfs_inode *inode,
Chris Masone02119d2008-09-05 16:13:11 -04004015 struct btrfs_path *path,
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00004016 struct btrfs_path *dst_path,
4017 struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -04004018{
4019 u64 min_key;
4020 u64 max_key;
4021 int ret;
Chris Masone02119d2008-09-05 16:13:11 -04004022
Filipe Mananadc287222021-09-16 11:32:14 +01004023 /*
4024 * If this is the first time we are being logged in the current
4025 * transaction, or we were logged before but the inode was evicted and
Filipe Manana339d0352021-10-25 17:31:53 +01004026 * reloaded later, in which case its logged_trans is 0, reset the value
4027 * of the last logged key offset. Note that we don't use the helper
Filipe Mananadc287222021-09-16 11:32:14 +01004028 * function inode_logged() here - that is because the function returns
4029 * true after an inode eviction, assuming the worst case as it can not
4030 * know for sure if the inode was logged before. So we can not skip key
4031 * searches in the case the inode was evicted, because it may not have
4032 * been logged in this transaction and may have been logged in a past
Filipe Manana339d0352021-10-25 17:31:53 +01004033 * transaction, so we need to reset the last dir index offset to (u64)-1.
Filipe Mananadc287222021-09-16 11:32:14 +01004034 */
Filipe Manana339d0352021-10-25 17:31:53 +01004035 if (inode->logged_trans != trans->transid)
Filipe Mananadc287222021-09-16 11:32:14 +01004036 inode->last_dir_index_offset = (u64)-1;
Filipe Manana339d0352021-10-25 17:31:53 +01004037
Chris Masone02119d2008-09-05 16:13:11 -04004038 min_key = 0;
4039 max_key = 0;
Filipe Manana339d0352021-10-25 17:31:53 +01004040 ctx->last_dir_item_offset = inode->last_dir_index_offset;
Filipe Mananadc287222021-09-16 11:32:14 +01004041
Chris Masond3977122009-01-05 21:25:51 -05004042 while (1) {
Filipe Manana339d0352021-10-25 17:31:53 +01004043 ret = log_dir_items(trans, inode, path, dst_path,
Nikolay Borisovdbf39ea2017-01-18 00:31:42 +02004044 ctx, min_key, &max_key);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004045 if (ret)
4046 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04004047 if (max_key == (u64)-1)
4048 break;
4049 min_key = max_key + 1;
4050 }
4051
Filipe Manana339d0352021-10-25 17:31:53 +01004052 inode->last_dir_index_offset = ctx->last_dir_item_offset;
4053
Chris Masone02119d2008-09-05 16:13:11 -04004054 return 0;
4055}
4056
4057/*
4058 * a helper function to drop items from the log before we relog an
4059 * inode. max_key_type indicates the highest item type to remove.
4060 * This cannot be run for file data extents because it does not
4061 * free the extents they point to.
4062 */
Filipe Manana88e221c2021-08-31 15:30:35 +01004063static int drop_inode_items(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -04004064 struct btrfs_root *log,
4065 struct btrfs_path *path,
Filipe Manana88e221c2021-08-31 15:30:35 +01004066 struct btrfs_inode *inode,
4067 int max_key_type)
Chris Masone02119d2008-09-05 16:13:11 -04004068{
4069 int ret;
4070 struct btrfs_key key;
4071 struct btrfs_key found_key;
Josef Bacik18ec90d2012-09-28 11:56:28 -04004072 int start_slot;
Chris Masone02119d2008-09-05 16:13:11 -04004073
Filipe Manana88e221c2021-08-31 15:30:35 +01004074 if (!inode_logged(trans, inode))
4075 return 0;
4076
4077 key.objectid = btrfs_ino(inode);
Chris Masone02119d2008-09-05 16:13:11 -04004078 key.type = max_key_type;
4079 key.offset = (u64)-1;
4080
Chris Masond3977122009-01-05 21:25:51 -05004081 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04004082 ret = btrfs_search_slot(trans, log, &key, path, -1, 1);
Josef Bacik36508602013-04-25 16:23:32 -04004083 BUG_ON(ret == 0); /* Logic error */
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004084 if (ret < 0)
Chris Masone02119d2008-09-05 16:13:11 -04004085 break;
4086
4087 if (path->slots[0] == 0)
4088 break;
4089
4090 path->slots[0]--;
4091 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
4092 path->slots[0]);
4093
Filipe Manana88e221c2021-08-31 15:30:35 +01004094 if (found_key.objectid != key.objectid)
Chris Masone02119d2008-09-05 16:13:11 -04004095 break;
4096
Josef Bacik18ec90d2012-09-28 11:56:28 -04004097 found_key.offset = 0;
4098 found_key.type = 0;
Qu Wenruoe3b83362020-04-17 15:08:21 +08004099 ret = btrfs_bin_search(path->nodes[0], &found_key, &start_slot);
Filipe Mananacbca7d52019-02-18 16:57:26 +00004100 if (ret < 0)
4101 break;
Josef Bacik18ec90d2012-09-28 11:56:28 -04004102
4103 ret = btrfs_del_items(trans, log, path, start_slot,
4104 path->slots[0] - start_slot + 1);
4105 /*
4106 * If start slot isn't 0 then we don't need to re-search, we've
4107 * found the last guy with the objectid in this tree.
4108 */
4109 if (ret || start_slot != 0)
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00004110 break;
David Sterbab3b4aa72011-04-21 01:20:15 +02004111 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04004112 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004113 btrfs_release_path(path);
Josef Bacik5bdbeb22012-05-29 16:59:49 -04004114 if (ret > 0)
4115 ret = 0;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004116 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04004117}
4118
Filipe Manana8a2b3da2021-08-31 15:30:36 +01004119static int truncate_inode_items(struct btrfs_trans_handle *trans,
4120 struct btrfs_root *log_root,
4121 struct btrfs_inode *inode,
4122 u64 new_size, u32 min_type)
4123{
Josef Bacikd9ac19c2021-12-03 17:18:09 -05004124 struct btrfs_truncate_control control = {
4125 .new_size = new_size,
Josef Bacik487e81d2021-12-03 17:18:14 -05004126 .ino = btrfs_ino(inode),
Josef Bacikd9ac19c2021-12-03 17:18:09 -05004127 .min_type = min_type,
Josef Bacik5caa4902021-12-03 17:18:12 -05004128 .skip_ref_updates = true,
Josef Bacikd9ac19c2021-12-03 17:18:09 -05004129 };
Filipe Manana8a2b3da2021-08-31 15:30:36 +01004130
Josef Bacik8697b8f2021-12-03 17:18:20 -05004131 return btrfs_truncate_inode_items(trans, log_root, &control);
Filipe Manana8a2b3da2021-08-31 15:30:36 +01004132}
4133
Josef Bacik94edf4a2012-09-25 14:56:25 -04004134static void fill_inode_item(struct btrfs_trans_handle *trans,
4135 struct extent_buffer *leaf,
4136 struct btrfs_inode_item *item,
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004137 struct inode *inode, int log_inode_only,
4138 u64 logged_isize)
Josef Bacik94edf4a2012-09-25 14:56:25 -04004139{
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04004140 struct btrfs_map_token token;
Boris Burkov77eea052021-06-30 13:01:48 -07004141 u64 flags;
Josef Bacik94edf4a2012-09-25 14:56:25 -04004142
David Sterbac82f8232019-08-09 17:48:21 +02004143 btrfs_init_map_token(&token, leaf);
Josef Bacik94edf4a2012-09-25 14:56:25 -04004144
4145 if (log_inode_only) {
4146 /* set the generation to zero so the recover code
4147 * can tell the difference between an logging
4148 * just to say 'this inode exists' and a logging
4149 * to say 'update this inode with these values'
4150 */
David Sterbacc4c13d2020-04-29 02:15:56 +02004151 btrfs_set_token_inode_generation(&token, item, 0);
4152 btrfs_set_token_inode_size(&token, item, logged_isize);
Josef Bacik94edf4a2012-09-25 14:56:25 -04004153 } else {
David Sterbacc4c13d2020-04-29 02:15:56 +02004154 btrfs_set_token_inode_generation(&token, item,
4155 BTRFS_I(inode)->generation);
4156 btrfs_set_token_inode_size(&token, item, inode->i_size);
Josef Bacik94edf4a2012-09-25 14:56:25 -04004157 }
4158
David Sterbacc4c13d2020-04-29 02:15:56 +02004159 btrfs_set_token_inode_uid(&token, item, i_uid_read(inode));
4160 btrfs_set_token_inode_gid(&token, item, i_gid_read(inode));
4161 btrfs_set_token_inode_mode(&token, item, inode->i_mode);
4162 btrfs_set_token_inode_nlink(&token, item, inode->i_nlink);
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04004163
David Sterbacc4c13d2020-04-29 02:15:56 +02004164 btrfs_set_token_timespec_sec(&token, &item->atime,
4165 inode->i_atime.tv_sec);
4166 btrfs_set_token_timespec_nsec(&token, &item->atime,
4167 inode->i_atime.tv_nsec);
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04004168
David Sterbacc4c13d2020-04-29 02:15:56 +02004169 btrfs_set_token_timespec_sec(&token, &item->mtime,
4170 inode->i_mtime.tv_sec);
4171 btrfs_set_token_timespec_nsec(&token, &item->mtime,
4172 inode->i_mtime.tv_nsec);
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04004173
David Sterbacc4c13d2020-04-29 02:15:56 +02004174 btrfs_set_token_timespec_sec(&token, &item->ctime,
4175 inode->i_ctime.tv_sec);
4176 btrfs_set_token_timespec_nsec(&token, &item->ctime,
4177 inode->i_ctime.tv_nsec);
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04004178
Filipe Mananae593e542021-01-27 10:34:55 +00004179 /*
4180 * We do not need to set the nbytes field, in fact during a fast fsync
4181 * its value may not even be correct, since a fast fsync does not wait
4182 * for ordered extent completion, which is where we update nbytes, it
4183 * only waits for writeback to complete. During log replay as we find
4184 * file extent items and replay them, we adjust the nbytes field of the
4185 * inode item in subvolume tree as needed (see overwrite_item()).
4186 */
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04004187
David Sterbacc4c13d2020-04-29 02:15:56 +02004188 btrfs_set_token_inode_sequence(&token, item, inode_peek_iversion(inode));
4189 btrfs_set_token_inode_transid(&token, item, trans->transid);
4190 btrfs_set_token_inode_rdev(&token, item, inode->i_rdev);
Boris Burkov77eea052021-06-30 13:01:48 -07004191 flags = btrfs_inode_combine_flags(BTRFS_I(inode)->flags,
4192 BTRFS_I(inode)->ro_flags);
4193 btrfs_set_token_inode_flags(&token, item, flags);
David Sterbacc4c13d2020-04-29 02:15:56 +02004194 btrfs_set_token_inode_block_group(&token, item, 0);
Josef Bacik94edf4a2012-09-25 14:56:25 -04004195}
4196
Josef Bacika95249b2012-10-11 16:17:34 -04004197static int log_inode_item(struct btrfs_trans_handle *trans,
4198 struct btrfs_root *log, struct btrfs_path *path,
Filipe Manana2ac691d2021-07-20 16:03:43 +01004199 struct btrfs_inode *inode, bool inode_item_dropped)
Josef Bacika95249b2012-10-11 16:17:34 -04004200{
4201 struct btrfs_inode_item *inode_item;
Josef Bacika95249b2012-10-11 16:17:34 -04004202 int ret;
4203
Filipe Manana2ac691d2021-07-20 16:03:43 +01004204 /*
4205 * If we are doing a fast fsync and the inode was logged before in the
4206 * current transaction, then we know the inode was previously logged and
4207 * it exists in the log tree. For performance reasons, in this case use
4208 * btrfs_search_slot() directly with ins_len set to 0 so that we never
4209 * attempt a write lock on the leaf's parent, which adds unnecessary lock
4210 * contention in case there are concurrent fsyncs for other inodes of the
4211 * same subvolume. Using btrfs_insert_empty_item() when the inode item
4212 * already exists can also result in unnecessarily splitting a leaf.
4213 */
4214 if (!inode_item_dropped && inode->logged_trans == trans->transid) {
4215 ret = btrfs_search_slot(trans, log, &inode->location, path, 0, 1);
4216 ASSERT(ret <= 0);
4217 if (ret > 0)
4218 ret = -ENOENT;
4219 } else {
4220 /*
4221 * This means it is the first fsync in the current transaction,
4222 * so the inode item is not in the log and we need to insert it.
4223 * We can never get -EEXIST because we are only called for a fast
4224 * fsync and in case an inode eviction happens after the inode was
4225 * logged before in the current transaction, when we load again
4226 * the inode, we set BTRFS_INODE_NEEDS_FULL_SYNC on its runtime
4227 * flags and set ->logged_trans to 0.
4228 */
4229 ret = btrfs_insert_empty_item(trans, log, path, &inode->location,
4230 sizeof(*inode_item));
4231 ASSERT(ret != -EEXIST);
4232 }
4233 if (ret)
Josef Bacika95249b2012-10-11 16:17:34 -04004234 return ret;
4235 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4236 struct btrfs_inode_item);
Nikolay Borisov6d889a32017-01-18 00:31:47 +02004237 fill_inode_item(trans, path->nodes[0], inode_item, &inode->vfs_inode,
4238 0, 0);
Josef Bacika95249b2012-10-11 16:17:34 -04004239 btrfs_release_path(path);
4240 return 0;
4241}
4242
Filipe Manana40e046a2019-12-05 16:58:30 +00004243static int log_csums(struct btrfs_trans_handle *trans,
Filipe Manana3ebac172020-07-15 12:30:43 +01004244 struct btrfs_inode *inode,
Filipe Manana40e046a2019-12-05 16:58:30 +00004245 struct btrfs_root *log_root,
4246 struct btrfs_ordered_sum *sums)
4247{
Filipe Mananae289f032020-05-18 12:14:50 +01004248 const u64 lock_end = sums->bytenr + sums->len - 1;
4249 struct extent_state *cached_state = NULL;
Filipe Manana40e046a2019-12-05 16:58:30 +00004250 int ret;
4251
4252 /*
Filipe Manana3ebac172020-07-15 12:30:43 +01004253 * If this inode was not used for reflink operations in the current
4254 * transaction with new extents, then do the fast path, no need to
4255 * worry about logging checksum items with overlapping ranges.
4256 */
4257 if (inode->last_reflink_trans < trans->transid)
4258 return btrfs_csum_file_blocks(trans, log_root, sums);
4259
4260 /*
Filipe Mananae289f032020-05-18 12:14:50 +01004261 * Serialize logging for checksums. This is to avoid racing with the
4262 * same checksum being logged by another task that is logging another
4263 * file which happens to refer to the same extent as well. Such races
4264 * can leave checksum items in the log with overlapping ranges.
4265 */
4266 ret = lock_extent_bits(&log_root->log_csum_range, sums->bytenr,
4267 lock_end, &cached_state);
4268 if (ret)
4269 return ret;
4270 /*
Filipe Manana40e046a2019-12-05 16:58:30 +00004271 * Due to extent cloning, we might have logged a csum item that covers a
4272 * subrange of a cloned extent, and later we can end up logging a csum
4273 * item for a larger subrange of the same extent or the entire range.
4274 * This would leave csum items in the log tree that cover the same range
4275 * and break the searches for checksums in the log tree, resulting in
4276 * some checksums missing in the fs/subvolume tree. So just delete (or
4277 * trim and adjust) any existing csum items in the log for this range.
4278 */
4279 ret = btrfs_del_csums(trans, log_root, sums->bytenr, sums->len);
Filipe Mananae289f032020-05-18 12:14:50 +01004280 if (!ret)
4281 ret = btrfs_csum_file_blocks(trans, log_root, sums);
Filipe Manana40e046a2019-12-05 16:58:30 +00004282
Filipe Mananae289f032020-05-18 12:14:50 +01004283 unlock_extent_cached(&log_root->log_csum_range, sums->bytenr, lock_end,
4284 &cached_state);
4285
4286 return ret;
Filipe Manana40e046a2019-12-05 16:58:30 +00004287}
4288
Chris Mason31ff1cd2008-09-11 16:17:57 -04004289static noinline int copy_items(struct btrfs_trans_handle *trans,
Nikolay Borisov44d70e12017-01-18 00:31:36 +02004290 struct btrfs_inode *inode,
Chris Mason31ff1cd2008-09-11 16:17:57 -04004291 struct btrfs_path *dst_path,
Filipe Manana0e563152019-11-19 12:07:33 +00004292 struct btrfs_path *src_path,
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004293 int start_slot, int nr, int inode_only,
4294 u64 logged_isize)
Chris Mason31ff1cd2008-09-11 16:17:57 -04004295{
David Sterba3ffbd682018-06-29 10:56:42 +02004296 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Mason31ff1cd2008-09-11 16:17:57 -04004297 unsigned long src_offset;
4298 unsigned long dst_offset;
Nikolay Borisov44d70e12017-01-18 00:31:36 +02004299 struct btrfs_root *log = inode->root->log_root;
Chris Mason31ff1cd2008-09-11 16:17:57 -04004300 struct btrfs_file_extent_item *extent;
4301 struct btrfs_inode_item *inode_item;
Josef Bacik16e75492013-10-22 12:18:51 -04004302 struct extent_buffer *src = src_path->nodes[0];
Chris Mason31ff1cd2008-09-11 16:17:57 -04004303 int ret;
4304 struct btrfs_key *ins_keys;
4305 u32 *ins_sizes;
Filipe Mananab7ef5f32021-09-24 12:28:13 +01004306 struct btrfs_item_batch batch;
Chris Mason31ff1cd2008-09-11 16:17:57 -04004307 char *ins_data;
4308 int i;
Chris Masond20f7042008-12-08 16:58:54 -05004309 struct list_head ordered_sums;
Nikolay Borisov44d70e12017-01-18 00:31:36 +02004310 int skip_csum = inode->flags & BTRFS_INODE_NODATASUM;
Chris Masond20f7042008-12-08 16:58:54 -05004311
4312 INIT_LIST_HEAD(&ordered_sums);
Chris Mason31ff1cd2008-09-11 16:17:57 -04004313
4314 ins_data = kmalloc(nr * sizeof(struct btrfs_key) +
4315 nr * sizeof(u32), GFP_NOFS);
liubo2a29edc2011-01-26 06:22:08 +00004316 if (!ins_data)
4317 return -ENOMEM;
4318
Chris Mason31ff1cd2008-09-11 16:17:57 -04004319 ins_sizes = (u32 *)ins_data;
4320 ins_keys = (struct btrfs_key *)(ins_data + nr * sizeof(u32));
Filipe Mananab7ef5f32021-09-24 12:28:13 +01004321 batch.keys = ins_keys;
4322 batch.data_sizes = ins_sizes;
4323 batch.total_data_size = 0;
4324 batch.nr = nr;
Chris Mason31ff1cd2008-09-11 16:17:57 -04004325
4326 for (i = 0; i < nr; i++) {
Josef Bacik3212fa12021-10-21 14:58:35 -04004327 ins_sizes[i] = btrfs_item_size(src, i + start_slot);
Filipe Mananab7ef5f32021-09-24 12:28:13 +01004328 batch.total_data_size += ins_sizes[i];
Chris Mason31ff1cd2008-09-11 16:17:57 -04004329 btrfs_item_key_to_cpu(src, ins_keys + i, i + start_slot);
4330 }
Filipe Mananab7ef5f32021-09-24 12:28:13 +01004331 ret = btrfs_insert_empty_items(trans, log, dst_path, &batch);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004332 if (ret) {
4333 kfree(ins_data);
4334 return ret;
4335 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04004336
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004337 for (i = 0; i < nr; i++, dst_path->slots[0]++) {
Chris Mason31ff1cd2008-09-11 16:17:57 -04004338 dst_offset = btrfs_item_ptr_offset(dst_path->nodes[0],
4339 dst_path->slots[0]);
4340
4341 src_offset = btrfs_item_ptr_offset(src, start_slot + i);
4342
Josef Bacik94edf4a2012-09-25 14:56:25 -04004343 if (ins_keys[i].type == BTRFS_INODE_ITEM_KEY) {
Chris Mason31ff1cd2008-09-11 16:17:57 -04004344 inode_item = btrfs_item_ptr(dst_path->nodes[0],
4345 dst_path->slots[0],
4346 struct btrfs_inode_item);
Josef Bacik94edf4a2012-09-25 14:56:25 -04004347 fill_inode_item(trans, dst_path->nodes[0], inode_item,
David Sterbaf85b7372017-01-20 14:54:07 +01004348 &inode->vfs_inode,
4349 inode_only == LOG_INODE_EXISTS,
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004350 logged_isize);
Josef Bacik94edf4a2012-09-25 14:56:25 -04004351 } else {
4352 copy_extent_buffer(dst_path->nodes[0], src, dst_offset,
4353 src_offset, ins_sizes[i]);
Chris Mason31ff1cd2008-09-11 16:17:57 -04004354 }
Josef Bacik94edf4a2012-09-25 14:56:25 -04004355
Chris Mason31ff1cd2008-09-11 16:17:57 -04004356 /* take a reference on file data extents so that truncates
4357 * or deletes of this inode don't have to relog the inode
4358 * again
4359 */
David Sterba962a2982014-06-04 18:41:45 +02004360 if (ins_keys[i].type == BTRFS_EXTENT_DATA_KEY &&
Liu Bod2794402012-08-29 01:07:56 -06004361 !skip_csum) {
Chris Mason31ff1cd2008-09-11 16:17:57 -04004362 int found_type;
4363 extent = btrfs_item_ptr(src, start_slot + i,
4364 struct btrfs_file_extent_item);
4365
liubo8e531cd2011-05-06 10:36:09 +08004366 if (btrfs_file_extent_generation(src, extent) < trans->transid)
4367 continue;
4368
Chris Mason31ff1cd2008-09-11 16:17:57 -04004369 found_type = btrfs_file_extent_type(src, extent);
Josef Bacik6f1fed72012-09-26 11:07:06 -04004370 if (found_type == BTRFS_FILE_EXTENT_REG) {
Josef Bacikfc28b252021-11-05 16:45:48 -04004371 struct btrfs_root *csum_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004372 u64 ds, dl, cs, cl;
4373 ds = btrfs_file_extent_disk_bytenr(src,
4374 extent);
4375 /* ds == 0 is a hole */
4376 if (ds == 0)
4377 continue;
4378
4379 dl = btrfs_file_extent_disk_num_bytes(src,
4380 extent);
4381 cs = btrfs_file_extent_offset(src, extent);
4382 cl = btrfs_file_extent_num_bytes(src,
Joe Perchesa419aef2009-08-18 11:18:35 -07004383 extent);
Chris Mason580afd72008-12-08 19:15:39 -05004384 if (btrfs_file_extent_compression(src,
4385 extent)) {
4386 cs = 0;
4387 cl = dl;
4388 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004389
Josef Bacikfc28b252021-11-05 16:45:48 -04004390 csum_root = btrfs_csum_root(fs_info, ds);
4391 ret = btrfs_lookup_csums_range(csum_root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004392 ds + cs, ds + cs + cl - 1,
Arne Jansena2de7332011-03-08 14:14:00 +01004393 &ordered_sums, 0);
Filipe Manana4f264332020-07-29 10:17:50 +01004394 if (ret)
4395 break;
Chris Mason31ff1cd2008-09-11 16:17:57 -04004396 }
4397 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04004398 }
4399
4400 btrfs_mark_buffer_dirty(dst_path->nodes[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02004401 btrfs_release_path(dst_path);
Chris Mason31ff1cd2008-09-11 16:17:57 -04004402 kfree(ins_data);
Chris Masond20f7042008-12-08 16:58:54 -05004403
4404 /*
4405 * we have to do this after the loop above to avoid changing the
4406 * log tree while trying to change the log tree.
4407 */
Chris Masond3977122009-01-05 21:25:51 -05004408 while (!list_empty(&ordered_sums)) {
Chris Masond20f7042008-12-08 16:58:54 -05004409 struct btrfs_ordered_sum *sums = list_entry(ordered_sums.next,
4410 struct btrfs_ordered_sum,
4411 list);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004412 if (!ret)
Filipe Manana3ebac172020-07-15 12:30:43 +01004413 ret = log_csums(trans, inode, log, sums);
Chris Masond20f7042008-12-08 16:58:54 -05004414 list_del(&sums->list);
4415 kfree(sums);
4416 }
Josef Bacik16e75492013-10-22 12:18:51 -04004417
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004418 return ret;
Chris Mason31ff1cd2008-09-11 16:17:57 -04004419}
4420
Sami Tolvanen4f0f5862021-04-08 11:28:34 -07004421static int extent_cmp(void *priv, const struct list_head *a,
4422 const struct list_head *b)
Josef Bacik5dc562c2012-08-17 13:14:17 -04004423{
David Sterba214cc182021-07-26 14:15:26 +02004424 const struct extent_map *em1, *em2;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004425
4426 em1 = list_entry(a, struct extent_map, list);
4427 em2 = list_entry(b, struct extent_map, list);
4428
4429 if (em1->start < em2->start)
4430 return -1;
4431 else if (em1->start > em2->start)
4432 return 1;
4433 return 0;
4434}
4435
Josef Bacike7175a62018-05-23 11:58:34 -04004436static int log_extent_csums(struct btrfs_trans_handle *trans,
4437 struct btrfs_inode *inode,
Nikolay Borisova9ecb652018-06-20 17:26:42 +03004438 struct btrfs_root *log_root,
Filipe Manana48778172020-08-11 12:43:58 +01004439 const struct extent_map *em,
4440 struct btrfs_log_ctx *ctx)
Josef Bacik5dc562c2012-08-17 13:14:17 -04004441{
Filipe Manana48778172020-08-11 12:43:58 +01004442 struct btrfs_ordered_extent *ordered;
Josef Bacikfc28b252021-11-05 16:45:48 -04004443 struct btrfs_root *csum_root;
Josef Bacik2ab28f32012-10-12 15:27:49 -04004444 u64 csum_offset;
4445 u64 csum_len;
Filipe Manana48778172020-08-11 12:43:58 +01004446 u64 mod_start = em->mod_start;
4447 u64 mod_len = em->mod_len;
Filipe Manana8407f552014-09-05 15:14:39 +01004448 LIST_HEAD(ordered_sums);
4449 int ret = 0;
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004450
Josef Bacike7175a62018-05-23 11:58:34 -04004451 if (inode->flags & BTRFS_INODE_NODATASUM ||
4452 test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
Filipe Manana8407f552014-09-05 15:14:39 +01004453 em->block_start == EXTENT_MAP_HOLE)
Josef Bacik70c8a912012-10-11 16:54:30 -04004454 return 0;
4455
Filipe Manana48778172020-08-11 12:43:58 +01004456 list_for_each_entry(ordered, &ctx->ordered_extents, log_list) {
4457 const u64 ordered_end = ordered->file_offset + ordered->num_bytes;
4458 const u64 mod_end = mod_start + mod_len;
4459 struct btrfs_ordered_sum *sums;
4460
4461 if (mod_len == 0)
4462 break;
4463
4464 if (ordered_end <= mod_start)
4465 continue;
4466 if (mod_end <= ordered->file_offset)
4467 break;
4468
4469 /*
4470 * We are going to copy all the csums on this ordered extent, so
4471 * go ahead and adjust mod_start and mod_len in case this ordered
4472 * extent has already been logged.
4473 */
4474 if (ordered->file_offset > mod_start) {
4475 if (ordered_end >= mod_end)
4476 mod_len = ordered->file_offset - mod_start;
4477 /*
4478 * If we have this case
4479 *
4480 * |--------- logged extent ---------|
4481 * |----- ordered extent ----|
4482 *
4483 * Just don't mess with mod_start and mod_len, we'll
4484 * just end up logging more csums than we need and it
4485 * will be ok.
4486 */
4487 } else {
4488 if (ordered_end < mod_end) {
4489 mod_len = mod_end - ordered_end;
4490 mod_start = ordered_end;
4491 } else {
4492 mod_len = 0;
4493 }
4494 }
4495
4496 /*
4497 * To keep us from looping for the above case of an ordered
4498 * extent that falls inside of the logged extent.
4499 */
4500 if (test_and_set_bit(BTRFS_ORDERED_LOGGED_CSUM, &ordered->flags))
4501 continue;
4502
4503 list_for_each_entry(sums, &ordered->list, list) {
4504 ret = log_csums(trans, inode, log_root, sums);
4505 if (ret)
4506 return ret;
4507 }
4508 }
4509
4510 /* We're done, found all csums in the ordered extents. */
4511 if (mod_len == 0)
4512 return 0;
4513
Josef Bacike7175a62018-05-23 11:58:34 -04004514 /* If we're compressed we have to save the entire range of csums. */
Filipe David Borba Manana488111a2013-10-28 16:30:29 +00004515 if (em->compress_type) {
4516 csum_offset = 0;
Filipe Manana8407f552014-09-05 15:14:39 +01004517 csum_len = max(em->block_len, em->orig_block_len);
Filipe David Borba Manana488111a2013-10-28 16:30:29 +00004518 } else {
Filipe Manana48778172020-08-11 12:43:58 +01004519 csum_offset = mod_start - em->start;
4520 csum_len = mod_len;
Filipe David Borba Manana488111a2013-10-28 16:30:29 +00004521 }
Josef Bacik2ab28f32012-10-12 15:27:49 -04004522
Josef Bacik70c8a912012-10-11 16:54:30 -04004523 /* block start is already adjusted for the file extent offset. */
Josef Bacikfc28b252021-11-05 16:45:48 -04004524 csum_root = btrfs_csum_root(trans->fs_info, em->block_start);
4525 ret = btrfs_lookup_csums_range(csum_root,
Josef Bacik70c8a912012-10-11 16:54:30 -04004526 em->block_start + csum_offset,
4527 em->block_start + csum_offset +
4528 csum_len - 1, &ordered_sums, 0);
4529 if (ret)
4530 return ret;
4531
4532 while (!list_empty(&ordered_sums)) {
4533 struct btrfs_ordered_sum *sums = list_entry(ordered_sums.next,
4534 struct btrfs_ordered_sum,
4535 list);
4536 if (!ret)
Filipe Manana3ebac172020-07-15 12:30:43 +01004537 ret = log_csums(trans, inode, log_root, sums);
Josef Bacik70c8a912012-10-11 16:54:30 -04004538 list_del(&sums->list);
4539 kfree(sums);
4540 }
4541
4542 return ret;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004543}
4544
Filipe Manana8407f552014-09-05 15:14:39 +01004545static int log_one_extent(struct btrfs_trans_handle *trans,
Filipe Manana90d04512021-09-16 11:32:10 +01004546 struct btrfs_inode *inode,
Filipe Manana8407f552014-09-05 15:14:39 +01004547 const struct extent_map *em,
4548 struct btrfs_path *path,
Filipe Manana8407f552014-09-05 15:14:39 +01004549 struct btrfs_log_ctx *ctx)
4550{
Filipe Manana5893dfb2020-11-04 11:07:32 +00004551 struct btrfs_drop_extents_args drop_args = { 0 };
Filipe Manana90d04512021-09-16 11:32:10 +01004552 struct btrfs_root *log = inode->root->log_root;
Filipe Manana8407f552014-09-05 15:14:39 +01004553 struct btrfs_file_extent_item *fi;
4554 struct extent_buffer *leaf;
4555 struct btrfs_map_token token;
4556 struct btrfs_key key;
4557 u64 extent_offset = em->start - em->orig_start;
4558 u64 block_len;
4559 int ret;
Filipe Manana8407f552014-09-05 15:14:39 +01004560
Filipe Manana48778172020-08-11 12:43:58 +01004561 ret = log_extent_csums(trans, inode, log, em, ctx);
Filipe Manana8407f552014-09-05 15:14:39 +01004562 if (ret)
4563 return ret;
4564
Filipe Manana5328b2a2021-08-31 15:30:39 +01004565 /*
4566 * If this is the first time we are logging the inode in the current
4567 * transaction, we can avoid btrfs_drop_extents(), which is expensive
4568 * because it does a deletion search, which always acquires write locks
4569 * for extent buffers at levels 2, 1 and 0. This not only wastes time
4570 * but also adds significant contention in a log tree, since log trees
4571 * are small, with a root at level 2 or 3 at most, due to their short
4572 * life span.
4573 */
4574 if (inode_logged(trans, inode)) {
4575 drop_args.path = path;
4576 drop_args.start = em->start;
4577 drop_args.end = em->start + em->len;
4578 drop_args.replace_extent = true;
4579 drop_args.extent_item_size = sizeof(*fi);
4580 ret = btrfs_drop_extents(trans, log, inode, &drop_args);
4581 if (ret)
4582 return ret;
4583 }
Filipe Manana8407f552014-09-05 15:14:39 +01004584
Filipe Manana5893dfb2020-11-04 11:07:32 +00004585 if (!drop_args.extent_inserted) {
Nikolay Borisov9d122622017-01-18 00:31:40 +02004586 key.objectid = btrfs_ino(inode);
Filipe Manana8407f552014-09-05 15:14:39 +01004587 key.type = BTRFS_EXTENT_DATA_KEY;
4588 key.offset = em->start;
4589
4590 ret = btrfs_insert_empty_item(trans, log, path, &key,
4591 sizeof(*fi));
4592 if (ret)
4593 return ret;
4594 }
4595 leaf = path->nodes[0];
David Sterbac82f8232019-08-09 17:48:21 +02004596 btrfs_init_map_token(&token, leaf);
Filipe Manana8407f552014-09-05 15:14:39 +01004597 fi = btrfs_item_ptr(leaf, path->slots[0],
4598 struct btrfs_file_extent_item);
4599
David Sterbacc4c13d2020-04-29 02:15:56 +02004600 btrfs_set_token_file_extent_generation(&token, fi, trans->transid);
Filipe Manana8407f552014-09-05 15:14:39 +01004601 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
David Sterbacc4c13d2020-04-29 02:15:56 +02004602 btrfs_set_token_file_extent_type(&token, fi,
4603 BTRFS_FILE_EXTENT_PREALLOC);
Filipe Manana8407f552014-09-05 15:14:39 +01004604 else
David Sterbacc4c13d2020-04-29 02:15:56 +02004605 btrfs_set_token_file_extent_type(&token, fi,
4606 BTRFS_FILE_EXTENT_REG);
Filipe Manana8407f552014-09-05 15:14:39 +01004607
4608 block_len = max(em->block_len, em->orig_block_len);
4609 if (em->compress_type != BTRFS_COMPRESS_NONE) {
David Sterbacc4c13d2020-04-29 02:15:56 +02004610 btrfs_set_token_file_extent_disk_bytenr(&token, fi,
4611 em->block_start);
4612 btrfs_set_token_file_extent_disk_num_bytes(&token, fi, block_len);
Filipe Manana8407f552014-09-05 15:14:39 +01004613 } else if (em->block_start < EXTENT_MAP_LAST_BYTE) {
David Sterbacc4c13d2020-04-29 02:15:56 +02004614 btrfs_set_token_file_extent_disk_bytenr(&token, fi,
Filipe Manana8407f552014-09-05 15:14:39 +01004615 em->block_start -
David Sterbacc4c13d2020-04-29 02:15:56 +02004616 extent_offset);
4617 btrfs_set_token_file_extent_disk_num_bytes(&token, fi, block_len);
Filipe Manana8407f552014-09-05 15:14:39 +01004618 } else {
David Sterbacc4c13d2020-04-29 02:15:56 +02004619 btrfs_set_token_file_extent_disk_bytenr(&token, fi, 0);
4620 btrfs_set_token_file_extent_disk_num_bytes(&token, fi, 0);
Filipe Manana8407f552014-09-05 15:14:39 +01004621 }
4622
David Sterbacc4c13d2020-04-29 02:15:56 +02004623 btrfs_set_token_file_extent_offset(&token, fi, extent_offset);
4624 btrfs_set_token_file_extent_num_bytes(&token, fi, em->len);
4625 btrfs_set_token_file_extent_ram_bytes(&token, fi, em->ram_bytes);
4626 btrfs_set_token_file_extent_compression(&token, fi, em->compress_type);
4627 btrfs_set_token_file_extent_encryption(&token, fi, 0);
4628 btrfs_set_token_file_extent_other_encoding(&token, fi, 0);
Filipe Manana8407f552014-09-05 15:14:39 +01004629 btrfs_mark_buffer_dirty(leaf);
4630
4631 btrfs_release_path(path);
4632
4633 return ret;
4634}
4635
Filipe Manana31d11b82018-05-09 16:01:46 +01004636/*
4637 * Log all prealloc extents beyond the inode's i_size to make sure we do not
4638 * lose them after doing a fast fsync and replaying the log. We scan the
4639 * subvolume's root instead of iterating the inode's extent map tree because
4640 * otherwise we can log incorrect extent items based on extent map conversion.
4641 * That can happen due to the fact that extent maps are merged when they
4642 * are not in the extent map tree's list of modified extents.
4643 */
4644static int btrfs_log_prealloc_extents(struct btrfs_trans_handle *trans,
4645 struct btrfs_inode *inode,
4646 struct btrfs_path *path)
4647{
4648 struct btrfs_root *root = inode->root;
4649 struct btrfs_key key;
4650 const u64 i_size = i_size_read(&inode->vfs_inode);
4651 const u64 ino = btrfs_ino(inode);
4652 struct btrfs_path *dst_path = NULL;
Filipe Manana0e563152019-11-19 12:07:33 +00004653 bool dropped_extents = false;
Filipe Mananaf135cea2020-04-23 16:30:53 +01004654 u64 truncate_offset = i_size;
4655 struct extent_buffer *leaf;
4656 int slot;
Filipe Manana31d11b82018-05-09 16:01:46 +01004657 int ins_nr = 0;
4658 int start_slot;
4659 int ret;
4660
4661 if (!(inode->flags & BTRFS_INODE_PREALLOC))
4662 return 0;
4663
4664 key.objectid = ino;
4665 key.type = BTRFS_EXTENT_DATA_KEY;
4666 key.offset = i_size;
4667 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4668 if (ret < 0)
4669 goto out;
4670
Filipe Mananaf135cea2020-04-23 16:30:53 +01004671 /*
4672 * We must check if there is a prealloc extent that starts before the
4673 * i_size and crosses the i_size boundary. This is to ensure later we
4674 * truncate down to the end of that extent and not to the i_size, as
4675 * otherwise we end up losing part of the prealloc extent after a log
4676 * replay and with an implicit hole if there is another prealloc extent
4677 * that starts at an offset beyond i_size.
4678 */
4679 ret = btrfs_previous_item(root, path, ino, BTRFS_EXTENT_DATA_KEY);
4680 if (ret < 0)
4681 goto out;
4682
4683 if (ret == 0) {
4684 struct btrfs_file_extent_item *ei;
4685
4686 leaf = path->nodes[0];
4687 slot = path->slots[0];
4688 ei = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
4689
4690 if (btrfs_file_extent_type(leaf, ei) ==
4691 BTRFS_FILE_EXTENT_PREALLOC) {
4692 u64 extent_end;
4693
4694 btrfs_item_key_to_cpu(leaf, &key, slot);
4695 extent_end = key.offset +
4696 btrfs_file_extent_num_bytes(leaf, ei);
4697
4698 if (extent_end > i_size)
4699 truncate_offset = extent_end;
4700 }
4701 } else {
4702 ret = 0;
4703 }
4704
Filipe Manana31d11b82018-05-09 16:01:46 +01004705 while (true) {
Filipe Mananaf135cea2020-04-23 16:30:53 +01004706 leaf = path->nodes[0];
4707 slot = path->slots[0];
Filipe Manana31d11b82018-05-09 16:01:46 +01004708
4709 if (slot >= btrfs_header_nritems(leaf)) {
4710 if (ins_nr > 0) {
4711 ret = copy_items(trans, inode, dst_path, path,
Filipe Manana0e563152019-11-19 12:07:33 +00004712 start_slot, ins_nr, 1, 0);
Filipe Manana31d11b82018-05-09 16:01:46 +01004713 if (ret < 0)
4714 goto out;
4715 ins_nr = 0;
4716 }
4717 ret = btrfs_next_leaf(root, path);
4718 if (ret < 0)
4719 goto out;
4720 if (ret > 0) {
4721 ret = 0;
4722 break;
4723 }
4724 continue;
4725 }
4726
4727 btrfs_item_key_to_cpu(leaf, &key, slot);
4728 if (key.objectid > ino)
4729 break;
4730 if (WARN_ON_ONCE(key.objectid < ino) ||
4731 key.type < BTRFS_EXTENT_DATA_KEY ||
4732 key.offset < i_size) {
4733 path->slots[0]++;
4734 continue;
4735 }
Filipe Manana0e563152019-11-19 12:07:33 +00004736 if (!dropped_extents) {
Filipe Manana31d11b82018-05-09 16:01:46 +01004737 /*
4738 * Avoid logging extent items logged in past fsync calls
4739 * and leading to duplicate keys in the log tree.
4740 */
Filipe Manana8a2b3da2021-08-31 15:30:36 +01004741 ret = truncate_inode_items(trans, root->log_root, inode,
4742 truncate_offset,
4743 BTRFS_EXTENT_DATA_KEY);
Filipe Manana31d11b82018-05-09 16:01:46 +01004744 if (ret)
4745 goto out;
Filipe Manana0e563152019-11-19 12:07:33 +00004746 dropped_extents = true;
Filipe Manana31d11b82018-05-09 16:01:46 +01004747 }
4748 if (ins_nr == 0)
4749 start_slot = slot;
4750 ins_nr++;
4751 path->slots[0]++;
4752 if (!dst_path) {
4753 dst_path = btrfs_alloc_path();
4754 if (!dst_path) {
4755 ret = -ENOMEM;
4756 goto out;
4757 }
4758 }
4759 }
Filipe Manana0bc2d3c2020-04-21 11:25:31 +01004760 if (ins_nr > 0)
Filipe Manana0e563152019-11-19 12:07:33 +00004761 ret = copy_items(trans, inode, dst_path, path,
Filipe Manana31d11b82018-05-09 16:01:46 +01004762 start_slot, ins_nr, 1, 0);
Filipe Manana31d11b82018-05-09 16:01:46 +01004763out:
4764 btrfs_release_path(path);
4765 btrfs_free_path(dst_path);
4766 return ret;
4767}
4768
Josef Bacik5dc562c2012-08-17 13:14:17 -04004769static int btrfs_log_changed_extents(struct btrfs_trans_handle *trans,
Nikolay Borisov9d122622017-01-18 00:31:40 +02004770 struct btrfs_inode *inode,
Miao Xie827463c2014-01-14 20:31:51 +08004771 struct btrfs_path *path,
Filipe Manana48778172020-08-11 12:43:58 +01004772 struct btrfs_log_ctx *ctx)
Josef Bacik5dc562c2012-08-17 13:14:17 -04004773{
Filipe Manana48778172020-08-11 12:43:58 +01004774 struct btrfs_ordered_extent *ordered;
4775 struct btrfs_ordered_extent *tmp;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004776 struct extent_map *em, *n;
4777 struct list_head extents;
Nikolay Borisov9d122622017-01-18 00:31:40 +02004778 struct extent_map_tree *tree = &inode->extent_tree;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004779 int ret = 0;
Josef Bacik2ab28f32012-10-12 15:27:49 -04004780 int num = 0;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004781
4782 INIT_LIST_HEAD(&extents);
4783
Josef Bacik5dc562c2012-08-17 13:14:17 -04004784 write_lock(&tree->lock);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004785
4786 list_for_each_entry_safe(em, n, &tree->modified_extents, list) {
4787 list_del_init(&em->list);
Josef Bacik2ab28f32012-10-12 15:27:49 -04004788 /*
4789 * Just an arbitrary number, this can be really CPU intensive
4790 * once we start getting a lot of extents, and really once we
4791 * have a bunch of extents we just want to commit since it will
4792 * be faster.
4793 */
4794 if (++num > 32768) {
4795 list_del_init(&tree->modified_extents);
4796 ret = -EFBIG;
4797 goto process;
4798 }
4799
Filipe Manana5f96bfb2020-11-25 12:19:24 +00004800 if (em->generation < trans->transid)
Josef Bacik5dc562c2012-08-17 13:14:17 -04004801 continue;
Josef Bacik8c6c5922017-08-29 10:11:39 -04004802
Filipe Manana31d11b82018-05-09 16:01:46 +01004803 /* We log prealloc extents beyond eof later. */
4804 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) &&
4805 em->start >= i_size_read(&inode->vfs_inode))
4806 continue;
4807
Josef Bacikff44c6e2012-09-14 12:59:20 -04004808 /* Need a ref to keep it from getting evicted from cache */
Elena Reshetova490b54d2017-03-03 10:55:12 +02004809 refcount_inc(&em->refs);
Josef Bacikff44c6e2012-09-14 12:59:20 -04004810 set_bit(EXTENT_FLAG_LOGGING, &em->flags);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004811 list_add_tail(&em->list, &extents);
Josef Bacik2ab28f32012-10-12 15:27:49 -04004812 num++;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004813 }
4814
4815 list_sort(NULL, &extents, extent_cmp);
Josef Bacik2ab28f32012-10-12 15:27:49 -04004816process:
Josef Bacik5dc562c2012-08-17 13:14:17 -04004817 while (!list_empty(&extents)) {
4818 em = list_entry(extents.next, struct extent_map, list);
4819
4820 list_del_init(&em->list);
4821
4822 /*
4823 * If we had an error we just need to delete everybody from our
4824 * private list.
4825 */
Josef Bacikff44c6e2012-09-14 12:59:20 -04004826 if (ret) {
Josef Bacik201a9032013-01-24 12:02:07 -05004827 clear_em_logging(tree, em);
Josef Bacikff44c6e2012-09-14 12:59:20 -04004828 free_extent_map(em);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004829 continue;
Josef Bacikff44c6e2012-09-14 12:59:20 -04004830 }
4831
4832 write_unlock(&tree->lock);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004833
Filipe Manana90d04512021-09-16 11:32:10 +01004834 ret = log_one_extent(trans, inode, em, path, ctx);
Josef Bacikff44c6e2012-09-14 12:59:20 -04004835 write_lock(&tree->lock);
Josef Bacik201a9032013-01-24 12:02:07 -05004836 clear_em_logging(tree, em);
4837 free_extent_map(em);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004838 }
Josef Bacikff44c6e2012-09-14 12:59:20 -04004839 WARN_ON(!list_empty(&extents));
4840 write_unlock(&tree->lock);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004841
Josef Bacik5dc562c2012-08-17 13:14:17 -04004842 btrfs_release_path(path);
Filipe Manana31d11b82018-05-09 16:01:46 +01004843 if (!ret)
4844 ret = btrfs_log_prealloc_extents(trans, inode, path);
Filipe Manana48778172020-08-11 12:43:58 +01004845 if (ret)
4846 return ret;
Filipe Manana31d11b82018-05-09 16:01:46 +01004847
Filipe Manana48778172020-08-11 12:43:58 +01004848 /*
4849 * We have logged all extents successfully, now make sure the commit of
4850 * the current transaction waits for the ordered extents to complete
4851 * before it commits and wipes out the log trees, otherwise we would
4852 * lose data if an ordered extents completes after the transaction
4853 * commits and a power failure happens after the transaction commit.
4854 */
4855 list_for_each_entry_safe(ordered, tmp, &ctx->ordered_extents, log_list) {
4856 list_del_init(&ordered->log_list);
4857 set_bit(BTRFS_ORDERED_LOGGED, &ordered->flags);
4858
4859 if (!test_bit(BTRFS_ORDERED_COMPLETE, &ordered->flags)) {
4860 spin_lock_irq(&inode->ordered_tree.lock);
4861 if (!test_bit(BTRFS_ORDERED_COMPLETE, &ordered->flags)) {
4862 set_bit(BTRFS_ORDERED_PENDING, &ordered->flags);
4863 atomic_inc(&trans->transaction->pending_ordered);
4864 }
4865 spin_unlock_irq(&inode->ordered_tree.lock);
4866 }
4867 btrfs_put_ordered_extent(ordered);
4868 }
4869
4870 return 0;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004871}
4872
Nikolay Borisov481b01c2017-01-18 00:31:34 +02004873static int logged_inode_size(struct btrfs_root *log, struct btrfs_inode *inode,
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004874 struct btrfs_path *path, u64 *size_ret)
4875{
4876 struct btrfs_key key;
4877 int ret;
4878
Nikolay Borisov481b01c2017-01-18 00:31:34 +02004879 key.objectid = btrfs_ino(inode);
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004880 key.type = BTRFS_INODE_ITEM_KEY;
4881 key.offset = 0;
4882
4883 ret = btrfs_search_slot(NULL, log, &key, path, 0, 0);
4884 if (ret < 0) {
4885 return ret;
4886 } else if (ret > 0) {
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00004887 *size_ret = 0;
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004888 } else {
4889 struct btrfs_inode_item *item;
4890
4891 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4892 struct btrfs_inode_item);
4893 *size_ret = btrfs_inode_size(path->nodes[0], item);
Filipe Mananabf504112019-03-04 14:06:12 +00004894 /*
4895 * If the in-memory inode's i_size is smaller then the inode
4896 * size stored in the btree, return the inode's i_size, so
4897 * that we get a correct inode size after replaying the log
4898 * when before a power failure we had a shrinking truncate
4899 * followed by addition of a new name (rename / new hard link).
4900 * Otherwise return the inode size from the btree, to avoid
4901 * data loss when replaying a log due to previously doing a
4902 * write that expands the inode's size and logging a new name
4903 * immediately after.
4904 */
4905 if (*size_ret > inode->vfs_inode.i_size)
4906 *size_ret = inode->vfs_inode.i_size;
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004907 }
4908
4909 btrfs_release_path(path);
4910 return 0;
4911}
4912
Filipe Manana36283bf2015-06-20 00:44:51 +01004913/*
4914 * At the moment we always log all xattrs. This is to figure out at log replay
4915 * time which xattrs must have their deletion replayed. If a xattr is missing
4916 * in the log tree and exists in the fs/subvol tree, we delete it. This is
4917 * because if a xattr is deleted, the inode is fsynced and a power failure
4918 * happens, causing the log to be replayed the next time the fs is mounted,
4919 * we want the xattr to not exist anymore (same behaviour as other filesystems
4920 * with a journal, ext3/4, xfs, f2fs, etc).
4921 */
4922static int btrfs_log_all_xattrs(struct btrfs_trans_handle *trans,
Nikolay Borisov1a93c362017-01-18 00:31:37 +02004923 struct btrfs_inode *inode,
Filipe Manana36283bf2015-06-20 00:44:51 +01004924 struct btrfs_path *path,
4925 struct btrfs_path *dst_path)
4926{
Filipe Manana90d04512021-09-16 11:32:10 +01004927 struct btrfs_root *root = inode->root;
Filipe Manana36283bf2015-06-20 00:44:51 +01004928 int ret;
4929 struct btrfs_key key;
Nikolay Borisov1a93c362017-01-18 00:31:37 +02004930 const u64 ino = btrfs_ino(inode);
Filipe Manana36283bf2015-06-20 00:44:51 +01004931 int ins_nr = 0;
4932 int start_slot = 0;
Filipe Mananaf2f121a2020-11-13 11:21:49 +00004933 bool found_xattrs = false;
4934
4935 if (test_bit(BTRFS_INODE_NO_XATTRS, &inode->runtime_flags))
4936 return 0;
Filipe Manana36283bf2015-06-20 00:44:51 +01004937
4938 key.objectid = ino;
4939 key.type = BTRFS_XATTR_ITEM_KEY;
4940 key.offset = 0;
4941
4942 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4943 if (ret < 0)
4944 return ret;
4945
4946 while (true) {
4947 int slot = path->slots[0];
4948 struct extent_buffer *leaf = path->nodes[0];
4949 int nritems = btrfs_header_nritems(leaf);
4950
4951 if (slot >= nritems) {
4952 if (ins_nr > 0) {
Nikolay Borisov1a93c362017-01-18 00:31:37 +02004953 ret = copy_items(trans, inode, dst_path, path,
Filipe Manana0e563152019-11-19 12:07:33 +00004954 start_slot, ins_nr, 1, 0);
Filipe Manana36283bf2015-06-20 00:44:51 +01004955 if (ret < 0)
4956 return ret;
4957 ins_nr = 0;
4958 }
4959 ret = btrfs_next_leaf(root, path);
4960 if (ret < 0)
4961 return ret;
4962 else if (ret > 0)
4963 break;
4964 continue;
4965 }
4966
4967 btrfs_item_key_to_cpu(leaf, &key, slot);
4968 if (key.objectid != ino || key.type != BTRFS_XATTR_ITEM_KEY)
4969 break;
4970
4971 if (ins_nr == 0)
4972 start_slot = slot;
4973 ins_nr++;
4974 path->slots[0]++;
Filipe Mananaf2f121a2020-11-13 11:21:49 +00004975 found_xattrs = true;
Filipe Manana36283bf2015-06-20 00:44:51 +01004976 cond_resched();
4977 }
4978 if (ins_nr > 0) {
Nikolay Borisov1a93c362017-01-18 00:31:37 +02004979 ret = copy_items(trans, inode, dst_path, path,
Filipe Manana0e563152019-11-19 12:07:33 +00004980 start_slot, ins_nr, 1, 0);
Filipe Manana36283bf2015-06-20 00:44:51 +01004981 if (ret < 0)
4982 return ret;
4983 }
4984
Filipe Mananaf2f121a2020-11-13 11:21:49 +00004985 if (!found_xattrs)
4986 set_bit(BTRFS_INODE_NO_XATTRS, &inode->runtime_flags);
4987
Filipe Manana36283bf2015-06-20 00:44:51 +01004988 return 0;
4989}
4990
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01004991/*
Filipe Manana0e563152019-11-19 12:07:33 +00004992 * When using the NO_HOLES feature if we punched a hole that causes the
4993 * deletion of entire leafs or all the extent items of the first leaf (the one
4994 * that contains the inode item and references) we may end up not processing
4995 * any extents, because there are no leafs with a generation matching the
4996 * current transaction that have extent items for our inode. So we need to find
4997 * if any holes exist and then log them. We also need to log holes after any
4998 * truncate operation that changes the inode's size.
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01004999 */
Filipe Manana0e563152019-11-19 12:07:33 +00005000static int btrfs_log_holes(struct btrfs_trans_handle *trans,
Filipe Manana0e563152019-11-19 12:07:33 +00005001 struct btrfs_inode *inode,
Filipe Manana7af59742020-04-07 11:37:44 +01005002 struct btrfs_path *path)
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01005003{
Filipe Manana90d04512021-09-16 11:32:10 +01005004 struct btrfs_root *root = inode->root;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005005 struct btrfs_fs_info *fs_info = root->fs_info;
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01005006 struct btrfs_key key;
Nikolay Borisova0308dd2017-01-18 00:31:38 +02005007 const u64 ino = btrfs_ino(inode);
5008 const u64 i_size = i_size_read(&inode->vfs_inode);
Filipe Manana7af59742020-04-07 11:37:44 +01005009 u64 prev_extent_end = 0;
Filipe Manana0e563152019-11-19 12:07:33 +00005010 int ret;
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01005011
Filipe Manana0e563152019-11-19 12:07:33 +00005012 if (!btrfs_fs_incompat(fs_info, NO_HOLES) || i_size == 0)
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01005013 return 0;
5014
5015 key.objectid = ino;
5016 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe Manana7af59742020-04-07 11:37:44 +01005017 key.offset = 0;
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01005018
5019 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01005020 if (ret < 0)
5021 return ret;
5022
Filipe Manana0e563152019-11-19 12:07:33 +00005023 while (true) {
Filipe Manana0e563152019-11-19 12:07:33 +00005024 struct extent_buffer *leaf = path->nodes[0];
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01005025
Filipe Manana0e563152019-11-19 12:07:33 +00005026 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
5027 ret = btrfs_next_leaf(root, path);
5028 if (ret < 0)
5029 return ret;
5030 if (ret > 0) {
5031 ret = 0;
5032 break;
5033 }
5034 leaf = path->nodes[0];
5035 }
5036
5037 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
5038 if (key.objectid != ino || key.type != BTRFS_EXTENT_DATA_KEY)
5039 break;
5040
5041 /* We have a hole, log it. */
5042 if (prev_extent_end < key.offset) {
Filipe Manana7af59742020-04-07 11:37:44 +01005043 const u64 hole_len = key.offset - prev_extent_end;
Filipe Manana0e563152019-11-19 12:07:33 +00005044
5045 /*
5046 * Release the path to avoid deadlocks with other code
5047 * paths that search the root while holding locks on
5048 * leafs from the log root.
5049 */
5050 btrfs_release_path(path);
5051 ret = btrfs_insert_file_extent(trans, root->log_root,
5052 ino, prev_extent_end, 0,
5053 0, hole_len, 0, hole_len,
5054 0, 0, 0);
5055 if (ret < 0)
5056 return ret;
5057
5058 /*
5059 * Search for the same key again in the root. Since it's
5060 * an extent item and we are holding the inode lock, the
5061 * key must still exist. If it doesn't just emit warning
5062 * and return an error to fall back to a transaction
5063 * commit.
5064 */
5065 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5066 if (ret < 0)
5067 return ret;
5068 if (WARN_ON(ret > 0))
5069 return -ENOENT;
5070 leaf = path->nodes[0];
5071 }
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01005072
Filipe Manana7af59742020-04-07 11:37:44 +01005073 prev_extent_end = btrfs_file_extent_end(path);
Filipe Manana0e563152019-11-19 12:07:33 +00005074 path->slots[0]++;
5075 cond_resched();
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01005076 }
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01005077
Filipe Manana7af59742020-04-07 11:37:44 +01005078 if (prev_extent_end < i_size) {
Filipe Manana0e563152019-11-19 12:07:33 +00005079 u64 hole_len;
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01005080
Filipe Manana0e563152019-11-19 12:07:33 +00005081 btrfs_release_path(path);
Filipe Manana7af59742020-04-07 11:37:44 +01005082 hole_len = ALIGN(i_size - prev_extent_end, fs_info->sectorsize);
Filipe Manana0e563152019-11-19 12:07:33 +00005083 ret = btrfs_insert_file_extent(trans, root->log_root,
5084 ino, prev_extent_end, 0, 0,
5085 hole_len, 0, hole_len,
5086 0, 0, 0);
5087 if (ret < 0)
5088 return ret;
5089 }
5090
5091 return 0;
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01005092}
5093
Filipe Manana56f23fd2016-03-30 23:37:21 +01005094/*
5095 * When we are logging a new inode X, check if it doesn't have a reference that
5096 * matches the reference from some other inode Y created in a past transaction
5097 * and that was renamed in the current transaction. If we don't do this, then at
5098 * log replay time we can lose inode Y (and all its files if it's a directory):
5099 *
5100 * mkdir /mnt/x
5101 * echo "hello world" > /mnt/x/foobar
5102 * sync
5103 * mv /mnt/x /mnt/y
5104 * mkdir /mnt/x # or touch /mnt/x
5105 * xfs_io -c fsync /mnt/x
5106 * <power fail>
5107 * mount fs, trigger log replay
5108 *
5109 * After the log replay procedure, we would lose the first directory and all its
5110 * files (file foobar).
5111 * For the case where inode Y is not a directory we simply end up losing it:
5112 *
5113 * echo "123" > /mnt/foo
5114 * sync
5115 * mv /mnt/foo /mnt/bar
5116 * echo "abc" > /mnt/foo
5117 * xfs_io -c fsync /mnt/foo
5118 * <power fail>
5119 *
5120 * We also need this for cases where a snapshot entry is replaced by some other
5121 * entry (file or directory) otherwise we end up with an unreplayable log due to
5122 * attempts to delete the snapshot entry (entry of type BTRFS_ROOT_ITEM_KEY) as
5123 * if it were a regular entry:
5124 *
5125 * mkdir /mnt/x
5126 * btrfs subvolume snapshot /mnt /mnt/x/snap
5127 * btrfs subvolume delete /mnt/x/snap
5128 * rmdir /mnt/x
5129 * mkdir /mnt/x
5130 * fsync /mnt/x or fsync some new file inside it
5131 * <power fail>
5132 *
5133 * The snapshot delete, rmdir of x, mkdir of a new x and the fsync all happen in
5134 * the same transaction.
5135 */
5136static int btrfs_check_ref_name_override(struct extent_buffer *eb,
5137 const int slot,
5138 const struct btrfs_key *key,
Nikolay Borisov4791c8f2017-01-18 00:31:35 +02005139 struct btrfs_inode *inode,
Filipe Mananaa3baaf02019-02-13 12:14:09 +00005140 u64 *other_ino, u64 *other_parent)
Filipe Manana56f23fd2016-03-30 23:37:21 +01005141{
5142 int ret;
5143 struct btrfs_path *search_path;
5144 char *name = NULL;
5145 u32 name_len = 0;
Josef Bacik3212fa12021-10-21 14:58:35 -04005146 u32 item_size = btrfs_item_size(eb, slot);
Filipe Manana56f23fd2016-03-30 23:37:21 +01005147 u32 cur_offset = 0;
5148 unsigned long ptr = btrfs_item_ptr_offset(eb, slot);
5149
5150 search_path = btrfs_alloc_path();
5151 if (!search_path)
5152 return -ENOMEM;
5153 search_path->search_commit_root = 1;
5154 search_path->skip_locking = 1;
5155
5156 while (cur_offset < item_size) {
5157 u64 parent;
5158 u32 this_name_len;
5159 u32 this_len;
5160 unsigned long name_ptr;
5161 struct btrfs_dir_item *di;
5162
5163 if (key->type == BTRFS_INODE_REF_KEY) {
5164 struct btrfs_inode_ref *iref;
5165
5166 iref = (struct btrfs_inode_ref *)(ptr + cur_offset);
5167 parent = key->offset;
5168 this_name_len = btrfs_inode_ref_name_len(eb, iref);
5169 name_ptr = (unsigned long)(iref + 1);
5170 this_len = sizeof(*iref) + this_name_len;
5171 } else {
5172 struct btrfs_inode_extref *extref;
5173
5174 extref = (struct btrfs_inode_extref *)(ptr +
5175 cur_offset);
5176 parent = btrfs_inode_extref_parent(eb, extref);
5177 this_name_len = btrfs_inode_extref_name_len(eb, extref);
5178 name_ptr = (unsigned long)&extref->name;
5179 this_len = sizeof(*extref) + this_name_len;
5180 }
5181
5182 if (this_name_len > name_len) {
5183 char *new_name;
5184
5185 new_name = krealloc(name, this_name_len, GFP_NOFS);
5186 if (!new_name) {
5187 ret = -ENOMEM;
5188 goto out;
5189 }
5190 name_len = this_name_len;
5191 name = new_name;
5192 }
5193
5194 read_extent_buffer(eb, name, name_ptr, this_name_len);
Nikolay Borisov4791c8f2017-01-18 00:31:35 +02005195 di = btrfs_lookup_dir_item(NULL, inode->root, search_path,
5196 parent, name, this_name_len, 0);
Filipe Manana56f23fd2016-03-30 23:37:21 +01005197 if (di && !IS_ERR(di)) {
Filipe Manana44f714d2016-06-06 16:11:13 +01005198 struct btrfs_key di_key;
5199
5200 btrfs_dir_item_key_to_cpu(search_path->nodes[0],
5201 di, &di_key);
5202 if (di_key.type == BTRFS_INODE_ITEM_KEY) {
Filipe Manana6b5fc432019-02-13 12:14:03 +00005203 if (di_key.objectid != key->objectid) {
5204 ret = 1;
5205 *other_ino = di_key.objectid;
Filipe Mananaa3baaf02019-02-13 12:14:09 +00005206 *other_parent = parent;
Filipe Manana6b5fc432019-02-13 12:14:03 +00005207 } else {
5208 ret = 0;
5209 }
Filipe Manana44f714d2016-06-06 16:11:13 +01005210 } else {
5211 ret = -EAGAIN;
5212 }
Filipe Manana56f23fd2016-03-30 23:37:21 +01005213 goto out;
5214 } else if (IS_ERR(di)) {
5215 ret = PTR_ERR(di);
5216 goto out;
5217 }
5218 btrfs_release_path(search_path);
5219
5220 cur_offset += this_len;
5221 }
5222 ret = 0;
5223out:
5224 btrfs_free_path(search_path);
5225 kfree(name);
5226 return ret;
5227}
5228
Filipe Manana6b5fc432019-02-13 12:14:03 +00005229struct btrfs_ino_list {
5230 u64 ino;
Filipe Mananaa3baaf02019-02-13 12:14:09 +00005231 u64 parent;
Filipe Manana6b5fc432019-02-13 12:14:03 +00005232 struct list_head list;
5233};
5234
5235static int log_conflicting_inodes(struct btrfs_trans_handle *trans,
5236 struct btrfs_root *root,
5237 struct btrfs_path *path,
5238 struct btrfs_log_ctx *ctx,
Filipe Mananaa3baaf02019-02-13 12:14:09 +00005239 u64 ino, u64 parent)
Filipe Manana6b5fc432019-02-13 12:14:03 +00005240{
5241 struct btrfs_ino_list *ino_elem;
5242 LIST_HEAD(inode_list);
5243 int ret = 0;
5244
5245 ino_elem = kmalloc(sizeof(*ino_elem), GFP_NOFS);
5246 if (!ino_elem)
5247 return -ENOMEM;
5248 ino_elem->ino = ino;
Filipe Mananaa3baaf02019-02-13 12:14:09 +00005249 ino_elem->parent = parent;
Filipe Manana6b5fc432019-02-13 12:14:03 +00005250 list_add_tail(&ino_elem->list, &inode_list);
5251
5252 while (!list_empty(&inode_list)) {
5253 struct btrfs_fs_info *fs_info = root->fs_info;
5254 struct btrfs_key key;
5255 struct inode *inode;
5256
5257 ino_elem = list_first_entry(&inode_list, struct btrfs_ino_list,
5258 list);
5259 ino = ino_elem->ino;
Filipe Mananaa3baaf02019-02-13 12:14:09 +00005260 parent = ino_elem->parent;
Filipe Manana6b5fc432019-02-13 12:14:03 +00005261 list_del(&ino_elem->list);
5262 kfree(ino_elem);
5263 if (ret)
5264 continue;
5265
5266 btrfs_release_path(path);
5267
David Sterba0202e832020-05-15 19:35:59 +02005268 inode = btrfs_iget(fs_info->sb, ino, root);
Filipe Manana6b5fc432019-02-13 12:14:03 +00005269 /*
5270 * If the other inode that had a conflicting dir entry was
Filipe Mananaa3baaf02019-02-13 12:14:09 +00005271 * deleted in the current transaction, we need to log its parent
5272 * directory.
Filipe Manana6b5fc432019-02-13 12:14:03 +00005273 */
5274 if (IS_ERR(inode)) {
5275 ret = PTR_ERR(inode);
Filipe Mananaa3baaf02019-02-13 12:14:09 +00005276 if (ret == -ENOENT) {
David Sterba0202e832020-05-15 19:35:59 +02005277 inode = btrfs_iget(fs_info->sb, parent, root);
Filipe Mananaa3baaf02019-02-13 12:14:09 +00005278 if (IS_ERR(inode)) {
5279 ret = PTR_ERR(inode);
5280 } else {
Filipe Manana90d04512021-09-16 11:32:10 +01005281 ret = btrfs_log_inode(trans,
Filipe Mananaa3baaf02019-02-13 12:14:09 +00005282 BTRFS_I(inode),
5283 LOG_OTHER_INODE_ALL,
Filipe Manana48778172020-08-11 12:43:58 +01005284 ctx);
Filipe Manana410f9542019-09-10 15:26:49 +01005285 btrfs_add_delayed_iput(inode);
Filipe Mananaa3baaf02019-02-13 12:14:09 +00005286 }
5287 }
Filipe Manana6b5fc432019-02-13 12:14:03 +00005288 continue;
5289 }
5290 /*
Filipe Mananab5e4ff92020-01-15 13:21:35 +00005291 * If the inode was already logged skip it - otherwise we can
5292 * hit an infinite loop. Example:
5293 *
5294 * From the commit root (previous transaction) we have the
5295 * following inodes:
5296 *
5297 * inode 257 a directory
5298 * inode 258 with references "zz" and "zz_link" on inode 257
5299 * inode 259 with reference "a" on inode 257
5300 *
5301 * And in the current (uncommitted) transaction we have:
5302 *
5303 * inode 257 a directory, unchanged
5304 * inode 258 with references "a" and "a2" on inode 257
5305 * inode 259 with reference "zz_link" on inode 257
5306 * inode 261 with reference "zz" on inode 257
5307 *
5308 * When logging inode 261 the following infinite loop could
5309 * happen if we don't skip already logged inodes:
5310 *
5311 * - we detect inode 258 as a conflicting inode, with inode 261
5312 * on reference "zz", and log it;
5313 *
5314 * - we detect inode 259 as a conflicting inode, with inode 258
5315 * on reference "a", and log it;
5316 *
5317 * - we detect inode 258 as a conflicting inode, with inode 259
5318 * on reference "zz_link", and log it - again! After this we
5319 * repeat the above steps forever.
5320 */
5321 spin_lock(&BTRFS_I(inode)->lock);
5322 /*
5323 * Check the inode's logged_trans only instead of
5324 * btrfs_inode_in_log(). This is because the last_log_commit of
Filipe Manana1f295372021-07-29 15:30:21 +01005325 * the inode is not updated when we only log that it exists (see
5326 * btrfs_log_inode()).
Filipe Mananab5e4ff92020-01-15 13:21:35 +00005327 */
5328 if (BTRFS_I(inode)->logged_trans == trans->transid) {
5329 spin_unlock(&BTRFS_I(inode)->lock);
5330 btrfs_add_delayed_iput(inode);
5331 continue;
5332 }
5333 spin_unlock(&BTRFS_I(inode)->lock);
5334 /*
Filipe Manana6b5fc432019-02-13 12:14:03 +00005335 * We are safe logging the other inode without acquiring its
5336 * lock as long as we log with the LOG_INODE_EXISTS mode. We
5337 * are safe against concurrent renames of the other inode as
5338 * well because during a rename we pin the log and update the
5339 * log with the new name before we unpin it.
5340 */
Filipe Manana90d04512021-09-16 11:32:10 +01005341 ret = btrfs_log_inode(trans, BTRFS_I(inode), LOG_OTHER_INODE, ctx);
Filipe Manana6b5fc432019-02-13 12:14:03 +00005342 if (ret) {
Filipe Manana410f9542019-09-10 15:26:49 +01005343 btrfs_add_delayed_iput(inode);
Filipe Manana6b5fc432019-02-13 12:14:03 +00005344 continue;
5345 }
5346
5347 key.objectid = ino;
5348 key.type = BTRFS_INODE_REF_KEY;
5349 key.offset = 0;
5350 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5351 if (ret < 0) {
Filipe Manana410f9542019-09-10 15:26:49 +01005352 btrfs_add_delayed_iput(inode);
Filipe Manana6b5fc432019-02-13 12:14:03 +00005353 continue;
5354 }
5355
5356 while (true) {
5357 struct extent_buffer *leaf = path->nodes[0];
5358 int slot = path->slots[0];
5359 u64 other_ino = 0;
Filipe Mananaa3baaf02019-02-13 12:14:09 +00005360 u64 other_parent = 0;
Filipe Manana6b5fc432019-02-13 12:14:03 +00005361
5362 if (slot >= btrfs_header_nritems(leaf)) {
5363 ret = btrfs_next_leaf(root, path);
5364 if (ret < 0) {
5365 break;
5366 } else if (ret > 0) {
5367 ret = 0;
5368 break;
5369 }
5370 continue;
5371 }
5372
5373 btrfs_item_key_to_cpu(leaf, &key, slot);
5374 if (key.objectid != ino ||
5375 (key.type != BTRFS_INODE_REF_KEY &&
5376 key.type != BTRFS_INODE_EXTREF_KEY)) {
5377 ret = 0;
5378 break;
5379 }
5380
5381 ret = btrfs_check_ref_name_override(leaf, slot, &key,
Filipe Mananaa3baaf02019-02-13 12:14:09 +00005382 BTRFS_I(inode), &other_ino,
5383 &other_parent);
Filipe Manana6b5fc432019-02-13 12:14:03 +00005384 if (ret < 0)
5385 break;
5386 if (ret > 0) {
5387 ino_elem = kmalloc(sizeof(*ino_elem), GFP_NOFS);
5388 if (!ino_elem) {
5389 ret = -ENOMEM;
5390 break;
5391 }
5392 ino_elem->ino = other_ino;
Filipe Mananaa3baaf02019-02-13 12:14:09 +00005393 ino_elem->parent = other_parent;
Filipe Manana6b5fc432019-02-13 12:14:03 +00005394 list_add_tail(&ino_elem->list, &inode_list);
5395 ret = 0;
5396 }
5397 path->slots[0]++;
5398 }
Filipe Manana410f9542019-09-10 15:26:49 +01005399 btrfs_add_delayed_iput(inode);
Filipe Manana6b5fc432019-02-13 12:14:03 +00005400 }
5401
5402 return ret;
5403}
5404
Filipe Mananada447002020-03-09 12:41:07 +00005405static int copy_inode_items_to_log(struct btrfs_trans_handle *trans,
5406 struct btrfs_inode *inode,
5407 struct btrfs_key *min_key,
5408 const struct btrfs_key *max_key,
5409 struct btrfs_path *path,
5410 struct btrfs_path *dst_path,
5411 const u64 logged_isize,
5412 const bool recursive_logging,
5413 const int inode_only,
5414 struct btrfs_log_ctx *ctx,
5415 bool *need_log_inode_item)
5416{
5417 struct btrfs_root *root = inode->root;
5418 int ins_start_slot = 0;
5419 int ins_nr = 0;
5420 int ret;
5421
5422 while (1) {
5423 ret = btrfs_search_forward(root, min_key, path, trans->transid);
5424 if (ret < 0)
5425 return ret;
5426 if (ret > 0) {
5427 ret = 0;
5428 break;
5429 }
5430again:
5431 /* Note, ins_nr might be > 0 here, cleanup outside the loop */
5432 if (min_key->objectid != max_key->objectid)
5433 break;
5434 if (min_key->type > max_key->type)
5435 break;
5436
5437 if (min_key->type == BTRFS_INODE_ITEM_KEY)
5438 *need_log_inode_item = false;
5439
5440 if ((min_key->type == BTRFS_INODE_REF_KEY ||
5441 min_key->type == BTRFS_INODE_EXTREF_KEY) &&
5442 inode->generation == trans->transid &&
5443 !recursive_logging) {
5444 u64 other_ino = 0;
5445 u64 other_parent = 0;
5446
5447 ret = btrfs_check_ref_name_override(path->nodes[0],
5448 path->slots[0], min_key, inode,
5449 &other_ino, &other_parent);
5450 if (ret < 0) {
5451 return ret;
Filipe Manana289cffc2021-08-31 15:30:32 +01005452 } else if (ret > 0 &&
Filipe Mananada447002020-03-09 12:41:07 +00005453 other_ino != btrfs_ino(BTRFS_I(ctx->inode))) {
5454 if (ins_nr > 0) {
5455 ins_nr++;
5456 } else {
5457 ins_nr = 1;
5458 ins_start_slot = path->slots[0];
5459 }
5460 ret = copy_items(trans, inode, dst_path, path,
5461 ins_start_slot, ins_nr,
5462 inode_only, logged_isize);
5463 if (ret < 0)
5464 return ret;
5465 ins_nr = 0;
5466
5467 ret = log_conflicting_inodes(trans, root, path,
5468 ctx, other_ino, other_parent);
5469 if (ret)
5470 return ret;
5471 btrfs_release_path(path);
5472 goto next_key;
5473 }
5474 }
5475
5476 /* Skip xattrs, we log them later with btrfs_log_all_xattrs() */
5477 if (min_key->type == BTRFS_XATTR_ITEM_KEY) {
5478 if (ins_nr == 0)
5479 goto next_slot;
5480 ret = copy_items(trans, inode, dst_path, path,
5481 ins_start_slot,
5482 ins_nr, inode_only, logged_isize);
5483 if (ret < 0)
5484 return ret;
5485 ins_nr = 0;
5486 goto next_slot;
5487 }
5488
5489 if (ins_nr && ins_start_slot + ins_nr == path->slots[0]) {
5490 ins_nr++;
5491 goto next_slot;
5492 } else if (!ins_nr) {
5493 ins_start_slot = path->slots[0];
5494 ins_nr = 1;
5495 goto next_slot;
5496 }
5497
5498 ret = copy_items(trans, inode, dst_path, path, ins_start_slot,
5499 ins_nr, inode_only, logged_isize);
5500 if (ret < 0)
5501 return ret;
5502 ins_nr = 1;
5503 ins_start_slot = path->slots[0];
5504next_slot:
5505 path->slots[0]++;
5506 if (path->slots[0] < btrfs_header_nritems(path->nodes[0])) {
5507 btrfs_item_key_to_cpu(path->nodes[0], min_key,
5508 path->slots[0]);
5509 goto again;
5510 }
5511 if (ins_nr) {
5512 ret = copy_items(trans, inode, dst_path, path,
5513 ins_start_slot, ins_nr, inode_only,
5514 logged_isize);
5515 if (ret < 0)
5516 return ret;
5517 ins_nr = 0;
5518 }
5519 btrfs_release_path(path);
5520next_key:
5521 if (min_key->offset < (u64)-1) {
5522 min_key->offset++;
5523 } else if (min_key->type < max_key->type) {
5524 min_key->type++;
5525 min_key->offset = 0;
5526 } else {
5527 break;
5528 }
5529 }
5530 if (ins_nr)
5531 ret = copy_items(trans, inode, dst_path, path, ins_start_slot,
5532 ins_nr, inode_only, logged_isize);
5533
5534 return ret;
5535}
5536
Chris Masone02119d2008-09-05 16:13:11 -04005537/* log a single inode in the tree log.
5538 * At least one parent directory for this inode must exist in the tree
5539 * or be logged already.
5540 *
5541 * Any items from this inode changed by the current transaction are copied
5542 * to the log tree. An extra reference is taken on any extents in this
5543 * file, allowing us to avoid a whole pile of corner cases around logging
5544 * blocks that have been removed from the tree.
5545 *
5546 * See LOG_INODE_ALL and related defines for a description of what inode_only
5547 * does.
5548 *
5549 * This handles both files and directories.
5550 */
Chris Mason12fcfd22009-03-24 10:24:20 -04005551static int btrfs_log_inode(struct btrfs_trans_handle *trans,
Filipe Manana90d04512021-09-16 11:32:10 +01005552 struct btrfs_inode *inode,
Filipe Manana49dae1b2014-09-06 22:34:39 +01005553 int inode_only,
Filipe Manana8407f552014-09-05 15:14:39 +01005554 struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -04005555{
5556 struct btrfs_path *path;
5557 struct btrfs_path *dst_path;
5558 struct btrfs_key min_key;
5559 struct btrfs_key max_key;
Filipe Manana90d04512021-09-16 11:32:10 +01005560 struct btrfs_root *log = inode->root->log_root;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005561 int err = 0;
Filipe Manana8c8648d2020-07-02 12:31:59 +01005562 int ret = 0;
Josef Bacik5dc562c2012-08-17 13:14:17 -04005563 bool fast_search = false;
Nikolay Borisova59108a2017-01-18 00:31:48 +02005564 u64 ino = btrfs_ino(inode);
5565 struct extent_map_tree *em_tree = &inode->extent_tree;
Filipe Manana1a4bcf42015-02-13 12:30:56 +00005566 u64 logged_isize = 0;
Filipe Mananae4545de2015-06-17 12:49:23 +01005567 bool need_log_inode_item = true;
Filipe Manana9a8fca62018-05-11 16:42:42 +01005568 bool xattrs_logged = false;
Filipe Mananaa3baaf02019-02-13 12:14:09 +00005569 bool recursive_logging = false;
Filipe Manana2ac691d2021-07-20 16:03:43 +01005570 bool inode_item_dropped = true;
Chris Masone02119d2008-09-05 16:13:11 -04005571
Chris Masone02119d2008-09-05 16:13:11 -04005572 path = btrfs_alloc_path();
Tsutomu Itoh5df67082011-02-01 09:17:35 +00005573 if (!path)
5574 return -ENOMEM;
Chris Masone02119d2008-09-05 16:13:11 -04005575 dst_path = btrfs_alloc_path();
Tsutomu Itoh5df67082011-02-01 09:17:35 +00005576 if (!dst_path) {
5577 btrfs_free_path(path);
5578 return -ENOMEM;
5579 }
Chris Masone02119d2008-09-05 16:13:11 -04005580
Li Zefan33345d012011-04-20 10:31:50 +08005581 min_key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04005582 min_key.type = BTRFS_INODE_ITEM_KEY;
5583 min_key.offset = 0;
5584
Li Zefan33345d012011-04-20 10:31:50 +08005585 max_key.objectid = ino;
Chris Mason12fcfd22009-03-24 10:24:20 -04005586
Chris Mason12fcfd22009-03-24 10:24:20 -04005587
Josef Bacik5dc562c2012-08-17 13:14:17 -04005588 /* today the code can only do partial logging of directories */
Nikolay Borisova59108a2017-01-18 00:31:48 +02005589 if (S_ISDIR(inode->vfs_inode.i_mode) ||
Miao Xie5269b672012-11-01 07:35:23 +00005590 (!test_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisova59108a2017-01-18 00:31:48 +02005591 &inode->runtime_flags) &&
Liu Bo781feef2016-11-30 16:20:25 -08005592 inode_only >= LOG_INODE_EXISTS))
Chris Masone02119d2008-09-05 16:13:11 -04005593 max_key.type = BTRFS_XATTR_ITEM_KEY;
5594 else
5595 max_key.type = (u8)-1;
5596 max_key.offset = (u64)-1;
5597
Filipe Manana2c2c4522015-01-13 16:40:04 +00005598 /*
Filipe Manana5aa7d1a2020-07-02 12:32:20 +01005599 * Only run delayed items if we are a directory. We want to make sure
5600 * all directory indexes hit the fs/subvolume tree so we can find them
5601 * and figure out which index ranges have to be logged.
Filipe Manana2c2c4522015-01-13 16:40:04 +00005602 */
Filipe Mananaf6df27d2021-08-31 15:30:40 +01005603 if (S_ISDIR(inode->vfs_inode.i_mode)) {
5604 err = btrfs_commit_inode_delayed_items(trans, inode);
5605 if (err)
5606 goto out;
Miao Xie16cdcec2011-04-22 18:12:22 +08005607 }
5608
Filipe Mananaa3baaf02019-02-13 12:14:09 +00005609 if (inode_only == LOG_OTHER_INODE || inode_only == LOG_OTHER_INODE_ALL) {
5610 recursive_logging = true;
5611 if (inode_only == LOG_OTHER_INODE)
5612 inode_only = LOG_INODE_EXISTS;
5613 else
5614 inode_only = LOG_INODE_ALL;
Nikolay Borisova59108a2017-01-18 00:31:48 +02005615 mutex_lock_nested(&inode->log_mutex, SINGLE_DEPTH_NESTING);
Liu Bo781feef2016-11-30 16:20:25 -08005616 } else {
Nikolay Borisova59108a2017-01-18 00:31:48 +02005617 mutex_lock(&inode->log_mutex);
Liu Bo781feef2016-11-30 16:20:25 -08005618 }
Chris Masone02119d2008-09-05 16:13:11 -04005619
Filipe Manana5e33a2b2016-02-25 23:19:38 +00005620 /*
Filipe Manana64d6b282021-01-27 10:34:59 +00005621 * This is for cases where logging a directory could result in losing a
5622 * a file after replaying the log. For example, if we move a file from a
5623 * directory A to a directory B, then fsync directory A, we have no way
5624 * to known the file was moved from A to B, so logging just A would
5625 * result in losing the file after a log replay.
5626 */
5627 if (S_ISDIR(inode->vfs_inode.i_mode) &&
5628 inode_only == LOG_INODE_ALL &&
5629 inode->last_unlink_trans >= trans->transid) {
5630 btrfs_set_log_full_commit(trans);
5631 err = 1;
5632 goto out_unlock;
5633 }
5634
5635 /*
Chris Masone02119d2008-09-05 16:13:11 -04005636 * a brute force approach to making sure we get the most uptodate
5637 * copies of everything.
5638 */
Nikolay Borisova59108a2017-01-18 00:31:48 +02005639 if (S_ISDIR(inode->vfs_inode.i_mode)) {
Chris Masone02119d2008-09-05 16:13:11 -04005640 int max_key_type = BTRFS_DIR_LOG_INDEX_KEY;
5641
Filipe Mananaab123132021-01-27 10:34:56 +00005642 clear_bit(BTRFS_INODE_COPY_EVERYTHING, &inode->runtime_flags);
Filipe Manana4f764e52015-02-23 19:53:35 +00005643 if (inode_only == LOG_INODE_EXISTS)
5644 max_key_type = BTRFS_XATTR_ITEM_KEY;
Filipe Manana88e221c2021-08-31 15:30:35 +01005645 ret = drop_inode_items(trans, log, path, inode, max_key_type);
Chris Masone02119d2008-09-05 16:13:11 -04005646 } else {
Filipe Mananaa5c733a2021-08-31 15:30:38 +01005647 if (inode_only == LOG_INODE_EXISTS && inode_logged(trans, inode)) {
Filipe Manana1a4bcf42015-02-13 12:30:56 +00005648 /*
5649 * Make sure the new inode item we write to the log has
5650 * the same isize as the current one (if it exists).
5651 * This is necessary to prevent data loss after log
5652 * replay, and also to prevent doing a wrong expanding
5653 * truncate - for e.g. create file, write 4K into offset
5654 * 0, fsync, write 4K into offset 4096, add hard link,
5655 * fsync some other file (to sync log), power fail - if
5656 * we use the inode's current i_size, after log replay
5657 * we get a 8Kb file, with the last 4Kb extent as a hole
5658 * (zeroes), as if an expanding truncate happened,
5659 * instead of getting a file of 4Kb only.
5660 */
Nikolay Borisova59108a2017-01-18 00:31:48 +02005661 err = logged_inode_size(log, inode, path, &logged_isize);
Filipe Manana1a4bcf42015-02-13 12:30:56 +00005662 if (err)
5663 goto out_unlock;
5664 }
Filipe Mananaa7429942015-02-13 16:56:14 +00005665 if (test_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisova59108a2017-01-18 00:31:48 +02005666 &inode->runtime_flags)) {
Filipe Mananaa7429942015-02-13 16:56:14 +00005667 if (inode_only == LOG_INODE_EXISTS) {
Filipe Manana4f764e52015-02-23 19:53:35 +00005668 max_key.type = BTRFS_XATTR_ITEM_KEY;
Filipe Manana88e221c2021-08-31 15:30:35 +01005669 ret = drop_inode_items(trans, log, path, inode,
5670 max_key.type);
Filipe Mananaa7429942015-02-13 16:56:14 +00005671 } else {
5672 clear_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisova59108a2017-01-18 00:31:48 +02005673 &inode->runtime_flags);
Filipe Mananaa7429942015-02-13 16:56:14 +00005674 clear_bit(BTRFS_INODE_COPY_EVERYTHING,
Nikolay Borisova59108a2017-01-18 00:31:48 +02005675 &inode->runtime_flags);
Filipe Manana4934a812021-08-31 15:30:37 +01005676 if (inode_logged(trans, inode))
5677 ret = truncate_inode_items(trans, log,
5678 inode, 0, 0);
Filipe Mananaa7429942015-02-13 16:56:14 +00005679 }
Filipe Manana4f764e52015-02-23 19:53:35 +00005680 } else if (test_and_clear_bit(BTRFS_INODE_COPY_EVERYTHING,
Nikolay Borisova59108a2017-01-18 00:31:48 +02005681 &inode->runtime_flags) ||
Josef Bacik6cfab852013-11-12 16:25:58 -05005682 inode_only == LOG_INODE_EXISTS) {
Filipe Manana4f764e52015-02-23 19:53:35 +00005683 if (inode_only == LOG_INODE_ALL)
Josef Bacika95249b2012-10-11 16:17:34 -04005684 fast_search = true;
Filipe Manana4f764e52015-02-23 19:53:35 +00005685 max_key.type = BTRFS_XATTR_ITEM_KEY;
Filipe Manana88e221c2021-08-31 15:30:35 +01005686 ret = drop_inode_items(trans, log, path, inode,
5687 max_key.type);
Josef Bacik5dc562c2012-08-17 13:14:17 -04005688 } else {
Liu Bo183f37f2012-11-01 06:38:47 +00005689 if (inode_only == LOG_INODE_ALL)
5690 fast_search = true;
Filipe Manana2ac691d2021-07-20 16:03:43 +01005691 inode_item_dropped = false;
Josef Bacika95249b2012-10-11 16:17:34 -04005692 goto log_extents;
Josef Bacik5dc562c2012-08-17 13:14:17 -04005693 }
Josef Bacika95249b2012-10-11 16:17:34 -04005694
Chris Masone02119d2008-09-05 16:13:11 -04005695 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005696 if (ret) {
5697 err = ret;
5698 goto out_unlock;
5699 }
Chris Masone02119d2008-09-05 16:13:11 -04005700
Filipe Mananada447002020-03-09 12:41:07 +00005701 err = copy_inode_items_to_log(trans, inode, &min_key, &max_key,
5702 path, dst_path, logged_isize,
Filipe Manana7af59742020-04-07 11:37:44 +01005703 recursive_logging, inode_only, ctx,
5704 &need_log_inode_item);
Filipe Mananada447002020-03-09 12:41:07 +00005705 if (err)
5706 goto out_unlock;
Josef Bacik5dc562c2012-08-17 13:14:17 -04005707
Filipe Manana36283bf2015-06-20 00:44:51 +01005708 btrfs_release_path(path);
5709 btrfs_release_path(dst_path);
Filipe Manana90d04512021-09-16 11:32:10 +01005710 err = btrfs_log_all_xattrs(trans, inode, path, dst_path);
Filipe Manana36283bf2015-06-20 00:44:51 +01005711 if (err)
5712 goto out_unlock;
Filipe Manana9a8fca62018-05-11 16:42:42 +01005713 xattrs_logged = true;
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01005714 if (max_key.type >= BTRFS_EXTENT_DATA_KEY && !fast_search) {
5715 btrfs_release_path(path);
5716 btrfs_release_path(dst_path);
Filipe Manana90d04512021-09-16 11:32:10 +01005717 err = btrfs_log_holes(trans, inode, path);
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01005718 if (err)
5719 goto out_unlock;
5720 }
Josef Bacika95249b2012-10-11 16:17:34 -04005721log_extents:
Josef Bacikf3b15cc2013-07-22 12:54:30 -04005722 btrfs_release_path(path);
5723 btrfs_release_path(dst_path);
Filipe Mananae4545de2015-06-17 12:49:23 +01005724 if (need_log_inode_item) {
Filipe Manana2ac691d2021-07-20 16:03:43 +01005725 err = log_inode_item(trans, log, dst_path, inode, inode_item_dropped);
Filipe Mananae4545de2015-06-17 12:49:23 +01005726 if (err)
5727 goto out_unlock;
Filipe Mananab590b832021-05-28 11:37:32 +01005728 /*
5729 * If we are doing a fast fsync and the inode was logged before
5730 * in this transaction, we don't need to log the xattrs because
5731 * they were logged before. If xattrs were added, changed or
5732 * deleted since the last time we logged the inode, then we have
5733 * already logged them because the inode had the runtime flag
5734 * BTRFS_INODE_COPY_EVERYTHING set.
5735 */
5736 if (!xattrs_logged && inode->logged_trans < trans->transid) {
Filipe Manana90d04512021-09-16 11:32:10 +01005737 err = btrfs_log_all_xattrs(trans, inode, path, dst_path);
Filipe Mananab590b832021-05-28 11:37:32 +01005738 if (err)
5739 goto out_unlock;
5740 btrfs_release_path(path);
5741 }
Filipe Mananae4545de2015-06-17 12:49:23 +01005742 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04005743 if (fast_search) {
Filipe Manana90d04512021-09-16 11:32:10 +01005744 ret = btrfs_log_changed_extents(trans, inode, dst_path, ctx);
Josef Bacik5dc562c2012-08-17 13:14:17 -04005745 if (ret) {
5746 err = ret;
5747 goto out_unlock;
5748 }
Josef Bacikd006a042013-11-12 20:54:09 -05005749 } else if (inode_only == LOG_INODE_ALL) {
Liu Bo06d3d222012-08-27 10:52:19 -06005750 struct extent_map *em, *n;
5751
Filipe Manana49dae1b2014-09-06 22:34:39 +01005752 write_lock(&em_tree->lock);
Filipe Manana48778172020-08-11 12:43:58 +01005753 list_for_each_entry_safe(em, n, &em_tree->modified_extents, list)
5754 list_del_init(&em->list);
Filipe Manana49dae1b2014-09-06 22:34:39 +01005755 write_unlock(&em_tree->lock);
Josef Bacik5dc562c2012-08-17 13:14:17 -04005756 }
5757
Nikolay Borisova59108a2017-01-18 00:31:48 +02005758 if (inode_only == LOG_INODE_ALL && S_ISDIR(inode->vfs_inode.i_mode)) {
Filipe Manana90d04512021-09-16 11:32:10 +01005759 ret = log_directory_changes(trans, inode, path, dst_path, ctx);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005760 if (ret) {
5761 err = ret;
5762 goto out_unlock;
5763 }
Chris Masone02119d2008-09-05 16:13:11 -04005764 }
Filipe Manana49dae1b2014-09-06 22:34:39 +01005765
Filipe Manana130341b2021-08-31 15:30:34 +01005766 spin_lock(&inode->lock);
5767 inode->logged_trans = trans->transid;
Filipe Mananad1d832a2019-06-07 11:25:24 +01005768 /*
Filipe Manana130341b2021-08-31 15:30:34 +01005769 * Don't update last_log_commit if we logged that an inode exists.
5770 * We do this for three reasons:
5771 *
5772 * 1) We might have had buffered writes to this inode that were
5773 * flushed and had their ordered extents completed in this
5774 * transaction, but we did not previously log the inode with
5775 * LOG_INODE_ALL. Later the inode was evicted and after that
5776 * it was loaded again and this LOG_INODE_EXISTS log operation
5777 * happened. We must make sure that if an explicit fsync against
5778 * the inode is performed later, it logs the new extents, an
5779 * updated inode item, etc, and syncs the log. The same logic
5780 * applies to direct IO writes instead of buffered writes.
5781 *
5782 * 2) When we log the inode with LOG_INODE_EXISTS, its inode item
5783 * is logged with an i_size of 0 or whatever value was logged
5784 * before. If later the i_size of the inode is increased by a
5785 * truncate operation, the log is synced through an fsync of
5786 * some other inode and then finally an explicit fsync against
5787 * this inode is made, we must make sure this fsync logs the
5788 * inode with the new i_size, the hole between old i_size and
5789 * the new i_size, and syncs the log.
5790 *
5791 * 3) If we are logging that an ancestor inode exists as part of
5792 * logging a new name from a link or rename operation, don't update
5793 * its last_log_commit - otherwise if an explicit fsync is made
5794 * against an ancestor, the fsync considers the inode in the log
5795 * and doesn't sync the log, resulting in the ancestor missing after
5796 * a power failure unless the log was synced as part of an fsync
5797 * against any other unrelated inode.
Filipe Mananad1d832a2019-06-07 11:25:24 +01005798 */
Filipe Manana130341b2021-08-31 15:30:34 +01005799 if (inode_only != LOG_INODE_EXISTS)
5800 inode->last_log_commit = inode->last_sub_trans;
5801 spin_unlock(&inode->lock);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005802out_unlock:
Nikolay Borisova59108a2017-01-18 00:31:48 +02005803 mutex_unlock(&inode->log_mutex);
Filipe Mananaf6df27d2021-08-31 15:30:40 +01005804out:
Chris Masone02119d2008-09-05 16:13:11 -04005805 btrfs_free_path(path);
5806 btrfs_free_path(dst_path);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005807 return err;
Chris Masone02119d2008-09-05 16:13:11 -04005808}
5809
Chris Mason12fcfd22009-03-24 10:24:20 -04005810/*
Filipe Mananaab123132021-01-27 10:34:56 +00005811 * Check if we need to log an inode. This is used in contexts where while
5812 * logging an inode we need to log another inode (either that it exists or in
5813 * full mode). This is used instead of btrfs_inode_in_log() because the later
5814 * requires the inode to be in the log and have the log transaction committed,
5815 * while here we do not care if the log transaction was already committed - our
5816 * caller will commit the log later - and we want to avoid logging an inode
5817 * multiple times when multiple tasks have joined the same log transaction.
5818 */
5819static bool need_log_inode(struct btrfs_trans_handle *trans,
5820 struct btrfs_inode *inode)
5821{
5822 /*
Filipe Manana8be2ba22021-07-29 18:52:46 +01005823 * If a directory was not modified, no dentries added or removed, we can
5824 * and should avoid logging it.
5825 */
5826 if (S_ISDIR(inode->vfs_inode.i_mode) && inode->last_trans < trans->transid)
5827 return false;
5828
5829 /*
Filipe Mananaab123132021-01-27 10:34:56 +00005830 * If this inode does not have new/updated/deleted xattrs since the last
5831 * time it was logged and is flagged as logged in the current transaction,
5832 * we can skip logging it. As for new/deleted names, those are updated in
5833 * the log by link/unlink/rename operations.
5834 * In case the inode was logged and then evicted and reloaded, its
5835 * logged_trans will be 0, in which case we have to fully log it since
5836 * logged_trans is a transient field, not persisted.
5837 */
5838 if (inode->logged_trans == trans->transid &&
5839 !test_bit(BTRFS_INODE_COPY_EVERYTHING, &inode->runtime_flags))
5840 return false;
5841
5842 return true;
5843}
5844
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005845struct btrfs_dir_list {
5846 u64 ino;
5847 struct list_head list;
5848};
5849
5850/*
5851 * Log the inodes of the new dentries of a directory. See log_dir_items() for
5852 * details about the why it is needed.
5853 * This is a recursive operation - if an existing dentry corresponds to a
5854 * directory, that directory's new entries are logged too (same behaviour as
5855 * ext3/4, xfs, f2fs, reiserfs, nilfs2). Note that when logging the inodes
5856 * the dentries point to we do not lock their i_mutex, otherwise lockdep
5857 * complains about the following circular lock dependency / possible deadlock:
5858 *
5859 * CPU0 CPU1
5860 * ---- ----
5861 * lock(&type->i_mutex_dir_key#3/2);
5862 * lock(sb_internal#2);
5863 * lock(&type->i_mutex_dir_key#3/2);
5864 * lock(&sb->s_type->i_mutex_key#14);
5865 *
5866 * Where sb_internal is the lock (a counter that works as a lock) acquired by
5867 * sb_start_intwrite() in btrfs_start_transaction().
5868 * Not locking i_mutex of the inodes is still safe because:
5869 *
5870 * 1) For regular files we log with a mode of LOG_INODE_EXISTS. It's possible
5871 * that while logging the inode new references (names) are added or removed
5872 * from the inode, leaving the logged inode item with a link count that does
5873 * not match the number of logged inode reference items. This is fine because
5874 * at log replay time we compute the real number of links and correct the
5875 * link count in the inode item (see replay_one_buffer() and
5876 * link_to_fixup_dir());
5877 *
5878 * 2) For directories we log with a mode of LOG_INODE_ALL. It's possible that
Filipe Manana339d0352021-10-25 17:31:53 +01005879 * while logging the inode's items new index items (key type
5880 * BTRFS_DIR_INDEX_KEY) are added to fs/subvol tree and the logged inode item
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005881 * has a size that doesn't match the sum of the lengths of all the logged
Filipe Manana339d0352021-10-25 17:31:53 +01005882 * names - this is ok, not a problem, because at log replay time we set the
5883 * directory's i_size to the correct value (see replay_one_name() and
5884 * do_overwrite_item()).
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005885 */
5886static int log_new_dir_dentries(struct btrfs_trans_handle *trans,
5887 struct btrfs_root *root,
Nikolay Borisov51cc0d32017-01-18 00:31:43 +02005888 struct btrfs_inode *start_inode,
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005889 struct btrfs_log_ctx *ctx)
5890{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005891 struct btrfs_fs_info *fs_info = root->fs_info;
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005892 struct btrfs_root *log = root->log_root;
5893 struct btrfs_path *path;
5894 LIST_HEAD(dir_list);
5895 struct btrfs_dir_list *dir_elem;
5896 int ret = 0;
5897
Filipe Mananac48792c2021-08-31 15:30:33 +01005898 /*
5899 * If we are logging a new name, as part of a link or rename operation,
5900 * don't bother logging new dentries, as we just want to log the names
5901 * of an inode and that any new parents exist.
5902 */
5903 if (ctx->logging_new_name)
5904 return 0;
5905
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005906 path = btrfs_alloc_path();
5907 if (!path)
5908 return -ENOMEM;
5909
5910 dir_elem = kmalloc(sizeof(*dir_elem), GFP_NOFS);
5911 if (!dir_elem) {
5912 btrfs_free_path(path);
5913 return -ENOMEM;
5914 }
Nikolay Borisov51cc0d32017-01-18 00:31:43 +02005915 dir_elem->ino = btrfs_ino(start_inode);
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005916 list_add_tail(&dir_elem->list, &dir_list);
5917
5918 while (!list_empty(&dir_list)) {
5919 struct extent_buffer *leaf;
5920 struct btrfs_key min_key;
5921 int nritems;
5922 int i;
5923
5924 dir_elem = list_first_entry(&dir_list, struct btrfs_dir_list,
5925 list);
5926 if (ret)
5927 goto next_dir_inode;
5928
5929 min_key.objectid = dir_elem->ino;
Filipe Manana339d0352021-10-25 17:31:53 +01005930 min_key.type = BTRFS_DIR_INDEX_KEY;
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005931 min_key.offset = 0;
5932again:
5933 btrfs_release_path(path);
5934 ret = btrfs_search_forward(log, &min_key, path, trans->transid);
5935 if (ret < 0) {
5936 goto next_dir_inode;
5937 } else if (ret > 0) {
5938 ret = 0;
5939 goto next_dir_inode;
5940 }
5941
5942process_leaf:
5943 leaf = path->nodes[0];
5944 nritems = btrfs_header_nritems(leaf);
5945 for (i = path->slots[0]; i < nritems; i++) {
5946 struct btrfs_dir_item *di;
5947 struct btrfs_key di_key;
5948 struct inode *di_inode;
5949 struct btrfs_dir_list *new_dir_elem;
5950 int log_mode = LOG_INODE_EXISTS;
5951 int type;
5952
5953 btrfs_item_key_to_cpu(leaf, &min_key, i);
5954 if (min_key.objectid != dir_elem->ino ||
Filipe Manana339d0352021-10-25 17:31:53 +01005955 min_key.type != BTRFS_DIR_INDEX_KEY)
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005956 goto next_dir_inode;
5957
5958 di = btrfs_item_ptr(leaf, i, struct btrfs_dir_item);
5959 type = btrfs_dir_type(leaf, di);
5960 if (btrfs_dir_transid(leaf, di) < trans->transid &&
5961 type != BTRFS_FT_DIR)
5962 continue;
5963 btrfs_dir_item_key_to_cpu(leaf, di, &di_key);
5964 if (di_key.type == BTRFS_ROOT_ITEM_KEY)
5965 continue;
5966
Robbie Koec125cf2016-10-28 10:48:26 +08005967 btrfs_release_path(path);
David Sterba0202e832020-05-15 19:35:59 +02005968 di_inode = btrfs_iget(fs_info->sb, di_key.objectid, root);
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005969 if (IS_ERR(di_inode)) {
5970 ret = PTR_ERR(di_inode);
5971 goto next_dir_inode;
5972 }
5973
Filipe Manana0e44cb32021-01-27 10:34:58 +00005974 if (!need_log_inode(trans, BTRFS_I(di_inode))) {
Filipe Manana410f9542019-09-10 15:26:49 +01005975 btrfs_add_delayed_iput(di_inode);
Robbie Koec125cf2016-10-28 10:48:26 +08005976 break;
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005977 }
5978
5979 ctx->log_new_dentries = false;
Filipe Manana3f9749f2016-04-25 04:45:02 +01005980 if (type == BTRFS_FT_DIR || type == BTRFS_FT_SYMLINK)
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005981 log_mode = LOG_INODE_ALL;
Filipe Manana90d04512021-09-16 11:32:10 +01005982 ret = btrfs_log_inode(trans, BTRFS_I(di_inode),
Filipe Manana48778172020-08-11 12:43:58 +01005983 log_mode, ctx);
Filipe Manana410f9542019-09-10 15:26:49 +01005984 btrfs_add_delayed_iput(di_inode);
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005985 if (ret)
5986 goto next_dir_inode;
5987 if (ctx->log_new_dentries) {
5988 new_dir_elem = kmalloc(sizeof(*new_dir_elem),
5989 GFP_NOFS);
5990 if (!new_dir_elem) {
5991 ret = -ENOMEM;
5992 goto next_dir_inode;
5993 }
5994 new_dir_elem->ino = di_key.objectid;
5995 list_add_tail(&new_dir_elem->list, &dir_list);
5996 }
5997 break;
5998 }
5999 if (i == nritems) {
6000 ret = btrfs_next_leaf(log, path);
6001 if (ret < 0) {
6002 goto next_dir_inode;
6003 } else if (ret > 0) {
6004 ret = 0;
6005 goto next_dir_inode;
6006 }
6007 goto process_leaf;
6008 }
6009 if (min_key.offset < (u64)-1) {
6010 min_key.offset++;
6011 goto again;
6012 }
6013next_dir_inode:
6014 list_del(&dir_elem->list);
6015 kfree(dir_elem);
6016 }
6017
6018 btrfs_free_path(path);
6019 return ret;
6020}
6021
Filipe Manana18aa0922015-08-05 16:49:08 +01006022static int btrfs_log_all_parents(struct btrfs_trans_handle *trans,
Nikolay Borisovd0a0b782017-02-20 13:50:30 +02006023 struct btrfs_inode *inode,
Filipe Manana18aa0922015-08-05 16:49:08 +01006024 struct btrfs_log_ctx *ctx)
6025{
David Sterba3ffbd682018-06-29 10:56:42 +02006026 struct btrfs_fs_info *fs_info = trans->fs_info;
Filipe Manana18aa0922015-08-05 16:49:08 +01006027 int ret;
6028 struct btrfs_path *path;
6029 struct btrfs_key key;
Nikolay Borisovd0a0b782017-02-20 13:50:30 +02006030 struct btrfs_root *root = inode->root;
6031 const u64 ino = btrfs_ino(inode);
Filipe Manana18aa0922015-08-05 16:49:08 +01006032
6033 path = btrfs_alloc_path();
6034 if (!path)
6035 return -ENOMEM;
6036 path->skip_locking = 1;
6037 path->search_commit_root = 1;
6038
6039 key.objectid = ino;
6040 key.type = BTRFS_INODE_REF_KEY;
6041 key.offset = 0;
6042 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
6043 if (ret < 0)
6044 goto out;
6045
6046 while (true) {
6047 struct extent_buffer *leaf = path->nodes[0];
6048 int slot = path->slots[0];
6049 u32 cur_offset = 0;
6050 u32 item_size;
6051 unsigned long ptr;
6052
6053 if (slot >= btrfs_header_nritems(leaf)) {
6054 ret = btrfs_next_leaf(root, path);
6055 if (ret < 0)
6056 goto out;
6057 else if (ret > 0)
6058 break;
6059 continue;
6060 }
6061
6062 btrfs_item_key_to_cpu(leaf, &key, slot);
6063 /* BTRFS_INODE_EXTREF_KEY is BTRFS_INODE_REF_KEY + 1 */
6064 if (key.objectid != ino || key.type > BTRFS_INODE_EXTREF_KEY)
6065 break;
6066
Josef Bacik3212fa12021-10-21 14:58:35 -04006067 item_size = btrfs_item_size(leaf, slot);
Filipe Manana18aa0922015-08-05 16:49:08 +01006068 ptr = btrfs_item_ptr_offset(leaf, slot);
6069 while (cur_offset < item_size) {
6070 struct btrfs_key inode_key;
6071 struct inode *dir_inode;
6072
6073 inode_key.type = BTRFS_INODE_ITEM_KEY;
6074 inode_key.offset = 0;
6075
6076 if (key.type == BTRFS_INODE_EXTREF_KEY) {
6077 struct btrfs_inode_extref *extref;
6078
6079 extref = (struct btrfs_inode_extref *)
6080 (ptr + cur_offset);
6081 inode_key.objectid = btrfs_inode_extref_parent(
6082 leaf, extref);
6083 cur_offset += sizeof(*extref);
6084 cur_offset += btrfs_inode_extref_name_len(leaf,
6085 extref);
6086 } else {
6087 inode_key.objectid = key.offset;
6088 cur_offset = item_size;
6089 }
6090
David Sterba0202e832020-05-15 19:35:59 +02006091 dir_inode = btrfs_iget(fs_info->sb, inode_key.objectid,
6092 root);
Filipe Manana0f375ee2018-10-09 15:05:29 +01006093 /*
6094 * If the parent inode was deleted, return an error to
6095 * fallback to a transaction commit. This is to prevent
6096 * getting an inode that was moved from one parent A to
6097 * a parent B, got its former parent A deleted and then
6098 * it got fsync'ed, from existing at both parents after
6099 * a log replay (and the old parent still existing).
6100 * Example:
6101 *
6102 * mkdir /mnt/A
6103 * mkdir /mnt/B
6104 * touch /mnt/B/bar
6105 * sync
6106 * mv /mnt/B/bar /mnt/A/bar
6107 * mv -T /mnt/A /mnt/B
6108 * fsync /mnt/B/bar
6109 * <power fail>
6110 *
6111 * If we ignore the old parent B which got deleted,
6112 * after a log replay we would have file bar linked
6113 * at both parents and the old parent B would still
6114 * exist.
6115 */
6116 if (IS_ERR(dir_inode)) {
6117 ret = PTR_ERR(dir_inode);
6118 goto out;
6119 }
Filipe Manana18aa0922015-08-05 16:49:08 +01006120
Filipe Manana3e6a86a2021-01-27 10:34:57 +00006121 if (!need_log_inode(trans, BTRFS_I(dir_inode))) {
6122 btrfs_add_delayed_iput(dir_inode);
6123 continue;
6124 }
6125
Filipe Manana289cffc2021-08-31 15:30:32 +01006126 ctx->log_new_dentries = false;
Filipe Manana90d04512021-09-16 11:32:10 +01006127 ret = btrfs_log_inode(trans, BTRFS_I(dir_inode),
Filipe Manana48778172020-08-11 12:43:58 +01006128 LOG_INODE_ALL, ctx);
Filipe Manana289cffc2021-08-31 15:30:32 +01006129 if (!ret && ctx->log_new_dentries)
Filipe Manana657ed1a2016-04-06 17:11:56 +01006130 ret = log_new_dir_dentries(trans, root,
David Sterbaf85b7372017-01-20 14:54:07 +01006131 BTRFS_I(dir_inode), ctx);
Filipe Manana410f9542019-09-10 15:26:49 +01006132 btrfs_add_delayed_iput(dir_inode);
Filipe Manana18aa0922015-08-05 16:49:08 +01006133 if (ret)
6134 goto out;
6135 }
6136 path->slots[0]++;
6137 }
6138 ret = 0;
6139out:
6140 btrfs_free_path(path);
6141 return ret;
6142}
6143
Filipe Mananab8aa3302019-04-17 11:31:06 +01006144static int log_new_ancestors(struct btrfs_trans_handle *trans,
6145 struct btrfs_root *root,
6146 struct btrfs_path *path,
6147 struct btrfs_log_ctx *ctx)
6148{
6149 struct btrfs_key found_key;
6150
6151 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
6152
6153 while (true) {
6154 struct btrfs_fs_info *fs_info = root->fs_info;
Filipe Mananab8aa3302019-04-17 11:31:06 +01006155 struct extent_buffer *leaf = path->nodes[0];
6156 int slot = path->slots[0];
6157 struct btrfs_key search_key;
6158 struct inode *inode;
David Sterba0202e832020-05-15 19:35:59 +02006159 u64 ino;
Filipe Mananab8aa3302019-04-17 11:31:06 +01006160 int ret = 0;
6161
6162 btrfs_release_path(path);
6163
David Sterba0202e832020-05-15 19:35:59 +02006164 ino = found_key.offset;
6165
Filipe Mananab8aa3302019-04-17 11:31:06 +01006166 search_key.objectid = found_key.offset;
6167 search_key.type = BTRFS_INODE_ITEM_KEY;
6168 search_key.offset = 0;
David Sterba0202e832020-05-15 19:35:59 +02006169 inode = btrfs_iget(fs_info->sb, ino, root);
Filipe Mananab8aa3302019-04-17 11:31:06 +01006170 if (IS_ERR(inode))
6171 return PTR_ERR(inode);
6172
Filipe Mananaab123132021-01-27 10:34:56 +00006173 if (BTRFS_I(inode)->generation >= trans->transid &&
6174 need_log_inode(trans, BTRFS_I(inode)))
Filipe Manana90d04512021-09-16 11:32:10 +01006175 ret = btrfs_log_inode(trans, BTRFS_I(inode),
Filipe Manana48778172020-08-11 12:43:58 +01006176 LOG_INODE_EXISTS, ctx);
Filipe Manana410f9542019-09-10 15:26:49 +01006177 btrfs_add_delayed_iput(inode);
Filipe Mananab8aa3302019-04-17 11:31:06 +01006178 if (ret)
6179 return ret;
6180
6181 if (search_key.objectid == BTRFS_FIRST_FREE_OBJECTID)
6182 break;
6183
6184 search_key.type = BTRFS_INODE_REF_KEY;
6185 ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0);
6186 if (ret < 0)
6187 return ret;
6188
6189 leaf = path->nodes[0];
6190 slot = path->slots[0];
6191 if (slot >= btrfs_header_nritems(leaf)) {
6192 ret = btrfs_next_leaf(root, path);
6193 if (ret < 0)
6194 return ret;
6195 else if (ret > 0)
6196 return -ENOENT;
6197 leaf = path->nodes[0];
6198 slot = path->slots[0];
6199 }
6200
6201 btrfs_item_key_to_cpu(leaf, &found_key, slot);
6202 if (found_key.objectid != search_key.objectid ||
6203 found_key.type != BTRFS_INODE_REF_KEY)
6204 return -ENOENT;
6205 }
6206 return 0;
6207}
6208
6209static int log_new_ancestors_fast(struct btrfs_trans_handle *trans,
6210 struct btrfs_inode *inode,
6211 struct dentry *parent,
6212 struct btrfs_log_ctx *ctx)
6213{
6214 struct btrfs_root *root = inode->root;
Filipe Mananab8aa3302019-04-17 11:31:06 +01006215 struct dentry *old_parent = NULL;
6216 struct super_block *sb = inode->vfs_inode.i_sb;
6217 int ret = 0;
6218
6219 while (true) {
6220 if (!parent || d_really_is_negative(parent) ||
6221 sb != parent->d_sb)
6222 break;
6223
6224 inode = BTRFS_I(d_inode(parent));
6225 if (root != inode->root)
6226 break;
6227
Filipe Mananaab123132021-01-27 10:34:56 +00006228 if (inode->generation >= trans->transid &&
6229 need_log_inode(trans, inode)) {
Filipe Manana90d04512021-09-16 11:32:10 +01006230 ret = btrfs_log_inode(trans, inode,
Filipe Manana48778172020-08-11 12:43:58 +01006231 LOG_INODE_EXISTS, ctx);
Filipe Mananab8aa3302019-04-17 11:31:06 +01006232 if (ret)
6233 break;
6234 }
6235 if (IS_ROOT(parent))
6236 break;
6237
6238 parent = dget_parent(parent);
6239 dput(old_parent);
6240 old_parent = parent;
6241 }
6242 dput(old_parent);
6243
6244 return ret;
6245}
6246
6247static int log_all_new_ancestors(struct btrfs_trans_handle *trans,
6248 struct btrfs_inode *inode,
6249 struct dentry *parent,
6250 struct btrfs_log_ctx *ctx)
6251{
6252 struct btrfs_root *root = inode->root;
6253 const u64 ino = btrfs_ino(inode);
6254 struct btrfs_path *path;
6255 struct btrfs_key search_key;
6256 int ret;
6257
6258 /*
6259 * For a single hard link case, go through a fast path that does not
6260 * need to iterate the fs/subvolume tree.
6261 */
6262 if (inode->vfs_inode.i_nlink < 2)
6263 return log_new_ancestors_fast(trans, inode, parent, ctx);
6264
6265 path = btrfs_alloc_path();
6266 if (!path)
6267 return -ENOMEM;
6268
6269 search_key.objectid = ino;
6270 search_key.type = BTRFS_INODE_REF_KEY;
6271 search_key.offset = 0;
6272again:
6273 ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0);
6274 if (ret < 0)
6275 goto out;
6276 if (ret == 0)
6277 path->slots[0]++;
6278
6279 while (true) {
6280 struct extent_buffer *leaf = path->nodes[0];
6281 int slot = path->slots[0];
6282 struct btrfs_key found_key;
6283
6284 if (slot >= btrfs_header_nritems(leaf)) {
6285 ret = btrfs_next_leaf(root, path);
6286 if (ret < 0)
6287 goto out;
6288 else if (ret > 0)
6289 break;
6290 continue;
6291 }
6292
6293 btrfs_item_key_to_cpu(leaf, &found_key, slot);
6294 if (found_key.objectid != ino ||
6295 found_key.type > BTRFS_INODE_EXTREF_KEY)
6296 break;
6297
6298 /*
6299 * Don't deal with extended references because they are rare
6300 * cases and too complex to deal with (we would need to keep
6301 * track of which subitem we are processing for each item in
6302 * this loop, etc). So just return some error to fallback to
6303 * a transaction commit.
6304 */
6305 if (found_key.type == BTRFS_INODE_EXTREF_KEY) {
6306 ret = -EMLINK;
6307 goto out;
6308 }
6309
6310 /*
6311 * Logging ancestors needs to do more searches on the fs/subvol
6312 * tree, so it releases the path as needed to avoid deadlocks.
6313 * Keep track of the last inode ref key and resume from that key
6314 * after logging all new ancestors for the current hard link.
6315 */
6316 memcpy(&search_key, &found_key, sizeof(search_key));
6317
6318 ret = log_new_ancestors(trans, root, path, ctx);
6319 if (ret)
6320 goto out;
6321 btrfs_release_path(path);
6322 goto again;
6323 }
6324 ret = 0;
6325out:
6326 btrfs_free_path(path);
6327 return ret;
6328}
6329
Chris Masone02119d2008-09-05 16:13:11 -04006330/*
6331 * helper function around btrfs_log_inode to make sure newly created
6332 * parent directories also end up in the log. A minimal inode and backref
6333 * only logging is done of any parent directories that are older than
6334 * the last committed transaction
6335 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00006336static int btrfs_log_inode_parent(struct btrfs_trans_handle *trans,
Nikolay Borisov19df27a2017-02-20 13:51:01 +02006337 struct btrfs_inode *inode,
Filipe Manana49dae1b2014-09-06 22:34:39 +01006338 struct dentry *parent,
Edmund Nadolski41a1ead2017-11-20 13:24:47 -07006339 int inode_only,
Miao Xie8b050d32014-02-20 18:08:58 +08006340 struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -04006341{
Nikolay Borisovf8822742018-02-27 17:37:17 +02006342 struct btrfs_root *root = inode->root;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006343 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason12fcfd22009-03-24 10:24:20 -04006344 int ret = 0;
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00006345 bool log_dentries = false;
Chris Mason12fcfd22009-03-24 10:24:20 -04006346
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006347 if (btrfs_test_opt(fs_info, NOTREELOG)) {
Sage Weil3a5e1402009-04-02 16:49:40 -04006348 ret = 1;
6349 goto end_no_trans;
6350 }
6351
Nikolay Borisovf8822742018-02-27 17:37:17 +02006352 if (btrfs_root_refs(&root->root_item) == 0) {
Yan, Zheng76dda932009-09-21 16:00:26 -04006353 ret = 1;
6354 goto end_no_trans;
6355 }
6356
Filipe Mananaf2d72f42018-10-08 11:12:55 +01006357 /*
6358 * Skip already logged inodes or inodes corresponding to tmpfiles
6359 * (since logging them is pointless, a link count of 0 means they
6360 * will never be accessible).
6361 */
Filipe Manana626e9f42021-04-27 11:27:20 +01006362 if ((btrfs_inode_in_log(inode, trans->transid) &&
6363 list_empty(&ctx->ordered_extents)) ||
Filipe Mananaf2d72f42018-10-08 11:12:55 +01006364 inode->vfs_inode.i_nlink == 0) {
Chris Mason257c62e2009-10-13 13:21:08 -04006365 ret = BTRFS_NO_LOG_SYNC;
6366 goto end_no_trans;
6367 }
6368
Miao Xie8b050d32014-02-20 18:08:58 +08006369 ret = start_log_trans(trans, root, ctx);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04006370 if (ret)
Miao Xiee87ac132014-02-20 18:08:53 +08006371 goto end_no_trans;
Chris Mason12fcfd22009-03-24 10:24:20 -04006372
Filipe Manana90d04512021-09-16 11:32:10 +01006373 ret = btrfs_log_inode(trans, inode, inode_only, ctx);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04006374 if (ret)
6375 goto end_trans;
Chris Mason12fcfd22009-03-24 10:24:20 -04006376
Chris Masonaf4176b2009-03-24 10:24:31 -04006377 /*
6378 * for regular files, if its inode is already on disk, we don't
6379 * have to worry about the parents at all. This is because
6380 * we can use the last_unlink_trans field to record renames
6381 * and other fun in this file.
6382 */
Nikolay Borisov19df27a2017-02-20 13:51:01 +02006383 if (S_ISREG(inode->vfs_inode.i_mode) &&
Filipe Manana47d3db42020-11-25 12:19:26 +00006384 inode->generation < trans->transid &&
6385 inode->last_unlink_trans < trans->transid) {
Yan, Zheng4a500fd2010-05-16 10:49:59 -04006386 ret = 0;
6387 goto end_trans;
6388 }
Chris Masonaf4176b2009-03-24 10:24:31 -04006389
Filipe Manana289cffc2021-08-31 15:30:32 +01006390 if (S_ISDIR(inode->vfs_inode.i_mode) && ctx->log_new_dentries)
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00006391 log_dentries = true;
6392
Filipe Manana18aa0922015-08-05 16:49:08 +01006393 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04006394 * On unlink we must make sure all our current and old parent directory
Filipe Manana18aa0922015-08-05 16:49:08 +01006395 * inodes are fully logged. This is to prevent leaving dangling
6396 * directory index entries in directories that were our parents but are
6397 * not anymore. Not doing this results in old parent directory being
6398 * impossible to delete after log replay (rmdir will always fail with
6399 * error -ENOTEMPTY).
6400 *
6401 * Example 1:
6402 *
6403 * mkdir testdir
6404 * touch testdir/foo
6405 * ln testdir/foo testdir/bar
6406 * sync
6407 * unlink testdir/bar
6408 * xfs_io -c fsync testdir/foo
6409 * <power failure>
6410 * mount fs, triggers log replay
6411 *
6412 * If we don't log the parent directory (testdir), after log replay the
6413 * directory still has an entry pointing to the file inode using the bar
6414 * name, but a matching BTRFS_INODE_[REF|EXTREF]_KEY does not exist and
6415 * the file inode has a link count of 1.
6416 *
6417 * Example 2:
6418 *
6419 * mkdir testdir
6420 * touch foo
6421 * ln foo testdir/foo2
6422 * ln foo testdir/foo3
6423 * sync
6424 * unlink testdir/foo3
6425 * xfs_io -c fsync foo
6426 * <power failure>
6427 * mount fs, triggers log replay
6428 *
6429 * Similar as the first example, after log replay the parent directory
6430 * testdir still has an entry pointing to the inode file with name foo3
6431 * but the file inode does not have a matching BTRFS_INODE_REF_KEY item
6432 * and has a link count of 2.
6433 */
Filipe Manana47d3db42020-11-25 12:19:26 +00006434 if (inode->last_unlink_trans >= trans->transid) {
Filipe Mananab8aa3302019-04-17 11:31:06 +01006435 ret = btrfs_log_all_parents(trans, inode, ctx);
Filipe Manana18aa0922015-08-05 16:49:08 +01006436 if (ret)
6437 goto end_trans;
6438 }
6439
Filipe Mananab8aa3302019-04-17 11:31:06 +01006440 ret = log_all_new_ancestors(trans, inode, parent, ctx);
6441 if (ret)
Filipe Manana41bd6062018-11-28 14:54:28 +00006442 goto end_trans;
Filipe Manana41bd6062018-11-28 14:54:28 +00006443
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00006444 if (log_dentries)
Filipe Mananab8aa3302019-04-17 11:31:06 +01006445 ret = log_new_dir_dentries(trans, root, inode, ctx);
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00006446 else
6447 ret = 0;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04006448end_trans:
6449 if (ret < 0) {
David Sterba90787762019-03-20 13:28:05 +01006450 btrfs_set_log_full_commit(trans);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04006451 ret = 1;
6452 }
Miao Xie8b050d32014-02-20 18:08:58 +08006453
6454 if (ret)
6455 btrfs_remove_log_ctx(root, ctx);
Chris Mason12fcfd22009-03-24 10:24:20 -04006456 btrfs_end_log_trans(root);
6457end_no_trans:
6458 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04006459}
6460
6461/*
6462 * it is not safe to log dentry if the chunk root has added new
6463 * chunks. This returns 0 if the dentry was logged, and 1 otherwise.
6464 * If this returns 1, you must commit the transaction to safely get your
6465 * data on disk.
6466 */
6467int btrfs_log_dentry_safe(struct btrfs_trans_handle *trans,
Nikolay Borisove5b84f7a2018-02-27 17:37:18 +02006468 struct dentry *dentry,
Miao Xie8b050d32014-02-20 18:08:58 +08006469 struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -04006470{
Josef Bacik6a912212010-11-20 09:48:00 +00006471 struct dentry *parent = dget_parent(dentry);
6472 int ret;
6473
Nikolay Borisovf8822742018-02-27 17:37:17 +02006474 ret = btrfs_log_inode_parent(trans, BTRFS_I(d_inode(dentry)), parent,
Filipe Manana48778172020-08-11 12:43:58 +01006475 LOG_INODE_ALL, ctx);
Josef Bacik6a912212010-11-20 09:48:00 +00006476 dput(parent);
6477
6478 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04006479}
6480
6481/*
6482 * should be called during mount to recover any replay any log trees
6483 * from the FS
6484 */
6485int btrfs_recover_log_trees(struct btrfs_root *log_root_tree)
6486{
6487 int ret;
6488 struct btrfs_path *path;
6489 struct btrfs_trans_handle *trans;
6490 struct btrfs_key key;
6491 struct btrfs_key found_key;
Chris Masone02119d2008-09-05 16:13:11 -04006492 struct btrfs_root *log;
6493 struct btrfs_fs_info *fs_info = log_root_tree->fs_info;
6494 struct walk_control wc = {
6495 .process_func = process_one_buffer,
David Sterba430a6622019-08-01 14:50:35 +02006496 .stage = LOG_WALK_PIN_ONLY,
Chris Masone02119d2008-09-05 16:13:11 -04006497 };
6498
Chris Masone02119d2008-09-05 16:13:11 -04006499 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00006500 if (!path)
6501 return -ENOMEM;
6502
Josef Bacikafcdd122016-09-02 15:40:02 -04006503 set_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags);
Chris Masone02119d2008-09-05 16:13:11 -04006504
Yan, Zheng4a500fd2010-05-16 10:49:59 -04006505 trans = btrfs_start_transaction(fs_info->tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006506 if (IS_ERR(trans)) {
6507 ret = PTR_ERR(trans);
6508 goto error;
6509 }
Chris Masone02119d2008-09-05 16:13:11 -04006510
6511 wc.trans = trans;
6512 wc.pin = 1;
6513
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00006514 ret = walk_log_tree(trans, log_root_tree, &wc);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006515 if (ret) {
Josef Bacikba51e2a2021-10-05 16:35:23 -04006516 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006517 goto error;
6518 }
Chris Masone02119d2008-09-05 16:13:11 -04006519
6520again:
6521 key.objectid = BTRFS_TREE_LOG_OBJECTID;
6522 key.offset = (u64)-1;
David Sterba962a2982014-06-04 18:41:45 +02006523 key.type = BTRFS_ROOT_ITEM_KEY;
Chris Masone02119d2008-09-05 16:13:11 -04006524
Chris Masond3977122009-01-05 21:25:51 -05006525 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04006526 ret = btrfs_search_slot(NULL, log_root_tree, &key, path, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006527
6528 if (ret < 0) {
Josef Bacikba51e2a2021-10-05 16:35:23 -04006529 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006530 goto error;
6531 }
Chris Masone02119d2008-09-05 16:13:11 -04006532 if (ret > 0) {
6533 if (path->slots[0] == 0)
6534 break;
6535 path->slots[0]--;
6536 }
6537 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
6538 path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02006539 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04006540 if (found_key.objectid != BTRFS_TREE_LOG_OBJECTID)
6541 break;
6542
Josef Bacik62a2c732020-01-24 09:32:21 -05006543 log = btrfs_read_tree_root(log_root_tree, &found_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006544 if (IS_ERR(log)) {
6545 ret = PTR_ERR(log);
Josef Bacikba51e2a2021-10-05 16:35:23 -04006546 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006547 goto error;
6548 }
Chris Masone02119d2008-09-05 16:13:11 -04006549
David Sterba56e93572020-05-15 19:35:55 +02006550 wc.replay_dest = btrfs_get_fs_root(fs_info, found_key.offset,
6551 true);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006552 if (IS_ERR(wc.replay_dest)) {
6553 ret = PTR_ERR(wc.replay_dest);
Josef Bacik9bc574d2019-12-06 09:37:17 -05006554
6555 /*
6556 * We didn't find the subvol, likely because it was
6557 * deleted. This is ok, simply skip this log and go to
6558 * the next one.
6559 *
6560 * We need to exclude the root because we can't have
6561 * other log replays overwriting this log as we'll read
6562 * it back in a few more times. This will keep our
6563 * block from being modified, and we'll just bail for
6564 * each subsequent pass.
6565 */
6566 if (ret == -ENOENT)
Nikolay Borisov9fce5702020-01-20 16:09:13 +02006567 ret = btrfs_pin_extent_for_log_replay(trans,
Josef Bacik9bc574d2019-12-06 09:37:17 -05006568 log->node->start,
6569 log->node->len);
Josef Bacik00246522020-01-24 09:33:01 -05006570 btrfs_put_root(log);
Josef Bacik9bc574d2019-12-06 09:37:17 -05006571
6572 if (!ret)
6573 goto next;
Josef Bacikba51e2a2021-10-05 16:35:23 -04006574 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006575 goto error;
6576 }
Chris Masone02119d2008-09-05 16:13:11 -04006577
Yan Zheng07d400a2009-01-06 11:42:00 -05006578 wc.replay_dest->log_root = log;
Josef Bacik2002ae12021-03-12 15:25:05 -05006579 ret = btrfs_record_root_in_trans(trans, wc.replay_dest);
6580 if (ret)
6581 /* The loop needs to continue due to the root refs */
Josef Bacikba51e2a2021-10-05 16:35:23 -04006582 btrfs_abort_transaction(trans, ret);
Josef Bacik2002ae12021-03-12 15:25:05 -05006583 else
6584 ret = walk_log_tree(trans, log, &wc);
Chris Masone02119d2008-09-05 16:13:11 -04006585
Josef Bacikb50c6e22013-04-25 15:55:30 -04006586 if (!ret && wc.stage == LOG_WALK_REPLAY_ALL) {
Chris Masone02119d2008-09-05 16:13:11 -04006587 ret = fixup_inode_link_counts(trans, wc.replay_dest,
6588 path);
Josef Bacikba51e2a2021-10-05 16:35:23 -04006589 if (ret)
6590 btrfs_abort_transaction(trans, ret);
Chris Masone02119d2008-09-05 16:13:11 -04006591 }
Chris Masone02119d2008-09-05 16:13:11 -04006592
Liu Bo900c9982018-01-25 11:02:56 -07006593 if (!ret && wc.stage == LOG_WALK_REPLAY_ALL) {
6594 struct btrfs_root *root = wc.replay_dest;
6595
6596 btrfs_release_path(path);
6597
6598 /*
6599 * We have just replayed everything, and the highest
6600 * objectid of fs roots probably has changed in case
6601 * some inode_item's got replayed.
6602 *
6603 * root->objectid_mutex is not acquired as log replay
6604 * could only happen during mount.
6605 */
Nikolay Borisov453e4872020-12-07 17:32:32 +02006606 ret = btrfs_init_root_free_objectid(root);
Josef Bacikba51e2a2021-10-05 16:35:23 -04006607 if (ret)
6608 btrfs_abort_transaction(trans, ret);
Liu Bo900c9982018-01-25 11:02:56 -07006609 }
6610
Yan Zheng07d400a2009-01-06 11:42:00 -05006611 wc.replay_dest->log_root = NULL;
Josef Bacik00246522020-01-24 09:33:01 -05006612 btrfs_put_root(wc.replay_dest);
Josef Bacik00246522020-01-24 09:33:01 -05006613 btrfs_put_root(log);
Chris Masone02119d2008-09-05 16:13:11 -04006614
Josef Bacikb50c6e22013-04-25 15:55:30 -04006615 if (ret)
6616 goto error;
Josef Bacik9bc574d2019-12-06 09:37:17 -05006617next:
Chris Masone02119d2008-09-05 16:13:11 -04006618 if (found_key.offset == 0)
6619 break;
Josef Bacik9bc574d2019-12-06 09:37:17 -05006620 key.offset = found_key.offset - 1;
Chris Masone02119d2008-09-05 16:13:11 -04006621 }
David Sterbab3b4aa72011-04-21 01:20:15 +02006622 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04006623
6624 /* step one is to pin it all, step two is to replay just inodes */
6625 if (wc.pin) {
6626 wc.pin = 0;
6627 wc.process_func = replay_one_buffer;
6628 wc.stage = LOG_WALK_REPLAY_INODES;
6629 goto again;
6630 }
6631 /* step three is to replay everything */
6632 if (wc.stage < LOG_WALK_REPLAY_ALL) {
6633 wc.stage++;
6634 goto again;
6635 }
6636
6637 btrfs_free_path(path);
6638
Josef Bacikabefa552013-04-24 16:40:05 -04006639 /* step 4: commit the transaction, which also unpins the blocks */
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006640 ret = btrfs_commit_transaction(trans);
Josef Bacikabefa552013-04-24 16:40:05 -04006641 if (ret)
6642 return ret;
6643
Chris Masone02119d2008-09-05 16:13:11 -04006644 log_root_tree->log_root = NULL;
Josef Bacikafcdd122016-09-02 15:40:02 -04006645 clear_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags);
Josef Bacik00246522020-01-24 09:33:01 -05006646 btrfs_put_root(log_root_tree);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006647
Josef Bacikabefa552013-04-24 16:40:05 -04006648 return 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006649error:
Josef Bacikb50c6e22013-04-25 15:55:30 -04006650 if (wc.trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006651 btrfs_end_transaction(wc.trans);
David Sterba1aeb6b52020-07-07 18:38:05 +02006652 clear_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006653 btrfs_free_path(path);
6654 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04006655}
Chris Mason12fcfd22009-03-24 10:24:20 -04006656
6657/*
6658 * there are some corner cases where we want to force a full
6659 * commit instead of allowing a directory to be logged.
6660 *
6661 * They revolve around files there were unlinked from the directory, and
6662 * this function updates the parent directory so that a full commit is
6663 * properly done if it is fsync'd later after the unlinks are done.
Filipe Manana2be63d52016-02-12 11:34:23 +00006664 *
6665 * Must be called before the unlink operations (updates to the subvolume tree,
6666 * inodes, etc) are done.
Chris Mason12fcfd22009-03-24 10:24:20 -04006667 */
6668void btrfs_record_unlink_dir(struct btrfs_trans_handle *trans,
Nikolay Borisov4176bdb2017-01-18 00:31:28 +02006669 struct btrfs_inode *dir, struct btrfs_inode *inode,
Chris Mason12fcfd22009-03-24 10:24:20 -04006670 int for_rename)
6671{
6672 /*
Chris Masonaf4176b2009-03-24 10:24:31 -04006673 * when we're logging a file, if it hasn't been renamed
6674 * or unlinked, and its inode is fully committed on disk,
6675 * we don't have to worry about walking up the directory chain
6676 * to log its parents.
6677 *
6678 * So, we use the last_unlink_trans field to put this transid
6679 * into the file. When the file is logged we check it and
6680 * don't log the parents if the file is fully on disk.
6681 */
Nikolay Borisov4176bdb2017-01-18 00:31:28 +02006682 mutex_lock(&inode->log_mutex);
6683 inode->last_unlink_trans = trans->transid;
6684 mutex_unlock(&inode->log_mutex);
Chris Masonaf4176b2009-03-24 10:24:31 -04006685
6686 /*
Chris Mason12fcfd22009-03-24 10:24:20 -04006687 * if this directory was already logged any new
6688 * names for this file/dir will get recorded
6689 */
Nikolay Borisov4176bdb2017-01-18 00:31:28 +02006690 if (dir->logged_trans == trans->transid)
Chris Mason12fcfd22009-03-24 10:24:20 -04006691 return;
6692
6693 /*
6694 * if the inode we're about to unlink was logged,
6695 * the log will be properly updated for any new names
6696 */
Nikolay Borisov4176bdb2017-01-18 00:31:28 +02006697 if (inode->logged_trans == trans->transid)
Chris Mason12fcfd22009-03-24 10:24:20 -04006698 return;
6699
6700 /*
6701 * when renaming files across directories, if the directory
6702 * there we're unlinking from gets fsync'd later on, there's
6703 * no way to find the destination directory later and fsync it
6704 * properly. So, we have to be conservative and force commits
6705 * so the new name gets discovered.
6706 */
6707 if (for_rename)
6708 goto record;
6709
6710 /* we can safely do the unlink without any special recording */
6711 return;
6712
6713record:
Nikolay Borisov4176bdb2017-01-18 00:31:28 +02006714 mutex_lock(&dir->log_mutex);
6715 dir->last_unlink_trans = trans->transid;
6716 mutex_unlock(&dir->log_mutex);
Chris Mason12fcfd22009-03-24 10:24:20 -04006717}
6718
6719/*
Filipe Manana1ec9a1a2016-02-10 10:42:25 +00006720 * Make sure that if someone attempts to fsync the parent directory of a deleted
6721 * snapshot, it ends up triggering a transaction commit. This is to guarantee
6722 * that after replaying the log tree of the parent directory's root we will not
6723 * see the snapshot anymore and at log replay time we will not see any log tree
6724 * corresponding to the deleted snapshot's root, which could lead to replaying
6725 * it after replaying the log tree of the parent directory (which would replay
6726 * the snapshot delete operation).
Filipe Manana2be63d52016-02-12 11:34:23 +00006727 *
6728 * Must be called before the actual snapshot destroy operation (updates to the
6729 * parent root and tree of tree roots trees, etc) are done.
Filipe Manana1ec9a1a2016-02-10 10:42:25 +00006730 */
6731void btrfs_record_snapshot_destroy(struct btrfs_trans_handle *trans,
Nikolay Borisov43663552017-01-18 00:31:29 +02006732 struct btrfs_inode *dir)
Filipe Manana1ec9a1a2016-02-10 10:42:25 +00006733{
Nikolay Borisov43663552017-01-18 00:31:29 +02006734 mutex_lock(&dir->log_mutex);
6735 dir->last_unlink_trans = trans->transid;
6736 mutex_unlock(&dir->log_mutex);
Filipe Manana1ec9a1a2016-02-10 10:42:25 +00006737}
6738
6739/*
Chris Mason12fcfd22009-03-24 10:24:20 -04006740 * Call this after adding a new name for a file and it will properly
6741 * update the log to reflect the new name.
Chris Mason12fcfd22009-03-24 10:24:20 -04006742 */
Filipe Manana75b463d2020-08-11 12:43:48 +01006743void btrfs_log_new_name(struct btrfs_trans_handle *trans,
Nikolay Borisov9ca5fbfb2017-01-18 00:31:31 +02006744 struct btrfs_inode *inode, struct btrfs_inode *old_dir,
Filipe Manana75b463d2020-08-11 12:43:48 +01006745 struct dentry *parent)
Chris Mason12fcfd22009-03-24 10:24:20 -04006746{
Filipe Manana75b463d2020-08-11 12:43:48 +01006747 struct btrfs_log_ctx ctx;
Chris Mason12fcfd22009-03-24 10:24:20 -04006748
6749 /*
Chris Masonaf4176b2009-03-24 10:24:31 -04006750 * this will force the logging code to walk the dentry chain
6751 * up for the file
6752 */
Filipe Manana9a6509c2018-02-28 15:55:40 +00006753 if (!S_ISDIR(inode->vfs_inode.i_mode))
Nikolay Borisov9ca5fbfb2017-01-18 00:31:31 +02006754 inode->last_unlink_trans = trans->transid;
Chris Masonaf4176b2009-03-24 10:24:31 -04006755
6756 /*
Chris Mason12fcfd22009-03-24 10:24:20 -04006757 * if this inode hasn't been logged and directory we're renaming it
6758 * from hasn't been logged, we don't need to log it
6759 */
Filipe Mananaecc64fa2021-07-27 11:24:43 +01006760 if (!inode_logged(trans, inode) &&
6761 (!old_dir || !inode_logged(trans, old_dir)))
Filipe Manana75b463d2020-08-11 12:43:48 +01006762 return;
Chris Mason12fcfd22009-03-24 10:24:20 -04006763
Filipe Manana54a40fc2021-05-12 16:27:16 +01006764 /*
6765 * If we are doing a rename (old_dir is not NULL) from a directory that
6766 * was previously logged, make sure the next log attempt on the directory
6767 * is not skipped and logs the inode again. This is because the log may
6768 * not currently be authoritative for a range including the old
Filipe Manana339d0352021-10-25 17:31:53 +01006769 * BTRFS_DIR_INDEX_KEY key, so we want to make sure after a log replay we
6770 * do not end up with both the new and old dentries around (in case the
6771 * inode is a directory we would have a directory with two hard links and
6772 * 2 inode references for different parents). The next log attempt of
6773 * old_dir will happen at btrfs_log_all_parents(), called through
6774 * btrfs_log_inode_parent() below, because we have previously set
6775 * inode->last_unlink_trans to the current transaction ID, either here or
6776 * at btrfs_record_unlink_dir() in case the inode is a directory.
Filipe Manana54a40fc2021-05-12 16:27:16 +01006777 */
6778 if (old_dir)
6779 old_dir->logged_trans = 0;
6780
Filipe Manana75b463d2020-08-11 12:43:48 +01006781 btrfs_init_log_ctx(&ctx, &inode->vfs_inode);
6782 ctx.logging_new_name = true;
6783 /*
6784 * We don't care about the return value. If we fail to log the new name
6785 * then we know the next attempt to sync the log will fallback to a full
6786 * transaction commit (due to a call to btrfs_set_log_full_commit()), so
6787 * we don't need to worry about getting a log committed that has an
6788 * inconsistent state after a rename operation.
6789 */
Filipe Manana48778172020-08-11 12:43:58 +01006790 btrfs_log_inode_parent(trans, inode, parent, LOG_INODE_EXISTS, &ctx);
Chris Mason12fcfd22009-03-24 10:24:20 -04006791}
6792