blob: 637a171b65b605bc788103d66c7978e0d0a01b50 [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 Heo3759a0d2011-06-02 11:14:00 +0200127 if ((t->jobctl & JOBCTL_PENDING_MASK) ||
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 Heoa8f072c2011-06-02 11:13:59 +0200227 * task_clear_jobctl_trapping - clear jobctl trapping bit
Tejun Heod79fdd62011-03-23 10:37:00 +0100228 * @task: target task
229 *
Tejun Heoa8f072c2011-06-02 11:13:59 +0200230 * If JOBCTL_TRAPPING is set, a ptracer is waiting for us to enter TRACED.
231 * Clear it and wake up the ptracer. Note that we don't need any further
232 * locking. @task->siglock guarantees that @task->parent points to the
233 * ptracer.
Tejun Heod79fdd62011-03-23 10:37:00 +0100234 *
235 * CONTEXT:
236 * Must be called with @task->sighand->siglock held.
237 */
Tejun Heoa8f072c2011-06-02 11:13:59 +0200238static void task_clear_jobctl_trapping(struct task_struct *task)
Tejun Heod79fdd62011-03-23 10:37:00 +0100239{
Tejun Heoa8f072c2011-06-02 11:13:59 +0200240 if (unlikely(task->jobctl & JOBCTL_TRAPPING)) {
241 task->jobctl &= ~JOBCTL_TRAPPING;
Tejun Heo40ae7172011-05-06 11:52:22 +0200242 __wake_up_sync_key(&task->parent->signal->wait_chldexit,
243 TASK_UNINTERRUPTIBLE, 1, task);
Tejun Heod79fdd62011-03-23 10:37:00 +0100244 }
245}
246
247/**
Tejun Heo3759a0d2011-06-02 11:14:00 +0200248 * task_clear_jobctl_pending - clear jobctl pending bits
Tejun Heoe5c19022011-03-23 10:37:00 +0100249 * @task: target task
Tejun Heo3759a0d2011-06-02 11:14:00 +0200250 * @mask: pending bits to clear
Tejun Heoe5c19022011-03-23 10:37:00 +0100251 *
Tejun Heo3759a0d2011-06-02 11:14:00 +0200252 * Clear @mask from @task->jobctl. @mask must be subset of
253 * %JOBCTL_PENDING_MASK. If %JOBCTL_STOP_PENDING is being cleared, other
254 * STOP bits are cleared together.
Tejun Heoe5c19022011-03-23 10:37:00 +0100255 *
Tejun Heo6dfca322011-06-02 11:14:00 +0200256 * If clearing of @mask leaves no stop or trap pending, this function calls
257 * task_clear_jobctl_trapping().
258 *
Tejun Heoe5c19022011-03-23 10:37:00 +0100259 * CONTEXT:
260 * Must be called with @task->sighand->siglock held.
261 */
Tejun Heo3759a0d2011-06-02 11:14:00 +0200262void task_clear_jobctl_pending(struct task_struct *task, unsigned int mask)
Tejun Heoe5c19022011-03-23 10:37:00 +0100263{
Tejun Heo3759a0d2011-06-02 11:14:00 +0200264 BUG_ON(mask & ~JOBCTL_PENDING_MASK);
265
266 if (mask & JOBCTL_STOP_PENDING)
267 mask |= JOBCTL_STOP_CONSUME | JOBCTL_STOP_DEQUEUED;
268
269 task->jobctl &= ~mask;
Tejun Heo6dfca322011-06-02 11:14:00 +0200270
271 if (!(task->jobctl & JOBCTL_PENDING_MASK))
272 task_clear_jobctl_trapping(task);
Tejun Heoe5c19022011-03-23 10:37:00 +0100273}
274
275/**
276 * task_participate_group_stop - participate in a group stop
277 * @task: task participating in a group stop
278 *
Tejun Heoa8f072c2011-06-02 11:13:59 +0200279 * @task has %JOBCTL_STOP_PENDING set and is participating in a group stop.
Tejun Heo39efa3e2011-03-23 10:37:00 +0100280 * Group stop states are cleared and the group stop count is consumed if
Tejun Heoa8f072c2011-06-02 11:13:59 +0200281 * %JOBCTL_STOP_CONSUME was set. If the consumption completes the group
Tejun Heo39efa3e2011-03-23 10:37:00 +0100282 * stop, the appropriate %SIGNAL_* flags are set.
Tejun Heoe5c19022011-03-23 10:37:00 +0100283 *
284 * CONTEXT:
285 * Must be called with @task->sighand->siglock held.
Tejun Heo244056f2011-03-23 10:37:01 +0100286 *
287 * RETURNS:
288 * %true if group stop completion should be notified to the parent, %false
289 * otherwise.
Tejun Heoe5c19022011-03-23 10:37:00 +0100290 */
291static bool task_participate_group_stop(struct task_struct *task)
292{
293 struct signal_struct *sig = task->signal;
Tejun Heoa8f072c2011-06-02 11:13:59 +0200294 bool consume = task->jobctl & JOBCTL_STOP_CONSUME;
Tejun Heoe5c19022011-03-23 10:37:00 +0100295
Tejun Heoa8f072c2011-06-02 11:13:59 +0200296 WARN_ON_ONCE(!(task->jobctl & JOBCTL_STOP_PENDING));
Tejun Heo39efa3e2011-03-23 10:37:00 +0100297
Tejun Heo3759a0d2011-06-02 11:14:00 +0200298 task_clear_jobctl_pending(task, JOBCTL_STOP_PENDING);
Tejun Heoe5c19022011-03-23 10:37:00 +0100299
300 if (!consume)
301 return false;
302
303 if (!WARN_ON_ONCE(sig->group_stop_count == 0))
304 sig->group_stop_count--;
305
Tejun Heo244056f2011-03-23 10:37:01 +0100306 /*
307 * Tell the caller to notify completion iff we are entering into a
308 * fresh group stop. Read comment in do_signal_stop() for details.
309 */
310 if (!sig->group_stop_count && !(sig->flags & SIGNAL_STOP_STOPPED)) {
Tejun Heoe5c19022011-03-23 10:37:00 +0100311 sig->flags = SIGNAL_STOP_STOPPED;
312 return true;
313 }
314 return false;
315}
316
David Howellsc69e8d92008-11-14 10:39:19 +1100317/*
318 * allocate a new signal queue record
319 * - this may be called without locks if and only if t == current, otherwise an
Randy Dunlap5aba0852011-04-04 14:59:31 -0700320 * appropriate lock must be held to stop the target task from exiting
David Howellsc69e8d92008-11-14 10:39:19 +1100321 */
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +0900322static struct sigqueue *
323__sigqueue_alloc(int sig, struct task_struct *t, gfp_t flags, int override_rlimit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
325 struct sigqueue *q = NULL;
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800326 struct user_struct *user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800328 /*
Thomas Gleixner7cf7db82009-12-10 00:53:21 +0000329 * Protect access to @t credentials. This can go away when all
330 * callers hold rcu read lock.
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800331 */
Thomas Gleixner7cf7db82009-12-10 00:53:21 +0000332 rcu_read_lock();
David Howellsd84f4f92008-11-14 10:39:23 +1100333 user = get_uid(__task_cred(t)->user);
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800334 atomic_inc(&user->sigpending);
Thomas Gleixner7cf7db82009-12-10 00:53:21 +0000335 rcu_read_unlock();
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +0900336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 if (override_rlimit ||
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800338 atomic_read(&user->sigpending) <=
Jiri Slaby78d7d402010-03-05 13:42:54 -0800339 task_rlimit(t, RLIMIT_SIGPENDING)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 q = kmem_cache_alloc(sigqueue_cachep, flags);
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +0900341 } else {
342 print_dropped_signal(sig);
343 }
344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 if (unlikely(q == NULL)) {
Linus Torvalds10b1fbd2006-11-04 13:03:00 -0800346 atomic_dec(&user->sigpending);
David Howellsd84f4f92008-11-14 10:39:23 +1100347 free_uid(user);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 } else {
349 INIT_LIST_HEAD(&q->list);
350 q->flags = 0;
David Howellsd84f4f92008-11-14 10:39:23 +1100351 q->user = user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 }
David Howellsd84f4f92008-11-14 10:39:23 +1100353
354 return q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
356
Andrew Morton514a01b2006-02-03 03:04:41 -0800357static void __sigqueue_free(struct sigqueue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
359 if (q->flags & SIGQUEUE_PREALLOC)
360 return;
361 atomic_dec(&q->user->sigpending);
362 free_uid(q->user);
363 kmem_cache_free(sigqueue_cachep, q);
364}
365
Oleg Nesterov6a14c5c2006-03-28 16:11:18 -0800366void flush_sigqueue(struct sigpending *queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
368 struct sigqueue *q;
369
370 sigemptyset(&queue->signal);
371 while (!list_empty(&queue->list)) {
372 q = list_entry(queue->list.next, struct sigqueue , list);
373 list_del_init(&q->list);
374 __sigqueue_free(q);
375 }
376}
377
378/*
379 * Flush all pending signals for a task.
380 */
David Howells3bcac022009-04-29 13:45:05 +0100381void __flush_signals(struct task_struct *t)
382{
383 clear_tsk_thread_flag(t, TIF_SIGPENDING);
384 flush_sigqueue(&t->pending);
385 flush_sigqueue(&t->signal->shared_pending);
386}
387
Oleg Nesterovc81addc2006-03-28 16:11:17 -0800388void flush_signals(struct task_struct *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
390 unsigned long flags;
391
392 spin_lock_irqsave(&t->sighand->siglock, flags);
David Howells3bcac022009-04-29 13:45:05 +0100393 __flush_signals(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 spin_unlock_irqrestore(&t->sighand->siglock, flags);
395}
396
Oleg Nesterovcbaffba2008-05-26 20:55:42 +0400397static void __flush_itimer_signals(struct sigpending *pending)
398{
399 sigset_t signal, retain;
400 struct sigqueue *q, *n;
401
402 signal = pending->signal;
403 sigemptyset(&retain);
404
405 list_for_each_entry_safe(q, n, &pending->list, list) {
406 int sig = q->info.si_signo;
407
408 if (likely(q->info.si_code != SI_TIMER)) {
409 sigaddset(&retain, sig);
410 } else {
411 sigdelset(&signal, sig);
412 list_del_init(&q->list);
413 __sigqueue_free(q);
414 }
415 }
416
417 sigorsets(&pending->signal, &signal, &retain);
418}
419
420void flush_itimer_signals(void)
421{
422 struct task_struct *tsk = current;
423 unsigned long flags;
424
425 spin_lock_irqsave(&tsk->sighand->siglock, flags);
426 __flush_itimer_signals(&tsk->pending);
427 __flush_itimer_signals(&tsk->signal->shared_pending);
428 spin_unlock_irqrestore(&tsk->sighand->siglock, flags);
429}
430
Oleg Nesterov10ab8252007-05-09 02:34:37 -0700431void ignore_signals(struct task_struct *t)
432{
433 int i;
434
435 for (i = 0; i < _NSIG; ++i)
436 t->sighand->action[i].sa.sa_handler = SIG_IGN;
437
438 flush_signals(t);
439}
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 * Flush all handlers for a task.
443 */
444
445void
446flush_signal_handlers(struct task_struct *t, int force_default)
447{
448 int i;
449 struct k_sigaction *ka = &t->sighand->action[0];
450 for (i = _NSIG ; i != 0 ; i--) {
451 if (force_default || ka->sa.sa_handler != SIG_IGN)
452 ka->sa.sa_handler = SIG_DFL;
453 ka->sa.sa_flags = 0;
454 sigemptyset(&ka->sa.sa_mask);
455 ka++;
456 }
457}
458
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200459int unhandled_signal(struct task_struct *tsk, int sig)
460{
Roland McGrath445a91d2008-07-25 19:45:52 -0700461 void __user *handler = tsk->sighand->action[sig-1].sa.sa_handler;
Serge E. Hallynb460cbc2007-10-18 23:39:52 -0700462 if (is_global_init(tsk))
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200463 return 1;
Roland McGrath445a91d2008-07-25 19:45:52 -0700464 if (handler != SIG_IGN && handler != SIG_DFL)
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200465 return 0;
Oleg Nesterov43918f22009-04-02 16:58:00 -0700466 return !tracehook_consider_fatal_signal(tsk, sig);
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200467}
468
Randy Dunlap5aba0852011-04-04 14:59:31 -0700469/*
470 * Notify the system that a driver wants to block all signals for this
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 * process, and wants to be notified if any signals at all were to be
472 * sent/acted upon. If the notifier routine returns non-zero, then the
473 * signal will be acted upon after all. If the notifier routine returns 0,
474 * then then signal will be blocked. Only one block per process is
475 * allowed. priv is a pointer to private data that the notifier routine
Randy Dunlap5aba0852011-04-04 14:59:31 -0700476 * can use to determine if the signal should be blocked or not.
477 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478void
479block_all_signals(int (*notifier)(void *priv), void *priv, sigset_t *mask)
480{
481 unsigned long flags;
482
483 spin_lock_irqsave(&current->sighand->siglock, flags);
484 current->notifier_mask = mask;
485 current->notifier_data = priv;
486 current->notifier = notifier;
487 spin_unlock_irqrestore(&current->sighand->siglock, flags);
488}
489
490/* Notify the system that blocking has ended. */
491
492void
493unblock_all_signals(void)
494{
495 unsigned long flags;
496
497 spin_lock_irqsave(&current->sighand->siglock, flags);
498 current->notifier = NULL;
499 current->notifier_data = NULL;
500 recalc_sigpending();
501 spin_unlock_irqrestore(&current->sighand->siglock, flags);
502}
503
Oleg Nesterov100360f2008-07-25 01:47:29 -0700504static void collect_signal(int sig, struct sigpending *list, siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
506 struct sigqueue *q, *first = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 /*
509 * Collect the siginfo appropriate to this signal. Check if
510 * there is another siginfo for the same signal.
511 */
512 list_for_each_entry(q, &list->list, list) {
513 if (q->info.si_signo == sig) {
Oleg Nesterovd4434202008-07-25 01:47:28 -0700514 if (first)
515 goto still_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 first = q;
517 }
518 }
Oleg Nesterovd4434202008-07-25 01:47:28 -0700519
520 sigdelset(&list->signal, sig);
521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 if (first) {
Oleg Nesterovd4434202008-07-25 01:47:28 -0700523still_pending:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 list_del_init(&first->list);
525 copy_siginfo(info, &first->info);
526 __sigqueue_free(first);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 } else {
Randy Dunlap5aba0852011-04-04 14:59:31 -0700528 /*
529 * Ok, it wasn't in the queue. This must be
530 * a fast-pathed signal or we must have been
531 * out of queue space. So zero out the info.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 info->si_signo = sig;
534 info->si_errno = 0;
Oleg Nesterov7486e5d2009-12-15 16:47:24 -0800535 info->si_code = SI_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 info->si_pid = 0;
537 info->si_uid = 0;
538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539}
540
541static int __dequeue_signal(struct sigpending *pending, sigset_t *mask,
542 siginfo_t *info)
543{
Roland McGrath27d91e02006-09-29 02:00:31 -0700544 int sig = next_signal(pending, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 if (sig) {
547 if (current->notifier) {
548 if (sigismember(current->notifier_mask, sig)) {
549 if (!(current->notifier)(current->notifier_data)) {
550 clear_thread_flag(TIF_SIGPENDING);
551 return 0;
552 }
553 }
554 }
555
Oleg Nesterov100360f2008-07-25 01:47:29 -0700556 collect_signal(sig, pending, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559 return sig;
560}
561
562/*
Randy Dunlap5aba0852011-04-04 14:59:31 -0700563 * Dequeue a signal and return the element to the caller, which is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 * expected to free it.
565 *
566 * All callers have to hold the siglock.
567 */
568int dequeue_signal(struct task_struct *tsk, sigset_t *mask, siginfo_t *info)
569{
Pavel Emelyanovc5363d02008-04-30 00:52:40 -0700570 int signr;
Benjamin Herrenschmidtcaec4e82007-06-12 08:16:18 +1000571
572 /* We only dequeue private signals from ourselves, we don't let
573 * signalfd steal them
574 */
Davide Libenzib8fceee2007-09-20 12:40:16 -0700575 signr = __dequeue_signal(&tsk->pending, mask, info);
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800576 if (!signr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 signr = __dequeue_signal(&tsk->signal->shared_pending,
578 mask, info);
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800579 /*
580 * itimer signal ?
581 *
582 * itimers are process shared and we restart periodic
583 * itimers in the signal delivery path to prevent DoS
584 * attacks in the high resolution timer case. This is
Randy Dunlap5aba0852011-04-04 14:59:31 -0700585 * compliant with the old way of self-restarting
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800586 * itimers, as the SIGALRM is a legacy signal and only
587 * queued once. Changing the restart behaviour to
588 * restart the timer in the signal dequeue path is
589 * reducing the timer noise on heavy loaded !highres
590 * systems too.
591 */
592 if (unlikely(signr == SIGALRM)) {
593 struct hrtimer *tmr = &tsk->signal->real_timer;
594
595 if (!hrtimer_is_queued(tmr) &&
596 tsk->signal->it_real_incr.tv64 != 0) {
597 hrtimer_forward(tmr, tmr->base->get_time(),
598 tsk->signal->it_real_incr);
599 hrtimer_restart(tmr);
600 }
601 }
602 }
Pavel Emelyanovc5363d02008-04-30 00:52:40 -0700603
Davide Libenzib8fceee2007-09-20 12:40:16 -0700604 recalc_sigpending();
Pavel Emelyanovc5363d02008-04-30 00:52:40 -0700605 if (!signr)
606 return 0;
607
608 if (unlikely(sig_kernel_stop(signr))) {
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800609 /*
610 * Set a marker that we have dequeued a stop signal. Our
611 * caller might release the siglock and then the pending
612 * stop signal it is about to process is no longer in the
613 * pending bitmasks, but must still be cleared by a SIGCONT
614 * (and overruled by a SIGKILL). So those cases clear this
615 * shared flag after we've set it. Note that this flag may
616 * remain set after the signal we return is ignored or
617 * handled. That doesn't matter because its only purpose
618 * is to alert stop-signal processing code when another
619 * processor has come along and cleared the flag.
620 */
Tejun Heoa8f072c2011-06-02 11:13:59 +0200621 current->jobctl |= JOBCTL_STOP_DEQUEUED;
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800622 }
Pavel Emelyanovc5363d02008-04-30 00:52:40 -0700623 if ((info->si_code & __SI_MASK) == __SI_TIMER && info->si_sys_private) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 /*
625 * Release the siglock to ensure proper locking order
626 * of timer locks outside of siglocks. Note, we leave
627 * irqs disabled here, since the posix-timers code is
628 * about to disable them again anyway.
629 */
630 spin_unlock(&tsk->sighand->siglock);
631 do_schedule_next_timer(info);
632 spin_lock(&tsk->sighand->siglock);
633 }
634 return signr;
635}
636
637/*
638 * Tell a process that it has a new active signal..
639 *
640 * NOTE! we rely on the previous spin_lock to
641 * lock interrupts for us! We can only be called with
642 * "siglock" held, and the local interrupt must
643 * have been disabled when that got acquired!
644 *
645 * No need to set need_resched since signal event passing
646 * goes through ->blocked
647 */
648void signal_wake_up(struct task_struct *t, int resume)
649{
650 unsigned int mask;
651
652 set_tsk_thread_flag(t, TIF_SIGPENDING);
653
654 /*
Matthew Wilcoxf021a3c2007-12-06 11:13:16 -0500655 * For SIGKILL, we want to wake it up in the stopped/traced/killable
656 * case. We don't check t->state here because there is a race with it
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 * executing another processor and just now entering stopped state.
658 * By using wake_up_state, we ensure the process will wake up and
659 * handle its death signal.
660 */
661 mask = TASK_INTERRUPTIBLE;
662 if (resume)
Matthew Wilcoxf021a3c2007-12-06 11:13:16 -0500663 mask |= TASK_WAKEKILL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 if (!wake_up_state(t, mask))
665 kick_process(t);
666}
667
668/*
669 * Remove signals in mask from the pending set and queue.
670 * Returns 1 if any signals were found.
671 *
672 * All callers must be holding the siglock.
George Anzinger71fabd52006-01-08 01:02:48 -0800673 *
674 * This version takes a sigset mask and looks at all signals,
675 * not just those in the first mask word.
676 */
677static int rm_from_queue_full(sigset_t *mask, struct sigpending *s)
678{
679 struct sigqueue *q, *n;
680 sigset_t m;
681
682 sigandsets(&m, mask, &s->signal);
683 if (sigisemptyset(&m))
684 return 0;
685
Oleg Nesterov702a5072011-04-27 22:01:27 +0200686 sigandnsets(&s->signal, &s->signal, mask);
George Anzinger71fabd52006-01-08 01:02:48 -0800687 list_for_each_entry_safe(q, n, &s->list, list) {
688 if (sigismember(mask, q->info.si_signo)) {
689 list_del_init(&q->list);
690 __sigqueue_free(q);
691 }
692 }
693 return 1;
694}
695/*
696 * Remove signals in mask from the pending set and queue.
697 * Returns 1 if any signals were found.
698 *
699 * All callers must be holding the siglock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 */
701static int rm_from_queue(unsigned long mask, struct sigpending *s)
702{
703 struct sigqueue *q, *n;
704
705 if (!sigtestsetmask(&s->signal, mask))
706 return 0;
707
708 sigdelsetmask(&s->signal, mask);
709 list_for_each_entry_safe(q, n, &s->list, list) {
710 if (q->info.si_signo < SIGRTMIN &&
711 (mask & sigmask(q->info.si_signo))) {
712 list_del_init(&q->list);
713 __sigqueue_free(q);
714 }
715 }
716 return 1;
717}
718
Oleg Nesterov614c5172009-12-15 16:47:22 -0800719static inline int is_si_special(const struct siginfo *info)
720{
721 return info <= SEND_SIG_FORCED;
722}
723
724static inline bool si_fromuser(const struct siginfo *info)
725{
726 return info == SEND_SIG_NOINFO ||
727 (!is_si_special(info) && SI_FROMUSER(info));
728}
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730/*
Serge E. Hallyn39fd3392011-03-23 16:43:19 -0700731 * called with RCU read lock from check_kill_permission()
732 */
733static int kill_ok_by_cred(struct task_struct *t)
734{
735 const struct cred *cred = current_cred();
736 const struct cred *tcred = __task_cred(t);
737
738 if (cred->user->user_ns == tcred->user->user_ns &&
739 (cred->euid == tcred->suid ||
740 cred->euid == tcred->uid ||
741 cred->uid == tcred->suid ||
742 cred->uid == tcred->uid))
743 return 1;
744
745 if (ns_capable(tcred->user->user_ns, CAP_KILL))
746 return 1;
747
748 return 0;
749}
750
751/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 * Bad permissions for sending the signal
David Howells694f6902010-08-04 16:59:14 +0100753 * - the caller must hold the RCU read lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 */
755static int check_kill_permission(int sig, struct siginfo *info,
756 struct task_struct *t)
757{
Oleg Nesterov2e2ba222008-04-30 00:53:01 -0700758 struct pid *sid;
Oleg Nesterov3b5e9e52008-04-30 00:52:42 -0700759 int error;
760
Jesper Juhl7ed20e12005-05-01 08:59:14 -0700761 if (!valid_signal(sig))
Oleg Nesterov3b5e9e52008-04-30 00:52:42 -0700762 return -EINVAL;
763
Oleg Nesterov614c5172009-12-15 16:47:22 -0800764 if (!si_fromuser(info))
Oleg Nesterov3b5e9e52008-04-30 00:52:42 -0700765 return 0;
766
767 error = audit_signal_info(sig, t); /* Let audit system see the signal */
768 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 return error;
Amy Griffise54dc242007-03-29 18:01:04 -0400770
Oleg Nesterov065add32010-05-26 14:42:54 -0700771 if (!same_thread_group(current, t) &&
Serge E. Hallyn39fd3392011-03-23 16:43:19 -0700772 !kill_ok_by_cred(t)) {
Oleg Nesterov2e2ba222008-04-30 00:53:01 -0700773 switch (sig) {
774 case SIGCONT:
Oleg Nesterov2e2ba222008-04-30 00:53:01 -0700775 sid = task_session(t);
Oleg Nesterov2e2ba222008-04-30 00:53:01 -0700776 /*
777 * We don't return the error if sid == NULL. The
778 * task was unhashed, the caller must notice this.
779 */
780 if (!sid || sid == task_session(current))
781 break;
782 default:
783 return -EPERM;
784 }
785 }
Steve Grubbc2f0c7c2005-05-06 12:38:39 +0100786
Amy Griffise54dc242007-03-29 18:01:04 -0400787 return security_task_kill(t, info, sig, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788}
789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790/*
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700791 * Handle magic process-wide effects of stop/continue signals. Unlike
792 * the signal actions, these happen immediately at signal-generation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 * time regardless of blocking, ignoring, or handling. This does the
794 * actual continuing for SIGCONT, but not the actual stopping for stop
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700795 * signals. The process stop is done as a signal action for SIG_DFL.
796 *
797 * Returns true if the signal should be actually delivered, otherwise
798 * it should be dropped.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 */
Sukadev Bhattiprolu921cf9f2009-04-02 16:58:05 -0700800static int prepare_signal(int sig, struct task_struct *p, int from_ancestor_ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801{
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700802 struct signal_struct *signal = p->signal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 struct task_struct *t;
804
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700805 if (unlikely(signal->flags & SIGNAL_GROUP_EXIT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 /*
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700807 * The process is in the middle of dying, nothing to do.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 */
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700809 } else if (sig_kernel_stop(sig)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 /*
811 * This is a stop signal. Remove SIGCONT from all queues.
812 */
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700813 rm_from_queue(sigmask(SIGCONT), &signal->shared_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 t = p;
815 do {
816 rm_from_queue(sigmask(SIGCONT), &t->pending);
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700817 } while_each_thread(p, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 } else if (sig == SIGCONT) {
Oleg Nesterovfc321d22008-04-30 00:52:46 -0700819 unsigned int why;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 /*
Oleg Nesterov1deac632011-04-01 20:11:50 +0200821 * Remove all stop signals from all queues, wake all threads.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 */
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700823 rm_from_queue(SIG_KERNEL_STOP_MASK, &signal->shared_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 t = p;
825 do {
Tejun Heo3759a0d2011-06-02 11:14:00 +0200826 task_clear_jobctl_pending(t, JOBCTL_STOP_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 rm_from_queue(SIG_KERNEL_STOP_MASK, &t->pending);
Oleg Nesterov1deac632011-04-01 20:11:50 +0200828 wake_up_state(t, __TASK_STOPPED);
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700829 } while_each_thread(p, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
Oleg Nesterovfc321d22008-04-30 00:52:46 -0700831 /*
832 * Notify the parent with CLD_CONTINUED if we were stopped.
833 *
834 * If we were in the middle of a group stop, we pretend it
835 * was already finished, and then continued. Since SIGCHLD
836 * doesn't queue we report only CLD_STOPPED, as if the next
837 * CLD_CONTINUED was dropped.
838 */
839 why = 0;
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700840 if (signal->flags & SIGNAL_STOP_STOPPED)
Oleg Nesterovfc321d22008-04-30 00:52:46 -0700841 why |= SIGNAL_CLD_CONTINUED;
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700842 else if (signal->group_stop_count)
Oleg Nesterovfc321d22008-04-30 00:52:46 -0700843 why |= SIGNAL_CLD_STOPPED;
844
845 if (why) {
Oleg Nesterov021e1ae2008-04-30 00:53:00 -0700846 /*
Roland McGrathae6d2ed2009-09-23 15:56:53 -0700847 * The first thread which returns from do_signal_stop()
Oleg Nesterov021e1ae2008-04-30 00:53:00 -0700848 * will take ->siglock, notice SIGNAL_CLD_MASK, and
849 * notify its parent. See get_signal_to_deliver().
850 */
Oleg Nesterovad16a4602008-04-30 00:52:46 -0700851 signal->flags = why | SIGNAL_STOP_CONTINUED;
852 signal->group_stop_count = 0;
853 signal->group_exit_code = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 }
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700856
Sukadev Bhattiprolu921cf9f2009-04-02 16:58:05 -0700857 return !sig_ignored(p, sig, from_ancestor_ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858}
859
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700860/*
861 * Test if P wants to take SIG. After we've checked all threads with this,
862 * it's equivalent to finding no threads not blocking SIG. Any threads not
863 * blocking SIG were ruled out because they are not running and already
864 * have pending signals. Such threads will dequeue from the shared queue
865 * as soon as they're available, so putting the signal on the shared queue
866 * will be equivalent to sending it to one such thread.
867 */
868static inline int wants_signal(int sig, struct task_struct *p)
869{
870 if (sigismember(&p->blocked, sig))
871 return 0;
872 if (p->flags & PF_EXITING)
873 return 0;
874 if (sig == SIGKILL)
875 return 1;
876 if (task_is_stopped_or_traced(p))
877 return 0;
878 return task_curr(p) || !signal_pending(p);
879}
880
Oleg Nesterov5fcd8352008-04-30 00:52:55 -0700881static void complete_signal(int sig, struct task_struct *p, int group)
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700882{
883 struct signal_struct *signal = p->signal;
884 struct task_struct *t;
885
886 /*
887 * Now find a thread we can wake up to take the signal off the queue.
888 *
889 * If the main thread wants the signal, it gets first crack.
890 * Probably the least surprising to the average bear.
891 */
892 if (wants_signal(sig, p))
893 t = p;
Oleg Nesterov5fcd8352008-04-30 00:52:55 -0700894 else if (!group || thread_group_empty(p))
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700895 /*
896 * There is just one thread and it does not need to be woken.
897 * It will dequeue unblocked signals before it runs again.
898 */
899 return;
900 else {
901 /*
902 * Otherwise try to find a suitable thread.
903 */
904 t = signal->curr_target;
905 while (!wants_signal(sig, t)) {
906 t = next_thread(t);
907 if (t == signal->curr_target)
908 /*
909 * No thread needs to be woken.
910 * Any eligible threads will see
911 * the signal in the queue soon.
912 */
913 return;
914 }
915 signal->curr_target = t;
916 }
917
918 /*
919 * Found a killable thread. If the signal will be fatal,
920 * then start taking the whole group down immediately.
921 */
Oleg Nesterovfae5fa42008-04-30 00:53:03 -0700922 if (sig_fatal(p, sig) &&
923 !(signal->flags & (SIGNAL_UNKILLABLE | SIGNAL_GROUP_EXIT)) &&
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700924 !sigismember(&t->real_blocked, sig) &&
Roland McGrath445a91d2008-07-25 19:45:52 -0700925 (sig == SIGKILL ||
Oleg Nesterov43918f22009-04-02 16:58:00 -0700926 !tracehook_consider_fatal_signal(t, sig))) {
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700927 /*
928 * This signal will be fatal to the whole group.
929 */
930 if (!sig_kernel_coredump(sig)) {
931 /*
932 * Start a group exit and wake everybody up.
933 * This way we don't have other threads
934 * running and doing things after a slower
935 * thread has the fatal signal pending.
936 */
937 signal->flags = SIGNAL_GROUP_EXIT;
938 signal->group_exit_code = sig;
939 signal->group_stop_count = 0;
940 t = p;
941 do {
Tejun Heo6dfca322011-06-02 11:14:00 +0200942 task_clear_jobctl_pending(t, JOBCTL_PENDING_MASK);
Oleg Nesterov71f11dc2008-04-30 00:52:53 -0700943 sigaddset(&t->pending.signal, SIGKILL);
944 signal_wake_up(t, 1);
945 } while_each_thread(p, t);
946 return;
947 }
948 }
949
950 /*
951 * The signal is already in the shared-pending queue.
952 * Tell the chosen thread to wake up and dequeue it.
953 */
954 signal_wake_up(t, sig == SIGKILL);
955 return;
956}
957
Pavel Emelyanovaf7fff92008-04-30 00:52:34 -0700958static inline int legacy_queue(struct sigpending *signals, int sig)
959{
960 return (sig < SIGRTMIN) && sigismember(&signals->signal, sig);
961}
962
Sukadev Bhattiprolu7978b562009-04-02 16:58:04 -0700963static int __send_signal(int sig, struct siginfo *info, struct task_struct *t,
964 int group, int from_ancestor_ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
Oleg Nesterov2ca35152008-04-30 00:52:54 -0700966 struct sigpending *pending;
Oleg Nesterov6e65acb2008-04-30 00:52:50 -0700967 struct sigqueue *q;
Vegard Nossum7a0aeb12009-05-16 11:28:33 +0200968 int override_rlimit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Masami Hiramatsud1eb6502009-11-24 16:56:45 -0500970 trace_signal_generate(sig, info, t);
Mathieu Desnoyers0a16b602008-07-18 12:16:17 -0400971
Oleg Nesterov6e65acb2008-04-30 00:52:50 -0700972 assert_spin_locked(&t->sighand->siglock);
Sukadev Bhattiprolu921cf9f2009-04-02 16:58:05 -0700973
974 if (!prepare_signal(sig, t, from_ancestor_ns))
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700975 return 0;
Oleg Nesterov2ca35152008-04-30 00:52:54 -0700976
977 pending = group ? &t->signal->shared_pending : &t->pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 /*
Pavel Emelyanov2acb0242008-04-30 00:52:35 -0700979 * Short-circuit ignored signals and support queuing
980 * exactly one non-rt signal, so that we can get more
981 * detailed information about the cause of the signal.
982 */
Oleg Nesterov7e695a52008-04-30 00:52:59 -0700983 if (legacy_queue(pending, sig))
Pavel Emelyanov2acb0242008-04-30 00:52:35 -0700984 return 0;
Davide Libenzifba2afa2007-05-10 22:23:13 -0700985 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 * fast-pathed signals for kernel-internal things like SIGSTOP
987 * or SIGKILL.
988 */
Oleg Nesterovb67a1b92005-10-30 15:03:44 -0800989 if (info == SEND_SIG_FORCED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 goto out_set;
991
Randy Dunlap5aba0852011-04-04 14:59:31 -0700992 /*
993 * Real-time signals must be queued if sent by sigqueue, or
994 * some other real-time mechanism. It is implementation
995 * defined whether kill() does so. We attempt to do so, on
996 * the principle of least surprise, but since kill is not
997 * allowed to fail with EAGAIN when low on memory we just
998 * make sure at least one signal gets delivered and don't
999 * pass on the info struct.
1000 */
Vegard Nossum7a0aeb12009-05-16 11:28:33 +02001001 if (sig < SIGRTMIN)
1002 override_rlimit = (is_si_special(info) || info->si_code >= 0);
1003 else
1004 override_rlimit = 0;
1005
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +09001006 q = __sigqueue_alloc(sig, t, GFP_ATOMIC | __GFP_NOTRACK_FALSE_POSITIVE,
Vegard Nossum7a0aeb12009-05-16 11:28:33 +02001007 override_rlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 if (q) {
Oleg Nesterov2ca35152008-04-30 00:52:54 -07001009 list_add_tail(&q->list, &pending->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 switch ((unsigned long) info) {
Oleg Nesterovb67a1b92005-10-30 15:03:44 -08001011 case (unsigned long) SEND_SIG_NOINFO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 q->info.si_signo = sig;
1013 q->info.si_errno = 0;
1014 q->info.si_code = SI_USER;
Sukadev Bhattiprolu9cd4fd12009-01-06 14:42:46 -08001015 q->info.si_pid = task_tgid_nr_ns(current,
Sukadev Bhattiprolu09bca052009-01-06 14:42:45 -08001016 task_active_pid_ns(t));
David Howells76aac0e2008-11-14 10:39:12 +11001017 q->info.si_uid = current_uid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 break;
Oleg Nesterovb67a1b92005-10-30 15:03:44 -08001019 case (unsigned long) SEND_SIG_PRIV:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 q->info.si_signo = sig;
1021 q->info.si_errno = 0;
1022 q->info.si_code = SI_KERNEL;
1023 q->info.si_pid = 0;
1024 q->info.si_uid = 0;
1025 break;
1026 default:
1027 copy_siginfo(&q->info, info);
Sukadev Bhattiprolu6588c1e2009-04-02 16:58:09 -07001028 if (from_ancestor_ns)
1029 q->info.si_pid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 break;
1031 }
Oleg Nesterov621d3122005-10-30 15:03:45 -08001032 } else if (!is_si_special(info)) {
Masami Hiramatsuba005e12009-11-24 16:56:58 -05001033 if (sig >= SIGRTMIN && info->si_code != SI_USER) {
1034 /*
1035 * Queue overflow, abort. We may abort if the
1036 * signal was rt and sent by user using something
1037 * other than kill().
1038 */
1039 trace_signal_overflow_fail(sig, group, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 return -EAGAIN;
Masami Hiramatsuba005e12009-11-24 16:56:58 -05001041 } else {
1042 /*
1043 * This is a silent loss of information. We still
1044 * send the signal, but the *info bits are lost.
1045 */
1046 trace_signal_lose_info(sig, group, info);
1047 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 }
1049
1050out_set:
Oleg Nesterov53c30332008-04-30 00:53:00 -07001051 signalfd_notify(t, sig);
Oleg Nesterov2ca35152008-04-30 00:52:54 -07001052 sigaddset(&pending->signal, sig);
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -07001053 complete_signal(sig, t, group);
1054 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055}
1056
Sukadev Bhattiprolu7978b562009-04-02 16:58:04 -07001057static int send_signal(int sig, struct siginfo *info, struct task_struct *t,
1058 int group)
1059{
Sukadev Bhattiprolu921cf9f2009-04-02 16:58:05 -07001060 int from_ancestor_ns = 0;
1061
1062#ifdef CONFIG_PID_NS
Oleg Nesterovdd342002009-12-15 16:47:24 -08001063 from_ancestor_ns = si_fromuser(info) &&
1064 !task_pid_nr_ns(current, task_active_pid_ns(t));
Sukadev Bhattiprolu921cf9f2009-04-02 16:58:05 -07001065#endif
1066
1067 return __send_signal(sig, info, t, group, from_ancestor_ns);
Sukadev Bhattiprolu7978b562009-04-02 16:58:04 -07001068}
1069
Ingo Molnar45807a12007-07-15 23:40:10 -07001070static void print_fatal_signal(struct pt_regs *regs, int signr)
1071{
1072 printk("%s/%d: potentially unexpected fatal signal %d.\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001073 current->comm, task_pid_nr(current), signr);
Ingo Molnar45807a12007-07-15 23:40:10 -07001074
Al Viroca5cd872007-10-29 04:31:16 +00001075#if defined(__i386__) && !defined(__arch_um__)
H. Peter Anvin65ea5b02008-01-30 13:30:56 +01001076 printk("code at %08lx: ", regs->ip);
Ingo Molnar45807a12007-07-15 23:40:10 -07001077 {
1078 int i;
1079 for (i = 0; i < 16; i++) {
1080 unsigned char insn;
1081
Andi Kleenb45c6e72010-01-08 14:42:52 -08001082 if (get_user(insn, (unsigned char *)(regs->ip + i)))
1083 break;
Ingo Molnar45807a12007-07-15 23:40:10 -07001084 printk("%02x ", insn);
1085 }
1086 }
1087#endif
1088 printk("\n");
Ed Swierk3a9f84d2009-01-26 15:33:31 -08001089 preempt_disable();
Ingo Molnar45807a12007-07-15 23:40:10 -07001090 show_regs(regs);
Ed Swierk3a9f84d2009-01-26 15:33:31 -08001091 preempt_enable();
Ingo Molnar45807a12007-07-15 23:40:10 -07001092}
1093
1094static int __init setup_print_fatal_signals(char *str)
1095{
1096 get_option (&str, &print_fatal_signals);
1097
1098 return 1;
1099}
1100
1101__setup("print-fatal-signals=", setup_print_fatal_signals);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -07001103int
1104__group_send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
1105{
1106 return send_signal(sig, info, p, 1);
1107}
1108
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109static int
1110specific_send_sig_info(int sig, struct siginfo *info, struct task_struct *t)
1111{
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -07001112 return send_signal(sig, info, t, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113}
1114
Oleg Nesterov4a30deb2009-09-23 15:57:00 -07001115int do_send_sig_info(int sig, struct siginfo *info, struct task_struct *p,
1116 bool group)
1117{
1118 unsigned long flags;
1119 int ret = -ESRCH;
1120
1121 if (lock_task_sighand(p, &flags)) {
1122 ret = send_signal(sig, info, p, group);
1123 unlock_task_sighand(p, &flags);
1124 }
1125
1126 return ret;
1127}
1128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129/*
1130 * Force a signal that the process can't ignore: if necessary
1131 * we unblock the signal and change any SIG_IGN to SIG_DFL.
Linus Torvaldsae74c3b2006-08-02 20:17:49 -07001132 *
1133 * Note: If we unblock the signal, we always reset it to SIG_DFL,
1134 * since we do not want to have a signal handler that was blocked
1135 * be invoked when user space had explicitly blocked it.
1136 *
Oleg Nesterov80fe7282008-04-30 00:53:05 -07001137 * We don't want to have recursive SIGSEGV's etc, for example,
1138 * that is why we also clear SIGNAL_UNKILLABLE.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140int
1141force_sig_info(int sig, struct siginfo *info, struct task_struct *t)
1142{
1143 unsigned long int flags;
Linus Torvaldsae74c3b2006-08-02 20:17:49 -07001144 int ret, blocked, ignored;
1145 struct k_sigaction *action;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
1147 spin_lock_irqsave(&t->sighand->siglock, flags);
Linus Torvaldsae74c3b2006-08-02 20:17:49 -07001148 action = &t->sighand->action[sig-1];
1149 ignored = action->sa.sa_handler == SIG_IGN;
1150 blocked = sigismember(&t->blocked, sig);
1151 if (blocked || ignored) {
1152 action->sa.sa_handler = SIG_DFL;
1153 if (blocked) {
1154 sigdelset(&t->blocked, sig);
Roland McGrath7bb44ad2007-05-23 13:57:44 -07001155 recalc_sigpending_and_wake(t);
Linus Torvaldsae74c3b2006-08-02 20:17:49 -07001156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 }
Oleg Nesterov80fe7282008-04-30 00:53:05 -07001158 if (action->sa.sa_handler == SIG_DFL)
1159 t->signal->flags &= ~SIGNAL_UNKILLABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 ret = specific_send_sig_info(sig, info, t);
1161 spin_unlock_irqrestore(&t->sighand->siglock, flags);
1162
1163 return ret;
1164}
1165
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166/*
1167 * Nuke all other threads in the group.
1168 */
Oleg Nesterov09faef12010-05-26 14:43:11 -07001169int zap_other_threads(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170{
Oleg Nesterov09faef12010-05-26 14:43:11 -07001171 struct task_struct *t = p;
1172 int count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 p->signal->group_stop_count = 0;
1175
Oleg Nesterov09faef12010-05-26 14:43:11 -07001176 while_each_thread(p, t) {
Tejun Heo6dfca322011-06-02 11:14:00 +02001177 task_clear_jobctl_pending(t, JOBCTL_PENDING_MASK);
Oleg Nesterov09faef12010-05-26 14:43:11 -07001178 count++;
1179
1180 /* Don't bother with already dead threads */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 if (t->exit_state)
1182 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 sigaddset(&t->pending.signal, SIGKILL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 signal_wake_up(t, 1);
1185 }
Oleg Nesterov09faef12010-05-26 14:43:11 -07001186
1187 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188}
1189
Namhyung Kimb8ed3742010-10-27 15:34:06 -07001190struct sighand_struct *__lock_task_sighand(struct task_struct *tsk,
1191 unsigned long *flags)
Oleg Nesterovf63ee722006-03-28 16:11:13 -08001192{
1193 struct sighand_struct *sighand;
1194
Oleg Nesterov1406f2d2008-04-30 00:52:37 -07001195 rcu_read_lock();
Oleg Nesterovf63ee722006-03-28 16:11:13 -08001196 for (;;) {
1197 sighand = rcu_dereference(tsk->sighand);
1198 if (unlikely(sighand == NULL))
1199 break;
1200
1201 spin_lock_irqsave(&sighand->siglock, *flags);
1202 if (likely(sighand == tsk->sighand))
1203 break;
1204 spin_unlock_irqrestore(&sighand->siglock, *flags);
1205 }
Oleg Nesterov1406f2d2008-04-30 00:52:37 -07001206 rcu_read_unlock();
Oleg Nesterovf63ee722006-03-28 16:11:13 -08001207
1208 return sighand;
1209}
1210
David Howellsc69e8d92008-11-14 10:39:19 +11001211/*
1212 * send signal info to all the members of a group
David Howellsc69e8d92008-11-14 10:39:19 +11001213 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214int group_send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
1215{
David Howells694f6902010-08-04 16:59:14 +01001216 int ret;
1217
1218 rcu_read_lock();
1219 ret = check_kill_permission(sig, info, p);
1220 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Oleg Nesterov4a30deb2009-09-23 15:57:00 -07001222 if (!ret && sig)
1223 ret = do_send_sig_info(sig, info, p, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
1225 return ret;
1226}
1227
1228/*
Pavel Emelyanov146a5052008-02-08 04:19:22 -08001229 * __kill_pgrp_info() sends a signal to a process group: this is what the tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 * control characters do (^C, ^Z etc)
David Howellsc69e8d92008-11-14 10:39:19 +11001231 * - the caller must hold at least a readlock on tasklist_lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 */
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001233int __kill_pgrp_info(int sig, struct siginfo *info, struct pid *pgrp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234{
1235 struct task_struct *p = NULL;
1236 int retval, success;
1237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 success = 0;
1239 retval = -ESRCH;
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001240 do_each_pid_task(pgrp, PIDTYPE_PGID, p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 int err = group_send_sig_info(sig, info, p);
1242 success |= !err;
1243 retval = err;
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001244 } while_each_pid_task(pgrp, PIDTYPE_PGID, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 return success ? 0 : retval;
1246}
1247
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001248int kill_pid_info(int sig, struct siginfo *info, struct pid *pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249{
Oleg Nesterovd36174b2008-02-08 04:19:18 -08001250 int error = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 struct task_struct *p;
1252
Ingo Molnare56d0902006-01-08 01:01:37 -08001253 rcu_read_lock();
Oleg Nesterovd36174b2008-02-08 04:19:18 -08001254retry:
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001255 p = pid_task(pid, PIDTYPE_PID);
Oleg Nesterovd36174b2008-02-08 04:19:18 -08001256 if (p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 error = group_send_sig_info(sig, info, p);
Oleg Nesterovd36174b2008-02-08 04:19:18 -08001258 if (unlikely(error == -ESRCH))
1259 /*
1260 * The task was unhashed in between, try again.
1261 * If it is dead, pid_task() will return NULL,
1262 * if we race with de_thread() it will find the
1263 * new leader.
1264 */
1265 goto retry;
1266 }
Ingo Molnare56d0902006-01-08 01:01:37 -08001267 rcu_read_unlock();
Oleg Nesterov6ca25b52008-04-30 00:52:45 -07001268
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 return error;
1270}
1271
Randy Dunlap5aba0852011-04-04 14:59:31 -07001272int kill_proc_info(int sig, struct siginfo *info, pid_t pid)
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001273{
1274 int error;
1275 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001276 error = kill_pid_info(sig, info, find_vpid(pid));
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001277 rcu_read_unlock();
1278 return error;
1279}
1280
Eric W. Biederman2425c082006-10-02 02:17:28 -07001281/* like kill_pid_info(), but doesn't use uid/euid of "current" */
1282int kill_pid_info_as_uid(int sig, struct siginfo *info, struct pid *pid,
David Quigley8f95dc52006-06-30 01:55:47 -07001283 uid_t uid, uid_t euid, u32 secid)
Harald Welte46113832005-10-10 19:44:29 +02001284{
1285 int ret = -EINVAL;
1286 struct task_struct *p;
David Howellsc69e8d92008-11-14 10:39:19 +11001287 const struct cred *pcred;
Thomas Gleixner14d8c9f2009-12-10 00:53:17 +00001288 unsigned long flags;
Harald Welte46113832005-10-10 19:44:29 +02001289
1290 if (!valid_signal(sig))
1291 return ret;
1292
Thomas Gleixner14d8c9f2009-12-10 00:53:17 +00001293 rcu_read_lock();
Eric W. Biederman2425c082006-10-02 02:17:28 -07001294 p = pid_task(pid, PIDTYPE_PID);
Harald Welte46113832005-10-10 19:44:29 +02001295 if (!p) {
1296 ret = -ESRCH;
1297 goto out_unlock;
1298 }
David Howellsc69e8d92008-11-14 10:39:19 +11001299 pcred = __task_cred(p);
Oleg Nesterov614c5172009-12-15 16:47:22 -08001300 if (si_fromuser(info) &&
David Howellsc69e8d92008-11-14 10:39:19 +11001301 euid != pcred->suid && euid != pcred->uid &&
1302 uid != pcred->suid && uid != pcred->uid) {
Harald Welte46113832005-10-10 19:44:29 +02001303 ret = -EPERM;
1304 goto out_unlock;
1305 }
David Quigley8f95dc52006-06-30 01:55:47 -07001306 ret = security_task_kill(p, info, sig, secid);
1307 if (ret)
1308 goto out_unlock;
Thomas Gleixner14d8c9f2009-12-10 00:53:17 +00001309
1310 if (sig) {
1311 if (lock_task_sighand(p, &flags)) {
1312 ret = __send_signal(sig, info, p, 1, 0);
1313 unlock_task_sighand(p, &flags);
1314 } else
1315 ret = -ESRCH;
Harald Welte46113832005-10-10 19:44:29 +02001316 }
1317out_unlock:
Thomas Gleixner14d8c9f2009-12-10 00:53:17 +00001318 rcu_read_unlock();
Harald Welte46113832005-10-10 19:44:29 +02001319 return ret;
1320}
Eric W. Biederman2425c082006-10-02 02:17:28 -07001321EXPORT_SYMBOL_GPL(kill_pid_info_as_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323/*
1324 * kill_something_info() interprets pid in interesting ways just like kill(2).
1325 *
1326 * POSIX specifies that kill(-1,sig) is unspecified, but what we have
1327 * is probably wrong. Should make it like BSD or SYSV.
1328 */
1329
Gustavo Fernando Padovanbc64efd2008-07-25 01:47:33 -07001330static int kill_something_info(int sig, struct siginfo *info, pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331{
Eric W. Biederman8d42db182007-02-12 00:52:55 -08001332 int ret;
Pavel Emelyanovd5df7632008-02-08 04:19:22 -08001333
1334 if (pid > 0) {
1335 rcu_read_lock();
1336 ret = kill_pid_info(sig, info, find_vpid(pid));
1337 rcu_read_unlock();
1338 return ret;
1339 }
1340
1341 read_lock(&tasklist_lock);
1342 if (pid != -1) {
1343 ret = __kill_pgrp_info(sig, info,
1344 pid ? find_vpid(-pid) : task_pgrp(current));
1345 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 int retval = 0, count = 0;
1347 struct task_struct * p;
1348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 for_each_process(p) {
Sukadev Bhattiprolud25141a2008-10-29 14:01:11 -07001350 if (task_pid_vnr(p) > 1 &&
1351 !same_thread_group(p, current)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 int err = group_send_sig_info(sig, info, p);
1353 ++count;
1354 if (err != -EPERM)
1355 retval = err;
1356 }
1357 }
Eric W. Biederman8d42db182007-02-12 00:52:55 -08001358 ret = count ? retval : -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 }
Pavel Emelyanovd5df7632008-02-08 04:19:22 -08001360 read_unlock(&tasklist_lock);
1361
Eric W. Biederman8d42db182007-02-12 00:52:55 -08001362 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363}
1364
1365/*
1366 * These are for backward compatibility with the rest of the kernel source.
1367 */
1368
Randy Dunlap5aba0852011-04-04 14:59:31 -07001369int send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 /*
1372 * Make sure legacy kernel users don't send in bad values
1373 * (normal paths check this in check_kill_permission).
1374 */
Jesper Juhl7ed20e12005-05-01 08:59:14 -07001375 if (!valid_signal(sig))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 return -EINVAL;
1377
Oleg Nesterov4a30deb2009-09-23 15:57:00 -07001378 return do_send_sig_info(sig, info, p, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379}
1380
Oleg Nesterovb67a1b92005-10-30 15:03:44 -08001381#define __si_special(priv) \
1382 ((priv) ? SEND_SIG_PRIV : SEND_SIG_NOINFO)
1383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384int
1385send_sig(int sig, struct task_struct *p, int priv)
1386{
Oleg Nesterovb67a1b92005-10-30 15:03:44 -08001387 return send_sig_info(sig, __si_special(priv), p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388}
1389
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390void
1391force_sig(int sig, struct task_struct *p)
1392{
Oleg Nesterovb67a1b92005-10-30 15:03:44 -08001393 force_sig_info(sig, SEND_SIG_PRIV, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394}
1395
1396/*
1397 * When things go south during signal handling, we
1398 * will force a SIGSEGV. And if the signal that caused
1399 * the problem was already a SIGSEGV, we'll want to
1400 * make sure we don't even try to deliver the signal..
1401 */
1402int
1403force_sigsegv(int sig, struct task_struct *p)
1404{
1405 if (sig == SIGSEGV) {
1406 unsigned long flags;
1407 spin_lock_irqsave(&p->sighand->siglock, flags);
1408 p->sighand->action[sig - 1].sa.sa_handler = SIG_DFL;
1409 spin_unlock_irqrestore(&p->sighand->siglock, flags);
1410 }
1411 force_sig(SIGSEGV, p);
1412 return 0;
1413}
1414
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001415int kill_pgrp(struct pid *pid, int sig, int priv)
1416{
Pavel Emelyanov146a5052008-02-08 04:19:22 -08001417 int ret;
1418
1419 read_lock(&tasklist_lock);
1420 ret = __kill_pgrp_info(sig, __si_special(priv), pid);
1421 read_unlock(&tasklist_lock);
1422
1423 return ret;
Eric W. Biedermanc4b92fc2006-10-02 02:17:10 -07001424}
1425EXPORT_SYMBOL(kill_pgrp);
1426
1427int kill_pid(struct pid *pid, int sig, int priv)
1428{
1429 return kill_pid_info(sig, __si_special(priv), pid);
1430}
1431EXPORT_SYMBOL(kill_pid);
1432
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433/*
1434 * These functions support sending signals using preallocated sigqueue
1435 * structures. This is needed "because realtime applications cannot
1436 * afford to lose notifications of asynchronous events, like timer
Randy Dunlap5aba0852011-04-04 14:59:31 -07001437 * expirations or I/O completions". In the case of POSIX Timers
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 * we allocate the sigqueue structure from the timer_create. If this
1439 * allocation fails we are able to report the failure to the application
1440 * with an EAGAIN error.
1441 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442struct sigqueue *sigqueue_alloc(void)
1443{
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +09001444 struct sigqueue *q = __sigqueue_alloc(-1, current, GFP_KERNEL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +09001446 if (q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 q->flags |= SIGQUEUE_PREALLOC;
Naohiro Ooiwaf84d49b2009-11-09 00:46:42 +09001448
1449 return q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450}
1451
1452void sigqueue_free(struct sigqueue *q)
1453{
1454 unsigned long flags;
Oleg Nesterov60187d22007-08-30 23:56:35 -07001455 spinlock_t *lock = &current->sighand->siglock;
1456
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 BUG_ON(!(q->flags & SIGQUEUE_PREALLOC));
1458 /*
Oleg Nesterovc8e85b4f2008-05-26 20:55:42 +04001459 * We must hold ->siglock while testing q->list
1460 * to serialize with collect_signal() or with
Oleg Nesterovda7978b2008-05-23 13:04:41 -07001461 * __exit_signal()->flush_sigqueue().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 */
Oleg Nesterov60187d22007-08-30 23:56:35 -07001463 spin_lock_irqsave(lock, flags);
Oleg Nesterovc8e85b4f2008-05-26 20:55:42 +04001464 q->flags &= ~SIGQUEUE_PREALLOC;
1465 /*
1466 * If it is queued it will be freed when dequeued,
1467 * like the "regular" sigqueue.
1468 */
Oleg Nesterov60187d22007-08-30 23:56:35 -07001469 if (!list_empty(&q->list))
Oleg Nesterovc8e85b4f2008-05-26 20:55:42 +04001470 q = NULL;
Oleg Nesterov60187d22007-08-30 23:56:35 -07001471 spin_unlock_irqrestore(lock, flags);
1472
Oleg Nesterovc8e85b4f2008-05-26 20:55:42 +04001473 if (q)
1474 __sigqueue_free(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475}
1476
Oleg Nesterovac5c2152008-04-30 00:52:57 -07001477int send_sigqueue(struct sigqueue *q, struct task_struct *t, int group)
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001478{
Oleg Nesterove62e6652008-04-30 00:52:56 -07001479 int sig = q->info.si_signo;
Oleg Nesterov2ca35152008-04-30 00:52:54 -07001480 struct sigpending *pending;
Oleg Nesterove62e6652008-04-30 00:52:56 -07001481 unsigned long flags;
1482 int ret;
Oleg Nesterov2ca35152008-04-30 00:52:54 -07001483
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -07001484 BUG_ON(!(q->flags & SIGQUEUE_PREALLOC));
Oleg Nesterove62e6652008-04-30 00:52:56 -07001485
1486 ret = -1;
1487 if (!likely(lock_task_sighand(t, &flags)))
1488 goto ret;
1489
Oleg Nesterov7e695a52008-04-30 00:52:59 -07001490 ret = 1; /* the signal is ignored */
Sukadev Bhattiprolu921cf9f2009-04-02 16:58:05 -07001491 if (!prepare_signal(sig, t, 0))
Oleg Nesterove62e6652008-04-30 00:52:56 -07001492 goto out;
1493
1494 ret = 0;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001495 if (unlikely(!list_empty(&q->list))) {
1496 /*
1497 * If an SI_TIMER entry is already queue just increment
1498 * the overrun count.
1499 */
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001500 BUG_ON(q->info.si_code != SI_TIMER);
1501 q->info.si_overrun++;
Oleg Nesterove62e6652008-04-30 00:52:56 -07001502 goto out;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001503 }
Oleg Nesterovba661292008-07-23 20:52:05 +04001504 q->info.si_overrun = 0;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001505
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001506 signalfd_notify(t, sig);
Oleg Nesterov2ca35152008-04-30 00:52:54 -07001507 pending = group ? &t->signal->shared_pending : &t->pending;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001508 list_add_tail(&q->list, &pending->list);
1509 sigaddset(&pending->signal, sig);
Pavel Emelyanov4cd4b6d2008-04-30 00:52:55 -07001510 complete_signal(sig, t, group);
Oleg Nesterove62e6652008-04-30 00:52:56 -07001511out:
1512 unlock_task_sighand(t, &flags);
1513ret:
1514 return ret;
Pavel Emelyanov9e3bd6c2008-04-30 00:52:41 -07001515}
1516
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 * Let a parent know about the death of a child.
1519 * For a stopped/continued status change, use do_notify_parent_cldstop instead.
Roland McGrath2b2a1ff2008-07-25 19:45:54 -07001520 *
1521 * Returns -1 if our parent ignored us and so we've switched to
1522 * self-reaping, or else @sig.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 */
Roland McGrath2b2a1ff2008-07-25 19:45:54 -07001524int do_notify_parent(struct task_struct *tsk, int sig)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525{
1526 struct siginfo info;
1527 unsigned long flags;
1528 struct sighand_struct *psig;
Roland McGrath1b046242008-08-19 20:37:07 -07001529 int ret = sig;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
1531 BUG_ON(sig == -1);
1532
1533 /* do_notify_parent_cldstop should have been called instead. */
Matthew Wilcoxe1abb392007-12-06 11:07:35 -05001534 BUG_ON(task_is_stopped_or_traced(tsk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Oleg Nesterov5cb11442009-06-17 16:27:30 -07001536 BUG_ON(!task_ptrace(tsk) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 (tsk->group_leader != tsk || !thread_group_empty(tsk)));
1538
1539 info.si_signo = sig;
1540 info.si_errno = 0;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001541 /*
1542 * we are under tasklist_lock here so our parent is tied to
1543 * us and cannot exit and release its namespace.
1544 *
1545 * the only it can is to switch its nsproxy with sys_unshare,
1546 * bu uncharing pid namespaces is not allowed, so we'll always
1547 * see relevant namespace
1548 *
1549 * write_lock() currently calls preempt_disable() which is the
1550 * same as rcu_read_lock(), but according to Oleg, this is not
1551 * correct to rely on this
1552 */
1553 rcu_read_lock();
1554 info.si_pid = task_pid_nr_ns(tsk, tsk->parent->nsproxy->pid_ns);
David Howellsc69e8d92008-11-14 10:39:19 +11001555 info.si_uid = __task_cred(tsk)->uid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001556 rcu_read_unlock();
1557
Peter Zijlstra32bd6712009-02-05 12:24:15 +01001558 info.si_utime = cputime_to_clock_t(cputime_add(tsk->utime,
1559 tsk->signal->utime));
1560 info.si_stime = cputime_to_clock_t(cputime_add(tsk->stime,
1561 tsk->signal->stime));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
1563 info.si_status = tsk->exit_code & 0x7f;
1564 if (tsk->exit_code & 0x80)
1565 info.si_code = CLD_DUMPED;
1566 else if (tsk->exit_code & 0x7f)
1567 info.si_code = CLD_KILLED;
1568 else {
1569 info.si_code = CLD_EXITED;
1570 info.si_status = tsk->exit_code >> 8;
1571 }
1572
1573 psig = tsk->parent->sighand;
1574 spin_lock_irqsave(&psig->siglock, flags);
Oleg Nesterov5cb11442009-06-17 16:27:30 -07001575 if (!task_ptrace(tsk) && sig == SIGCHLD &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 (psig->action[SIGCHLD-1].sa.sa_handler == SIG_IGN ||
1577 (psig->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDWAIT))) {
1578 /*
1579 * We are exiting and our parent doesn't care. POSIX.1
1580 * defines special semantics for setting SIGCHLD to SIG_IGN
1581 * or setting the SA_NOCLDWAIT flag: we should be reaped
1582 * automatically and not left for our parent's wait4 call.
1583 * Rather than having the parent do it as a magic kind of
1584 * signal handler, we just set this to tell do_exit that we
1585 * can be cleaned up without becoming a zombie. Note that
1586 * we still call __wake_up_parent in this case, because a
1587 * blocked sys_wait4 might now return -ECHILD.
1588 *
1589 * Whether we send SIGCHLD or not for SA_NOCLDWAIT
1590 * is implementation-defined: we do (if you don't want
1591 * it, just use SIG_IGN instead).
1592 */
Roland McGrath1b046242008-08-19 20:37:07 -07001593 ret = tsk->exit_signal = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 if (psig->action[SIGCHLD-1].sa.sa_handler == SIG_IGN)
Roland McGrath2b2a1ff2008-07-25 19:45:54 -07001595 sig = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 }
Jesper Juhl7ed20e12005-05-01 08:59:14 -07001597 if (valid_signal(sig) && sig > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 __group_send_sig_info(sig, &info, tsk->parent);
1599 __wake_up_parent(tsk, tsk->parent);
1600 spin_unlock_irqrestore(&psig->siglock, flags);
Roland McGrath2b2a1ff2008-07-25 19:45:54 -07001601
Roland McGrath1b046242008-08-19 20:37:07 -07001602 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603}
1604
Tejun Heo75b95952011-03-23 10:37:01 +01001605/**
1606 * do_notify_parent_cldstop - notify parent of stopped/continued state change
1607 * @tsk: task reporting the state change
1608 * @for_ptracer: the notification is for ptracer
1609 * @why: CLD_{CONTINUED|STOPPED|TRAPPED} to report
1610 *
1611 * Notify @tsk's parent that the stopped/continued state has changed. If
1612 * @for_ptracer is %false, @tsk's group leader notifies to its real parent.
1613 * If %true, @tsk reports to @tsk->parent which should be the ptracer.
1614 *
1615 * CONTEXT:
1616 * Must be called with tasklist_lock at least read locked.
1617 */
1618static void do_notify_parent_cldstop(struct task_struct *tsk,
1619 bool for_ptracer, int why)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620{
1621 struct siginfo info;
1622 unsigned long flags;
Oleg Nesterovbc505a42005-09-06 15:17:32 -07001623 struct task_struct *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 struct sighand_struct *sighand;
1625
Tejun Heo75b95952011-03-23 10:37:01 +01001626 if (for_ptracer) {
Oleg Nesterovbc505a42005-09-06 15:17:32 -07001627 parent = tsk->parent;
Tejun Heo75b95952011-03-23 10:37:01 +01001628 } else {
Oleg Nesterovbc505a42005-09-06 15:17:32 -07001629 tsk = tsk->group_leader;
1630 parent = tsk->real_parent;
1631 }
1632
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 info.si_signo = SIGCHLD;
1634 info.si_errno = 0;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001635 /*
Randy Dunlap5aba0852011-04-04 14:59:31 -07001636 * see comment in do_notify_parent() about the following 4 lines
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001637 */
1638 rcu_read_lock();
Oleg Nesterovd9265662009-06-17 16:27:35 -07001639 info.si_pid = task_pid_nr_ns(tsk, parent->nsproxy->pid_ns);
David Howellsc69e8d92008-11-14 10:39:19 +11001640 info.si_uid = __task_cred(tsk)->uid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001641 rcu_read_unlock();
1642
Michael Kerriskd8878ba2008-07-25 01:47:32 -07001643 info.si_utime = cputime_to_clock_t(tsk->utime);
1644 info.si_stime = cputime_to_clock_t(tsk->stime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
1646 info.si_code = why;
1647 switch (why) {
1648 case CLD_CONTINUED:
1649 info.si_status = SIGCONT;
1650 break;
1651 case CLD_STOPPED:
1652 info.si_status = tsk->signal->group_exit_code & 0x7f;
1653 break;
1654 case CLD_TRAPPED:
1655 info.si_status = tsk->exit_code & 0x7f;
1656 break;
1657 default:
1658 BUG();
1659 }
1660
1661 sighand = parent->sighand;
1662 spin_lock_irqsave(&sighand->siglock, flags);
1663 if (sighand->action[SIGCHLD-1].sa.sa_handler != SIG_IGN &&
1664 !(sighand->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDSTOP))
1665 __group_send_sig_info(SIGCHLD, &info, parent);
1666 /*
1667 * Even if SIGCHLD is not generated, we must wake up wait4 calls.
1668 */
1669 __wake_up_parent(tsk, parent);
1670 spin_unlock_irqrestore(&sighand->siglock, flags);
1671}
1672
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001673static inline int may_ptrace_stop(void)
1674{
Oleg Nesterov5cb11442009-06-17 16:27:30 -07001675 if (!likely(task_ptrace(current)))
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001676 return 0;
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001677 /*
1678 * Are we in the middle of do_coredump?
1679 * If so and our tracer is also part of the coredump stopping
1680 * is a deadlock situation, and pointless because our tracer
1681 * is dead so don't allow us to stop.
1682 * If SIGKILL was already sent before the caller unlocked
Oleg Nesterov999d9fc2008-07-25 01:47:41 -07001683 * ->siglock we must see ->core_state != NULL. Otherwise it
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001684 * is safe to enter schedule().
1685 */
Oleg Nesterov999d9fc2008-07-25 01:47:41 -07001686 if (unlikely(current->mm->core_state) &&
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001687 unlikely(current->mm == current->parent->mm))
1688 return 0;
1689
1690 return 1;
1691}
1692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693/*
Randy Dunlap5aba0852011-04-04 14:59:31 -07001694 * Return non-zero if there is a SIGKILL that should be waking us up.
Roland McGrath1a669c22008-02-06 01:37:37 -08001695 * Called with the siglock held.
1696 */
1697static int sigkill_pending(struct task_struct *tsk)
1698{
Oleg Nesterov3d749b92008-07-25 01:47:37 -07001699 return sigismember(&tsk->pending.signal, SIGKILL) ||
1700 sigismember(&tsk->signal->shared_pending.signal, SIGKILL);
Roland McGrath1a669c22008-02-06 01:37:37 -08001701}
1702
1703/*
Tejun Heoceb6bd62011-03-23 10:37:01 +01001704 * Test whether the target task of the usual cldstop notification - the
1705 * real_parent of @child - is in the same group as the ptracer.
1706 */
1707static bool real_parent_is_ptracer(struct task_struct *child)
1708{
1709 return same_thread_group(child->parent, child->real_parent);
1710}
1711
1712/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 * This must be called with current->sighand->siglock held.
1714 *
1715 * This should be the path for all ptrace stops.
1716 * We always set current->last_siginfo while stopped here.
1717 * That makes it a way to test a stopped process for
1718 * being ptrace-stopped vs being job-control-stopped.
1719 *
Oleg Nesterov20686a32008-02-08 04:19:03 -08001720 * If we actually decide not to stop at all because the tracer
1721 * is gone, we keep current->exit_code unless clear_code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 */
Tejun Heofe1bc6a2011-03-23 10:37:00 +01001723static void ptrace_stop(int exit_code, int why, int clear_code, siginfo_t *info)
Namhyung Kimb8401152010-10-27 15:34:07 -07001724 __releases(&current->sighand->siglock)
1725 __acquires(&current->sighand->siglock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726{
Tejun Heoceb6bd62011-03-23 10:37:01 +01001727 bool gstop_done = false;
1728
Roland McGrath1a669c22008-02-06 01:37:37 -08001729 if (arch_ptrace_stop_needed(exit_code, info)) {
1730 /*
1731 * The arch code has something special to do before a
1732 * ptrace stop. This is allowed to block, e.g. for faults
1733 * on user stack pages. We can't keep the siglock while
1734 * calling arch_ptrace_stop, so we must release it now.
1735 * To preserve proper semantics, we must do this before
1736 * any signal bookkeeping like checking group_stop_count.
1737 * Meanwhile, a SIGKILL could come in before we retake the
1738 * siglock. That must prevent us from sleeping in TASK_TRACED.
1739 * So after regaining the lock, we must check for SIGKILL.
1740 */
1741 spin_unlock_irq(&current->sighand->siglock);
1742 arch_ptrace_stop(exit_code, info);
1743 spin_lock_irq(&current->sighand->siglock);
Oleg Nesterov3d749b92008-07-25 01:47:37 -07001744 if (sigkill_pending(current))
1745 return;
Roland McGrath1a669c22008-02-06 01:37:37 -08001746 }
1747
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 /*
Tejun Heo81be24b2011-06-02 11:13:59 +02001749 * We're committing to trapping. TRACED should be visible before
1750 * TRAPPING is cleared; otherwise, the tracer might fail do_wait().
1751 * Also, transition to TRACED and updates to ->jobctl should be
1752 * atomic with respect to siglock and should be done after the arch
1753 * hook as siglock is released and regrabbed across it.
1754 */
1755 set_current_state(TASK_TRACED);
1756
1757 current->last_siginfo = info;
1758 current->exit_code = exit_code;
1759
1760 /*
Tejun Heo0ae8ce12011-03-23 10:37:00 +01001761 * If @why is CLD_STOPPED, we're trapping to participate in a group
1762 * stop. Do the bookkeeping. Note that if SIGCONT was delievered
1763 * while siglock was released for the arch hook, PENDING could be
1764 * clear now. We act as if SIGCONT is received after TASK_TRACED
1765 * is entered - ignore it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 */
Tejun Heoa8f072c2011-06-02 11:13:59 +02001767 if (why == CLD_STOPPED && (current->jobctl & JOBCTL_STOP_PENDING))
Tejun Heoceb6bd62011-03-23 10:37:01 +01001768 gstop_done = task_participate_group_stop(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769
Tejun Heo81be24b2011-06-02 11:13:59 +02001770 /* entering a trap, clear TRAPPING */
Tejun Heoa8f072c2011-06-02 11:13:59 +02001771 task_clear_jobctl_trapping(current);
Tejun Heod79fdd62011-03-23 10:37:00 +01001772
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 spin_unlock_irq(&current->sighand->siglock);
1774 read_lock(&tasklist_lock);
Oleg Nesterov3d749b92008-07-25 01:47:37 -07001775 if (may_ptrace_stop()) {
Tejun Heoceb6bd62011-03-23 10:37:01 +01001776 /*
1777 * Notify parents of the stop.
1778 *
1779 * While ptraced, there are two parents - the ptracer and
1780 * the real_parent of the group_leader. The ptracer should
1781 * know about every stop while the real parent is only
1782 * interested in the completion of group stop. The states
1783 * for the two don't interact with each other. Notify
1784 * separately unless they're gonna be duplicates.
1785 */
1786 do_notify_parent_cldstop(current, true, why);
1787 if (gstop_done && !real_parent_is_ptracer(current))
1788 do_notify_parent_cldstop(current, false, why);
1789
Miklos Szeredi53da1d92009-03-23 16:07:24 +01001790 /*
1791 * Don't want to allow preemption here, because
1792 * sys_ptrace() needs this task to be inactive.
1793 *
1794 * XXX: implement read_unlock_no_resched().
1795 */
1796 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 read_unlock(&tasklist_lock);
Miklos Szeredi53da1d92009-03-23 16:07:24 +01001798 preempt_enable_no_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 schedule();
1800 } else {
1801 /*
1802 * By the time we got the lock, our tracer went away.
Oleg Nesterov6405f7f2008-02-08 04:19:00 -08001803 * Don't drop the lock yet, another tracer may come.
Tejun Heoceb6bd62011-03-23 10:37:01 +01001804 *
1805 * If @gstop_done, the ptracer went away between group stop
1806 * completion and here. During detach, it would have set
Tejun Heoa8f072c2011-06-02 11:13:59 +02001807 * JOBCTL_STOP_PENDING on us and we'll re-enter
1808 * TASK_STOPPED in do_signal_stop() on return, so notifying
1809 * the real parent of the group stop completion is enough.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 */
Tejun Heoceb6bd62011-03-23 10:37:01 +01001811 if (gstop_done)
1812 do_notify_parent_cldstop(current, false, why);
1813
Oleg Nesterov6405f7f2008-02-08 04:19:00 -08001814 __set_current_state(TASK_RUNNING);
Oleg Nesterov20686a32008-02-08 04:19:03 -08001815 if (clear_code)
1816 current->exit_code = 0;
Oleg Nesterov6405f7f2008-02-08 04:19:00 -08001817 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 }
1819
1820 /*
Roland McGrath13b1c3d2008-03-03 20:22:05 -08001821 * While in TASK_TRACED, we were considered "frozen enough".
1822 * Now that we woke up, it's crucial if we're supposed to be
1823 * frozen that we freeze now before running anything substantial.
1824 */
1825 try_to_freeze();
1826
1827 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 * We are back. Now reacquire the siglock before touching
1829 * last_siginfo, so that we are sure to have synchronized with
1830 * any signal-sending on another CPU that wants to examine it.
1831 */
1832 spin_lock_irq(&current->sighand->siglock);
1833 current->last_siginfo = NULL;
1834
1835 /*
1836 * Queued signals ignored us while we were stopped for tracing.
1837 * So check for any that we should take before resuming user mode.
Roland McGrathb74d0de2007-06-06 03:59:00 -07001838 * This sets TIF_SIGPENDING, but never clears it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 */
Roland McGrathb74d0de2007-06-06 03:59:00 -07001840 recalc_sigpending_tsk(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841}
1842
1843void ptrace_notify(int exit_code)
1844{
1845 siginfo_t info;
1846
1847 BUG_ON((exit_code & (0x7f | ~0xffff)) != SIGTRAP);
1848
1849 memset(&info, 0, sizeof info);
1850 info.si_signo = SIGTRAP;
1851 info.si_code = exit_code;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001852 info.si_pid = task_pid_vnr(current);
David Howells76aac0e2008-11-14 10:39:12 +11001853 info.si_uid = current_uid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
1855 /* Let the debugger run. */
1856 spin_lock_irq(&current->sighand->siglock);
Tejun Heofe1bc6a2011-03-23 10:37:00 +01001857 ptrace_stop(exit_code, CLD_TRAPPED, 1, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 spin_unlock_irq(&current->sighand->siglock);
1859}
1860
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861/*
1862 * This performs the stopping for SIGSTOP and other stop signals.
1863 * We have to stop all threads in the thread group.
Randy Dunlap5aba0852011-04-04 14:59:31 -07001864 * Returns non-zero if we've actually stopped and released the siglock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 * Returns zero if we didn't stop and still hold the siglock.
1866 */
Oleg Nesterova122b342006-03-28 16:11:22 -08001867static int do_signal_stop(int signr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868{
1869 struct signal_struct *sig = current->signal;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870
Tejun Heoa8f072c2011-06-02 11:13:59 +02001871 if (!(current->jobctl & JOBCTL_STOP_PENDING)) {
1872 unsigned int gstop = JOBCTL_STOP_PENDING | JOBCTL_STOP_CONSUME;
Oleg Nesterovf558b7e2008-02-04 22:27:24 -08001873 struct task_struct *t;
1874
Tejun Heoa8f072c2011-06-02 11:13:59 +02001875 /* signr will be recorded in task->jobctl for retries */
1876 WARN_ON_ONCE(signr & ~JOBCTL_STOP_SIGMASK);
Tejun Heod79fdd62011-03-23 10:37:00 +01001877
Tejun Heoa8f072c2011-06-02 11:13:59 +02001878 if (!likely(current->jobctl & JOBCTL_STOP_DEQUEUED) ||
Oleg Nesterov573cf9a2008-04-30 00:52:36 -07001879 unlikely(signal_group_exit(sig)))
Oleg Nesterovf558b7e2008-02-04 22:27:24 -08001880 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 /*
Tejun Heo408a37d2011-03-23 10:37:01 +01001882 * There is no group stop already in progress. We must
1883 * initiate one now.
1884 *
1885 * While ptraced, a task may be resumed while group stop is
1886 * still in effect and then receive a stop signal and
1887 * initiate another group stop. This deviates from the
1888 * usual behavior as two consecutive stop signals can't
Oleg Nesterov780006eac2011-04-01 20:12:16 +02001889 * cause two group stops when !ptraced. That is why we
1890 * also check !task_is_stopped(t) below.
Tejun Heo408a37d2011-03-23 10:37:01 +01001891 *
1892 * The condition can be distinguished by testing whether
1893 * SIGNAL_STOP_STOPPED is already set. Don't generate
1894 * group_exit_code in such case.
1895 *
1896 * This is not necessary for SIGNAL_STOP_CONTINUED because
1897 * an intervening stop signal is required to cause two
1898 * continued events regardless of ptrace.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 */
Tejun Heo408a37d2011-03-23 10:37:01 +01001900 if (!(sig->flags & SIGNAL_STOP_STOPPED))
1901 sig->group_exit_code = signr;
1902 else
1903 WARN_ON_ONCE(!task_ptrace(current));
Oleg Nesterova122b342006-03-28 16:11:22 -08001904
Tejun Heoa8f072c2011-06-02 11:13:59 +02001905 current->jobctl &= ~JOBCTL_STOP_SIGMASK;
1906 current->jobctl |= signr | gstop;
Roland McGrathae6d2ed2009-09-23 15:56:53 -07001907 sig->group_stop_count = 1;
Tejun Heod79fdd62011-03-23 10:37:00 +01001908 for (t = next_thread(current); t != current;
1909 t = next_thread(t)) {
Tejun Heoa8f072c2011-06-02 11:13:59 +02001910 t->jobctl &= ~JOBCTL_STOP_SIGMASK;
Oleg Nesterova122b342006-03-28 16:11:22 -08001911 /*
1912 * Setting state to TASK_STOPPED for a group
1913 * stop is always done with the siglock held,
1914 * so this check has no races.
1915 */
Tejun Heo39efa3e2011-03-23 10:37:00 +01001916 if (!(t->flags & PF_EXITING) && !task_is_stopped(t)) {
Tejun Heoa8f072c2011-06-02 11:13:59 +02001917 t->jobctl |= signr | gstop;
Roland McGrathae6d2ed2009-09-23 15:56:53 -07001918 sig->group_stop_count++;
Oleg Nesterova122b342006-03-28 16:11:22 -08001919 signal_wake_up(t, 0);
1920 }
Tejun Heod79fdd62011-03-23 10:37:00 +01001921 }
Roland McGrathae6d2ed2009-09-23 15:56:53 -07001922 }
Tejun Heod79fdd62011-03-23 10:37:00 +01001923retry:
Tejun Heo5224fa32011-03-23 10:37:00 +01001924 if (likely(!task_ptrace(current))) {
1925 int notify = 0;
1926
1927 /*
1928 * If there are no other threads in the group, or if there
1929 * is a group stop in progress and we are the last to stop,
1930 * report to the parent.
1931 */
1932 if (task_participate_group_stop(current))
1933 notify = CLD_STOPPED;
1934
Roland McGrathae6d2ed2009-09-23 15:56:53 -07001935 __set_current_state(TASK_STOPPED);
Tejun Heo5224fa32011-03-23 10:37:00 +01001936 spin_unlock_irq(&current->sighand->siglock);
1937
Tejun Heo62bcf9d2011-03-23 10:37:01 +01001938 /*
1939 * Notify the parent of the group stop completion. Because
1940 * we're not holding either the siglock or tasklist_lock
1941 * here, ptracer may attach inbetween; however, this is for
1942 * group stop and should always be delivered to the real
1943 * parent of the group leader. The new ptracer will get
1944 * its notification when this task transitions into
1945 * TASK_TRACED.
1946 */
Tejun Heo5224fa32011-03-23 10:37:00 +01001947 if (notify) {
1948 read_lock(&tasklist_lock);
Tejun Heo62bcf9d2011-03-23 10:37:01 +01001949 do_notify_parent_cldstop(current, false, notify);
Tejun Heo5224fa32011-03-23 10:37:00 +01001950 read_unlock(&tasklist_lock);
1951 }
1952
1953 /* Now we don't run again until woken by SIGCONT or SIGKILL */
1954 schedule();
1955
1956 spin_lock_irq(&current->sighand->siglock);
Tejun Heod79fdd62011-03-23 10:37:00 +01001957 } else {
Tejun Heoa8f072c2011-06-02 11:13:59 +02001958 ptrace_stop(current->jobctl & JOBCTL_STOP_SIGMASK,
Tejun Heod79fdd62011-03-23 10:37:00 +01001959 CLD_STOPPED, 0, NULL);
1960 current->exit_code = 0;
Roland McGrathae6d2ed2009-09-23 15:56:53 -07001961 }
Tejun Heod79fdd62011-03-23 10:37:00 +01001962
1963 /*
Tejun Heoa8f072c2011-06-02 11:13:59 +02001964 * JOBCTL_STOP_PENDING could be set if another group stop has
Tejun Heod79fdd62011-03-23 10:37:00 +01001965 * started since being woken up or ptrace wants us to transit
1966 * between TASK_STOPPED and TRACED. Retry group stop.
1967 */
Tejun Heoa8f072c2011-06-02 11:13:59 +02001968 if (current->jobctl & JOBCTL_STOP_PENDING) {
1969 WARN_ON_ONCE(!(current->jobctl & JOBCTL_STOP_SIGMASK));
Tejun Heod79fdd62011-03-23 10:37:00 +01001970 goto retry;
1971 }
1972
Roland McGrathae6d2ed2009-09-23 15:56:53 -07001973 spin_unlock_irq(&current->sighand->siglock);
1974
Roland McGrathae6d2ed2009-09-23 15:56:53 -07001975 tracehook_finish_jctl();
Roland McGrathae6d2ed2009-09-23 15:56:53 -07001976
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 return 1;
1978}
1979
Roland McGrath18c98b62008-04-17 18:44:38 -07001980static int ptrace_signal(int signr, siginfo_t *info,
1981 struct pt_regs *regs, void *cookie)
1982{
Oleg Nesterov5cb11442009-06-17 16:27:30 -07001983 if (!task_ptrace(current))
Roland McGrath18c98b62008-04-17 18:44:38 -07001984 return signr;
1985
1986 ptrace_signal_deliver(regs, cookie);
1987
1988 /* Let the debugger run. */
Tejun Heofe1bc6a2011-03-23 10:37:00 +01001989 ptrace_stop(signr, CLD_TRAPPED, 0, info);
Roland McGrath18c98b62008-04-17 18:44:38 -07001990
1991 /* We're back. Did the debugger cancel the sig? */
1992 signr = current->exit_code;
1993 if (signr == 0)
1994 return signr;
1995
1996 current->exit_code = 0;
1997
Randy Dunlap5aba0852011-04-04 14:59:31 -07001998 /*
1999 * Update the siginfo structure if the signal has
2000 * changed. If the debugger wanted something
2001 * specific in the siginfo structure then it should
2002 * have updated *info via PTRACE_SETSIGINFO.
2003 */
Roland McGrath18c98b62008-04-17 18:44:38 -07002004 if (signr != info->si_signo) {
2005 info->si_signo = signr;
2006 info->si_errno = 0;
2007 info->si_code = SI_USER;
2008 info->si_pid = task_pid_vnr(current->parent);
David Howellsc69e8d92008-11-14 10:39:19 +11002009 info->si_uid = task_uid(current->parent);
Roland McGrath18c98b62008-04-17 18:44:38 -07002010 }
2011
2012 /* If the (new) signal is now blocked, requeue it. */
2013 if (sigismember(&current->blocked, signr)) {
2014 specific_send_sig_info(signr, info, current);
2015 signr = 0;
2016 }
2017
2018 return signr;
2019}
2020
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021int get_signal_to_deliver(siginfo_t *info, struct k_sigaction *return_ka,
2022 struct pt_regs *regs, void *cookie)
2023{
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07002024 struct sighand_struct *sighand = current->sighand;
2025 struct signal_struct *signal = current->signal;
2026 int signr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
Roland McGrath13b1c3d2008-03-03 20:22:05 -08002028relock:
2029 /*
2030 * We'll jump back here after any time we were stopped in TASK_STOPPED.
2031 * While in TASK_STOPPED, we were considered "frozen enough".
2032 * Now that we woke up, it's crucial if we're supposed to be
2033 * frozen that we freeze now before running anything substantial.
2034 */
Rafael J. Wysockifc558a72006-03-23 03:00:05 -08002035 try_to_freeze();
2036
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07002037 spin_lock_irq(&sighand->siglock);
Oleg Nesterov021e1ae2008-04-30 00:53:00 -07002038 /*
2039 * Every stopped thread goes here after wakeup. Check to see if
2040 * we should notify the parent, prepare_signal(SIGCONT) encodes
2041 * the CLD_ si_code into SIGNAL_CLD_MASK bits.
2042 */
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07002043 if (unlikely(signal->flags & SIGNAL_CLD_MASK)) {
Tejun Heo75b95952011-03-23 10:37:01 +01002044 struct task_struct *leader;
Tejun Heoc672af32011-03-23 10:36:59 +01002045 int why;
2046
2047 if (signal->flags & SIGNAL_CLD_CONTINUED)
2048 why = CLD_CONTINUED;
2049 else
2050 why = CLD_STOPPED;
2051
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07002052 signal->flags &= ~SIGNAL_CLD_MASK;
Roland McGrathae6d2ed2009-09-23 15:56:53 -07002053
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07002054 spin_unlock_irq(&sighand->siglock);
Oleg Nesterove4420552008-04-30 00:52:44 -07002055
Tejun Heoceb6bd62011-03-23 10:37:01 +01002056 /*
2057 * Notify the parent that we're continuing. This event is
2058 * always per-process and doesn't make whole lot of sense
2059 * for ptracers, who shouldn't consume the state via
2060 * wait(2) either, but, for backward compatibility, notify
2061 * the ptracer of the group leader too unless it's gonna be
2062 * a duplicate.
2063 */
Tejun Heoedf2ed12011-03-23 10:37:00 +01002064 read_lock(&tasklist_lock);
Tejun Heoceb6bd62011-03-23 10:37:01 +01002065
2066 do_notify_parent_cldstop(current, false, why);
2067
Tejun Heo75b95952011-03-23 10:37:01 +01002068 leader = current->group_leader;
Tejun Heoceb6bd62011-03-23 10:37:01 +01002069 if (task_ptrace(leader) && !real_parent_is_ptracer(leader))
2070 do_notify_parent_cldstop(leader, true, why);
2071
Tejun Heoedf2ed12011-03-23 10:37:00 +01002072 read_unlock(&tasklist_lock);
Tejun Heoceb6bd62011-03-23 10:37:01 +01002073
Oleg Nesterove4420552008-04-30 00:52:44 -07002074 goto relock;
2075 }
2076
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 for (;;) {
2078 struct k_sigaction *ka;
Roland McGrath7bcf6a22008-07-25 19:45:53 -07002079 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002080 * Tracing can induce an artificial signal and choose sigaction.
Roland McGrath7bcf6a22008-07-25 19:45:53 -07002081 * The return value in @signr determines the default action,
2082 * but @info->si_signo is the signal number we will report.
2083 */
2084 signr = tracehook_get_signal(current, regs, info, return_ka);
2085 if (unlikely(signr < 0))
2086 goto relock;
2087 if (unlikely(signr != 0))
2088 ka = return_ka;
2089 else {
Tejun Heoa8f072c2011-06-02 11:13:59 +02002090 if (unlikely(current->jobctl & JOBCTL_STOP_PENDING) &&
2091 do_signal_stop(0))
Oleg Nesterov1be53962009-12-15 16:47:26 -08002092 goto relock;
2093
Roland McGrath7bcf6a22008-07-25 19:45:53 -07002094 signr = dequeue_signal(current, &current->blocked,
2095 info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
Roland McGrath18c98b62008-04-17 18:44:38 -07002097 if (!signr)
Roland McGrath7bcf6a22008-07-25 19:45:53 -07002098 break; /* will return 0 */
2099
2100 if (signr != SIGKILL) {
2101 signr = ptrace_signal(signr, info,
2102 regs, cookie);
2103 if (!signr)
2104 continue;
2105 }
2106
2107 ka = &sighand->action[signr-1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 }
2109
Masami Hiramatsuf9d42572009-11-24 16:56:51 -05002110 /* Trace actually delivered signals. */
2111 trace_signal_deliver(signr, info, ka);
2112
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 if (ka->sa.sa_handler == SIG_IGN) /* Do nothing. */
2114 continue;
2115 if (ka->sa.sa_handler != SIG_DFL) {
2116 /* Run the handler. */
2117 *return_ka = *ka;
2118
2119 if (ka->sa.sa_flags & SA_ONESHOT)
2120 ka->sa.sa_handler = SIG_DFL;
2121
2122 break; /* will return non-zero "signr" value */
2123 }
2124
2125 /*
2126 * Now we are doing the default action for this signal.
2127 */
2128 if (sig_kernel_ignore(signr)) /* Default is nothing. */
2129 continue;
2130
Sukadev Bhattiprolu84d73782006-12-08 02:38:01 -08002131 /*
Sukadev Bhattiprolu0fbc26a2007-10-18 23:40:13 -07002132 * Global init gets no signals it doesn't want.
Sukadev Bhattiprolub3bfa0c2009-04-02 16:58:08 -07002133 * Container-init gets no signals it doesn't want from same
2134 * container.
2135 *
2136 * Note that if global/container-init sees a sig_kernel_only()
2137 * signal here, the signal must have been generated internally
2138 * or must have come from an ancestor namespace. In either
2139 * case, the signal cannot be dropped.
Sukadev Bhattiprolu84d73782006-12-08 02:38:01 -08002140 */
Oleg Nesterovfae5fa42008-04-30 00:53:03 -07002141 if (unlikely(signal->flags & SIGNAL_UNKILLABLE) &&
Sukadev Bhattiprolub3bfa0c2009-04-02 16:58:08 -07002142 !sig_kernel_only(signr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 continue;
2144
2145 if (sig_kernel_stop(signr)) {
2146 /*
2147 * The default action is to stop all threads in
2148 * the thread group. The job control signals
2149 * do nothing in an orphaned pgrp, but SIGSTOP
2150 * always works. Note that siglock needs to be
2151 * dropped during the call to is_orphaned_pgrp()
2152 * because of lock ordering with tasklist_lock.
2153 * This allows an intervening SIGCONT to be posted.
2154 * We need to check for that and bail out if necessary.
2155 */
2156 if (signr != SIGSTOP) {
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07002157 spin_unlock_irq(&sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158
2159 /* signals can be posted during this window */
2160
Eric W. Biederman3e7cd6c2007-02-12 00:52:58 -08002161 if (is_current_pgrp_orphaned())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 goto relock;
2163
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07002164 spin_lock_irq(&sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 }
2166
Roland McGrath7bcf6a22008-07-25 19:45:53 -07002167 if (likely(do_signal_stop(info->si_signo))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 /* It released the siglock. */
2169 goto relock;
2170 }
2171
2172 /*
2173 * We didn't actually stop, due to a race
2174 * with SIGCONT or something like that.
2175 */
2176 continue;
2177 }
2178
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07002179 spin_unlock_irq(&sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180
2181 /*
2182 * Anything else is fatal, maybe with a core dump.
2183 */
2184 current->flags |= PF_SIGNALED;
Oleg Nesterov2dce81b2008-04-30 00:52:58 -07002185
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 if (sig_kernel_coredump(signr)) {
Oleg Nesterov2dce81b2008-04-30 00:52:58 -07002187 if (print_fatal_signals)
Roland McGrath7bcf6a22008-07-25 19:45:53 -07002188 print_fatal_signal(regs, info->si_signo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 /*
2190 * If it was able to dump core, this kills all
2191 * other threads in the group and synchronizes with
2192 * their demise. If we lost the race with another
2193 * thread getting here, it set group_exit_code
2194 * first and our do_group_exit call below will use
2195 * that value and ignore the one we pass it.
2196 */
Roland McGrath7bcf6a22008-07-25 19:45:53 -07002197 do_coredump(info->si_signo, info->si_signo, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 }
2199
2200 /*
2201 * Death signals, no core dump.
2202 */
Roland McGrath7bcf6a22008-07-25 19:45:53 -07002203 do_group_exit(info->si_signo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 /* NOTREACHED */
2205 }
Oleg Nesterovf6b76d42008-04-30 00:52:47 -07002206 spin_unlock_irq(&sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 return signr;
2208}
2209
Oleg Nesterov0edceb7bc2011-04-27 19:17:37 +02002210/*
2211 * It could be that complete_signal() picked us to notify about the
Oleg Nesterovfec99932011-04-27 19:50:21 +02002212 * group-wide signal. Other threads should be notified now to take
2213 * the shared signals in @which since we will not.
Oleg Nesterov0edceb7bc2011-04-27 19:17:37 +02002214 */
Oleg Nesterovf646e222011-04-27 19:18:39 +02002215static void retarget_shared_pending(struct task_struct *tsk, sigset_t *which)
Oleg Nesterov0edceb7bc2011-04-27 19:17:37 +02002216{
Oleg Nesterovf646e222011-04-27 19:18:39 +02002217 sigset_t retarget;
Oleg Nesterov0edceb7bc2011-04-27 19:17:37 +02002218 struct task_struct *t;
2219
Oleg Nesterovf646e222011-04-27 19:18:39 +02002220 sigandsets(&retarget, &tsk->signal->shared_pending.signal, which);
2221 if (sigisemptyset(&retarget))
2222 return;
2223
Oleg Nesterov0edceb7bc2011-04-27 19:17:37 +02002224 t = tsk;
2225 while_each_thread(tsk, t) {
Oleg Nesterovfec99932011-04-27 19:50:21 +02002226 if (t->flags & PF_EXITING)
2227 continue;
2228
2229 if (!has_pending_signals(&retarget, &t->blocked))
2230 continue;
2231 /* Remove the signals this thread can handle. */
2232 sigandsets(&retarget, &retarget, &t->blocked);
2233
2234 if (!signal_pending(t))
2235 signal_wake_up(t, 0);
2236
2237 if (sigisemptyset(&retarget))
2238 break;
Oleg Nesterov0edceb7bc2011-04-27 19:17:37 +02002239 }
2240}
2241
Oleg Nesterovd12619b2008-02-08 04:19:12 -08002242void exit_signals(struct task_struct *tsk)
2243{
2244 int group_stop = 0;
Oleg Nesterovf646e222011-04-27 19:18:39 +02002245 sigset_t unblocked;
Oleg Nesterovd12619b2008-02-08 04:19:12 -08002246
Oleg Nesterov5dee1702008-02-08 04:19:13 -08002247 if (thread_group_empty(tsk) || signal_group_exit(tsk->signal)) {
2248 tsk->flags |= PF_EXITING;
2249 return;
Oleg Nesterovd12619b2008-02-08 04:19:12 -08002250 }
2251
Oleg Nesterov5dee1702008-02-08 04:19:13 -08002252 spin_lock_irq(&tsk->sighand->siglock);
Oleg Nesterovd12619b2008-02-08 04:19:12 -08002253 /*
2254 * From now this task is not visible for group-wide signals,
2255 * see wants_signal(), do_signal_stop().
2256 */
2257 tsk->flags |= PF_EXITING;
Oleg Nesterov5dee1702008-02-08 04:19:13 -08002258 if (!signal_pending(tsk))
2259 goto out;
2260
Oleg Nesterovf646e222011-04-27 19:18:39 +02002261 unblocked = tsk->blocked;
2262 signotset(&unblocked);
2263 retarget_shared_pending(tsk, &unblocked);
Oleg Nesterov5dee1702008-02-08 04:19:13 -08002264
Tejun Heoa8f072c2011-06-02 11:13:59 +02002265 if (unlikely(tsk->jobctl & JOBCTL_STOP_PENDING) &&
Tejun Heoe5c19022011-03-23 10:37:00 +01002266 task_participate_group_stop(tsk))
Tejun Heoedf2ed12011-03-23 10:37:00 +01002267 group_stop = CLD_STOPPED;
Oleg Nesterov5dee1702008-02-08 04:19:13 -08002268out:
Oleg Nesterovd12619b2008-02-08 04:19:12 -08002269 spin_unlock_irq(&tsk->sighand->siglock);
2270
Tejun Heo62bcf9d2011-03-23 10:37:01 +01002271 /*
2272 * If group stop has completed, deliver the notification. This
2273 * should always go to the real parent of the group leader.
2274 */
Roland McGrathae6d2ed2009-09-23 15:56:53 -07002275 if (unlikely(group_stop)) {
Oleg Nesterovd12619b2008-02-08 04:19:12 -08002276 read_lock(&tasklist_lock);
Tejun Heo62bcf9d2011-03-23 10:37:01 +01002277 do_notify_parent_cldstop(tsk, false, group_stop);
Oleg Nesterovd12619b2008-02-08 04:19:12 -08002278 read_unlock(&tasklist_lock);
2279 }
2280}
2281
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282EXPORT_SYMBOL(recalc_sigpending);
2283EXPORT_SYMBOL_GPL(dequeue_signal);
2284EXPORT_SYMBOL(flush_signals);
2285EXPORT_SYMBOL(force_sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286EXPORT_SYMBOL(send_sig);
2287EXPORT_SYMBOL(send_sig_info);
2288EXPORT_SYMBOL(sigprocmask);
2289EXPORT_SYMBOL(block_all_signals);
2290EXPORT_SYMBOL(unblock_all_signals);
2291
2292
2293/*
2294 * System call entry points.
2295 */
2296
Randy Dunlap41c57892011-04-04 15:00:26 -07002297/**
2298 * sys_restart_syscall - restart a system call
2299 */
Heiko Carstens754fe8d2009-01-14 14:14:09 +01002300SYSCALL_DEFINE0(restart_syscall)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301{
2302 struct restart_block *restart = &current_thread_info()->restart_block;
2303 return restart->fn(restart);
2304}
2305
2306long do_no_restart_syscall(struct restart_block *param)
2307{
2308 return -EINTR;
2309}
2310
Oleg Nesterovb1828012011-04-27 21:56:14 +02002311static void __set_task_blocked(struct task_struct *tsk, const sigset_t *newset)
2312{
2313 if (signal_pending(tsk) && !thread_group_empty(tsk)) {
2314 sigset_t newblocked;
2315 /* A set of now blocked but previously unblocked signals. */
Oleg Nesterov702a5072011-04-27 22:01:27 +02002316 sigandnsets(&newblocked, newset, &current->blocked);
Oleg Nesterovb1828012011-04-27 21:56:14 +02002317 retarget_shared_pending(tsk, &newblocked);
2318 }
2319 tsk->blocked = *newset;
2320 recalc_sigpending();
2321}
2322
Oleg Nesterove6fa16a2011-04-27 20:59:41 +02002323/**
2324 * set_current_blocked - change current->blocked mask
2325 * @newset: new mask
2326 *
2327 * It is wrong to change ->blocked directly, this helper should be used
2328 * to ensure the process can't miss a shared signal we are going to block.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 */
Oleg Nesterove6fa16a2011-04-27 20:59:41 +02002330void set_current_blocked(const sigset_t *newset)
2331{
2332 struct task_struct *tsk = current;
2333
2334 spin_lock_irq(&tsk->sighand->siglock);
Oleg Nesterovb1828012011-04-27 21:56:14 +02002335 __set_task_blocked(tsk, newset);
Oleg Nesterove6fa16a2011-04-27 20:59:41 +02002336 spin_unlock_irq(&tsk->sighand->siglock);
2337}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338
2339/*
2340 * This is also useful for kernel threads that want to temporarily
2341 * (or permanently) block certain signals.
2342 *
2343 * NOTE! Unlike the user-mode sys_sigprocmask(), the kernel
2344 * interface happily blocks "unblockable" signals like SIGKILL
2345 * and friends.
2346 */
2347int sigprocmask(int how, sigset_t *set, sigset_t *oldset)
2348{
Oleg Nesterov73ef4ae2011-04-27 19:54:20 +02002349 struct task_struct *tsk = current;
2350 sigset_t newset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351
Oleg Nesterov73ef4ae2011-04-27 19:54:20 +02002352 /* Lockless, only current can change ->blocked, never from irq */
Oleg Nesterova26fd332006-03-23 03:00:49 -08002353 if (oldset)
Oleg Nesterov73ef4ae2011-04-27 19:54:20 +02002354 *oldset = tsk->blocked;
Oleg Nesterova26fd332006-03-23 03:00:49 -08002355
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 switch (how) {
2357 case SIG_BLOCK:
Oleg Nesterov73ef4ae2011-04-27 19:54:20 +02002358 sigorsets(&newset, &tsk->blocked, set);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 break;
2360 case SIG_UNBLOCK:
Oleg Nesterov702a5072011-04-27 22:01:27 +02002361 sigandnsets(&newset, &tsk->blocked, set);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 break;
2363 case SIG_SETMASK:
Oleg Nesterov73ef4ae2011-04-27 19:54:20 +02002364 newset = *set;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 break;
2366 default:
Oleg Nesterov73ef4ae2011-04-27 19:54:20 +02002367 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 }
Oleg Nesterova26fd332006-03-23 03:00:49 -08002369
Oleg Nesterove6fa16a2011-04-27 20:59:41 +02002370 set_current_blocked(&newset);
Oleg Nesterov73ef4ae2011-04-27 19:54:20 +02002371 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372}
2373
Randy Dunlap41c57892011-04-04 15:00:26 -07002374/**
2375 * sys_rt_sigprocmask - change the list of currently blocked signals
2376 * @how: whether to add, remove, or set signals
2377 * @set: stores pending signals
2378 * @oset: previous value of signal mask if non-null
2379 * @sigsetsize: size of sigset_t type
2380 */
Oleg Nesterovbb7efee2011-04-27 21:18:10 +02002381SYSCALL_DEFINE4(rt_sigprocmask, int, how, sigset_t __user *, nset,
Heiko Carstens17da2bd2009-01-14 14:14:10 +01002382 sigset_t __user *, oset, size_t, sigsetsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 sigset_t old_set, new_set;
Oleg Nesterovbb7efee2011-04-27 21:18:10 +02002385 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386
2387 /* XXX: Don't preclude handling different sized sigset_t's. */
2388 if (sigsetsize != sizeof(sigset_t))
Oleg Nesterovbb7efee2011-04-27 21:18:10 +02002389 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390
Oleg Nesterovbb7efee2011-04-27 21:18:10 +02002391 old_set = current->blocked;
2392
2393 if (nset) {
2394 if (copy_from_user(&new_set, nset, sizeof(sigset_t)))
2395 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 sigdelsetmask(&new_set, sigmask(SIGKILL)|sigmask(SIGSTOP));
2397
Oleg Nesterovbb7efee2011-04-27 21:18:10 +02002398 error = sigprocmask(how, &new_set, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 if (error)
Oleg Nesterovbb7efee2011-04-27 21:18:10 +02002400 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 }
Oleg Nesterovbb7efee2011-04-27 21:18:10 +02002402
2403 if (oset) {
2404 if (copy_to_user(oset, &old_set, sizeof(sigset_t)))
2405 return -EFAULT;
2406 }
2407
2408 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409}
2410
2411long do_sigpending(void __user *set, unsigned long sigsetsize)
2412{
2413 long error = -EINVAL;
2414 sigset_t pending;
2415
2416 if (sigsetsize > sizeof(sigset_t))
2417 goto out;
2418
2419 spin_lock_irq(&current->sighand->siglock);
2420 sigorsets(&pending, &current->pending.signal,
2421 &current->signal->shared_pending.signal);
2422 spin_unlock_irq(&current->sighand->siglock);
2423
2424 /* Outside the lock because only this thread touches it. */
2425 sigandsets(&pending, &current->blocked, &pending);
2426
2427 error = -EFAULT;
2428 if (!copy_to_user(set, &pending, sigsetsize))
2429 error = 0;
2430
2431out:
2432 return error;
Randy Dunlap5aba0852011-04-04 14:59:31 -07002433}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434
Randy Dunlap41c57892011-04-04 15:00:26 -07002435/**
2436 * sys_rt_sigpending - examine a pending signal that has been raised
2437 * while blocked
2438 * @set: stores pending signals
2439 * @sigsetsize: size of sigset_t type or larger
2440 */
Heiko Carstens17da2bd2009-01-14 14:14:10 +01002441SYSCALL_DEFINE2(rt_sigpending, sigset_t __user *, set, size_t, sigsetsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442{
2443 return do_sigpending(set, sigsetsize);
2444}
2445
2446#ifndef HAVE_ARCH_COPY_SIGINFO_TO_USER
2447
2448int copy_siginfo_to_user(siginfo_t __user *to, siginfo_t *from)
2449{
2450 int err;
2451
2452 if (!access_ok (VERIFY_WRITE, to, sizeof(siginfo_t)))
2453 return -EFAULT;
2454 if (from->si_code < 0)
2455 return __copy_to_user(to, from, sizeof(siginfo_t))
2456 ? -EFAULT : 0;
2457 /*
2458 * If you change siginfo_t structure, please be sure
2459 * this code is fixed accordingly.
Davide Libenzifba2afa2007-05-10 22:23:13 -07002460 * Please remember to update the signalfd_copyinfo() function
2461 * inside fs/signalfd.c too, in case siginfo_t changes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 * It should never copy any pad contained in the structure
2463 * to avoid security leaks, but must copy the generic
2464 * 3 ints plus the relevant union member.
2465 */
2466 err = __put_user(from->si_signo, &to->si_signo);
2467 err |= __put_user(from->si_errno, &to->si_errno);
2468 err |= __put_user((short)from->si_code, &to->si_code);
2469 switch (from->si_code & __SI_MASK) {
2470 case __SI_KILL:
2471 err |= __put_user(from->si_pid, &to->si_pid);
2472 err |= __put_user(from->si_uid, &to->si_uid);
2473 break;
2474 case __SI_TIMER:
2475 err |= __put_user(from->si_tid, &to->si_tid);
2476 err |= __put_user(from->si_overrun, &to->si_overrun);
2477 err |= __put_user(from->si_ptr, &to->si_ptr);
2478 break;
2479 case __SI_POLL:
2480 err |= __put_user(from->si_band, &to->si_band);
2481 err |= __put_user(from->si_fd, &to->si_fd);
2482 break;
2483 case __SI_FAULT:
2484 err |= __put_user(from->si_addr, &to->si_addr);
2485#ifdef __ARCH_SI_TRAPNO
2486 err |= __put_user(from->si_trapno, &to->si_trapno);
2487#endif
Andi Kleena337fda2010-09-27 20:32:19 +02002488#ifdef BUS_MCEERR_AO
Randy Dunlap5aba0852011-04-04 14:59:31 -07002489 /*
Andi Kleena337fda2010-09-27 20:32:19 +02002490 * Other callers might not initialize the si_lsb field,
Randy Dunlap5aba0852011-04-04 14:59:31 -07002491 * so check explicitly for the right codes here.
Andi Kleena337fda2010-09-27 20:32:19 +02002492 */
2493 if (from->si_code == BUS_MCEERR_AR || from->si_code == BUS_MCEERR_AO)
2494 err |= __put_user(from->si_addr_lsb, &to->si_addr_lsb);
2495#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 break;
2497 case __SI_CHLD:
2498 err |= __put_user(from->si_pid, &to->si_pid);
2499 err |= __put_user(from->si_uid, &to->si_uid);
2500 err |= __put_user(from->si_status, &to->si_status);
2501 err |= __put_user(from->si_utime, &to->si_utime);
2502 err |= __put_user(from->si_stime, &to->si_stime);
2503 break;
2504 case __SI_RT: /* This is not generated by the kernel as of now. */
2505 case __SI_MESGQ: /* But this is */
2506 err |= __put_user(from->si_pid, &to->si_pid);
2507 err |= __put_user(from->si_uid, &to->si_uid);
2508 err |= __put_user(from->si_ptr, &to->si_ptr);
2509 break;
2510 default: /* this is just in case for now ... */
2511 err |= __put_user(from->si_pid, &to->si_pid);
2512 err |= __put_user(from->si_uid, &to->si_uid);
2513 break;
2514 }
2515 return err;
2516}
2517
2518#endif
2519
Randy Dunlap41c57892011-04-04 15:00:26 -07002520/**
Oleg Nesterov943df142011-04-27 21:44:14 +02002521 * do_sigtimedwait - wait for queued signals specified in @which
2522 * @which: queued signals to wait for
2523 * @info: if non-null, the signal's siginfo is returned here
2524 * @ts: upper bound on process time suspension
2525 */
2526int do_sigtimedwait(const sigset_t *which, siginfo_t *info,
2527 const struct timespec *ts)
2528{
2529 struct task_struct *tsk = current;
2530 long timeout = MAX_SCHEDULE_TIMEOUT;
2531 sigset_t mask = *which;
2532 int sig;
2533
2534 if (ts) {
2535 if (!timespec_valid(ts))
2536 return -EINVAL;
2537 timeout = timespec_to_jiffies(ts);
2538 /*
2539 * We can be close to the next tick, add another one
2540 * to ensure we will wait at least the time asked for.
2541 */
2542 if (ts->tv_sec || ts->tv_nsec)
2543 timeout++;
2544 }
2545
2546 /*
2547 * Invert the set of allowed signals to get those we want to block.
2548 */
2549 sigdelsetmask(&mask, sigmask(SIGKILL) | sigmask(SIGSTOP));
2550 signotset(&mask);
2551
2552 spin_lock_irq(&tsk->sighand->siglock);
2553 sig = dequeue_signal(tsk, &mask, info);
2554 if (!sig && timeout) {
2555 /*
2556 * None ready, temporarily unblock those we're interested
2557 * while we are sleeping in so that we'll be awakened when
Oleg Nesterovb1828012011-04-27 21:56:14 +02002558 * they arrive. Unblocking is always fine, we can avoid
2559 * set_current_blocked().
Oleg Nesterov943df142011-04-27 21:44:14 +02002560 */
2561 tsk->real_blocked = tsk->blocked;
2562 sigandsets(&tsk->blocked, &tsk->blocked, &mask);
2563 recalc_sigpending();
2564 spin_unlock_irq(&tsk->sighand->siglock);
2565
2566 timeout = schedule_timeout_interruptible(timeout);
2567
2568 spin_lock_irq(&tsk->sighand->siglock);
Oleg Nesterovb1828012011-04-27 21:56:14 +02002569 __set_task_blocked(tsk, &tsk->real_blocked);
Oleg Nesterov943df142011-04-27 21:44:14 +02002570 siginitset(&tsk->real_blocked, 0);
Oleg Nesterovb1828012011-04-27 21:56:14 +02002571 sig = dequeue_signal(tsk, &mask, info);
Oleg Nesterov943df142011-04-27 21:44:14 +02002572 }
2573 spin_unlock_irq(&tsk->sighand->siglock);
2574
2575 if (sig)
2576 return sig;
2577 return timeout ? -EINTR : -EAGAIN;
2578}
2579
2580/**
Randy Dunlap41c57892011-04-04 15:00:26 -07002581 * sys_rt_sigtimedwait - synchronously wait for queued signals specified
2582 * in @uthese
2583 * @uthese: queued signals to wait for
2584 * @uinfo: if non-null, the signal's siginfo is returned here
2585 * @uts: upper bound on process time suspension
2586 * @sigsetsize: size of sigset_t type
2587 */
Heiko Carstens17da2bd2009-01-14 14:14:10 +01002588SYSCALL_DEFINE4(rt_sigtimedwait, const sigset_t __user *, uthese,
2589 siginfo_t __user *, uinfo, const struct timespec __user *, uts,
2590 size_t, sigsetsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 sigset_t these;
2593 struct timespec ts;
2594 siginfo_t info;
Oleg Nesterov943df142011-04-27 21:44:14 +02002595 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596
2597 /* XXX: Don't preclude handling different sized sigset_t's. */
2598 if (sigsetsize != sizeof(sigset_t))
2599 return -EINVAL;
2600
2601 if (copy_from_user(&these, uthese, sizeof(these)))
2602 return -EFAULT;
Randy Dunlap5aba0852011-04-04 14:59:31 -07002603
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 if (uts) {
2605 if (copy_from_user(&ts, uts, sizeof(ts)))
2606 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 }
2608
Oleg Nesterov943df142011-04-27 21:44:14 +02002609 ret = do_sigtimedwait(&these, &info, uts ? &ts : NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610
Oleg Nesterov943df142011-04-27 21:44:14 +02002611 if (ret > 0 && uinfo) {
2612 if (copy_siginfo_to_user(uinfo, &info))
2613 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 }
2615
2616 return ret;
2617}
2618
Randy Dunlap41c57892011-04-04 15:00:26 -07002619/**
2620 * sys_kill - send a signal to a process
2621 * @pid: the PID of the process
2622 * @sig: signal to be sent
2623 */
Heiko Carstens17da2bd2009-01-14 14:14:10 +01002624SYSCALL_DEFINE2(kill, pid_t, pid, int, sig)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625{
2626 struct siginfo info;
2627
2628 info.si_signo = sig;
2629 info.si_errno = 0;
2630 info.si_code = SI_USER;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002631 info.si_pid = task_tgid_vnr(current);
David Howells76aac0e2008-11-14 10:39:12 +11002632 info.si_uid = current_uid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633
2634 return kill_something_info(sig, &info, pid);
2635}
2636
Thomas Gleixner30b4ae82009-04-04 21:01:01 +00002637static int
2638do_send_specific(pid_t tgid, pid_t pid, int sig, struct siginfo *info)
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002639{
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002640 struct task_struct *p;
Thomas Gleixner30b4ae82009-04-04 21:01:01 +00002641 int error = -ESRCH;
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002642
Oleg Nesterov3547ff32008-04-30 00:52:51 -07002643 rcu_read_lock();
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07002644 p = find_task_by_vpid(pid);
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002645 if (p && (tgid <= 0 || task_tgid_vnr(p) == tgid)) {
Thomas Gleixner30b4ae82009-04-04 21:01:01 +00002646 error = check_kill_permission(sig, info, p);
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002647 /*
2648 * The null signal is a permissions and process existence
2649 * probe. No signal is actually delivered.
2650 */
Oleg Nesterov4a30deb2009-09-23 15:57:00 -07002651 if (!error && sig) {
2652 error = do_send_sig_info(sig, info, p, false);
2653 /*
2654 * If lock_task_sighand() failed we pretend the task
2655 * dies after receiving the signal. The window is tiny,
2656 * and the signal is private anyway.
2657 */
2658 if (unlikely(error == -ESRCH))
2659 error = 0;
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002660 }
2661 }
Oleg Nesterov3547ff32008-04-30 00:52:51 -07002662 rcu_read_unlock();
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002663
2664 return error;
2665}
2666
Thomas Gleixner30b4ae82009-04-04 21:01:01 +00002667static int do_tkill(pid_t tgid, pid_t pid, int sig)
2668{
2669 struct siginfo info;
2670
2671 info.si_signo = sig;
2672 info.si_errno = 0;
2673 info.si_code = SI_TKILL;
2674 info.si_pid = task_tgid_vnr(current);
2675 info.si_uid = current_uid();
2676
2677 return do_send_specific(tgid, pid, sig, &info);
2678}
2679
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680/**
2681 * sys_tgkill - send signal to one specific thread
2682 * @tgid: the thread group ID of the thread
2683 * @pid: the PID of the thread
2684 * @sig: signal to be sent
2685 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08002686 * This syscall also checks the @tgid and returns -ESRCH even if the PID
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 * exists but it's not belonging to the target process anymore. This
2688 * method solves the problem of threads exiting and PIDs getting reused.
2689 */
Heiko Carstensa5f8fa92009-01-14 14:14:11 +01002690SYSCALL_DEFINE3(tgkill, pid_t, tgid, pid_t, pid, int, sig)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 /* This is only valid for single tasks */
2693 if (pid <= 0 || tgid <= 0)
2694 return -EINVAL;
2695
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002696 return do_tkill(tgid, pid, sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697}
2698
Randy Dunlap41c57892011-04-04 15:00:26 -07002699/**
2700 * sys_tkill - send signal to one specific task
2701 * @pid: the PID of the task
2702 * @sig: signal to be sent
2703 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 * Send a signal to only one task, even if it's a CLONE_THREAD task.
2705 */
Heiko Carstensa5f8fa92009-01-14 14:14:11 +01002706SYSCALL_DEFINE2(tkill, pid_t, pid, int, sig)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 /* This is only valid for single tasks */
2709 if (pid <= 0)
2710 return -EINVAL;
2711
Vadim Lobanov6dd69f12005-10-30 15:02:18 -08002712 return do_tkill(0, pid, sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713}
2714
Randy Dunlap41c57892011-04-04 15:00:26 -07002715/**
2716 * sys_rt_sigqueueinfo - send signal information to a signal
2717 * @pid: the PID of the thread
2718 * @sig: signal to be sent
2719 * @uinfo: signal info to be sent
2720 */
Heiko Carstensa5f8fa92009-01-14 14:14:11 +01002721SYSCALL_DEFINE3(rt_sigqueueinfo, pid_t, pid, int, sig,
2722 siginfo_t __user *, uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723{
2724 siginfo_t info;
2725
2726 if (copy_from_user(&info, uinfo, sizeof(siginfo_t)))
2727 return -EFAULT;
2728
2729 /* Not even root can pretend to send signals from the kernel.
Julien Tinnesda485242011-03-18 15:05:21 -07002730 * Nor can they impersonate a kill()/tgkill(), which adds source info.
2731 */
Roland Dreier243b4222011-03-28 14:13:35 -07002732 if (info.si_code >= 0 || info.si_code == SI_TKILL) {
Julien Tinnesda485242011-03-18 15:05:21 -07002733 /* We used to allow any < 0 si_code */
2734 WARN_ON_ONCE(info.si_code < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 return -EPERM;
Julien Tinnesda485242011-03-18 15:05:21 -07002736 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 info.si_signo = sig;
2738
2739 /* POSIX.1b doesn't mention process groups. */
2740 return kill_proc_info(sig, &info, pid);
2741}
2742
Thomas Gleixner62ab4502009-04-04 21:01:06 +00002743long do_rt_tgsigqueueinfo(pid_t tgid, pid_t pid, int sig, siginfo_t *info)
2744{
2745 /* This is only valid for single tasks */
2746 if (pid <= 0 || tgid <= 0)
2747 return -EINVAL;
2748
2749 /* Not even root can pretend to send signals from the kernel.
Julien Tinnesda485242011-03-18 15:05:21 -07002750 * Nor can they impersonate a kill()/tgkill(), which adds source info.
2751 */
Roland Dreier243b4222011-03-28 14:13:35 -07002752 if (info->si_code >= 0 || info->si_code == SI_TKILL) {
Julien Tinnesda485242011-03-18 15:05:21 -07002753 /* We used to allow any < 0 si_code */
2754 WARN_ON_ONCE(info->si_code < 0);
Thomas Gleixner62ab4502009-04-04 21:01:06 +00002755 return -EPERM;
Julien Tinnesda485242011-03-18 15:05:21 -07002756 }
Thomas Gleixner62ab4502009-04-04 21:01:06 +00002757 info->si_signo = sig;
2758
2759 return do_send_specific(tgid, pid, sig, info);
2760}
2761
2762SYSCALL_DEFINE4(rt_tgsigqueueinfo, pid_t, tgid, pid_t, pid, int, sig,
2763 siginfo_t __user *, uinfo)
2764{
2765 siginfo_t info;
2766
2767 if (copy_from_user(&info, uinfo, sizeof(siginfo_t)))
2768 return -EFAULT;
2769
2770 return do_rt_tgsigqueueinfo(tgid, pid, sig, &info);
2771}
2772
Oleg Nesterov88531f72006-03-28 16:11:24 -08002773int do_sigaction(int sig, struct k_sigaction *act, struct k_sigaction *oact)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774{
Pavel Emelyanov93585ee2008-04-30 00:52:39 -07002775 struct task_struct *t = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 struct k_sigaction *k;
George Anzinger71fabd52006-01-08 01:02:48 -08002777 sigset_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778
Jesper Juhl7ed20e12005-05-01 08:59:14 -07002779 if (!valid_signal(sig) || sig < 1 || (act && sig_kernel_only(sig)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 return -EINVAL;
2781
Pavel Emelyanov93585ee2008-04-30 00:52:39 -07002782 k = &t->sighand->action[sig-1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783
2784 spin_lock_irq(&current->sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 if (oact)
2786 *oact = *k;
2787
2788 if (act) {
Oleg Nesterov9ac95f22006-02-09 22:41:50 +03002789 sigdelsetmask(&act->sa.sa_mask,
2790 sigmask(SIGKILL) | sigmask(SIGSTOP));
Oleg Nesterov88531f72006-03-28 16:11:24 -08002791 *k = *act;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 /*
2793 * POSIX 3.3.1.3:
2794 * "Setting a signal action to SIG_IGN for a signal that is
2795 * pending shall cause the pending signal to be discarded,
2796 * whether or not it is blocked."
2797 *
2798 * "Setting a signal action to SIG_DFL for a signal that is
2799 * pending and whose default action is to ignore the signal
2800 * (for example, SIGCHLD), shall cause the pending signal to
2801 * be discarded, whether or not it is blocked"
2802 */
Roland McGrath35de2542008-07-25 19:45:51 -07002803 if (sig_handler_ignored(sig_handler(t, sig), sig)) {
George Anzinger71fabd52006-01-08 01:02:48 -08002804 sigemptyset(&mask);
2805 sigaddset(&mask, sig);
2806 rm_from_queue_full(&mask, &t->signal->shared_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 do {
George Anzinger71fabd52006-01-08 01:02:48 -08002808 rm_from_queue_full(&mask, &t->pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 t = next_thread(t);
2810 } while (t != current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 }
2813
2814 spin_unlock_irq(&current->sighand->siglock);
2815 return 0;
2816}
2817
2818int
2819do_sigaltstack (const stack_t __user *uss, stack_t __user *uoss, unsigned long sp)
2820{
2821 stack_t oss;
2822 int error;
2823
Linus Torvalds0083fc22009-08-01 10:34:56 -07002824 oss.ss_sp = (void __user *) current->sas_ss_sp;
2825 oss.ss_size = current->sas_ss_size;
2826 oss.ss_flags = sas_ss_flags(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827
2828 if (uss) {
2829 void __user *ss_sp;
2830 size_t ss_size;
2831 int ss_flags;
2832
2833 error = -EFAULT;
Linus Torvalds0dd84862009-08-01 11:18:56 -07002834 if (!access_ok(VERIFY_READ, uss, sizeof(*uss)))
2835 goto out;
2836 error = __get_user(ss_sp, &uss->ss_sp) |
2837 __get_user(ss_flags, &uss->ss_flags) |
2838 __get_user(ss_size, &uss->ss_size);
2839 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 goto out;
2841
2842 error = -EPERM;
2843 if (on_sig_stack(sp))
2844 goto out;
2845
2846 error = -EINVAL;
2847 /*
Randy Dunlap5aba0852011-04-04 14:59:31 -07002848 * Note - this code used to test ss_flags incorrectly:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 * old code may have been written using ss_flags==0
2850 * to mean ss_flags==SS_ONSTACK (as this was the only
2851 * way that worked) - this fix preserves that older
Randy Dunlap5aba0852011-04-04 14:59:31 -07002852 * mechanism.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 */
2854 if (ss_flags != SS_DISABLE && ss_flags != SS_ONSTACK && ss_flags != 0)
2855 goto out;
2856
2857 if (ss_flags == SS_DISABLE) {
2858 ss_size = 0;
2859 ss_sp = NULL;
2860 } else {
2861 error = -ENOMEM;
2862 if (ss_size < MINSIGSTKSZ)
2863 goto out;
2864 }
2865
2866 current->sas_ss_sp = (unsigned long) ss_sp;
2867 current->sas_ss_size = ss_size;
2868 }
2869
Linus Torvalds0083fc22009-08-01 10:34:56 -07002870 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 if (uoss) {
2872 error = -EFAULT;
Linus Torvalds0083fc22009-08-01 10:34:56 -07002873 if (!access_ok(VERIFY_WRITE, uoss, sizeof(*uoss)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 goto out;
Linus Torvalds0083fc22009-08-01 10:34:56 -07002875 error = __put_user(oss.ss_sp, &uoss->ss_sp) |
2876 __put_user(oss.ss_size, &uoss->ss_size) |
2877 __put_user(oss.ss_flags, &uoss->ss_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 }
2879
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880out:
2881 return error;
2882}
2883
2884#ifdef __ARCH_WANT_SYS_SIGPENDING
2885
Randy Dunlap41c57892011-04-04 15:00:26 -07002886/**
2887 * sys_sigpending - examine pending signals
2888 * @set: where mask of pending signal is returned
2889 */
Heiko Carstensb290ebe2009-01-14 14:14:06 +01002890SYSCALL_DEFINE1(sigpending, old_sigset_t __user *, set)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891{
2892 return do_sigpending(set, sizeof(*set));
2893}
2894
2895#endif
2896
2897#ifdef __ARCH_WANT_SYS_SIGPROCMASK
Randy Dunlap41c57892011-04-04 15:00:26 -07002898/**
2899 * sys_sigprocmask - examine and change blocked signals
2900 * @how: whether to add, remove, or set signals
Oleg Nesterovb013c392011-04-28 11:36:20 +02002901 * @nset: signals to add or remove (if non-null)
Randy Dunlap41c57892011-04-04 15:00:26 -07002902 * @oset: previous value of signal mask if non-null
2903 *
Randy Dunlap5aba0852011-04-04 14:59:31 -07002904 * Some platforms have their own version with special arguments;
2905 * others support only sys_rt_sigprocmask.
2906 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907
Oleg Nesterovb013c392011-04-28 11:36:20 +02002908SYSCALL_DEFINE3(sigprocmask, int, how, old_sigset_t __user *, nset,
Heiko Carstensb290ebe2009-01-14 14:14:06 +01002909 old_sigset_t __user *, oset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 old_sigset_t old_set, new_set;
Oleg Nesterov2e4f7c72011-05-09 13:48:56 +02002912 sigset_t new_blocked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913
Oleg Nesterovb013c392011-04-28 11:36:20 +02002914 old_set = current->blocked.sig[0];
2915
2916 if (nset) {
2917 if (copy_from_user(&new_set, nset, sizeof(*nset)))
2918 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 new_set &= ~(sigmask(SIGKILL) | sigmask(SIGSTOP));
2920
Oleg Nesterov2e4f7c72011-05-09 13:48:56 +02002921 new_blocked = current->blocked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 switch (how) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 case SIG_BLOCK:
Oleg Nesterov2e4f7c72011-05-09 13:48:56 +02002925 sigaddsetmask(&new_blocked, new_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 break;
2927 case SIG_UNBLOCK:
Oleg Nesterov2e4f7c72011-05-09 13:48:56 +02002928 sigdelsetmask(&new_blocked, new_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 break;
2930 case SIG_SETMASK:
Oleg Nesterov2e4f7c72011-05-09 13:48:56 +02002931 new_blocked.sig[0] = new_set;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 break;
Oleg Nesterov2e4f7c72011-05-09 13:48:56 +02002933 default:
2934 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 }
2936
Oleg Nesterov2e4f7c72011-05-09 13:48:56 +02002937 set_current_blocked(&new_blocked);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 }
Oleg Nesterovb013c392011-04-28 11:36:20 +02002939
2940 if (oset) {
2941 if (copy_to_user(oset, &old_set, sizeof(*oset)))
2942 return -EFAULT;
2943 }
2944
2945 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946}
2947#endif /* __ARCH_WANT_SYS_SIGPROCMASK */
2948
2949#ifdef __ARCH_WANT_SYS_RT_SIGACTION
Randy Dunlap41c57892011-04-04 15:00:26 -07002950/**
2951 * sys_rt_sigaction - alter an action taken by a process
2952 * @sig: signal to be sent
Randy Dunlapf9fa0bc2011-04-08 10:53:46 -07002953 * @act: new sigaction
2954 * @oact: used to save the previous sigaction
Randy Dunlap41c57892011-04-04 15:00:26 -07002955 * @sigsetsize: size of sigset_t type
2956 */
Heiko Carstensd4e82042009-01-14 14:14:34 +01002957SYSCALL_DEFINE4(rt_sigaction, int, sig,
2958 const struct sigaction __user *, act,
2959 struct sigaction __user *, oact,
2960 size_t, sigsetsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961{
2962 struct k_sigaction new_sa, old_sa;
2963 int ret = -EINVAL;
2964
2965 /* XXX: Don't preclude handling different sized sigset_t's. */
2966 if (sigsetsize != sizeof(sigset_t))
2967 goto out;
2968
2969 if (act) {
2970 if (copy_from_user(&new_sa.sa, act, sizeof(new_sa.sa)))
2971 return -EFAULT;
2972 }
2973
2974 ret = do_sigaction(sig, act ? &new_sa : NULL, oact ? &old_sa : NULL);
2975
2976 if (!ret && oact) {
2977 if (copy_to_user(oact, &old_sa.sa, sizeof(old_sa.sa)))
2978 return -EFAULT;
2979 }
2980out:
2981 return ret;
2982}
2983#endif /* __ARCH_WANT_SYS_RT_SIGACTION */
2984
2985#ifdef __ARCH_WANT_SYS_SGETMASK
2986
2987/*
2988 * For backwards compatibility. Functionality superseded by sigprocmask.
2989 */
Heiko Carstensa5f8fa92009-01-14 14:14:11 +01002990SYSCALL_DEFINE0(sgetmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991{
2992 /* SMP safe */
2993 return current->blocked.sig[0];
2994}
2995
Heiko Carstensa5f8fa92009-01-14 14:14:11 +01002996SYSCALL_DEFINE1(ssetmask, int, newmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997{
2998 int old;
2999
3000 spin_lock_irq(&current->sighand->siglock);
3001 old = current->blocked.sig[0];
3002
3003 siginitset(&current->blocked, newmask & ~(sigmask(SIGKILL)|
3004 sigmask(SIGSTOP)));
3005 recalc_sigpending();
3006 spin_unlock_irq(&current->sighand->siglock);
3007
3008 return old;
3009}
3010#endif /* __ARCH_WANT_SGETMASK */
3011
3012#ifdef __ARCH_WANT_SYS_SIGNAL
3013/*
3014 * For backwards compatibility. Functionality superseded by sigaction.
3015 */
Heiko Carstensa5f8fa92009-01-14 14:14:11 +01003016SYSCALL_DEFINE2(signal, int, sig, __sighandler_t, handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017{
3018 struct k_sigaction new_sa, old_sa;
3019 int ret;
3020
3021 new_sa.sa.sa_handler = handler;
3022 new_sa.sa.sa_flags = SA_ONESHOT | SA_NOMASK;
Oleg Nesterovc70d3d702006-02-09 22:41:41 +03003023 sigemptyset(&new_sa.sa.sa_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024
3025 ret = do_sigaction(sig, &new_sa, &old_sa);
3026
3027 return ret ? ret : (unsigned long)old_sa.sa.sa_handler;
3028}
3029#endif /* __ARCH_WANT_SYS_SIGNAL */
3030
3031#ifdef __ARCH_WANT_SYS_PAUSE
3032
Heiko Carstensa5f8fa92009-01-14 14:14:11 +01003033SYSCALL_DEFINE0(pause)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034{
Oleg Nesterovd92fcf02011-05-25 19:22:27 +02003035 while (!signal_pending(current)) {
3036 current->state = TASK_INTERRUPTIBLE;
3037 schedule();
3038 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039 return -ERESTARTNOHAND;
3040}
3041
3042#endif
3043
David Woodhouse150256d2006-01-18 17:43:57 -08003044#ifdef __ARCH_WANT_SYS_RT_SIGSUSPEND
Randy Dunlap41c57892011-04-04 15:00:26 -07003045/**
3046 * sys_rt_sigsuspend - replace the signal mask for a value with the
3047 * @unewset value until a signal is received
3048 * @unewset: new signal mask value
3049 * @sigsetsize: size of sigset_t type
3050 */
Heiko Carstensd4e82042009-01-14 14:14:34 +01003051SYSCALL_DEFINE2(rt_sigsuspend, sigset_t __user *, unewset, size_t, sigsetsize)
David Woodhouse150256d2006-01-18 17:43:57 -08003052{
3053 sigset_t newset;
3054
3055 /* XXX: Don't preclude handling different sized sigset_t's. */
3056 if (sigsetsize != sizeof(sigset_t))
3057 return -EINVAL;
3058
3059 if (copy_from_user(&newset, unewset, sizeof(newset)))
3060 return -EFAULT;
3061 sigdelsetmask(&newset, sigmask(SIGKILL)|sigmask(SIGSTOP));
3062
3063 spin_lock_irq(&current->sighand->siglock);
3064 current->saved_sigmask = current->blocked;
3065 current->blocked = newset;
3066 recalc_sigpending();
3067 spin_unlock_irq(&current->sighand->siglock);
3068
3069 current->state = TASK_INTERRUPTIBLE;
3070 schedule();
Roland McGrath4e4c22c2008-04-30 00:53:06 -07003071 set_restore_sigmask();
David Woodhouse150256d2006-01-18 17:43:57 -08003072 return -ERESTARTNOHAND;
3073}
3074#endif /* __ARCH_WANT_SYS_RT_SIGSUSPEND */
3075
David Howellsf269fdd2006-09-27 01:50:23 -07003076__attribute__((weak)) const char *arch_vma_name(struct vm_area_struct *vma)
3077{
3078 return NULL;
3079}
3080
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081void __init signals_init(void)
3082{
Christoph Lameter0a31bd52007-05-06 14:49:57 -07003083 sigqueue_cachep = KMEM_CACHE(sigqueue, SLAB_PANIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084}
Jason Wessel67fc4e02010-05-20 21:04:21 -05003085
3086#ifdef CONFIG_KGDB_KDB
3087#include <linux/kdb.h>
3088/*
3089 * kdb_send_sig_info - Allows kdb to send signals without exposing
3090 * signal internals. This function checks if the required locks are
3091 * available before calling the main signal code, to avoid kdb
3092 * deadlocks.
3093 */
3094void
3095kdb_send_sig_info(struct task_struct *t, struct siginfo *info)
3096{
3097 static struct task_struct *kdb_prev_t;
3098 int sig, new_t;
3099 if (!spin_trylock(&t->sighand->siglock)) {
3100 kdb_printf("Can't do kill command now.\n"
3101 "The sigmask lock is held somewhere else in "
3102 "kernel, try again later\n");
3103 return;
3104 }
3105 spin_unlock(&t->sighand->siglock);
3106 new_t = kdb_prev_t != t;
3107 kdb_prev_t = t;
3108 if (t->state != TASK_RUNNING && new_t) {
3109 kdb_printf("Process is not RUNNING, sending a signal from "
3110 "kdb risks deadlock\n"
3111 "on the run queue locks. "
3112 "The signal has _not_ been sent.\n"
3113 "Reissue the kill command if you want to risk "
3114 "the deadlock.\n");
3115 return;
3116 }
3117 sig = info->si_signo;
3118 if (send_sig_info(sig, info, t))
3119 kdb_printf("Fail to deliver Signal %d to process %d.\n",
3120 sig, t->pid);
3121 else
3122 kdb_printf("Signal %d is sent to process %d.\n", sig, t->pid);
3123}
3124#endif /* CONFIG_KGDB_KDB */