[PATCH] copy_process: cleanup bad_fork_cleanup_signal
[linux-2.6/openmoko-kernel/knife-kernel.git] / kernel / signal.c
blob54e9ef673e68623079658cd38c5837c4f7a619db
1 /*
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>
19 #include <linux/fs.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/posix-timers.h>
26 #include <linux/signal.h>
27 #include <linux/audit.h>
28 #include <linux/capability.h>
29 #include <asm/param.h>
30 #include <asm/uaccess.h>
31 #include <asm/unistd.h>
32 #include <asm/siginfo.h>
35 * SLAB caches for signal bits.
38 static kmem_cache_t *sigqueue_cachep;
41 * In POSIX a signal is sent either to a specific thread (Linux task)
42 * or to the process as a whole (Linux thread group). How the signal
43 * is sent determines whether it's to one thread or the whole group,
44 * which determines which signal mask(s) are involved in blocking it
45 * from being delivered until later. When the signal is delivered,
46 * either it's caught or ignored by a user handler or it has a default
47 * effect that applies to the whole thread group (POSIX process).
49 * The possible effects an unblocked signal set to SIG_DFL can have are:
50 * ignore - Nothing Happens
51 * terminate - kill the process, i.e. all threads in the group,
52 * similar to exit_group. The group leader (only) reports
53 * WIFSIGNALED status to its parent.
54 * coredump - write a core dump file describing all threads using
55 * the same mm and then kill all those threads
56 * stop - stop all the threads in the group, i.e. TASK_STOPPED state
58 * SIGKILL and SIGSTOP cannot be caught, blocked, or ignored.
59 * Other signals when not blocked and set to SIG_DFL behaves as follows.
60 * The job control signals also have other special effects.
62 * +--------------------+------------------+
63 * | POSIX signal | default action |
64 * +--------------------+------------------+
65 * | SIGHUP | terminate |
66 * | SIGINT | terminate |
67 * | SIGQUIT | coredump |
68 * | SIGILL | coredump |
69 * | SIGTRAP | coredump |
70 * | SIGABRT/SIGIOT | coredump |
71 * | SIGBUS | coredump |
72 * | SIGFPE | coredump |
73 * | SIGKILL | terminate(+) |
74 * | SIGUSR1 | terminate |
75 * | SIGSEGV | coredump |
76 * | SIGUSR2 | terminate |
77 * | SIGPIPE | terminate |
78 * | SIGALRM | terminate |
79 * | SIGTERM | terminate |
80 * | SIGCHLD | ignore |
81 * | SIGCONT | ignore(*) |
82 * | SIGSTOP | stop(*)(+) |
83 * | SIGTSTP | stop(*) |
84 * | SIGTTIN | stop(*) |
85 * | SIGTTOU | stop(*) |
86 * | SIGURG | ignore |
87 * | SIGXCPU | coredump |
88 * | SIGXFSZ | coredump |
89 * | SIGVTALRM | terminate |
90 * | SIGPROF | terminate |
91 * | SIGPOLL/SIGIO | terminate |
92 * | SIGSYS/SIGUNUSED | coredump |
93 * | SIGSTKFLT | terminate |
94 * | SIGWINCH | ignore |
95 * | SIGPWR | terminate |
96 * | SIGRTMIN-SIGRTMAX | terminate |
97 * +--------------------+------------------+
98 * | non-POSIX signal | default action |
99 * +--------------------+------------------+
100 * | SIGEMT | coredump |
101 * +--------------------+------------------+
103 * (+) For SIGKILL and SIGSTOP the action is "always", not just "default".
104 * (*) Special job control effects:
105 * When SIGCONT is sent, it resumes the process (all threads in the group)
106 * from TASK_STOPPED state and also clears any pending/queued stop signals
107 * (any of those marked with "stop(*)"). This happens regardless of blocking,
108 * catching, or ignoring SIGCONT. When any stop signal is sent, it clears
109 * any pending/queued SIGCONT signals; this happens regardless of blocking,
110 * catching, or ignored the stop signal, though (except for SIGSTOP) the
111 * default action of stopping the process may happen later or never.
114 #ifdef SIGEMT
115 #define M_SIGEMT M(SIGEMT)
116 #else
117 #define M_SIGEMT 0
118 #endif
120 #if SIGRTMIN > BITS_PER_LONG
121 #define M(sig) (1ULL << ((sig)-1))
122 #else
123 #define M(sig) (1UL << ((sig)-1))
124 #endif
125 #define T(sig, mask) (M(sig) & (mask))
127 #define SIG_KERNEL_ONLY_MASK (\
128 M(SIGKILL) | M(SIGSTOP) )
130 #define SIG_KERNEL_STOP_MASK (\
131 M(SIGSTOP) | M(SIGTSTP) | M(SIGTTIN) | M(SIGTTOU) )
133 #define SIG_KERNEL_COREDUMP_MASK (\
134 M(SIGQUIT) | M(SIGILL) | M(SIGTRAP) | M(SIGABRT) | \
135 M(SIGFPE) | M(SIGSEGV) | M(SIGBUS) | M(SIGSYS) | \
136 M(SIGXCPU) | M(SIGXFSZ) | M_SIGEMT )
138 #define SIG_KERNEL_IGNORE_MASK (\
139 M(SIGCONT) | M(SIGCHLD) | M(SIGWINCH) | M(SIGURG) )
141 #define sig_kernel_only(sig) \
142 (((sig) < SIGRTMIN) && T(sig, SIG_KERNEL_ONLY_MASK))
143 #define sig_kernel_coredump(sig) \
144 (((sig) < SIGRTMIN) && T(sig, SIG_KERNEL_COREDUMP_MASK))
145 #define sig_kernel_ignore(sig) \
146 (((sig) < SIGRTMIN) && T(sig, SIG_KERNEL_IGNORE_MASK))
147 #define sig_kernel_stop(sig) \
148 (((sig) < SIGRTMIN) && T(sig, SIG_KERNEL_STOP_MASK))
150 #define sig_needs_tasklist(sig) \
151 (((sig) < SIGRTMIN) && T(sig, SIG_KERNEL_STOP_MASK | M(SIGCONT)))
153 #define sig_user_defined(t, signr) \
154 (((t)->sighand->action[(signr)-1].sa.sa_handler != SIG_DFL) && \
155 ((t)->sighand->action[(signr)-1].sa.sa_handler != SIG_IGN))
157 #define sig_fatal(t, signr) \
158 (!T(signr, SIG_KERNEL_IGNORE_MASK|SIG_KERNEL_STOP_MASK) && \
159 (t)->sighand->action[(signr)-1].sa.sa_handler == SIG_DFL)
161 static int sig_ignored(struct task_struct *t, int sig)
163 void __user * handler;
166 * Tracers always want to know about signals..
168 if (t->ptrace & PT_PTRACED)
169 return 0;
172 * Blocked signals are never ignored, since the
173 * signal handler may change by the time it is
174 * unblocked.
176 if (sigismember(&t->blocked, sig))
177 return 0;
179 /* Is it explicitly or implicitly ignored? */
180 handler = t->sighand->action[sig-1].sa.sa_handler;
181 return handler == SIG_IGN ||
182 (handler == SIG_DFL && sig_kernel_ignore(sig));
186 * Re-calculate pending state from the set of locally pending
187 * signals, globally pending signals, and blocked signals.
189 static inline int has_pending_signals(sigset_t *signal, sigset_t *blocked)
191 unsigned long ready;
192 long i;
194 switch (_NSIG_WORDS) {
195 default:
196 for (i = _NSIG_WORDS, ready = 0; --i >= 0 ;)
197 ready |= signal->sig[i] &~ blocked->sig[i];
198 break;
200 case 4: ready = signal->sig[3] &~ blocked->sig[3];
201 ready |= signal->sig[2] &~ blocked->sig[2];
202 ready |= signal->sig[1] &~ blocked->sig[1];
203 ready |= signal->sig[0] &~ blocked->sig[0];
204 break;
206 case 2: ready = signal->sig[1] &~ blocked->sig[1];
207 ready |= signal->sig[0] &~ blocked->sig[0];
208 break;
210 case 1: ready = signal->sig[0] &~ blocked->sig[0];
212 return ready != 0;
215 #define PENDING(p,b) has_pending_signals(&(p)->signal, (b))
217 fastcall void recalc_sigpending_tsk(struct task_struct *t)
219 if (t->signal->group_stop_count > 0 ||
220 (freezing(t)) ||
221 PENDING(&t->pending, &t->blocked) ||
222 PENDING(&t->signal->shared_pending, &t->blocked))
223 set_tsk_thread_flag(t, TIF_SIGPENDING);
224 else
225 clear_tsk_thread_flag(t, TIF_SIGPENDING);
228 void recalc_sigpending(void)
230 recalc_sigpending_tsk(current);
233 /* Given the mask, find the first available signal that should be serviced. */
235 static int
236 next_signal(struct sigpending *pending, sigset_t *mask)
238 unsigned long i, *s, *m, x;
239 int sig = 0;
241 s = pending->signal.sig;
242 m = mask->sig;
243 switch (_NSIG_WORDS) {
244 default:
245 for (i = 0; i < _NSIG_WORDS; ++i, ++s, ++m)
246 if ((x = *s &~ *m) != 0) {
247 sig = ffz(~x) + i*_NSIG_BPW + 1;
248 break;
250 break;
252 case 2: if ((x = s[0] &~ m[0]) != 0)
253 sig = 1;
254 else if ((x = s[1] &~ m[1]) != 0)
255 sig = _NSIG_BPW + 1;
256 else
257 break;
258 sig += ffz(~x);
259 break;
261 case 1: if ((x = *s &~ *m) != 0)
262 sig = ffz(~x) + 1;
263 break;
266 return sig;
269 static struct sigqueue *__sigqueue_alloc(struct task_struct *t, gfp_t flags,
270 int override_rlimit)
272 struct sigqueue *q = NULL;
274 atomic_inc(&t->user->sigpending);
275 if (override_rlimit ||
276 atomic_read(&t->user->sigpending) <=
277 t->signal->rlim[RLIMIT_SIGPENDING].rlim_cur)
278 q = kmem_cache_alloc(sigqueue_cachep, flags);
279 if (unlikely(q == NULL)) {
280 atomic_dec(&t->user->sigpending);
281 } else {
282 INIT_LIST_HEAD(&q->list);
283 q->flags = 0;
284 q->user = get_uid(t->user);
286 return(q);
289 static void __sigqueue_free(struct sigqueue *q)
291 if (q->flags & SIGQUEUE_PREALLOC)
292 return;
293 atomic_dec(&q->user->sigpending);
294 free_uid(q->user);
295 kmem_cache_free(sigqueue_cachep, q);
298 static void flush_sigqueue(struct sigpending *queue)
300 struct sigqueue *q;
302 sigemptyset(&queue->signal);
303 while (!list_empty(&queue->list)) {
304 q = list_entry(queue->list.next, struct sigqueue , list);
305 list_del_init(&q->list);
306 __sigqueue_free(q);
311 * Flush all pending signals for a task.
314 void
315 flush_signals(struct task_struct *t)
317 unsigned long flags;
319 spin_lock_irqsave(&t->sighand->siglock, flags);
320 clear_tsk_thread_flag(t,TIF_SIGPENDING);
321 flush_sigqueue(&t->pending);
322 flush_sigqueue(&t->signal->shared_pending);
323 spin_unlock_irqrestore(&t->sighand->siglock, flags);
327 * This function expects the tasklist_lock write-locked.
329 void __exit_sighand(struct task_struct *tsk)
331 struct sighand_struct * sighand = tsk->sighand;
333 /* Ok, we're done with the signal handlers */
334 tsk->sighand = NULL;
335 if (atomic_dec_and_test(&sighand->count))
336 kmem_cache_free(sighand_cachep, sighand);
340 * This function expects the tasklist_lock write-locked.
342 void __exit_signal(struct task_struct *tsk)
344 struct signal_struct * sig = tsk->signal;
345 struct sighand_struct * sighand;
347 if (!sig)
348 BUG();
349 if (!atomic_read(&sig->count))
350 BUG();
351 rcu_read_lock();
352 sighand = rcu_dereference(tsk->sighand);
353 spin_lock(&sighand->siglock);
354 posix_cpu_timers_exit(tsk);
355 if (atomic_dec_and_test(&sig->count)) {
356 posix_cpu_timers_exit_group(tsk);
357 tsk->signal = NULL;
358 __exit_sighand(tsk);
359 spin_unlock(&sighand->siglock);
360 flush_sigqueue(&sig->shared_pending);
361 } else {
363 * If there is any task waiting for the group exit
364 * then notify it:
366 if (sig->group_exit_task && atomic_read(&sig->count) == sig->notify_count) {
367 wake_up_process(sig->group_exit_task);
368 sig->group_exit_task = NULL;
370 if (tsk == sig->curr_target)
371 sig->curr_target = next_thread(tsk);
372 tsk->signal = NULL;
374 * Accumulate here the counters for all threads but the
375 * group leader as they die, so they can be added into
376 * the process-wide totals when those are taken.
377 * The group leader stays around as a zombie as long
378 * as there are other threads. When it gets reaped,
379 * the exit.c code will add its counts into these totals.
380 * We won't ever get here for the group leader, since it
381 * will have been the last reference on the signal_struct.
383 sig->utime = cputime_add(sig->utime, tsk->utime);
384 sig->stime = cputime_add(sig->stime, tsk->stime);
385 sig->min_flt += tsk->min_flt;
386 sig->maj_flt += tsk->maj_flt;
387 sig->nvcsw += tsk->nvcsw;
388 sig->nivcsw += tsk->nivcsw;
389 sig->sched_time += tsk->sched_time;
390 __exit_sighand(tsk);
391 spin_unlock(&sighand->siglock);
392 sig = NULL; /* Marker for below. */
394 rcu_read_unlock();
395 clear_tsk_thread_flag(tsk,TIF_SIGPENDING);
396 flush_sigqueue(&tsk->pending);
397 if (sig) {
398 __cleanup_signal(sig);
403 * Flush all handlers for a task.
406 void
407 flush_signal_handlers(struct task_struct *t, int force_default)
409 int i;
410 struct k_sigaction *ka = &t->sighand->action[0];
411 for (i = _NSIG ; i != 0 ; i--) {
412 if (force_default || ka->sa.sa_handler != SIG_IGN)
413 ka->sa.sa_handler = SIG_DFL;
414 ka->sa.sa_flags = 0;
415 sigemptyset(&ka->sa.sa_mask);
416 ka++;
421 /* Notify the system that a driver wants to block all signals for this
422 * process, and wants to be notified if any signals at all were to be
423 * sent/acted upon. If the notifier routine returns non-zero, then the
424 * signal will be acted upon after all. If the notifier routine returns 0,
425 * then then signal will be blocked. Only one block per process is
426 * allowed. priv is a pointer to private data that the notifier routine
427 * can use to determine if the signal should be blocked or not. */
429 void
430 block_all_signals(int (*notifier)(void *priv), void *priv, sigset_t *mask)
432 unsigned long flags;
434 spin_lock_irqsave(&current->sighand->siglock, flags);
435 current->notifier_mask = mask;
436 current->notifier_data = priv;
437 current->notifier = notifier;
438 spin_unlock_irqrestore(&current->sighand->siglock, flags);
441 /* Notify the system that blocking has ended. */
443 void
444 unblock_all_signals(void)
446 unsigned long flags;
448 spin_lock_irqsave(&current->sighand->siglock, flags);
449 current->notifier = NULL;
450 current->notifier_data = NULL;
451 recalc_sigpending();
452 spin_unlock_irqrestore(&current->sighand->siglock, flags);
455 static int collect_signal(int sig, struct sigpending *list, siginfo_t *info)
457 struct sigqueue *q, *first = NULL;
458 int still_pending = 0;
460 if (unlikely(!sigismember(&list->signal, sig)))
461 return 0;
464 * Collect the siginfo appropriate to this signal. Check if
465 * there is another siginfo for the same signal.
467 list_for_each_entry(q, &list->list, list) {
468 if (q->info.si_signo == sig) {
469 if (first) {
470 still_pending = 1;
471 break;
473 first = q;
476 if (first) {
477 list_del_init(&first->list);
478 copy_siginfo(info, &first->info);
479 __sigqueue_free(first);
480 if (!still_pending)
481 sigdelset(&list->signal, sig);
482 } else {
484 /* Ok, it wasn't in the queue. This must be
485 a fast-pathed signal or we must have been
486 out of queue space. So zero out the info.
488 sigdelset(&list->signal, sig);
489 info->si_signo = sig;
490 info->si_errno = 0;
491 info->si_code = 0;
492 info->si_pid = 0;
493 info->si_uid = 0;
495 return 1;
498 static int __dequeue_signal(struct sigpending *pending, sigset_t *mask,
499 siginfo_t *info)
501 int sig = 0;
503 sig = next_signal(pending, mask);
504 if (sig) {
505 if (current->notifier) {
506 if (sigismember(current->notifier_mask, sig)) {
507 if (!(current->notifier)(current->notifier_data)) {
508 clear_thread_flag(TIF_SIGPENDING);
509 return 0;
514 if (!collect_signal(sig, pending, info))
515 sig = 0;
518 recalc_sigpending();
520 return sig;
524 * Dequeue a signal and return the element to the caller, which is
525 * expected to free it.
527 * All callers have to hold the siglock.
529 int dequeue_signal(struct task_struct *tsk, sigset_t *mask, siginfo_t *info)
531 int signr = __dequeue_signal(&tsk->pending, mask, info);
532 if (!signr)
533 signr = __dequeue_signal(&tsk->signal->shared_pending,
534 mask, info);
535 if (signr && unlikely(sig_kernel_stop(signr))) {
537 * Set a marker that we have dequeued a stop signal. Our
538 * caller might release the siglock and then the pending
539 * stop signal it is about to process is no longer in the
540 * pending bitmasks, but must still be cleared by a SIGCONT
541 * (and overruled by a SIGKILL). So those cases clear this
542 * shared flag after we've set it. Note that this flag may
543 * remain set after the signal we return is ignored or
544 * handled. That doesn't matter because its only purpose
545 * is to alert stop-signal processing code when another
546 * processor has come along and cleared the flag.
548 if (!(tsk->signal->flags & SIGNAL_GROUP_EXIT))
549 tsk->signal->flags |= SIGNAL_STOP_DEQUEUED;
551 if ( signr &&
552 ((info->si_code & __SI_MASK) == __SI_TIMER) &&
553 info->si_sys_private){
555 * Release the siglock to ensure proper locking order
556 * of timer locks outside of siglocks. Note, we leave
557 * irqs disabled here, since the posix-timers code is
558 * about to disable them again anyway.
560 spin_unlock(&tsk->sighand->siglock);
561 do_schedule_next_timer(info);
562 spin_lock(&tsk->sighand->siglock);
564 return signr;
568 * Tell a process that it has a new active signal..
570 * NOTE! we rely on the previous spin_lock to
571 * lock interrupts for us! We can only be called with
572 * "siglock" held, and the local interrupt must
573 * have been disabled when that got acquired!
575 * No need to set need_resched since signal event passing
576 * goes through ->blocked
578 void signal_wake_up(struct task_struct *t, int resume)
580 unsigned int mask;
582 set_tsk_thread_flag(t, TIF_SIGPENDING);
585 * For SIGKILL, we want to wake it up in the stopped/traced case.
586 * We don't check t->state here because there is a race with it
587 * executing another processor and just now entering stopped state.
588 * By using wake_up_state, we ensure the process will wake up and
589 * handle its death signal.
591 mask = TASK_INTERRUPTIBLE;
592 if (resume)
593 mask |= TASK_STOPPED | TASK_TRACED;
594 if (!wake_up_state(t, mask))
595 kick_process(t);
599 * Remove signals in mask from the pending set and queue.
600 * Returns 1 if any signals were found.
602 * All callers must be holding the siglock.
604 * This version takes a sigset mask and looks at all signals,
605 * not just those in the first mask word.
607 static int rm_from_queue_full(sigset_t *mask, struct sigpending *s)
609 struct sigqueue *q, *n;
610 sigset_t m;
612 sigandsets(&m, mask, &s->signal);
613 if (sigisemptyset(&m))
614 return 0;
616 signandsets(&s->signal, &s->signal, mask);
617 list_for_each_entry_safe(q, n, &s->list, list) {
618 if (sigismember(mask, q->info.si_signo)) {
619 list_del_init(&q->list);
620 __sigqueue_free(q);
623 return 1;
626 * Remove signals in mask from the pending set and queue.
627 * Returns 1 if any signals were found.
629 * All callers must be holding the siglock.
631 static int rm_from_queue(unsigned long mask, struct sigpending *s)
633 struct sigqueue *q, *n;
635 if (!sigtestsetmask(&s->signal, mask))
636 return 0;
638 sigdelsetmask(&s->signal, mask);
639 list_for_each_entry_safe(q, n, &s->list, list) {
640 if (q->info.si_signo < SIGRTMIN &&
641 (mask & sigmask(q->info.si_signo))) {
642 list_del_init(&q->list);
643 __sigqueue_free(q);
646 return 1;
650 * Bad permissions for sending the signal
652 static int check_kill_permission(int sig, struct siginfo *info,
653 struct task_struct *t)
655 int error = -EINVAL;
656 if (!valid_signal(sig))
657 return error;
658 error = -EPERM;
659 if ((info == SEND_SIG_NOINFO || (!is_si_special(info) && SI_FROMUSER(info)))
660 && ((sig != SIGCONT) ||
661 (current->signal->session != t->signal->session))
662 && (current->euid ^ t->suid) && (current->euid ^ t->uid)
663 && (current->uid ^ t->suid) && (current->uid ^ t->uid)
664 && !capable(CAP_KILL))
665 return error;
667 error = security_task_kill(t, info, sig);
668 if (!error)
669 audit_signal_info(sig, t); /* Let audit system see the signal */
670 return error;
673 /* forward decl */
674 static void do_notify_parent_cldstop(struct task_struct *tsk,
675 int to_self,
676 int why);
679 * Handle magic process-wide effects of stop/continue signals.
680 * Unlike the signal actions, these happen immediately at signal-generation
681 * time regardless of blocking, ignoring, or handling. This does the
682 * actual continuing for SIGCONT, but not the actual stopping for stop
683 * signals. The process stop is done as a signal action for SIG_DFL.
685 static void handle_stop_signal(int sig, struct task_struct *p)
687 struct task_struct *t;
689 if (p->signal->flags & SIGNAL_GROUP_EXIT)
691 * The process is in the middle of dying already.
693 return;
695 if (sig_kernel_stop(sig)) {
697 * This is a stop signal. Remove SIGCONT from all queues.
699 rm_from_queue(sigmask(SIGCONT), &p->signal->shared_pending);
700 t = p;
701 do {
702 rm_from_queue(sigmask(SIGCONT), &t->pending);
703 t = next_thread(t);
704 } while (t != p);
705 } else if (sig == SIGCONT) {
707 * Remove all stop signals from all queues,
708 * and wake all threads.
710 if (unlikely(p->signal->group_stop_count > 0)) {
712 * There was a group stop in progress. We'll
713 * pretend it finished before we got here. We are
714 * obliged to report it to the parent: if the
715 * SIGSTOP happened "after" this SIGCONT, then it
716 * would have cleared this pending SIGCONT. If it
717 * happened "before" this SIGCONT, then the parent
718 * got the SIGCHLD about the stop finishing before
719 * the continue happened. We do the notification
720 * now, and it's as if the stop had finished and
721 * the SIGCHLD was pending on entry to this kill.
723 p->signal->group_stop_count = 0;
724 p->signal->flags = SIGNAL_STOP_CONTINUED;
725 spin_unlock(&p->sighand->siglock);
726 do_notify_parent_cldstop(p, (p->ptrace & PT_PTRACED), CLD_STOPPED);
727 spin_lock(&p->sighand->siglock);
729 rm_from_queue(SIG_KERNEL_STOP_MASK, &p->signal->shared_pending);
730 t = p;
731 do {
732 unsigned int state;
733 rm_from_queue(SIG_KERNEL_STOP_MASK, &t->pending);
736 * If there is a handler for SIGCONT, we must make
737 * sure that no thread returns to user mode before
738 * we post the signal, in case it was the only
739 * thread eligible to run the signal handler--then
740 * it must not do anything between resuming and
741 * running the handler. With the TIF_SIGPENDING
742 * flag set, the thread will pause and acquire the
743 * siglock that we hold now and until we've queued
744 * the pending signal.
746 * Wake up the stopped thread _after_ setting
747 * TIF_SIGPENDING
749 state = TASK_STOPPED;
750 if (sig_user_defined(t, SIGCONT) && !sigismember(&t->blocked, SIGCONT)) {
751 set_tsk_thread_flag(t, TIF_SIGPENDING);
752 state |= TASK_INTERRUPTIBLE;
754 wake_up_state(t, state);
756 t = next_thread(t);
757 } while (t != p);
759 if (p->signal->flags & SIGNAL_STOP_STOPPED) {
761 * We were in fact stopped, and are now continued.
762 * Notify the parent with CLD_CONTINUED.
764 p->signal->flags = SIGNAL_STOP_CONTINUED;
765 p->signal->group_exit_code = 0;
766 spin_unlock(&p->sighand->siglock);
767 do_notify_parent_cldstop(p, (p->ptrace & PT_PTRACED), CLD_CONTINUED);
768 spin_lock(&p->sighand->siglock);
769 } else {
771 * We are not stopped, but there could be a stop
772 * signal in the middle of being processed after
773 * being removed from the queue. Clear that too.
775 p->signal->flags = 0;
777 } else if (sig == SIGKILL) {
779 * Make sure that any pending stop signal already dequeued
780 * is undone by the wakeup for SIGKILL.
782 p->signal->flags = 0;
786 static int send_signal(int sig, struct siginfo *info, struct task_struct *t,
787 struct sigpending *signals)
789 struct sigqueue * q = NULL;
790 int ret = 0;
793 * fast-pathed signals for kernel-internal things like SIGSTOP
794 * or SIGKILL.
796 if (info == SEND_SIG_FORCED)
797 goto out_set;
799 /* Real-time signals must be queued if sent by sigqueue, or
800 some other real-time mechanism. It is implementation
801 defined whether kill() does so. We attempt to do so, on
802 the principle of least surprise, but since kill is not
803 allowed to fail with EAGAIN when low on memory we just
804 make sure at least one signal gets delivered and don't
805 pass on the info struct. */
807 q = __sigqueue_alloc(t, GFP_ATOMIC, (sig < SIGRTMIN &&
808 (is_si_special(info) ||
809 info->si_code >= 0)));
810 if (q) {
811 list_add_tail(&q->list, &signals->list);
812 switch ((unsigned long) info) {
813 case (unsigned long) SEND_SIG_NOINFO:
814 q->info.si_signo = sig;
815 q->info.si_errno = 0;
816 q->info.si_code = SI_USER;
817 q->info.si_pid = current->pid;
818 q->info.si_uid = current->uid;
819 break;
820 case (unsigned long) SEND_SIG_PRIV:
821 q->info.si_signo = sig;
822 q->info.si_errno = 0;
823 q->info.si_code = SI_KERNEL;
824 q->info.si_pid = 0;
825 q->info.si_uid = 0;
826 break;
827 default:
828 copy_siginfo(&q->info, info);
829 break;
831 } else if (!is_si_special(info)) {
832 if (sig >= SIGRTMIN && info->si_code != SI_USER)
834 * Queue overflow, abort. We may abort if the signal was rt
835 * and sent by user using something other than kill().
837 return -EAGAIN;
840 out_set:
841 sigaddset(&signals->signal, sig);
842 return ret;
845 #define LEGACY_QUEUE(sigptr, sig) \
846 (((sig) < SIGRTMIN) && sigismember(&(sigptr)->signal, (sig)))
849 static int
850 specific_send_sig_info(int sig, struct siginfo *info, struct task_struct *t)
852 int ret = 0;
854 if (!irqs_disabled())
855 BUG();
856 assert_spin_locked(&t->sighand->siglock);
858 /* Short-circuit ignored signals. */
859 if (sig_ignored(t, sig))
860 goto out;
862 /* Support queueing exactly one non-rt signal, so that we
863 can get more detailed information about the cause of
864 the signal. */
865 if (LEGACY_QUEUE(&t->pending, sig))
866 goto out;
868 ret = send_signal(sig, info, t, &t->pending);
869 if (!ret && !sigismember(&t->blocked, sig))
870 signal_wake_up(t, sig == SIGKILL);
871 out:
872 return ret;
876 * Force a signal that the process can't ignore: if necessary
877 * we unblock the signal and change any SIG_IGN to SIG_DFL.
881 force_sig_info(int sig, struct siginfo *info, struct task_struct *t)
883 unsigned long int flags;
884 int ret;
886 spin_lock_irqsave(&t->sighand->siglock, flags);
887 if (t->sighand->action[sig-1].sa.sa_handler == SIG_IGN) {
888 t->sighand->action[sig-1].sa.sa_handler = SIG_DFL;
890 if (sigismember(&t->blocked, sig)) {
891 sigdelset(&t->blocked, sig);
893 recalc_sigpending_tsk(t);
894 ret = specific_send_sig_info(sig, info, t);
895 spin_unlock_irqrestore(&t->sighand->siglock, flags);
897 return ret;
900 void
901 force_sig_specific(int sig, struct task_struct *t)
903 force_sig_info(sig, SEND_SIG_FORCED, t);
907 * Test if P wants to take SIG. After we've checked all threads with this,
908 * it's equivalent to finding no threads not blocking SIG. Any threads not
909 * blocking SIG were ruled out because they are not running and already
910 * have pending signals. Such threads will dequeue from the shared queue
911 * as soon as they're available, so putting the signal on the shared queue
912 * will be equivalent to sending it to one such thread.
914 static inline int wants_signal(int sig, struct task_struct *p)
916 if (sigismember(&p->blocked, sig))
917 return 0;
918 if (p->flags & PF_EXITING)
919 return 0;
920 if (sig == SIGKILL)
921 return 1;
922 if (p->state & (TASK_STOPPED | TASK_TRACED))
923 return 0;
924 return task_curr(p) || !signal_pending(p);
927 static void
928 __group_complete_signal(int sig, struct task_struct *p)
930 struct task_struct *t;
933 * Now find a thread we can wake up to take the signal off the queue.
935 * If the main thread wants the signal, it gets first crack.
936 * Probably the least surprising to the average bear.
938 if (wants_signal(sig, p))
939 t = p;
940 else if (thread_group_empty(p))
942 * There is just one thread and it does not need to be woken.
943 * It will dequeue unblocked signals before it runs again.
945 return;
946 else {
948 * Otherwise try to find a suitable thread.
950 t = p->signal->curr_target;
951 if (t == NULL)
952 /* restart balancing at this thread */
953 t = p->signal->curr_target = p;
954 BUG_ON(t->tgid != p->tgid);
956 while (!wants_signal(sig, t)) {
957 t = next_thread(t);
958 if (t == p->signal->curr_target)
960 * No thread needs to be woken.
961 * Any eligible threads will see
962 * the signal in the queue soon.
964 return;
966 p->signal->curr_target = t;
970 * Found a killable thread. If the signal will be fatal,
971 * then start taking the whole group down immediately.
973 if (sig_fatal(p, sig) && !(p->signal->flags & SIGNAL_GROUP_EXIT) &&
974 !sigismember(&t->real_blocked, sig) &&
975 (sig == SIGKILL || !(t->ptrace & PT_PTRACED))) {
977 * This signal will be fatal to the whole group.
979 if (!sig_kernel_coredump(sig)) {
981 * Start a group exit and wake everybody up.
982 * This way we don't have other threads
983 * running and doing things after a slower
984 * thread has the fatal signal pending.
986 p->signal->flags = SIGNAL_GROUP_EXIT;
987 p->signal->group_exit_code = sig;
988 p->signal->group_stop_count = 0;
989 t = p;
990 do {
991 sigaddset(&t->pending.signal, SIGKILL);
992 signal_wake_up(t, 1);
993 t = next_thread(t);
994 } while (t != p);
995 return;
999 * There will be a core dump. We make all threads other
1000 * than the chosen one go into a group stop so that nothing
1001 * happens until it gets scheduled, takes the signal off
1002 * the shared queue, and does the core dump. This is a
1003 * little more complicated than strictly necessary, but it
1004 * keeps the signal state that winds up in the core dump
1005 * unchanged from the death state, e.g. which thread had
1006 * the core-dump signal unblocked.
1008 rm_from_queue(SIG_KERNEL_STOP_MASK, &t->pending);
1009 rm_from_queue(SIG_KERNEL_STOP_MASK, &p->signal->shared_pending);
1010 p->signal->group_stop_count = 0;
1011 p->signal->group_exit_task = t;
1012 t = p;
1013 do {
1014 p->signal->group_stop_count++;
1015 signal_wake_up(t, 0);
1016 t = next_thread(t);
1017 } while (t != p);
1018 wake_up_process(p->signal->group_exit_task);
1019 return;
1023 * The signal is already in the shared-pending queue.
1024 * Tell the chosen thread to wake up and dequeue it.
1026 signal_wake_up(t, sig == SIGKILL);
1027 return;
1031 __group_send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
1033 int ret = 0;
1035 assert_spin_locked(&p->sighand->siglock);
1036 handle_stop_signal(sig, p);
1038 /* Short-circuit ignored signals. */
1039 if (sig_ignored(p, sig))
1040 return ret;
1042 if (LEGACY_QUEUE(&p->signal->shared_pending, sig))
1043 /* This is a non-RT signal and we already have one queued. */
1044 return ret;
1047 * Put this signal on the shared-pending queue, or fail with EAGAIN.
1048 * We always use the shared queue for process-wide signals,
1049 * to avoid several races.
1051 ret = send_signal(sig, info, p, &p->signal->shared_pending);
1052 if (unlikely(ret))
1053 return ret;
1055 __group_complete_signal(sig, p);
1056 return 0;
1060 * Nuke all other threads in the group.
1062 void zap_other_threads(struct task_struct *p)
1064 struct task_struct *t;
1066 p->signal->flags = SIGNAL_GROUP_EXIT;
1067 p->signal->group_stop_count = 0;
1069 if (thread_group_empty(p))
1070 return;
1072 for (t = next_thread(p); t != p; t = next_thread(t)) {
1074 * Don't bother with already dead threads
1076 if (t->exit_state)
1077 continue;
1080 * We don't want to notify the parent, since we are
1081 * killed as part of a thread group due to another
1082 * thread doing an execve() or similar. So set the
1083 * exit signal to -1 to allow immediate reaping of
1084 * the process. But don't detach the thread group
1085 * leader.
1087 if (t != p->group_leader)
1088 t->exit_signal = -1;
1090 /* SIGKILL will be handled before any pending SIGSTOP */
1091 sigaddset(&t->pending.signal, SIGKILL);
1092 signal_wake_up(t, 1);
1097 * Must be called under rcu_read_lock() or with tasklist_lock read-held.
1099 struct sighand_struct *lock_task_sighand(struct task_struct *tsk, unsigned long *flags)
1101 struct sighand_struct *sighand;
1103 for (;;) {
1104 sighand = rcu_dereference(tsk->sighand);
1105 if (unlikely(sighand == NULL))
1106 break;
1108 spin_lock_irqsave(&sighand->siglock, *flags);
1109 if (likely(sighand == tsk->sighand))
1110 break;
1111 spin_unlock_irqrestore(&sighand->siglock, *flags);
1114 return sighand;
1117 int group_send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
1119 unsigned long flags;
1120 int ret;
1122 ret = check_kill_permission(sig, info, p);
1124 if (!ret && sig) {
1125 ret = -ESRCH;
1126 if (lock_task_sighand(p, &flags)) {
1127 ret = __group_send_sig_info(sig, info, p);
1128 unlock_task_sighand(p, &flags);
1132 return ret;
1136 * kill_pg_info() sends a signal to a process group: this is what the tty
1137 * control characters do (^C, ^Z etc)
1140 int __kill_pg_info(int sig, struct siginfo *info, pid_t pgrp)
1142 struct task_struct *p = NULL;
1143 int retval, success;
1145 if (pgrp <= 0)
1146 return -EINVAL;
1148 success = 0;
1149 retval = -ESRCH;
1150 do_each_task_pid(pgrp, PIDTYPE_PGID, p) {
1151 int err = group_send_sig_info(sig, info, p);
1152 success |= !err;
1153 retval = err;
1154 } while_each_task_pid(pgrp, PIDTYPE_PGID, p);
1155 return success ? 0 : retval;
1159 kill_pg_info(int sig, struct siginfo *info, pid_t pgrp)
1161 int retval;
1163 read_lock(&tasklist_lock);
1164 retval = __kill_pg_info(sig, info, pgrp);
1165 read_unlock(&tasklist_lock);
1167 return retval;
1171 kill_proc_info(int sig, struct siginfo *info, pid_t pid)
1173 int error;
1174 int acquired_tasklist_lock = 0;
1175 struct task_struct *p;
1177 rcu_read_lock();
1178 if (unlikely(sig_needs_tasklist(sig))) {
1179 read_lock(&tasklist_lock);
1180 acquired_tasklist_lock = 1;
1182 p = find_task_by_pid(pid);
1183 error = -ESRCH;
1184 if (p)
1185 error = group_send_sig_info(sig, info, p);
1186 if (unlikely(acquired_tasklist_lock))
1187 read_unlock(&tasklist_lock);
1188 rcu_read_unlock();
1189 return error;
1192 /* like kill_proc_info(), but doesn't use uid/euid of "current" */
1193 int kill_proc_info_as_uid(int sig, struct siginfo *info, pid_t pid,
1194 uid_t uid, uid_t euid)
1196 int ret = -EINVAL;
1197 struct task_struct *p;
1199 if (!valid_signal(sig))
1200 return ret;
1202 read_lock(&tasklist_lock);
1203 p = find_task_by_pid(pid);
1204 if (!p) {
1205 ret = -ESRCH;
1206 goto out_unlock;
1208 if ((info == SEND_SIG_NOINFO || (!is_si_special(info) && SI_FROMUSER(info)))
1209 && (euid != p->suid) && (euid != p->uid)
1210 && (uid != p->suid) && (uid != p->uid)) {
1211 ret = -EPERM;
1212 goto out_unlock;
1214 if (sig && p->sighand) {
1215 unsigned long flags;
1216 spin_lock_irqsave(&p->sighand->siglock, flags);
1217 ret = __group_send_sig_info(sig, info, p);
1218 spin_unlock_irqrestore(&p->sighand->siglock, flags);
1220 out_unlock:
1221 read_unlock(&tasklist_lock);
1222 return ret;
1224 EXPORT_SYMBOL_GPL(kill_proc_info_as_uid);
1227 * kill_something_info() interprets pid in interesting ways just like kill(2).
1229 * POSIX specifies that kill(-1,sig) is unspecified, but what we have
1230 * is probably wrong. Should make it like BSD or SYSV.
1233 static int kill_something_info(int sig, struct siginfo *info, int pid)
1235 if (!pid) {
1236 return kill_pg_info(sig, info, process_group(current));
1237 } else if (pid == -1) {
1238 int retval = 0, count = 0;
1239 struct task_struct * p;
1241 read_lock(&tasklist_lock);
1242 for_each_process(p) {
1243 if (p->pid > 1 && p->tgid != current->tgid) {
1244 int err = group_send_sig_info(sig, info, p);
1245 ++count;
1246 if (err != -EPERM)
1247 retval = err;
1250 read_unlock(&tasklist_lock);
1251 return count ? retval : -ESRCH;
1252 } else if (pid < 0) {
1253 return kill_pg_info(sig, info, -pid);
1254 } else {
1255 return kill_proc_info(sig, info, pid);
1260 * These are for backward compatibility with the rest of the kernel source.
1264 * These two are the most common entry points. They send a signal
1265 * just to the specific thread.
1268 send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
1270 int ret;
1271 unsigned long flags;
1274 * Make sure legacy kernel users don't send in bad values
1275 * (normal paths check this in check_kill_permission).
1277 if (!valid_signal(sig))
1278 return -EINVAL;
1281 * We need the tasklist lock even for the specific
1282 * thread case (when we don't need to follow the group
1283 * lists) in order to avoid races with "p->sighand"
1284 * going away or changing from under us.
1286 read_lock(&tasklist_lock);
1287 spin_lock_irqsave(&p->sighand->siglock, flags);
1288 ret = specific_send_sig_info(sig, info, p);
1289 spin_unlock_irqrestore(&p->sighand->siglock, flags);
1290 read_unlock(&tasklist_lock);
1291 return ret;
1294 #define __si_special(priv) \
1295 ((priv) ? SEND_SIG_PRIV : SEND_SIG_NOINFO)
1298 send_sig(int sig, struct task_struct *p, int priv)
1300 return send_sig_info(sig, __si_special(priv), p);
1304 * This is the entry point for "process-wide" signals.
1305 * They will go to an appropriate thread in the thread group.
1308 send_group_sig_info(int sig, struct siginfo *info, struct task_struct *p)
1310 int ret;
1311 read_lock(&tasklist_lock);
1312 ret = group_send_sig_info(sig, info, p);
1313 read_unlock(&tasklist_lock);
1314 return ret;
1317 void
1318 force_sig(int sig, struct task_struct *p)
1320 force_sig_info(sig, SEND_SIG_PRIV, p);
1324 * When things go south during signal handling, we
1325 * will force a SIGSEGV. And if the signal that caused
1326 * the problem was already a SIGSEGV, we'll want to
1327 * make sure we don't even try to deliver the signal..
1330 force_sigsegv(int sig, struct task_struct *p)
1332 if (sig == SIGSEGV) {
1333 unsigned long flags;
1334 spin_lock_irqsave(&p->sighand->siglock, flags);
1335 p->sighand->action[sig - 1].sa.sa_handler = SIG_DFL;
1336 spin_unlock_irqrestore(&p->sighand->siglock, flags);
1338 force_sig(SIGSEGV, p);
1339 return 0;
1343 kill_pg(pid_t pgrp, int sig, int priv)
1345 return kill_pg_info(sig, __si_special(priv), pgrp);
1349 kill_proc(pid_t pid, int sig, int priv)
1351 return kill_proc_info(sig, __si_special(priv), pid);
1355 * These functions support sending signals using preallocated sigqueue
1356 * structures. This is needed "because realtime applications cannot
1357 * afford to lose notifications of asynchronous events, like timer
1358 * expirations or I/O completions". In the case of Posix Timers
1359 * we allocate the sigqueue structure from the timer_create. If this
1360 * allocation fails we are able to report the failure to the application
1361 * with an EAGAIN error.
1364 struct sigqueue *sigqueue_alloc(void)
1366 struct sigqueue *q;
1368 if ((q = __sigqueue_alloc(current, GFP_KERNEL, 0)))
1369 q->flags |= SIGQUEUE_PREALLOC;
1370 return(q);
1373 void sigqueue_free(struct sigqueue *q)
1375 unsigned long flags;
1376 BUG_ON(!(q->flags & SIGQUEUE_PREALLOC));
1378 * If the signal is still pending remove it from the
1379 * pending queue.
1381 if (unlikely(!list_empty(&q->list))) {
1382 spinlock_t *lock = &current->sighand->siglock;
1383 read_lock(&tasklist_lock);
1384 spin_lock_irqsave(lock, flags);
1385 if (!list_empty(&q->list))
1386 list_del_init(&q->list);
1387 spin_unlock_irqrestore(lock, flags);
1388 read_unlock(&tasklist_lock);
1390 q->flags &= ~SIGQUEUE_PREALLOC;
1391 __sigqueue_free(q);
1395 send_sigqueue(int sig, struct sigqueue *q, struct task_struct *p)
1397 unsigned long flags;
1398 int ret = 0;
1399 struct sighand_struct *sh;
1401 BUG_ON(!(q->flags & SIGQUEUE_PREALLOC));
1404 * The rcu based delayed sighand destroy makes it possible to
1405 * run this without tasklist lock held. The task struct itself
1406 * cannot go away as create_timer did get_task_struct().
1408 * We return -1, when the task is marked exiting, so
1409 * posix_timer_event can redirect it to the group leader
1411 rcu_read_lock();
1413 if (unlikely(p->flags & PF_EXITING)) {
1414 ret = -1;
1415 goto out_err;
1418 retry:
1419 sh = rcu_dereference(p->sighand);
1421 spin_lock_irqsave(&sh->siglock, flags);
1422 if (p->sighand != sh) {
1423 /* We raced with exec() in a multithreaded process... */
1424 spin_unlock_irqrestore(&sh->siglock, flags);
1425 goto retry;
1429 * We do the check here again to handle the following scenario:
1431 * CPU 0 CPU 1
1432 * send_sigqueue
1433 * check PF_EXITING
1434 * interrupt exit code running
1435 * __exit_signal
1436 * lock sighand->siglock
1437 * unlock sighand->siglock
1438 * lock sh->siglock
1439 * add(tsk->pending) flush_sigqueue(tsk->pending)
1443 if (unlikely(p->flags & PF_EXITING)) {
1444 ret = -1;
1445 goto out;
1448 if (unlikely(!list_empty(&q->list))) {
1450 * If an SI_TIMER entry is already queue just increment
1451 * the overrun count.
1453 if (q->info.si_code != SI_TIMER)
1454 BUG();
1455 q->info.si_overrun++;
1456 goto out;
1458 /* Short-circuit ignored signals. */
1459 if (sig_ignored(p, sig)) {
1460 ret = 1;
1461 goto out;
1464 list_add_tail(&q->list, &p->pending.list);
1465 sigaddset(&p->pending.signal, sig);
1466 if (!sigismember(&p->blocked, sig))
1467 signal_wake_up(p, sig == SIGKILL);
1469 out:
1470 spin_unlock_irqrestore(&sh->siglock, flags);
1471 out_err:
1472 rcu_read_unlock();
1474 return ret;
1478 send_group_sigqueue(int sig, struct sigqueue *q, struct task_struct *p)
1480 unsigned long flags;
1481 int ret = 0;
1483 BUG_ON(!(q->flags & SIGQUEUE_PREALLOC));
1485 read_lock(&tasklist_lock);
1486 /* Since it_lock is held, p->sighand cannot be NULL. */
1487 spin_lock_irqsave(&p->sighand->siglock, flags);
1488 handle_stop_signal(sig, p);
1490 /* Short-circuit ignored signals. */
1491 if (sig_ignored(p, sig)) {
1492 ret = 1;
1493 goto out;
1496 if (unlikely(!list_empty(&q->list))) {
1498 * If an SI_TIMER entry is already queue just increment
1499 * the overrun count. Other uses should not try to
1500 * send the signal multiple times.
1502 if (q->info.si_code != SI_TIMER)
1503 BUG();
1504 q->info.si_overrun++;
1505 goto out;
1509 * Put this signal on the shared-pending queue.
1510 * We always use the shared queue for process-wide signals,
1511 * to avoid several races.
1513 list_add_tail(&q->list, &p->signal->shared_pending.list);
1514 sigaddset(&p->signal->shared_pending.signal, sig);
1516 __group_complete_signal(sig, p);
1517 out:
1518 spin_unlock_irqrestore(&p->sighand->siglock, flags);
1519 read_unlock(&tasklist_lock);
1520 return ret;
1524 * Wake up any threads in the parent blocked in wait* syscalls.
1526 static inline void __wake_up_parent(struct task_struct *p,
1527 struct task_struct *parent)
1529 wake_up_interruptible_sync(&parent->signal->wait_chldexit);
1533 * Let a parent know about the death of a child.
1534 * For a stopped/continued status change, use do_notify_parent_cldstop instead.
1537 void do_notify_parent(struct task_struct *tsk, int sig)
1539 struct siginfo info;
1540 unsigned long flags;
1541 struct sighand_struct *psig;
1543 BUG_ON(sig == -1);
1545 /* do_notify_parent_cldstop should have been called instead. */
1546 BUG_ON(tsk->state & (TASK_STOPPED|TASK_TRACED));
1548 BUG_ON(!tsk->ptrace &&
1549 (tsk->group_leader != tsk || !thread_group_empty(tsk)));
1551 info.si_signo = sig;
1552 info.si_errno = 0;
1553 info.si_pid = tsk->pid;
1554 info.si_uid = tsk->uid;
1556 /* FIXME: find out whether or not this is supposed to be c*time. */
1557 info.si_utime = cputime_to_jiffies(cputime_add(tsk->utime,
1558 tsk->signal->utime));
1559 info.si_stime = cputime_to_jiffies(cputime_add(tsk->stime,
1560 tsk->signal->stime));
1562 info.si_status = tsk->exit_code & 0x7f;
1563 if (tsk->exit_code & 0x80)
1564 info.si_code = CLD_DUMPED;
1565 else if (tsk->exit_code & 0x7f)
1566 info.si_code = CLD_KILLED;
1567 else {
1568 info.si_code = CLD_EXITED;
1569 info.si_status = tsk->exit_code >> 8;
1572 psig = tsk->parent->sighand;
1573 spin_lock_irqsave(&psig->siglock, flags);
1574 if (!tsk->ptrace && sig == SIGCHLD &&
1575 (psig->action[SIGCHLD-1].sa.sa_handler == SIG_IGN ||
1576 (psig->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDWAIT))) {
1578 * We are exiting and our parent doesn't care. POSIX.1
1579 * defines special semantics for setting SIGCHLD to SIG_IGN
1580 * or setting the SA_NOCLDWAIT flag: we should be reaped
1581 * automatically and not left for our parent's wait4 call.
1582 * Rather than having the parent do it as a magic kind of
1583 * signal handler, we just set this to tell do_exit that we
1584 * can be cleaned up without becoming a zombie. Note that
1585 * we still call __wake_up_parent in this case, because a
1586 * blocked sys_wait4 might now return -ECHILD.
1588 * Whether we send SIGCHLD or not for SA_NOCLDWAIT
1589 * is implementation-defined: we do (if you don't want
1590 * it, just use SIG_IGN instead).
1592 tsk->exit_signal = -1;
1593 if (psig->action[SIGCHLD-1].sa.sa_handler == SIG_IGN)
1594 sig = 0;
1596 if (valid_signal(sig) && sig > 0)
1597 __group_send_sig_info(sig, &info, tsk->parent);
1598 __wake_up_parent(tsk, tsk->parent);
1599 spin_unlock_irqrestore(&psig->siglock, flags);
1602 static void do_notify_parent_cldstop(struct task_struct *tsk, int to_self, int why)
1604 struct siginfo info;
1605 unsigned long flags;
1606 struct task_struct *parent;
1607 struct sighand_struct *sighand;
1609 if (to_self)
1610 parent = tsk->parent;
1611 else {
1612 tsk = tsk->group_leader;
1613 parent = tsk->real_parent;
1616 info.si_signo = SIGCHLD;
1617 info.si_errno = 0;
1618 info.si_pid = tsk->pid;
1619 info.si_uid = tsk->uid;
1621 /* FIXME: find out whether or not this is supposed to be c*time. */
1622 info.si_utime = cputime_to_jiffies(tsk->utime);
1623 info.si_stime = cputime_to_jiffies(tsk->stime);
1625 info.si_code = why;
1626 switch (why) {
1627 case CLD_CONTINUED:
1628 info.si_status = SIGCONT;
1629 break;
1630 case CLD_STOPPED:
1631 info.si_status = tsk->signal->group_exit_code & 0x7f;
1632 break;
1633 case CLD_TRAPPED:
1634 info.si_status = tsk->exit_code & 0x7f;
1635 break;
1636 default:
1637 BUG();
1640 sighand = parent->sighand;
1641 spin_lock_irqsave(&sighand->siglock, flags);
1642 if (sighand->action[SIGCHLD-1].sa.sa_handler != SIG_IGN &&
1643 !(sighand->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDSTOP))
1644 __group_send_sig_info(SIGCHLD, &info, parent);
1646 * Even if SIGCHLD is not generated, we must wake up wait4 calls.
1648 __wake_up_parent(tsk, parent);
1649 spin_unlock_irqrestore(&sighand->siglock, flags);
1653 * This must be called with current->sighand->siglock held.
1655 * This should be the path for all ptrace stops.
1656 * We always set current->last_siginfo while stopped here.
1657 * That makes it a way to test a stopped process for
1658 * being ptrace-stopped vs being job-control-stopped.
1660 * If we actually decide not to stop at all because the tracer is gone,
1661 * we leave nostop_code in current->exit_code.
1663 static void ptrace_stop(int exit_code, int nostop_code, siginfo_t *info)
1666 * If there is a group stop in progress,
1667 * we must participate in the bookkeeping.
1669 if (current->signal->group_stop_count > 0)
1670 --current->signal->group_stop_count;
1672 current->last_siginfo = info;
1673 current->exit_code = exit_code;
1675 /* Let the debugger run. */
1676 set_current_state(TASK_TRACED);
1677 spin_unlock_irq(&current->sighand->siglock);
1678 read_lock(&tasklist_lock);
1679 if (likely(current->ptrace & PT_PTRACED) &&
1680 likely(current->parent != current->real_parent ||
1681 !(current->ptrace & PT_ATTACHED)) &&
1682 (likely(current->parent->signal != current->signal) ||
1683 !unlikely(current->signal->flags & SIGNAL_GROUP_EXIT))) {
1684 do_notify_parent_cldstop(current, 1, CLD_TRAPPED);
1685 read_unlock(&tasklist_lock);
1686 schedule();
1687 } else {
1689 * By the time we got the lock, our tracer went away.
1690 * Don't stop here.
1692 read_unlock(&tasklist_lock);
1693 set_current_state(TASK_RUNNING);
1694 current->exit_code = nostop_code;
1698 * We are back. Now reacquire the siglock before touching
1699 * last_siginfo, so that we are sure to have synchronized with
1700 * any signal-sending on another CPU that wants to examine it.
1702 spin_lock_irq(&current->sighand->siglock);
1703 current->last_siginfo = NULL;
1706 * Queued signals ignored us while we were stopped for tracing.
1707 * So check for any that we should take before resuming user mode.
1709 recalc_sigpending();
1712 void ptrace_notify(int exit_code)
1714 siginfo_t info;
1716 BUG_ON((exit_code & (0x7f | ~0xffff)) != SIGTRAP);
1718 memset(&info, 0, sizeof info);
1719 info.si_signo = SIGTRAP;
1720 info.si_code = exit_code;
1721 info.si_pid = current->pid;
1722 info.si_uid = current->uid;
1724 /* Let the debugger run. */
1725 spin_lock_irq(&current->sighand->siglock);
1726 ptrace_stop(exit_code, 0, &info);
1727 spin_unlock_irq(&current->sighand->siglock);
1730 static void
1731 finish_stop(int stop_count)
1733 int to_self;
1736 * If there are no other threads in the group, or if there is
1737 * a group stop in progress and we are the last to stop,
1738 * report to the parent. When ptraced, every thread reports itself.
1740 if (stop_count < 0 || (current->ptrace & PT_PTRACED))
1741 to_self = 1;
1742 else if (stop_count == 0)
1743 to_self = 0;
1744 else
1745 goto out;
1747 read_lock(&tasklist_lock);
1748 do_notify_parent_cldstop(current, to_self, CLD_STOPPED);
1749 read_unlock(&tasklist_lock);
1751 out:
1752 schedule();
1754 * Now we don't run again until continued.
1756 current->exit_code = 0;
1760 * This performs the stopping for SIGSTOP and other stop signals.
1761 * We have to stop all threads in the thread group.
1762 * Returns nonzero if we've actually stopped and released the siglock.
1763 * Returns zero if we didn't stop and still hold the siglock.
1765 static int
1766 do_signal_stop(int signr)
1768 struct signal_struct *sig = current->signal;
1769 struct sighand_struct *sighand = current->sighand;
1770 int stop_count = -1;
1772 if (!likely(sig->flags & SIGNAL_STOP_DEQUEUED))
1773 return 0;
1775 if (sig->group_stop_count > 0) {
1777 * There is a group stop in progress. We don't need to
1778 * start another one.
1780 signr = sig->group_exit_code;
1781 stop_count = --sig->group_stop_count;
1782 current->exit_code = signr;
1783 set_current_state(TASK_STOPPED);
1784 if (stop_count == 0)
1785 sig->flags = SIGNAL_STOP_STOPPED;
1786 spin_unlock_irq(&sighand->siglock);
1788 else if (thread_group_empty(current)) {
1790 * Lock must be held through transition to stopped state.
1792 current->exit_code = current->signal->group_exit_code = signr;
1793 set_current_state(TASK_STOPPED);
1794 sig->flags = SIGNAL_STOP_STOPPED;
1795 spin_unlock_irq(&sighand->siglock);
1797 else {
1799 * There is no group stop already in progress.
1800 * We must initiate one now, but that requires
1801 * dropping siglock to get both the tasklist lock
1802 * and siglock again in the proper order. Note that
1803 * this allows an intervening SIGCONT to be posted.
1804 * We need to check for that and bail out if necessary.
1806 struct task_struct *t;
1808 spin_unlock_irq(&sighand->siglock);
1810 /* signals can be posted during this window */
1812 read_lock(&tasklist_lock);
1813 spin_lock_irq(&sighand->siglock);
1815 if (!likely(sig->flags & SIGNAL_STOP_DEQUEUED)) {
1817 * Another stop or continue happened while we
1818 * didn't have the lock. We can just swallow this
1819 * signal now. If we raced with a SIGCONT, that
1820 * should have just cleared it now. If we raced
1821 * with another processor delivering a stop signal,
1822 * then the SIGCONT that wakes us up should clear it.
1824 read_unlock(&tasklist_lock);
1825 return 0;
1828 if (sig->group_stop_count == 0) {
1829 sig->group_exit_code = signr;
1830 stop_count = 0;
1831 for (t = next_thread(current); t != current;
1832 t = next_thread(t))
1834 * Setting state to TASK_STOPPED for a group
1835 * stop is always done with the siglock held,
1836 * so this check has no races.
1838 if (!t->exit_state &&
1839 !(t->state & (TASK_STOPPED|TASK_TRACED))) {
1840 stop_count++;
1841 signal_wake_up(t, 0);
1843 sig->group_stop_count = stop_count;
1845 else {
1846 /* A race with another thread while unlocked. */
1847 signr = sig->group_exit_code;
1848 stop_count = --sig->group_stop_count;
1851 current->exit_code = signr;
1852 set_current_state(TASK_STOPPED);
1853 if (stop_count == 0)
1854 sig->flags = SIGNAL_STOP_STOPPED;
1856 spin_unlock_irq(&sighand->siglock);
1857 read_unlock(&tasklist_lock);
1860 finish_stop(stop_count);
1861 return 1;
1865 * Do appropriate magic when group_stop_count > 0.
1866 * We return nonzero if we stopped, after releasing the siglock.
1867 * We return zero if we still hold the siglock and should look
1868 * for another signal without checking group_stop_count again.
1870 static int handle_group_stop(void)
1872 int stop_count;
1874 if (current->signal->group_exit_task == current) {
1876 * Group stop is so we can do a core dump,
1877 * We are the initiating thread, so get on with it.
1879 current->signal->group_exit_task = NULL;
1880 return 0;
1883 if (current->signal->flags & SIGNAL_GROUP_EXIT)
1885 * Group stop is so another thread can do a core dump,
1886 * or else we are racing against a death signal.
1887 * Just punt the stop so we can get the next signal.
1889 return 0;
1892 * There is a group stop in progress. We stop
1893 * without any associated signal being in our queue.
1895 stop_count = --current->signal->group_stop_count;
1896 if (stop_count == 0)
1897 current->signal->flags = SIGNAL_STOP_STOPPED;
1898 current->exit_code = current->signal->group_exit_code;
1899 set_current_state(TASK_STOPPED);
1900 spin_unlock_irq(&current->sighand->siglock);
1901 finish_stop(stop_count);
1902 return 1;
1905 int get_signal_to_deliver(siginfo_t *info, struct k_sigaction *return_ka,
1906 struct pt_regs *regs, void *cookie)
1908 sigset_t *mask = &current->blocked;
1909 int signr = 0;
1911 try_to_freeze();
1913 relock:
1914 spin_lock_irq(&current->sighand->siglock);
1915 for (;;) {
1916 struct k_sigaction *ka;
1918 if (unlikely(current->signal->group_stop_count > 0) &&
1919 handle_group_stop())
1920 goto relock;
1922 signr = dequeue_signal(current, mask, info);
1924 if (!signr)
1925 break; /* will return 0 */
1927 if ((current->ptrace & PT_PTRACED) && signr != SIGKILL) {
1928 ptrace_signal_deliver(regs, cookie);
1930 /* Let the debugger run. */
1931 ptrace_stop(signr, signr, info);
1933 /* We're back. Did the debugger cancel the sig or group_exit? */
1934 signr = current->exit_code;
1935 if (signr == 0 || current->signal->flags & SIGNAL_GROUP_EXIT)
1936 continue;
1938 current->exit_code = 0;
1940 /* Update the siginfo structure if the signal has
1941 changed. If the debugger wanted something
1942 specific in the siginfo structure then it should
1943 have updated *info via PTRACE_SETSIGINFO. */
1944 if (signr != info->si_signo) {
1945 info->si_signo = signr;
1946 info->si_errno = 0;
1947 info->si_code = SI_USER;
1948 info->si_pid = current->parent->pid;
1949 info->si_uid = current->parent->uid;
1952 /* If the (new) signal is now blocked, requeue it. */
1953 if (sigismember(&current->blocked, signr)) {
1954 specific_send_sig_info(signr, info, current);
1955 continue;
1959 ka = &current->sighand->action[signr-1];
1960 if (ka->sa.sa_handler == SIG_IGN) /* Do nothing. */
1961 continue;
1962 if (ka->sa.sa_handler != SIG_DFL) {
1963 /* Run the handler. */
1964 *return_ka = *ka;
1966 if (ka->sa.sa_flags & SA_ONESHOT)
1967 ka->sa.sa_handler = SIG_DFL;
1969 break; /* will return non-zero "signr" value */
1973 * Now we are doing the default action for this signal.
1975 if (sig_kernel_ignore(signr)) /* Default is nothing. */
1976 continue;
1978 /* Init gets no signals it doesn't want. */
1979 if (current == child_reaper)
1980 continue;
1982 if (sig_kernel_stop(signr)) {
1984 * The default action is to stop all threads in
1985 * the thread group. The job control signals
1986 * do nothing in an orphaned pgrp, but SIGSTOP
1987 * always works. Note that siglock needs to be
1988 * dropped during the call to is_orphaned_pgrp()
1989 * because of lock ordering with tasklist_lock.
1990 * This allows an intervening SIGCONT to be posted.
1991 * We need to check for that and bail out if necessary.
1993 if (signr != SIGSTOP) {
1994 spin_unlock_irq(&current->sighand->siglock);
1996 /* signals can be posted during this window */
1998 if (is_orphaned_pgrp(process_group(current)))
1999 goto relock;
2001 spin_lock_irq(&current->sighand->siglock);
2004 if (likely(do_signal_stop(signr))) {
2005 /* It released the siglock. */
2006 goto relock;
2010 * We didn't actually stop, due to a race
2011 * with SIGCONT or something like that.
2013 continue;
2016 spin_unlock_irq(&current->sighand->siglock);
2019 * Anything else is fatal, maybe with a core dump.
2021 current->flags |= PF_SIGNALED;
2022 if (sig_kernel_coredump(signr)) {
2024 * If it was able to dump core, this kills all
2025 * other threads in the group and synchronizes with
2026 * their demise. If we lost the race with another
2027 * thread getting here, it set group_exit_code
2028 * first and our do_group_exit call below will use
2029 * that value and ignore the one we pass it.
2031 do_coredump((long)signr, signr, regs);
2035 * Death signals, no core dump.
2037 do_group_exit(signr);
2038 /* NOTREACHED */
2040 spin_unlock_irq(&current->sighand->siglock);
2041 return signr;
2044 EXPORT_SYMBOL(recalc_sigpending);
2045 EXPORT_SYMBOL_GPL(dequeue_signal);
2046 EXPORT_SYMBOL(flush_signals);
2047 EXPORT_SYMBOL(force_sig);
2048 EXPORT_SYMBOL(kill_pg);
2049 EXPORT_SYMBOL(kill_proc);
2050 EXPORT_SYMBOL(ptrace_notify);
2051 EXPORT_SYMBOL(send_sig);
2052 EXPORT_SYMBOL(send_sig_info);
2053 EXPORT_SYMBOL(sigprocmask);
2054 EXPORT_SYMBOL(block_all_signals);
2055 EXPORT_SYMBOL(unblock_all_signals);
2059 * System call entry points.
2062 asmlinkage long sys_restart_syscall(void)
2064 struct restart_block *restart = &current_thread_info()->restart_block;
2065 return restart->fn(restart);
2068 long do_no_restart_syscall(struct restart_block *param)
2070 return -EINTR;
2074 * We don't need to get the kernel lock - this is all local to this
2075 * particular thread.. (and that's good, because this is _heavily_
2076 * used by various programs)
2080 * This is also useful for kernel threads that want to temporarily
2081 * (or permanently) block certain signals.
2083 * NOTE! Unlike the user-mode sys_sigprocmask(), the kernel
2084 * interface happily blocks "unblockable" signals like SIGKILL
2085 * and friends.
2087 int sigprocmask(int how, sigset_t *set, sigset_t *oldset)
2089 int error;
2091 spin_lock_irq(&current->sighand->siglock);
2092 if (oldset)
2093 *oldset = current->blocked;
2095 error = 0;
2096 switch (how) {
2097 case SIG_BLOCK:
2098 sigorsets(&current->blocked, &current->blocked, set);
2099 break;
2100 case SIG_UNBLOCK:
2101 signandsets(&current->blocked, &current->blocked, set);
2102 break;
2103 case SIG_SETMASK:
2104 current->blocked = *set;
2105 break;
2106 default:
2107 error = -EINVAL;
2109 recalc_sigpending();
2110 spin_unlock_irq(&current->sighand->siglock);
2112 return error;
2115 asmlinkage long
2116 sys_rt_sigprocmask(int how, sigset_t __user *set, sigset_t __user *oset, size_t sigsetsize)
2118 int error = -EINVAL;
2119 sigset_t old_set, new_set;
2121 /* XXX: Don't preclude handling different sized sigset_t's. */
2122 if (sigsetsize != sizeof(sigset_t))
2123 goto out;
2125 if (set) {
2126 error = -EFAULT;
2127 if (copy_from_user(&new_set, set, sizeof(*set)))
2128 goto out;
2129 sigdelsetmask(&new_set, sigmask(SIGKILL)|sigmask(SIGSTOP));
2131 error = sigprocmask(how, &new_set, &old_set);
2132 if (error)
2133 goto out;
2134 if (oset)
2135 goto set_old;
2136 } else if (oset) {
2137 spin_lock_irq(&current->sighand->siglock);
2138 old_set = current->blocked;
2139 spin_unlock_irq(&current->sighand->siglock);
2141 set_old:
2142 error = -EFAULT;
2143 if (copy_to_user(oset, &old_set, sizeof(*oset)))
2144 goto out;
2146 error = 0;
2147 out:
2148 return error;
2151 long do_sigpending(void __user *set, unsigned long sigsetsize)
2153 long error = -EINVAL;
2154 sigset_t pending;
2156 if (sigsetsize > sizeof(sigset_t))
2157 goto out;
2159 spin_lock_irq(&current->sighand->siglock);
2160 sigorsets(&pending, &current->pending.signal,
2161 &current->signal->shared_pending.signal);
2162 spin_unlock_irq(&current->sighand->siglock);
2164 /* Outside the lock because only this thread touches it. */
2165 sigandsets(&pending, &current->blocked, &pending);
2167 error = -EFAULT;
2168 if (!copy_to_user(set, &pending, sigsetsize))
2169 error = 0;
2171 out:
2172 return error;
2175 asmlinkage long
2176 sys_rt_sigpending(sigset_t __user *set, size_t sigsetsize)
2178 return do_sigpending(set, sigsetsize);
2181 #ifndef HAVE_ARCH_COPY_SIGINFO_TO_USER
2183 int copy_siginfo_to_user(siginfo_t __user *to, siginfo_t *from)
2185 int err;
2187 if (!access_ok (VERIFY_WRITE, to, sizeof(siginfo_t)))
2188 return -EFAULT;
2189 if (from->si_code < 0)
2190 return __copy_to_user(to, from, sizeof(siginfo_t))
2191 ? -EFAULT : 0;
2193 * If you change siginfo_t structure, please be sure
2194 * this code is fixed accordingly.
2195 * It should never copy any pad contained in the structure
2196 * to avoid security leaks, but must copy the generic
2197 * 3 ints plus the relevant union member.
2199 err = __put_user(from->si_signo, &to->si_signo);
2200 err |= __put_user(from->si_errno, &to->si_errno);
2201 err |= __put_user((short)from->si_code, &to->si_code);
2202 switch (from->si_code & __SI_MASK) {
2203 case __SI_KILL:
2204 err |= __put_user(from->si_pid, &to->si_pid);
2205 err |= __put_user(from->si_uid, &to->si_uid);
2206 break;
2207 case __SI_TIMER:
2208 err |= __put_user(from->si_tid, &to->si_tid);
2209 err |= __put_user(from->si_overrun, &to->si_overrun);
2210 err |= __put_user(from->si_ptr, &to->si_ptr);
2211 break;
2212 case __SI_POLL:
2213 err |= __put_user(from->si_band, &to->si_band);
2214 err |= __put_user(from->si_fd, &to->si_fd);
2215 break;
2216 case __SI_FAULT:
2217 err |= __put_user(from->si_addr, &to->si_addr);
2218 #ifdef __ARCH_SI_TRAPNO
2219 err |= __put_user(from->si_trapno, &to->si_trapno);
2220 #endif
2221 break;
2222 case __SI_CHLD:
2223 err |= __put_user(from->si_pid, &to->si_pid);
2224 err |= __put_user(from->si_uid, &to->si_uid);
2225 err |= __put_user(from->si_status, &to->si_status);
2226 err |= __put_user(from->si_utime, &to->si_utime);
2227 err |= __put_user(from->si_stime, &to->si_stime);
2228 break;
2229 case __SI_RT: /* This is not generated by the kernel as of now. */
2230 case __SI_MESGQ: /* But this is */
2231 err |= __put_user(from->si_pid, &to->si_pid);
2232 err |= __put_user(from->si_uid, &to->si_uid);
2233 err |= __put_user(from->si_ptr, &to->si_ptr);
2234 break;
2235 default: /* this is just in case for now ... */
2236 err |= __put_user(from->si_pid, &to->si_pid);
2237 err |= __put_user(from->si_uid, &to->si_uid);
2238 break;
2240 return err;
2243 #endif
2245 asmlinkage long
2246 sys_rt_sigtimedwait(const sigset_t __user *uthese,
2247 siginfo_t __user *uinfo,
2248 const struct timespec __user *uts,
2249 size_t sigsetsize)
2251 int ret, sig;
2252 sigset_t these;
2253 struct timespec ts;
2254 siginfo_t info;
2255 long timeout = 0;
2257 /* XXX: Don't preclude handling different sized sigset_t's. */
2258 if (sigsetsize != sizeof(sigset_t))
2259 return -EINVAL;
2261 if (copy_from_user(&these, uthese, sizeof(these)))
2262 return -EFAULT;
2265 * Invert the set of allowed signals to get those we
2266 * want to block.
2268 sigdelsetmask(&these, sigmask(SIGKILL)|sigmask(SIGSTOP));
2269 signotset(&these);
2271 if (uts) {
2272 if (copy_from_user(&ts, uts, sizeof(ts)))
2273 return -EFAULT;
2274 if (ts.tv_nsec >= 1000000000L || ts.tv_nsec < 0
2275 || ts.tv_sec < 0)
2276 return -EINVAL;
2279 spin_lock_irq(&current->sighand->siglock);
2280 sig = dequeue_signal(current, &these, &info);
2281 if (!sig) {
2282 timeout = MAX_SCHEDULE_TIMEOUT;
2283 if (uts)
2284 timeout = (timespec_to_jiffies(&ts)
2285 + (ts.tv_sec || ts.tv_nsec));
2287 if (timeout) {
2288 /* None ready -- temporarily unblock those we're
2289 * interested while we are sleeping in so that we'll
2290 * be awakened when they arrive. */
2291 current->real_blocked = current->blocked;
2292 sigandsets(&current->blocked, &current->blocked, &these);
2293 recalc_sigpending();
2294 spin_unlock_irq(&current->sighand->siglock);
2296 timeout = schedule_timeout_interruptible(timeout);
2298 spin_lock_irq(&current->sighand->siglock);
2299 sig = dequeue_signal(current, &these, &info);
2300 current->blocked = current->real_blocked;
2301 siginitset(&current->real_blocked, 0);
2302 recalc_sigpending();
2305 spin_unlock_irq(&current->sighand->siglock);
2307 if (sig) {
2308 ret = sig;
2309 if (uinfo) {
2310 if (copy_siginfo_to_user(uinfo, &info))
2311 ret = -EFAULT;
2313 } else {
2314 ret = -EAGAIN;
2315 if (timeout)
2316 ret = -EINTR;
2319 return ret;
2322 asmlinkage long
2323 sys_kill(int pid, int sig)
2325 struct siginfo info;
2327 info.si_signo = sig;
2328 info.si_errno = 0;
2329 info.si_code = SI_USER;
2330 info.si_pid = current->tgid;
2331 info.si_uid = current->uid;
2333 return kill_something_info(sig, &info, pid);
2336 static int do_tkill(int tgid, int pid, int sig)
2338 int error;
2339 struct siginfo info;
2340 struct task_struct *p;
2342 error = -ESRCH;
2343 info.si_signo = sig;
2344 info.si_errno = 0;
2345 info.si_code = SI_TKILL;
2346 info.si_pid = current->tgid;
2347 info.si_uid = current->uid;
2349 read_lock(&tasklist_lock);
2350 p = find_task_by_pid(pid);
2351 if (p && (tgid <= 0 || p->tgid == tgid)) {
2352 error = check_kill_permission(sig, &info, p);
2354 * The null signal is a permissions and process existence
2355 * probe. No signal is actually delivered.
2357 if (!error && sig && p->sighand) {
2358 spin_lock_irq(&p->sighand->siglock);
2359 handle_stop_signal(sig, p);
2360 error = specific_send_sig_info(sig, &info, p);
2361 spin_unlock_irq(&p->sighand->siglock);
2364 read_unlock(&tasklist_lock);
2366 return error;
2370 * sys_tgkill - send signal to one specific thread
2371 * @tgid: the thread group ID of the thread
2372 * @pid: the PID of the thread
2373 * @sig: signal to be sent
2375 * This syscall also checks the tgid and returns -ESRCH even if the PID
2376 * exists but it's not belonging to the target process anymore. This
2377 * method solves the problem of threads exiting and PIDs getting reused.
2379 asmlinkage long sys_tgkill(int tgid, int pid, int sig)
2381 /* This is only valid for single tasks */
2382 if (pid <= 0 || tgid <= 0)
2383 return -EINVAL;
2385 return do_tkill(tgid, pid, sig);
2389 * Send a signal to only one task, even if it's a CLONE_THREAD task.
2391 asmlinkage long
2392 sys_tkill(int pid, int sig)
2394 /* This is only valid for single tasks */
2395 if (pid <= 0)
2396 return -EINVAL;
2398 return do_tkill(0, pid, sig);
2401 asmlinkage long
2402 sys_rt_sigqueueinfo(int pid, int sig, siginfo_t __user *uinfo)
2404 siginfo_t info;
2406 if (copy_from_user(&info, uinfo, sizeof(siginfo_t)))
2407 return -EFAULT;
2409 /* Not even root can pretend to send signals from the kernel.
2410 Nor can they impersonate a kill(), which adds source info. */
2411 if (info.si_code >= 0)
2412 return -EPERM;
2413 info.si_signo = sig;
2415 /* POSIX.1b doesn't mention process groups. */
2416 return kill_proc_info(sig, &info, pid);
2420 do_sigaction(int sig, struct k_sigaction *act, struct k_sigaction *oact)
2422 struct k_sigaction *k;
2423 sigset_t mask;
2425 if (!valid_signal(sig) || sig < 1 || (act && sig_kernel_only(sig)))
2426 return -EINVAL;
2428 k = &current->sighand->action[sig-1];
2430 spin_lock_irq(&current->sighand->siglock);
2431 if (signal_pending(current)) {
2433 * If there might be a fatal signal pending on multiple
2434 * threads, make sure we take it before changing the action.
2436 spin_unlock_irq(&current->sighand->siglock);
2437 return -ERESTARTNOINTR;
2440 if (oact)
2441 *oact = *k;
2443 if (act) {
2444 sigdelsetmask(&act->sa.sa_mask,
2445 sigmask(SIGKILL) | sigmask(SIGSTOP));
2447 * POSIX 3.3.1.3:
2448 * "Setting a signal action to SIG_IGN for a signal that is
2449 * pending shall cause the pending signal to be discarded,
2450 * whether or not it is blocked."
2452 * "Setting a signal action to SIG_DFL for a signal that is
2453 * pending and whose default action is to ignore the signal
2454 * (for example, SIGCHLD), shall cause the pending signal to
2455 * be discarded, whether or not it is blocked"
2457 if (act->sa.sa_handler == SIG_IGN ||
2458 (act->sa.sa_handler == SIG_DFL &&
2459 sig_kernel_ignore(sig))) {
2461 * This is a fairly rare case, so we only take the
2462 * tasklist_lock once we're sure we'll need it.
2463 * Now we must do this little unlock and relock
2464 * dance to maintain the lock hierarchy.
2466 struct task_struct *t = current;
2467 spin_unlock_irq(&t->sighand->siglock);
2468 read_lock(&tasklist_lock);
2469 spin_lock_irq(&t->sighand->siglock);
2470 *k = *act;
2471 sigemptyset(&mask);
2472 sigaddset(&mask, sig);
2473 rm_from_queue_full(&mask, &t->signal->shared_pending);
2474 do {
2475 rm_from_queue_full(&mask, &t->pending);
2476 recalc_sigpending_tsk(t);
2477 t = next_thread(t);
2478 } while (t != current);
2479 spin_unlock_irq(&current->sighand->siglock);
2480 read_unlock(&tasklist_lock);
2481 return 0;
2484 *k = *act;
2487 spin_unlock_irq(&current->sighand->siglock);
2488 return 0;
2491 int
2492 do_sigaltstack (const stack_t __user *uss, stack_t __user *uoss, unsigned long sp)
2494 stack_t oss;
2495 int error;
2497 if (uoss) {
2498 oss.ss_sp = (void __user *) current->sas_ss_sp;
2499 oss.ss_size = current->sas_ss_size;
2500 oss.ss_flags = sas_ss_flags(sp);
2503 if (uss) {
2504 void __user *ss_sp;
2505 size_t ss_size;
2506 int ss_flags;
2508 error = -EFAULT;
2509 if (!access_ok(VERIFY_READ, uss, sizeof(*uss))
2510 || __get_user(ss_sp, &uss->ss_sp)
2511 || __get_user(ss_flags, &uss->ss_flags)
2512 || __get_user(ss_size, &uss->ss_size))
2513 goto out;
2515 error = -EPERM;
2516 if (on_sig_stack(sp))
2517 goto out;
2519 error = -EINVAL;
2522 * Note - this code used to test ss_flags incorrectly
2523 * old code may have been written using ss_flags==0
2524 * to mean ss_flags==SS_ONSTACK (as this was the only
2525 * way that worked) - this fix preserves that older
2526 * mechanism
2528 if (ss_flags != SS_DISABLE && ss_flags != SS_ONSTACK && ss_flags != 0)
2529 goto out;
2531 if (ss_flags == SS_DISABLE) {
2532 ss_size = 0;
2533 ss_sp = NULL;
2534 } else {
2535 error = -ENOMEM;
2536 if (ss_size < MINSIGSTKSZ)
2537 goto out;
2540 current->sas_ss_sp = (unsigned long) ss_sp;
2541 current->sas_ss_size = ss_size;
2544 if (uoss) {
2545 error = -EFAULT;
2546 if (copy_to_user(uoss, &oss, sizeof(oss)))
2547 goto out;
2550 error = 0;
2551 out:
2552 return error;
2555 #ifdef __ARCH_WANT_SYS_SIGPENDING
2557 asmlinkage long
2558 sys_sigpending(old_sigset_t __user *set)
2560 return do_sigpending(set, sizeof(*set));
2563 #endif
2565 #ifdef __ARCH_WANT_SYS_SIGPROCMASK
2566 /* Some platforms have their own version with special arguments others
2567 support only sys_rt_sigprocmask. */
2569 asmlinkage long
2570 sys_sigprocmask(int how, old_sigset_t __user *set, old_sigset_t __user *oset)
2572 int error;
2573 old_sigset_t old_set, new_set;
2575 if (set) {
2576 error = -EFAULT;
2577 if (copy_from_user(&new_set, set, sizeof(*set)))
2578 goto out;
2579 new_set &= ~(sigmask(SIGKILL) | sigmask(SIGSTOP));
2581 spin_lock_irq(&current->sighand->siglock);
2582 old_set = current->blocked.sig[0];
2584 error = 0;
2585 switch (how) {
2586 default:
2587 error = -EINVAL;
2588 break;
2589 case SIG_BLOCK:
2590 sigaddsetmask(&current->blocked, new_set);
2591 break;
2592 case SIG_UNBLOCK:
2593 sigdelsetmask(&current->blocked, new_set);
2594 break;
2595 case SIG_SETMASK:
2596 current->blocked.sig[0] = new_set;
2597 break;
2600 recalc_sigpending();
2601 spin_unlock_irq(&current->sighand->siglock);
2602 if (error)
2603 goto out;
2604 if (oset)
2605 goto set_old;
2606 } else if (oset) {
2607 old_set = current->blocked.sig[0];
2608 set_old:
2609 error = -EFAULT;
2610 if (copy_to_user(oset, &old_set, sizeof(*oset)))
2611 goto out;
2613 error = 0;
2614 out:
2615 return error;
2617 #endif /* __ARCH_WANT_SYS_SIGPROCMASK */
2619 #ifdef __ARCH_WANT_SYS_RT_SIGACTION
2620 asmlinkage long
2621 sys_rt_sigaction(int sig,
2622 const struct sigaction __user *act,
2623 struct sigaction __user *oact,
2624 size_t sigsetsize)
2626 struct k_sigaction new_sa, old_sa;
2627 int ret = -EINVAL;
2629 /* XXX: Don't preclude handling different sized sigset_t's. */
2630 if (sigsetsize != sizeof(sigset_t))
2631 goto out;
2633 if (act) {
2634 if (copy_from_user(&new_sa.sa, act, sizeof(new_sa.sa)))
2635 return -EFAULT;
2638 ret = do_sigaction(sig, act ? &new_sa : NULL, oact ? &old_sa : NULL);
2640 if (!ret && oact) {
2641 if (copy_to_user(oact, &old_sa.sa, sizeof(old_sa.sa)))
2642 return -EFAULT;
2644 out:
2645 return ret;
2647 #endif /* __ARCH_WANT_SYS_RT_SIGACTION */
2649 #ifdef __ARCH_WANT_SYS_SGETMASK
2652 * For backwards compatibility. Functionality superseded by sigprocmask.
2654 asmlinkage long
2655 sys_sgetmask(void)
2657 /* SMP safe */
2658 return current->blocked.sig[0];
2661 asmlinkage long
2662 sys_ssetmask(int newmask)
2664 int old;
2666 spin_lock_irq(&current->sighand->siglock);
2667 old = current->blocked.sig[0];
2669 siginitset(&current->blocked, newmask & ~(sigmask(SIGKILL)|
2670 sigmask(SIGSTOP)));
2671 recalc_sigpending();
2672 spin_unlock_irq(&current->sighand->siglock);
2674 return old;
2676 #endif /* __ARCH_WANT_SGETMASK */
2678 #ifdef __ARCH_WANT_SYS_SIGNAL
2680 * For backwards compatibility. Functionality superseded by sigaction.
2682 asmlinkage unsigned long
2683 sys_signal(int sig, __sighandler_t handler)
2685 struct k_sigaction new_sa, old_sa;
2686 int ret;
2688 new_sa.sa.sa_handler = handler;
2689 new_sa.sa.sa_flags = SA_ONESHOT | SA_NOMASK;
2690 sigemptyset(&new_sa.sa.sa_mask);
2692 ret = do_sigaction(sig, &new_sa, &old_sa);
2694 return ret ? ret : (unsigned long)old_sa.sa.sa_handler;
2696 #endif /* __ARCH_WANT_SYS_SIGNAL */
2698 #ifdef __ARCH_WANT_SYS_PAUSE
2700 asmlinkage long
2701 sys_pause(void)
2703 current->state = TASK_INTERRUPTIBLE;
2704 schedule();
2705 return -ERESTARTNOHAND;
2708 #endif
2710 #ifdef __ARCH_WANT_SYS_RT_SIGSUSPEND
2711 asmlinkage long sys_rt_sigsuspend(sigset_t __user *unewset, size_t sigsetsize)
2713 sigset_t newset;
2715 /* XXX: Don't preclude handling different sized sigset_t's. */
2716 if (sigsetsize != sizeof(sigset_t))
2717 return -EINVAL;
2719 if (copy_from_user(&newset, unewset, sizeof(newset)))
2720 return -EFAULT;
2721 sigdelsetmask(&newset, sigmask(SIGKILL)|sigmask(SIGSTOP));
2723 spin_lock_irq(&current->sighand->siglock);
2724 current->saved_sigmask = current->blocked;
2725 current->blocked = newset;
2726 recalc_sigpending();
2727 spin_unlock_irq(&current->sighand->siglock);
2729 current->state = TASK_INTERRUPTIBLE;
2730 schedule();
2731 set_thread_flag(TIF_RESTORE_SIGMASK);
2732 return -ERESTARTNOHAND;
2734 #endif /* __ARCH_WANT_SYS_RT_SIGSUSPEND */
2736 void __init signals_init(void)
2738 sigqueue_cachep =
2739 kmem_cache_create("sigqueue",
2740 sizeof(struct sigqueue),
2741 __alignof__(struct sigqueue),
2742 SLAB_PANIC, NULL, NULL);