blob: 3ab90e8b6ecfd029264917077ab19c9b6374b538 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/slab.h>
14#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#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>
Jesper Juhl7ed20e12005-05-01 08:59:14 -070023#include <linux/signal.h>
Davide Libenzifba2afa2007-05-10 22:23:13 -070024#include <linux/signalfd.h>
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +090025#include <linux/ratelimit.h>
Roland McGrath35de2542008-07-25 19:45:51 -070026#include <linux/tracehook.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080027#include <linux/capability.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080028#include <linux/freezer.h>
Sukadev Bhattiprolu84d73782006-12-08 02:38:01 -080029#include <linux/pid_namespace.h>
30#include <linux/nsproxy.h>
Masami Hiramatsud1eb6502009-11-24 16:56:45 -050031#define CREATE_TRACE_POINTS
32#include <trace/events/signal.h>
Sukadev Bhattiprolu84d73782006-12-08 02:38:01 -080033
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/param.h>
35#include <asm/uaccess.h>
36#include <asm/unistd.h>
37#include <asm/siginfo.h>
Al Viroe1396062006-05-25 10:19:47 -040038#include "audit.h" /* audit_signal_info() */
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40/*
41 * SLAB caches for signal bits.
42 */
43
Christoph Lametere18b8902006-12-06 20:33:20 -080044static struct kmem_cache *sigqueue_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +090046int print_fatal_signals __read_mostly;
47
Roland McGrath35de2542008-07-25 19:45:51 -070048static void __user *sig_handler(struct task_struct *t, int sig)
Pavel Emelyanov93585ee2008-04-30 00:52:39 -070049{
Roland McGrath35de2542008-07-25 19:45:51 -070050 return t->sighand->action[sig - 1].sa.sa_handler;
51}
Pavel Emelyanov93585ee2008-04-30 00:52:39 -070052
Roland McGrath35de2542008-07-25 19:45:51 -070053static int sig_handler_ignored(void __user *handler, int sig)
54{
Pavel Emelyanov93585ee2008-04-30 00:52:39 -070055 /* Is it explicitly or implicitly ignored? */
Pavel Emelyanov93585ee2008-04-30 00:52:39 -070056 return handler == SIG_IGN ||
57 (handler == SIG_DFL && sig_kernel_ignore(sig));
58}
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Sukadev Bhattiprolu921cf9f2009-04-02 16:58:05 -070060static int sig_task_ignored(struct task_struct *t, int sig,
61 int from_ancestor_ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
Roland McGrath35de2542008-07-25 19:45:51 -070063 void __user *handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Oleg Nesterovf008faf2009-04-02 16:58:02 -070065 handler = sig_handler(t, sig);
66
67 if (unlikely(t->signal->flags & SIGNAL_UNKILLABLE) &&
Sukadev Bhattiprolu921cf9f2009-04-02 16:58:05 -070068 handler == SIG_DFL && !from_ancestor_ns)
Oleg Nesterovf008faf2009-04-02 16:58:02 -070069 return 1;
70
71 return sig_handler_ignored(handler, sig);
72}
73
Sukadev Bhattiprolu921cf9f2009-04-02 16:58:05 -070074static int sig_ignored(struct task_struct *t, int sig, int from_ancestor_ns)
Oleg Nesterovf008faf2009-04-02 16:58:02 -070075{
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 /*
77 * Blocked signals are never ignored, since the
78 * signal handler may change by the time it is
79 * unblocked.
80 */
Roland McGrath325d22d2007-11-12 15:41:55 -080081 if (sigismember(&t->blocked, sig) || sigismember(&t->real_blocked, sig))
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 return 0;
83
Sukadev Bhattiprolu921cf9f2009-04-02 16:58:05 -070084 if (!sig_task_ignored(t, sig, from_ancestor_ns))
Roland McGrath35de2542008-07-25 19:45:51 -070085 return 0;
86
87 /*
88 * Tracers may want to know about even ignored signals.
89 */
Oleg Nesterov43918f22009-04-02 16:58:00 -070090 return !tracehook_consider_ignored_signal(t, sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091}
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
Roland McGrath7bb44ad2007-05-23 13:57:44 -0700125static int recalc_sigpending_tsk(struct task_struct *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
127 if (t->signal->group_stop_count > 0 ||
128 PENDING(&t->pending, &t->blocked) ||
Roland McGrath7bb44ad2007-05-23 13:57:44 -0700129 PENDING(&t->signal->shared_pending, &t->blocked)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 set_tsk_thread_flag(t, TIF_SIGPENDING);
Roland McGrath7bb44ad2007-05-23 13:57:44 -0700131 return 1;
132 }
Roland McGrathb74d0de2007-06-06 03:59:00 -0700133 /*
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 */
Roland McGrath7bb44ad2007-05-23 13:57:44 -0700138 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
151void recalc_sigpending(void)
152{
Roland McGrathb787f7b2008-07-25 19:45:55 -0700153 if (unlikely(tracehook_force_sigpending()))
154 set_thread_flag(TIF_SIGPENDING);
155 else if (!recalc_sigpending_tsk(current) && !freezing(current))
Roland McGrathb74d0de2007-06-06 03:59:00 -0700156 clear_thread_flag(TIF_SIGPENDING);
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159
160/* Given the mask, find the first available signal that should be serviced. */
161
Linus Torvaldsa27341c2010-03-02 08:36:46 -0800162#define SYNCHRONOUS_MASK \
163 (sigmask(SIGSEGV) | sigmask(SIGBUS) | sigmask(SIGILL) | \
164 sigmask(SIGTRAP) | sigmask(SIGFPE))
165
Davide Libenzifba2afa2007-05-10 22:23:13 -0700166int next_signal(struct sigpending *pending, sigset_t *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
168 unsigned long i, *s, *m, x;
169 int sig = 0;
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +0900170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 s = pending->signal.sig;
172 m = mask->sig;
Linus Torvaldsa27341c2010-03-02 08:36:46 -0800173
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 switch (_NSIG_WORDS) {
187 default:
Linus Torvaldsa27341c2010-03-02 08:36:46 -0800188 for (i = 1; i < _NSIG_WORDS; ++i) {
189 x = *++s &~ *++m;
190 if (!x)
191 continue;
192 sig = ffz(~x) + i*_NSIG_BPW + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 break;
Linus Torvaldsa27341c2010-03-02 08:36:46 -0800194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 break;
196
Linus Torvaldsa27341c2010-03-02 08:36:46 -0800197 case 2:
198 x = s[1] &~ m[1];
199 if (!x)
200 break;
201 sig = ffz(~x) + _NSIG_BPW + 1;
202 break;
203
204 case 1:
205 /* Nothing to do */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 break;
207 }
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +0900208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 return sig;
210}
211
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +0900212static 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
David Howellsc69e8d92008-11-14 10:39:19 +1100226/*
227 * allocate a new signal queue record
228 * - this may be called without locks if and only if t == current, otherwise an
Randy Dunlap5aba0852011-04-04 14:59:31 -0700229 * appropriate lock must be held to stop the target task from exiting
David Howellsc69e8d92008-11-14 10:39:19 +1100230 */
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +0900231static struct sigqueue *
232__sigqueue_alloc(int sig, struct task_struct *t, gfp_t flags, int override_rlimit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
234 struct sigqueue *q = NULL;
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800235 struct user_struct *user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800237 /*
Thomas Gleixner7cf7db82009-12-10 00:53:21 +0000238 * Protect access to @t credentials. This can go away when all
239 * callers hold rcu read lock.
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800240 */
Thomas Gleixner7cf7db82009-12-10 00:53:21 +0000241 rcu_read_lock();
David Howellsd84f4f92008-11-14 10:39:23 +1100242 user = get_uid(__task_cred(t)->user);
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800243 atomic_inc(&user->sigpending);
Thomas Gleixner7cf7db82009-12-10 00:53:21 +0000244 rcu_read_unlock();
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +0900245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 if (override_rlimit ||
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800247 atomic_read(&user->sigpending) <=
Jiri Slaby78d7d402010-03-05 13:42:54 -0800248 task_rlimit(t, RLIMIT_SIGPENDING)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 q = kmem_cache_alloc(sigqueue_cachep, flags);
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +0900250 } else {
251 print_dropped_signal(sig);
252 }
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 if (unlikely(q == NULL)) {
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800255 atomic_dec(&user->sigpending);
David Howellsd84f4f92008-11-14 10:39:23 +1100256 free_uid(user);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 } else {
258 INIT_LIST_HEAD(&q->list);
259 q->flags = 0;
David Howellsd84f4f92008-11-14 10:39:23 +1100260 q->user = user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 }
David Howellsd84f4f92008-11-14 10:39:23 +1100262
263 return q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
265
Andrew Morton514a01b2006-02-03 03:04:41 -0800266static void __sigqueue_free(struct sigqueue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
268 if (q->flags & SIGQUEUE_PREALLOC)
269 return;
270 atomic_dec(&q->user->sigpending);
271 free_uid(q->user);
272 kmem_cache_free(sigqueue_cachep, q);
273}
274
Oleg Nesterov6a14c5c2006-03-28 16:11:18 -0800275void flush_sigqueue(struct sigpending *queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
277 struct sigqueue *q;
278
279 sigemptyset(&queue->signal);
280 while (!list_empty(&queue->list)) {
281 q = list_entry(queue->list.next, struct sigqueue , list);
282 list_del_init(&q->list);
283 __sigqueue_free(q);
284 }
285}
286
287/*
288 * Flush all pending signals for a task.
289 */
David Howells3bcac022009-04-29 13:45:05 +0100290void __flush_signals(struct task_struct *t)
291{
292 clear_tsk_thread_flag(t, TIF_SIGPENDING);
293 flush_sigqueue(&t->pending);
294 flush_sigqueue(&t->signal->shared_pending);
295}
296
Oleg Nesterovc81addc2006-03-28 16:11:17 -0800297void flush_signals(struct task_struct *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
299 unsigned long flags;
300
301 spin_lock_irqsave(&t->sighand->siglock, flags);
David Howells3bcac022009-04-29 13:45:05 +0100302 __flush_signals(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 spin_unlock_irqrestore(&t->sighand->siglock, flags);
304}
305
Oleg Nesterovcbaffba2008-05-26 20:55:42 +0400306static void __flush_itimer_signals(struct sigpending *pending)
307{
308 sigset_t signal, retain;
309 struct sigqueue *q, *n;
310
311 signal = pending->signal;
312 sigemptyset(&retain);
313
314 list_for_each_entry_safe(q, n, &pending->list, list) {
315 int sig = q->info.si_signo;
316
317 if (likely(q->info.si_code != SI_TIMER)) {
318 sigaddset(&retain, sig);
319 } else {
320 sigdelset(&signal, sig);
321 list_del_init(&q->list);
322 __sigqueue_free(q);
323 }
324 }
325
326 sigorsets(&pending->signal, &signal, &retain);
327}
328
329void flush_itimer_signals(void)
330{
331 struct task_struct *tsk = current;
332 unsigned long flags;
333
334 spin_lock_irqsave(&tsk->sighand->siglock, flags);
335 __flush_itimer_signals(&tsk->pending);
336 __flush_itimer_signals(&tsk->signal->shared_pending);
337 spin_unlock_irqrestore(&tsk->sighand->siglock, flags);
338}
339
Oleg Nesterov10ab8252007-05-09 02:34:37 -0700340void ignore_signals(struct task_struct *t)
341{
342 int i;
343
344 for (i = 0; i < _NSIG; ++i)
345 t->sighand->action[i].sa.sa_handler = SIG_IGN;
346
347 flush_signals(t);
348}
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 * Flush all handlers for a task.
352 */
353
354void
355flush_signal_handlers(struct task_struct *t, int force_default)
356{
357 int i;
358 struct k_sigaction *ka = &t->sighand->action[0];
359 for (i = _NSIG ; i != 0 ; i--) {
360 if (force_default || ka->sa.sa_handler != SIG_IGN)
361 ka->sa.sa_handler = SIG_DFL;
362 ka->sa.sa_flags = 0;
363 sigemptyset(&ka->sa.sa_mask);
364 ka++;
365 }
366}
367
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200368int unhandled_signal(struct task_struct *tsk, int sig)
369{
Roland McGrath445a91d2008-07-25 19:45:52 -0700370 void __user *handler = tsk->sighand->action[sig-1].sa.sa_handler;
Serge E. Hallynb460cbc2007-10-18 23:39:52 -0700371 if (is_global_init(tsk))
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200372 return 1;
Roland McGrath445a91d2008-07-25 19:45:52 -0700373 if (handler != SIG_IGN && handler != SIG_DFL)
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200374 return 0;
Oleg Nesterov43918f22009-04-02 16:58:00 -0700375 return !tracehook_consider_fatal_signal(tsk, sig);
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200376}
377
Randy Dunlap5aba0852011-04-04 14:59:31 -0700378/*
379 * Notify the system that a driver wants to block all signals for this
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 * process, and wants to be notified if any signals at all were to be
381 * sent/acted upon. If the notifier routine returns non-zero, then the
382 * signal will be acted upon after all. If the notifier routine returns 0,
383 * then then signal will be blocked. Only one block per process is
384 * allowed. priv is a pointer to private data that the notifier routine
Randy Dunlap5aba0852011-04-04 14:59:31 -0700385 * can use to determine if the signal should be blocked or not.
386 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387void
388block_all_signals(int (*notifier)(void *priv), void *priv, sigset_t *mask)
389{
390 unsigned long flags;
391
392 spin_lock_irqsave(&current->sighand->siglock, flags);
393 current->notifier_mask = mask;
394 current->notifier_data = priv;
395 current->notifier = notifier;
396 spin_unlock_irqrestore(&current->sighand->siglock, flags);
397}
398
399/* Notify the system that blocking has ended. */
400
401void
402unblock_all_signals(void)
403{
404 unsigned long flags;
405
406 spin_lock_irqsave(&current->sighand->siglock, flags);
407 current->notifier = NULL;
408 current->notifier_data = NULL;
409 recalc_sigpending();
410 spin_unlock_irqrestore(&current->sighand->siglock, flags);
411}
412
Oleg Nesterov100360f2008-07-25 01:47:29 -0700413static void collect_signal(int sig, struct sigpending *list, siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
415 struct sigqueue *q, *first = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 /*
418 * Collect the siginfo appropriate to this signal. Check if
419 * there is another siginfo for the same signal.
420 */
421 list_for_each_entry(q, &list->list, list) {
422 if (q->info.si_signo == sig) {
Oleg Nesterovd4434202008-07-25 01:47:28 -0700423 if (first)
424 goto still_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 first = q;
426 }
427 }
Oleg Nesterovd4434202008-07-25 01:47:28 -0700428
429 sigdelset(&list->signal, sig);
430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 if (first) {
Oleg Nesterovd4434202008-07-25 01:47:28 -0700432still_pending:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 list_del_init(&first->list);
434 copy_siginfo(info, &first->info);
435 __sigqueue_free(first);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 } else {
Randy Dunlap5aba0852011-04-04 14:59:31 -0700437 /*
438 * Ok, it wasn't in the queue. This must be
439 * a fast-pathed signal or we must have been
440 * out of queue space. So zero out the info.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 info->si_signo = sig;
443 info->si_errno = 0;
Oleg Nesterov7486e5d2009-12-15 16:47:24 -0800444 info->si_code = SI_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 info->si_pid = 0;
446 info->si_uid = 0;
447 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448}
449
450static int __dequeue_signal(struct sigpending *pending, sigset_t *mask,
451 siginfo_t *info)
452{
Roland McGrath27d91e02006-09-29 02:00:31 -0700453 int sig = next_signal(pending, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 if (sig) {
456 if (current->notifier) {
457 if (sigismember(current->notifier_mask, sig)) {
458 if (!(current->notifier)(current->notifier_data)) {
459 clear_thread_flag(TIF_SIGPENDING);
460 return 0;
461 }
462 }
463 }
464
Oleg Nesterov100360f2008-07-25 01:47:29 -0700465 collect_signal(sig, pending, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468 return sig;
469}
470
471/*
Randy Dunlap5aba0852011-04-04 14:59:31 -0700472 * Dequeue a signal and return the element to the caller, which is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 * expected to free it.
474 *
475 * All callers have to hold the siglock.
476 */
477int dequeue_signal(struct task_struct *tsk, sigset_t *mask, siginfo_t *info)
478{
Pavel Emelyanovc5363d02008-04-30 00:52:40 -0700479 int signr;
Benjamin Herrenschmidtcaec4e82007-06-12 08:16:18 +1000480
481 /* We only dequeue private signals from ourselves, we don't let
482 * signalfd steal them
483 */
Davide Libenzib8fceee2007-09-20 12:40:16 -0700484 signr = __dequeue_signal(&tsk->pending, mask, info);
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800485 if (!signr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 signr = __dequeue_signal(&tsk->signal->shared_pending,
487 mask, info);
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800488 /*
489 * itimer signal ?
490 *
491 * itimers are process shared and we restart periodic
492 * itimers in the signal delivery path to prevent DoS
493 * attacks in the high resolution timer case. This is
Randy Dunlap5aba0852011-04-04 14:59:31 -0700494 * compliant with the old way of self-restarting
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800495 * itimers, as the SIGALRM is a legacy signal and only
496 * queued once. Changing the restart behaviour to
497 * restart the timer in the signal dequeue path is
498 * reducing the timer noise on heavy loaded !highres
499 * systems too.
500 */
501 if (unlikely(signr == SIGALRM)) {
502 struct hrtimer *tmr = &tsk->signal->real_timer;
503
504 if (!hrtimer_is_queued(tmr) &&
505 tsk->signal->it_real_incr.tv64 != 0) {
506 hrtimer_forward(tmr, tmr->base->get_time(),
507 tsk->signal->it_real_incr);
508 hrtimer_restart(tmr);
509 }
510 }
511 }
Pavel Emelyanovc5363d02008-04-30 00:52:40 -0700512
Davide Libenzib8fceee2007-09-20 12:40:16 -0700513 recalc_sigpending();
Pavel Emelyanovc5363d02008-04-30 00:52:40 -0700514 if (!signr)
515 return 0;
516
517 if (unlikely(sig_kernel_stop(signr))) {
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800518 /*
519 * Set a marker that we have dequeued a stop signal. Our
520 * caller might release the siglock and then the pending
521 * stop signal it is about to process is no longer in the
522 * pending bitmasks, but must still be cleared by a SIGCONT
523 * (and overruled by a SIGKILL). So those cases clear this
524 * shared flag after we've set it. Note that this flag may
525 * remain set after the signal we return is ignored or
526 * handled. That doesn't matter because its only purpose
527 * is to alert stop-signal processing code when another
528 * processor has come along and cleared the flag.
529 */
Oleg Nesterov92413d72008-07-25 01:47:30 -0700530 tsk->signal->flags |= SIGNAL_STOP_DEQUEUED;
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800531 }
Pavel Emelyanovc5363d02008-04-30 00:52:40 -0700532 if ((info->si_code & __SI_MASK) == __SI_TIMER && info->si_sys_private) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 /*
534 * Release the siglock to ensure proper locking order
535 * of timer locks outside of siglocks. Note, we leave
536 * irqs disabled here, since the posix-timers code is
537 * about to disable them again anyway.
538 */
539 spin_unlock(&tsk->sighand->siglock);
540 do_schedule_next_timer(info);
541 spin_lock(&tsk->sighand->siglock);
542 }
543 return signr;
544}
545
546/*
547 * Tell a process that it has a new active signal..
548 *
549 * NOTE! we rely on the previous spin_lock to
550 * lock interrupts for us! We can only be called with
551 * "siglock" held, and the local interrupt must
552 * have been disabled when that got acquired!
553 *
554 * No need to set need_resched since signal event passing
555 * goes through ->blocked
556 */
557void signal_wake_up(struct task_struct *t, int resume)
558{
559 unsigned int mask;
560
561 set_tsk_thread_flag(t, TIF_SIGPENDING);
562
563 /*
Matthew Wilcoxf021a3c2007-12-06 11:13:16 -0500564 * For SIGKILL, we want to wake it up in the stopped/traced/killable
565 * case. We don't check t->state here because there is a race with it
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 * executing another processor and just now entering stopped state.
567 * By using wake_up_state, we ensure the process will wake up and
568 * handle its death signal.
569 */
570 mask = TASK_INTERRUPTIBLE;
571 if (resume)
Matthew Wilcoxf021a3c2007-12-06 11:13:16 -0500572 mask |= TASK_WAKEKILL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 if (!wake_up_state(t, mask))
574 kick_process(t);
575}
576
577/*
578 * Remove signals in mask from the pending set and queue.
579 * Returns 1 if any signals were found.
580 *
581 * All callers must be holding the siglock.
George Anzinger71fabd52006-01-08 01:02:48 -0800582 *
583 * This version takes a sigset mask and looks at all signals,
584 * not just those in the first mask word.
585 */
586static int rm_from_queue_full(sigset_t *mask, struct sigpending *s)
587{
588 struct sigqueue *q, *n;
589 sigset_t m;
590
591 sigandsets(&m, mask, &s->signal);
592 if (sigisemptyset(&m))
593 return 0;
594
595 signandsets(&s->signal, &s->signal, mask);
596 list_for_each_entry_safe(q, n, &s->list, list) {
597 if (sigismember(mask, q->info.si_signo)) {
598 list_del_init(&q->list);
599 __sigqueue_free(q);
600 }
601 }
602 return 1;
603}
604/*
605 * Remove signals in mask from the pending set and queue.
606 * Returns 1 if any signals were found.
607 *
608 * All callers must be holding the siglock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 */
610static int rm_from_queue(unsigned long mask, struct sigpending *s)
611{
612 struct sigqueue *q, *n;
613
614 if (!sigtestsetmask(&s->signal, mask))
615 return 0;
616
617 sigdelsetmask(&s->signal, mask);
618 list_for_each_entry_safe(q, n, &s->list, list) {
619 if (q->info.si_signo < SIGRTMIN &&
620 (mask & sigmask(q->info.si_signo))) {
621 list_del_init(&q->list);
622 __sigqueue_free(q);
623 }
624 }
625 return 1;
626}
627
Oleg Nesterov614c5172009-12-15 16:47:22 -0800628static inline int is_si_special(const struct siginfo *info)
629{
630 return info <= SEND_SIG_FORCED;
631}
632
633static inline bool si_fromuser(const struct siginfo *info)
634{
635 return info == SEND_SIG_NOINFO ||
636 (!is_si_special(info) && SI_FROMUSER(info));
637}
638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639/*
Serge E. Hallyn39fd3392011-03-23 16:43:19 -0700640 * called with RCU read lock from check_kill_permission()
641 */
642static int kill_ok_by_cred(struct task_struct *t)
643{
644 const struct cred *cred = current_cred();
645 const struct cred *tcred = __task_cred(t);
646
647 if (cred->user->user_ns == tcred->user->user_ns &&
648 (cred->euid == tcred->suid ||
649 cred->euid == tcred->uid ||
650 cred->uid == tcred->suid ||
651 cred->uid == tcred->uid))
652 return 1;
653
654 if (ns_capable(tcred->user->user_ns, CAP_KILL))
655 return 1;
656
657 return 0;
658}
659
660/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 * Bad permissions for sending the signal
David Howells694f6902010-08-04 16:59:14 +0100662 * - the caller must hold the RCU read lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 */
664static int check_kill_permission(int sig, struct siginfo *info,
665 struct task_struct *t)
666{
Oleg Nesterov2e2ba222008-04-30 00:53:01 -0700667 struct pid *sid;
Oleg Nesterov3b5e9e52008-04-30 00:52:42 -0700668 int error;
669
Jesper Juhl7ed20e12005-05-01 08:59:14 -0700670 if (!valid_signal(sig))
Oleg Nesterov3b5e9e52008-04-30 00:52:42 -0700671 return -EINVAL;
672
Oleg Nesterov614c5172009-12-15 16:47:22 -0800673 if (!si_fromuser(info))
Oleg Nesterov3b5e9e52008-04-30 00:52:42 -0700674 return 0;
675
676 error = audit_signal_info(sig, t); /* Let audit system see the signal */
677 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 return error;
Amy Griffise54dc242007-03-29 18:01:04 -0400679
Oleg Nesterov065add32010-05-26 14:42:54 -0700680 if (!same_thread_group(current, t) &&
Serge E. Hallyn39fd3392011-03-23 16:43:19 -0700681 !kill_ok_by_cred(t)) {
Oleg Nesterov2e2ba222008-04-30 00:53:01 -0700682 switch (sig) {
683 case SIGCONT:
Oleg Nesterov2e2ba222008-04-30 00:53:01 -0700684 sid = task_session(t);
Oleg Nesterov2e2ba222008-04-30 00:53:01 -0700685 /*
686 * We don't return the error if sid == NULL. The
687 * task was unhashed, the caller must notice this.
688 */
689 if (!sid || sid == task_session(current))
690 break;
691 default:
692 return -EPERM;
693 }
694 }
Steve Grubbc2f0c7c2005-05-06 12:38:39 +0100695
Amy Griffise54dc242007-03-29 18:01:04 -0400696 return security_task_kill(t, info, sig, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697}
698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699/*
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700700 * Handle magic process-wide effects of stop/continue signals. Unlike
701 * the signal actions, these happen immediately at signal-generation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 * time regardless of blocking, ignoring, or handling. This does the
703 * actual continuing for SIGCONT, but not the actual stopping for stop
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700704 * signals. The process stop is done as a signal action for SIG_DFL.
705 *
706 * Returns true if the signal should be actually delivered, otherwise
707 * it should be dropped.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 */
Sukadev Bhattiprolu921cf9f2009-04-02 16:58:05 -0700709static int prepare_signal(int sig, struct task_struct *p, int from_ancestor_ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700711 struct signal_struct *signal = p->signal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 struct task_struct *t;
713
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700714 if (unlikely(signal->flags & SIGNAL_GROUP_EXIT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 /*
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700716 * The process is in the middle of dying, nothing to do.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 */
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700718 } else if (sig_kernel_stop(sig)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 /*
720 * This is a stop signal. Remove SIGCONT from all queues.
721 */
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700722 rm_from_queue(sigmask(SIGCONT), &signal->shared_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 t = p;
724 do {
725 rm_from_queue(sigmask(SIGCONT), &t->pending);
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700726 } while_each_thread(p, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 } else if (sig == SIGCONT) {
Oleg Nesterovfc321d22008-04-30 00:52:46 -0700728 unsigned int why;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 /*
730 * Remove all stop signals from all queues,
731 * and wake all threads.
732 */
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700733 rm_from_queue(SIG_KERNEL_STOP_MASK, &signal->shared_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 t = p;
735 do {
736 unsigned int state;
737 rm_from_queue(SIG_KERNEL_STOP_MASK, &t->pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 /*
739 * If there is a handler for SIGCONT, we must make
740 * sure that no thread returns to user mode before
741 * we post the signal, in case it was the only
742 * thread eligible to run the signal handler--then
743 * it must not do anything between resuming and
744 * running the handler. With the TIF_SIGPENDING
745 * flag set, the thread will pause and acquire the
746 * siglock that we hold now and until we've queued
Oleg Nesterovfc321d22008-04-30 00:52:46 -0700747 * the pending signal.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 *
749 * Wake up the stopped thread _after_ setting
750 * TIF_SIGPENDING
751 */
Matthew Wilcoxf021a3c2007-12-06 11:13:16 -0500752 state = __TASK_STOPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 if (sig_user_defined(t, SIGCONT) && !sigismember(&t->blocked, SIGCONT)) {
754 set_tsk_thread_flag(t, TIF_SIGPENDING);
755 state |= TASK_INTERRUPTIBLE;
756 }
757 wake_up_state(t, state);
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700758 } while_each_thread(p, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Oleg Nesterovfc321d22008-04-30 00:52:46 -0700760 /*
761 * Notify the parent with CLD_CONTINUED if we were stopped.
762 *
763 * If we were in the middle of a group stop, we pretend it
764 * was already finished, and then continued. Since SIGCHLD
765 * doesn't queue we report only CLD_STOPPED, as if the next
766 * CLD_CONTINUED was dropped.
767 */
768 why = 0;
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700769 if (signal->flags & SIGNAL_STOP_STOPPED)
Oleg Nesterovfc321d22008-04-30 00:52:46 -0700770 why |= SIGNAL_CLD_CONTINUED;
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700771 else if (signal->group_stop_count)
Oleg Nesterovfc321d22008-04-30 00:52:46 -0700772 why |= SIGNAL_CLD_STOPPED;
773
774 if (why) {
Oleg Nesterov021e1ae2008-04-30 00:53:00 -0700775 /*
Roland McGrathae6d2ed2009-09-23 15:56:53 -0700776 * The first thread which returns from do_signal_stop()
Oleg Nesterov021e1ae2008-04-30 00:53:00 -0700777 * will take ->siglock, notice SIGNAL_CLD_MASK, and
778 * notify its parent. See get_signal_to_deliver().
779 */
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700780 signal->flags = why | SIGNAL_STOP_CONTINUED;
781 signal->group_stop_count = 0;
782 signal->group_exit_code = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 } else {
784 /*
785 * We are not stopped, but there could be a stop
786 * signal in the middle of being processed after
787 * being removed from the queue. Clear that too.
788 */
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700789 signal->flags &= ~SIGNAL_STOP_DEQUEUED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 }
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700792
Sukadev Bhattiprolu921cf9f2009-04-02 16:58:05 -0700793 return !sig_ignored(p, sig, from_ancestor_ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794}
795
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700796/*
797 * Test if P wants to take SIG. After we've checked all threads with this,
798 * it's equivalent to finding no threads not blocking SIG. Any threads not
799 * blocking SIG were ruled out because they are not running and already
800 * have pending signals. Such threads will dequeue from the shared queue
801 * as soon as they're available, so putting the signal on the shared queue
802 * will be equivalent to sending it to one such thread.
803 */
804static inline int wants_signal(int sig, struct task_struct *p)
805{
806 if (sigismember(&p->blocked, sig))
807 return 0;
808 if (p->flags & PF_EXITING)
809 return 0;
810 if (sig == SIGKILL)
811 return 1;
812 if (task_is_stopped_or_traced(p))
813 return 0;
814 return task_curr(p) || !signal_pending(p);
815}
816
Oleg Nesterov5fcd8352008-04-30 00:52:55 -0700817static void complete_signal(int sig, struct task_struct *p, int group)
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700818{
819 struct signal_struct *signal = p->signal;
820 struct task_struct *t;
821
822 /*
823 * Now find a thread we can wake up to take the signal off the queue.
824 *
825 * If the main thread wants the signal, it gets first crack.
826 * Probably the least surprising to the average bear.
827 */
828 if (wants_signal(sig, p))
829 t = p;
Oleg Nesterov5fcd8352008-04-30 00:52:55 -0700830 else if (!group || thread_group_empty(p))
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700831 /*
832 * There is just one thread and it does not need to be woken.
833 * It will dequeue unblocked signals before it runs again.
834 */
835 return;
836 else {
837 /*
838 * Otherwise try to find a suitable thread.
839 */
840 t = signal->curr_target;
841 while (!wants_signal(sig, t)) {
842 t = next_thread(t);
843 if (t == signal->curr_target)
844 /*
845 * No thread needs to be woken.
846 * Any eligible threads will see
847 * the signal in the queue soon.
848 */
849 return;
850 }
851 signal->curr_target = t;
852 }
853
854 /*
855 * Found a killable thread. If the signal will be fatal,
856 * then start taking the whole group down immediately.
857 */
Oleg Nesterovfae5fa42008-04-30 00:53:03 -0700858 if (sig_fatal(p, sig) &&
859 !(signal->flags & (SIGNAL_UNKILLABLE | SIGNAL_GROUP_EXIT)) &&
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700860 !sigismember(&t->real_blocked, sig) &&
Roland McGrath445a91d2008-07-25 19:45:52 -0700861 (sig == SIGKILL ||
Oleg Nesterov43918f22009-04-02 16:58:00 -0700862 !tracehook_consider_fatal_signal(t, sig))) {
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700863 /*
864 * This signal will be fatal to the whole group.
865 */
866 if (!sig_kernel_coredump(sig)) {
867 /*
868 * Start a group exit and wake everybody up.
869 * This way we don't have other threads
870 * running and doing things after a slower
871 * thread has the fatal signal pending.
872 */
873 signal->flags = SIGNAL_GROUP_EXIT;
874 signal->group_exit_code = sig;
875 signal->group_stop_count = 0;
876 t = p;
877 do {
878 sigaddset(&t->pending.signal, SIGKILL);
879 signal_wake_up(t, 1);
880 } while_each_thread(p, t);
881 return;
882 }
883 }
884
885 /*
886 * The signal is already in the shared-pending queue.
887 * Tell the chosen thread to wake up and dequeue it.
888 */
889 signal_wake_up(t, sig == SIGKILL);
890 return;
891}
892
Pavel Emelyanovaf7fff92008-04-30 00:52:34 -0700893static inline int legacy_queue(struct sigpending *signals, int sig)
894{
895 return (sig < SIGRTMIN) && sigismember(&signals->signal, sig);
896}
897
Sukadev Bhattiprolu7978b562009-04-02 16:58:04 -0700898static int __send_signal(int sig, struct siginfo *info, struct task_struct *t,
899 int group, int from_ancestor_ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900{
Oleg Nesterov2ca35152008-04-30 00:52:54 -0700901 struct sigpending *pending;
Oleg Nesterov6e65acb2008-04-30 00:52:50 -0700902 struct sigqueue *q;
Vegard Nossum7a0aeb12009-05-16 11:28:33 +0200903 int override_rlimit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
Masami Hiramatsud1eb6502009-11-24 16:56:45 -0500905 trace_signal_generate(sig, info, t);
Mathieu Desnoyers0a16b602008-07-18 12:16:17 -0400906
Oleg Nesterov6e65acb2008-04-30 00:52:50 -0700907 assert_spin_locked(&t->sighand->siglock);
Sukadev Bhattiprolu921cf9f2009-04-02 16:58:05 -0700908
909 if (!prepare_signal(sig, t, from_ancestor_ns))
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700910 return 0;
Oleg Nesterov2ca35152008-04-30 00:52:54 -0700911
912 pending = group ? &t->signal->shared_pending : &t->pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 /*
Pavel Emelyanov2acb0242008-04-30 00:52:35 -0700914 * Short-circuit ignored signals and support queuing
915 * exactly one non-rt signal, so that we can get more
916 * detailed information about the cause of the signal.
917 */
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700918 if (legacy_queue(pending, sig))
Pavel Emelyanov2acb0242008-04-30 00:52:35 -0700919 return 0;
Davide Libenzifba2afa2007-05-10 22:23:13 -0700920 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 * fast-pathed signals for kernel-internal things like SIGSTOP
922 * or SIGKILL.
923 */
Oleg Nesterovb67a1b92005-10-30 15:03:44 -0800924 if (info == SEND_SIG_FORCED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 goto out_set;
926
Randy Dunlap5aba0852011-04-04 14:59:31 -0700927 /*
928 * Real-time signals must be queued if sent by sigqueue, or
929 * some other real-time mechanism. It is implementation
930 * defined whether kill() does so. We attempt to do so, on
931 * the principle of least surprise, but since kill is not
932 * allowed to fail with EAGAIN when low on memory we just
933 * make sure at least one signal gets delivered and don't
934 * pass on the info struct.
935 */
Vegard Nossum7a0aeb12009-05-16 11:28:33 +0200936 if (sig < SIGRTMIN)
937 override_rlimit = (is_si_special(info) || info->si_code >= 0);
938 else
939 override_rlimit = 0;
940
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +0900941 q = __sigqueue_alloc(sig, t, GFP_ATOMIC | __GFP_NOTRACK_FALSE_POSITIVE,
Vegard Nossum7a0aeb12009-05-16 11:28:33 +0200942 override_rlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 if (q) {
Oleg Nesterov2ca35152008-04-30 00:52:54 -0700944 list_add_tail(&q->list, &pending->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 switch ((unsigned long) info) {
Oleg Nesterovb67a1b92005-10-30 15:03:44 -0800946 case (unsigned long) SEND_SIG_NOINFO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 q->info.si_signo = sig;
948 q->info.si_errno = 0;
949 q->info.si_code = SI_USER;
Sukadev Bhattiprolu9cd4fd12009-01-06 14:42:46 -0800950 q->info.si_pid = task_tgid_nr_ns(current,
Sukadev Bhattiprolu09bca052009-01-06 14:42:45 -0800951 task_active_pid_ns(t));
David Howells76aac0e2008-11-14 10:39:12 +1100952 q->info.si_uid = current_uid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 break;
Oleg Nesterovb67a1b92005-10-30 15:03:44 -0800954 case (unsigned long) SEND_SIG_PRIV:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 q->info.si_signo = sig;
956 q->info.si_errno = 0;
957 q->info.si_code = SI_KERNEL;
958 q->info.si_pid = 0;
959 q->info.si_uid = 0;
960 break;
961 default:
962 copy_siginfo(&q->info, info);
Sukadev Bhattiprolu6588c1e2009-04-02 16:58:09 -0700963 if (from_ancestor_ns)
964 q->info.si_pid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 break;
966 }
Oleg Nesterov621d3122005-10-30 15:03:45 -0800967 } else if (!is_si_special(info)) {
Masami Hiramatsuba005e12009-11-24 16:56:58 -0500968 if (sig >= SIGRTMIN && info->si_code != SI_USER) {
969 /*
970 * Queue overflow, abort. We may abort if the
971 * signal was rt and sent by user using something
972 * other than kill().
973 */
974 trace_signal_overflow_fail(sig, group, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 return -EAGAIN;
Masami Hiramatsuba005e12009-11-24 16:56:58 -0500976 } else {
977 /*
978 * This is a silent loss of information. We still
979 * send the signal, but the *info bits are lost.
980 */
981 trace_signal_lose_info(sig, group, info);
982 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 }
984
985out_set:
Oleg Nesterov53c30332008-04-30 00:53:00 -0700986 signalfd_notify(t, sig);
Oleg Nesterov2ca35152008-04-30 00:52:54 -0700987 sigaddset(&pending->signal, sig);
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -0700988 complete_signal(sig, t, group);
989 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990}
991
Sukadev Bhattiprolu7978b562009-04-02 16:58:04 -0700992static int send_signal(int sig, struct siginfo *info, struct task_struct *t,
993 int group)
994{
Sukadev Bhattiprolu921cf9f2009-04-02 16:58:05 -0700995 int from_ancestor_ns = 0;
996
997#ifdef CONFIG_PID_NS
Oleg Nesterovdd342002009-12-15 16:47:24 -0800998 from_ancestor_ns = si_fromuser(info) &&
999 !task_pid_nr_ns(current, task_active_pid_ns(t));
Sukadev Bhattiprolu921cf9f2009-04-02 16:58:05 -07001000#endif
1001
1002 return __send_signal(sig, info, t, group, from_ancestor_ns);
Sukadev Bhattiprolu7978b562009-04-02 16:58:04 -07001003}
1004
Ingo Molnar45807a12007-07-15 23:40:10 -07001005static void print_fatal_signal(struct pt_regs *regs, int signr)
1006{
1007 printk("%s/%d: potentially unexpected fatal signal %d.\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001008 current->comm, task_pid_nr(current), signr);
Ingo Molnar45807a12007-07-15 23:40:10 -07001009
Al Viroca5cd872007-10-29 04:31:16 +00001010#if defined(__i386__) && !defined(__arch_um__)
H. Peter Anvin65ea5b02008-01-30 13:30:56 +01001011 printk("code at %08lx: ", regs->ip);
Ingo Molnar45807a12007-07-15 23:40:10 -07001012 {
1013 int i;
1014 for (i = 0; i < 16; i++) {
1015 unsigned char insn;
1016
Andi Kleenb45c6e72010-01-08 14:42:52 -08001017 if (get_user(insn, (unsigned char *)(regs->ip + i)))
1018 break;
Ingo Molnar45807a12007-07-15 23:40:10 -07001019 printk("%02x ", insn);
1020 }
1021 }
1022#endif
1023 printk("\n");
Ed Swierk3a9f84d2009-01-26 15:33:31 -08001024 preempt_disable();
Ingo Molnar45807a12007-07-15 23:40:10 -07001025 show_regs(regs);
Ed Swierk3a9f84d2009-01-26 15:33:31 -08001026 preempt_enable();
Ingo Molnar45807a12007-07-15 23:40:10 -07001027}
1028
1029static int __init setup_print_fatal_signals(char *str)
1030{
1031 get_option (&str, &print_fatal_signals);
1032
1033 return 1;
1034}
1035
1036__setup("print-fatal-signals=", setup_print_fatal_signals);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -07001038int
1039__group_send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
1040{
1041 return send_signal(sig, info, p, 1);
1042}
1043
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044static int
1045specific_send_sig_info(int sig, struct siginfo *info, struct task_struct *t)
1046{
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -07001047 return send_signal(sig, info, t, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048}
1049
Oleg Nesterov4a30deb2009-09-23 15:57:00 -07001050int do_send_sig_info(int sig, struct siginfo *info, struct task_struct *p,
1051 bool group)
1052{
1053 unsigned long flags;
1054 int ret = -ESRCH;
1055
1056 if (lock_task_sighand(p, &flags)) {
1057 ret = send_signal(sig, info, p, group);
1058 unlock_task_sighand(p, &flags);
1059 }
1060
1061 return ret;
1062}
1063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064/*
1065 * Force a signal that the process can't ignore: if necessary
1066 * we unblock the signal and change any SIG_IGN to SIG_DFL.
Linus Torvaldsae74c3b2006-08-02 20:17:49 -07001067 *
1068 * Note: If we unblock the signal, we always reset it to SIG_DFL,
1069 * since we do not want to have a signal handler that was blocked
1070 * be invoked when user space had explicitly blocked it.
1071 *
Oleg Nesterov80fe7282008-04-30 00:53:05 -07001072 * We don't want to have recursive SIGSEGV's etc, for example,
1073 * that is why we also clear SIGNAL_UNKILLABLE.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075int
1076force_sig_info(int sig, struct siginfo *info, struct task_struct *t)
1077{
1078 unsigned long int flags;
Linus Torvaldsae74c3b2006-08-02 20:17:49 -07001079 int ret, blocked, ignored;
1080 struct k_sigaction *action;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
1082 spin_lock_irqsave(&t->sighand->siglock, flags);
Linus Torvaldsae74c3b2006-08-02 20:17:49 -07001083 action = &t->sighand->action[sig-1];
1084 ignored = action->sa.sa_handler == SIG_IGN;
1085 blocked = sigismember(&t->blocked, sig);
1086 if (blocked || ignored) {
1087 action->sa.sa_handler = SIG_DFL;
1088 if (blocked) {
1089 sigdelset(&t->blocked, sig);
Roland McGrath7bb44ad2007-05-23 13:57:44 -07001090 recalc_sigpending_and_wake(t);
Linus Torvaldsae74c3b2006-08-02 20:17:49 -07001091 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 }
Oleg Nesterov80fe7282008-04-30 00:53:05 -07001093 if (action->sa.sa_handler == SIG_DFL)
1094 t->signal->flags &= ~SIGNAL_UNKILLABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 ret = specific_send_sig_info(sig, info, t);
1096 spin_unlock_irqrestore(&t->sighand->siglock, flags);
1097
1098 return ret;
1099}
1100
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101/*
1102 * Nuke all other threads in the group.
1103 */
Oleg Nesterov09faef12010-05-26 14:43:11 -07001104int zap_other_threads(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105{
Oleg Nesterov09faef12010-05-26 14:43:11 -07001106 struct task_struct *t = p;
1107 int count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 p->signal->group_stop_count = 0;
1110
Oleg Nesterov09faef12010-05-26 14:43:11 -07001111 while_each_thread(p, t) {
1112 count++;
1113
1114 /* Don't bother with already dead threads */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 if (t->exit_state)
1116 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 sigaddset(&t->pending.signal, SIGKILL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 signal_wake_up(t, 1);
1119 }
Oleg Nesterov09faef12010-05-26 14:43:11 -07001120
1121 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122}
1123
Namhyung Kimb8ed3742010-10-27 15:34:06 -07001124struct sighand_struct *__lock_task_sighand(struct task_struct *tsk,
1125 unsigned long *flags)
Oleg Nesterovf63ee722006-03-28 16:11:13 -08001126{
1127 struct sighand_struct *sighand;
1128
Oleg Nesterov1406f2d2008-04-30 00:52:37 -07001129 rcu_read_lock();
Oleg Nesterovf63ee722006-03-28 16:11:13 -08001130 for (;;) {
1131 sighand = rcu_dereference(tsk->sighand);
1132 if (unlikely(sighand == NULL))
1133 break;
1134
1135 spin_lock_irqsave(&sighand->siglock, *flags);
1136 if (likely(sighand == tsk->sighand))
1137 break;
1138 spin_unlock_irqrestore(&sighand->siglock, *flags);
1139 }
Oleg Nesterov1406f2d2008-04-30 00:52:37 -07001140 rcu_read_unlock();
Oleg Nesterovf63ee722006-03-28 16:11:13 -08001141
1142 return sighand;
1143}
1144
David Howellsc69e8d92008-11-14 10:39:19 +11001145/*
1146 * send signal info to all the members of a group
David Howellsc69e8d92008-11-14 10:39:19 +11001147 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148int group_send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
1149{
David Howells694f6902010-08-04 16:59:14 +01001150 int ret;
1151
1152 rcu_read_lock();
1153 ret = check_kill_permission(sig, info, p);
1154 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
Oleg Nesterov4a30deb2009-09-23 15:57:00 -07001156 if (!ret && sig)
1157 ret = do_send_sig_info(sig, info, p, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
1159 return ret;
1160}
1161
1162/*
Pavel Emelyanov146a5052008-02-08 04:19:22 -08001163 * __kill_pgrp_info() sends a signal to a process group: this is what the tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 * control characters do (^C, ^Z etc)
David Howellsc69e8d92008-11-14 10:39:19 +11001165 * - the caller must hold at least a readlock on tasklist_lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 */
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001167int __kill_pgrp_info(int sig, struct siginfo *info, struct pid *pgrp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168{
1169 struct task_struct *p = NULL;
1170 int retval, success;
1171
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 success = 0;
1173 retval = -ESRCH;
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001174 do_each_pid_task(pgrp, PIDTYPE_PGID, p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 int err = group_send_sig_info(sig, info, p);
1176 success |= !err;
1177 retval = err;
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001178 } while_each_pid_task(pgrp, PIDTYPE_PGID, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 return success ? 0 : retval;
1180}
1181
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001182int kill_pid_info(int sig, struct siginfo *info, struct pid *pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183{
Oleg Nesterovd36174b2008-02-08 04:19:18 -08001184 int error = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 struct task_struct *p;
1186
Ingo Molnare56d0902006-01-08 01:01:37 -08001187 rcu_read_lock();
Oleg Nesterovd36174b2008-02-08 04:19:18 -08001188retry:
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001189 p = pid_task(pid, PIDTYPE_PID);
Oleg Nesterovd36174b2008-02-08 04:19:18 -08001190 if (p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 error = group_send_sig_info(sig, info, p);
Oleg Nesterovd36174b2008-02-08 04:19:18 -08001192 if (unlikely(error == -ESRCH))
1193 /*
1194 * The task was unhashed in between, try again.
1195 * If it is dead, pid_task() will return NULL,
1196 * if we race with de_thread() it will find the
1197 * new leader.
1198 */
1199 goto retry;
1200 }
Ingo Molnare56d0902006-01-08 01:01:37 -08001201 rcu_read_unlock();
Oleg Nesterov6ca25b52008-04-30 00:52:45 -07001202
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 return error;
1204}
1205
Randy Dunlap5aba0852011-04-04 14:59:31 -07001206int kill_proc_info(int sig, struct siginfo *info, pid_t pid)
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001207{
1208 int error;
1209 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001210 error = kill_pid_info(sig, info, find_vpid(pid));
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001211 rcu_read_unlock();
1212 return error;
1213}
1214
Eric W. Biederman2425c082006-10-02 02:17:28 -07001215/* like kill_pid_info(), but doesn't use uid/euid of "current" */
1216int kill_pid_info_as_uid(int sig, struct siginfo *info, struct pid *pid,
David Quigley8f95dc52006-06-30 01:55:47 -07001217 uid_t uid, uid_t euid, u32 secid)
Harald Welte46113832005-10-10 19:44:29 +02001218{
1219 int ret = -EINVAL;
1220 struct task_struct *p;
David Howellsc69e8d92008-11-14 10:39:19 +11001221 const struct cred *pcred;
Thomas Gleixner14d8c9f2009-12-10 00:53:17 +00001222 unsigned long flags;
Harald Welte46113832005-10-10 19:44:29 +02001223
1224 if (!valid_signal(sig))
1225 return ret;
1226
Thomas Gleixner14d8c9f2009-12-10 00:53:17 +00001227 rcu_read_lock();
Eric W. Biederman2425c082006-10-02 02:17:28 -07001228 p = pid_task(pid, PIDTYPE_PID);
Harald Welte46113832005-10-10 19:44:29 +02001229 if (!p) {
1230 ret = -ESRCH;
1231 goto out_unlock;
1232 }
David Howellsc69e8d92008-11-14 10:39:19 +11001233 pcred = __task_cred(p);
Oleg Nesterov614c5172009-12-15 16:47:22 -08001234 if (si_fromuser(info) &&
David Howellsc69e8d92008-11-14 10:39:19 +11001235 euid != pcred->suid && euid != pcred->uid &&
1236 uid != pcred->suid && uid != pcred->uid) {
Harald Welte46113832005-10-10 19:44:29 +02001237 ret = -EPERM;
1238 goto out_unlock;
1239 }
David Quigley8f95dc52006-06-30 01:55:47 -07001240 ret = security_task_kill(p, info, sig, secid);
1241 if (ret)
1242 goto out_unlock;
Thomas Gleixner14d8c9f2009-12-10 00:53:17 +00001243
1244 if (sig) {
1245 if (lock_task_sighand(p, &flags)) {
1246 ret = __send_signal(sig, info, p, 1, 0);
1247 unlock_task_sighand(p, &flags);
1248 } else
1249 ret = -ESRCH;
Harald Welte46113832005-10-10 19:44:29 +02001250 }
1251out_unlock:
Thomas Gleixner14d8c9f2009-12-10 00:53:17 +00001252 rcu_read_unlock();
Harald Welte46113832005-10-10 19:44:29 +02001253 return ret;
1254}
Eric W. Biederman2425c082006-10-02 02:17:28 -07001255EXPORT_SYMBOL_GPL(kill_pid_info_as_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
1257/*
1258 * kill_something_info() interprets pid in interesting ways just like kill(2).
1259 *
1260 * POSIX specifies that kill(-1,sig) is unspecified, but what we have
1261 * is probably wrong. Should make it like BSD or SYSV.
1262 */
1263
Gustavo Fernando Padovanbc64efd2008-07-25 01:47:33 -07001264static int kill_something_info(int sig, struct siginfo *info, pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265{
Eric W. Biederman8d42db182007-02-12 00:52:55 -08001266 int ret;
Pavel Emelyanovd5df7632008-02-08 04:19:22 -08001267
1268 if (pid > 0) {
1269 rcu_read_lock();
1270 ret = kill_pid_info(sig, info, find_vpid(pid));
1271 rcu_read_unlock();
1272 return ret;
1273 }
1274
1275 read_lock(&tasklist_lock);
1276 if (pid != -1) {
1277 ret = __kill_pgrp_info(sig, info,
1278 pid ? find_vpid(-pid) : task_pgrp(current));
1279 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 int retval = 0, count = 0;
1281 struct task_struct * p;
1282
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 for_each_process(p) {
Sukadev Bhattiprolud25141a2008-10-29 14:01:11 -07001284 if (task_pid_vnr(p) > 1 &&
1285 !same_thread_group(p, current)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 int err = group_send_sig_info(sig, info, p);
1287 ++count;
1288 if (err != -EPERM)
1289 retval = err;
1290 }
1291 }
Eric W. Biederman8d42db182007-02-12 00:52:55 -08001292 ret = count ? retval : -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 }
Pavel Emelyanovd5df7632008-02-08 04:19:22 -08001294 read_unlock(&tasklist_lock);
1295
Eric W. Biederman8d42db182007-02-12 00:52:55 -08001296 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297}
1298
1299/*
1300 * These are for backward compatibility with the rest of the kernel source.
1301 */
1302
Randy Dunlap5aba0852011-04-04 14:59:31 -07001303int send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 /*
1306 * Make sure legacy kernel users don't send in bad values
1307 * (normal paths check this in check_kill_permission).
1308 */
Jesper Juhl7ed20e12005-05-01 08:59:14 -07001309 if (!valid_signal(sig))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 return -EINVAL;
1311
Oleg Nesterov4a30deb2009-09-23 15:57:00 -07001312 return do_send_sig_info(sig, info, p, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313}
1314
Oleg Nesterovb67a1b92005-10-30 15:03:44 -08001315#define __si_special(priv) \
1316 ((priv) ? SEND_SIG_PRIV : SEND_SIG_NOINFO)
1317
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318int
1319send_sig(int sig, struct task_struct *p, int priv)
1320{
Oleg Nesterovb67a1b92005-10-30 15:03:44 -08001321 return send_sig_info(sig, __si_special(priv), p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322}
1323
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324void
1325force_sig(int sig, struct task_struct *p)
1326{
Oleg Nesterovb67a1b92005-10-30 15:03:44 -08001327 force_sig_info(sig, SEND_SIG_PRIV, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328}
1329
1330/*
1331 * When things go south during signal handling, we
1332 * will force a SIGSEGV. And if the signal that caused
1333 * the problem was already a SIGSEGV, we'll want to
1334 * make sure we don't even try to deliver the signal..
1335 */
1336int
1337force_sigsegv(int sig, struct task_struct *p)
1338{
1339 if (sig == SIGSEGV) {
1340 unsigned long flags;
1341 spin_lock_irqsave(&p->sighand->siglock, flags);
1342 p->sighand->action[sig - 1].sa.sa_handler = SIG_DFL;
1343 spin_unlock_irqrestore(&p->sighand->siglock, flags);
1344 }
1345 force_sig(SIGSEGV, p);
1346 return 0;
1347}
1348
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001349int kill_pgrp(struct pid *pid, int sig, int priv)
1350{
Pavel Emelyanov146a5052008-02-08 04:19:22 -08001351 int ret;
1352
1353 read_lock(&tasklist_lock);
1354 ret = __kill_pgrp_info(sig, __si_special(priv), pid);
1355 read_unlock(&tasklist_lock);
1356
1357 return ret;
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001358}
1359EXPORT_SYMBOL(kill_pgrp);
1360
1361int kill_pid(struct pid *pid, int sig, int priv)
1362{
1363 return kill_pid_info(sig, __si_special(priv), pid);
1364}
1365EXPORT_SYMBOL(kill_pid);
1366
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367/*
1368 * These functions support sending signals using preallocated sigqueue
1369 * structures. This is needed "because realtime applications cannot
1370 * afford to lose notifications of asynchronous events, like timer
Randy Dunlap5aba0852011-04-04 14:59:31 -07001371 * expirations or I/O completions". In the case of POSIX Timers
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 * we allocate the sigqueue structure from the timer_create. If this
1373 * allocation fails we are able to report the failure to the application
1374 * with an EAGAIN error.
1375 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376struct sigqueue *sigqueue_alloc(void)
1377{
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +09001378 struct sigqueue *q = __sigqueue_alloc(-1, current, GFP_KERNEL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +09001380 if (q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 q->flags |= SIGQUEUE_PREALLOC;
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +09001382
1383 return q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384}
1385
1386void sigqueue_free(struct sigqueue *q)
1387{
1388 unsigned long flags;
Oleg Nesterov60187d22007-08-30 23:56:35 -07001389 spinlock_t *lock = &current->sighand->siglock;
1390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 BUG_ON(!(q->flags & SIGQUEUE_PREALLOC));
1392 /*
Oleg Nesterovc8e85b4f2008-05-26 20:55:42 +04001393 * We must hold ->siglock while testing q->list
1394 * to serialize with collect_signal() or with
Oleg Nesterovda7978b2008-05-23 13:04:41 -07001395 * __exit_signal()->flush_sigqueue().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 */
Oleg Nesterov60187d22007-08-30 23:56:35 -07001397 spin_lock_irqsave(lock, flags);
Oleg Nesterovc8e85b4f2008-05-26 20:55:42 +04001398 q->flags &= ~SIGQUEUE_PREALLOC;
1399 /*
1400 * If it is queued it will be freed when dequeued,
1401 * like the "regular" sigqueue.
1402 */
Oleg Nesterov60187d22007-08-30 23:56:35 -07001403 if (!list_empty(&q->list))
Oleg Nesterovc8e85b4f2008-05-26 20:55:42 +04001404 q = NULL;
Oleg Nesterov60187d22007-08-30 23:56:35 -07001405 spin_unlock_irqrestore(lock, flags);
1406
Oleg Nesterovc8e85b4f2008-05-26 20:55:42 +04001407 if (q)
1408 __sigqueue_free(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409}
1410
Oleg Nesterovac5c2152008-04-30 00:52:57 -07001411int send_sigqueue(struct sigqueue *q, struct task_struct *t, int group)
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001412{
Oleg Nesterove62e6652008-04-30 00:52:56 -07001413 int sig = q->info.si_signo;
Oleg Nesterov2ca35152008-04-30 00:52:54 -07001414 struct sigpending *pending;
Oleg Nesterove62e6652008-04-30 00:52:56 -07001415 unsigned long flags;
1416 int ret;
Oleg Nesterov2ca35152008-04-30 00:52:54 -07001417
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -07001418 BUG_ON(!(q->flags & SIGQUEUE_PREALLOC));
Oleg Nesterove62e6652008-04-30 00:52:56 -07001419
1420 ret = -1;
1421 if (!likely(lock_task_sighand(t, &flags)))
1422 goto ret;
1423
Oleg Nesterov7e695a52008-04-30 00:52:59 -07001424 ret = 1; /* the signal is ignored */
Sukadev Bhattiprolu921cf9f2009-04-02 16:58:05 -07001425 if (!prepare_signal(sig, t, 0))
Oleg Nesterove62e6652008-04-30 00:52:56 -07001426 goto out;
1427
1428 ret = 0;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001429 if (unlikely(!list_empty(&q->list))) {
1430 /*
1431 * If an SI_TIMER entry is already queue just increment
1432 * the overrun count.
1433 */
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001434 BUG_ON(q->info.si_code != SI_TIMER);
1435 q->info.si_overrun++;
Oleg Nesterove62e6652008-04-30 00:52:56 -07001436 goto out;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001437 }
Oleg Nesterovba661292008-07-23 20:52:05 +04001438 q->info.si_overrun = 0;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001439
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001440 signalfd_notify(t, sig);
Oleg Nesterov2ca35152008-04-30 00:52:54 -07001441 pending = group ? &t->signal->shared_pending : &t->pending;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001442 list_add_tail(&q->list, &pending->list);
1443 sigaddset(&pending->signal, sig);
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -07001444 complete_signal(sig, t, group);
Oleg Nesterove62e6652008-04-30 00:52:56 -07001445out:
1446 unlock_task_sighand(t, &flags);
1447ret:
1448 return ret;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001449}
1450
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 * Let a parent know about the death of a child.
1453 * For a stopped/continued status change, use do_notify_parent_cldstop instead.
Roland McGrath2b2a1ff2008-07-25 19:45:54 -07001454 *
1455 * Returns -1 if our parent ignored us and so we've switched to
1456 * self-reaping, or else @sig.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 */
Roland McGrath2b2a1ff2008-07-25 19:45:54 -07001458int do_notify_parent(struct task_struct *tsk, int sig)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459{
1460 struct siginfo info;
1461 unsigned long flags;
1462 struct sighand_struct *psig;
Roland McGrath1b046242008-08-19 20:37:07 -07001463 int ret = sig;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
1465 BUG_ON(sig == -1);
1466
1467 /* do_notify_parent_cldstop should have been called instead. */
Matthew Wilcoxe1abb392007-12-06 11:07:35 -05001468 BUG_ON(task_is_stopped_or_traced(tsk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
Oleg Nesterov5cb11442009-06-17 16:27:30 -07001470 BUG_ON(!task_ptrace(tsk) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 (tsk->group_leader != tsk || !thread_group_empty(tsk)));
1472
1473 info.si_signo = sig;
1474 info.si_errno = 0;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001475 /*
1476 * we are under tasklist_lock here so our parent is tied to
1477 * us and cannot exit and release its namespace.
1478 *
1479 * the only it can is to switch its nsproxy with sys_unshare,
1480 * bu uncharing pid namespaces is not allowed, so we'll always
1481 * see relevant namespace
1482 *
1483 * write_lock() currently calls preempt_disable() which is the
1484 * same as rcu_read_lock(), but according to Oleg, this is not
1485 * correct to rely on this
1486 */
1487 rcu_read_lock();
1488 info.si_pid = task_pid_nr_ns(tsk, tsk->parent->nsproxy->pid_ns);
David Howellsc69e8d92008-11-14 10:39:19 +11001489 info.si_uid = __task_cred(tsk)->uid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001490 rcu_read_unlock();
1491
Peter Zijlstra32bd6712009-02-05 12:24:15 +01001492 info.si_utime = cputime_to_clock_t(cputime_add(tsk->utime,
1493 tsk->signal->utime));
1494 info.si_stime = cputime_to_clock_t(cputime_add(tsk->stime,
1495 tsk->signal->stime));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
1497 info.si_status = tsk->exit_code & 0x7f;
1498 if (tsk->exit_code & 0x80)
1499 info.si_code = CLD_DUMPED;
1500 else if (tsk->exit_code & 0x7f)
1501 info.si_code = CLD_KILLED;
1502 else {
1503 info.si_code = CLD_EXITED;
1504 info.si_status = tsk->exit_code >> 8;
1505 }
1506
1507 psig = tsk->parent->sighand;
1508 spin_lock_irqsave(&psig->siglock, flags);
Oleg Nesterov5cb11442009-06-17 16:27:30 -07001509 if (!task_ptrace(tsk) && sig == SIGCHLD &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 (psig->action[SIGCHLD-1].sa.sa_handler == SIG_IGN ||
1511 (psig->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDWAIT))) {
1512 /*
1513 * We are exiting and our parent doesn't care. POSIX.1
1514 * defines special semantics for setting SIGCHLD to SIG_IGN
1515 * or setting the SA_NOCLDWAIT flag: we should be reaped
1516 * automatically and not left for our parent's wait4 call.
1517 * Rather than having the parent do it as a magic kind of
1518 * signal handler, we just set this to tell do_exit that we
1519 * can be cleaned up without becoming a zombie. Note that
1520 * we still call __wake_up_parent in this case, because a
1521 * blocked sys_wait4 might now return -ECHILD.
1522 *
1523 * Whether we send SIGCHLD or not for SA_NOCLDWAIT
1524 * is implementation-defined: we do (if you don't want
1525 * it, just use SIG_IGN instead).
1526 */
Roland McGrath1b046242008-08-19 20:37:07 -07001527 ret = tsk->exit_signal = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 if (psig->action[SIGCHLD-1].sa.sa_handler == SIG_IGN)
Roland McGrath2b2a1ff2008-07-25 19:45:54 -07001529 sig = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 }
Jesper Juhl7ed20e12005-05-01 08:59:14 -07001531 if (valid_signal(sig) && sig > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 __group_send_sig_info(sig, &info, tsk->parent);
1533 __wake_up_parent(tsk, tsk->parent);
1534 spin_unlock_irqrestore(&psig->siglock, flags);
Roland McGrath2b2a1ff2008-07-25 19:45:54 -07001535
Roland McGrath1b046242008-08-19 20:37:07 -07001536 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537}
1538
Oleg Nesterova1d5e212006-03-28 16:11:29 -08001539static void do_notify_parent_cldstop(struct task_struct *tsk, int why)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540{
1541 struct siginfo info;
1542 unsigned long flags;
Oleg Nesterovbc505a42005-09-06 15:17:32 -07001543 struct task_struct *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 struct sighand_struct *sighand;
1545
Oleg Nesterov5cb11442009-06-17 16:27:30 -07001546 if (task_ptrace(tsk))
Oleg Nesterovbc505a42005-09-06 15:17:32 -07001547 parent = tsk->parent;
1548 else {
1549 tsk = tsk->group_leader;
1550 parent = tsk->real_parent;
1551 }
1552
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 info.si_signo = SIGCHLD;
1554 info.si_errno = 0;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001555 /*
Randy Dunlap5aba0852011-04-04 14:59:31 -07001556 * see comment in do_notify_parent() about the following 4 lines
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001557 */
1558 rcu_read_lock();
Oleg Nesterovd9265662009-06-17 16:27:35 -07001559 info.si_pid = task_pid_nr_ns(tsk, parent->nsproxy->pid_ns);
David Howellsc69e8d92008-11-14 10:39:19 +11001560 info.si_uid = __task_cred(tsk)->uid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001561 rcu_read_unlock();
1562
Michael Kerriskd8878ba2008-07-25 01:47:32 -07001563 info.si_utime = cputime_to_clock_t(tsk->utime);
1564 info.si_stime = cputime_to_clock_t(tsk->stime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
1566 info.si_code = why;
1567 switch (why) {
1568 case CLD_CONTINUED:
1569 info.si_status = SIGCONT;
1570 break;
1571 case CLD_STOPPED:
1572 info.si_status = tsk->signal->group_exit_code & 0x7f;
1573 break;
1574 case CLD_TRAPPED:
1575 info.si_status = tsk->exit_code & 0x7f;
1576 break;
1577 default:
1578 BUG();
1579 }
1580
1581 sighand = parent->sighand;
1582 spin_lock_irqsave(&sighand->siglock, flags);
1583 if (sighand->action[SIGCHLD-1].sa.sa_handler != SIG_IGN &&
1584 !(sighand->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDSTOP))
1585 __group_send_sig_info(SIGCHLD, &info, parent);
1586 /*
1587 * Even if SIGCHLD is not generated, we must wake up wait4 calls.
1588 */
1589 __wake_up_parent(tsk, parent);
1590 spin_unlock_irqrestore(&sighand->siglock, flags);
1591}
1592
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001593static inline int may_ptrace_stop(void)
1594{
Oleg Nesterov5cb11442009-06-17 16:27:30 -07001595 if (!likely(task_ptrace(current)))
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001596 return 0;
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001597 /*
1598 * Are we in the middle of do_coredump?
1599 * If so and our tracer is also part of the coredump stopping
1600 * is a deadlock situation, and pointless because our tracer
1601 * is dead so don't allow us to stop.
1602 * If SIGKILL was already sent before the caller unlocked
Oleg Nesterov999d9fc2008-07-25 01:47:41 -07001603 * ->siglock we must see ->core_state != NULL. Otherwise it
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001604 * is safe to enter schedule().
1605 */
Oleg Nesterov999d9fc2008-07-25 01:47:41 -07001606 if (unlikely(current->mm->core_state) &&
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001607 unlikely(current->mm == current->parent->mm))
1608 return 0;
1609
1610 return 1;
1611}
1612
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613/*
Randy Dunlap5aba0852011-04-04 14:59:31 -07001614 * Return non-zero if there is a SIGKILL that should be waking us up.
Roland McGrath1a669c22008-02-06 01:37:37 -08001615 * Called with the siglock held.
1616 */
1617static int sigkill_pending(struct task_struct *tsk)
1618{
Oleg Nesterov3d749b92008-07-25 01:47:37 -07001619 return sigismember(&tsk->pending.signal, SIGKILL) ||
1620 sigismember(&tsk->signal->shared_pending.signal, SIGKILL);
Roland McGrath1a669c22008-02-06 01:37:37 -08001621}
1622
1623/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 * This must be called with current->sighand->siglock held.
1625 *
1626 * This should be the path for all ptrace stops.
1627 * We always set current->last_siginfo while stopped here.
1628 * That makes it a way to test a stopped process for
1629 * being ptrace-stopped vs being job-control-stopped.
1630 *
Oleg Nesterov20686a32008-02-08 04:19:03 -08001631 * If we actually decide not to stop at all because the tracer
1632 * is gone, we keep current->exit_code unless clear_code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 */
Oleg Nesterov20686a32008-02-08 04:19:03 -08001634static void ptrace_stop(int exit_code, int clear_code, siginfo_t *info)
Namhyung Kimb8401152010-10-27 15:34:07 -07001635 __releases(&current->sighand->siglock)
1636 __acquires(&current->sighand->siglock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637{
Roland McGrath1a669c22008-02-06 01:37:37 -08001638 if (arch_ptrace_stop_needed(exit_code, info)) {
1639 /*
1640 * The arch code has something special to do before a
1641 * ptrace stop. This is allowed to block, e.g. for faults
1642 * on user stack pages. We can't keep the siglock while
1643 * calling arch_ptrace_stop, so we must release it now.
1644 * To preserve proper semantics, we must do this before
1645 * any signal bookkeeping like checking group_stop_count.
1646 * Meanwhile, a SIGKILL could come in before we retake the
1647 * siglock. That must prevent us from sleeping in TASK_TRACED.
1648 * So after regaining the lock, we must check for SIGKILL.
1649 */
1650 spin_unlock_irq(&current->sighand->siglock);
1651 arch_ptrace_stop(exit_code, info);
1652 spin_lock_irq(&current->sighand->siglock);
Oleg Nesterov3d749b92008-07-25 01:47:37 -07001653 if (sigkill_pending(current))
1654 return;
Roland McGrath1a669c22008-02-06 01:37:37 -08001655 }
1656
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 /*
1658 * If there is a group stop in progress,
1659 * we must participate in the bookkeeping.
1660 */
1661 if (current->signal->group_stop_count > 0)
1662 --current->signal->group_stop_count;
1663
1664 current->last_siginfo = info;
1665 current->exit_code = exit_code;
1666
1667 /* Let the debugger run. */
Oleg Nesterovd9ae90a2008-02-06 01:36:13 -08001668 __set_current_state(TASK_TRACED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 spin_unlock_irq(&current->sighand->siglock);
1670 read_lock(&tasklist_lock);
Oleg Nesterov3d749b92008-07-25 01:47:37 -07001671 if (may_ptrace_stop()) {
Oleg Nesterova1d5e212006-03-28 16:11:29 -08001672 do_notify_parent_cldstop(current, CLD_TRAPPED);
Miklos Szeredi53da1d92009-03-23 16:07:24 +01001673 /*
1674 * Don't want to allow preemption here, because
1675 * sys_ptrace() needs this task to be inactive.
1676 *
1677 * XXX: implement read_unlock_no_resched().
1678 */
1679 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 read_unlock(&tasklist_lock);
Miklos Szeredi53da1d92009-03-23 16:07:24 +01001681 preempt_enable_no_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 schedule();
1683 } else {
1684 /*
1685 * By the time we got the lock, our tracer went away.
Oleg Nesterov6405f7f2008-02-08 04:19:00 -08001686 * Don't drop the lock yet, another tracer may come.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 */
Oleg Nesterov6405f7f2008-02-08 04:19:00 -08001688 __set_current_state(TASK_RUNNING);
Oleg Nesterov20686a32008-02-08 04:19:03 -08001689 if (clear_code)
1690 current->exit_code = 0;
Oleg Nesterov6405f7f2008-02-08 04:19:00 -08001691 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 }
1693
1694 /*
Roland McGrath13b1c3d2008-03-03 20:22:05 -08001695 * While in TASK_TRACED, we were considered "frozen enough".
1696 * Now that we woke up, it's crucial if we're supposed to be
1697 * frozen that we freeze now before running anything substantial.
1698 */
1699 try_to_freeze();
1700
1701 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 * We are back. Now reacquire the siglock before touching
1703 * last_siginfo, so that we are sure to have synchronized with
1704 * any signal-sending on another CPU that wants to examine it.
1705 */
1706 spin_lock_irq(&current->sighand->siglock);
1707 current->last_siginfo = NULL;
1708
1709 /*
1710 * Queued signals ignored us while we were stopped for tracing.
1711 * So check for any that we should take before resuming user mode.
Roland McGrathb74d0de2007-06-06 03:59:00 -07001712 * This sets TIF_SIGPENDING, but never clears it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 */
Roland McGrathb74d0de2007-06-06 03:59:00 -07001714 recalc_sigpending_tsk(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715}
1716
1717void ptrace_notify(int exit_code)
1718{
1719 siginfo_t info;
1720
1721 BUG_ON((exit_code & (0x7f | ~0xffff)) != SIGTRAP);
1722
1723 memset(&info, 0, sizeof info);
1724 info.si_signo = SIGTRAP;
1725 info.si_code = exit_code;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001726 info.si_pid = task_pid_vnr(current);
David Howells76aac0e2008-11-14 10:39:12 +11001727 info.si_uid = current_uid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
1729 /* Let the debugger run. */
1730 spin_lock_irq(&current->sighand->siglock);
Oleg Nesterov20686a32008-02-08 04:19:03 -08001731 ptrace_stop(exit_code, 1, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 spin_unlock_irq(&current->sighand->siglock);
1733}
1734
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735/*
1736 * This performs the stopping for SIGSTOP and other stop signals.
1737 * We have to stop all threads in the thread group.
Randy Dunlap5aba0852011-04-04 14:59:31 -07001738 * Returns non-zero if we've actually stopped and released the siglock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 * Returns zero if we didn't stop and still hold the siglock.
1740 */
Oleg Nesterova122b342006-03-28 16:11:22 -08001741static int do_signal_stop(int signr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742{
1743 struct signal_struct *sig = current->signal;
Roland McGrathae6d2ed2009-09-23 15:56:53 -07001744 int notify;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745
Roland McGrathae6d2ed2009-09-23 15:56:53 -07001746 if (!sig->group_stop_count) {
Oleg Nesterovf558b7e2008-02-04 22:27:24 -08001747 struct task_struct *t;
1748
Oleg Nesterov2b201a92008-07-25 01:47:31 -07001749 if (!likely(sig->flags & SIGNAL_STOP_DEQUEUED) ||
Oleg Nesterov573cf9a2008-04-30 00:52:36 -07001750 unlikely(signal_group_exit(sig)))
Oleg Nesterovf558b7e2008-02-04 22:27:24 -08001751 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 * There is no group stop already in progress.
Oleg Nesterova122b342006-03-28 16:11:22 -08001754 * We must initiate one now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 */
Oleg Nesterova122b342006-03-28 16:11:22 -08001756 sig->group_exit_code = signr;
1757
Roland McGrathae6d2ed2009-09-23 15:56:53 -07001758 sig->group_stop_count = 1;
Oleg Nesterova122b342006-03-28 16:11:22 -08001759 for (t = next_thread(current); t != current; t = next_thread(t))
1760 /*
1761 * Setting state to TASK_STOPPED for a group
1762 * stop is always done with the siglock held,
1763 * so this check has no races.
1764 */
Oleg Nesterovd12619b2008-02-08 04:19:12 -08001765 if (!(t->flags & PF_EXITING) &&
Matthew Wilcoxe1abb392007-12-06 11:07:35 -05001766 !task_is_stopped_or_traced(t)) {
Roland McGrathae6d2ed2009-09-23 15:56:53 -07001767 sig->group_stop_count++;
Oleg Nesterova122b342006-03-28 16:11:22 -08001768 signal_wake_up(t, 0);
1769 }
Roland McGrathae6d2ed2009-09-23 15:56:53 -07001770 }
1771 /*
1772 * If there are no other threads in the group, or if there is
1773 * a group stop in progress and we are the last to stop, report
1774 * to the parent. When ptraced, every thread reports itself.
1775 */
1776 notify = sig->group_stop_count == 1 ? CLD_STOPPED : 0;
1777 notify = tracehook_notify_jctl(notify, CLD_STOPPED);
1778 /*
1779 * tracehook_notify_jctl() can drop and reacquire siglock, so
1780 * we keep ->group_stop_count != 0 before the call. If SIGCONT
1781 * or SIGKILL comes in between ->group_stop_count == 0.
1782 */
1783 if (sig->group_stop_count) {
1784 if (!--sig->group_stop_count)
1785 sig->flags = SIGNAL_STOP_STOPPED;
1786 current->exit_code = sig->group_exit_code;
1787 __set_current_state(TASK_STOPPED);
1788 }
1789 spin_unlock_irq(&current->sighand->siglock);
1790
1791 if (notify) {
1792 read_lock(&tasklist_lock);
1793 do_notify_parent_cldstop(current, notify);
1794 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 }
1796
Roland McGrathae6d2ed2009-09-23 15:56:53 -07001797 /* Now we don't run again until woken by SIGCONT or SIGKILL */
1798 do {
1799 schedule();
1800 } while (try_to_freeze());
Oleg Nesterovdac27f42006-03-28 16:11:28 -08001801
Roland McGrathae6d2ed2009-09-23 15:56:53 -07001802 tracehook_finish_jctl();
1803 current->exit_code = 0;
1804
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 return 1;
1806}
1807
Roland McGrath18c98b62008-04-17 18:44:38 -07001808static int ptrace_signal(int signr, siginfo_t *info,
1809 struct pt_regs *regs, void *cookie)
1810{
Oleg Nesterov5cb11442009-06-17 16:27:30 -07001811 if (!task_ptrace(current))
Roland McGrath18c98b62008-04-17 18:44:38 -07001812 return signr;
1813
1814 ptrace_signal_deliver(regs, cookie);
1815
1816 /* Let the debugger run. */
1817 ptrace_stop(signr, 0, info);
1818
1819 /* We're back. Did the debugger cancel the sig? */
1820 signr = current->exit_code;
1821 if (signr == 0)
1822 return signr;
1823
1824 current->exit_code = 0;
1825
Randy Dunlap5aba0852011-04-04 14:59:31 -07001826 /*
1827 * Update the siginfo structure if the signal has
1828 * changed. If the debugger wanted something
1829 * specific in the siginfo structure then it should
1830 * have updated *info via PTRACE_SETSIGINFO.
1831 */
Roland McGrath18c98b62008-04-17 18:44:38 -07001832 if (signr != info->si_signo) {
1833 info->si_signo = signr;
1834 info->si_errno = 0;
1835 info->si_code = SI_USER;
1836 info->si_pid = task_pid_vnr(current->parent);
David Howellsc69e8d92008-11-14 10:39:19 +11001837 info->si_uid = task_uid(current->parent);
Roland McGrath18c98b62008-04-17 18:44:38 -07001838 }
1839
1840 /* If the (new) signal is now blocked, requeue it. */
1841 if (sigismember(&current->blocked, signr)) {
1842 specific_send_sig_info(signr, info, current);
1843 signr = 0;
1844 }
1845
1846 return signr;
1847}
1848
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849int get_signal_to_deliver(siginfo_t *info, struct k_sigaction *return_ka,
1850 struct pt_regs *regs, void *cookie)
1851{
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001852 struct sighand_struct *sighand = current->sighand;
1853 struct signal_struct *signal = current->signal;
1854 int signr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
Roland McGrath13b1c3d2008-03-03 20:22:05 -08001856relock:
1857 /*
1858 * We'll jump back here after any time we were stopped in TASK_STOPPED.
1859 * While in TASK_STOPPED, we were considered "frozen enough".
1860 * Now that we woke up, it's crucial if we're supposed to be
1861 * frozen that we freeze now before running anything substantial.
1862 */
Rafael J. Wysockifc558a72006-03-23 03:00:05 -08001863 try_to_freeze();
1864
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001865 spin_lock_irq(&sighand->siglock);
Oleg Nesterov021e1ae2008-04-30 00:53:00 -07001866 /*
1867 * Every stopped thread goes here after wakeup. Check to see if
1868 * we should notify the parent, prepare_signal(SIGCONT) encodes
1869 * the CLD_ si_code into SIGNAL_CLD_MASK bits.
1870 */
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001871 if (unlikely(signal->flags & SIGNAL_CLD_MASK)) {
1872 int why = (signal->flags & SIGNAL_STOP_CONTINUED)
Oleg Nesterove4420552008-04-30 00:52:44 -07001873 ? CLD_CONTINUED : CLD_STOPPED;
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001874 signal->flags &= ~SIGNAL_CLD_MASK;
Roland McGrathae6d2ed2009-09-23 15:56:53 -07001875
1876 why = tracehook_notify_jctl(why, CLD_CONTINUED);
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001877 spin_unlock_irq(&sighand->siglock);
Oleg Nesterove4420552008-04-30 00:52:44 -07001878
Roland McGrathae6d2ed2009-09-23 15:56:53 -07001879 if (why) {
1880 read_lock(&tasklist_lock);
1881 do_notify_parent_cldstop(current->group_leader, why);
1882 read_unlock(&tasklist_lock);
1883 }
Oleg Nesterove4420552008-04-30 00:52:44 -07001884 goto relock;
1885 }
1886
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 for (;;) {
1888 struct k_sigaction *ka;
Roland McGrath7bcf6a22008-07-25 19:45:53 -07001889 /*
1890 * Tracing can induce an artifical signal and choose sigaction.
1891 * The return value in @signr determines the default action,
1892 * but @info->si_signo is the signal number we will report.
1893 */
1894 signr = tracehook_get_signal(current, regs, info, return_ka);
1895 if (unlikely(signr < 0))
1896 goto relock;
1897 if (unlikely(signr != 0))
1898 ka = return_ka;
1899 else {
Oleg Nesterov1be53962009-12-15 16:47:26 -08001900 if (unlikely(signal->group_stop_count > 0) &&
1901 do_signal_stop(0))
1902 goto relock;
1903
Roland McGrath7bcf6a22008-07-25 19:45:53 -07001904 signr = dequeue_signal(current, &current->blocked,
1905 info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906
Roland McGrath18c98b62008-04-17 18:44:38 -07001907 if (!signr)
Roland McGrath7bcf6a22008-07-25 19:45:53 -07001908 break; /* will return 0 */
1909
1910 if (signr != SIGKILL) {
1911 signr = ptrace_signal(signr, info,
1912 regs, cookie);
1913 if (!signr)
1914 continue;
1915 }
1916
1917 ka = &sighand->action[signr-1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 }
1919
Masami Hiramatsuf9d42572009-11-24 16:56:51 -05001920 /* Trace actually delivered signals. */
1921 trace_signal_deliver(signr, info, ka);
1922
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 if (ka->sa.sa_handler == SIG_IGN) /* Do nothing. */
1924 continue;
1925 if (ka->sa.sa_handler != SIG_DFL) {
1926 /* Run the handler. */
1927 *return_ka = *ka;
1928
1929 if (ka->sa.sa_flags & SA_ONESHOT)
1930 ka->sa.sa_handler = SIG_DFL;
1931
1932 break; /* will return non-zero "signr" value */
1933 }
1934
1935 /*
1936 * Now we are doing the default action for this signal.
1937 */
1938 if (sig_kernel_ignore(signr)) /* Default is nothing. */
1939 continue;
1940
Sukadev Bhattiprolu84d73782006-12-08 02:38:01 -08001941 /*
Sukadev Bhattiprolu0fbc26a2007-10-18 23:40:13 -07001942 * Global init gets no signals it doesn't want.
Sukadev Bhattiprolub3bfa0c2009-04-02 16:58:08 -07001943 * Container-init gets no signals it doesn't want from same
1944 * container.
1945 *
1946 * Note that if global/container-init sees a sig_kernel_only()
1947 * signal here, the signal must have been generated internally
1948 * or must have come from an ancestor namespace. In either
1949 * case, the signal cannot be dropped.
Sukadev Bhattiprolu84d73782006-12-08 02:38:01 -08001950 */
Oleg Nesterovfae5fa42008-04-30 00:53:03 -07001951 if (unlikely(signal->flags & SIGNAL_UNKILLABLE) &&
Sukadev Bhattiprolub3bfa0c2009-04-02 16:58:08 -07001952 !sig_kernel_only(signr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 continue;
1954
1955 if (sig_kernel_stop(signr)) {
1956 /*
1957 * The default action is to stop all threads in
1958 * the thread group. The job control signals
1959 * do nothing in an orphaned pgrp, but SIGSTOP
1960 * always works. Note that siglock needs to be
1961 * dropped during the call to is_orphaned_pgrp()
1962 * because of lock ordering with tasklist_lock.
1963 * This allows an intervening SIGCONT to be posted.
1964 * We need to check for that and bail out if necessary.
1965 */
1966 if (signr != SIGSTOP) {
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001967 spin_unlock_irq(&sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
1969 /* signals can be posted during this window */
1970
Eric W. Biederman3e7cd6c2007-02-12 00:52:58 -08001971 if (is_current_pgrp_orphaned())
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 goto relock;
1973
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001974 spin_lock_irq(&sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 }
1976
Roland McGrath7bcf6a22008-07-25 19:45:53 -07001977 if (likely(do_signal_stop(info->si_signo))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 /* It released the siglock. */
1979 goto relock;
1980 }
1981
1982 /*
1983 * We didn't actually stop, due to a race
1984 * with SIGCONT or something like that.
1985 */
1986 continue;
1987 }
1988
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001989 spin_unlock_irq(&sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
1991 /*
1992 * Anything else is fatal, maybe with a core dump.
1993 */
1994 current->flags |= PF_SIGNALED;
Oleg Nesterov2dce81b2008-04-30 00:52:58 -07001995
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 if (sig_kernel_coredump(signr)) {
Oleg Nesterov2dce81b2008-04-30 00:52:58 -07001997 if (print_fatal_signals)
Roland McGrath7bcf6a22008-07-25 19:45:53 -07001998 print_fatal_signal(regs, info->si_signo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 /*
2000 * If it was able to dump core, this kills all
2001 * other threads in the group and synchronizes with
2002 * their demise. If we lost the race with another
2003 * thread getting here, it set group_exit_code
2004 * first and our do_group_exit call below will use
2005 * that value and ignore the one we pass it.
2006 */
Roland McGrath7bcf6a22008-07-25 19:45:53 -07002007 do_coredump(info->si_signo, info->si_signo, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 }
2009
2010 /*
2011 * Death signals, no core dump.
2012 */
Roland McGrath7bcf6a22008-07-25 19:45:53 -07002013 do_group_exit(info->si_signo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 /* NOTREACHED */
2015 }
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07002016 spin_unlock_irq(&sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 return signr;
2018}
2019
Oleg Nesterovd12619b2008-02-08 04:19:12 -08002020void exit_signals(struct task_struct *tsk)
2021{
2022 int group_stop = 0;
Oleg Nesterov5dee1702008-02-08 04:19:13 -08002023 struct task_struct *t;
Oleg Nesterovd12619b2008-02-08 04:19:12 -08002024
Oleg Nesterov5dee1702008-02-08 04:19:13 -08002025 if (thread_group_empty(tsk) || signal_group_exit(tsk->signal)) {
2026 tsk->flags |= PF_EXITING;
2027 return;
Oleg Nesterovd12619b2008-02-08 04:19:12 -08002028 }
2029
Oleg Nesterov5dee1702008-02-08 04:19:13 -08002030 spin_lock_irq(&tsk->sighand->siglock);
Oleg Nesterovd12619b2008-02-08 04:19:12 -08002031 /*
2032 * From now this task is not visible for group-wide signals,
2033 * see wants_signal(), do_signal_stop().
2034 */
2035 tsk->flags |= PF_EXITING;
Oleg Nesterov5dee1702008-02-08 04:19:13 -08002036 if (!signal_pending(tsk))
2037 goto out;
2038
Randy Dunlap5aba0852011-04-04 14:59:31 -07002039 /*
2040 * It could be that __group_complete_signal() choose us to
Oleg Nesterov5dee1702008-02-08 04:19:13 -08002041 * notify about group-wide signal. Another thread should be
2042 * woken now to take the signal since we will not.
2043 */
2044 for (t = tsk; (t = next_thread(t)) != tsk; )
2045 if (!signal_pending(t) && !(t->flags & PF_EXITING))
2046 recalc_sigpending_and_wake(t);
2047
2048 if (unlikely(tsk->signal->group_stop_count) &&
2049 !--tsk->signal->group_stop_count) {
2050 tsk->signal->flags = SIGNAL_STOP_STOPPED;
Roland McGrathae6d2ed2009-09-23 15:56:53 -07002051 group_stop = tracehook_notify_jctl(CLD_STOPPED, CLD_STOPPED);
Oleg Nesterov5dee1702008-02-08 04:19:13 -08002052 }
2053out:
Oleg Nesterovd12619b2008-02-08 04:19:12 -08002054 spin_unlock_irq(&tsk->sighand->siglock);
2055
Roland McGrathae6d2ed2009-09-23 15:56:53 -07002056 if (unlikely(group_stop)) {
Oleg Nesterovd12619b2008-02-08 04:19:12 -08002057 read_lock(&tasklist_lock);
Roland McGrathae6d2ed2009-09-23 15:56:53 -07002058 do_notify_parent_cldstop(tsk, group_stop);
Oleg Nesterovd12619b2008-02-08 04:19:12 -08002059 read_unlock(&tasklist_lock);
2060 }
2061}
2062
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063EXPORT_SYMBOL(recalc_sigpending);
2064EXPORT_SYMBOL_GPL(dequeue_signal);
2065EXPORT_SYMBOL(flush_signals);
2066EXPORT_SYMBOL(force_sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067EXPORT_SYMBOL(send_sig);
2068EXPORT_SYMBOL(send_sig_info);
2069EXPORT_SYMBOL(sigprocmask);
2070EXPORT_SYMBOL(block_all_signals);
2071EXPORT_SYMBOL(unblock_all_signals);
2072
2073
2074/*
2075 * System call entry points.
2076 */
2077
Heiko Carstens754fe8d2009-01-14 14:14:09 +01002078SYSCALL_DEFINE0(restart_syscall)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079{
2080 struct restart_block *restart = &current_thread_info()->restart_block;
2081 return restart->fn(restart);
2082}
2083
2084long do_no_restart_syscall(struct restart_block *param)
2085{
2086 return -EINTR;
2087}
2088
2089/*
2090 * We don't need to get the kernel lock - this is all local to this
2091 * particular thread.. (and that's good, because this is _heavily_
2092 * used by various programs)
2093 */
2094
2095/*
2096 * This is also useful for kernel threads that want to temporarily
2097 * (or permanently) block certain signals.
2098 *
2099 * NOTE! Unlike the user-mode sys_sigprocmask(), the kernel
2100 * interface happily blocks "unblockable" signals like SIGKILL
2101 * and friends.
2102 */
2103int sigprocmask(int how, sigset_t *set, sigset_t *oldset)
2104{
2105 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
2107 spin_lock_irq(&current->sighand->siglock);
Oleg Nesterova26fd332006-03-23 03:00:49 -08002108 if (oldset)
2109 *oldset = current->blocked;
2110
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 error = 0;
2112 switch (how) {
2113 case SIG_BLOCK:
2114 sigorsets(&current->blocked, &current->blocked, set);
2115 break;
2116 case SIG_UNBLOCK:
2117 signandsets(&current->blocked, &current->blocked, set);
2118 break;
2119 case SIG_SETMASK:
2120 current->blocked = *set;
2121 break;
2122 default:
2123 error = -EINVAL;
2124 }
2125 recalc_sigpending();
2126 spin_unlock_irq(&current->sighand->siglock);
Oleg Nesterova26fd332006-03-23 03:00:49 -08002127
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 return error;
2129}
2130
Heiko Carstens17da2bd2009-01-14 14:14:10 +01002131SYSCALL_DEFINE4(rt_sigprocmask, int, how, sigset_t __user *, set,
2132 sigset_t __user *, oset, size_t, sigsetsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133{
2134 int error = -EINVAL;
2135 sigset_t old_set, new_set;
2136
2137 /* XXX: Don't preclude handling different sized sigset_t's. */
2138 if (sigsetsize != sizeof(sigset_t))
2139 goto out;
2140
2141 if (set) {
2142 error = -EFAULT;
2143 if (copy_from_user(&new_set, set, sizeof(*set)))
2144 goto out;
2145 sigdelsetmask(&new_set, sigmask(SIGKILL)|sigmask(SIGSTOP));
2146
2147 error = sigprocmask(how, &new_set, &old_set);
2148 if (error)
2149 goto out;
2150 if (oset)
2151 goto set_old;
2152 } else if (oset) {
2153 spin_lock_irq(&current->sighand->siglock);
2154 old_set = current->blocked;
2155 spin_unlock_irq(&current->sighand->siglock);
2156
2157 set_old:
2158 error = -EFAULT;
2159 if (copy_to_user(oset, &old_set, sizeof(*oset)))
2160 goto out;
2161 }
2162 error = 0;
2163out:
2164 return error;
2165}
2166
2167long do_sigpending(void __user *set, unsigned long sigsetsize)
2168{
2169 long error = -EINVAL;
2170 sigset_t pending;
2171
2172 if (sigsetsize > sizeof(sigset_t))
2173 goto out;
2174
2175 spin_lock_irq(&current->sighand->siglock);
2176 sigorsets(&pending, &current->pending.signal,
2177 &current->signal->shared_pending.signal);
2178 spin_unlock_irq(&current->sighand->siglock);
2179
2180 /* Outside the lock because only this thread touches it. */
2181 sigandsets(&pending, &current->blocked, &pending);
2182
2183 error = -EFAULT;
2184 if (!copy_to_user(set, &pending, sigsetsize))
2185 error = 0;
2186
2187out:
2188 return error;
Randy Dunlap5aba0852011-04-04 14:59:31 -07002189}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190
Heiko Carstens17da2bd2009-01-14 14:14:10 +01002191SYSCALL_DEFINE2(rt_sigpending, sigset_t __user *, set, size_t, sigsetsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192{
2193 return do_sigpending(set, sigsetsize);
2194}
2195
2196#ifndef HAVE_ARCH_COPY_SIGINFO_TO_USER
2197
2198int copy_siginfo_to_user(siginfo_t __user *to, siginfo_t *from)
2199{
2200 int err;
2201
2202 if (!access_ok (VERIFY_WRITE, to, sizeof(siginfo_t)))
2203 return -EFAULT;
2204 if (from->si_code < 0)
2205 return __copy_to_user(to, from, sizeof(siginfo_t))
2206 ? -EFAULT : 0;
2207 /*
2208 * If you change siginfo_t structure, please be sure
2209 * this code is fixed accordingly.
Davide Libenzifba2afa2007-05-10 22:23:13 -07002210 * Please remember to update the signalfd_copyinfo() function
2211 * inside fs/signalfd.c too, in case siginfo_t changes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 * It should never copy any pad contained in the structure
2213 * to avoid security leaks, but must copy the generic
2214 * 3 ints plus the relevant union member.
2215 */
2216 err = __put_user(from->si_signo, &to->si_signo);
2217 err |= __put_user(from->si_errno, &to->si_errno);
2218 err |= __put_user((short)from->si_code, &to->si_code);
2219 switch (from->si_code & __SI_MASK) {
2220 case __SI_KILL:
2221 err |= __put_user(from->si_pid, &to->si_pid);
2222 err |= __put_user(from->si_uid, &to->si_uid);
2223 break;
2224 case __SI_TIMER:
2225 err |= __put_user(from->si_tid, &to->si_tid);
2226 err |= __put_user(from->si_overrun, &to->si_overrun);
2227 err |= __put_user(from->si_ptr, &to->si_ptr);
2228 break;
2229 case __SI_POLL:
2230 err |= __put_user(from->si_band, &to->si_band);
2231 err |= __put_user(from->si_fd, &to->si_fd);
2232 break;
2233 case __SI_FAULT:
2234 err |= __put_user(from->si_addr, &to->si_addr);
2235#ifdef __ARCH_SI_TRAPNO
2236 err |= __put_user(from->si_trapno, &to->si_trapno);
2237#endif
Andi Kleena337fda2010-09-27 20:32:19 +02002238#ifdef BUS_MCEERR_AO
Randy Dunlap5aba0852011-04-04 14:59:31 -07002239 /*
Andi Kleena337fda2010-09-27 20:32:19 +02002240 * Other callers might not initialize the si_lsb field,
Randy Dunlap5aba0852011-04-04 14:59:31 -07002241 * so check explicitly for the right codes here.
Andi Kleena337fda2010-09-27 20:32:19 +02002242 */
2243 if (from->si_code == BUS_MCEERR_AR || from->si_code == BUS_MCEERR_AO)
2244 err |= __put_user(from->si_addr_lsb, &to->si_addr_lsb);
2245#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 break;
2247 case __SI_CHLD:
2248 err |= __put_user(from->si_pid, &to->si_pid);
2249 err |= __put_user(from->si_uid, &to->si_uid);
2250 err |= __put_user(from->si_status, &to->si_status);
2251 err |= __put_user(from->si_utime, &to->si_utime);
2252 err |= __put_user(from->si_stime, &to->si_stime);
2253 break;
2254 case __SI_RT: /* This is not generated by the kernel as of now. */
2255 case __SI_MESGQ: /* But this is */
2256 err |= __put_user(from->si_pid, &to->si_pid);
2257 err |= __put_user(from->si_uid, &to->si_uid);
2258 err |= __put_user(from->si_ptr, &to->si_ptr);
2259 break;
2260 default: /* this is just in case for now ... */
2261 err |= __put_user(from->si_pid, &to->si_pid);
2262 err |= __put_user(from->si_uid, &to->si_uid);
2263 break;
2264 }
2265 return err;
2266}
2267
2268#endif
2269
Heiko Carstens17da2bd2009-01-14 14:14:10 +01002270SYSCALL_DEFINE4(rt_sigtimedwait, const sigset_t __user *, uthese,
2271 siginfo_t __user *, uinfo, const struct timespec __user *, uts,
2272 size_t, sigsetsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273{
2274 int ret, sig;
2275 sigset_t these;
2276 struct timespec ts;
2277 siginfo_t info;
2278 long timeout = 0;
2279
2280 /* XXX: Don't preclude handling different sized sigset_t's. */
2281 if (sigsetsize != sizeof(sigset_t))
2282 return -EINVAL;
2283
2284 if (copy_from_user(&these, uthese, sizeof(these)))
2285 return -EFAULT;
Randy Dunlap5aba0852011-04-04 14:59:31 -07002286
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 /*
2288 * Invert the set of allowed signals to get those we
2289 * want to block.
2290 */
2291 sigdelsetmask(&these, sigmask(SIGKILL)|sigmask(SIGSTOP));
2292 signotset(&these);
2293
2294 if (uts) {
2295 if (copy_from_user(&ts, uts, sizeof(ts)))
2296 return -EFAULT;
2297 if (ts.tv_nsec >= 1000000000L || ts.tv_nsec < 0
2298 || ts.tv_sec < 0)
2299 return -EINVAL;
2300 }
2301
2302 spin_lock_irq(&current->sighand->siglock);
2303 sig = dequeue_signal(current, &these, &info);
2304 if (!sig) {
2305 timeout = MAX_SCHEDULE_TIMEOUT;
2306 if (uts)
2307 timeout = (timespec_to_jiffies(&ts)
2308 + (ts.tv_sec || ts.tv_nsec));
2309
2310 if (timeout) {
Randy Dunlap5aba0852011-04-04 14:59:31 -07002311 /*
2312 * None ready -- temporarily unblock those we're
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 * interested while we are sleeping in so that we'll
Randy Dunlap5aba0852011-04-04 14:59:31 -07002314 * be awakened when they arrive.
2315 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 current->real_blocked = current->blocked;
2317 sigandsets(&current->blocked, &current->blocked, &these);
2318 recalc_sigpending();
2319 spin_unlock_irq(&current->sighand->siglock);
2320
Nishanth Aravamudan75bcc8c2005-09-10 00:27:24 -07002321 timeout = schedule_timeout_interruptible(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 spin_lock_irq(&current->sighand->siglock);
2324 sig = dequeue_signal(current, &these, &info);
2325 current->blocked = current->real_blocked;
2326 siginitset(&current->real_blocked, 0);
2327 recalc_sigpending();
2328 }
2329 }
2330 spin_unlock_irq(&current->sighand->siglock);
2331
2332 if (sig) {
2333 ret = sig;
2334 if (uinfo) {
2335 if (copy_siginfo_to_user(uinfo, &info))
2336 ret = -EFAULT;
2337 }
2338 } else {
2339 ret = -EAGAIN;
2340 if (timeout)
2341 ret = -EINTR;
2342 }
2343
2344 return ret;
2345}
2346
Heiko Carstens17da2bd2009-01-14 14:14:10 +01002347SYSCALL_DEFINE2(kill, pid_t, pid, int, sig)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348{
2349 struct siginfo info;
2350
2351 info.si_signo = sig;
2352 info.si_errno = 0;
2353 info.si_code = SI_USER;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002354 info.si_pid = task_tgid_vnr(current);
David Howells76aac0e2008-11-14 10:39:12 +11002355 info.si_uid = current_uid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356
2357 return kill_something_info(sig, &info, pid);
2358}
2359
Thomas Gleixner30b4ae82009-04-04 21:01:01 +00002360static int
2361do_send_specific(pid_t tgid, pid_t pid, int sig, struct siginfo *info)
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002362{
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002363 struct task_struct *p;
Thomas Gleixner30b4ae82009-04-04 21:01:01 +00002364 int error = -ESRCH;
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002365
Oleg Nesterov3547ff32008-04-30 00:52:51 -07002366 rcu_read_lock();
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07002367 p = find_task_by_vpid(pid);
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002368 if (p && (tgid <= 0 || task_tgid_vnr(p) == tgid)) {
Thomas Gleixner30b4ae82009-04-04 21:01:01 +00002369 error = check_kill_permission(sig, info, p);
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002370 /*
2371 * The null signal is a permissions and process existence
2372 * probe. No signal is actually delivered.
2373 */
Oleg Nesterov4a30deb2009-09-23 15:57:00 -07002374 if (!error && sig) {
2375 error = do_send_sig_info(sig, info, p, false);
2376 /*
2377 * If lock_task_sighand() failed we pretend the task
2378 * dies after receiving the signal. The window is tiny,
2379 * and the signal is private anyway.
2380 */
2381 if (unlikely(error == -ESRCH))
2382 error = 0;
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002383 }
2384 }
Oleg Nesterov3547ff32008-04-30 00:52:51 -07002385 rcu_read_unlock();
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002386
2387 return error;
2388}
2389
Thomas Gleixner30b4ae82009-04-04 21:01:01 +00002390static int do_tkill(pid_t tgid, pid_t pid, int sig)
2391{
2392 struct siginfo info;
2393
2394 info.si_signo = sig;
2395 info.si_errno = 0;
2396 info.si_code = SI_TKILL;
2397 info.si_pid = task_tgid_vnr(current);
2398 info.si_uid = current_uid();
2399
2400 return do_send_specific(tgid, pid, sig, &info);
2401}
2402
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403/**
2404 * sys_tgkill - send signal to one specific thread
2405 * @tgid: the thread group ID of the thread
2406 * @pid: the PID of the thread
2407 * @sig: signal to be sent
2408 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08002409 * This syscall also checks the @tgid and returns -ESRCH even if the PID
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 * exists but it's not belonging to the target process anymore. This
2411 * method solves the problem of threads exiting and PIDs getting reused.
2412 */
Heiko Carstensa5f8fa92009-01-14 14:14:11 +01002413SYSCALL_DEFINE3(tgkill, pid_t, tgid, pid_t, pid, int, sig)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 /* This is only valid for single tasks */
2416 if (pid <= 0 || tgid <= 0)
2417 return -EINVAL;
2418
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002419 return do_tkill(tgid, pid, sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420}
2421
2422/*
2423 * Send a signal to only one task, even if it's a CLONE_THREAD task.
2424 */
Heiko Carstensa5f8fa92009-01-14 14:14:11 +01002425SYSCALL_DEFINE2(tkill, pid_t, pid, int, sig)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 /* This is only valid for single tasks */
2428 if (pid <= 0)
2429 return -EINVAL;
2430
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002431 return do_tkill(0, pid, sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432}
2433
Heiko Carstensa5f8fa92009-01-14 14:14:11 +01002434SYSCALL_DEFINE3(rt_sigqueueinfo, pid_t, pid, int, sig,
2435 siginfo_t __user *, uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436{
2437 siginfo_t info;
2438
2439 if (copy_from_user(&info, uinfo, sizeof(siginfo_t)))
2440 return -EFAULT;
2441
2442 /* Not even root can pretend to send signals from the kernel.
Julien Tinnesda485242011-03-18 15:05:21 -07002443 * Nor can they impersonate a kill()/tgkill(), which adds source info.
2444 */
Roland Dreier243b4222011-03-28 14:13:35 -07002445 if (info.si_code >= 0 || info.si_code == SI_TKILL) {
Julien Tinnesda485242011-03-18 15:05:21 -07002446 /* We used to allow any < 0 si_code */
2447 WARN_ON_ONCE(info.si_code < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 return -EPERM;
Julien Tinnesda485242011-03-18 15:05:21 -07002449 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 info.si_signo = sig;
2451
2452 /* POSIX.1b doesn't mention process groups. */
2453 return kill_proc_info(sig, &info, pid);
2454}
2455
Thomas Gleixner62ab4502009-04-04 21:01:06 +00002456long do_rt_tgsigqueueinfo(pid_t tgid, pid_t pid, int sig, siginfo_t *info)
2457{
2458 /* This is only valid for single tasks */
2459 if (pid <= 0 || tgid <= 0)
2460 return -EINVAL;
2461
2462 /* Not even root can pretend to send signals from the kernel.
Julien Tinnesda485242011-03-18 15:05:21 -07002463 * Nor can they impersonate a kill()/tgkill(), which adds source info.
2464 */
Roland Dreier243b4222011-03-28 14:13:35 -07002465 if (info->si_code >= 0 || info->si_code == SI_TKILL) {
Julien Tinnesda485242011-03-18 15:05:21 -07002466 /* We used to allow any < 0 si_code */
2467 WARN_ON_ONCE(info->si_code < 0);
Thomas Gleixner62ab4502009-04-04 21:01:06 +00002468 return -EPERM;
Julien Tinnesda485242011-03-18 15:05:21 -07002469 }
Thomas Gleixner62ab4502009-04-04 21:01:06 +00002470 info->si_signo = sig;
2471
2472 return do_send_specific(tgid, pid, sig, info);
2473}
2474
2475SYSCALL_DEFINE4(rt_tgsigqueueinfo, pid_t, tgid, pid_t, pid, int, sig,
2476 siginfo_t __user *, uinfo)
2477{
2478 siginfo_t info;
2479
2480 if (copy_from_user(&info, uinfo, sizeof(siginfo_t)))
2481 return -EFAULT;
2482
2483 return do_rt_tgsigqueueinfo(tgid, pid, sig, &info);
2484}
2485
Oleg Nesterov88531f72006-03-28 16:11:24 -08002486int do_sigaction(int sig, struct k_sigaction *act, struct k_sigaction *oact)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487{
Pavel Emelyanov93585ee2008-04-30 00:52:39 -07002488 struct task_struct *t = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 struct k_sigaction *k;
George Anzinger71fabd52006-01-08 01:02:48 -08002490 sigset_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491
Jesper Juhl7ed20e12005-05-01 08:59:14 -07002492 if (!valid_signal(sig) || sig < 1 || (act && sig_kernel_only(sig)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 return -EINVAL;
2494
Pavel Emelyanov93585ee2008-04-30 00:52:39 -07002495 k = &t->sighand->action[sig-1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496
2497 spin_lock_irq(&current->sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 if (oact)
2499 *oact = *k;
2500
2501 if (act) {
Oleg Nesterov9ac95f22006-02-09 22:41:50 +03002502 sigdelsetmask(&act->sa.sa_mask,
2503 sigmask(SIGKILL) | sigmask(SIGSTOP));
Oleg Nesterov88531f72006-03-28 16:11:24 -08002504 *k = *act;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 /*
2506 * POSIX 3.3.1.3:
2507 * "Setting a signal action to SIG_IGN for a signal that is
2508 * pending shall cause the pending signal to be discarded,
2509 * whether or not it is blocked."
2510 *
2511 * "Setting a signal action to SIG_DFL for a signal that is
2512 * pending and whose default action is to ignore the signal
2513 * (for example, SIGCHLD), shall cause the pending signal to
2514 * be discarded, whether or not it is blocked"
2515 */
Roland McGrath35de2542008-07-25 19:45:51 -07002516 if (sig_handler_ignored(sig_handler(t, sig), sig)) {
George Anzinger71fabd52006-01-08 01:02:48 -08002517 sigemptyset(&mask);
2518 sigaddset(&mask, sig);
2519 rm_from_queue_full(&mask, &t->signal->shared_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 do {
George Anzinger71fabd52006-01-08 01:02:48 -08002521 rm_from_queue_full(&mask, &t->pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 t = next_thread(t);
2523 } while (t != current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 }
2526
2527 spin_unlock_irq(&current->sighand->siglock);
2528 return 0;
2529}
2530
2531int
2532do_sigaltstack (const stack_t __user *uss, stack_t __user *uoss, unsigned long sp)
2533{
2534 stack_t oss;
2535 int error;
2536
Linus Torvalds0083fc22009-08-01 10:34:56 -07002537 oss.ss_sp = (void __user *) current->sas_ss_sp;
2538 oss.ss_size = current->sas_ss_size;
2539 oss.ss_flags = sas_ss_flags(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540
2541 if (uss) {
2542 void __user *ss_sp;
2543 size_t ss_size;
2544 int ss_flags;
2545
2546 error = -EFAULT;
Linus Torvalds0dd84862009-08-01 11:18:56 -07002547 if (!access_ok(VERIFY_READ, uss, sizeof(*uss)))
2548 goto out;
2549 error = __get_user(ss_sp, &uss->ss_sp) |
2550 __get_user(ss_flags, &uss->ss_flags) |
2551 __get_user(ss_size, &uss->ss_size);
2552 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 goto out;
2554
2555 error = -EPERM;
2556 if (on_sig_stack(sp))
2557 goto out;
2558
2559 error = -EINVAL;
2560 /*
Randy Dunlap5aba0852011-04-04 14:59:31 -07002561 * Note - this code used to test ss_flags incorrectly:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 * old code may have been written using ss_flags==0
2563 * to mean ss_flags==SS_ONSTACK (as this was the only
2564 * way that worked) - this fix preserves that older
Randy Dunlap5aba0852011-04-04 14:59:31 -07002565 * mechanism.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 */
2567 if (ss_flags != SS_DISABLE && ss_flags != SS_ONSTACK && ss_flags != 0)
2568 goto out;
2569
2570 if (ss_flags == SS_DISABLE) {
2571 ss_size = 0;
2572 ss_sp = NULL;
2573 } else {
2574 error = -ENOMEM;
2575 if (ss_size < MINSIGSTKSZ)
2576 goto out;
2577 }
2578
2579 current->sas_ss_sp = (unsigned long) ss_sp;
2580 current->sas_ss_size = ss_size;
2581 }
2582
Linus Torvalds0083fc22009-08-01 10:34:56 -07002583 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 if (uoss) {
2585 error = -EFAULT;
Linus Torvalds0083fc22009-08-01 10:34:56 -07002586 if (!access_ok(VERIFY_WRITE, uoss, sizeof(*uoss)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 goto out;
Linus Torvalds0083fc22009-08-01 10:34:56 -07002588 error = __put_user(oss.ss_sp, &uoss->ss_sp) |
2589 __put_user(oss.ss_size, &uoss->ss_size) |
2590 __put_user(oss.ss_flags, &uoss->ss_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 }
2592
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593out:
2594 return error;
2595}
2596
2597#ifdef __ARCH_WANT_SYS_SIGPENDING
2598
Heiko Carstensb290ebe2009-01-14 14:14:06 +01002599SYSCALL_DEFINE1(sigpending, old_sigset_t __user *, set)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600{
2601 return do_sigpending(set, sizeof(*set));
2602}
2603
2604#endif
2605
2606#ifdef __ARCH_WANT_SYS_SIGPROCMASK
Randy Dunlap5aba0852011-04-04 14:59:31 -07002607/*
2608 * Some platforms have their own version with special arguments;
2609 * others support only sys_rt_sigprocmask.
2610 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611
Heiko Carstensb290ebe2009-01-14 14:14:06 +01002612SYSCALL_DEFINE3(sigprocmask, int, how, old_sigset_t __user *, set,
2613 old_sigset_t __user *, oset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614{
2615 int error;
2616 old_sigset_t old_set, new_set;
2617
2618 if (set) {
2619 error = -EFAULT;
2620 if (copy_from_user(&new_set, set, sizeof(*set)))
2621 goto out;
2622 new_set &= ~(sigmask(SIGKILL) | sigmask(SIGSTOP));
2623
2624 spin_lock_irq(&current->sighand->siglock);
2625 old_set = current->blocked.sig[0];
2626
2627 error = 0;
2628 switch (how) {
2629 default:
2630 error = -EINVAL;
2631 break;
2632 case SIG_BLOCK:
2633 sigaddsetmask(&current->blocked, new_set);
2634 break;
2635 case SIG_UNBLOCK:
2636 sigdelsetmask(&current->blocked, new_set);
2637 break;
2638 case SIG_SETMASK:
2639 current->blocked.sig[0] = new_set;
2640 break;
2641 }
2642
2643 recalc_sigpending();
2644 spin_unlock_irq(&current->sighand->siglock);
2645 if (error)
2646 goto out;
2647 if (oset)
2648 goto set_old;
2649 } else if (oset) {
2650 old_set = current->blocked.sig[0];
2651 set_old:
2652 error = -EFAULT;
2653 if (copy_to_user(oset, &old_set, sizeof(*oset)))
2654 goto out;
2655 }
2656 error = 0;
2657out:
2658 return error;
2659}
2660#endif /* __ARCH_WANT_SYS_SIGPROCMASK */
2661
2662#ifdef __ARCH_WANT_SYS_RT_SIGACTION
Heiko Carstensd4e82042009-01-14 14:14:34 +01002663SYSCALL_DEFINE4(rt_sigaction, int, sig,
2664 const struct sigaction __user *, act,
2665 struct sigaction __user *, oact,
2666 size_t, sigsetsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667{
2668 struct k_sigaction new_sa, old_sa;
2669 int ret = -EINVAL;
2670
2671 /* XXX: Don't preclude handling different sized sigset_t's. */
2672 if (sigsetsize != sizeof(sigset_t))
2673 goto out;
2674
2675 if (act) {
2676 if (copy_from_user(&new_sa.sa, act, sizeof(new_sa.sa)))
2677 return -EFAULT;
2678 }
2679
2680 ret = do_sigaction(sig, act ? &new_sa : NULL, oact ? &old_sa : NULL);
2681
2682 if (!ret && oact) {
2683 if (copy_to_user(oact, &old_sa.sa, sizeof(old_sa.sa)))
2684 return -EFAULT;
2685 }
2686out:
2687 return ret;
2688}
2689#endif /* __ARCH_WANT_SYS_RT_SIGACTION */
2690
2691#ifdef __ARCH_WANT_SYS_SGETMASK
2692
2693/*
2694 * For backwards compatibility. Functionality superseded by sigprocmask.
2695 */
Heiko Carstensa5f8fa92009-01-14 14:14:11 +01002696SYSCALL_DEFINE0(sgetmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697{
2698 /* SMP safe */
2699 return current->blocked.sig[0];
2700}
2701
Heiko Carstensa5f8fa92009-01-14 14:14:11 +01002702SYSCALL_DEFINE1(ssetmask, int, newmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703{
2704 int old;
2705
2706 spin_lock_irq(&current->sighand->siglock);
2707 old = current->blocked.sig[0];
2708
2709 siginitset(&current->blocked, newmask & ~(sigmask(SIGKILL)|
2710 sigmask(SIGSTOP)));
2711 recalc_sigpending();
2712 spin_unlock_irq(&current->sighand->siglock);
2713
2714 return old;
2715}
2716#endif /* __ARCH_WANT_SGETMASK */
2717
2718#ifdef __ARCH_WANT_SYS_SIGNAL
2719/*
2720 * For backwards compatibility. Functionality superseded by sigaction.
2721 */
Heiko Carstensa5f8fa92009-01-14 14:14:11 +01002722SYSCALL_DEFINE2(signal, int, sig, __sighandler_t, handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723{
2724 struct k_sigaction new_sa, old_sa;
2725 int ret;
2726
2727 new_sa.sa.sa_handler = handler;
2728 new_sa.sa.sa_flags = SA_ONESHOT | SA_NOMASK;
Oleg Nesterovc70d3d702006-02-09 22:41:41 +03002729 sigemptyset(&new_sa.sa.sa_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730
2731 ret = do_sigaction(sig, &new_sa, &old_sa);
2732
2733 return ret ? ret : (unsigned long)old_sa.sa.sa_handler;
2734}
2735#endif /* __ARCH_WANT_SYS_SIGNAL */
2736
2737#ifdef __ARCH_WANT_SYS_PAUSE
2738
Heiko Carstensa5f8fa92009-01-14 14:14:11 +01002739SYSCALL_DEFINE0(pause)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740{
2741 current->state = TASK_INTERRUPTIBLE;
2742 schedule();
2743 return -ERESTARTNOHAND;
2744}
2745
2746#endif
2747
David Woodhouse150256d2006-01-18 17:43:57 -08002748#ifdef __ARCH_WANT_SYS_RT_SIGSUSPEND
Heiko Carstensd4e82042009-01-14 14:14:34 +01002749SYSCALL_DEFINE2(rt_sigsuspend, sigset_t __user *, unewset, size_t, sigsetsize)
David Woodhouse150256d2006-01-18 17:43:57 -08002750{
2751 sigset_t newset;
2752
2753 /* XXX: Don't preclude handling different sized sigset_t's. */
2754 if (sigsetsize != sizeof(sigset_t))
2755 return -EINVAL;
2756
2757 if (copy_from_user(&newset, unewset, sizeof(newset)))
2758 return -EFAULT;
2759 sigdelsetmask(&newset, sigmask(SIGKILL)|sigmask(SIGSTOP));
2760
2761 spin_lock_irq(&current->sighand->siglock);
2762 current->saved_sigmask = current->blocked;
2763 current->blocked = newset;
2764 recalc_sigpending();
2765 spin_unlock_irq(&current->sighand->siglock);
2766
2767 current->state = TASK_INTERRUPTIBLE;
2768 schedule();
Roland McGrath4e4c22c2008-04-30 00:53:06 -07002769 set_restore_sigmask();
David Woodhouse150256d2006-01-18 17:43:57 -08002770 return -ERESTARTNOHAND;
2771}
2772#endif /* __ARCH_WANT_SYS_RT_SIGSUSPEND */
2773
David Howellsf269fdd2006-09-27 01:50:23 -07002774__attribute__((weak)) const char *arch_vma_name(struct vm_area_struct *vma)
2775{
2776 return NULL;
2777}
2778
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779void __init signals_init(void)
2780{
Christoph Lameter0a31bd52007-05-06 14:49:57 -07002781 sigqueue_cachep = KMEM_CACHE(sigqueue, SLAB_PANIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782}
Jason Wessel67fc4e02010-05-20 21:04:21 -05002783
2784#ifdef CONFIG_KGDB_KDB
2785#include <linux/kdb.h>
2786/*
2787 * kdb_send_sig_info - Allows kdb to send signals without exposing
2788 * signal internals. This function checks if the required locks are
2789 * available before calling the main signal code, to avoid kdb
2790 * deadlocks.
2791 */
2792void
2793kdb_send_sig_info(struct task_struct *t, struct siginfo *info)
2794{
2795 static struct task_struct *kdb_prev_t;
2796 int sig, new_t;
2797 if (!spin_trylock(&t->sighand->siglock)) {
2798 kdb_printf("Can't do kill command now.\n"
2799 "The sigmask lock is held somewhere else in "
2800 "kernel, try again later\n");
2801 return;
2802 }
2803 spin_unlock(&t->sighand->siglock);
2804 new_t = kdb_prev_t != t;
2805 kdb_prev_t = t;
2806 if (t->state != TASK_RUNNING && new_t) {
2807 kdb_printf("Process is not RUNNING, sending a signal from "
2808 "kdb risks deadlock\n"
2809 "on the run queue locks. "
2810 "The signal has _not_ been sent.\n"
2811 "Reissue the kill command if you want to risk "
2812 "the deadlock.\n");
2813 return;
2814 }
2815 sig = info->si_signo;
2816 if (send_sig_info(sig, info, t))
2817 kdb_printf("Fail to deliver Signal %d to process %d.\n",
2818 sig, t->pid);
2819 else
2820 kdb_printf("Signal %d is sent to process %d.\n", sig, t->pid);
2821}
2822#endif /* CONFIG_KGDB_KDB */