blob: 38ea9e2f18311a67852d8658cb3111c635460900 [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.
Tejun Heo244056f2011-03-23 10:37:01 +0100271 *
272 * RETURNS:
273 * %true if group stop completion should be notified to the parent, %false
274 * otherwise.
Tejun Heoe5c19022011-03-23 10:37:00 +0100275 */
276static bool task_participate_group_stop(struct task_struct *task)
277{
278 struct signal_struct *sig = task->signal;
279 bool consume = task->group_stop & GROUP_STOP_CONSUME;
280
Tejun Heo39efa3e2011-03-23 10:37:00 +0100281 WARN_ON_ONCE(!(task->group_stop & GROUP_STOP_PENDING));
282
Tejun Heoe5c19022011-03-23 10:37:00 +0100283 task_clear_group_stop_pending(task);
284
285 if (!consume)
286 return false;
287
288 if (!WARN_ON_ONCE(sig->group_stop_count == 0))
289 sig->group_stop_count--;
290
Tejun Heo244056f2011-03-23 10:37:01 +0100291 /*
292 * Tell the caller to notify completion iff we are entering into a
293 * fresh group stop. Read comment in do_signal_stop() for details.
294 */
295 if (!sig->group_stop_count && !(sig->flags & SIGNAL_STOP_STOPPED)) {
Tejun Heoe5c19022011-03-23 10:37:00 +0100296 sig->flags = SIGNAL_STOP_STOPPED;
297 return true;
298 }
299 return false;
300}
301
David Howellsc69e8d92008-11-14 10:39:19 +1100302/*
303 * allocate a new signal queue record
304 * - this may be called without locks if and only if t == current, otherwise an
David Howellsd84f4f92008-11-14 10:39:23 +1100305 * appopriate lock must be held to stop the target task from exiting
David Howellsc69e8d92008-11-14 10:39:19 +1100306 */
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +0900307static struct sigqueue *
308__sigqueue_alloc(int sig, struct task_struct *t, gfp_t flags, int override_rlimit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
310 struct sigqueue *q = NULL;
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800311 struct user_struct *user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800313 /*
Thomas Gleixner7cf7db82009-12-10 00:53:21 +0000314 * Protect access to @t credentials. This can go away when all
315 * callers hold rcu read lock.
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800316 */
Thomas Gleixner7cf7db82009-12-10 00:53:21 +0000317 rcu_read_lock();
David Howellsd84f4f92008-11-14 10:39:23 +1100318 user = get_uid(__task_cred(t)->user);
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800319 atomic_inc(&user->sigpending);
Thomas Gleixner7cf7db82009-12-10 00:53:21 +0000320 rcu_read_unlock();
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +0900321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 if (override_rlimit ||
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800323 atomic_read(&user->sigpending) <=
Jiri Slaby78d7d402010-03-05 13:42:54 -0800324 task_rlimit(t, RLIMIT_SIGPENDING)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 q = kmem_cache_alloc(sigqueue_cachep, flags);
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +0900326 } else {
327 print_dropped_signal(sig);
328 }
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 if (unlikely(q == NULL)) {
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800331 atomic_dec(&user->sigpending);
David Howellsd84f4f92008-11-14 10:39:23 +1100332 free_uid(user);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 } else {
334 INIT_LIST_HEAD(&q->list);
335 q->flags = 0;
David Howellsd84f4f92008-11-14 10:39:23 +1100336 q->user = user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 }
David Howellsd84f4f92008-11-14 10:39:23 +1100338
339 return q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
Andrew Morton514a01b2006-02-03 03:04:41 -0800342static void __sigqueue_free(struct sigqueue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
344 if (q->flags & SIGQUEUE_PREALLOC)
345 return;
346 atomic_dec(&q->user->sigpending);
347 free_uid(q->user);
348 kmem_cache_free(sigqueue_cachep, q);
349}
350
Oleg Nesterov6a14c5c2006-03-28 16:11:18 -0800351void flush_sigqueue(struct sigpending *queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
353 struct sigqueue *q;
354
355 sigemptyset(&queue->signal);
356 while (!list_empty(&queue->list)) {
357 q = list_entry(queue->list.next, struct sigqueue , list);
358 list_del_init(&q->list);
359 __sigqueue_free(q);
360 }
361}
362
363/*
364 * Flush all pending signals for a task.
365 */
David Howells3bcac022009-04-29 13:45:05 +0100366void __flush_signals(struct task_struct *t)
367{
368 clear_tsk_thread_flag(t, TIF_SIGPENDING);
369 flush_sigqueue(&t->pending);
370 flush_sigqueue(&t->signal->shared_pending);
371}
372
Oleg Nesterovc81addc2006-03-28 16:11:17 -0800373void flush_signals(struct task_struct *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
375 unsigned long flags;
376
377 spin_lock_irqsave(&t->sighand->siglock, flags);
David Howells3bcac022009-04-29 13:45:05 +0100378 __flush_signals(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 spin_unlock_irqrestore(&t->sighand->siglock, flags);
380}
381
Oleg Nesterovcbaffba2008-05-26 20:55:42 +0400382static void __flush_itimer_signals(struct sigpending *pending)
383{
384 sigset_t signal, retain;
385 struct sigqueue *q, *n;
386
387 signal = pending->signal;
388 sigemptyset(&retain);
389
390 list_for_each_entry_safe(q, n, &pending->list, list) {
391 int sig = q->info.si_signo;
392
393 if (likely(q->info.si_code != SI_TIMER)) {
394 sigaddset(&retain, sig);
395 } else {
396 sigdelset(&signal, sig);
397 list_del_init(&q->list);
398 __sigqueue_free(q);
399 }
400 }
401
402 sigorsets(&pending->signal, &signal, &retain);
403}
404
405void flush_itimer_signals(void)
406{
407 struct task_struct *tsk = current;
408 unsigned long flags;
409
410 spin_lock_irqsave(&tsk->sighand->siglock, flags);
411 __flush_itimer_signals(&tsk->pending);
412 __flush_itimer_signals(&tsk->signal->shared_pending);
413 spin_unlock_irqrestore(&tsk->sighand->siglock, flags);
414}
415
Oleg Nesterov10ab8252007-05-09 02:34:37 -0700416void ignore_signals(struct task_struct *t)
417{
418 int i;
419
420 for (i = 0; i < _NSIG; ++i)
421 t->sighand->action[i].sa.sa_handler = SIG_IGN;
422
423 flush_signals(t);
424}
425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 * Flush all handlers for a task.
428 */
429
430void
431flush_signal_handlers(struct task_struct *t, int force_default)
432{
433 int i;
434 struct k_sigaction *ka = &t->sighand->action[0];
435 for (i = _NSIG ; i != 0 ; i--) {
436 if (force_default || ka->sa.sa_handler != SIG_IGN)
437 ka->sa.sa_handler = SIG_DFL;
438 ka->sa.sa_flags = 0;
439 sigemptyset(&ka->sa.sa_mask);
440 ka++;
441 }
442}
443
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200444int unhandled_signal(struct task_struct *tsk, int sig)
445{
Roland McGrath445a91d2008-07-25 19:45:52 -0700446 void __user *handler = tsk->sighand->action[sig-1].sa.sa_handler;
Serge E. Hallynb460cbc2007-10-18 23:39:52 -0700447 if (is_global_init(tsk))
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200448 return 1;
Roland McGrath445a91d2008-07-25 19:45:52 -0700449 if (handler != SIG_IGN && handler != SIG_DFL)
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200450 return 0;
Oleg Nesterov43918f22009-04-02 16:58:00 -0700451 return !tracehook_consider_fatal_signal(tsk, sig);
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200452}
453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
455/* Notify the system that a driver wants to block all signals for this
456 * process, and wants to be notified if any signals at all were to be
457 * sent/acted upon. If the notifier routine returns non-zero, then the
458 * signal will be acted upon after all. If the notifier routine returns 0,
459 * then then signal will be blocked. Only one block per process is
460 * allowed. priv is a pointer to private data that the notifier routine
461 * can use to determine if the signal should be blocked or not. */
462
463void
464block_all_signals(int (*notifier)(void *priv), void *priv, sigset_t *mask)
465{
466 unsigned long flags;
467
468 spin_lock_irqsave(&current->sighand->siglock, flags);
469 current->notifier_mask = mask;
470 current->notifier_data = priv;
471 current->notifier = notifier;
472 spin_unlock_irqrestore(&current->sighand->siglock, flags);
473}
474
475/* Notify the system that blocking has ended. */
476
477void
478unblock_all_signals(void)
479{
480 unsigned long flags;
481
482 spin_lock_irqsave(&current->sighand->siglock, flags);
483 current->notifier = NULL;
484 current->notifier_data = NULL;
485 recalc_sigpending();
486 spin_unlock_irqrestore(&current->sighand->siglock, flags);
487}
488
Oleg Nesterov100360f2008-07-25 01:47:29 -0700489static void collect_signal(int sig, struct sigpending *list, siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
491 struct sigqueue *q, *first = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 /*
494 * Collect the siginfo appropriate to this signal. Check if
495 * there is another siginfo for the same signal.
496 */
497 list_for_each_entry(q, &list->list, list) {
498 if (q->info.si_signo == sig) {
Oleg Nesterovd4434202008-07-25 01:47:28 -0700499 if (first)
500 goto still_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 first = q;
502 }
503 }
Oleg Nesterovd4434202008-07-25 01:47:28 -0700504
505 sigdelset(&list->signal, sig);
506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 if (first) {
Oleg Nesterovd4434202008-07-25 01:47:28 -0700508still_pending:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 list_del_init(&first->list);
510 copy_siginfo(info, &first->info);
511 __sigqueue_free(first);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 /* Ok, it wasn't in the queue. This must be
514 a fast-pathed signal or we must have been
515 out of queue space. So zero out the info.
516 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 info->si_signo = sig;
518 info->si_errno = 0;
Oleg Nesterov7486e5d2009-12-15 16:47:24 -0800519 info->si_code = SI_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 info->si_pid = 0;
521 info->si_uid = 0;
522 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523}
524
525static int __dequeue_signal(struct sigpending *pending, sigset_t *mask,
526 siginfo_t *info)
527{
Roland McGrath27d91e02006-09-29 02:00:31 -0700528 int sig = next_signal(pending, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 if (sig) {
531 if (current->notifier) {
532 if (sigismember(current->notifier_mask, sig)) {
533 if (!(current->notifier)(current->notifier_data)) {
534 clear_thread_flag(TIF_SIGPENDING);
535 return 0;
536 }
537 }
538 }
539
Oleg Nesterov100360f2008-07-25 01:47:29 -0700540 collect_signal(sig, pending, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 return sig;
544}
545
546/*
547 * Dequeue a signal and return the element to the caller, which is
548 * expected to free it.
549 *
550 * All callers have to hold the siglock.
551 */
552int dequeue_signal(struct task_struct *tsk, sigset_t *mask, siginfo_t *info)
553{
Pavel Emelyanovc5363d02008-04-30 00:52:40 -0700554 int signr;
Benjamin Herrenschmidtcaec4e82007-06-12 08:16:18 +1000555
556 /* We only dequeue private signals from ourselves, we don't let
557 * signalfd steal them
558 */
Davide Libenzib8fceee2007-09-20 12:40:16 -0700559 signr = __dequeue_signal(&tsk->pending, mask, info);
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800560 if (!signr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 signr = __dequeue_signal(&tsk->signal->shared_pending,
562 mask, info);
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800563 /*
564 * itimer signal ?
565 *
566 * itimers are process shared and we restart periodic
567 * itimers in the signal delivery path to prevent DoS
568 * attacks in the high resolution timer case. This is
569 * compliant with the old way of self restarting
570 * itimers, as the SIGALRM is a legacy signal and only
571 * queued once. Changing the restart behaviour to
572 * restart the timer in the signal dequeue path is
573 * reducing the timer noise on heavy loaded !highres
574 * systems too.
575 */
576 if (unlikely(signr == SIGALRM)) {
577 struct hrtimer *tmr = &tsk->signal->real_timer;
578
579 if (!hrtimer_is_queued(tmr) &&
580 tsk->signal->it_real_incr.tv64 != 0) {
581 hrtimer_forward(tmr, tmr->base->get_time(),
582 tsk->signal->it_real_incr);
583 hrtimer_restart(tmr);
584 }
585 }
586 }
Pavel Emelyanovc5363d02008-04-30 00:52:40 -0700587
Davide Libenzib8fceee2007-09-20 12:40:16 -0700588 recalc_sigpending();
Pavel Emelyanovc5363d02008-04-30 00:52:40 -0700589 if (!signr)
590 return 0;
591
592 if (unlikely(sig_kernel_stop(signr))) {
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800593 /*
594 * Set a marker that we have dequeued a stop signal. Our
595 * caller might release the siglock and then the pending
596 * stop signal it is about to process is no longer in the
597 * pending bitmasks, but must still be cleared by a SIGCONT
598 * (and overruled by a SIGKILL). So those cases clear this
599 * shared flag after we've set it. Note that this flag may
600 * remain set after the signal we return is ignored or
601 * handled. That doesn't matter because its only purpose
602 * is to alert stop-signal processing code when another
603 * processor has come along and cleared the flag.
604 */
Oleg Nesterov92413d72008-07-25 01:47:30 -0700605 tsk->signal->flags |= SIGNAL_STOP_DEQUEUED;
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800606 }
Pavel Emelyanovc5363d02008-04-30 00:52:40 -0700607 if ((info->si_code & __SI_MASK) == __SI_TIMER && info->si_sys_private) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 /*
609 * Release the siglock to ensure proper locking order
610 * of timer locks outside of siglocks. Note, we leave
611 * irqs disabled here, since the posix-timers code is
612 * about to disable them again anyway.
613 */
614 spin_unlock(&tsk->sighand->siglock);
615 do_schedule_next_timer(info);
616 spin_lock(&tsk->sighand->siglock);
617 }
618 return signr;
619}
620
621/*
622 * Tell a process that it has a new active signal..
623 *
624 * NOTE! we rely on the previous spin_lock to
625 * lock interrupts for us! We can only be called with
626 * "siglock" held, and the local interrupt must
627 * have been disabled when that got acquired!
628 *
629 * No need to set need_resched since signal event passing
630 * goes through ->blocked
631 */
632void signal_wake_up(struct task_struct *t, int resume)
633{
634 unsigned int mask;
635
636 set_tsk_thread_flag(t, TIF_SIGPENDING);
637
638 /*
Matthew Wilcoxf021a3c2007-12-06 11:13:16 -0500639 * For SIGKILL, we want to wake it up in the stopped/traced/killable
640 * case. We don't check t->state here because there is a race with it
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 * executing another processor and just now entering stopped state.
642 * By using wake_up_state, we ensure the process will wake up and
643 * handle its death signal.
644 */
645 mask = TASK_INTERRUPTIBLE;
646 if (resume)
Matthew Wilcoxf021a3c2007-12-06 11:13:16 -0500647 mask |= TASK_WAKEKILL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 if (!wake_up_state(t, mask))
649 kick_process(t);
650}
651
652/*
653 * Remove signals in mask from the pending set and queue.
654 * Returns 1 if any signals were found.
655 *
656 * All callers must be holding the siglock.
George Anzinger71fabd52006-01-08 01:02:48 -0800657 *
658 * This version takes a sigset mask and looks at all signals,
659 * not just those in the first mask word.
660 */
661static int rm_from_queue_full(sigset_t *mask, struct sigpending *s)
662{
663 struct sigqueue *q, *n;
664 sigset_t m;
665
666 sigandsets(&m, mask, &s->signal);
667 if (sigisemptyset(&m))
668 return 0;
669
670 signandsets(&s->signal, &s->signal, mask);
671 list_for_each_entry_safe(q, n, &s->list, list) {
672 if (sigismember(mask, q->info.si_signo)) {
673 list_del_init(&q->list);
674 __sigqueue_free(q);
675 }
676 }
677 return 1;
678}
679/*
680 * Remove signals in mask from the pending set and queue.
681 * Returns 1 if any signals were found.
682 *
683 * All callers must be holding the siglock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 */
685static int rm_from_queue(unsigned long mask, struct sigpending *s)
686{
687 struct sigqueue *q, *n;
688
689 if (!sigtestsetmask(&s->signal, mask))
690 return 0;
691
692 sigdelsetmask(&s->signal, mask);
693 list_for_each_entry_safe(q, n, &s->list, list) {
694 if (q->info.si_signo < SIGRTMIN &&
695 (mask & sigmask(q->info.si_signo))) {
696 list_del_init(&q->list);
697 __sigqueue_free(q);
698 }
699 }
700 return 1;
701}
702
Oleg Nesterov614c5172009-12-15 16:47:22 -0800703static inline int is_si_special(const struct siginfo *info)
704{
705 return info <= SEND_SIG_FORCED;
706}
707
708static inline bool si_fromuser(const struct siginfo *info)
709{
710 return info == SEND_SIG_NOINFO ||
711 (!is_si_special(info) && SI_FROMUSER(info));
712}
713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714/*
715 * Bad permissions for sending the signal
David Howells694f6902010-08-04 16:59:14 +0100716 * - the caller must hold the RCU read lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 */
718static int check_kill_permission(int sig, struct siginfo *info,
719 struct task_struct *t)
720{
Oleg Nesterov065add32010-05-26 14:42:54 -0700721 const struct cred *cred, *tcred;
Oleg Nesterov2e2ba222008-04-30 00:53:01 -0700722 struct pid *sid;
Oleg Nesterov3b5e9e52008-04-30 00:52:42 -0700723 int error;
724
Jesper Juhl7ed20e12005-05-01 08:59:14 -0700725 if (!valid_signal(sig))
Oleg Nesterov3b5e9e52008-04-30 00:52:42 -0700726 return -EINVAL;
727
Oleg Nesterov614c5172009-12-15 16:47:22 -0800728 if (!si_fromuser(info))
Oleg Nesterov3b5e9e52008-04-30 00:52:42 -0700729 return 0;
730
731 error = audit_signal_info(sig, t); /* Let audit system see the signal */
732 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 return error;
Amy Griffise54dc242007-03-29 18:01:04 -0400734
Oleg Nesterov065add32010-05-26 14:42:54 -0700735 cred = current_cred();
David Howellsc69e8d92008-11-14 10:39:19 +1100736 tcred = __task_cred(t);
Oleg Nesterov065add32010-05-26 14:42:54 -0700737 if (!same_thread_group(current, t) &&
738 (cred->euid ^ tcred->suid) &&
David Howellsc69e8d92008-11-14 10:39:19 +1100739 (cred->euid ^ tcred->uid) &&
740 (cred->uid ^ tcred->suid) &&
741 (cred->uid ^ tcred->uid) &&
Oleg Nesterov2e2ba222008-04-30 00:53:01 -0700742 !capable(CAP_KILL)) {
743 switch (sig) {
744 case SIGCONT:
Oleg Nesterov2e2ba222008-04-30 00:53:01 -0700745 sid = task_session(t);
Oleg Nesterov2e2ba222008-04-30 00:53:01 -0700746 /*
747 * We don't return the error if sid == NULL. The
748 * task was unhashed, the caller must notice this.
749 */
750 if (!sid || sid == task_session(current))
751 break;
752 default:
753 return -EPERM;
754 }
755 }
Steve Grubbc2f0c7c2005-05-06 12:38:39 +0100756
Amy Griffise54dc242007-03-29 18:01:04 -0400757 return security_task_kill(t, info, sig, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758}
759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760/*
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700761 * Handle magic process-wide effects of stop/continue signals. Unlike
762 * the signal actions, these happen immediately at signal-generation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 * time regardless of blocking, ignoring, or handling. This does the
764 * actual continuing for SIGCONT, but not the actual stopping for stop
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700765 * signals. The process stop is done as a signal action for SIG_DFL.
766 *
767 * Returns true if the signal should be actually delivered, otherwise
768 * it should be dropped.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 */
Sukadev Bhattiprolu921cf9f2009-04-02 16:58:05 -0700770static int prepare_signal(int sig, struct task_struct *p, int from_ancestor_ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
Oleg Nesterovad16a462008-04-30 00:52:46 -0700772 struct signal_struct *signal = p->signal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 struct task_struct *t;
774
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700775 if (unlikely(signal->flags & SIGNAL_GROUP_EXIT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 /*
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700777 * The process is in the middle of dying, nothing to do.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 */
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700779 } else if (sig_kernel_stop(sig)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 /*
781 * This is a stop signal. Remove SIGCONT from all queues.
782 */
Oleg Nesterovad16a462008-04-30 00:52:46 -0700783 rm_from_queue(sigmask(SIGCONT), &signal->shared_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 t = p;
785 do {
786 rm_from_queue(sigmask(SIGCONT), &t->pending);
Oleg Nesterovad16a462008-04-30 00:52:46 -0700787 } while_each_thread(p, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 } else if (sig == SIGCONT) {
Oleg Nesterovfc321d22008-04-30 00:52:46 -0700789 unsigned int why;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 /*
Oleg Nesterov1deac632011-04-01 20:11:50 +0200791 * Remove all stop signals from all queues, wake all threads.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 */
Oleg Nesterovad16a462008-04-30 00:52:46 -0700793 rm_from_queue(SIG_KERNEL_STOP_MASK, &signal->shared_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 t = p;
795 do {
Tejun Heo39efa3e2011-03-23 10:37:00 +0100796 task_clear_group_stop_pending(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 rm_from_queue(SIG_KERNEL_STOP_MASK, &t->pending);
Oleg Nesterov1deac632011-04-01 20:11:50 +0200798 wake_up_state(t, __TASK_STOPPED);
Oleg Nesterovad16a462008-04-30 00:52:46 -0700799 } while_each_thread(p, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Oleg Nesterovfc321d22008-04-30 00:52:46 -0700801 /*
802 * Notify the parent with CLD_CONTINUED if we were stopped.
803 *
804 * If we were in the middle of a group stop, we pretend it
805 * was already finished, and then continued. Since SIGCHLD
806 * doesn't queue we report only CLD_STOPPED, as if the next
807 * CLD_CONTINUED was dropped.
808 */
809 why = 0;
Oleg Nesterovad16a462008-04-30 00:52:46 -0700810 if (signal->flags & SIGNAL_STOP_STOPPED)
Oleg Nesterovfc321d22008-04-30 00:52:46 -0700811 why |= SIGNAL_CLD_CONTINUED;
Oleg Nesterovad16a462008-04-30 00:52:46 -0700812 else if (signal->group_stop_count)
Oleg Nesterovfc321d22008-04-30 00:52:46 -0700813 why |= SIGNAL_CLD_STOPPED;
814
815 if (why) {
Oleg Nesterov021e1ae2008-04-30 00:53:00 -0700816 /*
Roland McGrathae6d2ed2009-09-23 15:56:53 -0700817 * The first thread which returns from do_signal_stop()
Oleg Nesterov021e1ae2008-04-30 00:53:00 -0700818 * will take ->siglock, notice SIGNAL_CLD_MASK, and
819 * notify its parent. See get_signal_to_deliver().
820 */
Oleg Nesterovad16a462008-04-30 00:52:46 -0700821 signal->flags = why | SIGNAL_STOP_CONTINUED;
822 signal->group_stop_count = 0;
823 signal->group_exit_code = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 } else {
825 /*
826 * We are not stopped, but there could be a stop
827 * signal in the middle of being processed after
828 * being removed from the queue. Clear that too.
829 */
Oleg Nesterovad16a462008-04-30 00:52:46 -0700830 signal->flags &= ~SIGNAL_STOP_DEQUEUED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 }
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700833
Sukadev Bhattiprolu921cf9f2009-04-02 16:58:05 -0700834 return !sig_ignored(p, sig, from_ancestor_ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835}
836
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700837/*
838 * Test if P wants to take SIG. After we've checked all threads with this,
839 * it's equivalent to finding no threads not blocking SIG. Any threads not
840 * blocking SIG were ruled out because they are not running and already
841 * have pending signals. Such threads will dequeue from the shared queue
842 * as soon as they're available, so putting the signal on the shared queue
843 * will be equivalent to sending it to one such thread.
844 */
845static inline int wants_signal(int sig, struct task_struct *p)
846{
847 if (sigismember(&p->blocked, sig))
848 return 0;
849 if (p->flags & PF_EXITING)
850 return 0;
851 if (sig == SIGKILL)
852 return 1;
853 if (task_is_stopped_or_traced(p))
854 return 0;
855 return task_curr(p) || !signal_pending(p);
856}
857
Oleg Nesterov5fcd8352008-04-30 00:52:55 -0700858static void complete_signal(int sig, struct task_struct *p, int group)
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700859{
860 struct signal_struct *signal = p->signal;
861 struct task_struct *t;
862
863 /*
864 * Now find a thread we can wake up to take the signal off the queue.
865 *
866 * If the main thread wants the signal, it gets first crack.
867 * Probably the least surprising to the average bear.
868 */
869 if (wants_signal(sig, p))
870 t = p;
Oleg Nesterov5fcd8352008-04-30 00:52:55 -0700871 else if (!group || thread_group_empty(p))
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700872 /*
873 * There is just one thread and it does not need to be woken.
874 * It will dequeue unblocked signals before it runs again.
875 */
876 return;
877 else {
878 /*
879 * Otherwise try to find a suitable thread.
880 */
881 t = signal->curr_target;
882 while (!wants_signal(sig, t)) {
883 t = next_thread(t);
884 if (t == signal->curr_target)
885 /*
886 * No thread needs to be woken.
887 * Any eligible threads will see
888 * the signal in the queue soon.
889 */
890 return;
891 }
892 signal->curr_target = t;
893 }
894
895 /*
896 * Found a killable thread. If the signal will be fatal,
897 * then start taking the whole group down immediately.
898 */
Oleg Nesterovfae5fa42008-04-30 00:53:03 -0700899 if (sig_fatal(p, sig) &&
900 !(signal->flags & (SIGNAL_UNKILLABLE | SIGNAL_GROUP_EXIT)) &&
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700901 !sigismember(&t->real_blocked, sig) &&
Roland McGrath445a91d2008-07-25 19:45:52 -0700902 (sig == SIGKILL ||
Oleg Nesterov43918f22009-04-02 16:58:00 -0700903 !tracehook_consider_fatal_signal(t, sig))) {
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700904 /*
905 * This signal will be fatal to the whole group.
906 */
907 if (!sig_kernel_coredump(sig)) {
908 /*
909 * Start a group exit and wake everybody up.
910 * This way we don't have other threads
911 * running and doing things after a slower
912 * thread has the fatal signal pending.
913 */
914 signal->flags = SIGNAL_GROUP_EXIT;
915 signal->group_exit_code = sig;
916 signal->group_stop_count = 0;
917 t = p;
918 do {
Tejun Heo39efa3e2011-03-23 10:37:00 +0100919 task_clear_group_stop_pending(t);
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700920 sigaddset(&t->pending.signal, SIGKILL);
921 signal_wake_up(t, 1);
922 } while_each_thread(p, t);
923 return;
924 }
925 }
926
927 /*
928 * The signal is already in the shared-pending queue.
929 * Tell the chosen thread to wake up and dequeue it.
930 */
931 signal_wake_up(t, sig == SIGKILL);
932 return;
933}
934
Pavel Emelyanovaf7fff92008-04-30 00:52:34 -0700935static inline int legacy_queue(struct sigpending *signals, int sig)
936{
937 return (sig < SIGRTMIN) && sigismember(&signals->signal, sig);
938}
939
Sukadev Bhattiprolu7978b562009-04-02 16:58:04 -0700940static int __send_signal(int sig, struct siginfo *info, struct task_struct *t,
941 int group, int from_ancestor_ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942{
Oleg Nesterov2ca35152008-04-30 00:52:54 -0700943 struct sigpending *pending;
Oleg Nesterov6e65acb2008-04-30 00:52:50 -0700944 struct sigqueue *q;
Vegard Nossum7a0aeb12009-05-16 11:28:33 +0200945 int override_rlimit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
Masami Hiramatsud1eb6502009-11-24 16:56:45 -0500947 trace_signal_generate(sig, info, t);
Mathieu Desnoyers0a16b602008-07-18 12:16:17 -0400948
Oleg Nesterov6e65acb2008-04-30 00:52:50 -0700949 assert_spin_locked(&t->sighand->siglock);
Sukadev Bhattiprolu921cf9f2009-04-02 16:58:05 -0700950
951 if (!prepare_signal(sig, t, from_ancestor_ns))
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700952 return 0;
Oleg Nesterov2ca35152008-04-30 00:52:54 -0700953
954 pending = group ? &t->signal->shared_pending : &t->pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 /*
Pavel Emelyanov2acb0242008-04-30 00:52:35 -0700956 * Short-circuit ignored signals and support queuing
957 * exactly one non-rt signal, so that we can get more
958 * detailed information about the cause of the signal.
959 */
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700960 if (legacy_queue(pending, sig))
Pavel Emelyanov2acb0242008-04-30 00:52:35 -0700961 return 0;
Davide Libenzifba2afa2007-05-10 22:23:13 -0700962 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 * fast-pathed signals for kernel-internal things like SIGSTOP
964 * or SIGKILL.
965 */
Oleg Nesterovb67a1b92005-10-30 15:03:44 -0800966 if (info == SEND_SIG_FORCED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 goto out_set;
968
969 /* Real-time signals must be queued if sent by sigqueue, or
970 some other real-time mechanism. It is implementation
971 defined whether kill() does so. We attempt to do so, on
972 the principle of least surprise, but since kill is not
973 allowed to fail with EAGAIN when low on memory we just
974 make sure at least one signal gets delivered and don't
975 pass on the info struct. */
976
Vegard Nossum7a0aeb12009-05-16 11:28:33 +0200977 if (sig < SIGRTMIN)
978 override_rlimit = (is_si_special(info) || info->si_code >= 0);
979 else
980 override_rlimit = 0;
981
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +0900982 q = __sigqueue_alloc(sig, t, GFP_ATOMIC | __GFP_NOTRACK_FALSE_POSITIVE,
Vegard Nossum7a0aeb12009-05-16 11:28:33 +0200983 override_rlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 if (q) {
Oleg Nesterov2ca35152008-04-30 00:52:54 -0700985 list_add_tail(&q->list, &pending->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 switch ((unsigned long) info) {
Oleg Nesterovb67a1b92005-10-30 15:03:44 -0800987 case (unsigned long) SEND_SIG_NOINFO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 q->info.si_signo = sig;
989 q->info.si_errno = 0;
990 q->info.si_code = SI_USER;
Sukadev Bhattiprolu9cd4fd12009-01-06 14:42:46 -0800991 q->info.si_pid = task_tgid_nr_ns(current,
Sukadev Bhattiprolu09bca052009-01-06 14:42:45 -0800992 task_active_pid_ns(t));
David Howells76aac0e2008-11-14 10:39:12 +1100993 q->info.si_uid = current_uid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 break;
Oleg Nesterovb67a1b92005-10-30 15:03:44 -0800995 case (unsigned long) SEND_SIG_PRIV:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 q->info.si_signo = sig;
997 q->info.si_errno = 0;
998 q->info.si_code = SI_KERNEL;
999 q->info.si_pid = 0;
1000 q->info.si_uid = 0;
1001 break;
1002 default:
1003 copy_siginfo(&q->info, info);
Sukadev Bhattiprolu6588c1e2009-04-02 16:58:09 -07001004 if (from_ancestor_ns)
1005 q->info.si_pid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 break;
1007 }
Oleg Nesterov621d3122005-10-30 15:03:45 -08001008 } else if (!is_si_special(info)) {
Masami Hiramatsuba005e12009-11-24 16:56:58 -05001009 if (sig >= SIGRTMIN && info->si_code != SI_USER) {
1010 /*
1011 * Queue overflow, abort. We may abort if the
1012 * signal was rt and sent by user using something
1013 * other than kill().
1014 */
1015 trace_signal_overflow_fail(sig, group, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 return -EAGAIN;
Masami Hiramatsuba005e12009-11-24 16:56:58 -05001017 } else {
1018 /*
1019 * This is a silent loss of information. We still
1020 * send the signal, but the *info bits are lost.
1021 */
1022 trace_signal_lose_info(sig, group, info);
1023 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 }
1025
1026out_set:
Oleg Nesterov53c30332008-04-30 00:53:00 -07001027 signalfd_notify(t, sig);
Oleg Nesterov2ca35152008-04-30 00:52:54 -07001028 sigaddset(&pending->signal, sig);
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -07001029 complete_signal(sig, t, group);
1030 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031}
1032
Sukadev Bhattiprolu7978b562009-04-02 16:58:04 -07001033static int send_signal(int sig, struct siginfo *info, struct task_struct *t,
1034 int group)
1035{
Sukadev Bhattiprolu921cf9f2009-04-02 16:58:05 -07001036 int from_ancestor_ns = 0;
1037
1038#ifdef CONFIG_PID_NS
Oleg Nesterovdd342002009-12-15 16:47:24 -08001039 from_ancestor_ns = si_fromuser(info) &&
1040 !task_pid_nr_ns(current, task_active_pid_ns(t));
Sukadev Bhattiprolu921cf9f2009-04-02 16:58:05 -07001041#endif
1042
1043 return __send_signal(sig, info, t, group, from_ancestor_ns);
Sukadev Bhattiprolu7978b562009-04-02 16:58:04 -07001044}
1045
Ingo Molnar45807a12007-07-15 23:40:10 -07001046static void print_fatal_signal(struct pt_regs *regs, int signr)
1047{
1048 printk("%s/%d: potentially unexpected fatal signal %d.\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001049 current->comm, task_pid_nr(current), signr);
Ingo Molnar45807a12007-07-15 23:40:10 -07001050
Al Viroca5cd872007-10-29 04:31:16 +00001051#if defined(__i386__) && !defined(__arch_um__)
H. Peter Anvin65ea5b02008-01-30 13:30:56 +01001052 printk("code at %08lx: ", regs->ip);
Ingo Molnar45807a12007-07-15 23:40:10 -07001053 {
1054 int i;
1055 for (i = 0; i < 16; i++) {
1056 unsigned char insn;
1057
Andi Kleenb45c6e72010-01-08 14:42:52 -08001058 if (get_user(insn, (unsigned char *)(regs->ip + i)))
1059 break;
Ingo Molnar45807a12007-07-15 23:40:10 -07001060 printk("%02x ", insn);
1061 }
1062 }
1063#endif
1064 printk("\n");
Ed Swierk3a9f84d2009-01-26 15:33:31 -08001065 preempt_disable();
Ingo Molnar45807a12007-07-15 23:40:10 -07001066 show_regs(regs);
Ed Swierk3a9f84d2009-01-26 15:33:31 -08001067 preempt_enable();
Ingo Molnar45807a12007-07-15 23:40:10 -07001068}
1069
1070static int __init setup_print_fatal_signals(char *str)
1071{
1072 get_option (&str, &print_fatal_signals);
1073
1074 return 1;
1075}
1076
1077__setup("print-fatal-signals=", setup_print_fatal_signals);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -07001079int
1080__group_send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
1081{
1082 return send_signal(sig, info, p, 1);
1083}
1084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085static int
1086specific_send_sig_info(int sig, struct siginfo *info, struct task_struct *t)
1087{
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -07001088 return send_signal(sig, info, t, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089}
1090
Oleg Nesterov4a30deb2009-09-23 15:57:00 -07001091int do_send_sig_info(int sig, struct siginfo *info, struct task_struct *p,
1092 bool group)
1093{
1094 unsigned long flags;
1095 int ret = -ESRCH;
1096
1097 if (lock_task_sighand(p, &flags)) {
1098 ret = send_signal(sig, info, p, group);
1099 unlock_task_sighand(p, &flags);
1100 }
1101
1102 return ret;
1103}
1104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105/*
1106 * Force a signal that the process can't ignore: if necessary
1107 * we unblock the signal and change any SIG_IGN to SIG_DFL.
Linus Torvaldsae74c3b2006-08-02 20:17:49 -07001108 *
1109 * Note: If we unblock the signal, we always reset it to SIG_DFL,
1110 * since we do not want to have a signal handler that was blocked
1111 * be invoked when user space had explicitly blocked it.
1112 *
Oleg Nesterov80fe7282008-04-30 00:53:05 -07001113 * We don't want to have recursive SIGSEGV's etc, for example,
1114 * that is why we also clear SIGNAL_UNKILLABLE.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116int
1117force_sig_info(int sig, struct siginfo *info, struct task_struct *t)
1118{
1119 unsigned long int flags;
Linus Torvaldsae74c3b2006-08-02 20:17:49 -07001120 int ret, blocked, ignored;
1121 struct k_sigaction *action;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
1123 spin_lock_irqsave(&t->sighand->siglock, flags);
Linus Torvaldsae74c3b2006-08-02 20:17:49 -07001124 action = &t->sighand->action[sig-1];
1125 ignored = action->sa.sa_handler == SIG_IGN;
1126 blocked = sigismember(&t->blocked, sig);
1127 if (blocked || ignored) {
1128 action->sa.sa_handler = SIG_DFL;
1129 if (blocked) {
1130 sigdelset(&t->blocked, sig);
Roland McGrath7bb44ad2007-05-23 13:57:44 -07001131 recalc_sigpending_and_wake(t);
Linus Torvaldsae74c3b2006-08-02 20:17:49 -07001132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 }
Oleg Nesterov80fe7282008-04-30 00:53:05 -07001134 if (action->sa.sa_handler == SIG_DFL)
1135 t->signal->flags &= ~SIGNAL_UNKILLABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 ret = specific_send_sig_info(sig, info, t);
1137 spin_unlock_irqrestore(&t->sighand->siglock, flags);
1138
1139 return ret;
1140}
1141
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142/*
1143 * Nuke all other threads in the group.
1144 */
Oleg Nesterov09faef12010-05-26 14:43:11 -07001145int zap_other_threads(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146{
Oleg Nesterov09faef12010-05-26 14:43:11 -07001147 struct task_struct *t = p;
1148 int count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 p->signal->group_stop_count = 0;
1151
Oleg Nesterov09faef12010-05-26 14:43:11 -07001152 while_each_thread(p, t) {
Tejun Heo39efa3e2011-03-23 10:37:00 +01001153 task_clear_group_stop_pending(t);
Oleg Nesterov09faef12010-05-26 14:43:11 -07001154 count++;
1155
1156 /* Don't bother with already dead threads */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 if (t->exit_state)
1158 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 sigaddset(&t->pending.signal, SIGKILL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 signal_wake_up(t, 1);
1161 }
Oleg Nesterov09faef12010-05-26 14:43:11 -07001162
1163 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164}
1165
Namhyung Kimb8ed3742010-10-27 15:34:06 -07001166struct sighand_struct *__lock_task_sighand(struct task_struct *tsk,
1167 unsigned long *flags)
Oleg Nesterovf63ee722006-03-28 16:11:13 -08001168{
1169 struct sighand_struct *sighand;
1170
Oleg Nesterov1406f2d2008-04-30 00:52:37 -07001171 rcu_read_lock();
Oleg Nesterovf63ee722006-03-28 16:11:13 -08001172 for (;;) {
1173 sighand = rcu_dereference(tsk->sighand);
1174 if (unlikely(sighand == NULL))
1175 break;
1176
1177 spin_lock_irqsave(&sighand->siglock, *flags);
1178 if (likely(sighand == tsk->sighand))
1179 break;
1180 spin_unlock_irqrestore(&sighand->siglock, *flags);
1181 }
Oleg Nesterov1406f2d2008-04-30 00:52:37 -07001182 rcu_read_unlock();
Oleg Nesterovf63ee722006-03-28 16:11:13 -08001183
1184 return sighand;
1185}
1186
David Howellsc69e8d92008-11-14 10:39:19 +11001187/*
1188 * send signal info to all the members of a group
David Howellsc69e8d92008-11-14 10:39:19 +11001189 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190int group_send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
1191{
David Howells694f6902010-08-04 16:59:14 +01001192 int ret;
1193
1194 rcu_read_lock();
1195 ret = check_kill_permission(sig, info, p);
1196 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
Oleg Nesterov4a30deb2009-09-23 15:57:00 -07001198 if (!ret && sig)
1199 ret = do_send_sig_info(sig, info, p, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
1201 return ret;
1202}
1203
1204/*
Pavel Emelyanov146a5052008-02-08 04:19:22 -08001205 * __kill_pgrp_info() sends a signal to a process group: this is what the tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 * control characters do (^C, ^Z etc)
David Howellsc69e8d92008-11-14 10:39:19 +11001207 * - the caller must hold at least a readlock on tasklist_lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 */
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001209int __kill_pgrp_info(int sig, struct siginfo *info, struct pid *pgrp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210{
1211 struct task_struct *p = NULL;
1212 int retval, success;
1213
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 success = 0;
1215 retval = -ESRCH;
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001216 do_each_pid_task(pgrp, PIDTYPE_PGID, p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 int err = group_send_sig_info(sig, info, p);
1218 success |= !err;
1219 retval = err;
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001220 } while_each_pid_task(pgrp, PIDTYPE_PGID, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 return success ? 0 : retval;
1222}
1223
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001224int kill_pid_info(int sig, struct siginfo *info, struct pid *pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225{
Oleg Nesterovd36174b2008-02-08 04:19:18 -08001226 int error = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 struct task_struct *p;
1228
Ingo Molnare56d0902006-01-08 01:01:37 -08001229 rcu_read_lock();
Oleg Nesterovd36174b2008-02-08 04:19:18 -08001230retry:
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001231 p = pid_task(pid, PIDTYPE_PID);
Oleg Nesterovd36174b2008-02-08 04:19:18 -08001232 if (p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 error = group_send_sig_info(sig, info, p);
Oleg Nesterovd36174b2008-02-08 04:19:18 -08001234 if (unlikely(error == -ESRCH))
1235 /*
1236 * The task was unhashed in between, try again.
1237 * If it is dead, pid_task() will return NULL,
1238 * if we race with de_thread() it will find the
1239 * new leader.
1240 */
1241 goto retry;
1242 }
Ingo Molnare56d0902006-01-08 01:01:37 -08001243 rcu_read_unlock();
Oleg Nesterov6ca25b52008-04-30 00:52:45 -07001244
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 return error;
1246}
1247
Matthew Wilcoxc3de4b32007-02-09 08:11:47 -07001248int
1249kill_proc_info(int sig, struct siginfo *info, pid_t pid)
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001250{
1251 int error;
1252 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001253 error = kill_pid_info(sig, info, find_vpid(pid));
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001254 rcu_read_unlock();
1255 return error;
1256}
1257
Eric W. Biederman2425c082006-10-02 02:17:28 -07001258/* like kill_pid_info(), but doesn't use uid/euid of "current" */
1259int kill_pid_info_as_uid(int sig, struct siginfo *info, struct pid *pid,
David Quigley8f95dc52006-06-30 01:55:47 -07001260 uid_t uid, uid_t euid, u32 secid)
Harald Welte46113832005-10-10 19:44:29 +02001261{
1262 int ret = -EINVAL;
1263 struct task_struct *p;
David Howellsc69e8d92008-11-14 10:39:19 +11001264 const struct cred *pcred;
Thomas Gleixner14d8c9f2009-12-10 00:53:17 +00001265 unsigned long flags;
Harald Welte46113832005-10-10 19:44:29 +02001266
1267 if (!valid_signal(sig))
1268 return ret;
1269
Thomas Gleixner14d8c9f2009-12-10 00:53:17 +00001270 rcu_read_lock();
Eric W. Biederman2425c082006-10-02 02:17:28 -07001271 p = pid_task(pid, PIDTYPE_PID);
Harald Welte46113832005-10-10 19:44:29 +02001272 if (!p) {
1273 ret = -ESRCH;
1274 goto out_unlock;
1275 }
David Howellsc69e8d92008-11-14 10:39:19 +11001276 pcred = __task_cred(p);
Oleg Nesterov614c5172009-12-15 16:47:22 -08001277 if (si_fromuser(info) &&
David Howellsc69e8d92008-11-14 10:39:19 +11001278 euid != pcred->suid && euid != pcred->uid &&
1279 uid != pcred->suid && uid != pcred->uid) {
Harald Welte46113832005-10-10 19:44:29 +02001280 ret = -EPERM;
1281 goto out_unlock;
1282 }
David Quigley8f95dc52006-06-30 01:55:47 -07001283 ret = security_task_kill(p, info, sig, secid);
1284 if (ret)
1285 goto out_unlock;
Thomas Gleixner14d8c9f2009-12-10 00:53:17 +00001286
1287 if (sig) {
1288 if (lock_task_sighand(p, &flags)) {
1289 ret = __send_signal(sig, info, p, 1, 0);
1290 unlock_task_sighand(p, &flags);
1291 } else
1292 ret = -ESRCH;
Harald Welte46113832005-10-10 19:44:29 +02001293 }
1294out_unlock:
Thomas Gleixner14d8c9f2009-12-10 00:53:17 +00001295 rcu_read_unlock();
Harald Welte46113832005-10-10 19:44:29 +02001296 return ret;
1297}
Eric W. Biederman2425c082006-10-02 02:17:28 -07001298EXPORT_SYMBOL_GPL(kill_pid_info_as_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
1300/*
1301 * kill_something_info() interprets pid in interesting ways just like kill(2).
1302 *
1303 * POSIX specifies that kill(-1,sig) is unspecified, but what we have
1304 * is probably wrong. Should make it like BSD or SYSV.
1305 */
1306
Gustavo Fernando Padovanbc64efd2008-07-25 01:47:33 -07001307static int kill_something_info(int sig, struct siginfo *info, pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308{
Eric W. Biederman8d42db182007-02-12 00:52:55 -08001309 int ret;
Pavel Emelyanovd5df7632008-02-08 04:19:22 -08001310
1311 if (pid > 0) {
1312 rcu_read_lock();
1313 ret = kill_pid_info(sig, info, find_vpid(pid));
1314 rcu_read_unlock();
1315 return ret;
1316 }
1317
1318 read_lock(&tasklist_lock);
1319 if (pid != -1) {
1320 ret = __kill_pgrp_info(sig, info,
1321 pid ? find_vpid(-pid) : task_pgrp(current));
1322 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 int retval = 0, count = 0;
1324 struct task_struct * p;
1325
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 for_each_process(p) {
Sukadev Bhattiprolud25141a2008-10-29 14:01:11 -07001327 if (task_pid_vnr(p) > 1 &&
1328 !same_thread_group(p, current)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 int err = group_send_sig_info(sig, info, p);
1330 ++count;
1331 if (err != -EPERM)
1332 retval = err;
1333 }
1334 }
Eric W. Biederman8d42db182007-02-12 00:52:55 -08001335 ret = count ? retval : -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 }
Pavel Emelyanovd5df7632008-02-08 04:19:22 -08001337 read_unlock(&tasklist_lock);
1338
Eric W. Biederman8d42db182007-02-12 00:52:55 -08001339 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340}
1341
1342/*
1343 * These are for backward compatibility with the rest of the kernel source.
1344 */
1345
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346int
1347send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
1348{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 /*
1350 * Make sure legacy kernel users don't send in bad values
1351 * (normal paths check this in check_kill_permission).
1352 */
Jesper Juhl7ed20e12005-05-01 08:59:14 -07001353 if (!valid_signal(sig))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 return -EINVAL;
1355
Oleg Nesterov4a30deb2009-09-23 15:57:00 -07001356 return do_send_sig_info(sig, info, p, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357}
1358
Oleg Nesterovb67a1b92005-10-30 15:03:44 -08001359#define __si_special(priv) \
1360 ((priv) ? SEND_SIG_PRIV : SEND_SIG_NOINFO)
1361
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362int
1363send_sig(int sig, struct task_struct *p, int priv)
1364{
Oleg Nesterovb67a1b92005-10-30 15:03:44 -08001365 return send_sig_info(sig, __si_special(priv), p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366}
1367
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368void
1369force_sig(int sig, struct task_struct *p)
1370{
Oleg Nesterovb67a1b92005-10-30 15:03:44 -08001371 force_sig_info(sig, SEND_SIG_PRIV, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372}
1373
1374/*
1375 * When things go south during signal handling, we
1376 * will force a SIGSEGV. And if the signal that caused
1377 * the problem was already a SIGSEGV, we'll want to
1378 * make sure we don't even try to deliver the signal..
1379 */
1380int
1381force_sigsegv(int sig, struct task_struct *p)
1382{
1383 if (sig == SIGSEGV) {
1384 unsigned long flags;
1385 spin_lock_irqsave(&p->sighand->siglock, flags);
1386 p->sighand->action[sig - 1].sa.sa_handler = SIG_DFL;
1387 spin_unlock_irqrestore(&p->sighand->siglock, flags);
1388 }
1389 force_sig(SIGSEGV, p);
1390 return 0;
1391}
1392
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001393int kill_pgrp(struct pid *pid, int sig, int priv)
1394{
Pavel Emelyanov146a5052008-02-08 04:19:22 -08001395 int ret;
1396
1397 read_lock(&tasklist_lock);
1398 ret = __kill_pgrp_info(sig, __si_special(priv), pid);
1399 read_unlock(&tasklist_lock);
1400
1401 return ret;
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001402}
1403EXPORT_SYMBOL(kill_pgrp);
1404
1405int kill_pid(struct pid *pid, int sig, int priv)
1406{
1407 return kill_pid_info(sig, __si_special(priv), pid);
1408}
1409EXPORT_SYMBOL(kill_pid);
1410
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411/*
1412 * These functions support sending signals using preallocated sigqueue
1413 * structures. This is needed "because realtime applications cannot
1414 * afford to lose notifications of asynchronous events, like timer
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +09001415 * expirations or I/O completions". In the case of Posix Timers
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 * we allocate the sigqueue structure from the timer_create. If this
1417 * allocation fails we are able to report the failure to the application
1418 * with an EAGAIN error.
1419 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420struct sigqueue *sigqueue_alloc(void)
1421{
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +09001422 struct sigqueue *q = __sigqueue_alloc(-1, current, GFP_KERNEL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +09001424 if (q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 q->flags |= SIGQUEUE_PREALLOC;
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +09001426
1427 return q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428}
1429
1430void sigqueue_free(struct sigqueue *q)
1431{
1432 unsigned long flags;
Oleg Nesterov60187d22007-08-30 23:56:35 -07001433 spinlock_t *lock = &current->sighand->siglock;
1434
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 BUG_ON(!(q->flags & SIGQUEUE_PREALLOC));
1436 /*
Oleg Nesterovc8e85b4f2008-05-26 20:55:42 +04001437 * We must hold ->siglock while testing q->list
1438 * to serialize with collect_signal() or with
Oleg Nesterovda7978b2008-05-23 13:04:41 -07001439 * __exit_signal()->flush_sigqueue().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 */
Oleg Nesterov60187d22007-08-30 23:56:35 -07001441 spin_lock_irqsave(lock, flags);
Oleg Nesterovc8e85b4f2008-05-26 20:55:42 +04001442 q->flags &= ~SIGQUEUE_PREALLOC;
1443 /*
1444 * If it is queued it will be freed when dequeued,
1445 * like the "regular" sigqueue.
1446 */
Oleg Nesterov60187d22007-08-30 23:56:35 -07001447 if (!list_empty(&q->list))
Oleg Nesterovc8e85b4f2008-05-26 20:55:42 +04001448 q = NULL;
Oleg Nesterov60187d22007-08-30 23:56:35 -07001449 spin_unlock_irqrestore(lock, flags);
1450
Oleg Nesterovc8e85b4f2008-05-26 20:55:42 +04001451 if (q)
1452 __sigqueue_free(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453}
1454
Oleg Nesterovac5c2152008-04-30 00:52:57 -07001455int send_sigqueue(struct sigqueue *q, struct task_struct *t, int group)
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001456{
Oleg Nesterove62e6652008-04-30 00:52:56 -07001457 int sig = q->info.si_signo;
Oleg Nesterov2ca35152008-04-30 00:52:54 -07001458 struct sigpending *pending;
Oleg Nesterove62e6652008-04-30 00:52:56 -07001459 unsigned long flags;
1460 int ret;
Oleg Nesterov2ca35152008-04-30 00:52:54 -07001461
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -07001462 BUG_ON(!(q->flags & SIGQUEUE_PREALLOC));
Oleg Nesterove62e6652008-04-30 00:52:56 -07001463
1464 ret = -1;
1465 if (!likely(lock_task_sighand(t, &flags)))
1466 goto ret;
1467
Oleg Nesterov7e695a52008-04-30 00:52:59 -07001468 ret = 1; /* the signal is ignored */
Sukadev Bhattiprolu921cf9f2009-04-02 16:58:05 -07001469 if (!prepare_signal(sig, t, 0))
Oleg Nesterove62e6652008-04-30 00:52:56 -07001470 goto out;
1471
1472 ret = 0;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001473 if (unlikely(!list_empty(&q->list))) {
1474 /*
1475 * If an SI_TIMER entry is already queue just increment
1476 * the overrun count.
1477 */
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001478 BUG_ON(q->info.si_code != SI_TIMER);
1479 q->info.si_overrun++;
Oleg Nesterove62e6652008-04-30 00:52:56 -07001480 goto out;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001481 }
Oleg Nesterovba661292008-07-23 20:52:05 +04001482 q->info.si_overrun = 0;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001483
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001484 signalfd_notify(t, sig);
Oleg Nesterov2ca35152008-04-30 00:52:54 -07001485 pending = group ? &t->signal->shared_pending : &t->pending;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001486 list_add_tail(&q->list, &pending->list);
1487 sigaddset(&pending->signal, sig);
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -07001488 complete_signal(sig, t, group);
Oleg Nesterove62e6652008-04-30 00:52:56 -07001489out:
1490 unlock_task_sighand(t, &flags);
1491ret:
1492 return ret;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001493}
1494
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 * Let a parent know about the death of a child.
1497 * For a stopped/continued status change, use do_notify_parent_cldstop instead.
Roland McGrath2b2a1ff2008-07-25 19:45:54 -07001498 *
1499 * Returns -1 if our parent ignored us and so we've switched to
1500 * self-reaping, or else @sig.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 */
Roland McGrath2b2a1ff2008-07-25 19:45:54 -07001502int do_notify_parent(struct task_struct *tsk, int sig)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503{
1504 struct siginfo info;
1505 unsigned long flags;
1506 struct sighand_struct *psig;
Roland McGrath1b046242008-08-19 20:37:07 -07001507 int ret = sig;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
1509 BUG_ON(sig == -1);
1510
1511 /* do_notify_parent_cldstop should have been called instead. */
Matthew Wilcoxe1abb392007-12-06 11:07:35 -05001512 BUG_ON(task_is_stopped_or_traced(tsk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
Oleg Nesterov5cb11442009-06-17 16:27:30 -07001514 BUG_ON(!task_ptrace(tsk) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 (tsk->group_leader != tsk || !thread_group_empty(tsk)));
1516
1517 info.si_signo = sig;
1518 info.si_errno = 0;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001519 /*
1520 * we are under tasklist_lock here so our parent is tied to
1521 * us and cannot exit and release its namespace.
1522 *
1523 * the only it can is to switch its nsproxy with sys_unshare,
1524 * bu uncharing pid namespaces is not allowed, so we'll always
1525 * see relevant namespace
1526 *
1527 * write_lock() currently calls preempt_disable() which is the
1528 * same as rcu_read_lock(), but according to Oleg, this is not
1529 * correct to rely on this
1530 */
1531 rcu_read_lock();
1532 info.si_pid = task_pid_nr_ns(tsk, tsk->parent->nsproxy->pid_ns);
David Howellsc69e8d92008-11-14 10:39:19 +11001533 info.si_uid = __task_cred(tsk)->uid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001534 rcu_read_unlock();
1535
Peter Zijlstra32bd6712009-02-05 12:24:15 +01001536 info.si_utime = cputime_to_clock_t(cputime_add(tsk->utime,
1537 tsk->signal->utime));
1538 info.si_stime = cputime_to_clock_t(cputime_add(tsk->stime,
1539 tsk->signal->stime));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
1541 info.si_status = tsk->exit_code & 0x7f;
1542 if (tsk->exit_code & 0x80)
1543 info.si_code = CLD_DUMPED;
1544 else if (tsk->exit_code & 0x7f)
1545 info.si_code = CLD_KILLED;
1546 else {
1547 info.si_code = CLD_EXITED;
1548 info.si_status = tsk->exit_code >> 8;
1549 }
1550
1551 psig = tsk->parent->sighand;
1552 spin_lock_irqsave(&psig->siglock, flags);
Oleg Nesterov5cb11442009-06-17 16:27:30 -07001553 if (!task_ptrace(tsk) && sig == SIGCHLD &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 (psig->action[SIGCHLD-1].sa.sa_handler == SIG_IGN ||
1555 (psig->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDWAIT))) {
1556 /*
1557 * We are exiting and our parent doesn't care. POSIX.1
1558 * defines special semantics for setting SIGCHLD to SIG_IGN
1559 * or setting the SA_NOCLDWAIT flag: we should be reaped
1560 * automatically and not left for our parent's wait4 call.
1561 * Rather than having the parent do it as a magic kind of
1562 * signal handler, we just set this to tell do_exit that we
1563 * can be cleaned up without becoming a zombie. Note that
1564 * we still call __wake_up_parent in this case, because a
1565 * blocked sys_wait4 might now return -ECHILD.
1566 *
1567 * Whether we send SIGCHLD or not for SA_NOCLDWAIT
1568 * is implementation-defined: we do (if you don't want
1569 * it, just use SIG_IGN instead).
1570 */
Roland McGrath1b046242008-08-19 20:37:07 -07001571 ret = tsk->exit_signal = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 if (psig->action[SIGCHLD-1].sa.sa_handler == SIG_IGN)
Roland McGrath2b2a1ff2008-07-25 19:45:54 -07001573 sig = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 }
Jesper Juhl7ed20e12005-05-01 08:59:14 -07001575 if (valid_signal(sig) && sig > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 __group_send_sig_info(sig, &info, tsk->parent);
1577 __wake_up_parent(tsk, tsk->parent);
1578 spin_unlock_irqrestore(&psig->siglock, flags);
Roland McGrath2b2a1ff2008-07-25 19:45:54 -07001579
Roland McGrath1b046242008-08-19 20:37:07 -07001580 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581}
1582
Tejun Heo75b95952011-03-23 10:37:01 +01001583/**
1584 * do_notify_parent_cldstop - notify parent of stopped/continued state change
1585 * @tsk: task reporting the state change
1586 * @for_ptracer: the notification is for ptracer
1587 * @why: CLD_{CONTINUED|STOPPED|TRAPPED} to report
1588 *
1589 * Notify @tsk's parent that the stopped/continued state has changed. If
1590 * @for_ptracer is %false, @tsk's group leader notifies to its real parent.
1591 * If %true, @tsk reports to @tsk->parent which should be the ptracer.
1592 *
1593 * CONTEXT:
1594 * Must be called with tasklist_lock at least read locked.
1595 */
1596static void do_notify_parent_cldstop(struct task_struct *tsk,
1597 bool for_ptracer, int why)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598{
1599 struct siginfo info;
1600 unsigned long flags;
Oleg Nesterovbc505a42005-09-06 15:17:32 -07001601 struct task_struct *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 struct sighand_struct *sighand;
1603
Tejun Heo75b95952011-03-23 10:37:01 +01001604 if (for_ptracer) {
Oleg Nesterovbc505a42005-09-06 15:17:32 -07001605 parent = tsk->parent;
Tejun Heo75b95952011-03-23 10:37:01 +01001606 } else {
Oleg Nesterovbc505a42005-09-06 15:17:32 -07001607 tsk = tsk->group_leader;
1608 parent = tsk->real_parent;
1609 }
1610
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 info.si_signo = SIGCHLD;
1612 info.si_errno = 0;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001613 /*
1614 * see comment in do_notify_parent() abot the following 3 lines
1615 */
1616 rcu_read_lock();
Oleg Nesterovd9265662009-06-17 16:27:35 -07001617 info.si_pid = task_pid_nr_ns(tsk, parent->nsproxy->pid_ns);
David Howellsc69e8d92008-11-14 10:39:19 +11001618 info.si_uid = __task_cred(tsk)->uid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001619 rcu_read_unlock();
1620
Michael Kerriskd8878ba2008-07-25 01:47:32 -07001621 info.si_utime = cputime_to_clock_t(tsk->utime);
1622 info.si_stime = cputime_to_clock_t(tsk->stime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
1624 info.si_code = why;
1625 switch (why) {
1626 case CLD_CONTINUED:
1627 info.si_status = SIGCONT;
1628 break;
1629 case CLD_STOPPED:
1630 info.si_status = tsk->signal->group_exit_code & 0x7f;
1631 break;
1632 case CLD_TRAPPED:
1633 info.si_status = tsk->exit_code & 0x7f;
1634 break;
1635 default:
1636 BUG();
1637 }
1638
1639 sighand = parent->sighand;
1640 spin_lock_irqsave(&sighand->siglock, flags);
1641 if (sighand->action[SIGCHLD-1].sa.sa_handler != SIG_IGN &&
1642 !(sighand->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDSTOP))
1643 __group_send_sig_info(SIGCHLD, &info, parent);
1644 /*
1645 * Even if SIGCHLD is not generated, we must wake up wait4 calls.
1646 */
1647 __wake_up_parent(tsk, parent);
1648 spin_unlock_irqrestore(&sighand->siglock, flags);
1649}
1650
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001651static inline int may_ptrace_stop(void)
1652{
Oleg Nesterov5cb11442009-06-17 16:27:30 -07001653 if (!likely(task_ptrace(current)))
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001654 return 0;
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001655 /*
1656 * Are we in the middle of do_coredump?
1657 * If so and our tracer is also part of the coredump stopping
1658 * is a deadlock situation, and pointless because our tracer
1659 * is dead so don't allow us to stop.
1660 * If SIGKILL was already sent before the caller unlocked
Oleg Nesterov999d9fc2008-07-25 01:47:41 -07001661 * ->siglock we must see ->core_state != NULL. Otherwise it
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001662 * is safe to enter schedule().
1663 */
Oleg Nesterov999d9fc2008-07-25 01:47:41 -07001664 if (unlikely(current->mm->core_state) &&
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001665 unlikely(current->mm == current->parent->mm))
1666 return 0;
1667
1668 return 1;
1669}
1670
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671/*
Roland McGrath1a669c22008-02-06 01:37:37 -08001672 * Return nonzero if there is a SIGKILL that should be waking us up.
1673 * Called with the siglock held.
1674 */
1675static int sigkill_pending(struct task_struct *tsk)
1676{
Oleg Nesterov3d749b92008-07-25 01:47:37 -07001677 return sigismember(&tsk->pending.signal, SIGKILL) ||
1678 sigismember(&tsk->signal->shared_pending.signal, SIGKILL);
Roland McGrath1a669c22008-02-06 01:37:37 -08001679}
1680
1681/*
Tejun Heoceb6bd62011-03-23 10:37:01 +01001682 * Test whether the target task of the usual cldstop notification - the
1683 * real_parent of @child - is in the same group as the ptracer.
1684 */
1685static bool real_parent_is_ptracer(struct task_struct *child)
1686{
1687 return same_thread_group(child->parent, child->real_parent);
1688}
1689
1690/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 * This must be called with current->sighand->siglock held.
1692 *
1693 * This should be the path for all ptrace stops.
1694 * We always set current->last_siginfo while stopped here.
1695 * That makes it a way to test a stopped process for
1696 * being ptrace-stopped vs being job-control-stopped.
1697 *
Oleg Nesterov20686a32008-02-08 04:19:03 -08001698 * If we actually decide not to stop at all because the tracer
1699 * is gone, we keep current->exit_code unless clear_code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 */
Tejun Heofe1bc6a2011-03-23 10:37:00 +01001701static void ptrace_stop(int exit_code, int why, int clear_code, siginfo_t *info)
Namhyung Kimb8401152010-10-27 15:34:07 -07001702 __releases(&current->sighand->siglock)
1703 __acquires(&current->sighand->siglock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704{
Tejun Heoceb6bd62011-03-23 10:37:01 +01001705 bool gstop_done = false;
1706
Roland McGrath1a669c22008-02-06 01:37:37 -08001707 if (arch_ptrace_stop_needed(exit_code, info)) {
1708 /*
1709 * The arch code has something special to do before a
1710 * ptrace stop. This is allowed to block, e.g. for faults
1711 * on user stack pages. We can't keep the siglock while
1712 * calling arch_ptrace_stop, so we must release it now.
1713 * To preserve proper semantics, we must do this before
1714 * any signal bookkeeping like checking group_stop_count.
1715 * Meanwhile, a SIGKILL could come in before we retake the
1716 * siglock. That must prevent us from sleeping in TASK_TRACED.
1717 * So after regaining the lock, we must check for SIGKILL.
1718 */
1719 spin_unlock_irq(&current->sighand->siglock);
1720 arch_ptrace_stop(exit_code, info);
1721 spin_lock_irq(&current->sighand->siglock);
Oleg Nesterov3d749b92008-07-25 01:47:37 -07001722 if (sigkill_pending(current))
1723 return;
Roland McGrath1a669c22008-02-06 01:37:37 -08001724 }
1725
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 /*
Tejun Heo0ae8ce12011-03-23 10:37:00 +01001727 * If @why is CLD_STOPPED, we're trapping to participate in a group
1728 * stop. Do the bookkeeping. Note that if SIGCONT was delievered
1729 * while siglock was released for the arch hook, PENDING could be
1730 * clear now. We act as if SIGCONT is received after TASK_TRACED
1731 * is entered - ignore it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 */
Tejun Heo0ae8ce12011-03-23 10:37:00 +01001733 if (why == CLD_STOPPED && (current->group_stop & GROUP_STOP_PENDING))
Tejun Heoceb6bd62011-03-23 10:37:01 +01001734 gstop_done = task_participate_group_stop(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
1736 current->last_siginfo = info;
1737 current->exit_code = exit_code;
1738
Tejun Heod79fdd62011-03-23 10:37:00 +01001739 /*
1740 * TRACED should be visible before TRAPPING is cleared; otherwise,
1741 * the tracer might fail do_wait().
1742 */
1743 set_current_state(TASK_TRACED);
1744
1745 /*
1746 * We're committing to trapping. Clearing GROUP_STOP_TRAPPING and
1747 * transition to TASK_TRACED should be atomic with respect to
1748 * siglock. This hsould be done after the arch hook as siglock is
1749 * released and regrabbed across it.
1750 */
1751 task_clear_group_stop_trapping(current);
1752
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 spin_unlock_irq(&current->sighand->siglock);
1754 read_lock(&tasklist_lock);
Oleg Nesterov3d749b92008-07-25 01:47:37 -07001755 if (may_ptrace_stop()) {
Tejun Heoceb6bd62011-03-23 10:37:01 +01001756 /*
1757 * Notify parents of the stop.
1758 *
1759 * While ptraced, there are two parents - the ptracer and
1760 * the real_parent of the group_leader. The ptracer should
1761 * know about every stop while the real parent is only
1762 * interested in the completion of group stop. The states
1763 * for the two don't interact with each other. Notify
1764 * separately unless they're gonna be duplicates.
1765 */
1766 do_notify_parent_cldstop(current, true, why);
1767 if (gstop_done && !real_parent_is_ptracer(current))
1768 do_notify_parent_cldstop(current, false, why);
1769
Miklos Szeredi53da1d92009-03-23 16:07:24 +01001770 /*
1771 * Don't want to allow preemption here, because
1772 * sys_ptrace() needs this task to be inactive.
1773 *
1774 * XXX: implement read_unlock_no_resched().
1775 */
1776 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 read_unlock(&tasklist_lock);
Miklos Szeredi53da1d92009-03-23 16:07:24 +01001778 preempt_enable_no_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 schedule();
1780 } else {
1781 /*
1782 * By the time we got the lock, our tracer went away.
Oleg Nesterov6405f7f2008-02-08 04:19:00 -08001783 * Don't drop the lock yet, another tracer may come.
Tejun Heoceb6bd62011-03-23 10:37:01 +01001784 *
1785 * If @gstop_done, the ptracer went away between group stop
1786 * completion and here. During detach, it would have set
1787 * GROUP_STOP_PENDING on us and we'll re-enter TASK_STOPPED
1788 * in do_signal_stop() on return, so notifying the real
1789 * parent of the group stop completion is enough.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 */
Tejun Heoceb6bd62011-03-23 10:37:01 +01001791 if (gstop_done)
1792 do_notify_parent_cldstop(current, false, why);
1793
Oleg Nesterov6405f7f2008-02-08 04:19:00 -08001794 __set_current_state(TASK_RUNNING);
Oleg Nesterov20686a32008-02-08 04:19:03 -08001795 if (clear_code)
1796 current->exit_code = 0;
Oleg Nesterov6405f7f2008-02-08 04:19:00 -08001797 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 }
1799
1800 /*
Roland McGrath13b1c3d2008-03-03 20:22:05 -08001801 * While in TASK_TRACED, we were considered "frozen enough".
1802 * Now that we woke up, it's crucial if we're supposed to be
1803 * frozen that we freeze now before running anything substantial.
1804 */
1805 try_to_freeze();
1806
1807 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 * We are back. Now reacquire the siglock before touching
1809 * last_siginfo, so that we are sure to have synchronized with
1810 * any signal-sending on another CPU that wants to examine it.
1811 */
1812 spin_lock_irq(&current->sighand->siglock);
1813 current->last_siginfo = NULL;
1814
1815 /*
1816 * Queued signals ignored us while we were stopped for tracing.
1817 * So check for any that we should take before resuming user mode.
Roland McGrathb74d0de2007-06-06 03:59:00 -07001818 * This sets TIF_SIGPENDING, but never clears it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 */
Roland McGrathb74d0de2007-06-06 03:59:00 -07001820 recalc_sigpending_tsk(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821}
1822
1823void ptrace_notify(int exit_code)
1824{
1825 siginfo_t info;
1826
1827 BUG_ON((exit_code & (0x7f | ~0xffff)) != SIGTRAP);
1828
1829 memset(&info, 0, sizeof info);
1830 info.si_signo = SIGTRAP;
1831 info.si_code = exit_code;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001832 info.si_pid = task_pid_vnr(current);
David Howells76aac0e2008-11-14 10:39:12 +11001833 info.si_uid = current_uid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
1835 /* Let the debugger run. */
1836 spin_lock_irq(&current->sighand->siglock);
Tejun Heofe1bc6a2011-03-23 10:37:00 +01001837 ptrace_stop(exit_code, CLD_TRAPPED, 1, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 spin_unlock_irq(&current->sighand->siglock);
1839}
1840
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841/*
1842 * This performs the stopping for SIGSTOP and other stop signals.
1843 * We have to stop all threads in the thread group.
1844 * Returns nonzero if we've actually stopped and released the siglock.
1845 * Returns zero if we didn't stop and still hold the siglock.
1846 */
Oleg Nesterova122b342006-03-28 16:11:22 -08001847static int do_signal_stop(int signr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848{
1849 struct signal_struct *sig = current->signal;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
Tejun Heo39efa3e2011-03-23 10:37:00 +01001851 if (!(current->group_stop & GROUP_STOP_PENDING)) {
1852 unsigned int gstop = GROUP_STOP_PENDING | GROUP_STOP_CONSUME;
Oleg Nesterovf558b7e2008-02-04 22:27:24 -08001853 struct task_struct *t;
1854
Tejun Heod79fdd62011-03-23 10:37:00 +01001855 /* signr will be recorded in task->group_stop for retries */
1856 WARN_ON_ONCE(signr & ~GROUP_STOP_SIGMASK);
1857
Oleg Nesterov2b201a92008-07-25 01:47:31 -07001858 if (!likely(sig->flags & SIGNAL_STOP_DEQUEUED) ||
Oleg Nesterov573cf9a2008-04-30 00:52:36 -07001859 unlikely(signal_group_exit(sig)))
Oleg Nesterovf558b7e2008-02-04 22:27:24 -08001860 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 /*
Tejun Heo408a37d2011-03-23 10:37:01 +01001862 * There is no group stop already in progress. We must
1863 * initiate one now.
1864 *
1865 * While ptraced, a task may be resumed while group stop is
1866 * still in effect and then receive a stop signal and
1867 * initiate another group stop. This deviates from the
1868 * usual behavior as two consecutive stop signals can't
1869 * cause two group stops when !ptraced.
1870 *
1871 * The condition can be distinguished by testing whether
1872 * SIGNAL_STOP_STOPPED is already set. Don't generate
1873 * group_exit_code in such case.
1874 *
1875 * This is not necessary for SIGNAL_STOP_CONTINUED because
1876 * an intervening stop signal is required to cause two
1877 * continued events regardless of ptrace.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 */
Tejun Heo408a37d2011-03-23 10:37:01 +01001879 if (!(sig->flags & SIGNAL_STOP_STOPPED))
1880 sig->group_exit_code = signr;
1881 else
1882 WARN_ON_ONCE(!task_ptrace(current));
Oleg Nesterova122b342006-03-28 16:11:22 -08001883
Tejun Heod79fdd62011-03-23 10:37:00 +01001884 current->group_stop &= ~GROUP_STOP_SIGMASK;
1885 current->group_stop |= signr | gstop;
Roland McGrathae6d2ed2009-09-23 15:56:53 -07001886 sig->group_stop_count = 1;
Tejun Heod79fdd62011-03-23 10:37:00 +01001887 for (t = next_thread(current); t != current;
1888 t = next_thread(t)) {
1889 t->group_stop &= ~GROUP_STOP_SIGMASK;
Oleg Nesterova122b342006-03-28 16:11:22 -08001890 /*
1891 * Setting state to TASK_STOPPED for a group
1892 * stop is always done with the siglock held,
1893 * so this check has no races.
1894 */
Tejun Heo39efa3e2011-03-23 10:37:00 +01001895 if (!(t->flags & PF_EXITING) && !task_is_stopped(t)) {
Tejun Heod79fdd62011-03-23 10:37:00 +01001896 t->group_stop |= signr | gstop;
Roland McGrathae6d2ed2009-09-23 15:56:53 -07001897 sig->group_stop_count++;
Oleg Nesterova122b342006-03-28 16:11:22 -08001898 signal_wake_up(t, 0);
Tejun Heod79fdd62011-03-23 10:37:00 +01001899 } else {
Tejun Heoe5c19022011-03-23 10:37:00 +01001900 task_clear_group_stop_pending(t);
Tejun Heod79fdd62011-03-23 10:37:00 +01001901 }
1902 }
Roland McGrathae6d2ed2009-09-23 15:56:53 -07001903 }
Tejun Heod79fdd62011-03-23 10:37:00 +01001904retry:
Tejun Heo5224fa32011-03-23 10:37:00 +01001905 if (likely(!task_ptrace(current))) {
1906 int notify = 0;
1907
1908 /*
1909 * If there are no other threads in the group, or if there
1910 * is a group stop in progress and we are the last to stop,
1911 * report to the parent.
1912 */
1913 if (task_participate_group_stop(current))
1914 notify = CLD_STOPPED;
1915
Tejun Heod79fdd62011-03-23 10:37:00 +01001916 __set_current_state(TASK_STOPPED);
Tejun Heo5224fa32011-03-23 10:37:00 +01001917 spin_unlock_irq(&current->sighand->siglock);
1918
Tejun Heo62bcf9d2011-03-23 10:37:01 +01001919 /*
1920 * Notify the parent of the group stop completion. Because
1921 * we're not holding either the siglock or tasklist_lock
1922 * here, ptracer may attach inbetween; however, this is for
1923 * group stop and should always be delivered to the real
1924 * parent of the group leader. The new ptracer will get
1925 * its notification when this task transitions into
1926 * TASK_TRACED.
1927 */
Tejun Heo5224fa32011-03-23 10:37:00 +01001928 if (notify) {
1929 read_lock(&tasklist_lock);
Tejun Heo62bcf9d2011-03-23 10:37:01 +01001930 do_notify_parent_cldstop(current, false, notify);
Tejun Heo5224fa32011-03-23 10:37:00 +01001931 read_unlock(&tasklist_lock);
1932 }
1933
1934 /* Now we don't run again until woken by SIGCONT or SIGKILL */
1935 schedule();
1936
1937 spin_lock_irq(&current->sighand->siglock);
Tejun Heod79fdd62011-03-23 10:37:00 +01001938 } else {
1939 ptrace_stop(current->group_stop & GROUP_STOP_SIGMASK,
1940 CLD_STOPPED, 0, NULL);
1941 current->exit_code = 0;
1942 }
1943
1944 /*
1945 * GROUP_STOP_PENDING could be set if another group stop has
1946 * started since being woken up or ptrace wants us to transit
1947 * between TASK_STOPPED and TRACED. Retry group stop.
1948 */
1949 if (current->group_stop & GROUP_STOP_PENDING) {
1950 WARN_ON_ONCE(!(current->group_stop & GROUP_STOP_SIGMASK));
1951 goto retry;
1952 }
1953
1954 /* PTRACE_ATTACH might have raced with task killing, clear trapping */
1955 task_clear_group_stop_trapping(current);
Tejun Heo5224fa32011-03-23 10:37:00 +01001956
Roland McGrathae6d2ed2009-09-23 15:56:53 -07001957 spin_unlock_irq(&current->sighand->siglock);
1958
Roland McGrathae6d2ed2009-09-23 15:56:53 -07001959 tracehook_finish_jctl();
Roland McGrathae6d2ed2009-09-23 15:56:53 -07001960
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 return 1;
1962}
1963
Roland McGrath18c98b62008-04-17 18:44:38 -07001964static int ptrace_signal(int signr, siginfo_t *info,
1965 struct pt_regs *regs, void *cookie)
1966{
Oleg Nesterov5cb11442009-06-17 16:27:30 -07001967 if (!task_ptrace(current))
Roland McGrath18c98b62008-04-17 18:44:38 -07001968 return signr;
1969
1970 ptrace_signal_deliver(regs, cookie);
1971
1972 /* Let the debugger run. */
Tejun Heofe1bc6a2011-03-23 10:37:00 +01001973 ptrace_stop(signr, CLD_TRAPPED, 0, info);
Roland McGrath18c98b62008-04-17 18:44:38 -07001974
1975 /* We're back. Did the debugger cancel the sig? */
1976 signr = current->exit_code;
1977 if (signr == 0)
1978 return signr;
1979
1980 current->exit_code = 0;
1981
1982 /* Update the siginfo structure if the signal has
1983 changed. If the debugger wanted something
1984 specific in the siginfo structure then it should
1985 have updated *info via PTRACE_SETSIGINFO. */
1986 if (signr != info->si_signo) {
1987 info->si_signo = signr;
1988 info->si_errno = 0;
1989 info->si_code = SI_USER;
1990 info->si_pid = task_pid_vnr(current->parent);
David Howellsc69e8d92008-11-14 10:39:19 +11001991 info->si_uid = task_uid(current->parent);
Roland McGrath18c98b62008-04-17 18:44:38 -07001992 }
1993
1994 /* If the (new) signal is now blocked, requeue it. */
1995 if (sigismember(&current->blocked, signr)) {
1996 specific_send_sig_info(signr, info, current);
1997 signr = 0;
1998 }
1999
2000 return signr;
2001}
2002
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003int get_signal_to_deliver(siginfo_t *info, struct k_sigaction *return_ka,
2004 struct pt_regs *regs, void *cookie)
2005{
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07002006 struct sighand_struct *sighand = current->sighand;
2007 struct signal_struct *signal = current->signal;
2008 int signr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009
Roland McGrath13b1c3d2008-03-03 20:22:05 -08002010relock:
2011 /*
2012 * We'll jump back here after any time we were stopped in TASK_STOPPED.
2013 * While in TASK_STOPPED, we were considered "frozen enough".
2014 * Now that we woke up, it's crucial if we're supposed to be
2015 * frozen that we freeze now before running anything substantial.
2016 */
Rafael J. Wysockifc558a72006-03-23 03:00:05 -08002017 try_to_freeze();
2018
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07002019 spin_lock_irq(&sighand->siglock);
Oleg Nesterov021e1ae2008-04-30 00:53:00 -07002020 /*
2021 * Every stopped thread goes here after wakeup. Check to see if
2022 * we should notify the parent, prepare_signal(SIGCONT) encodes
2023 * the CLD_ si_code into SIGNAL_CLD_MASK bits.
2024 */
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07002025 if (unlikely(signal->flags & SIGNAL_CLD_MASK)) {
Tejun Heo75b95952011-03-23 10:37:01 +01002026 struct task_struct *leader;
Tejun Heoc672af32011-03-23 10:36:59 +01002027 int why;
2028
2029 if (signal->flags & SIGNAL_CLD_CONTINUED)
2030 why = CLD_CONTINUED;
2031 else
2032 why = CLD_STOPPED;
2033
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07002034 signal->flags &= ~SIGNAL_CLD_MASK;
Roland McGrathae6d2ed2009-09-23 15:56:53 -07002035
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07002036 spin_unlock_irq(&sighand->siglock);
Oleg Nesterove4420552008-04-30 00:52:44 -07002037
Tejun Heoceb6bd62011-03-23 10:37:01 +01002038 /*
2039 * Notify the parent that we're continuing. This event is
2040 * always per-process and doesn't make whole lot of sense
2041 * for ptracers, who shouldn't consume the state via
2042 * wait(2) either, but, for backward compatibility, notify
2043 * the ptracer of the group leader too unless it's gonna be
2044 * a duplicate.
2045 */
Tejun Heoedf2ed12011-03-23 10:37:00 +01002046 read_lock(&tasklist_lock);
Tejun Heoceb6bd62011-03-23 10:37:01 +01002047
2048 do_notify_parent_cldstop(current, false, why);
2049
Tejun Heo75b95952011-03-23 10:37:01 +01002050 leader = current->group_leader;
Tejun Heoceb6bd62011-03-23 10:37:01 +01002051 if (task_ptrace(leader) && !real_parent_is_ptracer(leader))
2052 do_notify_parent_cldstop(leader, true, why);
2053
Tejun Heoedf2ed12011-03-23 10:37:00 +01002054 read_unlock(&tasklist_lock);
Tejun Heoceb6bd62011-03-23 10:37:01 +01002055
Oleg Nesterove4420552008-04-30 00:52:44 -07002056 goto relock;
2057 }
2058
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 for (;;) {
2060 struct k_sigaction *ka;
Roland McGrath7bcf6a22008-07-25 19:45:53 -07002061 /*
2062 * Tracing can induce an artifical signal and choose sigaction.
2063 * The return value in @signr determines the default action,
2064 * but @info->si_signo is the signal number we will report.
2065 */
2066 signr = tracehook_get_signal(current, regs, info, return_ka);
2067 if (unlikely(signr < 0))
2068 goto relock;
2069 if (unlikely(signr != 0))
2070 ka = return_ka;
2071 else {
Tejun Heo39efa3e2011-03-23 10:37:00 +01002072 if (unlikely(current->group_stop &
2073 GROUP_STOP_PENDING) && do_signal_stop(0))
Oleg Nesterov1be53962009-12-15 16:47:26 -08002074 goto relock;
2075
Roland McGrath7bcf6a22008-07-25 19:45:53 -07002076 signr = dequeue_signal(current, &current->blocked,
2077 info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
Roland McGrath18c98b62008-04-17 18:44:38 -07002079 if (!signr)
Roland McGrath7bcf6a22008-07-25 19:45:53 -07002080 break; /* will return 0 */
2081
2082 if (signr != SIGKILL) {
2083 signr = ptrace_signal(signr, info,
2084 regs, cookie);
2085 if (!signr)
2086 continue;
2087 }
2088
2089 ka = &sighand->action[signr-1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 }
2091
Masami Hiramatsuf9d42572009-11-24 16:56:51 -05002092 /* Trace actually delivered signals. */
2093 trace_signal_deliver(signr, info, ka);
2094
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 if (ka->sa.sa_handler == SIG_IGN) /* Do nothing. */
2096 continue;
2097 if (ka->sa.sa_handler != SIG_DFL) {
2098 /* Run the handler. */
2099 *return_ka = *ka;
2100
2101 if (ka->sa.sa_flags & SA_ONESHOT)
2102 ka->sa.sa_handler = SIG_DFL;
2103
2104 break; /* will return non-zero "signr" value */
2105 }
2106
2107 /*
2108 * Now we are doing the default action for this signal.
2109 */
2110 if (sig_kernel_ignore(signr)) /* Default is nothing. */
2111 continue;
2112
Sukadev Bhattiprolu84d73782006-12-08 02:38:01 -08002113 /*
Sukadev Bhattiprolu0fbc26a2007-10-18 23:40:13 -07002114 * Global init gets no signals it doesn't want.
Sukadev Bhattiprolub3bfa0c2009-04-02 16:58:08 -07002115 * Container-init gets no signals it doesn't want from same
2116 * container.
2117 *
2118 * Note that if global/container-init sees a sig_kernel_only()
2119 * signal here, the signal must have been generated internally
2120 * or must have come from an ancestor namespace. In either
2121 * case, the signal cannot be dropped.
Sukadev Bhattiprolu84d73782006-12-08 02:38:01 -08002122 */
Oleg Nesterovfae5fa42008-04-30 00:53:03 -07002123 if (unlikely(signal->flags & SIGNAL_UNKILLABLE) &&
Sukadev Bhattiprolub3bfa0c2009-04-02 16:58:08 -07002124 !sig_kernel_only(signr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 continue;
2126
2127 if (sig_kernel_stop(signr)) {
2128 /*
2129 * The default action is to stop all threads in
2130 * the thread group. The job control signals
2131 * do nothing in an orphaned pgrp, but SIGSTOP
2132 * always works. Note that siglock needs to be
2133 * dropped during the call to is_orphaned_pgrp()
2134 * because of lock ordering with tasklist_lock.
2135 * This allows an intervening SIGCONT to be posted.
2136 * We need to check for that and bail out if necessary.
2137 */
2138 if (signr != SIGSTOP) {
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07002139 spin_unlock_irq(&sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140
2141 /* signals can be posted during this window */
2142
Eric W. Biederman3e7cd6c2007-02-12 00:52:58 -08002143 if (is_current_pgrp_orphaned())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 goto relock;
2145
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07002146 spin_lock_irq(&sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 }
2148
Roland McGrath7bcf6a22008-07-25 19:45:53 -07002149 if (likely(do_signal_stop(info->si_signo))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 /* It released the siglock. */
2151 goto relock;
2152 }
2153
2154 /*
2155 * We didn't actually stop, due to a race
2156 * with SIGCONT or something like that.
2157 */
2158 continue;
2159 }
2160
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07002161 spin_unlock_irq(&sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
2163 /*
2164 * Anything else is fatal, maybe with a core dump.
2165 */
2166 current->flags |= PF_SIGNALED;
Oleg Nesterov2dce81b2008-04-30 00:52:58 -07002167
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 if (sig_kernel_coredump(signr)) {
Oleg Nesterov2dce81b2008-04-30 00:52:58 -07002169 if (print_fatal_signals)
Roland McGrath7bcf6a22008-07-25 19:45:53 -07002170 print_fatal_signal(regs, info->si_signo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 /*
2172 * If it was able to dump core, this kills all
2173 * other threads in the group and synchronizes with
2174 * their demise. If we lost the race with another
2175 * thread getting here, it set group_exit_code
2176 * first and our do_group_exit call below will use
2177 * that value and ignore the one we pass it.
2178 */
Roland McGrath7bcf6a22008-07-25 19:45:53 -07002179 do_coredump(info->si_signo, info->si_signo, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 }
2181
2182 /*
2183 * Death signals, no core dump.
2184 */
Roland McGrath7bcf6a22008-07-25 19:45:53 -07002185 do_group_exit(info->si_signo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 /* NOTREACHED */
2187 }
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07002188 spin_unlock_irq(&sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 return signr;
2190}
2191
Oleg Nesterovd12619b2008-02-08 04:19:12 -08002192void exit_signals(struct task_struct *tsk)
2193{
2194 int group_stop = 0;
Oleg Nesterov5dee1702008-02-08 04:19:13 -08002195 struct task_struct *t;
Oleg Nesterovd12619b2008-02-08 04:19:12 -08002196
Oleg Nesterov5dee1702008-02-08 04:19:13 -08002197 if (thread_group_empty(tsk) || signal_group_exit(tsk->signal)) {
2198 tsk->flags |= PF_EXITING;
2199 return;
Oleg Nesterovd12619b2008-02-08 04:19:12 -08002200 }
2201
Oleg Nesterov5dee1702008-02-08 04:19:13 -08002202 spin_lock_irq(&tsk->sighand->siglock);
Oleg Nesterovd12619b2008-02-08 04:19:12 -08002203 /*
2204 * From now this task is not visible for group-wide signals,
2205 * see wants_signal(), do_signal_stop().
2206 */
2207 tsk->flags |= PF_EXITING;
Oleg Nesterov5dee1702008-02-08 04:19:13 -08002208 if (!signal_pending(tsk))
2209 goto out;
2210
2211 /* It could be that __group_complete_signal() choose us to
2212 * notify about group-wide signal. Another thread should be
2213 * woken now to take the signal since we will not.
2214 */
2215 for (t = tsk; (t = next_thread(t)) != tsk; )
2216 if (!signal_pending(t) && !(t->flags & PF_EXITING))
2217 recalc_sigpending_and_wake(t);
2218
Tejun Heo39efa3e2011-03-23 10:37:00 +01002219 if (unlikely(tsk->group_stop & GROUP_STOP_PENDING) &&
Tejun Heoe5c19022011-03-23 10:37:00 +01002220 task_participate_group_stop(tsk))
Tejun Heoedf2ed12011-03-23 10:37:00 +01002221 group_stop = CLD_STOPPED;
Oleg Nesterov5dee1702008-02-08 04:19:13 -08002222out:
Oleg Nesterovd12619b2008-02-08 04:19:12 -08002223 spin_unlock_irq(&tsk->sighand->siglock);
2224
Tejun Heo62bcf9d2011-03-23 10:37:01 +01002225 /*
2226 * If group stop has completed, deliver the notification. This
2227 * should always go to the real parent of the group leader.
2228 */
Roland McGrathae6d2ed2009-09-23 15:56:53 -07002229 if (unlikely(group_stop)) {
Oleg Nesterovd12619b2008-02-08 04:19:12 -08002230 read_lock(&tasklist_lock);
Tejun Heo62bcf9d2011-03-23 10:37:01 +01002231 do_notify_parent_cldstop(tsk, false, group_stop);
Oleg Nesterovd12619b2008-02-08 04:19:12 -08002232 read_unlock(&tasklist_lock);
2233 }
2234}
2235
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236EXPORT_SYMBOL(recalc_sigpending);
2237EXPORT_SYMBOL_GPL(dequeue_signal);
2238EXPORT_SYMBOL(flush_signals);
2239EXPORT_SYMBOL(force_sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240EXPORT_SYMBOL(send_sig);
2241EXPORT_SYMBOL(send_sig_info);
2242EXPORT_SYMBOL(sigprocmask);
2243EXPORT_SYMBOL(block_all_signals);
2244EXPORT_SYMBOL(unblock_all_signals);
2245
2246
2247/*
2248 * System call entry points.
2249 */
2250
Heiko Carstens754fe8d2009-01-14 14:14:09 +01002251SYSCALL_DEFINE0(restart_syscall)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252{
2253 struct restart_block *restart = &current_thread_info()->restart_block;
2254 return restart->fn(restart);
2255}
2256
2257long do_no_restart_syscall(struct restart_block *param)
2258{
2259 return -EINTR;
2260}
2261
2262/*
2263 * We don't need to get the kernel lock - this is all local to this
2264 * particular thread.. (and that's good, because this is _heavily_
2265 * used by various programs)
2266 */
2267
2268/*
2269 * This is also useful for kernel threads that want to temporarily
2270 * (or permanently) block certain signals.
2271 *
2272 * NOTE! Unlike the user-mode sys_sigprocmask(), the kernel
2273 * interface happily blocks "unblockable" signals like SIGKILL
2274 * and friends.
2275 */
2276int sigprocmask(int how, sigset_t *set, sigset_t *oldset)
2277{
2278 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279
2280 spin_lock_irq(&current->sighand->siglock);
Oleg Nesterova26fd332006-03-23 03:00:49 -08002281 if (oldset)
2282 *oldset = current->blocked;
2283
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 error = 0;
2285 switch (how) {
2286 case SIG_BLOCK:
2287 sigorsets(&current->blocked, &current->blocked, set);
2288 break;
2289 case SIG_UNBLOCK:
2290 signandsets(&current->blocked, &current->blocked, set);
2291 break;
2292 case SIG_SETMASK:
2293 current->blocked = *set;
2294 break;
2295 default:
2296 error = -EINVAL;
2297 }
2298 recalc_sigpending();
2299 spin_unlock_irq(&current->sighand->siglock);
Oleg Nesterova26fd332006-03-23 03:00:49 -08002300
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 return error;
2302}
2303
Heiko Carstens17da2bd2009-01-14 14:14:10 +01002304SYSCALL_DEFINE4(rt_sigprocmask, int, how, sigset_t __user *, set,
2305 sigset_t __user *, oset, size_t, sigsetsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306{
2307 int error = -EINVAL;
2308 sigset_t old_set, new_set;
2309
2310 /* XXX: Don't preclude handling different sized sigset_t's. */
2311 if (sigsetsize != sizeof(sigset_t))
2312 goto out;
2313
2314 if (set) {
2315 error = -EFAULT;
2316 if (copy_from_user(&new_set, set, sizeof(*set)))
2317 goto out;
2318 sigdelsetmask(&new_set, sigmask(SIGKILL)|sigmask(SIGSTOP));
2319
2320 error = sigprocmask(how, &new_set, &old_set);
2321 if (error)
2322 goto out;
2323 if (oset)
2324 goto set_old;
2325 } else if (oset) {
2326 spin_lock_irq(&current->sighand->siglock);
2327 old_set = current->blocked;
2328 spin_unlock_irq(&current->sighand->siglock);
2329
2330 set_old:
2331 error = -EFAULT;
2332 if (copy_to_user(oset, &old_set, sizeof(*oset)))
2333 goto out;
2334 }
2335 error = 0;
2336out:
2337 return error;
2338}
2339
2340long do_sigpending(void __user *set, unsigned long sigsetsize)
2341{
2342 long error = -EINVAL;
2343 sigset_t pending;
2344
2345 if (sigsetsize > sizeof(sigset_t))
2346 goto out;
2347
2348 spin_lock_irq(&current->sighand->siglock);
2349 sigorsets(&pending, &current->pending.signal,
2350 &current->signal->shared_pending.signal);
2351 spin_unlock_irq(&current->sighand->siglock);
2352
2353 /* Outside the lock because only this thread touches it. */
2354 sigandsets(&pending, &current->blocked, &pending);
2355
2356 error = -EFAULT;
2357 if (!copy_to_user(set, &pending, sigsetsize))
2358 error = 0;
2359
2360out:
2361 return error;
2362}
2363
Heiko Carstens17da2bd2009-01-14 14:14:10 +01002364SYSCALL_DEFINE2(rt_sigpending, sigset_t __user *, set, size_t, sigsetsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365{
2366 return do_sigpending(set, sigsetsize);
2367}
2368
2369#ifndef HAVE_ARCH_COPY_SIGINFO_TO_USER
2370
2371int copy_siginfo_to_user(siginfo_t __user *to, siginfo_t *from)
2372{
2373 int err;
2374
2375 if (!access_ok (VERIFY_WRITE, to, sizeof(siginfo_t)))
2376 return -EFAULT;
2377 if (from->si_code < 0)
2378 return __copy_to_user(to, from, sizeof(siginfo_t))
2379 ? -EFAULT : 0;
2380 /*
2381 * If you change siginfo_t structure, please be sure
2382 * this code is fixed accordingly.
Davide Libenzifba2afa2007-05-10 22:23:13 -07002383 * Please remember to update the signalfd_copyinfo() function
2384 * inside fs/signalfd.c too, in case siginfo_t changes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 * It should never copy any pad contained in the structure
2386 * to avoid security leaks, but must copy the generic
2387 * 3 ints plus the relevant union member.
2388 */
2389 err = __put_user(from->si_signo, &to->si_signo);
2390 err |= __put_user(from->si_errno, &to->si_errno);
2391 err |= __put_user((short)from->si_code, &to->si_code);
2392 switch (from->si_code & __SI_MASK) {
2393 case __SI_KILL:
2394 err |= __put_user(from->si_pid, &to->si_pid);
2395 err |= __put_user(from->si_uid, &to->si_uid);
2396 break;
2397 case __SI_TIMER:
2398 err |= __put_user(from->si_tid, &to->si_tid);
2399 err |= __put_user(from->si_overrun, &to->si_overrun);
2400 err |= __put_user(from->si_ptr, &to->si_ptr);
2401 break;
2402 case __SI_POLL:
2403 err |= __put_user(from->si_band, &to->si_band);
2404 err |= __put_user(from->si_fd, &to->si_fd);
2405 break;
2406 case __SI_FAULT:
2407 err |= __put_user(from->si_addr, &to->si_addr);
2408#ifdef __ARCH_SI_TRAPNO
2409 err |= __put_user(from->si_trapno, &to->si_trapno);
2410#endif
Andi Kleena337fda2010-09-27 20:32:19 +02002411#ifdef BUS_MCEERR_AO
2412 /*
2413 * Other callers might not initialize the si_lsb field,
2414 * so check explicitely for the right codes here.
2415 */
2416 if (from->si_code == BUS_MCEERR_AR || from->si_code == BUS_MCEERR_AO)
2417 err |= __put_user(from->si_addr_lsb, &to->si_addr_lsb);
2418#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 break;
2420 case __SI_CHLD:
2421 err |= __put_user(from->si_pid, &to->si_pid);
2422 err |= __put_user(from->si_uid, &to->si_uid);
2423 err |= __put_user(from->si_status, &to->si_status);
2424 err |= __put_user(from->si_utime, &to->si_utime);
2425 err |= __put_user(from->si_stime, &to->si_stime);
2426 break;
2427 case __SI_RT: /* This is not generated by the kernel as of now. */
2428 case __SI_MESGQ: /* But this is */
2429 err |= __put_user(from->si_pid, &to->si_pid);
2430 err |= __put_user(from->si_uid, &to->si_uid);
2431 err |= __put_user(from->si_ptr, &to->si_ptr);
2432 break;
2433 default: /* this is just in case for now ... */
2434 err |= __put_user(from->si_pid, &to->si_pid);
2435 err |= __put_user(from->si_uid, &to->si_uid);
2436 break;
2437 }
2438 return err;
2439}
2440
2441#endif
2442
Heiko Carstens17da2bd2009-01-14 14:14:10 +01002443SYSCALL_DEFINE4(rt_sigtimedwait, const sigset_t __user *, uthese,
2444 siginfo_t __user *, uinfo, const struct timespec __user *, uts,
2445 size_t, sigsetsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446{
2447 int ret, sig;
2448 sigset_t these;
2449 struct timespec ts;
2450 siginfo_t info;
2451 long timeout = 0;
2452
2453 /* XXX: Don't preclude handling different sized sigset_t's. */
2454 if (sigsetsize != sizeof(sigset_t))
2455 return -EINVAL;
2456
2457 if (copy_from_user(&these, uthese, sizeof(these)))
2458 return -EFAULT;
2459
2460 /*
2461 * Invert the set of allowed signals to get those we
2462 * want to block.
2463 */
2464 sigdelsetmask(&these, sigmask(SIGKILL)|sigmask(SIGSTOP));
2465 signotset(&these);
2466
2467 if (uts) {
2468 if (copy_from_user(&ts, uts, sizeof(ts)))
2469 return -EFAULT;
2470 if (ts.tv_nsec >= 1000000000L || ts.tv_nsec < 0
2471 || ts.tv_sec < 0)
2472 return -EINVAL;
2473 }
2474
2475 spin_lock_irq(&current->sighand->siglock);
2476 sig = dequeue_signal(current, &these, &info);
2477 if (!sig) {
2478 timeout = MAX_SCHEDULE_TIMEOUT;
2479 if (uts)
2480 timeout = (timespec_to_jiffies(&ts)
2481 + (ts.tv_sec || ts.tv_nsec));
2482
2483 if (timeout) {
2484 /* None ready -- temporarily unblock those we're
2485 * interested while we are sleeping in so that we'll
2486 * be awakened when they arrive. */
2487 current->real_blocked = current->blocked;
2488 sigandsets(&current->blocked, &current->blocked, &these);
2489 recalc_sigpending();
2490 spin_unlock_irq(&current->sighand->siglock);
2491
Nishanth Aravamudan75bcc8c2005-09-10 00:27:24 -07002492 timeout = schedule_timeout_interruptible(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 spin_lock_irq(&current->sighand->siglock);
2495 sig = dequeue_signal(current, &these, &info);
2496 current->blocked = current->real_blocked;
2497 siginitset(&current->real_blocked, 0);
2498 recalc_sigpending();
2499 }
2500 }
2501 spin_unlock_irq(&current->sighand->siglock);
2502
2503 if (sig) {
2504 ret = sig;
2505 if (uinfo) {
2506 if (copy_siginfo_to_user(uinfo, &info))
2507 ret = -EFAULT;
2508 }
2509 } else {
2510 ret = -EAGAIN;
2511 if (timeout)
2512 ret = -EINTR;
2513 }
2514
2515 return ret;
2516}
2517
Heiko Carstens17da2bd2009-01-14 14:14:10 +01002518SYSCALL_DEFINE2(kill, pid_t, pid, int, sig)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519{
2520 struct siginfo info;
2521
2522 info.si_signo = sig;
2523 info.si_errno = 0;
2524 info.si_code = SI_USER;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002525 info.si_pid = task_tgid_vnr(current);
David Howells76aac0e2008-11-14 10:39:12 +11002526 info.si_uid = current_uid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527
2528 return kill_something_info(sig, &info, pid);
2529}
2530
Thomas Gleixner30b4ae8a2009-04-04 21:01:01 +00002531static int
2532do_send_specific(pid_t tgid, pid_t pid, int sig, struct siginfo *info)
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002533{
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002534 struct task_struct *p;
Thomas Gleixner30b4ae8a2009-04-04 21:01:01 +00002535 int error = -ESRCH;
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002536
Oleg Nesterov3547ff32008-04-30 00:52:51 -07002537 rcu_read_lock();
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07002538 p = find_task_by_vpid(pid);
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002539 if (p && (tgid <= 0 || task_tgid_vnr(p) == tgid)) {
Thomas Gleixner30b4ae8a2009-04-04 21:01:01 +00002540 error = check_kill_permission(sig, info, p);
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002541 /*
2542 * The null signal is a permissions and process existence
2543 * probe. No signal is actually delivered.
2544 */
Oleg Nesterov4a30deb2009-09-23 15:57:00 -07002545 if (!error && sig) {
2546 error = do_send_sig_info(sig, info, p, false);
2547 /*
2548 * If lock_task_sighand() failed we pretend the task
2549 * dies after receiving the signal. The window is tiny,
2550 * and the signal is private anyway.
2551 */
2552 if (unlikely(error == -ESRCH))
2553 error = 0;
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002554 }
2555 }
Oleg Nesterov3547ff32008-04-30 00:52:51 -07002556 rcu_read_unlock();
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002557
2558 return error;
2559}
2560
Thomas Gleixner30b4ae8a2009-04-04 21:01:01 +00002561static int do_tkill(pid_t tgid, pid_t pid, int sig)
2562{
2563 struct siginfo info;
2564
2565 info.si_signo = sig;
2566 info.si_errno = 0;
2567 info.si_code = SI_TKILL;
2568 info.si_pid = task_tgid_vnr(current);
2569 info.si_uid = current_uid();
2570
2571 return do_send_specific(tgid, pid, sig, &info);
2572}
2573
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574/**
2575 * sys_tgkill - send signal to one specific thread
2576 * @tgid: the thread group ID of the thread
2577 * @pid: the PID of the thread
2578 * @sig: signal to be sent
2579 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08002580 * This syscall also checks the @tgid and returns -ESRCH even if the PID
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 * exists but it's not belonging to the target process anymore. This
2582 * method solves the problem of threads exiting and PIDs getting reused.
2583 */
Heiko Carstensa5f8fa92009-01-14 14:14:11 +01002584SYSCALL_DEFINE3(tgkill, pid_t, tgid, pid_t, pid, int, sig)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 /* This is only valid for single tasks */
2587 if (pid <= 0 || tgid <= 0)
2588 return -EINVAL;
2589
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002590 return do_tkill(tgid, pid, sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591}
2592
2593/*
2594 * Send a signal to only one task, even if it's a CLONE_THREAD task.
2595 */
Heiko Carstensa5f8fa92009-01-14 14:14:11 +01002596SYSCALL_DEFINE2(tkill, pid_t, pid, int, sig)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 /* This is only valid for single tasks */
2599 if (pid <= 0)
2600 return -EINVAL;
2601
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002602 return do_tkill(0, pid, sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603}
2604
Heiko Carstensa5f8fa92009-01-14 14:14:11 +01002605SYSCALL_DEFINE3(rt_sigqueueinfo, pid_t, pid, int, sig,
2606 siginfo_t __user *, uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607{
2608 siginfo_t info;
2609
2610 if (copy_from_user(&info, uinfo, sizeof(siginfo_t)))
2611 return -EFAULT;
2612
2613 /* Not even root can pretend to send signals from the kernel.
Julien Tinnesda485242011-03-18 15:05:21 -07002614 * Nor can they impersonate a kill()/tgkill(), which adds source info.
2615 */
2616 if (info.si_code != SI_QUEUE) {
2617 /* We used to allow any < 0 si_code */
2618 WARN_ON_ONCE(info.si_code < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 return -EPERM;
Julien Tinnesda485242011-03-18 15:05:21 -07002620 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 info.si_signo = sig;
2622
2623 /* POSIX.1b doesn't mention process groups. */
2624 return kill_proc_info(sig, &info, pid);
2625}
2626
Thomas Gleixner62ab4502009-04-04 21:01:06 +00002627long do_rt_tgsigqueueinfo(pid_t tgid, pid_t pid, int sig, siginfo_t *info)
2628{
2629 /* This is only valid for single tasks */
2630 if (pid <= 0 || tgid <= 0)
2631 return -EINVAL;
2632
2633 /* Not even root can pretend to send signals from the kernel.
Julien Tinnesda485242011-03-18 15:05:21 -07002634 * Nor can they impersonate a kill()/tgkill(), which adds source info.
2635 */
2636 if (info->si_code != SI_QUEUE) {
2637 /* We used to allow any < 0 si_code */
2638 WARN_ON_ONCE(info->si_code < 0);
Thomas Gleixner62ab4502009-04-04 21:01:06 +00002639 return -EPERM;
Julien Tinnesda485242011-03-18 15:05:21 -07002640 }
Thomas Gleixner62ab4502009-04-04 21:01:06 +00002641 info->si_signo = sig;
2642
2643 return do_send_specific(tgid, pid, sig, info);
2644}
2645
2646SYSCALL_DEFINE4(rt_tgsigqueueinfo, pid_t, tgid, pid_t, pid, int, sig,
2647 siginfo_t __user *, uinfo)
2648{
2649 siginfo_t info;
2650
2651 if (copy_from_user(&info, uinfo, sizeof(siginfo_t)))
2652 return -EFAULT;
2653
2654 return do_rt_tgsigqueueinfo(tgid, pid, sig, &info);
2655}
2656
Oleg Nesterov88531f72006-03-28 16:11:24 -08002657int do_sigaction(int sig, struct k_sigaction *act, struct k_sigaction *oact)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658{
Pavel Emelyanov93585ee2008-04-30 00:52:39 -07002659 struct task_struct *t = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 struct k_sigaction *k;
George Anzinger71fabd52006-01-08 01:02:48 -08002661 sigset_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662
Jesper Juhl7ed20e12005-05-01 08:59:14 -07002663 if (!valid_signal(sig) || sig < 1 || (act && sig_kernel_only(sig)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 return -EINVAL;
2665
Pavel Emelyanov93585ee2008-04-30 00:52:39 -07002666 k = &t->sighand->action[sig-1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667
2668 spin_lock_irq(&current->sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 if (oact)
2670 *oact = *k;
2671
2672 if (act) {
Oleg Nesterov9ac95f22006-02-09 22:41:50 +03002673 sigdelsetmask(&act->sa.sa_mask,
2674 sigmask(SIGKILL) | sigmask(SIGSTOP));
Oleg Nesterov88531f72006-03-28 16:11:24 -08002675 *k = *act;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 /*
2677 * POSIX 3.3.1.3:
2678 * "Setting a signal action to SIG_IGN for a signal that is
2679 * pending shall cause the pending signal to be discarded,
2680 * whether or not it is blocked."
2681 *
2682 * "Setting a signal action to SIG_DFL for a signal that is
2683 * pending and whose default action is to ignore the signal
2684 * (for example, SIGCHLD), shall cause the pending signal to
2685 * be discarded, whether or not it is blocked"
2686 */
Roland McGrath35de2542008-07-25 19:45:51 -07002687 if (sig_handler_ignored(sig_handler(t, sig), sig)) {
George Anzinger71fabd52006-01-08 01:02:48 -08002688 sigemptyset(&mask);
2689 sigaddset(&mask, sig);
2690 rm_from_queue_full(&mask, &t->signal->shared_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 do {
George Anzinger71fabd52006-01-08 01:02:48 -08002692 rm_from_queue_full(&mask, &t->pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 t = next_thread(t);
2694 } while (t != current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 }
2697
2698 spin_unlock_irq(&current->sighand->siglock);
2699 return 0;
2700}
2701
2702int
2703do_sigaltstack (const stack_t __user *uss, stack_t __user *uoss, unsigned long sp)
2704{
2705 stack_t oss;
2706 int error;
2707
Linus Torvalds0083fc22009-08-01 10:34:56 -07002708 oss.ss_sp = (void __user *) current->sas_ss_sp;
2709 oss.ss_size = current->sas_ss_size;
2710 oss.ss_flags = sas_ss_flags(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711
2712 if (uss) {
2713 void __user *ss_sp;
2714 size_t ss_size;
2715 int ss_flags;
2716
2717 error = -EFAULT;
Linus Torvalds0dd84862009-08-01 11:18:56 -07002718 if (!access_ok(VERIFY_READ, uss, sizeof(*uss)))
2719 goto out;
2720 error = __get_user(ss_sp, &uss->ss_sp) |
2721 __get_user(ss_flags, &uss->ss_flags) |
2722 __get_user(ss_size, &uss->ss_size);
2723 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 goto out;
2725
2726 error = -EPERM;
2727 if (on_sig_stack(sp))
2728 goto out;
2729
2730 error = -EINVAL;
2731 /*
2732 *
2733 * Note - this code used to test ss_flags incorrectly
2734 * old code may have been written using ss_flags==0
2735 * to mean ss_flags==SS_ONSTACK (as this was the only
2736 * way that worked) - this fix preserves that older
2737 * mechanism
2738 */
2739 if (ss_flags != SS_DISABLE && ss_flags != SS_ONSTACK && ss_flags != 0)
2740 goto out;
2741
2742 if (ss_flags == SS_DISABLE) {
2743 ss_size = 0;
2744 ss_sp = NULL;
2745 } else {
2746 error = -ENOMEM;
2747 if (ss_size < MINSIGSTKSZ)
2748 goto out;
2749 }
2750
2751 current->sas_ss_sp = (unsigned long) ss_sp;
2752 current->sas_ss_size = ss_size;
2753 }
2754
Linus Torvalds0083fc22009-08-01 10:34:56 -07002755 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 if (uoss) {
2757 error = -EFAULT;
Linus Torvalds0083fc22009-08-01 10:34:56 -07002758 if (!access_ok(VERIFY_WRITE, uoss, sizeof(*uoss)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 goto out;
Linus Torvalds0083fc22009-08-01 10:34:56 -07002760 error = __put_user(oss.ss_sp, &uoss->ss_sp) |
2761 __put_user(oss.ss_size, &uoss->ss_size) |
2762 __put_user(oss.ss_flags, &uoss->ss_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 }
2764
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765out:
2766 return error;
2767}
2768
2769#ifdef __ARCH_WANT_SYS_SIGPENDING
2770
Heiko Carstensb290ebe2009-01-14 14:14:06 +01002771SYSCALL_DEFINE1(sigpending, old_sigset_t __user *, set)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772{
2773 return do_sigpending(set, sizeof(*set));
2774}
2775
2776#endif
2777
2778#ifdef __ARCH_WANT_SYS_SIGPROCMASK
2779/* Some platforms have their own version with special arguments others
2780 support only sys_rt_sigprocmask. */
2781
Heiko Carstensb290ebe2009-01-14 14:14:06 +01002782SYSCALL_DEFINE3(sigprocmask, int, how, old_sigset_t __user *, set,
2783 old_sigset_t __user *, oset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784{
2785 int error;
2786 old_sigset_t old_set, new_set;
2787
2788 if (set) {
2789 error = -EFAULT;
2790 if (copy_from_user(&new_set, set, sizeof(*set)))
2791 goto out;
2792 new_set &= ~(sigmask(SIGKILL) | sigmask(SIGSTOP));
2793
2794 spin_lock_irq(&current->sighand->siglock);
2795 old_set = current->blocked.sig[0];
2796
2797 error = 0;
2798 switch (how) {
2799 default:
2800 error = -EINVAL;
2801 break;
2802 case SIG_BLOCK:
2803 sigaddsetmask(&current->blocked, new_set);
2804 break;
2805 case SIG_UNBLOCK:
2806 sigdelsetmask(&current->blocked, new_set);
2807 break;
2808 case SIG_SETMASK:
2809 current->blocked.sig[0] = new_set;
2810 break;
2811 }
2812
2813 recalc_sigpending();
2814 spin_unlock_irq(&current->sighand->siglock);
2815 if (error)
2816 goto out;
2817 if (oset)
2818 goto set_old;
2819 } else if (oset) {
2820 old_set = current->blocked.sig[0];
2821 set_old:
2822 error = -EFAULT;
2823 if (copy_to_user(oset, &old_set, sizeof(*oset)))
2824 goto out;
2825 }
2826 error = 0;
2827out:
2828 return error;
2829}
2830#endif /* __ARCH_WANT_SYS_SIGPROCMASK */
2831
2832#ifdef __ARCH_WANT_SYS_RT_SIGACTION
Heiko Carstensd4e82042009-01-14 14:14:34 +01002833SYSCALL_DEFINE4(rt_sigaction, int, sig,
2834 const struct sigaction __user *, act,
2835 struct sigaction __user *, oact,
2836 size_t, sigsetsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837{
2838 struct k_sigaction new_sa, old_sa;
2839 int ret = -EINVAL;
2840
2841 /* XXX: Don't preclude handling different sized sigset_t's. */
2842 if (sigsetsize != sizeof(sigset_t))
2843 goto out;
2844
2845 if (act) {
2846 if (copy_from_user(&new_sa.sa, act, sizeof(new_sa.sa)))
2847 return -EFAULT;
2848 }
2849
2850 ret = do_sigaction(sig, act ? &new_sa : NULL, oact ? &old_sa : NULL);
2851
2852 if (!ret && oact) {
2853 if (copy_to_user(oact, &old_sa.sa, sizeof(old_sa.sa)))
2854 return -EFAULT;
2855 }
2856out:
2857 return ret;
2858}
2859#endif /* __ARCH_WANT_SYS_RT_SIGACTION */
2860
2861#ifdef __ARCH_WANT_SYS_SGETMASK
2862
2863/*
2864 * For backwards compatibility. Functionality superseded by sigprocmask.
2865 */
Heiko Carstensa5f8fa92009-01-14 14:14:11 +01002866SYSCALL_DEFINE0(sgetmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867{
2868 /* SMP safe */
2869 return current->blocked.sig[0];
2870}
2871
Heiko Carstensa5f8fa92009-01-14 14:14:11 +01002872SYSCALL_DEFINE1(ssetmask, int, newmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873{
2874 int old;
2875
2876 spin_lock_irq(&current->sighand->siglock);
2877 old = current->blocked.sig[0];
2878
2879 siginitset(&current->blocked, newmask & ~(sigmask(SIGKILL)|
2880 sigmask(SIGSTOP)));
2881 recalc_sigpending();
2882 spin_unlock_irq(&current->sighand->siglock);
2883
2884 return old;
2885}
2886#endif /* __ARCH_WANT_SGETMASK */
2887
2888#ifdef __ARCH_WANT_SYS_SIGNAL
2889/*
2890 * For backwards compatibility. Functionality superseded by sigaction.
2891 */
Heiko Carstensa5f8fa92009-01-14 14:14:11 +01002892SYSCALL_DEFINE2(signal, int, sig, __sighandler_t, handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893{
2894 struct k_sigaction new_sa, old_sa;
2895 int ret;
2896
2897 new_sa.sa.sa_handler = handler;
2898 new_sa.sa.sa_flags = SA_ONESHOT | SA_NOMASK;
Oleg Nesterovc70d3d72006-02-09 22:41:41 +03002899 sigemptyset(&new_sa.sa.sa_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900
2901 ret = do_sigaction(sig, &new_sa, &old_sa);
2902
2903 return ret ? ret : (unsigned long)old_sa.sa.sa_handler;
2904}
2905#endif /* __ARCH_WANT_SYS_SIGNAL */
2906
2907#ifdef __ARCH_WANT_SYS_PAUSE
2908
Heiko Carstensa5f8fa92009-01-14 14:14:11 +01002909SYSCALL_DEFINE0(pause)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910{
2911 current->state = TASK_INTERRUPTIBLE;
2912 schedule();
2913 return -ERESTARTNOHAND;
2914}
2915
2916#endif
2917
David Woodhouse150256d2006-01-18 17:43:57 -08002918#ifdef __ARCH_WANT_SYS_RT_SIGSUSPEND
Heiko Carstensd4e82042009-01-14 14:14:34 +01002919SYSCALL_DEFINE2(rt_sigsuspend, sigset_t __user *, unewset, size_t, sigsetsize)
David Woodhouse150256d2006-01-18 17:43:57 -08002920{
2921 sigset_t newset;
2922
2923 /* XXX: Don't preclude handling different sized sigset_t's. */
2924 if (sigsetsize != sizeof(sigset_t))
2925 return -EINVAL;
2926
2927 if (copy_from_user(&newset, unewset, sizeof(newset)))
2928 return -EFAULT;
2929 sigdelsetmask(&newset, sigmask(SIGKILL)|sigmask(SIGSTOP));
2930
2931 spin_lock_irq(&current->sighand->siglock);
2932 current->saved_sigmask = current->blocked;
2933 current->blocked = newset;
2934 recalc_sigpending();
2935 spin_unlock_irq(&current->sighand->siglock);
2936
2937 current->state = TASK_INTERRUPTIBLE;
2938 schedule();
Roland McGrath4e4c22c2008-04-30 00:53:06 -07002939 set_restore_sigmask();
David Woodhouse150256d2006-01-18 17:43:57 -08002940 return -ERESTARTNOHAND;
2941}
2942#endif /* __ARCH_WANT_SYS_RT_SIGSUSPEND */
2943
David Howellsf269fdd2006-09-27 01:50:23 -07002944__attribute__((weak)) const char *arch_vma_name(struct vm_area_struct *vma)
2945{
2946 return NULL;
2947}
2948
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949void __init signals_init(void)
2950{
Christoph Lameter0a31bd52007-05-06 14:49:57 -07002951 sigqueue_cachep = KMEM_CACHE(sigqueue, SLAB_PANIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952}
Jason Wessel67fc4e02010-05-20 21:04:21 -05002953
2954#ifdef CONFIG_KGDB_KDB
2955#include <linux/kdb.h>
2956/*
2957 * kdb_send_sig_info - Allows kdb to send signals without exposing
2958 * signal internals. This function checks if the required locks are
2959 * available before calling the main signal code, to avoid kdb
2960 * deadlocks.
2961 */
2962void
2963kdb_send_sig_info(struct task_struct *t, struct siginfo *info)
2964{
2965 static struct task_struct *kdb_prev_t;
2966 int sig, new_t;
2967 if (!spin_trylock(&t->sighand->siglock)) {
2968 kdb_printf("Can't do kill command now.\n"
2969 "The sigmask lock is held somewhere else in "
2970 "kernel, try again later\n");
2971 return;
2972 }
2973 spin_unlock(&t->sighand->siglock);
2974 new_t = kdb_prev_t != t;
2975 kdb_prev_t = t;
2976 if (t->state != TASK_RUNNING && new_t) {
2977 kdb_printf("Process is not RUNNING, sending a signal from "
2978 "kdb risks deadlock\n"
2979 "on the run queue locks. "
2980 "The signal has _not_ been sent.\n"
2981 "Reissue the kill command if you want to risk "
2982 "the deadlock.\n");
2983 return;
2984 }
2985 sig = info->si_signo;
2986 if (send_sig_info(sig, info, t))
2987 kdb_printf("Fail to deliver Signal %d to process %d.\n",
2988 sig, t->pid);
2989 else
2990 kdb_printf("Signal %d is sent to process %d.\n", sig, t->pid);
2991}
2992#endif /* CONFIG_KGDB_KDB */