job control: Job control stop notifications should always go to the real parent
[GitHub/mt8127/android_kernel_alcatel_ttab.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>
1da177e4
LT
15#include <linux/init.h>
16#include <linux/sched.h>
17#include <linux/fs.h>
18#include <linux/tty.h>
19#include <linux/binfmts.h>
20#include <linux/security.h>
21#include <linux/syscalls.h>
22#include <linux/ptrace.h>
7ed20e1a 23#include <linux/signal.h>
fba2afaa 24#include <linux/signalfd.h>
f84d49b2 25#include <linux/ratelimit.h>
35de254d 26#include <linux/tracehook.h>
c59ede7b 27#include <linux/capability.h>
7dfb7103 28#include <linux/freezer.h>
84d73786
SB
29#include <linux/pid_namespace.h>
30#include <linux/nsproxy.h>
d1eb650f
MH
31#define CREATE_TRACE_POINTS
32#include <trace/events/signal.h>
84d73786 33
1da177e4
LT
34#include <asm/param.h>
35#include <asm/uaccess.h>
36#include <asm/unistd.h>
37#include <asm/siginfo.h>
e1396065 38#include "audit.h" /* audit_signal_info() */
1da177e4
LT
39
40/*
41 * SLAB caches for signal bits.
42 */
43
e18b890b 44static struct kmem_cache *sigqueue_cachep;
1da177e4 45
f84d49b2
NO
46int print_fatal_signals __read_mostly;
47
35de254d 48static void __user *sig_handler(struct task_struct *t, int sig)
93585eea 49{
35de254d
RM
50 return t->sighand->action[sig - 1].sa.sa_handler;
51}
93585eea 52
35de254d
RM
53static int sig_handler_ignored(void __user *handler, int sig)
54{
93585eea 55 /* Is it explicitly or implicitly ignored? */
93585eea
PE
56 return handler == SIG_IGN ||
57 (handler == SIG_DFL && sig_kernel_ignore(sig));
58}
1da177e4 59
921cf9f6
SB
60static int sig_task_ignored(struct task_struct *t, int sig,
61 int from_ancestor_ns)
1da177e4 62{
35de254d 63 void __user *handler;
1da177e4 64
f008faff
ON
65 handler = sig_handler(t, sig);
66
67 if (unlikely(t->signal->flags & SIGNAL_UNKILLABLE) &&
921cf9f6 68 handler == SIG_DFL && !from_ancestor_ns)
f008faff
ON
69 return 1;
70
71 return sig_handler_ignored(handler, sig);
72}
73
921cf9f6 74static int sig_ignored(struct task_struct *t, int sig, int from_ancestor_ns)
f008faff 75{
1da177e4
LT
76 /*
77 * Blocked signals are never ignored, since the
78 * signal handler may change by the time it is
79 * unblocked.
80 */
325d22df 81 if (sigismember(&t->blocked, sig) || sigismember(&t->real_blocked, sig))
1da177e4
LT
82 return 0;
83
921cf9f6 84 if (!sig_task_ignored(t, sig, from_ancestor_ns))
35de254d
RM
85 return 0;
86
87 /*
88 * Tracers may want to know about even ignored signals.
89 */
43918f2b 90 return !tracehook_consider_ignored_signal(t, sig);
1da177e4
LT
91}
92
93/*
94 * Re-calculate pending state from the set of locally pending
95 * signals, globally pending signals, and blocked signals.
96 */
97static inline int has_pending_signals(sigset_t *signal, sigset_t *blocked)
98{
99 unsigned long ready;
100 long i;
101
102 switch (_NSIG_WORDS) {
103 default:
104 for (i = _NSIG_WORDS, ready = 0; --i >= 0 ;)
105 ready |= signal->sig[i] &~ blocked->sig[i];
106 break;
107
108 case 4: ready = signal->sig[3] &~ blocked->sig[3];
109 ready |= signal->sig[2] &~ blocked->sig[2];
110 ready |= signal->sig[1] &~ blocked->sig[1];
111 ready |= signal->sig[0] &~ blocked->sig[0];
112 break;
113
114 case 2: ready = signal->sig[1] &~ blocked->sig[1];
115 ready |= signal->sig[0] &~ blocked->sig[0];
116 break;
117
118 case 1: ready = signal->sig[0] &~ blocked->sig[0];
119 }
120 return ready != 0;
121}
122
123#define PENDING(p,b) has_pending_signals(&(p)->signal, (b))
124
7bb44ade 125static int recalc_sigpending_tsk(struct task_struct *t)
1da177e4 126{
39efa3ef 127 if ((t->group_stop & GROUP_STOP_PENDING) ||
1da177e4 128 PENDING(&t->pending, &t->blocked) ||
7bb44ade 129 PENDING(&t->signal->shared_pending, &t->blocked)) {
1da177e4 130 set_tsk_thread_flag(t, TIF_SIGPENDING);
7bb44ade
RM
131 return 1;
132 }
b74d0deb
RM
133 /*
134 * We must never clear the flag in another thread, or in current
135 * when it's possible the current syscall is returning -ERESTART*.
136 * So we don't clear it here, and only callers who know they should do.
137 */
7bb44ade
RM
138 return 0;
139}
140
141/*
142 * After recalculating TIF_SIGPENDING, we need to make sure the task wakes up.
143 * This is superfluous when called on current, the wakeup is a harmless no-op.
144 */
145void recalc_sigpending_and_wake(struct task_struct *t)
146{
147 if (recalc_sigpending_tsk(t))
148 signal_wake_up(t, 0);
1da177e4
LT
149}
150
151void recalc_sigpending(void)
152{
b787f7ba
RM
153 if (unlikely(tracehook_force_sigpending()))
154 set_thread_flag(TIF_SIGPENDING);
155 else if (!recalc_sigpending_tsk(current) && !freezing(current))
b74d0deb
RM
156 clear_thread_flag(TIF_SIGPENDING);
157
1da177e4
LT
158}
159
160/* Given the mask, find the first available signal that should be serviced. */
161
a27341cd
LT
162#define SYNCHRONOUS_MASK \
163 (sigmask(SIGSEGV) | sigmask(SIGBUS) | sigmask(SIGILL) | \
164 sigmask(SIGTRAP) | sigmask(SIGFPE))
165
fba2afaa 166int next_signal(struct sigpending *pending, sigset_t *mask)
1da177e4
LT
167{
168 unsigned long i, *s, *m, x;
169 int sig = 0;
f84d49b2 170
1da177e4
LT
171 s = pending->signal.sig;
172 m = mask->sig;
a27341cd
LT
173
174 /*
175 * Handle the first word specially: it contains the
176 * synchronous signals that need to be dequeued first.
177 */
178 x = *s &~ *m;
179 if (x) {
180 if (x & SYNCHRONOUS_MASK)
181 x &= SYNCHRONOUS_MASK;
182 sig = ffz(~x) + 1;
183 return sig;
184 }
185
1da177e4
LT
186 switch (_NSIG_WORDS) {
187 default:
a27341cd
LT
188 for (i = 1; i < _NSIG_WORDS; ++i) {
189 x = *++s &~ *++m;
190 if (!x)
191 continue;
192 sig = ffz(~x) + i*_NSIG_BPW + 1;
193 break;
194 }
1da177e4
LT
195 break;
196
a27341cd
LT
197 case 2:
198 x = s[1] &~ m[1];
199 if (!x)
1da177e4 200 break;
a27341cd 201 sig = ffz(~x) + _NSIG_BPW + 1;
1da177e4
LT
202 break;
203
a27341cd
LT
204 case 1:
205 /* Nothing to do */
1da177e4
LT
206 break;
207 }
f84d49b2 208
1da177e4
LT
209 return sig;
210}
211
f84d49b2
NO
212static inline void print_dropped_signal(int sig)
213{
214 static DEFINE_RATELIMIT_STATE(ratelimit_state, 5 * HZ, 10);
215
216 if (!print_fatal_signals)
217 return;
218
219 if (!__ratelimit(&ratelimit_state))
220 return;
221
222 printk(KERN_INFO "%s/%d: reached RLIMIT_SIGPENDING, dropped signal %d\n",
223 current->comm, current->pid, sig);
224}
225
d79fdd6d
TH
226/**
227 * task_clear_group_stop_trapping - clear group stop trapping bit
228 * @task: target task
229 *
230 * If GROUP_STOP_TRAPPING is set, a ptracer is waiting for us. Clear it
231 * and wake up the ptracer. Note that we don't need any further locking.
232 * @task->siglock guarantees that @task->parent points to the ptracer.
233 *
234 * CONTEXT:
235 * Must be called with @task->sighand->siglock held.
236 */
237static void task_clear_group_stop_trapping(struct task_struct *task)
238{
239 if (unlikely(task->group_stop & GROUP_STOP_TRAPPING)) {
240 task->group_stop &= ~GROUP_STOP_TRAPPING;
241 __wake_up_sync(&task->parent->signal->wait_chldexit,
242 TASK_UNINTERRUPTIBLE, 1);
243 }
244}
245
e5c1902e
TH
246/**
247 * task_clear_group_stop_pending - clear pending group stop
248 * @task: target task
249 *
250 * Clear group stop states for @task.
251 *
252 * CONTEXT:
253 * Must be called with @task->sighand->siglock held.
254 */
39efa3ef 255void task_clear_group_stop_pending(struct task_struct *task)
e5c1902e 256{
39efa3ef 257 task->group_stop &= ~(GROUP_STOP_PENDING | GROUP_STOP_CONSUME);
e5c1902e
TH
258}
259
260/**
261 * task_participate_group_stop - participate in a group stop
262 * @task: task participating in a group stop
263 *
39efa3ef
TH
264 * @task has GROUP_STOP_PENDING set and is participating in a group stop.
265 * Group stop states are cleared and the group stop count is consumed if
266 * %GROUP_STOP_CONSUME was set. If the consumption completes the group
267 * stop, the appropriate %SIGNAL_* flags are set.
e5c1902e
TH
268 *
269 * CONTEXT:
270 * Must be called with @task->sighand->siglock held.
271 */
272static bool task_participate_group_stop(struct task_struct *task)
273{
274 struct signal_struct *sig = task->signal;
275 bool consume = task->group_stop & GROUP_STOP_CONSUME;
276
39efa3ef
TH
277 WARN_ON_ONCE(!(task->group_stop & GROUP_STOP_PENDING));
278
e5c1902e
TH
279 task_clear_group_stop_pending(task);
280
281 if (!consume)
282 return false;
283
284 if (!WARN_ON_ONCE(sig->group_stop_count == 0))
285 sig->group_stop_count--;
286
287 if (!sig->group_stop_count) {
288 sig->flags = SIGNAL_STOP_STOPPED;
289 return true;
290 }
291 return false;
292}
293
c69e8d9c
DH
294/*
295 * allocate a new signal queue record
296 * - this may be called without locks if and only if t == current, otherwise an
d84f4f99 297 * appopriate lock must be held to stop the target task from exiting
c69e8d9c 298 */
f84d49b2
NO
299static struct sigqueue *
300__sigqueue_alloc(int sig, struct task_struct *t, gfp_t flags, int override_rlimit)
1da177e4
LT
301{
302 struct sigqueue *q = NULL;
10b1fbdb 303 struct user_struct *user;
1da177e4 304
10b1fbdb 305 /*
7cf7db8d
TG
306 * Protect access to @t credentials. This can go away when all
307 * callers hold rcu read lock.
10b1fbdb 308 */
7cf7db8d 309 rcu_read_lock();
d84f4f99 310 user = get_uid(__task_cred(t)->user);
10b1fbdb 311 atomic_inc(&user->sigpending);
7cf7db8d 312 rcu_read_unlock();
f84d49b2 313
1da177e4 314 if (override_rlimit ||
10b1fbdb 315 atomic_read(&user->sigpending) <=
78d7d407 316 task_rlimit(t, RLIMIT_SIGPENDING)) {
1da177e4 317 q = kmem_cache_alloc(sigqueue_cachep, flags);
f84d49b2
NO
318 } else {
319 print_dropped_signal(sig);
320 }
321
1da177e4 322 if (unlikely(q == NULL)) {
10b1fbdb 323 atomic_dec(&user->sigpending);
d84f4f99 324 free_uid(user);
1da177e4
LT
325 } else {
326 INIT_LIST_HEAD(&q->list);
327 q->flags = 0;
d84f4f99 328 q->user = user;
1da177e4 329 }
d84f4f99
DH
330
331 return q;
1da177e4
LT
332}
333
514a01b8 334static void __sigqueue_free(struct sigqueue *q)
1da177e4
LT
335{
336 if (q->flags & SIGQUEUE_PREALLOC)
337 return;
338 atomic_dec(&q->user->sigpending);
339 free_uid(q->user);
340 kmem_cache_free(sigqueue_cachep, q);
341}
342
6a14c5c9 343void flush_sigqueue(struct sigpending *queue)
1da177e4
LT
344{
345 struct sigqueue *q;
346
347 sigemptyset(&queue->signal);
348 while (!list_empty(&queue->list)) {
349 q = list_entry(queue->list.next, struct sigqueue , list);
350 list_del_init(&q->list);
351 __sigqueue_free(q);
352 }
353}
354
355/*
356 * Flush all pending signals for a task.
357 */
3bcac026
DH
358void __flush_signals(struct task_struct *t)
359{
360 clear_tsk_thread_flag(t, TIF_SIGPENDING);
361 flush_sigqueue(&t->pending);
362 flush_sigqueue(&t->signal->shared_pending);
363}
364
c81addc9 365void flush_signals(struct task_struct *t)
1da177e4
LT
366{
367 unsigned long flags;
368
369 spin_lock_irqsave(&t->sighand->siglock, flags);
3bcac026 370 __flush_signals(t);
1da177e4
LT
371 spin_unlock_irqrestore(&t->sighand->siglock, flags);
372}
373
cbaffba1
ON
374static void __flush_itimer_signals(struct sigpending *pending)
375{
376 sigset_t signal, retain;
377 struct sigqueue *q, *n;
378
379 signal = pending->signal;
380 sigemptyset(&retain);
381
382 list_for_each_entry_safe(q, n, &pending->list, list) {
383 int sig = q->info.si_signo;
384
385 if (likely(q->info.si_code != SI_TIMER)) {
386 sigaddset(&retain, sig);
387 } else {
388 sigdelset(&signal, sig);
389 list_del_init(&q->list);
390 __sigqueue_free(q);
391 }
392 }
393
394 sigorsets(&pending->signal, &signal, &retain);
395}
396
397void flush_itimer_signals(void)
398{
399 struct task_struct *tsk = current;
400 unsigned long flags;
401
402 spin_lock_irqsave(&tsk->sighand->siglock, flags);
403 __flush_itimer_signals(&tsk->pending);
404 __flush_itimer_signals(&tsk->signal->shared_pending);
405 spin_unlock_irqrestore(&tsk->sighand->siglock, flags);
406}
407
10ab825b
ON
408void ignore_signals(struct task_struct *t)
409{
410 int i;
411
412 for (i = 0; i < _NSIG; ++i)
413 t->sighand->action[i].sa.sa_handler = SIG_IGN;
414
415 flush_signals(t);
416}
417
1da177e4
LT
418/*
419 * Flush all handlers for a task.
420 */
421
422void
423flush_signal_handlers(struct task_struct *t, int force_default)
424{
425 int i;
426 struct k_sigaction *ka = &t->sighand->action[0];
427 for (i = _NSIG ; i != 0 ; i--) {
428 if (force_default || ka->sa.sa_handler != SIG_IGN)
429 ka->sa.sa_handler = SIG_DFL;
430 ka->sa.sa_flags = 0;
431 sigemptyset(&ka->sa.sa_mask);
432 ka++;
433 }
434}
435
abd4f750
MAS
436int unhandled_signal(struct task_struct *tsk, int sig)
437{
445a91d2 438 void __user *handler = tsk->sighand->action[sig-1].sa.sa_handler;
b460cbc5 439 if (is_global_init(tsk))
abd4f750 440 return 1;
445a91d2 441 if (handler != SIG_IGN && handler != SIG_DFL)
abd4f750 442 return 0;
43918f2b 443 return !tracehook_consider_fatal_signal(tsk, sig);
abd4f750
MAS
444}
445
1da177e4
LT
446
447/* Notify the system that a driver wants to block all signals for this
448 * process, and wants to be notified if any signals at all were to be
449 * sent/acted upon. If the notifier routine returns non-zero, then the
450 * signal will be acted upon after all. If the notifier routine returns 0,
451 * then then signal will be blocked. Only one block per process is
452 * allowed. priv is a pointer to private data that the notifier routine
453 * can use to determine if the signal should be blocked or not. */
454
455void
456block_all_signals(int (*notifier)(void *priv), void *priv, sigset_t *mask)
457{
458 unsigned long flags;
459
460 spin_lock_irqsave(&current->sighand->siglock, flags);
461 current->notifier_mask = mask;
462 current->notifier_data = priv;
463 current->notifier = notifier;
464 spin_unlock_irqrestore(&current->sighand->siglock, flags);
465}
466
467/* Notify the system that blocking has ended. */
468
469void
470unblock_all_signals(void)
471{
472 unsigned long flags;
473
474 spin_lock_irqsave(&current->sighand->siglock, flags);
475 current->notifier = NULL;
476 current->notifier_data = NULL;
477 recalc_sigpending();
478 spin_unlock_irqrestore(&current->sighand->siglock, flags);
479}
480
100360f0 481static void collect_signal(int sig, struct sigpending *list, siginfo_t *info)
1da177e4
LT
482{
483 struct sigqueue *q, *first = NULL;
1da177e4 484
1da177e4
LT
485 /*
486 * Collect the siginfo appropriate to this signal. Check if
487 * there is another siginfo for the same signal.
488 */
489 list_for_each_entry(q, &list->list, list) {
490 if (q->info.si_signo == sig) {
d4434207
ON
491 if (first)
492 goto still_pending;
1da177e4
LT
493 first = q;
494 }
495 }
d4434207
ON
496
497 sigdelset(&list->signal, sig);
498
1da177e4 499 if (first) {
d4434207 500still_pending:
1da177e4
LT
501 list_del_init(&first->list);
502 copy_siginfo(info, &first->info);
503 __sigqueue_free(first);
1da177e4 504 } else {
1da177e4
LT
505 /* Ok, it wasn't in the queue. This must be
506 a fast-pathed signal or we must have been
507 out of queue space. So zero out the info.
508 */
1da177e4
LT
509 info->si_signo = sig;
510 info->si_errno = 0;
7486e5d9 511 info->si_code = SI_USER;
1da177e4
LT
512 info->si_pid = 0;
513 info->si_uid = 0;
514 }
1da177e4
LT
515}
516
517static int __dequeue_signal(struct sigpending *pending, sigset_t *mask,
518 siginfo_t *info)
519{
27d91e07 520 int sig = next_signal(pending, mask);
1da177e4 521
1da177e4
LT
522 if (sig) {
523 if (current->notifier) {
524 if (sigismember(current->notifier_mask, sig)) {
525 if (!(current->notifier)(current->notifier_data)) {
526 clear_thread_flag(TIF_SIGPENDING);
527 return 0;
528 }
529 }
530 }
531
100360f0 532 collect_signal(sig, pending, info);
1da177e4 533 }
1da177e4
LT
534
535 return sig;
536}
537
538/*
539 * Dequeue a signal and return the element to the caller, which is
540 * expected to free it.
541 *
542 * All callers have to hold the siglock.
543 */
544int dequeue_signal(struct task_struct *tsk, sigset_t *mask, siginfo_t *info)
545{
c5363d03 546 int signr;
caec4e8d
BH
547
548 /* We only dequeue private signals from ourselves, we don't let
549 * signalfd steal them
550 */
b8fceee1 551 signr = __dequeue_signal(&tsk->pending, mask, info);
8bfd9a7a 552 if (!signr) {
1da177e4
LT
553 signr = __dequeue_signal(&tsk->signal->shared_pending,
554 mask, info);
8bfd9a7a
TG
555 /*
556 * itimer signal ?
557 *
558 * itimers are process shared and we restart periodic
559 * itimers in the signal delivery path to prevent DoS
560 * attacks in the high resolution timer case. This is
561 * compliant with the old way of self restarting
562 * itimers, as the SIGALRM is a legacy signal and only
563 * queued once. Changing the restart behaviour to
564 * restart the timer in the signal dequeue path is
565 * reducing the timer noise on heavy loaded !highres
566 * systems too.
567 */
568 if (unlikely(signr == SIGALRM)) {
569 struct hrtimer *tmr = &tsk->signal->real_timer;
570
571 if (!hrtimer_is_queued(tmr) &&
572 tsk->signal->it_real_incr.tv64 != 0) {
573 hrtimer_forward(tmr, tmr->base->get_time(),
574 tsk->signal->it_real_incr);
575 hrtimer_restart(tmr);
576 }
577 }
578 }
c5363d03 579
b8fceee1 580 recalc_sigpending();
c5363d03
PE
581 if (!signr)
582 return 0;
583
584 if (unlikely(sig_kernel_stop(signr))) {
8bfd9a7a
TG
585 /*
586 * Set a marker that we have dequeued a stop signal. Our
587 * caller might release the siglock and then the pending
588 * stop signal it is about to process is no longer in the
589 * pending bitmasks, but must still be cleared by a SIGCONT
590 * (and overruled by a SIGKILL). So those cases clear this
591 * shared flag after we've set it. Note that this flag may
592 * remain set after the signal we return is ignored or
593 * handled. That doesn't matter because its only purpose
594 * is to alert stop-signal processing code when another
595 * processor has come along and cleared the flag.
596 */
92413d77 597 tsk->signal->flags |= SIGNAL_STOP_DEQUEUED;
8bfd9a7a 598 }
c5363d03 599 if ((info->si_code & __SI_MASK) == __SI_TIMER && info->si_sys_private) {
1da177e4
LT
600 /*
601 * Release the siglock to ensure proper locking order
602 * of timer locks outside of siglocks. Note, we leave
603 * irqs disabled here, since the posix-timers code is
604 * about to disable them again anyway.
605 */
606 spin_unlock(&tsk->sighand->siglock);
607 do_schedule_next_timer(info);
608 spin_lock(&tsk->sighand->siglock);
609 }
610 return signr;
611}
612
613/*
614 * Tell a process that it has a new active signal..
615 *
616 * NOTE! we rely on the previous spin_lock to
617 * lock interrupts for us! We can only be called with
618 * "siglock" held, and the local interrupt must
619 * have been disabled when that got acquired!
620 *
621 * No need to set need_resched since signal event passing
622 * goes through ->blocked
623 */
624void signal_wake_up(struct task_struct *t, int resume)
625{
626 unsigned int mask;
627
628 set_tsk_thread_flag(t, TIF_SIGPENDING);
629
630 /*
f021a3c2
MW
631 * For SIGKILL, we want to wake it up in the stopped/traced/killable
632 * case. We don't check t->state here because there is a race with it
1da177e4
LT
633 * executing another processor and just now entering stopped state.
634 * By using wake_up_state, we ensure the process will wake up and
635 * handle its death signal.
636 */
637 mask = TASK_INTERRUPTIBLE;
638 if (resume)
f021a3c2 639 mask |= TASK_WAKEKILL;
1da177e4
LT
640 if (!wake_up_state(t, mask))
641 kick_process(t);
642}
643
71fabd5e
GA
644/*
645 * Remove signals in mask from the pending set and queue.
646 * Returns 1 if any signals were found.
647 *
648 * All callers must be holding the siglock.
649 *
650 * This version takes a sigset mask and looks at all signals,
651 * not just those in the first mask word.
652 */
653static int rm_from_queue_full(sigset_t *mask, struct sigpending *s)
654{
655 struct sigqueue *q, *n;
656 sigset_t m;
657
658 sigandsets(&m, mask, &s->signal);
659 if (sigisemptyset(&m))
660 return 0;
661
662 signandsets(&s->signal, &s->signal, mask);
663 list_for_each_entry_safe(q, n, &s->list, list) {
664 if (sigismember(mask, q->info.si_signo)) {
665 list_del_init(&q->list);
666 __sigqueue_free(q);
667 }
668 }
669 return 1;
670}
1da177e4
LT
671/*
672 * Remove signals in mask from the pending set and queue.
673 * Returns 1 if any signals were found.
674 *
675 * All callers must be holding the siglock.
676 */
677static int rm_from_queue(unsigned long mask, struct sigpending *s)
678{
679 struct sigqueue *q, *n;
680
681 if (!sigtestsetmask(&s->signal, mask))
682 return 0;
683
684 sigdelsetmask(&s->signal, mask);
685 list_for_each_entry_safe(q, n, &s->list, list) {
686 if (q->info.si_signo < SIGRTMIN &&
687 (mask & sigmask(q->info.si_signo))) {
688 list_del_init(&q->list);
689 __sigqueue_free(q);
690 }
691 }
692 return 1;
693}
694
614c517d
ON
695static inline int is_si_special(const struct siginfo *info)
696{
697 return info <= SEND_SIG_FORCED;
698}
699
700static inline bool si_fromuser(const struct siginfo *info)
701{
702 return info == SEND_SIG_NOINFO ||
703 (!is_si_special(info) && SI_FROMUSER(info));
704}
705
1da177e4
LT
706/*
707 * Bad permissions for sending the signal
694f690d 708 * - the caller must hold the RCU read lock
1da177e4
LT
709 */
710static int check_kill_permission(int sig, struct siginfo *info,
711 struct task_struct *t)
712{
065add39 713 const struct cred *cred, *tcred;
2e2ba22e 714 struct pid *sid;
3b5e9e53
ON
715 int error;
716
7ed20e1a 717 if (!valid_signal(sig))
3b5e9e53
ON
718 return -EINVAL;
719
614c517d 720 if (!si_fromuser(info))
3b5e9e53 721 return 0;
e54dc243 722
3b5e9e53
ON
723 error = audit_signal_info(sig, t); /* Let audit system see the signal */
724 if (error)
1da177e4 725 return error;
3b5e9e53 726
065add39 727 cred = current_cred();
c69e8d9c 728 tcred = __task_cred(t);
065add39
ON
729 if (!same_thread_group(current, t) &&
730 (cred->euid ^ tcred->suid) &&
c69e8d9c
DH
731 (cred->euid ^ tcred->uid) &&
732 (cred->uid ^ tcred->suid) &&
733 (cred->uid ^ tcred->uid) &&
2e2ba22e
ON
734 !capable(CAP_KILL)) {
735 switch (sig) {
736 case SIGCONT:
2e2ba22e 737 sid = task_session(t);
2e2ba22e
ON
738 /*
739 * We don't return the error if sid == NULL. The
740 * task was unhashed, the caller must notice this.
741 */
742 if (!sid || sid == task_session(current))
743 break;
744 default:
745 return -EPERM;
746 }
747 }
c2f0c7c3 748
e54dc243 749 return security_task_kill(t, info, sig, 0);
1da177e4
LT
750}
751
1da177e4 752/*
7e695a5e
ON
753 * Handle magic process-wide effects of stop/continue signals. Unlike
754 * the signal actions, these happen immediately at signal-generation
1da177e4
LT
755 * time regardless of blocking, ignoring, or handling. This does the
756 * actual continuing for SIGCONT, but not the actual stopping for stop
7e695a5e
ON
757 * signals. The process stop is done as a signal action for SIG_DFL.
758 *
759 * Returns true if the signal should be actually delivered, otherwise
760 * it should be dropped.
1da177e4 761 */
921cf9f6 762static int prepare_signal(int sig, struct task_struct *p, int from_ancestor_ns)
1da177e4 763{
ad16a460 764 struct signal_struct *signal = p->signal;
1da177e4
LT
765 struct task_struct *t;
766
7e695a5e 767 if (unlikely(signal->flags & SIGNAL_GROUP_EXIT)) {
1da177e4 768 /*
7e695a5e 769 * The process is in the middle of dying, nothing to do.
1da177e4 770 */
7e695a5e 771 } else if (sig_kernel_stop(sig)) {
1da177e4
LT
772 /*
773 * This is a stop signal. Remove SIGCONT from all queues.
774 */
ad16a460 775 rm_from_queue(sigmask(SIGCONT), &signal->shared_pending);
1da177e4
LT
776 t = p;
777 do {
778 rm_from_queue(sigmask(SIGCONT), &t->pending);
ad16a460 779 } while_each_thread(p, t);
1da177e4 780 } else if (sig == SIGCONT) {
fc321d2e 781 unsigned int why;
1da177e4
LT
782 /*
783 * Remove all stop signals from all queues,
784 * and wake all threads.
785 */
ad16a460 786 rm_from_queue(SIG_KERNEL_STOP_MASK, &signal->shared_pending);
1da177e4
LT
787 t = p;
788 do {
789 unsigned int state;
39efa3ef
TH
790
791 task_clear_group_stop_pending(t);
792
1da177e4 793 rm_from_queue(SIG_KERNEL_STOP_MASK, &t->pending);
1da177e4
LT
794 /*
795 * If there is a handler for SIGCONT, we must make
796 * sure that no thread returns to user mode before
797 * we post the signal, in case it was the only
798 * thread eligible to run the signal handler--then
799 * it must not do anything between resuming and
800 * running the handler. With the TIF_SIGPENDING
801 * flag set, the thread will pause and acquire the
802 * siglock that we hold now and until we've queued
fc321d2e 803 * the pending signal.
1da177e4
LT
804 *
805 * Wake up the stopped thread _after_ setting
806 * TIF_SIGPENDING
807 */
f021a3c2 808 state = __TASK_STOPPED;
1da177e4
LT
809 if (sig_user_defined(t, SIGCONT) && !sigismember(&t->blocked, SIGCONT)) {
810 set_tsk_thread_flag(t, TIF_SIGPENDING);
811 state |= TASK_INTERRUPTIBLE;
812 }
813 wake_up_state(t, state);
ad16a460 814 } while_each_thread(p, t);
1da177e4 815
fc321d2e
ON
816 /*
817 * Notify the parent with CLD_CONTINUED if we were stopped.
818 *
819 * If we were in the middle of a group stop, we pretend it
820 * was already finished, and then continued. Since SIGCHLD
821 * doesn't queue we report only CLD_STOPPED, as if the next
822 * CLD_CONTINUED was dropped.
823 */
824 why = 0;
ad16a460 825 if (signal->flags & SIGNAL_STOP_STOPPED)
fc321d2e 826 why |= SIGNAL_CLD_CONTINUED;
ad16a460 827 else if (signal->group_stop_count)
fc321d2e
ON
828 why |= SIGNAL_CLD_STOPPED;
829
830 if (why) {
021e1ae3 831 /*
ae6d2ed7 832 * The first thread which returns from do_signal_stop()
021e1ae3
ON
833 * will take ->siglock, notice SIGNAL_CLD_MASK, and
834 * notify its parent. See get_signal_to_deliver().
835 */
ad16a460
ON
836 signal->flags = why | SIGNAL_STOP_CONTINUED;
837 signal->group_stop_count = 0;
838 signal->group_exit_code = 0;
1da177e4
LT
839 } else {
840 /*
841 * We are not stopped, but there could be a stop
842 * signal in the middle of being processed after
843 * being removed from the queue. Clear that too.
844 */
ad16a460 845 signal->flags &= ~SIGNAL_STOP_DEQUEUED;
1da177e4 846 }
1da177e4 847 }
7e695a5e 848
921cf9f6 849 return !sig_ignored(p, sig, from_ancestor_ns);
1da177e4
LT
850}
851
71f11dc0
ON
852/*
853 * Test if P wants to take SIG. After we've checked all threads with this,
854 * it's equivalent to finding no threads not blocking SIG. Any threads not
855 * blocking SIG were ruled out because they are not running and already
856 * have pending signals. Such threads will dequeue from the shared queue
857 * as soon as they're available, so putting the signal on the shared queue
858 * will be equivalent to sending it to one such thread.
859 */
860static inline int wants_signal(int sig, struct task_struct *p)
861{
862 if (sigismember(&p->blocked, sig))
863 return 0;
864 if (p->flags & PF_EXITING)
865 return 0;
866 if (sig == SIGKILL)
867 return 1;
868 if (task_is_stopped_or_traced(p))
869 return 0;
870 return task_curr(p) || !signal_pending(p);
871}
872
5fcd835b 873static void complete_signal(int sig, struct task_struct *p, int group)
71f11dc0
ON
874{
875 struct signal_struct *signal = p->signal;
876 struct task_struct *t;
877
878 /*
879 * Now find a thread we can wake up to take the signal off the queue.
880 *
881 * If the main thread wants the signal, it gets first crack.
882 * Probably the least surprising to the average bear.
883 */
884 if (wants_signal(sig, p))
885 t = p;
5fcd835b 886 else if (!group || thread_group_empty(p))
71f11dc0
ON
887 /*
888 * There is just one thread and it does not need to be woken.
889 * It will dequeue unblocked signals before it runs again.
890 */
891 return;
892 else {
893 /*
894 * Otherwise try to find a suitable thread.
895 */
896 t = signal->curr_target;
897 while (!wants_signal(sig, t)) {
898 t = next_thread(t);
899 if (t == signal->curr_target)
900 /*
901 * No thread needs to be woken.
902 * Any eligible threads will see
903 * the signal in the queue soon.
904 */
905 return;
906 }
907 signal->curr_target = t;
908 }
909
910 /*
911 * Found a killable thread. If the signal will be fatal,
912 * then start taking the whole group down immediately.
913 */
fae5fa44
ON
914 if (sig_fatal(p, sig) &&
915 !(signal->flags & (SIGNAL_UNKILLABLE | SIGNAL_GROUP_EXIT)) &&
71f11dc0 916 !sigismember(&t->real_blocked, sig) &&
445a91d2 917 (sig == SIGKILL ||
43918f2b 918 !tracehook_consider_fatal_signal(t, sig))) {
71f11dc0
ON
919 /*
920 * This signal will be fatal to the whole group.
921 */
922 if (!sig_kernel_coredump(sig)) {
923 /*
924 * Start a group exit and wake everybody up.
925 * This way we don't have other threads
926 * running and doing things after a slower
927 * thread has the fatal signal pending.
928 */
929 signal->flags = SIGNAL_GROUP_EXIT;
930 signal->group_exit_code = sig;
931 signal->group_stop_count = 0;
932 t = p;
933 do {
39efa3ef 934 task_clear_group_stop_pending(t);
71f11dc0
ON
935 sigaddset(&t->pending.signal, SIGKILL);
936 signal_wake_up(t, 1);
937 } while_each_thread(p, t);
938 return;
939 }
940 }
941
942 /*
943 * The signal is already in the shared-pending queue.
944 * Tell the chosen thread to wake up and dequeue it.
945 */
946 signal_wake_up(t, sig == SIGKILL);
947 return;
948}
949
af7fff9c
PE
950static inline int legacy_queue(struct sigpending *signals, int sig)
951{
952 return (sig < SIGRTMIN) && sigismember(&signals->signal, sig);
953}
954
7978b567
SB
955static int __send_signal(int sig, struct siginfo *info, struct task_struct *t,
956 int group, int from_ancestor_ns)
1da177e4 957{
2ca3515a 958 struct sigpending *pending;
6e65acba 959 struct sigqueue *q;
7a0aeb14 960 int override_rlimit;
1da177e4 961
d1eb650f 962 trace_signal_generate(sig, info, t);
0a16b607 963
6e65acba 964 assert_spin_locked(&t->sighand->siglock);
921cf9f6
SB
965
966 if (!prepare_signal(sig, t, from_ancestor_ns))
7e695a5e 967 return 0;
2ca3515a
ON
968
969 pending = group ? &t->signal->shared_pending : &t->pending;
2acb024d
PE
970 /*
971 * Short-circuit ignored signals and support queuing
972 * exactly one non-rt signal, so that we can get more
973 * detailed information about the cause of the signal.
974 */
7e695a5e 975 if (legacy_queue(pending, sig))
2acb024d 976 return 0;
1da177e4
LT
977 /*
978 * fast-pathed signals for kernel-internal things like SIGSTOP
979 * or SIGKILL.
980 */
b67a1b9e 981 if (info == SEND_SIG_FORCED)
1da177e4
LT
982 goto out_set;
983
984 /* Real-time signals must be queued if sent by sigqueue, or
985 some other real-time mechanism. It is implementation
986 defined whether kill() does so. We attempt to do so, on
987 the principle of least surprise, but since kill is not
988 allowed to fail with EAGAIN when low on memory we just
989 make sure at least one signal gets delivered and don't
990 pass on the info struct. */
991
7a0aeb14
VN
992 if (sig < SIGRTMIN)
993 override_rlimit = (is_si_special(info) || info->si_code >= 0);
994 else
995 override_rlimit = 0;
996
f84d49b2 997 q = __sigqueue_alloc(sig, t, GFP_ATOMIC | __GFP_NOTRACK_FALSE_POSITIVE,
7a0aeb14 998 override_rlimit);
1da177e4 999 if (q) {
2ca3515a 1000 list_add_tail(&q->list, &pending->list);
1da177e4 1001 switch ((unsigned long) info) {
b67a1b9e 1002 case (unsigned long) SEND_SIG_NOINFO:
1da177e4
LT
1003 q->info.si_signo = sig;
1004 q->info.si_errno = 0;
1005 q->info.si_code = SI_USER;
9cd4fd10 1006 q->info.si_pid = task_tgid_nr_ns(current,
09bca05c 1007 task_active_pid_ns(t));
76aac0e9 1008 q->info.si_uid = current_uid();
1da177e4 1009 break;
b67a1b9e 1010 case (unsigned long) SEND_SIG_PRIV:
1da177e4
LT
1011 q->info.si_signo = sig;
1012 q->info.si_errno = 0;
1013 q->info.si_code = SI_KERNEL;
1014 q->info.si_pid = 0;
1015 q->info.si_uid = 0;
1016 break;
1017 default:
1018 copy_siginfo(&q->info, info);
6588c1e3
SB
1019 if (from_ancestor_ns)
1020 q->info.si_pid = 0;
1da177e4
LT
1021 break;
1022 }
621d3121 1023 } else if (!is_si_special(info)) {
ba005e1f
MH
1024 if (sig >= SIGRTMIN && info->si_code != SI_USER) {
1025 /*
1026 * Queue overflow, abort. We may abort if the
1027 * signal was rt and sent by user using something
1028 * other than kill().
1029 */
1030 trace_signal_overflow_fail(sig, group, info);
1da177e4 1031 return -EAGAIN;
ba005e1f
MH
1032 } else {
1033 /*
1034 * This is a silent loss of information. We still
1035 * send the signal, but the *info bits are lost.
1036 */
1037 trace_signal_lose_info(sig, group, info);
1038 }
1da177e4
LT
1039 }
1040
1041out_set:
53c30337 1042 signalfd_notify(t, sig);
2ca3515a 1043 sigaddset(&pending->signal, sig);
4cd4b6d4
PE
1044 complete_signal(sig, t, group);
1045 return 0;
1da177e4
LT
1046}
1047
7978b567
SB
1048static int send_signal(int sig, struct siginfo *info, struct task_struct *t,
1049 int group)
1050{
921cf9f6
SB
1051 int from_ancestor_ns = 0;
1052
1053#ifdef CONFIG_PID_NS
dd34200a
ON
1054 from_ancestor_ns = si_fromuser(info) &&
1055 !task_pid_nr_ns(current, task_active_pid_ns(t));
921cf9f6
SB
1056#endif
1057
1058 return __send_signal(sig, info, t, group, from_ancestor_ns);
7978b567
SB
1059}
1060
45807a1d
IM
1061static void print_fatal_signal(struct pt_regs *regs, int signr)
1062{
1063 printk("%s/%d: potentially unexpected fatal signal %d.\n",
ba25f9dc 1064 current->comm, task_pid_nr(current), signr);
45807a1d 1065
ca5cd877 1066#if defined(__i386__) && !defined(__arch_um__)
65ea5b03 1067 printk("code at %08lx: ", regs->ip);
45807a1d
IM
1068 {
1069 int i;
1070 for (i = 0; i < 16; i++) {
1071 unsigned char insn;
1072
b45c6e76
AK
1073 if (get_user(insn, (unsigned char *)(regs->ip + i)))
1074 break;
45807a1d
IM
1075 printk("%02x ", insn);
1076 }
1077 }
1078#endif
1079 printk("\n");
3a9f84d3 1080 preempt_disable();
45807a1d 1081 show_regs(regs);
3a9f84d3 1082 preempt_enable();
45807a1d
IM
1083}
1084
1085static int __init setup_print_fatal_signals(char *str)
1086{
1087 get_option (&str, &print_fatal_signals);
1088
1089 return 1;
1090}
1091
1092__setup("print-fatal-signals=", setup_print_fatal_signals);
1da177e4 1093
4cd4b6d4
PE
1094int
1095__group_send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
1096{
1097 return send_signal(sig, info, p, 1);
1098}
1099
1da177e4
LT
1100static int
1101specific_send_sig_info(int sig, struct siginfo *info, struct task_struct *t)
1102{
4cd4b6d4 1103 return send_signal(sig, info, t, 0);
1da177e4
LT
1104}
1105
4a30debf
ON
1106int do_send_sig_info(int sig, struct siginfo *info, struct task_struct *p,
1107 bool group)
1108{
1109 unsigned long flags;
1110 int ret = -ESRCH;
1111
1112 if (lock_task_sighand(p, &flags)) {
1113 ret = send_signal(sig, info, p, group);
1114 unlock_task_sighand(p, &flags);
1115 }
1116
1117 return ret;
1118}
1119
1da177e4
LT
1120/*
1121 * Force a signal that the process can't ignore: if necessary
1122 * we unblock the signal and change any SIG_IGN to SIG_DFL.
ae74c3b6
LT
1123 *
1124 * Note: If we unblock the signal, we always reset it to SIG_DFL,
1125 * since we do not want to have a signal handler that was blocked
1126 * be invoked when user space had explicitly blocked it.
1127 *
80fe728d
ON
1128 * We don't want to have recursive SIGSEGV's etc, for example,
1129 * that is why we also clear SIGNAL_UNKILLABLE.
1da177e4 1130 */
1da177e4
LT
1131int
1132force_sig_info(int sig, struct siginfo *info, struct task_struct *t)
1133{
1134 unsigned long int flags;
ae74c3b6
LT
1135 int ret, blocked, ignored;
1136 struct k_sigaction *action;
1da177e4
LT
1137
1138 spin_lock_irqsave(&t->sighand->siglock, flags);
ae74c3b6
LT
1139 action = &t->sighand->action[sig-1];
1140 ignored = action->sa.sa_handler == SIG_IGN;
1141 blocked = sigismember(&t->blocked, sig);
1142 if (blocked || ignored) {
1143 action->sa.sa_handler = SIG_DFL;
1144 if (blocked) {
1145 sigdelset(&t->blocked, sig);
7bb44ade 1146 recalc_sigpending_and_wake(t);
ae74c3b6 1147 }
1da177e4 1148 }
80fe728d
ON
1149 if (action->sa.sa_handler == SIG_DFL)
1150 t->signal->flags &= ~SIGNAL_UNKILLABLE;
1da177e4
LT
1151 ret = specific_send_sig_info(sig, info, t);
1152 spin_unlock_irqrestore(&t->sighand->siglock, flags);
1153
1154 return ret;
1155}
1156
1da177e4
LT
1157/*
1158 * Nuke all other threads in the group.
1159 */
09faef11 1160int zap_other_threads(struct task_struct *p)
1da177e4 1161{
09faef11
ON
1162 struct task_struct *t = p;
1163 int count = 0;
1da177e4 1164
1da177e4
LT
1165 p->signal->group_stop_count = 0;
1166
09faef11 1167 while_each_thread(p, t) {
39efa3ef 1168 task_clear_group_stop_pending(t);
09faef11
ON
1169 count++;
1170
1171 /* Don't bother with already dead threads */
1da177e4
LT
1172 if (t->exit_state)
1173 continue;
1da177e4 1174 sigaddset(&t->pending.signal, SIGKILL);
1da177e4
LT
1175 signal_wake_up(t, 1);
1176 }
09faef11
ON
1177
1178 return count;
1da177e4
LT
1179}
1180
b8ed374e
NK
1181struct sighand_struct *__lock_task_sighand(struct task_struct *tsk,
1182 unsigned long *flags)
f63ee72e
ON
1183{
1184 struct sighand_struct *sighand;
1185
1406f2d3 1186 rcu_read_lock();
f63ee72e
ON
1187 for (;;) {
1188 sighand = rcu_dereference(tsk->sighand);
1189 if (unlikely(sighand == NULL))
1190 break;
1191
1192 spin_lock_irqsave(&sighand->siglock, *flags);
1193 if (likely(sighand == tsk->sighand))
1194 break;
1195 spin_unlock_irqrestore(&sighand->siglock, *flags);
1196 }
1406f2d3 1197 rcu_read_unlock();
f63ee72e
ON
1198
1199 return sighand;
1200}
1201
c69e8d9c
DH
1202/*
1203 * send signal info to all the members of a group
c69e8d9c 1204 */
1da177e4
LT
1205int group_send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
1206{
694f690d
DH
1207 int ret;
1208
1209 rcu_read_lock();
1210 ret = check_kill_permission(sig, info, p);
1211 rcu_read_unlock();
f63ee72e 1212
4a30debf
ON
1213 if (!ret && sig)
1214 ret = do_send_sig_info(sig, info, p, true);
1da177e4
LT
1215
1216 return ret;
1217}
1218
1219/*
146a505d 1220 * __kill_pgrp_info() sends a signal to a process group: this is what the tty
1da177e4 1221 * control characters do (^C, ^Z etc)
c69e8d9c 1222 * - the caller must hold at least a readlock on tasklist_lock
1da177e4 1223 */
c4b92fc1 1224int __kill_pgrp_info(int sig, struct siginfo *info, struct pid *pgrp)
1da177e4
LT
1225{
1226 struct task_struct *p = NULL;
1227 int retval, success;
1228
1da177e4
LT
1229 success = 0;
1230 retval = -ESRCH;
c4b92fc1 1231 do_each_pid_task(pgrp, PIDTYPE_PGID, p) {
1da177e4
LT
1232 int err = group_send_sig_info(sig, info, p);
1233 success |= !err;
1234 retval = err;
c4b92fc1 1235 } while_each_pid_task(pgrp, PIDTYPE_PGID, p);
1da177e4
LT
1236 return success ? 0 : retval;
1237}
1238
c4b92fc1 1239int kill_pid_info(int sig, struct siginfo *info, struct pid *pid)
1da177e4 1240{
d36174bc 1241 int error = -ESRCH;
1da177e4
LT
1242 struct task_struct *p;
1243
e56d0903 1244 rcu_read_lock();
d36174bc 1245retry:
c4b92fc1 1246 p = pid_task(pid, PIDTYPE_PID);
d36174bc 1247 if (p) {
1da177e4 1248 error = group_send_sig_info(sig, info, p);
d36174bc
ON
1249 if (unlikely(error == -ESRCH))
1250 /*
1251 * The task was unhashed in between, try again.
1252 * If it is dead, pid_task() will return NULL,
1253 * if we race with de_thread() it will find the
1254 * new leader.
1255 */
1256 goto retry;
1257 }
e56d0903 1258 rcu_read_unlock();
6ca25b55 1259
1da177e4
LT
1260 return error;
1261}
1262
c3de4b38
MW
1263int
1264kill_proc_info(int sig, struct siginfo *info, pid_t pid)
c4b92fc1
EB
1265{
1266 int error;
1267 rcu_read_lock();
b488893a 1268 error = kill_pid_info(sig, info, find_vpid(pid));
c4b92fc1
EB
1269 rcu_read_unlock();
1270 return error;
1271}
1272
2425c08b
EB
1273/* like kill_pid_info(), but doesn't use uid/euid of "current" */
1274int kill_pid_info_as_uid(int sig, struct siginfo *info, struct pid *pid,
8f95dc58 1275 uid_t uid, uid_t euid, u32 secid)
46113830
HW
1276{
1277 int ret = -EINVAL;
1278 struct task_struct *p;
c69e8d9c 1279 const struct cred *pcred;
14d8c9f3 1280 unsigned long flags;
46113830
HW
1281
1282 if (!valid_signal(sig))
1283 return ret;
1284
14d8c9f3 1285 rcu_read_lock();
2425c08b 1286 p = pid_task(pid, PIDTYPE_PID);
46113830
HW
1287 if (!p) {
1288 ret = -ESRCH;
1289 goto out_unlock;
1290 }
c69e8d9c 1291 pcred = __task_cred(p);
614c517d 1292 if (si_fromuser(info) &&
c69e8d9c
DH
1293 euid != pcred->suid && euid != pcred->uid &&
1294 uid != pcred->suid && uid != pcred->uid) {
46113830
HW
1295 ret = -EPERM;
1296 goto out_unlock;
1297 }
8f95dc58
DQ
1298 ret = security_task_kill(p, info, sig, secid);
1299 if (ret)
1300 goto out_unlock;
14d8c9f3
TG
1301
1302 if (sig) {
1303 if (lock_task_sighand(p, &flags)) {
1304 ret = __send_signal(sig, info, p, 1, 0);
1305 unlock_task_sighand(p, &flags);
1306 } else
1307 ret = -ESRCH;
46113830
HW
1308 }
1309out_unlock:
14d8c9f3 1310 rcu_read_unlock();
46113830
HW
1311 return ret;
1312}
2425c08b 1313EXPORT_SYMBOL_GPL(kill_pid_info_as_uid);
1da177e4
LT
1314
1315/*
1316 * kill_something_info() interprets pid in interesting ways just like kill(2).
1317 *
1318 * POSIX specifies that kill(-1,sig) is unspecified, but what we have
1319 * is probably wrong. Should make it like BSD or SYSV.
1320 */
1321
bc64efd2 1322static int kill_something_info(int sig, struct siginfo *info, pid_t pid)
1da177e4 1323{
8d42db18 1324 int ret;
d5df763b
PE
1325
1326 if (pid > 0) {
1327 rcu_read_lock();
1328 ret = kill_pid_info(sig, info, find_vpid(pid));
1329 rcu_read_unlock();
1330 return ret;
1331 }
1332
1333 read_lock(&tasklist_lock);
1334 if (pid != -1) {
1335 ret = __kill_pgrp_info(sig, info,
1336 pid ? find_vpid(-pid) : task_pgrp(current));
1337 } else {
1da177e4
LT
1338 int retval = 0, count = 0;
1339 struct task_struct * p;
1340
1da177e4 1341 for_each_process(p) {
d25141a8
SB
1342 if (task_pid_vnr(p) > 1 &&
1343 !same_thread_group(p, current)) {
1da177e4
LT
1344 int err = group_send_sig_info(sig, info, p);
1345 ++count;
1346 if (err != -EPERM)
1347 retval = err;
1348 }
1349 }
8d42db18 1350 ret = count ? retval : -ESRCH;
1da177e4 1351 }
d5df763b
PE
1352 read_unlock(&tasklist_lock);
1353
8d42db18 1354 return ret;
1da177e4
LT
1355}
1356
1357/*
1358 * These are for backward compatibility with the rest of the kernel source.
1359 */
1360
1da177e4
LT
1361int
1362send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
1363{
1da177e4
LT
1364 /*
1365 * Make sure legacy kernel users don't send in bad values
1366 * (normal paths check this in check_kill_permission).
1367 */
7ed20e1a 1368 if (!valid_signal(sig))
1da177e4
LT
1369 return -EINVAL;
1370
4a30debf 1371 return do_send_sig_info(sig, info, p, false);
1da177e4
LT
1372}
1373
b67a1b9e
ON
1374#define __si_special(priv) \
1375 ((priv) ? SEND_SIG_PRIV : SEND_SIG_NOINFO)
1376
1da177e4
LT
1377int
1378send_sig(int sig, struct task_struct *p, int priv)
1379{
b67a1b9e 1380 return send_sig_info(sig, __si_special(priv), p);
1da177e4
LT
1381}
1382
1da177e4
LT
1383void
1384force_sig(int sig, struct task_struct *p)
1385{
b67a1b9e 1386 force_sig_info(sig, SEND_SIG_PRIV, p);
1da177e4
LT
1387}
1388
1389/*
1390 * When things go south during signal handling, we
1391 * will force a SIGSEGV. And if the signal that caused
1392 * the problem was already a SIGSEGV, we'll want to
1393 * make sure we don't even try to deliver the signal..
1394 */
1395int
1396force_sigsegv(int sig, struct task_struct *p)
1397{
1398 if (sig == SIGSEGV) {
1399 unsigned long flags;
1400 spin_lock_irqsave(&p->sighand->siglock, flags);
1401 p->sighand->action[sig - 1].sa.sa_handler = SIG_DFL;
1402 spin_unlock_irqrestore(&p->sighand->siglock, flags);
1403 }
1404 force_sig(SIGSEGV, p);
1405 return 0;
1406}
1407
c4b92fc1
EB
1408int kill_pgrp(struct pid *pid, int sig, int priv)
1409{
146a505d
PE
1410 int ret;
1411
1412 read_lock(&tasklist_lock);
1413 ret = __kill_pgrp_info(sig, __si_special(priv), pid);
1414 read_unlock(&tasklist_lock);
1415
1416 return ret;
c4b92fc1
EB
1417}
1418EXPORT_SYMBOL(kill_pgrp);
1419
1420int kill_pid(struct pid *pid, int sig, int priv)
1421{
1422 return kill_pid_info(sig, __si_special(priv), pid);
1423}
1424EXPORT_SYMBOL(kill_pid);
1425
1da177e4
LT
1426/*
1427 * These functions support sending signals using preallocated sigqueue
1428 * structures. This is needed "because realtime applications cannot
1429 * afford to lose notifications of asynchronous events, like timer
f84d49b2 1430 * expirations or I/O completions". In the case of Posix Timers
1da177e4
LT
1431 * we allocate the sigqueue structure from the timer_create. If this
1432 * allocation fails we are able to report the failure to the application
1433 * with an EAGAIN error.
1434 */
1da177e4
LT
1435struct sigqueue *sigqueue_alloc(void)
1436{
f84d49b2 1437 struct sigqueue *q = __sigqueue_alloc(-1, current, GFP_KERNEL, 0);
1da177e4 1438
f84d49b2 1439 if (q)
1da177e4 1440 q->flags |= SIGQUEUE_PREALLOC;
f84d49b2
NO
1441
1442 return q;
1da177e4
LT
1443}
1444
1445void sigqueue_free(struct sigqueue *q)
1446{
1447 unsigned long flags;
60187d27
ON
1448 spinlock_t *lock = &current->sighand->siglock;
1449
1da177e4
LT
1450 BUG_ON(!(q->flags & SIGQUEUE_PREALLOC));
1451 /*
c8e85b4f
ON
1452 * We must hold ->siglock while testing q->list
1453 * to serialize with collect_signal() or with
da7978b0 1454 * __exit_signal()->flush_sigqueue().
1da177e4 1455 */
60187d27 1456 spin_lock_irqsave(lock, flags);
c8e85b4f
ON
1457 q->flags &= ~SIGQUEUE_PREALLOC;
1458 /*
1459 * If it is queued it will be freed when dequeued,
1460 * like the "regular" sigqueue.
1461 */
60187d27 1462 if (!list_empty(&q->list))
c8e85b4f 1463 q = NULL;
60187d27
ON
1464 spin_unlock_irqrestore(lock, flags);
1465
c8e85b4f
ON
1466 if (q)
1467 __sigqueue_free(q);
1da177e4
LT
1468}
1469
ac5c2153 1470int send_sigqueue(struct sigqueue *q, struct task_struct *t, int group)
9e3bd6c3 1471{
e62e6650 1472 int sig = q->info.si_signo;
2ca3515a 1473 struct sigpending *pending;
e62e6650
ON
1474 unsigned long flags;
1475 int ret;
2ca3515a 1476
4cd4b6d4 1477 BUG_ON(!(q->flags & SIGQUEUE_PREALLOC));
e62e6650
ON
1478
1479 ret = -1;
1480 if (!likely(lock_task_sighand(t, &flags)))
1481 goto ret;
1482
7e695a5e 1483 ret = 1; /* the signal is ignored */
921cf9f6 1484 if (!prepare_signal(sig, t, 0))
e62e6650
ON
1485 goto out;
1486
1487 ret = 0;
9e3bd6c3
PE
1488 if (unlikely(!list_empty(&q->list))) {
1489 /*
1490 * If an SI_TIMER entry is already queue just increment
1491 * the overrun count.
1492 */
9e3bd6c3
PE
1493 BUG_ON(q->info.si_code != SI_TIMER);
1494 q->info.si_overrun++;
e62e6650 1495 goto out;
9e3bd6c3 1496 }
ba661292 1497 q->info.si_overrun = 0;
9e3bd6c3 1498
9e3bd6c3 1499 signalfd_notify(t, sig);
2ca3515a 1500 pending = group ? &t->signal->shared_pending : &t->pending;
9e3bd6c3
PE
1501 list_add_tail(&q->list, &pending->list);
1502 sigaddset(&pending->signal, sig);
4cd4b6d4 1503 complete_signal(sig, t, group);
e62e6650
ON
1504out:
1505 unlock_task_sighand(t, &flags);
1506ret:
1507 return ret;
9e3bd6c3
PE
1508}
1509
1da177e4
LT
1510/*
1511 * Let a parent know about the death of a child.
1512 * For a stopped/continued status change, use do_notify_parent_cldstop instead.
2b2a1ff6
RM
1513 *
1514 * Returns -1 if our parent ignored us and so we've switched to
1515 * self-reaping, or else @sig.
1da177e4 1516 */
2b2a1ff6 1517int do_notify_parent(struct task_struct *tsk, int sig)
1da177e4
LT
1518{
1519 struct siginfo info;
1520 unsigned long flags;
1521 struct sighand_struct *psig;
1b04624f 1522 int ret = sig;
1da177e4
LT
1523
1524 BUG_ON(sig == -1);
1525
1526 /* do_notify_parent_cldstop should have been called instead. */
e1abb39c 1527 BUG_ON(task_is_stopped_or_traced(tsk));
1da177e4 1528
5cb11446 1529 BUG_ON(!task_ptrace(tsk) &&
1da177e4
LT
1530 (tsk->group_leader != tsk || !thread_group_empty(tsk)));
1531
1532 info.si_signo = sig;
1533 info.si_errno = 0;
b488893a
PE
1534 /*
1535 * we are under tasklist_lock here so our parent is tied to
1536 * us and cannot exit and release its namespace.
1537 *
1538 * the only it can is to switch its nsproxy with sys_unshare,
1539 * bu uncharing pid namespaces is not allowed, so we'll always
1540 * see relevant namespace
1541 *
1542 * write_lock() currently calls preempt_disable() which is the
1543 * same as rcu_read_lock(), but according to Oleg, this is not
1544 * correct to rely on this
1545 */
1546 rcu_read_lock();
1547 info.si_pid = task_pid_nr_ns(tsk, tsk->parent->nsproxy->pid_ns);
c69e8d9c 1548 info.si_uid = __task_cred(tsk)->uid;
b488893a
PE
1549 rcu_read_unlock();
1550
32bd671d
PZ
1551 info.si_utime = cputime_to_clock_t(cputime_add(tsk->utime,
1552 tsk->signal->utime));
1553 info.si_stime = cputime_to_clock_t(cputime_add(tsk->stime,
1554 tsk->signal->stime));
1da177e4
LT
1555
1556 info.si_status = tsk->exit_code & 0x7f;
1557 if (tsk->exit_code & 0x80)
1558 info.si_code = CLD_DUMPED;
1559 else if (tsk->exit_code & 0x7f)
1560 info.si_code = CLD_KILLED;
1561 else {
1562 info.si_code = CLD_EXITED;
1563 info.si_status = tsk->exit_code >> 8;
1564 }
1565
1566 psig = tsk->parent->sighand;
1567 spin_lock_irqsave(&psig->siglock, flags);
5cb11446 1568 if (!task_ptrace(tsk) && sig == SIGCHLD &&
1da177e4
LT
1569 (psig->action[SIGCHLD-1].sa.sa_handler == SIG_IGN ||
1570 (psig->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDWAIT))) {
1571 /*
1572 * We are exiting and our parent doesn't care. POSIX.1
1573 * defines special semantics for setting SIGCHLD to SIG_IGN
1574 * or setting the SA_NOCLDWAIT flag: we should be reaped
1575 * automatically and not left for our parent's wait4 call.
1576 * Rather than having the parent do it as a magic kind of
1577 * signal handler, we just set this to tell do_exit that we
1578 * can be cleaned up without becoming a zombie. Note that
1579 * we still call __wake_up_parent in this case, because a
1580 * blocked sys_wait4 might now return -ECHILD.
1581 *
1582 * Whether we send SIGCHLD or not for SA_NOCLDWAIT
1583 * is implementation-defined: we do (if you don't want
1584 * it, just use SIG_IGN instead).
1585 */
1b04624f 1586 ret = tsk->exit_signal = -1;
1da177e4 1587 if (psig->action[SIGCHLD-1].sa.sa_handler == SIG_IGN)
2b2a1ff6 1588 sig = -1;
1da177e4 1589 }
7ed20e1a 1590 if (valid_signal(sig) && sig > 0)
1da177e4
LT
1591 __group_send_sig_info(sig, &info, tsk->parent);
1592 __wake_up_parent(tsk, tsk->parent);
1593 spin_unlock_irqrestore(&psig->siglock, flags);
2b2a1ff6 1594
1b04624f 1595 return ret;
1da177e4
LT
1596}
1597
75b95953
TH
1598/**
1599 * do_notify_parent_cldstop - notify parent of stopped/continued state change
1600 * @tsk: task reporting the state change
1601 * @for_ptracer: the notification is for ptracer
1602 * @why: CLD_{CONTINUED|STOPPED|TRAPPED} to report
1603 *
1604 * Notify @tsk's parent that the stopped/continued state has changed. If
1605 * @for_ptracer is %false, @tsk's group leader notifies to its real parent.
1606 * If %true, @tsk reports to @tsk->parent which should be the ptracer.
1607 *
1608 * CONTEXT:
1609 * Must be called with tasklist_lock at least read locked.
1610 */
1611static void do_notify_parent_cldstop(struct task_struct *tsk,
1612 bool for_ptracer, int why)
1da177e4
LT
1613{
1614 struct siginfo info;
1615 unsigned long flags;
bc505a47 1616 struct task_struct *parent;
1da177e4
LT
1617 struct sighand_struct *sighand;
1618
75b95953 1619 if (for_ptracer) {
bc505a47 1620 parent = tsk->parent;
75b95953 1621 } else {
bc505a47
ON
1622 tsk = tsk->group_leader;
1623 parent = tsk->real_parent;
1624 }
1625
1da177e4
LT
1626 info.si_signo = SIGCHLD;
1627 info.si_errno = 0;
b488893a
PE
1628 /*
1629 * see comment in do_notify_parent() abot the following 3 lines
1630 */
1631 rcu_read_lock();
d9265663 1632 info.si_pid = task_pid_nr_ns(tsk, parent->nsproxy->pid_ns);
c69e8d9c 1633 info.si_uid = __task_cred(tsk)->uid;
b488893a
PE
1634 rcu_read_unlock();
1635
d8878ba3
MK
1636 info.si_utime = cputime_to_clock_t(tsk->utime);
1637 info.si_stime = cputime_to_clock_t(tsk->stime);
1da177e4
LT
1638
1639 info.si_code = why;
1640 switch (why) {
1641 case CLD_CONTINUED:
1642 info.si_status = SIGCONT;
1643 break;
1644 case CLD_STOPPED:
1645 info.si_status = tsk->signal->group_exit_code & 0x7f;
1646 break;
1647 case CLD_TRAPPED:
1648 info.si_status = tsk->exit_code & 0x7f;
1649 break;
1650 default:
1651 BUG();
1652 }
1653
1654 sighand = parent->sighand;
1655 spin_lock_irqsave(&sighand->siglock, flags);
1656 if (sighand->action[SIGCHLD-1].sa.sa_handler != SIG_IGN &&
1657 !(sighand->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDSTOP))
1658 __group_send_sig_info(SIGCHLD, &info, parent);
1659 /*
1660 * Even if SIGCHLD is not generated, we must wake up wait4 calls.
1661 */
1662 __wake_up_parent(tsk, parent);
1663 spin_unlock_irqrestore(&sighand->siglock, flags);
1664}
1665
d5f70c00
ON
1666static inline int may_ptrace_stop(void)
1667{
5cb11446 1668 if (!likely(task_ptrace(current)))
d5f70c00 1669 return 0;
d5f70c00
ON
1670 /*
1671 * Are we in the middle of do_coredump?
1672 * If so and our tracer is also part of the coredump stopping
1673 * is a deadlock situation, and pointless because our tracer
1674 * is dead so don't allow us to stop.
1675 * If SIGKILL was already sent before the caller unlocked
999d9fc1 1676 * ->siglock we must see ->core_state != NULL. Otherwise it
d5f70c00
ON
1677 * is safe to enter schedule().
1678 */
999d9fc1 1679 if (unlikely(current->mm->core_state) &&
d5f70c00
ON
1680 unlikely(current->mm == current->parent->mm))
1681 return 0;
1682
1683 return 1;
1684}
1685
1a669c2f
RM
1686/*
1687 * Return nonzero if there is a SIGKILL that should be waking us up.
1688 * Called with the siglock held.
1689 */
1690static int sigkill_pending(struct task_struct *tsk)
1691{
3d749b9e
ON
1692 return sigismember(&tsk->pending.signal, SIGKILL) ||
1693 sigismember(&tsk->signal->shared_pending.signal, SIGKILL);
1a669c2f
RM
1694}
1695
1da177e4
LT
1696/*
1697 * This must be called with current->sighand->siglock held.
1698 *
1699 * This should be the path for all ptrace stops.
1700 * We always set current->last_siginfo while stopped here.
1701 * That makes it a way to test a stopped process for
1702 * being ptrace-stopped vs being job-control-stopped.
1703 *
20686a30
ON
1704 * If we actually decide not to stop at all because the tracer
1705 * is gone, we keep current->exit_code unless clear_code.
1da177e4 1706 */
fe1bc6a0 1707static void ptrace_stop(int exit_code, int why, int clear_code, siginfo_t *info)
b8401150
NK
1708 __releases(&current->sighand->siglock)
1709 __acquires(&current->sighand->siglock)
1da177e4 1710{
1a669c2f
RM
1711 if (arch_ptrace_stop_needed(exit_code, info)) {
1712 /*
1713 * The arch code has something special to do before a
1714 * ptrace stop. This is allowed to block, e.g. for faults
1715 * on user stack pages. We can't keep the siglock while
1716 * calling arch_ptrace_stop, so we must release it now.
1717 * To preserve proper semantics, we must do this before
1718 * any signal bookkeeping like checking group_stop_count.
1719 * Meanwhile, a SIGKILL could come in before we retake the
1720 * siglock. That must prevent us from sleeping in TASK_TRACED.
1721 * So after regaining the lock, we must check for SIGKILL.
1722 */
1723 spin_unlock_irq(&current->sighand->siglock);
1724 arch_ptrace_stop(exit_code, info);
1725 spin_lock_irq(&current->sighand->siglock);
3d749b9e
ON
1726 if (sigkill_pending(current))
1727 return;
1a669c2f
RM
1728 }
1729
1da177e4 1730 /*
0ae8ce1c
TH
1731 * If @why is CLD_STOPPED, we're trapping to participate in a group
1732 * stop. Do the bookkeeping. Note that if SIGCONT was delievered
1733 * while siglock was released for the arch hook, PENDING could be
1734 * clear now. We act as if SIGCONT is received after TASK_TRACED
1735 * is entered - ignore it.
1da177e4 1736 */
0ae8ce1c 1737 if (why == CLD_STOPPED && (current->group_stop & GROUP_STOP_PENDING))
e5c1902e 1738 task_participate_group_stop(current);
1da177e4
LT
1739
1740 current->last_siginfo = info;
1741 current->exit_code = exit_code;
1742
d79fdd6d
TH
1743 /*
1744 * TRACED should be visible before TRAPPING is cleared; otherwise,
1745 * the tracer might fail do_wait().
1746 */
1747 set_current_state(TASK_TRACED);
1748
1749 /*
1750 * We're committing to trapping. Clearing GROUP_STOP_TRAPPING and
1751 * transition to TASK_TRACED should be atomic with respect to
1752 * siglock. This hsould be done after the arch hook as siglock is
1753 * released and regrabbed across it.
1754 */
1755 task_clear_group_stop_trapping(current);
1756
1da177e4
LT
1757 spin_unlock_irq(&current->sighand->siglock);
1758 read_lock(&tasklist_lock);
3d749b9e 1759 if (may_ptrace_stop()) {
75b95953 1760 do_notify_parent_cldstop(current, task_ptrace(current), why);
53da1d94
MS
1761 /*
1762 * Don't want to allow preemption here, because
1763 * sys_ptrace() needs this task to be inactive.
1764 *
1765 * XXX: implement read_unlock_no_resched().
1766 */
1767 preempt_disable();
1da177e4 1768 read_unlock(&tasklist_lock);
53da1d94 1769 preempt_enable_no_resched();
1da177e4
LT
1770 schedule();
1771 } else {
1772 /*
1773 * By the time we got the lock, our tracer went away.
6405f7f4 1774 * Don't drop the lock yet, another tracer may come.
1da177e4 1775 */
6405f7f4 1776 __set_current_state(TASK_RUNNING);
20686a30
ON
1777 if (clear_code)
1778 current->exit_code = 0;
6405f7f4 1779 read_unlock(&tasklist_lock);
1da177e4
LT
1780 }
1781
13b1c3d4
RM
1782 /*
1783 * While in TASK_TRACED, we were considered "frozen enough".
1784 * Now that we woke up, it's crucial if we're supposed to be
1785 * frozen that we freeze now before running anything substantial.
1786 */
1787 try_to_freeze();
1788
1da177e4
LT
1789 /*
1790 * We are back. Now reacquire the siglock before touching
1791 * last_siginfo, so that we are sure to have synchronized with
1792 * any signal-sending on another CPU that wants to examine it.
1793 */
1794 spin_lock_irq(&current->sighand->siglock);
1795 current->last_siginfo = NULL;
1796
1797 /*
1798 * Queued signals ignored us while we were stopped for tracing.
1799 * So check for any that we should take before resuming user mode.
b74d0deb 1800 * This sets TIF_SIGPENDING, but never clears it.
1da177e4 1801 */
b74d0deb 1802 recalc_sigpending_tsk(current);
1da177e4
LT
1803}
1804
1805void ptrace_notify(int exit_code)
1806{
1807 siginfo_t info;
1808
1809 BUG_ON((exit_code & (0x7f | ~0xffff)) != SIGTRAP);
1810
1811 memset(&info, 0, sizeof info);
1812 info.si_signo = SIGTRAP;
1813 info.si_code = exit_code;
b488893a 1814 info.si_pid = task_pid_vnr(current);
76aac0e9 1815 info.si_uid = current_uid();
1da177e4
LT
1816
1817 /* Let the debugger run. */
1818 spin_lock_irq(&current->sighand->siglock);
fe1bc6a0 1819 ptrace_stop(exit_code, CLD_TRAPPED, 1, &info);
1da177e4
LT
1820 spin_unlock_irq(&current->sighand->siglock);
1821}
1822
1da177e4
LT
1823/*
1824 * This performs the stopping for SIGSTOP and other stop signals.
1825 * We have to stop all threads in the thread group.
1826 * Returns nonzero if we've actually stopped and released the siglock.
1827 * Returns zero if we didn't stop and still hold the siglock.
1828 */
a122b341 1829static int do_signal_stop(int signr)
1da177e4
LT
1830{
1831 struct signal_struct *sig = current->signal;
1da177e4 1832
39efa3ef
TH
1833 if (!(current->group_stop & GROUP_STOP_PENDING)) {
1834 unsigned int gstop = GROUP_STOP_PENDING | GROUP_STOP_CONSUME;
f558b7e4
ON
1835 struct task_struct *t;
1836
d79fdd6d
TH
1837 /* signr will be recorded in task->group_stop for retries */
1838 WARN_ON_ONCE(signr & ~GROUP_STOP_SIGMASK);
1839
2b201a9e 1840 if (!likely(sig->flags & SIGNAL_STOP_DEQUEUED) ||
573cf9ad 1841 unlikely(signal_group_exit(sig)))
f558b7e4 1842 return 0;
1da177e4 1843 /*
408a37de
TH
1844 * There is no group stop already in progress. We must
1845 * initiate one now.
1846 *
1847 * While ptraced, a task may be resumed while group stop is
1848 * still in effect and then receive a stop signal and
1849 * initiate another group stop. This deviates from the
1850 * usual behavior as two consecutive stop signals can't
1851 * cause two group stops when !ptraced.
1852 *
1853 * The condition can be distinguished by testing whether
1854 * SIGNAL_STOP_STOPPED is already set. Don't generate
1855 * group_exit_code in such case.
1856 *
1857 * This is not necessary for SIGNAL_STOP_CONTINUED because
1858 * an intervening stop signal is required to cause two
1859 * continued events regardless of ptrace.
1da177e4 1860 */
408a37de
TH
1861 if (!(sig->flags & SIGNAL_STOP_STOPPED))
1862 sig->group_exit_code = signr;
1863 else
1864 WARN_ON_ONCE(!task_ptrace(current));
1da177e4 1865
d79fdd6d
TH
1866 current->group_stop &= ~GROUP_STOP_SIGMASK;
1867 current->group_stop |= signr | gstop;
ae6d2ed7 1868 sig->group_stop_count = 1;
d79fdd6d
TH
1869 for (t = next_thread(current); t != current;
1870 t = next_thread(t)) {
1871 t->group_stop &= ~GROUP_STOP_SIGMASK;
1da177e4 1872 /*
a122b341
ON
1873 * Setting state to TASK_STOPPED for a group
1874 * stop is always done with the siglock held,
1875 * so this check has no races.
1da177e4 1876 */
39efa3ef 1877 if (!(t->flags & PF_EXITING) && !task_is_stopped(t)) {
d79fdd6d 1878 t->group_stop |= signr | gstop;
ae6d2ed7 1879 sig->group_stop_count++;
a122b341 1880 signal_wake_up(t, 0);
d79fdd6d 1881 } else {
e5c1902e 1882 task_clear_group_stop_pending(t);
d79fdd6d
TH
1883 }
1884 }
1da177e4 1885 }
d79fdd6d 1886retry:
5224fa36
TH
1887 if (likely(!task_ptrace(current))) {
1888 int notify = 0;
1da177e4 1889
5224fa36
TH
1890 /*
1891 * If there are no other threads in the group, or if there
1892 * is a group stop in progress and we are the last to stop,
1893 * report to the parent.
1894 */
1895 if (task_participate_group_stop(current))
1896 notify = CLD_STOPPED;
1897
d79fdd6d 1898 __set_current_state(TASK_STOPPED);
5224fa36
TH
1899 spin_unlock_irq(&current->sighand->siglock);
1900
62bcf9d9
TH
1901 /*
1902 * Notify the parent of the group stop completion. Because
1903 * we're not holding either the siglock or tasklist_lock
1904 * here, ptracer may attach inbetween; however, this is for
1905 * group stop and should always be delivered to the real
1906 * parent of the group leader. The new ptracer will get
1907 * its notification when this task transitions into
1908 * TASK_TRACED.
1909 */
5224fa36
TH
1910 if (notify) {
1911 read_lock(&tasklist_lock);
62bcf9d9 1912 do_notify_parent_cldstop(current, false, notify);
5224fa36
TH
1913 read_unlock(&tasklist_lock);
1914 }
1915
1916 /* Now we don't run again until woken by SIGCONT or SIGKILL */
1917 schedule();
1918
1919 spin_lock_irq(&current->sighand->siglock);
d79fdd6d
TH
1920 } else {
1921 ptrace_stop(current->group_stop & GROUP_STOP_SIGMASK,
1922 CLD_STOPPED, 0, NULL);
1923 current->exit_code = 0;
1924 }
1925
1926 /*
1927 * GROUP_STOP_PENDING could be set if another group stop has
1928 * started since being woken up or ptrace wants us to transit
1929 * between TASK_STOPPED and TRACED. Retry group stop.
1930 */
1931 if (current->group_stop & GROUP_STOP_PENDING) {
1932 WARN_ON_ONCE(!(current->group_stop & GROUP_STOP_SIGMASK));
1933 goto retry;
1934 }
1935
1936 /* PTRACE_ATTACH might have raced with task killing, clear trapping */
1937 task_clear_group_stop_trapping(current);
ae6d2ed7 1938
5224fa36 1939 spin_unlock_irq(&current->sighand->siglock);
ae6d2ed7
RM
1940
1941 tracehook_finish_jctl();
dac27f4a 1942
1da177e4
LT
1943 return 1;
1944}
1945
18c98b65
RM
1946static int ptrace_signal(int signr, siginfo_t *info,
1947 struct pt_regs *regs, void *cookie)
1948{
5cb11446 1949 if (!task_ptrace(current))
18c98b65
RM
1950 return signr;
1951
1952 ptrace_signal_deliver(regs, cookie);
1953
1954 /* Let the debugger run. */
fe1bc6a0 1955 ptrace_stop(signr, CLD_TRAPPED, 0, info);
18c98b65
RM
1956
1957 /* We're back. Did the debugger cancel the sig? */
1958 signr = current->exit_code;
1959 if (signr == 0)
1960 return signr;
1961
1962 current->exit_code = 0;
1963
1964 /* Update the siginfo structure if the signal has
1965 changed. If the debugger wanted something
1966 specific in the siginfo structure then it should
1967 have updated *info via PTRACE_SETSIGINFO. */
1968 if (signr != info->si_signo) {
1969 info->si_signo = signr;
1970 info->si_errno = 0;
1971 info->si_code = SI_USER;
1972 info->si_pid = task_pid_vnr(current->parent);
c69e8d9c 1973 info->si_uid = task_uid(current->parent);
18c98b65
RM
1974 }
1975
1976 /* If the (new) signal is now blocked, requeue it. */
1977 if (sigismember(&current->blocked, signr)) {
1978 specific_send_sig_info(signr, info, current);
1979 signr = 0;
1980 }
1981
1982 return signr;
1983}
1984
1da177e4
LT
1985int get_signal_to_deliver(siginfo_t *info, struct k_sigaction *return_ka,
1986 struct pt_regs *regs, void *cookie)
1987{
f6b76d4f
ON
1988 struct sighand_struct *sighand = current->sighand;
1989 struct signal_struct *signal = current->signal;
1990 int signr;
1da177e4 1991
13b1c3d4
RM
1992relock:
1993 /*
1994 * We'll jump back here after any time we were stopped in TASK_STOPPED.
1995 * While in TASK_STOPPED, we were considered "frozen enough".
1996 * Now that we woke up, it's crucial if we're supposed to be
1997 * frozen that we freeze now before running anything substantial.
1998 */
fc558a74
RW
1999 try_to_freeze();
2000
f6b76d4f 2001 spin_lock_irq(&sighand->siglock);
021e1ae3
ON
2002 /*
2003 * Every stopped thread goes here after wakeup. Check to see if
2004 * we should notify the parent, prepare_signal(SIGCONT) encodes
2005 * the CLD_ si_code into SIGNAL_CLD_MASK bits.
2006 */
f6b76d4f 2007 if (unlikely(signal->flags & SIGNAL_CLD_MASK)) {
75b95953 2008 struct task_struct *leader;
c672af35
TH
2009 int why;
2010
2011 if (signal->flags & SIGNAL_CLD_CONTINUED)
2012 why = CLD_CONTINUED;
2013 else
2014 why = CLD_STOPPED;
2015
f6b76d4f 2016 signal->flags &= ~SIGNAL_CLD_MASK;
e4420551 2017
ae6d2ed7 2018 spin_unlock_irq(&sighand->siglock);
fa00b80b 2019
edf2ed15 2020 read_lock(&tasklist_lock);
75b95953
TH
2021 leader = current->group_leader;
2022 do_notify_parent_cldstop(leader, task_ptrace(leader), why);
edf2ed15 2023 read_unlock(&tasklist_lock);
e4420551
ON
2024 goto relock;
2025 }
2026
1da177e4
LT
2027 for (;;) {
2028 struct k_sigaction *ka;
7bcf6a2c
RM
2029 /*
2030 * Tracing can induce an artifical signal and choose sigaction.
2031 * The return value in @signr determines the default action,
2032 * but @info->si_signo is the signal number we will report.
2033 */
2034 signr = tracehook_get_signal(current, regs, info, return_ka);
2035 if (unlikely(signr < 0))
2036 goto relock;
2037 if (unlikely(signr != 0))
2038 ka = return_ka;
2039 else {
39efa3ef
TH
2040 if (unlikely(current->group_stop &
2041 GROUP_STOP_PENDING) && do_signal_stop(0))
1be53963
ON
2042 goto relock;
2043
7bcf6a2c
RM
2044 signr = dequeue_signal(current, &current->blocked,
2045 info);
1da177e4 2046
18c98b65 2047 if (!signr)
7bcf6a2c
RM
2048 break; /* will return 0 */
2049
2050 if (signr != SIGKILL) {
2051 signr = ptrace_signal(signr, info,
2052 regs, cookie);
2053 if (!signr)
2054 continue;
2055 }
2056
2057 ka = &sighand->action[signr-1];
1da177e4
LT
2058 }
2059
f9d4257e
MH
2060 /* Trace actually delivered signals. */
2061 trace_signal_deliver(signr, info, ka);
2062
1da177e4
LT
2063 if (ka->sa.sa_handler == SIG_IGN) /* Do nothing. */
2064 continue;
2065 if (ka->sa.sa_handler != SIG_DFL) {
2066 /* Run the handler. */
2067 *return_ka = *ka;
2068
2069 if (ka->sa.sa_flags & SA_ONESHOT)
2070 ka->sa.sa_handler = SIG_DFL;
2071
2072 break; /* will return non-zero "signr" value */
2073 }
2074
2075 /*
2076 * Now we are doing the default action for this signal.
2077 */
2078 if (sig_kernel_ignore(signr)) /* Default is nothing. */
2079 continue;
2080
84d73786 2081 /*
0fbc26a6 2082 * Global init gets no signals it doesn't want.
b3bfa0cb
SB
2083 * Container-init gets no signals it doesn't want from same
2084 * container.
2085 *
2086 * Note that if global/container-init sees a sig_kernel_only()
2087 * signal here, the signal must have been generated internally
2088 * or must have come from an ancestor namespace. In either
2089 * case, the signal cannot be dropped.
84d73786 2090 */
fae5fa44 2091 if (unlikely(signal->flags & SIGNAL_UNKILLABLE) &&
b3bfa0cb 2092 !sig_kernel_only(signr))
1da177e4
LT
2093 continue;
2094
2095 if (sig_kernel_stop(signr)) {
2096 /*
2097 * The default action is to stop all threads in
2098 * the thread group. The job control signals
2099 * do nothing in an orphaned pgrp, but SIGSTOP
2100 * always works. Note that siglock needs to be
2101 * dropped during the call to is_orphaned_pgrp()
2102 * because of lock ordering with tasklist_lock.
2103 * This allows an intervening SIGCONT to be posted.
2104 * We need to check for that and bail out if necessary.
2105 */
2106 if (signr != SIGSTOP) {
f6b76d4f 2107 spin_unlock_irq(&sighand->siglock);
1da177e4
LT
2108
2109 /* signals can be posted during this window */
2110
3e7cd6c4 2111 if (is_current_pgrp_orphaned())
1da177e4
LT
2112 goto relock;
2113
f6b76d4f 2114 spin_lock_irq(&sighand->siglock);
1da177e4
LT
2115 }
2116
7bcf6a2c 2117 if (likely(do_signal_stop(info->si_signo))) {
1da177e4
LT
2118 /* It released the siglock. */
2119 goto relock;
2120 }
2121
2122 /*
2123 * We didn't actually stop, due to a race
2124 * with SIGCONT or something like that.
2125 */
2126 continue;
2127 }
2128
f6b76d4f 2129 spin_unlock_irq(&sighand->siglock);
1da177e4
LT
2130
2131 /*
2132 * Anything else is fatal, maybe with a core dump.
2133 */
2134 current->flags |= PF_SIGNALED;
2dce81bf 2135
1da177e4 2136 if (sig_kernel_coredump(signr)) {
2dce81bf 2137 if (print_fatal_signals)
7bcf6a2c 2138 print_fatal_signal(regs, info->si_signo);
1da177e4
LT
2139 /*
2140 * If it was able to dump core, this kills all
2141 * other threads in the group and synchronizes with
2142 * their demise. If we lost the race with another
2143 * thread getting here, it set group_exit_code
2144 * first and our do_group_exit call below will use
2145 * that value and ignore the one we pass it.
2146 */
7bcf6a2c 2147 do_coredump(info->si_signo, info->si_signo, regs);
1da177e4
LT
2148 }
2149
2150 /*
2151 * Death signals, no core dump.
2152 */
7bcf6a2c 2153 do_group_exit(info->si_signo);
1da177e4
LT
2154 /* NOTREACHED */
2155 }
f6b76d4f 2156 spin_unlock_irq(&sighand->siglock);
1da177e4
LT
2157 return signr;
2158}
2159
d12619b5
ON
2160void exit_signals(struct task_struct *tsk)
2161{
2162 int group_stop = 0;
5dee1707 2163 struct task_struct *t;
d12619b5 2164
5dee1707
ON
2165 if (thread_group_empty(tsk) || signal_group_exit(tsk->signal)) {
2166 tsk->flags |= PF_EXITING;
2167 return;
d12619b5
ON
2168 }
2169
5dee1707 2170 spin_lock_irq(&tsk->sighand->siglock);
d12619b5
ON
2171 /*
2172 * From now this task is not visible for group-wide signals,
2173 * see wants_signal(), do_signal_stop().
2174 */
2175 tsk->flags |= PF_EXITING;
5dee1707
ON
2176 if (!signal_pending(tsk))
2177 goto out;
2178
2179 /* It could be that __group_complete_signal() choose us to
2180 * notify about group-wide signal. Another thread should be
2181 * woken now to take the signal since we will not.
2182 */
2183 for (t = tsk; (t = next_thread(t)) != tsk; )
2184 if (!signal_pending(t) && !(t->flags & PF_EXITING))
2185 recalc_sigpending_and_wake(t);
2186
39efa3ef 2187 if (unlikely(tsk->group_stop & GROUP_STOP_PENDING) &&
e5c1902e 2188 task_participate_group_stop(tsk))
edf2ed15 2189 group_stop = CLD_STOPPED;
5dee1707 2190out:
d12619b5
ON
2191 spin_unlock_irq(&tsk->sighand->siglock);
2192
62bcf9d9
TH
2193 /*
2194 * If group stop has completed, deliver the notification. This
2195 * should always go to the real parent of the group leader.
2196 */
ae6d2ed7 2197 if (unlikely(group_stop)) {
d12619b5 2198 read_lock(&tasklist_lock);
62bcf9d9 2199 do_notify_parent_cldstop(tsk, false, group_stop);
d12619b5
ON
2200 read_unlock(&tasklist_lock);
2201 }
2202}
2203
1da177e4
LT
2204EXPORT_SYMBOL(recalc_sigpending);
2205EXPORT_SYMBOL_GPL(dequeue_signal);
2206EXPORT_SYMBOL(flush_signals);
2207EXPORT_SYMBOL(force_sig);
1da177e4
LT
2208EXPORT_SYMBOL(send_sig);
2209EXPORT_SYMBOL(send_sig_info);
2210EXPORT_SYMBOL(sigprocmask);
2211EXPORT_SYMBOL(block_all_signals);
2212EXPORT_SYMBOL(unblock_all_signals);
2213
2214
2215/*
2216 * System call entry points.
2217 */
2218
754fe8d2 2219SYSCALL_DEFINE0(restart_syscall)
1da177e4
LT
2220{
2221 struct restart_block *restart = &current_thread_info()->restart_block;
2222 return restart->fn(restart);
2223}
2224
2225long do_no_restart_syscall(struct restart_block *param)
2226{
2227 return -EINTR;
2228}
2229
2230/*
2231 * We don't need to get the kernel lock - this is all local to this
2232 * particular thread.. (and that's good, because this is _heavily_
2233 * used by various programs)
2234 */
2235
2236/*
2237 * This is also useful for kernel threads that want to temporarily
2238 * (or permanently) block certain signals.
2239 *
2240 * NOTE! Unlike the user-mode sys_sigprocmask(), the kernel
2241 * interface happily blocks "unblockable" signals like SIGKILL
2242 * and friends.
2243 */
2244int sigprocmask(int how, sigset_t *set, sigset_t *oldset)
2245{
2246 int error;
1da177e4
LT
2247
2248 spin_lock_irq(&current->sighand->siglock);
a26fd335
ON
2249 if (oldset)
2250 *oldset = current->blocked;
2251
1da177e4
LT
2252 error = 0;
2253 switch (how) {
2254 case SIG_BLOCK:
2255 sigorsets(&current->blocked, &current->blocked, set);
2256 break;
2257 case SIG_UNBLOCK:
2258 signandsets(&current->blocked, &current->blocked, set);
2259 break;
2260 case SIG_SETMASK:
2261 current->blocked = *set;
2262 break;
2263 default:
2264 error = -EINVAL;
2265 }
2266 recalc_sigpending();
2267 spin_unlock_irq(&current->sighand->siglock);
a26fd335 2268
1da177e4
LT
2269 return error;
2270}
2271
17da2bd9
HC
2272SYSCALL_DEFINE4(rt_sigprocmask, int, how, sigset_t __user *, set,
2273 sigset_t __user *, oset, size_t, sigsetsize)
1da177e4
LT
2274{
2275 int error = -EINVAL;
2276 sigset_t old_set, new_set;
2277
2278 /* XXX: Don't preclude handling different sized sigset_t's. */
2279 if (sigsetsize != sizeof(sigset_t))
2280 goto out;
2281
2282 if (set) {
2283 error = -EFAULT;
2284 if (copy_from_user(&new_set, set, sizeof(*set)))
2285 goto out;
2286 sigdelsetmask(&new_set, sigmask(SIGKILL)|sigmask(SIGSTOP));
2287
2288 error = sigprocmask(how, &new_set, &old_set);
2289 if (error)
2290 goto out;
2291 if (oset)
2292 goto set_old;
2293 } else if (oset) {
2294 spin_lock_irq(&current->sighand->siglock);
2295 old_set = current->blocked;
2296 spin_unlock_irq(&current->sighand->siglock);
2297
2298 set_old:
2299 error = -EFAULT;
2300 if (copy_to_user(oset, &old_set, sizeof(*oset)))
2301 goto out;
2302 }
2303 error = 0;
2304out:
2305 return error;
2306}
2307
2308long do_sigpending(void __user *set, unsigned long sigsetsize)
2309{
2310 long error = -EINVAL;
2311 sigset_t pending;
2312
2313 if (sigsetsize > sizeof(sigset_t))
2314 goto out;
2315
2316 spin_lock_irq(&current->sighand->siglock);
2317 sigorsets(&pending, &current->pending.signal,
2318 &current->signal->shared_pending.signal);
2319 spin_unlock_irq(&current->sighand->siglock);
2320
2321 /* Outside the lock because only this thread touches it. */
2322 sigandsets(&pending, &current->blocked, &pending);
2323
2324 error = -EFAULT;
2325 if (!copy_to_user(set, &pending, sigsetsize))
2326 error = 0;
2327
2328out:
2329 return error;
2330}
2331
17da2bd9 2332SYSCALL_DEFINE2(rt_sigpending, sigset_t __user *, set, size_t, sigsetsize)
1da177e4
LT
2333{
2334 return do_sigpending(set, sigsetsize);
2335}
2336
2337#ifndef HAVE_ARCH_COPY_SIGINFO_TO_USER
2338
2339int copy_siginfo_to_user(siginfo_t __user *to, siginfo_t *from)
2340{
2341 int err;
2342
2343 if (!access_ok (VERIFY_WRITE, to, sizeof(siginfo_t)))
2344 return -EFAULT;
2345 if (from->si_code < 0)
2346 return __copy_to_user(to, from, sizeof(siginfo_t))
2347 ? -EFAULT : 0;
2348 /*
2349 * If you change siginfo_t structure, please be sure
2350 * this code is fixed accordingly.
fba2afaa
DL
2351 * Please remember to update the signalfd_copyinfo() function
2352 * inside fs/signalfd.c too, in case siginfo_t changes.
1da177e4
LT
2353 * It should never copy any pad contained in the structure
2354 * to avoid security leaks, but must copy the generic
2355 * 3 ints plus the relevant union member.
2356 */
2357 err = __put_user(from->si_signo, &to->si_signo);
2358 err |= __put_user(from->si_errno, &to->si_errno);
2359 err |= __put_user((short)from->si_code, &to->si_code);
2360 switch (from->si_code & __SI_MASK) {
2361 case __SI_KILL:
2362 err |= __put_user(from->si_pid, &to->si_pid);
2363 err |= __put_user(from->si_uid, &to->si_uid);
2364 break;
2365 case __SI_TIMER:
2366 err |= __put_user(from->si_tid, &to->si_tid);
2367 err |= __put_user(from->si_overrun, &to->si_overrun);
2368 err |= __put_user(from->si_ptr, &to->si_ptr);
2369 break;
2370 case __SI_POLL:
2371 err |= __put_user(from->si_band, &to->si_band);
2372 err |= __put_user(from->si_fd, &to->si_fd);
2373 break;
2374 case __SI_FAULT:
2375 err |= __put_user(from->si_addr, &to->si_addr);
2376#ifdef __ARCH_SI_TRAPNO
2377 err |= __put_user(from->si_trapno, &to->si_trapno);
a337fdac
AK
2378#endif
2379#ifdef BUS_MCEERR_AO
2380 /*
2381 * Other callers might not initialize the si_lsb field,
2382 * so check explicitely for the right codes here.
2383 */
2384 if (from->si_code == BUS_MCEERR_AR || from->si_code == BUS_MCEERR_AO)
2385 err |= __put_user(from->si_addr_lsb, &to->si_addr_lsb);
1da177e4
LT
2386#endif
2387 break;
2388 case __SI_CHLD:
2389 err |= __put_user(from->si_pid, &to->si_pid);
2390 err |= __put_user(from->si_uid, &to->si_uid);
2391 err |= __put_user(from->si_status, &to->si_status);
2392 err |= __put_user(from->si_utime, &to->si_utime);
2393 err |= __put_user(from->si_stime, &to->si_stime);
2394 break;
2395 case __SI_RT: /* This is not generated by the kernel as of now. */
2396 case __SI_MESGQ: /* But this is */
2397 err |= __put_user(from->si_pid, &to->si_pid);
2398 err |= __put_user(from->si_uid, &to->si_uid);
2399 err |= __put_user(from->si_ptr, &to->si_ptr);
2400 break;
2401 default: /* this is just in case for now ... */
2402 err |= __put_user(from->si_pid, &to->si_pid);
2403 err |= __put_user(from->si_uid, &to->si_uid);
2404 break;
2405 }
2406 return err;
2407}
2408
2409#endif
2410
17da2bd9
HC
2411SYSCALL_DEFINE4(rt_sigtimedwait, const sigset_t __user *, uthese,
2412 siginfo_t __user *, uinfo, const struct timespec __user *, uts,
2413 size_t, sigsetsize)
1da177e4
LT
2414{
2415 int ret, sig;
2416 sigset_t these;
2417 struct timespec ts;
2418 siginfo_t info;
2419 long timeout = 0;
2420
2421 /* XXX: Don't preclude handling different sized sigset_t's. */
2422 if (sigsetsize != sizeof(sigset_t))
2423 return -EINVAL;
2424
2425 if (copy_from_user(&these, uthese, sizeof(these)))
2426 return -EFAULT;
2427
2428 /*
2429 * Invert the set of allowed signals to get those we
2430 * want to block.
2431 */
2432 sigdelsetmask(&these, sigmask(SIGKILL)|sigmask(SIGSTOP));
2433 signotset(&these);
2434
2435 if (uts) {
2436 if (copy_from_user(&ts, uts, sizeof(ts)))
2437 return -EFAULT;
2438 if (ts.tv_nsec >= 1000000000L || ts.tv_nsec < 0
2439 || ts.tv_sec < 0)
2440 return -EINVAL;
2441 }
2442
2443 spin_lock_irq(&current->sighand->siglock);
2444 sig = dequeue_signal(current, &these, &info);
2445 if (!sig) {
2446 timeout = MAX_SCHEDULE_TIMEOUT;
2447 if (uts)
2448 timeout = (timespec_to_jiffies(&ts)
2449 + (ts.tv_sec || ts.tv_nsec));
2450
2451 if (timeout) {
2452 /* None ready -- temporarily unblock those we're
2453 * interested while we are sleeping in so that we'll
2454 * be awakened when they arrive. */
2455 current->real_blocked = current->blocked;
2456 sigandsets(&current->blocked, &current->blocked, &these);
2457 recalc_sigpending();
2458 spin_unlock_irq(&current->sighand->siglock);
2459
75bcc8c5 2460 timeout = schedule_timeout_interruptible(timeout);
1da177e4 2461
1da177e4
LT
2462 spin_lock_irq(&current->sighand->siglock);
2463 sig = dequeue_signal(current, &these, &info);
2464 current->blocked = current->real_blocked;
2465 siginitset(&current->real_blocked, 0);
2466 recalc_sigpending();
2467 }
2468 }
2469 spin_unlock_irq(&current->sighand->siglock);
2470
2471 if (sig) {
2472 ret = sig;
2473 if (uinfo) {
2474 if (copy_siginfo_to_user(uinfo, &info))
2475 ret = -EFAULT;
2476 }
2477 } else {
2478 ret = -EAGAIN;
2479 if (timeout)
2480 ret = -EINTR;
2481 }
2482
2483 return ret;
2484}
2485
17da2bd9 2486SYSCALL_DEFINE2(kill, pid_t, pid, int, sig)
1da177e4
LT
2487{
2488 struct siginfo info;
2489
2490 info.si_signo = sig;
2491 info.si_errno = 0;
2492 info.si_code = SI_USER;
b488893a 2493 info.si_pid = task_tgid_vnr(current);
76aac0e9 2494 info.si_uid = current_uid();
1da177e4
LT
2495
2496 return kill_something_info(sig, &info, pid);
2497}
2498
30b4ae8a
TG
2499static int
2500do_send_specific(pid_t tgid, pid_t pid, int sig, struct siginfo *info)
1da177e4 2501{
1da177e4 2502 struct task_struct *p;
30b4ae8a 2503 int error = -ESRCH;
1da177e4 2504
3547ff3a 2505 rcu_read_lock();
228ebcbe 2506 p = find_task_by_vpid(pid);
b488893a 2507 if (p && (tgid <= 0 || task_tgid_vnr(p) == tgid)) {
30b4ae8a 2508 error = check_kill_permission(sig, info, p);
1da177e4
LT
2509 /*
2510 * The null signal is a permissions and process existence
2511 * probe. No signal is actually delivered.
2512 */
4a30debf
ON
2513 if (!error && sig) {
2514 error = do_send_sig_info(sig, info, p, false);
2515 /*
2516 * If lock_task_sighand() failed we pretend the task
2517 * dies after receiving the signal. The window is tiny,
2518 * and the signal is private anyway.
2519 */
2520 if (unlikely(error == -ESRCH))
2521 error = 0;
1da177e4
LT
2522 }
2523 }
3547ff3a 2524 rcu_read_unlock();
6dd69f10 2525
1da177e4
LT
2526 return error;
2527}
2528
30b4ae8a
TG
2529static int do_tkill(pid_t tgid, pid_t pid, int sig)
2530{
2531 struct siginfo info;
2532
2533 info.si_signo = sig;
2534 info.si_errno = 0;
2535 info.si_code = SI_TKILL;
2536 info.si_pid = task_tgid_vnr(current);
2537 info.si_uid = current_uid();
2538
2539 return do_send_specific(tgid, pid, sig, &info);
2540}
2541
6dd69f10
VL
2542/**
2543 * sys_tgkill - send signal to one specific thread
2544 * @tgid: the thread group ID of the thread
2545 * @pid: the PID of the thread
2546 * @sig: signal to be sent
2547 *
72fd4a35 2548 * This syscall also checks the @tgid and returns -ESRCH even if the PID
6dd69f10
VL
2549 * exists but it's not belonging to the target process anymore. This
2550 * method solves the problem of threads exiting and PIDs getting reused.
2551 */
a5f8fa9e 2552SYSCALL_DEFINE3(tgkill, pid_t, tgid, pid_t, pid, int, sig)
6dd69f10
VL
2553{
2554 /* This is only valid for single tasks */
2555 if (pid <= 0 || tgid <= 0)
2556 return -EINVAL;
2557
2558 return do_tkill(tgid, pid, sig);
2559}
2560
1da177e4
LT
2561/*
2562 * Send a signal to only one task, even if it's a CLONE_THREAD task.
2563 */
a5f8fa9e 2564SYSCALL_DEFINE2(tkill, pid_t, pid, int, sig)
1da177e4 2565{
1da177e4
LT
2566 /* This is only valid for single tasks */
2567 if (pid <= 0)
2568 return -EINVAL;
2569
6dd69f10 2570 return do_tkill(0, pid, sig);
1da177e4
LT
2571}
2572
a5f8fa9e
HC
2573SYSCALL_DEFINE3(rt_sigqueueinfo, pid_t, pid, int, sig,
2574 siginfo_t __user *, uinfo)
1da177e4
LT
2575{
2576 siginfo_t info;
2577
2578 if (copy_from_user(&info, uinfo, sizeof(siginfo_t)))
2579 return -EFAULT;
2580
2581 /* Not even root can pretend to send signals from the kernel.
da48524e
JT
2582 * Nor can they impersonate a kill()/tgkill(), which adds source info.
2583 */
2584 if (info.si_code != SI_QUEUE) {
2585 /* We used to allow any < 0 si_code */
2586 WARN_ON_ONCE(info.si_code < 0);
1da177e4 2587 return -EPERM;
da48524e 2588 }
1da177e4
LT
2589 info.si_signo = sig;
2590
2591 /* POSIX.1b doesn't mention process groups. */
2592 return kill_proc_info(sig, &info, pid);
2593}
2594
62ab4505
TG
2595long do_rt_tgsigqueueinfo(pid_t tgid, pid_t pid, int sig, siginfo_t *info)
2596{
2597 /* This is only valid for single tasks */
2598 if (pid <= 0 || tgid <= 0)
2599 return -EINVAL;
2600
2601 /* Not even root can pretend to send signals from the kernel.
da48524e
JT
2602 * Nor can they impersonate a kill()/tgkill(), which adds source info.
2603 */
2604 if (info->si_code != SI_QUEUE) {
2605 /* We used to allow any < 0 si_code */
2606 WARN_ON_ONCE(info->si_code < 0);
62ab4505 2607 return -EPERM;
da48524e 2608 }
62ab4505
TG
2609 info->si_signo = sig;
2610
2611 return do_send_specific(tgid, pid, sig, info);
2612}
2613
2614SYSCALL_DEFINE4(rt_tgsigqueueinfo, pid_t, tgid, pid_t, pid, int, sig,
2615 siginfo_t __user *, uinfo)
2616{
2617 siginfo_t info;
2618
2619 if (copy_from_user(&info, uinfo, sizeof(siginfo_t)))
2620 return -EFAULT;
2621
2622 return do_rt_tgsigqueueinfo(tgid, pid, sig, &info);
2623}
2624
88531f72 2625int do_sigaction(int sig, struct k_sigaction *act, struct k_sigaction *oact)
1da177e4 2626{
93585eea 2627 struct task_struct *t = current;
1da177e4 2628 struct k_sigaction *k;
71fabd5e 2629 sigset_t mask;
1da177e4 2630
7ed20e1a 2631 if (!valid_signal(sig) || sig < 1 || (act && sig_kernel_only(sig)))
1da177e4
LT
2632 return -EINVAL;
2633
93585eea 2634 k = &t->sighand->action[sig-1];
1da177e4
LT
2635
2636 spin_lock_irq(&current->sighand->siglock);
1da177e4
LT
2637 if (oact)
2638 *oact = *k;
2639
2640 if (act) {
9ac95f2f
ON
2641 sigdelsetmask(&act->sa.sa_mask,
2642 sigmask(SIGKILL) | sigmask(SIGSTOP));
88531f72 2643 *k = *act;
1da177e4
LT
2644 /*
2645 * POSIX 3.3.1.3:
2646 * "Setting a signal action to SIG_IGN for a signal that is
2647 * pending shall cause the pending signal to be discarded,
2648 * whether or not it is blocked."
2649 *
2650 * "Setting a signal action to SIG_DFL for a signal that is
2651 * pending and whose default action is to ignore the signal
2652 * (for example, SIGCHLD), shall cause the pending signal to
2653 * be discarded, whether or not it is blocked"
2654 */
35de254d 2655 if (sig_handler_ignored(sig_handler(t, sig), sig)) {
71fabd5e
GA
2656 sigemptyset(&mask);
2657 sigaddset(&mask, sig);
2658 rm_from_queue_full(&mask, &t->signal->shared_pending);
1da177e4 2659 do {
71fabd5e 2660 rm_from_queue_full(&mask, &t->pending);
1da177e4
LT
2661 t = next_thread(t);
2662 } while (t != current);
1da177e4 2663 }
1da177e4
LT
2664 }
2665
2666 spin_unlock_irq(&current->sighand->siglock);
2667 return 0;
2668}
2669
2670int
2671do_sigaltstack (const stack_t __user *uss, stack_t __user *uoss, unsigned long sp)
2672{
2673 stack_t oss;
2674 int error;
2675
0083fc2c
LT
2676 oss.ss_sp = (void __user *) current->sas_ss_sp;
2677 oss.ss_size = current->sas_ss_size;
2678 oss.ss_flags = sas_ss_flags(sp);
1da177e4
LT
2679
2680 if (uss) {
2681 void __user *ss_sp;
2682 size_t ss_size;
2683 int ss_flags;
2684
2685 error = -EFAULT;
0dd8486b
LT
2686 if (!access_ok(VERIFY_READ, uss, sizeof(*uss)))
2687 goto out;
2688 error = __get_user(ss_sp, &uss->ss_sp) |
2689 __get_user(ss_flags, &uss->ss_flags) |
2690 __get_user(ss_size, &uss->ss_size);
2691 if (error)
1da177e4
LT
2692 goto out;
2693
2694 error = -EPERM;
2695 if (on_sig_stack(sp))
2696 goto out;
2697
2698 error = -EINVAL;
2699 /*
2700 *
2701 * Note - this code used to test ss_flags incorrectly
2702 * old code may have been written using ss_flags==0
2703 * to mean ss_flags==SS_ONSTACK (as this was the only
2704 * way that worked) - this fix preserves that older
2705 * mechanism
2706 */
2707 if (ss_flags != SS_DISABLE && ss_flags != SS_ONSTACK && ss_flags != 0)
2708 goto out;
2709
2710 if (ss_flags == SS_DISABLE) {
2711 ss_size = 0;
2712 ss_sp = NULL;
2713 } else {
2714 error = -ENOMEM;
2715 if (ss_size < MINSIGSTKSZ)
2716 goto out;
2717 }
2718
2719 current->sas_ss_sp = (unsigned long) ss_sp;
2720 current->sas_ss_size = ss_size;
2721 }
2722
0083fc2c 2723 error = 0;
1da177e4
LT
2724 if (uoss) {
2725 error = -EFAULT;
0083fc2c 2726 if (!access_ok(VERIFY_WRITE, uoss, sizeof(*uoss)))
1da177e4 2727 goto out;
0083fc2c
LT
2728 error = __put_user(oss.ss_sp, &uoss->ss_sp) |
2729 __put_user(oss.ss_size, &uoss->ss_size) |
2730 __put_user(oss.ss_flags, &uoss->ss_flags);
1da177e4
LT
2731 }
2732
1da177e4
LT
2733out:
2734 return error;
2735}
2736
2737#ifdef __ARCH_WANT_SYS_SIGPENDING
2738
b290ebe2 2739SYSCALL_DEFINE1(sigpending, old_sigset_t __user *, set)
1da177e4
LT
2740{
2741 return do_sigpending(set, sizeof(*set));
2742}
2743
2744#endif
2745
2746#ifdef __ARCH_WANT_SYS_SIGPROCMASK
2747/* Some platforms have their own version with special arguments others
2748 support only sys_rt_sigprocmask. */
2749
b290ebe2
HC
2750SYSCALL_DEFINE3(sigprocmask, int, how, old_sigset_t __user *, set,
2751 old_sigset_t __user *, oset)
1da177e4
LT
2752{
2753 int error;
2754 old_sigset_t old_set, new_set;
2755
2756 if (set) {
2757 error = -EFAULT;
2758 if (copy_from_user(&new_set, set, sizeof(*set)))
2759 goto out;
2760 new_set &= ~(sigmask(SIGKILL) | sigmask(SIGSTOP));
2761
2762 spin_lock_irq(&current->sighand->siglock);
2763 old_set = current->blocked.sig[0];
2764
2765 error = 0;
2766 switch (how) {
2767 default:
2768 error = -EINVAL;
2769 break;
2770 case SIG_BLOCK:
2771 sigaddsetmask(&current->blocked, new_set);
2772 break;
2773 case SIG_UNBLOCK:
2774 sigdelsetmask(&current->blocked, new_set);
2775 break;
2776 case SIG_SETMASK:
2777 current->blocked.sig[0] = new_set;
2778 break;
2779 }
2780
2781 recalc_sigpending();
2782 spin_unlock_irq(&current->sighand->siglock);
2783 if (error)
2784 goto out;
2785 if (oset)
2786 goto set_old;
2787 } else if (oset) {
2788 old_set = current->blocked.sig[0];
2789 set_old:
2790 error = -EFAULT;
2791 if (copy_to_user(oset, &old_set, sizeof(*oset)))
2792 goto out;
2793 }
2794 error = 0;
2795out:
2796 return error;
2797}
2798#endif /* __ARCH_WANT_SYS_SIGPROCMASK */
2799
2800#ifdef __ARCH_WANT_SYS_RT_SIGACTION
d4e82042
HC
2801SYSCALL_DEFINE4(rt_sigaction, int, sig,
2802 const struct sigaction __user *, act,
2803 struct sigaction __user *, oact,
2804 size_t, sigsetsize)
1da177e4
LT
2805{
2806 struct k_sigaction new_sa, old_sa;
2807 int ret = -EINVAL;
2808
2809 /* XXX: Don't preclude handling different sized sigset_t's. */
2810 if (sigsetsize != sizeof(sigset_t))
2811 goto out;
2812
2813 if (act) {
2814 if (copy_from_user(&new_sa.sa, act, sizeof(new_sa.sa)))
2815 return -EFAULT;
2816 }
2817
2818 ret = do_sigaction(sig, act ? &new_sa : NULL, oact ? &old_sa : NULL);
2819
2820 if (!ret && oact) {
2821 if (copy_to_user(oact, &old_sa.sa, sizeof(old_sa.sa)))
2822 return -EFAULT;
2823 }
2824out:
2825 return ret;
2826}
2827#endif /* __ARCH_WANT_SYS_RT_SIGACTION */
2828
2829#ifdef __ARCH_WANT_SYS_SGETMASK
2830
2831/*
2832 * For backwards compatibility. Functionality superseded by sigprocmask.
2833 */
a5f8fa9e 2834SYSCALL_DEFINE0(sgetmask)
1da177e4
LT
2835{
2836 /* SMP safe */
2837 return current->blocked.sig[0];
2838}
2839
a5f8fa9e 2840SYSCALL_DEFINE1(ssetmask, int, newmask)
1da177e4
LT
2841{
2842 int old;
2843
2844 spin_lock_irq(&current->sighand->siglock);
2845 old = current->blocked.sig[0];
2846
2847 siginitset(&current->blocked, newmask & ~(sigmask(SIGKILL)|
2848 sigmask(SIGSTOP)));
2849 recalc_sigpending();
2850 spin_unlock_irq(&current->sighand->siglock);
2851
2852 return old;
2853}
2854#endif /* __ARCH_WANT_SGETMASK */
2855
2856#ifdef __ARCH_WANT_SYS_SIGNAL
2857/*
2858 * For backwards compatibility. Functionality superseded by sigaction.
2859 */
a5f8fa9e 2860SYSCALL_DEFINE2(signal, int, sig, __sighandler_t, handler)
1da177e4
LT
2861{
2862 struct k_sigaction new_sa, old_sa;
2863 int ret;
2864
2865 new_sa.sa.sa_handler = handler;
2866 new_sa.sa.sa_flags = SA_ONESHOT | SA_NOMASK;
c70d3d70 2867 sigemptyset(&new_sa.sa.sa_mask);
1da177e4
LT
2868
2869 ret = do_sigaction(sig, &new_sa, &old_sa);
2870
2871 return ret ? ret : (unsigned long)old_sa.sa.sa_handler;
2872}
2873#endif /* __ARCH_WANT_SYS_SIGNAL */
2874
2875#ifdef __ARCH_WANT_SYS_PAUSE
2876
a5f8fa9e 2877SYSCALL_DEFINE0(pause)
1da177e4
LT
2878{
2879 current->state = TASK_INTERRUPTIBLE;
2880 schedule();
2881 return -ERESTARTNOHAND;
2882}
2883
2884#endif
2885
150256d8 2886#ifdef __ARCH_WANT_SYS_RT_SIGSUSPEND
d4e82042 2887SYSCALL_DEFINE2(rt_sigsuspend, sigset_t __user *, unewset, size_t, sigsetsize)
150256d8
DW
2888{
2889 sigset_t newset;
2890
2891 /* XXX: Don't preclude handling different sized sigset_t's. */
2892 if (sigsetsize != sizeof(sigset_t))
2893 return -EINVAL;
2894
2895 if (copy_from_user(&newset, unewset, sizeof(newset)))
2896 return -EFAULT;
2897 sigdelsetmask(&newset, sigmask(SIGKILL)|sigmask(SIGSTOP));
2898
2899 spin_lock_irq(&current->sighand->siglock);
2900 current->saved_sigmask = current->blocked;
2901 current->blocked = newset;
2902 recalc_sigpending();
2903 spin_unlock_irq(&current->sighand->siglock);
2904
2905 current->state = TASK_INTERRUPTIBLE;
2906 schedule();
4e4c22c7 2907 set_restore_sigmask();
150256d8
DW
2908 return -ERESTARTNOHAND;
2909}
2910#endif /* __ARCH_WANT_SYS_RT_SIGSUSPEND */
2911
f269fdd1
DH
2912__attribute__((weak)) const char *arch_vma_name(struct vm_area_struct *vma)
2913{
2914 return NULL;
2915}
2916
1da177e4
LT
2917void __init signals_init(void)
2918{
0a31bd5f 2919 sigqueue_cachep = KMEM_CACHE(sigqueue, SLAB_PANIC);
1da177e4 2920}
67fc4e0c
JW
2921
2922#ifdef CONFIG_KGDB_KDB
2923#include <linux/kdb.h>
2924/*
2925 * kdb_send_sig_info - Allows kdb to send signals without exposing
2926 * signal internals. This function checks if the required locks are
2927 * available before calling the main signal code, to avoid kdb
2928 * deadlocks.
2929 */
2930void
2931kdb_send_sig_info(struct task_struct *t, struct siginfo *info)
2932{
2933 static struct task_struct *kdb_prev_t;
2934 int sig, new_t;
2935 if (!spin_trylock(&t->sighand->siglock)) {
2936 kdb_printf("Can't do kill command now.\n"
2937 "The sigmask lock is held somewhere else in "
2938 "kernel, try again later\n");
2939 return;
2940 }
2941 spin_unlock(&t->sighand->siglock);
2942 new_t = kdb_prev_t != t;
2943 kdb_prev_t = t;
2944 if (t->state != TASK_RUNNING && new_t) {
2945 kdb_printf("Process is not RUNNING, sending a signal from "
2946 "kdb risks deadlock\n"
2947 "on the run queue locks. "
2948 "The signal has _not_ been sent.\n"
2949 "Reissue the kill command if you want to risk "
2950 "the deadlock.\n");
2951 return;
2952 }
2953 sig = info->si_signo;
2954 if (send_sig_info(sig, info, t))
2955 kdb_printf("Fail to deliver Signal %d to process %d.\n",
2956 sig, t->pid);
2957 else
2958 kdb_printf("Signal %d is sent to process %d.\n", sig, t->pid);
2959}
2960#endif /* CONFIG_KGDB_KDB */