Commit 5768d890 authored by Eric W. Biederman's avatar Eric W. Biederman

signal: Requeue signals in the appropriate queue

In the event that a tracer changes which signal needs to be delivered
and that signal is currently blocked then the signal needs to be
requeued for later delivery.

With the advent of CLONE_THREAD the kernel has 2 signal queues per
task.  The per process queue and the per task queue.  Update the code
so that if the signal is removed from the per process queue it is
requeued on the per process queue.  This is necessary to make it
appear the signal was never dequeued.

The rr debugger reasonably believes that the state of the process from
the last ptrace_stop it observed until PTRACE_EVENT_EXIT can be recreated
by simply letting a process run.  If a SIGKILL interrupts a ptrace_stop
this is not true today.

So return signals to their original queue in ptrace_signal so that
signals that are not delivered appear like they were never dequeued.

Fixes: 794aa320 ("[PATCH] sigfix-2.5.40-D6")
History Tree: https://git.kernel.org/pub/scm/linux/kernel/git/tglx/history.giReviewed-by: default avatarKees Cook <keescook@chromium.org>
Link: https://lkml.kernel.org/r/87zgq4d5r4.fsf_-_@email.froward.int.ebiederm.orgSigned-off-by: default avatar"Eric W. Biederman" <ebiederm@xmission.com>
parent e7f7c99b
...@@ -165,11 +165,12 @@ static int signalfd_copyinfo(struct signalfd_siginfo __user *uinfo, ...@@ -165,11 +165,12 @@ static int signalfd_copyinfo(struct signalfd_siginfo __user *uinfo,
static ssize_t signalfd_dequeue(struct signalfd_ctx *ctx, kernel_siginfo_t *info, static ssize_t signalfd_dequeue(struct signalfd_ctx *ctx, kernel_siginfo_t *info,
int nonblock) int nonblock)
{ {
enum pid_type type;
ssize_t ret; ssize_t ret;
DECLARE_WAITQUEUE(wait, current); DECLARE_WAITQUEUE(wait, current);
spin_lock_irq(&current->sighand->siglock); spin_lock_irq(&current->sighand->siglock);
ret = dequeue_signal(current, &ctx->sigmask, info); ret = dequeue_signal(current, &ctx->sigmask, info, &type);
switch (ret) { switch (ret) {
case 0: case 0:
if (!nonblock) if (!nonblock)
...@@ -184,7 +185,7 @@ static ssize_t signalfd_dequeue(struct signalfd_ctx *ctx, kernel_siginfo_t *info ...@@ -184,7 +185,7 @@ static ssize_t signalfd_dequeue(struct signalfd_ctx *ctx, kernel_siginfo_t *info
add_wait_queue(&current->sighand->signalfd_wqh, &wait); add_wait_queue(&current->sighand->signalfd_wqh, &wait);
for (;;) { for (;;) {
set_current_state(TASK_INTERRUPTIBLE); set_current_state(TASK_INTERRUPTIBLE);
ret = dequeue_signal(current, &ctx->sigmask, info); ret = dequeue_signal(current, &ctx->sigmask, info, &type);
if (ret != 0) if (ret != 0)
break; break;
if (signal_pending(current)) { if (signal_pending(current)) {
......
...@@ -286,17 +286,18 @@ static inline int signal_group_exit(const struct signal_struct *sig) ...@@ -286,17 +286,18 @@ static inline int signal_group_exit(const struct signal_struct *sig)
extern void flush_signals(struct task_struct *); extern void flush_signals(struct task_struct *);
extern void ignore_signals(struct task_struct *); extern void ignore_signals(struct task_struct *);
extern void flush_signal_handlers(struct task_struct *, int force_default); extern void flush_signal_handlers(struct task_struct *, int force_default);
extern int dequeue_signal(struct task_struct *task, extern int dequeue_signal(struct task_struct *task, sigset_t *mask,
sigset_t *mask, kernel_siginfo_t *info); kernel_siginfo_t *info, enum pid_type *type);
static inline int kernel_dequeue_signal(void) static inline int kernel_dequeue_signal(void)
{ {
struct task_struct *task = current; struct task_struct *task = current;
kernel_siginfo_t __info; kernel_siginfo_t __info;
enum pid_type __type;
int ret; int ret;
spin_lock_irq(&task->sighand->siglock); spin_lock_irq(&task->sighand->siglock);
ret = dequeue_signal(task, &task->blocked, &__info); ret = dequeue_signal(task, &task->blocked, &__info, &__type);
spin_unlock_irq(&task->sighand->siglock); spin_unlock_irq(&task->sighand->siglock);
return ret; return ret;
......
...@@ -626,7 +626,8 @@ static int __dequeue_signal(struct sigpending *pending, sigset_t *mask, ...@@ -626,7 +626,8 @@ static int __dequeue_signal(struct sigpending *pending, sigset_t *mask,
* *
* All callers have to hold the siglock. * All callers have to hold the siglock.
*/ */
int dequeue_signal(struct task_struct *tsk, sigset_t *mask, kernel_siginfo_t *info) int dequeue_signal(struct task_struct *tsk, sigset_t *mask,
kernel_siginfo_t *info, enum pid_type *type)
{ {
bool resched_timer = false; bool resched_timer = false;
int signr; int signr;
...@@ -634,8 +635,10 @@ int dequeue_signal(struct task_struct *tsk, sigset_t *mask, kernel_siginfo_t *in ...@@ -634,8 +635,10 @@ int dequeue_signal(struct task_struct *tsk, sigset_t *mask, kernel_siginfo_t *in
/* We only dequeue private signals from ourselves, we don't let /* We only dequeue private signals from ourselves, we don't let
* signalfd steal them * signalfd steal them
*/ */
*type = PIDTYPE_PID;
signr = __dequeue_signal(&tsk->pending, mask, info, &resched_timer); signr = __dequeue_signal(&tsk->pending, mask, info, &resched_timer);
if (!signr) { if (!signr) {
*type = PIDTYPE_TGID;
signr = __dequeue_signal(&tsk->signal->shared_pending, signr = __dequeue_signal(&tsk->signal->shared_pending,
mask, info, &resched_timer); mask, info, &resched_timer);
#ifdef CONFIG_POSIX_TIMERS #ifdef CONFIG_POSIX_TIMERS
...@@ -2522,7 +2525,7 @@ static void do_freezer_trap(void) ...@@ -2522,7 +2525,7 @@ static void do_freezer_trap(void)
freezable_schedule(); freezable_schedule();
} }
static int ptrace_signal(int signr, kernel_siginfo_t *info) static int ptrace_signal(int signr, kernel_siginfo_t *info, enum pid_type type)
{ {
/* /*
* We do not check sig_kernel_stop(signr) but set this marker * We do not check sig_kernel_stop(signr) but set this marker
...@@ -2563,7 +2566,7 @@ static int ptrace_signal(int signr, kernel_siginfo_t *info) ...@@ -2563,7 +2566,7 @@ static int ptrace_signal(int signr, kernel_siginfo_t *info)
/* If the (new) signal is now blocked, requeue it. */ /* If the (new) signal is now blocked, requeue it. */
if (sigismember(&current->blocked, signr)) { if (sigismember(&current->blocked, signr)) {
send_signal(signr, info, current, PIDTYPE_PID); send_signal(signr, info, current, type);
signr = 0; signr = 0;
} }
...@@ -2664,6 +2667,7 @@ bool get_signal(struct ksignal *ksig) ...@@ -2664,6 +2667,7 @@ bool get_signal(struct ksignal *ksig)
for (;;) { for (;;) {
struct k_sigaction *ka; struct k_sigaction *ka;
enum pid_type type;
/* Has this task already been marked for death? */ /* Has this task already been marked for death? */
if (signal_group_exit(signal)) { if (signal_group_exit(signal)) {
...@@ -2706,16 +2710,18 @@ bool get_signal(struct ksignal *ksig) ...@@ -2706,16 +2710,18 @@ bool get_signal(struct ksignal *ksig)
* so that the instruction pointer in the signal stack * so that the instruction pointer in the signal stack
* frame points to the faulting instruction. * frame points to the faulting instruction.
*/ */
type = PIDTYPE_PID;
signr = dequeue_synchronous_signal(&ksig->info); signr = dequeue_synchronous_signal(&ksig->info);
if (!signr) if (!signr)
signr = dequeue_signal(current, &current->blocked, &ksig->info); signr = dequeue_signal(current, &current->blocked,
&ksig->info, &type);
if (!signr) if (!signr)
break; /* will return 0 */ break; /* will return 0 */
if (unlikely(current->ptrace) && (signr != SIGKILL) && if (unlikely(current->ptrace) && (signr != SIGKILL) &&
!(sighand->action[signr -1].sa.sa_flags & SA_IMMUTABLE)) { !(sighand->action[signr -1].sa.sa_flags & SA_IMMUTABLE)) {
signr = ptrace_signal(signr, &ksig->info); signr = ptrace_signal(signr, &ksig->info, type);
if (!signr) if (!signr)
continue; continue;
} }
...@@ -3540,6 +3546,7 @@ static int do_sigtimedwait(const sigset_t *which, kernel_siginfo_t *info, ...@@ -3540,6 +3546,7 @@ static int do_sigtimedwait(const sigset_t *which, kernel_siginfo_t *info,
ktime_t *to = NULL, timeout = KTIME_MAX; ktime_t *to = NULL, timeout = KTIME_MAX;
struct task_struct *tsk = current; struct task_struct *tsk = current;
sigset_t mask = *which; sigset_t mask = *which;
enum pid_type type;
int sig, ret = 0; int sig, ret = 0;
if (ts) { if (ts) {
...@@ -3556,7 +3563,7 @@ static int do_sigtimedwait(const sigset_t *which, kernel_siginfo_t *info, ...@@ -3556,7 +3563,7 @@ static int do_sigtimedwait(const sigset_t *which, kernel_siginfo_t *info,
signotset(&mask); signotset(&mask);
spin_lock_irq(&tsk->sighand->siglock); spin_lock_irq(&tsk->sighand->siglock);
sig = dequeue_signal(tsk, &mask, info); sig = dequeue_signal(tsk, &mask, info, &type);
if (!sig && timeout) { if (!sig && timeout) {
/* /*
* None ready, temporarily unblock those we're interested * None ready, temporarily unblock those we're interested
...@@ -3575,7 +3582,7 @@ static int do_sigtimedwait(const sigset_t *which, kernel_siginfo_t *info, ...@@ -3575,7 +3582,7 @@ static int do_sigtimedwait(const sigset_t *which, kernel_siginfo_t *info,
spin_lock_irq(&tsk->sighand->siglock); spin_lock_irq(&tsk->sighand->siglock);
__set_task_blocked(tsk, &tsk->real_blocked); __set_task_blocked(tsk, &tsk->real_blocked);
sigemptyset(&tsk->real_blocked); sigemptyset(&tsk->real_blocked);
sig = dequeue_signal(tsk, &mask, info); sig = dequeue_signal(tsk, &mask, info, &type);
} }
spin_unlock_irq(&tsk->sighand->siglock); spin_unlock_irq(&tsk->sighand->siglock);
......
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