diff options
author | Steven Rostedt <srostedt@redhat.com> | 2010-03-12 19:41:23 -0500 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2010-03-12 20:28:02 -0500 |
commit | ea14eb714041d40fcc5180b5a586034503650149 (patch) | |
tree | a7cb72753c85cf79ac6fa31863d65d2f081e0823 /kernel | |
parent | 52fbe9cde7fdb5c6fac196d7ebd2d92d05ef3cd4 (diff) |
function-graph: Init curr_ret_stack with ret_stack
If the graph tracer is active, and a task is forked but the allocating of
the processes graph stack fails, it can cause crash later on.
This is due to the temporary stack being NULL, but the curr_ret_stack
variable is copied from the parent. If it is not -1, then in
ftrace_graph_probe_sched_switch() the following:
for (index = next->curr_ret_stack; index >= 0; index--)
next->ret_stack[index].calltime += timestamp;
Will cause a kernel OOPS.
Found with Li Zefan's ftrace_stress_test.
Cc: stable@kernel.org
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/trace/ftrace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c index d4d1238b096b..bb53edbb5c8c 100644 --- a/kernel/trace/ftrace.c +++ b/kernel/trace/ftrace.c | |||
@@ -3349,6 +3349,7 @@ void ftrace_graph_init_task(struct task_struct *t) | |||
3349 | { | 3349 | { |
3350 | /* Make sure we do not use the parent ret_stack */ | 3350 | /* Make sure we do not use the parent ret_stack */ |
3351 | t->ret_stack = NULL; | 3351 | t->ret_stack = NULL; |
3352 | t->curr_ret_stack = -1; | ||
3352 | 3353 | ||
3353 | if (ftrace_graph_active) { | 3354 | if (ftrace_graph_active) { |
3354 | struct ftrace_ret_stack *ret_stack; | 3355 | struct ftrace_ret_stack *ret_stack; |
@@ -3358,7 +3359,6 @@ void ftrace_graph_init_task(struct task_struct *t) | |||
3358 | GFP_KERNEL); | 3359 | GFP_KERNEL); |
3359 | if (!ret_stack) | 3360 | if (!ret_stack) |
3360 | return; | 3361 | return; |
3361 | t->curr_ret_stack = -1; | ||
3362 | atomic_set(&t->tracing_graph_pause, 0); | 3362 | atomic_set(&t->tracing_graph_pause, 0); |
3363 | atomic_set(&t->trace_overrun, 0); | 3363 | atomic_set(&t->trace_overrun, 0); |
3364 | t->ftrace_timestamp = 0; | 3364 | t->ftrace_timestamp = 0; |