Commit a07d9118 authored by Oleg Nesterov's avatar Oleg Nesterov Committed by Greg Kroah-Hartman

tracing: Fix null pointer deref with SEND_SIG_FORCED

commit b9b76dfa upstream.

BUG: unable to handle kernel NULL pointer dereference at
	0000000000000006
IP: [<ffffffff8107bd37>] ftrace_raw_event_signal_generate+0x87/0x140

TP_STORE_SIGINFO() forgets about SEND_SIG_FORCED, fix.

We should probably export is_si_special() and change TP_STORE_SIGINFO()
to use it in the longer term.
Signed-off-by: default avatarOleg Nesterov <oleg@redhat.com>
Acked-by: default avatarRoland McGrath <roland@redhat.com>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Jason Baron <jbaron@redhat.com>
Cc: Masami Hiramatsu <mhiramat@redhat.com>
LKML-Reference: <20100603213409.GA8307@redhat.com>
Signed-off-by: default avatarFrederic Weisbecker <fweisbec@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 22fc69f9
...@@ -10,7 +10,8 @@ ...@@ -10,7 +10,8 @@
#define TP_STORE_SIGINFO(__entry, info) \ #define TP_STORE_SIGINFO(__entry, info) \
do { \ do { \
if (info == SEND_SIG_NOINFO) { \ if (info == SEND_SIG_NOINFO || \
info == SEND_SIG_FORCED) { \
__entry->errno = 0; \ __entry->errno = 0; \
__entry->code = SI_USER; \ __entry->code = SI_USER; \
} else if (info == SEND_SIG_PRIV) { \ } else if (info == SEND_SIG_PRIV) { \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment