alarmtimer: Do not signal SIGEV_NONE timers
authorRichard Larocque <rlarocque@google.com>
Wed, 10 Sep 2014 01:31:04 +0000 (18:31 -0700)
committerJohn Stultz <john.stultz@linaro.org>
Fri, 12 Sep 2014 20:59:12 +0000 (13:59 -0700)
commit265b81d23a46c39df0a735a3af4238954b41a4c2
tree47b81c013a71d8e8a31a821b2b97674ab7c97cf2
parente86fea764991e00a03ff1e56409ec9cacdbda4c9
alarmtimer: Do not signal SIGEV_NONE timers

Avoids sending a signal to alarm timers created with sigev_notify set to
SIGEV_NONE by checking for that special case in the timeout callback.

The regular posix timers avoid sending signals to SIGEV_NONE timers by
not scheduling any callbacks for them in the first place.  Although it
would be possible to do something similar for alarm timers, it's simpler
to handle this as a special case in the timeout.

Prior to this patch, the alarm timer would ignore the sigev_notify value
and try to deliver signals to the process anyway.  Even worse, the
sanity check for the value of sigev_signo is skipped when SIGEV_NONE was
specified, so the signal number could be bogus.  If sigev_signo was an
unitialized value (as it often would be if SIGEV_NONE is used), then
it's hard to predict which signal will be sent.

Cc: stable@vger.kernel.org
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Richard Cochran <richardcochran@gmail.com>
Cc: Prarit Bhargava <prarit@redhat.com>
Cc: Sharvil Nanavati <sharvil@google.com>
Signed-off-by: Richard Larocque <rlarocque@google.com>
Signed-off-by: John Stultz <john.stultz@linaro.org>
kernel/time/alarmtimer.c