blob: 0e862d3130ffa78c11b72b603a966300303bc276 [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>
Roland McGrath35de2542008-07-25 19:45:51 -070025#include <linux/tracehook.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080026#include <linux/capability.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080027#include <linux/freezer.h>
Sukadev Bhattiprolu84d73782006-12-08 02:38:01 -080028#include <linux/pid_namespace.h>
29#include <linux/nsproxy.h>
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/param.h>
32#include <asm/uaccess.h>
33#include <asm/unistd.h>
34#include <asm/siginfo.h>
Al Viroe1396062006-05-25 10:19:47 -040035#include "audit.h" /* audit_signal_info() */
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37/*
38 * SLAB caches for signal bits.
39 */
40
Christoph Lametere18b8902006-12-06 20:33:20 -080041static struct kmem_cache *sigqueue_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Roland McGrath35de2542008-07-25 19:45:51 -070043static void __user *sig_handler(struct task_struct *t, int sig)
Pavel Emelyanov93585ee2008-04-30 00:52:39 -070044{
Roland McGrath35de2542008-07-25 19:45:51 -070045 return t->sighand->action[sig - 1].sa.sa_handler;
46}
Pavel Emelyanov93585ee2008-04-30 00:52:39 -070047
Roland McGrath35de2542008-07-25 19:45:51 -070048static int sig_handler_ignored(void __user *handler, int sig)
49{
Pavel Emelyanov93585ee2008-04-30 00:52:39 -070050 /* Is it explicitly or implicitly ignored? */
Pavel Emelyanov93585ee2008-04-30 00:52:39 -070051 return handler == SIG_IGN ||
52 (handler == SIG_DFL && sig_kernel_ignore(sig));
53}
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55static int sig_ignored(struct task_struct *t, int sig)
56{
Roland McGrath35de2542008-07-25 19:45:51 -070057 void __user *handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59 /*
60 * Blocked signals are never ignored, since the
61 * signal handler may change by the time it is
62 * unblocked.
63 */
Roland McGrath325d22d2007-11-12 15:41:55 -080064 if (sigismember(&t->blocked, sig) || sigismember(&t->real_blocked, sig))
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 return 0;
66
Roland McGrath35de2542008-07-25 19:45:51 -070067 handler = sig_handler(t, sig);
68 if (!sig_handler_ignored(handler, sig))
69 return 0;
70
71 /*
72 * Tracers may want to know about even ignored signals.
73 */
74 return !tracehook_consider_ignored_signal(t, sig, handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075}
76
77/*
78 * Re-calculate pending state from the set of locally pending
79 * signals, globally pending signals, and blocked signals.
80 */
81static inline int has_pending_signals(sigset_t *signal, sigset_t *blocked)
82{
83 unsigned long ready;
84 long i;
85
86 switch (_NSIG_WORDS) {
87 default:
88 for (i = _NSIG_WORDS, ready = 0; --i >= 0 ;)
89 ready |= signal->sig[i] &~ blocked->sig[i];
90 break;
91
92 case 4: ready = signal->sig[3] &~ blocked->sig[3];
93 ready |= signal->sig[2] &~ blocked->sig[2];
94 ready |= signal->sig[1] &~ blocked->sig[1];
95 ready |= signal->sig[0] &~ blocked->sig[0];
96 break;
97
98 case 2: ready = signal->sig[1] &~ blocked->sig[1];
99 ready |= signal->sig[0] &~ blocked->sig[0];
100 break;
101
102 case 1: ready = signal->sig[0] &~ blocked->sig[0];
103 }
104 return ready != 0;
105}
106
107#define PENDING(p,b) has_pending_signals(&(p)->signal, (b))
108
Roland McGrath7bb44ad2007-05-23 13:57:44 -0700109static int recalc_sigpending_tsk(struct task_struct *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
111 if (t->signal->group_stop_count > 0 ||
112 PENDING(&t->pending, &t->blocked) ||
Roland McGrath7bb44ad2007-05-23 13:57:44 -0700113 PENDING(&t->signal->shared_pending, &t->blocked)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 set_tsk_thread_flag(t, TIF_SIGPENDING);
Roland McGrath7bb44ad2007-05-23 13:57:44 -0700115 return 1;
116 }
Roland McGrathb74d0de2007-06-06 03:59:00 -0700117 /*
118 * We must never clear the flag in another thread, or in current
119 * when it's possible the current syscall is returning -ERESTART*.
120 * So we don't clear it here, and only callers who know they should do.
121 */
Roland McGrath7bb44ad2007-05-23 13:57:44 -0700122 return 0;
123}
124
125/*
126 * After recalculating TIF_SIGPENDING, we need to make sure the task wakes up.
127 * This is superfluous when called on current, the wakeup is a harmless no-op.
128 */
129void recalc_sigpending_and_wake(struct task_struct *t)
130{
131 if (recalc_sigpending_tsk(t))
132 signal_wake_up(t, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133}
134
135void recalc_sigpending(void)
136{
Rafael J. Wysockicc5f9162007-10-29 14:37:12 -0700137 if (!recalc_sigpending_tsk(current) && !freezing(current))
Roland McGrathb74d0de2007-06-06 03:59:00 -0700138 clear_thread_flag(TIF_SIGPENDING);
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
141
142/* Given the mask, find the first available signal that should be serviced. */
143
Davide Libenzifba2afa2007-05-10 22:23:13 -0700144int next_signal(struct sigpending *pending, sigset_t *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
146 unsigned long i, *s, *m, x;
147 int sig = 0;
148
149 s = pending->signal.sig;
150 m = mask->sig;
151 switch (_NSIG_WORDS) {
152 default:
153 for (i = 0; i < _NSIG_WORDS; ++i, ++s, ++m)
154 if ((x = *s &~ *m) != 0) {
155 sig = ffz(~x) + i*_NSIG_BPW + 1;
156 break;
157 }
158 break;
159
160 case 2: if ((x = s[0] &~ m[0]) != 0)
161 sig = 1;
162 else if ((x = s[1] &~ m[1]) != 0)
163 sig = _NSIG_BPW + 1;
164 else
165 break;
166 sig += ffz(~x);
167 break;
168
169 case 1: if ((x = *s &~ *m) != 0)
170 sig = ffz(~x) + 1;
171 break;
172 }
173
174 return sig;
175}
176
Al Virodd0fc662005-10-07 07:46:04 +0100177static struct sigqueue *__sigqueue_alloc(struct task_struct *t, gfp_t flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 int override_rlimit)
179{
180 struct sigqueue *q = NULL;
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800181 struct user_struct *user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800183 /*
184 * In order to avoid problems with "switch_user()", we want to make
185 * sure that the compiler doesn't re-load "t->user"
186 */
187 user = t->user;
188 barrier();
189 atomic_inc(&user->sigpending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 if (override_rlimit ||
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800191 atomic_read(&user->sigpending) <=
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 t->signal->rlim[RLIMIT_SIGPENDING].rlim_cur)
193 q = kmem_cache_alloc(sigqueue_cachep, flags);
194 if (unlikely(q == NULL)) {
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800195 atomic_dec(&user->sigpending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 } else {
197 INIT_LIST_HEAD(&q->list);
198 q->flags = 0;
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800199 q->user = get_uid(user);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
201 return(q);
202}
203
Andrew Morton514a01b2006-02-03 03:04:41 -0800204static void __sigqueue_free(struct sigqueue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
206 if (q->flags & SIGQUEUE_PREALLOC)
207 return;
208 atomic_dec(&q->user->sigpending);
209 free_uid(q->user);
210 kmem_cache_free(sigqueue_cachep, q);
211}
212
Oleg Nesterov6a14c5c2006-03-28 16:11:18 -0800213void flush_sigqueue(struct sigpending *queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
215 struct sigqueue *q;
216
217 sigemptyset(&queue->signal);
218 while (!list_empty(&queue->list)) {
219 q = list_entry(queue->list.next, struct sigqueue , list);
220 list_del_init(&q->list);
221 __sigqueue_free(q);
222 }
223}
224
225/*
226 * Flush all pending signals for a task.
227 */
Oleg Nesterovc81addc2006-03-28 16:11:17 -0800228void flush_signals(struct task_struct *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
230 unsigned long flags;
231
232 spin_lock_irqsave(&t->sighand->siglock, flags);
Pavel Machekf5264482008-04-21 22:15:06 +0000233 clear_tsk_thread_flag(t, TIF_SIGPENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 flush_sigqueue(&t->pending);
235 flush_sigqueue(&t->signal->shared_pending);
236 spin_unlock_irqrestore(&t->sighand->siglock, flags);
237}
238
Oleg Nesterovcbaffba2008-05-26 20:55:42 +0400239static void __flush_itimer_signals(struct sigpending *pending)
240{
241 sigset_t signal, retain;
242 struct sigqueue *q, *n;
243
244 signal = pending->signal;
245 sigemptyset(&retain);
246
247 list_for_each_entry_safe(q, n, &pending->list, list) {
248 int sig = q->info.si_signo;
249
250 if (likely(q->info.si_code != SI_TIMER)) {
251 sigaddset(&retain, sig);
252 } else {
253 sigdelset(&signal, sig);
254 list_del_init(&q->list);
255 __sigqueue_free(q);
256 }
257 }
258
259 sigorsets(&pending->signal, &signal, &retain);
260}
261
262void flush_itimer_signals(void)
263{
264 struct task_struct *tsk = current;
265 unsigned long flags;
266
267 spin_lock_irqsave(&tsk->sighand->siglock, flags);
268 __flush_itimer_signals(&tsk->pending);
269 __flush_itimer_signals(&tsk->signal->shared_pending);
270 spin_unlock_irqrestore(&tsk->sighand->siglock, flags);
271}
272
Oleg Nesterov10ab8252007-05-09 02:34:37 -0700273void ignore_signals(struct task_struct *t)
274{
275 int i;
276
277 for (i = 0; i < _NSIG; ++i)
278 t->sighand->action[i].sa.sa_handler = SIG_IGN;
279
280 flush_signals(t);
281}
282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 * Flush all handlers for a task.
285 */
286
287void
288flush_signal_handlers(struct task_struct *t, int force_default)
289{
290 int i;
291 struct k_sigaction *ka = &t->sighand->action[0];
292 for (i = _NSIG ; i != 0 ; i--) {
293 if (force_default || ka->sa.sa_handler != SIG_IGN)
294 ka->sa.sa_handler = SIG_DFL;
295 ka->sa.sa_flags = 0;
296 sigemptyset(&ka->sa.sa_mask);
297 ka++;
298 }
299}
300
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200301int unhandled_signal(struct task_struct *tsk, int sig)
302{
Roland McGrath445a91d2008-07-25 19:45:52 -0700303 void __user *handler = tsk->sighand->action[sig-1].sa.sa_handler;
Serge E. Hallynb460cbc2007-10-18 23:39:52 -0700304 if (is_global_init(tsk))
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200305 return 1;
Roland McGrath445a91d2008-07-25 19:45:52 -0700306 if (handler != SIG_IGN && handler != SIG_DFL)
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200307 return 0;
Roland McGrath445a91d2008-07-25 19:45:52 -0700308 return !tracehook_consider_fatal_signal(tsk, sig, handler);
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200309}
310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
312/* Notify the system that a driver wants to block all signals for this
313 * process, and wants to be notified if any signals at all were to be
314 * sent/acted upon. If the notifier routine returns non-zero, then the
315 * signal will be acted upon after all. If the notifier routine returns 0,
316 * then then signal will be blocked. Only one block per process is
317 * allowed. priv is a pointer to private data that the notifier routine
318 * can use to determine if the signal should be blocked or not. */
319
320void
321block_all_signals(int (*notifier)(void *priv), void *priv, sigset_t *mask)
322{
323 unsigned long flags;
324
325 spin_lock_irqsave(&current->sighand->siglock, flags);
326 current->notifier_mask = mask;
327 current->notifier_data = priv;
328 current->notifier = notifier;
329 spin_unlock_irqrestore(&current->sighand->siglock, flags);
330}
331
332/* Notify the system that blocking has ended. */
333
334void
335unblock_all_signals(void)
336{
337 unsigned long flags;
338
339 spin_lock_irqsave(&current->sighand->siglock, flags);
340 current->notifier = NULL;
341 current->notifier_data = NULL;
342 recalc_sigpending();
343 spin_unlock_irqrestore(&current->sighand->siglock, flags);
344}
345
Oleg Nesterov100360f2008-07-25 01:47:29 -0700346static void collect_signal(int sig, struct sigpending *list, siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
348 struct sigqueue *q, *first = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 /*
351 * Collect the siginfo appropriate to this signal. Check if
352 * there is another siginfo for the same signal.
353 */
354 list_for_each_entry(q, &list->list, list) {
355 if (q->info.si_signo == sig) {
Oleg Nesterovd4434202008-07-25 01:47:28 -0700356 if (first)
357 goto still_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 first = q;
359 }
360 }
Oleg Nesterovd4434202008-07-25 01:47:28 -0700361
362 sigdelset(&list->signal, sig);
363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 if (first) {
Oleg Nesterovd4434202008-07-25 01:47:28 -0700365still_pending:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 list_del_init(&first->list);
367 copy_siginfo(info, &first->info);
368 __sigqueue_free(first);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 /* Ok, it wasn't in the queue. This must be
371 a fast-pathed signal or we must have been
372 out of queue space. So zero out the info.
373 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 info->si_signo = sig;
375 info->si_errno = 0;
376 info->si_code = 0;
377 info->si_pid = 0;
378 info->si_uid = 0;
379 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380}
381
382static int __dequeue_signal(struct sigpending *pending, sigset_t *mask,
383 siginfo_t *info)
384{
Roland McGrath27d91e02006-09-29 02:00:31 -0700385 int sig = next_signal(pending, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 if (sig) {
388 if (current->notifier) {
389 if (sigismember(current->notifier_mask, sig)) {
390 if (!(current->notifier)(current->notifier_data)) {
391 clear_thread_flag(TIF_SIGPENDING);
392 return 0;
393 }
394 }
395 }
396
Oleg Nesterov100360f2008-07-25 01:47:29 -0700397 collect_signal(sig, pending, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400 return sig;
401}
402
403/*
404 * Dequeue a signal and return the element to the caller, which is
405 * expected to free it.
406 *
407 * All callers have to hold the siglock.
408 */
409int dequeue_signal(struct task_struct *tsk, sigset_t *mask, siginfo_t *info)
410{
Pavel Emelyanovc5363d02008-04-30 00:52:40 -0700411 int signr;
Benjamin Herrenschmidtcaec4e82007-06-12 08:16:18 +1000412
413 /* We only dequeue private signals from ourselves, we don't let
414 * signalfd steal them
415 */
Davide Libenzib8fceee2007-09-20 12:40:16 -0700416 signr = __dequeue_signal(&tsk->pending, mask, info);
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800417 if (!signr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 signr = __dequeue_signal(&tsk->signal->shared_pending,
419 mask, info);
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800420 /*
421 * itimer signal ?
422 *
423 * itimers are process shared and we restart periodic
424 * itimers in the signal delivery path to prevent DoS
425 * attacks in the high resolution timer case. This is
426 * compliant with the old way of self restarting
427 * itimers, as the SIGALRM is a legacy signal and only
428 * queued once. Changing the restart behaviour to
429 * restart the timer in the signal dequeue path is
430 * reducing the timer noise on heavy loaded !highres
431 * systems too.
432 */
433 if (unlikely(signr == SIGALRM)) {
434 struct hrtimer *tmr = &tsk->signal->real_timer;
435
436 if (!hrtimer_is_queued(tmr) &&
437 tsk->signal->it_real_incr.tv64 != 0) {
438 hrtimer_forward(tmr, tmr->base->get_time(),
439 tsk->signal->it_real_incr);
440 hrtimer_restart(tmr);
441 }
442 }
443 }
Pavel Emelyanovc5363d02008-04-30 00:52:40 -0700444
Davide Libenzib8fceee2007-09-20 12:40:16 -0700445 recalc_sigpending();
Pavel Emelyanovc5363d02008-04-30 00:52:40 -0700446 if (!signr)
447 return 0;
448
449 if (unlikely(sig_kernel_stop(signr))) {
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800450 /*
451 * Set a marker that we have dequeued a stop signal. Our
452 * caller might release the siglock and then the pending
453 * stop signal it is about to process is no longer in the
454 * pending bitmasks, but must still be cleared by a SIGCONT
455 * (and overruled by a SIGKILL). So those cases clear this
456 * shared flag after we've set it. Note that this flag may
457 * remain set after the signal we return is ignored or
458 * handled. That doesn't matter because its only purpose
459 * is to alert stop-signal processing code when another
460 * processor has come along and cleared the flag.
461 */
Oleg Nesterov92413d72008-07-25 01:47:30 -0700462 tsk->signal->flags |= SIGNAL_STOP_DEQUEUED;
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800463 }
Pavel Emelyanovc5363d02008-04-30 00:52:40 -0700464 if ((info->si_code & __SI_MASK) == __SI_TIMER && info->si_sys_private) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 /*
466 * Release the siglock to ensure proper locking order
467 * of timer locks outside of siglocks. Note, we leave
468 * irqs disabled here, since the posix-timers code is
469 * about to disable them again anyway.
470 */
471 spin_unlock(&tsk->sighand->siglock);
472 do_schedule_next_timer(info);
473 spin_lock(&tsk->sighand->siglock);
474 }
475 return signr;
476}
477
478/*
479 * Tell a process that it has a new active signal..
480 *
481 * NOTE! we rely on the previous spin_lock to
482 * lock interrupts for us! We can only be called with
483 * "siglock" held, and the local interrupt must
484 * have been disabled when that got acquired!
485 *
486 * No need to set need_resched since signal event passing
487 * goes through ->blocked
488 */
489void signal_wake_up(struct task_struct *t, int resume)
490{
491 unsigned int mask;
492
493 set_tsk_thread_flag(t, TIF_SIGPENDING);
494
495 /*
Matthew Wilcoxf021a3c2007-12-06 11:13:16 -0500496 * For SIGKILL, we want to wake it up in the stopped/traced/killable
497 * case. We don't check t->state here because there is a race with it
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 * executing another processor and just now entering stopped state.
499 * By using wake_up_state, we ensure the process will wake up and
500 * handle its death signal.
501 */
502 mask = TASK_INTERRUPTIBLE;
503 if (resume)
Matthew Wilcoxf021a3c2007-12-06 11:13:16 -0500504 mask |= TASK_WAKEKILL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 if (!wake_up_state(t, mask))
506 kick_process(t);
507}
508
509/*
510 * Remove signals in mask from the pending set and queue.
511 * Returns 1 if any signals were found.
512 *
513 * All callers must be holding the siglock.
George Anzinger71fabd52006-01-08 01:02:48 -0800514 *
515 * This version takes a sigset mask and looks at all signals,
516 * not just those in the first mask word.
517 */
518static int rm_from_queue_full(sigset_t *mask, struct sigpending *s)
519{
520 struct sigqueue *q, *n;
521 sigset_t m;
522
523 sigandsets(&m, mask, &s->signal);
524 if (sigisemptyset(&m))
525 return 0;
526
527 signandsets(&s->signal, &s->signal, mask);
528 list_for_each_entry_safe(q, n, &s->list, list) {
529 if (sigismember(mask, q->info.si_signo)) {
530 list_del_init(&q->list);
531 __sigqueue_free(q);
532 }
533 }
534 return 1;
535}
536/*
537 * Remove signals in mask from the pending set and queue.
538 * Returns 1 if any signals were found.
539 *
540 * All callers must be holding the siglock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 */
542static int rm_from_queue(unsigned long mask, struct sigpending *s)
543{
544 struct sigqueue *q, *n;
545
546 if (!sigtestsetmask(&s->signal, mask))
547 return 0;
548
549 sigdelsetmask(&s->signal, mask);
550 list_for_each_entry_safe(q, n, &s->list, list) {
551 if (q->info.si_signo < SIGRTMIN &&
552 (mask & sigmask(q->info.si_signo))) {
553 list_del_init(&q->list);
554 __sigqueue_free(q);
555 }
556 }
557 return 1;
558}
559
560/*
561 * Bad permissions for sending the signal
562 */
563static int check_kill_permission(int sig, struct siginfo *info,
564 struct task_struct *t)
565{
Oleg Nesterov2e2ba222008-04-30 00:53:01 -0700566 struct pid *sid;
Oleg Nesterov3b5e9e52008-04-30 00:52:42 -0700567 int error;
568
Jesper Juhl7ed20e12005-05-01 08:59:14 -0700569 if (!valid_signal(sig))
Oleg Nesterov3b5e9e52008-04-30 00:52:42 -0700570 return -EINVAL;
571
572 if (info != SEND_SIG_NOINFO && (is_si_special(info) || SI_FROMKERNEL(info)))
573 return 0;
574
575 error = audit_signal_info(sig, t); /* Let audit system see the signal */
576 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 return error;
Amy Griffise54dc242007-03-29 18:01:04 -0400578
Oleg Nesterov2e2ba222008-04-30 00:53:01 -0700579 if ((current->euid ^ t->suid) && (current->euid ^ t->uid) &&
580 (current->uid ^ t->suid) && (current->uid ^ t->uid) &&
581 !capable(CAP_KILL)) {
582 switch (sig) {
583 case SIGCONT:
Oleg Nesterov2e2ba222008-04-30 00:53:01 -0700584 sid = task_session(t);
Oleg Nesterov2e2ba222008-04-30 00:53:01 -0700585 /*
586 * We don't return the error if sid == NULL. The
587 * task was unhashed, the caller must notice this.
588 */
589 if (!sid || sid == task_session(current))
590 break;
591 default:
592 return -EPERM;
593 }
594 }
Steve Grubbc2f0c7c2005-05-06 12:38:39 +0100595
Amy Griffise54dc242007-03-29 18:01:04 -0400596 return security_task_kill(t, info, sig, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597}
598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599/*
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700600 * Handle magic process-wide effects of stop/continue signals. Unlike
601 * the signal actions, these happen immediately at signal-generation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 * time regardless of blocking, ignoring, or handling. This does the
603 * actual continuing for SIGCONT, but not the actual stopping for stop
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700604 * signals. The process stop is done as a signal action for SIG_DFL.
605 *
606 * Returns true if the signal should be actually delivered, otherwise
607 * it should be dropped.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 */
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700609static int prepare_signal(int sig, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610{
Oleg Nesterovad16a462008-04-30 00:52:46 -0700611 struct signal_struct *signal = p->signal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 struct task_struct *t;
613
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700614 if (unlikely(signal->flags & SIGNAL_GROUP_EXIT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 /*
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700616 * The process is in the middle of dying, nothing to do.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 */
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700618 } else if (sig_kernel_stop(sig)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 /*
620 * This is a stop signal. Remove SIGCONT from all queues.
621 */
Oleg Nesterovad16a462008-04-30 00:52:46 -0700622 rm_from_queue(sigmask(SIGCONT), &signal->shared_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 t = p;
624 do {
625 rm_from_queue(sigmask(SIGCONT), &t->pending);
Oleg Nesterovad16a462008-04-30 00:52:46 -0700626 } while_each_thread(p, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 } else if (sig == SIGCONT) {
Oleg Nesterovfc321d22008-04-30 00:52:46 -0700628 unsigned int why;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 /*
630 * Remove all stop signals from all queues,
631 * and wake all threads.
632 */
Oleg Nesterovad16a462008-04-30 00:52:46 -0700633 rm_from_queue(SIG_KERNEL_STOP_MASK, &signal->shared_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 t = p;
635 do {
636 unsigned int state;
637 rm_from_queue(SIG_KERNEL_STOP_MASK, &t->pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 /*
639 * If there is a handler for SIGCONT, we must make
640 * sure that no thread returns to user mode before
641 * we post the signal, in case it was the only
642 * thread eligible to run the signal handler--then
643 * it must not do anything between resuming and
644 * running the handler. With the TIF_SIGPENDING
645 * flag set, the thread will pause and acquire the
646 * siglock that we hold now and until we've queued
Oleg Nesterovfc321d22008-04-30 00:52:46 -0700647 * the pending signal.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 *
649 * Wake up the stopped thread _after_ setting
650 * TIF_SIGPENDING
651 */
Matthew Wilcoxf021a3c2007-12-06 11:13:16 -0500652 state = __TASK_STOPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 if (sig_user_defined(t, SIGCONT) && !sigismember(&t->blocked, SIGCONT)) {
654 set_tsk_thread_flag(t, TIF_SIGPENDING);
655 state |= TASK_INTERRUPTIBLE;
656 }
657 wake_up_state(t, state);
Oleg Nesterovad16a462008-04-30 00:52:46 -0700658 } while_each_thread(p, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Oleg Nesterovfc321d22008-04-30 00:52:46 -0700660 /*
661 * Notify the parent with CLD_CONTINUED if we were stopped.
662 *
663 * If we were in the middle of a group stop, we pretend it
664 * was already finished, and then continued. Since SIGCHLD
665 * doesn't queue we report only CLD_STOPPED, as if the next
666 * CLD_CONTINUED was dropped.
667 */
668 why = 0;
Oleg Nesterovad16a462008-04-30 00:52:46 -0700669 if (signal->flags & SIGNAL_STOP_STOPPED)
Oleg Nesterovfc321d22008-04-30 00:52:46 -0700670 why |= SIGNAL_CLD_CONTINUED;
Oleg Nesterovad16a462008-04-30 00:52:46 -0700671 else if (signal->group_stop_count)
Oleg Nesterovfc321d22008-04-30 00:52:46 -0700672 why |= SIGNAL_CLD_STOPPED;
673
674 if (why) {
Oleg Nesterov021e1ae2008-04-30 00:53:00 -0700675 /*
676 * The first thread which returns from finish_stop()
677 * will take ->siglock, notice SIGNAL_CLD_MASK, and
678 * notify its parent. See get_signal_to_deliver().
679 */
Oleg Nesterovad16a462008-04-30 00:52:46 -0700680 signal->flags = why | SIGNAL_STOP_CONTINUED;
681 signal->group_stop_count = 0;
682 signal->group_exit_code = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 } else {
684 /*
685 * We are not stopped, but there could be a stop
686 * signal in the middle of being processed after
687 * being removed from the queue. Clear that too.
688 */
Oleg Nesterovad16a462008-04-30 00:52:46 -0700689 signal->flags &= ~SIGNAL_STOP_DEQUEUED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 }
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700692
693 return !sig_ignored(p, sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694}
695
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700696/*
697 * Test if P wants to take SIG. After we've checked all threads with this,
698 * it's equivalent to finding no threads not blocking SIG. Any threads not
699 * blocking SIG were ruled out because they are not running and already
700 * have pending signals. Such threads will dequeue from the shared queue
701 * as soon as they're available, so putting the signal on the shared queue
702 * will be equivalent to sending it to one such thread.
703 */
704static inline int wants_signal(int sig, struct task_struct *p)
705{
706 if (sigismember(&p->blocked, sig))
707 return 0;
708 if (p->flags & PF_EXITING)
709 return 0;
710 if (sig == SIGKILL)
711 return 1;
712 if (task_is_stopped_or_traced(p))
713 return 0;
714 return task_curr(p) || !signal_pending(p);
715}
716
Oleg Nesterov5fcd8352008-04-30 00:52:55 -0700717static void complete_signal(int sig, struct task_struct *p, int group)
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700718{
719 struct signal_struct *signal = p->signal;
720 struct task_struct *t;
721
722 /*
723 * Now find a thread we can wake up to take the signal off the queue.
724 *
725 * If the main thread wants the signal, it gets first crack.
726 * Probably the least surprising to the average bear.
727 */
728 if (wants_signal(sig, p))
729 t = p;
Oleg Nesterov5fcd8352008-04-30 00:52:55 -0700730 else if (!group || thread_group_empty(p))
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700731 /*
732 * There is just one thread and it does not need to be woken.
733 * It will dequeue unblocked signals before it runs again.
734 */
735 return;
736 else {
737 /*
738 * Otherwise try to find a suitable thread.
739 */
740 t = signal->curr_target;
741 while (!wants_signal(sig, t)) {
742 t = next_thread(t);
743 if (t == signal->curr_target)
744 /*
745 * No thread needs to be woken.
746 * Any eligible threads will see
747 * the signal in the queue soon.
748 */
749 return;
750 }
751 signal->curr_target = t;
752 }
753
754 /*
755 * Found a killable thread. If the signal will be fatal,
756 * then start taking the whole group down immediately.
757 */
Oleg Nesterovfae5fa42008-04-30 00:53:03 -0700758 if (sig_fatal(p, sig) &&
759 !(signal->flags & (SIGNAL_UNKILLABLE | SIGNAL_GROUP_EXIT)) &&
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700760 !sigismember(&t->real_blocked, sig) &&
Roland McGrath445a91d2008-07-25 19:45:52 -0700761 (sig == SIGKILL ||
762 !tracehook_consider_fatal_signal(t, sig, SIG_DFL))) {
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700763 /*
764 * This signal will be fatal to the whole group.
765 */
766 if (!sig_kernel_coredump(sig)) {
767 /*
768 * Start a group exit and wake everybody up.
769 * This way we don't have other threads
770 * running and doing things after a slower
771 * thread has the fatal signal pending.
772 */
773 signal->flags = SIGNAL_GROUP_EXIT;
774 signal->group_exit_code = sig;
775 signal->group_stop_count = 0;
776 t = p;
777 do {
778 sigaddset(&t->pending.signal, SIGKILL);
779 signal_wake_up(t, 1);
780 } while_each_thread(p, t);
781 return;
782 }
783 }
784
785 /*
786 * The signal is already in the shared-pending queue.
787 * Tell the chosen thread to wake up and dequeue it.
788 */
789 signal_wake_up(t, sig == SIGKILL);
790 return;
791}
792
Pavel Emelyanovaf7fff92008-04-30 00:52:34 -0700793static inline int legacy_queue(struct sigpending *signals, int sig)
794{
795 return (sig < SIGRTMIN) && sigismember(&signals->signal, sig);
796}
797
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798static int send_signal(int sig, struct siginfo *info, struct task_struct *t,
Oleg Nesterov2ca35152008-04-30 00:52:54 -0700799 int group)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800{
Oleg Nesterov2ca35152008-04-30 00:52:54 -0700801 struct sigpending *pending;
Oleg Nesterov6e65acb2008-04-30 00:52:50 -0700802 struct sigqueue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Oleg Nesterov6e65acb2008-04-30 00:52:50 -0700804 assert_spin_locked(&t->sighand->siglock);
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700805 if (!prepare_signal(sig, t))
806 return 0;
Oleg Nesterov2ca35152008-04-30 00:52:54 -0700807
808 pending = group ? &t->signal->shared_pending : &t->pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 /*
Pavel Emelyanov2acb0242008-04-30 00:52:35 -0700810 * Short-circuit ignored signals and support queuing
811 * exactly one non-rt signal, so that we can get more
812 * detailed information about the cause of the signal.
813 */
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700814 if (legacy_queue(pending, sig))
Pavel Emelyanov2acb0242008-04-30 00:52:35 -0700815 return 0;
Davide Libenzifba2afa2007-05-10 22:23:13 -0700816 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 * fast-pathed signals for kernel-internal things like SIGSTOP
818 * or SIGKILL.
819 */
Oleg Nesterovb67a1b92005-10-30 15:03:44 -0800820 if (info == SEND_SIG_FORCED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 goto out_set;
822
823 /* Real-time signals must be queued if sent by sigqueue, or
824 some other real-time mechanism. It is implementation
825 defined whether kill() does so. We attempt to do so, on
826 the principle of least surprise, but since kill is not
827 allowed to fail with EAGAIN when low on memory we just
828 make sure at least one signal gets delivered and don't
829 pass on the info struct. */
830
831 q = __sigqueue_alloc(t, GFP_ATOMIC, (sig < SIGRTMIN &&
Oleg Nesterov621d3122005-10-30 15:03:45 -0800832 (is_si_special(info) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 info->si_code >= 0)));
834 if (q) {
Oleg Nesterov2ca35152008-04-30 00:52:54 -0700835 list_add_tail(&q->list, &pending->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 switch ((unsigned long) info) {
Oleg Nesterovb67a1b92005-10-30 15:03:44 -0800837 case (unsigned long) SEND_SIG_NOINFO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 q->info.si_signo = sig;
839 q->info.si_errno = 0;
840 q->info.si_code = SI_USER;
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700841 q->info.si_pid = task_pid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 q->info.si_uid = current->uid;
843 break;
Oleg Nesterovb67a1b92005-10-30 15:03:44 -0800844 case (unsigned long) SEND_SIG_PRIV:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 q->info.si_signo = sig;
846 q->info.si_errno = 0;
847 q->info.si_code = SI_KERNEL;
848 q->info.si_pid = 0;
849 q->info.si_uid = 0;
850 break;
851 default:
852 copy_siginfo(&q->info, info);
853 break;
854 }
Oleg Nesterov621d3122005-10-30 15:03:45 -0800855 } else if (!is_si_special(info)) {
856 if (sig >= SIGRTMIN && info->si_code != SI_USER)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 /*
858 * Queue overflow, abort. We may abort if the signal was rt
859 * and sent by user using something other than kill().
860 */
861 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 }
863
864out_set:
Oleg Nesterov53c30332008-04-30 00:53:00 -0700865 signalfd_notify(t, sig);
Oleg Nesterov2ca35152008-04-30 00:52:54 -0700866 sigaddset(&pending->signal, sig);
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -0700867 complete_signal(sig, t, group);
868 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869}
870
Ingo Molnar45807a12007-07-15 23:40:10 -0700871int print_fatal_signals;
872
873static void print_fatal_signal(struct pt_regs *regs, int signr)
874{
875 printk("%s/%d: potentially unexpected fatal signal %d.\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -0700876 current->comm, task_pid_nr(current), signr);
Ingo Molnar45807a12007-07-15 23:40:10 -0700877
Al Viroca5cd872007-10-29 04:31:16 +0000878#if defined(__i386__) && !defined(__arch_um__)
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100879 printk("code at %08lx: ", regs->ip);
Ingo Molnar45807a12007-07-15 23:40:10 -0700880 {
881 int i;
882 for (i = 0; i < 16; i++) {
883 unsigned char insn;
884
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100885 __get_user(insn, (unsigned char *)(regs->ip + i));
Ingo Molnar45807a12007-07-15 23:40:10 -0700886 printk("%02x ", insn);
887 }
888 }
889#endif
890 printk("\n");
891 show_regs(regs);
892}
893
894static int __init setup_print_fatal_signals(char *str)
895{
896 get_option (&str, &print_fatal_signals);
897
898 return 1;
899}
900
901__setup("print-fatal-signals=", setup_print_fatal_signals);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -0700903int
904__group_send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
905{
906 return send_signal(sig, info, p, 1);
907}
908
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909static int
910specific_send_sig_info(int sig, struct siginfo *info, struct task_struct *t)
911{
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -0700912 return send_signal(sig, info, t, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913}
914
915/*
916 * Force a signal that the process can't ignore: if necessary
917 * we unblock the signal and change any SIG_IGN to SIG_DFL.
Linus Torvaldsae74c3b2006-08-02 20:17:49 -0700918 *
919 * Note: If we unblock the signal, we always reset it to SIG_DFL,
920 * since we do not want to have a signal handler that was blocked
921 * be invoked when user space had explicitly blocked it.
922 *
Oleg Nesterov80fe7282008-04-30 00:53:05 -0700923 * We don't want to have recursive SIGSEGV's etc, for example,
924 * that is why we also clear SIGNAL_UNKILLABLE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926int
927force_sig_info(int sig, struct siginfo *info, struct task_struct *t)
928{
929 unsigned long int flags;
Linus Torvaldsae74c3b2006-08-02 20:17:49 -0700930 int ret, blocked, ignored;
931 struct k_sigaction *action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
933 spin_lock_irqsave(&t->sighand->siglock, flags);
Linus Torvaldsae74c3b2006-08-02 20:17:49 -0700934 action = &t->sighand->action[sig-1];
935 ignored = action->sa.sa_handler == SIG_IGN;
936 blocked = sigismember(&t->blocked, sig);
937 if (blocked || ignored) {
938 action->sa.sa_handler = SIG_DFL;
939 if (blocked) {
940 sigdelset(&t->blocked, sig);
Roland McGrath7bb44ad2007-05-23 13:57:44 -0700941 recalc_sigpending_and_wake(t);
Linus Torvaldsae74c3b2006-08-02 20:17:49 -0700942 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 }
Oleg Nesterov80fe7282008-04-30 00:53:05 -0700944 if (action->sa.sa_handler == SIG_DFL)
945 t->signal->flags &= ~SIGNAL_UNKILLABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 ret = specific_send_sig_info(sig, info, t);
947 spin_unlock_irqrestore(&t->sighand->siglock, flags);
948
949 return ret;
950}
951
952void
953force_sig_specific(int sig, struct task_struct *t)
954{
Paul E. McKenneyb0423a02005-10-30 15:03:46 -0800955 force_sig_info(sig, SEND_SIG_FORCED, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956}
957
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958/*
959 * Nuke all other threads in the group.
960 */
961void zap_other_threads(struct task_struct *p)
962{
963 struct task_struct *t;
964
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 p->signal->group_stop_count = 0;
966
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 for (t = next_thread(p); t != p; t = next_thread(t)) {
968 /*
969 * Don't bother with already dead threads
970 */
971 if (t->exit_state)
972 continue;
973
Andrea Arcangeli30e0fca2005-10-30 15:02:38 -0800974 /* SIGKILL will be handled before any pending SIGSTOP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 sigaddset(&t->pending.signal, SIGKILL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 signal_wake_up(t, 1);
977 }
978}
979
Harvey Harrisonb5606c22008-02-13 15:03:16 -0800980int __fatal_signal_pending(struct task_struct *tsk)
Matthew Wilcoxf776d122007-12-06 11:15:50 -0500981{
982 return sigismember(&tsk->pending.signal, SIGKILL);
983}
Trond Myklebust13f09b92008-01-31 20:40:29 -0500984EXPORT_SYMBOL(__fatal_signal_pending);
Matthew Wilcoxf776d122007-12-06 11:15:50 -0500985
Oleg Nesterovf63ee722006-03-28 16:11:13 -0800986struct sighand_struct *lock_task_sighand(struct task_struct *tsk, unsigned long *flags)
987{
988 struct sighand_struct *sighand;
989
Oleg Nesterov1406f2d2008-04-30 00:52:37 -0700990 rcu_read_lock();
Oleg Nesterovf63ee722006-03-28 16:11:13 -0800991 for (;;) {
992 sighand = rcu_dereference(tsk->sighand);
993 if (unlikely(sighand == NULL))
994 break;
995
996 spin_lock_irqsave(&sighand->siglock, *flags);
997 if (likely(sighand == tsk->sighand))
998 break;
999 spin_unlock_irqrestore(&sighand->siglock, *flags);
1000 }
Oleg Nesterov1406f2d2008-04-30 00:52:37 -07001001 rcu_read_unlock();
Oleg Nesterovf63ee722006-03-28 16:11:13 -08001002
1003 return sighand;
1004}
1005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006int group_send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
1007{
1008 unsigned long flags;
1009 int ret;
1010
1011 ret = check_kill_permission(sig, info, p);
Oleg Nesterovf63ee722006-03-28 16:11:13 -08001012
1013 if (!ret && sig) {
1014 ret = -ESRCH;
1015 if (lock_task_sighand(p, &flags)) {
1016 ret = __group_send_sig_info(sig, info, p);
1017 unlock_task_sighand(p, &flags);
Ingo Molnare56d0902006-01-08 01:01:37 -08001018 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 }
1020
1021 return ret;
1022}
1023
1024/*
Pavel Emelyanov146a5052008-02-08 04:19:22 -08001025 * __kill_pgrp_info() sends a signal to a process group: this is what the tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 * control characters do (^C, ^Z etc)
1027 */
1028
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001029int __kill_pgrp_info(int sig, struct siginfo *info, struct pid *pgrp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030{
1031 struct task_struct *p = NULL;
1032 int retval, success;
1033
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 success = 0;
1035 retval = -ESRCH;
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001036 do_each_pid_task(pgrp, PIDTYPE_PGID, p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 int err = group_send_sig_info(sig, info, p);
1038 success |= !err;
1039 retval = err;
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001040 } while_each_pid_task(pgrp, PIDTYPE_PGID, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 return success ? 0 : retval;
1042}
1043
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001044int kill_pid_info(int sig, struct siginfo *info, struct pid *pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045{
Oleg Nesterovd36174b2008-02-08 04:19:18 -08001046 int error = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 struct task_struct *p;
1048
Ingo Molnare56d0902006-01-08 01:01:37 -08001049 rcu_read_lock();
Oleg Nesterovd36174b2008-02-08 04:19:18 -08001050retry:
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001051 p = pid_task(pid, PIDTYPE_PID);
Oleg Nesterovd36174b2008-02-08 04:19:18 -08001052 if (p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 error = group_send_sig_info(sig, info, p);
Oleg Nesterovd36174b2008-02-08 04:19:18 -08001054 if (unlikely(error == -ESRCH))
1055 /*
1056 * The task was unhashed in between, try again.
1057 * If it is dead, pid_task() will return NULL,
1058 * if we race with de_thread() it will find the
1059 * new leader.
1060 */
1061 goto retry;
1062 }
Ingo Molnare56d0902006-01-08 01:01:37 -08001063 rcu_read_unlock();
Oleg Nesterov6ca25b52008-04-30 00:52:45 -07001064
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 return error;
1066}
1067
Matthew Wilcoxc3de4b32007-02-09 08:11:47 -07001068int
1069kill_proc_info(int sig, struct siginfo *info, pid_t pid)
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001070{
1071 int error;
1072 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001073 error = kill_pid_info(sig, info, find_vpid(pid));
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001074 rcu_read_unlock();
1075 return error;
1076}
1077
Eric W. Biederman2425c082006-10-02 02:17:28 -07001078/* like kill_pid_info(), but doesn't use uid/euid of "current" */
1079int kill_pid_info_as_uid(int sig, struct siginfo *info, struct pid *pid,
David Quigley8f95dc52006-06-30 01:55:47 -07001080 uid_t uid, uid_t euid, u32 secid)
Harald Welte46113832005-10-10 19:44:29 +02001081{
1082 int ret = -EINVAL;
1083 struct task_struct *p;
1084
1085 if (!valid_signal(sig))
1086 return ret;
1087
1088 read_lock(&tasklist_lock);
Eric W. Biederman2425c082006-10-02 02:17:28 -07001089 p = pid_task(pid, PIDTYPE_PID);
Harald Welte46113832005-10-10 19:44:29 +02001090 if (!p) {
1091 ret = -ESRCH;
1092 goto out_unlock;
1093 }
Oleg Nesterov0811af22006-01-08 01:03:09 -08001094 if ((info == SEND_SIG_NOINFO || (!is_si_special(info) && SI_FROMUSER(info)))
Harald Welte46113832005-10-10 19:44:29 +02001095 && (euid != p->suid) && (euid != p->uid)
1096 && (uid != p->suid) && (uid != p->uid)) {
1097 ret = -EPERM;
1098 goto out_unlock;
1099 }
David Quigley8f95dc52006-06-30 01:55:47 -07001100 ret = security_task_kill(p, info, sig, secid);
1101 if (ret)
1102 goto out_unlock;
Harald Welte46113832005-10-10 19:44:29 +02001103 if (sig && p->sighand) {
1104 unsigned long flags;
1105 spin_lock_irqsave(&p->sighand->siglock, flags);
1106 ret = __group_send_sig_info(sig, info, p);
1107 spin_unlock_irqrestore(&p->sighand->siglock, flags);
1108 }
1109out_unlock:
1110 read_unlock(&tasklist_lock);
1111 return ret;
1112}
Eric W. Biederman2425c082006-10-02 02:17:28 -07001113EXPORT_SYMBOL_GPL(kill_pid_info_as_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
1115/*
1116 * kill_something_info() interprets pid in interesting ways just like kill(2).
1117 *
1118 * POSIX specifies that kill(-1,sig) is unspecified, but what we have
1119 * is probably wrong. Should make it like BSD or SYSV.
1120 */
1121
Gustavo Fernando Padovanbc64efd2008-07-25 01:47:33 -07001122static int kill_something_info(int sig, struct siginfo *info, pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123{
Eric W. Biederman8d42db182007-02-12 00:52:55 -08001124 int ret;
Pavel Emelyanovd5df7632008-02-08 04:19:22 -08001125
1126 if (pid > 0) {
1127 rcu_read_lock();
1128 ret = kill_pid_info(sig, info, find_vpid(pid));
1129 rcu_read_unlock();
1130 return ret;
1131 }
1132
1133 read_lock(&tasklist_lock);
1134 if (pid != -1) {
1135 ret = __kill_pgrp_info(sig, info,
1136 pid ? find_vpid(-pid) : task_pgrp(current));
1137 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 int retval = 0, count = 0;
1139 struct task_struct * p;
1140
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 for_each_process(p) {
Pavel Emelyanovbac0abd2007-10-18 23:40:18 -07001142 if (p->pid > 1 && !same_thread_group(p, current)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 int err = group_send_sig_info(sig, info, p);
1144 ++count;
1145 if (err != -EPERM)
1146 retval = err;
1147 }
1148 }
Eric W. Biederman8d42db182007-02-12 00:52:55 -08001149 ret = count ? retval : -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 }
Pavel Emelyanovd5df7632008-02-08 04:19:22 -08001151 read_unlock(&tasklist_lock);
1152
Eric W. Biederman8d42db182007-02-12 00:52:55 -08001153 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154}
1155
1156/*
1157 * These are for backward compatibility with the rest of the kernel source.
1158 */
1159
1160/*
Oleg Nesterov08d2c302008-04-30 00:52:51 -07001161 * The caller must ensure the task can't exit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 */
1163int
1164send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
1165{
1166 int ret;
1167 unsigned long flags;
1168
1169 /*
1170 * Make sure legacy kernel users don't send in bad values
1171 * (normal paths check this in check_kill_permission).
1172 */
Jesper Juhl7ed20e12005-05-01 08:59:14 -07001173 if (!valid_signal(sig))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 return -EINVAL;
1175
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 spin_lock_irqsave(&p->sighand->siglock, flags);
1177 ret = specific_send_sig_info(sig, info, p);
1178 spin_unlock_irqrestore(&p->sighand->siglock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 return ret;
1180}
1181
Oleg Nesterovb67a1b92005-10-30 15:03:44 -08001182#define __si_special(priv) \
1183 ((priv) ? SEND_SIG_PRIV : SEND_SIG_NOINFO)
1184
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185int
1186send_sig(int sig, struct task_struct *p, int priv)
1187{
Oleg Nesterovb67a1b92005-10-30 15:03:44 -08001188 return send_sig_info(sig, __si_special(priv), p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189}
1190
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191void
1192force_sig(int sig, struct task_struct *p)
1193{
Oleg Nesterovb67a1b92005-10-30 15:03:44 -08001194 force_sig_info(sig, SEND_SIG_PRIV, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195}
1196
1197/*
1198 * When things go south during signal handling, we
1199 * will force a SIGSEGV. And if the signal that caused
1200 * the problem was already a SIGSEGV, we'll want to
1201 * make sure we don't even try to deliver the signal..
1202 */
1203int
1204force_sigsegv(int sig, struct task_struct *p)
1205{
1206 if (sig == SIGSEGV) {
1207 unsigned long flags;
1208 spin_lock_irqsave(&p->sighand->siglock, flags);
1209 p->sighand->action[sig - 1].sa.sa_handler = SIG_DFL;
1210 spin_unlock_irqrestore(&p->sighand->siglock, flags);
1211 }
1212 force_sig(SIGSEGV, p);
1213 return 0;
1214}
1215
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001216int kill_pgrp(struct pid *pid, int sig, int priv)
1217{
Pavel Emelyanov146a5052008-02-08 04:19:22 -08001218 int ret;
1219
1220 read_lock(&tasklist_lock);
1221 ret = __kill_pgrp_info(sig, __si_special(priv), pid);
1222 read_unlock(&tasklist_lock);
1223
1224 return ret;
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001225}
1226EXPORT_SYMBOL(kill_pgrp);
1227
1228int kill_pid(struct pid *pid, int sig, int priv)
1229{
1230 return kill_pid_info(sig, __si_special(priv), pid);
1231}
1232EXPORT_SYMBOL(kill_pid);
1233
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234/*
1235 * These functions support sending signals using preallocated sigqueue
1236 * structures. This is needed "because realtime applications cannot
1237 * afford to lose notifications of asynchronous events, like timer
1238 * expirations or I/O completions". In the case of Posix Timers
1239 * we allocate the sigqueue structure from the timer_create. If this
1240 * allocation fails we are able to report the failure to the application
1241 * with an EAGAIN error.
1242 */
1243
1244struct sigqueue *sigqueue_alloc(void)
1245{
1246 struct sigqueue *q;
1247
1248 if ((q = __sigqueue_alloc(current, GFP_KERNEL, 0)))
1249 q->flags |= SIGQUEUE_PREALLOC;
1250 return(q);
1251}
1252
1253void sigqueue_free(struct sigqueue *q)
1254{
1255 unsigned long flags;
Oleg Nesterov60187d22007-08-30 23:56:35 -07001256 spinlock_t *lock = &current->sighand->siglock;
1257
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 BUG_ON(!(q->flags & SIGQUEUE_PREALLOC));
1259 /*
Oleg Nesterovc8e85b4f2008-05-26 20:55:42 +04001260 * We must hold ->siglock while testing q->list
1261 * to serialize with collect_signal() or with
Oleg Nesterovda7978b2008-05-23 13:04:41 -07001262 * __exit_signal()->flush_sigqueue().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 */
Oleg Nesterov60187d22007-08-30 23:56:35 -07001264 spin_lock_irqsave(lock, flags);
Oleg Nesterovc8e85b4f2008-05-26 20:55:42 +04001265 q->flags &= ~SIGQUEUE_PREALLOC;
1266 /*
1267 * If it is queued it will be freed when dequeued,
1268 * like the "regular" sigqueue.
1269 */
Oleg Nesterov60187d22007-08-30 23:56:35 -07001270 if (!list_empty(&q->list))
Oleg Nesterovc8e85b4f2008-05-26 20:55:42 +04001271 q = NULL;
Oleg Nesterov60187d22007-08-30 23:56:35 -07001272 spin_unlock_irqrestore(lock, flags);
1273
Oleg Nesterovc8e85b4f2008-05-26 20:55:42 +04001274 if (q)
1275 __sigqueue_free(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276}
1277
Oleg Nesterovac5c2152008-04-30 00:52:57 -07001278int send_sigqueue(struct sigqueue *q, struct task_struct *t, int group)
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001279{
Oleg Nesterove62e6652008-04-30 00:52:56 -07001280 int sig = q->info.si_signo;
Oleg Nesterov2ca35152008-04-30 00:52:54 -07001281 struct sigpending *pending;
Oleg Nesterove62e6652008-04-30 00:52:56 -07001282 unsigned long flags;
1283 int ret;
Oleg Nesterov2ca35152008-04-30 00:52:54 -07001284
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -07001285 BUG_ON(!(q->flags & SIGQUEUE_PREALLOC));
Oleg Nesterove62e6652008-04-30 00:52:56 -07001286
1287 ret = -1;
1288 if (!likely(lock_task_sighand(t, &flags)))
1289 goto ret;
1290
Oleg Nesterov7e695a52008-04-30 00:52:59 -07001291 ret = 1; /* the signal is ignored */
1292 if (!prepare_signal(sig, t))
Oleg Nesterove62e6652008-04-30 00:52:56 -07001293 goto out;
1294
1295 ret = 0;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001296 if (unlikely(!list_empty(&q->list))) {
1297 /*
1298 * If an SI_TIMER entry is already queue just increment
1299 * the overrun count.
1300 */
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001301 BUG_ON(q->info.si_code != SI_TIMER);
1302 q->info.si_overrun++;
Oleg Nesterove62e6652008-04-30 00:52:56 -07001303 goto out;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001304 }
1305
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001306 signalfd_notify(t, sig);
Oleg Nesterov2ca35152008-04-30 00:52:54 -07001307 pending = group ? &t->signal->shared_pending : &t->pending;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001308 list_add_tail(&q->list, &pending->list);
1309 sigaddset(&pending->signal, sig);
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -07001310 complete_signal(sig, t, group);
Oleg Nesterove62e6652008-04-30 00:52:56 -07001311out:
1312 unlock_task_sighand(t, &flags);
1313ret:
1314 return ret;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001315}
1316
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317/*
1318 * Wake up any threads in the parent blocked in wait* syscalls.
1319 */
1320static inline void __wake_up_parent(struct task_struct *p,
1321 struct task_struct *parent)
1322{
1323 wake_up_interruptible_sync(&parent->signal->wait_chldexit);
1324}
1325
1326/*
1327 * Let a parent know about the death of a child.
1328 * For a stopped/continued status change, use do_notify_parent_cldstop instead.
Roland McGrath2b2a1ff2008-07-25 19:45:54 -07001329 *
1330 * Returns -1 if our parent ignored us and so we've switched to
1331 * self-reaping, or else @sig.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 */
Roland McGrath2b2a1ff2008-07-25 19:45:54 -07001333int do_notify_parent(struct task_struct *tsk, int sig)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334{
1335 struct siginfo info;
1336 unsigned long flags;
1337 struct sighand_struct *psig;
1338
1339 BUG_ON(sig == -1);
1340
1341 /* do_notify_parent_cldstop should have been called instead. */
Matthew Wilcoxe1abb392007-12-06 11:07:35 -05001342 BUG_ON(task_is_stopped_or_traced(tsk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
1344 BUG_ON(!tsk->ptrace &&
1345 (tsk->group_leader != tsk || !thread_group_empty(tsk)));
1346
1347 info.si_signo = sig;
1348 info.si_errno = 0;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001349 /*
1350 * we are under tasklist_lock here so our parent is tied to
1351 * us and cannot exit and release its namespace.
1352 *
1353 * the only it can is to switch its nsproxy with sys_unshare,
1354 * bu uncharing pid namespaces is not allowed, so we'll always
1355 * see relevant namespace
1356 *
1357 * write_lock() currently calls preempt_disable() which is the
1358 * same as rcu_read_lock(), but according to Oleg, this is not
1359 * correct to rely on this
1360 */
1361 rcu_read_lock();
1362 info.si_pid = task_pid_nr_ns(tsk, tsk->parent->nsproxy->pid_ns);
1363 rcu_read_unlock();
1364
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 info.si_uid = tsk->uid;
1366
Michael Kerriskd8878ba2008-07-25 01:47:32 -07001367 info.si_utime = cputime_to_clock_t(cputime_add(tsk->utime,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 tsk->signal->utime));
Michael Kerriskd8878ba2008-07-25 01:47:32 -07001369 info.si_stime = cputime_to_clock_t(cputime_add(tsk->stime,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 tsk->signal->stime));
1371
1372 info.si_status = tsk->exit_code & 0x7f;
1373 if (tsk->exit_code & 0x80)
1374 info.si_code = CLD_DUMPED;
1375 else if (tsk->exit_code & 0x7f)
1376 info.si_code = CLD_KILLED;
1377 else {
1378 info.si_code = CLD_EXITED;
1379 info.si_status = tsk->exit_code >> 8;
1380 }
1381
1382 psig = tsk->parent->sighand;
1383 spin_lock_irqsave(&psig->siglock, flags);
Oleg Nesterov7ed01752005-11-10 17:22:18 +03001384 if (!tsk->ptrace && sig == SIGCHLD &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 (psig->action[SIGCHLD-1].sa.sa_handler == SIG_IGN ||
1386 (psig->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDWAIT))) {
1387 /*
1388 * We are exiting and our parent doesn't care. POSIX.1
1389 * defines special semantics for setting SIGCHLD to SIG_IGN
1390 * or setting the SA_NOCLDWAIT flag: we should be reaped
1391 * automatically and not left for our parent's wait4 call.
1392 * Rather than having the parent do it as a magic kind of
1393 * signal handler, we just set this to tell do_exit that we
1394 * can be cleaned up without becoming a zombie. Note that
1395 * we still call __wake_up_parent in this case, because a
1396 * blocked sys_wait4 might now return -ECHILD.
1397 *
1398 * Whether we send SIGCHLD or not for SA_NOCLDWAIT
1399 * is implementation-defined: we do (if you don't want
1400 * it, just use SIG_IGN instead).
1401 */
1402 tsk->exit_signal = -1;
1403 if (psig->action[SIGCHLD-1].sa.sa_handler == SIG_IGN)
Roland McGrath2b2a1ff2008-07-25 19:45:54 -07001404 sig = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 }
Jesper Juhl7ed20e12005-05-01 08:59:14 -07001406 if (valid_signal(sig) && sig > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 __group_send_sig_info(sig, &info, tsk->parent);
1408 __wake_up_parent(tsk, tsk->parent);
1409 spin_unlock_irqrestore(&psig->siglock, flags);
Roland McGrath2b2a1ff2008-07-25 19:45:54 -07001410
1411 return sig;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412}
1413
Oleg Nesterova1d5e212006-03-28 16:11:29 -08001414static void do_notify_parent_cldstop(struct task_struct *tsk, int why)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415{
1416 struct siginfo info;
1417 unsigned long flags;
Oleg Nesterovbc505a42005-09-06 15:17:32 -07001418 struct task_struct *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 struct sighand_struct *sighand;
1420
Oleg Nesterova1d5e212006-03-28 16:11:29 -08001421 if (tsk->ptrace & PT_PTRACED)
Oleg Nesterovbc505a42005-09-06 15:17:32 -07001422 parent = tsk->parent;
1423 else {
1424 tsk = tsk->group_leader;
1425 parent = tsk->real_parent;
1426 }
1427
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 info.si_signo = SIGCHLD;
1429 info.si_errno = 0;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001430 /*
1431 * see comment in do_notify_parent() abot the following 3 lines
1432 */
1433 rcu_read_lock();
1434 info.si_pid = task_pid_nr_ns(tsk, tsk->parent->nsproxy->pid_ns);
1435 rcu_read_unlock();
1436
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 info.si_uid = tsk->uid;
1438
Michael Kerriskd8878ba2008-07-25 01:47:32 -07001439 info.si_utime = cputime_to_clock_t(tsk->utime);
1440 info.si_stime = cputime_to_clock_t(tsk->stime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
1442 info.si_code = why;
1443 switch (why) {
1444 case CLD_CONTINUED:
1445 info.si_status = SIGCONT;
1446 break;
1447 case CLD_STOPPED:
1448 info.si_status = tsk->signal->group_exit_code & 0x7f;
1449 break;
1450 case CLD_TRAPPED:
1451 info.si_status = tsk->exit_code & 0x7f;
1452 break;
1453 default:
1454 BUG();
1455 }
1456
1457 sighand = parent->sighand;
1458 spin_lock_irqsave(&sighand->siglock, flags);
1459 if (sighand->action[SIGCHLD-1].sa.sa_handler != SIG_IGN &&
1460 !(sighand->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDSTOP))
1461 __group_send_sig_info(SIGCHLD, &info, parent);
1462 /*
1463 * Even if SIGCHLD is not generated, we must wake up wait4 calls.
1464 */
1465 __wake_up_parent(tsk, parent);
1466 spin_unlock_irqrestore(&sighand->siglock, flags);
1467}
1468
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001469static inline int may_ptrace_stop(void)
1470{
1471 if (!likely(current->ptrace & PT_PTRACED))
1472 return 0;
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001473 /*
1474 * Are we in the middle of do_coredump?
1475 * If so and our tracer is also part of the coredump stopping
1476 * is a deadlock situation, and pointless because our tracer
1477 * is dead so don't allow us to stop.
1478 * If SIGKILL was already sent before the caller unlocked
Oleg Nesterov999d9fc2008-07-25 01:47:41 -07001479 * ->siglock we must see ->core_state != NULL. Otherwise it
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001480 * is safe to enter schedule().
1481 */
Oleg Nesterov999d9fc2008-07-25 01:47:41 -07001482 if (unlikely(current->mm->core_state) &&
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001483 unlikely(current->mm == current->parent->mm))
1484 return 0;
1485
1486 return 1;
1487}
1488
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489/*
Roland McGrath1a669c22008-02-06 01:37:37 -08001490 * Return nonzero if there is a SIGKILL that should be waking us up.
1491 * Called with the siglock held.
1492 */
1493static int sigkill_pending(struct task_struct *tsk)
1494{
Oleg Nesterov3d749b92008-07-25 01:47:37 -07001495 return sigismember(&tsk->pending.signal, SIGKILL) ||
1496 sigismember(&tsk->signal->shared_pending.signal, SIGKILL);
Roland McGrath1a669c22008-02-06 01:37:37 -08001497}
1498
1499/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 * This must be called with current->sighand->siglock held.
1501 *
1502 * This should be the path for all ptrace stops.
1503 * We always set current->last_siginfo while stopped here.
1504 * That makes it a way to test a stopped process for
1505 * being ptrace-stopped vs being job-control-stopped.
1506 *
Oleg Nesterov20686a32008-02-08 04:19:03 -08001507 * If we actually decide not to stop at all because the tracer
1508 * is gone, we keep current->exit_code unless clear_code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 */
Oleg Nesterov20686a32008-02-08 04:19:03 -08001510static void ptrace_stop(int exit_code, int clear_code, siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511{
Roland McGrath1a669c22008-02-06 01:37:37 -08001512 if (arch_ptrace_stop_needed(exit_code, info)) {
1513 /*
1514 * The arch code has something special to do before a
1515 * ptrace stop. This is allowed to block, e.g. for faults
1516 * on user stack pages. We can't keep the siglock while
1517 * calling arch_ptrace_stop, so we must release it now.
1518 * To preserve proper semantics, we must do this before
1519 * any signal bookkeeping like checking group_stop_count.
1520 * Meanwhile, a SIGKILL could come in before we retake the
1521 * siglock. That must prevent us from sleeping in TASK_TRACED.
1522 * So after regaining the lock, we must check for SIGKILL.
1523 */
1524 spin_unlock_irq(&current->sighand->siglock);
1525 arch_ptrace_stop(exit_code, info);
1526 spin_lock_irq(&current->sighand->siglock);
Oleg Nesterov3d749b92008-07-25 01:47:37 -07001527 if (sigkill_pending(current))
1528 return;
Roland McGrath1a669c22008-02-06 01:37:37 -08001529 }
1530
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 /*
1532 * If there is a group stop in progress,
1533 * we must participate in the bookkeeping.
1534 */
1535 if (current->signal->group_stop_count > 0)
1536 --current->signal->group_stop_count;
1537
1538 current->last_siginfo = info;
1539 current->exit_code = exit_code;
1540
1541 /* Let the debugger run. */
Oleg Nesterovd9ae90a2008-02-06 01:36:13 -08001542 __set_current_state(TASK_TRACED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 spin_unlock_irq(&current->sighand->siglock);
1544 read_lock(&tasklist_lock);
Oleg Nesterov3d749b92008-07-25 01:47:37 -07001545 if (may_ptrace_stop()) {
Oleg Nesterova1d5e212006-03-28 16:11:29 -08001546 do_notify_parent_cldstop(current, CLD_TRAPPED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 read_unlock(&tasklist_lock);
1548 schedule();
1549 } else {
1550 /*
1551 * By the time we got the lock, our tracer went away.
Oleg Nesterov6405f7f2008-02-08 04:19:00 -08001552 * Don't drop the lock yet, another tracer may come.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 */
Oleg Nesterov6405f7f2008-02-08 04:19:00 -08001554 __set_current_state(TASK_RUNNING);
Oleg Nesterov20686a32008-02-08 04:19:03 -08001555 if (clear_code)
1556 current->exit_code = 0;
Oleg Nesterov6405f7f2008-02-08 04:19:00 -08001557 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 }
1559
1560 /*
Roland McGrath13b1c3d2008-03-03 20:22:05 -08001561 * While in TASK_TRACED, we were considered "frozen enough".
1562 * Now that we woke up, it's crucial if we're supposed to be
1563 * frozen that we freeze now before running anything substantial.
1564 */
1565 try_to_freeze();
1566
1567 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 * We are back. Now reacquire the siglock before touching
1569 * last_siginfo, so that we are sure to have synchronized with
1570 * any signal-sending on another CPU that wants to examine it.
1571 */
1572 spin_lock_irq(&current->sighand->siglock);
1573 current->last_siginfo = NULL;
1574
1575 /*
1576 * Queued signals ignored us while we were stopped for tracing.
1577 * So check for any that we should take before resuming user mode.
Roland McGrathb74d0de2007-06-06 03:59:00 -07001578 * This sets TIF_SIGPENDING, but never clears it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 */
Roland McGrathb74d0de2007-06-06 03:59:00 -07001580 recalc_sigpending_tsk(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581}
1582
1583void ptrace_notify(int exit_code)
1584{
1585 siginfo_t info;
1586
1587 BUG_ON((exit_code & (0x7f | ~0xffff)) != SIGTRAP);
1588
1589 memset(&info, 0, sizeof info);
1590 info.si_signo = SIGTRAP;
1591 info.si_code = exit_code;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001592 info.si_pid = task_pid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 info.si_uid = current->uid;
1594
1595 /* Let the debugger run. */
1596 spin_lock_irq(&current->sighand->siglock);
Oleg Nesterov20686a32008-02-08 04:19:03 -08001597 ptrace_stop(exit_code, 1, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 spin_unlock_irq(&current->sighand->siglock);
1599}
1600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601static void
1602finish_stop(int stop_count)
1603{
1604 /*
1605 * If there are no other threads in the group, or if there is
1606 * a group stop in progress and we are the last to stop,
1607 * report to the parent. When ptraced, every thread reports itself.
1608 */
Roland McGrathfa00b802008-07-25 19:45:54 -07001609 if (tracehook_notify_jctl(stop_count == 0, CLD_STOPPED)) {
Oleg Nesterova1d5e212006-03-28 16:11:29 -08001610 read_lock(&tasklist_lock);
1611 do_notify_parent_cldstop(current, CLD_STOPPED);
1612 read_unlock(&tasklist_lock);
1613 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
Rafael J. Wysocki3df494a2006-12-13 00:34:28 -08001615 do {
1616 schedule();
1617 } while (try_to_freeze());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 /*
1619 * Now we don't run again until continued.
1620 */
1621 current->exit_code = 0;
1622}
1623
1624/*
1625 * This performs the stopping for SIGSTOP and other stop signals.
1626 * We have to stop all threads in the thread group.
1627 * Returns nonzero if we've actually stopped and released the siglock.
1628 * Returns zero if we didn't stop and still hold the siglock.
1629 */
Oleg Nesterova122b342006-03-28 16:11:22 -08001630static int do_signal_stop(int signr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631{
1632 struct signal_struct *sig = current->signal;
Oleg Nesterovdac27f42006-03-28 16:11:28 -08001633 int stop_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 if (sig->group_stop_count > 0) {
1636 /*
1637 * There is a group stop in progress. We don't need to
1638 * start another one.
1639 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 stop_count = --sig->group_stop_count;
Oleg Nesterovdac27f42006-03-28 16:11:28 -08001641 } else {
Oleg Nesterovf558b7e2008-02-04 22:27:24 -08001642 struct task_struct *t;
1643
Oleg Nesterov2b201a92008-07-25 01:47:31 -07001644 if (!likely(sig->flags & SIGNAL_STOP_DEQUEUED) ||
Oleg Nesterov573cf9a2008-04-30 00:52:36 -07001645 unlikely(signal_group_exit(sig)))
Oleg Nesterovf558b7e2008-02-04 22:27:24 -08001646 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 * There is no group stop already in progress.
Oleg Nesterova122b342006-03-28 16:11:22 -08001649 * We must initiate one now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 */
Oleg Nesterova122b342006-03-28 16:11:22 -08001651 sig->group_exit_code = signr;
1652
1653 stop_count = 0;
1654 for (t = next_thread(current); t != current; t = next_thread(t))
1655 /*
1656 * Setting state to TASK_STOPPED for a group
1657 * stop is always done with the siglock held,
1658 * so this check has no races.
1659 */
Oleg Nesterovd12619b2008-02-08 04:19:12 -08001660 if (!(t->flags & PF_EXITING) &&
Matthew Wilcoxe1abb392007-12-06 11:07:35 -05001661 !task_is_stopped_or_traced(t)) {
Oleg Nesterova122b342006-03-28 16:11:22 -08001662 stop_count++;
1663 signal_wake_up(t, 0);
1664 }
1665 sig->group_stop_count = stop_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 }
1667
Oleg Nesterovdac27f42006-03-28 16:11:28 -08001668 if (stop_count == 0)
1669 sig->flags = SIGNAL_STOP_STOPPED;
1670 current->exit_code = sig->group_exit_code;
1671 __set_current_state(TASK_STOPPED);
1672
1673 spin_unlock_irq(&current->sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 finish_stop(stop_count);
1675 return 1;
1676}
1677
Roland McGrath18c98b62008-04-17 18:44:38 -07001678static int ptrace_signal(int signr, siginfo_t *info,
1679 struct pt_regs *regs, void *cookie)
1680{
1681 if (!(current->ptrace & PT_PTRACED))
1682 return signr;
1683
1684 ptrace_signal_deliver(regs, cookie);
1685
1686 /* Let the debugger run. */
1687 ptrace_stop(signr, 0, info);
1688
1689 /* We're back. Did the debugger cancel the sig? */
1690 signr = current->exit_code;
1691 if (signr == 0)
1692 return signr;
1693
1694 current->exit_code = 0;
1695
1696 /* Update the siginfo structure if the signal has
1697 changed. If the debugger wanted something
1698 specific in the siginfo structure then it should
1699 have updated *info via PTRACE_SETSIGINFO. */
1700 if (signr != info->si_signo) {
1701 info->si_signo = signr;
1702 info->si_errno = 0;
1703 info->si_code = SI_USER;
1704 info->si_pid = task_pid_vnr(current->parent);
1705 info->si_uid = current->parent->uid;
1706 }
1707
1708 /* If the (new) signal is now blocked, requeue it. */
1709 if (sigismember(&current->blocked, signr)) {
1710 specific_send_sig_info(signr, info, current);
1711 signr = 0;
1712 }
1713
1714 return signr;
1715}
1716
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717int get_signal_to_deliver(siginfo_t *info, struct k_sigaction *return_ka,
1718 struct pt_regs *regs, void *cookie)
1719{
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001720 struct sighand_struct *sighand = current->sighand;
1721 struct signal_struct *signal = current->signal;
1722 int signr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
Roland McGrath13b1c3d2008-03-03 20:22:05 -08001724relock:
1725 /*
1726 * We'll jump back here after any time we were stopped in TASK_STOPPED.
1727 * While in TASK_STOPPED, we were considered "frozen enough".
1728 * Now that we woke up, it's crucial if we're supposed to be
1729 * frozen that we freeze now before running anything substantial.
1730 */
Rafael J. Wysockifc558a72006-03-23 03:00:05 -08001731 try_to_freeze();
1732
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001733 spin_lock_irq(&sighand->siglock);
Oleg Nesterov021e1ae2008-04-30 00:53:00 -07001734 /*
1735 * Every stopped thread goes here after wakeup. Check to see if
1736 * we should notify the parent, prepare_signal(SIGCONT) encodes
1737 * the CLD_ si_code into SIGNAL_CLD_MASK bits.
1738 */
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001739 if (unlikely(signal->flags & SIGNAL_CLD_MASK)) {
1740 int why = (signal->flags & SIGNAL_STOP_CONTINUED)
Oleg Nesterove4420552008-04-30 00:52:44 -07001741 ? CLD_CONTINUED : CLD_STOPPED;
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001742 signal->flags &= ~SIGNAL_CLD_MASK;
1743 spin_unlock_irq(&sighand->siglock);
Oleg Nesterove4420552008-04-30 00:52:44 -07001744
Roland McGrathfa00b802008-07-25 19:45:54 -07001745 if (unlikely(!tracehook_notify_jctl(1, why)))
1746 goto relock;
1747
Oleg Nesterove4420552008-04-30 00:52:44 -07001748 read_lock(&tasklist_lock);
1749 do_notify_parent_cldstop(current->group_leader, why);
1750 read_unlock(&tasklist_lock);
1751 goto relock;
1752 }
1753
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 for (;;) {
1755 struct k_sigaction *ka;
1756
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001757 if (unlikely(signal->group_stop_count > 0) &&
Oleg Nesterovf558b7e2008-02-04 22:27:24 -08001758 do_signal_stop(0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 goto relock;
1760
Roland McGrath7bcf6a22008-07-25 19:45:53 -07001761 /*
1762 * Tracing can induce an artifical signal and choose sigaction.
1763 * The return value in @signr determines the default action,
1764 * but @info->si_signo is the signal number we will report.
1765 */
1766 signr = tracehook_get_signal(current, regs, info, return_ka);
1767 if (unlikely(signr < 0))
1768 goto relock;
1769 if (unlikely(signr != 0))
1770 ka = return_ka;
1771 else {
1772 signr = dequeue_signal(current, &current->blocked,
1773 info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
Roland McGrath18c98b62008-04-17 18:44:38 -07001775 if (!signr)
Roland McGrath7bcf6a22008-07-25 19:45:53 -07001776 break; /* will return 0 */
1777
1778 if (signr != SIGKILL) {
1779 signr = ptrace_signal(signr, info,
1780 regs, cookie);
1781 if (!signr)
1782 continue;
1783 }
1784
1785 ka = &sighand->action[signr-1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 }
1787
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 if (ka->sa.sa_handler == SIG_IGN) /* Do nothing. */
1789 continue;
1790 if (ka->sa.sa_handler != SIG_DFL) {
1791 /* Run the handler. */
1792 *return_ka = *ka;
1793
1794 if (ka->sa.sa_flags & SA_ONESHOT)
1795 ka->sa.sa_handler = SIG_DFL;
1796
1797 break; /* will return non-zero "signr" value */
1798 }
1799
1800 /*
1801 * Now we are doing the default action for this signal.
1802 */
1803 if (sig_kernel_ignore(signr)) /* Default is nothing. */
1804 continue;
1805
Sukadev Bhattiprolu84d73782006-12-08 02:38:01 -08001806 /*
Sukadev Bhattiprolu0fbc26a2007-10-18 23:40:13 -07001807 * Global init gets no signals it doesn't want.
Sukadev Bhattiprolu84d73782006-12-08 02:38:01 -08001808 */
Oleg Nesterovfae5fa42008-04-30 00:53:03 -07001809 if (unlikely(signal->flags & SIGNAL_UNKILLABLE) &&
1810 !signal_group_exit(signal))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 continue;
1812
1813 if (sig_kernel_stop(signr)) {
1814 /*
1815 * The default action is to stop all threads in
1816 * the thread group. The job control signals
1817 * do nothing in an orphaned pgrp, but SIGSTOP
1818 * always works. Note that siglock needs to be
1819 * dropped during the call to is_orphaned_pgrp()
1820 * because of lock ordering with tasklist_lock.
1821 * This allows an intervening SIGCONT to be posted.
1822 * We need to check for that and bail out if necessary.
1823 */
1824 if (signr != SIGSTOP) {
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001825 spin_unlock_irq(&sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
1827 /* signals can be posted during this window */
1828
Eric W. Biederman3e7cd6c2007-02-12 00:52:58 -08001829 if (is_current_pgrp_orphaned())
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 goto relock;
1831
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001832 spin_lock_irq(&sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 }
1834
Roland McGrath7bcf6a22008-07-25 19:45:53 -07001835 if (likely(do_signal_stop(info->si_signo))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 /* It released the siglock. */
1837 goto relock;
1838 }
1839
1840 /*
1841 * We didn't actually stop, due to a race
1842 * with SIGCONT or something like that.
1843 */
1844 continue;
1845 }
1846
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001847 spin_unlock_irq(&sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
1849 /*
1850 * Anything else is fatal, maybe with a core dump.
1851 */
1852 current->flags |= PF_SIGNALED;
Oleg Nesterov2dce81b2008-04-30 00:52:58 -07001853
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 if (sig_kernel_coredump(signr)) {
Oleg Nesterov2dce81b2008-04-30 00:52:58 -07001855 if (print_fatal_signals)
Roland McGrath7bcf6a22008-07-25 19:45:53 -07001856 print_fatal_signal(regs, info->si_signo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 /*
1858 * If it was able to dump core, this kills all
1859 * other threads in the group and synchronizes with
1860 * their demise. If we lost the race with another
1861 * thread getting here, it set group_exit_code
1862 * first and our do_group_exit call below will use
1863 * that value and ignore the one we pass it.
1864 */
Roland McGrath7bcf6a22008-07-25 19:45:53 -07001865 do_coredump(info->si_signo, info->si_signo, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 }
1867
1868 /*
1869 * Death signals, no core dump.
1870 */
Roland McGrath7bcf6a22008-07-25 19:45:53 -07001871 do_group_exit(info->si_signo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 /* NOTREACHED */
1873 }
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001874 spin_unlock_irq(&sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 return signr;
1876}
1877
Oleg Nesterovd12619b2008-02-08 04:19:12 -08001878void exit_signals(struct task_struct *tsk)
1879{
1880 int group_stop = 0;
Oleg Nesterov5dee1702008-02-08 04:19:13 -08001881 struct task_struct *t;
Oleg Nesterovd12619b2008-02-08 04:19:12 -08001882
Oleg Nesterov5dee1702008-02-08 04:19:13 -08001883 if (thread_group_empty(tsk) || signal_group_exit(tsk->signal)) {
1884 tsk->flags |= PF_EXITING;
1885 return;
Oleg Nesterovd12619b2008-02-08 04:19:12 -08001886 }
1887
Oleg Nesterov5dee1702008-02-08 04:19:13 -08001888 spin_lock_irq(&tsk->sighand->siglock);
Oleg Nesterovd12619b2008-02-08 04:19:12 -08001889 /*
1890 * From now this task is not visible for group-wide signals,
1891 * see wants_signal(), do_signal_stop().
1892 */
1893 tsk->flags |= PF_EXITING;
Oleg Nesterov5dee1702008-02-08 04:19:13 -08001894 if (!signal_pending(tsk))
1895 goto out;
1896
1897 /* It could be that __group_complete_signal() choose us to
1898 * notify about group-wide signal. Another thread should be
1899 * woken now to take the signal since we will not.
1900 */
1901 for (t = tsk; (t = next_thread(t)) != tsk; )
1902 if (!signal_pending(t) && !(t->flags & PF_EXITING))
1903 recalc_sigpending_and_wake(t);
1904
1905 if (unlikely(tsk->signal->group_stop_count) &&
1906 !--tsk->signal->group_stop_count) {
1907 tsk->signal->flags = SIGNAL_STOP_STOPPED;
1908 group_stop = 1;
1909 }
1910out:
Oleg Nesterovd12619b2008-02-08 04:19:12 -08001911 spin_unlock_irq(&tsk->sighand->siglock);
1912
Roland McGrathfa00b802008-07-25 19:45:54 -07001913 if (unlikely(group_stop) && tracehook_notify_jctl(1, CLD_STOPPED)) {
Oleg Nesterovd12619b2008-02-08 04:19:12 -08001914 read_lock(&tasklist_lock);
1915 do_notify_parent_cldstop(tsk, CLD_STOPPED);
1916 read_unlock(&tasklist_lock);
1917 }
1918}
1919
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920EXPORT_SYMBOL(recalc_sigpending);
1921EXPORT_SYMBOL_GPL(dequeue_signal);
1922EXPORT_SYMBOL(flush_signals);
1923EXPORT_SYMBOL(force_sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924EXPORT_SYMBOL(send_sig);
1925EXPORT_SYMBOL(send_sig_info);
1926EXPORT_SYMBOL(sigprocmask);
1927EXPORT_SYMBOL(block_all_signals);
1928EXPORT_SYMBOL(unblock_all_signals);
1929
1930
1931/*
1932 * System call entry points.
1933 */
1934
1935asmlinkage long sys_restart_syscall(void)
1936{
1937 struct restart_block *restart = &current_thread_info()->restart_block;
1938 return restart->fn(restart);
1939}
1940
1941long do_no_restart_syscall(struct restart_block *param)
1942{
1943 return -EINTR;
1944}
1945
1946/*
1947 * We don't need to get the kernel lock - this is all local to this
1948 * particular thread.. (and that's good, because this is _heavily_
1949 * used by various programs)
1950 */
1951
1952/*
1953 * This is also useful for kernel threads that want to temporarily
1954 * (or permanently) block certain signals.
1955 *
1956 * NOTE! Unlike the user-mode sys_sigprocmask(), the kernel
1957 * interface happily blocks "unblockable" signals like SIGKILL
1958 * and friends.
1959 */
1960int sigprocmask(int how, sigset_t *set, sigset_t *oldset)
1961{
1962 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
1964 spin_lock_irq(&current->sighand->siglock);
Oleg Nesterova26fd332006-03-23 03:00:49 -08001965 if (oldset)
1966 *oldset = current->blocked;
1967
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 error = 0;
1969 switch (how) {
1970 case SIG_BLOCK:
1971 sigorsets(&current->blocked, &current->blocked, set);
1972 break;
1973 case SIG_UNBLOCK:
1974 signandsets(&current->blocked, &current->blocked, set);
1975 break;
1976 case SIG_SETMASK:
1977 current->blocked = *set;
1978 break;
1979 default:
1980 error = -EINVAL;
1981 }
1982 recalc_sigpending();
1983 spin_unlock_irq(&current->sighand->siglock);
Oleg Nesterova26fd332006-03-23 03:00:49 -08001984
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 return error;
1986}
1987
1988asmlinkage long
1989sys_rt_sigprocmask(int how, sigset_t __user *set, sigset_t __user *oset, size_t sigsetsize)
1990{
1991 int error = -EINVAL;
1992 sigset_t old_set, new_set;
1993
1994 /* XXX: Don't preclude handling different sized sigset_t's. */
1995 if (sigsetsize != sizeof(sigset_t))
1996 goto out;
1997
1998 if (set) {
1999 error = -EFAULT;
2000 if (copy_from_user(&new_set, set, sizeof(*set)))
2001 goto out;
2002 sigdelsetmask(&new_set, sigmask(SIGKILL)|sigmask(SIGSTOP));
2003
2004 error = sigprocmask(how, &new_set, &old_set);
2005 if (error)
2006 goto out;
2007 if (oset)
2008 goto set_old;
2009 } else if (oset) {
2010 spin_lock_irq(&current->sighand->siglock);
2011 old_set = current->blocked;
2012 spin_unlock_irq(&current->sighand->siglock);
2013
2014 set_old:
2015 error = -EFAULT;
2016 if (copy_to_user(oset, &old_set, sizeof(*oset)))
2017 goto out;
2018 }
2019 error = 0;
2020out:
2021 return error;
2022}
2023
2024long do_sigpending(void __user *set, unsigned long sigsetsize)
2025{
2026 long error = -EINVAL;
2027 sigset_t pending;
2028
2029 if (sigsetsize > sizeof(sigset_t))
2030 goto out;
2031
2032 spin_lock_irq(&current->sighand->siglock);
2033 sigorsets(&pending, &current->pending.signal,
2034 &current->signal->shared_pending.signal);
2035 spin_unlock_irq(&current->sighand->siglock);
2036
2037 /* Outside the lock because only this thread touches it. */
2038 sigandsets(&pending, &current->blocked, &pending);
2039
2040 error = -EFAULT;
2041 if (!copy_to_user(set, &pending, sigsetsize))
2042 error = 0;
2043
2044out:
2045 return error;
2046}
2047
2048asmlinkage long
2049sys_rt_sigpending(sigset_t __user *set, size_t sigsetsize)
2050{
2051 return do_sigpending(set, sigsetsize);
2052}
2053
2054#ifndef HAVE_ARCH_COPY_SIGINFO_TO_USER
2055
2056int copy_siginfo_to_user(siginfo_t __user *to, siginfo_t *from)
2057{
2058 int err;
2059
2060 if (!access_ok (VERIFY_WRITE, to, sizeof(siginfo_t)))
2061 return -EFAULT;
2062 if (from->si_code < 0)
2063 return __copy_to_user(to, from, sizeof(siginfo_t))
2064 ? -EFAULT : 0;
2065 /*
2066 * If you change siginfo_t structure, please be sure
2067 * this code is fixed accordingly.
Davide Libenzifba2afa2007-05-10 22:23:13 -07002068 * Please remember to update the signalfd_copyinfo() function
2069 * inside fs/signalfd.c too, in case siginfo_t changes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 * It should never copy any pad contained in the structure
2071 * to avoid security leaks, but must copy the generic
2072 * 3 ints plus the relevant union member.
2073 */
2074 err = __put_user(from->si_signo, &to->si_signo);
2075 err |= __put_user(from->si_errno, &to->si_errno);
2076 err |= __put_user((short)from->si_code, &to->si_code);
2077 switch (from->si_code & __SI_MASK) {
2078 case __SI_KILL:
2079 err |= __put_user(from->si_pid, &to->si_pid);
2080 err |= __put_user(from->si_uid, &to->si_uid);
2081 break;
2082 case __SI_TIMER:
2083 err |= __put_user(from->si_tid, &to->si_tid);
2084 err |= __put_user(from->si_overrun, &to->si_overrun);
2085 err |= __put_user(from->si_ptr, &to->si_ptr);
2086 break;
2087 case __SI_POLL:
2088 err |= __put_user(from->si_band, &to->si_band);
2089 err |= __put_user(from->si_fd, &to->si_fd);
2090 break;
2091 case __SI_FAULT:
2092 err |= __put_user(from->si_addr, &to->si_addr);
2093#ifdef __ARCH_SI_TRAPNO
2094 err |= __put_user(from->si_trapno, &to->si_trapno);
2095#endif
2096 break;
2097 case __SI_CHLD:
2098 err |= __put_user(from->si_pid, &to->si_pid);
2099 err |= __put_user(from->si_uid, &to->si_uid);
2100 err |= __put_user(from->si_status, &to->si_status);
2101 err |= __put_user(from->si_utime, &to->si_utime);
2102 err |= __put_user(from->si_stime, &to->si_stime);
2103 break;
2104 case __SI_RT: /* This is not generated by the kernel as of now. */
2105 case __SI_MESGQ: /* But this is */
2106 err |= __put_user(from->si_pid, &to->si_pid);
2107 err |= __put_user(from->si_uid, &to->si_uid);
2108 err |= __put_user(from->si_ptr, &to->si_ptr);
2109 break;
2110 default: /* this is just in case for now ... */
2111 err |= __put_user(from->si_pid, &to->si_pid);
2112 err |= __put_user(from->si_uid, &to->si_uid);
2113 break;
2114 }
2115 return err;
2116}
2117
2118#endif
2119
2120asmlinkage long
2121sys_rt_sigtimedwait(const sigset_t __user *uthese,
2122 siginfo_t __user *uinfo,
2123 const struct timespec __user *uts,
2124 size_t sigsetsize)
2125{
2126 int ret, sig;
2127 sigset_t these;
2128 struct timespec ts;
2129 siginfo_t info;
2130 long timeout = 0;
2131
2132 /* XXX: Don't preclude handling different sized sigset_t's. */
2133 if (sigsetsize != sizeof(sigset_t))
2134 return -EINVAL;
2135
2136 if (copy_from_user(&these, uthese, sizeof(these)))
2137 return -EFAULT;
2138
2139 /*
2140 * Invert the set of allowed signals to get those we
2141 * want to block.
2142 */
2143 sigdelsetmask(&these, sigmask(SIGKILL)|sigmask(SIGSTOP));
2144 signotset(&these);
2145
2146 if (uts) {
2147 if (copy_from_user(&ts, uts, sizeof(ts)))
2148 return -EFAULT;
2149 if (ts.tv_nsec >= 1000000000L || ts.tv_nsec < 0
2150 || ts.tv_sec < 0)
2151 return -EINVAL;
2152 }
2153
2154 spin_lock_irq(&current->sighand->siglock);
2155 sig = dequeue_signal(current, &these, &info);
2156 if (!sig) {
2157 timeout = MAX_SCHEDULE_TIMEOUT;
2158 if (uts)
2159 timeout = (timespec_to_jiffies(&ts)
2160 + (ts.tv_sec || ts.tv_nsec));
2161
2162 if (timeout) {
2163 /* None ready -- temporarily unblock those we're
2164 * interested while we are sleeping in so that we'll
2165 * be awakened when they arrive. */
2166 current->real_blocked = current->blocked;
2167 sigandsets(&current->blocked, &current->blocked, &these);
2168 recalc_sigpending();
2169 spin_unlock_irq(&current->sighand->siglock);
2170
Nishanth Aravamudan75bcc8c2005-09-10 00:27:24 -07002171 timeout = schedule_timeout_interruptible(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 spin_lock_irq(&current->sighand->siglock);
2174 sig = dequeue_signal(current, &these, &info);
2175 current->blocked = current->real_blocked;
2176 siginitset(&current->real_blocked, 0);
2177 recalc_sigpending();
2178 }
2179 }
2180 spin_unlock_irq(&current->sighand->siglock);
2181
2182 if (sig) {
2183 ret = sig;
2184 if (uinfo) {
2185 if (copy_siginfo_to_user(uinfo, &info))
2186 ret = -EFAULT;
2187 }
2188 } else {
2189 ret = -EAGAIN;
2190 if (timeout)
2191 ret = -EINTR;
2192 }
2193
2194 return ret;
2195}
2196
2197asmlinkage long
Gustavo Fernando Padovanbc64efd2008-07-25 01:47:33 -07002198sys_kill(pid_t pid, int sig)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199{
2200 struct siginfo info;
2201
2202 info.si_signo = sig;
2203 info.si_errno = 0;
2204 info.si_code = SI_USER;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002205 info.si_pid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 info.si_uid = current->uid;
2207
2208 return kill_something_info(sig, &info, pid);
2209}
2210
Gustavo Fernando Padovanbc64efd2008-07-25 01:47:33 -07002211static int do_tkill(pid_t tgid, pid_t pid, int sig)
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002212{
2213 int error;
2214 struct siginfo info;
2215 struct task_struct *p;
Oleg Nesterov3547ff32008-04-30 00:52:51 -07002216 unsigned long flags;
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002217
2218 error = -ESRCH;
2219 info.si_signo = sig;
2220 info.si_errno = 0;
2221 info.si_code = SI_TKILL;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002222 info.si_pid = task_tgid_vnr(current);
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002223 info.si_uid = current->uid;
2224
Oleg Nesterov3547ff32008-04-30 00:52:51 -07002225 rcu_read_lock();
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07002226 p = find_task_by_vpid(pid);
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002227 if (p && (tgid <= 0 || task_tgid_vnr(p) == tgid)) {
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002228 error = check_kill_permission(sig, &info, p);
2229 /*
2230 * The null signal is a permissions and process existence
2231 * probe. No signal is actually delivered.
Oleg Nesterov3547ff32008-04-30 00:52:51 -07002232 *
2233 * If lock_task_sighand() fails we pretend the task dies
2234 * after receiving the signal. The window is tiny, and the
2235 * signal is private anyway.
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002236 */
Oleg Nesterov3547ff32008-04-30 00:52:51 -07002237 if (!error && sig && lock_task_sighand(p, &flags)) {
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002238 error = specific_send_sig_info(sig, &info, p);
Oleg Nesterov3547ff32008-04-30 00:52:51 -07002239 unlock_task_sighand(p, &flags);
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002240 }
2241 }
Oleg Nesterov3547ff32008-04-30 00:52:51 -07002242 rcu_read_unlock();
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002243
2244 return error;
2245}
2246
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247/**
2248 * sys_tgkill - send signal to one specific thread
2249 * @tgid: the thread group ID of the thread
2250 * @pid: the PID of the thread
2251 * @sig: signal to be sent
2252 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08002253 * This syscall also checks the @tgid and returns -ESRCH even if the PID
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 * exists but it's not belonging to the target process anymore. This
2255 * method solves the problem of threads exiting and PIDs getting reused.
2256 */
Gustavo Fernando Padovanbc64efd2008-07-25 01:47:33 -07002257asmlinkage long sys_tgkill(pid_t tgid, pid_t pid, int sig)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 /* This is only valid for single tasks */
2260 if (pid <= 0 || tgid <= 0)
2261 return -EINVAL;
2262
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002263 return do_tkill(tgid, pid, sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264}
2265
2266/*
2267 * Send a signal to only one task, even if it's a CLONE_THREAD task.
2268 */
2269asmlinkage long
Gustavo Fernando Padovanbc64efd2008-07-25 01:47:33 -07002270sys_tkill(pid_t pid, int sig)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 /* This is only valid for single tasks */
2273 if (pid <= 0)
2274 return -EINVAL;
2275
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002276 return do_tkill(0, pid, sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277}
2278
2279asmlinkage long
Gustavo Fernando Padovanbc64efd2008-07-25 01:47:33 -07002280sys_rt_sigqueueinfo(pid_t pid, int sig, siginfo_t __user *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281{
2282 siginfo_t info;
2283
2284 if (copy_from_user(&info, uinfo, sizeof(siginfo_t)))
2285 return -EFAULT;
2286
2287 /* Not even root can pretend to send signals from the kernel.
2288 Nor can they impersonate a kill(), which adds source info. */
2289 if (info.si_code >= 0)
2290 return -EPERM;
2291 info.si_signo = sig;
2292
2293 /* POSIX.1b doesn't mention process groups. */
2294 return kill_proc_info(sig, &info, pid);
2295}
2296
Oleg Nesterov88531f72006-03-28 16:11:24 -08002297int do_sigaction(int sig, struct k_sigaction *act, struct k_sigaction *oact)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298{
Pavel Emelyanov93585ee2008-04-30 00:52:39 -07002299 struct task_struct *t = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 struct k_sigaction *k;
George Anzinger71fabd52006-01-08 01:02:48 -08002301 sigset_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302
Jesper Juhl7ed20e12005-05-01 08:59:14 -07002303 if (!valid_signal(sig) || sig < 1 || (act && sig_kernel_only(sig)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 return -EINVAL;
2305
Pavel Emelyanov93585ee2008-04-30 00:52:39 -07002306 k = &t->sighand->action[sig-1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
2308 spin_lock_irq(&current->sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 if (oact)
2310 *oact = *k;
2311
2312 if (act) {
Oleg Nesterov9ac95f22006-02-09 22:41:50 +03002313 sigdelsetmask(&act->sa.sa_mask,
2314 sigmask(SIGKILL) | sigmask(SIGSTOP));
Oleg Nesterov88531f72006-03-28 16:11:24 -08002315 *k = *act;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 /*
2317 * POSIX 3.3.1.3:
2318 * "Setting a signal action to SIG_IGN for a signal that is
2319 * pending shall cause the pending signal to be discarded,
2320 * whether or not it is blocked."
2321 *
2322 * "Setting a signal action to SIG_DFL for a signal that is
2323 * pending and whose default action is to ignore the signal
2324 * (for example, SIGCHLD), shall cause the pending signal to
2325 * be discarded, whether or not it is blocked"
2326 */
Roland McGrath35de2542008-07-25 19:45:51 -07002327 if (sig_handler_ignored(sig_handler(t, sig), sig)) {
George Anzinger71fabd52006-01-08 01:02:48 -08002328 sigemptyset(&mask);
2329 sigaddset(&mask, sig);
2330 rm_from_queue_full(&mask, &t->signal->shared_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 do {
George Anzinger71fabd52006-01-08 01:02:48 -08002332 rm_from_queue_full(&mask, &t->pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 t = next_thread(t);
2334 } while (t != current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 }
2337
2338 spin_unlock_irq(&current->sighand->siglock);
2339 return 0;
2340}
2341
2342int
2343do_sigaltstack (const stack_t __user *uss, stack_t __user *uoss, unsigned long sp)
2344{
2345 stack_t oss;
2346 int error;
2347
2348 if (uoss) {
2349 oss.ss_sp = (void __user *) current->sas_ss_sp;
2350 oss.ss_size = current->sas_ss_size;
2351 oss.ss_flags = sas_ss_flags(sp);
2352 }
2353
2354 if (uss) {
2355 void __user *ss_sp;
2356 size_t ss_size;
2357 int ss_flags;
2358
2359 error = -EFAULT;
2360 if (!access_ok(VERIFY_READ, uss, sizeof(*uss))
2361 || __get_user(ss_sp, &uss->ss_sp)
2362 || __get_user(ss_flags, &uss->ss_flags)
2363 || __get_user(ss_size, &uss->ss_size))
2364 goto out;
2365
2366 error = -EPERM;
2367 if (on_sig_stack(sp))
2368 goto out;
2369
2370 error = -EINVAL;
2371 /*
2372 *
2373 * Note - this code used to test ss_flags incorrectly
2374 * old code may have been written using ss_flags==0
2375 * to mean ss_flags==SS_ONSTACK (as this was the only
2376 * way that worked) - this fix preserves that older
2377 * mechanism
2378 */
2379 if (ss_flags != SS_DISABLE && ss_flags != SS_ONSTACK && ss_flags != 0)
2380 goto out;
2381
2382 if (ss_flags == SS_DISABLE) {
2383 ss_size = 0;
2384 ss_sp = NULL;
2385 } else {
2386 error = -ENOMEM;
2387 if (ss_size < MINSIGSTKSZ)
2388 goto out;
2389 }
2390
2391 current->sas_ss_sp = (unsigned long) ss_sp;
2392 current->sas_ss_size = ss_size;
2393 }
2394
2395 if (uoss) {
2396 error = -EFAULT;
2397 if (copy_to_user(uoss, &oss, sizeof(oss)))
2398 goto out;
2399 }
2400
2401 error = 0;
2402out:
2403 return error;
2404}
2405
2406#ifdef __ARCH_WANT_SYS_SIGPENDING
2407
2408asmlinkage long
2409sys_sigpending(old_sigset_t __user *set)
2410{
2411 return do_sigpending(set, sizeof(*set));
2412}
2413
2414#endif
2415
2416#ifdef __ARCH_WANT_SYS_SIGPROCMASK
2417/* Some platforms have their own version with special arguments others
2418 support only sys_rt_sigprocmask. */
2419
2420asmlinkage long
2421sys_sigprocmask(int how, old_sigset_t __user *set, old_sigset_t __user *oset)
2422{
2423 int error;
2424 old_sigset_t old_set, new_set;
2425
2426 if (set) {
2427 error = -EFAULT;
2428 if (copy_from_user(&new_set, set, sizeof(*set)))
2429 goto out;
2430 new_set &= ~(sigmask(SIGKILL) | sigmask(SIGSTOP));
2431
2432 spin_lock_irq(&current->sighand->siglock);
2433 old_set = current->blocked.sig[0];
2434
2435 error = 0;
2436 switch (how) {
2437 default:
2438 error = -EINVAL;
2439 break;
2440 case SIG_BLOCK:
2441 sigaddsetmask(&current->blocked, new_set);
2442 break;
2443 case SIG_UNBLOCK:
2444 sigdelsetmask(&current->blocked, new_set);
2445 break;
2446 case SIG_SETMASK:
2447 current->blocked.sig[0] = new_set;
2448 break;
2449 }
2450
2451 recalc_sigpending();
2452 spin_unlock_irq(&current->sighand->siglock);
2453 if (error)
2454 goto out;
2455 if (oset)
2456 goto set_old;
2457 } else if (oset) {
2458 old_set = current->blocked.sig[0];
2459 set_old:
2460 error = -EFAULT;
2461 if (copy_to_user(oset, &old_set, sizeof(*oset)))
2462 goto out;
2463 }
2464 error = 0;
2465out:
2466 return error;
2467}
2468#endif /* __ARCH_WANT_SYS_SIGPROCMASK */
2469
2470#ifdef __ARCH_WANT_SYS_RT_SIGACTION
2471asmlinkage long
2472sys_rt_sigaction(int sig,
2473 const struct sigaction __user *act,
2474 struct sigaction __user *oact,
2475 size_t sigsetsize)
2476{
2477 struct k_sigaction new_sa, old_sa;
2478 int ret = -EINVAL;
2479
2480 /* XXX: Don't preclude handling different sized sigset_t's. */
2481 if (sigsetsize != sizeof(sigset_t))
2482 goto out;
2483
2484 if (act) {
2485 if (copy_from_user(&new_sa.sa, act, sizeof(new_sa.sa)))
2486 return -EFAULT;
2487 }
2488
2489 ret = do_sigaction(sig, act ? &new_sa : NULL, oact ? &old_sa : NULL);
2490
2491 if (!ret && oact) {
2492 if (copy_to_user(oact, &old_sa.sa, sizeof(old_sa.sa)))
2493 return -EFAULT;
2494 }
2495out:
2496 return ret;
2497}
2498#endif /* __ARCH_WANT_SYS_RT_SIGACTION */
2499
2500#ifdef __ARCH_WANT_SYS_SGETMASK
2501
2502/*
2503 * For backwards compatibility. Functionality superseded by sigprocmask.
2504 */
2505asmlinkage long
2506sys_sgetmask(void)
2507{
2508 /* SMP safe */
2509 return current->blocked.sig[0];
2510}
2511
2512asmlinkage long
2513sys_ssetmask(int newmask)
2514{
2515 int old;
2516
2517 spin_lock_irq(&current->sighand->siglock);
2518 old = current->blocked.sig[0];
2519
2520 siginitset(&current->blocked, newmask & ~(sigmask(SIGKILL)|
2521 sigmask(SIGSTOP)));
2522 recalc_sigpending();
2523 spin_unlock_irq(&current->sighand->siglock);
2524
2525 return old;
2526}
2527#endif /* __ARCH_WANT_SGETMASK */
2528
2529#ifdef __ARCH_WANT_SYS_SIGNAL
2530/*
2531 * For backwards compatibility. Functionality superseded by sigaction.
2532 */
2533asmlinkage unsigned long
2534sys_signal(int sig, __sighandler_t handler)
2535{
2536 struct k_sigaction new_sa, old_sa;
2537 int ret;
2538
2539 new_sa.sa.sa_handler = handler;
2540 new_sa.sa.sa_flags = SA_ONESHOT | SA_NOMASK;
Oleg Nesterovc70d3d72006-02-09 22:41:41 +03002541 sigemptyset(&new_sa.sa.sa_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542
2543 ret = do_sigaction(sig, &new_sa, &old_sa);
2544
2545 return ret ? ret : (unsigned long)old_sa.sa.sa_handler;
2546}
2547#endif /* __ARCH_WANT_SYS_SIGNAL */
2548
2549#ifdef __ARCH_WANT_SYS_PAUSE
2550
2551asmlinkage long
2552sys_pause(void)
2553{
2554 current->state = TASK_INTERRUPTIBLE;
2555 schedule();
2556 return -ERESTARTNOHAND;
2557}
2558
2559#endif
2560
David Woodhouse150256d2006-01-18 17:43:57 -08002561#ifdef __ARCH_WANT_SYS_RT_SIGSUSPEND
2562asmlinkage long sys_rt_sigsuspend(sigset_t __user *unewset, size_t sigsetsize)
2563{
2564 sigset_t newset;
2565
2566 /* XXX: Don't preclude handling different sized sigset_t's. */
2567 if (sigsetsize != sizeof(sigset_t))
2568 return -EINVAL;
2569
2570 if (copy_from_user(&newset, unewset, sizeof(newset)))
2571 return -EFAULT;
2572 sigdelsetmask(&newset, sigmask(SIGKILL)|sigmask(SIGSTOP));
2573
2574 spin_lock_irq(&current->sighand->siglock);
2575 current->saved_sigmask = current->blocked;
2576 current->blocked = newset;
2577 recalc_sigpending();
2578 spin_unlock_irq(&current->sighand->siglock);
2579
2580 current->state = TASK_INTERRUPTIBLE;
2581 schedule();
Roland McGrath4e4c22c2008-04-30 00:53:06 -07002582 set_restore_sigmask();
David Woodhouse150256d2006-01-18 17:43:57 -08002583 return -ERESTARTNOHAND;
2584}
2585#endif /* __ARCH_WANT_SYS_RT_SIGSUSPEND */
2586
David Howellsf269fdd2006-09-27 01:50:23 -07002587__attribute__((weak)) const char *arch_vma_name(struct vm_area_struct *vma)
2588{
2589 return NULL;
2590}
2591
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592void __init signals_init(void)
2593{
Christoph Lameter0a31bd52007-05-06 14:49:57 -07002594 sigqueue_cachep = KMEM_CACHE(sigqueue, SLAB_PANIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595}