blob: f65403da4101c173a3e21df0b804ff5ad6a89262 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/kernel/signal.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 *
6 * 1997-11-02 Modified for POSIX.1b signals by Richard Henderson
7 *
8 * 2003-06-02 Jim Houston - Concurrent Computer Corp.
9 * Changes to use preallocated sigqueue structures
10 * to allow signals to be sent reliably.
11 */
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/slab.h>
14#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/init.h>
16#include <linux/sched.h>
17#include <linux/fs.h>
18#include <linux/tty.h>
19#include <linux/binfmts.h>
20#include <linux/security.h>
21#include <linux/syscalls.h>
22#include <linux/ptrace.h>
Jesper Juhl7ed20e12005-05-01 08:59:14 -070023#include <linux/signal.h>
Davide Libenzifba2afa2007-05-10 22:23:13 -070024#include <linux/signalfd.h>
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +090025#include <linux/ratelimit.h>
Roland McGrath35de2542008-07-25 19:45:51 -070026#include <linux/tracehook.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080027#include <linux/capability.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080028#include <linux/freezer.h>
Sukadev Bhattiprolu84d73782006-12-08 02:38:01 -080029#include <linux/pid_namespace.h>
30#include <linux/nsproxy.h>
Masami Hiramatsud1eb6502009-11-24 16:56:45 -050031#define CREATE_TRACE_POINTS
32#include <trace/events/signal.h>
Sukadev Bhattiprolu84d73782006-12-08 02:38:01 -080033
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/param.h>
35#include <asm/uaccess.h>
36#include <asm/unistd.h>
37#include <asm/siginfo.h>
Al Viroe1396062006-05-25 10:19:47 -040038#include "audit.h" /* audit_signal_info() */
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40/*
41 * SLAB caches for signal bits.
42 */
43
Christoph Lametere18b8902006-12-06 20:33:20 -080044static struct kmem_cache *sigqueue_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +090046int print_fatal_signals __read_mostly;
47
Roland McGrath35de2542008-07-25 19:45:51 -070048static void __user *sig_handler(struct task_struct *t, int sig)
Pavel Emelyanov93585ee2008-04-30 00:52:39 -070049{
Roland McGrath35de2542008-07-25 19:45:51 -070050 return t->sighand->action[sig - 1].sa.sa_handler;
51}
Pavel Emelyanov93585ee2008-04-30 00:52:39 -070052
Roland McGrath35de2542008-07-25 19:45:51 -070053static int sig_handler_ignored(void __user *handler, int sig)
54{
Pavel Emelyanov93585ee2008-04-30 00:52:39 -070055 /* Is it explicitly or implicitly ignored? */
Pavel Emelyanov93585ee2008-04-30 00:52:39 -070056 return handler == SIG_IGN ||
57 (handler == SIG_DFL && sig_kernel_ignore(sig));
58}
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Sukadev Bhattiprolu921cf9f2009-04-02 16:58:05 -070060static int sig_task_ignored(struct task_struct *t, int sig,
61 int from_ancestor_ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
Roland McGrath35de2542008-07-25 19:45:51 -070063 void __user *handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Oleg Nesterovf008faf2009-04-02 16:58:02 -070065 handler = sig_handler(t, sig);
66
67 if (unlikely(t->signal->flags & SIGNAL_UNKILLABLE) &&
Sukadev Bhattiprolu921cf9f2009-04-02 16:58:05 -070068 handler == SIG_DFL && !from_ancestor_ns)
Oleg Nesterovf008faf2009-04-02 16:58:02 -070069 return 1;
70
71 return sig_handler_ignored(handler, sig);
72}
73
Sukadev Bhattiprolu921cf9f2009-04-02 16:58:05 -070074static int sig_ignored(struct task_struct *t, int sig, int from_ancestor_ns)
Oleg Nesterovf008faf2009-04-02 16:58:02 -070075{
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 /*
77 * Blocked signals are never ignored, since the
78 * signal handler may change by the time it is
79 * unblocked.
80 */
Roland McGrath325d22d2007-11-12 15:41:55 -080081 if (sigismember(&t->blocked, sig) || sigismember(&t->real_blocked, sig))
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 return 0;
83
Sukadev Bhattiprolu921cf9f2009-04-02 16:58:05 -070084 if (!sig_task_ignored(t, sig, from_ancestor_ns))
Roland McGrath35de2542008-07-25 19:45:51 -070085 return 0;
86
87 /*
88 * Tracers may want to know about even ignored signals.
89 */
Oleg Nesterov43918f22009-04-02 16:58:00 -070090 return !tracehook_consider_ignored_signal(t, sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091}
92
93/*
94 * Re-calculate pending state from the set of locally pending
95 * signals, globally pending signals, and blocked signals.
96 */
97static inline int has_pending_signals(sigset_t *signal, sigset_t *blocked)
98{
99 unsigned long ready;
100 long i;
101
102 switch (_NSIG_WORDS) {
103 default:
104 for (i = _NSIG_WORDS, ready = 0; --i >= 0 ;)
105 ready |= signal->sig[i] &~ blocked->sig[i];
106 break;
107
108 case 4: ready = signal->sig[3] &~ blocked->sig[3];
109 ready |= signal->sig[2] &~ blocked->sig[2];
110 ready |= signal->sig[1] &~ blocked->sig[1];
111 ready |= signal->sig[0] &~ blocked->sig[0];
112 break;
113
114 case 2: ready = signal->sig[1] &~ blocked->sig[1];
115 ready |= signal->sig[0] &~ blocked->sig[0];
116 break;
117
118 case 1: ready = signal->sig[0] &~ blocked->sig[0];
119 }
120 return ready != 0;
121}
122
123#define PENDING(p,b) has_pending_signals(&(p)->signal, (b))
124
Roland McGrath7bb44ad2007-05-23 13:57:44 -0700125static int recalc_sigpending_tsk(struct task_struct *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
Tejun Heo39efa3e2011-03-23 10:37:00 +0100127 if ((t->group_stop & GROUP_STOP_PENDING) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 PENDING(&t->pending, &t->blocked) ||
Roland McGrath7bb44ad2007-05-23 13:57:44 -0700129 PENDING(&t->signal->shared_pending, &t->blocked)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 set_tsk_thread_flag(t, TIF_SIGPENDING);
Roland McGrath7bb44ad2007-05-23 13:57:44 -0700131 return 1;
132 }
Roland McGrathb74d0de2007-06-06 03:59:00 -0700133 /*
134 * We must never clear the flag in another thread, or in current
135 * when it's possible the current syscall is returning -ERESTART*.
136 * So we don't clear it here, and only callers who know they should do.
137 */
Roland McGrath7bb44ad2007-05-23 13:57:44 -0700138 return 0;
139}
140
141/*
142 * After recalculating TIF_SIGPENDING, we need to make sure the task wakes up.
143 * This is superfluous when called on current, the wakeup is a harmless no-op.
144 */
145void recalc_sigpending_and_wake(struct task_struct *t)
146{
147 if (recalc_sigpending_tsk(t))
148 signal_wake_up(t, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
151void recalc_sigpending(void)
152{
Roland McGrathb787f7b2008-07-25 19:45:55 -0700153 if (unlikely(tracehook_force_sigpending()))
154 set_thread_flag(TIF_SIGPENDING);
155 else if (!recalc_sigpending_tsk(current) && !freezing(current))
Roland McGrathb74d0de2007-06-06 03:59:00 -0700156 clear_thread_flag(TIF_SIGPENDING);
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159
160/* Given the mask, find the first available signal that should be serviced. */
161
Linus Torvaldsa27341c2010-03-02 08:36:46 -0800162#define SYNCHRONOUS_MASK \
163 (sigmask(SIGSEGV) | sigmask(SIGBUS) | sigmask(SIGILL) | \
164 sigmask(SIGTRAP) | sigmask(SIGFPE))
165
Davide Libenzifba2afa2007-05-10 22:23:13 -0700166int next_signal(struct sigpending *pending, sigset_t *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
168 unsigned long i, *s, *m, x;
169 int sig = 0;
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +0900170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 s = pending->signal.sig;
172 m = mask->sig;
Linus Torvaldsa27341c2010-03-02 08:36:46 -0800173
174 /*
175 * Handle the first word specially: it contains the
176 * synchronous signals that need to be dequeued first.
177 */
178 x = *s &~ *m;
179 if (x) {
180 if (x & SYNCHRONOUS_MASK)
181 x &= SYNCHRONOUS_MASK;
182 sig = ffz(~x) + 1;
183 return sig;
184 }
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 switch (_NSIG_WORDS) {
187 default:
Linus Torvaldsa27341c2010-03-02 08:36:46 -0800188 for (i = 1; i < _NSIG_WORDS; ++i) {
189 x = *++s &~ *++m;
190 if (!x)
191 continue;
192 sig = ffz(~x) + i*_NSIG_BPW + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 break;
Linus Torvaldsa27341c2010-03-02 08:36:46 -0800194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 break;
196
Linus Torvaldsa27341c2010-03-02 08:36:46 -0800197 case 2:
198 x = s[1] &~ m[1];
199 if (!x)
200 break;
201 sig = ffz(~x) + _NSIG_BPW + 1;
202 break;
203
204 case 1:
205 /* Nothing to do */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 break;
207 }
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +0900208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 return sig;
210}
211
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +0900212static inline void print_dropped_signal(int sig)
213{
214 static DEFINE_RATELIMIT_STATE(ratelimit_state, 5 * HZ, 10);
215
216 if (!print_fatal_signals)
217 return;
218
219 if (!__ratelimit(&ratelimit_state))
220 return;
221
222 printk(KERN_INFO "%s/%d: reached RLIMIT_SIGPENDING, dropped signal %d\n",
223 current->comm, current->pid, sig);
224}
225
Tejun Heoe5c19022011-03-23 10:37:00 +0100226/**
Tejun Heod79fdd62011-03-23 10:37:00 +0100227 * task_clear_group_stop_trapping - clear group stop trapping bit
228 * @task: target task
229 *
230 * If GROUP_STOP_TRAPPING is set, a ptracer is waiting for us. Clear it
231 * and wake up the ptracer. Note that we don't need any further locking.
232 * @task->siglock guarantees that @task->parent points to the ptracer.
233 *
234 * CONTEXT:
235 * Must be called with @task->sighand->siglock held.
236 */
237static void task_clear_group_stop_trapping(struct task_struct *task)
238{
239 if (unlikely(task->group_stop & GROUP_STOP_TRAPPING)) {
240 task->group_stop &= ~GROUP_STOP_TRAPPING;
241 __wake_up_sync(&task->parent->signal->wait_chldexit,
242 TASK_UNINTERRUPTIBLE, 1);
243 }
244}
245
246/**
Tejun Heoe5c19022011-03-23 10:37:00 +0100247 * task_clear_group_stop_pending - clear pending group stop
248 * @task: target task
249 *
250 * Clear group stop states for @task.
251 *
252 * CONTEXT:
253 * Must be called with @task->sighand->siglock held.
254 */
Tejun Heo39efa3e2011-03-23 10:37:00 +0100255void task_clear_group_stop_pending(struct task_struct *task)
Tejun Heoe5c19022011-03-23 10:37:00 +0100256{
Tejun Heo39efa3e2011-03-23 10:37:00 +0100257 task->group_stop &= ~(GROUP_STOP_PENDING | GROUP_STOP_CONSUME);
Tejun Heoe5c19022011-03-23 10:37:00 +0100258}
259
260/**
261 * task_participate_group_stop - participate in a group stop
262 * @task: task participating in a group stop
263 *
Tejun Heo39efa3e2011-03-23 10:37:00 +0100264 * @task has GROUP_STOP_PENDING set and is participating in a group stop.
265 * Group stop states are cleared and the group stop count is consumed if
266 * %GROUP_STOP_CONSUME was set. If the consumption completes the group
267 * stop, the appropriate %SIGNAL_* flags are set.
Tejun Heoe5c19022011-03-23 10:37:00 +0100268 *
269 * CONTEXT:
270 * Must be called with @task->sighand->siglock held.
271 */
272static bool task_participate_group_stop(struct task_struct *task)
273{
274 struct signal_struct *sig = task->signal;
275 bool consume = task->group_stop & GROUP_STOP_CONSUME;
276
Tejun Heo39efa3e2011-03-23 10:37:00 +0100277 WARN_ON_ONCE(!(task->group_stop & GROUP_STOP_PENDING));
278
Tejun Heoe5c19022011-03-23 10:37:00 +0100279 task_clear_group_stop_pending(task);
280
281 if (!consume)
282 return false;
283
284 if (!WARN_ON_ONCE(sig->group_stop_count == 0))
285 sig->group_stop_count--;
286
287 if (!sig->group_stop_count) {
288 sig->flags = SIGNAL_STOP_STOPPED;
289 return true;
290 }
291 return false;
292}
293
David Howellsc69e8d92008-11-14 10:39:19 +1100294/*
295 * allocate a new signal queue record
296 * - this may be called without locks if and only if t == current, otherwise an
David Howellsd84f4f92008-11-14 10:39:23 +1100297 * appopriate lock must be held to stop the target task from exiting
David Howellsc69e8d92008-11-14 10:39:19 +1100298 */
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +0900299static struct sigqueue *
300__sigqueue_alloc(int sig, struct task_struct *t, gfp_t flags, int override_rlimit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
302 struct sigqueue *q = NULL;
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800303 struct user_struct *user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800305 /*
Thomas Gleixner7cf7db82009-12-10 00:53:21 +0000306 * Protect access to @t credentials. This can go away when all
307 * callers hold rcu read lock.
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800308 */
Thomas Gleixner7cf7db82009-12-10 00:53:21 +0000309 rcu_read_lock();
David Howellsd84f4f92008-11-14 10:39:23 +1100310 user = get_uid(__task_cred(t)->user);
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800311 atomic_inc(&user->sigpending);
Thomas Gleixner7cf7db82009-12-10 00:53:21 +0000312 rcu_read_unlock();
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +0900313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 if (override_rlimit ||
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800315 atomic_read(&user->sigpending) <=
Jiri Slaby78d7d402010-03-05 13:42:54 -0800316 task_rlimit(t, RLIMIT_SIGPENDING)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 q = kmem_cache_alloc(sigqueue_cachep, flags);
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +0900318 } else {
319 print_dropped_signal(sig);
320 }
321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 if (unlikely(q == NULL)) {
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800323 atomic_dec(&user->sigpending);
David Howellsd84f4f92008-11-14 10:39:23 +1100324 free_uid(user);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 } else {
326 INIT_LIST_HEAD(&q->list);
327 q->flags = 0;
David Howellsd84f4f92008-11-14 10:39:23 +1100328 q->user = user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 }
David Howellsd84f4f92008-11-14 10:39:23 +1100330
331 return q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332}
333
Andrew Morton514a01b2006-02-03 03:04:41 -0800334static void __sigqueue_free(struct sigqueue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
336 if (q->flags & SIGQUEUE_PREALLOC)
337 return;
338 atomic_dec(&q->user->sigpending);
339 free_uid(q->user);
340 kmem_cache_free(sigqueue_cachep, q);
341}
342
Oleg Nesterov6a14c5c2006-03-28 16:11:18 -0800343void flush_sigqueue(struct sigpending *queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
345 struct sigqueue *q;
346
347 sigemptyset(&queue->signal);
348 while (!list_empty(&queue->list)) {
349 q = list_entry(queue->list.next, struct sigqueue , list);
350 list_del_init(&q->list);
351 __sigqueue_free(q);
352 }
353}
354
355/*
356 * Flush all pending signals for a task.
357 */
David Howells3bcac022009-04-29 13:45:05 +0100358void __flush_signals(struct task_struct *t)
359{
360 clear_tsk_thread_flag(t, TIF_SIGPENDING);
361 flush_sigqueue(&t->pending);
362 flush_sigqueue(&t->signal->shared_pending);
363}
364
Oleg Nesterovc81addc2006-03-28 16:11:17 -0800365void flush_signals(struct task_struct *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
367 unsigned long flags;
368
369 spin_lock_irqsave(&t->sighand->siglock, flags);
David Howells3bcac022009-04-29 13:45:05 +0100370 __flush_signals(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 spin_unlock_irqrestore(&t->sighand->siglock, flags);
372}
373
Oleg Nesterovcbaffba2008-05-26 20:55:42 +0400374static void __flush_itimer_signals(struct sigpending *pending)
375{
376 sigset_t signal, retain;
377 struct sigqueue *q, *n;
378
379 signal = pending->signal;
380 sigemptyset(&retain);
381
382 list_for_each_entry_safe(q, n, &pending->list, list) {
383 int sig = q->info.si_signo;
384
385 if (likely(q->info.si_code != SI_TIMER)) {
386 sigaddset(&retain, sig);
387 } else {
388 sigdelset(&signal, sig);
389 list_del_init(&q->list);
390 __sigqueue_free(q);
391 }
392 }
393
394 sigorsets(&pending->signal, &signal, &retain);
395}
396
397void flush_itimer_signals(void)
398{
399 struct task_struct *tsk = current;
400 unsigned long flags;
401
402 spin_lock_irqsave(&tsk->sighand->siglock, flags);
403 __flush_itimer_signals(&tsk->pending);
404 __flush_itimer_signals(&tsk->signal->shared_pending);
405 spin_unlock_irqrestore(&tsk->sighand->siglock, flags);
406}
407
Oleg Nesterov10ab8252007-05-09 02:34:37 -0700408void ignore_signals(struct task_struct *t)
409{
410 int i;
411
412 for (i = 0; i < _NSIG; ++i)
413 t->sighand->action[i].sa.sa_handler = SIG_IGN;
414
415 flush_signals(t);
416}
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 * Flush all handlers for a task.
420 */
421
422void
423flush_signal_handlers(struct task_struct *t, int force_default)
424{
425 int i;
426 struct k_sigaction *ka = &t->sighand->action[0];
427 for (i = _NSIG ; i != 0 ; i--) {
428 if (force_default || ka->sa.sa_handler != SIG_IGN)
429 ka->sa.sa_handler = SIG_DFL;
430 ka->sa.sa_flags = 0;
431 sigemptyset(&ka->sa.sa_mask);
432 ka++;
433 }
434}
435
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200436int unhandled_signal(struct task_struct *tsk, int sig)
437{
Roland McGrath445a91d2008-07-25 19:45:52 -0700438 void __user *handler = tsk->sighand->action[sig-1].sa.sa_handler;
Serge E. Hallynb460cbc2007-10-18 23:39:52 -0700439 if (is_global_init(tsk))
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200440 return 1;
Roland McGrath445a91d2008-07-25 19:45:52 -0700441 if (handler != SIG_IGN && handler != SIG_DFL)
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200442 return 0;
Oleg Nesterov43918f22009-04-02 16:58:00 -0700443 return !tracehook_consider_fatal_signal(tsk, sig);
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200444}
445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447/* Notify the system that a driver wants to block all signals for this
448 * process, and wants to be notified if any signals at all were to be
449 * sent/acted upon. If the notifier routine returns non-zero, then the
450 * signal will be acted upon after all. If the notifier routine returns 0,
451 * then then signal will be blocked. Only one block per process is
452 * allowed. priv is a pointer to private data that the notifier routine
453 * can use to determine if the signal should be blocked or not. */
454
455void
456block_all_signals(int (*notifier)(void *priv), void *priv, sigset_t *mask)
457{
458 unsigned long flags;
459
460 spin_lock_irqsave(&current->sighand->siglock, flags);
461 current->notifier_mask = mask;
462 current->notifier_data = priv;
463 current->notifier = notifier;
464 spin_unlock_irqrestore(&current->sighand->siglock, flags);
465}
466
467/* Notify the system that blocking has ended. */
468
469void
470unblock_all_signals(void)
471{
472 unsigned long flags;
473
474 spin_lock_irqsave(&current->sighand->siglock, flags);
475 current->notifier = NULL;
476 current->notifier_data = NULL;
477 recalc_sigpending();
478 spin_unlock_irqrestore(&current->sighand->siglock, flags);
479}
480
Oleg Nesterov100360f2008-07-25 01:47:29 -0700481static void collect_signal(int sig, struct sigpending *list, siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
483 struct sigqueue *q, *first = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 /*
486 * Collect the siginfo appropriate to this signal. Check if
487 * there is another siginfo for the same signal.
488 */
489 list_for_each_entry(q, &list->list, list) {
490 if (q->info.si_signo == sig) {
Oleg Nesterovd4434202008-07-25 01:47:28 -0700491 if (first)
492 goto still_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 first = q;
494 }
495 }
Oleg Nesterovd4434202008-07-25 01:47:28 -0700496
497 sigdelset(&list->signal, sig);
498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 if (first) {
Oleg Nesterovd4434202008-07-25 01:47:28 -0700500still_pending:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 list_del_init(&first->list);
502 copy_siginfo(info, &first->info);
503 __sigqueue_free(first);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 /* Ok, it wasn't in the queue. This must be
506 a fast-pathed signal or we must have been
507 out of queue space. So zero out the info.
508 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 info->si_signo = sig;
510 info->si_errno = 0;
Oleg Nesterov7486e5d2009-12-15 16:47:24 -0800511 info->si_code = SI_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 info->si_pid = 0;
513 info->si_uid = 0;
514 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515}
516
517static int __dequeue_signal(struct sigpending *pending, sigset_t *mask,
518 siginfo_t *info)
519{
Roland McGrath27d91e02006-09-29 02:00:31 -0700520 int sig = next_signal(pending, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 if (sig) {
523 if (current->notifier) {
524 if (sigismember(current->notifier_mask, sig)) {
525 if (!(current->notifier)(current->notifier_data)) {
526 clear_thread_flag(TIF_SIGPENDING);
527 return 0;
528 }
529 }
530 }
531
Oleg Nesterov100360f2008-07-25 01:47:29 -0700532 collect_signal(sig, pending, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535 return sig;
536}
537
538/*
539 * Dequeue a signal and return the element to the caller, which is
540 * expected to free it.
541 *
542 * All callers have to hold the siglock.
543 */
544int dequeue_signal(struct task_struct *tsk, sigset_t *mask, siginfo_t *info)
545{
Pavel Emelyanovc5363d02008-04-30 00:52:40 -0700546 int signr;
Benjamin Herrenschmidtcaec4e82007-06-12 08:16:18 +1000547
548 /* We only dequeue private signals from ourselves, we don't let
549 * signalfd steal them
550 */
Davide Libenzib8fceee2007-09-20 12:40:16 -0700551 signr = __dequeue_signal(&tsk->pending, mask, info);
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800552 if (!signr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 signr = __dequeue_signal(&tsk->signal->shared_pending,
554 mask, info);
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800555 /*
556 * itimer signal ?
557 *
558 * itimers are process shared and we restart periodic
559 * itimers in the signal delivery path to prevent DoS
560 * attacks in the high resolution timer case. This is
561 * compliant with the old way of self restarting
562 * itimers, as the SIGALRM is a legacy signal and only
563 * queued once. Changing the restart behaviour to
564 * restart the timer in the signal dequeue path is
565 * reducing the timer noise on heavy loaded !highres
566 * systems too.
567 */
568 if (unlikely(signr == SIGALRM)) {
569 struct hrtimer *tmr = &tsk->signal->real_timer;
570
571 if (!hrtimer_is_queued(tmr) &&
572 tsk->signal->it_real_incr.tv64 != 0) {
573 hrtimer_forward(tmr, tmr->base->get_time(),
574 tsk->signal->it_real_incr);
575 hrtimer_restart(tmr);
576 }
577 }
578 }
Pavel Emelyanovc5363d02008-04-30 00:52:40 -0700579
Davide Libenzib8fceee2007-09-20 12:40:16 -0700580 recalc_sigpending();
Pavel Emelyanovc5363d02008-04-30 00:52:40 -0700581 if (!signr)
582 return 0;
583
584 if (unlikely(sig_kernel_stop(signr))) {
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800585 /*
586 * Set a marker that we have dequeued a stop signal. Our
587 * caller might release the siglock and then the pending
588 * stop signal it is about to process is no longer in the
589 * pending bitmasks, but must still be cleared by a SIGCONT
590 * (and overruled by a SIGKILL). So those cases clear this
591 * shared flag after we've set it. Note that this flag may
592 * remain set after the signal we return is ignored or
593 * handled. That doesn't matter because its only purpose
594 * is to alert stop-signal processing code when another
595 * processor has come along and cleared the flag.
596 */
Oleg Nesterov92413d72008-07-25 01:47:30 -0700597 tsk->signal->flags |= SIGNAL_STOP_DEQUEUED;
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800598 }
Pavel Emelyanovc5363d02008-04-30 00:52:40 -0700599 if ((info->si_code & __SI_MASK) == __SI_TIMER && info->si_sys_private) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 /*
601 * Release the siglock to ensure proper locking order
602 * of timer locks outside of siglocks. Note, we leave
603 * irqs disabled here, since the posix-timers code is
604 * about to disable them again anyway.
605 */
606 spin_unlock(&tsk->sighand->siglock);
607 do_schedule_next_timer(info);
608 spin_lock(&tsk->sighand->siglock);
609 }
610 return signr;
611}
612
613/*
614 * Tell a process that it has a new active signal..
615 *
616 * NOTE! we rely on the previous spin_lock to
617 * lock interrupts for us! We can only be called with
618 * "siglock" held, and the local interrupt must
619 * have been disabled when that got acquired!
620 *
621 * No need to set need_resched since signal event passing
622 * goes through ->blocked
623 */
624void signal_wake_up(struct task_struct *t, int resume)
625{
626 unsigned int mask;
627
628 set_tsk_thread_flag(t, TIF_SIGPENDING);
629
630 /*
Matthew Wilcoxf021a3c2007-12-06 11:13:16 -0500631 * For SIGKILL, we want to wake it up in the stopped/traced/killable
632 * case. We don't check t->state here because there is a race with it
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 * executing another processor and just now entering stopped state.
634 * By using wake_up_state, we ensure the process will wake up and
635 * handle its death signal.
636 */
637 mask = TASK_INTERRUPTIBLE;
638 if (resume)
Matthew Wilcoxf021a3c2007-12-06 11:13:16 -0500639 mask |= TASK_WAKEKILL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 if (!wake_up_state(t, mask))
641 kick_process(t);
642}
643
644/*
645 * Remove signals in mask from the pending set and queue.
646 * Returns 1 if any signals were found.
647 *
648 * All callers must be holding the siglock.
George Anzinger71fabd52006-01-08 01:02:48 -0800649 *
650 * This version takes a sigset mask and looks at all signals,
651 * not just those in the first mask word.
652 */
653static int rm_from_queue_full(sigset_t *mask, struct sigpending *s)
654{
655 struct sigqueue *q, *n;
656 sigset_t m;
657
658 sigandsets(&m, mask, &s->signal);
659 if (sigisemptyset(&m))
660 return 0;
661
662 signandsets(&s->signal, &s->signal, mask);
663 list_for_each_entry_safe(q, n, &s->list, list) {
664 if (sigismember(mask, q->info.si_signo)) {
665 list_del_init(&q->list);
666 __sigqueue_free(q);
667 }
668 }
669 return 1;
670}
671/*
672 * Remove signals in mask from the pending set and queue.
673 * Returns 1 if any signals were found.
674 *
675 * All callers must be holding the siglock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 */
677static int rm_from_queue(unsigned long mask, struct sigpending *s)
678{
679 struct sigqueue *q, *n;
680
681 if (!sigtestsetmask(&s->signal, mask))
682 return 0;
683
684 sigdelsetmask(&s->signal, mask);
685 list_for_each_entry_safe(q, n, &s->list, list) {
686 if (q->info.si_signo < SIGRTMIN &&
687 (mask & sigmask(q->info.si_signo))) {
688 list_del_init(&q->list);
689 __sigqueue_free(q);
690 }
691 }
692 return 1;
693}
694
Oleg Nesterov614c5172009-12-15 16:47:22 -0800695static inline int is_si_special(const struct siginfo *info)
696{
697 return info <= SEND_SIG_FORCED;
698}
699
700static inline bool si_fromuser(const struct siginfo *info)
701{
702 return info == SEND_SIG_NOINFO ||
703 (!is_si_special(info) && SI_FROMUSER(info));
704}
705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706/*
707 * Bad permissions for sending the signal
David Howells694f6902010-08-04 16:59:14 +0100708 * - the caller must hold the RCU read lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 */
710static int check_kill_permission(int sig, struct siginfo *info,
711 struct task_struct *t)
712{
Oleg Nesterov065add32010-05-26 14:42:54 -0700713 const struct cred *cred, *tcred;
Oleg Nesterov2e2ba222008-04-30 00:53:01 -0700714 struct pid *sid;
Oleg Nesterov3b5e9e52008-04-30 00:52:42 -0700715 int error;
716
Jesper Juhl7ed20e12005-05-01 08:59:14 -0700717 if (!valid_signal(sig))
Oleg Nesterov3b5e9e52008-04-30 00:52:42 -0700718 return -EINVAL;
719
Oleg Nesterov614c5172009-12-15 16:47:22 -0800720 if (!si_fromuser(info))
Oleg Nesterov3b5e9e52008-04-30 00:52:42 -0700721 return 0;
722
723 error = audit_signal_info(sig, t); /* Let audit system see the signal */
724 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 return error;
Amy Griffise54dc242007-03-29 18:01:04 -0400726
Oleg Nesterov065add32010-05-26 14:42:54 -0700727 cred = current_cred();
David Howellsc69e8d92008-11-14 10:39:19 +1100728 tcred = __task_cred(t);
Oleg Nesterov065add32010-05-26 14:42:54 -0700729 if (!same_thread_group(current, t) &&
730 (cred->euid ^ tcred->suid) &&
David Howellsc69e8d92008-11-14 10:39:19 +1100731 (cred->euid ^ tcred->uid) &&
732 (cred->uid ^ tcred->suid) &&
733 (cred->uid ^ tcred->uid) &&
Oleg Nesterov2e2ba222008-04-30 00:53:01 -0700734 !capable(CAP_KILL)) {
735 switch (sig) {
736 case SIGCONT:
Oleg Nesterov2e2ba222008-04-30 00:53:01 -0700737 sid = task_session(t);
Oleg Nesterov2e2ba222008-04-30 00:53:01 -0700738 /*
739 * We don't return the error if sid == NULL. The
740 * task was unhashed, the caller must notice this.
741 */
742 if (!sid || sid == task_session(current))
743 break;
744 default:
745 return -EPERM;
746 }
747 }
Steve Grubbc2f0c7c2005-05-06 12:38:39 +0100748
Amy Griffise54dc242007-03-29 18:01:04 -0400749 return security_task_kill(t, info, sig, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750}
751
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752/*
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700753 * Handle magic process-wide effects of stop/continue signals. Unlike
754 * the signal actions, these happen immediately at signal-generation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 * time regardless of blocking, ignoring, or handling. This does the
756 * actual continuing for SIGCONT, but not the actual stopping for stop
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700757 * signals. The process stop is done as a signal action for SIG_DFL.
758 *
759 * Returns true if the signal should be actually delivered, otherwise
760 * it should be dropped.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 */
Sukadev Bhattiprolu921cf9f2009-04-02 16:58:05 -0700762static int prepare_signal(int sig, struct task_struct *p, int from_ancestor_ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763{
Oleg Nesterovad16a462008-04-30 00:52:46 -0700764 struct signal_struct *signal = p->signal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 struct task_struct *t;
766
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700767 if (unlikely(signal->flags & SIGNAL_GROUP_EXIT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 /*
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700769 * The process is in the middle of dying, nothing to do.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 */
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700771 } else if (sig_kernel_stop(sig)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 /*
773 * This is a stop signal. Remove SIGCONT from all queues.
774 */
Oleg Nesterovad16a462008-04-30 00:52:46 -0700775 rm_from_queue(sigmask(SIGCONT), &signal->shared_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 t = p;
777 do {
778 rm_from_queue(sigmask(SIGCONT), &t->pending);
Oleg Nesterovad16a462008-04-30 00:52:46 -0700779 } while_each_thread(p, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 } else if (sig == SIGCONT) {
Oleg Nesterovfc321d22008-04-30 00:52:46 -0700781 unsigned int why;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 /*
783 * Remove all stop signals from all queues,
784 * and wake all threads.
785 */
Oleg Nesterovad16a462008-04-30 00:52:46 -0700786 rm_from_queue(SIG_KERNEL_STOP_MASK, &signal->shared_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 t = p;
788 do {
789 unsigned int state;
Tejun Heo39efa3e2011-03-23 10:37:00 +0100790
791 task_clear_group_stop_pending(t);
792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 rm_from_queue(SIG_KERNEL_STOP_MASK, &t->pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 /*
795 * If there is a handler for SIGCONT, we must make
796 * sure that no thread returns to user mode before
797 * we post the signal, in case it was the only
798 * thread eligible to run the signal handler--then
799 * it must not do anything between resuming and
800 * running the handler. With the TIF_SIGPENDING
801 * flag set, the thread will pause and acquire the
802 * siglock that we hold now and until we've queued
Oleg Nesterovfc321d22008-04-30 00:52:46 -0700803 * the pending signal.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 *
805 * Wake up the stopped thread _after_ setting
806 * TIF_SIGPENDING
807 */
Matthew Wilcoxf021a3c2007-12-06 11:13:16 -0500808 state = __TASK_STOPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 if (sig_user_defined(t, SIGCONT) && !sigismember(&t->blocked, SIGCONT)) {
810 set_tsk_thread_flag(t, TIF_SIGPENDING);
811 state |= TASK_INTERRUPTIBLE;
812 }
813 wake_up_state(t, state);
Oleg Nesterovad16a462008-04-30 00:52:46 -0700814 } while_each_thread(p, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Oleg Nesterovfc321d22008-04-30 00:52:46 -0700816 /*
817 * Notify the parent with CLD_CONTINUED if we were stopped.
818 *
819 * If we were in the middle of a group stop, we pretend it
820 * was already finished, and then continued. Since SIGCHLD
821 * doesn't queue we report only CLD_STOPPED, as if the next
822 * CLD_CONTINUED was dropped.
823 */
824 why = 0;
Oleg Nesterovad16a462008-04-30 00:52:46 -0700825 if (signal->flags & SIGNAL_STOP_STOPPED)
Oleg Nesterovfc321d22008-04-30 00:52:46 -0700826 why |= SIGNAL_CLD_CONTINUED;
Oleg Nesterovad16a462008-04-30 00:52:46 -0700827 else if (signal->group_stop_count)
Oleg Nesterovfc321d22008-04-30 00:52:46 -0700828 why |= SIGNAL_CLD_STOPPED;
829
830 if (why) {
Oleg Nesterov021e1ae2008-04-30 00:53:00 -0700831 /*
Roland McGrathae6d2ed2009-09-23 15:56:53 -0700832 * The first thread which returns from do_signal_stop()
Oleg Nesterov021e1ae2008-04-30 00:53:00 -0700833 * will take ->siglock, notice SIGNAL_CLD_MASK, and
834 * notify its parent. See get_signal_to_deliver().
835 */
Oleg Nesterovad16a462008-04-30 00:52:46 -0700836 signal->flags = why | SIGNAL_STOP_CONTINUED;
837 signal->group_stop_count = 0;
838 signal->group_exit_code = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 } else {
840 /*
841 * We are not stopped, but there could be a stop
842 * signal in the middle of being processed after
843 * being removed from the queue. Clear that too.
844 */
Oleg Nesterovad16a462008-04-30 00:52:46 -0700845 signal->flags &= ~SIGNAL_STOP_DEQUEUED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 }
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700848
Sukadev Bhattiprolu921cf9f2009-04-02 16:58:05 -0700849 return !sig_ignored(p, sig, from_ancestor_ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850}
851
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700852/*
853 * Test if P wants to take SIG. After we've checked all threads with this,
854 * it's equivalent to finding no threads not blocking SIG. Any threads not
855 * blocking SIG were ruled out because they are not running and already
856 * have pending signals. Such threads will dequeue from the shared queue
857 * as soon as they're available, so putting the signal on the shared queue
858 * will be equivalent to sending it to one such thread.
859 */
860static inline int wants_signal(int sig, struct task_struct *p)
861{
862 if (sigismember(&p->blocked, sig))
863 return 0;
864 if (p->flags & PF_EXITING)
865 return 0;
866 if (sig == SIGKILL)
867 return 1;
868 if (task_is_stopped_or_traced(p))
869 return 0;
870 return task_curr(p) || !signal_pending(p);
871}
872
Oleg Nesterov5fcd8352008-04-30 00:52:55 -0700873static void complete_signal(int sig, struct task_struct *p, int group)
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700874{
875 struct signal_struct *signal = p->signal;
876 struct task_struct *t;
877
878 /*
879 * Now find a thread we can wake up to take the signal off the queue.
880 *
881 * If the main thread wants the signal, it gets first crack.
882 * Probably the least surprising to the average bear.
883 */
884 if (wants_signal(sig, p))
885 t = p;
Oleg Nesterov5fcd8352008-04-30 00:52:55 -0700886 else if (!group || thread_group_empty(p))
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700887 /*
888 * There is just one thread and it does not need to be woken.
889 * It will dequeue unblocked signals before it runs again.
890 */
891 return;
892 else {
893 /*
894 * Otherwise try to find a suitable thread.
895 */
896 t = signal->curr_target;
897 while (!wants_signal(sig, t)) {
898 t = next_thread(t);
899 if (t == signal->curr_target)
900 /*
901 * No thread needs to be woken.
902 * Any eligible threads will see
903 * the signal in the queue soon.
904 */
905 return;
906 }
907 signal->curr_target = t;
908 }
909
910 /*
911 * Found a killable thread. If the signal will be fatal,
912 * then start taking the whole group down immediately.
913 */
Oleg Nesterovfae5fa42008-04-30 00:53:03 -0700914 if (sig_fatal(p, sig) &&
915 !(signal->flags & (SIGNAL_UNKILLABLE | SIGNAL_GROUP_EXIT)) &&
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700916 !sigismember(&t->real_blocked, sig) &&
Roland McGrath445a91d2008-07-25 19:45:52 -0700917 (sig == SIGKILL ||
Oleg Nesterov43918f22009-04-02 16:58:00 -0700918 !tracehook_consider_fatal_signal(t, sig))) {
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700919 /*
920 * This signal will be fatal to the whole group.
921 */
922 if (!sig_kernel_coredump(sig)) {
923 /*
924 * Start a group exit and wake everybody up.
925 * This way we don't have other threads
926 * running and doing things after a slower
927 * thread has the fatal signal pending.
928 */
929 signal->flags = SIGNAL_GROUP_EXIT;
930 signal->group_exit_code = sig;
931 signal->group_stop_count = 0;
932 t = p;
933 do {
Tejun Heo39efa3e2011-03-23 10:37:00 +0100934 task_clear_group_stop_pending(t);
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700935 sigaddset(&t->pending.signal, SIGKILL);
936 signal_wake_up(t, 1);
937 } while_each_thread(p, t);
938 return;
939 }
940 }
941
942 /*
943 * The signal is already in the shared-pending queue.
944 * Tell the chosen thread to wake up and dequeue it.
945 */
946 signal_wake_up(t, sig == SIGKILL);
947 return;
948}
949
Pavel Emelyanovaf7fff92008-04-30 00:52:34 -0700950static inline int legacy_queue(struct sigpending *signals, int sig)
951{
952 return (sig < SIGRTMIN) && sigismember(&signals->signal, sig);
953}
954
Sukadev Bhattiprolu7978b562009-04-02 16:58:04 -0700955static int __send_signal(int sig, struct siginfo *info, struct task_struct *t,
956 int group, int from_ancestor_ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957{
Oleg Nesterov2ca35152008-04-30 00:52:54 -0700958 struct sigpending *pending;
Oleg Nesterov6e65acb2008-04-30 00:52:50 -0700959 struct sigqueue *q;
Vegard Nossum7a0aeb12009-05-16 11:28:33 +0200960 int override_rlimit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
Masami Hiramatsud1eb6502009-11-24 16:56:45 -0500962 trace_signal_generate(sig, info, t);
Mathieu Desnoyers0a16b602008-07-18 12:16:17 -0400963
Oleg Nesterov6e65acb2008-04-30 00:52:50 -0700964 assert_spin_locked(&t->sighand->siglock);
Sukadev Bhattiprolu921cf9f2009-04-02 16:58:05 -0700965
966 if (!prepare_signal(sig, t, from_ancestor_ns))
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700967 return 0;
Oleg Nesterov2ca35152008-04-30 00:52:54 -0700968
969 pending = group ? &t->signal->shared_pending : &t->pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 /*
Pavel Emelyanov2acb0242008-04-30 00:52:35 -0700971 * Short-circuit ignored signals and support queuing
972 * exactly one non-rt signal, so that we can get more
973 * detailed information about the cause of the signal.
974 */
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700975 if (legacy_queue(pending, sig))
Pavel Emelyanov2acb0242008-04-30 00:52:35 -0700976 return 0;
Davide Libenzifba2afa2007-05-10 22:23:13 -0700977 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 * fast-pathed signals for kernel-internal things like SIGSTOP
979 * or SIGKILL.
980 */
Oleg Nesterovb67a1b92005-10-30 15:03:44 -0800981 if (info == SEND_SIG_FORCED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 goto out_set;
983
984 /* Real-time signals must be queued if sent by sigqueue, or
985 some other real-time mechanism. It is implementation
986 defined whether kill() does so. We attempt to do so, on
987 the principle of least surprise, but since kill is not
988 allowed to fail with EAGAIN when low on memory we just
989 make sure at least one signal gets delivered and don't
990 pass on the info struct. */
991
Vegard Nossum7a0aeb12009-05-16 11:28:33 +0200992 if (sig < SIGRTMIN)
993 override_rlimit = (is_si_special(info) || info->si_code >= 0);
994 else
995 override_rlimit = 0;
996
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +0900997 q = __sigqueue_alloc(sig, t, GFP_ATOMIC | __GFP_NOTRACK_FALSE_POSITIVE,
Vegard Nossum7a0aeb12009-05-16 11:28:33 +0200998 override_rlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 if (q) {
Oleg Nesterov2ca35152008-04-30 00:52:54 -07001000 list_add_tail(&q->list, &pending->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 switch ((unsigned long) info) {
Oleg Nesterovb67a1b92005-10-30 15:03:44 -08001002 case (unsigned long) SEND_SIG_NOINFO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 q->info.si_signo = sig;
1004 q->info.si_errno = 0;
1005 q->info.si_code = SI_USER;
Sukadev Bhattiprolu9cd4fd12009-01-06 14:42:46 -08001006 q->info.si_pid = task_tgid_nr_ns(current,
Sukadev Bhattiprolu09bca052009-01-06 14:42:45 -08001007 task_active_pid_ns(t));
David Howells76aac0e2008-11-14 10:39:12 +11001008 q->info.si_uid = current_uid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 break;
Oleg Nesterovb67a1b92005-10-30 15:03:44 -08001010 case (unsigned long) SEND_SIG_PRIV:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 q->info.si_signo = sig;
1012 q->info.si_errno = 0;
1013 q->info.si_code = SI_KERNEL;
1014 q->info.si_pid = 0;
1015 q->info.si_uid = 0;
1016 break;
1017 default:
1018 copy_siginfo(&q->info, info);
Sukadev Bhattiprolu6588c1e2009-04-02 16:58:09 -07001019 if (from_ancestor_ns)
1020 q->info.si_pid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 break;
1022 }
Oleg Nesterov621d3122005-10-30 15:03:45 -08001023 } else if (!is_si_special(info)) {
Masami Hiramatsuba005e12009-11-24 16:56:58 -05001024 if (sig >= SIGRTMIN && info->si_code != SI_USER) {
1025 /*
1026 * Queue overflow, abort. We may abort if the
1027 * signal was rt and sent by user using something
1028 * other than kill().
1029 */
1030 trace_signal_overflow_fail(sig, group, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 return -EAGAIN;
Masami Hiramatsuba005e12009-11-24 16:56:58 -05001032 } else {
1033 /*
1034 * This is a silent loss of information. We still
1035 * send the signal, but the *info bits are lost.
1036 */
1037 trace_signal_lose_info(sig, group, info);
1038 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 }
1040
1041out_set:
Oleg Nesterov53c30332008-04-30 00:53:00 -07001042 signalfd_notify(t, sig);
Oleg Nesterov2ca35152008-04-30 00:52:54 -07001043 sigaddset(&pending->signal, sig);
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -07001044 complete_signal(sig, t, group);
1045 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046}
1047
Sukadev Bhattiprolu7978b562009-04-02 16:58:04 -07001048static int send_signal(int sig, struct siginfo *info, struct task_struct *t,
1049 int group)
1050{
Sukadev Bhattiprolu921cf9f2009-04-02 16:58:05 -07001051 int from_ancestor_ns = 0;
1052
1053#ifdef CONFIG_PID_NS
Oleg Nesterovdd342002009-12-15 16:47:24 -08001054 from_ancestor_ns = si_fromuser(info) &&
1055 !task_pid_nr_ns(current, task_active_pid_ns(t));
Sukadev Bhattiprolu921cf9f2009-04-02 16:58:05 -07001056#endif
1057
1058 return __send_signal(sig, info, t, group, from_ancestor_ns);
Sukadev Bhattiprolu7978b562009-04-02 16:58:04 -07001059}
1060
Ingo Molnar45807a12007-07-15 23:40:10 -07001061static void print_fatal_signal(struct pt_regs *regs, int signr)
1062{
1063 printk("%s/%d: potentially unexpected fatal signal %d.\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001064 current->comm, task_pid_nr(current), signr);
Ingo Molnar45807a12007-07-15 23:40:10 -07001065
Al Viroca5cd872007-10-29 04:31:16 +00001066#if defined(__i386__) && !defined(__arch_um__)
H. Peter Anvin65ea5b02008-01-30 13:30:56 +01001067 printk("code at %08lx: ", regs->ip);
Ingo Molnar45807a12007-07-15 23:40:10 -07001068 {
1069 int i;
1070 for (i = 0; i < 16; i++) {
1071 unsigned char insn;
1072
Andi Kleenb45c6e72010-01-08 14:42:52 -08001073 if (get_user(insn, (unsigned char *)(regs->ip + i)))
1074 break;
Ingo Molnar45807a12007-07-15 23:40:10 -07001075 printk("%02x ", insn);
1076 }
1077 }
1078#endif
1079 printk("\n");
Ed Swierk3a9f84d2009-01-26 15:33:31 -08001080 preempt_disable();
Ingo Molnar45807a12007-07-15 23:40:10 -07001081 show_regs(regs);
Ed Swierk3a9f84d2009-01-26 15:33:31 -08001082 preempt_enable();
Ingo Molnar45807a12007-07-15 23:40:10 -07001083}
1084
1085static int __init setup_print_fatal_signals(char *str)
1086{
1087 get_option (&str, &print_fatal_signals);
1088
1089 return 1;
1090}
1091
1092__setup("print-fatal-signals=", setup_print_fatal_signals);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -07001094int
1095__group_send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
1096{
1097 return send_signal(sig, info, p, 1);
1098}
1099
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100static int
1101specific_send_sig_info(int sig, struct siginfo *info, struct task_struct *t)
1102{
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -07001103 return send_signal(sig, info, t, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104}
1105
Oleg Nesterov4a30deb2009-09-23 15:57:00 -07001106int do_send_sig_info(int sig, struct siginfo *info, struct task_struct *p,
1107 bool group)
1108{
1109 unsigned long flags;
1110 int ret = -ESRCH;
1111
1112 if (lock_task_sighand(p, &flags)) {
1113 ret = send_signal(sig, info, p, group);
1114 unlock_task_sighand(p, &flags);
1115 }
1116
1117 return ret;
1118}
1119
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120/*
1121 * Force a signal that the process can't ignore: if necessary
1122 * we unblock the signal and change any SIG_IGN to SIG_DFL.
Linus Torvaldsae74c3b2006-08-02 20:17:49 -07001123 *
1124 * Note: If we unblock the signal, we always reset it to SIG_DFL,
1125 * since we do not want to have a signal handler that was blocked
1126 * be invoked when user space had explicitly blocked it.
1127 *
Oleg Nesterov80fe7282008-04-30 00:53:05 -07001128 * We don't want to have recursive SIGSEGV's etc, for example,
1129 * that is why we also clear SIGNAL_UNKILLABLE.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131int
1132force_sig_info(int sig, struct siginfo *info, struct task_struct *t)
1133{
1134 unsigned long int flags;
Linus Torvaldsae74c3b2006-08-02 20:17:49 -07001135 int ret, blocked, ignored;
1136 struct k_sigaction *action;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
1138 spin_lock_irqsave(&t->sighand->siglock, flags);
Linus Torvaldsae74c3b2006-08-02 20:17:49 -07001139 action = &t->sighand->action[sig-1];
1140 ignored = action->sa.sa_handler == SIG_IGN;
1141 blocked = sigismember(&t->blocked, sig);
1142 if (blocked || ignored) {
1143 action->sa.sa_handler = SIG_DFL;
1144 if (blocked) {
1145 sigdelset(&t->blocked, sig);
Roland McGrath7bb44ad2007-05-23 13:57:44 -07001146 recalc_sigpending_and_wake(t);
Linus Torvaldsae74c3b2006-08-02 20:17:49 -07001147 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 }
Oleg Nesterov80fe7282008-04-30 00:53:05 -07001149 if (action->sa.sa_handler == SIG_DFL)
1150 t->signal->flags &= ~SIGNAL_UNKILLABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 ret = specific_send_sig_info(sig, info, t);
1152 spin_unlock_irqrestore(&t->sighand->siglock, flags);
1153
1154 return ret;
1155}
1156
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157/*
1158 * Nuke all other threads in the group.
1159 */
Oleg Nesterov09faef12010-05-26 14:43:11 -07001160int zap_other_threads(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161{
Oleg Nesterov09faef12010-05-26 14:43:11 -07001162 struct task_struct *t = p;
1163 int count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 p->signal->group_stop_count = 0;
1166
Oleg Nesterov09faef12010-05-26 14:43:11 -07001167 while_each_thread(p, t) {
Tejun Heo39efa3e2011-03-23 10:37:00 +01001168 task_clear_group_stop_pending(t);
Oleg Nesterov09faef12010-05-26 14:43:11 -07001169 count++;
1170
1171 /* Don't bother with already dead threads */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 if (t->exit_state)
1173 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 sigaddset(&t->pending.signal, SIGKILL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 signal_wake_up(t, 1);
1176 }
Oleg Nesterov09faef12010-05-26 14:43:11 -07001177
1178 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179}
1180
Namhyung Kimb8ed3742010-10-27 15:34:06 -07001181struct sighand_struct *__lock_task_sighand(struct task_struct *tsk,
1182 unsigned long *flags)
Oleg Nesterovf63ee722006-03-28 16:11:13 -08001183{
1184 struct sighand_struct *sighand;
1185
Oleg Nesterov1406f2d2008-04-30 00:52:37 -07001186 rcu_read_lock();
Oleg Nesterovf63ee722006-03-28 16:11:13 -08001187 for (;;) {
1188 sighand = rcu_dereference(tsk->sighand);
1189 if (unlikely(sighand == NULL))
1190 break;
1191
1192 spin_lock_irqsave(&sighand->siglock, *flags);
1193 if (likely(sighand == tsk->sighand))
1194 break;
1195 spin_unlock_irqrestore(&sighand->siglock, *flags);
1196 }
Oleg Nesterov1406f2d2008-04-30 00:52:37 -07001197 rcu_read_unlock();
Oleg Nesterovf63ee722006-03-28 16:11:13 -08001198
1199 return sighand;
1200}
1201
David Howellsc69e8d92008-11-14 10:39:19 +11001202/*
1203 * send signal info to all the members of a group
David Howellsc69e8d92008-11-14 10:39:19 +11001204 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205int group_send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
1206{
David Howells694f6902010-08-04 16:59:14 +01001207 int ret;
1208
1209 rcu_read_lock();
1210 ret = check_kill_permission(sig, info, p);
1211 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
Oleg Nesterov4a30deb2009-09-23 15:57:00 -07001213 if (!ret && sig)
1214 ret = do_send_sig_info(sig, info, p, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
1216 return ret;
1217}
1218
1219/*
Pavel Emelyanov146a5052008-02-08 04:19:22 -08001220 * __kill_pgrp_info() sends a signal to a process group: this is what the tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 * control characters do (^C, ^Z etc)
David Howellsc69e8d92008-11-14 10:39:19 +11001222 * - the caller must hold at least a readlock on tasklist_lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 */
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001224int __kill_pgrp_info(int sig, struct siginfo *info, struct pid *pgrp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225{
1226 struct task_struct *p = NULL;
1227 int retval, success;
1228
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 success = 0;
1230 retval = -ESRCH;
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001231 do_each_pid_task(pgrp, PIDTYPE_PGID, p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 int err = group_send_sig_info(sig, info, p);
1233 success |= !err;
1234 retval = err;
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001235 } while_each_pid_task(pgrp, PIDTYPE_PGID, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 return success ? 0 : retval;
1237}
1238
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001239int kill_pid_info(int sig, struct siginfo *info, struct pid *pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240{
Oleg Nesterovd36174b2008-02-08 04:19:18 -08001241 int error = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 struct task_struct *p;
1243
Ingo Molnare56d0902006-01-08 01:01:37 -08001244 rcu_read_lock();
Oleg Nesterovd36174b2008-02-08 04:19:18 -08001245retry:
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001246 p = pid_task(pid, PIDTYPE_PID);
Oleg Nesterovd36174b2008-02-08 04:19:18 -08001247 if (p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 error = group_send_sig_info(sig, info, p);
Oleg Nesterovd36174b2008-02-08 04:19:18 -08001249 if (unlikely(error == -ESRCH))
1250 /*
1251 * The task was unhashed in between, try again.
1252 * If it is dead, pid_task() will return NULL,
1253 * if we race with de_thread() it will find the
1254 * new leader.
1255 */
1256 goto retry;
1257 }
Ingo Molnare56d0902006-01-08 01:01:37 -08001258 rcu_read_unlock();
Oleg Nesterov6ca25b52008-04-30 00:52:45 -07001259
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 return error;
1261}
1262
Matthew Wilcoxc3de4b32007-02-09 08:11:47 -07001263int
1264kill_proc_info(int sig, struct siginfo *info, pid_t pid)
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001265{
1266 int error;
1267 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001268 error = kill_pid_info(sig, info, find_vpid(pid));
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001269 rcu_read_unlock();
1270 return error;
1271}
1272
Eric W. Biederman2425c082006-10-02 02:17:28 -07001273/* like kill_pid_info(), but doesn't use uid/euid of "current" */
1274int kill_pid_info_as_uid(int sig, struct siginfo *info, struct pid *pid,
David Quigley8f95dc52006-06-30 01:55:47 -07001275 uid_t uid, uid_t euid, u32 secid)
Harald Welte46113832005-10-10 19:44:29 +02001276{
1277 int ret = -EINVAL;
1278 struct task_struct *p;
David Howellsc69e8d92008-11-14 10:39:19 +11001279 const struct cred *pcred;
Thomas Gleixner14d8c9f2009-12-10 00:53:17 +00001280 unsigned long flags;
Harald Welte46113832005-10-10 19:44:29 +02001281
1282 if (!valid_signal(sig))
1283 return ret;
1284
Thomas Gleixner14d8c9f2009-12-10 00:53:17 +00001285 rcu_read_lock();
Eric W. Biederman2425c082006-10-02 02:17:28 -07001286 p = pid_task(pid, PIDTYPE_PID);
Harald Welte46113832005-10-10 19:44:29 +02001287 if (!p) {
1288 ret = -ESRCH;
1289 goto out_unlock;
1290 }
David Howellsc69e8d92008-11-14 10:39:19 +11001291 pcred = __task_cred(p);
Oleg Nesterov614c5172009-12-15 16:47:22 -08001292 if (si_fromuser(info) &&
David Howellsc69e8d92008-11-14 10:39:19 +11001293 euid != pcred->suid && euid != pcred->uid &&
1294 uid != pcred->suid && uid != pcred->uid) {
Harald Welte46113832005-10-10 19:44:29 +02001295 ret = -EPERM;
1296 goto out_unlock;
1297 }
David Quigley8f95dc52006-06-30 01:55:47 -07001298 ret = security_task_kill(p, info, sig, secid);
1299 if (ret)
1300 goto out_unlock;
Thomas Gleixner14d8c9f2009-12-10 00:53:17 +00001301
1302 if (sig) {
1303 if (lock_task_sighand(p, &flags)) {
1304 ret = __send_signal(sig, info, p, 1, 0);
1305 unlock_task_sighand(p, &flags);
1306 } else
1307 ret = -ESRCH;
Harald Welte46113832005-10-10 19:44:29 +02001308 }
1309out_unlock:
Thomas Gleixner14d8c9f2009-12-10 00:53:17 +00001310 rcu_read_unlock();
Harald Welte46113832005-10-10 19:44:29 +02001311 return ret;
1312}
Eric W. Biederman2425c082006-10-02 02:17:28 -07001313EXPORT_SYMBOL_GPL(kill_pid_info_as_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
1315/*
1316 * kill_something_info() interprets pid in interesting ways just like kill(2).
1317 *
1318 * POSIX specifies that kill(-1,sig) is unspecified, but what we have
1319 * is probably wrong. Should make it like BSD or SYSV.
1320 */
1321
Gustavo Fernando Padovanbc64efd2008-07-25 01:47:33 -07001322static int kill_something_info(int sig, struct siginfo *info, pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323{
Eric W. Biederman8d42db182007-02-12 00:52:55 -08001324 int ret;
Pavel Emelyanovd5df7632008-02-08 04:19:22 -08001325
1326 if (pid > 0) {
1327 rcu_read_lock();
1328 ret = kill_pid_info(sig, info, find_vpid(pid));
1329 rcu_read_unlock();
1330 return ret;
1331 }
1332
1333 read_lock(&tasklist_lock);
1334 if (pid != -1) {
1335 ret = __kill_pgrp_info(sig, info,
1336 pid ? find_vpid(-pid) : task_pgrp(current));
1337 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 int retval = 0, count = 0;
1339 struct task_struct * p;
1340
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 for_each_process(p) {
Sukadev Bhattiprolud25141a2008-10-29 14:01:11 -07001342 if (task_pid_vnr(p) > 1 &&
1343 !same_thread_group(p, current)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 int err = group_send_sig_info(sig, info, p);
1345 ++count;
1346 if (err != -EPERM)
1347 retval = err;
1348 }
1349 }
Eric W. Biederman8d42db182007-02-12 00:52:55 -08001350 ret = count ? retval : -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 }
Pavel Emelyanovd5df7632008-02-08 04:19:22 -08001352 read_unlock(&tasklist_lock);
1353
Eric W. Biederman8d42db182007-02-12 00:52:55 -08001354 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355}
1356
1357/*
1358 * These are for backward compatibility with the rest of the kernel source.
1359 */
1360
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361int
1362send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
1363{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 /*
1365 * Make sure legacy kernel users don't send in bad values
1366 * (normal paths check this in check_kill_permission).
1367 */
Jesper Juhl7ed20e12005-05-01 08:59:14 -07001368 if (!valid_signal(sig))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 return -EINVAL;
1370
Oleg Nesterov4a30deb2009-09-23 15:57:00 -07001371 return do_send_sig_info(sig, info, p, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372}
1373
Oleg Nesterovb67a1b92005-10-30 15:03:44 -08001374#define __si_special(priv) \
1375 ((priv) ? SEND_SIG_PRIV : SEND_SIG_NOINFO)
1376
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377int
1378send_sig(int sig, struct task_struct *p, int priv)
1379{
Oleg Nesterovb67a1b92005-10-30 15:03:44 -08001380 return send_sig_info(sig, __si_special(priv), p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381}
1382
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383void
1384force_sig(int sig, struct task_struct *p)
1385{
Oleg Nesterovb67a1b92005-10-30 15:03:44 -08001386 force_sig_info(sig, SEND_SIG_PRIV, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387}
1388
1389/*
1390 * When things go south during signal handling, we
1391 * will force a SIGSEGV. And if the signal that caused
1392 * the problem was already a SIGSEGV, we'll want to
1393 * make sure we don't even try to deliver the signal..
1394 */
1395int
1396force_sigsegv(int sig, struct task_struct *p)
1397{
1398 if (sig == SIGSEGV) {
1399 unsigned long flags;
1400 spin_lock_irqsave(&p->sighand->siglock, flags);
1401 p->sighand->action[sig - 1].sa.sa_handler = SIG_DFL;
1402 spin_unlock_irqrestore(&p->sighand->siglock, flags);
1403 }
1404 force_sig(SIGSEGV, p);
1405 return 0;
1406}
1407
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001408int kill_pgrp(struct pid *pid, int sig, int priv)
1409{
Pavel Emelyanov146a5052008-02-08 04:19:22 -08001410 int ret;
1411
1412 read_lock(&tasklist_lock);
1413 ret = __kill_pgrp_info(sig, __si_special(priv), pid);
1414 read_unlock(&tasklist_lock);
1415
1416 return ret;
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001417}
1418EXPORT_SYMBOL(kill_pgrp);
1419
1420int kill_pid(struct pid *pid, int sig, int priv)
1421{
1422 return kill_pid_info(sig, __si_special(priv), pid);
1423}
1424EXPORT_SYMBOL(kill_pid);
1425
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426/*
1427 * These functions support sending signals using preallocated sigqueue
1428 * structures. This is needed "because realtime applications cannot
1429 * afford to lose notifications of asynchronous events, like timer
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +09001430 * expirations or I/O completions". In the case of Posix Timers
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 * we allocate the sigqueue structure from the timer_create. If this
1432 * allocation fails we are able to report the failure to the application
1433 * with an EAGAIN error.
1434 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435struct sigqueue *sigqueue_alloc(void)
1436{
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +09001437 struct sigqueue *q = __sigqueue_alloc(-1, current, GFP_KERNEL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +09001439 if (q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 q->flags |= SIGQUEUE_PREALLOC;
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +09001441
1442 return q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443}
1444
1445void sigqueue_free(struct sigqueue *q)
1446{
1447 unsigned long flags;
Oleg Nesterov60187d22007-08-30 23:56:35 -07001448 spinlock_t *lock = &current->sighand->siglock;
1449
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 BUG_ON(!(q->flags & SIGQUEUE_PREALLOC));
1451 /*
Oleg Nesterovc8e85b4f2008-05-26 20:55:42 +04001452 * We must hold ->siglock while testing q->list
1453 * to serialize with collect_signal() or with
Oleg Nesterovda7978b2008-05-23 13:04:41 -07001454 * __exit_signal()->flush_sigqueue().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 */
Oleg Nesterov60187d22007-08-30 23:56:35 -07001456 spin_lock_irqsave(lock, flags);
Oleg Nesterovc8e85b4f2008-05-26 20:55:42 +04001457 q->flags &= ~SIGQUEUE_PREALLOC;
1458 /*
1459 * If it is queued it will be freed when dequeued,
1460 * like the "regular" sigqueue.
1461 */
Oleg Nesterov60187d22007-08-30 23:56:35 -07001462 if (!list_empty(&q->list))
Oleg Nesterovc8e85b4f2008-05-26 20:55:42 +04001463 q = NULL;
Oleg Nesterov60187d22007-08-30 23:56:35 -07001464 spin_unlock_irqrestore(lock, flags);
1465
Oleg Nesterovc8e85b4f2008-05-26 20:55:42 +04001466 if (q)
1467 __sigqueue_free(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468}
1469
Oleg Nesterovac5c2152008-04-30 00:52:57 -07001470int send_sigqueue(struct sigqueue *q, struct task_struct *t, int group)
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001471{
Oleg Nesterove62e6652008-04-30 00:52:56 -07001472 int sig = q->info.si_signo;
Oleg Nesterov2ca35152008-04-30 00:52:54 -07001473 struct sigpending *pending;
Oleg Nesterove62e6652008-04-30 00:52:56 -07001474 unsigned long flags;
1475 int ret;
Oleg Nesterov2ca35152008-04-30 00:52:54 -07001476
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -07001477 BUG_ON(!(q->flags & SIGQUEUE_PREALLOC));
Oleg Nesterove62e6652008-04-30 00:52:56 -07001478
1479 ret = -1;
1480 if (!likely(lock_task_sighand(t, &flags)))
1481 goto ret;
1482
Oleg Nesterov7e695a52008-04-30 00:52:59 -07001483 ret = 1; /* the signal is ignored */
Sukadev Bhattiprolu921cf9f2009-04-02 16:58:05 -07001484 if (!prepare_signal(sig, t, 0))
Oleg Nesterove62e6652008-04-30 00:52:56 -07001485 goto out;
1486
1487 ret = 0;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001488 if (unlikely(!list_empty(&q->list))) {
1489 /*
1490 * If an SI_TIMER entry is already queue just increment
1491 * the overrun count.
1492 */
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001493 BUG_ON(q->info.si_code != SI_TIMER);
1494 q->info.si_overrun++;
Oleg Nesterove62e6652008-04-30 00:52:56 -07001495 goto out;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001496 }
Oleg Nesterovba661292008-07-23 20:52:05 +04001497 q->info.si_overrun = 0;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001498
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001499 signalfd_notify(t, sig);
Oleg Nesterov2ca35152008-04-30 00:52:54 -07001500 pending = group ? &t->signal->shared_pending : &t->pending;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001501 list_add_tail(&q->list, &pending->list);
1502 sigaddset(&pending->signal, sig);
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -07001503 complete_signal(sig, t, group);
Oleg Nesterove62e6652008-04-30 00:52:56 -07001504out:
1505 unlock_task_sighand(t, &flags);
1506ret:
1507 return ret;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001508}
1509
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 * Let a parent know about the death of a child.
1512 * For a stopped/continued status change, use do_notify_parent_cldstop instead.
Roland McGrath2b2a1ff2008-07-25 19:45:54 -07001513 *
1514 * Returns -1 if our parent ignored us and so we've switched to
1515 * self-reaping, or else @sig.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 */
Roland McGrath2b2a1ff2008-07-25 19:45:54 -07001517int do_notify_parent(struct task_struct *tsk, int sig)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518{
1519 struct siginfo info;
1520 unsigned long flags;
1521 struct sighand_struct *psig;
Roland McGrath1b046242008-08-19 20:37:07 -07001522 int ret = sig;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
1524 BUG_ON(sig == -1);
1525
1526 /* do_notify_parent_cldstop should have been called instead. */
Matthew Wilcoxe1abb392007-12-06 11:07:35 -05001527 BUG_ON(task_is_stopped_or_traced(tsk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
Oleg Nesterov5cb11442009-06-17 16:27:30 -07001529 BUG_ON(!task_ptrace(tsk) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 (tsk->group_leader != tsk || !thread_group_empty(tsk)));
1531
1532 info.si_signo = sig;
1533 info.si_errno = 0;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001534 /*
1535 * we are under tasklist_lock here so our parent is tied to
1536 * us and cannot exit and release its namespace.
1537 *
1538 * the only it can is to switch its nsproxy with sys_unshare,
1539 * bu uncharing pid namespaces is not allowed, so we'll always
1540 * see relevant namespace
1541 *
1542 * write_lock() currently calls preempt_disable() which is the
1543 * same as rcu_read_lock(), but according to Oleg, this is not
1544 * correct to rely on this
1545 */
1546 rcu_read_lock();
1547 info.si_pid = task_pid_nr_ns(tsk, tsk->parent->nsproxy->pid_ns);
David Howellsc69e8d92008-11-14 10:39:19 +11001548 info.si_uid = __task_cred(tsk)->uid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001549 rcu_read_unlock();
1550
Peter Zijlstra32bd6712009-02-05 12:24:15 +01001551 info.si_utime = cputime_to_clock_t(cputime_add(tsk->utime,
1552 tsk->signal->utime));
1553 info.si_stime = cputime_to_clock_t(cputime_add(tsk->stime,
1554 tsk->signal->stime));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
1556 info.si_status = tsk->exit_code & 0x7f;
1557 if (tsk->exit_code & 0x80)
1558 info.si_code = CLD_DUMPED;
1559 else if (tsk->exit_code & 0x7f)
1560 info.si_code = CLD_KILLED;
1561 else {
1562 info.si_code = CLD_EXITED;
1563 info.si_status = tsk->exit_code >> 8;
1564 }
1565
1566 psig = tsk->parent->sighand;
1567 spin_lock_irqsave(&psig->siglock, flags);
Oleg Nesterov5cb11442009-06-17 16:27:30 -07001568 if (!task_ptrace(tsk) && sig == SIGCHLD &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 (psig->action[SIGCHLD-1].sa.sa_handler == SIG_IGN ||
1570 (psig->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDWAIT))) {
1571 /*
1572 * We are exiting and our parent doesn't care. POSIX.1
1573 * defines special semantics for setting SIGCHLD to SIG_IGN
1574 * or setting the SA_NOCLDWAIT flag: we should be reaped
1575 * automatically and not left for our parent's wait4 call.
1576 * Rather than having the parent do it as a magic kind of
1577 * signal handler, we just set this to tell do_exit that we
1578 * can be cleaned up without becoming a zombie. Note that
1579 * we still call __wake_up_parent in this case, because a
1580 * blocked sys_wait4 might now return -ECHILD.
1581 *
1582 * Whether we send SIGCHLD or not for SA_NOCLDWAIT
1583 * is implementation-defined: we do (if you don't want
1584 * it, just use SIG_IGN instead).
1585 */
Roland McGrath1b046242008-08-19 20:37:07 -07001586 ret = tsk->exit_signal = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 if (psig->action[SIGCHLD-1].sa.sa_handler == SIG_IGN)
Roland McGrath2b2a1ff2008-07-25 19:45:54 -07001588 sig = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 }
Jesper Juhl7ed20e12005-05-01 08:59:14 -07001590 if (valid_signal(sig) && sig > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 __group_send_sig_info(sig, &info, tsk->parent);
1592 __wake_up_parent(tsk, tsk->parent);
1593 spin_unlock_irqrestore(&psig->siglock, flags);
Roland McGrath2b2a1ff2008-07-25 19:45:54 -07001594
Roland McGrath1b046242008-08-19 20:37:07 -07001595 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596}
1597
Tejun Heo75b95952011-03-23 10:37:01 +01001598/**
1599 * do_notify_parent_cldstop - notify parent of stopped/continued state change
1600 * @tsk: task reporting the state change
1601 * @for_ptracer: the notification is for ptracer
1602 * @why: CLD_{CONTINUED|STOPPED|TRAPPED} to report
1603 *
1604 * Notify @tsk's parent that the stopped/continued state has changed. If
1605 * @for_ptracer is %false, @tsk's group leader notifies to its real parent.
1606 * If %true, @tsk reports to @tsk->parent which should be the ptracer.
1607 *
1608 * CONTEXT:
1609 * Must be called with tasklist_lock at least read locked.
1610 */
1611static void do_notify_parent_cldstop(struct task_struct *tsk,
1612 bool for_ptracer, int why)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613{
1614 struct siginfo info;
1615 unsigned long flags;
Oleg Nesterovbc505a42005-09-06 15:17:32 -07001616 struct task_struct *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 struct sighand_struct *sighand;
1618
Tejun Heo75b95952011-03-23 10:37:01 +01001619 if (for_ptracer) {
Oleg Nesterovbc505a42005-09-06 15:17:32 -07001620 parent = tsk->parent;
Tejun Heo75b95952011-03-23 10:37:01 +01001621 } else {
Oleg Nesterovbc505a42005-09-06 15:17:32 -07001622 tsk = tsk->group_leader;
1623 parent = tsk->real_parent;
1624 }
1625
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 info.si_signo = SIGCHLD;
1627 info.si_errno = 0;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001628 /*
1629 * see comment in do_notify_parent() abot the following 3 lines
1630 */
1631 rcu_read_lock();
Oleg Nesterovd9265662009-06-17 16:27:35 -07001632 info.si_pid = task_pid_nr_ns(tsk, parent->nsproxy->pid_ns);
David Howellsc69e8d92008-11-14 10:39:19 +11001633 info.si_uid = __task_cred(tsk)->uid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001634 rcu_read_unlock();
1635
Michael Kerriskd8878ba2008-07-25 01:47:32 -07001636 info.si_utime = cputime_to_clock_t(tsk->utime);
1637 info.si_stime = cputime_to_clock_t(tsk->stime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
1639 info.si_code = why;
1640 switch (why) {
1641 case CLD_CONTINUED:
1642 info.si_status = SIGCONT;
1643 break;
1644 case CLD_STOPPED:
1645 info.si_status = tsk->signal->group_exit_code & 0x7f;
1646 break;
1647 case CLD_TRAPPED:
1648 info.si_status = tsk->exit_code & 0x7f;
1649 break;
1650 default:
1651 BUG();
1652 }
1653
1654 sighand = parent->sighand;
1655 spin_lock_irqsave(&sighand->siglock, flags);
1656 if (sighand->action[SIGCHLD-1].sa.sa_handler != SIG_IGN &&
1657 !(sighand->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDSTOP))
1658 __group_send_sig_info(SIGCHLD, &info, parent);
1659 /*
1660 * Even if SIGCHLD is not generated, we must wake up wait4 calls.
1661 */
1662 __wake_up_parent(tsk, parent);
1663 spin_unlock_irqrestore(&sighand->siglock, flags);
1664}
1665
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001666static inline int may_ptrace_stop(void)
1667{
Oleg Nesterov5cb11442009-06-17 16:27:30 -07001668 if (!likely(task_ptrace(current)))
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001669 return 0;
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001670 /*
1671 * Are we in the middle of do_coredump?
1672 * If so and our tracer is also part of the coredump stopping
1673 * is a deadlock situation, and pointless because our tracer
1674 * is dead so don't allow us to stop.
1675 * If SIGKILL was already sent before the caller unlocked
Oleg Nesterov999d9fc2008-07-25 01:47:41 -07001676 * ->siglock we must see ->core_state != NULL. Otherwise it
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001677 * is safe to enter schedule().
1678 */
Oleg Nesterov999d9fc2008-07-25 01:47:41 -07001679 if (unlikely(current->mm->core_state) &&
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001680 unlikely(current->mm == current->parent->mm))
1681 return 0;
1682
1683 return 1;
1684}
1685
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686/*
Roland McGrath1a669c22008-02-06 01:37:37 -08001687 * Return nonzero if there is a SIGKILL that should be waking us up.
1688 * Called with the siglock held.
1689 */
1690static int sigkill_pending(struct task_struct *tsk)
1691{
Oleg Nesterov3d749b92008-07-25 01:47:37 -07001692 return sigismember(&tsk->pending.signal, SIGKILL) ||
1693 sigismember(&tsk->signal->shared_pending.signal, SIGKILL);
Roland McGrath1a669c22008-02-06 01:37:37 -08001694}
1695
1696/*
Tejun Heoceb6bd62011-03-23 10:37:01 +01001697 * Test whether the target task of the usual cldstop notification - the
1698 * real_parent of @child - is in the same group as the ptracer.
1699 */
1700static bool real_parent_is_ptracer(struct task_struct *child)
1701{
1702 return same_thread_group(child->parent, child->real_parent);
1703}
1704
1705/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 * This must be called with current->sighand->siglock held.
1707 *
1708 * This should be the path for all ptrace stops.
1709 * We always set current->last_siginfo while stopped here.
1710 * That makes it a way to test a stopped process for
1711 * being ptrace-stopped vs being job-control-stopped.
1712 *
Oleg Nesterov20686a32008-02-08 04:19:03 -08001713 * If we actually decide not to stop at all because the tracer
1714 * is gone, we keep current->exit_code unless clear_code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 */
Tejun Heofe1bc6a2011-03-23 10:37:00 +01001716static void ptrace_stop(int exit_code, int why, int clear_code, siginfo_t *info)
Namhyung Kimb8401152010-10-27 15:34:07 -07001717 __releases(&current->sighand->siglock)
1718 __acquires(&current->sighand->siglock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719{
Tejun Heoceb6bd62011-03-23 10:37:01 +01001720 bool gstop_done = false;
1721
Roland McGrath1a669c22008-02-06 01:37:37 -08001722 if (arch_ptrace_stop_needed(exit_code, info)) {
1723 /*
1724 * The arch code has something special to do before a
1725 * ptrace stop. This is allowed to block, e.g. for faults
1726 * on user stack pages. We can't keep the siglock while
1727 * calling arch_ptrace_stop, so we must release it now.
1728 * To preserve proper semantics, we must do this before
1729 * any signal bookkeeping like checking group_stop_count.
1730 * Meanwhile, a SIGKILL could come in before we retake the
1731 * siglock. That must prevent us from sleeping in TASK_TRACED.
1732 * So after regaining the lock, we must check for SIGKILL.
1733 */
1734 spin_unlock_irq(&current->sighand->siglock);
1735 arch_ptrace_stop(exit_code, info);
1736 spin_lock_irq(&current->sighand->siglock);
Oleg Nesterov3d749b92008-07-25 01:47:37 -07001737 if (sigkill_pending(current))
1738 return;
Roland McGrath1a669c22008-02-06 01:37:37 -08001739 }
1740
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 /*
Tejun Heo0ae8ce12011-03-23 10:37:00 +01001742 * If @why is CLD_STOPPED, we're trapping to participate in a group
1743 * stop. Do the bookkeeping. Note that if SIGCONT was delievered
1744 * while siglock was released for the arch hook, PENDING could be
1745 * clear now. We act as if SIGCONT is received after TASK_TRACED
1746 * is entered - ignore it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 */
Tejun Heo0ae8ce12011-03-23 10:37:00 +01001748 if (why == CLD_STOPPED && (current->group_stop & GROUP_STOP_PENDING))
Tejun Heoceb6bd62011-03-23 10:37:01 +01001749 gstop_done = task_participate_group_stop(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
1751 current->last_siginfo = info;
1752 current->exit_code = exit_code;
1753
Tejun Heod79fdd62011-03-23 10:37:00 +01001754 /*
1755 * TRACED should be visible before TRAPPING is cleared; otherwise,
1756 * the tracer might fail do_wait().
1757 */
1758 set_current_state(TASK_TRACED);
1759
1760 /*
1761 * We're committing to trapping. Clearing GROUP_STOP_TRAPPING and
1762 * transition to TASK_TRACED should be atomic with respect to
1763 * siglock. This hsould be done after the arch hook as siglock is
1764 * released and regrabbed across it.
1765 */
1766 task_clear_group_stop_trapping(current);
1767
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 spin_unlock_irq(&current->sighand->siglock);
1769 read_lock(&tasklist_lock);
Oleg Nesterov3d749b92008-07-25 01:47:37 -07001770 if (may_ptrace_stop()) {
Tejun Heoceb6bd62011-03-23 10:37:01 +01001771 /*
1772 * Notify parents of the stop.
1773 *
1774 * While ptraced, there are two parents - the ptracer and
1775 * the real_parent of the group_leader. The ptracer should
1776 * know about every stop while the real parent is only
1777 * interested in the completion of group stop. The states
1778 * for the two don't interact with each other. Notify
1779 * separately unless they're gonna be duplicates.
1780 */
1781 do_notify_parent_cldstop(current, true, why);
1782 if (gstop_done && !real_parent_is_ptracer(current))
1783 do_notify_parent_cldstop(current, false, why);
1784
Miklos Szeredi53da1d92009-03-23 16:07:24 +01001785 /*
1786 * Don't want to allow preemption here, because
1787 * sys_ptrace() needs this task to be inactive.
1788 *
1789 * XXX: implement read_unlock_no_resched().
1790 */
1791 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 read_unlock(&tasklist_lock);
Miklos Szeredi53da1d92009-03-23 16:07:24 +01001793 preempt_enable_no_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 schedule();
1795 } else {
1796 /*
1797 * By the time we got the lock, our tracer went away.
Oleg Nesterov6405f7f2008-02-08 04:19:00 -08001798 * Don't drop the lock yet, another tracer may come.
Tejun Heoceb6bd62011-03-23 10:37:01 +01001799 *
1800 * If @gstop_done, the ptracer went away between group stop
1801 * completion and here. During detach, it would have set
1802 * GROUP_STOP_PENDING on us and we'll re-enter TASK_STOPPED
1803 * in do_signal_stop() on return, so notifying the real
1804 * parent of the group stop completion is enough.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 */
Tejun Heoceb6bd62011-03-23 10:37:01 +01001806 if (gstop_done)
1807 do_notify_parent_cldstop(current, false, why);
1808
Oleg Nesterov6405f7f2008-02-08 04:19:00 -08001809 __set_current_state(TASK_RUNNING);
Oleg Nesterov20686a32008-02-08 04:19:03 -08001810 if (clear_code)
1811 current->exit_code = 0;
Oleg Nesterov6405f7f2008-02-08 04:19:00 -08001812 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 }
1814
1815 /*
Roland McGrath13b1c3d2008-03-03 20:22:05 -08001816 * While in TASK_TRACED, we were considered "frozen enough".
1817 * Now that we woke up, it's crucial if we're supposed to be
1818 * frozen that we freeze now before running anything substantial.
1819 */
1820 try_to_freeze();
1821
1822 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 * We are back. Now reacquire the siglock before touching
1824 * last_siginfo, so that we are sure to have synchronized with
1825 * any signal-sending on another CPU that wants to examine it.
1826 */
1827 spin_lock_irq(&current->sighand->siglock);
1828 current->last_siginfo = NULL;
1829
1830 /*
1831 * Queued signals ignored us while we were stopped for tracing.
1832 * So check for any that we should take before resuming user mode.
Roland McGrathb74d0de2007-06-06 03:59:00 -07001833 * This sets TIF_SIGPENDING, but never clears it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 */
Roland McGrathb74d0de2007-06-06 03:59:00 -07001835 recalc_sigpending_tsk(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836}
1837
1838void ptrace_notify(int exit_code)
1839{
1840 siginfo_t info;
1841
1842 BUG_ON((exit_code & (0x7f | ~0xffff)) != SIGTRAP);
1843
1844 memset(&info, 0, sizeof info);
1845 info.si_signo = SIGTRAP;
1846 info.si_code = exit_code;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001847 info.si_pid = task_pid_vnr(current);
David Howells76aac0e2008-11-14 10:39:12 +11001848 info.si_uid = current_uid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
1850 /* Let the debugger run. */
1851 spin_lock_irq(&current->sighand->siglock);
Tejun Heofe1bc6a2011-03-23 10:37:00 +01001852 ptrace_stop(exit_code, CLD_TRAPPED, 1, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 spin_unlock_irq(&current->sighand->siglock);
1854}
1855
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856/*
1857 * This performs the stopping for SIGSTOP and other stop signals.
1858 * We have to stop all threads in the thread group.
1859 * Returns nonzero if we've actually stopped and released the siglock.
1860 * Returns zero if we didn't stop and still hold the siglock.
1861 */
Oleg Nesterova122b342006-03-28 16:11:22 -08001862static int do_signal_stop(int signr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863{
1864 struct signal_struct *sig = current->signal;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
Tejun Heo39efa3e2011-03-23 10:37:00 +01001866 if (!(current->group_stop & GROUP_STOP_PENDING)) {
1867 unsigned int gstop = GROUP_STOP_PENDING | GROUP_STOP_CONSUME;
Oleg Nesterovf558b7e2008-02-04 22:27:24 -08001868 struct task_struct *t;
1869
Tejun Heod79fdd62011-03-23 10:37:00 +01001870 /* signr will be recorded in task->group_stop for retries */
1871 WARN_ON_ONCE(signr & ~GROUP_STOP_SIGMASK);
1872
Oleg Nesterov2b201a92008-07-25 01:47:31 -07001873 if (!likely(sig->flags & SIGNAL_STOP_DEQUEUED) ||
Oleg Nesterov573cf9a2008-04-30 00:52:36 -07001874 unlikely(signal_group_exit(sig)))
Oleg Nesterovf558b7e2008-02-04 22:27:24 -08001875 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 /*
Tejun Heo408a37d2011-03-23 10:37:01 +01001877 * There is no group stop already in progress. We must
1878 * initiate one now.
1879 *
1880 * While ptraced, a task may be resumed while group stop is
1881 * still in effect and then receive a stop signal and
1882 * initiate another group stop. This deviates from the
1883 * usual behavior as two consecutive stop signals can't
1884 * cause two group stops when !ptraced.
1885 *
1886 * The condition can be distinguished by testing whether
1887 * SIGNAL_STOP_STOPPED is already set. Don't generate
1888 * group_exit_code in such case.
1889 *
1890 * This is not necessary for SIGNAL_STOP_CONTINUED because
1891 * an intervening stop signal is required to cause two
1892 * continued events regardless of ptrace.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 */
Tejun Heo408a37d2011-03-23 10:37:01 +01001894 if (!(sig->flags & SIGNAL_STOP_STOPPED))
1895 sig->group_exit_code = signr;
1896 else
1897 WARN_ON_ONCE(!task_ptrace(current));
Oleg Nesterova122b342006-03-28 16:11:22 -08001898
Tejun Heod79fdd62011-03-23 10:37:00 +01001899 current->group_stop &= ~GROUP_STOP_SIGMASK;
1900 current->group_stop |= signr | gstop;
Roland McGrathae6d2ed2009-09-23 15:56:53 -07001901 sig->group_stop_count = 1;
Tejun Heod79fdd62011-03-23 10:37:00 +01001902 for (t = next_thread(current); t != current;
1903 t = next_thread(t)) {
1904 t->group_stop &= ~GROUP_STOP_SIGMASK;
Oleg Nesterova122b342006-03-28 16:11:22 -08001905 /*
1906 * Setting state to TASK_STOPPED for a group
1907 * stop is always done with the siglock held,
1908 * so this check has no races.
1909 */
Tejun Heo39efa3e2011-03-23 10:37:00 +01001910 if (!(t->flags & PF_EXITING) && !task_is_stopped(t)) {
Tejun Heod79fdd62011-03-23 10:37:00 +01001911 t->group_stop |= signr | gstop;
Roland McGrathae6d2ed2009-09-23 15:56:53 -07001912 sig->group_stop_count++;
Oleg Nesterova122b342006-03-28 16:11:22 -08001913 signal_wake_up(t, 0);
Tejun Heod79fdd62011-03-23 10:37:00 +01001914 } else {
Tejun Heoe5c19022011-03-23 10:37:00 +01001915 task_clear_group_stop_pending(t);
Tejun Heod79fdd62011-03-23 10:37:00 +01001916 }
1917 }
Roland McGrathae6d2ed2009-09-23 15:56:53 -07001918 }
Tejun Heod79fdd62011-03-23 10:37:00 +01001919retry:
Tejun Heo5224fa32011-03-23 10:37:00 +01001920 if (likely(!task_ptrace(current))) {
1921 int notify = 0;
1922
1923 /*
1924 * If there are no other threads in the group, or if there
1925 * is a group stop in progress and we are the last to stop,
1926 * report to the parent.
1927 */
1928 if (task_participate_group_stop(current))
1929 notify = CLD_STOPPED;
1930
Tejun Heod79fdd62011-03-23 10:37:00 +01001931 __set_current_state(TASK_STOPPED);
Tejun Heo5224fa32011-03-23 10:37:00 +01001932 spin_unlock_irq(&current->sighand->siglock);
1933
Tejun Heo62bcf9d2011-03-23 10:37:01 +01001934 /*
1935 * Notify the parent of the group stop completion. Because
1936 * we're not holding either the siglock or tasklist_lock
1937 * here, ptracer may attach inbetween; however, this is for
1938 * group stop and should always be delivered to the real
1939 * parent of the group leader. The new ptracer will get
1940 * its notification when this task transitions into
1941 * TASK_TRACED.
1942 */
Tejun Heo5224fa32011-03-23 10:37:00 +01001943 if (notify) {
1944 read_lock(&tasklist_lock);
Tejun Heo62bcf9d2011-03-23 10:37:01 +01001945 do_notify_parent_cldstop(current, false, notify);
Tejun Heo5224fa32011-03-23 10:37:00 +01001946 read_unlock(&tasklist_lock);
1947 }
1948
1949 /* Now we don't run again until woken by SIGCONT or SIGKILL */
1950 schedule();
1951
1952 spin_lock_irq(&current->sighand->siglock);
Tejun Heod79fdd62011-03-23 10:37:00 +01001953 } else {
1954 ptrace_stop(current->group_stop & GROUP_STOP_SIGMASK,
1955 CLD_STOPPED, 0, NULL);
1956 current->exit_code = 0;
1957 }
1958
1959 /*
1960 * GROUP_STOP_PENDING could be set if another group stop has
1961 * started since being woken up or ptrace wants us to transit
1962 * between TASK_STOPPED and TRACED. Retry group stop.
1963 */
1964 if (current->group_stop & GROUP_STOP_PENDING) {
1965 WARN_ON_ONCE(!(current->group_stop & GROUP_STOP_SIGMASK));
1966 goto retry;
1967 }
1968
1969 /* PTRACE_ATTACH might have raced with task killing, clear trapping */
1970 task_clear_group_stop_trapping(current);
Tejun Heo5224fa32011-03-23 10:37:00 +01001971
Roland McGrathae6d2ed2009-09-23 15:56:53 -07001972 spin_unlock_irq(&current->sighand->siglock);
1973
Roland McGrathae6d2ed2009-09-23 15:56:53 -07001974 tracehook_finish_jctl();
Roland McGrathae6d2ed2009-09-23 15:56:53 -07001975
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 return 1;
1977}
1978
Roland McGrath18c98b62008-04-17 18:44:38 -07001979static int ptrace_signal(int signr, siginfo_t *info,
1980 struct pt_regs *regs, void *cookie)
1981{
Oleg Nesterov5cb11442009-06-17 16:27:30 -07001982 if (!task_ptrace(current))
Roland McGrath18c98b62008-04-17 18:44:38 -07001983 return signr;
1984
1985 ptrace_signal_deliver(regs, cookie);
1986
1987 /* Let the debugger run. */
Tejun Heofe1bc6a2011-03-23 10:37:00 +01001988 ptrace_stop(signr, CLD_TRAPPED, 0, info);
Roland McGrath18c98b62008-04-17 18:44:38 -07001989
1990 /* We're back. Did the debugger cancel the sig? */
1991 signr = current->exit_code;
1992 if (signr == 0)
1993 return signr;
1994
1995 current->exit_code = 0;
1996
1997 /* Update the siginfo structure if the signal has
1998 changed. If the debugger wanted something
1999 specific in the siginfo structure then it should
2000 have updated *info via PTRACE_SETSIGINFO. */
2001 if (signr != info->si_signo) {
2002 info->si_signo = signr;
2003 info->si_errno = 0;
2004 info->si_code = SI_USER;
2005 info->si_pid = task_pid_vnr(current->parent);
David Howellsc69e8d92008-11-14 10:39:19 +11002006 info->si_uid = task_uid(current->parent);
Roland McGrath18c98b62008-04-17 18:44:38 -07002007 }
2008
2009 /* If the (new) signal is now blocked, requeue it. */
2010 if (sigismember(&current->blocked, signr)) {
2011 specific_send_sig_info(signr, info, current);
2012 signr = 0;
2013 }
2014
2015 return signr;
2016}
2017
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018int get_signal_to_deliver(siginfo_t *info, struct k_sigaction *return_ka,
2019 struct pt_regs *regs, void *cookie)
2020{
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07002021 struct sighand_struct *sighand = current->sighand;
2022 struct signal_struct *signal = current->signal;
2023 int signr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
Roland McGrath13b1c3d2008-03-03 20:22:05 -08002025relock:
2026 /*
2027 * We'll jump back here after any time we were stopped in TASK_STOPPED.
2028 * While in TASK_STOPPED, we were considered "frozen enough".
2029 * Now that we woke up, it's crucial if we're supposed to be
2030 * frozen that we freeze now before running anything substantial.
2031 */
Rafael J. Wysockifc558a72006-03-23 03:00:05 -08002032 try_to_freeze();
2033
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07002034 spin_lock_irq(&sighand->siglock);
Oleg Nesterov021e1ae2008-04-30 00:53:00 -07002035 /*
2036 * Every stopped thread goes here after wakeup. Check to see if
2037 * we should notify the parent, prepare_signal(SIGCONT) encodes
2038 * the CLD_ si_code into SIGNAL_CLD_MASK bits.
2039 */
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07002040 if (unlikely(signal->flags & SIGNAL_CLD_MASK)) {
Tejun Heo75b95952011-03-23 10:37:01 +01002041 struct task_struct *leader;
Tejun Heoc672af32011-03-23 10:36:59 +01002042 int why;
2043
2044 if (signal->flags & SIGNAL_CLD_CONTINUED)
2045 why = CLD_CONTINUED;
2046 else
2047 why = CLD_STOPPED;
2048
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07002049 signal->flags &= ~SIGNAL_CLD_MASK;
Roland McGrathae6d2ed2009-09-23 15:56:53 -07002050
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07002051 spin_unlock_irq(&sighand->siglock);
Oleg Nesterove4420552008-04-30 00:52:44 -07002052
Tejun Heoceb6bd62011-03-23 10:37:01 +01002053 /*
2054 * Notify the parent that we're continuing. This event is
2055 * always per-process and doesn't make whole lot of sense
2056 * for ptracers, who shouldn't consume the state via
2057 * wait(2) either, but, for backward compatibility, notify
2058 * the ptracer of the group leader too unless it's gonna be
2059 * a duplicate.
2060 */
Tejun Heoedf2ed12011-03-23 10:37:00 +01002061 read_lock(&tasklist_lock);
Tejun Heoceb6bd62011-03-23 10:37:01 +01002062
2063 do_notify_parent_cldstop(current, false, why);
2064
Tejun Heo75b95952011-03-23 10:37:01 +01002065 leader = current->group_leader;
Tejun Heoceb6bd62011-03-23 10:37:01 +01002066 if (task_ptrace(leader) && !real_parent_is_ptracer(leader))
2067 do_notify_parent_cldstop(leader, true, why);
2068
Tejun Heoedf2ed12011-03-23 10:37:00 +01002069 read_unlock(&tasklist_lock);
Tejun Heoceb6bd62011-03-23 10:37:01 +01002070
Oleg Nesterove4420552008-04-30 00:52:44 -07002071 goto relock;
2072 }
2073
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 for (;;) {
2075 struct k_sigaction *ka;
Roland McGrath7bcf6a22008-07-25 19:45:53 -07002076 /*
2077 * Tracing can induce an artifical signal and choose sigaction.
2078 * The return value in @signr determines the default action,
2079 * but @info->si_signo is the signal number we will report.
2080 */
2081 signr = tracehook_get_signal(current, regs, info, return_ka);
2082 if (unlikely(signr < 0))
2083 goto relock;
2084 if (unlikely(signr != 0))
2085 ka = return_ka;
2086 else {
Tejun Heo39efa3e2011-03-23 10:37:00 +01002087 if (unlikely(current->group_stop &
2088 GROUP_STOP_PENDING) && do_signal_stop(0))
Oleg Nesterov1be53962009-12-15 16:47:26 -08002089 goto relock;
2090
Roland McGrath7bcf6a22008-07-25 19:45:53 -07002091 signr = dequeue_signal(current, &current->blocked,
2092 info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093
Roland McGrath18c98b62008-04-17 18:44:38 -07002094 if (!signr)
Roland McGrath7bcf6a22008-07-25 19:45:53 -07002095 break; /* will return 0 */
2096
2097 if (signr != SIGKILL) {
2098 signr = ptrace_signal(signr, info,
2099 regs, cookie);
2100 if (!signr)
2101 continue;
2102 }
2103
2104 ka = &sighand->action[signr-1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 }
2106
Masami Hiramatsuf9d42572009-11-24 16:56:51 -05002107 /* Trace actually delivered signals. */
2108 trace_signal_deliver(signr, info, ka);
2109
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 if (ka->sa.sa_handler == SIG_IGN) /* Do nothing. */
2111 continue;
2112 if (ka->sa.sa_handler != SIG_DFL) {
2113 /* Run the handler. */
2114 *return_ka = *ka;
2115
2116 if (ka->sa.sa_flags & SA_ONESHOT)
2117 ka->sa.sa_handler = SIG_DFL;
2118
2119 break; /* will return non-zero "signr" value */
2120 }
2121
2122 /*
2123 * Now we are doing the default action for this signal.
2124 */
2125 if (sig_kernel_ignore(signr)) /* Default is nothing. */
2126 continue;
2127
Sukadev Bhattiprolu84d73782006-12-08 02:38:01 -08002128 /*
Sukadev Bhattiprolu0fbc26a2007-10-18 23:40:13 -07002129 * Global init gets no signals it doesn't want.
Sukadev Bhattiprolub3bfa0c2009-04-02 16:58:08 -07002130 * Container-init gets no signals it doesn't want from same
2131 * container.
2132 *
2133 * Note that if global/container-init sees a sig_kernel_only()
2134 * signal here, the signal must have been generated internally
2135 * or must have come from an ancestor namespace. In either
2136 * case, the signal cannot be dropped.
Sukadev Bhattiprolu84d73782006-12-08 02:38:01 -08002137 */
Oleg Nesterovfae5fa42008-04-30 00:53:03 -07002138 if (unlikely(signal->flags & SIGNAL_UNKILLABLE) &&
Sukadev Bhattiprolub3bfa0c2009-04-02 16:58:08 -07002139 !sig_kernel_only(signr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 continue;
2141
2142 if (sig_kernel_stop(signr)) {
2143 /*
2144 * The default action is to stop all threads in
2145 * the thread group. The job control signals
2146 * do nothing in an orphaned pgrp, but SIGSTOP
2147 * always works. Note that siglock needs to be
2148 * dropped during the call to is_orphaned_pgrp()
2149 * because of lock ordering with tasklist_lock.
2150 * This allows an intervening SIGCONT to be posted.
2151 * We need to check for that and bail out if necessary.
2152 */
2153 if (signr != SIGSTOP) {
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07002154 spin_unlock_irq(&sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
2156 /* signals can be posted during this window */
2157
Eric W. Biederman3e7cd6c2007-02-12 00:52:58 -08002158 if (is_current_pgrp_orphaned())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 goto relock;
2160
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07002161 spin_lock_irq(&sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 }
2163
Roland McGrath7bcf6a22008-07-25 19:45:53 -07002164 if (likely(do_signal_stop(info->si_signo))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 /* It released the siglock. */
2166 goto relock;
2167 }
2168
2169 /*
2170 * We didn't actually stop, due to a race
2171 * with SIGCONT or something like that.
2172 */
2173 continue;
2174 }
2175
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07002176 spin_unlock_irq(&sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177
2178 /*
2179 * Anything else is fatal, maybe with a core dump.
2180 */
2181 current->flags |= PF_SIGNALED;
Oleg Nesterov2dce81b2008-04-30 00:52:58 -07002182
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 if (sig_kernel_coredump(signr)) {
Oleg Nesterov2dce81b2008-04-30 00:52:58 -07002184 if (print_fatal_signals)
Roland McGrath7bcf6a22008-07-25 19:45:53 -07002185 print_fatal_signal(regs, info->si_signo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 /*
2187 * If it was able to dump core, this kills all
2188 * other threads in the group and synchronizes with
2189 * their demise. If we lost the race with another
2190 * thread getting here, it set group_exit_code
2191 * first and our do_group_exit call below will use
2192 * that value and ignore the one we pass it.
2193 */
Roland McGrath7bcf6a22008-07-25 19:45:53 -07002194 do_coredump(info->si_signo, info->si_signo, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 }
2196
2197 /*
2198 * Death signals, no core dump.
2199 */
Roland McGrath7bcf6a22008-07-25 19:45:53 -07002200 do_group_exit(info->si_signo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 /* NOTREACHED */
2202 }
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07002203 spin_unlock_irq(&sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 return signr;
2205}
2206
Oleg Nesterovd12619b2008-02-08 04:19:12 -08002207void exit_signals(struct task_struct *tsk)
2208{
2209 int group_stop = 0;
Oleg Nesterov5dee1702008-02-08 04:19:13 -08002210 struct task_struct *t;
Oleg Nesterovd12619b2008-02-08 04:19:12 -08002211
Oleg Nesterov5dee1702008-02-08 04:19:13 -08002212 if (thread_group_empty(tsk) || signal_group_exit(tsk->signal)) {
2213 tsk->flags |= PF_EXITING;
2214 return;
Oleg Nesterovd12619b2008-02-08 04:19:12 -08002215 }
2216
Oleg Nesterov5dee1702008-02-08 04:19:13 -08002217 spin_lock_irq(&tsk->sighand->siglock);
Oleg Nesterovd12619b2008-02-08 04:19:12 -08002218 /*
2219 * From now this task is not visible for group-wide signals,
2220 * see wants_signal(), do_signal_stop().
2221 */
2222 tsk->flags |= PF_EXITING;
Oleg Nesterov5dee1702008-02-08 04:19:13 -08002223 if (!signal_pending(tsk))
2224 goto out;
2225
2226 /* It could be that __group_complete_signal() choose us to
2227 * notify about group-wide signal. Another thread should be
2228 * woken now to take the signal since we will not.
2229 */
2230 for (t = tsk; (t = next_thread(t)) != tsk; )
2231 if (!signal_pending(t) && !(t->flags & PF_EXITING))
2232 recalc_sigpending_and_wake(t);
2233
Tejun Heo39efa3e2011-03-23 10:37:00 +01002234 if (unlikely(tsk->group_stop & GROUP_STOP_PENDING) &&
Tejun Heoe5c19022011-03-23 10:37:00 +01002235 task_participate_group_stop(tsk))
Tejun Heoedf2ed12011-03-23 10:37:00 +01002236 group_stop = CLD_STOPPED;
Oleg Nesterov5dee1702008-02-08 04:19:13 -08002237out:
Oleg Nesterovd12619b2008-02-08 04:19:12 -08002238 spin_unlock_irq(&tsk->sighand->siglock);
2239
Tejun Heo62bcf9d2011-03-23 10:37:01 +01002240 /*
2241 * If group stop has completed, deliver the notification. This
2242 * should always go to the real parent of the group leader.
2243 */
Roland McGrathae6d2ed2009-09-23 15:56:53 -07002244 if (unlikely(group_stop)) {
Oleg Nesterovd12619b2008-02-08 04:19:12 -08002245 read_lock(&tasklist_lock);
Tejun Heo62bcf9d2011-03-23 10:37:01 +01002246 do_notify_parent_cldstop(tsk, false, group_stop);
Oleg Nesterovd12619b2008-02-08 04:19:12 -08002247 read_unlock(&tasklist_lock);
2248 }
2249}
2250
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251EXPORT_SYMBOL(recalc_sigpending);
2252EXPORT_SYMBOL_GPL(dequeue_signal);
2253EXPORT_SYMBOL(flush_signals);
2254EXPORT_SYMBOL(force_sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255EXPORT_SYMBOL(send_sig);
2256EXPORT_SYMBOL(send_sig_info);
2257EXPORT_SYMBOL(sigprocmask);
2258EXPORT_SYMBOL(block_all_signals);
2259EXPORT_SYMBOL(unblock_all_signals);
2260
2261
2262/*
2263 * System call entry points.
2264 */
2265
Heiko Carstens754fe8d2009-01-14 14:14:09 +01002266SYSCALL_DEFINE0(restart_syscall)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267{
2268 struct restart_block *restart = &current_thread_info()->restart_block;
2269 return restart->fn(restart);
2270}
2271
2272long do_no_restart_syscall(struct restart_block *param)
2273{
2274 return -EINTR;
2275}
2276
2277/*
2278 * We don't need to get the kernel lock - this is all local to this
2279 * particular thread.. (and that's good, because this is _heavily_
2280 * used by various programs)
2281 */
2282
2283/*
2284 * This is also useful for kernel threads that want to temporarily
2285 * (or permanently) block certain signals.
2286 *
2287 * NOTE! Unlike the user-mode sys_sigprocmask(), the kernel
2288 * interface happily blocks "unblockable" signals like SIGKILL
2289 * and friends.
2290 */
2291int sigprocmask(int how, sigset_t *set, sigset_t *oldset)
2292{
2293 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294
2295 spin_lock_irq(&current->sighand->siglock);
Oleg Nesterova26fd332006-03-23 03:00:49 -08002296 if (oldset)
2297 *oldset = current->blocked;
2298
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 error = 0;
2300 switch (how) {
2301 case SIG_BLOCK:
2302 sigorsets(&current->blocked, &current->blocked, set);
2303 break;
2304 case SIG_UNBLOCK:
2305 signandsets(&current->blocked, &current->blocked, set);
2306 break;
2307 case SIG_SETMASK:
2308 current->blocked = *set;
2309 break;
2310 default:
2311 error = -EINVAL;
2312 }
2313 recalc_sigpending();
2314 spin_unlock_irq(&current->sighand->siglock);
Oleg Nesterova26fd332006-03-23 03:00:49 -08002315
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 return error;
2317}
2318
Heiko Carstens17da2bd2009-01-14 14:14:10 +01002319SYSCALL_DEFINE4(rt_sigprocmask, int, how, sigset_t __user *, set,
2320 sigset_t __user *, oset, size_t, sigsetsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321{
2322 int error = -EINVAL;
2323 sigset_t old_set, new_set;
2324
2325 /* XXX: Don't preclude handling different sized sigset_t's. */
2326 if (sigsetsize != sizeof(sigset_t))
2327 goto out;
2328
2329 if (set) {
2330 error = -EFAULT;
2331 if (copy_from_user(&new_set, set, sizeof(*set)))
2332 goto out;
2333 sigdelsetmask(&new_set, sigmask(SIGKILL)|sigmask(SIGSTOP));
2334
2335 error = sigprocmask(how, &new_set, &old_set);
2336 if (error)
2337 goto out;
2338 if (oset)
2339 goto set_old;
2340 } else if (oset) {
2341 spin_lock_irq(&current->sighand->siglock);
2342 old_set = current->blocked;
2343 spin_unlock_irq(&current->sighand->siglock);
2344
2345 set_old:
2346 error = -EFAULT;
2347 if (copy_to_user(oset, &old_set, sizeof(*oset)))
2348 goto out;
2349 }
2350 error = 0;
2351out:
2352 return error;
2353}
2354
2355long do_sigpending(void __user *set, unsigned long sigsetsize)
2356{
2357 long error = -EINVAL;
2358 sigset_t pending;
2359
2360 if (sigsetsize > sizeof(sigset_t))
2361 goto out;
2362
2363 spin_lock_irq(&current->sighand->siglock);
2364 sigorsets(&pending, &current->pending.signal,
2365 &current->signal->shared_pending.signal);
2366 spin_unlock_irq(&current->sighand->siglock);
2367
2368 /* Outside the lock because only this thread touches it. */
2369 sigandsets(&pending, &current->blocked, &pending);
2370
2371 error = -EFAULT;
2372 if (!copy_to_user(set, &pending, sigsetsize))
2373 error = 0;
2374
2375out:
2376 return error;
2377}
2378
Heiko Carstens17da2bd2009-01-14 14:14:10 +01002379SYSCALL_DEFINE2(rt_sigpending, sigset_t __user *, set, size_t, sigsetsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380{
2381 return do_sigpending(set, sigsetsize);
2382}
2383
2384#ifndef HAVE_ARCH_COPY_SIGINFO_TO_USER
2385
2386int copy_siginfo_to_user(siginfo_t __user *to, siginfo_t *from)
2387{
2388 int err;
2389
2390 if (!access_ok (VERIFY_WRITE, to, sizeof(siginfo_t)))
2391 return -EFAULT;
2392 if (from->si_code < 0)
2393 return __copy_to_user(to, from, sizeof(siginfo_t))
2394 ? -EFAULT : 0;
2395 /*
2396 * If you change siginfo_t structure, please be sure
2397 * this code is fixed accordingly.
Davide Libenzifba2afa2007-05-10 22:23:13 -07002398 * Please remember to update the signalfd_copyinfo() function
2399 * inside fs/signalfd.c too, in case siginfo_t changes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 * It should never copy any pad contained in the structure
2401 * to avoid security leaks, but must copy the generic
2402 * 3 ints plus the relevant union member.
2403 */
2404 err = __put_user(from->si_signo, &to->si_signo);
2405 err |= __put_user(from->si_errno, &to->si_errno);
2406 err |= __put_user((short)from->si_code, &to->si_code);
2407 switch (from->si_code & __SI_MASK) {
2408 case __SI_KILL:
2409 err |= __put_user(from->si_pid, &to->si_pid);
2410 err |= __put_user(from->si_uid, &to->si_uid);
2411 break;
2412 case __SI_TIMER:
2413 err |= __put_user(from->si_tid, &to->si_tid);
2414 err |= __put_user(from->si_overrun, &to->si_overrun);
2415 err |= __put_user(from->si_ptr, &to->si_ptr);
2416 break;
2417 case __SI_POLL:
2418 err |= __put_user(from->si_band, &to->si_band);
2419 err |= __put_user(from->si_fd, &to->si_fd);
2420 break;
2421 case __SI_FAULT:
2422 err |= __put_user(from->si_addr, &to->si_addr);
2423#ifdef __ARCH_SI_TRAPNO
2424 err |= __put_user(from->si_trapno, &to->si_trapno);
2425#endif
Andi Kleena337fda2010-09-27 20:32:19 +02002426#ifdef BUS_MCEERR_AO
2427 /*
2428 * Other callers might not initialize the si_lsb field,
2429 * so check explicitely for the right codes here.
2430 */
2431 if (from->si_code == BUS_MCEERR_AR || from->si_code == BUS_MCEERR_AO)
2432 err |= __put_user(from->si_addr_lsb, &to->si_addr_lsb);
2433#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 break;
2435 case __SI_CHLD:
2436 err |= __put_user(from->si_pid, &to->si_pid);
2437 err |= __put_user(from->si_uid, &to->si_uid);
2438 err |= __put_user(from->si_status, &to->si_status);
2439 err |= __put_user(from->si_utime, &to->si_utime);
2440 err |= __put_user(from->si_stime, &to->si_stime);
2441 break;
2442 case __SI_RT: /* This is not generated by the kernel as of now. */
2443 case __SI_MESGQ: /* But this is */
2444 err |= __put_user(from->si_pid, &to->si_pid);
2445 err |= __put_user(from->si_uid, &to->si_uid);
2446 err |= __put_user(from->si_ptr, &to->si_ptr);
2447 break;
2448 default: /* this is just in case for now ... */
2449 err |= __put_user(from->si_pid, &to->si_pid);
2450 err |= __put_user(from->si_uid, &to->si_uid);
2451 break;
2452 }
2453 return err;
2454}
2455
2456#endif
2457
Heiko Carstens17da2bd2009-01-14 14:14:10 +01002458SYSCALL_DEFINE4(rt_sigtimedwait, const sigset_t __user *, uthese,
2459 siginfo_t __user *, uinfo, const struct timespec __user *, uts,
2460 size_t, sigsetsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461{
2462 int ret, sig;
2463 sigset_t these;
2464 struct timespec ts;
2465 siginfo_t info;
2466 long timeout = 0;
2467
2468 /* XXX: Don't preclude handling different sized sigset_t's. */
2469 if (sigsetsize != sizeof(sigset_t))
2470 return -EINVAL;
2471
2472 if (copy_from_user(&these, uthese, sizeof(these)))
2473 return -EFAULT;
2474
2475 /*
2476 * Invert the set of allowed signals to get those we
2477 * want to block.
2478 */
2479 sigdelsetmask(&these, sigmask(SIGKILL)|sigmask(SIGSTOP));
2480 signotset(&these);
2481
2482 if (uts) {
2483 if (copy_from_user(&ts, uts, sizeof(ts)))
2484 return -EFAULT;
2485 if (ts.tv_nsec >= 1000000000L || ts.tv_nsec < 0
2486 || ts.tv_sec < 0)
2487 return -EINVAL;
2488 }
2489
2490 spin_lock_irq(&current->sighand->siglock);
2491 sig = dequeue_signal(current, &these, &info);
2492 if (!sig) {
2493 timeout = MAX_SCHEDULE_TIMEOUT;
2494 if (uts)
2495 timeout = (timespec_to_jiffies(&ts)
2496 + (ts.tv_sec || ts.tv_nsec));
2497
2498 if (timeout) {
2499 /* None ready -- temporarily unblock those we're
2500 * interested while we are sleeping in so that we'll
2501 * be awakened when they arrive. */
2502 current->real_blocked = current->blocked;
2503 sigandsets(&current->blocked, &current->blocked, &these);
2504 recalc_sigpending();
2505 spin_unlock_irq(&current->sighand->siglock);
2506
Nishanth Aravamudan75bcc8c2005-09-10 00:27:24 -07002507 timeout = schedule_timeout_interruptible(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 spin_lock_irq(&current->sighand->siglock);
2510 sig = dequeue_signal(current, &these, &info);
2511 current->blocked = current->real_blocked;
2512 siginitset(&current->real_blocked, 0);
2513 recalc_sigpending();
2514 }
2515 }
2516 spin_unlock_irq(&current->sighand->siglock);
2517
2518 if (sig) {
2519 ret = sig;
2520 if (uinfo) {
2521 if (copy_siginfo_to_user(uinfo, &info))
2522 ret = -EFAULT;
2523 }
2524 } else {
2525 ret = -EAGAIN;
2526 if (timeout)
2527 ret = -EINTR;
2528 }
2529
2530 return ret;
2531}
2532
Heiko Carstens17da2bd2009-01-14 14:14:10 +01002533SYSCALL_DEFINE2(kill, pid_t, pid, int, sig)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534{
2535 struct siginfo info;
2536
2537 info.si_signo = sig;
2538 info.si_errno = 0;
2539 info.si_code = SI_USER;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002540 info.si_pid = task_tgid_vnr(current);
David Howells76aac0e2008-11-14 10:39:12 +11002541 info.si_uid = current_uid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542
2543 return kill_something_info(sig, &info, pid);
2544}
2545
Thomas Gleixner30b4ae8a2009-04-04 21:01:01 +00002546static int
2547do_send_specific(pid_t tgid, pid_t pid, int sig, struct siginfo *info)
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002548{
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002549 struct task_struct *p;
Thomas Gleixner30b4ae8a2009-04-04 21:01:01 +00002550 int error = -ESRCH;
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002551
Oleg Nesterov3547ff32008-04-30 00:52:51 -07002552 rcu_read_lock();
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07002553 p = find_task_by_vpid(pid);
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002554 if (p && (tgid <= 0 || task_tgid_vnr(p) == tgid)) {
Thomas Gleixner30b4ae8a2009-04-04 21:01:01 +00002555 error = check_kill_permission(sig, info, p);
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002556 /*
2557 * The null signal is a permissions and process existence
2558 * probe. No signal is actually delivered.
2559 */
Oleg Nesterov4a30deb2009-09-23 15:57:00 -07002560 if (!error && sig) {
2561 error = do_send_sig_info(sig, info, p, false);
2562 /*
2563 * If lock_task_sighand() failed we pretend the task
2564 * dies after receiving the signal. The window is tiny,
2565 * and the signal is private anyway.
2566 */
2567 if (unlikely(error == -ESRCH))
2568 error = 0;
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002569 }
2570 }
Oleg Nesterov3547ff32008-04-30 00:52:51 -07002571 rcu_read_unlock();
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002572
2573 return error;
2574}
2575
Thomas Gleixner30b4ae8a2009-04-04 21:01:01 +00002576static int do_tkill(pid_t tgid, pid_t pid, int sig)
2577{
2578 struct siginfo info;
2579
2580 info.si_signo = sig;
2581 info.si_errno = 0;
2582 info.si_code = SI_TKILL;
2583 info.si_pid = task_tgid_vnr(current);
2584 info.si_uid = current_uid();
2585
2586 return do_send_specific(tgid, pid, sig, &info);
2587}
2588
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589/**
2590 * sys_tgkill - send signal to one specific thread
2591 * @tgid: the thread group ID of the thread
2592 * @pid: the PID of the thread
2593 * @sig: signal to be sent
2594 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08002595 * This syscall also checks the @tgid and returns -ESRCH even if the PID
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 * exists but it's not belonging to the target process anymore. This
2597 * method solves the problem of threads exiting and PIDs getting reused.
2598 */
Heiko Carstensa5f8fa92009-01-14 14:14:11 +01002599SYSCALL_DEFINE3(tgkill, pid_t, tgid, pid_t, pid, int, sig)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 /* This is only valid for single tasks */
2602 if (pid <= 0 || tgid <= 0)
2603 return -EINVAL;
2604
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002605 return do_tkill(tgid, pid, sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606}
2607
2608/*
2609 * Send a signal to only one task, even if it's a CLONE_THREAD task.
2610 */
Heiko Carstensa5f8fa92009-01-14 14:14:11 +01002611SYSCALL_DEFINE2(tkill, pid_t, pid, int, sig)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 /* This is only valid for single tasks */
2614 if (pid <= 0)
2615 return -EINVAL;
2616
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002617 return do_tkill(0, pid, sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618}
2619
Heiko Carstensa5f8fa92009-01-14 14:14:11 +01002620SYSCALL_DEFINE3(rt_sigqueueinfo, pid_t, pid, int, sig,
2621 siginfo_t __user *, uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622{
2623 siginfo_t info;
2624
2625 if (copy_from_user(&info, uinfo, sizeof(siginfo_t)))
2626 return -EFAULT;
2627
2628 /* Not even root can pretend to send signals from the kernel.
Julien Tinnesda485242011-03-18 15:05:21 -07002629 * Nor can they impersonate a kill()/tgkill(), which adds source info.
2630 */
2631 if (info.si_code != SI_QUEUE) {
2632 /* We used to allow any < 0 si_code */
2633 WARN_ON_ONCE(info.si_code < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 return -EPERM;
Julien Tinnesda485242011-03-18 15:05:21 -07002635 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 info.si_signo = sig;
2637
2638 /* POSIX.1b doesn't mention process groups. */
2639 return kill_proc_info(sig, &info, pid);
2640}
2641
Thomas Gleixner62ab4502009-04-04 21:01:06 +00002642long do_rt_tgsigqueueinfo(pid_t tgid, pid_t pid, int sig, siginfo_t *info)
2643{
2644 /* This is only valid for single tasks */
2645 if (pid <= 0 || tgid <= 0)
2646 return -EINVAL;
2647
2648 /* Not even root can pretend to send signals from the kernel.
Julien Tinnesda485242011-03-18 15:05:21 -07002649 * Nor can they impersonate a kill()/tgkill(), which adds source info.
2650 */
2651 if (info->si_code != SI_QUEUE) {
2652 /* We used to allow any < 0 si_code */
2653 WARN_ON_ONCE(info->si_code < 0);
Thomas Gleixner62ab4502009-04-04 21:01:06 +00002654 return -EPERM;
Julien Tinnesda485242011-03-18 15:05:21 -07002655 }
Thomas Gleixner62ab4502009-04-04 21:01:06 +00002656 info->si_signo = sig;
2657
2658 return do_send_specific(tgid, pid, sig, info);
2659}
2660
2661SYSCALL_DEFINE4(rt_tgsigqueueinfo, pid_t, tgid, pid_t, pid, int, sig,
2662 siginfo_t __user *, uinfo)
2663{
2664 siginfo_t info;
2665
2666 if (copy_from_user(&info, uinfo, sizeof(siginfo_t)))
2667 return -EFAULT;
2668
2669 return do_rt_tgsigqueueinfo(tgid, pid, sig, &info);
2670}
2671
Oleg Nesterov88531f72006-03-28 16:11:24 -08002672int do_sigaction(int sig, struct k_sigaction *act, struct k_sigaction *oact)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673{
Pavel Emelyanov93585ee2008-04-30 00:52:39 -07002674 struct task_struct *t = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 struct k_sigaction *k;
George Anzinger71fabd52006-01-08 01:02:48 -08002676 sigset_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677
Jesper Juhl7ed20e12005-05-01 08:59:14 -07002678 if (!valid_signal(sig) || sig < 1 || (act && sig_kernel_only(sig)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679 return -EINVAL;
2680
Pavel Emelyanov93585ee2008-04-30 00:52:39 -07002681 k = &t->sighand->action[sig-1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682
2683 spin_lock_irq(&current->sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 if (oact)
2685 *oact = *k;
2686
2687 if (act) {
Oleg Nesterov9ac95f22006-02-09 22:41:50 +03002688 sigdelsetmask(&act->sa.sa_mask,
2689 sigmask(SIGKILL) | sigmask(SIGSTOP));
Oleg Nesterov88531f72006-03-28 16:11:24 -08002690 *k = *act;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 /*
2692 * POSIX 3.3.1.3:
2693 * "Setting a signal action to SIG_IGN for a signal that is
2694 * pending shall cause the pending signal to be discarded,
2695 * whether or not it is blocked."
2696 *
2697 * "Setting a signal action to SIG_DFL for a signal that is
2698 * pending and whose default action is to ignore the signal
2699 * (for example, SIGCHLD), shall cause the pending signal to
2700 * be discarded, whether or not it is blocked"
2701 */
Roland McGrath35de2542008-07-25 19:45:51 -07002702 if (sig_handler_ignored(sig_handler(t, sig), sig)) {
George Anzinger71fabd52006-01-08 01:02:48 -08002703 sigemptyset(&mask);
2704 sigaddset(&mask, sig);
2705 rm_from_queue_full(&mask, &t->signal->shared_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 do {
George Anzinger71fabd52006-01-08 01:02:48 -08002707 rm_from_queue_full(&mask, &t->pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 t = next_thread(t);
2709 } while (t != current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 }
2712
2713 spin_unlock_irq(&current->sighand->siglock);
2714 return 0;
2715}
2716
2717int
2718do_sigaltstack (const stack_t __user *uss, stack_t __user *uoss, unsigned long sp)
2719{
2720 stack_t oss;
2721 int error;
2722
Linus Torvalds0083fc22009-08-01 10:34:56 -07002723 oss.ss_sp = (void __user *) current->sas_ss_sp;
2724 oss.ss_size = current->sas_ss_size;
2725 oss.ss_flags = sas_ss_flags(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726
2727 if (uss) {
2728 void __user *ss_sp;
2729 size_t ss_size;
2730 int ss_flags;
2731
2732 error = -EFAULT;
Linus Torvalds0dd84862009-08-01 11:18:56 -07002733 if (!access_ok(VERIFY_READ, uss, sizeof(*uss)))
2734 goto out;
2735 error = __get_user(ss_sp, &uss->ss_sp) |
2736 __get_user(ss_flags, &uss->ss_flags) |
2737 __get_user(ss_size, &uss->ss_size);
2738 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 goto out;
2740
2741 error = -EPERM;
2742 if (on_sig_stack(sp))
2743 goto out;
2744
2745 error = -EINVAL;
2746 /*
2747 *
2748 * Note - this code used to test ss_flags incorrectly
2749 * old code may have been written using ss_flags==0
2750 * to mean ss_flags==SS_ONSTACK (as this was the only
2751 * way that worked) - this fix preserves that older
2752 * mechanism
2753 */
2754 if (ss_flags != SS_DISABLE && ss_flags != SS_ONSTACK && ss_flags != 0)
2755 goto out;
2756
2757 if (ss_flags == SS_DISABLE) {
2758 ss_size = 0;
2759 ss_sp = NULL;
2760 } else {
2761 error = -ENOMEM;
2762 if (ss_size < MINSIGSTKSZ)
2763 goto out;
2764 }
2765
2766 current->sas_ss_sp = (unsigned long) ss_sp;
2767 current->sas_ss_size = ss_size;
2768 }
2769
Linus Torvalds0083fc22009-08-01 10:34:56 -07002770 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 if (uoss) {
2772 error = -EFAULT;
Linus Torvalds0083fc22009-08-01 10:34:56 -07002773 if (!access_ok(VERIFY_WRITE, uoss, sizeof(*uoss)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 goto out;
Linus Torvalds0083fc22009-08-01 10:34:56 -07002775 error = __put_user(oss.ss_sp, &uoss->ss_sp) |
2776 __put_user(oss.ss_size, &uoss->ss_size) |
2777 __put_user(oss.ss_flags, &uoss->ss_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 }
2779
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780out:
2781 return error;
2782}
2783
2784#ifdef __ARCH_WANT_SYS_SIGPENDING
2785
Heiko Carstensb290ebe2009-01-14 14:14:06 +01002786SYSCALL_DEFINE1(sigpending, old_sigset_t __user *, set)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787{
2788 return do_sigpending(set, sizeof(*set));
2789}
2790
2791#endif
2792
2793#ifdef __ARCH_WANT_SYS_SIGPROCMASK
2794/* Some platforms have their own version with special arguments others
2795 support only sys_rt_sigprocmask. */
2796
Heiko Carstensb290ebe2009-01-14 14:14:06 +01002797SYSCALL_DEFINE3(sigprocmask, int, how, old_sigset_t __user *, set,
2798 old_sigset_t __user *, oset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799{
2800 int error;
2801 old_sigset_t old_set, new_set;
2802
2803 if (set) {
2804 error = -EFAULT;
2805 if (copy_from_user(&new_set, set, sizeof(*set)))
2806 goto out;
2807 new_set &= ~(sigmask(SIGKILL) | sigmask(SIGSTOP));
2808
2809 spin_lock_irq(&current->sighand->siglock);
2810 old_set = current->blocked.sig[0];
2811
2812 error = 0;
2813 switch (how) {
2814 default:
2815 error = -EINVAL;
2816 break;
2817 case SIG_BLOCK:
2818 sigaddsetmask(&current->blocked, new_set);
2819 break;
2820 case SIG_UNBLOCK:
2821 sigdelsetmask(&current->blocked, new_set);
2822 break;
2823 case SIG_SETMASK:
2824 current->blocked.sig[0] = new_set;
2825 break;
2826 }
2827
2828 recalc_sigpending();
2829 spin_unlock_irq(&current->sighand->siglock);
2830 if (error)
2831 goto out;
2832 if (oset)
2833 goto set_old;
2834 } else if (oset) {
2835 old_set = current->blocked.sig[0];
2836 set_old:
2837 error = -EFAULT;
2838 if (copy_to_user(oset, &old_set, sizeof(*oset)))
2839 goto out;
2840 }
2841 error = 0;
2842out:
2843 return error;
2844}
2845#endif /* __ARCH_WANT_SYS_SIGPROCMASK */
2846
2847#ifdef __ARCH_WANT_SYS_RT_SIGACTION
Heiko Carstensd4e82042009-01-14 14:14:34 +01002848SYSCALL_DEFINE4(rt_sigaction, int, sig,
2849 const struct sigaction __user *, act,
2850 struct sigaction __user *, oact,
2851 size_t, sigsetsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852{
2853 struct k_sigaction new_sa, old_sa;
2854 int ret = -EINVAL;
2855
2856 /* XXX: Don't preclude handling different sized sigset_t's. */
2857 if (sigsetsize != sizeof(sigset_t))
2858 goto out;
2859
2860 if (act) {
2861 if (copy_from_user(&new_sa.sa, act, sizeof(new_sa.sa)))
2862 return -EFAULT;
2863 }
2864
2865 ret = do_sigaction(sig, act ? &new_sa : NULL, oact ? &old_sa : NULL);
2866
2867 if (!ret && oact) {
2868 if (copy_to_user(oact, &old_sa.sa, sizeof(old_sa.sa)))
2869 return -EFAULT;
2870 }
2871out:
2872 return ret;
2873}
2874#endif /* __ARCH_WANT_SYS_RT_SIGACTION */
2875
2876#ifdef __ARCH_WANT_SYS_SGETMASK
2877
2878/*
2879 * For backwards compatibility. Functionality superseded by sigprocmask.
2880 */
Heiko Carstensa5f8fa92009-01-14 14:14:11 +01002881SYSCALL_DEFINE0(sgetmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882{
2883 /* SMP safe */
2884 return current->blocked.sig[0];
2885}
2886
Heiko Carstensa5f8fa92009-01-14 14:14:11 +01002887SYSCALL_DEFINE1(ssetmask, int, newmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888{
2889 int old;
2890
2891 spin_lock_irq(&current->sighand->siglock);
2892 old = current->blocked.sig[0];
2893
2894 siginitset(&current->blocked, newmask & ~(sigmask(SIGKILL)|
2895 sigmask(SIGSTOP)));
2896 recalc_sigpending();
2897 spin_unlock_irq(&current->sighand->siglock);
2898
2899 return old;
2900}
2901#endif /* __ARCH_WANT_SGETMASK */
2902
2903#ifdef __ARCH_WANT_SYS_SIGNAL
2904/*
2905 * For backwards compatibility. Functionality superseded by sigaction.
2906 */
Heiko Carstensa5f8fa92009-01-14 14:14:11 +01002907SYSCALL_DEFINE2(signal, int, sig, __sighandler_t, handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908{
2909 struct k_sigaction new_sa, old_sa;
2910 int ret;
2911
2912 new_sa.sa.sa_handler = handler;
2913 new_sa.sa.sa_flags = SA_ONESHOT | SA_NOMASK;
Oleg Nesterovc70d3d72006-02-09 22:41:41 +03002914 sigemptyset(&new_sa.sa.sa_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915
2916 ret = do_sigaction(sig, &new_sa, &old_sa);
2917
2918 return ret ? ret : (unsigned long)old_sa.sa.sa_handler;
2919}
2920#endif /* __ARCH_WANT_SYS_SIGNAL */
2921
2922#ifdef __ARCH_WANT_SYS_PAUSE
2923
Heiko Carstensa5f8fa92009-01-14 14:14:11 +01002924SYSCALL_DEFINE0(pause)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925{
2926 current->state = TASK_INTERRUPTIBLE;
2927 schedule();
2928 return -ERESTARTNOHAND;
2929}
2930
2931#endif
2932
David Woodhouse150256d2006-01-18 17:43:57 -08002933#ifdef __ARCH_WANT_SYS_RT_SIGSUSPEND
Heiko Carstensd4e82042009-01-14 14:14:34 +01002934SYSCALL_DEFINE2(rt_sigsuspend, sigset_t __user *, unewset, size_t, sigsetsize)
David Woodhouse150256d2006-01-18 17:43:57 -08002935{
2936 sigset_t newset;
2937
2938 /* XXX: Don't preclude handling different sized sigset_t's. */
2939 if (sigsetsize != sizeof(sigset_t))
2940 return -EINVAL;
2941
2942 if (copy_from_user(&newset, unewset, sizeof(newset)))
2943 return -EFAULT;
2944 sigdelsetmask(&newset, sigmask(SIGKILL)|sigmask(SIGSTOP));
2945
2946 spin_lock_irq(&current->sighand->siglock);
2947 current->saved_sigmask = current->blocked;
2948 current->blocked = newset;
2949 recalc_sigpending();
2950 spin_unlock_irq(&current->sighand->siglock);
2951
2952 current->state = TASK_INTERRUPTIBLE;
2953 schedule();
Roland McGrath4e4c22c2008-04-30 00:53:06 -07002954 set_restore_sigmask();
David Woodhouse150256d2006-01-18 17:43:57 -08002955 return -ERESTARTNOHAND;
2956}
2957#endif /* __ARCH_WANT_SYS_RT_SIGSUSPEND */
2958
David Howellsf269fdd2006-09-27 01:50:23 -07002959__attribute__((weak)) const char *arch_vma_name(struct vm_area_struct *vma)
2960{
2961 return NULL;
2962}
2963
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964void __init signals_init(void)
2965{
Christoph Lameter0a31bd52007-05-06 14:49:57 -07002966 sigqueue_cachep = KMEM_CACHE(sigqueue, SLAB_PANIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967}
Jason Wessel67fc4e02010-05-20 21:04:21 -05002968
2969#ifdef CONFIG_KGDB_KDB
2970#include <linux/kdb.h>
2971/*
2972 * kdb_send_sig_info - Allows kdb to send signals without exposing
2973 * signal internals. This function checks if the required locks are
2974 * available before calling the main signal code, to avoid kdb
2975 * deadlocks.
2976 */
2977void
2978kdb_send_sig_info(struct task_struct *t, struct siginfo *info)
2979{
2980 static struct task_struct *kdb_prev_t;
2981 int sig, new_t;
2982 if (!spin_trylock(&t->sighand->siglock)) {
2983 kdb_printf("Can't do kill command now.\n"
2984 "The sigmask lock is held somewhere else in "
2985 "kernel, try again later\n");
2986 return;
2987 }
2988 spin_unlock(&t->sighand->siglock);
2989 new_t = kdb_prev_t != t;
2990 kdb_prev_t = t;
2991 if (t->state != TASK_RUNNING && new_t) {
2992 kdb_printf("Process is not RUNNING, sending a signal from "
2993 "kdb risks deadlock\n"
2994 "on the run queue locks. "
2995 "The signal has _not_ been sent.\n"
2996 "Reissue the kill command if you want to risk "
2997 "the deadlock.\n");
2998 return;
2999 }
3000 sig = info->si_signo;
3001 if (send_sig_info(sig, info, t))
3002 kdb_printf("Fail to deliver Signal %d to process %d.\n",
3003 sig, t->pid);
3004 else
3005 kdb_printf("Signal %d is sent to process %d.\n", sig, t->pid);
3006}
3007#endif /* CONFIG_KGDB_KDB */