blob: 53647fa0387731bf1fbc25d59237cb77d14fca2d [file] [log] [blame]
Harshad Shirwadkar6866d7b2020-10-15 13:37:55 -07001// SPDX-License-Identifier: GPL-2.0
2
3/*
4 * fs/ext4/fast_commit.c
5 *
6 * Written by Harshad Shirwadkar <harshadshirwadkar@gmail.com>
7 *
8 * Ext4 fast commits routines.
9 */
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -070010#include "ext4.h"
Harshad Shirwadkar6866d7b2020-10-15 13:37:55 -070011#include "ext4_jbd2.h"
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -070012#include "ext4_extents.h"
13#include "mballoc.h"
14
15/*
16 * Ext4 Fast Commits
17 * -----------------
18 *
19 * Ext4 fast commits implement fine grained journalling for Ext4.
20 *
21 * Fast commits are organized as a log of tag-length-value (TLV) structs. (See
22 * struct ext4_fc_tl). Each TLV contains some delta that is replayed TLV by
23 * TLV during the recovery phase. For the scenarios for which we currently
24 * don't have replay code, fast commit falls back to full commits.
25 * Fast commits record delta in one of the following three categories.
26 *
27 * (A) Directory entry updates:
28 *
29 * - EXT4_FC_TAG_UNLINK - records directory entry unlink
30 * - EXT4_FC_TAG_LINK - records directory entry link
31 * - EXT4_FC_TAG_CREAT - records inode and directory entry creation
32 *
33 * (B) File specific data range updates:
34 *
35 * - EXT4_FC_TAG_ADD_RANGE - records addition of new blocks to an inode
36 * - EXT4_FC_TAG_DEL_RANGE - records deletion of blocks from an inode
37 *
38 * (C) Inode metadata (mtime / ctime etc):
39 *
40 * - EXT4_FC_TAG_INODE - record the inode that should be replayed
41 * during recovery. Note that iblocks field is
42 * not replayed and instead derived during
43 * replay.
44 * Commit Operation
45 * ----------------
46 * With fast commits, we maintain all the directory entry operations in the
47 * order in which they are issued in an in-memory queue. This queue is flushed
48 * to disk during the commit operation. We also maintain a list of inodes
49 * that need to be committed during a fast commit in another in memory queue of
50 * inodes. During the commit operation, we commit in the following order:
51 *
52 * [1] Lock inodes for any further data updates by setting COMMITTING state
53 * [2] Submit data buffers of all the inodes
54 * [3] Wait for [2] to complete
55 * [4] Commit all the directory entry updates in the fast commit space
56 * [5] Commit all the changed inode structures
57 * [6] Write tail tag (this tag ensures the atomicity, please read the following
58 * section for more details).
59 * [7] Wait for [4], [5] and [6] to complete.
60 *
61 * All the inode updates must call ext4_fc_start_update() before starting an
62 * update. If such an ongoing update is present, fast commit waits for it to
63 * complete. The completion of such an update is marked by
64 * ext4_fc_stop_update().
65 *
66 * Fast Commit Ineligibility
67 * -------------------------
68 * Not all operations are supported by fast commits today (e.g extended
69 * attributes). Fast commit ineligiblity is marked by calling one of the
70 * two following functions:
71 *
72 * - ext4_fc_mark_ineligible(): This makes next fast commit operation to fall
73 * back to full commit. This is useful in case of transient errors.
74 *
75 * - ext4_fc_start_ineligible() and ext4_fc_stop_ineligible() - This makes all
76 * the fast commits happening between ext4_fc_start_ineligible() and
77 * ext4_fc_stop_ineligible() and one fast commit after the call to
78 * ext4_fc_stop_ineligible() to fall back to full commits. It is important to
79 * make one more fast commit to fall back to full commit after stop call so
80 * that it guaranteed that the fast commit ineligible operation contained
81 * within ext4_fc_start_ineligible() and ext4_fc_stop_ineligible() is
82 * followed by at least 1 full commit.
83 *
84 * Atomicity of commits
85 * --------------------
Harshad Shirwadkara7407622020-11-05 19:59:03 -080086 * In order to guarantee atomicity during the commit operation, fast commit
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -070087 * uses "EXT4_FC_TAG_TAIL" tag that marks a fast commit as complete. Tail
88 * tag contains CRC of the contents and TID of the transaction after which
89 * this fast commit should be applied. Recovery code replays fast commit
90 * logs only if there's at least 1 valid tail present. For every fast commit
91 * operation, there is 1 tail. This means, we may end up with multiple tails
92 * in the fast commit space. Here's an example:
93 *
94 * - Create a new file A and remove existing file B
95 * - fsync()
96 * - Append contents to file A
97 * - Truncate file A
98 * - fsync()
99 *
100 * The fast commit space at the end of above operations would look like this:
101 * [HEAD] [CREAT A] [UNLINK B] [TAIL] [ADD_RANGE A] [DEL_RANGE A] [TAIL]
102 * |<--- Fast Commit 1 --->|<--- Fast Commit 2 ---->|
103 *
104 * Replay code should thus check for all the valid tails in the FC area.
105 *
106 * TODOs
107 * -----
108 * 1) Make fast commit atomic updates more fine grained. Today, a fast commit
109 * eligible update must be protected within ext4_fc_start_update() and
110 * ext4_fc_stop_update(). These routines are called at much higher
111 * routines. This can be made more fine grained by combining with
112 * ext4_journal_start().
113 *
114 * 2) Same above for ext4_fc_start_ineligible() and ext4_fc_stop_ineligible()
115 *
116 * 3) Handle more ineligible cases.
117 */
118
119#include <trace/events/ext4.h>
120static struct kmem_cache *ext4_fc_dentry_cachep;
121
122static void ext4_end_buffer_io_sync(struct buffer_head *bh, int uptodate)
123{
124 BUFFER_TRACE(bh, "");
125 if (uptodate) {
126 ext4_debug("%s: Block %lld up-to-date",
127 __func__, bh->b_blocknr);
128 set_buffer_uptodate(bh);
129 } else {
130 ext4_debug("%s: Block %lld not up-to-date",
131 __func__, bh->b_blocknr);
132 clear_buffer_uptodate(bh);
133 }
134
135 unlock_buffer(bh);
136}
137
138static inline void ext4_fc_reset_inode(struct inode *inode)
139{
140 struct ext4_inode_info *ei = EXT4_I(inode);
141
142 ei->i_fc_lblk_start = 0;
143 ei->i_fc_lblk_len = 0;
144}
145
146void ext4_fc_init_inode(struct inode *inode)
147{
148 struct ext4_inode_info *ei = EXT4_I(inode);
149
150 ext4_fc_reset_inode(inode);
151 ext4_clear_inode_state(inode, EXT4_STATE_FC_COMMITTING);
152 INIT_LIST_HEAD(&ei->i_fc_list);
153 init_waitqueue_head(&ei->i_fc_wait);
154 atomic_set(&ei->i_fc_updates, 0);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700155}
156
Harshad Shirwadkarf6634e22020-11-05 19:59:02 -0800157/* This function must be called with sbi->s_fc_lock held. */
158static void ext4_fc_wait_committing_inode(struct inode *inode)
Theodore Ts'ofa329e2732020-11-06 23:59:42 -0500159__releases(&EXT4_SB(inode->i_sb)->s_fc_lock)
Harshad Shirwadkarf6634e22020-11-05 19:59:02 -0800160{
161 wait_queue_head_t *wq;
162 struct ext4_inode_info *ei = EXT4_I(inode);
163
164#if (BITS_PER_LONG < 64)
165 DEFINE_WAIT_BIT(wait, &ei->i_state_flags,
166 EXT4_STATE_FC_COMMITTING);
167 wq = bit_waitqueue(&ei->i_state_flags,
168 EXT4_STATE_FC_COMMITTING);
169#else
170 DEFINE_WAIT_BIT(wait, &ei->i_flags,
171 EXT4_STATE_FC_COMMITTING);
172 wq = bit_waitqueue(&ei->i_flags,
173 EXT4_STATE_FC_COMMITTING);
174#endif
175 lockdep_assert_held(&EXT4_SB(inode->i_sb)->s_fc_lock);
176 prepare_to_wait(wq, &wait.wq_entry, TASK_UNINTERRUPTIBLE);
177 spin_unlock(&EXT4_SB(inode->i_sb)->s_fc_lock);
178 schedule();
179 finish_wait(wq, &wait.wq_entry);
180}
181
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700182/*
183 * Inform Ext4's fast about start of an inode update
184 *
185 * This function is called by the high level call VFS callbacks before
186 * performing any inode update. This function blocks if there's an ongoing
187 * fast commit on the inode in question.
188 */
189void ext4_fc_start_update(struct inode *inode)
190{
191 struct ext4_inode_info *ei = EXT4_I(inode);
192
Harshad Shirwadkar8016e292020-10-15 13:37:59 -0700193 if (!test_opt2(inode->i_sb, JOURNAL_FAST_COMMIT) ||
194 (EXT4_SB(inode->i_sb)->s_mount_state & EXT4_FC_REPLAY))
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700195 return;
196
197restart:
198 spin_lock(&EXT4_SB(inode->i_sb)->s_fc_lock);
199 if (list_empty(&ei->i_fc_list))
200 goto out;
201
202 if (ext4_test_inode_state(inode, EXT4_STATE_FC_COMMITTING)) {
Harshad Shirwadkarf6634e22020-11-05 19:59:02 -0800203 ext4_fc_wait_committing_inode(inode);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700204 goto restart;
205 }
206out:
207 atomic_inc(&ei->i_fc_updates);
208 spin_unlock(&EXT4_SB(inode->i_sb)->s_fc_lock);
209}
210
211/*
212 * Stop inode update and wake up waiting fast commits if any.
213 */
214void ext4_fc_stop_update(struct inode *inode)
215{
216 struct ext4_inode_info *ei = EXT4_I(inode);
217
Harshad Shirwadkar8016e292020-10-15 13:37:59 -0700218 if (!test_opt2(inode->i_sb, JOURNAL_FAST_COMMIT) ||
219 (EXT4_SB(inode->i_sb)->s_mount_state & EXT4_FC_REPLAY))
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700220 return;
221
222 if (atomic_dec_and_test(&ei->i_fc_updates))
223 wake_up_all(&ei->i_fc_wait);
224}
225
226/*
227 * Remove inode from fast commit list. If the inode is being committed
228 * we wait until inode commit is done.
229 */
230void ext4_fc_del(struct inode *inode)
231{
232 struct ext4_inode_info *ei = EXT4_I(inode);
233
Harshad Shirwadkar8016e292020-10-15 13:37:59 -0700234 if (!test_opt2(inode->i_sb, JOURNAL_FAST_COMMIT) ||
235 (EXT4_SB(inode->i_sb)->s_mount_state & EXT4_FC_REPLAY))
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700236 return;
237
238restart:
239 spin_lock(&EXT4_SB(inode->i_sb)->s_fc_lock);
240 if (list_empty(&ei->i_fc_list)) {
241 spin_unlock(&EXT4_SB(inode->i_sb)->s_fc_lock);
242 return;
243 }
244
245 if (ext4_test_inode_state(inode, EXT4_STATE_FC_COMMITTING)) {
Harshad Shirwadkarf6634e22020-11-05 19:59:02 -0800246 ext4_fc_wait_committing_inode(inode);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700247 goto restart;
248 }
Harshad Shirwadkarf6634e22020-11-05 19:59:02 -0800249 list_del_init(&ei->i_fc_list);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700250 spin_unlock(&EXT4_SB(inode->i_sb)->s_fc_lock);
251}
252
253/*
254 * Mark file system as fast commit ineligible. This means that next commit
255 * operation would result in a full jbd2 commit.
256 */
257void ext4_fc_mark_ineligible(struct super_block *sb, int reason)
258{
259 struct ext4_sb_info *sbi = EXT4_SB(sb);
260
Harshad Shirwadkar8016e292020-10-15 13:37:59 -0700261 if (!test_opt2(sb, JOURNAL_FAST_COMMIT) ||
262 (EXT4_SB(sb)->s_mount_state & EXT4_FC_REPLAY))
263 return;
264
Harshad Shirwadkar9b5f6c92020-11-05 19:59:09 -0800265 ext4_set_mount_flag(sb, EXT4_MF_FC_INELIGIBLE);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700266 WARN_ON(reason >= EXT4_FC_REASON_MAX);
267 sbi->s_fc_stats.fc_ineligible_reason_count[reason]++;
268}
269
270/*
271 * Start a fast commit ineligible update. Any commits that happen while
272 * such an operation is in progress fall back to full commits.
273 */
274void ext4_fc_start_ineligible(struct super_block *sb, int reason)
275{
276 struct ext4_sb_info *sbi = EXT4_SB(sb);
277
Harshad Shirwadkar8016e292020-10-15 13:37:59 -0700278 if (!test_opt2(sb, JOURNAL_FAST_COMMIT) ||
279 (EXT4_SB(sb)->s_mount_state & EXT4_FC_REPLAY))
280 return;
281
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700282 WARN_ON(reason >= EXT4_FC_REASON_MAX);
283 sbi->s_fc_stats.fc_ineligible_reason_count[reason]++;
284 atomic_inc(&sbi->s_fc_ineligible_updates);
285}
286
287/*
Harshad Shirwadkarababea72020-10-26 21:49:15 -0700288 * Stop a fast commit ineligible update. We set EXT4_MF_FC_INELIGIBLE flag here
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700289 * to ensure that after stopping the ineligible update, at least one full
290 * commit takes place.
291 */
292void ext4_fc_stop_ineligible(struct super_block *sb)
293{
Harshad Shirwadkar8016e292020-10-15 13:37:59 -0700294 if (!test_opt2(sb, JOURNAL_FAST_COMMIT) ||
295 (EXT4_SB(sb)->s_mount_state & EXT4_FC_REPLAY))
296 return;
297
Harshad Shirwadkar9b5f6c92020-11-05 19:59:09 -0800298 ext4_set_mount_flag(sb, EXT4_MF_FC_INELIGIBLE);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700299 atomic_dec(&EXT4_SB(sb)->s_fc_ineligible_updates);
300}
301
302static inline int ext4_fc_is_ineligible(struct super_block *sb)
303{
Harshad Shirwadkar9b5f6c92020-11-05 19:59:09 -0800304 return (ext4_test_mount_flag(sb, EXT4_MF_FC_INELIGIBLE) ||
305 atomic_read(&EXT4_SB(sb)->s_fc_ineligible_updates));
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700306}
307
308/*
309 * Generic fast commit tracking function. If this is the first time this we are
310 * called after a full commit, we initialize fast commit fields and then call
311 * __fc_track_fn() with update = 0. If we have already been called after a full
312 * commit, we pass update = 1. Based on that, the track function can determine
313 * if it needs to track a field for the first time or if it needs to just
314 * update the previously tracked value.
315 *
316 * If enqueue is set, this function enqueues the inode in fast commit list.
317 */
318static int ext4_fc_track_template(
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -0800319 handle_t *handle, struct inode *inode,
320 int (*__fc_track_fn)(struct inode *, void *, bool),
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700321 void *args, int enqueue)
322{
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700323 bool update = false;
324 struct ext4_inode_info *ei = EXT4_I(inode);
325 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -0800326 tid_t tid = 0;
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700327 int ret;
328
Harshad Shirwadkar8016e292020-10-15 13:37:59 -0700329 if (!test_opt2(inode->i_sb, JOURNAL_FAST_COMMIT) ||
330 (sbi->s_mount_state & EXT4_FC_REPLAY))
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700331 return -EOPNOTSUPP;
332
333 if (ext4_fc_is_ineligible(inode->i_sb))
334 return -EINVAL;
335
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -0800336 tid = handle->h_transaction->t_tid;
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700337 mutex_lock(&ei->i_fc_lock);
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -0800338 if (tid == ei->i_sync_tid) {
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700339 update = true;
340 } else {
341 ext4_fc_reset_inode(inode);
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -0800342 ei->i_sync_tid = tid;
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700343 }
344 ret = __fc_track_fn(inode, args, update);
345 mutex_unlock(&ei->i_fc_lock);
346
347 if (!enqueue)
348 return ret;
349
350 spin_lock(&sbi->s_fc_lock);
351 if (list_empty(&EXT4_I(inode)->i_fc_list))
352 list_add_tail(&EXT4_I(inode)->i_fc_list,
Harshad Shirwadkar9b5f6c92020-11-05 19:59:09 -0800353 (ext4_test_mount_flag(inode->i_sb, EXT4_MF_FC_COMMITTING)) ?
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700354 &sbi->s_fc_q[FC_Q_STAGING] :
355 &sbi->s_fc_q[FC_Q_MAIN]);
356 spin_unlock(&sbi->s_fc_lock);
357
358 return ret;
359}
360
361struct __track_dentry_update_args {
362 struct dentry *dentry;
363 int op;
364};
365
366/* __track_fn for directory entry updates. Called with ei->i_fc_lock. */
367static int __track_dentry_update(struct inode *inode, void *arg, bool update)
368{
369 struct ext4_fc_dentry_update *node;
370 struct ext4_inode_info *ei = EXT4_I(inode);
371 struct __track_dentry_update_args *dentry_update =
372 (struct __track_dentry_update_args *)arg;
373 struct dentry *dentry = dentry_update->dentry;
374 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
375
376 mutex_unlock(&ei->i_fc_lock);
377 node = kmem_cache_alloc(ext4_fc_dentry_cachep, GFP_NOFS);
378 if (!node) {
Harshad Shirwadkarb21ebf12020-11-05 19:58:51 -0800379 ext4_fc_mark_ineligible(inode->i_sb, EXT4_FC_REASON_NOMEM);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700380 mutex_lock(&ei->i_fc_lock);
381 return -ENOMEM;
382 }
383
384 node->fcd_op = dentry_update->op;
385 node->fcd_parent = dentry->d_parent->d_inode->i_ino;
386 node->fcd_ino = inode->i_ino;
387 if (dentry->d_name.len > DNAME_INLINE_LEN) {
388 node->fcd_name.name = kmalloc(dentry->d_name.len, GFP_NOFS);
389 if (!node->fcd_name.name) {
390 kmem_cache_free(ext4_fc_dentry_cachep, node);
391 ext4_fc_mark_ineligible(inode->i_sb,
Harshad Shirwadkarb21ebf12020-11-05 19:58:51 -0800392 EXT4_FC_REASON_NOMEM);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700393 mutex_lock(&ei->i_fc_lock);
394 return -ENOMEM;
395 }
396 memcpy((u8 *)node->fcd_name.name, dentry->d_name.name,
397 dentry->d_name.len);
398 } else {
399 memcpy(node->fcd_iname, dentry->d_name.name,
400 dentry->d_name.len);
401 node->fcd_name.name = node->fcd_iname;
402 }
403 node->fcd_name.len = dentry->d_name.len;
404
405 spin_lock(&sbi->s_fc_lock);
Harshad Shirwadkar9b5f6c92020-11-05 19:59:09 -0800406 if (ext4_test_mount_flag(inode->i_sb, EXT4_MF_FC_COMMITTING))
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700407 list_add_tail(&node->fcd_list,
408 &sbi->s_fc_dentry_q[FC_Q_STAGING]);
409 else
410 list_add_tail(&node->fcd_list, &sbi->s_fc_dentry_q[FC_Q_MAIN]);
411 spin_unlock(&sbi->s_fc_lock);
412 mutex_lock(&ei->i_fc_lock);
413
414 return 0;
415}
416
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -0800417void __ext4_fc_track_unlink(handle_t *handle,
418 struct inode *inode, struct dentry *dentry)
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700419{
420 struct __track_dentry_update_args args;
421 int ret;
422
423 args.dentry = dentry;
424 args.op = EXT4_FC_TAG_UNLINK;
425
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -0800426 ret = ext4_fc_track_template(handle, inode, __track_dentry_update,
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700427 (void *)&args, 0);
428 trace_ext4_fc_track_unlink(inode, dentry, ret);
429}
430
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -0800431void ext4_fc_track_unlink(handle_t *handle, struct dentry *dentry)
432{
433 __ext4_fc_track_unlink(handle, d_inode(dentry), dentry);
434}
435
436void __ext4_fc_track_link(handle_t *handle,
437 struct inode *inode, struct dentry *dentry)
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700438{
439 struct __track_dentry_update_args args;
440 int ret;
441
442 args.dentry = dentry;
443 args.op = EXT4_FC_TAG_LINK;
444
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -0800445 ret = ext4_fc_track_template(handle, inode, __track_dentry_update,
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700446 (void *)&args, 0);
447 trace_ext4_fc_track_link(inode, dentry, ret);
448}
449
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -0800450void ext4_fc_track_link(handle_t *handle, struct dentry *dentry)
451{
452 __ext4_fc_track_link(handle, d_inode(dentry), dentry);
453}
454
Harshad Shirwadkar35ecf662021-03-16 15:19:21 -0700455void __ext4_fc_track_create(handle_t *handle, struct inode *inode,
456 struct dentry *dentry)
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700457{
458 struct __track_dentry_update_args args;
459 int ret;
460
461 args.dentry = dentry;
462 args.op = EXT4_FC_TAG_CREAT;
463
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -0800464 ret = ext4_fc_track_template(handle, inode, __track_dentry_update,
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700465 (void *)&args, 0);
466 trace_ext4_fc_track_create(inode, dentry, ret);
467}
468
Harshad Shirwadkar35ecf662021-03-16 15:19:21 -0700469void ext4_fc_track_create(handle_t *handle, struct dentry *dentry)
470{
471 __ext4_fc_track_create(handle, d_inode(dentry), dentry);
472}
473
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700474/* __track_fn for inode tracking */
475static int __track_inode(struct inode *inode, void *arg, bool update)
476{
477 if (update)
478 return -EEXIST;
479
480 EXT4_I(inode)->i_fc_lblk_len = 0;
481
482 return 0;
483}
484
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -0800485void ext4_fc_track_inode(handle_t *handle, struct inode *inode)
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700486{
487 int ret;
488
489 if (S_ISDIR(inode->i_mode))
490 return;
491
Harshad Shirwadkar556e0312020-11-05 19:59:07 -0800492 if (ext4_should_journal_data(inode)) {
493 ext4_fc_mark_ineligible(inode->i_sb,
494 EXT4_FC_REASON_INODE_JOURNAL_DATA);
495 return;
496 }
497
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -0800498 ret = ext4_fc_track_template(handle, inode, __track_inode, NULL, 1);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700499 trace_ext4_fc_track_inode(inode, ret);
500}
501
502struct __track_range_args {
503 ext4_lblk_t start, end;
504};
505
506/* __track_fn for tracking data updates */
507static int __track_range(struct inode *inode, void *arg, bool update)
508{
509 struct ext4_inode_info *ei = EXT4_I(inode);
510 ext4_lblk_t oldstart;
511 struct __track_range_args *__arg =
512 (struct __track_range_args *)arg;
513
514 if (inode->i_ino < EXT4_FIRST_INO(inode->i_sb)) {
515 ext4_debug("Special inode %ld being modified\n", inode->i_ino);
516 return -ECANCELED;
517 }
518
519 oldstart = ei->i_fc_lblk_start;
520
521 if (update && ei->i_fc_lblk_len > 0) {
522 ei->i_fc_lblk_start = min(ei->i_fc_lblk_start, __arg->start);
523 ei->i_fc_lblk_len =
524 max(oldstart + ei->i_fc_lblk_len - 1, __arg->end) -
525 ei->i_fc_lblk_start + 1;
526 } else {
527 ei->i_fc_lblk_start = __arg->start;
528 ei->i_fc_lblk_len = __arg->end - __arg->start + 1;
529 }
530
531 return 0;
532}
533
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -0800534void ext4_fc_track_range(handle_t *handle, struct inode *inode, ext4_lblk_t start,
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700535 ext4_lblk_t end)
536{
537 struct __track_range_args args;
538 int ret;
539
540 if (S_ISDIR(inode->i_mode))
541 return;
542
543 args.start = start;
544 args.end = end;
545
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -0800546 ret = ext4_fc_track_template(handle, inode, __track_range, &args, 1);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700547
548 trace_ext4_fc_track_range(inode, start, end, ret);
549}
550
551static void ext4_fc_submit_bh(struct super_block *sb)
552{
553 int write_flags = REQ_SYNC;
554 struct buffer_head *bh = EXT4_SB(sb)->s_fc_bh;
555
Harshad Shirwadkara7407622020-11-05 19:59:03 -0800556 /* TODO: REQ_FUA | REQ_PREFLUSH is unnecessarily expensive. */
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700557 if (test_opt(sb, BARRIER))
558 write_flags |= REQ_FUA | REQ_PREFLUSH;
559 lock_buffer(bh);
Harshad Shirwadkar764b3fd2020-11-05 19:59:04 -0800560 set_buffer_dirty(bh);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700561 set_buffer_uptodate(bh);
562 bh->b_end_io = ext4_end_buffer_io_sync;
563 submit_bh(REQ_OP_WRITE, write_flags, bh);
564 EXT4_SB(sb)->s_fc_bh = NULL;
565}
566
567/* Ext4 commit path routines */
568
569/* memzero and update CRC */
570static void *ext4_fc_memzero(struct super_block *sb, void *dst, int len,
571 u32 *crc)
572{
573 void *ret;
574
575 ret = memset(dst, 0, len);
576 if (crc)
577 *crc = ext4_chksum(EXT4_SB(sb), *crc, dst, len);
578 return ret;
579}
580
581/*
582 * Allocate len bytes on a fast commit buffer.
583 *
584 * During the commit time this function is used to manage fast commit
585 * block space. We don't split a fast commit log onto different
586 * blocks. So this function makes sure that if there's not enough space
587 * on the current block, the remaining space in the current block is
588 * marked as unused by adding EXT4_FC_TAG_PAD tag. In that case,
589 * new block is from jbd2 and CRC is updated to reflect the padding
590 * we added.
591 */
592static u8 *ext4_fc_reserve_space(struct super_block *sb, int len, u32 *crc)
593{
594 struct ext4_fc_tl *tl;
595 struct ext4_sb_info *sbi = EXT4_SB(sb);
596 struct buffer_head *bh;
597 int bsize = sbi->s_journal->j_blocksize;
598 int ret, off = sbi->s_fc_bytes % bsize;
599 int pad_len;
600
601 /*
602 * After allocating len, we should have space at least for a 0 byte
603 * padding.
604 */
605 if (len + sizeof(struct ext4_fc_tl) > bsize)
606 return NULL;
607
608 if (bsize - off - 1 > len + sizeof(struct ext4_fc_tl)) {
609 /*
610 * Only allocate from current buffer if we have enough space for
611 * this request AND we have space to add a zero byte padding.
612 */
613 if (!sbi->s_fc_bh) {
614 ret = jbd2_fc_get_buf(EXT4_SB(sb)->s_journal, &bh);
615 if (ret)
616 return NULL;
617 sbi->s_fc_bh = bh;
618 }
619 sbi->s_fc_bytes += len;
620 return sbi->s_fc_bh->b_data + off;
621 }
622 /* Need to add PAD tag */
623 tl = (struct ext4_fc_tl *)(sbi->s_fc_bh->b_data + off);
624 tl->fc_tag = cpu_to_le16(EXT4_FC_TAG_PAD);
625 pad_len = bsize - off - 1 - sizeof(struct ext4_fc_tl);
626 tl->fc_len = cpu_to_le16(pad_len);
627 if (crc)
628 *crc = ext4_chksum(sbi, *crc, tl, sizeof(*tl));
629 if (pad_len > 0)
630 ext4_fc_memzero(sb, tl + 1, pad_len, crc);
631 ext4_fc_submit_bh(sb);
632
633 ret = jbd2_fc_get_buf(EXT4_SB(sb)->s_journal, &bh);
634 if (ret)
635 return NULL;
636 sbi->s_fc_bh = bh;
637 sbi->s_fc_bytes = (sbi->s_fc_bytes / bsize + 1) * bsize + len;
638 return sbi->s_fc_bh->b_data;
639}
640
641/* memcpy to fc reserved space and update CRC */
642static void *ext4_fc_memcpy(struct super_block *sb, void *dst, const void *src,
643 int len, u32 *crc)
644{
645 if (crc)
646 *crc = ext4_chksum(EXT4_SB(sb), *crc, src, len);
647 return memcpy(dst, src, len);
648}
649
650/*
651 * Complete a fast commit by writing tail tag.
652 *
653 * Writing tail tag marks the end of a fast commit. In order to guarantee
654 * atomicity, after writing tail tag, even if there's space remaining
655 * in the block, next commit shouldn't use it. That's why tail tag
656 * has the length as that of the remaining space on the block.
657 */
658static int ext4_fc_write_tail(struct super_block *sb, u32 crc)
659{
660 struct ext4_sb_info *sbi = EXT4_SB(sb);
661 struct ext4_fc_tl tl;
662 struct ext4_fc_tail tail;
663 int off, bsize = sbi->s_journal->j_blocksize;
664 u8 *dst;
665
666 /*
667 * ext4_fc_reserve_space takes care of allocating an extra block if
668 * there's no enough space on this block for accommodating this tail.
669 */
670 dst = ext4_fc_reserve_space(sb, sizeof(tl) + sizeof(tail), &crc);
671 if (!dst)
672 return -ENOSPC;
673
674 off = sbi->s_fc_bytes % bsize;
675
676 tl.fc_tag = cpu_to_le16(EXT4_FC_TAG_TAIL);
677 tl.fc_len = cpu_to_le16(bsize - off - 1 + sizeof(struct ext4_fc_tail));
678 sbi->s_fc_bytes = round_up(sbi->s_fc_bytes, bsize);
679
680 ext4_fc_memcpy(sb, dst, &tl, sizeof(tl), &crc);
681 dst += sizeof(tl);
682 tail.fc_tid = cpu_to_le32(sbi->s_journal->j_running_transaction->t_tid);
683 ext4_fc_memcpy(sb, dst, &tail.fc_tid, sizeof(tail.fc_tid), &crc);
684 dst += sizeof(tail.fc_tid);
685 tail.fc_crc = cpu_to_le32(crc);
686 ext4_fc_memcpy(sb, dst, &tail.fc_crc, sizeof(tail.fc_crc), NULL);
687
688 ext4_fc_submit_bh(sb);
689
690 return 0;
691}
692
693/*
694 * Adds tag, length, value and updates CRC. Returns true if tlv was added.
695 * Returns false if there's not enough space.
696 */
697static bool ext4_fc_add_tlv(struct super_block *sb, u16 tag, u16 len, u8 *val,
698 u32 *crc)
699{
700 struct ext4_fc_tl tl;
701 u8 *dst;
702
703 dst = ext4_fc_reserve_space(sb, sizeof(tl) + len, crc);
704 if (!dst)
705 return false;
706
707 tl.fc_tag = cpu_to_le16(tag);
708 tl.fc_len = cpu_to_le16(len);
709
710 ext4_fc_memcpy(sb, dst, &tl, sizeof(tl), crc);
711 ext4_fc_memcpy(sb, dst + sizeof(tl), val, len, crc);
712
713 return true;
714}
715
716/* Same as above, but adds dentry tlv. */
717static bool ext4_fc_add_dentry_tlv(struct super_block *sb, u16 tag,
718 int parent_ino, int ino, int dlen,
719 const unsigned char *dname,
720 u32 *crc)
721{
722 struct ext4_fc_dentry_info fcd;
723 struct ext4_fc_tl tl;
724 u8 *dst = ext4_fc_reserve_space(sb, sizeof(tl) + sizeof(fcd) + dlen,
725 crc);
726
727 if (!dst)
728 return false;
729
730 fcd.fc_parent_ino = cpu_to_le32(parent_ino);
731 fcd.fc_ino = cpu_to_le32(ino);
732 tl.fc_tag = cpu_to_le16(tag);
733 tl.fc_len = cpu_to_le16(sizeof(fcd) + dlen);
734 ext4_fc_memcpy(sb, dst, &tl, sizeof(tl), crc);
735 dst += sizeof(tl);
736 ext4_fc_memcpy(sb, dst, &fcd, sizeof(fcd), crc);
737 dst += sizeof(fcd);
738 ext4_fc_memcpy(sb, dst, dname, dlen, crc);
739 dst += dlen;
740
741 return true;
742}
743
744/*
745 * Writes inode in the fast commit space under TLV with tag @tag.
746 * Returns 0 on success, error on failure.
747 */
748static int ext4_fc_write_inode(struct inode *inode, u32 *crc)
749{
750 struct ext4_inode_info *ei = EXT4_I(inode);
751 int inode_len = EXT4_GOOD_OLD_INODE_SIZE;
752 int ret;
753 struct ext4_iloc iloc;
754 struct ext4_fc_inode fc_inode;
755 struct ext4_fc_tl tl;
756 u8 *dst;
757
758 ret = ext4_get_inode_loc(inode, &iloc);
759 if (ret)
760 return ret;
761
762 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE)
763 inode_len += ei->i_extra_isize;
764
765 fc_inode.fc_ino = cpu_to_le32(inode->i_ino);
766 tl.fc_tag = cpu_to_le16(EXT4_FC_TAG_INODE);
767 tl.fc_len = cpu_to_le16(inode_len + sizeof(fc_inode.fc_ino));
768
769 dst = ext4_fc_reserve_space(inode->i_sb,
770 sizeof(tl) + inode_len + sizeof(fc_inode.fc_ino), crc);
771 if (!dst)
772 return -ECANCELED;
773
774 if (!ext4_fc_memcpy(inode->i_sb, dst, &tl, sizeof(tl), crc))
775 return -ECANCELED;
776 dst += sizeof(tl);
777 if (!ext4_fc_memcpy(inode->i_sb, dst, &fc_inode, sizeof(fc_inode), crc))
778 return -ECANCELED;
779 dst += sizeof(fc_inode);
780 if (!ext4_fc_memcpy(inode->i_sb, dst, (u8 *)ext4_raw_inode(&iloc),
781 inode_len, crc))
782 return -ECANCELED;
783
784 return 0;
785}
786
787/*
788 * Writes updated data ranges for the inode in question. Updates CRC.
789 * Returns 0 on success, error otherwise.
790 */
791static int ext4_fc_write_inode_data(struct inode *inode, u32 *crc)
792{
793 ext4_lblk_t old_blk_size, cur_lblk_off, new_blk_size;
794 struct ext4_inode_info *ei = EXT4_I(inode);
795 struct ext4_map_blocks map;
796 struct ext4_fc_add_range fc_ext;
797 struct ext4_fc_del_range lrange;
798 struct ext4_extent *ex;
799 int ret;
800
801 mutex_lock(&ei->i_fc_lock);
802 if (ei->i_fc_lblk_len == 0) {
803 mutex_unlock(&ei->i_fc_lock);
804 return 0;
805 }
806 old_blk_size = ei->i_fc_lblk_start;
807 new_blk_size = ei->i_fc_lblk_start + ei->i_fc_lblk_len - 1;
808 ei->i_fc_lblk_len = 0;
809 mutex_unlock(&ei->i_fc_lock);
810
811 cur_lblk_off = old_blk_size;
812 jbd_debug(1, "%s: will try writing %d to %d for inode %ld\n",
813 __func__, cur_lblk_off, new_blk_size, inode->i_ino);
814
815 while (cur_lblk_off <= new_blk_size) {
816 map.m_lblk = cur_lblk_off;
817 map.m_len = new_blk_size - cur_lblk_off + 1;
818 ret = ext4_map_blocks(NULL, inode, &map, 0);
819 if (ret < 0)
820 return -ECANCELED;
821
822 if (map.m_len == 0) {
823 cur_lblk_off++;
824 continue;
825 }
826
827 if (ret == 0) {
828 lrange.fc_ino = cpu_to_le32(inode->i_ino);
829 lrange.fc_lblk = cpu_to_le32(map.m_lblk);
830 lrange.fc_len = cpu_to_le32(map.m_len);
831 if (!ext4_fc_add_tlv(inode->i_sb, EXT4_FC_TAG_DEL_RANGE,
832 sizeof(lrange), (u8 *)&lrange, crc))
833 return -ENOSPC;
834 } else {
835 fc_ext.fc_ino = cpu_to_le32(inode->i_ino);
836 ex = (struct ext4_extent *)&fc_ext.fc_ex;
837 ex->ee_block = cpu_to_le32(map.m_lblk);
838 ex->ee_len = cpu_to_le16(map.m_len);
839 ext4_ext_store_pblock(ex, map.m_pblk);
840 if (map.m_flags & EXT4_MAP_UNWRITTEN)
841 ext4_ext_mark_unwritten(ex);
842 else
843 ext4_ext_mark_initialized(ex);
844 if (!ext4_fc_add_tlv(inode->i_sb, EXT4_FC_TAG_ADD_RANGE,
845 sizeof(fc_ext), (u8 *)&fc_ext, crc))
846 return -ENOSPC;
847 }
848
849 cur_lblk_off += map.m_len;
850 }
851
852 return 0;
853}
854
855
856/* Submit data for all the fast commit inodes */
857static int ext4_fc_submit_inode_data_all(journal_t *journal)
858{
859 struct super_block *sb = (struct super_block *)(journal->j_private);
860 struct ext4_sb_info *sbi = EXT4_SB(sb);
861 struct ext4_inode_info *ei;
862 struct list_head *pos;
863 int ret = 0;
864
865 spin_lock(&sbi->s_fc_lock);
Harshad Shirwadkar9b5f6c92020-11-05 19:59:09 -0800866 ext4_set_mount_flag(sb, EXT4_MF_FC_COMMITTING);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700867 list_for_each(pos, &sbi->s_fc_q[FC_Q_MAIN]) {
868 ei = list_entry(pos, struct ext4_inode_info, i_fc_list);
869 ext4_set_inode_state(&ei->vfs_inode, EXT4_STATE_FC_COMMITTING);
870 while (atomic_read(&ei->i_fc_updates)) {
871 DEFINE_WAIT(wait);
872
873 prepare_to_wait(&ei->i_fc_wait, &wait,
874 TASK_UNINTERRUPTIBLE);
875 if (atomic_read(&ei->i_fc_updates)) {
876 spin_unlock(&sbi->s_fc_lock);
877 schedule();
878 spin_lock(&sbi->s_fc_lock);
879 }
880 finish_wait(&ei->i_fc_wait, &wait);
881 }
882 spin_unlock(&sbi->s_fc_lock);
883 ret = jbd2_submit_inode_data(ei->jinode);
884 if (ret)
885 return ret;
886 spin_lock(&sbi->s_fc_lock);
887 }
888 spin_unlock(&sbi->s_fc_lock);
889
890 return ret;
891}
892
893/* Wait for completion of data for all the fast commit inodes */
894static int ext4_fc_wait_inode_data_all(journal_t *journal)
895{
896 struct super_block *sb = (struct super_block *)(journal->j_private);
897 struct ext4_sb_info *sbi = EXT4_SB(sb);
898 struct ext4_inode_info *pos, *n;
899 int ret = 0;
900
901 spin_lock(&sbi->s_fc_lock);
902 list_for_each_entry_safe(pos, n, &sbi->s_fc_q[FC_Q_MAIN], i_fc_list) {
903 if (!ext4_test_inode_state(&pos->vfs_inode,
904 EXT4_STATE_FC_COMMITTING))
905 continue;
906 spin_unlock(&sbi->s_fc_lock);
907
908 ret = jbd2_wait_inode_data(journal, pos->jinode);
909 if (ret)
910 return ret;
911 spin_lock(&sbi->s_fc_lock);
912 }
913 spin_unlock(&sbi->s_fc_lock);
914
915 return 0;
916}
917
918/* Commit all the directory entry updates */
919static int ext4_fc_commit_dentry_updates(journal_t *journal, u32 *crc)
Theodore Ts'ofa329e2732020-11-06 23:59:42 -0500920__acquires(&sbi->s_fc_lock)
921__releases(&sbi->s_fc_lock)
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700922{
923 struct super_block *sb = (struct super_block *)(journal->j_private);
924 struct ext4_sb_info *sbi = EXT4_SB(sb);
925 struct ext4_fc_dentry_update *fc_dentry;
926 struct inode *inode;
927 struct list_head *pos, *n, *fcd_pos, *fcd_n;
928 struct ext4_inode_info *ei;
929 int ret;
930
931 if (list_empty(&sbi->s_fc_dentry_q[FC_Q_MAIN]))
932 return 0;
933 list_for_each_safe(fcd_pos, fcd_n, &sbi->s_fc_dentry_q[FC_Q_MAIN]) {
934 fc_dentry = list_entry(fcd_pos, struct ext4_fc_dentry_update,
935 fcd_list);
936 if (fc_dentry->fcd_op != EXT4_FC_TAG_CREAT) {
937 spin_unlock(&sbi->s_fc_lock);
938 if (!ext4_fc_add_dentry_tlv(
939 sb, fc_dentry->fcd_op,
940 fc_dentry->fcd_parent, fc_dentry->fcd_ino,
941 fc_dentry->fcd_name.len,
942 fc_dentry->fcd_name.name, crc)) {
943 ret = -ENOSPC;
944 goto lock_and_exit;
945 }
946 spin_lock(&sbi->s_fc_lock);
947 continue;
948 }
949
950 inode = NULL;
951 list_for_each_safe(pos, n, &sbi->s_fc_q[FC_Q_MAIN]) {
952 ei = list_entry(pos, struct ext4_inode_info, i_fc_list);
953 if (ei->vfs_inode.i_ino == fc_dentry->fcd_ino) {
954 inode = &ei->vfs_inode;
955 break;
956 }
957 }
958 /*
959 * If we don't find inode in our list, then it was deleted,
960 * in which case, we don't need to record it's create tag.
961 */
962 if (!inode)
963 continue;
964 spin_unlock(&sbi->s_fc_lock);
965
966 /*
967 * We first write the inode and then the create dirent. This
968 * allows the recovery code to create an unnamed inode first
969 * and then link it to a directory entry. This allows us
970 * to use namei.c routines almost as is and simplifies
971 * the recovery code.
972 */
973 ret = ext4_fc_write_inode(inode, crc);
974 if (ret)
975 goto lock_and_exit;
976
977 ret = ext4_fc_write_inode_data(inode, crc);
978 if (ret)
979 goto lock_and_exit;
980
981 if (!ext4_fc_add_dentry_tlv(
982 sb, fc_dentry->fcd_op,
983 fc_dentry->fcd_parent, fc_dentry->fcd_ino,
984 fc_dentry->fcd_name.len,
985 fc_dentry->fcd_name.name, crc)) {
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700986 ret = -ENOSPC;
987 goto lock_and_exit;
988 }
989
990 spin_lock(&sbi->s_fc_lock);
991 }
992 return 0;
993lock_and_exit:
994 spin_lock(&sbi->s_fc_lock);
995 return ret;
996}
997
998static int ext4_fc_perform_commit(journal_t *journal)
999{
1000 struct super_block *sb = (struct super_block *)(journal->j_private);
1001 struct ext4_sb_info *sbi = EXT4_SB(sb);
1002 struct ext4_inode_info *iter;
1003 struct ext4_fc_head head;
1004 struct list_head *pos;
1005 struct inode *inode;
1006 struct blk_plug plug;
1007 int ret = 0;
1008 u32 crc = 0;
1009
1010 ret = ext4_fc_submit_inode_data_all(journal);
1011 if (ret)
1012 return ret;
1013
1014 ret = ext4_fc_wait_inode_data_all(journal);
1015 if (ret)
1016 return ret;
1017
Harshad Shirwadkarda0c5d22020-11-05 19:59:08 -08001018 /*
1019 * If file system device is different from journal device, issue a cache
1020 * flush before we start writing fast commit blocks.
1021 */
1022 if (journal->j_fs_dev != journal->j_dev)
1023 blkdev_issue_flush(journal->j_fs_dev, GFP_NOFS);
1024
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07001025 blk_start_plug(&plug);
1026 if (sbi->s_fc_bytes == 0) {
1027 /*
1028 * Add a head tag only if this is the first fast commit
1029 * in this TID.
1030 */
1031 head.fc_features = cpu_to_le32(EXT4_FC_SUPPORTED_FEATURES);
1032 head.fc_tid = cpu_to_le32(
1033 sbi->s_journal->j_running_transaction->t_tid);
1034 if (!ext4_fc_add_tlv(sb, EXT4_FC_TAG_HEAD, sizeof(head),
Xu Yihang72447c92021-04-08 15:00:33 +08001035 (u8 *)&head, &crc)) {
1036 ret = -ENOSPC;
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07001037 goto out;
Xu Yihang72447c92021-04-08 15:00:33 +08001038 }
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07001039 }
1040
1041 spin_lock(&sbi->s_fc_lock);
1042 ret = ext4_fc_commit_dentry_updates(journal, &crc);
1043 if (ret) {
1044 spin_unlock(&sbi->s_fc_lock);
1045 goto out;
1046 }
1047
1048 list_for_each(pos, &sbi->s_fc_q[FC_Q_MAIN]) {
1049 iter = list_entry(pos, struct ext4_inode_info, i_fc_list);
1050 inode = &iter->vfs_inode;
1051 if (!ext4_test_inode_state(inode, EXT4_STATE_FC_COMMITTING))
1052 continue;
1053
1054 spin_unlock(&sbi->s_fc_lock);
1055 ret = ext4_fc_write_inode_data(inode, &crc);
1056 if (ret)
1057 goto out;
1058 ret = ext4_fc_write_inode(inode, &crc);
1059 if (ret)
1060 goto out;
1061 spin_lock(&sbi->s_fc_lock);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07001062 }
1063 spin_unlock(&sbi->s_fc_lock);
1064
1065 ret = ext4_fc_write_tail(sb, crc);
1066
1067out:
1068 blk_finish_plug(&plug);
1069 return ret;
1070}
1071
1072/*
1073 * The main commit entry point. Performs a fast commit for transaction
1074 * commit_tid if needed. If it's not possible to perform a fast commit
1075 * due to various reasons, we fall back to full commit. Returns 0
1076 * on success, error otherwise.
1077 */
1078int ext4_fc_commit(journal_t *journal, tid_t commit_tid)
1079{
1080 struct super_block *sb = (struct super_block *)(journal->j_private);
1081 struct ext4_sb_info *sbi = EXT4_SB(sb);
1082 int nblks = 0, ret, bsize = journal->j_blocksize;
1083 int subtid = atomic_read(&sbi->s_fc_subtid);
1084 int reason = EXT4_FC_REASON_OK, fc_bufs_before = 0;
1085 ktime_t start_time, commit_time;
1086
1087 trace_ext4_fc_commit_start(sb);
1088
1089 start_time = ktime_get();
1090
1091 if (!test_opt2(sb, JOURNAL_FAST_COMMIT) ||
1092 (ext4_fc_is_ineligible(sb))) {
1093 reason = EXT4_FC_REASON_INELIGIBLE;
1094 goto out;
1095 }
1096
1097restart_fc:
1098 ret = jbd2_fc_begin_commit(journal, commit_tid);
1099 if (ret == -EALREADY) {
1100 /* There was an ongoing commit, check if we need to restart */
1101 if (atomic_read(&sbi->s_fc_subtid) <= subtid &&
1102 commit_tid > journal->j_commit_sequence)
1103 goto restart_fc;
1104 reason = EXT4_FC_REASON_ALREADY_COMMITTED;
1105 goto out;
1106 } else if (ret) {
1107 sbi->s_fc_stats.fc_ineligible_reason_count[EXT4_FC_COMMIT_FAILED]++;
1108 reason = EXT4_FC_REASON_FC_START_FAILED;
1109 goto out;
1110 }
1111
1112 fc_bufs_before = (sbi->s_fc_bytes + bsize - 1) / bsize;
1113 ret = ext4_fc_perform_commit(journal);
1114 if (ret < 0) {
1115 sbi->s_fc_stats.fc_ineligible_reason_count[EXT4_FC_COMMIT_FAILED]++;
1116 reason = EXT4_FC_REASON_FC_FAILED;
1117 goto out;
1118 }
1119 nblks = (sbi->s_fc_bytes + bsize - 1) / bsize - fc_bufs_before;
1120 ret = jbd2_fc_wait_bufs(journal, nblks);
1121 if (ret < 0) {
1122 sbi->s_fc_stats.fc_ineligible_reason_count[EXT4_FC_COMMIT_FAILED]++;
1123 reason = EXT4_FC_REASON_FC_FAILED;
1124 goto out;
1125 }
1126 atomic_inc(&sbi->s_fc_subtid);
1127 jbd2_fc_end_commit(journal);
1128out:
1129 /* Has any ineligible update happened since we started? */
1130 if (reason == EXT4_FC_REASON_OK && ext4_fc_is_ineligible(sb)) {
1131 sbi->s_fc_stats.fc_ineligible_reason_count[EXT4_FC_COMMIT_FAILED]++;
1132 reason = EXT4_FC_REASON_INELIGIBLE;
1133 }
1134
1135 spin_lock(&sbi->s_fc_lock);
1136 if (reason != EXT4_FC_REASON_OK &&
1137 reason != EXT4_FC_REASON_ALREADY_COMMITTED) {
1138 sbi->s_fc_stats.fc_ineligible_commits++;
1139 } else {
1140 sbi->s_fc_stats.fc_num_commits++;
1141 sbi->s_fc_stats.fc_numblks += nblks;
1142 }
1143 spin_unlock(&sbi->s_fc_lock);
1144 nblks = (reason == EXT4_FC_REASON_OK) ? nblks : 0;
1145 trace_ext4_fc_commit_stop(sb, nblks, reason);
1146 commit_time = ktime_to_ns(ktime_sub(ktime_get(), start_time));
1147 /*
1148 * weight the commit time higher than the average time so we don't
1149 * react too strongly to vast changes in the commit time
1150 */
1151 if (likely(sbi->s_fc_avg_commit_time))
1152 sbi->s_fc_avg_commit_time = (commit_time +
1153 sbi->s_fc_avg_commit_time * 3) / 4;
1154 else
1155 sbi->s_fc_avg_commit_time = commit_time;
1156 jbd_debug(1,
1157 "Fast commit ended with blks = %d, reason = %d, subtid - %d",
1158 nblks, reason, subtid);
1159 if (reason == EXT4_FC_REASON_FC_FAILED)
Harshad Shirwadkar0bce5772020-11-05 19:58:58 -08001160 return jbd2_fc_end_commit_fallback(journal);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07001161 if (reason == EXT4_FC_REASON_FC_START_FAILED ||
1162 reason == EXT4_FC_REASON_INELIGIBLE)
1163 return jbd2_complete_transaction(journal, commit_tid);
1164 return 0;
1165}
1166
Harshad Shirwadkarff780b92020-10-15 13:37:56 -07001167/*
1168 * Fast commit cleanup routine. This is called after every fast commit and
1169 * full commit. full is true if we are called after a full commit.
1170 */
1171static void ext4_fc_cleanup(journal_t *journal, int full)
1172{
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07001173 struct super_block *sb = journal->j_private;
1174 struct ext4_sb_info *sbi = EXT4_SB(sb);
1175 struct ext4_inode_info *iter;
1176 struct ext4_fc_dentry_update *fc_dentry;
1177 struct list_head *pos, *n;
1178
1179 if (full && sbi->s_fc_bh)
1180 sbi->s_fc_bh = NULL;
1181
1182 jbd2_fc_release_bufs(journal);
1183
1184 spin_lock(&sbi->s_fc_lock);
1185 list_for_each_safe(pos, n, &sbi->s_fc_q[FC_Q_MAIN]) {
1186 iter = list_entry(pos, struct ext4_inode_info, i_fc_list);
1187 list_del_init(&iter->i_fc_list);
1188 ext4_clear_inode_state(&iter->vfs_inode,
1189 EXT4_STATE_FC_COMMITTING);
1190 ext4_fc_reset_inode(&iter->vfs_inode);
1191 /* Make sure EXT4_STATE_FC_COMMITTING bit is clear */
1192 smp_mb();
1193#if (BITS_PER_LONG < 64)
1194 wake_up_bit(&iter->i_state_flags, EXT4_STATE_FC_COMMITTING);
1195#else
1196 wake_up_bit(&iter->i_flags, EXT4_STATE_FC_COMMITTING);
1197#endif
1198 }
1199
1200 while (!list_empty(&sbi->s_fc_dentry_q[FC_Q_MAIN])) {
1201 fc_dentry = list_first_entry(&sbi->s_fc_dentry_q[FC_Q_MAIN],
1202 struct ext4_fc_dentry_update,
1203 fcd_list);
1204 list_del_init(&fc_dentry->fcd_list);
1205 spin_unlock(&sbi->s_fc_lock);
1206
1207 if (fc_dentry->fcd_name.name &&
1208 fc_dentry->fcd_name.len > DNAME_INLINE_LEN)
1209 kfree(fc_dentry->fcd_name.name);
1210 kmem_cache_free(ext4_fc_dentry_cachep, fc_dentry);
1211 spin_lock(&sbi->s_fc_lock);
1212 }
1213
1214 list_splice_init(&sbi->s_fc_dentry_q[FC_Q_STAGING],
1215 &sbi->s_fc_dentry_q[FC_Q_MAIN]);
1216 list_splice_init(&sbi->s_fc_q[FC_Q_STAGING],
Daejun Park15a062c2020-12-30 18:48:51 +09001217 &sbi->s_fc_q[FC_Q_MAIN]);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07001218
Harshad Shirwadkar9b5f6c92020-11-05 19:59:09 -08001219 ext4_clear_mount_flag(sb, EXT4_MF_FC_COMMITTING);
1220 ext4_clear_mount_flag(sb, EXT4_MF_FC_INELIGIBLE);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07001221
1222 if (full)
1223 sbi->s_fc_bytes = 0;
1224 spin_unlock(&sbi->s_fc_lock);
1225 trace_ext4_fc_stats(sb);
Harshad Shirwadkarff780b92020-10-15 13:37:56 -07001226}
Harshad Shirwadkar6866d7b2020-10-15 13:37:55 -07001227
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001228/* Ext4 Replay Path Routines */
1229
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001230/* Helper struct for dentry replay routines */
1231struct dentry_info_args {
1232 int parent_ino, dname_len, ino, inode_len;
1233 char *dname;
1234};
1235
1236static inline void tl_to_darg(struct dentry_info_args *darg,
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001237 struct ext4_fc_tl *tl, u8 *val)
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001238{
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001239 struct ext4_fc_dentry_info fcd;
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001240
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001241 memcpy(&fcd, val, sizeof(fcd));
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001242
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001243 darg->parent_ino = le32_to_cpu(fcd.fc_parent_ino);
1244 darg->ino = le32_to_cpu(fcd.fc_ino);
1245 darg->dname = val + offsetof(struct ext4_fc_dentry_info, fc_dname);
1246 darg->dname_len = le16_to_cpu(tl->fc_len) -
1247 sizeof(struct ext4_fc_dentry_info);
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001248}
1249
1250/* Unlink replay function */
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001251static int ext4_fc_replay_unlink(struct super_block *sb, struct ext4_fc_tl *tl,
1252 u8 *val)
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001253{
1254 struct inode *inode, *old_parent;
1255 struct qstr entry;
1256 struct dentry_info_args darg;
1257 int ret = 0;
1258
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001259 tl_to_darg(&darg, tl, val);
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001260
1261 trace_ext4_fc_replay(sb, EXT4_FC_TAG_UNLINK, darg.ino,
1262 darg.parent_ino, darg.dname_len);
1263
1264 entry.name = darg.dname;
1265 entry.len = darg.dname_len;
1266 inode = ext4_iget(sb, darg.ino, EXT4_IGET_NORMAL);
1267
Yi Li6c557cb12020-12-30 11:38:27 +08001268 if (IS_ERR(inode)) {
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001269 jbd_debug(1, "Inode %d not found", darg.ino);
1270 return 0;
1271 }
1272
1273 old_parent = ext4_iget(sb, darg.parent_ino,
1274 EXT4_IGET_NORMAL);
Yi Li6c557cb12020-12-30 11:38:27 +08001275 if (IS_ERR(old_parent)) {
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001276 jbd_debug(1, "Dir with inode %d not found", darg.parent_ino);
1277 iput(inode);
1278 return 0;
1279 }
1280
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -08001281 ret = __ext4_unlink(NULL, old_parent, &entry, inode);
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001282 /* -ENOENT ok coz it might not exist anymore. */
1283 if (ret == -ENOENT)
1284 ret = 0;
1285 iput(old_parent);
1286 iput(inode);
1287 return ret;
1288}
1289
1290static int ext4_fc_replay_link_internal(struct super_block *sb,
1291 struct dentry_info_args *darg,
1292 struct inode *inode)
1293{
1294 struct inode *dir = NULL;
1295 struct dentry *dentry_dir = NULL, *dentry_inode = NULL;
1296 struct qstr qstr_dname = QSTR_INIT(darg->dname, darg->dname_len);
1297 int ret = 0;
1298
1299 dir = ext4_iget(sb, darg->parent_ino, EXT4_IGET_NORMAL);
1300 if (IS_ERR(dir)) {
1301 jbd_debug(1, "Dir with inode %d not found.", darg->parent_ino);
1302 dir = NULL;
1303 goto out;
1304 }
1305
1306 dentry_dir = d_obtain_alias(dir);
1307 if (IS_ERR(dentry_dir)) {
1308 jbd_debug(1, "Failed to obtain dentry");
1309 dentry_dir = NULL;
1310 goto out;
1311 }
1312
1313 dentry_inode = d_alloc(dentry_dir, &qstr_dname);
1314 if (!dentry_inode) {
1315 jbd_debug(1, "Inode dentry not created.");
1316 ret = -ENOMEM;
1317 goto out;
1318 }
1319
1320 ret = __ext4_link(dir, inode, dentry_inode);
1321 /*
1322 * It's possible that link already existed since data blocks
1323 * for the dir in question got persisted before we crashed OR
1324 * we replayed this tag and crashed before the entire replay
1325 * could complete.
1326 */
1327 if (ret && ret != -EEXIST) {
1328 jbd_debug(1, "Failed to link\n");
1329 goto out;
1330 }
1331
1332 ret = 0;
1333out:
1334 if (dentry_dir) {
1335 d_drop(dentry_dir);
1336 dput(dentry_dir);
1337 } else if (dir) {
1338 iput(dir);
1339 }
1340 if (dentry_inode) {
1341 d_drop(dentry_inode);
1342 dput(dentry_inode);
1343 }
1344
1345 return ret;
1346}
1347
1348/* Link replay function */
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001349static int ext4_fc_replay_link(struct super_block *sb, struct ext4_fc_tl *tl,
1350 u8 *val)
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001351{
1352 struct inode *inode;
1353 struct dentry_info_args darg;
1354 int ret = 0;
1355
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001356 tl_to_darg(&darg, tl, val);
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001357 trace_ext4_fc_replay(sb, EXT4_FC_TAG_LINK, darg.ino,
1358 darg.parent_ino, darg.dname_len);
1359
1360 inode = ext4_iget(sb, darg.ino, EXT4_IGET_NORMAL);
Yi Li6c557cb12020-12-30 11:38:27 +08001361 if (IS_ERR(inode)) {
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001362 jbd_debug(1, "Inode not found.");
1363 return 0;
1364 }
1365
1366 ret = ext4_fc_replay_link_internal(sb, &darg, inode);
1367 iput(inode);
1368 return ret;
1369}
1370
1371/*
1372 * Record all the modified inodes during replay. We use this later to setup
1373 * block bitmaps correctly.
1374 */
1375static int ext4_fc_record_modified_inode(struct super_block *sb, int ino)
1376{
1377 struct ext4_fc_replay_state *state;
1378 int i;
1379
1380 state = &EXT4_SB(sb)->s_fc_replay_state;
1381 for (i = 0; i < state->fc_modified_inodes_used; i++)
1382 if (state->fc_modified_inodes[i] == ino)
1383 return 0;
1384 if (state->fc_modified_inodes_used == state->fc_modified_inodes_size) {
1385 state->fc_modified_inodes_size +=
1386 EXT4_FC_REPLAY_REALLOC_INCREMENT;
1387 state->fc_modified_inodes = krealloc(
1388 state->fc_modified_inodes, sizeof(int) *
1389 state->fc_modified_inodes_size,
1390 GFP_KERNEL);
1391 if (!state->fc_modified_inodes)
1392 return -ENOMEM;
1393 }
1394 state->fc_modified_inodes[state->fc_modified_inodes_used++] = ino;
1395 return 0;
1396}
1397
1398/*
1399 * Inode replay function
1400 */
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001401static int ext4_fc_replay_inode(struct super_block *sb, struct ext4_fc_tl *tl,
1402 u8 *val)
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001403{
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001404 struct ext4_fc_inode fc_inode;
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001405 struct ext4_inode *raw_inode;
1406 struct ext4_inode *raw_fc_inode;
1407 struct inode *inode = NULL;
1408 struct ext4_iloc iloc;
1409 int inode_len, ino, ret, tag = le16_to_cpu(tl->fc_tag);
1410 struct ext4_extent_header *eh;
1411
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001412 memcpy(&fc_inode, val, sizeof(fc_inode));
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001413
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001414 ino = le32_to_cpu(fc_inode.fc_ino);
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001415 trace_ext4_fc_replay(sb, tag, ino, 0, 0);
1416
1417 inode = ext4_iget(sb, ino, EXT4_IGET_NORMAL);
Yi Li6c557cb12020-12-30 11:38:27 +08001418 if (!IS_ERR(inode)) {
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001419 ext4_ext_clear_bb(inode);
1420 iput(inode);
1421 }
Yi Li6c557cb12020-12-30 11:38:27 +08001422 inode = NULL;
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001423
1424 ext4_fc_record_modified_inode(sb, ino);
1425
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001426 raw_fc_inode = (struct ext4_inode *)
1427 (val + offsetof(struct ext4_fc_inode, fc_raw_inode));
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001428 ret = ext4_get_fc_inode_loc(sb, ino, &iloc);
1429 if (ret)
1430 goto out;
1431
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001432 inode_len = le16_to_cpu(tl->fc_len) - sizeof(struct ext4_fc_inode);
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001433 raw_inode = ext4_raw_inode(&iloc);
1434
1435 memcpy(raw_inode, raw_fc_inode, offsetof(struct ext4_inode, i_block));
1436 memcpy(&raw_inode->i_generation, &raw_fc_inode->i_generation,
1437 inode_len - offsetof(struct ext4_inode, i_generation));
1438 if (le32_to_cpu(raw_inode->i_flags) & EXT4_EXTENTS_FL) {
1439 eh = (struct ext4_extent_header *)(&raw_inode->i_block[0]);
1440 if (eh->eh_magic != EXT4_EXT_MAGIC) {
1441 memset(eh, 0, sizeof(*eh));
1442 eh->eh_magic = EXT4_EXT_MAGIC;
1443 eh->eh_max = cpu_to_le16(
1444 (sizeof(raw_inode->i_block) -
1445 sizeof(struct ext4_extent_header))
1446 / sizeof(struct ext4_extent));
1447 }
1448 } else if (le32_to_cpu(raw_inode->i_flags) & EXT4_INLINE_DATA_FL) {
1449 memcpy(raw_inode->i_block, raw_fc_inode->i_block,
1450 sizeof(raw_inode->i_block));
1451 }
1452
1453 /* Immediately update the inode on disk. */
1454 ret = ext4_handle_dirty_metadata(NULL, NULL, iloc.bh);
1455 if (ret)
1456 goto out;
1457 ret = sync_dirty_buffer(iloc.bh);
1458 if (ret)
1459 goto out;
1460 ret = ext4_mark_inode_used(sb, ino);
1461 if (ret)
1462 goto out;
1463
1464 /* Given that we just wrote the inode on disk, this SHOULD succeed. */
1465 inode = ext4_iget(sb, ino, EXT4_IGET_NORMAL);
Yi Li6c557cb12020-12-30 11:38:27 +08001466 if (IS_ERR(inode)) {
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001467 jbd_debug(1, "Inode not found.");
1468 return -EFSCORRUPTED;
1469 }
1470
1471 /*
1472 * Our allocator could have made different decisions than before
1473 * crashing. This should be fixed but until then, we calculate
1474 * the number of blocks the inode.
1475 */
1476 ext4_ext_replay_set_iblocks(inode);
1477
1478 inode->i_generation = le32_to_cpu(ext4_raw_inode(&iloc)->i_generation);
1479 ext4_reset_inode_seed(inode);
1480
1481 ext4_inode_csum_set(inode, ext4_raw_inode(&iloc), EXT4_I(inode));
1482 ret = ext4_handle_dirty_metadata(NULL, NULL, iloc.bh);
1483 sync_dirty_buffer(iloc.bh);
1484 brelse(iloc.bh);
1485out:
1486 iput(inode);
1487 if (!ret)
1488 blkdev_issue_flush(sb->s_bdev, GFP_KERNEL);
1489
1490 return 0;
1491}
1492
1493/*
1494 * Dentry create replay function.
1495 *
1496 * EXT4_FC_TAG_CREAT is preceded by EXT4_FC_TAG_INODE_FULL. Which means, the
1497 * inode for which we are trying to create a dentry here, should already have
1498 * been replayed before we start here.
1499 */
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001500static int ext4_fc_replay_create(struct super_block *sb, struct ext4_fc_tl *tl,
1501 u8 *val)
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001502{
1503 int ret = 0;
1504 struct inode *inode = NULL;
1505 struct inode *dir = NULL;
1506 struct dentry_info_args darg;
1507
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001508 tl_to_darg(&darg, tl, val);
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001509
1510 trace_ext4_fc_replay(sb, EXT4_FC_TAG_CREAT, darg.ino,
1511 darg.parent_ino, darg.dname_len);
1512
1513 /* This takes care of update group descriptor and other metadata */
1514 ret = ext4_mark_inode_used(sb, darg.ino);
1515 if (ret)
1516 goto out;
1517
1518 inode = ext4_iget(sb, darg.ino, EXT4_IGET_NORMAL);
Yi Li6c557cb12020-12-30 11:38:27 +08001519 if (IS_ERR(inode)) {
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001520 jbd_debug(1, "inode %d not found.", darg.ino);
1521 inode = NULL;
1522 ret = -EINVAL;
1523 goto out;
1524 }
1525
1526 if (S_ISDIR(inode->i_mode)) {
1527 /*
1528 * If we are creating a directory, we need to make sure that the
1529 * dot and dot dot dirents are setup properly.
1530 */
1531 dir = ext4_iget(sb, darg.parent_ino, EXT4_IGET_NORMAL);
Yi Li6c557cb12020-12-30 11:38:27 +08001532 if (IS_ERR(dir)) {
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001533 jbd_debug(1, "Dir %d not found.", darg.ino);
1534 goto out;
1535 }
1536 ret = ext4_init_new_dir(NULL, dir, inode);
1537 iput(dir);
1538 if (ret) {
1539 ret = 0;
1540 goto out;
1541 }
1542 }
1543 ret = ext4_fc_replay_link_internal(sb, &darg, inode);
1544 if (ret)
1545 goto out;
1546 set_nlink(inode, 1);
1547 ext4_mark_inode_dirty(NULL, inode);
1548out:
1549 if (inode)
1550 iput(inode);
1551 return ret;
1552}
1553
1554/*
1555 * Record physical disk regions which are in use as per fast commit area. Our
1556 * simple replay phase allocator excludes these regions from allocation.
1557 */
1558static int ext4_fc_record_regions(struct super_block *sb, int ino,
1559 ext4_lblk_t lblk, ext4_fsblk_t pblk, int len)
1560{
1561 struct ext4_fc_replay_state *state;
1562 struct ext4_fc_alloc_region *region;
1563
1564 state = &EXT4_SB(sb)->s_fc_replay_state;
1565 if (state->fc_regions_used == state->fc_regions_size) {
1566 state->fc_regions_size +=
1567 EXT4_FC_REPLAY_REALLOC_INCREMENT;
1568 state->fc_regions = krealloc(
1569 state->fc_regions,
1570 state->fc_regions_size *
1571 sizeof(struct ext4_fc_alloc_region),
1572 GFP_KERNEL);
1573 if (!state->fc_regions)
1574 return -ENOMEM;
1575 }
1576 region = &state->fc_regions[state->fc_regions_used++];
1577 region->ino = ino;
1578 region->lblk = lblk;
1579 region->pblk = pblk;
1580 region->len = len;
1581
1582 return 0;
1583}
1584
1585/* Replay add range tag */
1586static int ext4_fc_replay_add_range(struct super_block *sb,
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001587 struct ext4_fc_tl *tl, u8 *val)
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001588{
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001589 struct ext4_fc_add_range fc_add_ex;
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001590 struct ext4_extent newex, *ex;
1591 struct inode *inode;
1592 ext4_lblk_t start, cur;
1593 int remaining, len;
1594 ext4_fsblk_t start_pblk;
1595 struct ext4_map_blocks map;
1596 struct ext4_ext_path *path = NULL;
1597 int ret;
1598
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001599 memcpy(&fc_add_ex, val, sizeof(fc_add_ex));
1600 ex = (struct ext4_extent *)&fc_add_ex.fc_ex;
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001601
1602 trace_ext4_fc_replay(sb, EXT4_FC_TAG_ADD_RANGE,
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001603 le32_to_cpu(fc_add_ex.fc_ino), le32_to_cpu(ex->ee_block),
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001604 ext4_ext_get_actual_len(ex));
1605
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001606 inode = ext4_iget(sb, le32_to_cpu(fc_add_ex.fc_ino), EXT4_IGET_NORMAL);
Yi Li6c557cb12020-12-30 11:38:27 +08001607 if (IS_ERR(inode)) {
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001608 jbd_debug(1, "Inode not found.");
1609 return 0;
1610 }
1611
1612 ret = ext4_fc_record_modified_inode(sb, inode->i_ino);
1613
1614 start = le32_to_cpu(ex->ee_block);
1615 start_pblk = ext4_ext_pblock(ex);
1616 len = ext4_ext_get_actual_len(ex);
1617
1618 cur = start;
1619 remaining = len;
1620 jbd_debug(1, "ADD_RANGE, lblk %d, pblk %lld, len %d, unwritten %d, inode %ld\n",
1621 start, start_pblk, len, ext4_ext_is_unwritten(ex),
1622 inode->i_ino);
1623
1624 while (remaining > 0) {
1625 map.m_lblk = cur;
1626 map.m_len = remaining;
1627 map.m_pblk = 0;
1628 ret = ext4_map_blocks(NULL, inode, &map, 0);
1629
1630 if (ret < 0) {
1631 iput(inode);
1632 return 0;
1633 }
1634
1635 if (ret == 0) {
1636 /* Range is not mapped */
1637 path = ext4_find_extent(inode, cur, NULL, 0);
Harshad Shirwadkar8c9be1e2020-10-27 13:43:42 -07001638 if (IS_ERR(path)) {
1639 iput(inode);
1640 return 0;
1641 }
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001642 memset(&newex, 0, sizeof(newex));
1643 newex.ee_block = cpu_to_le32(cur);
1644 ext4_ext_store_pblock(
1645 &newex, start_pblk + cur - start);
1646 newex.ee_len = cpu_to_le16(map.m_len);
1647 if (ext4_ext_is_unwritten(ex))
1648 ext4_ext_mark_unwritten(&newex);
1649 down_write(&EXT4_I(inode)->i_data_sem);
1650 ret = ext4_ext_insert_extent(
1651 NULL, inode, &path, &newex, 0);
1652 up_write((&EXT4_I(inode)->i_data_sem));
1653 ext4_ext_drop_refs(path);
1654 kfree(path);
1655 if (ret) {
1656 iput(inode);
1657 return 0;
1658 }
1659 goto next;
1660 }
1661
1662 if (start_pblk + cur - start != map.m_pblk) {
1663 /*
1664 * Logical to physical mapping changed. This can happen
1665 * if this range was removed and then reallocated to
1666 * map to new physical blocks during a fast commit.
1667 */
1668 ret = ext4_ext_replay_update_ex(inode, cur, map.m_len,
1669 ext4_ext_is_unwritten(ex),
1670 start_pblk + cur - start);
1671 if (ret) {
1672 iput(inode);
1673 return 0;
1674 }
1675 /*
1676 * Mark the old blocks as free since they aren't used
1677 * anymore. We maintain an array of all the modified
1678 * inodes. In case these blocks are still used at either
1679 * a different logical range in the same inode or in
1680 * some different inode, we will mark them as allocated
1681 * at the end of the FC replay using our array of
1682 * modified inodes.
1683 */
1684 ext4_mb_mark_bb(inode->i_sb, map.m_pblk, map.m_len, 0);
1685 goto next;
1686 }
1687
1688 /* Range is mapped and needs a state change */
Arnd Bergmann054add22021-04-09 22:12:05 +02001689 jbd_debug(1, "Converting from %ld to %d %lld",
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001690 map.m_flags & EXT4_MAP_UNWRITTEN,
1691 ext4_ext_is_unwritten(ex), map.m_pblk);
1692 ret = ext4_ext_replay_update_ex(inode, cur, map.m_len,
1693 ext4_ext_is_unwritten(ex), map.m_pblk);
1694 if (ret) {
1695 iput(inode);
1696 return 0;
1697 }
1698 /*
1699 * We may have split the extent tree while toggling the state.
1700 * Try to shrink the extent tree now.
1701 */
1702 ext4_ext_replay_shrink_inode(inode, start + len);
1703next:
1704 cur += map.m_len;
1705 remaining -= map.m_len;
1706 }
1707 ext4_ext_replay_shrink_inode(inode, i_size_read(inode) >>
1708 sb->s_blocksize_bits);
1709 iput(inode);
1710 return 0;
1711}
1712
1713/* Replay DEL_RANGE tag */
1714static int
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001715ext4_fc_replay_del_range(struct super_block *sb, struct ext4_fc_tl *tl,
1716 u8 *val)
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001717{
1718 struct inode *inode;
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001719 struct ext4_fc_del_range lrange;
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001720 struct ext4_map_blocks map;
1721 ext4_lblk_t cur, remaining;
1722 int ret;
1723
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001724 memcpy(&lrange, val, sizeof(lrange));
1725 cur = le32_to_cpu(lrange.fc_lblk);
1726 remaining = le32_to_cpu(lrange.fc_len);
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001727
1728 trace_ext4_fc_replay(sb, EXT4_FC_TAG_DEL_RANGE,
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001729 le32_to_cpu(lrange.fc_ino), cur, remaining);
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001730
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001731 inode = ext4_iget(sb, le32_to_cpu(lrange.fc_ino), EXT4_IGET_NORMAL);
Yi Li6c557cb12020-12-30 11:38:27 +08001732 if (IS_ERR(inode)) {
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001733 jbd_debug(1, "Inode %d not found", le32_to_cpu(lrange.fc_ino));
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001734 return 0;
1735 }
1736
1737 ret = ext4_fc_record_modified_inode(sb, inode->i_ino);
1738
1739 jbd_debug(1, "DEL_RANGE, inode %ld, lblk %d, len %d\n",
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001740 inode->i_ino, le32_to_cpu(lrange.fc_lblk),
1741 le32_to_cpu(lrange.fc_len));
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001742 while (remaining > 0) {
1743 map.m_lblk = cur;
1744 map.m_len = remaining;
1745
1746 ret = ext4_map_blocks(NULL, inode, &map, 0);
1747 if (ret < 0) {
1748 iput(inode);
1749 return 0;
1750 }
1751 if (ret > 0) {
1752 remaining -= ret;
1753 cur += ret;
1754 ext4_mb_mark_bb(inode->i_sb, map.m_pblk, map.m_len, 0);
1755 } else {
1756 remaining -= map.m_len;
1757 cur += map.m_len;
1758 }
1759 }
1760
1761 ret = ext4_punch_hole(inode,
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001762 le32_to_cpu(lrange.fc_lblk) << sb->s_blocksize_bits,
1763 le32_to_cpu(lrange.fc_len) << sb->s_blocksize_bits);
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001764 if (ret)
1765 jbd_debug(1, "ext4_punch_hole returned %d", ret);
1766 ext4_ext_replay_shrink_inode(inode,
1767 i_size_read(inode) >> sb->s_blocksize_bits);
1768 ext4_mark_inode_dirty(NULL, inode);
1769 iput(inode);
1770
1771 return 0;
1772}
1773
1774static inline const char *tag2str(u16 tag)
1775{
1776 switch (tag) {
1777 case EXT4_FC_TAG_LINK:
1778 return "TAG_ADD_ENTRY";
1779 case EXT4_FC_TAG_UNLINK:
1780 return "TAG_DEL_ENTRY";
1781 case EXT4_FC_TAG_ADD_RANGE:
1782 return "TAG_ADD_RANGE";
1783 case EXT4_FC_TAG_CREAT:
1784 return "TAG_CREAT_DENTRY";
1785 case EXT4_FC_TAG_DEL_RANGE:
1786 return "TAG_DEL_RANGE";
1787 case EXT4_FC_TAG_INODE:
1788 return "TAG_INODE";
1789 case EXT4_FC_TAG_PAD:
1790 return "TAG_PAD";
1791 case EXT4_FC_TAG_TAIL:
1792 return "TAG_TAIL";
1793 case EXT4_FC_TAG_HEAD:
1794 return "TAG_HEAD";
1795 default:
1796 return "TAG_ERROR";
1797 }
1798}
1799
1800static void ext4_fc_set_bitmaps_and_counters(struct super_block *sb)
1801{
1802 struct ext4_fc_replay_state *state;
1803 struct inode *inode;
1804 struct ext4_ext_path *path = NULL;
1805 struct ext4_map_blocks map;
1806 int i, ret, j;
1807 ext4_lblk_t cur, end;
1808
1809 state = &EXT4_SB(sb)->s_fc_replay_state;
1810 for (i = 0; i < state->fc_modified_inodes_used; i++) {
1811 inode = ext4_iget(sb, state->fc_modified_inodes[i],
1812 EXT4_IGET_NORMAL);
Yi Li6c557cb12020-12-30 11:38:27 +08001813 if (IS_ERR(inode)) {
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001814 jbd_debug(1, "Inode %d not found.",
1815 state->fc_modified_inodes[i]);
1816 continue;
1817 }
1818 cur = 0;
1819 end = EXT_MAX_BLOCKS;
1820 while (cur < end) {
1821 map.m_lblk = cur;
1822 map.m_len = end - cur;
1823
1824 ret = ext4_map_blocks(NULL, inode, &map, 0);
1825 if (ret < 0)
1826 break;
1827
1828 if (ret > 0) {
1829 path = ext4_find_extent(inode, map.m_lblk, NULL, 0);
Yi Li6c557cb12020-12-30 11:38:27 +08001830 if (!IS_ERR(path)) {
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001831 for (j = 0; j < path->p_depth; j++)
1832 ext4_mb_mark_bb(inode->i_sb,
1833 path[j].p_block, 1, 1);
1834 ext4_ext_drop_refs(path);
1835 kfree(path);
1836 }
1837 cur += ret;
1838 ext4_mb_mark_bb(inode->i_sb, map.m_pblk,
1839 map.m_len, 1);
1840 } else {
1841 cur = cur + (map.m_len ? map.m_len : 1);
1842 }
1843 }
1844 iput(inode);
1845 }
1846}
1847
1848/*
1849 * Check if block is in excluded regions for block allocation. The simple
1850 * allocator that runs during replay phase is calls this function to see
1851 * if it is okay to use a block.
1852 */
1853bool ext4_fc_replay_check_excluded(struct super_block *sb, ext4_fsblk_t blk)
1854{
1855 int i;
1856 struct ext4_fc_replay_state *state;
1857
1858 state = &EXT4_SB(sb)->s_fc_replay_state;
1859 for (i = 0; i < state->fc_regions_valid; i++) {
1860 if (state->fc_regions[i].ino == 0 ||
1861 state->fc_regions[i].len == 0)
1862 continue;
1863 if (blk >= state->fc_regions[i].pblk &&
1864 blk < state->fc_regions[i].pblk + state->fc_regions[i].len)
1865 return true;
1866 }
1867 return false;
1868}
1869
1870/* Cleanup function called after replay */
1871void ext4_fc_replay_cleanup(struct super_block *sb)
1872{
1873 struct ext4_sb_info *sbi = EXT4_SB(sb);
1874
1875 sbi->s_mount_state &= ~EXT4_FC_REPLAY;
1876 kfree(sbi->s_fc_replay_state.fc_regions);
1877 kfree(sbi->s_fc_replay_state.fc_modified_inodes);
1878}
1879
1880/*
1881 * Recovery Scan phase handler
1882 *
1883 * This function is called during the scan phase and is responsible
1884 * for doing following things:
1885 * - Make sure the fast commit area has valid tags for replay
1886 * - Count number of tags that need to be replayed by the replay handler
1887 * - Verify CRC
1888 * - Create a list of excluded blocks for allocation during replay phase
1889 *
1890 * This function returns JBD2_FC_REPLAY_CONTINUE to indicate that SCAN is
1891 * incomplete and JBD2 should send more blocks. It returns JBD2_FC_REPLAY_STOP
1892 * to indicate that scan has finished and JBD2 can now start replay phase.
1893 * It returns a negative error to indicate that there was an error. At the end
1894 * of a successful scan phase, sbi->s_fc_replay_state.fc_replay_num_tags is set
1895 * to indicate the number of tags that need to replayed during the replay phase.
1896 */
1897static int ext4_fc_replay_scan(journal_t *journal,
1898 struct buffer_head *bh, int off,
1899 tid_t expected_tid)
1900{
1901 struct super_block *sb = journal->j_private;
1902 struct ext4_sb_info *sbi = EXT4_SB(sb);
1903 struct ext4_fc_replay_state *state;
1904 int ret = JBD2_FC_REPLAY_CONTINUE;
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001905 struct ext4_fc_add_range ext;
1906 struct ext4_fc_tl tl;
1907 struct ext4_fc_tail tail;
1908 __u8 *start, *end, *cur, *val;
1909 struct ext4_fc_head head;
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001910 struct ext4_extent *ex;
1911
1912 state = &sbi->s_fc_replay_state;
1913
1914 start = (u8 *)bh->b_data;
1915 end = (__u8 *)bh->b_data + journal->j_blocksize - 1;
1916
1917 if (state->fc_replay_expected_off == 0) {
1918 state->fc_cur_tag = 0;
1919 state->fc_replay_num_tags = 0;
1920 state->fc_crc = 0;
1921 state->fc_regions = NULL;
1922 state->fc_regions_valid = state->fc_regions_used =
1923 state->fc_regions_size = 0;
1924 /* Check if we can stop early */
1925 if (le16_to_cpu(((struct ext4_fc_tl *)start)->fc_tag)
1926 != EXT4_FC_TAG_HEAD)
1927 return 0;
1928 }
1929
1930 if (off != state->fc_replay_expected_off) {
1931 ret = -EFSCORRUPTED;
1932 goto out_err;
1933 }
1934
1935 state->fc_replay_expected_off++;
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001936 for (cur = start; cur < end; cur = cur + sizeof(tl) + le16_to_cpu(tl.fc_len)) {
1937 memcpy(&tl, cur, sizeof(tl));
1938 val = cur + sizeof(tl);
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001939 jbd_debug(3, "Scan phase, tag:%s, blk %lld\n",
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001940 tag2str(le16_to_cpu(tl.fc_tag)), bh->b_blocknr);
1941 switch (le16_to_cpu(tl.fc_tag)) {
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001942 case EXT4_FC_TAG_ADD_RANGE:
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001943 memcpy(&ext, val, sizeof(ext));
1944 ex = (struct ext4_extent *)&ext.fc_ex;
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001945 ret = ext4_fc_record_regions(sb,
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001946 le32_to_cpu(ext.fc_ino),
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001947 le32_to_cpu(ex->ee_block), ext4_ext_pblock(ex),
1948 ext4_ext_get_actual_len(ex));
1949 if (ret < 0)
1950 break;
1951 ret = JBD2_FC_REPLAY_CONTINUE;
1952 fallthrough;
1953 case EXT4_FC_TAG_DEL_RANGE:
1954 case EXT4_FC_TAG_LINK:
1955 case EXT4_FC_TAG_UNLINK:
1956 case EXT4_FC_TAG_CREAT:
1957 case EXT4_FC_TAG_INODE:
1958 case EXT4_FC_TAG_PAD:
1959 state->fc_cur_tag++;
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001960 state->fc_crc = ext4_chksum(sbi, state->fc_crc, cur,
1961 sizeof(tl) + le16_to_cpu(tl.fc_len));
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001962 break;
1963 case EXT4_FC_TAG_TAIL:
1964 state->fc_cur_tag++;
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001965 memcpy(&tail, val, sizeof(tail));
1966 state->fc_crc = ext4_chksum(sbi, state->fc_crc, cur,
1967 sizeof(tl) +
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001968 offsetof(struct ext4_fc_tail,
1969 fc_crc));
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001970 if (le32_to_cpu(tail.fc_tid) == expected_tid &&
1971 le32_to_cpu(tail.fc_crc) == state->fc_crc) {
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001972 state->fc_replay_num_tags = state->fc_cur_tag;
1973 state->fc_regions_valid =
1974 state->fc_regions_used;
1975 } else {
1976 ret = state->fc_replay_num_tags ?
1977 JBD2_FC_REPLAY_STOP : -EFSBADCRC;
1978 }
1979 state->fc_crc = 0;
1980 break;
1981 case EXT4_FC_TAG_HEAD:
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001982 memcpy(&head, val, sizeof(head));
1983 if (le32_to_cpu(head.fc_features) &
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001984 ~EXT4_FC_SUPPORTED_FEATURES) {
1985 ret = -EOPNOTSUPP;
1986 break;
1987 }
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001988 if (le32_to_cpu(head.fc_tid) != expected_tid) {
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001989 ret = JBD2_FC_REPLAY_STOP;
1990 break;
1991 }
1992 state->fc_cur_tag++;
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07001993 state->fc_crc = ext4_chksum(sbi, state->fc_crc, cur,
1994 sizeof(tl) + le16_to_cpu(tl.fc_len));
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001995 break;
1996 default:
1997 ret = state->fc_replay_num_tags ?
1998 JBD2_FC_REPLAY_STOP : -ECANCELED;
1999 }
2000 if (ret < 0 || ret == JBD2_FC_REPLAY_STOP)
2001 break;
2002 }
2003
2004out_err:
2005 trace_ext4_fc_replay_scan(sb, ret, off);
2006 return ret;
2007}
2008
Harshad Shirwadkar5b849b52020-10-15 13:37:58 -07002009/*
2010 * Main recovery path entry point.
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07002011 * The meaning of return codes is similar as above.
Harshad Shirwadkar5b849b52020-10-15 13:37:58 -07002012 */
2013static int ext4_fc_replay(journal_t *journal, struct buffer_head *bh,
2014 enum passtype pass, int off, tid_t expected_tid)
2015{
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07002016 struct super_block *sb = journal->j_private;
2017 struct ext4_sb_info *sbi = EXT4_SB(sb);
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07002018 struct ext4_fc_tl tl;
2019 __u8 *start, *end, *cur, *val;
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07002020 int ret = JBD2_FC_REPLAY_CONTINUE;
2021 struct ext4_fc_replay_state *state = &sbi->s_fc_replay_state;
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07002022 struct ext4_fc_tail tail;
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07002023
2024 if (pass == PASS_SCAN) {
2025 state->fc_current_pass = PASS_SCAN;
2026 return ext4_fc_replay_scan(journal, bh, off, expected_tid);
2027 }
2028
2029 if (state->fc_current_pass != pass) {
2030 state->fc_current_pass = pass;
2031 sbi->s_mount_state |= EXT4_FC_REPLAY;
2032 }
2033 if (!sbi->s_fc_replay_state.fc_replay_num_tags) {
2034 jbd_debug(1, "Replay stops\n");
2035 ext4_fc_set_bitmaps_and_counters(sb);
2036 return 0;
2037 }
2038
2039#ifdef CONFIG_EXT4_DEBUG
2040 if (sbi->s_fc_debug_max_replay && off >= sbi->s_fc_debug_max_replay) {
2041 pr_warn("Dropping fc block %d because max_replay set\n", off);
2042 return JBD2_FC_REPLAY_STOP;
2043 }
2044#endif
2045
2046 start = (u8 *)bh->b_data;
2047 end = (__u8 *)bh->b_data + journal->j_blocksize - 1;
2048
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07002049 for (cur = start; cur < end; cur = cur + sizeof(tl) + le16_to_cpu(tl.fc_len)) {
2050 memcpy(&tl, cur, sizeof(tl));
2051 val = cur + sizeof(tl);
2052
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07002053 if (state->fc_replay_num_tags == 0) {
2054 ret = JBD2_FC_REPLAY_STOP;
2055 ext4_fc_set_bitmaps_and_counters(sb);
2056 break;
2057 }
2058 jbd_debug(3, "Replay phase, tag:%s\n",
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07002059 tag2str(le16_to_cpu(tl.fc_tag)));
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07002060 state->fc_replay_num_tags--;
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07002061 switch (le16_to_cpu(tl.fc_tag)) {
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07002062 case EXT4_FC_TAG_LINK:
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07002063 ret = ext4_fc_replay_link(sb, &tl, val);
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07002064 break;
2065 case EXT4_FC_TAG_UNLINK:
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07002066 ret = ext4_fc_replay_unlink(sb, &tl, val);
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07002067 break;
2068 case EXT4_FC_TAG_ADD_RANGE:
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07002069 ret = ext4_fc_replay_add_range(sb, &tl, val);
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07002070 break;
2071 case EXT4_FC_TAG_CREAT:
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07002072 ret = ext4_fc_replay_create(sb, &tl, val);
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07002073 break;
2074 case EXT4_FC_TAG_DEL_RANGE:
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07002075 ret = ext4_fc_replay_del_range(sb, &tl, val);
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07002076 break;
2077 case EXT4_FC_TAG_INODE:
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07002078 ret = ext4_fc_replay_inode(sb, &tl, val);
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07002079 break;
2080 case EXT4_FC_TAG_PAD:
2081 trace_ext4_fc_replay(sb, EXT4_FC_TAG_PAD, 0,
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07002082 le16_to_cpu(tl.fc_len), 0);
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07002083 break;
2084 case EXT4_FC_TAG_TAIL:
2085 trace_ext4_fc_replay(sb, EXT4_FC_TAG_TAIL, 0,
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07002086 le16_to_cpu(tl.fc_len), 0);
2087 memcpy(&tail, val, sizeof(tail));
2088 WARN_ON(le32_to_cpu(tail.fc_tid) != expected_tid);
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07002089 break;
2090 case EXT4_FC_TAG_HEAD:
2091 break;
2092 default:
Harshad Shirwadkarfb86acc2021-05-19 14:59:20 -07002093 trace_ext4_fc_replay(sb, le16_to_cpu(tl.fc_tag), 0,
2094 le16_to_cpu(tl.fc_len), 0);
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07002095 ret = -ECANCELED;
2096 break;
2097 }
2098 if (ret < 0)
2099 break;
2100 ret = JBD2_FC_REPLAY_CONTINUE;
2101 }
2102 return ret;
Harshad Shirwadkar5b849b52020-10-15 13:37:58 -07002103}
2104
Harshad Shirwadkar6866d7b2020-10-15 13:37:55 -07002105void ext4_fc_init(struct super_block *sb, journal_t *journal)
2106{
Harshad Shirwadkar5b849b52020-10-15 13:37:58 -07002107 /*
2108 * We set replay callback even if fast commit disabled because we may
2109 * could still have fast commit blocks that need to be replayed even if
2110 * fast commit has now been turned off.
2111 */
2112 journal->j_fc_replay_callback = ext4_fc_replay;
Harshad Shirwadkar6866d7b2020-10-15 13:37:55 -07002113 if (!test_opt2(sb, JOURNAL_FAST_COMMIT))
2114 return;
Harshad Shirwadkarff780b92020-10-15 13:37:56 -07002115 journal->j_fc_cleanup_callback = ext4_fc_cleanup;
Harshad Shirwadkar6866d7b2020-10-15 13:37:55 -07002116}
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07002117
Theodore Ts'ofa329e2732020-11-06 23:59:42 -05002118static const char *fc_ineligible_reasons[] = {
Harshad Shirwadkarce8c59d2020-10-15 13:38:01 -07002119 "Extended attributes changed",
2120 "Cross rename",
2121 "Journal flag changed",
2122 "Insufficient memory",
2123 "Swap boot",
2124 "Resize",
2125 "Dir renamed",
2126 "Falloc range op",
Harshad Shirwadkar556e0312020-11-05 19:59:07 -08002127 "Data journalling",
Harshad Shirwadkarce8c59d2020-10-15 13:38:01 -07002128 "FC Commit Failed"
2129};
2130
2131int ext4_fc_info_show(struct seq_file *seq, void *v)
2132{
2133 struct ext4_sb_info *sbi = EXT4_SB((struct super_block *)seq->private);
2134 struct ext4_fc_stats *stats = &sbi->s_fc_stats;
2135 int i;
2136
2137 if (v != SEQ_START_TOKEN)
2138 return 0;
2139
2140 seq_printf(seq,
2141 "fc stats:\n%ld commits\n%ld ineligible\n%ld numblks\n%lluus avg_commit_time\n",
2142 stats->fc_num_commits, stats->fc_ineligible_commits,
2143 stats->fc_numblks,
2144 div_u64(sbi->s_fc_avg_commit_time, 1000));
2145 seq_puts(seq, "Ineligible reasons:\n");
2146 for (i = 0; i < EXT4_FC_REASON_MAX; i++)
2147 seq_printf(seq, "\"%s\":\t%d\n", fc_ineligible_reasons[i],
2148 stats->fc_ineligible_reason_count[i]);
2149
2150 return 0;
2151}
2152
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07002153int __init ext4_fc_init_dentry_cache(void)
2154{
2155 ext4_fc_dentry_cachep = KMEM_CACHE(ext4_fc_dentry_update,
2156 SLAB_RECLAIM_ACCOUNT);
2157
2158 if (ext4_fc_dentry_cachep == NULL)
2159 return -ENOMEM;
2160
2161 return 0;
2162}