]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - kernel/signal.c
[PATCH] Discuss a couple common errors in kernel-doc usage.
[mirror_ubuntu-artful-kernel.git] / kernel / signal.c
CommitLineData
1da177e4
LT
1/*
2 * linux/kernel/signal.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 *
6 * 1997-11-02 Modified for POSIX.1b signals by Richard Henderson
7 *
8 * 2003-06-02 Jim Houston - Concurrent Computer Corp.
9 * Changes to use preallocated sigqueue structures
10 * to allow signals to be sent reliably.
11 */
12
1da177e4
LT
13#include <linux/slab.h>
14#include <linux/module.h>
15#include <linux/smp_lock.h>
16#include <linux/init.h>
17#include <linux/sched.h>
18#include <linux/fs.h>
19#include <linux/tty.h>
20#include <linux/binfmts.h>
21#include <linux/security.h>
22#include <linux/syscalls.h>
23#include <linux/ptrace.h>
7ed20e1a 24#include <linux/signal.h>
c59ede7b 25#include <linux/capability.h>
7dfb7103 26#include <linux/freezer.h>
84d73786
SB
27#include <linux/pid_namespace.h>
28#include <linux/nsproxy.h>
29
1da177e4
LT
30#include <asm/param.h>
31#include <asm/uaccess.h>
32#include <asm/unistd.h>
33#include <asm/siginfo.h>
e1396065 34#include "audit.h" /* audit_signal_info() */
1da177e4
LT
35
36/*
37 * SLAB caches for signal bits.
38 */
39
e18b890b 40static struct kmem_cache *sigqueue_cachep;
1da177e4
LT
41
42/*
43 * In POSIX a signal is sent either to a specific thread (Linux task)
44 * or to the process as a whole (Linux thread group). How the signal
45 * is sent determines whether it's to one thread or the whole group,
46 * which determines which signal mask(s) are involved in blocking it
47 * from being delivered until later. When the signal is delivered,
48 * either it's caught or ignored by a user handler or it has a default
49 * effect that applies to the whole thread group (POSIX process).
50 *
51 * The possible effects an unblocked signal set to SIG_DFL can have are:
52 * ignore - Nothing Happens
53 * terminate - kill the process, i.e. all threads in the group,
54 * similar to exit_group. The group leader (only) reports
55 * WIFSIGNALED status to its parent.
56 * coredump - write a core dump file describing all threads using
57 * the same mm and then kill all those threads
58 * stop - stop all the threads in the group, i.e. TASK_STOPPED state
59 *
60 * SIGKILL and SIGSTOP cannot be caught, blocked, or ignored.
61 * Other signals when not blocked and set to SIG_DFL behaves as follows.
62 * The job control signals also have other special effects.
63 *
64 * +--------------------+------------------+
65 * | POSIX signal | default action |
66 * +--------------------+------------------+
67 * | SIGHUP | terminate |
68 * | SIGINT | terminate |
69 * | SIGQUIT | coredump |
70 * | SIGILL | coredump |
71 * | SIGTRAP | coredump |
72 * | SIGABRT/SIGIOT | coredump |
73 * | SIGBUS | coredump |
74 * | SIGFPE | coredump |
75 * | SIGKILL | terminate(+) |
76 * | SIGUSR1 | terminate |
77 * | SIGSEGV | coredump |
78 * | SIGUSR2 | terminate |
79 * | SIGPIPE | terminate |
80 * | SIGALRM | terminate |
81 * | SIGTERM | terminate |
82 * | SIGCHLD | ignore |
83 * | SIGCONT | ignore(*) |
84 * | SIGSTOP | stop(*)(+) |
85 * | SIGTSTP | stop(*) |
86 * | SIGTTIN | stop(*) |
87 * | SIGTTOU | stop(*) |
88 * | SIGURG | ignore |
89 * | SIGXCPU | coredump |
90 * | SIGXFSZ | coredump |
91 * | SIGVTALRM | terminate |
92 * | SIGPROF | terminate |
93 * | SIGPOLL/SIGIO | terminate |
94 * | SIGSYS/SIGUNUSED | coredump |
95 * | SIGSTKFLT | terminate |
96 * | SIGWINCH | ignore |
97 * | SIGPWR | terminate |
98 * | SIGRTMIN-SIGRTMAX | terminate |
99 * +--------------------+------------------+
100 * | non-POSIX signal | default action |
101 * +--------------------+------------------+
102 * | SIGEMT | coredump |
103 * +--------------------+------------------+
104 *
105 * (+) For SIGKILL and SIGSTOP the action is "always", not just "default".
106 * (*) Special job control effects:
107 * When SIGCONT is sent, it resumes the process (all threads in the group)
108 * from TASK_STOPPED state and also clears any pending/queued stop signals
109 * (any of those marked with "stop(*)"). This happens regardless of blocking,
110 * catching, or ignoring SIGCONT. When any stop signal is sent, it clears
111 * any pending/queued SIGCONT signals; this happens regardless of blocking,
112 * catching, or ignored the stop signal, though (except for SIGSTOP) the
113 * default action of stopping the process may happen later or never.
114 */
115
116#ifdef SIGEMT
117#define M_SIGEMT M(SIGEMT)
118#else
119#define M_SIGEMT 0
120#endif
121
122#if SIGRTMIN > BITS_PER_LONG
123#define M(sig) (1ULL << ((sig)-1))
124#else
125#define M(sig) (1UL << ((sig)-1))
126#endif
127#define T(sig, mask) (M(sig) & (mask))
128
129#define SIG_KERNEL_ONLY_MASK (\
130 M(SIGKILL) | M(SIGSTOP) )
131
132#define SIG_KERNEL_STOP_MASK (\
133 M(SIGSTOP) | M(SIGTSTP) | M(SIGTTIN) | M(SIGTTOU) )
134
135#define SIG_KERNEL_COREDUMP_MASK (\
136 M(SIGQUIT) | M(SIGILL) | M(SIGTRAP) | M(SIGABRT) | \
137 M(SIGFPE) | M(SIGSEGV) | M(SIGBUS) | M(SIGSYS) | \
138 M(SIGXCPU) | M(SIGXFSZ) | M_SIGEMT )
139
140#define SIG_KERNEL_IGNORE_MASK (\
141 M(SIGCONT) | M(SIGCHLD) | M(SIGWINCH) | M(SIGURG) )
142
143#define sig_kernel_only(sig) \
144 (((sig) < SIGRTMIN) && T(sig, SIG_KERNEL_ONLY_MASK))
145#define sig_kernel_coredump(sig) \
146 (((sig) < SIGRTMIN) && T(sig, SIG_KERNEL_COREDUMP_MASK))
147#define sig_kernel_ignore(sig) \
148 (((sig) < SIGRTMIN) && T(sig, SIG_KERNEL_IGNORE_MASK))
149#define sig_kernel_stop(sig) \
150 (((sig) < SIGRTMIN) && T(sig, SIG_KERNEL_STOP_MASK))
151
6108ccd3 152#define sig_needs_tasklist(sig) ((sig) == SIGCONT)
a9e88e84 153
1da177e4
LT
154#define sig_user_defined(t, signr) \
155 (((t)->sighand->action[(signr)-1].sa.sa_handler != SIG_DFL) && \
156 ((t)->sighand->action[(signr)-1].sa.sa_handler != SIG_IGN))
157
158#define sig_fatal(t, signr) \
159 (!T(signr, SIG_KERNEL_IGNORE_MASK|SIG_KERNEL_STOP_MASK) && \
160 (t)->sighand->action[(signr)-1].sa.sa_handler == SIG_DFL)
161
162static int sig_ignored(struct task_struct *t, int sig)
163{
164 void __user * handler;
165
166 /*
167 * Tracers always want to know about signals..
168 */
169 if (t->ptrace & PT_PTRACED)
170 return 0;
171
172 /*
173 * Blocked signals are never ignored, since the
174 * signal handler may change by the time it is
175 * unblocked.
176 */
177 if (sigismember(&t->blocked, sig))
178 return 0;
179
180 /* Is it explicitly or implicitly ignored? */
181 handler = t->sighand->action[sig-1].sa.sa_handler;
182 return handler == SIG_IGN ||
183 (handler == SIG_DFL && sig_kernel_ignore(sig));
184}
185
186/*
187 * Re-calculate pending state from the set of locally pending
188 * signals, globally pending signals, and blocked signals.
189 */
190static inline int has_pending_signals(sigset_t *signal, sigset_t *blocked)
191{
192 unsigned long ready;
193 long i;
194
195 switch (_NSIG_WORDS) {
196 default:
197 for (i = _NSIG_WORDS, ready = 0; --i >= 0 ;)
198 ready |= signal->sig[i] &~ blocked->sig[i];
199 break;
200
201 case 4: ready = signal->sig[3] &~ blocked->sig[3];
202 ready |= signal->sig[2] &~ blocked->sig[2];
203 ready |= signal->sig[1] &~ blocked->sig[1];
204 ready |= signal->sig[0] &~ blocked->sig[0];
205 break;
206
207 case 2: ready = signal->sig[1] &~ blocked->sig[1];
208 ready |= signal->sig[0] &~ blocked->sig[0];
209 break;
210
211 case 1: ready = signal->sig[0] &~ blocked->sig[0];
212 }
213 return ready != 0;
214}
215
216#define PENDING(p,b) has_pending_signals(&(p)->signal, (b))
217
218fastcall void recalc_sigpending_tsk(struct task_struct *t)
219{
220 if (t->signal->group_stop_count > 0 ||
3e1d1d28 221 (freezing(t)) ||
1da177e4
LT
222 PENDING(&t->pending, &t->blocked) ||
223 PENDING(&t->signal->shared_pending, &t->blocked))
224 set_tsk_thread_flag(t, TIF_SIGPENDING);
225 else
226 clear_tsk_thread_flag(t, TIF_SIGPENDING);
227}
228
229void recalc_sigpending(void)
230{
231 recalc_sigpending_tsk(current);
232}
233
234/* Given the mask, find the first available signal that should be serviced. */
235
236static int
237next_signal(struct sigpending *pending, sigset_t *mask)
238{
239 unsigned long i, *s, *m, x;
240 int sig = 0;
241
242 s = pending->signal.sig;
243 m = mask->sig;
244 switch (_NSIG_WORDS) {
245 default:
246 for (i = 0; i < _NSIG_WORDS; ++i, ++s, ++m)
247 if ((x = *s &~ *m) != 0) {
248 sig = ffz(~x) + i*_NSIG_BPW + 1;
249 break;
250 }
251 break;
252
253 case 2: if ((x = s[0] &~ m[0]) != 0)
254 sig = 1;
255 else if ((x = s[1] &~ m[1]) != 0)
256 sig = _NSIG_BPW + 1;
257 else
258 break;
259 sig += ffz(~x);
260 break;
261
262 case 1: if ((x = *s &~ *m) != 0)
263 sig = ffz(~x) + 1;
264 break;
265 }
266
267 return sig;
268}
269
dd0fc66f 270static struct sigqueue *__sigqueue_alloc(struct task_struct *t, gfp_t flags,
1da177e4
LT
271 int override_rlimit)
272{
273 struct sigqueue *q = NULL;
10b1fbdb 274 struct user_struct *user;
1da177e4 275
10b1fbdb
LT
276 /*
277 * In order to avoid problems with "switch_user()", we want to make
278 * sure that the compiler doesn't re-load "t->user"
279 */
280 user = t->user;
281 barrier();
282 atomic_inc(&user->sigpending);
1da177e4 283 if (override_rlimit ||
10b1fbdb 284 atomic_read(&user->sigpending) <=
1da177e4
LT
285 t->signal->rlim[RLIMIT_SIGPENDING].rlim_cur)
286 q = kmem_cache_alloc(sigqueue_cachep, flags);
287 if (unlikely(q == NULL)) {
10b1fbdb 288 atomic_dec(&user->sigpending);
1da177e4
LT
289 } else {
290 INIT_LIST_HEAD(&q->list);
291 q->flags = 0;
10b1fbdb 292 q->user = get_uid(user);
1da177e4
LT
293 }
294 return(q);
295}
296
514a01b8 297static void __sigqueue_free(struct sigqueue *q)
1da177e4
LT
298{
299 if (q->flags & SIGQUEUE_PREALLOC)
300 return;
301 atomic_dec(&q->user->sigpending);
302 free_uid(q->user);
303 kmem_cache_free(sigqueue_cachep, q);
304}
305
6a14c5c9 306void flush_sigqueue(struct sigpending *queue)
1da177e4
LT
307{
308 struct sigqueue *q;
309
310 sigemptyset(&queue->signal);
311 while (!list_empty(&queue->list)) {
312 q = list_entry(queue->list.next, struct sigqueue , list);
313 list_del_init(&q->list);
314 __sigqueue_free(q);
315 }
316}
317
318/*
319 * Flush all pending signals for a task.
320 */
c81addc9 321void flush_signals(struct task_struct *t)
1da177e4
LT
322{
323 unsigned long flags;
324
325 spin_lock_irqsave(&t->sighand->siglock, flags);
326 clear_tsk_thread_flag(t,TIF_SIGPENDING);
327 flush_sigqueue(&t->pending);
328 flush_sigqueue(&t->signal->shared_pending);
329 spin_unlock_irqrestore(&t->sighand->siglock, flags);
330}
331
1da177e4
LT
332/*
333 * Flush all handlers for a task.
334 */
335
336void
337flush_signal_handlers(struct task_struct *t, int force_default)
338{
339 int i;
340 struct k_sigaction *ka = &t->sighand->action[0];
341 for (i = _NSIG ; i != 0 ; i--) {
342 if (force_default || ka->sa.sa_handler != SIG_IGN)
343 ka->sa.sa_handler = SIG_DFL;
344 ka->sa.sa_flags = 0;
345 sigemptyset(&ka->sa.sa_mask);
346 ka++;
347 }
348}
349
350
351/* Notify the system that a driver wants to block all signals for this
352 * process, and wants to be notified if any signals at all were to be
353 * sent/acted upon. If the notifier routine returns non-zero, then the
354 * signal will be acted upon after all. If the notifier routine returns 0,
355 * then then signal will be blocked. Only one block per process is
356 * allowed. priv is a pointer to private data that the notifier routine
357 * can use to determine if the signal should be blocked or not. */
358
359void
360block_all_signals(int (*notifier)(void *priv), void *priv, sigset_t *mask)
361{
362 unsigned long flags;
363
364 spin_lock_irqsave(&current->sighand->siglock, flags);
365 current->notifier_mask = mask;
366 current->notifier_data = priv;
367 current->notifier = notifier;
368 spin_unlock_irqrestore(&current->sighand->siglock, flags);
369}
370
371/* Notify the system that blocking has ended. */
372
373void
374unblock_all_signals(void)
375{
376 unsigned long flags;
377
378 spin_lock_irqsave(&current->sighand->siglock, flags);
379 current->notifier = NULL;
380 current->notifier_data = NULL;
381 recalc_sigpending();
382 spin_unlock_irqrestore(&current->sighand->siglock, flags);
383}
384
858119e1 385static int collect_signal(int sig, struct sigpending *list, siginfo_t *info)
1da177e4
LT
386{
387 struct sigqueue *q, *first = NULL;
388 int still_pending = 0;
389
390 if (unlikely(!sigismember(&list->signal, sig)))
391 return 0;
392
393 /*
394 * Collect the siginfo appropriate to this signal. Check if
395 * there is another siginfo for the same signal.
396 */
397 list_for_each_entry(q, &list->list, list) {
398 if (q->info.si_signo == sig) {
399 if (first) {
400 still_pending = 1;
401 break;
402 }
403 first = q;
404 }
405 }
406 if (first) {
407 list_del_init(&first->list);
408 copy_siginfo(info, &first->info);
409 __sigqueue_free(first);
410 if (!still_pending)
411 sigdelset(&list->signal, sig);
412 } else {
413
414 /* Ok, it wasn't in the queue. This must be
415 a fast-pathed signal or we must have been
416 out of queue space. So zero out the info.
417 */
418 sigdelset(&list->signal, sig);
419 info->si_signo = sig;
420 info->si_errno = 0;
421 info->si_code = 0;
422 info->si_pid = 0;
423 info->si_uid = 0;
424 }
425 return 1;
426}
427
428static int __dequeue_signal(struct sigpending *pending, sigset_t *mask,
429 siginfo_t *info)
430{
27d91e07 431 int sig = next_signal(pending, mask);
1da177e4 432
1da177e4
LT
433 if (sig) {
434 if (current->notifier) {
435 if (sigismember(current->notifier_mask, sig)) {
436 if (!(current->notifier)(current->notifier_data)) {
437 clear_thread_flag(TIF_SIGPENDING);
438 return 0;
439 }
440 }
441 }
442
443 if (!collect_signal(sig, pending, info))
444 sig = 0;
1da177e4 445 }
1da177e4
LT
446
447 return sig;
448}
449
450/*
451 * Dequeue a signal and return the element to the caller, which is
452 * expected to free it.
453 *
454 * All callers have to hold the siglock.
455 */
456int dequeue_signal(struct task_struct *tsk, sigset_t *mask, siginfo_t *info)
457{
458 int signr = __dequeue_signal(&tsk->pending, mask, info);
459 if (!signr)
460 signr = __dequeue_signal(&tsk->signal->shared_pending,
461 mask, info);
27d91e07 462 recalc_sigpending_tsk(tsk);
1da177e4
LT
463 if (signr && unlikely(sig_kernel_stop(signr))) {
464 /*
465 * Set a marker that we have dequeued a stop signal. Our
466 * caller might release the siglock and then the pending
467 * stop signal it is about to process is no longer in the
468 * pending bitmasks, but must still be cleared by a SIGCONT
469 * (and overruled by a SIGKILL). So those cases clear this
470 * shared flag after we've set it. Note that this flag may
471 * remain set after the signal we return is ignored or
472 * handled. That doesn't matter because its only purpose
473 * is to alert stop-signal processing code when another
474 * processor has come along and cleared the flag.
475 */
788e05a6
ON
476 if (!(tsk->signal->flags & SIGNAL_GROUP_EXIT))
477 tsk->signal->flags |= SIGNAL_STOP_DEQUEUED;
1da177e4
LT
478 }
479 if ( signr &&
480 ((info->si_code & __SI_MASK) == __SI_TIMER) &&
481 info->si_sys_private){
482 /*
483 * Release the siglock to ensure proper locking order
484 * of timer locks outside of siglocks. Note, we leave
485 * irqs disabled here, since the posix-timers code is
486 * about to disable them again anyway.
487 */
488 spin_unlock(&tsk->sighand->siglock);
489 do_schedule_next_timer(info);
490 spin_lock(&tsk->sighand->siglock);
491 }
492 return signr;
493}
494
495/*
496 * Tell a process that it has a new active signal..
497 *
498 * NOTE! we rely on the previous spin_lock to
499 * lock interrupts for us! We can only be called with
500 * "siglock" held, and the local interrupt must
501 * have been disabled when that got acquired!
502 *
503 * No need to set need_resched since signal event passing
504 * goes through ->blocked
505 */
506void signal_wake_up(struct task_struct *t, int resume)
507{
508 unsigned int mask;
509
510 set_tsk_thread_flag(t, TIF_SIGPENDING);
511
512 /*
513 * For SIGKILL, we want to wake it up in the stopped/traced case.
514 * We don't check t->state here because there is a race with it
515 * executing another processor and just now entering stopped state.
516 * By using wake_up_state, we ensure the process will wake up and
517 * handle its death signal.
518 */
519 mask = TASK_INTERRUPTIBLE;
520 if (resume)
521 mask |= TASK_STOPPED | TASK_TRACED;
522 if (!wake_up_state(t, mask))
523 kick_process(t);
524}
525
71fabd5e
GA
526/*
527 * Remove signals in mask from the pending set and queue.
528 * Returns 1 if any signals were found.
529 *
530 * All callers must be holding the siglock.
531 *
532 * This version takes a sigset mask and looks at all signals,
533 * not just those in the first mask word.
534 */
535static int rm_from_queue_full(sigset_t *mask, struct sigpending *s)
536{
537 struct sigqueue *q, *n;
538 sigset_t m;
539
540 sigandsets(&m, mask, &s->signal);
541 if (sigisemptyset(&m))
542 return 0;
543
544 signandsets(&s->signal, &s->signal, mask);
545 list_for_each_entry_safe(q, n, &s->list, list) {
546 if (sigismember(mask, q->info.si_signo)) {
547 list_del_init(&q->list);
548 __sigqueue_free(q);
549 }
550 }
551 return 1;
552}
1da177e4
LT
553/*
554 * Remove signals in mask from the pending set and queue.
555 * Returns 1 if any signals were found.
556 *
557 * All callers must be holding the siglock.
558 */
559static int rm_from_queue(unsigned long mask, struct sigpending *s)
560{
561 struct sigqueue *q, *n;
562
563 if (!sigtestsetmask(&s->signal, mask))
564 return 0;
565
566 sigdelsetmask(&s->signal, mask);
567 list_for_each_entry_safe(q, n, &s->list, list) {
568 if (q->info.si_signo < SIGRTMIN &&
569 (mask & sigmask(q->info.si_signo))) {
570 list_del_init(&q->list);
571 __sigqueue_free(q);
572 }
573 }
574 return 1;
575}
576
577/*
578 * Bad permissions for sending the signal
579 */
580static int check_kill_permission(int sig, struct siginfo *info,
581 struct task_struct *t)
582{
583 int error = -EINVAL;
7ed20e1a 584 if (!valid_signal(sig))
1da177e4
LT
585 return error;
586 error = -EPERM;
621d3121 587 if ((info == SEND_SIG_NOINFO || (!is_si_special(info) && SI_FROMUSER(info)))
1da177e4 588 && ((sig != SIGCONT) ||
937949d9 589 (process_session(current) != process_session(t)))
1da177e4
LT
590 && (current->euid ^ t->suid) && (current->euid ^ t->uid)
591 && (current->uid ^ t->suid) && (current->uid ^ t->uid)
592 && !capable(CAP_KILL))
593 return error;
c2f0c7c3 594
8f95dc58 595 error = security_task_kill(t, info, sig, 0);
c2f0c7c3
SG
596 if (!error)
597 audit_signal_info(sig, t); /* Let audit system see the signal */
598 return error;
1da177e4
LT
599}
600
601/* forward decl */
a1d5e21e 602static void do_notify_parent_cldstop(struct task_struct *tsk, int why);
1da177e4
LT
603
604/*
605 * Handle magic process-wide effects of stop/continue signals.
606 * Unlike the signal actions, these happen immediately at signal-generation
607 * time regardless of blocking, ignoring, or handling. This does the
608 * actual continuing for SIGCONT, but not the actual stopping for stop
609 * signals. The process stop is done as a signal action for SIG_DFL.
610 */
611static void handle_stop_signal(int sig, struct task_struct *p)
612{
613 struct task_struct *t;
614
dd12f48d 615 if (p->signal->flags & SIGNAL_GROUP_EXIT)
1da177e4
LT
616 /*
617 * The process is in the middle of dying already.
618 */
619 return;
620
621 if (sig_kernel_stop(sig)) {
622 /*
623 * This is a stop signal. Remove SIGCONT from all queues.
624 */
625 rm_from_queue(sigmask(SIGCONT), &p->signal->shared_pending);
626 t = p;
627 do {
628 rm_from_queue(sigmask(SIGCONT), &t->pending);
629 t = next_thread(t);
630 } while (t != p);
631 } else if (sig == SIGCONT) {
632 /*
633 * Remove all stop signals from all queues,
634 * and wake all threads.
635 */
636 if (unlikely(p->signal->group_stop_count > 0)) {
637 /*
638 * There was a group stop in progress. We'll
639 * pretend it finished before we got here. We are
640 * obliged to report it to the parent: if the
641 * SIGSTOP happened "after" this SIGCONT, then it
642 * would have cleared this pending SIGCONT. If it
643 * happened "before" this SIGCONT, then the parent
644 * got the SIGCHLD about the stop finishing before
645 * the continue happened. We do the notification
646 * now, and it's as if the stop had finished and
647 * the SIGCHLD was pending on entry to this kill.
648 */
649 p->signal->group_stop_count = 0;
650 p->signal->flags = SIGNAL_STOP_CONTINUED;
651 spin_unlock(&p->sighand->siglock);
a1d5e21e 652 do_notify_parent_cldstop(p, CLD_STOPPED);
1da177e4
LT
653 spin_lock(&p->sighand->siglock);
654 }
655 rm_from_queue(SIG_KERNEL_STOP_MASK, &p->signal->shared_pending);
656 t = p;
657 do {
658 unsigned int state;
659 rm_from_queue(SIG_KERNEL_STOP_MASK, &t->pending);
660
661 /*
662 * If there is a handler for SIGCONT, we must make
663 * sure that no thread returns to user mode before
664 * we post the signal, in case it was the only
665 * thread eligible to run the signal handler--then
666 * it must not do anything between resuming and
667 * running the handler. With the TIF_SIGPENDING
668 * flag set, the thread will pause and acquire the
669 * siglock that we hold now and until we've queued
670 * the pending signal.
671 *
672 * Wake up the stopped thread _after_ setting
673 * TIF_SIGPENDING
674 */
675 state = TASK_STOPPED;
676 if (sig_user_defined(t, SIGCONT) && !sigismember(&t->blocked, SIGCONT)) {
677 set_tsk_thread_flag(t, TIF_SIGPENDING);
678 state |= TASK_INTERRUPTIBLE;
679 }
680 wake_up_state(t, state);
681
682 t = next_thread(t);
683 } while (t != p);
684
685 if (p->signal->flags & SIGNAL_STOP_STOPPED) {
686 /*
687 * We were in fact stopped, and are now continued.
688 * Notify the parent with CLD_CONTINUED.
689 */
690 p->signal->flags = SIGNAL_STOP_CONTINUED;
691 p->signal->group_exit_code = 0;
692 spin_unlock(&p->sighand->siglock);
a1d5e21e 693 do_notify_parent_cldstop(p, CLD_CONTINUED);
1da177e4
LT
694 spin_lock(&p->sighand->siglock);
695 } else {
696 /*
697 * We are not stopped, but there could be a stop
698 * signal in the middle of being processed after
699 * being removed from the queue. Clear that too.
700 */
701 p->signal->flags = 0;
702 }
703 } else if (sig == SIGKILL) {
704 /*
705 * Make sure that any pending stop signal already dequeued
706 * is undone by the wakeup for SIGKILL.
707 */
708 p->signal->flags = 0;
709 }
710}
711
712static int send_signal(int sig, struct siginfo *info, struct task_struct *t,
713 struct sigpending *signals)
714{
715 struct sigqueue * q = NULL;
716 int ret = 0;
717
718 /*
719 * fast-pathed signals for kernel-internal things like SIGSTOP
720 * or SIGKILL.
721 */
b67a1b9e 722 if (info == SEND_SIG_FORCED)
1da177e4
LT
723 goto out_set;
724
725 /* Real-time signals must be queued if sent by sigqueue, or
726 some other real-time mechanism. It is implementation
727 defined whether kill() does so. We attempt to do so, on
728 the principle of least surprise, but since kill is not
729 allowed to fail with EAGAIN when low on memory we just
730 make sure at least one signal gets delivered and don't
731 pass on the info struct. */
732
733 q = __sigqueue_alloc(t, GFP_ATOMIC, (sig < SIGRTMIN &&
621d3121 734 (is_si_special(info) ||
1da177e4
LT
735 info->si_code >= 0)));
736 if (q) {
737 list_add_tail(&q->list, &signals->list);
738 switch ((unsigned long) info) {
b67a1b9e 739 case (unsigned long) SEND_SIG_NOINFO:
1da177e4
LT
740 q->info.si_signo = sig;
741 q->info.si_errno = 0;
742 q->info.si_code = SI_USER;
743 q->info.si_pid = current->pid;
744 q->info.si_uid = current->uid;
745 break;
b67a1b9e 746 case (unsigned long) SEND_SIG_PRIV:
1da177e4
LT
747 q->info.si_signo = sig;
748 q->info.si_errno = 0;
749 q->info.si_code = SI_KERNEL;
750 q->info.si_pid = 0;
751 q->info.si_uid = 0;
752 break;
753 default:
754 copy_siginfo(&q->info, info);
755 break;
756 }
621d3121
ON
757 } else if (!is_si_special(info)) {
758 if (sig >= SIGRTMIN && info->si_code != SI_USER)
1da177e4
LT
759 /*
760 * Queue overflow, abort. We may abort if the signal was rt
761 * and sent by user using something other than kill().
762 */
763 return -EAGAIN;
1da177e4
LT
764 }
765
766out_set:
767 sigaddset(&signals->signal, sig);
768 return ret;
769}
770
771#define LEGACY_QUEUE(sigptr, sig) \
772 (((sig) < SIGRTMIN) && sigismember(&(sigptr)->signal, (sig)))
773
774
775static int
776specific_send_sig_info(int sig, struct siginfo *info, struct task_struct *t)
777{
778 int ret = 0;
779
fda8bd78 780 BUG_ON(!irqs_disabled());
1da177e4
LT
781 assert_spin_locked(&t->sighand->siglock);
782
1da177e4
LT
783 /* Short-circuit ignored signals. */
784 if (sig_ignored(t, sig))
785 goto out;
786
787 /* Support queueing exactly one non-rt signal, so that we
788 can get more detailed information about the cause of
789 the signal. */
790 if (LEGACY_QUEUE(&t->pending, sig))
791 goto out;
792
793 ret = send_signal(sig, info, t, &t->pending);
794 if (!ret && !sigismember(&t->blocked, sig))
795 signal_wake_up(t, sig == SIGKILL);
796out:
797 return ret;
798}
799
800/*
801 * Force a signal that the process can't ignore: if necessary
802 * we unblock the signal and change any SIG_IGN to SIG_DFL.
ae74c3b6
LT
803 *
804 * Note: If we unblock the signal, we always reset it to SIG_DFL,
805 * since we do not want to have a signal handler that was blocked
806 * be invoked when user space had explicitly blocked it.
807 *
808 * We don't want to have recursive SIGSEGV's etc, for example.
1da177e4 809 */
1da177e4
LT
810int
811force_sig_info(int sig, struct siginfo *info, struct task_struct *t)
812{
813 unsigned long int flags;
ae74c3b6
LT
814 int ret, blocked, ignored;
815 struct k_sigaction *action;
1da177e4
LT
816
817 spin_lock_irqsave(&t->sighand->siglock, flags);
ae74c3b6
LT
818 action = &t->sighand->action[sig-1];
819 ignored = action->sa.sa_handler == SIG_IGN;
820 blocked = sigismember(&t->blocked, sig);
821 if (blocked || ignored) {
822 action->sa.sa_handler = SIG_DFL;
823 if (blocked) {
824 sigdelset(&t->blocked, sig);
825 recalc_sigpending_tsk(t);
826 }
1da177e4
LT
827 }
828 ret = specific_send_sig_info(sig, info, t);
829 spin_unlock_irqrestore(&t->sighand->siglock, flags);
830
831 return ret;
832}
833
834void
835force_sig_specific(int sig, struct task_struct *t)
836{
b0423a0d 837 force_sig_info(sig, SEND_SIG_FORCED, t);
1da177e4
LT
838}
839
840/*
841 * Test if P wants to take SIG. After we've checked all threads with this,
842 * it's equivalent to finding no threads not blocking SIG. Any threads not
843 * blocking SIG were ruled out because they are not running and already
844 * have pending signals. Such threads will dequeue from the shared queue
845 * as soon as they're available, so putting the signal on the shared queue
846 * will be equivalent to sending it to one such thread.
847 */
188a1eaf
LT
848static inline int wants_signal(int sig, struct task_struct *p)
849{
850 if (sigismember(&p->blocked, sig))
851 return 0;
852 if (p->flags & PF_EXITING)
853 return 0;
854 if (sig == SIGKILL)
855 return 1;
856 if (p->state & (TASK_STOPPED | TASK_TRACED))
857 return 0;
858 return task_curr(p) || !signal_pending(p);
859}
1da177e4
LT
860
861static void
862__group_complete_signal(int sig, struct task_struct *p)
863{
1da177e4
LT
864 struct task_struct *t;
865
1da177e4
LT
866 /*
867 * Now find a thread we can wake up to take the signal off the queue.
868 *
869 * If the main thread wants the signal, it gets first crack.
870 * Probably the least surprising to the average bear.
871 */
188a1eaf 872 if (wants_signal(sig, p))
1da177e4
LT
873 t = p;
874 else if (thread_group_empty(p))
875 /*
876 * There is just one thread and it does not need to be woken.
877 * It will dequeue unblocked signals before it runs again.
878 */
879 return;
880 else {
881 /*
882 * Otherwise try to find a suitable thread.
883 */
884 t = p->signal->curr_target;
885 if (t == NULL)
886 /* restart balancing at this thread */
887 t = p->signal->curr_target = p;
1da177e4 888
188a1eaf 889 while (!wants_signal(sig, t)) {
1da177e4
LT
890 t = next_thread(t);
891 if (t == p->signal->curr_target)
892 /*
893 * No thread needs to be woken.
894 * Any eligible threads will see
895 * the signal in the queue soon.
896 */
897 return;
898 }
899 p->signal->curr_target = t;
900 }
901
902 /*
903 * Found a killable thread. If the signal will be fatal,
904 * then start taking the whole group down immediately.
905 */
906 if (sig_fatal(p, sig) && !(p->signal->flags & SIGNAL_GROUP_EXIT) &&
907 !sigismember(&t->real_blocked, sig) &&
908 (sig == SIGKILL || !(t->ptrace & PT_PTRACED))) {
909 /*
910 * This signal will be fatal to the whole group.
911 */
912 if (!sig_kernel_coredump(sig)) {
913 /*
914 * Start a group exit and wake everybody up.
915 * This way we don't have other threads
916 * running and doing things after a slower
917 * thread has the fatal signal pending.
918 */
919 p->signal->flags = SIGNAL_GROUP_EXIT;
920 p->signal->group_exit_code = sig;
921 p->signal->group_stop_count = 0;
922 t = p;
923 do {
924 sigaddset(&t->pending.signal, SIGKILL);
925 signal_wake_up(t, 1);
926 t = next_thread(t);
927 } while (t != p);
928 return;
929 }
930
931 /*
932 * There will be a core dump. We make all threads other
933 * than the chosen one go into a group stop so that nothing
934 * happens until it gets scheduled, takes the signal off
935 * the shared queue, and does the core dump. This is a
936 * little more complicated than strictly necessary, but it
937 * keeps the signal state that winds up in the core dump
938 * unchanged from the death state, e.g. which thread had
939 * the core-dump signal unblocked.
940 */
941 rm_from_queue(SIG_KERNEL_STOP_MASK, &t->pending);
942 rm_from_queue(SIG_KERNEL_STOP_MASK, &p->signal->shared_pending);
943 p->signal->group_stop_count = 0;
944 p->signal->group_exit_task = t;
945 t = p;
946 do {
947 p->signal->group_stop_count++;
948 signal_wake_up(t, 0);
949 t = next_thread(t);
950 } while (t != p);
951 wake_up_process(p->signal->group_exit_task);
952 return;
953 }
954
955 /*
956 * The signal is already in the shared-pending queue.
957 * Tell the chosen thread to wake up and dequeue it.
958 */
959 signal_wake_up(t, sig == SIGKILL);
960 return;
961}
962
963int
964__group_send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
965{
966 int ret = 0;
967
968 assert_spin_locked(&p->sighand->siglock);
969 handle_stop_signal(sig, p);
970
1da177e4
LT
971 /* Short-circuit ignored signals. */
972 if (sig_ignored(p, sig))
973 return ret;
974
975 if (LEGACY_QUEUE(&p->signal->shared_pending, sig))
976 /* This is a non-RT signal and we already have one queued. */
977 return ret;
978
979 /*
980 * Put this signal on the shared-pending queue, or fail with EAGAIN.
981 * We always use the shared queue for process-wide signals,
982 * to avoid several races.
983 */
984 ret = send_signal(sig, info, p, &p->signal->shared_pending);
985 if (unlikely(ret))
986 return ret;
987
988 __group_complete_signal(sig, p);
989 return 0;
990}
991
992/*
993 * Nuke all other threads in the group.
994 */
995void zap_other_threads(struct task_struct *p)
996{
997 struct task_struct *t;
998
999 p->signal->flags = SIGNAL_GROUP_EXIT;
1000 p->signal->group_stop_count = 0;
1001
1002 if (thread_group_empty(p))
1003 return;
1004
1005 for (t = next_thread(p); t != p; t = next_thread(t)) {
1006 /*
1007 * Don't bother with already dead threads
1008 */
1009 if (t->exit_state)
1010 continue;
1011
1012 /*
1013 * We don't want to notify the parent, since we are
1014 * killed as part of a thread group due to another
1015 * thread doing an execve() or similar. So set the
1016 * exit signal to -1 to allow immediate reaping of
1017 * the process. But don't detach the thread group
1018 * leader.
1019 */
1020 if (t != p->group_leader)
1021 t->exit_signal = -1;
1022
30e0fca6 1023 /* SIGKILL will be handled before any pending SIGSTOP */
1da177e4 1024 sigaddset(&t->pending.signal, SIGKILL);
1da177e4
LT
1025 signal_wake_up(t, 1);
1026 }
1027}
1028
1029/*
e56d0903 1030 * Must be called under rcu_read_lock() or with tasklist_lock read-held.
1da177e4 1031 */
f63ee72e
ON
1032struct sighand_struct *lock_task_sighand(struct task_struct *tsk, unsigned long *flags)
1033{
1034 struct sighand_struct *sighand;
1035
1036 for (;;) {
1037 sighand = rcu_dereference(tsk->sighand);
1038 if (unlikely(sighand == NULL))
1039 break;
1040
1041 spin_lock_irqsave(&sighand->siglock, *flags);
1042 if (likely(sighand == tsk->sighand))
1043 break;
1044 spin_unlock_irqrestore(&sighand->siglock, *flags);
1045 }
1046
1047 return sighand;
1048}
1049
1da177e4
LT
1050int group_send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
1051{
1052 unsigned long flags;
1053 int ret;
1054
1055 ret = check_kill_permission(sig, info, p);
f63ee72e
ON
1056
1057 if (!ret && sig) {
1058 ret = -ESRCH;
1059 if (lock_task_sighand(p, &flags)) {
1060 ret = __group_send_sig_info(sig, info, p);
1061 unlock_task_sighand(p, &flags);
2d89c929 1062 }
1da177e4
LT
1063 }
1064
1065 return ret;
1066}
1067
1068/*
c4b92fc1 1069 * kill_pgrp_info() sends a signal to a process group: this is what the tty
1da177e4
LT
1070 * control characters do (^C, ^Z etc)
1071 */
1072
c4b92fc1 1073int __kill_pgrp_info(int sig, struct siginfo *info, struct pid *pgrp)
1da177e4
LT
1074{
1075 struct task_struct *p = NULL;
1076 int retval, success;
1077
1da177e4
LT
1078 success = 0;
1079 retval = -ESRCH;
c4b92fc1 1080 do_each_pid_task(pgrp, PIDTYPE_PGID, p) {
1da177e4
LT
1081 int err = group_send_sig_info(sig, info, p);
1082 success |= !err;
1083 retval = err;
c4b92fc1 1084 } while_each_pid_task(pgrp, PIDTYPE_PGID, p);
1da177e4
LT
1085 return success ? 0 : retval;
1086}
1087
c4b92fc1
EB
1088int kill_pgrp_info(int sig, struct siginfo *info, struct pid *pgrp)
1089{
1090 int retval;
1091
1092 read_lock(&tasklist_lock);
1093 retval = __kill_pgrp_info(sig, info, pgrp);
1094 read_unlock(&tasklist_lock);
1095
1096 return retval;
1097}
1098
1099int __kill_pg_info(int sig, struct siginfo *info, pid_t pgrp)
1100{
1101 if (pgrp <= 0)
1102 return -EINVAL;
1103
1104 return __kill_pgrp_info(sig, info, find_pid(pgrp));
1105}
1106
1da177e4
LT
1107int
1108kill_pg_info(int sig, struct siginfo *info, pid_t pgrp)
1109{
1110 int retval;
1111
1112 read_lock(&tasklist_lock);
1113 retval = __kill_pg_info(sig, info, pgrp);
1114 read_unlock(&tasklist_lock);
1115
1116 return retval;
1117}
1118
c4b92fc1 1119int kill_pid_info(int sig, struct siginfo *info, struct pid *pid)
1da177e4
LT
1120{
1121 int error;
1122 struct task_struct *p;
1123
e56d0903 1124 rcu_read_lock();
0c12b517 1125 if (unlikely(sig_needs_tasklist(sig)))
e56d0903 1126 read_lock(&tasklist_lock);
0c12b517 1127
c4b92fc1 1128 p = pid_task(pid, PIDTYPE_PID);
1da177e4
LT
1129 error = -ESRCH;
1130 if (p)
1131 error = group_send_sig_info(sig, info, p);
0c12b517
ON
1132
1133 if (unlikely(sig_needs_tasklist(sig)))
e56d0903
IM
1134 read_unlock(&tasklist_lock);
1135 rcu_read_unlock();
1da177e4
LT
1136 return error;
1137}
1138
d3228a88 1139static int kill_proc_info(int sig, struct siginfo *info, pid_t pid)
c4b92fc1
EB
1140{
1141 int error;
1142 rcu_read_lock();
1143 error = kill_pid_info(sig, info, find_pid(pid));
1144 rcu_read_unlock();
1145 return error;
1146}
1147
2425c08b
EB
1148/* like kill_pid_info(), but doesn't use uid/euid of "current" */
1149int kill_pid_info_as_uid(int sig, struct siginfo *info, struct pid *pid,
8f95dc58 1150 uid_t uid, uid_t euid, u32 secid)
46113830
HW
1151{
1152 int ret = -EINVAL;
1153 struct task_struct *p;
1154
1155 if (!valid_signal(sig))
1156 return ret;
1157
1158 read_lock(&tasklist_lock);
2425c08b 1159 p = pid_task(pid, PIDTYPE_PID);
46113830
HW
1160 if (!p) {
1161 ret = -ESRCH;
1162 goto out_unlock;
1163 }
0811af28 1164 if ((info == SEND_SIG_NOINFO || (!is_si_special(info) && SI_FROMUSER(info)))
46113830
HW
1165 && (euid != p->suid) && (euid != p->uid)
1166 && (uid != p->suid) && (uid != p->uid)) {
1167 ret = -EPERM;
1168 goto out_unlock;
1169 }
8f95dc58
DQ
1170 ret = security_task_kill(p, info, sig, secid);
1171 if (ret)
1172 goto out_unlock;
46113830
HW
1173 if (sig && p->sighand) {
1174 unsigned long flags;
1175 spin_lock_irqsave(&p->sighand->siglock, flags);
1176 ret = __group_send_sig_info(sig, info, p);
1177 spin_unlock_irqrestore(&p->sighand->siglock, flags);
1178 }
1179out_unlock:
1180 read_unlock(&tasklist_lock);
1181 return ret;
1182}
2425c08b 1183EXPORT_SYMBOL_GPL(kill_pid_info_as_uid);
1da177e4
LT
1184
1185/*
1186 * kill_something_info() interprets pid in interesting ways just like kill(2).
1187 *
1188 * POSIX specifies that kill(-1,sig) is unspecified, but what we have
1189 * is probably wrong. Should make it like BSD or SYSV.
1190 */
1191
1192static int kill_something_info(int sig, struct siginfo *info, int pid)
1193{
1194 if (!pid) {
1195 return kill_pg_info(sig, info, process_group(current));
1196 } else if (pid == -1) {
1197 int retval = 0, count = 0;
1198 struct task_struct * p;
1199
1200 read_lock(&tasklist_lock);
1201 for_each_process(p) {
1202 if (p->pid > 1 && p->tgid != current->tgid) {
1203 int err = group_send_sig_info(sig, info, p);
1204 ++count;
1205 if (err != -EPERM)
1206 retval = err;
1207 }
1208 }
1209 read_unlock(&tasklist_lock);
1210 return count ? retval : -ESRCH;
1211 } else if (pid < 0) {
1212 return kill_pg_info(sig, info, -pid);
1213 } else {
1214 return kill_proc_info(sig, info, pid);
1215 }
1216}
1217
1218/*
1219 * These are for backward compatibility with the rest of the kernel source.
1220 */
1221
1222/*
1223 * These two are the most common entry points. They send a signal
1224 * just to the specific thread.
1225 */
1226int
1227send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
1228{
1229 int ret;
1230 unsigned long flags;
1231
1232 /*
1233 * Make sure legacy kernel users don't send in bad values
1234 * (normal paths check this in check_kill_permission).
1235 */
7ed20e1a 1236 if (!valid_signal(sig))
1da177e4
LT
1237 return -EINVAL;
1238
1239 /*
1240 * We need the tasklist lock even for the specific
1241 * thread case (when we don't need to follow the group
1242 * lists) in order to avoid races with "p->sighand"
1243 * going away or changing from under us.
1244 */
1245 read_lock(&tasklist_lock);
1246 spin_lock_irqsave(&p->sighand->siglock, flags);
1247 ret = specific_send_sig_info(sig, info, p);
1248 spin_unlock_irqrestore(&p->sighand->siglock, flags);
1249 read_unlock(&tasklist_lock);
1250 return ret;
1251}
1252
b67a1b9e
ON
1253#define __si_special(priv) \
1254 ((priv) ? SEND_SIG_PRIV : SEND_SIG_NOINFO)
1255
1da177e4
LT
1256int
1257send_sig(int sig, struct task_struct *p, int priv)
1258{
b67a1b9e 1259 return send_sig_info(sig, __si_special(priv), p);
1da177e4
LT
1260}
1261
1262/*
1263 * This is the entry point for "process-wide" signals.
1264 * They will go to an appropriate thread in the thread group.
1265 */
1266int
1267send_group_sig_info(int sig, struct siginfo *info, struct task_struct *p)
1268{
1269 int ret;
1270 read_lock(&tasklist_lock);
1271 ret = group_send_sig_info(sig, info, p);
1272 read_unlock(&tasklist_lock);
1273 return ret;
1274}
1275
1276void
1277force_sig(int sig, struct task_struct *p)
1278{
b67a1b9e 1279 force_sig_info(sig, SEND_SIG_PRIV, p);
1da177e4
LT
1280}
1281
1282/*
1283 * When things go south during signal handling, we
1284 * will force a SIGSEGV. And if the signal that caused
1285 * the problem was already a SIGSEGV, we'll want to
1286 * make sure we don't even try to deliver the signal..
1287 */
1288int
1289force_sigsegv(int sig, struct task_struct *p)
1290{
1291 if (sig == SIGSEGV) {
1292 unsigned long flags;
1293 spin_lock_irqsave(&p->sighand->siglock, flags);
1294 p->sighand->action[sig - 1].sa.sa_handler = SIG_DFL;
1295 spin_unlock_irqrestore(&p->sighand->siglock, flags);
1296 }
1297 force_sig(SIGSEGV, p);
1298 return 0;
1299}
1300
c4b92fc1
EB
1301int kill_pgrp(struct pid *pid, int sig, int priv)
1302{
1303 return kill_pgrp_info(sig, __si_special(priv), pid);
1304}
1305EXPORT_SYMBOL(kill_pgrp);
1306
1307int kill_pid(struct pid *pid, int sig, int priv)
1308{
1309 return kill_pid_info(sig, __si_special(priv), pid);
1310}
1311EXPORT_SYMBOL(kill_pid);
1312
1da177e4
LT
1313int
1314kill_pg(pid_t pgrp, int sig, int priv)
1315{
b67a1b9e 1316 return kill_pg_info(sig, __si_special(priv), pgrp);
1da177e4
LT
1317}
1318
1319int
1320kill_proc(pid_t pid, int sig, int priv)
1321{
b67a1b9e 1322 return kill_proc_info(sig, __si_special(priv), pid);
1da177e4
LT
1323}
1324
1325/*
1326 * These functions support sending signals using preallocated sigqueue
1327 * structures. This is needed "because realtime applications cannot
1328 * afford to lose notifications of asynchronous events, like timer
1329 * expirations or I/O completions". In the case of Posix Timers
1330 * we allocate the sigqueue structure from the timer_create. If this
1331 * allocation fails we are able to report the failure to the application
1332 * with an EAGAIN error.
1333 */
1334
1335struct sigqueue *sigqueue_alloc(void)
1336{
1337 struct sigqueue *q;
1338
1339 if ((q = __sigqueue_alloc(current, GFP_KERNEL, 0)))
1340 q->flags |= SIGQUEUE_PREALLOC;
1341 return(q);
1342}
1343
1344void sigqueue_free(struct sigqueue *q)
1345{
1346 unsigned long flags;
1347 BUG_ON(!(q->flags & SIGQUEUE_PREALLOC));
1348 /*
1349 * If the signal is still pending remove it from the
1350 * pending queue.
1351 */
1352 if (unlikely(!list_empty(&q->list))) {
19a4fcb5
ON
1353 spinlock_t *lock = &current->sighand->siglock;
1354 read_lock(&tasklist_lock);
1355 spin_lock_irqsave(lock, flags);
1da177e4
LT
1356 if (!list_empty(&q->list))
1357 list_del_init(&q->list);
19a4fcb5 1358 spin_unlock_irqrestore(lock, flags);
1da177e4
LT
1359 read_unlock(&tasklist_lock);
1360 }
1361 q->flags &= ~SIGQUEUE_PREALLOC;
1362 __sigqueue_free(q);
1363}
1364
54767908 1365int send_sigqueue(int sig, struct sigqueue *q, struct task_struct *p)
1da177e4
LT
1366{
1367 unsigned long flags;
1368 int ret = 0;
1369
1da177e4 1370 BUG_ON(!(q->flags & SIGQUEUE_PREALLOC));
e56d0903
IM
1371
1372 /*
1373 * The rcu based delayed sighand destroy makes it possible to
1374 * run this without tasklist lock held. The task struct itself
1375 * cannot go away as create_timer did get_task_struct().
1376 *
1377 * We return -1, when the task is marked exiting, so
1378 * posix_timer_event can redirect it to the group leader
1379 */
1380 rcu_read_lock();
e752dd6c 1381
54767908 1382 if (!likely(lock_task_sighand(p, &flags))) {
e752dd6c
ON
1383 ret = -1;
1384 goto out_err;
1385 }
1386
1da177e4
LT
1387 if (unlikely(!list_empty(&q->list))) {
1388 /*
1389 * If an SI_TIMER entry is already queue just increment
1390 * the overrun count.
1391 */
54767908 1392 BUG_ON(q->info.si_code != SI_TIMER);
1da177e4
LT
1393 q->info.si_overrun++;
1394 goto out;
e752dd6c 1395 }
1da177e4
LT
1396 /* Short-circuit ignored signals. */
1397 if (sig_ignored(p, sig)) {
1398 ret = 1;
1399 goto out;
1400 }
1401
1da177e4
LT
1402 list_add_tail(&q->list, &p->pending.list);
1403 sigaddset(&p->pending.signal, sig);
1404 if (!sigismember(&p->blocked, sig))
1405 signal_wake_up(p, sig == SIGKILL);
1406
1407out:
54767908 1408 unlock_task_sighand(p, &flags);
e752dd6c 1409out_err:
e56d0903 1410 rcu_read_unlock();
e752dd6c
ON
1411
1412 return ret;
1da177e4
LT
1413}
1414
1415int
1416send_group_sigqueue(int sig, struct sigqueue *q, struct task_struct *p)
1417{
1418 unsigned long flags;
1419 int ret = 0;
1420
1421 BUG_ON(!(q->flags & SIGQUEUE_PREALLOC));
e56d0903 1422
1da177e4 1423 read_lock(&tasklist_lock);
e56d0903 1424 /* Since it_lock is held, p->sighand cannot be NULL. */
1da177e4
LT
1425 spin_lock_irqsave(&p->sighand->siglock, flags);
1426 handle_stop_signal(sig, p);
1427
1428 /* Short-circuit ignored signals. */
1429 if (sig_ignored(p, sig)) {
1430 ret = 1;
1431 goto out;
1432 }
1433
1434 if (unlikely(!list_empty(&q->list))) {
1435 /*
1436 * If an SI_TIMER entry is already queue just increment
1437 * the overrun count. Other uses should not try to
1438 * send the signal multiple times.
1439 */
fda8bd78 1440 BUG_ON(q->info.si_code != SI_TIMER);
1da177e4
LT
1441 q->info.si_overrun++;
1442 goto out;
1443 }
1444
1445 /*
1446 * Put this signal on the shared-pending queue.
1447 * We always use the shared queue for process-wide signals,
1448 * to avoid several races.
1449 */
1da177e4
LT
1450 list_add_tail(&q->list, &p->signal->shared_pending.list);
1451 sigaddset(&p->signal->shared_pending.signal, sig);
1452
1453 __group_complete_signal(sig, p);
1454out:
1455 spin_unlock_irqrestore(&p->sighand->siglock, flags);
1456 read_unlock(&tasklist_lock);
e56d0903 1457 return ret;
1da177e4
LT
1458}
1459
1460/*
1461 * Wake up any threads in the parent blocked in wait* syscalls.
1462 */
1463static inline void __wake_up_parent(struct task_struct *p,
1464 struct task_struct *parent)
1465{
1466 wake_up_interruptible_sync(&parent->signal->wait_chldexit);
1467}
1468
1469/*
1470 * Let a parent know about the death of a child.
1471 * For a stopped/continued status change, use do_notify_parent_cldstop instead.
1472 */
1473
1474void do_notify_parent(struct task_struct *tsk, int sig)
1475{
1476 struct siginfo info;
1477 unsigned long flags;
1478 struct sighand_struct *psig;
1479
1480 BUG_ON(sig == -1);
1481
1482 /* do_notify_parent_cldstop should have been called instead. */
1483 BUG_ON(tsk->state & (TASK_STOPPED|TASK_TRACED));
1484
1485 BUG_ON(!tsk->ptrace &&
1486 (tsk->group_leader != tsk || !thread_group_empty(tsk)));
1487
1488 info.si_signo = sig;
1489 info.si_errno = 0;
1490 info.si_pid = tsk->pid;
1491 info.si_uid = tsk->uid;
1492
1493 /* FIXME: find out whether or not this is supposed to be c*time. */
1494 info.si_utime = cputime_to_jiffies(cputime_add(tsk->utime,
1495 tsk->signal->utime));
1496 info.si_stime = cputime_to_jiffies(cputime_add(tsk->stime,
1497 tsk->signal->stime));
1498
1499 info.si_status = tsk->exit_code & 0x7f;
1500 if (tsk->exit_code & 0x80)
1501 info.si_code = CLD_DUMPED;
1502 else if (tsk->exit_code & 0x7f)
1503 info.si_code = CLD_KILLED;
1504 else {
1505 info.si_code = CLD_EXITED;
1506 info.si_status = tsk->exit_code >> 8;
1507 }
1508
1509 psig = tsk->parent->sighand;
1510 spin_lock_irqsave(&psig->siglock, flags);
7ed0175a 1511 if (!tsk->ptrace && sig == SIGCHLD &&
1da177e4
LT
1512 (psig->action[SIGCHLD-1].sa.sa_handler == SIG_IGN ||
1513 (psig->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDWAIT))) {
1514 /*
1515 * We are exiting and our parent doesn't care. POSIX.1
1516 * defines special semantics for setting SIGCHLD to SIG_IGN
1517 * or setting the SA_NOCLDWAIT flag: we should be reaped
1518 * automatically and not left for our parent's wait4 call.
1519 * Rather than having the parent do it as a magic kind of
1520 * signal handler, we just set this to tell do_exit that we
1521 * can be cleaned up without becoming a zombie. Note that
1522 * we still call __wake_up_parent in this case, because a
1523 * blocked sys_wait4 might now return -ECHILD.
1524 *
1525 * Whether we send SIGCHLD or not for SA_NOCLDWAIT
1526 * is implementation-defined: we do (if you don't want
1527 * it, just use SIG_IGN instead).
1528 */
1529 tsk->exit_signal = -1;
1530 if (psig->action[SIGCHLD-1].sa.sa_handler == SIG_IGN)
1531 sig = 0;
1532 }
7ed20e1a 1533 if (valid_signal(sig) && sig > 0)
1da177e4
LT
1534 __group_send_sig_info(sig, &info, tsk->parent);
1535 __wake_up_parent(tsk, tsk->parent);
1536 spin_unlock_irqrestore(&psig->siglock, flags);
1537}
1538
a1d5e21e 1539static void do_notify_parent_cldstop(struct task_struct *tsk, int why)
1da177e4
LT
1540{
1541 struct siginfo info;
1542 unsigned long flags;
bc505a47 1543 struct task_struct *parent;
1da177e4
LT
1544 struct sighand_struct *sighand;
1545
a1d5e21e 1546 if (tsk->ptrace & PT_PTRACED)
bc505a47
ON
1547 parent = tsk->parent;
1548 else {
1549 tsk = tsk->group_leader;
1550 parent = tsk->real_parent;
1551 }
1552
1da177e4
LT
1553 info.si_signo = SIGCHLD;
1554 info.si_errno = 0;
1555 info.si_pid = tsk->pid;
1556 info.si_uid = tsk->uid;
1557
1558 /* FIXME: find out whether or not this is supposed to be c*time. */
1559 info.si_utime = cputime_to_jiffies(tsk->utime);
1560 info.si_stime = cputime_to_jiffies(tsk->stime);
1561
1562 info.si_code = why;
1563 switch (why) {
1564 case CLD_CONTINUED:
1565 info.si_status = SIGCONT;
1566 break;
1567 case CLD_STOPPED:
1568 info.si_status = tsk->signal->group_exit_code & 0x7f;
1569 break;
1570 case CLD_TRAPPED:
1571 info.si_status = tsk->exit_code & 0x7f;
1572 break;
1573 default:
1574 BUG();
1575 }
1576
1577 sighand = parent->sighand;
1578 spin_lock_irqsave(&sighand->siglock, flags);
1579 if (sighand->action[SIGCHLD-1].sa.sa_handler != SIG_IGN &&
1580 !(sighand->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDSTOP))
1581 __group_send_sig_info(SIGCHLD, &info, parent);
1582 /*
1583 * Even if SIGCHLD is not generated, we must wake up wait4 calls.
1584 */
1585 __wake_up_parent(tsk, parent);
1586 spin_unlock_irqrestore(&sighand->siglock, flags);
1587}
1588
d5f70c00
ON
1589static inline int may_ptrace_stop(void)
1590{
1591 if (!likely(current->ptrace & PT_PTRACED))
1592 return 0;
1593
1594 if (unlikely(current->parent == current->real_parent &&
1595 (current->ptrace & PT_ATTACHED)))
1596 return 0;
1597
1598 if (unlikely(current->signal == current->parent->signal) &&
1599 unlikely(current->signal->flags & SIGNAL_GROUP_EXIT))
1600 return 0;
1601
1602 /*
1603 * Are we in the middle of do_coredump?
1604 * If so and our tracer is also part of the coredump stopping
1605 * is a deadlock situation, and pointless because our tracer
1606 * is dead so don't allow us to stop.
1607 * If SIGKILL was already sent before the caller unlocked
1608 * ->siglock we must see ->core_waiters != 0. Otherwise it
1609 * is safe to enter schedule().
1610 */
1611 if (unlikely(current->mm->core_waiters) &&
1612 unlikely(current->mm == current->parent->mm))
1613 return 0;
1614
1615 return 1;
1616}
1617
1da177e4
LT
1618/*
1619 * This must be called with current->sighand->siglock held.
1620 *
1621 * This should be the path for all ptrace stops.
1622 * We always set current->last_siginfo while stopped here.
1623 * That makes it a way to test a stopped process for
1624 * being ptrace-stopped vs being job-control-stopped.
1625 *
1626 * If we actually decide not to stop at all because the tracer is gone,
1627 * we leave nostop_code in current->exit_code.
1628 */
1629static void ptrace_stop(int exit_code, int nostop_code, siginfo_t *info)
1630{
1631 /*
1632 * If there is a group stop in progress,
1633 * we must participate in the bookkeeping.
1634 */
1635 if (current->signal->group_stop_count > 0)
1636 --current->signal->group_stop_count;
1637
1638 current->last_siginfo = info;
1639 current->exit_code = exit_code;
1640
1641 /* Let the debugger run. */
1642 set_current_state(TASK_TRACED);
1643 spin_unlock_irq(&current->sighand->siglock);
85b6bce3 1644 try_to_freeze();
1da177e4 1645 read_lock(&tasklist_lock);
d5f70c00 1646 if (may_ptrace_stop()) {
a1d5e21e 1647 do_notify_parent_cldstop(current, CLD_TRAPPED);
1da177e4
LT
1648 read_unlock(&tasklist_lock);
1649 schedule();
1650 } else {
1651 /*
1652 * By the time we got the lock, our tracer went away.
1653 * Don't stop here.
1654 */
1655 read_unlock(&tasklist_lock);
1656 set_current_state(TASK_RUNNING);
1657 current->exit_code = nostop_code;
1658 }
1659
1660 /*
1661 * We are back. Now reacquire the siglock before touching
1662 * last_siginfo, so that we are sure to have synchronized with
1663 * any signal-sending on another CPU that wants to examine it.
1664 */
1665 spin_lock_irq(&current->sighand->siglock);
1666 current->last_siginfo = NULL;
1667
1668 /*
1669 * Queued signals ignored us while we were stopped for tracing.
1670 * So check for any that we should take before resuming user mode.
1671 */
1672 recalc_sigpending();
1673}
1674
1675void ptrace_notify(int exit_code)
1676{
1677 siginfo_t info;
1678
1679 BUG_ON((exit_code & (0x7f | ~0xffff)) != SIGTRAP);
1680
1681 memset(&info, 0, sizeof info);
1682 info.si_signo = SIGTRAP;
1683 info.si_code = exit_code;
1684 info.si_pid = current->pid;
1685 info.si_uid = current->uid;
1686
1687 /* Let the debugger run. */
1688 spin_lock_irq(&current->sighand->siglock);
1689 ptrace_stop(exit_code, 0, &info);
1690 spin_unlock_irq(&current->sighand->siglock);
1691}
1692
1da177e4
LT
1693static void
1694finish_stop(int stop_count)
1695{
1696 /*
1697 * If there are no other threads in the group, or if there is
1698 * a group stop in progress and we are the last to stop,
1699 * report to the parent. When ptraced, every thread reports itself.
1700 */
a1d5e21e
ON
1701 if (stop_count == 0 || (current->ptrace & PT_PTRACED)) {
1702 read_lock(&tasklist_lock);
1703 do_notify_parent_cldstop(current, CLD_STOPPED);
1704 read_unlock(&tasklist_lock);
1705 }
bc505a47 1706
3df494a3
RW
1707 do {
1708 schedule();
1709 } while (try_to_freeze());
1da177e4
LT
1710 /*
1711 * Now we don't run again until continued.
1712 */
1713 current->exit_code = 0;
1714}
1715
1716/*
1717 * This performs the stopping for SIGSTOP and other stop signals.
1718 * We have to stop all threads in the thread group.
1719 * Returns nonzero if we've actually stopped and released the siglock.
1720 * Returns zero if we didn't stop and still hold the siglock.
1721 */
a122b341 1722static int do_signal_stop(int signr)
1da177e4
LT
1723{
1724 struct signal_struct *sig = current->signal;
dac27f4a 1725 int stop_count;
1da177e4
LT
1726
1727 if (!likely(sig->flags & SIGNAL_STOP_DEQUEUED))
1728 return 0;
1729
1730 if (sig->group_stop_count > 0) {
1731 /*
1732 * There is a group stop in progress. We don't need to
1733 * start another one.
1734 */
1da177e4 1735 stop_count = --sig->group_stop_count;
dac27f4a 1736 } else {
1da177e4
LT
1737 /*
1738 * There is no group stop already in progress.
a122b341 1739 * We must initiate one now.
1da177e4
LT
1740 */
1741 struct task_struct *t;
1742
a122b341 1743 sig->group_exit_code = signr;
1da177e4 1744
a122b341
ON
1745 stop_count = 0;
1746 for (t = next_thread(current); t != current; t = next_thread(t))
1da177e4 1747 /*
a122b341
ON
1748 * Setting state to TASK_STOPPED for a group
1749 * stop is always done with the siglock held,
1750 * so this check has no races.
1da177e4 1751 */
a122b341
ON
1752 if (!t->exit_state &&
1753 !(t->state & (TASK_STOPPED|TASK_TRACED))) {
1754 stop_count++;
1755 signal_wake_up(t, 0);
1756 }
1757 sig->group_stop_count = stop_count;
1da177e4
LT
1758 }
1759
dac27f4a
ON
1760 if (stop_count == 0)
1761 sig->flags = SIGNAL_STOP_STOPPED;
1762 current->exit_code = sig->group_exit_code;
1763 __set_current_state(TASK_STOPPED);
1764
1765 spin_unlock_irq(&current->sighand->siglock);
1da177e4
LT
1766 finish_stop(stop_count);
1767 return 1;
1768}
1769
1770/*
1771 * Do appropriate magic when group_stop_count > 0.
1772 * We return nonzero if we stopped, after releasing the siglock.
1773 * We return zero if we still hold the siglock and should look
1774 * for another signal without checking group_stop_count again.
1775 */
858119e1 1776static int handle_group_stop(void)
1da177e4
LT
1777{
1778 int stop_count;
1779
1780 if (current->signal->group_exit_task == current) {
1781 /*
1782 * Group stop is so we can do a core dump,
1783 * We are the initiating thread, so get on with it.
1784 */
1785 current->signal->group_exit_task = NULL;
1786 return 0;
1787 }
1788
1789 if (current->signal->flags & SIGNAL_GROUP_EXIT)
1790 /*
1791 * Group stop is so another thread can do a core dump,
1792 * or else we are racing against a death signal.
1793 * Just punt the stop so we can get the next signal.
1794 */
1795 return 0;
1796
1797 /*
1798 * There is a group stop in progress. We stop
1799 * without any associated signal being in our queue.
1800 */
1801 stop_count = --current->signal->group_stop_count;
1802 if (stop_count == 0)
1803 current->signal->flags = SIGNAL_STOP_STOPPED;
1804 current->exit_code = current->signal->group_exit_code;
1805 set_current_state(TASK_STOPPED);
1806 spin_unlock_irq(&current->sighand->siglock);
1807 finish_stop(stop_count);
1808 return 1;
1809}
1810
1811int get_signal_to_deliver(siginfo_t *info, struct k_sigaction *return_ka,
1812 struct pt_regs *regs, void *cookie)
1813{
1814 sigset_t *mask = &current->blocked;
1815 int signr = 0;
1816
fc558a74
RW
1817 try_to_freeze();
1818
1da177e4
LT
1819relock:
1820 spin_lock_irq(&current->sighand->siglock);
1821 for (;;) {
1822 struct k_sigaction *ka;
1823
1824 if (unlikely(current->signal->group_stop_count > 0) &&
1825 handle_group_stop())
1826 goto relock;
1827
1828 signr = dequeue_signal(current, mask, info);
1829
1830 if (!signr)
1831 break; /* will return 0 */
1832
1833 if ((current->ptrace & PT_PTRACED) && signr != SIGKILL) {
1834 ptrace_signal_deliver(regs, cookie);
1835
1836 /* Let the debugger run. */
1837 ptrace_stop(signr, signr, info);
1838
e57a5059 1839 /* We're back. Did the debugger cancel the sig? */
1da177e4 1840 signr = current->exit_code;
e57a5059 1841 if (signr == 0)
1da177e4
LT
1842 continue;
1843
1844 current->exit_code = 0;
1845
1846 /* Update the siginfo structure if the signal has
1847 changed. If the debugger wanted something
1848 specific in the siginfo structure then it should
1849 have updated *info via PTRACE_SETSIGINFO. */
1850 if (signr != info->si_signo) {
1851 info->si_signo = signr;
1852 info->si_errno = 0;
1853 info->si_code = SI_USER;
1854 info->si_pid = current->parent->pid;
1855 info->si_uid = current->parent->uid;
1856 }
1857
1858 /* If the (new) signal is now blocked, requeue it. */
1859 if (sigismember(&current->blocked, signr)) {
1860 specific_send_sig_info(signr, info, current);
1861 continue;
1862 }
1863 }
1864
1865 ka = &current->sighand->action[signr-1];
1866 if (ka->sa.sa_handler == SIG_IGN) /* Do nothing. */
1867 continue;
1868 if (ka->sa.sa_handler != SIG_DFL) {
1869 /* Run the handler. */
1870 *return_ka = *ka;
1871
1872 if (ka->sa.sa_flags & SA_ONESHOT)
1873 ka->sa.sa_handler = SIG_DFL;
1874
1875 break; /* will return non-zero "signr" value */
1876 }
1877
1878 /*
1879 * Now we are doing the default action for this signal.
1880 */
1881 if (sig_kernel_ignore(signr)) /* Default is nothing. */
1882 continue;
1883
84d73786
SB
1884 /*
1885 * Init of a pid space gets no signals it doesn't want from
1886 * within that pid space. It can of course get signals from
1887 * its parent pid space.
1888 */
1889 if (current == child_reaper(current))
1da177e4
LT
1890 continue;
1891
1892 if (sig_kernel_stop(signr)) {
1893 /*
1894 * The default action is to stop all threads in
1895 * the thread group. The job control signals
1896 * do nothing in an orphaned pgrp, but SIGSTOP
1897 * always works. Note that siglock needs to be
1898 * dropped during the call to is_orphaned_pgrp()
1899 * because of lock ordering with tasklist_lock.
1900 * This allows an intervening SIGCONT to be posted.
1901 * We need to check for that and bail out if necessary.
1902 */
1903 if (signr != SIGSTOP) {
1904 spin_unlock_irq(&current->sighand->siglock);
1905
1906 /* signals can be posted during this window */
1907
1908 if (is_orphaned_pgrp(process_group(current)))
1909 goto relock;
1910
1911 spin_lock_irq(&current->sighand->siglock);
1912 }
1913
1914 if (likely(do_signal_stop(signr))) {
1915 /* It released the siglock. */
1916 goto relock;
1917 }
1918
1919 /*
1920 * We didn't actually stop, due to a race
1921 * with SIGCONT or something like that.
1922 */
1923 continue;
1924 }
1925
1926 spin_unlock_irq(&current->sighand->siglock);
1927
1928 /*
1929 * Anything else is fatal, maybe with a core dump.
1930 */
1931 current->flags |= PF_SIGNALED;
1932 if (sig_kernel_coredump(signr)) {
1933 /*
1934 * If it was able to dump core, this kills all
1935 * other threads in the group and synchronizes with
1936 * their demise. If we lost the race with another
1937 * thread getting here, it set group_exit_code
1938 * first and our do_group_exit call below will use
1939 * that value and ignore the one we pass it.
1940 */
1941 do_coredump((long)signr, signr, regs);
1942 }
1943
1944 /*
1945 * Death signals, no core dump.
1946 */
1947 do_group_exit(signr);
1948 /* NOTREACHED */
1949 }
1950 spin_unlock_irq(&current->sighand->siglock);
1951 return signr;
1952}
1953
1da177e4
LT
1954EXPORT_SYMBOL(recalc_sigpending);
1955EXPORT_SYMBOL_GPL(dequeue_signal);
1956EXPORT_SYMBOL(flush_signals);
1957EXPORT_SYMBOL(force_sig);
1958EXPORT_SYMBOL(kill_pg);
1959EXPORT_SYMBOL(kill_proc);
1960EXPORT_SYMBOL(ptrace_notify);
1961EXPORT_SYMBOL(send_sig);
1962EXPORT_SYMBOL(send_sig_info);
1963EXPORT_SYMBOL(sigprocmask);
1964EXPORT_SYMBOL(block_all_signals);
1965EXPORT_SYMBOL(unblock_all_signals);
1966
1967
1968/*
1969 * System call entry points.
1970 */
1971
1972asmlinkage long sys_restart_syscall(void)
1973{
1974 struct restart_block *restart = &current_thread_info()->restart_block;
1975 return restart->fn(restart);
1976}
1977
1978long do_no_restart_syscall(struct restart_block *param)
1979{
1980 return -EINTR;
1981}
1982
1983/*
1984 * We don't need to get the kernel lock - this is all local to this
1985 * particular thread.. (and that's good, because this is _heavily_
1986 * used by various programs)
1987 */
1988
1989/*
1990 * This is also useful for kernel threads that want to temporarily
1991 * (or permanently) block certain signals.
1992 *
1993 * NOTE! Unlike the user-mode sys_sigprocmask(), the kernel
1994 * interface happily blocks "unblockable" signals like SIGKILL
1995 * and friends.
1996 */
1997int sigprocmask(int how, sigset_t *set, sigset_t *oldset)
1998{
1999 int error;
1da177e4
LT
2000
2001 spin_lock_irq(&current->sighand->siglock);
a26fd335
ON
2002 if (oldset)
2003 *oldset = current->blocked;
2004
1da177e4
LT
2005 error = 0;
2006 switch (how) {
2007 case SIG_BLOCK:
2008 sigorsets(&current->blocked, &current->blocked, set);
2009 break;
2010 case SIG_UNBLOCK:
2011 signandsets(&current->blocked, &current->blocked, set);
2012 break;
2013 case SIG_SETMASK:
2014 current->blocked = *set;
2015 break;
2016 default:
2017 error = -EINVAL;
2018 }
2019 recalc_sigpending();
2020 spin_unlock_irq(&current->sighand->siglock);
a26fd335 2021
1da177e4
LT
2022 return error;
2023}
2024
2025asmlinkage long
2026sys_rt_sigprocmask(int how, sigset_t __user *set, sigset_t __user *oset, size_t sigsetsize)
2027{
2028 int error = -EINVAL;
2029 sigset_t old_set, new_set;
2030
2031 /* XXX: Don't preclude handling different sized sigset_t's. */
2032 if (sigsetsize != sizeof(sigset_t))
2033 goto out;
2034
2035 if (set) {
2036 error = -EFAULT;
2037 if (copy_from_user(&new_set, set, sizeof(*set)))
2038 goto out;
2039 sigdelsetmask(&new_set, sigmask(SIGKILL)|sigmask(SIGSTOP));
2040
2041 error = sigprocmask(how, &new_set, &old_set);
2042 if (error)
2043 goto out;
2044 if (oset)
2045 goto set_old;
2046 } else if (oset) {
2047 spin_lock_irq(&current->sighand->siglock);
2048 old_set = current->blocked;
2049 spin_unlock_irq(&current->sighand->siglock);
2050
2051 set_old:
2052 error = -EFAULT;
2053 if (copy_to_user(oset, &old_set, sizeof(*oset)))
2054 goto out;
2055 }
2056 error = 0;
2057out:
2058 return error;
2059}
2060
2061long do_sigpending(void __user *set, unsigned long sigsetsize)
2062{
2063 long error = -EINVAL;
2064 sigset_t pending;
2065
2066 if (sigsetsize > sizeof(sigset_t))
2067 goto out;
2068
2069 spin_lock_irq(&current->sighand->siglock);
2070 sigorsets(&pending, &current->pending.signal,
2071 &current->signal->shared_pending.signal);
2072 spin_unlock_irq(&current->sighand->siglock);
2073
2074 /* Outside the lock because only this thread touches it. */
2075 sigandsets(&pending, &current->blocked, &pending);
2076
2077 error = -EFAULT;
2078 if (!copy_to_user(set, &pending, sigsetsize))
2079 error = 0;
2080
2081out:
2082 return error;
2083}
2084
2085asmlinkage long
2086sys_rt_sigpending(sigset_t __user *set, size_t sigsetsize)
2087{
2088 return do_sigpending(set, sigsetsize);
2089}
2090
2091#ifndef HAVE_ARCH_COPY_SIGINFO_TO_USER
2092
2093int copy_siginfo_to_user(siginfo_t __user *to, siginfo_t *from)
2094{
2095 int err;
2096
2097 if (!access_ok (VERIFY_WRITE, to, sizeof(siginfo_t)))
2098 return -EFAULT;
2099 if (from->si_code < 0)
2100 return __copy_to_user(to, from, sizeof(siginfo_t))
2101 ? -EFAULT : 0;
2102 /*
2103 * If you change siginfo_t structure, please be sure
2104 * this code is fixed accordingly.
2105 * It should never copy any pad contained in the structure
2106 * to avoid security leaks, but must copy the generic
2107 * 3 ints plus the relevant union member.
2108 */
2109 err = __put_user(from->si_signo, &to->si_signo);
2110 err |= __put_user(from->si_errno, &to->si_errno);
2111 err |= __put_user((short)from->si_code, &to->si_code);
2112 switch (from->si_code & __SI_MASK) {
2113 case __SI_KILL:
2114 err |= __put_user(from->si_pid, &to->si_pid);
2115 err |= __put_user(from->si_uid, &to->si_uid);
2116 break;
2117 case __SI_TIMER:
2118 err |= __put_user(from->si_tid, &to->si_tid);
2119 err |= __put_user(from->si_overrun, &to->si_overrun);
2120 err |= __put_user(from->si_ptr, &to->si_ptr);
2121 break;
2122 case __SI_POLL:
2123 err |= __put_user(from->si_band, &to->si_band);
2124 err |= __put_user(from->si_fd, &to->si_fd);
2125 break;
2126 case __SI_FAULT:
2127 err |= __put_user(from->si_addr, &to->si_addr);
2128#ifdef __ARCH_SI_TRAPNO
2129 err |= __put_user(from->si_trapno, &to->si_trapno);
2130#endif
2131 break;
2132 case __SI_CHLD:
2133 err |= __put_user(from->si_pid, &to->si_pid);
2134 err |= __put_user(from->si_uid, &to->si_uid);
2135 err |= __put_user(from->si_status, &to->si_status);
2136 err |= __put_user(from->si_utime, &to->si_utime);
2137 err |= __put_user(from->si_stime, &to->si_stime);
2138 break;
2139 case __SI_RT: /* This is not generated by the kernel as of now. */
2140 case __SI_MESGQ: /* But this is */
2141 err |= __put_user(from->si_pid, &to->si_pid);
2142 err |= __put_user(from->si_uid, &to->si_uid);
2143 err |= __put_user(from->si_ptr, &to->si_ptr);
2144 break;
2145 default: /* this is just in case for now ... */
2146 err |= __put_user(from->si_pid, &to->si_pid);
2147 err |= __put_user(from->si_uid, &to->si_uid);
2148 break;
2149 }
2150 return err;
2151}
2152
2153#endif
2154
2155asmlinkage long
2156sys_rt_sigtimedwait(const sigset_t __user *uthese,
2157 siginfo_t __user *uinfo,
2158 const struct timespec __user *uts,
2159 size_t sigsetsize)
2160{
2161 int ret, sig;
2162 sigset_t these;
2163 struct timespec ts;
2164 siginfo_t info;
2165 long timeout = 0;
2166
2167 /* XXX: Don't preclude handling different sized sigset_t's. */
2168 if (sigsetsize != sizeof(sigset_t))
2169 return -EINVAL;
2170
2171 if (copy_from_user(&these, uthese, sizeof(these)))
2172 return -EFAULT;
2173
2174 /*
2175 * Invert the set of allowed signals to get those we
2176 * want to block.
2177 */
2178 sigdelsetmask(&these, sigmask(SIGKILL)|sigmask(SIGSTOP));
2179 signotset(&these);
2180
2181 if (uts) {
2182 if (copy_from_user(&ts, uts, sizeof(ts)))
2183 return -EFAULT;
2184 if (ts.tv_nsec >= 1000000000L || ts.tv_nsec < 0
2185 || ts.tv_sec < 0)
2186 return -EINVAL;
2187 }
2188
2189 spin_lock_irq(&current->sighand->siglock);
2190 sig = dequeue_signal(current, &these, &info);
2191 if (!sig) {
2192 timeout = MAX_SCHEDULE_TIMEOUT;
2193 if (uts)
2194 timeout = (timespec_to_jiffies(&ts)
2195 + (ts.tv_sec || ts.tv_nsec));
2196
2197 if (timeout) {
2198 /* None ready -- temporarily unblock those we're
2199 * interested while we are sleeping in so that we'll
2200 * be awakened when they arrive. */
2201 current->real_blocked = current->blocked;
2202 sigandsets(&current->blocked, &current->blocked, &these);
2203 recalc_sigpending();
2204 spin_unlock_irq(&current->sighand->siglock);
2205
75bcc8c5 2206 timeout = schedule_timeout_interruptible(timeout);
1da177e4 2207
1da177e4
LT
2208 spin_lock_irq(&current->sighand->siglock);
2209 sig = dequeue_signal(current, &these, &info);
2210 current->blocked = current->real_blocked;
2211 siginitset(&current->real_blocked, 0);
2212 recalc_sigpending();
2213 }
2214 }
2215 spin_unlock_irq(&current->sighand->siglock);
2216
2217 if (sig) {
2218 ret = sig;
2219 if (uinfo) {
2220 if (copy_siginfo_to_user(uinfo, &info))
2221 ret = -EFAULT;
2222 }
2223 } else {
2224 ret = -EAGAIN;
2225 if (timeout)
2226 ret = -EINTR;
2227 }
2228
2229 return ret;
2230}
2231
2232asmlinkage long
2233sys_kill(int pid, int sig)
2234{
2235 struct siginfo info;
2236
2237 info.si_signo = sig;
2238 info.si_errno = 0;
2239 info.si_code = SI_USER;
2240 info.si_pid = current->tgid;
2241 info.si_uid = current->uid;
2242
2243 return kill_something_info(sig, &info, pid);
2244}
2245
6dd69f10 2246static int do_tkill(int tgid, int pid, int sig)
1da177e4 2247{
1da177e4 2248 int error;
6dd69f10 2249 struct siginfo info;
1da177e4
LT
2250 struct task_struct *p;
2251
6dd69f10 2252 error = -ESRCH;
1da177e4
LT
2253 info.si_signo = sig;
2254 info.si_errno = 0;
2255 info.si_code = SI_TKILL;
2256 info.si_pid = current->tgid;
2257 info.si_uid = current->uid;
2258
2259 read_lock(&tasklist_lock);
2260 p = find_task_by_pid(pid);
6dd69f10 2261 if (p && (tgid <= 0 || p->tgid == tgid)) {
1da177e4
LT
2262 error = check_kill_permission(sig, &info, p);
2263 /*
2264 * The null signal is a permissions and process existence
2265 * probe. No signal is actually delivered.
2266 */
2267 if (!error && sig && p->sighand) {
2268 spin_lock_irq(&p->sighand->siglock);
2269 handle_stop_signal(sig, p);
2270 error = specific_send_sig_info(sig, &info, p);
2271 spin_unlock_irq(&p->sighand->siglock);
2272 }
2273 }
2274 read_unlock(&tasklist_lock);
6dd69f10 2275
1da177e4
LT
2276 return error;
2277}
2278
6dd69f10
VL
2279/**
2280 * sys_tgkill - send signal to one specific thread
2281 * @tgid: the thread group ID of the thread
2282 * @pid: the PID of the thread
2283 * @sig: signal to be sent
2284 *
2285 * This syscall also checks the tgid and returns -ESRCH even if the PID
2286 * exists but it's not belonging to the target process anymore. This
2287 * method solves the problem of threads exiting and PIDs getting reused.
2288 */
2289asmlinkage long sys_tgkill(int tgid, int pid, int sig)
2290{
2291 /* This is only valid for single tasks */
2292 if (pid <= 0 || tgid <= 0)
2293 return -EINVAL;
2294
2295 return do_tkill(tgid, pid, sig);
2296}
2297
1da177e4
LT
2298/*
2299 * Send a signal to only one task, even if it's a CLONE_THREAD task.
2300 */
2301asmlinkage long
2302sys_tkill(int pid, int sig)
2303{
1da177e4
LT
2304 /* This is only valid for single tasks */
2305 if (pid <= 0)
2306 return -EINVAL;
2307
6dd69f10 2308 return do_tkill(0, pid, sig);
1da177e4
LT
2309}
2310
2311asmlinkage long
2312sys_rt_sigqueueinfo(int pid, int sig, siginfo_t __user *uinfo)
2313{
2314 siginfo_t info;
2315
2316 if (copy_from_user(&info, uinfo, sizeof(siginfo_t)))
2317 return -EFAULT;
2318
2319 /* Not even root can pretend to send signals from the kernel.
2320 Nor can they impersonate a kill(), which adds source info. */
2321 if (info.si_code >= 0)
2322 return -EPERM;
2323 info.si_signo = sig;
2324
2325 /* POSIX.1b doesn't mention process groups. */
2326 return kill_proc_info(sig, &info, pid);
2327}
2328
88531f72 2329int do_sigaction(int sig, struct k_sigaction *act, struct k_sigaction *oact)
1da177e4
LT
2330{
2331 struct k_sigaction *k;
71fabd5e 2332 sigset_t mask;
1da177e4 2333
7ed20e1a 2334 if (!valid_signal(sig) || sig < 1 || (act && sig_kernel_only(sig)))
1da177e4
LT
2335 return -EINVAL;
2336
2337 k = &current->sighand->action[sig-1];
2338
2339 spin_lock_irq(&current->sighand->siglock);
2340 if (signal_pending(current)) {
2341 /*
2342 * If there might be a fatal signal pending on multiple
2343 * threads, make sure we take it before changing the action.
2344 */
2345 spin_unlock_irq(&current->sighand->siglock);
2346 return -ERESTARTNOINTR;
2347 }
2348
2349 if (oact)
2350 *oact = *k;
2351
2352 if (act) {
9ac95f2f
ON
2353 sigdelsetmask(&act->sa.sa_mask,
2354 sigmask(SIGKILL) | sigmask(SIGSTOP));
88531f72 2355 *k = *act;
1da177e4
LT
2356 /*
2357 * POSIX 3.3.1.3:
2358 * "Setting a signal action to SIG_IGN for a signal that is
2359 * pending shall cause the pending signal to be discarded,
2360 * whether or not it is blocked."
2361 *
2362 * "Setting a signal action to SIG_DFL for a signal that is
2363 * pending and whose default action is to ignore the signal
2364 * (for example, SIGCHLD), shall cause the pending signal to
2365 * be discarded, whether or not it is blocked"
2366 */
2367 if (act->sa.sa_handler == SIG_IGN ||
88531f72 2368 (act->sa.sa_handler == SIG_DFL && sig_kernel_ignore(sig))) {
1da177e4 2369 struct task_struct *t = current;
71fabd5e
GA
2370 sigemptyset(&mask);
2371 sigaddset(&mask, sig);
2372 rm_from_queue_full(&mask, &t->signal->shared_pending);
1da177e4 2373 do {
71fabd5e 2374 rm_from_queue_full(&mask, &t->pending);
1da177e4
LT
2375 recalc_sigpending_tsk(t);
2376 t = next_thread(t);
2377 } while (t != current);
1da177e4 2378 }
1da177e4
LT
2379 }
2380
2381 spin_unlock_irq(&current->sighand->siglock);
2382 return 0;
2383}
2384
2385int
2386do_sigaltstack (const stack_t __user *uss, stack_t __user *uoss, unsigned long sp)
2387{
2388 stack_t oss;
2389 int error;
2390
2391 if (uoss) {
2392 oss.ss_sp = (void __user *) current->sas_ss_sp;
2393 oss.ss_size = current->sas_ss_size;
2394 oss.ss_flags = sas_ss_flags(sp);
2395 }
2396
2397 if (uss) {
2398 void __user *ss_sp;
2399 size_t ss_size;
2400 int ss_flags;
2401
2402 error = -EFAULT;
2403 if (!access_ok(VERIFY_READ, uss, sizeof(*uss))
2404 || __get_user(ss_sp, &uss->ss_sp)
2405 || __get_user(ss_flags, &uss->ss_flags)
2406 || __get_user(ss_size, &uss->ss_size))
2407 goto out;
2408
2409 error = -EPERM;
2410 if (on_sig_stack(sp))
2411 goto out;
2412
2413 error = -EINVAL;
2414 /*
2415 *
2416 * Note - this code used to test ss_flags incorrectly
2417 * old code may have been written using ss_flags==0
2418 * to mean ss_flags==SS_ONSTACK (as this was the only
2419 * way that worked) - this fix preserves that older
2420 * mechanism
2421 */
2422 if (ss_flags != SS_DISABLE && ss_flags != SS_ONSTACK && ss_flags != 0)
2423 goto out;
2424
2425 if (ss_flags == SS_DISABLE) {
2426 ss_size = 0;
2427 ss_sp = NULL;
2428 } else {
2429 error = -ENOMEM;
2430 if (ss_size < MINSIGSTKSZ)
2431 goto out;
2432 }
2433
2434 current->sas_ss_sp = (unsigned long) ss_sp;
2435 current->sas_ss_size = ss_size;
2436 }
2437
2438 if (uoss) {
2439 error = -EFAULT;
2440 if (copy_to_user(uoss, &oss, sizeof(oss)))
2441 goto out;
2442 }
2443
2444 error = 0;
2445out:
2446 return error;
2447}
2448
2449#ifdef __ARCH_WANT_SYS_SIGPENDING
2450
2451asmlinkage long
2452sys_sigpending(old_sigset_t __user *set)
2453{
2454 return do_sigpending(set, sizeof(*set));
2455}
2456
2457#endif
2458
2459#ifdef __ARCH_WANT_SYS_SIGPROCMASK
2460/* Some platforms have their own version with special arguments others
2461 support only sys_rt_sigprocmask. */
2462
2463asmlinkage long
2464sys_sigprocmask(int how, old_sigset_t __user *set, old_sigset_t __user *oset)
2465{
2466 int error;
2467 old_sigset_t old_set, new_set;
2468
2469 if (set) {
2470 error = -EFAULT;
2471 if (copy_from_user(&new_set, set, sizeof(*set)))
2472 goto out;
2473 new_set &= ~(sigmask(SIGKILL) | sigmask(SIGSTOP));
2474
2475 spin_lock_irq(&current->sighand->siglock);
2476 old_set = current->blocked.sig[0];
2477
2478 error = 0;
2479 switch (how) {
2480 default:
2481 error = -EINVAL;
2482 break;
2483 case SIG_BLOCK:
2484 sigaddsetmask(&current->blocked, new_set);
2485 break;
2486 case SIG_UNBLOCK:
2487 sigdelsetmask(&current->blocked, new_set);
2488 break;
2489 case SIG_SETMASK:
2490 current->blocked.sig[0] = new_set;
2491 break;
2492 }
2493
2494 recalc_sigpending();
2495 spin_unlock_irq(&current->sighand->siglock);
2496 if (error)
2497 goto out;
2498 if (oset)
2499 goto set_old;
2500 } else if (oset) {
2501 old_set = current->blocked.sig[0];
2502 set_old:
2503 error = -EFAULT;
2504 if (copy_to_user(oset, &old_set, sizeof(*oset)))
2505 goto out;
2506 }
2507 error = 0;
2508out:
2509 return error;
2510}
2511#endif /* __ARCH_WANT_SYS_SIGPROCMASK */
2512
2513#ifdef __ARCH_WANT_SYS_RT_SIGACTION
2514asmlinkage long
2515sys_rt_sigaction(int sig,
2516 const struct sigaction __user *act,
2517 struct sigaction __user *oact,
2518 size_t sigsetsize)
2519{
2520 struct k_sigaction new_sa, old_sa;
2521 int ret = -EINVAL;
2522
2523 /* XXX: Don't preclude handling different sized sigset_t's. */
2524 if (sigsetsize != sizeof(sigset_t))
2525 goto out;
2526
2527 if (act) {
2528 if (copy_from_user(&new_sa.sa, act, sizeof(new_sa.sa)))
2529 return -EFAULT;
2530 }
2531
2532 ret = do_sigaction(sig, act ? &new_sa : NULL, oact ? &old_sa : NULL);
2533
2534 if (!ret && oact) {
2535 if (copy_to_user(oact, &old_sa.sa, sizeof(old_sa.sa)))
2536 return -EFAULT;
2537 }
2538out:
2539 return ret;
2540}
2541#endif /* __ARCH_WANT_SYS_RT_SIGACTION */
2542
2543#ifdef __ARCH_WANT_SYS_SGETMASK
2544
2545/*
2546 * For backwards compatibility. Functionality superseded by sigprocmask.
2547 */
2548asmlinkage long
2549sys_sgetmask(void)
2550{
2551 /* SMP safe */
2552 return current->blocked.sig[0];
2553}
2554
2555asmlinkage long
2556sys_ssetmask(int newmask)
2557{
2558 int old;
2559
2560 spin_lock_irq(&current->sighand->siglock);
2561 old = current->blocked.sig[0];
2562
2563 siginitset(&current->blocked, newmask & ~(sigmask(SIGKILL)|
2564 sigmask(SIGSTOP)));
2565 recalc_sigpending();
2566 spin_unlock_irq(&current->sighand->siglock);
2567
2568 return old;
2569}
2570#endif /* __ARCH_WANT_SGETMASK */
2571
2572#ifdef __ARCH_WANT_SYS_SIGNAL
2573/*
2574 * For backwards compatibility. Functionality superseded by sigaction.
2575 */
2576asmlinkage unsigned long
2577sys_signal(int sig, __sighandler_t handler)
2578{
2579 struct k_sigaction new_sa, old_sa;
2580 int ret;
2581
2582 new_sa.sa.sa_handler = handler;
2583 new_sa.sa.sa_flags = SA_ONESHOT | SA_NOMASK;
c70d3d70 2584 sigemptyset(&new_sa.sa.sa_mask);
1da177e4
LT
2585
2586 ret = do_sigaction(sig, &new_sa, &old_sa);
2587
2588 return ret ? ret : (unsigned long)old_sa.sa.sa_handler;
2589}
2590#endif /* __ARCH_WANT_SYS_SIGNAL */
2591
2592#ifdef __ARCH_WANT_SYS_PAUSE
2593
2594asmlinkage long
2595sys_pause(void)
2596{
2597 current->state = TASK_INTERRUPTIBLE;
2598 schedule();
2599 return -ERESTARTNOHAND;
2600}
2601
2602#endif
2603
150256d8
DW
2604#ifdef __ARCH_WANT_SYS_RT_SIGSUSPEND
2605asmlinkage long sys_rt_sigsuspend(sigset_t __user *unewset, size_t sigsetsize)
2606{
2607 sigset_t newset;
2608
2609 /* XXX: Don't preclude handling different sized sigset_t's. */
2610 if (sigsetsize != sizeof(sigset_t))
2611 return -EINVAL;
2612
2613 if (copy_from_user(&newset, unewset, sizeof(newset)))
2614 return -EFAULT;
2615 sigdelsetmask(&newset, sigmask(SIGKILL)|sigmask(SIGSTOP));
2616
2617 spin_lock_irq(&current->sighand->siglock);
2618 current->saved_sigmask = current->blocked;
2619 current->blocked = newset;
2620 recalc_sigpending();
2621 spin_unlock_irq(&current->sighand->siglock);
2622
2623 current->state = TASK_INTERRUPTIBLE;
2624 schedule();
2625 set_thread_flag(TIF_RESTORE_SIGMASK);
2626 return -ERESTARTNOHAND;
2627}
2628#endif /* __ARCH_WANT_SYS_RT_SIGSUSPEND */
2629
f269fdd1
DH
2630__attribute__((weak)) const char *arch_vma_name(struct vm_area_struct *vma)
2631{
2632 return NULL;
2633}
2634
1da177e4
LT
2635void __init signals_init(void)
2636{
2637 sigqueue_cachep =
2638 kmem_cache_create("sigqueue",
2639 sizeof(struct sigqueue),
2640 __alignof__(struct sigqueue),
2641 SLAB_PANIC, NULL, NULL);
2642}