* [PATCH] jbd: Fix possible uninitialized memory access when tracing
@ 2015-03-18 10:33 Lukas Czerner
0 siblings, 0 replies; only message in thread
From: Lukas Czerner @ 2015-03-18 10:33 UTC (permalink / raw)
To: linux-ext4; +Cc: Lukas Czerner
Currently in journal_commit_transaction() if trace point
trace_jbd_end_commit() is enabled, it can access already freed part of
the memory via commit_transaction because it might have already been
freed earlier using __journal_drop_transaction().
Fix it by moving the tracepoint before the point where we can free
commit_transaction and set the commit_transaction to NULL after we free
it to make such cases easier to detect in the future.
Signed-off-by: Lukas Czerner <lczerner@redhat.com>
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
---
fs/jbd/commit.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/fs/jbd/commit.c b/fs/jbd/commit.c
index bb217dc..169cf72 100644
--- a/fs/jbd/commit.c
+++ b/fs/jbd/commit.c
@@ -991,10 +991,12 @@ restart_loop:
journal->j_average_commit_time = commit_time;
spin_unlock(&journal->j_state_lock);
+ trace_jbd_end_commit(journal, commit_transaction);
if (commit_transaction->t_checkpoint_list == NULL &&
commit_transaction->t_checkpoint_io_list == NULL) {
__journal_drop_transaction(journal, commit_transaction);
+ commit_transaction = NULL;
} else {
if (journal->j_checkpoint_transactions == NULL) {
journal->j_checkpoint_transactions = commit_transaction;
@@ -1013,7 +1015,6 @@ restart_loop:
}
spin_unlock(&journal->j_list_lock);
- trace_jbd_end_commit(journal, commit_transaction);
jbd_debug(1, "JBD: commit %d complete, head %d\n",
journal->j_commit_sequence, journal->j_tail_sequence);
--
1.8.3.1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2015-03-18 10:33 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-18 10:33 [PATCH] jbd: Fix possible uninitialized memory access when tracing Lukas Czerner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).