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(sb)))
73 if (WARN_ON_ONCE(sb_rdonly(sb)))
76 WARN_ON(sb->s_writers.frozen == SB_FREEZE_COMPLETE);
77 journal = EXT4_SB(sb)->s_journal;
79 * Special case here: if the journal has aborted behind our
80 * backs (eg. EIO in the commit thread), then we still need to
81 * take the FS itself readonly cleanly.
83 if (journal && is_journal_aborted(journal)) {
84 ext4_abort(sb, -journal->j_errno, "Detected aborted journal");
90 handle_t *__ext4_journal_start_sb(struct inode *inode,
91 struct super_block *sb, unsigned int line,
92 int type, int blocks, int rsv_blocks,
98 trace_ext4_journal_start_inode(inode, blocks, rsv_blocks,
102 trace_ext4_journal_start_sb(sb, blocks, rsv_blocks,
105 err = ext4_journal_check_start(sb);
109 journal = EXT4_SB(sb)->s_journal;
110 if (!journal || (EXT4_SB(sb)->s_mount_state & EXT4_FC_REPLAY))
111 return ext4_get_nojournal();
112 return jbd2__journal_start(journal, blocks, rsv_blocks, revoke_creds,
113 GFP_NOFS, type, line);
116 int __ext4_journal_stop(const char *where, unsigned int line, handle_t *handle)
118 struct super_block *sb;
122 if (!ext4_handle_valid(handle)) {
123 ext4_put_nojournal(handle);
128 if (!handle->h_transaction) {
129 rc = jbd2_journal_stop(handle);
130 return err ? err : rc;
133 sb = handle->h_transaction->t_journal->j_private;
134 rc = jbd2_journal_stop(handle);
139 __ext4_std_error(sb, where, line, err);
143 handle_t *__ext4_journal_start_reserved(handle_t *handle, unsigned int line,
146 struct super_block *sb;
149 if (!ext4_handle_valid(handle))
150 return ext4_get_nojournal();
152 sb = handle->h_journal->j_private;
153 trace_ext4_journal_start_reserved(sb,
154 jbd2_handle_buffer_credits(handle), _RET_IP_);
155 err = ext4_journal_check_start(sb);
157 jbd2_journal_free_reserved(handle);
161 err = jbd2_journal_start_reserved(handle, type, line);
167 int __ext4_journal_ensure_credits(handle_t *handle, int check_cred,
168 int extend_cred, int revoke_cred)
170 if (!ext4_handle_valid(handle))
172 if (is_handle_aborted(handle))
174 if (jbd2_handle_buffer_credits(handle) >= check_cred &&
175 handle->h_revoke_credits >= revoke_cred)
177 extend_cred = max(0, extend_cred - jbd2_handle_buffer_credits(handle));
178 revoke_cred = max(0, revoke_cred - handle->h_revoke_credits);
179 return ext4_journal_extend(handle, extend_cred, revoke_cred);
182 static void ext4_journal_abort_handle(const char *caller, unsigned int line,
184 struct buffer_head *bh,
185 handle_t *handle, int err)
188 const char *errstr = ext4_decode_error(NULL, err, nbuf);
190 BUG_ON(!ext4_handle_valid(handle));
193 BUFFER_TRACE(bh, "abort");
198 if (is_handle_aborted(handle))
201 printk(KERN_ERR "EXT4-fs: %s:%d: aborting transaction: %s in %s\n",
202 caller, line, errstr, err_fn);
204 jbd2_journal_abort_handle(handle);
207 static void ext4_check_bdev_write_error(struct super_block *sb)
209 struct address_space *mapping = sb->s_bdev->bd_inode->i_mapping;
210 struct ext4_sb_info *sbi = EXT4_SB(sb);
214 * If the block device has write error flag, it may have failed to
215 * async write out metadata buffers in the background. In this case,
216 * we could read old data from disk and write it out again, which
217 * may lead to on-disk filesystem inconsistency.
219 if (errseq_check(&mapping->wb_err, READ_ONCE(sbi->s_bdev_wb_err))) {
220 spin_lock(&sbi->s_bdev_wb_lock);
221 err = errseq_check_and_advance(&mapping->wb_err, &sbi->s_bdev_wb_err);
222 spin_unlock(&sbi->s_bdev_wb_lock);
224 ext4_error_err(sb, -err,
225 "Error while async write back metadata");
229 int __ext4_journal_get_write_access(const char *where, unsigned int line,
230 handle_t *handle, struct super_block *sb,
231 struct buffer_head *bh,
232 enum ext4_journal_trigger_type trigger_type)
238 ext4_check_bdev_write_error(sb);
240 if (ext4_handle_valid(handle)) {
241 err = jbd2_journal_get_write_access(handle, bh);
243 ext4_journal_abort_handle(where, line, __func__, bh,
248 if (trigger_type == EXT4_JTR_NONE || !ext4_has_metadata_csum(sb))
250 BUG_ON(trigger_type >= EXT4_JOURNAL_TRIGGER_COUNT);
251 jbd2_journal_set_triggers(bh,
252 &EXT4_SB(sb)->s_journal_triggers[trigger_type].tr_triggers);
257 * The ext4 forget function must perform a revoke if we are freeing data
258 * which has been journaled. Metadata (eg. indirect blocks) must be
259 * revoked in all cases.
261 * "bh" may be NULL: a metadata block may have been freed from memory
262 * but there may still be a record of it in the journal, and that record
263 * still needs to be revoked.
265 int __ext4_forget(const char *where, unsigned int line, handle_t *handle,
266 int is_metadata, struct inode *inode,
267 struct buffer_head *bh, ext4_fsblk_t blocknr)
273 trace_ext4_forget(inode, is_metadata, blocknr);
274 BUFFER_TRACE(bh, "enter");
276 ext4_debug("forgetting bh %p: is_metadata=%d, mode %o, data mode %x\n",
277 bh, is_metadata, inode->i_mode,
278 test_opt(inode->i_sb, DATA_FLAGS));
280 /* In the no journal case, we can just do a bforget and return */
281 if (!ext4_handle_valid(handle)) {
286 /* Never use the revoke function if we are doing full data
287 * journaling: there is no need to, and a V1 superblock won't
288 * support it. Otherwise, only skip the revoke on un-journaled
291 if (test_opt(inode->i_sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA ||
292 (!is_metadata && !ext4_should_journal_data(inode))) {
294 BUFFER_TRACE(bh, "call jbd2_journal_forget");
295 err = jbd2_journal_forget(handle, bh);
297 ext4_journal_abort_handle(where, line, __func__,
305 * data!=journal && (is_metadata || should_journal_data(inode))
307 BUFFER_TRACE(bh, "call jbd2_journal_revoke");
308 err = jbd2_journal_revoke(handle, blocknr, bh);
310 ext4_journal_abort_handle(where, line, __func__,
312 __ext4_error(inode->i_sb, where, line, true, -err, 0,
313 "error %d when attempting revoke", err);
315 BUFFER_TRACE(bh, "exit");
319 int __ext4_journal_get_create_access(const char *where, unsigned int line,
320 handle_t *handle, struct super_block *sb,
321 struct buffer_head *bh,
322 enum ext4_journal_trigger_type trigger_type)
326 if (!ext4_handle_valid(handle))
329 err = jbd2_journal_get_create_access(handle, bh);
331 ext4_journal_abort_handle(where, line, __func__, bh, handle,
335 if (trigger_type == EXT4_JTR_NONE || !ext4_has_metadata_csum(sb))
337 BUG_ON(trigger_type >= EXT4_JOURNAL_TRIGGER_COUNT);
338 jbd2_journal_set_triggers(bh,
339 &EXT4_SB(sb)->s_journal_triggers[trigger_type].tr_triggers);
343 int __ext4_handle_dirty_metadata(const char *where, unsigned int line,
344 handle_t *handle, struct inode *inode,
345 struct buffer_head *bh)
353 set_buffer_uptodate(bh);
354 if (ext4_handle_valid(handle)) {
355 err = jbd2_journal_dirty_metadata(handle, bh);
356 /* Errors can only happen due to aborted journal or a nasty bug */
357 if (!is_handle_aborted(handle) && WARN_ON_ONCE(err)) {
358 ext4_journal_abort_handle(where, line, __func__, bh,
361 pr_err("EXT4: jbd2_journal_dirty_metadata "
362 "failed: handle type %u started at "
363 "line %u, credits %u/%u, errcode %d",
366 handle->h_requested_credits,
367 jbd2_handle_buffer_credits(handle), err);
370 ext4_error_inode(inode, where, line,
372 "journal_dirty_metadata failed: "
373 "handle type %u started at line %u, "
374 "credits %u/%u, errcode %d",
377 handle->h_requested_credits,
378 jbd2_handle_buffer_credits(handle),
383 mark_buffer_dirty_inode(bh, inode);
385 mark_buffer_dirty(bh);
386 if (inode && inode_needs_sync(inode)) {
387 sync_dirty_buffer(bh);
388 if (buffer_req(bh) && !buffer_uptodate(bh)) {
389 ext4_error_inode_err(inode, where, line,
391 "IO error syncing itable block");