1 // SPDX-License-Identifier: GPL-2.0
3 * Interface between ext4 and JBD
8 #include <trace/events/ext4.h>
10 int ext4_inode_journal_mode(struct inode *inode)
12 if (EXT4_JOURNAL(inode) == NULL)
13 return EXT4_INODE_WRITEBACK_DATA_MODE; /* writeback */
14 /* We do not support data journalling with delayed allocation */
15 if (!S_ISREG(inode->i_mode) ||
16 ext4_test_inode_flag(inode, EXT4_INODE_EA_INODE) ||
17 test_opt(inode->i_sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA ||
18 (ext4_test_inode_flag(inode, EXT4_INODE_JOURNAL_DATA) &&
19 !test_opt(inode->i_sb, DELALLOC))) {
20 /* We do not support data journalling for encrypted data */
21 if (S_ISREG(inode->i_mode) && IS_ENCRYPTED(inode))
22 return EXT4_INODE_ORDERED_DATA_MODE; /* ordered */
23 return EXT4_INODE_JOURNAL_DATA_MODE; /* journal data */
25 if (test_opt(inode->i_sb, DATA_FLAGS) == EXT4_MOUNT_ORDERED_DATA)
26 return EXT4_INODE_ORDERED_DATA_MODE; /* ordered */
27 if (test_opt(inode->i_sb, DATA_FLAGS) == EXT4_MOUNT_WRITEBACK_DATA)
28 return EXT4_INODE_WRITEBACK_DATA_MODE; /* writeback */
32 /* Just increment the non-pointer handle value */
33 static handle_t *ext4_get_nojournal(void)
35 handle_t *handle = current->journal_info;
36 unsigned long ref_cnt = (unsigned long)handle;
38 BUG_ON(ref_cnt >= EXT4_NOJOURNAL_MAX_REF_COUNT);
41 handle = (handle_t *)ref_cnt;
43 current->journal_info = handle;
48 /* Decrement the non-pointer handle value */
49 static void ext4_put_nojournal(handle_t *handle)
51 unsigned long ref_cnt = (unsigned long)handle;
56 handle = (handle_t *)ref_cnt;
58 current->journal_info = handle;
62 * Wrappers for jbd2_journal_start/end.
64 static int ext4_journal_check_start(struct super_block *sb)
70 if (unlikely(ext4_forced_shutdown(EXT4_SB(sb))))
75 WARN_ON(sb->s_writers.frozen == SB_FREEZE_COMPLETE);
76 journal = EXT4_SB(sb)->s_journal;
78 * Special case here: if the journal has aborted behind our
79 * backs (eg. EIO in the commit thread), then we still need to
80 * take the FS itself readonly cleanly.
82 if (journal && is_journal_aborted(journal)) {
83 ext4_abort(sb, -journal->j_errno, "Detected aborted journal");
89 handle_t *__ext4_journal_start_sb(struct super_block *sb, unsigned int line,
90 int type, int blocks, int rsv_blocks,
96 trace_ext4_journal_start(sb, blocks, rsv_blocks, revoke_creds,
98 err = ext4_journal_check_start(sb);
102 journal = EXT4_SB(sb)->s_journal;
103 if (!journal || (EXT4_SB(sb)->s_mount_state & EXT4_FC_REPLAY))
104 return ext4_get_nojournal();
105 return jbd2__journal_start(journal, blocks, rsv_blocks, revoke_creds,
106 GFP_NOFS, type, line);
109 int __ext4_journal_stop(const char *where, unsigned int line, handle_t *handle)
111 struct super_block *sb;
115 if (!ext4_handle_valid(handle)) {
116 ext4_put_nojournal(handle);
121 if (!handle->h_transaction) {
122 rc = jbd2_journal_stop(handle);
123 return err ? err : rc;
126 sb = handle->h_transaction->t_journal->j_private;
127 rc = jbd2_journal_stop(handle);
132 __ext4_std_error(sb, where, line, err);
136 handle_t *__ext4_journal_start_reserved(handle_t *handle, unsigned int line,
139 struct super_block *sb;
142 if (!ext4_handle_valid(handle))
143 return ext4_get_nojournal();
145 sb = handle->h_journal->j_private;
146 trace_ext4_journal_start_reserved(sb,
147 jbd2_handle_buffer_credits(handle), _RET_IP_);
148 err = ext4_journal_check_start(sb);
150 jbd2_journal_free_reserved(handle);
154 err = jbd2_journal_start_reserved(handle, type, line);
160 int __ext4_journal_ensure_credits(handle_t *handle, int check_cred,
161 int extend_cred, int revoke_cred)
163 if (!ext4_handle_valid(handle))
165 if (jbd2_handle_buffer_credits(handle) >= check_cred &&
166 handle->h_revoke_credits >= revoke_cred)
168 extend_cred = max(0, extend_cred - jbd2_handle_buffer_credits(handle));
169 revoke_cred = max(0, revoke_cred - handle->h_revoke_credits);
170 return ext4_journal_extend(handle, extend_cred, revoke_cred);
173 static void ext4_journal_abort_handle(const char *caller, unsigned int line,
175 struct buffer_head *bh,
176 handle_t *handle, int err)
179 const char *errstr = ext4_decode_error(NULL, err, nbuf);
181 BUG_ON(!ext4_handle_valid(handle));
184 BUFFER_TRACE(bh, "abort");
189 if (is_handle_aborted(handle))
192 printk(KERN_ERR "EXT4-fs: %s:%d: aborting transaction: %s in %s\n",
193 caller, line, errstr, err_fn);
195 jbd2_journal_abort_handle(handle);
198 static void ext4_check_bdev_write_error(struct super_block *sb)
200 struct address_space *mapping = sb->s_bdev->bd_inode->i_mapping;
201 struct ext4_sb_info *sbi = EXT4_SB(sb);
205 * If the block device has write error flag, it may have failed to
206 * async write out metadata buffers in the background. In this case,
207 * we could read old data from disk and write it out again, which
208 * may lead to on-disk filesystem inconsistency.
210 if (errseq_check(&mapping->wb_err, READ_ONCE(sbi->s_bdev_wb_err))) {
211 spin_lock(&sbi->s_bdev_wb_lock);
212 err = errseq_check_and_advance(&mapping->wb_err, &sbi->s_bdev_wb_err);
213 spin_unlock(&sbi->s_bdev_wb_lock);
215 ext4_error_err(sb, -err,
216 "Error while async write back metadata");
220 int __ext4_journal_get_write_access(const char *where, unsigned int line,
221 handle_t *handle, struct super_block *sb,
222 struct buffer_head *bh,
223 enum ext4_journal_trigger_type trigger_type)
229 if (bh->b_bdev->bd_super)
230 ext4_check_bdev_write_error(bh->b_bdev->bd_super);
232 if (ext4_handle_valid(handle)) {
233 err = jbd2_journal_get_write_access(handle, bh);
235 ext4_journal_abort_handle(where, line, __func__, bh,
240 if (trigger_type == EXT4_JTR_NONE || !ext4_has_metadata_csum(sb))
242 BUG_ON(trigger_type >= EXT4_JOURNAL_TRIGGER_COUNT);
243 jbd2_journal_set_triggers(bh,
244 &EXT4_SB(sb)->s_journal_triggers[trigger_type].tr_triggers);
249 * The ext4 forget function must perform a revoke if we are freeing data
250 * which has been journaled. Metadata (eg. indirect blocks) must be
251 * revoked in all cases.
253 * "bh" may be NULL: a metadata block may have been freed from memory
254 * but there may still be a record of it in the journal, and that record
255 * still needs to be revoked.
257 int __ext4_forget(const char *where, unsigned int line, handle_t *handle,
258 int is_metadata, struct inode *inode,
259 struct buffer_head *bh, ext4_fsblk_t blocknr)
265 trace_ext4_forget(inode, is_metadata, blocknr);
266 BUFFER_TRACE(bh, "enter");
268 jbd_debug(4, "forgetting bh %p: is_metadata = %d, mode %o, "
270 bh, is_metadata, inode->i_mode,
271 test_opt(inode->i_sb, DATA_FLAGS));
273 /* In the no journal case, we can just do a bforget and return */
274 if (!ext4_handle_valid(handle)) {
279 /* Never use the revoke function if we are doing full data
280 * journaling: there is no need to, and a V1 superblock won't
281 * support it. Otherwise, only skip the revoke on un-journaled
284 if (test_opt(inode->i_sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA ||
285 (!is_metadata && !ext4_should_journal_data(inode))) {
287 BUFFER_TRACE(bh, "call jbd2_journal_forget");
288 err = jbd2_journal_forget(handle, bh);
290 ext4_journal_abort_handle(where, line, __func__,
298 * data!=journal && (is_metadata || should_journal_data(inode))
300 BUFFER_TRACE(bh, "call jbd2_journal_revoke");
301 err = jbd2_journal_revoke(handle, blocknr, bh);
303 ext4_journal_abort_handle(where, line, __func__,
305 __ext4_error(inode->i_sb, where, line, true, -err, 0,
306 "error %d when attempting revoke", err);
308 BUFFER_TRACE(bh, "exit");
312 int __ext4_journal_get_create_access(const char *where, unsigned int line,
313 handle_t *handle, struct super_block *sb,
314 struct buffer_head *bh,
315 enum ext4_journal_trigger_type trigger_type)
319 if (!ext4_handle_valid(handle))
322 err = jbd2_journal_get_create_access(handle, bh);
324 ext4_journal_abort_handle(where, line, __func__, bh, handle,
328 if (trigger_type == EXT4_JTR_NONE || !ext4_has_metadata_csum(sb))
330 BUG_ON(trigger_type >= EXT4_JOURNAL_TRIGGER_COUNT);
331 jbd2_journal_set_triggers(bh,
332 &EXT4_SB(sb)->s_journal_triggers[trigger_type].tr_triggers);
336 int __ext4_handle_dirty_metadata(const char *where, unsigned int line,
337 handle_t *handle, struct inode *inode,
338 struct buffer_head *bh)
346 set_buffer_uptodate(bh);
347 if (ext4_handle_valid(handle)) {
348 err = jbd2_journal_dirty_metadata(handle, bh);
349 /* Errors can only happen due to aborted journal or a nasty bug */
350 if (!is_handle_aborted(handle) && WARN_ON_ONCE(err)) {
351 ext4_journal_abort_handle(where, line, __func__, bh,
354 pr_err("EXT4: jbd2_journal_dirty_metadata "
355 "failed: handle type %u started at "
356 "line %u, credits %u/%u, errcode %d",
359 handle->h_requested_credits,
360 jbd2_handle_buffer_credits(handle), err);
363 ext4_error_inode(inode, where, line,
365 "journal_dirty_metadata failed: "
366 "handle type %u started at line %u, "
367 "credits %u/%u, errcode %d",
370 handle->h_requested_credits,
371 jbd2_handle_buffer_credits(handle),
376 mark_buffer_dirty_inode(bh, inode);
378 mark_buffer_dirty(bh);
379 if (inode && inode_needs_sync(inode)) {
380 sync_dirty_buffer(bh);
381 if (buffer_req(bh) && !buffer_uptodate(bh)) {
382 ext4_error_inode_err(inode, where, line,
384 "IO error syncing itable block");