blob: 4530fc65445518272ae851fa44e90378cfd908e1 [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>
Mathieu Desnoyers0a16b602008-07-18 12:16:17 -040030#include <trace/sched.h>
Sukadev Bhattiprolu84d73782006-12-08 02:38:01 -080031
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <asm/param.h>
33#include <asm/uaccess.h>
34#include <asm/unistd.h>
35#include <asm/siginfo.h>
Al Viroe1396062006-05-25 10:19:47 -040036#include "audit.h" /* audit_signal_info() */
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38/*
39 * SLAB caches for signal bits.
40 */
41
Christoph Lametere18b8902006-12-06 20:33:20 -080042static struct kmem_cache *sigqueue_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Roland McGrath35de2542008-07-25 19:45:51 -070044static void __user *sig_handler(struct task_struct *t, int sig)
Pavel Emelyanov93585ee2008-04-30 00:52:39 -070045{
Roland McGrath35de2542008-07-25 19:45:51 -070046 return t->sighand->action[sig - 1].sa.sa_handler;
47}
Pavel Emelyanov93585ee2008-04-30 00:52:39 -070048
Roland McGrath35de2542008-07-25 19:45:51 -070049static int sig_handler_ignored(void __user *handler, int sig)
50{
Pavel Emelyanov93585ee2008-04-30 00:52:39 -070051 /* Is it explicitly or implicitly ignored? */
Pavel Emelyanov93585ee2008-04-30 00:52:39 -070052 return handler == SIG_IGN ||
53 (handler == SIG_DFL && sig_kernel_ignore(sig));
54}
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56static int sig_ignored(struct task_struct *t, int sig)
57{
Roland McGrath35de2542008-07-25 19:45:51 -070058 void __user *handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60 /*
61 * Blocked signals are never ignored, since the
62 * signal handler may change by the time it is
63 * unblocked.
64 */
Roland McGrath325d22d2007-11-12 15:41:55 -080065 if (sigismember(&t->blocked, sig) || sigismember(&t->real_blocked, sig))
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 return 0;
67
Roland McGrath35de2542008-07-25 19:45:51 -070068 handler = sig_handler(t, sig);
69 if (!sig_handler_ignored(handler, sig))
70 return 0;
71
72 /*
73 * Tracers may want to know about even ignored signals.
74 */
75 return !tracehook_consider_ignored_signal(t, sig, handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076}
77
78/*
79 * Re-calculate pending state from the set of locally pending
80 * signals, globally pending signals, and blocked signals.
81 */
82static inline int has_pending_signals(sigset_t *signal, sigset_t *blocked)
83{
84 unsigned long ready;
85 long i;
86
87 switch (_NSIG_WORDS) {
88 default:
89 for (i = _NSIG_WORDS, ready = 0; --i >= 0 ;)
90 ready |= signal->sig[i] &~ blocked->sig[i];
91 break;
92
93 case 4: ready = signal->sig[3] &~ blocked->sig[3];
94 ready |= signal->sig[2] &~ blocked->sig[2];
95 ready |= signal->sig[1] &~ blocked->sig[1];
96 ready |= signal->sig[0] &~ blocked->sig[0];
97 break;
98
99 case 2: ready = signal->sig[1] &~ blocked->sig[1];
100 ready |= signal->sig[0] &~ blocked->sig[0];
101 break;
102
103 case 1: ready = signal->sig[0] &~ blocked->sig[0];
104 }
105 return ready != 0;
106}
107
108#define PENDING(p,b) has_pending_signals(&(p)->signal, (b))
109
Roland McGrath7bb44ad2007-05-23 13:57:44 -0700110static int recalc_sigpending_tsk(struct task_struct *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
112 if (t->signal->group_stop_count > 0 ||
113 PENDING(&t->pending, &t->blocked) ||
Roland McGrath7bb44ad2007-05-23 13:57:44 -0700114 PENDING(&t->signal->shared_pending, &t->blocked)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 set_tsk_thread_flag(t, TIF_SIGPENDING);
Roland McGrath7bb44ad2007-05-23 13:57:44 -0700116 return 1;
117 }
Roland McGrathb74d0de2007-06-06 03:59:00 -0700118 /*
119 * We must never clear the flag in another thread, or in current
120 * when it's possible the current syscall is returning -ERESTART*.
121 * So we don't clear it here, and only callers who know they should do.
122 */
Roland McGrath7bb44ad2007-05-23 13:57:44 -0700123 return 0;
124}
125
126/*
127 * After recalculating TIF_SIGPENDING, we need to make sure the task wakes up.
128 * This is superfluous when called on current, the wakeup is a harmless no-op.
129 */
130void recalc_sigpending_and_wake(struct task_struct *t)
131{
132 if (recalc_sigpending_tsk(t))
133 signal_wake_up(t, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134}
135
136void recalc_sigpending(void)
137{
Roland McGrathb787f7b2008-07-25 19:45:55 -0700138 if (unlikely(tracehook_force_sigpending()))
139 set_thread_flag(TIF_SIGPENDING);
140 else if (!recalc_sigpending_tsk(current) && !freezing(current))
Roland McGrathb74d0de2007-06-06 03:59:00 -0700141 clear_thread_flag(TIF_SIGPENDING);
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}
144
145/* Given the mask, find the first available signal that should be serviced. */
146
Davide Libenzifba2afa2007-05-10 22:23:13 -0700147int next_signal(struct sigpending *pending, sigset_t *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
149 unsigned long i, *s, *m, x;
150 int sig = 0;
151
152 s = pending->signal.sig;
153 m = mask->sig;
154 switch (_NSIG_WORDS) {
155 default:
156 for (i = 0; i < _NSIG_WORDS; ++i, ++s, ++m)
157 if ((x = *s &~ *m) != 0) {
158 sig = ffz(~x) + i*_NSIG_BPW + 1;
159 break;
160 }
161 break;
162
163 case 2: if ((x = s[0] &~ m[0]) != 0)
164 sig = 1;
165 else if ((x = s[1] &~ m[1]) != 0)
166 sig = _NSIG_BPW + 1;
167 else
168 break;
169 sig += ffz(~x);
170 break;
171
172 case 1: if ((x = *s &~ *m) != 0)
173 sig = ffz(~x) + 1;
174 break;
175 }
176
177 return sig;
178}
179
Al Virodd0fc662005-10-07 07:46:04 +0100180static struct sigqueue *__sigqueue_alloc(struct task_struct *t, gfp_t flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 int override_rlimit)
182{
183 struct sigqueue *q = NULL;
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800184 struct user_struct *user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800186 /*
187 * In order to avoid problems with "switch_user()", we want to make
188 * sure that the compiler doesn't re-load "t->user"
189 */
190 user = t->user;
191 barrier();
192 atomic_inc(&user->sigpending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 if (override_rlimit ||
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800194 atomic_read(&user->sigpending) <=
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 t->signal->rlim[RLIMIT_SIGPENDING].rlim_cur)
196 q = kmem_cache_alloc(sigqueue_cachep, flags);
197 if (unlikely(q == NULL)) {
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800198 atomic_dec(&user->sigpending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 } else {
200 INIT_LIST_HEAD(&q->list);
201 q->flags = 0;
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800202 q->user = get_uid(user);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 }
204 return(q);
205}
206
Andrew Morton514a01b2006-02-03 03:04:41 -0800207static void __sigqueue_free(struct sigqueue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
209 if (q->flags & SIGQUEUE_PREALLOC)
210 return;
211 atomic_dec(&q->user->sigpending);
212 free_uid(q->user);
213 kmem_cache_free(sigqueue_cachep, q);
214}
215
Oleg Nesterov6a14c5c2006-03-28 16:11:18 -0800216void flush_sigqueue(struct sigpending *queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
218 struct sigqueue *q;
219
220 sigemptyset(&queue->signal);
221 while (!list_empty(&queue->list)) {
222 q = list_entry(queue->list.next, struct sigqueue , list);
223 list_del_init(&q->list);
224 __sigqueue_free(q);
225 }
226}
227
228/*
229 * Flush all pending signals for a task.
230 */
Oleg Nesterovc81addc2006-03-28 16:11:17 -0800231void flush_signals(struct task_struct *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
233 unsigned long flags;
234
235 spin_lock_irqsave(&t->sighand->siglock, flags);
Pavel Machekf5264482008-04-21 22:15:06 +0000236 clear_tsk_thread_flag(t, TIF_SIGPENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 flush_sigqueue(&t->pending);
238 flush_sigqueue(&t->signal->shared_pending);
239 spin_unlock_irqrestore(&t->sighand->siglock, flags);
240}
241
Oleg Nesterovcbaffba2008-05-26 20:55:42 +0400242static void __flush_itimer_signals(struct sigpending *pending)
243{
244 sigset_t signal, retain;
245 struct sigqueue *q, *n;
246
247 signal = pending->signal;
248 sigemptyset(&retain);
249
250 list_for_each_entry_safe(q, n, &pending->list, list) {
251 int sig = q->info.si_signo;
252
253 if (likely(q->info.si_code != SI_TIMER)) {
254 sigaddset(&retain, sig);
255 } else {
256 sigdelset(&signal, sig);
257 list_del_init(&q->list);
258 __sigqueue_free(q);
259 }
260 }
261
262 sigorsets(&pending->signal, &signal, &retain);
263}
264
265void flush_itimer_signals(void)
266{
267 struct task_struct *tsk = current;
268 unsigned long flags;
269
270 spin_lock_irqsave(&tsk->sighand->siglock, flags);
271 __flush_itimer_signals(&tsk->pending);
272 __flush_itimer_signals(&tsk->signal->shared_pending);
273 spin_unlock_irqrestore(&tsk->sighand->siglock, flags);
274}
275
Oleg Nesterov10ab8252007-05-09 02:34:37 -0700276void ignore_signals(struct task_struct *t)
277{
278 int i;
279
280 for (i = 0; i < _NSIG; ++i)
281 t->sighand->action[i].sa.sa_handler = SIG_IGN;
282
283 flush_signals(t);
284}
285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 * Flush all handlers for a task.
288 */
289
290void
291flush_signal_handlers(struct task_struct *t, int force_default)
292{
293 int i;
294 struct k_sigaction *ka = &t->sighand->action[0];
295 for (i = _NSIG ; i != 0 ; i--) {
296 if (force_default || ka->sa.sa_handler != SIG_IGN)
297 ka->sa.sa_handler = SIG_DFL;
298 ka->sa.sa_flags = 0;
299 sigemptyset(&ka->sa.sa_mask);
300 ka++;
301 }
302}
303
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200304int unhandled_signal(struct task_struct *tsk, int sig)
305{
Roland McGrath445a91d2008-07-25 19:45:52 -0700306 void __user *handler = tsk->sighand->action[sig-1].sa.sa_handler;
Serge E. Hallynb460cbc2007-10-18 23:39:52 -0700307 if (is_global_init(tsk))
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200308 return 1;
Roland McGrath445a91d2008-07-25 19:45:52 -0700309 if (handler != SIG_IGN && handler != SIG_DFL)
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200310 return 0;
Roland McGrath445a91d2008-07-25 19:45:52 -0700311 return !tracehook_consider_fatal_signal(tsk, sig, handler);
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200312}
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315/* Notify the system that a driver wants to block all signals for this
316 * process, and wants to be notified if any signals at all were to be
317 * sent/acted upon. If the notifier routine returns non-zero, then the
318 * signal will be acted upon after all. If the notifier routine returns 0,
319 * then then signal will be blocked. Only one block per process is
320 * allowed. priv is a pointer to private data that the notifier routine
321 * can use to determine if the signal should be blocked or not. */
322
323void
324block_all_signals(int (*notifier)(void *priv), void *priv, sigset_t *mask)
325{
326 unsigned long flags;
327
328 spin_lock_irqsave(&current->sighand->siglock, flags);
329 current->notifier_mask = mask;
330 current->notifier_data = priv;
331 current->notifier = notifier;
332 spin_unlock_irqrestore(&current->sighand->siglock, flags);
333}
334
335/* Notify the system that blocking has ended. */
336
337void
338unblock_all_signals(void)
339{
340 unsigned long flags;
341
342 spin_lock_irqsave(&current->sighand->siglock, flags);
343 current->notifier = NULL;
344 current->notifier_data = NULL;
345 recalc_sigpending();
346 spin_unlock_irqrestore(&current->sighand->siglock, flags);
347}
348
Oleg Nesterov100360f2008-07-25 01:47:29 -0700349static void collect_signal(int sig, struct sigpending *list, siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
351 struct sigqueue *q, *first = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 /*
354 * Collect the siginfo appropriate to this signal. Check if
355 * there is another siginfo for the same signal.
356 */
357 list_for_each_entry(q, &list->list, list) {
358 if (q->info.si_signo == sig) {
Oleg Nesterovd4434202008-07-25 01:47:28 -0700359 if (first)
360 goto still_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 first = q;
362 }
363 }
Oleg Nesterovd4434202008-07-25 01:47:28 -0700364
365 sigdelset(&list->signal, sig);
366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (first) {
Oleg Nesterovd4434202008-07-25 01:47:28 -0700368still_pending:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 list_del_init(&first->list);
370 copy_siginfo(info, &first->info);
371 __sigqueue_free(first);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 /* Ok, it wasn't in the queue. This must be
374 a fast-pathed signal or we must have been
375 out of queue space. So zero out the info.
376 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 info->si_signo = sig;
378 info->si_errno = 0;
379 info->si_code = 0;
380 info->si_pid = 0;
381 info->si_uid = 0;
382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383}
384
385static int __dequeue_signal(struct sigpending *pending, sigset_t *mask,
386 siginfo_t *info)
387{
Roland McGrath27d91e02006-09-29 02:00:31 -0700388 int sig = next_signal(pending, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 if (sig) {
391 if (current->notifier) {
392 if (sigismember(current->notifier_mask, sig)) {
393 if (!(current->notifier)(current->notifier_data)) {
394 clear_thread_flag(TIF_SIGPENDING);
395 return 0;
396 }
397 }
398 }
399
Oleg Nesterov100360f2008-07-25 01:47:29 -0700400 collect_signal(sig, pending, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 return sig;
404}
405
406/*
407 * Dequeue a signal and return the element to the caller, which is
408 * expected to free it.
409 *
410 * All callers have to hold the siglock.
411 */
412int dequeue_signal(struct task_struct *tsk, sigset_t *mask, siginfo_t *info)
413{
Pavel Emelyanovc5363d02008-04-30 00:52:40 -0700414 int signr;
Benjamin Herrenschmidtcaec4e82007-06-12 08:16:18 +1000415
416 /* We only dequeue private signals from ourselves, we don't let
417 * signalfd steal them
418 */
Davide Libenzib8fceee2007-09-20 12:40:16 -0700419 signr = __dequeue_signal(&tsk->pending, mask, info);
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800420 if (!signr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 signr = __dequeue_signal(&tsk->signal->shared_pending,
422 mask, info);
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800423 /*
424 * itimer signal ?
425 *
426 * itimers are process shared and we restart periodic
427 * itimers in the signal delivery path to prevent DoS
428 * attacks in the high resolution timer case. This is
429 * compliant with the old way of self restarting
430 * itimers, as the SIGALRM is a legacy signal and only
431 * queued once. Changing the restart behaviour to
432 * restart the timer in the signal dequeue path is
433 * reducing the timer noise on heavy loaded !highres
434 * systems too.
435 */
436 if (unlikely(signr == SIGALRM)) {
437 struct hrtimer *tmr = &tsk->signal->real_timer;
438
439 if (!hrtimer_is_queued(tmr) &&
440 tsk->signal->it_real_incr.tv64 != 0) {
441 hrtimer_forward(tmr, tmr->base->get_time(),
442 tsk->signal->it_real_incr);
443 hrtimer_restart(tmr);
444 }
445 }
446 }
Pavel Emelyanovc5363d02008-04-30 00:52:40 -0700447
Davide Libenzib8fceee2007-09-20 12:40:16 -0700448 recalc_sigpending();
Pavel Emelyanovc5363d02008-04-30 00:52:40 -0700449 if (!signr)
450 return 0;
451
452 if (unlikely(sig_kernel_stop(signr))) {
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800453 /*
454 * Set a marker that we have dequeued a stop signal. Our
455 * caller might release the siglock and then the pending
456 * stop signal it is about to process is no longer in the
457 * pending bitmasks, but must still be cleared by a SIGCONT
458 * (and overruled by a SIGKILL). So those cases clear this
459 * shared flag after we've set it. Note that this flag may
460 * remain set after the signal we return is ignored or
461 * handled. That doesn't matter because its only purpose
462 * is to alert stop-signal processing code when another
463 * processor has come along and cleared the flag.
464 */
Oleg Nesterov92413d72008-07-25 01:47:30 -0700465 tsk->signal->flags |= SIGNAL_STOP_DEQUEUED;
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800466 }
Pavel Emelyanovc5363d02008-04-30 00:52:40 -0700467 if ((info->si_code & __SI_MASK) == __SI_TIMER && info->si_sys_private) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 /*
469 * Release the siglock to ensure proper locking order
470 * of timer locks outside of siglocks. Note, we leave
471 * irqs disabled here, since the posix-timers code is
472 * about to disable them again anyway.
473 */
474 spin_unlock(&tsk->sighand->siglock);
475 do_schedule_next_timer(info);
476 spin_lock(&tsk->sighand->siglock);
477 }
478 return signr;
479}
480
481/*
482 * Tell a process that it has a new active signal..
483 *
484 * NOTE! we rely on the previous spin_lock to
485 * lock interrupts for us! We can only be called with
486 * "siglock" held, and the local interrupt must
487 * have been disabled when that got acquired!
488 *
489 * No need to set need_resched since signal event passing
490 * goes through ->blocked
491 */
492void signal_wake_up(struct task_struct *t, int resume)
493{
494 unsigned int mask;
495
496 set_tsk_thread_flag(t, TIF_SIGPENDING);
497
498 /*
Matthew Wilcoxf021a3c2007-12-06 11:13:16 -0500499 * For SIGKILL, we want to wake it up in the stopped/traced/killable
500 * case. We don't check t->state here because there is a race with it
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 * executing another processor and just now entering stopped state.
502 * By using wake_up_state, we ensure the process will wake up and
503 * handle its death signal.
504 */
505 mask = TASK_INTERRUPTIBLE;
506 if (resume)
Matthew Wilcoxf021a3c2007-12-06 11:13:16 -0500507 mask |= TASK_WAKEKILL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 if (!wake_up_state(t, mask))
509 kick_process(t);
510}
511
512/*
513 * Remove signals in mask from the pending set and queue.
514 * Returns 1 if any signals were found.
515 *
516 * All callers must be holding the siglock.
George Anzinger71fabd52006-01-08 01:02:48 -0800517 *
518 * This version takes a sigset mask and looks at all signals,
519 * not just those in the first mask word.
520 */
521static int rm_from_queue_full(sigset_t *mask, struct sigpending *s)
522{
523 struct sigqueue *q, *n;
524 sigset_t m;
525
526 sigandsets(&m, mask, &s->signal);
527 if (sigisemptyset(&m))
528 return 0;
529
530 signandsets(&s->signal, &s->signal, mask);
531 list_for_each_entry_safe(q, n, &s->list, list) {
532 if (sigismember(mask, q->info.si_signo)) {
533 list_del_init(&q->list);
534 __sigqueue_free(q);
535 }
536 }
537 return 1;
538}
539/*
540 * Remove signals in mask from the pending set and queue.
541 * Returns 1 if any signals were found.
542 *
543 * All callers must be holding the siglock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 */
545static int rm_from_queue(unsigned long mask, struct sigpending *s)
546{
547 struct sigqueue *q, *n;
548
549 if (!sigtestsetmask(&s->signal, mask))
550 return 0;
551
552 sigdelsetmask(&s->signal, mask);
553 list_for_each_entry_safe(q, n, &s->list, list) {
554 if (q->info.si_signo < SIGRTMIN &&
555 (mask & sigmask(q->info.si_signo))) {
556 list_del_init(&q->list);
557 __sigqueue_free(q);
558 }
559 }
560 return 1;
561}
562
563/*
564 * Bad permissions for sending the signal
565 */
566static int check_kill_permission(int sig, struct siginfo *info,
567 struct task_struct *t)
568{
Oleg Nesterov2e2ba222008-04-30 00:53:01 -0700569 struct pid *sid;
Oleg Nesterov3b5e9e52008-04-30 00:52:42 -0700570 int error;
571
Jesper Juhl7ed20e12005-05-01 08:59:14 -0700572 if (!valid_signal(sig))
Oleg Nesterov3b5e9e52008-04-30 00:52:42 -0700573 return -EINVAL;
574
575 if (info != SEND_SIG_NOINFO && (is_si_special(info) || SI_FROMKERNEL(info)))
576 return 0;
577
578 error = audit_signal_info(sig, t); /* Let audit system see the signal */
579 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 return error;
Amy Griffise54dc242007-03-29 18:01:04 -0400581
Oleg Nesterov2e2ba222008-04-30 00:53:01 -0700582 if ((current->euid ^ t->suid) && (current->euid ^ t->uid) &&
583 (current->uid ^ t->suid) && (current->uid ^ t->uid) &&
584 !capable(CAP_KILL)) {
585 switch (sig) {
586 case SIGCONT:
Oleg Nesterov2e2ba222008-04-30 00:53:01 -0700587 sid = task_session(t);
Oleg Nesterov2e2ba222008-04-30 00:53:01 -0700588 /*
589 * We don't return the error if sid == NULL. The
590 * task was unhashed, the caller must notice this.
591 */
592 if (!sid || sid == task_session(current))
593 break;
594 default:
595 return -EPERM;
596 }
597 }
Steve Grubbc2f0c7c2005-05-06 12:38:39 +0100598
Amy Griffise54dc242007-03-29 18:01:04 -0400599 return security_task_kill(t, info, sig, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600}
601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602/*
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700603 * Handle magic process-wide effects of stop/continue signals. Unlike
604 * the signal actions, these happen immediately at signal-generation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 * time regardless of blocking, ignoring, or handling. This does the
606 * actual continuing for SIGCONT, but not the actual stopping for stop
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700607 * signals. The process stop is done as a signal action for SIG_DFL.
608 *
609 * Returns true if the signal should be actually delivered, otherwise
610 * it should be dropped.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 */
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700612static int prepare_signal(int sig, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613{
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700614 struct signal_struct *signal = p->signal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 struct task_struct *t;
616
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700617 if (unlikely(signal->flags & SIGNAL_GROUP_EXIT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 /*
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700619 * The process is in the middle of dying, nothing to do.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 */
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700621 } else if (sig_kernel_stop(sig)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 /*
623 * This is a stop signal. Remove SIGCONT from all queues.
624 */
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700625 rm_from_queue(sigmask(SIGCONT), &signal->shared_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 t = p;
627 do {
628 rm_from_queue(sigmask(SIGCONT), &t->pending);
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700629 } while_each_thread(p, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 } else if (sig == SIGCONT) {
Oleg Nesterovfc321d22008-04-30 00:52:46 -0700631 unsigned int why;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 /*
633 * Remove all stop signals from all queues,
634 * and wake all threads.
635 */
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700636 rm_from_queue(SIG_KERNEL_STOP_MASK, &signal->shared_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 t = p;
638 do {
639 unsigned int state;
640 rm_from_queue(SIG_KERNEL_STOP_MASK, &t->pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 /*
642 * If there is a handler for SIGCONT, we must make
643 * sure that no thread returns to user mode before
644 * we post the signal, in case it was the only
645 * thread eligible to run the signal handler--then
646 * it must not do anything between resuming and
647 * running the handler. With the TIF_SIGPENDING
648 * flag set, the thread will pause and acquire the
649 * siglock that we hold now and until we've queued
Oleg Nesterovfc321d22008-04-30 00:52:46 -0700650 * the pending signal.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 *
652 * Wake up the stopped thread _after_ setting
653 * TIF_SIGPENDING
654 */
Matthew Wilcoxf021a3c2007-12-06 11:13:16 -0500655 state = __TASK_STOPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 if (sig_user_defined(t, SIGCONT) && !sigismember(&t->blocked, SIGCONT)) {
657 set_tsk_thread_flag(t, TIF_SIGPENDING);
658 state |= TASK_INTERRUPTIBLE;
659 }
660 wake_up_state(t, state);
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700661 } while_each_thread(p, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Oleg Nesterovfc321d22008-04-30 00:52:46 -0700663 /*
664 * Notify the parent with CLD_CONTINUED if we were stopped.
665 *
666 * If we were in the middle of a group stop, we pretend it
667 * was already finished, and then continued. Since SIGCHLD
668 * doesn't queue we report only CLD_STOPPED, as if the next
669 * CLD_CONTINUED was dropped.
670 */
671 why = 0;
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700672 if (signal->flags & SIGNAL_STOP_STOPPED)
Oleg Nesterovfc321d22008-04-30 00:52:46 -0700673 why |= SIGNAL_CLD_CONTINUED;
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700674 else if (signal->group_stop_count)
Oleg Nesterovfc321d22008-04-30 00:52:46 -0700675 why |= SIGNAL_CLD_STOPPED;
676
677 if (why) {
Oleg Nesterov021e1ae2008-04-30 00:53:00 -0700678 /*
679 * The first thread which returns from finish_stop()
680 * will take ->siglock, notice SIGNAL_CLD_MASK, and
681 * notify its parent. See get_signal_to_deliver().
682 */
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700683 signal->flags = why | SIGNAL_STOP_CONTINUED;
684 signal->group_stop_count = 0;
685 signal->group_exit_code = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 } else {
687 /*
688 * We are not stopped, but there could be a stop
689 * signal in the middle of being processed after
690 * being removed from the queue. Clear that too.
691 */
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700692 signal->flags &= ~SIGNAL_STOP_DEQUEUED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 }
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700695
696 return !sig_ignored(p, sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697}
698
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700699/*
700 * Test if P wants to take SIG. After we've checked all threads with this,
701 * it's equivalent to finding no threads not blocking SIG. Any threads not
702 * blocking SIG were ruled out because they are not running and already
703 * have pending signals. Such threads will dequeue from the shared queue
704 * as soon as they're available, so putting the signal on the shared queue
705 * will be equivalent to sending it to one such thread.
706 */
707static inline int wants_signal(int sig, struct task_struct *p)
708{
709 if (sigismember(&p->blocked, sig))
710 return 0;
711 if (p->flags & PF_EXITING)
712 return 0;
713 if (sig == SIGKILL)
714 return 1;
715 if (task_is_stopped_or_traced(p))
716 return 0;
717 return task_curr(p) || !signal_pending(p);
718}
719
Oleg Nesterov5fcd8352008-04-30 00:52:55 -0700720static void complete_signal(int sig, struct task_struct *p, int group)
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700721{
722 struct signal_struct *signal = p->signal;
723 struct task_struct *t;
724
725 /*
726 * Now find a thread we can wake up to take the signal off the queue.
727 *
728 * If the main thread wants the signal, it gets first crack.
729 * Probably the least surprising to the average bear.
730 */
731 if (wants_signal(sig, p))
732 t = p;
Oleg Nesterov5fcd8352008-04-30 00:52:55 -0700733 else if (!group || thread_group_empty(p))
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700734 /*
735 * There is just one thread and it does not need to be woken.
736 * It will dequeue unblocked signals before it runs again.
737 */
738 return;
739 else {
740 /*
741 * Otherwise try to find a suitable thread.
742 */
743 t = signal->curr_target;
744 while (!wants_signal(sig, t)) {
745 t = next_thread(t);
746 if (t == signal->curr_target)
747 /*
748 * No thread needs to be woken.
749 * Any eligible threads will see
750 * the signal in the queue soon.
751 */
752 return;
753 }
754 signal->curr_target = t;
755 }
756
757 /*
758 * Found a killable thread. If the signal will be fatal,
759 * then start taking the whole group down immediately.
760 */
Oleg Nesterovfae5fa42008-04-30 00:53:03 -0700761 if (sig_fatal(p, sig) &&
762 !(signal->flags & (SIGNAL_UNKILLABLE | SIGNAL_GROUP_EXIT)) &&
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700763 !sigismember(&t->real_blocked, sig) &&
Roland McGrath445a91d2008-07-25 19:45:52 -0700764 (sig == SIGKILL ||
765 !tracehook_consider_fatal_signal(t, sig, SIG_DFL))) {
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700766 /*
767 * This signal will be fatal to the whole group.
768 */
769 if (!sig_kernel_coredump(sig)) {
770 /*
771 * Start a group exit and wake everybody up.
772 * This way we don't have other threads
773 * running and doing things after a slower
774 * thread has the fatal signal pending.
775 */
776 signal->flags = SIGNAL_GROUP_EXIT;
777 signal->group_exit_code = sig;
778 signal->group_stop_count = 0;
779 t = p;
780 do {
781 sigaddset(&t->pending.signal, SIGKILL);
782 signal_wake_up(t, 1);
783 } while_each_thread(p, t);
784 return;
785 }
786 }
787
788 /*
789 * The signal is already in the shared-pending queue.
790 * Tell the chosen thread to wake up and dequeue it.
791 */
792 signal_wake_up(t, sig == SIGKILL);
793 return;
794}
795
Pavel Emelyanovaf7fff92008-04-30 00:52:34 -0700796static inline int legacy_queue(struct sigpending *signals, int sig)
797{
798 return (sig < SIGRTMIN) && sigismember(&signals->signal, sig);
799}
800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801static int send_signal(int sig, struct siginfo *info, struct task_struct *t,
Oleg Nesterov2ca35152008-04-30 00:52:54 -0700802 int group)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803{
Oleg Nesterov2ca35152008-04-30 00:52:54 -0700804 struct sigpending *pending;
Oleg Nesterov6e65acb2008-04-30 00:52:50 -0700805 struct sigqueue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Mathieu Desnoyers0a16b602008-07-18 12:16:17 -0400807 trace_sched_signal_send(sig, t);
808
Oleg Nesterov6e65acb2008-04-30 00:52:50 -0700809 assert_spin_locked(&t->sighand->siglock);
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700810 if (!prepare_signal(sig, t))
811 return 0;
Oleg Nesterov2ca35152008-04-30 00:52:54 -0700812
813 pending = group ? &t->signal->shared_pending : &t->pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 /*
Pavel Emelyanov2acb0242008-04-30 00:52:35 -0700815 * Short-circuit ignored signals and support queuing
816 * exactly one non-rt signal, so that we can get more
817 * detailed information about the cause of the signal.
818 */
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700819 if (legacy_queue(pending, sig))
Pavel Emelyanov2acb0242008-04-30 00:52:35 -0700820 return 0;
Davide Libenzifba2afa2007-05-10 22:23:13 -0700821 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 * fast-pathed signals for kernel-internal things like SIGSTOP
823 * or SIGKILL.
824 */
Oleg Nesterovb67a1b92005-10-30 15:03:44 -0800825 if (info == SEND_SIG_FORCED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 goto out_set;
827
828 /* Real-time signals must be queued if sent by sigqueue, or
829 some other real-time mechanism. It is implementation
830 defined whether kill() does so. We attempt to do so, on
831 the principle of least surprise, but since kill is not
832 allowed to fail with EAGAIN when low on memory we just
833 make sure at least one signal gets delivered and don't
834 pass on the info struct. */
835
836 q = __sigqueue_alloc(t, GFP_ATOMIC, (sig < SIGRTMIN &&
Oleg Nesterov621d3122005-10-30 15:03:45 -0800837 (is_si_special(info) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 info->si_code >= 0)));
839 if (q) {
Oleg Nesterov2ca35152008-04-30 00:52:54 -0700840 list_add_tail(&q->list, &pending->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 switch ((unsigned long) info) {
Oleg Nesterovb67a1b92005-10-30 15:03:44 -0800842 case (unsigned long) SEND_SIG_NOINFO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 q->info.si_signo = sig;
844 q->info.si_errno = 0;
845 q->info.si_code = SI_USER;
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700846 q->info.si_pid = task_pid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 q->info.si_uid = current->uid;
848 break;
Oleg Nesterovb67a1b92005-10-30 15:03:44 -0800849 case (unsigned long) SEND_SIG_PRIV:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 q->info.si_signo = sig;
851 q->info.si_errno = 0;
852 q->info.si_code = SI_KERNEL;
853 q->info.si_pid = 0;
854 q->info.si_uid = 0;
855 break;
856 default:
857 copy_siginfo(&q->info, info);
858 break;
859 }
Oleg Nesterov621d3122005-10-30 15:03:45 -0800860 } else if (!is_si_special(info)) {
861 if (sig >= SIGRTMIN && info->si_code != SI_USER)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 /*
863 * Queue overflow, abort. We may abort if the signal was rt
864 * and sent by user using something other than kill().
865 */
866 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 }
868
869out_set:
Oleg Nesterov53c30332008-04-30 00:53:00 -0700870 signalfd_notify(t, sig);
Oleg Nesterov2ca35152008-04-30 00:52:54 -0700871 sigaddset(&pending->signal, sig);
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -0700872 complete_signal(sig, t, group);
873 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874}
875
Ingo Molnar45807a12007-07-15 23:40:10 -0700876int print_fatal_signals;
877
878static void print_fatal_signal(struct pt_regs *regs, int signr)
879{
880 printk("%s/%d: potentially unexpected fatal signal %d.\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -0700881 current->comm, task_pid_nr(current), signr);
Ingo Molnar45807a12007-07-15 23:40:10 -0700882
Al Viroca5cd872007-10-29 04:31:16 +0000883#if defined(__i386__) && !defined(__arch_um__)
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100884 printk("code at %08lx: ", regs->ip);
Ingo Molnar45807a12007-07-15 23:40:10 -0700885 {
886 int i;
887 for (i = 0; i < 16; i++) {
888 unsigned char insn;
889
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100890 __get_user(insn, (unsigned char *)(regs->ip + i));
Ingo Molnar45807a12007-07-15 23:40:10 -0700891 printk("%02x ", insn);
892 }
893 }
894#endif
895 printk("\n");
896 show_regs(regs);
897}
898
899static int __init setup_print_fatal_signals(char *str)
900{
901 get_option (&str, &print_fatal_signals);
902
903 return 1;
904}
905
906__setup("print-fatal-signals=", setup_print_fatal_signals);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -0700908int
909__group_send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
910{
911 return send_signal(sig, info, p, 1);
912}
913
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914static int
915specific_send_sig_info(int sig, struct siginfo *info, struct task_struct *t)
916{
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -0700917 return send_signal(sig, info, t, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918}
919
920/*
921 * Force a signal that the process can't ignore: if necessary
922 * we unblock the signal and change any SIG_IGN to SIG_DFL.
Linus Torvaldsae74c3b2006-08-02 20:17:49 -0700923 *
924 * Note: If we unblock the signal, we always reset it to SIG_DFL,
925 * since we do not want to have a signal handler that was blocked
926 * be invoked when user space had explicitly blocked it.
927 *
Oleg Nesterov80fe7282008-04-30 00:53:05 -0700928 * We don't want to have recursive SIGSEGV's etc, for example,
929 * that is why we also clear SIGNAL_UNKILLABLE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931int
932force_sig_info(int sig, struct siginfo *info, struct task_struct *t)
933{
934 unsigned long int flags;
Linus Torvaldsae74c3b2006-08-02 20:17:49 -0700935 int ret, blocked, ignored;
936 struct k_sigaction *action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
938 spin_lock_irqsave(&t->sighand->siglock, flags);
Linus Torvaldsae74c3b2006-08-02 20:17:49 -0700939 action = &t->sighand->action[sig-1];
940 ignored = action->sa.sa_handler == SIG_IGN;
941 blocked = sigismember(&t->blocked, sig);
942 if (blocked || ignored) {
943 action->sa.sa_handler = SIG_DFL;
944 if (blocked) {
945 sigdelset(&t->blocked, sig);
Roland McGrath7bb44ad2007-05-23 13:57:44 -0700946 recalc_sigpending_and_wake(t);
Linus Torvaldsae74c3b2006-08-02 20:17:49 -0700947 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 }
Oleg Nesterov80fe7282008-04-30 00:53:05 -0700949 if (action->sa.sa_handler == SIG_DFL)
950 t->signal->flags &= ~SIGNAL_UNKILLABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 ret = specific_send_sig_info(sig, info, t);
952 spin_unlock_irqrestore(&t->sighand->siglock, flags);
953
954 return ret;
955}
956
957void
958force_sig_specific(int sig, struct task_struct *t)
959{
Paul E. McKenneyb0423a02005-10-30 15:03:46 -0800960 force_sig_info(sig, SEND_SIG_FORCED, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961}
962
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963/*
964 * Nuke all other threads in the group.
965 */
966void zap_other_threads(struct task_struct *p)
967{
968 struct task_struct *t;
969
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 p->signal->group_stop_count = 0;
971
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 for (t = next_thread(p); t != p; t = next_thread(t)) {
973 /*
974 * Don't bother with already dead threads
975 */
976 if (t->exit_state)
977 continue;
978
Andrea Arcangeli30e0fca62005-10-30 15:02:38 -0800979 /* SIGKILL will be handled before any pending SIGSTOP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 sigaddset(&t->pending.signal, SIGKILL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 signal_wake_up(t, 1);
982 }
983}
984
Harvey Harrisonb5606c22008-02-13 15:03:16 -0800985int __fatal_signal_pending(struct task_struct *tsk)
Matthew Wilcoxf776d122007-12-06 11:15:50 -0500986{
987 return sigismember(&tsk->pending.signal, SIGKILL);
988}
Trond Myklebust13f09b92008-01-31 20:40:29 -0500989EXPORT_SYMBOL(__fatal_signal_pending);
Matthew Wilcoxf776d122007-12-06 11:15:50 -0500990
Oleg Nesterovf63ee722006-03-28 16:11:13 -0800991struct sighand_struct *lock_task_sighand(struct task_struct *tsk, unsigned long *flags)
992{
993 struct sighand_struct *sighand;
994
Oleg Nesterov1406f2d2008-04-30 00:52:37 -0700995 rcu_read_lock();
Oleg Nesterovf63ee722006-03-28 16:11:13 -0800996 for (;;) {
997 sighand = rcu_dereference(tsk->sighand);
998 if (unlikely(sighand == NULL))
999 break;
1000
1001 spin_lock_irqsave(&sighand->siglock, *flags);
1002 if (likely(sighand == tsk->sighand))
1003 break;
1004 spin_unlock_irqrestore(&sighand->siglock, *flags);
1005 }
Oleg Nesterov1406f2d2008-04-30 00:52:37 -07001006 rcu_read_unlock();
Oleg Nesterovf63ee722006-03-28 16:11:13 -08001007
1008 return sighand;
1009}
1010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011int group_send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
1012{
1013 unsigned long flags;
1014 int ret;
1015
1016 ret = check_kill_permission(sig, info, p);
Oleg Nesterovf63ee722006-03-28 16:11:13 -08001017
1018 if (!ret && sig) {
1019 ret = -ESRCH;
1020 if (lock_task_sighand(p, &flags)) {
1021 ret = __group_send_sig_info(sig, info, p);
1022 unlock_task_sighand(p, &flags);
Ingo Molnare56d0902006-01-08 01:01:37 -08001023 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 }
1025
1026 return ret;
1027}
1028
1029/*
Pavel Emelyanov146a5052008-02-08 04:19:22 -08001030 * __kill_pgrp_info() sends a signal to a process group: this is what the tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 * control characters do (^C, ^Z etc)
1032 */
1033
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001034int __kill_pgrp_info(int sig, struct siginfo *info, struct pid *pgrp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035{
1036 struct task_struct *p = NULL;
1037 int retval, success;
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 success = 0;
1040 retval = -ESRCH;
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001041 do_each_pid_task(pgrp, PIDTYPE_PGID, p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 int err = group_send_sig_info(sig, info, p);
1043 success |= !err;
1044 retval = err;
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001045 } while_each_pid_task(pgrp, PIDTYPE_PGID, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 return success ? 0 : retval;
1047}
1048
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001049int kill_pid_info(int sig, struct siginfo *info, struct pid *pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050{
Oleg Nesterovd36174b2008-02-08 04:19:18 -08001051 int error = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 struct task_struct *p;
1053
Ingo Molnare56d0902006-01-08 01:01:37 -08001054 rcu_read_lock();
Oleg Nesterovd36174b2008-02-08 04:19:18 -08001055retry:
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001056 p = pid_task(pid, PIDTYPE_PID);
Oleg Nesterovd36174b2008-02-08 04:19:18 -08001057 if (p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 error = group_send_sig_info(sig, info, p);
Oleg Nesterovd36174b2008-02-08 04:19:18 -08001059 if (unlikely(error == -ESRCH))
1060 /*
1061 * The task was unhashed in between, try again.
1062 * If it is dead, pid_task() will return NULL,
1063 * if we race with de_thread() it will find the
1064 * new leader.
1065 */
1066 goto retry;
1067 }
Ingo Molnare56d0902006-01-08 01:01:37 -08001068 rcu_read_unlock();
Oleg Nesterov6ca25b52008-04-30 00:52:45 -07001069
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 return error;
1071}
1072
Matthew Wilcoxc3de4b32007-02-09 08:11:47 -07001073int
1074kill_proc_info(int sig, struct siginfo *info, pid_t pid)
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001075{
1076 int error;
1077 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001078 error = kill_pid_info(sig, info, find_vpid(pid));
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001079 rcu_read_unlock();
1080 return error;
1081}
1082
Eric W. Biederman2425c082006-10-02 02:17:28 -07001083/* like kill_pid_info(), but doesn't use uid/euid of "current" */
1084int kill_pid_info_as_uid(int sig, struct siginfo *info, struct pid *pid,
David Quigley8f95dc52006-06-30 01:55:47 -07001085 uid_t uid, uid_t euid, u32 secid)
Harald Welte46113832005-10-10 19:44:29 +02001086{
1087 int ret = -EINVAL;
1088 struct task_struct *p;
1089
1090 if (!valid_signal(sig))
1091 return ret;
1092
1093 read_lock(&tasklist_lock);
Eric W. Biederman2425c082006-10-02 02:17:28 -07001094 p = pid_task(pid, PIDTYPE_PID);
Harald Welte46113832005-10-10 19:44:29 +02001095 if (!p) {
1096 ret = -ESRCH;
1097 goto out_unlock;
1098 }
Oleg Nesterov0811af22006-01-08 01:03:09 -08001099 if ((info == SEND_SIG_NOINFO || (!is_si_special(info) && SI_FROMUSER(info)))
Harald Welte46113832005-10-10 19:44:29 +02001100 && (euid != p->suid) && (euid != p->uid)
1101 && (uid != p->suid) && (uid != p->uid)) {
1102 ret = -EPERM;
1103 goto out_unlock;
1104 }
David Quigley8f95dc52006-06-30 01:55:47 -07001105 ret = security_task_kill(p, info, sig, secid);
1106 if (ret)
1107 goto out_unlock;
Harald Welte46113832005-10-10 19:44:29 +02001108 if (sig && p->sighand) {
1109 unsigned long flags;
1110 spin_lock_irqsave(&p->sighand->siglock, flags);
1111 ret = __group_send_sig_info(sig, info, p);
1112 spin_unlock_irqrestore(&p->sighand->siglock, flags);
1113 }
1114out_unlock:
1115 read_unlock(&tasklist_lock);
1116 return ret;
1117}
Eric W. Biederman2425c082006-10-02 02:17:28 -07001118EXPORT_SYMBOL_GPL(kill_pid_info_as_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
1120/*
1121 * kill_something_info() interprets pid in interesting ways just like kill(2).
1122 *
1123 * POSIX specifies that kill(-1,sig) is unspecified, but what we have
1124 * is probably wrong. Should make it like BSD or SYSV.
1125 */
1126
Gustavo Fernando Padovanbc64efd2008-07-25 01:47:33 -07001127static int kill_something_info(int sig, struct siginfo *info, pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128{
Eric W. Biederman8d42db182007-02-12 00:52:55 -08001129 int ret;
Pavel Emelyanovd5df7632008-02-08 04:19:22 -08001130
1131 if (pid > 0) {
1132 rcu_read_lock();
1133 ret = kill_pid_info(sig, info, find_vpid(pid));
1134 rcu_read_unlock();
1135 return ret;
1136 }
1137
1138 read_lock(&tasklist_lock);
1139 if (pid != -1) {
1140 ret = __kill_pgrp_info(sig, info,
1141 pid ? find_vpid(-pid) : task_pgrp(current));
1142 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 int retval = 0, count = 0;
1144 struct task_struct * p;
1145
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 for_each_process(p) {
Sukadev Bhattiprolud25141a2008-10-29 14:01:11 -07001147 if (task_pid_vnr(p) > 1 &&
1148 !same_thread_group(p, current)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 int err = group_send_sig_info(sig, info, p);
1150 ++count;
1151 if (err != -EPERM)
1152 retval = err;
1153 }
1154 }
Eric W. Biederman8d42db182007-02-12 00:52:55 -08001155 ret = count ? retval : -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 }
Pavel Emelyanovd5df7632008-02-08 04:19:22 -08001157 read_unlock(&tasklist_lock);
1158
Eric W. Biederman8d42db182007-02-12 00:52:55 -08001159 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160}
1161
1162/*
1163 * These are for backward compatibility with the rest of the kernel source.
1164 */
1165
1166/*
Oleg Nesterov08d2c302008-04-30 00:52:51 -07001167 * The caller must ensure the task can't exit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 */
1169int
1170send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
1171{
1172 int ret;
1173 unsigned long flags;
1174
1175 /*
1176 * Make sure legacy kernel users don't send in bad values
1177 * (normal paths check this in check_kill_permission).
1178 */
Jesper Juhl7ed20e12005-05-01 08:59:14 -07001179 if (!valid_signal(sig))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 return -EINVAL;
1181
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 spin_lock_irqsave(&p->sighand->siglock, flags);
1183 ret = specific_send_sig_info(sig, info, p);
1184 spin_unlock_irqrestore(&p->sighand->siglock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 return ret;
1186}
1187
Oleg Nesterovb67a1b92005-10-30 15:03:44 -08001188#define __si_special(priv) \
1189 ((priv) ? SEND_SIG_PRIV : SEND_SIG_NOINFO)
1190
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191int
1192send_sig(int sig, struct task_struct *p, int priv)
1193{
Oleg Nesterovb67a1b92005-10-30 15:03:44 -08001194 return send_sig_info(sig, __si_special(priv), p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195}
1196
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197void
1198force_sig(int sig, struct task_struct *p)
1199{
Oleg Nesterovb67a1b92005-10-30 15:03:44 -08001200 force_sig_info(sig, SEND_SIG_PRIV, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201}
1202
1203/*
1204 * When things go south during signal handling, we
1205 * will force a SIGSEGV. And if the signal that caused
1206 * the problem was already a SIGSEGV, we'll want to
1207 * make sure we don't even try to deliver the signal..
1208 */
1209int
1210force_sigsegv(int sig, struct task_struct *p)
1211{
1212 if (sig == SIGSEGV) {
1213 unsigned long flags;
1214 spin_lock_irqsave(&p->sighand->siglock, flags);
1215 p->sighand->action[sig - 1].sa.sa_handler = SIG_DFL;
1216 spin_unlock_irqrestore(&p->sighand->siglock, flags);
1217 }
1218 force_sig(SIGSEGV, p);
1219 return 0;
1220}
1221
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001222int kill_pgrp(struct pid *pid, int sig, int priv)
1223{
Pavel Emelyanov146a5052008-02-08 04:19:22 -08001224 int ret;
1225
1226 read_lock(&tasklist_lock);
1227 ret = __kill_pgrp_info(sig, __si_special(priv), pid);
1228 read_unlock(&tasklist_lock);
1229
1230 return ret;
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001231}
1232EXPORT_SYMBOL(kill_pgrp);
1233
1234int kill_pid(struct pid *pid, int sig, int priv)
1235{
1236 return kill_pid_info(sig, __si_special(priv), pid);
1237}
1238EXPORT_SYMBOL(kill_pid);
1239
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240/*
1241 * These functions support sending signals using preallocated sigqueue
1242 * structures. This is needed "because realtime applications cannot
1243 * afford to lose notifications of asynchronous events, like timer
1244 * expirations or I/O completions". In the case of Posix Timers
1245 * we allocate the sigqueue structure from the timer_create. If this
1246 * allocation fails we are able to report the failure to the application
1247 * with an EAGAIN error.
1248 */
1249
1250struct sigqueue *sigqueue_alloc(void)
1251{
1252 struct sigqueue *q;
1253
1254 if ((q = __sigqueue_alloc(current, GFP_KERNEL, 0)))
1255 q->flags |= SIGQUEUE_PREALLOC;
1256 return(q);
1257}
1258
1259void sigqueue_free(struct sigqueue *q)
1260{
1261 unsigned long flags;
Oleg Nesterov60187d22007-08-30 23:56:35 -07001262 spinlock_t *lock = &current->sighand->siglock;
1263
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 BUG_ON(!(q->flags & SIGQUEUE_PREALLOC));
1265 /*
Oleg Nesterovc8e85b4f2008-05-26 20:55:42 +04001266 * We must hold ->siglock while testing q->list
1267 * to serialize with collect_signal() or with
Oleg Nesterovda7978b2008-05-23 13:04:41 -07001268 * __exit_signal()->flush_sigqueue().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 */
Oleg Nesterov60187d22007-08-30 23:56:35 -07001270 spin_lock_irqsave(lock, flags);
Oleg Nesterovc8e85b4f2008-05-26 20:55:42 +04001271 q->flags &= ~SIGQUEUE_PREALLOC;
1272 /*
1273 * If it is queued it will be freed when dequeued,
1274 * like the "regular" sigqueue.
1275 */
Oleg Nesterov60187d22007-08-30 23:56:35 -07001276 if (!list_empty(&q->list))
Oleg Nesterovc8e85b4f2008-05-26 20:55:42 +04001277 q = NULL;
Oleg Nesterov60187d22007-08-30 23:56:35 -07001278 spin_unlock_irqrestore(lock, flags);
1279
Oleg Nesterovc8e85b4f2008-05-26 20:55:42 +04001280 if (q)
1281 __sigqueue_free(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282}
1283
Oleg Nesterovac5c2152008-04-30 00:52:57 -07001284int send_sigqueue(struct sigqueue *q, struct task_struct *t, int group)
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001285{
Oleg Nesterove62e6652008-04-30 00:52:56 -07001286 int sig = q->info.si_signo;
Oleg Nesterov2ca35152008-04-30 00:52:54 -07001287 struct sigpending *pending;
Oleg Nesterove62e6652008-04-30 00:52:56 -07001288 unsigned long flags;
1289 int ret;
Oleg Nesterov2ca35152008-04-30 00:52:54 -07001290
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -07001291 BUG_ON(!(q->flags & SIGQUEUE_PREALLOC));
Oleg Nesterove62e6652008-04-30 00:52:56 -07001292
1293 ret = -1;
1294 if (!likely(lock_task_sighand(t, &flags)))
1295 goto ret;
1296
Oleg Nesterov7e695a52008-04-30 00:52:59 -07001297 ret = 1; /* the signal is ignored */
1298 if (!prepare_signal(sig, t))
Oleg Nesterove62e6652008-04-30 00:52:56 -07001299 goto out;
1300
1301 ret = 0;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001302 if (unlikely(!list_empty(&q->list))) {
1303 /*
1304 * If an SI_TIMER entry is already queue just increment
1305 * the overrun count.
1306 */
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001307 BUG_ON(q->info.si_code != SI_TIMER);
1308 q->info.si_overrun++;
Oleg Nesterove62e6652008-04-30 00:52:56 -07001309 goto out;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001310 }
Oleg Nesterovba661292008-07-23 20:52:05 +04001311 q->info.si_overrun = 0;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001312
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001313 signalfd_notify(t, sig);
Oleg Nesterov2ca35152008-04-30 00:52:54 -07001314 pending = group ? &t->signal->shared_pending : &t->pending;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001315 list_add_tail(&q->list, &pending->list);
1316 sigaddset(&pending->signal, sig);
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -07001317 complete_signal(sig, t, group);
Oleg Nesterove62e6652008-04-30 00:52:56 -07001318out:
1319 unlock_task_sighand(t, &flags);
1320ret:
1321 return ret;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001322}
1323
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324/*
1325 * Wake up any threads in the parent blocked in wait* syscalls.
1326 */
1327static inline void __wake_up_parent(struct task_struct *p,
1328 struct task_struct *parent)
1329{
1330 wake_up_interruptible_sync(&parent->signal->wait_chldexit);
1331}
1332
1333/*
1334 * Let a parent know about the death of a child.
1335 * For a stopped/continued status change, use do_notify_parent_cldstop instead.
Roland McGrath2b2a1ff2008-07-25 19:45:54 -07001336 *
1337 * Returns -1 if our parent ignored us and so we've switched to
1338 * self-reaping, or else @sig.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 */
Roland McGrath2b2a1ff2008-07-25 19:45:54 -07001340int do_notify_parent(struct task_struct *tsk, int sig)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341{
1342 struct siginfo info;
1343 unsigned long flags;
1344 struct sighand_struct *psig;
Frank Mayharf06febc2008-09-12 09:54:39 -07001345 struct task_cputime cputime;
Roland McGrath1b046242008-08-19 20:37:07 -07001346 int ret = sig;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
1348 BUG_ON(sig == -1);
1349
1350 /* do_notify_parent_cldstop should have been called instead. */
Matthew Wilcoxe1abb392007-12-06 11:07:35 -05001351 BUG_ON(task_is_stopped_or_traced(tsk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
1353 BUG_ON(!tsk->ptrace &&
1354 (tsk->group_leader != tsk || !thread_group_empty(tsk)));
1355
1356 info.si_signo = sig;
1357 info.si_errno = 0;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001358 /*
1359 * we are under tasklist_lock here so our parent is tied to
1360 * us and cannot exit and release its namespace.
1361 *
1362 * the only it can is to switch its nsproxy with sys_unshare,
1363 * bu uncharing pid namespaces is not allowed, so we'll always
1364 * see relevant namespace
1365 *
1366 * write_lock() currently calls preempt_disable() which is the
1367 * same as rcu_read_lock(), but according to Oleg, this is not
1368 * correct to rely on this
1369 */
1370 rcu_read_lock();
1371 info.si_pid = task_pid_nr_ns(tsk, tsk->parent->nsproxy->pid_ns);
1372 rcu_read_unlock();
1373
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 info.si_uid = tsk->uid;
1375
Frank Mayharf06febc2008-09-12 09:54:39 -07001376 thread_group_cputime(tsk, &cputime);
1377 info.si_utime = cputime_to_jiffies(cputime.utime);
1378 info.si_stime = cputime_to_jiffies(cputime.stime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
1380 info.si_status = tsk->exit_code & 0x7f;
1381 if (tsk->exit_code & 0x80)
1382 info.si_code = CLD_DUMPED;
1383 else if (tsk->exit_code & 0x7f)
1384 info.si_code = CLD_KILLED;
1385 else {
1386 info.si_code = CLD_EXITED;
1387 info.si_status = tsk->exit_code >> 8;
1388 }
1389
1390 psig = tsk->parent->sighand;
1391 spin_lock_irqsave(&psig->siglock, flags);
Oleg Nesterov7ed01752005-11-10 17:22:18 +03001392 if (!tsk->ptrace && sig == SIGCHLD &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 (psig->action[SIGCHLD-1].sa.sa_handler == SIG_IGN ||
1394 (psig->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDWAIT))) {
1395 /*
1396 * We are exiting and our parent doesn't care. POSIX.1
1397 * defines special semantics for setting SIGCHLD to SIG_IGN
1398 * or setting the SA_NOCLDWAIT flag: we should be reaped
1399 * automatically and not left for our parent's wait4 call.
1400 * Rather than having the parent do it as a magic kind of
1401 * signal handler, we just set this to tell do_exit that we
1402 * can be cleaned up without becoming a zombie. Note that
1403 * we still call __wake_up_parent in this case, because a
1404 * blocked sys_wait4 might now return -ECHILD.
1405 *
1406 * Whether we send SIGCHLD or not for SA_NOCLDWAIT
1407 * is implementation-defined: we do (if you don't want
1408 * it, just use SIG_IGN instead).
1409 */
Roland McGrath1b046242008-08-19 20:37:07 -07001410 ret = tsk->exit_signal = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 if (psig->action[SIGCHLD-1].sa.sa_handler == SIG_IGN)
Roland McGrath2b2a1ff2008-07-25 19:45:54 -07001412 sig = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 }
Jesper Juhl7ed20e12005-05-01 08:59:14 -07001414 if (valid_signal(sig) && sig > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 __group_send_sig_info(sig, &info, tsk->parent);
1416 __wake_up_parent(tsk, tsk->parent);
1417 spin_unlock_irqrestore(&psig->siglock, flags);
Roland McGrath2b2a1ff2008-07-25 19:45:54 -07001418
Roland McGrath1b046242008-08-19 20:37:07 -07001419 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420}
1421
Oleg Nesterova1d5e212006-03-28 16:11:29 -08001422static void do_notify_parent_cldstop(struct task_struct *tsk, int why)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423{
1424 struct siginfo info;
1425 unsigned long flags;
Oleg Nesterovbc505a42005-09-06 15:17:32 -07001426 struct task_struct *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 struct sighand_struct *sighand;
1428
Oleg Nesterova1d5e212006-03-28 16:11:29 -08001429 if (tsk->ptrace & PT_PTRACED)
Oleg Nesterovbc505a42005-09-06 15:17:32 -07001430 parent = tsk->parent;
1431 else {
1432 tsk = tsk->group_leader;
1433 parent = tsk->real_parent;
1434 }
1435
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 info.si_signo = SIGCHLD;
1437 info.si_errno = 0;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001438 /*
1439 * see comment in do_notify_parent() abot the following 3 lines
1440 */
1441 rcu_read_lock();
1442 info.si_pid = task_pid_nr_ns(tsk, tsk->parent->nsproxy->pid_ns);
1443 rcu_read_unlock();
1444
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 info.si_uid = tsk->uid;
1446
Michael Kerriskd8878ba2008-07-25 01:47:32 -07001447 info.si_utime = cputime_to_clock_t(tsk->utime);
1448 info.si_stime = cputime_to_clock_t(tsk->stime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
1450 info.si_code = why;
1451 switch (why) {
1452 case CLD_CONTINUED:
1453 info.si_status = SIGCONT;
1454 break;
1455 case CLD_STOPPED:
1456 info.si_status = tsk->signal->group_exit_code & 0x7f;
1457 break;
1458 case CLD_TRAPPED:
1459 info.si_status = tsk->exit_code & 0x7f;
1460 break;
1461 default:
1462 BUG();
1463 }
1464
1465 sighand = parent->sighand;
1466 spin_lock_irqsave(&sighand->siglock, flags);
1467 if (sighand->action[SIGCHLD-1].sa.sa_handler != SIG_IGN &&
1468 !(sighand->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDSTOP))
1469 __group_send_sig_info(SIGCHLD, &info, parent);
1470 /*
1471 * Even if SIGCHLD is not generated, we must wake up wait4 calls.
1472 */
1473 __wake_up_parent(tsk, parent);
1474 spin_unlock_irqrestore(&sighand->siglock, flags);
1475}
1476
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001477static inline int may_ptrace_stop(void)
1478{
1479 if (!likely(current->ptrace & PT_PTRACED))
1480 return 0;
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001481 /*
1482 * Are we in the middle of do_coredump?
1483 * If so and our tracer is also part of the coredump stopping
1484 * is a deadlock situation, and pointless because our tracer
1485 * is dead so don't allow us to stop.
1486 * If SIGKILL was already sent before the caller unlocked
Oleg Nesterov999d9fc2008-07-25 01:47:41 -07001487 * ->siglock we must see ->core_state != NULL. Otherwise it
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001488 * is safe to enter schedule().
1489 */
Oleg Nesterov999d9fc2008-07-25 01:47:41 -07001490 if (unlikely(current->mm->core_state) &&
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001491 unlikely(current->mm == current->parent->mm))
1492 return 0;
1493
1494 return 1;
1495}
1496
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497/*
Roland McGrath1a669c22008-02-06 01:37:37 -08001498 * Return nonzero if there is a SIGKILL that should be waking us up.
1499 * Called with the siglock held.
1500 */
1501static int sigkill_pending(struct task_struct *tsk)
1502{
Oleg Nesterov3d749b92008-07-25 01:47:37 -07001503 return sigismember(&tsk->pending.signal, SIGKILL) ||
1504 sigismember(&tsk->signal->shared_pending.signal, SIGKILL);
Roland McGrath1a669c22008-02-06 01:37:37 -08001505}
1506
1507/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 * This must be called with current->sighand->siglock held.
1509 *
1510 * This should be the path for all ptrace stops.
1511 * We always set current->last_siginfo while stopped here.
1512 * That makes it a way to test a stopped process for
1513 * being ptrace-stopped vs being job-control-stopped.
1514 *
Oleg Nesterov20686a32008-02-08 04:19:03 -08001515 * If we actually decide not to stop at all because the tracer
1516 * is gone, we keep current->exit_code unless clear_code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 */
Oleg Nesterov20686a32008-02-08 04:19:03 -08001518static void ptrace_stop(int exit_code, int clear_code, siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519{
Roland McGrath1a669c22008-02-06 01:37:37 -08001520 if (arch_ptrace_stop_needed(exit_code, info)) {
1521 /*
1522 * The arch code has something special to do before a
1523 * ptrace stop. This is allowed to block, e.g. for faults
1524 * on user stack pages. We can't keep the siglock while
1525 * calling arch_ptrace_stop, so we must release it now.
1526 * To preserve proper semantics, we must do this before
1527 * any signal bookkeeping like checking group_stop_count.
1528 * Meanwhile, a SIGKILL could come in before we retake the
1529 * siglock. That must prevent us from sleeping in TASK_TRACED.
1530 * So after regaining the lock, we must check for SIGKILL.
1531 */
1532 spin_unlock_irq(&current->sighand->siglock);
1533 arch_ptrace_stop(exit_code, info);
1534 spin_lock_irq(&current->sighand->siglock);
Oleg Nesterov3d749b92008-07-25 01:47:37 -07001535 if (sigkill_pending(current))
1536 return;
Roland McGrath1a669c22008-02-06 01:37:37 -08001537 }
1538
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 /*
1540 * If there is a group stop in progress,
1541 * we must participate in the bookkeeping.
1542 */
1543 if (current->signal->group_stop_count > 0)
1544 --current->signal->group_stop_count;
1545
1546 current->last_siginfo = info;
1547 current->exit_code = exit_code;
1548
1549 /* Let the debugger run. */
Oleg Nesterovd9ae90a2008-02-06 01:36:13 -08001550 __set_current_state(TASK_TRACED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 spin_unlock_irq(&current->sighand->siglock);
1552 read_lock(&tasklist_lock);
Oleg Nesterov3d749b92008-07-25 01:47:37 -07001553 if (may_ptrace_stop()) {
Oleg Nesterova1d5e212006-03-28 16:11:29 -08001554 do_notify_parent_cldstop(current, CLD_TRAPPED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 read_unlock(&tasklist_lock);
1556 schedule();
1557 } else {
1558 /*
1559 * By the time we got the lock, our tracer went away.
Oleg Nesterov6405f7f2008-02-08 04:19:00 -08001560 * Don't drop the lock yet, another tracer may come.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 */
Oleg Nesterov6405f7f2008-02-08 04:19:00 -08001562 __set_current_state(TASK_RUNNING);
Oleg Nesterov20686a32008-02-08 04:19:03 -08001563 if (clear_code)
1564 current->exit_code = 0;
Oleg Nesterov6405f7f2008-02-08 04:19:00 -08001565 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 }
1567
1568 /*
Roland McGrath13b1c3d2008-03-03 20:22:05 -08001569 * While in TASK_TRACED, we were considered "frozen enough".
1570 * Now that we woke up, it's crucial if we're supposed to be
1571 * frozen that we freeze now before running anything substantial.
1572 */
1573 try_to_freeze();
1574
1575 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 * We are back. Now reacquire the siglock before touching
1577 * last_siginfo, so that we are sure to have synchronized with
1578 * any signal-sending on another CPU that wants to examine it.
1579 */
1580 spin_lock_irq(&current->sighand->siglock);
1581 current->last_siginfo = NULL;
1582
1583 /*
1584 * Queued signals ignored us while we were stopped for tracing.
1585 * So check for any that we should take before resuming user mode.
Roland McGrathb74d0de2007-06-06 03:59:00 -07001586 * This sets TIF_SIGPENDING, but never clears it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 */
Roland McGrathb74d0de2007-06-06 03:59:00 -07001588 recalc_sigpending_tsk(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589}
1590
1591void ptrace_notify(int exit_code)
1592{
1593 siginfo_t info;
1594
1595 BUG_ON((exit_code & (0x7f | ~0xffff)) != SIGTRAP);
1596
1597 memset(&info, 0, sizeof info);
1598 info.si_signo = SIGTRAP;
1599 info.si_code = exit_code;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001600 info.si_pid = task_pid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 info.si_uid = current->uid;
1602
1603 /* Let the debugger run. */
1604 spin_lock_irq(&current->sighand->siglock);
Oleg Nesterov20686a32008-02-08 04:19:03 -08001605 ptrace_stop(exit_code, 1, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 spin_unlock_irq(&current->sighand->siglock);
1607}
1608
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609static void
1610finish_stop(int stop_count)
1611{
1612 /*
1613 * If there are no other threads in the group, or if there is
1614 * a group stop in progress and we are the last to stop,
1615 * report to the parent. When ptraced, every thread reports itself.
1616 */
Roland McGrathfa00b802008-07-25 19:45:54 -07001617 if (tracehook_notify_jctl(stop_count == 0, CLD_STOPPED)) {
Oleg Nesterova1d5e212006-03-28 16:11:29 -08001618 read_lock(&tasklist_lock);
1619 do_notify_parent_cldstop(current, CLD_STOPPED);
1620 read_unlock(&tasklist_lock);
1621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
Rafael J. Wysocki3df494a2006-12-13 00:34:28 -08001623 do {
1624 schedule();
1625 } while (try_to_freeze());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 /*
1627 * Now we don't run again until continued.
1628 */
1629 current->exit_code = 0;
1630}
1631
1632/*
1633 * This performs the stopping for SIGSTOP and other stop signals.
1634 * We have to stop all threads in the thread group.
1635 * Returns nonzero if we've actually stopped and released the siglock.
1636 * Returns zero if we didn't stop and still hold the siglock.
1637 */
Oleg Nesterova122b342006-03-28 16:11:22 -08001638static int do_signal_stop(int signr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639{
1640 struct signal_struct *sig = current->signal;
Oleg Nesterovdac27f42006-03-28 16:11:28 -08001641 int stop_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 if (sig->group_stop_count > 0) {
1644 /*
1645 * There is a group stop in progress. We don't need to
1646 * start another one.
1647 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 stop_count = --sig->group_stop_count;
Oleg Nesterovdac27f42006-03-28 16:11:28 -08001649 } else {
Oleg Nesterovf558b7e2008-02-04 22:27:24 -08001650 struct task_struct *t;
1651
Oleg Nesterov2b201a92008-07-25 01:47:31 -07001652 if (!likely(sig->flags & SIGNAL_STOP_DEQUEUED) ||
Oleg Nesterov573cf9a2008-04-30 00:52:36 -07001653 unlikely(signal_group_exit(sig)))
Oleg Nesterovf558b7e2008-02-04 22:27:24 -08001654 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 * There is no group stop already in progress.
Oleg Nesterova122b342006-03-28 16:11:22 -08001657 * We must initiate one now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 */
Oleg Nesterova122b342006-03-28 16:11:22 -08001659 sig->group_exit_code = signr;
1660
1661 stop_count = 0;
1662 for (t = next_thread(current); t != current; t = next_thread(t))
1663 /*
1664 * Setting state to TASK_STOPPED for a group
1665 * stop is always done with the siglock held,
1666 * so this check has no races.
1667 */
Oleg Nesterovd12619b2008-02-08 04:19:12 -08001668 if (!(t->flags & PF_EXITING) &&
Matthew Wilcoxe1abb392007-12-06 11:07:35 -05001669 !task_is_stopped_or_traced(t)) {
Oleg Nesterova122b342006-03-28 16:11:22 -08001670 stop_count++;
1671 signal_wake_up(t, 0);
1672 }
1673 sig->group_stop_count = stop_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 }
1675
Oleg Nesterovdac27f42006-03-28 16:11:28 -08001676 if (stop_count == 0)
1677 sig->flags = SIGNAL_STOP_STOPPED;
1678 current->exit_code = sig->group_exit_code;
1679 __set_current_state(TASK_STOPPED);
1680
1681 spin_unlock_irq(&current->sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 finish_stop(stop_count);
1683 return 1;
1684}
1685
Roland McGrath18c98b62008-04-17 18:44:38 -07001686static int ptrace_signal(int signr, siginfo_t *info,
1687 struct pt_regs *regs, void *cookie)
1688{
1689 if (!(current->ptrace & PT_PTRACED))
1690 return signr;
1691
1692 ptrace_signal_deliver(regs, cookie);
1693
1694 /* Let the debugger run. */
1695 ptrace_stop(signr, 0, info);
1696
1697 /* We're back. Did the debugger cancel the sig? */
1698 signr = current->exit_code;
1699 if (signr == 0)
1700 return signr;
1701
1702 current->exit_code = 0;
1703
1704 /* Update the siginfo structure if the signal has
1705 changed. If the debugger wanted something
1706 specific in the siginfo structure then it should
1707 have updated *info via PTRACE_SETSIGINFO. */
1708 if (signr != info->si_signo) {
1709 info->si_signo = signr;
1710 info->si_errno = 0;
1711 info->si_code = SI_USER;
1712 info->si_pid = task_pid_vnr(current->parent);
1713 info->si_uid = current->parent->uid;
1714 }
1715
1716 /* If the (new) signal is now blocked, requeue it. */
1717 if (sigismember(&current->blocked, signr)) {
1718 specific_send_sig_info(signr, info, current);
1719 signr = 0;
1720 }
1721
1722 return signr;
1723}
1724
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725int get_signal_to_deliver(siginfo_t *info, struct k_sigaction *return_ka,
1726 struct pt_regs *regs, void *cookie)
1727{
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001728 struct sighand_struct *sighand = current->sighand;
1729 struct signal_struct *signal = current->signal;
1730 int signr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
Roland McGrath13b1c3d2008-03-03 20:22:05 -08001732relock:
1733 /*
1734 * We'll jump back here after any time we were stopped in TASK_STOPPED.
1735 * While in TASK_STOPPED, we were considered "frozen enough".
1736 * Now that we woke up, it's crucial if we're supposed to be
1737 * frozen that we freeze now before running anything substantial.
1738 */
Rafael J. Wysockifc558a72006-03-23 03:00:05 -08001739 try_to_freeze();
1740
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001741 spin_lock_irq(&sighand->siglock);
Oleg Nesterov021e1ae2008-04-30 00:53:00 -07001742 /*
1743 * Every stopped thread goes here after wakeup. Check to see if
1744 * we should notify the parent, prepare_signal(SIGCONT) encodes
1745 * the CLD_ si_code into SIGNAL_CLD_MASK bits.
1746 */
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001747 if (unlikely(signal->flags & SIGNAL_CLD_MASK)) {
1748 int why = (signal->flags & SIGNAL_STOP_CONTINUED)
Oleg Nesterove4420552008-04-30 00:52:44 -07001749 ? CLD_CONTINUED : CLD_STOPPED;
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001750 signal->flags &= ~SIGNAL_CLD_MASK;
1751 spin_unlock_irq(&sighand->siglock);
Oleg Nesterove4420552008-04-30 00:52:44 -07001752
Roland McGrathfa00b802008-07-25 19:45:54 -07001753 if (unlikely(!tracehook_notify_jctl(1, why)))
1754 goto relock;
1755
Oleg Nesterove4420552008-04-30 00:52:44 -07001756 read_lock(&tasklist_lock);
1757 do_notify_parent_cldstop(current->group_leader, why);
1758 read_unlock(&tasklist_lock);
1759 goto relock;
1760 }
1761
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 for (;;) {
1763 struct k_sigaction *ka;
1764
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001765 if (unlikely(signal->group_stop_count > 0) &&
Oleg Nesterovf558b7e2008-02-04 22:27:24 -08001766 do_signal_stop(0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 goto relock;
1768
Roland McGrath7bcf6a22008-07-25 19:45:53 -07001769 /*
1770 * Tracing can induce an artifical signal and choose sigaction.
1771 * The return value in @signr determines the default action,
1772 * but @info->si_signo is the signal number we will report.
1773 */
1774 signr = tracehook_get_signal(current, regs, info, return_ka);
1775 if (unlikely(signr < 0))
1776 goto relock;
1777 if (unlikely(signr != 0))
1778 ka = return_ka;
1779 else {
1780 signr = dequeue_signal(current, &current->blocked,
1781 info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
Roland McGrath18c98b62008-04-17 18:44:38 -07001783 if (!signr)
Roland McGrath7bcf6a22008-07-25 19:45:53 -07001784 break; /* will return 0 */
1785
1786 if (signr != SIGKILL) {
1787 signr = ptrace_signal(signr, info,
1788 regs, cookie);
1789 if (!signr)
1790 continue;
1791 }
1792
1793 ka = &sighand->action[signr-1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 }
1795
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 if (ka->sa.sa_handler == SIG_IGN) /* Do nothing. */
1797 continue;
1798 if (ka->sa.sa_handler != SIG_DFL) {
1799 /* Run the handler. */
1800 *return_ka = *ka;
1801
1802 if (ka->sa.sa_flags & SA_ONESHOT)
1803 ka->sa.sa_handler = SIG_DFL;
1804
1805 break; /* will return non-zero "signr" value */
1806 }
1807
1808 /*
1809 * Now we are doing the default action for this signal.
1810 */
1811 if (sig_kernel_ignore(signr)) /* Default is nothing. */
1812 continue;
1813
Sukadev Bhattiprolu84d73782006-12-08 02:38:01 -08001814 /*
Sukadev Bhattiprolu0fbc26a2007-10-18 23:40:13 -07001815 * Global init gets no signals it doesn't want.
Sukadev Bhattiprolu84d73782006-12-08 02:38:01 -08001816 */
Oleg Nesterovfae5fa42008-04-30 00:53:03 -07001817 if (unlikely(signal->flags & SIGNAL_UNKILLABLE) &&
1818 !signal_group_exit(signal))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 continue;
1820
1821 if (sig_kernel_stop(signr)) {
1822 /*
1823 * The default action is to stop all threads in
1824 * the thread group. The job control signals
1825 * do nothing in an orphaned pgrp, but SIGSTOP
1826 * always works. Note that siglock needs to be
1827 * dropped during the call to is_orphaned_pgrp()
1828 * because of lock ordering with tasklist_lock.
1829 * This allows an intervening SIGCONT to be posted.
1830 * We need to check for that and bail out if necessary.
1831 */
1832 if (signr != SIGSTOP) {
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001833 spin_unlock_irq(&sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
1835 /* signals can be posted during this window */
1836
Eric W. Biederman3e7cd6c2007-02-12 00:52:58 -08001837 if (is_current_pgrp_orphaned())
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 goto relock;
1839
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001840 spin_lock_irq(&sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 }
1842
Roland McGrath7bcf6a22008-07-25 19:45:53 -07001843 if (likely(do_signal_stop(info->si_signo))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 /* It released the siglock. */
1845 goto relock;
1846 }
1847
1848 /*
1849 * We didn't actually stop, due to a race
1850 * with SIGCONT or something like that.
1851 */
1852 continue;
1853 }
1854
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001855 spin_unlock_irq(&sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
1857 /*
1858 * Anything else is fatal, maybe with a core dump.
1859 */
1860 current->flags |= PF_SIGNALED;
Oleg Nesterov2dce81b2008-04-30 00:52:58 -07001861
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 if (sig_kernel_coredump(signr)) {
Oleg Nesterov2dce81b2008-04-30 00:52:58 -07001863 if (print_fatal_signals)
Roland McGrath7bcf6a22008-07-25 19:45:53 -07001864 print_fatal_signal(regs, info->si_signo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 /*
1866 * If it was able to dump core, this kills all
1867 * other threads in the group and synchronizes with
1868 * their demise. If we lost the race with another
1869 * thread getting here, it set group_exit_code
1870 * first and our do_group_exit call below will use
1871 * that value and ignore the one we pass it.
1872 */
Roland McGrath7bcf6a22008-07-25 19:45:53 -07001873 do_coredump(info->si_signo, info->si_signo, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 }
1875
1876 /*
1877 * Death signals, no core dump.
1878 */
Roland McGrath7bcf6a22008-07-25 19:45:53 -07001879 do_group_exit(info->si_signo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 /* NOTREACHED */
1881 }
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001882 spin_unlock_irq(&sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 return signr;
1884}
1885
Oleg Nesterovd12619b2008-02-08 04:19:12 -08001886void exit_signals(struct task_struct *tsk)
1887{
1888 int group_stop = 0;
Oleg Nesterov5dee1702008-02-08 04:19:13 -08001889 struct task_struct *t;
Oleg Nesterovd12619b2008-02-08 04:19:12 -08001890
Oleg Nesterov5dee1702008-02-08 04:19:13 -08001891 if (thread_group_empty(tsk) || signal_group_exit(tsk->signal)) {
1892 tsk->flags |= PF_EXITING;
1893 return;
Oleg Nesterovd12619b2008-02-08 04:19:12 -08001894 }
1895
Oleg Nesterov5dee1702008-02-08 04:19:13 -08001896 spin_lock_irq(&tsk->sighand->siglock);
Oleg Nesterovd12619b2008-02-08 04:19:12 -08001897 /*
1898 * From now this task is not visible for group-wide signals,
1899 * see wants_signal(), do_signal_stop().
1900 */
1901 tsk->flags |= PF_EXITING;
Oleg Nesterov5dee1702008-02-08 04:19:13 -08001902 if (!signal_pending(tsk))
1903 goto out;
1904
1905 /* It could be that __group_complete_signal() choose us to
1906 * notify about group-wide signal. Another thread should be
1907 * woken now to take the signal since we will not.
1908 */
1909 for (t = tsk; (t = next_thread(t)) != tsk; )
1910 if (!signal_pending(t) && !(t->flags & PF_EXITING))
1911 recalc_sigpending_and_wake(t);
1912
1913 if (unlikely(tsk->signal->group_stop_count) &&
1914 !--tsk->signal->group_stop_count) {
1915 tsk->signal->flags = SIGNAL_STOP_STOPPED;
1916 group_stop = 1;
1917 }
1918out:
Oleg Nesterovd12619b2008-02-08 04:19:12 -08001919 spin_unlock_irq(&tsk->sighand->siglock);
1920
Roland McGrathfa00b802008-07-25 19:45:54 -07001921 if (unlikely(group_stop) && tracehook_notify_jctl(1, CLD_STOPPED)) {
Oleg Nesterovd12619b2008-02-08 04:19:12 -08001922 read_lock(&tasklist_lock);
1923 do_notify_parent_cldstop(tsk, CLD_STOPPED);
1924 read_unlock(&tasklist_lock);
1925 }
1926}
1927
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928EXPORT_SYMBOL(recalc_sigpending);
1929EXPORT_SYMBOL_GPL(dequeue_signal);
1930EXPORT_SYMBOL(flush_signals);
1931EXPORT_SYMBOL(force_sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932EXPORT_SYMBOL(send_sig);
1933EXPORT_SYMBOL(send_sig_info);
1934EXPORT_SYMBOL(sigprocmask);
1935EXPORT_SYMBOL(block_all_signals);
1936EXPORT_SYMBOL(unblock_all_signals);
1937
1938
1939/*
1940 * System call entry points.
1941 */
1942
1943asmlinkage long sys_restart_syscall(void)
1944{
1945 struct restart_block *restart = &current_thread_info()->restart_block;
1946 return restart->fn(restart);
1947}
1948
1949long do_no_restart_syscall(struct restart_block *param)
1950{
1951 return -EINTR;
1952}
1953
1954/*
1955 * We don't need to get the kernel lock - this is all local to this
1956 * particular thread.. (and that's good, because this is _heavily_
1957 * used by various programs)
1958 */
1959
1960/*
1961 * This is also useful for kernel threads that want to temporarily
1962 * (or permanently) block certain signals.
1963 *
1964 * NOTE! Unlike the user-mode sys_sigprocmask(), the kernel
1965 * interface happily blocks "unblockable" signals like SIGKILL
1966 * and friends.
1967 */
1968int sigprocmask(int how, sigset_t *set, sigset_t *oldset)
1969{
1970 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971
1972 spin_lock_irq(&current->sighand->siglock);
Oleg Nesterova26fd332006-03-23 03:00:49 -08001973 if (oldset)
1974 *oldset = current->blocked;
1975
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 error = 0;
1977 switch (how) {
1978 case SIG_BLOCK:
1979 sigorsets(&current->blocked, &current->blocked, set);
1980 break;
1981 case SIG_UNBLOCK:
1982 signandsets(&current->blocked, &current->blocked, set);
1983 break;
1984 case SIG_SETMASK:
1985 current->blocked = *set;
1986 break;
1987 default:
1988 error = -EINVAL;
1989 }
1990 recalc_sigpending();
1991 spin_unlock_irq(&current->sighand->siglock);
Oleg Nesterova26fd332006-03-23 03:00:49 -08001992
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 return error;
1994}
1995
1996asmlinkage long
1997sys_rt_sigprocmask(int how, sigset_t __user *set, sigset_t __user *oset, size_t sigsetsize)
1998{
1999 int error = -EINVAL;
2000 sigset_t old_set, new_set;
2001
2002 /* XXX: Don't preclude handling different sized sigset_t's. */
2003 if (sigsetsize != sizeof(sigset_t))
2004 goto out;
2005
2006 if (set) {
2007 error = -EFAULT;
2008 if (copy_from_user(&new_set, set, sizeof(*set)))
2009 goto out;
2010 sigdelsetmask(&new_set, sigmask(SIGKILL)|sigmask(SIGSTOP));
2011
2012 error = sigprocmask(how, &new_set, &old_set);
2013 if (error)
2014 goto out;
2015 if (oset)
2016 goto set_old;
2017 } else if (oset) {
2018 spin_lock_irq(&current->sighand->siglock);
2019 old_set = current->blocked;
2020 spin_unlock_irq(&current->sighand->siglock);
2021
2022 set_old:
2023 error = -EFAULT;
2024 if (copy_to_user(oset, &old_set, sizeof(*oset)))
2025 goto out;
2026 }
2027 error = 0;
2028out:
2029 return error;
2030}
2031
2032long do_sigpending(void __user *set, unsigned long sigsetsize)
2033{
2034 long error = -EINVAL;
2035 sigset_t pending;
2036
2037 if (sigsetsize > sizeof(sigset_t))
2038 goto out;
2039
2040 spin_lock_irq(&current->sighand->siglock);
2041 sigorsets(&pending, &current->pending.signal,
2042 &current->signal->shared_pending.signal);
2043 spin_unlock_irq(&current->sighand->siglock);
2044
2045 /* Outside the lock because only this thread touches it. */
2046 sigandsets(&pending, &current->blocked, &pending);
2047
2048 error = -EFAULT;
2049 if (!copy_to_user(set, &pending, sigsetsize))
2050 error = 0;
2051
2052out:
2053 return error;
2054}
2055
2056asmlinkage long
2057sys_rt_sigpending(sigset_t __user *set, size_t sigsetsize)
2058{
2059 return do_sigpending(set, sigsetsize);
2060}
2061
2062#ifndef HAVE_ARCH_COPY_SIGINFO_TO_USER
2063
2064int copy_siginfo_to_user(siginfo_t __user *to, siginfo_t *from)
2065{
2066 int err;
2067
2068 if (!access_ok (VERIFY_WRITE, to, sizeof(siginfo_t)))
2069 return -EFAULT;
2070 if (from->si_code < 0)
2071 return __copy_to_user(to, from, sizeof(siginfo_t))
2072 ? -EFAULT : 0;
2073 /*
2074 * If you change siginfo_t structure, please be sure
2075 * this code is fixed accordingly.
Davide Libenzifba2afa2007-05-10 22:23:13 -07002076 * Please remember to update the signalfd_copyinfo() function
2077 * inside fs/signalfd.c too, in case siginfo_t changes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 * It should never copy any pad contained in the structure
2079 * to avoid security leaks, but must copy the generic
2080 * 3 ints plus the relevant union member.
2081 */
2082 err = __put_user(from->si_signo, &to->si_signo);
2083 err |= __put_user(from->si_errno, &to->si_errno);
2084 err |= __put_user((short)from->si_code, &to->si_code);
2085 switch (from->si_code & __SI_MASK) {
2086 case __SI_KILL:
2087 err |= __put_user(from->si_pid, &to->si_pid);
2088 err |= __put_user(from->si_uid, &to->si_uid);
2089 break;
2090 case __SI_TIMER:
2091 err |= __put_user(from->si_tid, &to->si_tid);
2092 err |= __put_user(from->si_overrun, &to->si_overrun);
2093 err |= __put_user(from->si_ptr, &to->si_ptr);
2094 break;
2095 case __SI_POLL:
2096 err |= __put_user(from->si_band, &to->si_band);
2097 err |= __put_user(from->si_fd, &to->si_fd);
2098 break;
2099 case __SI_FAULT:
2100 err |= __put_user(from->si_addr, &to->si_addr);
2101#ifdef __ARCH_SI_TRAPNO
2102 err |= __put_user(from->si_trapno, &to->si_trapno);
2103#endif
2104 break;
2105 case __SI_CHLD:
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_status, &to->si_status);
2109 err |= __put_user(from->si_utime, &to->si_utime);
2110 err |= __put_user(from->si_stime, &to->si_stime);
2111 break;
2112 case __SI_RT: /* This is not generated by the kernel as of now. */
2113 case __SI_MESGQ: /* But this is */
2114 err |= __put_user(from->si_pid, &to->si_pid);
2115 err |= __put_user(from->si_uid, &to->si_uid);
2116 err |= __put_user(from->si_ptr, &to->si_ptr);
2117 break;
2118 default: /* this is just in case for now ... */
2119 err |= __put_user(from->si_pid, &to->si_pid);
2120 err |= __put_user(from->si_uid, &to->si_uid);
2121 break;
2122 }
2123 return err;
2124}
2125
2126#endif
2127
2128asmlinkage long
2129sys_rt_sigtimedwait(const sigset_t __user *uthese,
2130 siginfo_t __user *uinfo,
2131 const struct timespec __user *uts,
2132 size_t sigsetsize)
2133{
2134 int ret, sig;
2135 sigset_t these;
2136 struct timespec ts;
2137 siginfo_t info;
2138 long timeout = 0;
2139
2140 /* XXX: Don't preclude handling different sized sigset_t's. */
2141 if (sigsetsize != sizeof(sigset_t))
2142 return -EINVAL;
2143
2144 if (copy_from_user(&these, uthese, sizeof(these)))
2145 return -EFAULT;
2146
2147 /*
2148 * Invert the set of allowed signals to get those we
2149 * want to block.
2150 */
2151 sigdelsetmask(&these, sigmask(SIGKILL)|sigmask(SIGSTOP));
2152 signotset(&these);
2153
2154 if (uts) {
2155 if (copy_from_user(&ts, uts, sizeof(ts)))
2156 return -EFAULT;
2157 if (ts.tv_nsec >= 1000000000L || ts.tv_nsec < 0
2158 || ts.tv_sec < 0)
2159 return -EINVAL;
2160 }
2161
2162 spin_lock_irq(&current->sighand->siglock);
2163 sig = dequeue_signal(current, &these, &info);
2164 if (!sig) {
2165 timeout = MAX_SCHEDULE_TIMEOUT;
2166 if (uts)
2167 timeout = (timespec_to_jiffies(&ts)
2168 + (ts.tv_sec || ts.tv_nsec));
2169
2170 if (timeout) {
2171 /* None ready -- temporarily unblock those we're
2172 * interested while we are sleeping in so that we'll
2173 * be awakened when they arrive. */
2174 current->real_blocked = current->blocked;
2175 sigandsets(&current->blocked, &current->blocked, &these);
2176 recalc_sigpending();
2177 spin_unlock_irq(&current->sighand->siglock);
2178
Nishanth Aravamudan75bcc8c2005-09-10 00:27:24 -07002179 timeout = schedule_timeout_interruptible(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 spin_lock_irq(&current->sighand->siglock);
2182 sig = dequeue_signal(current, &these, &info);
2183 current->blocked = current->real_blocked;
2184 siginitset(&current->real_blocked, 0);
2185 recalc_sigpending();
2186 }
2187 }
2188 spin_unlock_irq(&current->sighand->siglock);
2189
2190 if (sig) {
2191 ret = sig;
2192 if (uinfo) {
2193 if (copy_siginfo_to_user(uinfo, &info))
2194 ret = -EFAULT;
2195 }
2196 } else {
2197 ret = -EAGAIN;
2198 if (timeout)
2199 ret = -EINTR;
2200 }
2201
2202 return ret;
2203}
2204
2205asmlinkage long
Gustavo Fernando Padovanbc64efd2008-07-25 01:47:33 -07002206sys_kill(pid_t pid, int sig)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207{
2208 struct siginfo info;
2209
2210 info.si_signo = sig;
2211 info.si_errno = 0;
2212 info.si_code = SI_USER;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002213 info.si_pid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 info.si_uid = current->uid;
2215
2216 return kill_something_info(sig, &info, pid);
2217}
2218
Gustavo Fernando Padovanbc64efd2008-07-25 01:47:33 -07002219static int do_tkill(pid_t tgid, pid_t pid, int sig)
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002220{
2221 int error;
2222 struct siginfo info;
2223 struct task_struct *p;
Oleg Nesterov3547ff32008-04-30 00:52:51 -07002224 unsigned long flags;
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002225
2226 error = -ESRCH;
2227 info.si_signo = sig;
2228 info.si_errno = 0;
2229 info.si_code = SI_TKILL;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002230 info.si_pid = task_tgid_vnr(current);
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002231 info.si_uid = current->uid;
2232
Oleg Nesterov3547ff32008-04-30 00:52:51 -07002233 rcu_read_lock();
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07002234 p = find_task_by_vpid(pid);
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002235 if (p && (tgid <= 0 || task_tgid_vnr(p) == tgid)) {
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002236 error = check_kill_permission(sig, &info, p);
2237 /*
2238 * The null signal is a permissions and process existence
2239 * probe. No signal is actually delivered.
Oleg Nesterov3547ff32008-04-30 00:52:51 -07002240 *
2241 * If lock_task_sighand() fails we pretend the task dies
2242 * after receiving the signal. The window is tiny, and the
2243 * signal is private anyway.
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002244 */
Oleg Nesterov3547ff32008-04-30 00:52:51 -07002245 if (!error && sig && lock_task_sighand(p, &flags)) {
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002246 error = specific_send_sig_info(sig, &info, p);
Oleg Nesterov3547ff32008-04-30 00:52:51 -07002247 unlock_task_sighand(p, &flags);
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002248 }
2249 }
Oleg Nesterov3547ff32008-04-30 00:52:51 -07002250 rcu_read_unlock();
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002251
2252 return error;
2253}
2254
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255/**
2256 * sys_tgkill - send signal to one specific thread
2257 * @tgid: the thread group ID of the thread
2258 * @pid: the PID of the thread
2259 * @sig: signal to be sent
2260 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08002261 * This syscall also checks the @tgid and returns -ESRCH even if the PID
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 * exists but it's not belonging to the target process anymore. This
2263 * method solves the problem of threads exiting and PIDs getting reused.
2264 */
Gustavo Fernando Padovanbc64efd2008-07-25 01:47:33 -07002265asmlinkage long sys_tgkill(pid_t tgid, pid_t pid, int sig)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 /* This is only valid for single tasks */
2268 if (pid <= 0 || tgid <= 0)
2269 return -EINVAL;
2270
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002271 return do_tkill(tgid, pid, sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272}
2273
2274/*
2275 * Send a signal to only one task, even if it's a CLONE_THREAD task.
2276 */
2277asmlinkage long
Gustavo Fernando Padovanbc64efd2008-07-25 01:47:33 -07002278sys_tkill(pid_t pid, int sig)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 /* This is only valid for single tasks */
2281 if (pid <= 0)
2282 return -EINVAL;
2283
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002284 return do_tkill(0, pid, sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285}
2286
2287asmlinkage long
Gustavo Fernando Padovanbc64efd2008-07-25 01:47:33 -07002288sys_rt_sigqueueinfo(pid_t pid, int sig, siginfo_t __user *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289{
2290 siginfo_t info;
2291
2292 if (copy_from_user(&info, uinfo, sizeof(siginfo_t)))
2293 return -EFAULT;
2294
2295 /* Not even root can pretend to send signals from the kernel.
2296 Nor can they impersonate a kill(), which adds source info. */
2297 if (info.si_code >= 0)
2298 return -EPERM;
2299 info.si_signo = sig;
2300
2301 /* POSIX.1b doesn't mention process groups. */
2302 return kill_proc_info(sig, &info, pid);
2303}
2304
Oleg Nesterov88531f72006-03-28 16:11:24 -08002305int do_sigaction(int sig, struct k_sigaction *act, struct k_sigaction *oact)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306{
Pavel Emelyanov93585ee2008-04-30 00:52:39 -07002307 struct task_struct *t = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 struct k_sigaction *k;
George Anzinger71fabd52006-01-08 01:02:48 -08002309 sigset_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310
Jesper Juhl7ed20e12005-05-01 08:59:14 -07002311 if (!valid_signal(sig) || sig < 1 || (act && sig_kernel_only(sig)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 return -EINVAL;
2313
Pavel Emelyanov93585ee2008-04-30 00:52:39 -07002314 k = &t->sighand->action[sig-1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
2316 spin_lock_irq(&current->sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 if (oact)
2318 *oact = *k;
2319
2320 if (act) {
Oleg Nesterov9ac95f22006-02-09 22:41:50 +03002321 sigdelsetmask(&act->sa.sa_mask,
2322 sigmask(SIGKILL) | sigmask(SIGSTOP));
Oleg Nesterov88531f72006-03-28 16:11:24 -08002323 *k = *act;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 /*
2325 * POSIX 3.3.1.3:
2326 * "Setting a signal action to SIG_IGN for a signal that is
2327 * pending shall cause the pending signal to be discarded,
2328 * whether or not it is blocked."
2329 *
2330 * "Setting a signal action to SIG_DFL for a signal that is
2331 * pending and whose default action is to ignore the signal
2332 * (for example, SIGCHLD), shall cause the pending signal to
2333 * be discarded, whether or not it is blocked"
2334 */
Roland McGrath35de2542008-07-25 19:45:51 -07002335 if (sig_handler_ignored(sig_handler(t, sig), sig)) {
George Anzinger71fabd52006-01-08 01:02:48 -08002336 sigemptyset(&mask);
2337 sigaddset(&mask, sig);
2338 rm_from_queue_full(&mask, &t->signal->shared_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 do {
George Anzinger71fabd52006-01-08 01:02:48 -08002340 rm_from_queue_full(&mask, &t->pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 t = next_thread(t);
2342 } while (t != current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 }
2345
2346 spin_unlock_irq(&current->sighand->siglock);
2347 return 0;
2348}
2349
2350int
2351do_sigaltstack (const stack_t __user *uss, stack_t __user *uoss, unsigned long sp)
2352{
2353 stack_t oss;
2354 int error;
2355
2356 if (uoss) {
2357 oss.ss_sp = (void __user *) current->sas_ss_sp;
2358 oss.ss_size = current->sas_ss_size;
2359 oss.ss_flags = sas_ss_flags(sp);
2360 }
2361
2362 if (uss) {
2363 void __user *ss_sp;
2364 size_t ss_size;
2365 int ss_flags;
2366
2367 error = -EFAULT;
2368 if (!access_ok(VERIFY_READ, uss, sizeof(*uss))
2369 || __get_user(ss_sp, &uss->ss_sp)
2370 || __get_user(ss_flags, &uss->ss_flags)
2371 || __get_user(ss_size, &uss->ss_size))
2372 goto out;
2373
2374 error = -EPERM;
2375 if (on_sig_stack(sp))
2376 goto out;
2377
2378 error = -EINVAL;
2379 /*
2380 *
2381 * Note - this code used to test ss_flags incorrectly
2382 * old code may have been written using ss_flags==0
2383 * to mean ss_flags==SS_ONSTACK (as this was the only
2384 * way that worked) - this fix preserves that older
2385 * mechanism
2386 */
2387 if (ss_flags != SS_DISABLE && ss_flags != SS_ONSTACK && ss_flags != 0)
2388 goto out;
2389
2390 if (ss_flags == SS_DISABLE) {
2391 ss_size = 0;
2392 ss_sp = NULL;
2393 } else {
2394 error = -ENOMEM;
2395 if (ss_size < MINSIGSTKSZ)
2396 goto out;
2397 }
2398
2399 current->sas_ss_sp = (unsigned long) ss_sp;
2400 current->sas_ss_size = ss_size;
2401 }
2402
2403 if (uoss) {
2404 error = -EFAULT;
2405 if (copy_to_user(uoss, &oss, sizeof(oss)))
2406 goto out;
2407 }
2408
2409 error = 0;
2410out:
2411 return error;
2412}
2413
2414#ifdef __ARCH_WANT_SYS_SIGPENDING
2415
2416asmlinkage long
2417sys_sigpending(old_sigset_t __user *set)
2418{
2419 return do_sigpending(set, sizeof(*set));
2420}
2421
2422#endif
2423
2424#ifdef __ARCH_WANT_SYS_SIGPROCMASK
2425/* Some platforms have their own version with special arguments others
2426 support only sys_rt_sigprocmask. */
2427
2428asmlinkage long
2429sys_sigprocmask(int how, old_sigset_t __user *set, old_sigset_t __user *oset)
2430{
2431 int error;
2432 old_sigset_t old_set, new_set;
2433
2434 if (set) {
2435 error = -EFAULT;
2436 if (copy_from_user(&new_set, set, sizeof(*set)))
2437 goto out;
2438 new_set &= ~(sigmask(SIGKILL) | sigmask(SIGSTOP));
2439
2440 spin_lock_irq(&current->sighand->siglock);
2441 old_set = current->blocked.sig[0];
2442
2443 error = 0;
2444 switch (how) {
2445 default:
2446 error = -EINVAL;
2447 break;
2448 case SIG_BLOCK:
2449 sigaddsetmask(&current->blocked, new_set);
2450 break;
2451 case SIG_UNBLOCK:
2452 sigdelsetmask(&current->blocked, new_set);
2453 break;
2454 case SIG_SETMASK:
2455 current->blocked.sig[0] = new_set;
2456 break;
2457 }
2458
2459 recalc_sigpending();
2460 spin_unlock_irq(&current->sighand->siglock);
2461 if (error)
2462 goto out;
2463 if (oset)
2464 goto set_old;
2465 } else if (oset) {
2466 old_set = current->blocked.sig[0];
2467 set_old:
2468 error = -EFAULT;
2469 if (copy_to_user(oset, &old_set, sizeof(*oset)))
2470 goto out;
2471 }
2472 error = 0;
2473out:
2474 return error;
2475}
2476#endif /* __ARCH_WANT_SYS_SIGPROCMASK */
2477
2478#ifdef __ARCH_WANT_SYS_RT_SIGACTION
2479asmlinkage long
2480sys_rt_sigaction(int sig,
2481 const struct sigaction __user *act,
2482 struct sigaction __user *oact,
2483 size_t sigsetsize)
2484{
2485 struct k_sigaction new_sa, old_sa;
2486 int ret = -EINVAL;
2487
2488 /* XXX: Don't preclude handling different sized sigset_t's. */
2489 if (sigsetsize != sizeof(sigset_t))
2490 goto out;
2491
2492 if (act) {
2493 if (copy_from_user(&new_sa.sa, act, sizeof(new_sa.sa)))
2494 return -EFAULT;
2495 }
2496
2497 ret = do_sigaction(sig, act ? &new_sa : NULL, oact ? &old_sa : NULL);
2498
2499 if (!ret && oact) {
2500 if (copy_to_user(oact, &old_sa.sa, sizeof(old_sa.sa)))
2501 return -EFAULT;
2502 }
2503out:
2504 return ret;
2505}
2506#endif /* __ARCH_WANT_SYS_RT_SIGACTION */
2507
2508#ifdef __ARCH_WANT_SYS_SGETMASK
2509
2510/*
2511 * For backwards compatibility. Functionality superseded by sigprocmask.
2512 */
2513asmlinkage long
2514sys_sgetmask(void)
2515{
2516 /* SMP safe */
2517 return current->blocked.sig[0];
2518}
2519
2520asmlinkage long
2521sys_ssetmask(int newmask)
2522{
2523 int old;
2524
2525 spin_lock_irq(&current->sighand->siglock);
2526 old = current->blocked.sig[0];
2527
2528 siginitset(&current->blocked, newmask & ~(sigmask(SIGKILL)|
2529 sigmask(SIGSTOP)));
2530 recalc_sigpending();
2531 spin_unlock_irq(&current->sighand->siglock);
2532
2533 return old;
2534}
2535#endif /* __ARCH_WANT_SGETMASK */
2536
2537#ifdef __ARCH_WANT_SYS_SIGNAL
2538/*
2539 * For backwards compatibility. Functionality superseded by sigaction.
2540 */
2541asmlinkage unsigned long
2542sys_signal(int sig, __sighandler_t handler)
2543{
2544 struct k_sigaction new_sa, old_sa;
2545 int ret;
2546
2547 new_sa.sa.sa_handler = handler;
2548 new_sa.sa.sa_flags = SA_ONESHOT | SA_NOMASK;
Oleg Nesterovc70d3d702006-02-09 22:41:41 +03002549 sigemptyset(&new_sa.sa.sa_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550
2551 ret = do_sigaction(sig, &new_sa, &old_sa);
2552
2553 return ret ? ret : (unsigned long)old_sa.sa.sa_handler;
2554}
2555#endif /* __ARCH_WANT_SYS_SIGNAL */
2556
2557#ifdef __ARCH_WANT_SYS_PAUSE
2558
2559asmlinkage long
2560sys_pause(void)
2561{
2562 current->state = TASK_INTERRUPTIBLE;
2563 schedule();
2564 return -ERESTARTNOHAND;
2565}
2566
2567#endif
2568
David Woodhouse150256d2006-01-18 17:43:57 -08002569#ifdef __ARCH_WANT_SYS_RT_SIGSUSPEND
2570asmlinkage long sys_rt_sigsuspend(sigset_t __user *unewset, size_t sigsetsize)
2571{
2572 sigset_t newset;
2573
2574 /* XXX: Don't preclude handling different sized sigset_t's. */
2575 if (sigsetsize != sizeof(sigset_t))
2576 return -EINVAL;
2577
2578 if (copy_from_user(&newset, unewset, sizeof(newset)))
2579 return -EFAULT;
2580 sigdelsetmask(&newset, sigmask(SIGKILL)|sigmask(SIGSTOP));
2581
2582 spin_lock_irq(&current->sighand->siglock);
2583 current->saved_sigmask = current->blocked;
2584 current->blocked = newset;
2585 recalc_sigpending();
2586 spin_unlock_irq(&current->sighand->siglock);
2587
2588 current->state = TASK_INTERRUPTIBLE;
2589 schedule();
Roland McGrath4e4c22c2008-04-30 00:53:06 -07002590 set_restore_sigmask();
David Woodhouse150256d2006-01-18 17:43:57 -08002591 return -ERESTARTNOHAND;
2592}
2593#endif /* __ARCH_WANT_SYS_RT_SIGSUSPEND */
2594
David Howellsf269fdd2006-09-27 01:50:23 -07002595__attribute__((weak)) const char *arch_vma_name(struct vm_area_struct *vma)
2596{
2597 return NULL;
2598}
2599
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600void __init signals_init(void)
2601{
Christoph Lameter0a31bd52007-05-06 14:49:57 -07002602 sigqueue_cachep = KMEM_CACHE(sigqueue, SLAB_PANIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603}