blob: 7bb5490b3aa25cad9c10ac75b6de1a18f397f412 [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_SIGNAL_H
2#define _ASM_X86_SIGNAL_H
Thomas Gleixner33185c52007-10-23 22:37:24 +02003
4#ifndef __ASSEMBLY__
5#include <linux/types.h>
6#include <linux/time.h>
7#include <linux/compiler.h>
8
9/* Avoid too many header ordering problems. */
10struct siginfo;
11
Thomas Gleixner96a388d2007-10-11 11:20:03 +020012#ifdef __KERNEL__
Thomas Gleixner33185c52007-10-23 22:37:24 +020013#include <linux/linkage.h>
14
15/* Most things should be clean enough to redefine this at will, if care
16 is taken to make libc match. */
17
18#define _NSIG 64
19
20#ifdef __i386__
21# define _NSIG_BPW 32
Thomas Gleixner96a388d2007-10-11 11:20:03 +020022#else
Thomas Gleixner33185c52007-10-23 22:37:24 +020023# define _NSIG_BPW 64
24#endif
25
26#define _NSIG_WORDS (_NSIG / _NSIG_BPW)
27
28typedef unsigned long old_sigset_t; /* at least 32 bits */
29
30typedef struct {
31 unsigned long sig[_NSIG_WORDS];
32} sigset_t;
33
Suresh Siddha050902c2012-07-24 16:05:27 -070034#ifndef CONFIG_COMPAT
35typedef sigset_t compat_sigset_t;
36#endif
37
Thomas Gleixner33185c52007-10-23 22:37:24 +020038#else
39/* Here we must cater to libcs that poke about in kernel headers. */
40
41#define NSIG 32
42typedef unsigned long sigset_t;
43
44#endif /* __KERNEL__ */
45#endif /* __ASSEMBLY__ */
46
47#define SIGHUP 1
48#define SIGINT 2
49#define SIGQUIT 3
50#define SIGILL 4
51#define SIGTRAP 5
52#define SIGABRT 6
53#define SIGIOT 6
54#define SIGBUS 7
55#define SIGFPE 8
56#define SIGKILL 9
57#define SIGUSR1 10
58#define SIGSEGV 11
59#define SIGUSR2 12
60#define SIGPIPE 13
61#define SIGALRM 14
62#define SIGTERM 15
63#define SIGSTKFLT 16
64#define SIGCHLD 17
65#define SIGCONT 18
66#define SIGSTOP 19
67#define SIGTSTP 20
68#define SIGTTIN 21
69#define SIGTTOU 22
70#define SIGURG 23
71#define SIGXCPU 24
72#define SIGXFSZ 25
73#define SIGVTALRM 26
74#define SIGPROF 27
75#define SIGWINCH 28
76#define SIGIO 29
77#define SIGPOLL SIGIO
78/*
79#define SIGLOST 29
80*/
81#define SIGPWR 30
82#define SIGSYS 31
83#define SIGUNUSED 31
84
85/* These should not be considered constants from userland. */
86#define SIGRTMIN 32
87#define SIGRTMAX _NSIG
88
89/*
90 * SA_FLAGS values:
91 *
92 * SA_ONSTACK indicates that a registered stack_t will be used.
93 * SA_RESTART flag to get restarting signals (which were the default long ago)
94 * SA_NOCLDSTOP flag to turn off SIGCHLD when children stop.
95 * SA_RESETHAND clears the handler when the signal is delivered.
96 * SA_NOCLDWAIT flag on SIGCHLD to inhibit zombies.
97 * SA_NODEFER prevents the current signal from being masked in the handler.
98 *
99 * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single
100 * Unix names RESETHAND and NODEFER respectively.
101 */
102#define SA_NOCLDSTOP 0x00000001u
103#define SA_NOCLDWAIT 0x00000002u
104#define SA_SIGINFO 0x00000004u
105#define SA_ONSTACK 0x08000000u
106#define SA_RESTART 0x10000000u
107#define SA_NODEFER 0x40000000u
108#define SA_RESETHAND 0x80000000u
109
110#define SA_NOMASK SA_NODEFER
111#define SA_ONESHOT SA_RESETHAND
112
113#define SA_RESTORER 0x04000000
114
Thomas Gleixner33185c52007-10-23 22:37:24 +0200115#define MINSIGSTKSZ 2048
116#define SIGSTKSZ 8192
117
Arnd Bergmann63b852a2009-05-13 22:56:24 +0000118#include <asm-generic/signal-defs.h>
Thomas Gleixner33185c52007-10-23 22:37:24 +0200119
120#ifndef __ASSEMBLY__
121
Jaswinder Singh7b5b50f2008-12-15 22:24:48 +0530122# ifdef __KERNEL__
123extern void do_notify_resume(struct pt_regs *, void *, __u32);
124# endif /* __KERNEL__ */
125
Thomas Gleixner33185c52007-10-23 22:37:24 +0200126#ifdef __i386__
127# ifdef __KERNEL__
128struct old_sigaction {
129 __sighandler_t sa_handler;
130 old_sigset_t sa_mask;
131 unsigned long sa_flags;
132 __sigrestore_t sa_restorer;
133};
134
135struct sigaction {
136 __sighandler_t sa_handler;
137 unsigned long sa_flags;
138 __sigrestore_t sa_restorer;
139 sigset_t sa_mask; /* mask last for extensibility */
140};
141
142struct k_sigaction {
143 struct sigaction sa;
144};
Jaswinder Singhb994b6c2008-07-21 21:37:52 +0530145
Thomas Gleixner33185c52007-10-23 22:37:24 +0200146# else /* __KERNEL__ */
147/* Here we must cater to libcs that poke about in kernel headers. */
148
149struct sigaction {
150 union {
151 __sighandler_t _sa_handler;
152 void (*_sa_sigaction)(int, struct siginfo *, void *);
153 } _u;
154 sigset_t sa_mask;
155 unsigned long sa_flags;
156 void (*sa_restorer)(void);
157};
158
159#define sa_handler _u._sa_handler
160#define sa_sigaction _u._sa_sigaction
161
162# endif /* ! __KERNEL__ */
163#else /* __i386__ */
164
165struct sigaction {
166 __sighandler_t sa_handler;
167 unsigned long sa_flags;
168 __sigrestore_t sa_restorer;
169 sigset_t sa_mask; /* mask last for extensibility */
170};
171
172struct k_sigaction {
173 struct sigaction sa;
174};
175
176#endif /* !__i386__ */
177
178typedef struct sigaltstack {
179 void __user *ss_sp;
180 int ss_flags;
181 size_t ss_size;
182} stack_t;
183
184#ifdef __KERNEL__
185#include <asm/sigcontext.h>
186
Herton Ronaldo Krzesinski723edb52008-07-14 17:40:23 -0300187#ifdef __i386__
Thomas Gleixner33185c52007-10-23 22:37:24 +0200188
189#define __HAVE_ARCH_SIG_BITOPS
190
Joe Perches9551b122008-03-23 01:03:28 -0700191#define sigaddset(set,sig) \
Herton Ronaldo Krzesinski723edb52008-07-14 17:40:23 -0300192 (__builtin_constant_p(sig) \
Joe Perches9551b122008-03-23 01:03:28 -0700193 ? __const_sigaddset((set), (sig)) \
194 : __gen_sigaddset((set), (sig)))
Thomas Gleixner33185c52007-10-23 22:37:24 +0200195
Joe Perches9551b122008-03-23 01:03:28 -0700196static inline void __gen_sigaddset(sigset_t *set, int _sig)
Thomas Gleixner33185c52007-10-23 22:37:24 +0200197{
Joe Perches9551b122008-03-23 01:03:28 -0700198 asm("btsl %1,%0" : "+m"(*set) : "Ir"(_sig - 1) : "cc");
Thomas Gleixner33185c52007-10-23 22:37:24 +0200199}
200
Joe Perches9551b122008-03-23 01:03:28 -0700201static inline void __const_sigaddset(sigset_t *set, int _sig)
Thomas Gleixner33185c52007-10-23 22:37:24 +0200202{
203 unsigned long sig = _sig - 1;
204 set->sig[sig / _NSIG_BPW] |= 1 << (sig % _NSIG_BPW);
205}
206
Joe Perches9551b122008-03-23 01:03:28 -0700207#define sigdelset(set, sig) \
208 (__builtin_constant_p(sig) \
209 ? __const_sigdelset((set), (sig)) \
210 : __gen_sigdelset((set), (sig)))
Thomas Gleixner33185c52007-10-23 22:37:24 +0200211
212
Joe Perches9551b122008-03-23 01:03:28 -0700213static inline void __gen_sigdelset(sigset_t *set, int _sig)
Thomas Gleixner33185c52007-10-23 22:37:24 +0200214{
Joe Perches9551b122008-03-23 01:03:28 -0700215 asm("btrl %1,%0" : "+m"(*set) : "Ir"(_sig - 1) : "cc");
Thomas Gleixner33185c52007-10-23 22:37:24 +0200216}
217
Joe Perches9551b122008-03-23 01:03:28 -0700218static inline void __const_sigdelset(sigset_t *set, int _sig)
Thomas Gleixner33185c52007-10-23 22:37:24 +0200219{
220 unsigned long sig = _sig - 1;
221 set->sig[sig / _NSIG_BPW] &= ~(1 << (sig % _NSIG_BPW));
222}
223
Joe Perches9551b122008-03-23 01:03:28 -0700224static inline int __const_sigismember(sigset_t *set, int _sig)
Thomas Gleixner33185c52007-10-23 22:37:24 +0200225{
226 unsigned long sig = _sig - 1;
227 return 1 & (set->sig[sig / _NSIG_BPW] >> (sig % _NSIG_BPW));
228}
229
Joe Perches9551b122008-03-23 01:03:28 -0700230static inline int __gen_sigismember(sigset_t *set, int _sig)
Thomas Gleixner33185c52007-10-23 22:37:24 +0200231{
232 int ret;
Joe Perches9551b122008-03-23 01:03:28 -0700233 asm("btl %2,%1\n\tsbbl %0,%0"
234 : "=r"(ret) : "m"(*set), "Ir"(_sig-1) : "cc");
Thomas Gleixner33185c52007-10-23 22:37:24 +0200235 return ret;
236}
237
Joe Perches9551b122008-03-23 01:03:28 -0700238#define sigismember(set, sig) \
239 (__builtin_constant_p(sig) \
240 ? __const_sigismember((set), (sig)) \
241 : __gen_sigismember((set), (sig)))
Thomas Gleixner33185c52007-10-23 22:37:24 +0200242
Joe Perches9551b122008-03-23 01:03:28 -0700243static inline int sigfindinword(unsigned long word)
Thomas Gleixner33185c52007-10-23 22:37:24 +0200244{
Joe Perches9551b122008-03-23 01:03:28 -0700245 asm("bsfl %1,%0" : "=r"(word) : "rm"(word) : "cc");
Thomas Gleixner33185c52007-10-23 22:37:24 +0200246 return word;
247}
248
249struct pt_regs;
250
Thomas Gleixner33185c52007-10-23 22:37:24 +0200251#else /* __i386__ */
252
253#undef __HAVE_ARCH_SIG_BITOPS
254
Roland McGrathe1f28772008-01-30 13:30:50 +0100255#endif /* !__i386__ */
256
Thomas Gleixner33185c52007-10-23 22:37:24 +0200257#endif /* __KERNEL__ */
258#endif /* __ASSEMBLY__ */
259
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700260#endif /* _ASM_X86_SIGNAL_H */