blob: e9afe63da24b524cbd036692945a8dfe634809d2 [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
Mathieu Desnoyers7e066fb2008-11-14 17:47:47 -050044DEFINE_TRACE(sched_signal_send);
45
Roland McGrath35de2542008-07-25 19:45:51 -070046static void __user *sig_handler(struct task_struct *t, int sig)
Pavel Emelyanov93585ee2008-04-30 00:52:39 -070047{
Roland McGrath35de2542008-07-25 19:45:51 -070048 return t->sighand->action[sig - 1].sa.sa_handler;
49}
Pavel Emelyanov93585ee2008-04-30 00:52:39 -070050
Roland McGrath35de2542008-07-25 19:45:51 -070051static int sig_handler_ignored(void __user *handler, int sig)
52{
Pavel Emelyanov93585ee2008-04-30 00:52:39 -070053 /* Is it explicitly or implicitly ignored? */
Pavel Emelyanov93585ee2008-04-30 00:52:39 -070054 return handler == SIG_IGN ||
55 (handler == SIG_DFL && sig_kernel_ignore(sig));
56}
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58static int sig_ignored(struct task_struct *t, int sig)
59{
Roland McGrath35de2542008-07-25 19:45:51 -070060 void __user *handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62 /*
63 * Blocked signals are never ignored, since the
64 * signal handler may change by the time it is
65 * unblocked.
66 */
Roland McGrath325d22d2007-11-12 15:41:55 -080067 if (sigismember(&t->blocked, sig) || sigismember(&t->real_blocked, sig))
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 return 0;
69
Roland McGrath35de2542008-07-25 19:45:51 -070070 handler = sig_handler(t, sig);
71 if (!sig_handler_ignored(handler, sig))
72 return 0;
73
74 /*
75 * Tracers may want to know about even ignored signals.
76 */
77 return !tracehook_consider_ignored_signal(t, sig, handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078}
79
80/*
81 * Re-calculate pending state from the set of locally pending
82 * signals, globally pending signals, and blocked signals.
83 */
84static inline int has_pending_signals(sigset_t *signal, sigset_t *blocked)
85{
86 unsigned long ready;
87 long i;
88
89 switch (_NSIG_WORDS) {
90 default:
91 for (i = _NSIG_WORDS, ready = 0; --i >= 0 ;)
92 ready |= signal->sig[i] &~ blocked->sig[i];
93 break;
94
95 case 4: ready = signal->sig[3] &~ blocked->sig[3];
96 ready |= signal->sig[2] &~ blocked->sig[2];
97 ready |= signal->sig[1] &~ blocked->sig[1];
98 ready |= signal->sig[0] &~ blocked->sig[0];
99 break;
100
101 case 2: ready = signal->sig[1] &~ blocked->sig[1];
102 ready |= signal->sig[0] &~ blocked->sig[0];
103 break;
104
105 case 1: ready = signal->sig[0] &~ blocked->sig[0];
106 }
107 return ready != 0;
108}
109
110#define PENDING(p,b) has_pending_signals(&(p)->signal, (b))
111
Roland McGrath7bb44ad2007-05-23 13:57:44 -0700112static int recalc_sigpending_tsk(struct task_struct *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
114 if (t->signal->group_stop_count > 0 ||
115 PENDING(&t->pending, &t->blocked) ||
Roland McGrath7bb44ad2007-05-23 13:57:44 -0700116 PENDING(&t->signal->shared_pending, &t->blocked)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 set_tsk_thread_flag(t, TIF_SIGPENDING);
Roland McGrath7bb44ad2007-05-23 13:57:44 -0700118 return 1;
119 }
Roland McGrathb74d0de2007-06-06 03:59:00 -0700120 /*
121 * We must never clear the flag in another thread, or in current
122 * when it's possible the current syscall is returning -ERESTART*.
123 * So we don't clear it here, and only callers who know they should do.
124 */
Roland McGrath7bb44ad2007-05-23 13:57:44 -0700125 return 0;
126}
127
128/*
129 * After recalculating TIF_SIGPENDING, we need to make sure the task wakes up.
130 * This is superfluous when called on current, the wakeup is a harmless no-op.
131 */
132void recalc_sigpending_and_wake(struct task_struct *t)
133{
134 if (recalc_sigpending_tsk(t))
135 signal_wake_up(t, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
138void recalc_sigpending(void)
139{
Roland McGrathb787f7b2008-07-25 19:45:55 -0700140 if (unlikely(tracehook_force_sigpending()))
141 set_thread_flag(TIF_SIGPENDING);
142 else if (!recalc_sigpending_tsk(current) && !freezing(current))
Roland McGrathb74d0de2007-06-06 03:59:00 -0700143 clear_thread_flag(TIF_SIGPENDING);
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145}
146
147/* Given the mask, find the first available signal that should be serviced. */
148
Davide Libenzifba2afa2007-05-10 22:23:13 -0700149int next_signal(struct sigpending *pending, sigset_t *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
151 unsigned long i, *s, *m, x;
152 int sig = 0;
153
154 s = pending->signal.sig;
155 m = mask->sig;
156 switch (_NSIG_WORDS) {
157 default:
158 for (i = 0; i < _NSIG_WORDS; ++i, ++s, ++m)
159 if ((x = *s &~ *m) != 0) {
160 sig = ffz(~x) + i*_NSIG_BPW + 1;
161 break;
162 }
163 break;
164
165 case 2: if ((x = s[0] &~ m[0]) != 0)
166 sig = 1;
167 else if ((x = s[1] &~ m[1]) != 0)
168 sig = _NSIG_BPW + 1;
169 else
170 break;
171 sig += ffz(~x);
172 break;
173
174 case 1: if ((x = *s &~ *m) != 0)
175 sig = ffz(~x) + 1;
176 break;
177 }
178
179 return sig;
180}
181
Al Virodd0fc662005-10-07 07:46:04 +0100182static struct sigqueue *__sigqueue_alloc(struct task_struct *t, gfp_t flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 int override_rlimit)
184{
185 struct sigqueue *q = NULL;
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800186 struct user_struct *user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800188 /*
189 * In order to avoid problems with "switch_user()", we want to make
190 * sure that the compiler doesn't re-load "t->user"
191 */
192 user = t->user;
193 barrier();
194 atomic_inc(&user->sigpending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 if (override_rlimit ||
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800196 atomic_read(&user->sigpending) <=
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 t->signal->rlim[RLIMIT_SIGPENDING].rlim_cur)
198 q = kmem_cache_alloc(sigqueue_cachep, flags);
199 if (unlikely(q == NULL)) {
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800200 atomic_dec(&user->sigpending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 } else {
202 INIT_LIST_HEAD(&q->list);
203 q->flags = 0;
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800204 q->user = get_uid(user);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 }
206 return(q);
207}
208
Andrew Morton514a01b2006-02-03 03:04:41 -0800209static void __sigqueue_free(struct sigqueue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
211 if (q->flags & SIGQUEUE_PREALLOC)
212 return;
213 atomic_dec(&q->user->sigpending);
214 free_uid(q->user);
215 kmem_cache_free(sigqueue_cachep, q);
216}
217
Oleg Nesterov6a14c5c2006-03-28 16:11:18 -0800218void flush_sigqueue(struct sigpending *queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
220 struct sigqueue *q;
221
222 sigemptyset(&queue->signal);
223 while (!list_empty(&queue->list)) {
224 q = list_entry(queue->list.next, struct sigqueue , list);
225 list_del_init(&q->list);
226 __sigqueue_free(q);
227 }
228}
229
230/*
231 * Flush all pending signals for a task.
232 */
Oleg Nesterovc81addc2006-03-28 16:11:17 -0800233void flush_signals(struct task_struct *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
235 unsigned long flags;
236
237 spin_lock_irqsave(&t->sighand->siglock, flags);
Pavel Machekf5264482008-04-21 22:15:06 +0000238 clear_tsk_thread_flag(t, TIF_SIGPENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 flush_sigqueue(&t->pending);
240 flush_sigqueue(&t->signal->shared_pending);
241 spin_unlock_irqrestore(&t->sighand->siglock, flags);
242}
243
Oleg Nesterovcbaffba2008-05-26 20:55:42 +0400244static void __flush_itimer_signals(struct sigpending *pending)
245{
246 sigset_t signal, retain;
247 struct sigqueue *q, *n;
248
249 signal = pending->signal;
250 sigemptyset(&retain);
251
252 list_for_each_entry_safe(q, n, &pending->list, list) {
253 int sig = q->info.si_signo;
254
255 if (likely(q->info.si_code != SI_TIMER)) {
256 sigaddset(&retain, sig);
257 } else {
258 sigdelset(&signal, sig);
259 list_del_init(&q->list);
260 __sigqueue_free(q);
261 }
262 }
263
264 sigorsets(&pending->signal, &signal, &retain);
265}
266
267void flush_itimer_signals(void)
268{
269 struct task_struct *tsk = current;
270 unsigned long flags;
271
272 spin_lock_irqsave(&tsk->sighand->siglock, flags);
273 __flush_itimer_signals(&tsk->pending);
274 __flush_itimer_signals(&tsk->signal->shared_pending);
275 spin_unlock_irqrestore(&tsk->sighand->siglock, flags);
276}
277
Oleg Nesterov10ab8252007-05-09 02:34:37 -0700278void ignore_signals(struct task_struct *t)
279{
280 int i;
281
282 for (i = 0; i < _NSIG; ++i)
283 t->sighand->action[i].sa.sa_handler = SIG_IGN;
284
285 flush_signals(t);
286}
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 * Flush all handlers for a task.
290 */
291
292void
293flush_signal_handlers(struct task_struct *t, int force_default)
294{
295 int i;
296 struct k_sigaction *ka = &t->sighand->action[0];
297 for (i = _NSIG ; i != 0 ; i--) {
298 if (force_default || ka->sa.sa_handler != SIG_IGN)
299 ka->sa.sa_handler = SIG_DFL;
300 ka->sa.sa_flags = 0;
301 sigemptyset(&ka->sa.sa_mask);
302 ka++;
303 }
304}
305
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200306int unhandled_signal(struct task_struct *tsk, int sig)
307{
Roland McGrath445a91d2008-07-25 19:45:52 -0700308 void __user *handler = tsk->sighand->action[sig-1].sa.sa_handler;
Serge E. Hallynb460cbc2007-10-18 23:39:52 -0700309 if (is_global_init(tsk))
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200310 return 1;
Roland McGrath445a91d2008-07-25 19:45:52 -0700311 if (handler != SIG_IGN && handler != SIG_DFL)
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200312 return 0;
Roland McGrath445a91d2008-07-25 19:45:52 -0700313 return !tracehook_consider_fatal_signal(tsk, sig, handler);
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200314}
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317/* Notify the system that a driver wants to block all signals for this
318 * process, and wants to be notified if any signals at all were to be
319 * sent/acted upon. If the notifier routine returns non-zero, then the
320 * signal will be acted upon after all. If the notifier routine returns 0,
321 * then then signal will be blocked. Only one block per process is
322 * allowed. priv is a pointer to private data that the notifier routine
323 * can use to determine if the signal should be blocked or not. */
324
325void
326block_all_signals(int (*notifier)(void *priv), void *priv, sigset_t *mask)
327{
328 unsigned long flags;
329
330 spin_lock_irqsave(&current->sighand->siglock, flags);
331 current->notifier_mask = mask;
332 current->notifier_data = priv;
333 current->notifier = notifier;
334 spin_unlock_irqrestore(&current->sighand->siglock, flags);
335}
336
337/* Notify the system that blocking has ended. */
338
339void
340unblock_all_signals(void)
341{
342 unsigned long flags;
343
344 spin_lock_irqsave(&current->sighand->siglock, flags);
345 current->notifier = NULL;
346 current->notifier_data = NULL;
347 recalc_sigpending();
348 spin_unlock_irqrestore(&current->sighand->siglock, flags);
349}
350
Oleg Nesterov100360f2008-07-25 01:47:29 -0700351static void collect_signal(int sig, struct sigpending *list, siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
353 struct sigqueue *q, *first = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 /*
356 * Collect the siginfo appropriate to this signal. Check if
357 * there is another siginfo for the same signal.
358 */
359 list_for_each_entry(q, &list->list, list) {
360 if (q->info.si_signo == sig) {
Oleg Nesterovd4434202008-07-25 01:47:28 -0700361 if (first)
362 goto still_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 first = q;
364 }
365 }
Oleg Nesterovd4434202008-07-25 01:47:28 -0700366
367 sigdelset(&list->signal, sig);
368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 if (first) {
Oleg Nesterovd4434202008-07-25 01:47:28 -0700370still_pending:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 list_del_init(&first->list);
372 copy_siginfo(info, &first->info);
373 __sigqueue_free(first);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 /* Ok, it wasn't in the queue. This must be
376 a fast-pathed signal or we must have been
377 out of queue space. So zero out the info.
378 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 info->si_signo = sig;
380 info->si_errno = 0;
381 info->si_code = 0;
382 info->si_pid = 0;
383 info->si_uid = 0;
384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}
386
387static int __dequeue_signal(struct sigpending *pending, sigset_t *mask,
388 siginfo_t *info)
389{
Roland McGrath27d91e02006-09-29 02:00:31 -0700390 int sig = next_signal(pending, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 if (sig) {
393 if (current->notifier) {
394 if (sigismember(current->notifier_mask, sig)) {
395 if (!(current->notifier)(current->notifier_data)) {
396 clear_thread_flag(TIF_SIGPENDING);
397 return 0;
398 }
399 }
400 }
401
Oleg Nesterov100360f2008-07-25 01:47:29 -0700402 collect_signal(sig, pending, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405 return sig;
406}
407
408/*
409 * Dequeue a signal and return the element to the caller, which is
410 * expected to free it.
411 *
412 * All callers have to hold the siglock.
413 */
414int dequeue_signal(struct task_struct *tsk, sigset_t *mask, siginfo_t *info)
415{
Pavel Emelyanovc5363d02008-04-30 00:52:40 -0700416 int signr;
Benjamin Herrenschmidtcaec4e82007-06-12 08:16:18 +1000417
418 /* We only dequeue private signals from ourselves, we don't let
419 * signalfd steal them
420 */
Davide Libenzib8fceee2007-09-20 12:40:16 -0700421 signr = __dequeue_signal(&tsk->pending, mask, info);
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800422 if (!signr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 signr = __dequeue_signal(&tsk->signal->shared_pending,
424 mask, info);
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800425 /*
426 * itimer signal ?
427 *
428 * itimers are process shared and we restart periodic
429 * itimers in the signal delivery path to prevent DoS
430 * attacks in the high resolution timer case. This is
431 * compliant with the old way of self restarting
432 * itimers, as the SIGALRM is a legacy signal and only
433 * queued once. Changing the restart behaviour to
434 * restart the timer in the signal dequeue path is
435 * reducing the timer noise on heavy loaded !highres
436 * systems too.
437 */
438 if (unlikely(signr == SIGALRM)) {
439 struct hrtimer *tmr = &tsk->signal->real_timer;
440
441 if (!hrtimer_is_queued(tmr) &&
442 tsk->signal->it_real_incr.tv64 != 0) {
443 hrtimer_forward(tmr, tmr->base->get_time(),
444 tsk->signal->it_real_incr);
445 hrtimer_restart(tmr);
446 }
447 }
448 }
Pavel Emelyanovc5363d02008-04-30 00:52:40 -0700449
Davide Libenzib8fceee2007-09-20 12:40:16 -0700450 recalc_sigpending();
Pavel Emelyanovc5363d02008-04-30 00:52:40 -0700451 if (!signr)
452 return 0;
453
454 if (unlikely(sig_kernel_stop(signr))) {
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800455 /*
456 * Set a marker that we have dequeued a stop signal. Our
457 * caller might release the siglock and then the pending
458 * stop signal it is about to process is no longer in the
459 * pending bitmasks, but must still be cleared by a SIGCONT
460 * (and overruled by a SIGKILL). So those cases clear this
461 * shared flag after we've set it. Note that this flag may
462 * remain set after the signal we return is ignored or
463 * handled. That doesn't matter because its only purpose
464 * is to alert stop-signal processing code when another
465 * processor has come along and cleared the flag.
466 */
Oleg Nesterov92413d72008-07-25 01:47:30 -0700467 tsk->signal->flags |= SIGNAL_STOP_DEQUEUED;
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800468 }
Pavel Emelyanovc5363d02008-04-30 00:52:40 -0700469 if ((info->si_code & __SI_MASK) == __SI_TIMER && info->si_sys_private) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 /*
471 * Release the siglock to ensure proper locking order
472 * of timer locks outside of siglocks. Note, we leave
473 * irqs disabled here, since the posix-timers code is
474 * about to disable them again anyway.
475 */
476 spin_unlock(&tsk->sighand->siglock);
477 do_schedule_next_timer(info);
478 spin_lock(&tsk->sighand->siglock);
479 }
480 return signr;
481}
482
483/*
484 * Tell a process that it has a new active signal..
485 *
486 * NOTE! we rely on the previous spin_lock to
487 * lock interrupts for us! We can only be called with
488 * "siglock" held, and the local interrupt must
489 * have been disabled when that got acquired!
490 *
491 * No need to set need_resched since signal event passing
492 * goes through ->blocked
493 */
494void signal_wake_up(struct task_struct *t, int resume)
495{
496 unsigned int mask;
497
498 set_tsk_thread_flag(t, TIF_SIGPENDING);
499
500 /*
Matthew Wilcoxf021a3c2007-12-06 11:13:16 -0500501 * For SIGKILL, we want to wake it up in the stopped/traced/killable
502 * case. We don't check t->state here because there is a race with it
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 * executing another processor and just now entering stopped state.
504 * By using wake_up_state, we ensure the process will wake up and
505 * handle its death signal.
506 */
507 mask = TASK_INTERRUPTIBLE;
508 if (resume)
Matthew Wilcoxf021a3c2007-12-06 11:13:16 -0500509 mask |= TASK_WAKEKILL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 if (!wake_up_state(t, mask))
511 kick_process(t);
512}
513
514/*
515 * Remove signals in mask from the pending set and queue.
516 * Returns 1 if any signals were found.
517 *
518 * All callers must be holding the siglock.
George Anzinger71fabd52006-01-08 01:02:48 -0800519 *
520 * This version takes a sigset mask and looks at all signals,
521 * not just those in the first mask word.
522 */
523static int rm_from_queue_full(sigset_t *mask, struct sigpending *s)
524{
525 struct sigqueue *q, *n;
526 sigset_t m;
527
528 sigandsets(&m, mask, &s->signal);
529 if (sigisemptyset(&m))
530 return 0;
531
532 signandsets(&s->signal, &s->signal, mask);
533 list_for_each_entry_safe(q, n, &s->list, list) {
534 if (sigismember(mask, q->info.si_signo)) {
535 list_del_init(&q->list);
536 __sigqueue_free(q);
537 }
538 }
539 return 1;
540}
541/*
542 * Remove signals in mask from the pending set and queue.
543 * Returns 1 if any signals were found.
544 *
545 * All callers must be holding the siglock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 */
547static int rm_from_queue(unsigned long mask, struct sigpending *s)
548{
549 struct sigqueue *q, *n;
550
551 if (!sigtestsetmask(&s->signal, mask))
552 return 0;
553
554 sigdelsetmask(&s->signal, mask);
555 list_for_each_entry_safe(q, n, &s->list, list) {
556 if (q->info.si_signo < SIGRTMIN &&
557 (mask & sigmask(q->info.si_signo))) {
558 list_del_init(&q->list);
559 __sigqueue_free(q);
560 }
561 }
562 return 1;
563}
564
565/*
566 * Bad permissions for sending the signal
567 */
568static int check_kill_permission(int sig, struct siginfo *info,
569 struct task_struct *t)
570{
Oleg Nesterov2e2ba222008-04-30 00:53:01 -0700571 struct pid *sid;
Oleg Nesterov3b5e9e52008-04-30 00:52:42 -0700572 int error;
573
Jesper Juhl7ed20e12005-05-01 08:59:14 -0700574 if (!valid_signal(sig))
Oleg Nesterov3b5e9e52008-04-30 00:52:42 -0700575 return -EINVAL;
576
577 if (info != SEND_SIG_NOINFO && (is_si_special(info) || SI_FROMKERNEL(info)))
578 return 0;
579
580 error = audit_signal_info(sig, t); /* Let audit system see the signal */
581 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 return error;
Amy Griffise54dc242007-03-29 18:01:04 -0400583
Oleg Nesterov2e2ba222008-04-30 00:53:01 -0700584 if ((current->euid ^ t->suid) && (current->euid ^ t->uid) &&
585 (current->uid ^ t->suid) && (current->uid ^ t->uid) &&
586 !capable(CAP_KILL)) {
587 switch (sig) {
588 case SIGCONT:
Oleg Nesterov2e2ba222008-04-30 00:53:01 -0700589 sid = task_session(t);
Oleg Nesterov2e2ba222008-04-30 00:53:01 -0700590 /*
591 * We don't return the error if sid == NULL. The
592 * task was unhashed, the caller must notice this.
593 */
594 if (!sid || sid == task_session(current))
595 break;
596 default:
597 return -EPERM;
598 }
599 }
Steve Grubbc2f0c7c2005-05-06 12:38:39 +0100600
Amy Griffise54dc242007-03-29 18:01:04 -0400601 return security_task_kill(t, info, sig, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602}
603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604/*
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700605 * Handle magic process-wide effects of stop/continue signals. Unlike
606 * the signal actions, these happen immediately at signal-generation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 * time regardless of blocking, ignoring, or handling. This does the
608 * actual continuing for SIGCONT, but not the actual stopping for stop
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700609 * signals. The process stop is done as a signal action for SIG_DFL.
610 *
611 * Returns true if the signal should be actually delivered, otherwise
612 * it should be dropped.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 */
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700614static int prepare_signal(int sig, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615{
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700616 struct signal_struct *signal = p->signal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 struct task_struct *t;
618
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700619 if (unlikely(signal->flags & SIGNAL_GROUP_EXIT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 /*
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700621 * The process is in the middle of dying, nothing to do.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 */
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700623 } else if (sig_kernel_stop(sig)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 /*
625 * This is a stop signal. Remove SIGCONT from all queues.
626 */
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700627 rm_from_queue(sigmask(SIGCONT), &signal->shared_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 t = p;
629 do {
630 rm_from_queue(sigmask(SIGCONT), &t->pending);
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700631 } while_each_thread(p, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 } else if (sig == SIGCONT) {
Oleg Nesterovfc321d22008-04-30 00:52:46 -0700633 unsigned int why;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 /*
635 * Remove all stop signals from all queues,
636 * and wake all threads.
637 */
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700638 rm_from_queue(SIG_KERNEL_STOP_MASK, &signal->shared_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 t = p;
640 do {
641 unsigned int state;
642 rm_from_queue(SIG_KERNEL_STOP_MASK, &t->pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 /*
644 * If there is a handler for SIGCONT, we must make
645 * sure that no thread returns to user mode before
646 * we post the signal, in case it was the only
647 * thread eligible to run the signal handler--then
648 * it must not do anything between resuming and
649 * running the handler. With the TIF_SIGPENDING
650 * flag set, the thread will pause and acquire the
651 * siglock that we hold now and until we've queued
Oleg Nesterovfc321d22008-04-30 00:52:46 -0700652 * the pending signal.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 *
654 * Wake up the stopped thread _after_ setting
655 * TIF_SIGPENDING
656 */
Matthew Wilcoxf021a3c2007-12-06 11:13:16 -0500657 state = __TASK_STOPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 if (sig_user_defined(t, SIGCONT) && !sigismember(&t->blocked, SIGCONT)) {
659 set_tsk_thread_flag(t, TIF_SIGPENDING);
660 state |= TASK_INTERRUPTIBLE;
661 }
662 wake_up_state(t, state);
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700663 } while_each_thread(p, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Oleg Nesterovfc321d22008-04-30 00:52:46 -0700665 /*
666 * Notify the parent with CLD_CONTINUED if we were stopped.
667 *
668 * If we were in the middle of a group stop, we pretend it
669 * was already finished, and then continued. Since SIGCHLD
670 * doesn't queue we report only CLD_STOPPED, as if the next
671 * CLD_CONTINUED was dropped.
672 */
673 why = 0;
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700674 if (signal->flags & SIGNAL_STOP_STOPPED)
Oleg Nesterovfc321d22008-04-30 00:52:46 -0700675 why |= SIGNAL_CLD_CONTINUED;
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700676 else if (signal->group_stop_count)
Oleg Nesterovfc321d22008-04-30 00:52:46 -0700677 why |= SIGNAL_CLD_STOPPED;
678
679 if (why) {
Oleg Nesterov021e1ae2008-04-30 00:53:00 -0700680 /*
681 * The first thread which returns from finish_stop()
682 * will take ->siglock, notice SIGNAL_CLD_MASK, and
683 * notify its parent. See get_signal_to_deliver().
684 */
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700685 signal->flags = why | SIGNAL_STOP_CONTINUED;
686 signal->group_stop_count = 0;
687 signal->group_exit_code = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 } else {
689 /*
690 * We are not stopped, but there could be a stop
691 * signal in the middle of being processed after
692 * being removed from the queue. Clear that too.
693 */
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700694 signal->flags &= ~SIGNAL_STOP_DEQUEUED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 }
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700697
698 return !sig_ignored(p, sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699}
700
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700701/*
702 * Test if P wants to take SIG. After we've checked all threads with this,
703 * it's equivalent to finding no threads not blocking SIG. Any threads not
704 * blocking SIG were ruled out because they are not running and already
705 * have pending signals. Such threads will dequeue from the shared queue
706 * as soon as they're available, so putting the signal on the shared queue
707 * will be equivalent to sending it to one such thread.
708 */
709static inline int wants_signal(int sig, struct task_struct *p)
710{
711 if (sigismember(&p->blocked, sig))
712 return 0;
713 if (p->flags & PF_EXITING)
714 return 0;
715 if (sig == SIGKILL)
716 return 1;
717 if (task_is_stopped_or_traced(p))
718 return 0;
719 return task_curr(p) || !signal_pending(p);
720}
721
Oleg Nesterov5fcd8352008-04-30 00:52:55 -0700722static void complete_signal(int sig, struct task_struct *p, int group)
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700723{
724 struct signal_struct *signal = p->signal;
725 struct task_struct *t;
726
727 /*
728 * Now find a thread we can wake up to take the signal off the queue.
729 *
730 * If the main thread wants the signal, it gets first crack.
731 * Probably the least surprising to the average bear.
732 */
733 if (wants_signal(sig, p))
734 t = p;
Oleg Nesterov5fcd8352008-04-30 00:52:55 -0700735 else if (!group || thread_group_empty(p))
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700736 /*
737 * There is just one thread and it does not need to be woken.
738 * It will dequeue unblocked signals before it runs again.
739 */
740 return;
741 else {
742 /*
743 * Otherwise try to find a suitable thread.
744 */
745 t = signal->curr_target;
746 while (!wants_signal(sig, t)) {
747 t = next_thread(t);
748 if (t == signal->curr_target)
749 /*
750 * No thread needs to be woken.
751 * Any eligible threads will see
752 * the signal in the queue soon.
753 */
754 return;
755 }
756 signal->curr_target = t;
757 }
758
759 /*
760 * Found a killable thread. If the signal will be fatal,
761 * then start taking the whole group down immediately.
762 */
Oleg Nesterovfae5fa42008-04-30 00:53:03 -0700763 if (sig_fatal(p, sig) &&
764 !(signal->flags & (SIGNAL_UNKILLABLE | SIGNAL_GROUP_EXIT)) &&
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700765 !sigismember(&t->real_blocked, sig) &&
Roland McGrath445a91d2008-07-25 19:45:52 -0700766 (sig == SIGKILL ||
767 !tracehook_consider_fatal_signal(t, sig, SIG_DFL))) {
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700768 /*
769 * This signal will be fatal to the whole group.
770 */
771 if (!sig_kernel_coredump(sig)) {
772 /*
773 * Start a group exit and wake everybody up.
774 * This way we don't have other threads
775 * running and doing things after a slower
776 * thread has the fatal signal pending.
777 */
778 signal->flags = SIGNAL_GROUP_EXIT;
779 signal->group_exit_code = sig;
780 signal->group_stop_count = 0;
781 t = p;
782 do {
783 sigaddset(&t->pending.signal, SIGKILL);
784 signal_wake_up(t, 1);
785 } while_each_thread(p, t);
786 return;
787 }
788 }
789
790 /*
791 * The signal is already in the shared-pending queue.
792 * Tell the chosen thread to wake up and dequeue it.
793 */
794 signal_wake_up(t, sig == SIGKILL);
795 return;
796}
797
Pavel Emelyanovaf7fff92008-04-30 00:52:34 -0700798static inline int legacy_queue(struct sigpending *signals, int sig)
799{
800 return (sig < SIGRTMIN) && sigismember(&signals->signal, sig);
801}
802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803static int send_signal(int sig, struct siginfo *info, struct task_struct *t,
Oleg Nesterov2ca35152008-04-30 00:52:54 -0700804 int group)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805{
Oleg Nesterov2ca35152008-04-30 00:52:54 -0700806 struct sigpending *pending;
Oleg Nesterov6e65acb2008-04-30 00:52:50 -0700807 struct sigqueue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Mathieu Desnoyers0a16b602008-07-18 12:16:17 -0400809 trace_sched_signal_send(sig, t);
810
Oleg Nesterov6e65acb2008-04-30 00:52:50 -0700811 assert_spin_locked(&t->sighand->siglock);
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700812 if (!prepare_signal(sig, t))
813 return 0;
Oleg Nesterov2ca35152008-04-30 00:52:54 -0700814
815 pending = group ? &t->signal->shared_pending : &t->pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 /*
Pavel Emelyanov2acb0242008-04-30 00:52:35 -0700817 * Short-circuit ignored signals and support queuing
818 * exactly one non-rt signal, so that we can get more
819 * detailed information about the cause of the signal.
820 */
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700821 if (legacy_queue(pending, sig))
Pavel Emelyanov2acb0242008-04-30 00:52:35 -0700822 return 0;
Davide Libenzifba2afa2007-05-10 22:23:13 -0700823 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 * fast-pathed signals for kernel-internal things like SIGSTOP
825 * or SIGKILL.
826 */
Oleg Nesterovb67a1b92005-10-30 15:03:44 -0800827 if (info == SEND_SIG_FORCED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 goto out_set;
829
830 /* Real-time signals must be queued if sent by sigqueue, or
831 some other real-time mechanism. It is implementation
832 defined whether kill() does so. We attempt to do so, on
833 the principle of least surprise, but since kill is not
834 allowed to fail with EAGAIN when low on memory we just
835 make sure at least one signal gets delivered and don't
836 pass on the info struct. */
837
838 q = __sigqueue_alloc(t, GFP_ATOMIC, (sig < SIGRTMIN &&
Oleg Nesterov621d3122005-10-30 15:03:45 -0800839 (is_si_special(info) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 info->si_code >= 0)));
841 if (q) {
Oleg Nesterov2ca35152008-04-30 00:52:54 -0700842 list_add_tail(&q->list, &pending->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 switch ((unsigned long) info) {
Oleg Nesterovb67a1b92005-10-30 15:03:44 -0800844 case (unsigned long) SEND_SIG_NOINFO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 q->info.si_signo = sig;
846 q->info.si_errno = 0;
847 q->info.si_code = SI_USER;
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700848 q->info.si_pid = task_pid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 q->info.si_uid = current->uid;
850 break;
Oleg Nesterovb67a1b92005-10-30 15:03:44 -0800851 case (unsigned long) SEND_SIG_PRIV:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 q->info.si_signo = sig;
853 q->info.si_errno = 0;
854 q->info.si_code = SI_KERNEL;
855 q->info.si_pid = 0;
856 q->info.si_uid = 0;
857 break;
858 default:
859 copy_siginfo(&q->info, info);
860 break;
861 }
Oleg Nesterov621d3122005-10-30 15:03:45 -0800862 } else if (!is_si_special(info)) {
863 if (sig >= SIGRTMIN && info->si_code != SI_USER)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 /*
865 * Queue overflow, abort. We may abort if the signal was rt
866 * and sent by user using something other than kill().
867 */
868 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 }
870
871out_set:
Oleg Nesterov53c30332008-04-30 00:53:00 -0700872 signalfd_notify(t, sig);
Oleg Nesterov2ca35152008-04-30 00:52:54 -0700873 sigaddset(&pending->signal, sig);
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -0700874 complete_signal(sig, t, group);
875 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876}
877
Ingo Molnar45807a12007-07-15 23:40:10 -0700878int print_fatal_signals;
879
880static void print_fatal_signal(struct pt_regs *regs, int signr)
881{
882 printk("%s/%d: potentially unexpected fatal signal %d.\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -0700883 current->comm, task_pid_nr(current), signr);
Ingo Molnar45807a12007-07-15 23:40:10 -0700884
Al Viroca5cd872007-10-29 04:31:16 +0000885#if defined(__i386__) && !defined(__arch_um__)
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100886 printk("code at %08lx: ", regs->ip);
Ingo Molnar45807a12007-07-15 23:40:10 -0700887 {
888 int i;
889 for (i = 0; i < 16; i++) {
890 unsigned char insn;
891
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100892 __get_user(insn, (unsigned char *)(regs->ip + i));
Ingo Molnar45807a12007-07-15 23:40:10 -0700893 printk("%02x ", insn);
894 }
895 }
896#endif
897 printk("\n");
898 show_regs(regs);
899}
900
901static int __init setup_print_fatal_signals(char *str)
902{
903 get_option (&str, &print_fatal_signals);
904
905 return 1;
906}
907
908__setup("print-fatal-signals=", setup_print_fatal_signals);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -0700910int
911__group_send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
912{
913 return send_signal(sig, info, p, 1);
914}
915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916static int
917specific_send_sig_info(int sig, struct siginfo *info, struct task_struct *t)
918{
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -0700919 return send_signal(sig, info, t, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920}
921
922/*
923 * Force a signal that the process can't ignore: if necessary
924 * we unblock the signal and change any SIG_IGN to SIG_DFL.
Linus Torvaldsae74c3b2006-08-02 20:17:49 -0700925 *
926 * Note: If we unblock the signal, we always reset it to SIG_DFL,
927 * since we do not want to have a signal handler that was blocked
928 * be invoked when user space had explicitly blocked it.
929 *
Oleg Nesterov80fe7282008-04-30 00:53:05 -0700930 * We don't want to have recursive SIGSEGV's etc, for example,
931 * that is why we also clear SIGNAL_UNKILLABLE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933int
934force_sig_info(int sig, struct siginfo *info, struct task_struct *t)
935{
936 unsigned long int flags;
Linus Torvaldsae74c3b2006-08-02 20:17:49 -0700937 int ret, blocked, ignored;
938 struct k_sigaction *action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
940 spin_lock_irqsave(&t->sighand->siglock, flags);
Linus Torvaldsae74c3b2006-08-02 20:17:49 -0700941 action = &t->sighand->action[sig-1];
942 ignored = action->sa.sa_handler == SIG_IGN;
943 blocked = sigismember(&t->blocked, sig);
944 if (blocked || ignored) {
945 action->sa.sa_handler = SIG_DFL;
946 if (blocked) {
947 sigdelset(&t->blocked, sig);
Roland McGrath7bb44ad2007-05-23 13:57:44 -0700948 recalc_sigpending_and_wake(t);
Linus Torvaldsae74c3b2006-08-02 20:17:49 -0700949 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 }
Oleg Nesterov80fe7282008-04-30 00:53:05 -0700951 if (action->sa.sa_handler == SIG_DFL)
952 t->signal->flags &= ~SIGNAL_UNKILLABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 ret = specific_send_sig_info(sig, info, t);
954 spin_unlock_irqrestore(&t->sighand->siglock, flags);
955
956 return ret;
957}
958
959void
960force_sig_specific(int sig, struct task_struct *t)
961{
Paul E. McKenneyb0423a02005-10-30 15:03:46 -0800962 force_sig_info(sig, SEND_SIG_FORCED, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963}
964
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965/*
966 * Nuke all other threads in the group.
967 */
968void zap_other_threads(struct task_struct *p)
969{
970 struct task_struct *t;
971
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 p->signal->group_stop_count = 0;
973
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 for (t = next_thread(p); t != p; t = next_thread(t)) {
975 /*
976 * Don't bother with already dead threads
977 */
978 if (t->exit_state)
979 continue;
980
Andrea Arcangeli30e0fca62005-10-30 15:02:38 -0800981 /* SIGKILL will be handled before any pending SIGSTOP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 sigaddset(&t->pending.signal, SIGKILL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 signal_wake_up(t, 1);
984 }
985}
986
Harvey Harrisonb5606c22008-02-13 15:03:16 -0800987int __fatal_signal_pending(struct task_struct *tsk)
Matthew Wilcoxf776d122007-12-06 11:15:50 -0500988{
989 return sigismember(&tsk->pending.signal, SIGKILL);
990}
Trond Myklebust13f09b92008-01-31 20:40:29 -0500991EXPORT_SYMBOL(__fatal_signal_pending);
Matthew Wilcoxf776d122007-12-06 11:15:50 -0500992
Oleg Nesterovf63ee722006-03-28 16:11:13 -0800993struct sighand_struct *lock_task_sighand(struct task_struct *tsk, unsigned long *flags)
994{
995 struct sighand_struct *sighand;
996
Oleg Nesterov1406f2d2008-04-30 00:52:37 -0700997 rcu_read_lock();
Oleg Nesterovf63ee722006-03-28 16:11:13 -0800998 for (;;) {
999 sighand = rcu_dereference(tsk->sighand);
1000 if (unlikely(sighand == NULL))
1001 break;
1002
1003 spin_lock_irqsave(&sighand->siglock, *flags);
1004 if (likely(sighand == tsk->sighand))
1005 break;
1006 spin_unlock_irqrestore(&sighand->siglock, *flags);
1007 }
Oleg Nesterov1406f2d2008-04-30 00:52:37 -07001008 rcu_read_unlock();
Oleg Nesterovf63ee722006-03-28 16:11:13 -08001009
1010 return sighand;
1011}
1012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013int group_send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
1014{
1015 unsigned long flags;
1016 int ret;
1017
1018 ret = check_kill_permission(sig, info, p);
Oleg Nesterovf63ee722006-03-28 16:11:13 -08001019
1020 if (!ret && sig) {
1021 ret = -ESRCH;
1022 if (lock_task_sighand(p, &flags)) {
1023 ret = __group_send_sig_info(sig, info, p);
1024 unlock_task_sighand(p, &flags);
Ingo Molnare56d0902006-01-08 01:01:37 -08001025 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 }
1027
1028 return ret;
1029}
1030
1031/*
Pavel Emelyanov146a5052008-02-08 04:19:22 -08001032 * __kill_pgrp_info() sends a signal to a process group: this is what the tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 * control characters do (^C, ^Z etc)
1034 */
1035
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001036int __kill_pgrp_info(int sig, struct siginfo *info, struct pid *pgrp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037{
1038 struct task_struct *p = NULL;
1039 int retval, success;
1040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 success = 0;
1042 retval = -ESRCH;
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001043 do_each_pid_task(pgrp, PIDTYPE_PGID, p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 int err = group_send_sig_info(sig, info, p);
1045 success |= !err;
1046 retval = err;
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001047 } while_each_pid_task(pgrp, PIDTYPE_PGID, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 return success ? 0 : retval;
1049}
1050
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001051int kill_pid_info(int sig, struct siginfo *info, struct pid *pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052{
Oleg Nesterovd36174b2008-02-08 04:19:18 -08001053 int error = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 struct task_struct *p;
1055
Ingo Molnare56d0902006-01-08 01:01:37 -08001056 rcu_read_lock();
Oleg Nesterovd36174b2008-02-08 04:19:18 -08001057retry:
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001058 p = pid_task(pid, PIDTYPE_PID);
Oleg Nesterovd36174b2008-02-08 04:19:18 -08001059 if (p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 error = group_send_sig_info(sig, info, p);
Oleg Nesterovd36174b2008-02-08 04:19:18 -08001061 if (unlikely(error == -ESRCH))
1062 /*
1063 * The task was unhashed in between, try again.
1064 * If it is dead, pid_task() will return NULL,
1065 * if we race with de_thread() it will find the
1066 * new leader.
1067 */
1068 goto retry;
1069 }
Ingo Molnare56d0902006-01-08 01:01:37 -08001070 rcu_read_unlock();
Oleg Nesterov6ca25b52008-04-30 00:52:45 -07001071
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 return error;
1073}
1074
Matthew Wilcoxc3de4b32007-02-09 08:11:47 -07001075int
1076kill_proc_info(int sig, struct siginfo *info, pid_t pid)
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001077{
1078 int error;
1079 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001080 error = kill_pid_info(sig, info, find_vpid(pid));
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001081 rcu_read_unlock();
1082 return error;
1083}
1084
Eric W. Biederman2425c082006-10-02 02:17:28 -07001085/* like kill_pid_info(), but doesn't use uid/euid of "current" */
1086int kill_pid_info_as_uid(int sig, struct siginfo *info, struct pid *pid,
David Quigley8f95dc52006-06-30 01:55:47 -07001087 uid_t uid, uid_t euid, u32 secid)
Harald Welte46113832005-10-10 19:44:29 +02001088{
1089 int ret = -EINVAL;
1090 struct task_struct *p;
1091
1092 if (!valid_signal(sig))
1093 return ret;
1094
1095 read_lock(&tasklist_lock);
Eric W. Biederman2425c082006-10-02 02:17:28 -07001096 p = pid_task(pid, PIDTYPE_PID);
Harald Welte46113832005-10-10 19:44:29 +02001097 if (!p) {
1098 ret = -ESRCH;
1099 goto out_unlock;
1100 }
Oleg Nesterov0811af22006-01-08 01:03:09 -08001101 if ((info == SEND_SIG_NOINFO || (!is_si_special(info) && SI_FROMUSER(info)))
Harald Welte46113832005-10-10 19:44:29 +02001102 && (euid != p->suid) && (euid != p->uid)
1103 && (uid != p->suid) && (uid != p->uid)) {
1104 ret = -EPERM;
1105 goto out_unlock;
1106 }
David Quigley8f95dc52006-06-30 01:55:47 -07001107 ret = security_task_kill(p, info, sig, secid);
1108 if (ret)
1109 goto out_unlock;
Harald Welte46113832005-10-10 19:44:29 +02001110 if (sig && p->sighand) {
1111 unsigned long flags;
1112 spin_lock_irqsave(&p->sighand->siglock, flags);
1113 ret = __group_send_sig_info(sig, info, p);
1114 spin_unlock_irqrestore(&p->sighand->siglock, flags);
1115 }
1116out_unlock:
1117 read_unlock(&tasklist_lock);
1118 return ret;
1119}
Eric W. Biederman2425c082006-10-02 02:17:28 -07001120EXPORT_SYMBOL_GPL(kill_pid_info_as_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
1122/*
1123 * kill_something_info() interprets pid in interesting ways just like kill(2).
1124 *
1125 * POSIX specifies that kill(-1,sig) is unspecified, but what we have
1126 * is probably wrong. Should make it like BSD or SYSV.
1127 */
1128
Gustavo Fernando Padovanbc64efd2008-07-25 01:47:33 -07001129static int kill_something_info(int sig, struct siginfo *info, pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130{
Eric W. Biederman8d42db182007-02-12 00:52:55 -08001131 int ret;
Pavel Emelyanovd5df7632008-02-08 04:19:22 -08001132
1133 if (pid > 0) {
1134 rcu_read_lock();
1135 ret = kill_pid_info(sig, info, find_vpid(pid));
1136 rcu_read_unlock();
1137 return ret;
1138 }
1139
1140 read_lock(&tasklist_lock);
1141 if (pid != -1) {
1142 ret = __kill_pgrp_info(sig, info,
1143 pid ? find_vpid(-pid) : task_pgrp(current));
1144 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 int retval = 0, count = 0;
1146 struct task_struct * p;
1147
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 for_each_process(p) {
Sukadev Bhattiprolud25141a2008-10-29 14:01:11 -07001149 if (task_pid_vnr(p) > 1 &&
1150 !same_thread_group(p, current)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 int err = group_send_sig_info(sig, info, p);
1152 ++count;
1153 if (err != -EPERM)
1154 retval = err;
1155 }
1156 }
Eric W. Biederman8d42db182007-02-12 00:52:55 -08001157 ret = count ? retval : -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 }
Pavel Emelyanovd5df7632008-02-08 04:19:22 -08001159 read_unlock(&tasklist_lock);
1160
Eric W. Biederman8d42db182007-02-12 00:52:55 -08001161 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162}
1163
1164/*
1165 * These are for backward compatibility with the rest of the kernel source.
1166 */
1167
1168/*
Oleg Nesterov08d2c302008-04-30 00:52:51 -07001169 * The caller must ensure the task can't exit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 */
1171int
1172send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
1173{
1174 int ret;
1175 unsigned long flags;
1176
1177 /*
1178 * Make sure legacy kernel users don't send in bad values
1179 * (normal paths check this in check_kill_permission).
1180 */
Jesper Juhl7ed20e12005-05-01 08:59:14 -07001181 if (!valid_signal(sig))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 return -EINVAL;
1183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 spin_lock_irqsave(&p->sighand->siglock, flags);
1185 ret = specific_send_sig_info(sig, info, p);
1186 spin_unlock_irqrestore(&p->sighand->siglock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 return ret;
1188}
1189
Oleg Nesterovb67a1b92005-10-30 15:03:44 -08001190#define __si_special(priv) \
1191 ((priv) ? SEND_SIG_PRIV : SEND_SIG_NOINFO)
1192
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193int
1194send_sig(int sig, struct task_struct *p, int priv)
1195{
Oleg Nesterovb67a1b92005-10-30 15:03:44 -08001196 return send_sig_info(sig, __si_special(priv), p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197}
1198
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199void
1200force_sig(int sig, struct task_struct *p)
1201{
Oleg Nesterovb67a1b92005-10-30 15:03:44 -08001202 force_sig_info(sig, SEND_SIG_PRIV, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203}
1204
1205/*
1206 * When things go south during signal handling, we
1207 * will force a SIGSEGV. And if the signal that caused
1208 * the problem was already a SIGSEGV, we'll want to
1209 * make sure we don't even try to deliver the signal..
1210 */
1211int
1212force_sigsegv(int sig, struct task_struct *p)
1213{
1214 if (sig == SIGSEGV) {
1215 unsigned long flags;
1216 spin_lock_irqsave(&p->sighand->siglock, flags);
1217 p->sighand->action[sig - 1].sa.sa_handler = SIG_DFL;
1218 spin_unlock_irqrestore(&p->sighand->siglock, flags);
1219 }
1220 force_sig(SIGSEGV, p);
1221 return 0;
1222}
1223
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001224int kill_pgrp(struct pid *pid, int sig, int priv)
1225{
Pavel Emelyanov146a5052008-02-08 04:19:22 -08001226 int ret;
1227
1228 read_lock(&tasklist_lock);
1229 ret = __kill_pgrp_info(sig, __si_special(priv), pid);
1230 read_unlock(&tasklist_lock);
1231
1232 return ret;
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001233}
1234EXPORT_SYMBOL(kill_pgrp);
1235
1236int kill_pid(struct pid *pid, int sig, int priv)
1237{
1238 return kill_pid_info(sig, __si_special(priv), pid);
1239}
1240EXPORT_SYMBOL(kill_pid);
1241
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242/*
1243 * These functions support sending signals using preallocated sigqueue
1244 * structures. This is needed "because realtime applications cannot
1245 * afford to lose notifications of asynchronous events, like timer
1246 * expirations or I/O completions". In the case of Posix Timers
1247 * we allocate the sigqueue structure from the timer_create. If this
1248 * allocation fails we are able to report the failure to the application
1249 * with an EAGAIN error.
1250 */
1251
1252struct sigqueue *sigqueue_alloc(void)
1253{
1254 struct sigqueue *q;
1255
1256 if ((q = __sigqueue_alloc(current, GFP_KERNEL, 0)))
1257 q->flags |= SIGQUEUE_PREALLOC;
1258 return(q);
1259}
1260
1261void sigqueue_free(struct sigqueue *q)
1262{
1263 unsigned long flags;
Oleg Nesterov60187d22007-08-30 23:56:35 -07001264 spinlock_t *lock = &current->sighand->siglock;
1265
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 BUG_ON(!(q->flags & SIGQUEUE_PREALLOC));
1267 /*
Oleg Nesterovc8e85b4f2008-05-26 20:55:42 +04001268 * We must hold ->siglock while testing q->list
1269 * to serialize with collect_signal() or with
Oleg Nesterovda7978b2008-05-23 13:04:41 -07001270 * __exit_signal()->flush_sigqueue().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 */
Oleg Nesterov60187d22007-08-30 23:56:35 -07001272 spin_lock_irqsave(lock, flags);
Oleg Nesterovc8e85b4f2008-05-26 20:55:42 +04001273 q->flags &= ~SIGQUEUE_PREALLOC;
1274 /*
1275 * If it is queued it will be freed when dequeued,
1276 * like the "regular" sigqueue.
1277 */
Oleg Nesterov60187d22007-08-30 23:56:35 -07001278 if (!list_empty(&q->list))
Oleg Nesterovc8e85b4f2008-05-26 20:55:42 +04001279 q = NULL;
Oleg Nesterov60187d22007-08-30 23:56:35 -07001280 spin_unlock_irqrestore(lock, flags);
1281
Oleg Nesterovc8e85b4f2008-05-26 20:55:42 +04001282 if (q)
1283 __sigqueue_free(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284}
1285
Oleg Nesterovac5c2152008-04-30 00:52:57 -07001286int send_sigqueue(struct sigqueue *q, struct task_struct *t, int group)
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001287{
Oleg Nesterove62e6652008-04-30 00:52:56 -07001288 int sig = q->info.si_signo;
Oleg Nesterov2ca35152008-04-30 00:52:54 -07001289 struct sigpending *pending;
Oleg Nesterove62e6652008-04-30 00:52:56 -07001290 unsigned long flags;
1291 int ret;
Oleg Nesterov2ca35152008-04-30 00:52:54 -07001292
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -07001293 BUG_ON(!(q->flags & SIGQUEUE_PREALLOC));
Oleg Nesterove62e6652008-04-30 00:52:56 -07001294
1295 ret = -1;
1296 if (!likely(lock_task_sighand(t, &flags)))
1297 goto ret;
1298
Oleg Nesterov7e695a52008-04-30 00:52:59 -07001299 ret = 1; /* the signal is ignored */
1300 if (!prepare_signal(sig, t))
Oleg Nesterove62e6652008-04-30 00:52:56 -07001301 goto out;
1302
1303 ret = 0;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001304 if (unlikely(!list_empty(&q->list))) {
1305 /*
1306 * If an SI_TIMER entry is already queue just increment
1307 * the overrun count.
1308 */
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001309 BUG_ON(q->info.si_code != SI_TIMER);
1310 q->info.si_overrun++;
Oleg Nesterove62e6652008-04-30 00:52:56 -07001311 goto out;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001312 }
Oleg Nesterovba661292008-07-23 20:52:05 +04001313 q->info.si_overrun = 0;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001314
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001315 signalfd_notify(t, sig);
Oleg Nesterov2ca35152008-04-30 00:52:54 -07001316 pending = group ? &t->signal->shared_pending : &t->pending;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001317 list_add_tail(&q->list, &pending->list);
1318 sigaddset(&pending->signal, sig);
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -07001319 complete_signal(sig, t, group);
Oleg Nesterove62e6652008-04-30 00:52:56 -07001320out:
1321 unlock_task_sighand(t, &flags);
1322ret:
1323 return ret;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001324}
1325
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326/*
1327 * Wake up any threads in the parent blocked in wait* syscalls.
1328 */
1329static inline void __wake_up_parent(struct task_struct *p,
1330 struct task_struct *parent)
1331{
1332 wake_up_interruptible_sync(&parent->signal->wait_chldexit);
1333}
1334
1335/*
1336 * Let a parent know about the death of a child.
1337 * For a stopped/continued status change, use do_notify_parent_cldstop instead.
Roland McGrath2b2a1ff2008-07-25 19:45:54 -07001338 *
1339 * Returns -1 if our parent ignored us and so we've switched to
1340 * self-reaping, or else @sig.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 */
Roland McGrath2b2a1ff2008-07-25 19:45:54 -07001342int do_notify_parent(struct task_struct *tsk, int sig)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343{
1344 struct siginfo info;
1345 unsigned long flags;
1346 struct sighand_struct *psig;
Frank Mayharf06febc2008-09-12 09:54:39 -07001347 struct task_cputime cputime;
Roland McGrath1b046242008-08-19 20:37:07 -07001348 int ret = sig;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
1350 BUG_ON(sig == -1);
1351
1352 /* do_notify_parent_cldstop should have been called instead. */
Matthew Wilcoxe1abb392007-12-06 11:07:35 -05001353 BUG_ON(task_is_stopped_or_traced(tsk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
1355 BUG_ON(!tsk->ptrace &&
1356 (tsk->group_leader != tsk || !thread_group_empty(tsk)));
1357
1358 info.si_signo = sig;
1359 info.si_errno = 0;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001360 /*
1361 * we are under tasklist_lock here so our parent is tied to
1362 * us and cannot exit and release its namespace.
1363 *
1364 * the only it can is to switch its nsproxy with sys_unshare,
1365 * bu uncharing pid namespaces is not allowed, so we'll always
1366 * see relevant namespace
1367 *
1368 * write_lock() currently calls preempt_disable() which is the
1369 * same as rcu_read_lock(), but according to Oleg, this is not
1370 * correct to rely on this
1371 */
1372 rcu_read_lock();
1373 info.si_pid = task_pid_nr_ns(tsk, tsk->parent->nsproxy->pid_ns);
1374 rcu_read_unlock();
1375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 info.si_uid = tsk->uid;
1377
Frank Mayharf06febc2008-09-12 09:54:39 -07001378 thread_group_cputime(tsk, &cputime);
1379 info.si_utime = cputime_to_jiffies(cputime.utime);
1380 info.si_stime = cputime_to_jiffies(cputime.stime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
1382 info.si_status = tsk->exit_code & 0x7f;
1383 if (tsk->exit_code & 0x80)
1384 info.si_code = CLD_DUMPED;
1385 else if (tsk->exit_code & 0x7f)
1386 info.si_code = CLD_KILLED;
1387 else {
1388 info.si_code = CLD_EXITED;
1389 info.si_status = tsk->exit_code >> 8;
1390 }
1391
1392 psig = tsk->parent->sighand;
1393 spin_lock_irqsave(&psig->siglock, flags);
Oleg Nesterov7ed01752005-11-10 17:22:18 +03001394 if (!tsk->ptrace && sig == SIGCHLD &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 (psig->action[SIGCHLD-1].sa.sa_handler == SIG_IGN ||
1396 (psig->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDWAIT))) {
1397 /*
1398 * We are exiting and our parent doesn't care. POSIX.1
1399 * defines special semantics for setting SIGCHLD to SIG_IGN
1400 * or setting the SA_NOCLDWAIT flag: we should be reaped
1401 * automatically and not left for our parent's wait4 call.
1402 * Rather than having the parent do it as a magic kind of
1403 * signal handler, we just set this to tell do_exit that we
1404 * can be cleaned up without becoming a zombie. Note that
1405 * we still call __wake_up_parent in this case, because a
1406 * blocked sys_wait4 might now return -ECHILD.
1407 *
1408 * Whether we send SIGCHLD or not for SA_NOCLDWAIT
1409 * is implementation-defined: we do (if you don't want
1410 * it, just use SIG_IGN instead).
1411 */
Roland McGrath1b046242008-08-19 20:37:07 -07001412 ret = tsk->exit_signal = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 if (psig->action[SIGCHLD-1].sa.sa_handler == SIG_IGN)
Roland McGrath2b2a1ff2008-07-25 19:45:54 -07001414 sig = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 }
Jesper Juhl7ed20e12005-05-01 08:59:14 -07001416 if (valid_signal(sig) && sig > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 __group_send_sig_info(sig, &info, tsk->parent);
1418 __wake_up_parent(tsk, tsk->parent);
1419 spin_unlock_irqrestore(&psig->siglock, flags);
Roland McGrath2b2a1ff2008-07-25 19:45:54 -07001420
Roland McGrath1b046242008-08-19 20:37:07 -07001421 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422}
1423
Oleg Nesterova1d5e212006-03-28 16:11:29 -08001424static void do_notify_parent_cldstop(struct task_struct *tsk, int why)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425{
1426 struct siginfo info;
1427 unsigned long flags;
Oleg Nesterovbc505a42005-09-06 15:17:32 -07001428 struct task_struct *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 struct sighand_struct *sighand;
1430
Oleg Nesterova1d5e212006-03-28 16:11:29 -08001431 if (tsk->ptrace & PT_PTRACED)
Oleg Nesterovbc505a42005-09-06 15:17:32 -07001432 parent = tsk->parent;
1433 else {
1434 tsk = tsk->group_leader;
1435 parent = tsk->real_parent;
1436 }
1437
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 info.si_signo = SIGCHLD;
1439 info.si_errno = 0;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001440 /*
1441 * see comment in do_notify_parent() abot the following 3 lines
1442 */
1443 rcu_read_lock();
1444 info.si_pid = task_pid_nr_ns(tsk, tsk->parent->nsproxy->pid_ns);
1445 rcu_read_unlock();
1446
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 info.si_uid = tsk->uid;
1448
Michael Kerriskd8878ba2008-07-25 01:47:32 -07001449 info.si_utime = cputime_to_clock_t(tsk->utime);
1450 info.si_stime = cputime_to_clock_t(tsk->stime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
1452 info.si_code = why;
1453 switch (why) {
1454 case CLD_CONTINUED:
1455 info.si_status = SIGCONT;
1456 break;
1457 case CLD_STOPPED:
1458 info.si_status = tsk->signal->group_exit_code & 0x7f;
1459 break;
1460 case CLD_TRAPPED:
1461 info.si_status = tsk->exit_code & 0x7f;
1462 break;
1463 default:
1464 BUG();
1465 }
1466
1467 sighand = parent->sighand;
1468 spin_lock_irqsave(&sighand->siglock, flags);
1469 if (sighand->action[SIGCHLD-1].sa.sa_handler != SIG_IGN &&
1470 !(sighand->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDSTOP))
1471 __group_send_sig_info(SIGCHLD, &info, parent);
1472 /*
1473 * Even if SIGCHLD is not generated, we must wake up wait4 calls.
1474 */
1475 __wake_up_parent(tsk, parent);
1476 spin_unlock_irqrestore(&sighand->siglock, flags);
1477}
1478
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001479static inline int may_ptrace_stop(void)
1480{
1481 if (!likely(current->ptrace & PT_PTRACED))
1482 return 0;
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001483 /*
1484 * Are we in the middle of do_coredump?
1485 * If so and our tracer is also part of the coredump stopping
1486 * is a deadlock situation, and pointless because our tracer
1487 * is dead so don't allow us to stop.
1488 * If SIGKILL was already sent before the caller unlocked
Oleg Nesterov999d9fc2008-07-25 01:47:41 -07001489 * ->siglock we must see ->core_state != NULL. Otherwise it
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001490 * is safe to enter schedule().
1491 */
Oleg Nesterov999d9fc2008-07-25 01:47:41 -07001492 if (unlikely(current->mm->core_state) &&
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001493 unlikely(current->mm == current->parent->mm))
1494 return 0;
1495
1496 return 1;
1497}
1498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499/*
Roland McGrath1a669c22008-02-06 01:37:37 -08001500 * Return nonzero if there is a SIGKILL that should be waking us up.
1501 * Called with the siglock held.
1502 */
1503static int sigkill_pending(struct task_struct *tsk)
1504{
Oleg Nesterov3d749b92008-07-25 01:47:37 -07001505 return sigismember(&tsk->pending.signal, SIGKILL) ||
1506 sigismember(&tsk->signal->shared_pending.signal, SIGKILL);
Roland McGrath1a669c22008-02-06 01:37:37 -08001507}
1508
1509/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 * This must be called with current->sighand->siglock held.
1511 *
1512 * This should be the path for all ptrace stops.
1513 * We always set current->last_siginfo while stopped here.
1514 * That makes it a way to test a stopped process for
1515 * being ptrace-stopped vs being job-control-stopped.
1516 *
Oleg Nesterov20686a32008-02-08 04:19:03 -08001517 * If we actually decide not to stop at all because the tracer
1518 * is gone, we keep current->exit_code unless clear_code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 */
Oleg Nesterov20686a32008-02-08 04:19:03 -08001520static void ptrace_stop(int exit_code, int clear_code, siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521{
Roland McGrath1a669c22008-02-06 01:37:37 -08001522 if (arch_ptrace_stop_needed(exit_code, info)) {
1523 /*
1524 * The arch code has something special to do before a
1525 * ptrace stop. This is allowed to block, e.g. for faults
1526 * on user stack pages. We can't keep the siglock while
1527 * calling arch_ptrace_stop, so we must release it now.
1528 * To preserve proper semantics, we must do this before
1529 * any signal bookkeeping like checking group_stop_count.
1530 * Meanwhile, a SIGKILL could come in before we retake the
1531 * siglock. That must prevent us from sleeping in TASK_TRACED.
1532 * So after regaining the lock, we must check for SIGKILL.
1533 */
1534 spin_unlock_irq(&current->sighand->siglock);
1535 arch_ptrace_stop(exit_code, info);
1536 spin_lock_irq(&current->sighand->siglock);
Oleg Nesterov3d749b92008-07-25 01:47:37 -07001537 if (sigkill_pending(current))
1538 return;
Roland McGrath1a669c22008-02-06 01:37:37 -08001539 }
1540
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 /*
1542 * If there is a group stop in progress,
1543 * we must participate in the bookkeeping.
1544 */
1545 if (current->signal->group_stop_count > 0)
1546 --current->signal->group_stop_count;
1547
1548 current->last_siginfo = info;
1549 current->exit_code = exit_code;
1550
1551 /* Let the debugger run. */
Oleg Nesterovd9ae90a2008-02-06 01:36:13 -08001552 __set_current_state(TASK_TRACED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 spin_unlock_irq(&current->sighand->siglock);
1554 read_lock(&tasklist_lock);
Oleg Nesterov3d749b92008-07-25 01:47:37 -07001555 if (may_ptrace_stop()) {
Oleg Nesterova1d5e212006-03-28 16:11:29 -08001556 do_notify_parent_cldstop(current, CLD_TRAPPED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 read_unlock(&tasklist_lock);
1558 schedule();
1559 } else {
1560 /*
1561 * By the time we got the lock, our tracer went away.
Oleg Nesterov6405f7f2008-02-08 04:19:00 -08001562 * Don't drop the lock yet, another tracer may come.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 */
Oleg Nesterov6405f7f2008-02-08 04:19:00 -08001564 __set_current_state(TASK_RUNNING);
Oleg Nesterov20686a32008-02-08 04:19:03 -08001565 if (clear_code)
1566 current->exit_code = 0;
Oleg Nesterov6405f7f2008-02-08 04:19:00 -08001567 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 }
1569
1570 /*
Roland McGrath13b1c3d2008-03-03 20:22:05 -08001571 * While in TASK_TRACED, we were considered "frozen enough".
1572 * Now that we woke up, it's crucial if we're supposed to be
1573 * frozen that we freeze now before running anything substantial.
1574 */
1575 try_to_freeze();
1576
1577 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 * We are back. Now reacquire the siglock before touching
1579 * last_siginfo, so that we are sure to have synchronized with
1580 * any signal-sending on another CPU that wants to examine it.
1581 */
1582 spin_lock_irq(&current->sighand->siglock);
1583 current->last_siginfo = NULL;
1584
1585 /*
1586 * Queued signals ignored us while we were stopped for tracing.
1587 * So check for any that we should take before resuming user mode.
Roland McGrathb74d0de2007-06-06 03:59:00 -07001588 * This sets TIF_SIGPENDING, but never clears it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 */
Roland McGrathb74d0de2007-06-06 03:59:00 -07001590 recalc_sigpending_tsk(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591}
1592
1593void ptrace_notify(int exit_code)
1594{
1595 siginfo_t info;
1596
1597 BUG_ON((exit_code & (0x7f | ~0xffff)) != SIGTRAP);
1598
1599 memset(&info, 0, sizeof info);
1600 info.si_signo = SIGTRAP;
1601 info.si_code = exit_code;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001602 info.si_pid = task_pid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 info.si_uid = current->uid;
1604
1605 /* Let the debugger run. */
1606 spin_lock_irq(&current->sighand->siglock);
Oleg Nesterov20686a32008-02-08 04:19:03 -08001607 ptrace_stop(exit_code, 1, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 spin_unlock_irq(&current->sighand->siglock);
1609}
1610
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611static void
1612finish_stop(int stop_count)
1613{
1614 /*
1615 * If there are no other threads in the group, or if there is
1616 * a group stop in progress and we are the last to stop,
1617 * report to the parent. When ptraced, every thread reports itself.
1618 */
Roland McGrathfa00b802008-07-25 19:45:54 -07001619 if (tracehook_notify_jctl(stop_count == 0, CLD_STOPPED)) {
Oleg Nesterova1d5e212006-03-28 16:11:29 -08001620 read_lock(&tasklist_lock);
1621 do_notify_parent_cldstop(current, CLD_STOPPED);
1622 read_unlock(&tasklist_lock);
1623 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
Rafael J. Wysocki3df494a2006-12-13 00:34:28 -08001625 do {
1626 schedule();
1627 } while (try_to_freeze());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 /*
1629 * Now we don't run again until continued.
1630 */
1631 current->exit_code = 0;
1632}
1633
1634/*
1635 * This performs the stopping for SIGSTOP and other stop signals.
1636 * We have to stop all threads in the thread group.
1637 * Returns nonzero if we've actually stopped and released the siglock.
1638 * Returns zero if we didn't stop and still hold the siglock.
1639 */
Oleg Nesterova122b342006-03-28 16:11:22 -08001640static int do_signal_stop(int signr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641{
1642 struct signal_struct *sig = current->signal;
Oleg Nesterovdac27f42006-03-28 16:11:28 -08001643 int stop_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 if (sig->group_stop_count > 0) {
1646 /*
1647 * There is a group stop in progress. We don't need to
1648 * start another one.
1649 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 stop_count = --sig->group_stop_count;
Oleg Nesterovdac27f42006-03-28 16:11:28 -08001651 } else {
Oleg Nesterovf558b7e2008-02-04 22:27:24 -08001652 struct task_struct *t;
1653
Oleg Nesterov2b201a92008-07-25 01:47:31 -07001654 if (!likely(sig->flags & SIGNAL_STOP_DEQUEUED) ||
Oleg Nesterov573cf9a2008-04-30 00:52:36 -07001655 unlikely(signal_group_exit(sig)))
Oleg Nesterovf558b7e2008-02-04 22:27:24 -08001656 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 * There is no group stop already in progress.
Oleg Nesterova122b342006-03-28 16:11:22 -08001659 * We must initiate one now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 */
Oleg Nesterova122b342006-03-28 16:11:22 -08001661 sig->group_exit_code = signr;
1662
1663 stop_count = 0;
1664 for (t = next_thread(current); t != current; t = next_thread(t))
1665 /*
1666 * Setting state to TASK_STOPPED for a group
1667 * stop is always done with the siglock held,
1668 * so this check has no races.
1669 */
Oleg Nesterovd12619b2008-02-08 04:19:12 -08001670 if (!(t->flags & PF_EXITING) &&
Matthew Wilcoxe1abb392007-12-06 11:07:35 -05001671 !task_is_stopped_or_traced(t)) {
Oleg Nesterova122b342006-03-28 16:11:22 -08001672 stop_count++;
1673 signal_wake_up(t, 0);
1674 }
1675 sig->group_stop_count = stop_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 }
1677
Oleg Nesterovdac27f42006-03-28 16:11:28 -08001678 if (stop_count == 0)
1679 sig->flags = SIGNAL_STOP_STOPPED;
1680 current->exit_code = sig->group_exit_code;
1681 __set_current_state(TASK_STOPPED);
1682
1683 spin_unlock_irq(&current->sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 finish_stop(stop_count);
1685 return 1;
1686}
1687
Roland McGrath18c98b62008-04-17 18:44:38 -07001688static int ptrace_signal(int signr, siginfo_t *info,
1689 struct pt_regs *regs, void *cookie)
1690{
1691 if (!(current->ptrace & PT_PTRACED))
1692 return signr;
1693
1694 ptrace_signal_deliver(regs, cookie);
1695
1696 /* Let the debugger run. */
1697 ptrace_stop(signr, 0, info);
1698
1699 /* We're back. Did the debugger cancel the sig? */
1700 signr = current->exit_code;
1701 if (signr == 0)
1702 return signr;
1703
1704 current->exit_code = 0;
1705
1706 /* Update the siginfo structure if the signal has
1707 changed. If the debugger wanted something
1708 specific in the siginfo structure then it should
1709 have updated *info via PTRACE_SETSIGINFO. */
1710 if (signr != info->si_signo) {
1711 info->si_signo = signr;
1712 info->si_errno = 0;
1713 info->si_code = SI_USER;
1714 info->si_pid = task_pid_vnr(current->parent);
1715 info->si_uid = current->parent->uid;
1716 }
1717
1718 /* If the (new) signal is now blocked, requeue it. */
1719 if (sigismember(&current->blocked, signr)) {
1720 specific_send_sig_info(signr, info, current);
1721 signr = 0;
1722 }
1723
1724 return signr;
1725}
1726
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727int get_signal_to_deliver(siginfo_t *info, struct k_sigaction *return_ka,
1728 struct pt_regs *regs, void *cookie)
1729{
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001730 struct sighand_struct *sighand = current->sighand;
1731 struct signal_struct *signal = current->signal;
1732 int signr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
Roland McGrath13b1c3d2008-03-03 20:22:05 -08001734relock:
1735 /*
1736 * We'll jump back here after any time we were stopped in TASK_STOPPED.
1737 * While in TASK_STOPPED, we were considered "frozen enough".
1738 * Now that we woke up, it's crucial if we're supposed to be
1739 * frozen that we freeze now before running anything substantial.
1740 */
Rafael J. Wysockifc558a72006-03-23 03:00:05 -08001741 try_to_freeze();
1742
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001743 spin_lock_irq(&sighand->siglock);
Oleg Nesterov021e1ae2008-04-30 00:53:00 -07001744 /*
1745 * Every stopped thread goes here after wakeup. Check to see if
1746 * we should notify the parent, prepare_signal(SIGCONT) encodes
1747 * the CLD_ si_code into SIGNAL_CLD_MASK bits.
1748 */
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001749 if (unlikely(signal->flags & SIGNAL_CLD_MASK)) {
1750 int why = (signal->flags & SIGNAL_STOP_CONTINUED)
Oleg Nesterove4420552008-04-30 00:52:44 -07001751 ? CLD_CONTINUED : CLD_STOPPED;
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001752 signal->flags &= ~SIGNAL_CLD_MASK;
1753 spin_unlock_irq(&sighand->siglock);
Oleg Nesterove4420552008-04-30 00:52:44 -07001754
Roland McGrathfa00b802008-07-25 19:45:54 -07001755 if (unlikely(!tracehook_notify_jctl(1, why)))
1756 goto relock;
1757
Oleg Nesterove4420552008-04-30 00:52:44 -07001758 read_lock(&tasklist_lock);
1759 do_notify_parent_cldstop(current->group_leader, why);
1760 read_unlock(&tasklist_lock);
1761 goto relock;
1762 }
1763
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 for (;;) {
1765 struct k_sigaction *ka;
1766
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001767 if (unlikely(signal->group_stop_count > 0) &&
Oleg Nesterovf558b7e2008-02-04 22:27:24 -08001768 do_signal_stop(0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 goto relock;
1770
Roland McGrath7bcf6a22008-07-25 19:45:53 -07001771 /*
1772 * Tracing can induce an artifical signal and choose sigaction.
1773 * The return value in @signr determines the default action,
1774 * but @info->si_signo is the signal number we will report.
1775 */
1776 signr = tracehook_get_signal(current, regs, info, return_ka);
1777 if (unlikely(signr < 0))
1778 goto relock;
1779 if (unlikely(signr != 0))
1780 ka = return_ka;
1781 else {
1782 signr = dequeue_signal(current, &current->blocked,
1783 info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
Roland McGrath18c98b62008-04-17 18:44:38 -07001785 if (!signr)
Roland McGrath7bcf6a22008-07-25 19:45:53 -07001786 break; /* will return 0 */
1787
1788 if (signr != SIGKILL) {
1789 signr = ptrace_signal(signr, info,
1790 regs, cookie);
1791 if (!signr)
1792 continue;
1793 }
1794
1795 ka = &sighand->action[signr-1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 }
1797
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 if (ka->sa.sa_handler == SIG_IGN) /* Do nothing. */
1799 continue;
1800 if (ka->sa.sa_handler != SIG_DFL) {
1801 /* Run the handler. */
1802 *return_ka = *ka;
1803
1804 if (ka->sa.sa_flags & SA_ONESHOT)
1805 ka->sa.sa_handler = SIG_DFL;
1806
1807 break; /* will return non-zero "signr" value */
1808 }
1809
1810 /*
1811 * Now we are doing the default action for this signal.
1812 */
1813 if (sig_kernel_ignore(signr)) /* Default is nothing. */
1814 continue;
1815
Sukadev Bhattiprolu84d73782006-12-08 02:38:01 -08001816 /*
Sukadev Bhattiprolu0fbc26a2007-10-18 23:40:13 -07001817 * Global init gets no signals it doesn't want.
Sukadev Bhattiprolu84d73782006-12-08 02:38:01 -08001818 */
Oleg Nesterovfae5fa42008-04-30 00:53:03 -07001819 if (unlikely(signal->flags & SIGNAL_UNKILLABLE) &&
1820 !signal_group_exit(signal))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 continue;
1822
1823 if (sig_kernel_stop(signr)) {
1824 /*
1825 * The default action is to stop all threads in
1826 * the thread group. The job control signals
1827 * do nothing in an orphaned pgrp, but SIGSTOP
1828 * always works. Note that siglock needs to be
1829 * dropped during the call to is_orphaned_pgrp()
1830 * because of lock ordering with tasklist_lock.
1831 * This allows an intervening SIGCONT to be posted.
1832 * We need to check for that and bail out if necessary.
1833 */
1834 if (signr != SIGSTOP) {
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001835 spin_unlock_irq(&sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
1837 /* signals can be posted during this window */
1838
Eric W. Biederman3e7cd6c2007-02-12 00:52:58 -08001839 if (is_current_pgrp_orphaned())
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 goto relock;
1841
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001842 spin_lock_irq(&sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 }
1844
Roland McGrath7bcf6a22008-07-25 19:45:53 -07001845 if (likely(do_signal_stop(info->si_signo))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 /* It released the siglock. */
1847 goto relock;
1848 }
1849
1850 /*
1851 * We didn't actually stop, due to a race
1852 * with SIGCONT or something like that.
1853 */
1854 continue;
1855 }
1856
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001857 spin_unlock_irq(&sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
1859 /*
1860 * Anything else is fatal, maybe with a core dump.
1861 */
1862 current->flags |= PF_SIGNALED;
Oleg Nesterov2dce81b2008-04-30 00:52:58 -07001863
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 if (sig_kernel_coredump(signr)) {
Oleg Nesterov2dce81b2008-04-30 00:52:58 -07001865 if (print_fatal_signals)
Roland McGrath7bcf6a22008-07-25 19:45:53 -07001866 print_fatal_signal(regs, info->si_signo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 /*
1868 * If it was able to dump core, this kills all
1869 * other threads in the group and synchronizes with
1870 * their demise. If we lost the race with another
1871 * thread getting here, it set group_exit_code
1872 * first and our do_group_exit call below will use
1873 * that value and ignore the one we pass it.
1874 */
Roland McGrath7bcf6a22008-07-25 19:45:53 -07001875 do_coredump(info->si_signo, info->si_signo, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 }
1877
1878 /*
1879 * Death signals, no core dump.
1880 */
Roland McGrath7bcf6a22008-07-25 19:45:53 -07001881 do_group_exit(info->si_signo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 /* NOTREACHED */
1883 }
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07001884 spin_unlock_irq(&sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 return signr;
1886}
1887
Oleg Nesterovd12619b2008-02-08 04:19:12 -08001888void exit_signals(struct task_struct *tsk)
1889{
1890 int group_stop = 0;
Oleg Nesterov5dee1702008-02-08 04:19:13 -08001891 struct task_struct *t;
Oleg Nesterovd12619b2008-02-08 04:19:12 -08001892
Oleg Nesterov5dee1702008-02-08 04:19:13 -08001893 if (thread_group_empty(tsk) || signal_group_exit(tsk->signal)) {
1894 tsk->flags |= PF_EXITING;
1895 return;
Oleg Nesterovd12619b2008-02-08 04:19:12 -08001896 }
1897
Oleg Nesterov5dee1702008-02-08 04:19:13 -08001898 spin_lock_irq(&tsk->sighand->siglock);
Oleg Nesterovd12619b2008-02-08 04:19:12 -08001899 /*
1900 * From now this task is not visible for group-wide signals,
1901 * see wants_signal(), do_signal_stop().
1902 */
1903 tsk->flags |= PF_EXITING;
Oleg Nesterov5dee1702008-02-08 04:19:13 -08001904 if (!signal_pending(tsk))
1905 goto out;
1906
1907 /* It could be that __group_complete_signal() choose us to
1908 * notify about group-wide signal. Another thread should be
1909 * woken now to take the signal since we will not.
1910 */
1911 for (t = tsk; (t = next_thread(t)) != tsk; )
1912 if (!signal_pending(t) && !(t->flags & PF_EXITING))
1913 recalc_sigpending_and_wake(t);
1914
1915 if (unlikely(tsk->signal->group_stop_count) &&
1916 !--tsk->signal->group_stop_count) {
1917 tsk->signal->flags = SIGNAL_STOP_STOPPED;
1918 group_stop = 1;
1919 }
1920out:
Oleg Nesterovd12619b2008-02-08 04:19:12 -08001921 spin_unlock_irq(&tsk->sighand->siglock);
1922
Roland McGrathfa00b802008-07-25 19:45:54 -07001923 if (unlikely(group_stop) && tracehook_notify_jctl(1, CLD_STOPPED)) {
Oleg Nesterovd12619b2008-02-08 04:19:12 -08001924 read_lock(&tasklist_lock);
1925 do_notify_parent_cldstop(tsk, CLD_STOPPED);
1926 read_unlock(&tasklist_lock);
1927 }
1928}
1929
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930EXPORT_SYMBOL(recalc_sigpending);
1931EXPORT_SYMBOL_GPL(dequeue_signal);
1932EXPORT_SYMBOL(flush_signals);
1933EXPORT_SYMBOL(force_sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934EXPORT_SYMBOL(send_sig);
1935EXPORT_SYMBOL(send_sig_info);
1936EXPORT_SYMBOL(sigprocmask);
1937EXPORT_SYMBOL(block_all_signals);
1938EXPORT_SYMBOL(unblock_all_signals);
1939
1940
1941/*
1942 * System call entry points.
1943 */
1944
1945asmlinkage long sys_restart_syscall(void)
1946{
1947 struct restart_block *restart = &current_thread_info()->restart_block;
1948 return restart->fn(restart);
1949}
1950
1951long do_no_restart_syscall(struct restart_block *param)
1952{
1953 return -EINTR;
1954}
1955
1956/*
1957 * We don't need to get the kernel lock - this is all local to this
1958 * particular thread.. (and that's good, because this is _heavily_
1959 * used by various programs)
1960 */
1961
1962/*
1963 * This is also useful for kernel threads that want to temporarily
1964 * (or permanently) block certain signals.
1965 *
1966 * NOTE! Unlike the user-mode sys_sigprocmask(), the kernel
1967 * interface happily blocks "unblockable" signals like SIGKILL
1968 * and friends.
1969 */
1970int sigprocmask(int how, sigset_t *set, sigset_t *oldset)
1971{
1972 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
1974 spin_lock_irq(&current->sighand->siglock);
Oleg Nesterova26fd332006-03-23 03:00:49 -08001975 if (oldset)
1976 *oldset = current->blocked;
1977
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 error = 0;
1979 switch (how) {
1980 case SIG_BLOCK:
1981 sigorsets(&current->blocked, &current->blocked, set);
1982 break;
1983 case SIG_UNBLOCK:
1984 signandsets(&current->blocked, &current->blocked, set);
1985 break;
1986 case SIG_SETMASK:
1987 current->blocked = *set;
1988 break;
1989 default:
1990 error = -EINVAL;
1991 }
1992 recalc_sigpending();
1993 spin_unlock_irq(&current->sighand->siglock);
Oleg Nesterova26fd332006-03-23 03:00:49 -08001994
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 return error;
1996}
1997
1998asmlinkage long
1999sys_rt_sigprocmask(int how, sigset_t __user *set, sigset_t __user *oset, size_t sigsetsize)
2000{
2001 int error = -EINVAL;
2002 sigset_t old_set, new_set;
2003
2004 /* XXX: Don't preclude handling different sized sigset_t's. */
2005 if (sigsetsize != sizeof(sigset_t))
2006 goto out;
2007
2008 if (set) {
2009 error = -EFAULT;
2010 if (copy_from_user(&new_set, set, sizeof(*set)))
2011 goto out;
2012 sigdelsetmask(&new_set, sigmask(SIGKILL)|sigmask(SIGSTOP));
2013
2014 error = sigprocmask(how, &new_set, &old_set);
2015 if (error)
2016 goto out;
2017 if (oset)
2018 goto set_old;
2019 } else if (oset) {
2020 spin_lock_irq(&current->sighand->siglock);
2021 old_set = current->blocked;
2022 spin_unlock_irq(&current->sighand->siglock);
2023
2024 set_old:
2025 error = -EFAULT;
2026 if (copy_to_user(oset, &old_set, sizeof(*oset)))
2027 goto out;
2028 }
2029 error = 0;
2030out:
2031 return error;
2032}
2033
2034long do_sigpending(void __user *set, unsigned long sigsetsize)
2035{
2036 long error = -EINVAL;
2037 sigset_t pending;
2038
2039 if (sigsetsize > sizeof(sigset_t))
2040 goto out;
2041
2042 spin_lock_irq(&current->sighand->siglock);
2043 sigorsets(&pending, &current->pending.signal,
2044 &current->signal->shared_pending.signal);
2045 spin_unlock_irq(&current->sighand->siglock);
2046
2047 /* Outside the lock because only this thread touches it. */
2048 sigandsets(&pending, &current->blocked, &pending);
2049
2050 error = -EFAULT;
2051 if (!copy_to_user(set, &pending, sigsetsize))
2052 error = 0;
2053
2054out:
2055 return error;
2056}
2057
2058asmlinkage long
2059sys_rt_sigpending(sigset_t __user *set, size_t sigsetsize)
2060{
2061 return do_sigpending(set, sigsetsize);
2062}
2063
2064#ifndef HAVE_ARCH_COPY_SIGINFO_TO_USER
2065
2066int copy_siginfo_to_user(siginfo_t __user *to, siginfo_t *from)
2067{
2068 int err;
2069
2070 if (!access_ok (VERIFY_WRITE, to, sizeof(siginfo_t)))
2071 return -EFAULT;
2072 if (from->si_code < 0)
2073 return __copy_to_user(to, from, sizeof(siginfo_t))
2074 ? -EFAULT : 0;
2075 /*
2076 * If you change siginfo_t structure, please be sure
2077 * this code is fixed accordingly.
Davide Libenzifba2afa2007-05-10 22:23:13 -07002078 * Please remember to update the signalfd_copyinfo() function
2079 * inside fs/signalfd.c too, in case siginfo_t changes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 * It should never copy any pad contained in the structure
2081 * to avoid security leaks, but must copy the generic
2082 * 3 ints plus the relevant union member.
2083 */
2084 err = __put_user(from->si_signo, &to->si_signo);
2085 err |= __put_user(from->si_errno, &to->si_errno);
2086 err |= __put_user((short)from->si_code, &to->si_code);
2087 switch (from->si_code & __SI_MASK) {
2088 case __SI_KILL:
2089 err |= __put_user(from->si_pid, &to->si_pid);
2090 err |= __put_user(from->si_uid, &to->si_uid);
2091 break;
2092 case __SI_TIMER:
2093 err |= __put_user(from->si_tid, &to->si_tid);
2094 err |= __put_user(from->si_overrun, &to->si_overrun);
2095 err |= __put_user(from->si_ptr, &to->si_ptr);
2096 break;
2097 case __SI_POLL:
2098 err |= __put_user(from->si_band, &to->si_band);
2099 err |= __put_user(from->si_fd, &to->si_fd);
2100 break;
2101 case __SI_FAULT:
2102 err |= __put_user(from->si_addr, &to->si_addr);
2103#ifdef __ARCH_SI_TRAPNO
2104 err |= __put_user(from->si_trapno, &to->si_trapno);
2105#endif
2106 break;
2107 case __SI_CHLD:
2108 err |= __put_user(from->si_pid, &to->si_pid);
2109 err |= __put_user(from->si_uid, &to->si_uid);
2110 err |= __put_user(from->si_status, &to->si_status);
2111 err |= __put_user(from->si_utime, &to->si_utime);
2112 err |= __put_user(from->si_stime, &to->si_stime);
2113 break;
2114 case __SI_RT: /* This is not generated by the kernel as of now. */
2115 case __SI_MESGQ: /* But this is */
2116 err |= __put_user(from->si_pid, &to->si_pid);
2117 err |= __put_user(from->si_uid, &to->si_uid);
2118 err |= __put_user(from->si_ptr, &to->si_ptr);
2119 break;
2120 default: /* this is just in case for now ... */
2121 err |= __put_user(from->si_pid, &to->si_pid);
2122 err |= __put_user(from->si_uid, &to->si_uid);
2123 break;
2124 }
2125 return err;
2126}
2127
2128#endif
2129
2130asmlinkage long
2131sys_rt_sigtimedwait(const sigset_t __user *uthese,
2132 siginfo_t __user *uinfo,
2133 const struct timespec __user *uts,
2134 size_t sigsetsize)
2135{
2136 int ret, sig;
2137 sigset_t these;
2138 struct timespec ts;
2139 siginfo_t info;
2140 long timeout = 0;
2141
2142 /* XXX: Don't preclude handling different sized sigset_t's. */
2143 if (sigsetsize != sizeof(sigset_t))
2144 return -EINVAL;
2145
2146 if (copy_from_user(&these, uthese, sizeof(these)))
2147 return -EFAULT;
2148
2149 /*
2150 * Invert the set of allowed signals to get those we
2151 * want to block.
2152 */
2153 sigdelsetmask(&these, sigmask(SIGKILL)|sigmask(SIGSTOP));
2154 signotset(&these);
2155
2156 if (uts) {
2157 if (copy_from_user(&ts, uts, sizeof(ts)))
2158 return -EFAULT;
2159 if (ts.tv_nsec >= 1000000000L || ts.tv_nsec < 0
2160 || ts.tv_sec < 0)
2161 return -EINVAL;
2162 }
2163
2164 spin_lock_irq(&current->sighand->siglock);
2165 sig = dequeue_signal(current, &these, &info);
2166 if (!sig) {
2167 timeout = MAX_SCHEDULE_TIMEOUT;
2168 if (uts)
2169 timeout = (timespec_to_jiffies(&ts)
2170 + (ts.tv_sec || ts.tv_nsec));
2171
2172 if (timeout) {
2173 /* None ready -- temporarily unblock those we're
2174 * interested while we are sleeping in so that we'll
2175 * be awakened when they arrive. */
2176 current->real_blocked = current->blocked;
2177 sigandsets(&current->blocked, &current->blocked, &these);
2178 recalc_sigpending();
2179 spin_unlock_irq(&current->sighand->siglock);
2180
Nishanth Aravamudan75bcc8c2005-09-10 00:27:24 -07002181 timeout = schedule_timeout_interruptible(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 spin_lock_irq(&current->sighand->siglock);
2184 sig = dequeue_signal(current, &these, &info);
2185 current->blocked = current->real_blocked;
2186 siginitset(&current->real_blocked, 0);
2187 recalc_sigpending();
2188 }
2189 }
2190 spin_unlock_irq(&current->sighand->siglock);
2191
2192 if (sig) {
2193 ret = sig;
2194 if (uinfo) {
2195 if (copy_siginfo_to_user(uinfo, &info))
2196 ret = -EFAULT;
2197 }
2198 } else {
2199 ret = -EAGAIN;
2200 if (timeout)
2201 ret = -EINTR;
2202 }
2203
2204 return ret;
2205}
2206
2207asmlinkage long
Gustavo Fernando Padovanbc64efd2008-07-25 01:47:33 -07002208sys_kill(pid_t pid, int sig)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209{
2210 struct siginfo info;
2211
2212 info.si_signo = sig;
2213 info.si_errno = 0;
2214 info.si_code = SI_USER;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002215 info.si_pid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 info.si_uid = current->uid;
2217
2218 return kill_something_info(sig, &info, pid);
2219}
2220
Gustavo Fernando Padovanbc64efd2008-07-25 01:47:33 -07002221static int do_tkill(pid_t tgid, pid_t pid, int sig)
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002222{
2223 int error;
2224 struct siginfo info;
2225 struct task_struct *p;
Oleg Nesterov3547ff32008-04-30 00:52:51 -07002226 unsigned long flags;
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002227
2228 error = -ESRCH;
2229 info.si_signo = sig;
2230 info.si_errno = 0;
2231 info.si_code = SI_TKILL;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002232 info.si_pid = task_tgid_vnr(current);
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002233 info.si_uid = current->uid;
2234
Oleg Nesterov3547ff32008-04-30 00:52:51 -07002235 rcu_read_lock();
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07002236 p = find_task_by_vpid(pid);
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002237 if (p && (tgid <= 0 || task_tgid_vnr(p) == tgid)) {
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002238 error = check_kill_permission(sig, &info, p);
2239 /*
2240 * The null signal is a permissions and process existence
2241 * probe. No signal is actually delivered.
Oleg Nesterov3547ff32008-04-30 00:52:51 -07002242 *
2243 * If lock_task_sighand() fails we pretend the task dies
2244 * after receiving the signal. The window is tiny, and the
2245 * signal is private anyway.
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002246 */
Oleg Nesterov3547ff32008-04-30 00:52:51 -07002247 if (!error && sig && lock_task_sighand(p, &flags)) {
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002248 error = specific_send_sig_info(sig, &info, p);
Oleg Nesterov3547ff32008-04-30 00:52:51 -07002249 unlock_task_sighand(p, &flags);
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002250 }
2251 }
Oleg Nesterov3547ff32008-04-30 00:52:51 -07002252 rcu_read_unlock();
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002253
2254 return error;
2255}
2256
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257/**
2258 * sys_tgkill - send signal to one specific thread
2259 * @tgid: the thread group ID of the thread
2260 * @pid: the PID of the thread
2261 * @sig: signal to be sent
2262 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08002263 * This syscall also checks the @tgid and returns -ESRCH even if the PID
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 * exists but it's not belonging to the target process anymore. This
2265 * method solves the problem of threads exiting and PIDs getting reused.
2266 */
Gustavo Fernando Padovanbc64efd2008-07-25 01:47:33 -07002267asmlinkage long sys_tgkill(pid_t tgid, pid_t pid, int sig)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 /* This is only valid for single tasks */
2270 if (pid <= 0 || tgid <= 0)
2271 return -EINVAL;
2272
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002273 return do_tkill(tgid, pid, sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274}
2275
2276/*
2277 * Send a signal to only one task, even if it's a CLONE_THREAD task.
2278 */
2279asmlinkage long
Gustavo Fernando Padovanbc64efd2008-07-25 01:47:33 -07002280sys_tkill(pid_t pid, int sig)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 /* This is only valid for single tasks */
2283 if (pid <= 0)
2284 return -EINVAL;
2285
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002286 return do_tkill(0, pid, sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287}
2288
2289asmlinkage long
Gustavo Fernando Padovanbc64efd2008-07-25 01:47:33 -07002290sys_rt_sigqueueinfo(pid_t pid, int sig, siginfo_t __user *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291{
2292 siginfo_t info;
2293
2294 if (copy_from_user(&info, uinfo, sizeof(siginfo_t)))
2295 return -EFAULT;
2296
2297 /* Not even root can pretend to send signals from the kernel.
2298 Nor can they impersonate a kill(), which adds source info. */
2299 if (info.si_code >= 0)
2300 return -EPERM;
2301 info.si_signo = sig;
2302
2303 /* POSIX.1b doesn't mention process groups. */
2304 return kill_proc_info(sig, &info, pid);
2305}
2306
Oleg Nesterov88531f72006-03-28 16:11:24 -08002307int do_sigaction(int sig, struct k_sigaction *act, struct k_sigaction *oact)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308{
Pavel Emelyanov93585ee2008-04-30 00:52:39 -07002309 struct task_struct *t = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 struct k_sigaction *k;
George Anzinger71fabd52006-01-08 01:02:48 -08002311 sigset_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312
Jesper Juhl7ed20e12005-05-01 08:59:14 -07002313 if (!valid_signal(sig) || sig < 1 || (act && sig_kernel_only(sig)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 return -EINVAL;
2315
Pavel Emelyanov93585ee2008-04-30 00:52:39 -07002316 k = &t->sighand->action[sig-1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317
2318 spin_lock_irq(&current->sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 if (oact)
2320 *oact = *k;
2321
2322 if (act) {
Oleg Nesterov9ac95f22006-02-09 22:41:50 +03002323 sigdelsetmask(&act->sa.sa_mask,
2324 sigmask(SIGKILL) | sigmask(SIGSTOP));
Oleg Nesterov88531f72006-03-28 16:11:24 -08002325 *k = *act;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 /*
2327 * POSIX 3.3.1.3:
2328 * "Setting a signal action to SIG_IGN for a signal that is
2329 * pending shall cause the pending signal to be discarded,
2330 * whether or not it is blocked."
2331 *
2332 * "Setting a signal action to SIG_DFL for a signal that is
2333 * pending and whose default action is to ignore the signal
2334 * (for example, SIGCHLD), shall cause the pending signal to
2335 * be discarded, whether or not it is blocked"
2336 */
Roland McGrath35de2542008-07-25 19:45:51 -07002337 if (sig_handler_ignored(sig_handler(t, sig), sig)) {
George Anzinger71fabd52006-01-08 01:02:48 -08002338 sigemptyset(&mask);
2339 sigaddset(&mask, sig);
2340 rm_from_queue_full(&mask, &t->signal->shared_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 do {
George Anzinger71fabd52006-01-08 01:02:48 -08002342 rm_from_queue_full(&mask, &t->pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 t = next_thread(t);
2344 } while (t != current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 }
2347
2348 spin_unlock_irq(&current->sighand->siglock);
2349 return 0;
2350}
2351
2352int
2353do_sigaltstack (const stack_t __user *uss, stack_t __user *uoss, unsigned long sp)
2354{
2355 stack_t oss;
2356 int error;
2357
2358 if (uoss) {
2359 oss.ss_sp = (void __user *) current->sas_ss_sp;
2360 oss.ss_size = current->sas_ss_size;
2361 oss.ss_flags = sas_ss_flags(sp);
2362 }
2363
2364 if (uss) {
2365 void __user *ss_sp;
2366 size_t ss_size;
2367 int ss_flags;
2368
2369 error = -EFAULT;
2370 if (!access_ok(VERIFY_READ, uss, sizeof(*uss))
2371 || __get_user(ss_sp, &uss->ss_sp)
2372 || __get_user(ss_flags, &uss->ss_flags)
2373 || __get_user(ss_size, &uss->ss_size))
2374 goto out;
2375
2376 error = -EPERM;
2377 if (on_sig_stack(sp))
2378 goto out;
2379
2380 error = -EINVAL;
2381 /*
2382 *
2383 * Note - this code used to test ss_flags incorrectly
2384 * old code may have been written using ss_flags==0
2385 * to mean ss_flags==SS_ONSTACK (as this was the only
2386 * way that worked) - this fix preserves that older
2387 * mechanism
2388 */
2389 if (ss_flags != SS_DISABLE && ss_flags != SS_ONSTACK && ss_flags != 0)
2390 goto out;
2391
2392 if (ss_flags == SS_DISABLE) {
2393 ss_size = 0;
2394 ss_sp = NULL;
2395 } else {
2396 error = -ENOMEM;
2397 if (ss_size < MINSIGSTKSZ)
2398 goto out;
2399 }
2400
2401 current->sas_ss_sp = (unsigned long) ss_sp;
2402 current->sas_ss_size = ss_size;
2403 }
2404
2405 if (uoss) {
2406 error = -EFAULT;
2407 if (copy_to_user(uoss, &oss, sizeof(oss)))
2408 goto out;
2409 }
2410
2411 error = 0;
2412out:
2413 return error;
2414}
2415
2416#ifdef __ARCH_WANT_SYS_SIGPENDING
2417
2418asmlinkage long
2419sys_sigpending(old_sigset_t __user *set)
2420{
2421 return do_sigpending(set, sizeof(*set));
2422}
2423
2424#endif
2425
2426#ifdef __ARCH_WANT_SYS_SIGPROCMASK
2427/* Some platforms have their own version with special arguments others
2428 support only sys_rt_sigprocmask. */
2429
2430asmlinkage long
2431sys_sigprocmask(int how, old_sigset_t __user *set, old_sigset_t __user *oset)
2432{
2433 int error;
2434 old_sigset_t old_set, new_set;
2435
2436 if (set) {
2437 error = -EFAULT;
2438 if (copy_from_user(&new_set, set, sizeof(*set)))
2439 goto out;
2440 new_set &= ~(sigmask(SIGKILL) | sigmask(SIGSTOP));
2441
2442 spin_lock_irq(&current->sighand->siglock);
2443 old_set = current->blocked.sig[0];
2444
2445 error = 0;
2446 switch (how) {
2447 default:
2448 error = -EINVAL;
2449 break;
2450 case SIG_BLOCK:
2451 sigaddsetmask(&current->blocked, new_set);
2452 break;
2453 case SIG_UNBLOCK:
2454 sigdelsetmask(&current->blocked, new_set);
2455 break;
2456 case SIG_SETMASK:
2457 current->blocked.sig[0] = new_set;
2458 break;
2459 }
2460
2461 recalc_sigpending();
2462 spin_unlock_irq(&current->sighand->siglock);
2463 if (error)
2464 goto out;
2465 if (oset)
2466 goto set_old;
2467 } else if (oset) {
2468 old_set = current->blocked.sig[0];
2469 set_old:
2470 error = -EFAULT;
2471 if (copy_to_user(oset, &old_set, sizeof(*oset)))
2472 goto out;
2473 }
2474 error = 0;
2475out:
2476 return error;
2477}
2478#endif /* __ARCH_WANT_SYS_SIGPROCMASK */
2479
2480#ifdef __ARCH_WANT_SYS_RT_SIGACTION
2481asmlinkage long
2482sys_rt_sigaction(int sig,
2483 const struct sigaction __user *act,
2484 struct sigaction __user *oact,
2485 size_t sigsetsize)
2486{
2487 struct k_sigaction new_sa, old_sa;
2488 int ret = -EINVAL;
2489
2490 /* XXX: Don't preclude handling different sized sigset_t's. */
2491 if (sigsetsize != sizeof(sigset_t))
2492 goto out;
2493
2494 if (act) {
2495 if (copy_from_user(&new_sa.sa, act, sizeof(new_sa.sa)))
2496 return -EFAULT;
2497 }
2498
2499 ret = do_sigaction(sig, act ? &new_sa : NULL, oact ? &old_sa : NULL);
2500
2501 if (!ret && oact) {
2502 if (copy_to_user(oact, &old_sa.sa, sizeof(old_sa.sa)))
2503 return -EFAULT;
2504 }
2505out:
2506 return ret;
2507}
2508#endif /* __ARCH_WANT_SYS_RT_SIGACTION */
2509
2510#ifdef __ARCH_WANT_SYS_SGETMASK
2511
2512/*
2513 * For backwards compatibility. Functionality superseded by sigprocmask.
2514 */
2515asmlinkage long
2516sys_sgetmask(void)
2517{
2518 /* SMP safe */
2519 return current->blocked.sig[0];
2520}
2521
2522asmlinkage long
2523sys_ssetmask(int newmask)
2524{
2525 int old;
2526
2527 spin_lock_irq(&current->sighand->siglock);
2528 old = current->blocked.sig[0];
2529
2530 siginitset(&current->blocked, newmask & ~(sigmask(SIGKILL)|
2531 sigmask(SIGSTOP)));
2532 recalc_sigpending();
2533 spin_unlock_irq(&current->sighand->siglock);
2534
2535 return old;
2536}
2537#endif /* __ARCH_WANT_SGETMASK */
2538
2539#ifdef __ARCH_WANT_SYS_SIGNAL
2540/*
2541 * For backwards compatibility. Functionality superseded by sigaction.
2542 */
2543asmlinkage unsigned long
2544sys_signal(int sig, __sighandler_t handler)
2545{
2546 struct k_sigaction new_sa, old_sa;
2547 int ret;
2548
2549 new_sa.sa.sa_handler = handler;
2550 new_sa.sa.sa_flags = SA_ONESHOT | SA_NOMASK;
Oleg Nesterovc70d3d702006-02-09 22:41:41 +03002551 sigemptyset(&new_sa.sa.sa_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552
2553 ret = do_sigaction(sig, &new_sa, &old_sa);
2554
2555 return ret ? ret : (unsigned long)old_sa.sa.sa_handler;
2556}
2557#endif /* __ARCH_WANT_SYS_SIGNAL */
2558
2559#ifdef __ARCH_WANT_SYS_PAUSE
2560
2561asmlinkage long
2562sys_pause(void)
2563{
2564 current->state = TASK_INTERRUPTIBLE;
2565 schedule();
2566 return -ERESTARTNOHAND;
2567}
2568
2569#endif
2570
David Woodhouse150256d2006-01-18 17:43:57 -08002571#ifdef __ARCH_WANT_SYS_RT_SIGSUSPEND
2572asmlinkage long sys_rt_sigsuspend(sigset_t __user *unewset, size_t sigsetsize)
2573{
2574 sigset_t newset;
2575
2576 /* XXX: Don't preclude handling different sized sigset_t's. */
2577 if (sigsetsize != sizeof(sigset_t))
2578 return -EINVAL;
2579
2580 if (copy_from_user(&newset, unewset, sizeof(newset)))
2581 return -EFAULT;
2582 sigdelsetmask(&newset, sigmask(SIGKILL)|sigmask(SIGSTOP));
2583
2584 spin_lock_irq(&current->sighand->siglock);
2585 current->saved_sigmask = current->blocked;
2586 current->blocked = newset;
2587 recalc_sigpending();
2588 spin_unlock_irq(&current->sighand->siglock);
2589
2590 current->state = TASK_INTERRUPTIBLE;
2591 schedule();
Roland McGrath4e4c22c2008-04-30 00:53:06 -07002592 set_restore_sigmask();
David Woodhouse150256d2006-01-18 17:43:57 -08002593 return -ERESTARTNOHAND;
2594}
2595#endif /* __ARCH_WANT_SYS_RT_SIGSUSPEND */
2596
David Howellsf269fdd2006-09-27 01:50:23 -07002597__attribute__((weak)) const char *arch_vma_name(struct vm_area_struct *vma)
2598{
2599 return NULL;
2600}
2601
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602void __init signals_init(void)
2603{
Christoph Lameter0a31bd52007-05-06 14:49:57 -07002604 sigqueue_cachep = KMEM_CACHE(sigqueue, SLAB_PANIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605}