2 * linux/kernel/signal.c
4 * Copyright (C) 1991, 1992 Linus Torvalds
6 * 1997-11-02 Modified for POSIX.1b signals by Richard Henderson
8 * 2003-06-02 Jim Houston - Concurrent Computer Corp.
9 * Changes to use preallocated sigqueue structures
10 * to allow signals to be sent reliably.
13 #include <linux/config.h>
14 #include <linux/slab.h>
15 #include <linux/module.h>
16 #include <linux/smp_lock.h>
17 #include <linux/init.h>
18 #include <linux/sched.h>
20 #include <linux/tty.h>
21 #include <linux/binfmts.h>
22 #include <linux/security.h>
23 #include <linux/syscalls.h>
24 #include <linux/ptrace.h>
25 #include <linux/signal.h>
26 #include <linux/audit.h>
27 #include <linux/capability.h>
28 #include <asm/param.h>
29 #include <asm/uaccess.h>
30 #include <asm/unistd.h>
31 #include <asm/siginfo.h>
34 * SLAB caches for signal bits.
37 static kmem_cache_t *sigqueue_cachep;
40 * In POSIX a signal is sent either to a specific thread (Linux task)
41 * or to the process as a whole (Linux thread group). How the signal
42 * is sent determines whether it's to one thread or the whole group,
43 * which determines which signal mask(s) are involved in blocking it
44 * from being delivered until later. When the signal is delivered,
45 * either it's caught or ignored by a user handler or it has a default
46 * effect that applies to the whole thread group (POSIX process).
48 * The possible effects an unblocked signal set to SIG_DFL can have are:
49 * ignore - Nothing Happens
50 * terminate - kill the process, i.e. all threads in the group,
51 * similar to exit_group. The group leader (only) reports
52 * WIFSIGNALED status to its parent.
53 * coredump - write a core dump file describing all threads using
54 * the same mm and then kill all those threads
55 * stop - stop all the threads in the group, i.e. TASK_STOPPED state
57 * SIGKILL and SIGSTOP cannot be caught, blocked, or ignored.
58 * Other signals when not blocked and set to SIG_DFL behaves as follows.
59 * The job control signals also have other special effects.
61 * +--------------------+------------------+
62 * | POSIX signal | default action |
63 * +--------------------+------------------+
64 * | SIGHUP | terminate |
65 * | SIGINT | terminate |
66 * | SIGQUIT | coredump |
67 * | SIGILL | coredump |
68 * | SIGTRAP | coredump |
69 * | SIGABRT/SIGIOT | coredump |
70 * | SIGBUS | coredump |
71 * | SIGFPE | coredump |
72 * | SIGKILL | terminate(+) |
73 * | SIGUSR1 | terminate |
74 * | SIGSEGV | coredump |
75 * | SIGUSR2 | terminate |
76 * | SIGPIPE | terminate |
77 * | SIGALRM | terminate |
78 * | SIGTERM | terminate |
79 * | SIGCHLD | ignore |
80 * | SIGCONT | ignore(*) |
81 * | SIGSTOP | stop(*)(+) |
82 * | SIGTSTP | stop(*) |
83 * | SIGTTIN | stop(*) |
84 * | SIGTTOU | stop(*) |
86 * | SIGXCPU | coredump |
87 * | SIGXFSZ | coredump |
88 * | SIGVTALRM | terminate |
89 * | SIGPROF | terminate |
90 * | SIGPOLL/SIGIO | terminate |
91 * | SIGSYS/SIGUNUSED | coredump |
92 * | SIGSTKFLT | terminate |
93 * | SIGWINCH | ignore |
94 * | SIGPWR | terminate |
95 * | SIGRTMIN-SIGRTMAX | terminate |
96 * +--------------------+------------------+
97 * | non-POSIX signal | default action |
98 * +--------------------+------------------+
99 * | SIGEMT | coredump |
100 * +--------------------+------------------+
102 * (+) For SIGKILL and SIGSTOP the action is "always", not just "default".
103 * (*) Special job control effects:
104 * When SIGCONT is sent, it resumes the process (all threads in the group)
105 * from TASK_STOPPED state and also clears any pending/queued stop signals
106 * (any of those marked with "stop(*)"). This happens regardless of blocking,
107 * catching, or ignoring SIGCONT. When any stop signal is sent, it clears
108 * any pending/queued SIGCONT signals; this happens regardless of blocking,
109 * catching, or ignored the stop signal, though (except for SIGSTOP) the
110 * default action of stopping the process may happen later or never.
114 #define M_SIGEMT M(SIGEMT)
119 #if SIGRTMIN > BITS_PER_LONG
120 #define M(sig) (1ULL << ((sig)-1))
122 #define M(sig) (1UL << ((sig)-1))
124 #define T(sig, mask) (M(sig) & (mask))
126 #define SIG_KERNEL_ONLY_MASK (\
127 M(SIGKILL) | M(SIGSTOP) )
129 #define SIG_KERNEL_STOP_MASK (\
130 M(SIGSTOP) | M(SIGTSTP) | M(SIGTTIN) | M(SIGTTOU) )
132 #define SIG_KERNEL_COREDUMP_MASK (\
133 M(SIGQUIT) | M(SIGILL) | M(SIGTRAP) | M(SIGABRT) | \
134 M(SIGFPE) | M(SIGSEGV) | M(SIGBUS) | M(SIGSYS) | \
135 M(SIGXCPU) | M(SIGXFSZ) | M_SIGEMT )
137 #define SIG_KERNEL_IGNORE_MASK (\
138 M(SIGCONT) | M(SIGCHLD) | M(SIGWINCH) | M(SIGURG) )
140 #define sig_kernel_only(sig) \
141 (((sig) < SIGRTMIN) && T(sig, SIG_KERNEL_ONLY_MASK))
142 #define sig_kernel_coredump(sig) \
143 (((sig) < SIGRTMIN) && T(sig, SIG_KERNEL_COREDUMP_MASK))
144 #define sig_kernel_ignore(sig) \
145 (((sig) < SIGRTMIN) && T(sig, SIG_KERNEL_IGNORE_MASK))
146 #define sig_kernel_stop(sig) \
147 (((sig) < SIGRTMIN) && T(sig, SIG_KERNEL_STOP_MASK))
149 #define sig_needs_tasklist(sig) ((sig) == SIGCONT)
151 #define sig_user_defined(t, signr) \
152 (((t)->sighand->action[(signr)-1].sa.sa_handler != SIG_DFL) && \
153 ((t)->sighand->action[(signr)-1].sa.sa_handler != SIG_IGN))
155 #define sig_fatal(t, signr) \
156 (!T(signr, SIG_KERNEL_IGNORE_MASK|SIG_KERNEL_STOP_MASK) && \
157 (t)->sighand->action[(signr)-1].sa.sa_handler == SIG_DFL)
159 static int sig_ignored(struct task_struct *t, int sig)
161 void __user * handler;
164 * Tracers always want to know about signals..
166 if (t->ptrace & PT_PTRACED)
170 * Blocked signals are never ignored, since the
171 * signal handler may change by the time it is
174 if (sigismember(&t->blocked, sig))
177 /* Is it explicitly or implicitly ignored? */
178 handler = t->sighand->action[sig-1].sa.sa_handler;
179 return handler == SIG_IGN ||
180 (handler == SIG_DFL && sig_kernel_ignore(sig));
184 * Re-calculate pending state from the set of locally pending
185 * signals, globally pending signals, and blocked signals.
187 static inline int has_pending_signals(sigset_t *signal, sigset_t *blocked)
192 switch (_NSIG_WORDS) {
194 for (i = _NSIG_WORDS, ready = 0; --i >= 0 ;)
195 ready |= signal->sig[i] &~ blocked->sig[i];
198 case 4: ready = signal->sig[3] &~ blocked->sig[3];
199 ready |= signal->sig[2] &~ blocked->sig[2];
200 ready |= signal->sig[1] &~ blocked->sig[1];
201 ready |= signal->sig[0] &~ blocked->sig[0];
204 case 2: ready = signal->sig[1] &~ blocked->sig[1];
205 ready |= signal->sig[0] &~ blocked->sig[0];
208 case 1: ready = signal->sig[0] &~ blocked->sig[0];
213 #define PENDING(p,b) has_pending_signals(&(p)->signal, (b))
215 fastcall void recalc_sigpending_tsk(struct task_struct *t)
217 if (t->signal->group_stop_count > 0 ||
219 PENDING(&t->pending, &t->blocked) ||
220 PENDING(&t->signal->shared_pending, &t->blocked))
221 set_tsk_thread_flag(t, TIF_SIGPENDING);
223 clear_tsk_thread_flag(t, TIF_SIGPENDING);
226 void recalc_sigpending(void)
228 recalc_sigpending_tsk(current);
231 /* Given the mask, find the first available signal that should be serviced. */
234 next_signal(struct sigpending *pending, sigset_t *mask)
236 unsigned long i, *s, *m, x;
239 s = pending->signal.sig;
241 switch (_NSIG_WORDS) {
243 for (i = 0; i < _NSIG_WORDS; ++i, ++s, ++m)
244 if ((x = *s &~ *m) != 0) {
245 sig = ffz(~x) + i*_NSIG_BPW + 1;
250 case 2: if ((x = s[0] &~ m[0]) != 0)
252 else if ((x = s[1] &~ m[1]) != 0)
259 case 1: if ((x = *s &~ *m) != 0)
267 static struct sigqueue *__sigqueue_alloc(struct task_struct *t, gfp_t flags,
270 struct sigqueue *q = NULL;
272 atomic_inc(&t->user->sigpending);
273 if (override_rlimit ||
274 atomic_read(&t->user->sigpending) <=
275 t->signal->rlim[RLIMIT_SIGPENDING].rlim_cur)
276 q = kmem_cache_alloc(sigqueue_cachep, flags);
277 if (unlikely(q == NULL)) {
278 atomic_dec(&t->user->sigpending);
280 INIT_LIST_HEAD(&q->list);
282 q->user = get_uid(t->user);
287 static void __sigqueue_free(struct sigqueue *q)
289 if (q->flags & SIGQUEUE_PREALLOC)
291 atomic_dec(&q->user->sigpending);
293 kmem_cache_free(sigqueue_cachep, q);
296 void flush_sigqueue(struct sigpending *queue)
300 sigemptyset(&queue->signal);
301 while (!list_empty(&queue->list)) {
302 q = list_entry(queue->list.next, struct sigqueue , list);
303 list_del_init(&q->list);
309 * Flush all pending signals for a task.
311 void flush_signals(struct task_struct *t)
315 spin_lock_irqsave(&t->sighand->siglock, flags);
316 clear_tsk_thread_flag(t,TIF_SIGPENDING);
317 flush_sigqueue(&t->pending);
318 flush_sigqueue(&t->signal->shared_pending);
319 spin_unlock_irqrestore(&t->sighand->siglock, flags);
323 * Flush all handlers for a task.
327 flush_signal_handlers(struct task_struct *t, int force_default)
330 struct k_sigaction *ka = &t->sighand->action[0];
331 for (i = _NSIG ; i != 0 ; i--) {
332 if (force_default || ka->sa.sa_handler != SIG_IGN)
333 ka->sa.sa_handler = SIG_DFL;
335 sigemptyset(&ka->sa.sa_mask);
341 /* Notify the system that a driver wants to block all signals for this
342 * process, and wants to be notified if any signals at all were to be
343 * sent/acted upon. If the notifier routine returns non-zero, then the
344 * signal will be acted upon after all. If the notifier routine returns 0,
345 * then then signal will be blocked. Only one block per process is
346 * allowed. priv is a pointer to private data that the notifier routine
347 * can use to determine if the signal should be blocked or not. */
350 block_all_signals(int (*notifier)(void *priv), void *priv, sigset_t *mask)
354 spin_lock_irqsave(¤t->sighand->siglock, flags);
355 current->notifier_mask = mask;
356 current->notifier_data = priv;
357 current->notifier = notifier;
358 spin_unlock_irqrestore(¤t->sighand->siglock, flags);
361 /* Notify the system that blocking has ended. */
364 unblock_all_signals(void)
368 spin_lock_irqsave(¤t->sighand->siglock, flags);
369 current->notifier = NULL;
370 current->notifier_data = NULL;
372 spin_unlock_irqrestore(¤t->sighand->siglock, flags);
375 static int collect_signal(int sig, struct sigpending *list, siginfo_t *info)
377 struct sigqueue *q, *first = NULL;
378 int still_pending = 0;
380 if (unlikely(!sigismember(&list->signal, sig)))
384 * Collect the siginfo appropriate to this signal. Check if
385 * there is another siginfo for the same signal.
387 list_for_each_entry(q, &list->list, list) {
388 if (q->info.si_signo == sig) {
397 list_del_init(&first->list);
398 copy_siginfo(info, &first->info);
399 __sigqueue_free(first);
401 sigdelset(&list->signal, sig);
404 /* Ok, it wasn't in the queue. This must be
405 a fast-pathed signal or we must have been
406 out of queue space. So zero out the info.
408 sigdelset(&list->signal, sig);
409 info->si_signo = sig;
418 static int __dequeue_signal(struct sigpending *pending, sigset_t *mask,
423 sig = next_signal(pending, mask);
425 if (current->notifier) {
426 if (sigismember(current->notifier_mask, sig)) {
427 if (!(current->notifier)(current->notifier_data)) {
428 clear_thread_flag(TIF_SIGPENDING);
434 if (!collect_signal(sig, pending, info))
444 * Dequeue a signal and return the element to the caller, which is
445 * expected to free it.
447 * All callers have to hold the siglock.
449 int dequeue_signal(struct task_struct *tsk, sigset_t *mask, siginfo_t *info)
451 int signr = __dequeue_signal(&tsk->pending, mask, info);
453 signr = __dequeue_signal(&tsk->signal->shared_pending,
455 if (signr && unlikely(sig_kernel_stop(signr))) {
457 * Set a marker that we have dequeued a stop signal. Our
458 * caller might release the siglock and then the pending
459 * stop signal it is about to process is no longer in the
460 * pending bitmasks, but must still be cleared by a SIGCONT
461 * (and overruled by a SIGKILL). So those cases clear this
462 * shared flag after we've set it. Note that this flag may
463 * remain set after the signal we return is ignored or
464 * handled. That doesn't matter because its only purpose
465 * is to alert stop-signal processing code when another
466 * processor has come along and cleared the flag.
468 if (!(tsk->signal->flags & SIGNAL_GROUP_EXIT))
469 tsk->signal->flags |= SIGNAL_STOP_DEQUEUED;
472 ((info->si_code & __SI_MASK) == __SI_TIMER) &&
473 info->si_sys_private){
475 * Release the siglock to ensure proper locking order
476 * of timer locks outside of siglocks. Note, we leave
477 * irqs disabled here, since the posix-timers code is
478 * about to disable them again anyway.
480 spin_unlock(&tsk->sighand->siglock);
481 do_schedule_next_timer(info);
482 spin_lock(&tsk->sighand->siglock);
488 * Tell a process that it has a new active signal..
490 * NOTE! we rely on the previous spin_lock to
491 * lock interrupts for us! We can only be called with
492 * "siglock" held, and the local interrupt must
493 * have been disabled when that got acquired!
495 * No need to set need_resched since signal event passing
496 * goes through ->blocked
498 void signal_wake_up(struct task_struct *t, int resume)
502 set_tsk_thread_flag(t, TIF_SIGPENDING);
505 * For SIGKILL, we want to wake it up in the stopped/traced case.
506 * We don't check t->state here because there is a race with it
507 * executing another processor and just now entering stopped state.
508 * By using wake_up_state, we ensure the process will wake up and
509 * handle its death signal.
511 mask = TASK_INTERRUPTIBLE;
513 mask |= TASK_STOPPED | TASK_TRACED;
514 if (!wake_up_state(t, mask))
519 * Remove signals in mask from the pending set and queue.
520 * Returns 1 if any signals were found.
522 * All callers must be holding the siglock.
524 * This version takes a sigset mask and looks at all signals,
525 * not just those in the first mask word.
527 static int rm_from_queue_full(sigset_t *mask, struct sigpending *s)
529 struct sigqueue *q, *n;
532 sigandsets(&m, mask, &s->signal);
533 if (sigisemptyset(&m))
536 signandsets(&s->signal, &s->signal, mask);
537 list_for_each_entry_safe(q, n, &s->list, list) {
538 if (sigismember(mask, q->info.si_signo)) {
539 list_del_init(&q->list);
546 * Remove signals in mask from the pending set and queue.
547 * Returns 1 if any signals were found.
549 * All callers must be holding the siglock.
551 static int rm_from_queue(unsigned long mask, struct sigpending *s)
553 struct sigqueue *q, *n;
555 if (!sigtestsetmask(&s->signal, mask))
558 sigdelsetmask(&s->signal, mask);
559 list_for_each_entry_safe(q, n, &s->list, list) {
560 if (q->info.si_signo < SIGRTMIN &&
561 (mask & sigmask(q->info.si_signo))) {
562 list_del_init(&q->list);
570 * Bad permissions for sending the signal
572 static int check_kill_permission(int sig, struct siginfo *info,
573 struct task_struct *t)
576 if (!valid_signal(sig))
579 if ((info == SEND_SIG_NOINFO || (!is_si_special(info) && SI_FROMUSER(info)))
580 && ((sig != SIGCONT) ||
581 (current->signal->session != t->signal->session))
582 && (current->euid ^ t->suid) && (current->euid ^ t->uid)
583 && (current->uid ^ t->suid) && (current->uid ^ t->uid)
584 && !capable(CAP_KILL))
587 error = security_task_kill(t, info, sig);
589 audit_signal_info(sig, t); /* Let audit system see the signal */
594 static void do_notify_parent_cldstop(struct task_struct *tsk, int why);
597 * Handle magic process-wide effects of stop/continue signals.
598 * Unlike the signal actions, these happen immediately at signal-generation
599 * time regardless of blocking, ignoring, or handling. This does the
600 * actual continuing for SIGCONT, but not the actual stopping for stop
601 * signals. The process stop is done as a signal action for SIG_DFL.
603 static void handle_stop_signal(int sig, struct task_struct *p)
605 struct task_struct *t;
607 if (p->signal->flags & SIGNAL_GROUP_EXIT)
609 * The process is in the middle of dying already.
613 if (sig_kernel_stop(sig)) {
615 * This is a stop signal. Remove SIGCONT from all queues.
617 rm_from_queue(sigmask(SIGCONT), &p->signal->shared_pending);
620 rm_from_queue(sigmask(SIGCONT), &t->pending);
623 } else if (sig == SIGCONT) {
625 * Remove all stop signals from all queues,
626 * and wake all threads.
628 if (unlikely(p->signal->group_stop_count > 0)) {
630 * There was a group stop in progress. We'll
631 * pretend it finished before we got here. We are
632 * obliged to report it to the parent: if the
633 * SIGSTOP happened "after" this SIGCONT, then it
634 * would have cleared this pending SIGCONT. If it
635 * happened "before" this SIGCONT, then the parent
636 * got the SIGCHLD about the stop finishing before
637 * the continue happened. We do the notification
638 * now, and it's as if the stop had finished and
639 * the SIGCHLD was pending on entry to this kill.
641 p->signal->group_stop_count = 0;
642 p->signal->flags = SIGNAL_STOP_CONTINUED;
643 spin_unlock(&p->sighand->siglock);
644 do_notify_parent_cldstop(p, CLD_STOPPED);
645 spin_lock(&p->sighand->siglock);
647 rm_from_queue(SIG_KERNEL_STOP_MASK, &p->signal->shared_pending);
651 rm_from_queue(SIG_KERNEL_STOP_MASK, &t->pending);
654 * If there is a handler for SIGCONT, we must make
655 * sure that no thread returns to user mode before
656 * we post the signal, in case it was the only
657 * thread eligible to run the signal handler--then
658 * it must not do anything between resuming and
659 * running the handler. With the TIF_SIGPENDING
660 * flag set, the thread will pause and acquire the
661 * siglock that we hold now and until we've queued
662 * the pending signal.
664 * Wake up the stopped thread _after_ setting
667 state = TASK_STOPPED;
668 if (sig_user_defined(t, SIGCONT) && !sigismember(&t->blocked, SIGCONT)) {
669 set_tsk_thread_flag(t, TIF_SIGPENDING);
670 state |= TASK_INTERRUPTIBLE;
672 wake_up_state(t, state);
677 if (p->signal->flags & SIGNAL_STOP_STOPPED) {
679 * We were in fact stopped, and are now continued.
680 * Notify the parent with CLD_CONTINUED.
682 p->signal->flags = SIGNAL_STOP_CONTINUED;
683 p->signal->group_exit_code = 0;
684 spin_unlock(&p->sighand->siglock);
685 do_notify_parent_cldstop(p, CLD_CONTINUED);
686 spin_lock(&p->sighand->siglock);
689 * We are not stopped, but there could be a stop
690 * signal in the middle of being processed after
691 * being removed from the queue. Clear that too.
693 p->signal->flags = 0;
695 } else if (sig == SIGKILL) {
697 * Make sure that any pending stop signal already dequeued
698 * is undone by the wakeup for SIGKILL.
700 p->signal->flags = 0;
704 static int send_signal(int sig, struct siginfo *info, struct task_struct *t,
705 struct sigpending *signals)
707 struct sigqueue * q = NULL;
711 * fast-pathed signals for kernel-internal things like SIGSTOP
714 if (info == SEND_SIG_FORCED)
717 /* Real-time signals must be queued if sent by sigqueue, or
718 some other real-time mechanism. It is implementation
719 defined whether kill() does so. We attempt to do so, on
720 the principle of least surprise, but since kill is not
721 allowed to fail with EAGAIN when low on memory we just
722 make sure at least one signal gets delivered and don't
723 pass on the info struct. */
725 q = __sigqueue_alloc(t, GFP_ATOMIC, (sig < SIGRTMIN &&
726 (is_si_special(info) ||
727 info->si_code >= 0)));
729 list_add_tail(&q->list, &signals->list);
730 switch ((unsigned long) info) {
731 case (unsigned long) SEND_SIG_NOINFO:
732 q->info.si_signo = sig;
733 q->info.si_errno = 0;
734 q->info.si_code = SI_USER;
735 q->info.si_pid = current->pid;
736 q->info.si_uid = current->uid;
738 case (unsigned long) SEND_SIG_PRIV:
739 q->info.si_signo = sig;
740 q->info.si_errno = 0;
741 q->info.si_code = SI_KERNEL;
746 copy_siginfo(&q->info, info);
749 } else if (!is_si_special(info)) {
750 if (sig >= SIGRTMIN && info->si_code != SI_USER)
752 * Queue overflow, abort. We may abort if the signal was rt
753 * and sent by user using something other than kill().
759 sigaddset(&signals->signal, sig);
763 #define LEGACY_QUEUE(sigptr, sig) \
764 (((sig) < SIGRTMIN) && sigismember(&(sigptr)->signal, (sig)))
768 specific_send_sig_info(int sig, struct siginfo *info, struct task_struct *t)
772 if (!irqs_disabled())
774 assert_spin_locked(&t->sighand->siglock);
776 /* Short-circuit ignored signals. */
777 if (sig_ignored(t, sig))
780 /* Support queueing exactly one non-rt signal, so that we
781 can get more detailed information about the cause of
783 if (LEGACY_QUEUE(&t->pending, sig))
786 ret = send_signal(sig, info, t, &t->pending);
787 if (!ret && !sigismember(&t->blocked, sig))
788 signal_wake_up(t, sig == SIGKILL);
794 * Force a signal that the process can't ignore: if necessary
795 * we unblock the signal and change any SIG_IGN to SIG_DFL.
799 force_sig_info(int sig, struct siginfo *info, struct task_struct *t)
801 unsigned long int flags;
804 spin_lock_irqsave(&t->sighand->siglock, flags);
805 if (t->sighand->action[sig-1].sa.sa_handler == SIG_IGN) {
806 t->sighand->action[sig-1].sa.sa_handler = SIG_DFL;
808 if (sigismember(&t->blocked, sig)) {
809 sigdelset(&t->blocked, sig);
811 recalc_sigpending_tsk(t);
812 ret = specific_send_sig_info(sig, info, t);
813 spin_unlock_irqrestore(&t->sighand->siglock, flags);
819 force_sig_specific(int sig, struct task_struct *t)
821 force_sig_info(sig, SEND_SIG_FORCED, t);
825 * Test if P wants to take SIG. After we've checked all threads with this,
826 * it's equivalent to finding no threads not blocking SIG. Any threads not
827 * blocking SIG were ruled out because they are not running and already
828 * have pending signals. Such threads will dequeue from the shared queue
829 * as soon as they're available, so putting the signal on the shared queue
830 * will be equivalent to sending it to one such thread.
832 static inline int wants_signal(int sig, struct task_struct *p)
834 if (sigismember(&p->blocked, sig))
836 if (p->flags & PF_EXITING)
840 if (p->state & (TASK_STOPPED | TASK_TRACED))
842 return task_curr(p) || !signal_pending(p);
846 __group_complete_signal(int sig, struct task_struct *p)
848 struct task_struct *t;
851 * Now find a thread we can wake up to take the signal off the queue.
853 * If the main thread wants the signal, it gets first crack.
854 * Probably the least surprising to the average bear.
856 if (wants_signal(sig, p))
858 else if (thread_group_empty(p))
860 * There is just one thread and it does not need to be woken.
861 * It will dequeue unblocked signals before it runs again.
866 * Otherwise try to find a suitable thread.
868 t = p->signal->curr_target;
870 /* restart balancing at this thread */
871 t = p->signal->curr_target = p;
872 BUG_ON(t->tgid != p->tgid);
874 while (!wants_signal(sig, t)) {
876 if (t == p->signal->curr_target)
878 * No thread needs to be woken.
879 * Any eligible threads will see
880 * the signal in the queue soon.
884 p->signal->curr_target = t;
888 * Found a killable thread. If the signal will be fatal,
889 * then start taking the whole group down immediately.
891 if (sig_fatal(p, sig) && !(p->signal->flags & SIGNAL_GROUP_EXIT) &&
892 !sigismember(&t->real_blocked, sig) &&
893 (sig == SIGKILL || !(t->ptrace & PT_PTRACED))) {
895 * This signal will be fatal to the whole group.
897 if (!sig_kernel_coredump(sig)) {
899 * Start a group exit and wake everybody up.
900 * This way we don't have other threads
901 * running and doing things after a slower
902 * thread has the fatal signal pending.
904 p->signal->flags = SIGNAL_GROUP_EXIT;
905 p->signal->group_exit_code = sig;
906 p->signal->group_stop_count = 0;
909 sigaddset(&t->pending.signal, SIGKILL);
910 signal_wake_up(t, 1);
917 * There will be a core dump. We make all threads other
918 * than the chosen one go into a group stop so that nothing
919 * happens until it gets scheduled, takes the signal off
920 * the shared queue, and does the core dump. This is a
921 * little more complicated than strictly necessary, but it
922 * keeps the signal state that winds up in the core dump
923 * unchanged from the death state, e.g. which thread had
924 * the core-dump signal unblocked.
926 rm_from_queue(SIG_KERNEL_STOP_MASK, &t->pending);
927 rm_from_queue(SIG_KERNEL_STOP_MASK, &p->signal->shared_pending);
928 p->signal->group_stop_count = 0;
929 p->signal->group_exit_task = t;
932 p->signal->group_stop_count++;
933 signal_wake_up(t, 0);
936 wake_up_process(p->signal->group_exit_task);
941 * The signal is already in the shared-pending queue.
942 * Tell the chosen thread to wake up and dequeue it.
944 signal_wake_up(t, sig == SIGKILL);
949 __group_send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
953 assert_spin_locked(&p->sighand->siglock);
954 handle_stop_signal(sig, p);
956 /* Short-circuit ignored signals. */
957 if (sig_ignored(p, sig))
960 if (LEGACY_QUEUE(&p->signal->shared_pending, sig))
961 /* This is a non-RT signal and we already have one queued. */
965 * Put this signal on the shared-pending queue, or fail with EAGAIN.
966 * We always use the shared queue for process-wide signals,
967 * to avoid several races.
969 ret = send_signal(sig, info, p, &p->signal->shared_pending);
973 __group_complete_signal(sig, p);
978 * Nuke all other threads in the group.
980 void zap_other_threads(struct task_struct *p)
982 struct task_struct *t;
984 p->signal->flags = SIGNAL_GROUP_EXIT;
985 p->signal->group_stop_count = 0;
987 if (thread_group_empty(p))
990 for (t = next_thread(p); t != p; t = next_thread(t)) {
992 * Don't bother with already dead threads
998 * We don't want to notify the parent, since we are
999 * killed as part of a thread group due to another
1000 * thread doing an execve() or similar. So set the
1001 * exit signal to -1 to allow immediate reaping of
1002 * the process. But don't detach the thread group
1005 if (t != p->group_leader)
1006 t->exit_signal = -1;
1008 /* SIGKILL will be handled before any pending SIGSTOP */
1009 sigaddset(&t->pending.signal, SIGKILL);
1010 signal_wake_up(t, 1);
1015 * Must be called under rcu_read_lock() or with tasklist_lock read-held.
1017 struct sighand_struct *lock_task_sighand(struct task_struct *tsk, unsigned long *flags)
1019 struct sighand_struct *sighand;
1022 sighand = rcu_dereference(tsk->sighand);
1023 if (unlikely(sighand == NULL))
1026 spin_lock_irqsave(&sighand->siglock, *flags);
1027 if (likely(sighand == tsk->sighand))
1029 spin_unlock_irqrestore(&sighand->siglock, *flags);
1035 int group_send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
1037 unsigned long flags;
1040 ret = check_kill_permission(sig, info, p);
1044 if (lock_task_sighand(p, &flags)) {
1045 ret = __group_send_sig_info(sig, info, p);
1046 unlock_task_sighand(p, &flags);
1054 * kill_pg_info() sends a signal to a process group: this is what the tty
1055 * control characters do (^C, ^Z etc)
1058 int __kill_pg_info(int sig, struct siginfo *info, pid_t pgrp)
1060 struct task_struct *p = NULL;
1061 int retval, success;
1068 do_each_task_pid(pgrp, PIDTYPE_PGID, p) {
1069 int err = group_send_sig_info(sig, info, p);
1072 } while_each_task_pid(pgrp, PIDTYPE_PGID, p);
1073 return success ? 0 : retval;
1077 kill_pg_info(int sig, struct siginfo *info, pid_t pgrp)
1081 read_lock(&tasklist_lock);
1082 retval = __kill_pg_info(sig, info, pgrp);
1083 read_unlock(&tasklist_lock);
1089 kill_proc_info(int sig, struct siginfo *info, pid_t pid)
1092 int acquired_tasklist_lock = 0;
1093 struct task_struct *p;
1096 if (unlikely(sig_needs_tasklist(sig))) {
1097 read_lock(&tasklist_lock);
1098 acquired_tasklist_lock = 1;
1100 p = find_task_by_pid(pid);
1103 error = group_send_sig_info(sig, info, p);
1104 if (unlikely(acquired_tasklist_lock))
1105 read_unlock(&tasklist_lock);
1110 /* like kill_proc_info(), but doesn't use uid/euid of "current" */
1111 int kill_proc_info_as_uid(int sig, struct siginfo *info, pid_t pid,
1112 uid_t uid, uid_t euid)
1115 struct task_struct *p;
1117 if (!valid_signal(sig))
1120 read_lock(&tasklist_lock);
1121 p = find_task_by_pid(pid);
1126 if ((info == SEND_SIG_NOINFO || (!is_si_special(info) && SI_FROMUSER(info)))
1127 && (euid != p->suid) && (euid != p->uid)
1128 && (uid != p->suid) && (uid != p->uid)) {
1132 if (sig && p->sighand) {
1133 unsigned long flags;
1134 spin_lock_irqsave(&p->sighand->siglock, flags);
1135 ret = __group_send_sig_info(sig, info, p);
1136 spin_unlock_irqrestore(&p->sighand->siglock, flags);
1139 read_unlock(&tasklist_lock);
1142 EXPORT_SYMBOL_GPL(kill_proc_info_as_uid);
1145 * kill_something_info() interprets pid in interesting ways just like kill(2).
1147 * POSIX specifies that kill(-1,sig) is unspecified, but what we have
1148 * is probably wrong. Should make it like BSD or SYSV.
1151 static int kill_something_info(int sig, struct siginfo *info, int pid)
1154 return kill_pg_info(sig, info, process_group(current));
1155 } else if (pid == -1) {
1156 int retval = 0, count = 0;
1157 struct task_struct * p;
1159 read_lock(&tasklist_lock);
1160 for_each_process(p) {
1161 if (p->pid > 1 && p->tgid != current->tgid) {
1162 int err = group_send_sig_info(sig, info, p);
1168 read_unlock(&tasklist_lock);
1169 return count ? retval : -ESRCH;
1170 } else if (pid < 0) {
1171 return kill_pg_info(sig, info, -pid);
1173 return kill_proc_info(sig, info, pid);
1178 * These are for backward compatibility with the rest of the kernel source.
1182 * These two are the most common entry points. They send a signal
1183 * just to the specific thread.
1186 send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
1189 unsigned long flags;
1192 * Make sure legacy kernel users don't send in bad values
1193 * (normal paths check this in check_kill_permission).
1195 if (!valid_signal(sig))
1199 * We need the tasklist lock even for the specific
1200 * thread case (when we don't need to follow the group
1201 * lists) in order to avoid races with "p->sighand"
1202 * going away or changing from under us.
1204 read_lock(&tasklist_lock);
1205 spin_lock_irqsave(&p->sighand->siglock, flags);
1206 ret = specific_send_sig_info(sig, info, p);
1207 spin_unlock_irqrestore(&p->sighand->siglock, flags);
1208 read_unlock(&tasklist_lock);
1212 #define __si_special(priv) \
1213 ((priv) ? SEND_SIG_PRIV : SEND_SIG_NOINFO)
1216 send_sig(int sig, struct task_struct *p, int priv)
1218 return send_sig_info(sig, __si_special(priv), p);
1222 * This is the entry point for "process-wide" signals.
1223 * They will go to an appropriate thread in the thread group.
1226 send_group_sig_info(int sig, struct siginfo *info, struct task_struct *p)
1229 read_lock(&tasklist_lock);
1230 ret = group_send_sig_info(sig, info, p);
1231 read_unlock(&tasklist_lock);
1236 force_sig(int sig, struct task_struct *p)
1238 force_sig_info(sig, SEND_SIG_PRIV, p);
1242 * When things go south during signal handling, we
1243 * will force a SIGSEGV. And if the signal that caused
1244 * the problem was already a SIGSEGV, we'll want to
1245 * make sure we don't even try to deliver the signal..
1248 force_sigsegv(int sig, struct task_struct *p)
1250 if (sig == SIGSEGV) {
1251 unsigned long flags;
1252 spin_lock_irqsave(&p->sighand->siglock, flags);
1253 p->sighand->action[sig - 1].sa.sa_handler = SIG_DFL;
1254 spin_unlock_irqrestore(&p->sighand->siglock, flags);
1256 force_sig(SIGSEGV, p);
1261 kill_pg(pid_t pgrp, int sig, int priv)
1263 return kill_pg_info(sig, __si_special(priv), pgrp);
1267 kill_proc(pid_t pid, int sig, int priv)
1269 return kill_proc_info(sig, __si_special(priv), pid);
1273 * These functions support sending signals using preallocated sigqueue
1274 * structures. This is needed "because realtime applications cannot
1275 * afford to lose notifications of asynchronous events, like timer
1276 * expirations or I/O completions". In the case of Posix Timers
1277 * we allocate the sigqueue structure from the timer_create. If this
1278 * allocation fails we are able to report the failure to the application
1279 * with an EAGAIN error.
1282 struct sigqueue *sigqueue_alloc(void)
1286 if ((q = __sigqueue_alloc(current, GFP_KERNEL, 0)))
1287 q->flags |= SIGQUEUE_PREALLOC;
1291 void sigqueue_free(struct sigqueue *q)
1293 unsigned long flags;
1294 BUG_ON(!(q->flags & SIGQUEUE_PREALLOC));
1296 * If the signal is still pending remove it from the
1299 if (unlikely(!list_empty(&q->list))) {
1300 spinlock_t *lock = ¤t->sighand->siglock;
1301 read_lock(&tasklist_lock);
1302 spin_lock_irqsave(lock, flags);
1303 if (!list_empty(&q->list))
1304 list_del_init(&q->list);
1305 spin_unlock_irqrestore(lock, flags);
1306 read_unlock(&tasklist_lock);
1308 q->flags &= ~SIGQUEUE_PREALLOC;
1312 int send_sigqueue(int sig, struct sigqueue *q, struct task_struct *p)
1314 unsigned long flags;
1317 BUG_ON(!(q->flags & SIGQUEUE_PREALLOC));
1320 * The rcu based delayed sighand destroy makes it possible to
1321 * run this without tasklist lock held. The task struct itself
1322 * cannot go away as create_timer did get_task_struct().
1324 * We return -1, when the task is marked exiting, so
1325 * posix_timer_event can redirect it to the group leader
1329 if (!likely(lock_task_sighand(p, &flags))) {
1334 if (unlikely(!list_empty(&q->list))) {
1336 * If an SI_TIMER entry is already queue just increment
1337 * the overrun count.
1339 BUG_ON(q->info.si_code != SI_TIMER);
1340 q->info.si_overrun++;
1343 /* Short-circuit ignored signals. */
1344 if (sig_ignored(p, sig)) {
1349 list_add_tail(&q->list, &p->pending.list);
1350 sigaddset(&p->pending.signal, sig);
1351 if (!sigismember(&p->blocked, sig))
1352 signal_wake_up(p, sig == SIGKILL);
1355 unlock_task_sighand(p, &flags);
1363 send_group_sigqueue(int sig, struct sigqueue *q, struct task_struct *p)
1365 unsigned long flags;
1368 BUG_ON(!(q->flags & SIGQUEUE_PREALLOC));
1370 read_lock(&tasklist_lock);
1371 /* Since it_lock is held, p->sighand cannot be NULL. */
1372 spin_lock_irqsave(&p->sighand->siglock, flags);
1373 handle_stop_signal(sig, p);
1375 /* Short-circuit ignored signals. */
1376 if (sig_ignored(p, sig)) {
1381 if (unlikely(!list_empty(&q->list))) {
1383 * If an SI_TIMER entry is already queue just increment
1384 * the overrun count. Other uses should not try to
1385 * send the signal multiple times.
1387 if (q->info.si_code != SI_TIMER)
1389 q->info.si_overrun++;
1394 * Put this signal on the shared-pending queue.
1395 * We always use the shared queue for process-wide signals,
1396 * to avoid several races.
1398 list_add_tail(&q->list, &p->signal->shared_pending.list);
1399 sigaddset(&p->signal->shared_pending.signal, sig);
1401 __group_complete_signal(sig, p);
1403 spin_unlock_irqrestore(&p->sighand->siglock, flags);
1404 read_unlock(&tasklist_lock);
1409 * Wake up any threads in the parent blocked in wait* syscalls.
1411 static inline void __wake_up_parent(struct task_struct *p,
1412 struct task_struct *parent)
1414 wake_up_interruptible_sync(&parent->signal->wait_chldexit);
1418 * Let a parent know about the death of a child.
1419 * For a stopped/continued status change, use do_notify_parent_cldstop instead.
1422 void do_notify_parent(struct task_struct *tsk, int sig)
1424 struct siginfo info;
1425 unsigned long flags;
1426 struct sighand_struct *psig;
1430 /* do_notify_parent_cldstop should have been called instead. */
1431 BUG_ON(tsk->state & (TASK_STOPPED|TASK_TRACED));
1433 BUG_ON(!tsk->ptrace &&
1434 (tsk->group_leader != tsk || !thread_group_empty(tsk)));
1436 info.si_signo = sig;
1438 info.si_pid = tsk->pid;
1439 info.si_uid = tsk->uid;
1441 /* FIXME: find out whether or not this is supposed to be c*time. */
1442 info.si_utime = cputime_to_jiffies(cputime_add(tsk->utime,
1443 tsk->signal->utime));
1444 info.si_stime = cputime_to_jiffies(cputime_add(tsk->stime,
1445 tsk->signal->stime));
1447 info.si_status = tsk->exit_code & 0x7f;
1448 if (tsk->exit_code & 0x80)
1449 info.si_code = CLD_DUMPED;
1450 else if (tsk->exit_code & 0x7f)
1451 info.si_code = CLD_KILLED;
1453 info.si_code = CLD_EXITED;
1454 info.si_status = tsk->exit_code >> 8;
1457 psig = tsk->parent->sighand;
1458 spin_lock_irqsave(&psig->siglock, flags);
1459 if (!tsk->ptrace && sig == SIGCHLD &&
1460 (psig->action[SIGCHLD-1].sa.sa_handler == SIG_IGN ||
1461 (psig->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDWAIT))) {
1463 * We are exiting and our parent doesn't care. POSIX.1
1464 * defines special semantics for setting SIGCHLD to SIG_IGN
1465 * or setting the SA_NOCLDWAIT flag: we should be reaped
1466 * automatically and not left for our parent's wait4 call.
1467 * Rather than having the parent do it as a magic kind of
1468 * signal handler, we just set this to tell do_exit that we
1469 * can be cleaned up without becoming a zombie. Note that
1470 * we still call __wake_up_parent in this case, because a
1471 * blocked sys_wait4 might now return -ECHILD.
1473 * Whether we send SIGCHLD or not for SA_NOCLDWAIT
1474 * is implementation-defined: we do (if you don't want
1475 * it, just use SIG_IGN instead).
1477 tsk->exit_signal = -1;
1478 if (psig->action[SIGCHLD-1].sa.sa_handler == SIG_IGN)
1481 if (valid_signal(sig) && sig > 0)
1482 __group_send_sig_info(sig, &info, tsk->parent);
1483 __wake_up_parent(tsk, tsk->parent);
1484 spin_unlock_irqrestore(&psig->siglock, flags);
1487 static void do_notify_parent_cldstop(struct task_struct *tsk, int why)
1489 struct siginfo info;
1490 unsigned long flags;
1491 struct task_struct *parent;
1492 struct sighand_struct *sighand;
1494 if (tsk->ptrace & PT_PTRACED)
1495 parent = tsk->parent;
1497 tsk = tsk->group_leader;
1498 parent = tsk->real_parent;
1501 info.si_signo = SIGCHLD;
1503 info.si_pid = tsk->pid;
1504 info.si_uid = tsk->uid;
1506 /* FIXME: find out whether or not this is supposed to be c*time. */
1507 info.si_utime = cputime_to_jiffies(tsk->utime);
1508 info.si_stime = cputime_to_jiffies(tsk->stime);
1513 info.si_status = SIGCONT;
1516 info.si_status = tsk->signal->group_exit_code & 0x7f;
1519 info.si_status = tsk->exit_code & 0x7f;
1525 sighand = parent->sighand;
1526 spin_lock_irqsave(&sighand->siglock, flags);
1527 if (sighand->action[SIGCHLD-1].sa.sa_handler != SIG_IGN &&
1528 !(sighand->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDSTOP))
1529 __group_send_sig_info(SIGCHLD, &info, parent);
1531 * Even if SIGCHLD is not generated, we must wake up wait4 calls.
1533 __wake_up_parent(tsk, parent);
1534 spin_unlock_irqrestore(&sighand->siglock, flags);
1538 * This must be called with current->sighand->siglock held.
1540 * This should be the path for all ptrace stops.
1541 * We always set current->last_siginfo while stopped here.
1542 * That makes it a way to test a stopped process for
1543 * being ptrace-stopped vs being job-control-stopped.
1545 * If we actually decide not to stop at all because the tracer is gone,
1546 * we leave nostop_code in current->exit_code.
1548 static void ptrace_stop(int exit_code, int nostop_code, siginfo_t *info)
1551 * If there is a group stop in progress,
1552 * we must participate in the bookkeeping.
1554 if (current->signal->group_stop_count > 0)
1555 --current->signal->group_stop_count;
1557 current->last_siginfo = info;
1558 current->exit_code = exit_code;
1560 /* Let the debugger run. */
1561 set_current_state(TASK_TRACED);
1562 spin_unlock_irq(¤t->sighand->siglock);
1564 read_lock(&tasklist_lock);
1565 if (likely(current->ptrace & PT_PTRACED) &&
1566 likely(current->parent != current->real_parent ||
1567 !(current->ptrace & PT_ATTACHED)) &&
1568 (likely(current->parent->signal != current->signal) ||
1569 !unlikely(current->signal->flags & SIGNAL_GROUP_EXIT))) {
1570 do_notify_parent_cldstop(current, CLD_TRAPPED);
1571 read_unlock(&tasklist_lock);
1575 * By the time we got the lock, our tracer went away.
1578 read_unlock(&tasklist_lock);
1579 set_current_state(TASK_RUNNING);
1580 current->exit_code = nostop_code;
1584 * We are back. Now reacquire the siglock before touching
1585 * last_siginfo, so that we are sure to have synchronized with
1586 * any signal-sending on another CPU that wants to examine it.
1588 spin_lock_irq(¤t->sighand->siglock);
1589 current->last_siginfo = NULL;
1592 * Queued signals ignored us while we were stopped for tracing.
1593 * So check for any that we should take before resuming user mode.
1595 recalc_sigpending();
1598 void ptrace_notify(int exit_code)
1602 BUG_ON((exit_code & (0x7f | ~0xffff)) != SIGTRAP);
1604 memset(&info, 0, sizeof info);
1605 info.si_signo = SIGTRAP;
1606 info.si_code = exit_code;
1607 info.si_pid = current->pid;
1608 info.si_uid = current->uid;
1610 /* Let the debugger run. */
1611 spin_lock_irq(¤t->sighand->siglock);
1612 ptrace_stop(exit_code, 0, &info);
1613 spin_unlock_irq(¤t->sighand->siglock);
1617 finish_stop(int stop_count)
1620 * If there are no other threads in the group, or if there is
1621 * a group stop in progress and we are the last to stop,
1622 * report to the parent. When ptraced, every thread reports itself.
1624 if (stop_count == 0 || (current->ptrace & PT_PTRACED)) {
1625 read_lock(&tasklist_lock);
1626 do_notify_parent_cldstop(current, CLD_STOPPED);
1627 read_unlock(&tasklist_lock);
1632 * Now we don't run again until continued.
1634 current->exit_code = 0;
1638 * This performs the stopping for SIGSTOP and other stop signals.
1639 * We have to stop all threads in the thread group.
1640 * Returns nonzero if we've actually stopped and released the siglock.
1641 * Returns zero if we didn't stop and still hold the siglock.
1643 static int do_signal_stop(int signr)
1645 struct signal_struct *sig = current->signal;
1648 if (!likely(sig->flags & SIGNAL_STOP_DEQUEUED))
1651 if (sig->group_stop_count > 0) {
1653 * There is a group stop in progress. We don't need to
1654 * start another one.
1656 stop_count = --sig->group_stop_count;
1659 * There is no group stop already in progress.
1660 * We must initiate one now.
1662 struct task_struct *t;
1664 sig->group_exit_code = signr;
1667 for (t = next_thread(current); t != current; t = next_thread(t))
1669 * Setting state to TASK_STOPPED for a group
1670 * stop is always done with the siglock held,
1671 * so this check has no races.
1673 if (!t->exit_state &&
1674 !(t->state & (TASK_STOPPED|TASK_TRACED))) {
1676 signal_wake_up(t, 0);
1678 sig->group_stop_count = stop_count;
1681 if (stop_count == 0)
1682 sig->flags = SIGNAL_STOP_STOPPED;
1683 current->exit_code = sig->group_exit_code;
1684 __set_current_state(TASK_STOPPED);
1686 spin_unlock_irq(¤t->sighand->siglock);
1687 finish_stop(stop_count);
1692 * Do appropriate magic when group_stop_count > 0.
1693 * We return nonzero if we stopped, after releasing the siglock.
1694 * We return zero if we still hold the siglock and should look
1695 * for another signal without checking group_stop_count again.
1697 static int handle_group_stop(void)
1701 if (current->signal->group_exit_task == current) {
1703 * Group stop is so we can do a core dump,
1704 * We are the initiating thread, so get on with it.
1706 current->signal->group_exit_task = NULL;
1710 if (current->signal->flags & SIGNAL_GROUP_EXIT)
1712 * Group stop is so another thread can do a core dump,
1713 * or else we are racing against a death signal.
1714 * Just punt the stop so we can get the next signal.
1719 * There is a group stop in progress. We stop
1720 * without any associated signal being in our queue.
1722 stop_count = --current->signal->group_stop_count;
1723 if (stop_count == 0)
1724 current->signal->flags = SIGNAL_STOP_STOPPED;
1725 current->exit_code = current->signal->group_exit_code;
1726 set_current_state(TASK_STOPPED);
1727 spin_unlock_irq(¤t->sighand->siglock);
1728 finish_stop(stop_count);
1732 int get_signal_to_deliver(siginfo_t *info, struct k_sigaction *return_ka,
1733 struct pt_regs *regs, void *cookie)
1735 sigset_t *mask = ¤t->blocked;
1741 spin_lock_irq(¤t->sighand->siglock);
1743 struct k_sigaction *ka;
1745 if (unlikely(current->signal->group_stop_count > 0) &&
1746 handle_group_stop())
1749 signr = dequeue_signal(current, mask, info);
1752 break; /* will return 0 */
1754 if ((current->ptrace & PT_PTRACED) && signr != SIGKILL) {
1755 ptrace_signal_deliver(regs, cookie);
1757 /* Let the debugger run. */
1758 ptrace_stop(signr, signr, info);
1760 /* We're back. Did the debugger cancel the sig or group_exit? */
1761 signr = current->exit_code;
1762 if (signr == 0 || current->signal->flags & SIGNAL_GROUP_EXIT)
1765 current->exit_code = 0;
1767 /* Update the siginfo structure if the signal has
1768 changed. If the debugger wanted something
1769 specific in the siginfo structure then it should
1770 have updated *info via PTRACE_SETSIGINFO. */
1771 if (signr != info->si_signo) {
1772 info->si_signo = signr;
1774 info->si_code = SI_USER;
1775 info->si_pid = current->parent->pid;
1776 info->si_uid = current->parent->uid;
1779 /* If the (new) signal is now blocked, requeue it. */
1780 if (sigismember(¤t->blocked, signr)) {
1781 specific_send_sig_info(signr, info, current);
1786 ka = ¤t->sighand->action[signr-1];
1787 if (ka->sa.sa_handler == SIG_IGN) /* Do nothing. */
1789 if (ka->sa.sa_handler != SIG_DFL) {
1790 /* Run the handler. */
1793 if (ka->sa.sa_flags & SA_ONESHOT)
1794 ka->sa.sa_handler = SIG_DFL;
1796 break; /* will return non-zero "signr" value */
1800 * Now we are doing the default action for this signal.
1802 if (sig_kernel_ignore(signr)) /* Default is nothing. */
1805 /* Init gets no signals it doesn't want. */
1806 if (current == child_reaper)
1809 if (sig_kernel_stop(signr)) {
1811 * The default action is to stop all threads in
1812 * the thread group. The job control signals
1813 * do nothing in an orphaned pgrp, but SIGSTOP
1814 * always works. Note that siglock needs to be
1815 * dropped during the call to is_orphaned_pgrp()
1816 * because of lock ordering with tasklist_lock.
1817 * This allows an intervening SIGCONT to be posted.
1818 * We need to check for that and bail out if necessary.
1820 if (signr != SIGSTOP) {
1821 spin_unlock_irq(¤t->sighand->siglock);
1823 /* signals can be posted during this window */
1825 if (is_orphaned_pgrp(process_group(current)))
1828 spin_lock_irq(¤t->sighand->siglock);
1831 if (likely(do_signal_stop(signr))) {
1832 /* It released the siglock. */
1837 * We didn't actually stop, due to a race
1838 * with SIGCONT or something like that.
1843 spin_unlock_irq(¤t->sighand->siglock);
1846 * Anything else is fatal, maybe with a core dump.
1848 current->flags |= PF_SIGNALED;
1849 if (sig_kernel_coredump(signr)) {
1851 * If it was able to dump core, this kills all
1852 * other threads in the group and synchronizes with
1853 * their demise. If we lost the race with another
1854 * thread getting here, it set group_exit_code
1855 * first and our do_group_exit call below will use
1856 * that value and ignore the one we pass it.
1858 do_coredump((long)signr, signr, regs);
1862 * Death signals, no core dump.
1864 do_group_exit(signr);
1867 spin_unlock_irq(¤t->sighand->siglock);
1871 EXPORT_SYMBOL(recalc_sigpending);
1872 EXPORT_SYMBOL_GPL(dequeue_signal);
1873 EXPORT_SYMBOL(flush_signals);
1874 EXPORT_SYMBOL(force_sig);
1875 EXPORT_SYMBOL(kill_pg);
1876 EXPORT_SYMBOL(kill_proc);
1877 EXPORT_SYMBOL(ptrace_notify);
1878 EXPORT_SYMBOL(send_sig);
1879 EXPORT_SYMBOL(send_sig_info);
1880 EXPORT_SYMBOL(sigprocmask);
1881 EXPORT_SYMBOL(block_all_signals);
1882 EXPORT_SYMBOL(unblock_all_signals);
1886 * System call entry points.
1889 asmlinkage long sys_restart_syscall(void)
1891 struct restart_block *restart = ¤t_thread_info()->restart_block;
1892 return restart->fn(restart);
1895 long do_no_restart_syscall(struct restart_block *param)
1901 * We don't need to get the kernel lock - this is all local to this
1902 * particular thread.. (and that's good, because this is _heavily_
1903 * used by various programs)
1907 * This is also useful for kernel threads that want to temporarily
1908 * (or permanently) block certain signals.
1910 * NOTE! Unlike the user-mode sys_sigprocmask(), the kernel
1911 * interface happily blocks "unblockable" signals like SIGKILL
1914 int sigprocmask(int how, sigset_t *set, sigset_t *oldset)
1918 spin_lock_irq(¤t->sighand->siglock);
1920 *oldset = current->blocked;
1925 sigorsets(¤t->blocked, ¤t->blocked, set);
1928 signandsets(¤t->blocked, ¤t->blocked, set);
1931 current->blocked = *set;
1936 recalc_sigpending();
1937 spin_unlock_irq(¤t->sighand->siglock);
1943 sys_rt_sigprocmask(int how, sigset_t __user *set, sigset_t __user *oset, size_t sigsetsize)
1945 int error = -EINVAL;
1946 sigset_t old_set, new_set;
1948 /* XXX: Don't preclude handling different sized sigset_t's. */
1949 if (sigsetsize != sizeof(sigset_t))
1954 if (copy_from_user(&new_set, set, sizeof(*set)))
1956 sigdelsetmask(&new_set, sigmask(SIGKILL)|sigmask(SIGSTOP));
1958 error = sigprocmask(how, &new_set, &old_set);
1964 spin_lock_irq(¤t->sighand->siglock);
1965 old_set = current->blocked;
1966 spin_unlock_irq(¤t->sighand->siglock);
1970 if (copy_to_user(oset, &old_set, sizeof(*oset)))
1978 long do_sigpending(void __user *set, unsigned long sigsetsize)
1980 long error = -EINVAL;
1983 if (sigsetsize > sizeof(sigset_t))
1986 spin_lock_irq(¤t->sighand->siglock);
1987 sigorsets(&pending, ¤t->pending.signal,
1988 ¤t->signal->shared_pending.signal);
1989 spin_unlock_irq(¤t->sighand->siglock);
1991 /* Outside the lock because only this thread touches it. */
1992 sigandsets(&pending, ¤t->blocked, &pending);
1995 if (!copy_to_user(set, &pending, sigsetsize))
2003 sys_rt_sigpending(sigset_t __user *set, size_t sigsetsize)
2005 return do_sigpending(set, sigsetsize);
2008 #ifndef HAVE_ARCH_COPY_SIGINFO_TO_USER
2010 int copy_siginfo_to_user(siginfo_t __user *to, siginfo_t *from)
2014 if (!access_ok (VERIFY_WRITE, to, sizeof(siginfo_t)))
2016 if (from->si_code < 0)
2017 return __copy_to_user(to, from, sizeof(siginfo_t))
2020 * If you change siginfo_t structure, please be sure
2021 * this code is fixed accordingly.
2022 * It should never copy any pad contained in the structure
2023 * to avoid security leaks, but must copy the generic
2024 * 3 ints plus the relevant union member.
2026 err = __put_user(from->si_signo, &to->si_signo);
2027 err |= __put_user(from->si_errno, &to->si_errno);
2028 err |= __put_user((short)from->si_code, &to->si_code);
2029 switch (from->si_code & __SI_MASK) {
2031 err |= __put_user(from->si_pid, &to->si_pid);
2032 err |= __put_user(from->si_uid, &to->si_uid);
2035 err |= __put_user(from->si_tid, &to->si_tid);
2036 err |= __put_user(from->si_overrun, &to->si_overrun);
2037 err |= __put_user(from->si_ptr, &to->si_ptr);
2040 err |= __put_user(from->si_band, &to->si_band);
2041 err |= __put_user(from->si_fd, &to->si_fd);
2044 err |= __put_user(from->si_addr, &to->si_addr);
2045 #ifdef __ARCH_SI_TRAPNO
2046 err |= __put_user(from->si_trapno, &to->si_trapno);
2050 err |= __put_user(from->si_pid, &to->si_pid);
2051 err |= __put_user(from->si_uid, &to->si_uid);
2052 err |= __put_user(from->si_status, &to->si_status);
2053 err |= __put_user(from->si_utime, &to->si_utime);
2054 err |= __put_user(from->si_stime, &to->si_stime);
2056 case __SI_RT: /* This is not generated by the kernel as of now. */
2057 case __SI_MESGQ: /* But this is */
2058 err |= __put_user(from->si_pid, &to->si_pid);
2059 err |= __put_user(from->si_uid, &to->si_uid);
2060 err |= __put_user(from->si_ptr, &to->si_ptr);
2062 default: /* this is just in case for now ... */
2063 err |= __put_user(from->si_pid, &to->si_pid);
2064 err |= __put_user(from->si_uid, &to->si_uid);
2073 sys_rt_sigtimedwait(const sigset_t __user *uthese,
2074 siginfo_t __user *uinfo,
2075 const struct timespec __user *uts,
2084 /* XXX: Don't preclude handling different sized sigset_t's. */
2085 if (sigsetsize != sizeof(sigset_t))
2088 if (copy_from_user(&these, uthese, sizeof(these)))
2092 * Invert the set of allowed signals to get those we
2095 sigdelsetmask(&these, sigmask(SIGKILL)|sigmask(SIGSTOP));
2099 if (copy_from_user(&ts, uts, sizeof(ts)))
2101 if (ts.tv_nsec >= 1000000000L || ts.tv_nsec < 0
2106 spin_lock_irq(¤t->sighand->siglock);
2107 sig = dequeue_signal(current, &these, &info);
2109 timeout = MAX_SCHEDULE_TIMEOUT;
2111 timeout = (timespec_to_jiffies(&ts)
2112 + (ts.tv_sec || ts.tv_nsec));
2115 /* None ready -- temporarily unblock those we're
2116 * interested while we are sleeping in so that we'll
2117 * be awakened when they arrive. */
2118 current->real_blocked = current->blocked;
2119 sigandsets(¤t->blocked, ¤t->blocked, &these);
2120 recalc_sigpending();
2121 spin_unlock_irq(¤t->sighand->siglock);
2123 timeout = schedule_timeout_interruptible(timeout);
2125 spin_lock_irq(¤t->sighand->siglock);
2126 sig = dequeue_signal(current, &these, &info);
2127 current->blocked = current->real_blocked;
2128 siginitset(¤t->real_blocked, 0);
2129 recalc_sigpending();
2132 spin_unlock_irq(¤t->sighand->siglock);
2137 if (copy_siginfo_to_user(uinfo, &info))
2150 sys_kill(int pid, int sig)
2152 struct siginfo info;
2154 info.si_signo = sig;
2156 info.si_code = SI_USER;
2157 info.si_pid = current->tgid;
2158 info.si_uid = current->uid;
2160 return kill_something_info(sig, &info, pid);
2163 static int do_tkill(int tgid, int pid, int sig)
2166 struct siginfo info;
2167 struct task_struct *p;
2170 info.si_signo = sig;
2172 info.si_code = SI_TKILL;
2173 info.si_pid = current->tgid;
2174 info.si_uid = current->uid;
2176 read_lock(&tasklist_lock);
2177 p = find_task_by_pid(pid);
2178 if (p && (tgid <= 0 || p->tgid == tgid)) {
2179 error = check_kill_permission(sig, &info, p);
2181 * The null signal is a permissions and process existence
2182 * probe. No signal is actually delivered.
2184 if (!error && sig && p->sighand) {
2185 spin_lock_irq(&p->sighand->siglock);
2186 handle_stop_signal(sig, p);
2187 error = specific_send_sig_info(sig, &info, p);
2188 spin_unlock_irq(&p->sighand->siglock);
2191 read_unlock(&tasklist_lock);
2197 * sys_tgkill - send signal to one specific thread
2198 * @tgid: the thread group ID of the thread
2199 * @pid: the PID of the thread
2200 * @sig: signal to be sent
2202 * This syscall also checks the tgid and returns -ESRCH even if the PID
2203 * exists but it's not belonging to the target process anymore. This
2204 * method solves the problem of threads exiting and PIDs getting reused.
2206 asmlinkage long sys_tgkill(int tgid, int pid, int sig)
2208 /* This is only valid for single tasks */
2209 if (pid <= 0 || tgid <= 0)
2212 return do_tkill(tgid, pid, sig);
2216 * Send a signal to only one task, even if it's a CLONE_THREAD task.
2219 sys_tkill(int pid, int sig)
2221 /* This is only valid for single tasks */
2225 return do_tkill(0, pid, sig);
2229 sys_rt_sigqueueinfo(int pid, int sig, siginfo_t __user *uinfo)
2233 if (copy_from_user(&info, uinfo, sizeof(siginfo_t)))
2236 /* Not even root can pretend to send signals from the kernel.
2237 Nor can they impersonate a kill(), which adds source info. */
2238 if (info.si_code >= 0)
2240 info.si_signo = sig;
2242 /* POSIX.1b doesn't mention process groups. */
2243 return kill_proc_info(sig, &info, pid);
2246 int do_sigaction(int sig, struct k_sigaction *act, struct k_sigaction *oact)
2248 struct k_sigaction *k;
2251 if (!valid_signal(sig) || sig < 1 || (act && sig_kernel_only(sig)))
2254 k = ¤t->sighand->action[sig-1];
2256 spin_lock_irq(¤t->sighand->siglock);
2257 if (signal_pending(current)) {
2259 * If there might be a fatal signal pending on multiple
2260 * threads, make sure we take it before changing the action.
2262 spin_unlock_irq(¤t->sighand->siglock);
2263 return -ERESTARTNOINTR;
2270 sigdelsetmask(&act->sa.sa_mask,
2271 sigmask(SIGKILL) | sigmask(SIGSTOP));
2275 * "Setting a signal action to SIG_IGN for a signal that is
2276 * pending shall cause the pending signal to be discarded,
2277 * whether or not it is blocked."
2279 * "Setting a signal action to SIG_DFL for a signal that is
2280 * pending and whose default action is to ignore the signal
2281 * (for example, SIGCHLD), shall cause the pending signal to
2282 * be discarded, whether or not it is blocked"
2284 if (act->sa.sa_handler == SIG_IGN ||
2285 (act->sa.sa_handler == SIG_DFL && sig_kernel_ignore(sig))) {
2286 struct task_struct *t = current;
2288 sigaddset(&mask, sig);
2289 rm_from_queue_full(&mask, &t->signal->shared_pending);
2291 rm_from_queue_full(&mask, &t->pending);
2292 recalc_sigpending_tsk(t);
2294 } while (t != current);
2298 spin_unlock_irq(¤t->sighand->siglock);
2303 do_sigaltstack (const stack_t __user *uss, stack_t __user *uoss, unsigned long sp)
2309 oss.ss_sp = (void __user *) current->sas_ss_sp;
2310 oss.ss_size = current->sas_ss_size;
2311 oss.ss_flags = sas_ss_flags(sp);
2320 if (!access_ok(VERIFY_READ, uss, sizeof(*uss))
2321 || __get_user(ss_sp, &uss->ss_sp)
2322 || __get_user(ss_flags, &uss->ss_flags)
2323 || __get_user(ss_size, &uss->ss_size))
2327 if (on_sig_stack(sp))
2333 * Note - this code used to test ss_flags incorrectly
2334 * old code may have been written using ss_flags==0
2335 * to mean ss_flags==SS_ONSTACK (as this was the only
2336 * way that worked) - this fix preserves that older
2339 if (ss_flags != SS_DISABLE && ss_flags != SS_ONSTACK && ss_flags != 0)
2342 if (ss_flags == SS_DISABLE) {
2347 if (ss_size < MINSIGSTKSZ)
2351 current->sas_ss_sp = (unsigned long) ss_sp;
2352 current->sas_ss_size = ss_size;
2357 if (copy_to_user(uoss, &oss, sizeof(oss)))
2366 #ifdef __ARCH_WANT_SYS_SIGPENDING
2369 sys_sigpending(old_sigset_t __user *set)
2371 return do_sigpending(set, sizeof(*set));
2376 #ifdef __ARCH_WANT_SYS_SIGPROCMASK
2377 /* Some platforms have their own version with special arguments others
2378 support only sys_rt_sigprocmask. */
2381 sys_sigprocmask(int how, old_sigset_t __user *set, old_sigset_t __user *oset)
2384 old_sigset_t old_set, new_set;
2388 if (copy_from_user(&new_set, set, sizeof(*set)))
2390 new_set &= ~(sigmask(SIGKILL) | sigmask(SIGSTOP));
2392 spin_lock_irq(¤t->sighand->siglock);
2393 old_set = current->blocked.sig[0];
2401 sigaddsetmask(¤t->blocked, new_set);
2404 sigdelsetmask(¤t->blocked, new_set);
2407 current->blocked.sig[0] = new_set;
2411 recalc_sigpending();
2412 spin_unlock_irq(¤t->sighand->siglock);
2418 old_set = current->blocked.sig[0];
2421 if (copy_to_user(oset, &old_set, sizeof(*oset)))
2428 #endif /* __ARCH_WANT_SYS_SIGPROCMASK */
2430 #ifdef __ARCH_WANT_SYS_RT_SIGACTION
2432 sys_rt_sigaction(int sig,
2433 const struct sigaction __user *act,
2434 struct sigaction __user *oact,
2437 struct k_sigaction new_sa, old_sa;
2440 /* XXX: Don't preclude handling different sized sigset_t's. */
2441 if (sigsetsize != sizeof(sigset_t))
2445 if (copy_from_user(&new_sa.sa, act, sizeof(new_sa.sa)))
2449 ret = do_sigaction(sig, act ? &new_sa : NULL, oact ? &old_sa : NULL);
2452 if (copy_to_user(oact, &old_sa.sa, sizeof(old_sa.sa)))
2458 #endif /* __ARCH_WANT_SYS_RT_SIGACTION */
2460 #ifdef __ARCH_WANT_SYS_SGETMASK
2463 * For backwards compatibility. Functionality superseded by sigprocmask.
2469 return current->blocked.sig[0];
2473 sys_ssetmask(int newmask)
2477 spin_lock_irq(¤t->sighand->siglock);
2478 old = current->blocked.sig[0];
2480 siginitset(¤t->blocked, newmask & ~(sigmask(SIGKILL)|
2482 recalc_sigpending();
2483 spin_unlock_irq(¤t->sighand->siglock);
2487 #endif /* __ARCH_WANT_SGETMASK */
2489 #ifdef __ARCH_WANT_SYS_SIGNAL
2491 * For backwards compatibility. Functionality superseded by sigaction.
2493 asmlinkage unsigned long
2494 sys_signal(int sig, __sighandler_t handler)
2496 struct k_sigaction new_sa, old_sa;
2499 new_sa.sa.sa_handler = handler;
2500 new_sa.sa.sa_flags = SA_ONESHOT | SA_NOMASK;
2501 sigemptyset(&new_sa.sa.sa_mask);
2503 ret = do_sigaction(sig, &new_sa, &old_sa);
2505 return ret ? ret : (unsigned long)old_sa.sa.sa_handler;
2507 #endif /* __ARCH_WANT_SYS_SIGNAL */
2509 #ifdef __ARCH_WANT_SYS_PAUSE
2514 current->state = TASK_INTERRUPTIBLE;
2516 return -ERESTARTNOHAND;
2521 #ifdef __ARCH_WANT_SYS_RT_SIGSUSPEND
2522 asmlinkage long sys_rt_sigsuspend(sigset_t __user *unewset, size_t sigsetsize)
2526 /* XXX: Don't preclude handling different sized sigset_t's. */
2527 if (sigsetsize != sizeof(sigset_t))
2530 if (copy_from_user(&newset, unewset, sizeof(newset)))
2532 sigdelsetmask(&newset, sigmask(SIGKILL)|sigmask(SIGSTOP));
2534 spin_lock_irq(¤t->sighand->siglock);
2535 current->saved_sigmask = current->blocked;
2536 current->blocked = newset;
2537 recalc_sigpending();
2538 spin_unlock_irq(¤t->sighand->siglock);
2540 current->state = TASK_INTERRUPTIBLE;
2542 set_thread_flag(TIF_RESTORE_SIGMASK);
2543 return -ERESTARTNOHAND;
2545 #endif /* __ARCH_WANT_SYS_RT_SIGSUSPEND */
2547 void __init signals_init(void)
2550 kmem_cache_create("sigqueue",
2551 sizeof(struct sigqueue),
2552 __alignof__(struct sigqueue),
2553 SLAB_PANIC, NULL, NULL);