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