blob: 7058975e3a5505a9b19d082f4d6ba627919432ff [file] [log] [blame]
Andrew Morton8984d132006-12-06 20:37:15 -08001/*
2 * Interface between ext4 and JBD
3 */
4
Christoph Hellwig3dcf5452008-04-29 18:13:32 -04005#include "ext4_jbd2.h"
Andrew Morton8984d132006-12-06 20:37:15 -08006
Theodore Ts'od6797d12009-11-22 20:52:12 -05007#include <trace/events/ext4.h>
8
Theodore Ts'o722887d2013-02-08 13:00:31 -05009/* Just increment the non-pointer handle value */
10static handle_t *ext4_get_nojournal(void)
11{
12 handle_t *handle = current->journal_info;
13 unsigned long ref_cnt = (unsigned long)handle;
14
15 BUG_ON(ref_cnt >= EXT4_NOJOURNAL_MAX_REF_COUNT);
16
17 ref_cnt++;
18 handle = (handle_t *)ref_cnt;
19
20 current->journal_info = handle;
21 return handle;
22}
23
24
25/* Decrement the non-pointer handle value */
26static void ext4_put_nojournal(handle_t *handle)
27{
28 unsigned long ref_cnt = (unsigned long)handle;
29
30 BUG_ON(ref_cnt == 0);
31
32 ref_cnt--;
33 handle = (handle_t *)ref_cnt;
34
35 current->journal_info = handle;
36}
37
38/*
39 * Wrappers for jbd2_journal_start/end.
40 */
Theodore Ts'o9924a922013-02-08 21:59:22 -050041handle_t *__ext4_journal_start_sb(struct super_block *sb, unsigned int line,
42 int type, int nblocks)
Theodore Ts'o722887d2013-02-08 13:00:31 -050043{
44 journal_t *journal;
45
46 trace_ext4_journal_start(sb, nblocks, _RET_IP_);
47 if (sb->s_flags & MS_RDONLY)
48 return ERR_PTR(-EROFS);
49
50 WARN_ON(sb->s_writers.frozen == SB_FREEZE_COMPLETE);
51 journal = EXT4_SB(sb)->s_journal;
52 if (!journal)
53 return ext4_get_nojournal();
54 /*
55 * Special case here: if the journal has aborted behind our
56 * backs (eg. EIO in the commit thread), then we still need to
57 * take the FS itself readonly cleanly.
58 */
59 if (is_journal_aborted(journal)) {
60 ext4_abort(sb, "Detected aborted journal");
61 return ERR_PTR(-EROFS);
62 }
Theodore Ts'o9924a922013-02-08 21:59:22 -050063 return jbd2__journal_start(journal, nblocks, GFP_NOFS, type, line);
Theodore Ts'o722887d2013-02-08 13:00:31 -050064}
65
66int __ext4_journal_stop(const char *where, unsigned int line, handle_t *handle)
67{
68 struct super_block *sb;
69 int err;
70 int rc;
71
72 if (!ext4_handle_valid(handle)) {
73 ext4_put_nojournal(handle);
74 return 0;
75 }
76 sb = handle->h_transaction->t_journal->j_private;
77 err = handle->h_err;
78 rc = jbd2_journal_stop(handle);
79
80 if (!err)
81 err = rc;
82 if (err)
83 __ext4_std_error(sb, where, line, err);
84 return err;
85}
86
87void ext4_journal_abort_handle(const char *caller, unsigned int line,
88 const char *err_fn, struct buffer_head *bh,
89 handle_t *handle, int err)
90{
91 char nbuf[16];
92 const char *errstr = ext4_decode_error(NULL, err, nbuf);
93
94 BUG_ON(!ext4_handle_valid(handle));
95
96 if (bh)
97 BUFFER_TRACE(bh, "abort");
98
99 if (!handle->h_err)
100 handle->h_err = err;
101
102 if (is_handle_aborted(handle))
103 return;
104
105 printk(KERN_ERR "EXT4-fs: %s:%d: aborting transaction: %s in %s\n",
106 caller, line, errstr, err_fn);
107
108 jbd2_journal_abort_handle(handle);
109}
110
Theodore Ts'o90c72012010-06-29 14:53:24 -0400111int __ext4_journal_get_write_access(const char *where, unsigned int line,
112 handle_t *handle, struct buffer_head *bh)
Andrew Morton8984d132006-12-06 20:37:15 -0800113{
Frank Mayhar03901312009-01-07 00:06:22 -0500114 int err = 0;
115
116 if (ext4_handle_valid(handle)) {
117 err = jbd2_journal_get_write_access(handle, bh);
118 if (err)
Theodore Ts'o90c72012010-06-29 14:53:24 -0400119 ext4_journal_abort_handle(where, line, __func__, bh,
Frank Mayhar03901312009-01-07 00:06:22 -0500120 handle, err);
121 }
Andrew Morton8984d132006-12-06 20:37:15 -0800122 return err;
123}
124
Theodore Ts'od6797d12009-11-22 20:52:12 -0500125/*
126 * The ext4 forget function must perform a revoke if we are freeing data
127 * which has been journaled. Metadata (eg. indirect blocks) must be
128 * revoked in all cases.
129 *
130 * "bh" may be NULL: a metadata block may have been freed from memory
131 * but there may still be a record of it in the journal, and that record
132 * still needs to be revoked.
133 *
134 * If the handle isn't valid we're not journaling, but we still need to
135 * call into ext4_journal_revoke() to put the buffer head.
136 */
Theodore Ts'o90c72012010-06-29 14:53:24 -0400137int __ext4_forget(const char *where, unsigned int line, handle_t *handle,
138 int is_metadata, struct inode *inode,
139 struct buffer_head *bh, ext4_fsblk_t blocknr)
Theodore Ts'od6797d12009-11-22 20:52:12 -0500140{
141 int err;
142
143 might_sleep();
144
145 trace_ext4_forget(inode, is_metadata, blocknr);
146 BUFFER_TRACE(bh, "enter");
147
148 jbd_debug(4, "forgetting bh %p: is_metadata = %d, mode %o, "
149 "data mode %x\n",
150 bh, is_metadata, inode->i_mode,
151 test_opt(inode->i_sb, DATA_FLAGS));
152
Theodore Ts'oe4684b32009-11-24 11:05:59 -0500153 /* In the no journal case, we can just do a bforget and return */
154 if (!ext4_handle_valid(handle)) {
155 bforget(bh);
156 return 0;
157 }
158
Theodore Ts'od6797d12009-11-22 20:52:12 -0500159 /* Never use the revoke function if we are doing full data
160 * journaling: there is no need to, and a V1 superblock won't
161 * support it. Otherwise, only skip the revoke on un-journaled
162 * data blocks. */
163
164 if (test_opt(inode->i_sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA ||
165 (!is_metadata && !ext4_should_journal_data(inode))) {
166 if (bh) {
167 BUFFER_TRACE(bh, "call jbd2_journal_forget");
Theodore Ts'ob7e57e72009-11-22 21:00:13 -0500168 err = jbd2_journal_forget(handle, bh);
169 if (err)
Theodore Ts'o90c72012010-06-29 14:53:24 -0400170 ext4_journal_abort_handle(where, line, __func__,
171 bh, handle, err);
Theodore Ts'ob7e57e72009-11-22 21:00:13 -0500172 return err;
Theodore Ts'od6797d12009-11-22 20:52:12 -0500173 }
174 return 0;
175 }
176
177 /*
178 * data!=journal && (is_metadata || should_journal_data(inode))
179 */
Theodore Ts'oe4684b32009-11-24 11:05:59 -0500180 BUFFER_TRACE(bh, "call jbd2_journal_revoke");
181 err = jbd2_journal_revoke(handle, blocknr, bh);
182 if (err) {
Theodore Ts'o90c72012010-06-29 14:53:24 -0400183 ext4_journal_abort_handle(where, line, __func__,
184 bh, handle, err);
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400185 __ext4_abort(inode->i_sb, where, line,
186 "error %d when attempting revoke", err);
Theodore Ts'oe4684b32009-11-24 11:05:59 -0500187 }
Theodore Ts'od6797d12009-11-22 20:52:12 -0500188 BUFFER_TRACE(bh, "exit");
189 return err;
190}
191
Theodore Ts'o90c72012010-06-29 14:53:24 -0400192int __ext4_journal_get_create_access(const char *where, unsigned int line,
Andrew Morton8984d132006-12-06 20:37:15 -0800193 handle_t *handle, struct buffer_head *bh)
194{
Frank Mayhar03901312009-01-07 00:06:22 -0500195 int err = 0;
196
197 if (ext4_handle_valid(handle)) {
198 err = jbd2_journal_get_create_access(handle, bh);
199 if (err)
Theodore Ts'o90c72012010-06-29 14:53:24 -0400200 ext4_journal_abort_handle(where, line, __func__,
201 bh, handle, err);
Frank Mayhar03901312009-01-07 00:06:22 -0500202 }
Andrew Morton8984d132006-12-06 20:37:15 -0800203 return err;
204}
205
Theodore Ts'o90c72012010-06-29 14:53:24 -0400206int __ext4_handle_dirty_metadata(const char *where, unsigned int line,
207 handle_t *handle, struct inode *inode,
208 struct buffer_head *bh)
Andrew Morton8984d132006-12-06 20:37:15 -0800209{
Frank Mayhar03901312009-01-07 00:06:22 -0500210 int err = 0;
211
212 if (ext4_handle_valid(handle)) {
213 err = jbd2_journal_dirty_metadata(handle, bh);
Theodore Ts'o9ea7a0d2011-09-04 10:18:14 -0400214 if (err) {
215 /* Errors can only happen if there is a bug */
216 handle->h_err = err;
217 __ext4_journal_stop(where, line, handle);
218 }
Frank Mayhar03901312009-01-07 00:06:22 -0500219 } else {
Curt Wohlgemuth73b50c12010-02-16 15:06:29 -0500220 if (inode)
Theodore Ts'ofe188c02009-09-12 13:41:55 -0400221 mark_buffer_dirty_inode(bh, inode);
222 else
223 mark_buffer_dirty(bh);
Frank Mayhar03901312009-01-07 00:06:22 -0500224 if (inode && inode_needs_sync(inode)) {
225 sync_dirty_buffer(bh);
226 if (buffer_req(bh) && !buffer_uptodate(bh)) {
Theodore Ts'o1c13d5c2010-07-27 11:56:03 -0400227 struct ext4_super_block *es;
228
229 es = EXT4_SB(inode->i_sb)->s_es;
230 es->s_last_error_block =
231 cpu_to_le64(bh->b_blocknr);
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400232 ext4_error_inode(inode, where, line,
233 bh->b_blocknr,
234 "IO error syncing itable block");
Frank Mayhar03901312009-01-07 00:06:22 -0500235 err = -EIO;
236 }
237 }
238 }
Andrew Morton8984d132006-12-06 20:37:15 -0800239 return err;
240}
Theodore Ts'oa0375152010-06-11 23:14:04 -0400241
Theodore Ts'o90c72012010-06-29 14:53:24 -0400242int __ext4_handle_dirty_super(const char *where, unsigned int line,
Artem Bityutskiyb50924c2012-07-22 20:37:31 -0400243 handle_t *handle, struct super_block *sb)
Theodore Ts'oa0375152010-06-11 23:14:04 -0400244{
245 struct buffer_head *bh = EXT4_SB(sb)->s_sbh;
246 int err = 0;
247
Theodore Ts'o06db49e2012-10-10 01:06:58 -0400248 ext4_superblock_csum_set(sb);
Theodore Ts'oa0375152010-06-11 23:14:04 -0400249 if (ext4_handle_valid(handle)) {
250 err = jbd2_journal_dirty_metadata(handle, bh);
251 if (err)
Theodore Ts'o90c72012010-06-29 14:53:24 -0400252 ext4_journal_abort_handle(where, line, __func__,
253 bh, handle, err);
Theodore Ts'o06db49e2012-10-10 01:06:58 -0400254 } else
Darrick J. Wonga9c473172012-04-29 18:29:10 -0400255 mark_buffer_dirty(bh);
Theodore Ts'oa0375152010-06-11 23:14:04 -0400256 return err;
257}