blob: 80c7418be359d3a9fee86b9c216790a928d7a6ce [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_SIGNAL_H
2#define _LINUX_SIGNAL_H
3
Oleg Nesterov1c3bea02014-10-13 15:53:33 -07004#include <linux/bug.h>
Ingo Molnare6d930b2017-02-03 23:43:50 +01005#include <linux/signal_types.h>
Christoph Hellwig79942002017-06-03 21:00:59 +02006#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
Stephen Rothwell1477fcc2011-05-20 11:11:53 +10008struct task_struct;
9
Dave Youngd33ed522010-03-10 15:23:59 -080010/* for sysctl */
11extern int print_fatal_signals;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
James Hoganca9eb492016-02-08 18:43:50 +000013static inline void copy_siginfo(struct siginfo *to, struct siginfo *from)
14{
15 if (from->si_code < 0)
16 memcpy(to, from, sizeof(*to));
17 else
18 /* _sigchld is currently the largest know union member */
19 memcpy(to, from, __ARCH_SI_PREAMBLE_SIZE + sizeof(from->_sifields._sigchld));
20}
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022/*
23 * Define some primitives to manipulate sigset_t.
24 */
25
26#ifndef __HAVE_ARCH_SIG_BITOPS
27#include <linux/bitops.h>
28
29/* We don't use <linux/bitops.h> for these because there is no need to
30 be atomic. */
31static inline void sigaddset(sigset_t *set, int _sig)
32{
33 unsigned long sig = _sig - 1;
34 if (_NSIG_WORDS == 1)
35 set->sig[0] |= 1UL << sig;
36 else
37 set->sig[sig / _NSIG_BPW] |= 1UL << (sig % _NSIG_BPW);
38}
39
40static inline void sigdelset(sigset_t *set, int _sig)
41{
42 unsigned long sig = _sig - 1;
43 if (_NSIG_WORDS == 1)
44 set->sig[0] &= ~(1UL << sig);
45 else
46 set->sig[sig / _NSIG_BPW] &= ~(1UL << (sig % _NSIG_BPW));
47}
48
49static inline int sigismember(sigset_t *set, int _sig)
50{
51 unsigned long sig = _sig - 1;
52 if (_NSIG_WORDS == 1)
53 return 1 & (set->sig[0] >> sig);
54 else
55 return 1 & (set->sig[sig / _NSIG_BPW] >> (sig % _NSIG_BPW));
56}
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#endif /* __HAVE_ARCH_SIG_BITOPS */
59
George Anzinger71fabd52006-01-08 01:02:48 -080060static inline int sigisemptyset(sigset_t *set)
61{
George Anzinger71fabd52006-01-08 01:02:48 -080062 switch (_NSIG_WORDS) {
63 case 4:
64 return (set->sig[3] | set->sig[2] |
65 set->sig[1] | set->sig[0]) == 0;
66 case 2:
67 return (set->sig[1] | set->sig[0]) == 0;
68 case 1:
69 return set->sig[0] == 0;
70 default:
Oleg Nesterov1c3bea02014-10-13 15:53:33 -070071 BUILD_BUG();
George Anzinger71fabd52006-01-08 01:02:48 -080072 return 0;
73 }
74}
75
Waiman Longc7be96a2016-12-14 15:04:10 -080076static inline int sigequalsets(const sigset_t *set1, const sigset_t *set2)
77{
78 switch (_NSIG_WORDS) {
79 case 4:
80 return (set1->sig[3] == set2->sig[3]) &&
81 (set1->sig[2] == set2->sig[2]) &&
82 (set1->sig[1] == set2->sig[1]) &&
83 (set1->sig[0] == set2->sig[0]);
84 case 2:
85 return (set1->sig[1] == set2->sig[1]) &&
86 (set1->sig[0] == set2->sig[0]);
87 case 1:
88 return set1->sig[0] == set2->sig[0];
89 }
90 return 0;
91}
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#define sigmask(sig) (1UL << ((sig) - 1))
94
95#ifndef __HAVE_ARCH_SIG_SETOPS
96#include <linux/string.h>
97
98#define _SIG_SET_BINOP(name, op) \
99static inline void name(sigset_t *r, const sigset_t *a, const sigset_t *b) \
100{ \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 unsigned long a0, a1, a2, a3, b0, b1, b2, b3; \
102 \
103 switch (_NSIG_WORDS) { \
Oleg Nesterov1c3bea02014-10-13 15:53:33 -0700104 case 4: \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 a3 = a->sig[3]; a2 = a->sig[2]; \
106 b3 = b->sig[3]; b2 = b->sig[2]; \
107 r->sig[3] = op(a3, b3); \
108 r->sig[2] = op(a2, b2); \
Oleg Nesterov1c3bea02014-10-13 15:53:33 -0700109 case 2: \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 a1 = a->sig[1]; b1 = b->sig[1]; \
111 r->sig[1] = op(a1, b1); \
Oleg Nesterov1c3bea02014-10-13 15:53:33 -0700112 case 1: \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 a0 = a->sig[0]; b0 = b->sig[0]; \
114 r->sig[0] = op(a0, b0); \
115 break; \
Oleg Nesterov1c3bea02014-10-13 15:53:33 -0700116 default: \
117 BUILD_BUG(); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 } \
119}
120
121#define _sig_or(x,y) ((x) | (y))
122_SIG_SET_BINOP(sigorsets, _sig_or)
123
124#define _sig_and(x,y) ((x) & (y))
125_SIG_SET_BINOP(sigandsets, _sig_and)
126
Oleg Nesterov702a5072011-04-27 22:01:27 +0200127#define _sig_andn(x,y) ((x) & ~(y))
128_SIG_SET_BINOP(sigandnsets, _sig_andn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130#undef _SIG_SET_BINOP
131#undef _sig_or
132#undef _sig_and
Oleg Nesterov702a5072011-04-27 22:01:27 +0200133#undef _sig_andn
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135#define _SIG_SET_OP(name, op) \
136static inline void name(sigset_t *set) \
137{ \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 switch (_NSIG_WORDS) { \
Oleg Nesterov1c3bea02014-10-13 15:53:33 -0700139 case 4: set->sig[3] = op(set->sig[3]); \
140 set->sig[2] = op(set->sig[2]); \
141 case 2: set->sig[1] = op(set->sig[1]); \
142 case 1: set->sig[0] = op(set->sig[0]); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 break; \
Oleg Nesterov1c3bea02014-10-13 15:53:33 -0700144 default: \
145 BUILD_BUG(); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 } \
147}
148
149#define _sig_not(x) (~(x))
150_SIG_SET_OP(signotset, _sig_not)
151
152#undef _SIG_SET_OP
153#undef _sig_not
154
155static inline void sigemptyset(sigset_t *set)
156{
157 switch (_NSIG_WORDS) {
158 default:
159 memset(set, 0, sizeof(sigset_t));
160 break;
161 case 2: set->sig[1] = 0;
162 case 1: set->sig[0] = 0;
163 break;
164 }
165}
166
167static inline void sigfillset(sigset_t *set)
168{
169 switch (_NSIG_WORDS) {
170 default:
171 memset(set, -1, sizeof(sigset_t));
172 break;
173 case 2: set->sig[1] = -1;
174 case 1: set->sig[0] = -1;
175 break;
176 }
177}
178
179/* Some extensions for manipulating the low 32 signals in particular. */
180
181static inline void sigaddsetmask(sigset_t *set, unsigned long mask)
182{
183 set->sig[0] |= mask;
184}
185
186static inline void sigdelsetmask(sigset_t *set, unsigned long mask)
187{
188 set->sig[0] &= ~mask;
189}
190
191static inline int sigtestsetmask(sigset_t *set, unsigned long mask)
192{
193 return (set->sig[0] & mask) != 0;
194}
195
196static inline void siginitset(sigset_t *set, unsigned long mask)
197{
198 set->sig[0] = mask;
199 switch (_NSIG_WORDS) {
200 default:
201 memset(&set->sig[1], 0, sizeof(long)*(_NSIG_WORDS-1));
202 break;
203 case 2: set->sig[1] = 0;
204 case 1: ;
205 }
206}
207
208static inline void siginitsetinv(sigset_t *set, unsigned long mask)
209{
210 set->sig[0] = ~mask;
211 switch (_NSIG_WORDS) {
212 default:
213 memset(&set->sig[1], -1, sizeof(long)*(_NSIG_WORDS-1));
214 break;
215 case 2: set->sig[1] = -1;
216 case 1: ;
217 }
218}
219
220#endif /* __HAVE_ARCH_SIG_SETOPS */
221
222static inline void init_sigpending(struct sigpending *sig)
223{
224 sigemptyset(&sig->signal);
225 INIT_LIST_HEAD(&sig->list);
226}
227
Oleg Nesterov6a14c5c2006-03-28 16:11:18 -0800228extern void flush_sigqueue(struct sigpending *queue);
229
Jesper Juhle5bdd882005-05-01 08:59:13 -0700230/* Test if 'sig' is valid signal. Use this instead of testing _NSIG directly */
231static inline int valid_signal(unsigned long sig)
232{
233 return sig <= _NSIG ? 1 : 0;
234}
235
Oleg Nesterovb2b07e42011-05-18 15:08:03 +0200236struct timespec;
237struct pt_regs;
238
Davide Libenzifba2afa2007-05-10 22:23:13 -0700239extern int next_signal(struct sigpending *pending, sigset_t *mask);
Oleg Nesterov4a30deb2009-09-23 15:57:00 -0700240extern int do_send_sig_info(int sig, struct siginfo *info,
241 struct task_struct *p, bool group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242extern int group_send_sig_info(int sig, struct siginfo *info, struct task_struct *p);
243extern int __group_send_sig_info(int, struct siginfo *, struct task_struct *);
Oleg Nesterov943df142011-04-27 21:44:14 +0200244extern int do_sigtimedwait(const sigset_t *, siginfo_t *,
245 const struct timespec *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246extern int sigprocmask(int, sigset_t *, sigset_t *);
Al Viro77097ae2012-04-27 13:58:59 -0400247extern void set_current_blocked(sigset_t *);
248extern void __set_current_blocked(const sigset_t *);
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200249extern int show_unhandled_signals;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Richard Weinberger828b1f62013-10-07 15:26:57 +0200251extern int get_signal(struct ksignal *ksig);
Al Viro2ce5da12012-11-07 15:11:25 -0500252extern void signal_setup_done(int failed, struct ksignal *ksig, int stepping);
Oleg Nesterovd12619b2008-02-08 04:19:12 -0800253extern void exit_signals(struct task_struct *tsk);
Oleg Nesterovb4e74262014-06-06 14:37:00 -0700254extern void kernel_sigaction(int, __sighandler_t);
255
256static inline void allow_signal(int sig)
257{
258 /*
259 * Kernel threads handle their own signals. Let the signal code
260 * know it'll be handled, so that they don't get converted to
261 * SIGKILL or just silently dropped.
262 */
263 kernel_sigaction(sig, (__force __sighandler_t)2);
264}
265
266static inline void disallow_signal(int sig)
267{
268 kernel_sigaction(sig, SIG_IGN);
269}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Christoph Lameter298ec1e2006-12-06 20:32:47 -0800271extern struct kmem_cache *sighand_cachep;
272
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200273int unhandled_signal(struct task_struct *tsk, int sig);
274
Roland McGrath55c0d1f2007-05-09 02:33:37 -0700275/*
276 * In POSIX a signal is sent either to a specific thread (Linux task)
277 * or to the process as a whole (Linux thread group). How the signal
278 * is sent determines whether it's to one thread or the whole group,
279 * which determines which signal mask(s) are involved in blocking it
280 * from being delivered until later. When the signal is delivered,
281 * either it's caught or ignored by a user handler or it has a default
282 * effect that applies to the whole thread group (POSIX process).
283 *
284 * The possible effects an unblocked signal set to SIG_DFL can have are:
285 * ignore - Nothing Happens
286 * terminate - kill the process, i.e. all threads in the group,
287 * similar to exit_group. The group leader (only) reports
288 * WIFSIGNALED status to its parent.
289 * coredump - write a core dump file describing all threads using
290 * the same mm and then kill all those threads
291 * stop - stop all the threads in the group, i.e. TASK_STOPPED state
292 *
293 * SIGKILL and SIGSTOP cannot be caught, blocked, or ignored.
294 * Other signals when not blocked and set to SIG_DFL behaves as follows.
295 * The job control signals also have other special effects.
296 *
297 * +--------------------+------------------+
298 * | POSIX signal | default action |
299 * +--------------------+------------------+
300 * | SIGHUP | terminate |
301 * | SIGINT | terminate |
302 * | SIGQUIT | coredump |
303 * | SIGILL | coredump |
304 * | SIGTRAP | coredump |
305 * | SIGABRT/SIGIOT | coredump |
306 * | SIGBUS | coredump |
307 * | SIGFPE | coredump |
308 * | SIGKILL | terminate(+) |
309 * | SIGUSR1 | terminate |
310 * | SIGSEGV | coredump |
311 * | SIGUSR2 | terminate |
312 * | SIGPIPE | terminate |
313 * | SIGALRM | terminate |
314 * | SIGTERM | terminate |
315 * | SIGCHLD | ignore |
316 * | SIGCONT | ignore(*) |
317 * | SIGSTOP | stop(*)(+) |
318 * | SIGTSTP | stop(*) |
319 * | SIGTTIN | stop(*) |
320 * | SIGTTOU | stop(*) |
321 * | SIGURG | ignore |
322 * | SIGXCPU | coredump |
323 * | SIGXFSZ | coredump |
324 * | SIGVTALRM | terminate |
325 * | SIGPROF | terminate |
326 * | SIGPOLL/SIGIO | terminate |
327 * | SIGSYS/SIGUNUSED | coredump |
328 * | SIGSTKFLT | terminate |
329 * | SIGWINCH | ignore |
330 * | SIGPWR | terminate |
331 * | SIGRTMIN-SIGRTMAX | terminate |
332 * +--------------------+------------------+
333 * | non-POSIX signal | default action |
334 * +--------------------+------------------+
335 * | SIGEMT | coredump |
336 * +--------------------+------------------+
337 *
338 * (+) For SIGKILL and SIGSTOP the action is "always", not just "default".
339 * (*) Special job control effects:
340 * When SIGCONT is sent, it resumes the process (all threads in the group)
341 * from TASK_STOPPED state and also clears any pending/queued stop signals
342 * (any of those marked with "stop(*)"). This happens regardless of blocking,
343 * catching, or ignoring SIGCONT. When any stop signal is sent, it clears
344 * any pending/queued SIGCONT signals; this happens regardless of blocking,
345 * catching, or ignored the stop signal, though (except for SIGSTOP) the
346 * default action of stopping the process may happen later or never.
347 */
348
349#ifdef SIGEMT
350#define SIGEMT_MASK rt_sigmask(SIGEMT)
351#else
352#define SIGEMT_MASK 0
353#endif
354
355#if SIGRTMIN > BITS_PER_LONG
356#define rt_sigmask(sig) (1ULL << ((sig)-1))
357#else
358#define rt_sigmask(sig) sigmask(sig)
359#endif
Oleg Nesterov5c8ccef2016-05-23 16:24:02 -0700360
361#define siginmask(sig, mask) \
362 ((sig) < SIGRTMIN && (rt_sigmask(sig) & (mask)))
Roland McGrath55c0d1f2007-05-09 02:33:37 -0700363
364#define SIG_KERNEL_ONLY_MASK (\
365 rt_sigmask(SIGKILL) | rt_sigmask(SIGSTOP))
366
367#define SIG_KERNEL_STOP_MASK (\
368 rt_sigmask(SIGSTOP) | rt_sigmask(SIGTSTP) | \
369 rt_sigmask(SIGTTIN) | rt_sigmask(SIGTTOU) )
370
371#define SIG_KERNEL_COREDUMP_MASK (\
372 rt_sigmask(SIGQUIT) | rt_sigmask(SIGILL) | \
373 rt_sigmask(SIGTRAP) | rt_sigmask(SIGABRT) | \
374 rt_sigmask(SIGFPE) | rt_sigmask(SIGSEGV) | \
375 rt_sigmask(SIGBUS) | rt_sigmask(SIGSYS) | \
376 rt_sigmask(SIGXCPU) | rt_sigmask(SIGXFSZ) | \
377 SIGEMT_MASK )
378
379#define SIG_KERNEL_IGNORE_MASK (\
380 rt_sigmask(SIGCONT) | rt_sigmask(SIGCHLD) | \
381 rt_sigmask(SIGWINCH) | rt_sigmask(SIGURG) )
382
Oleg Nesterov5c8ccef2016-05-23 16:24:02 -0700383#define sig_kernel_only(sig) siginmask(sig, SIG_KERNEL_ONLY_MASK)
384#define sig_kernel_coredump(sig) siginmask(sig, SIG_KERNEL_COREDUMP_MASK)
385#define sig_kernel_ignore(sig) siginmask(sig, SIG_KERNEL_IGNORE_MASK)
386#define sig_kernel_stop(sig) siginmask(sig, SIG_KERNEL_STOP_MASK)
Roland McGrath55c0d1f2007-05-09 02:33:37 -0700387
Roland McGrath55c0d1f2007-05-09 02:33:37 -0700388#define sig_fatal(t, signr) \
389 (!siginmask(signr, SIG_KERNEL_IGNORE_MASK|SIG_KERNEL_STOP_MASK) && \
390 (t)->sighand->action[(signr)-1].sa.sa_handler == SIG_DFL)
391
Adrian Bunka1c9eea2008-02-06 01:36:44 -0800392void signals_init(void);
393
Al Viro5c495742012-11-18 15:29:16 -0500394int restore_altstack(const stack_t __user *);
Al Viroc40702c2012-11-20 14:24:26 -0500395int __save_altstack(stack_t __user *, unsigned long);
Al Viro5c495742012-11-18 15:29:16 -0500396
Al Virobd1c149a2013-09-01 20:35:01 +0100397#define save_altstack_ex(uss, sp) do { \
398 stack_t __user *__uss = uss; \
399 struct task_struct *t = current; \
400 put_user_ex((void __user *)t->sas_ss_sp, &__uss->ss_sp); \
Stas Sergeev2a742132016-04-14 23:20:04 +0300401 put_user_ex(t->sas_ss_flags, &__uss->ss_flags); \
Al Virobd1c149a2013-09-01 20:35:01 +0100402 put_user_ex(t->sas_ss_size, &__uss->ss_size); \
Stas Sergeev2a742132016-04-14 23:20:04 +0300403 if (t->sas_ss_flags & SS_AUTODISARM) \
404 sas_ss_reset(t); \
Al Virobd1c149a2013-09-01 20:35:01 +0100405} while (0);
406
David Howells34db8aa2013-04-12 02:29:19 +0100407#ifdef CONFIG_PROC_FS
408struct seq_file;
409extern void render_sigset_t(struct seq_file *, const char *, sigset_t *);
410#endif
411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412#endif /* _LINUX_SIGNAL_H */