blob: 2dfb5fea13aff499efd547cf6df68a848e14c4f5 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
H. Peter Anvin1965aae2008-10-22 22:26:29 -07002#ifndef _ASM_X86_SIGNAL_H
3#define _ASM_X86_SIGNAL_H
Thomas Gleixner33185c52007-10-23 22:37:24 +02004
5#ifndef __ASSEMBLY__
Thomas Gleixner33185c52007-10-23 22:37:24 +02006#include <linux/linkage.h>
7
8/* Most things should be clean enough to redefine this at will, if care
9 is taken to make libc match. */
10
11#define _NSIG 64
12
13#ifdef __i386__
14# define _NSIG_BPW 32
Thomas Gleixner96a388d2007-10-11 11:20:03 +020015#else
Thomas Gleixner33185c52007-10-23 22:37:24 +020016# define _NSIG_BPW 64
17#endif
18
19#define _NSIG_WORDS (_NSIG / _NSIG_BPW)
20
21typedef unsigned long old_sigset_t; /* at least 32 bits */
22
23typedef struct {
24 unsigned long sig[_NSIG_WORDS];
25} sigset_t;
26
Dmitry Safonov68463512016-09-05 16:33:08 +030027/* non-uapi in-kernel SA_FLAGS for those indicates ABI for a signal frame */
28#define SA_IA32_ABI 0x02000000u
29#define SA_X32_ABI 0x01000000u
30
Suresh Siddha050902c2012-07-24 16:05:27 -070031#ifndef CONFIG_COMPAT
Arnd Bergmann1a33b182021-07-22 16:28:58 +020032#define compat_sigset_t compat_sigset_t
Suresh Siddha050902c2012-07-24 16:05:27 -070033typedef sigset_t compat_sigset_t;
34#endif
35
Thomas Gleixner33185c52007-10-23 22:37:24 +020036#endif /* __ASSEMBLY__ */
David Howellsaf170c52012-12-14 22:37:13 +000037#include <uapi/asm/signal.h>
Thomas Gleixner33185c52007-10-23 22:37:24 +020038#ifndef __ASSEMBLY__
Al Viro574c4862012-11-25 22:24:19 -050039
40#define __ARCH_HAS_SA_RESTORER
41
Uros Bizjak26e609e2018-08-14 18:59:51 +020042#include <asm/asm.h>
Ingo Molnardecb4c42015-09-05 09:32:43 +020043#include <uapi/asm/sigcontext.h>
Thomas Gleixner33185c52007-10-23 22:37:24 +020044
Herton Ronaldo Krzesinski723edb52008-07-14 17:40:23 -030045#ifdef __i386__
Thomas Gleixner33185c52007-10-23 22:37:24 +020046
47#define __HAVE_ARCH_SIG_BITOPS
48
Joe Perches9551b122008-03-23 01:03:28 -070049#define sigaddset(set,sig) \
Herton Ronaldo Krzesinski723edb52008-07-14 17:40:23 -030050 (__builtin_constant_p(sig) \
Joe Perches9551b122008-03-23 01:03:28 -070051 ? __const_sigaddset((set), (sig)) \
52 : __gen_sigaddset((set), (sig)))
Thomas Gleixner33185c52007-10-23 22:37:24 +020053
Joe Perches9551b122008-03-23 01:03:28 -070054static inline void __gen_sigaddset(sigset_t *set, int _sig)
Thomas Gleixner33185c52007-10-23 22:37:24 +020055{
Joe Perches9551b122008-03-23 01:03:28 -070056 asm("btsl %1,%0" : "+m"(*set) : "Ir"(_sig - 1) : "cc");
Thomas Gleixner33185c52007-10-23 22:37:24 +020057}
58
Joe Perches9551b122008-03-23 01:03:28 -070059static inline void __const_sigaddset(sigset_t *set, int _sig)
Thomas Gleixner33185c52007-10-23 22:37:24 +020060{
61 unsigned long sig = _sig - 1;
62 set->sig[sig / _NSIG_BPW] |= 1 << (sig % _NSIG_BPW);
63}
64
Joe Perches9551b122008-03-23 01:03:28 -070065#define sigdelset(set, sig) \
66 (__builtin_constant_p(sig) \
67 ? __const_sigdelset((set), (sig)) \
68 : __gen_sigdelset((set), (sig)))
Thomas Gleixner33185c52007-10-23 22:37:24 +020069
70
Joe Perches9551b122008-03-23 01:03:28 -070071static inline void __gen_sigdelset(sigset_t *set, int _sig)
Thomas Gleixner33185c52007-10-23 22:37:24 +020072{
Joe Perches9551b122008-03-23 01:03:28 -070073 asm("btrl %1,%0" : "+m"(*set) : "Ir"(_sig - 1) : "cc");
Thomas Gleixner33185c52007-10-23 22:37:24 +020074}
75
Joe Perches9551b122008-03-23 01:03:28 -070076static inline void __const_sigdelset(sigset_t *set, int _sig)
Thomas Gleixner33185c52007-10-23 22:37:24 +020077{
78 unsigned long sig = _sig - 1;
79 set->sig[sig / _NSIG_BPW] &= ~(1 << (sig % _NSIG_BPW));
80}
81
Joe Perches9551b122008-03-23 01:03:28 -070082static inline int __const_sigismember(sigset_t *set, int _sig)
Thomas Gleixner33185c52007-10-23 22:37:24 +020083{
84 unsigned long sig = _sig - 1;
85 return 1 & (set->sig[sig / _NSIG_BPW] >> (sig % _NSIG_BPW));
86}
87
Joe Perches9551b122008-03-23 01:03:28 -070088static inline int __gen_sigismember(sigset_t *set, int _sig)
Thomas Gleixner33185c52007-10-23 22:37:24 +020089{
Uros Bizjak26e609e2018-08-14 18:59:51 +020090 bool ret;
91 asm("btl %2,%1" CC_SET(c)
92 : CC_OUT(c) (ret) : "m"(*set), "Ir"(_sig-1));
Thomas Gleixner33185c52007-10-23 22:37:24 +020093 return ret;
94}
95
Joe Perches9551b122008-03-23 01:03:28 -070096#define sigismember(set, sig) \
97 (__builtin_constant_p(sig) \
98 ? __const_sigismember((set), (sig)) \
99 : __gen_sigismember((set), (sig)))
Thomas Gleixner33185c52007-10-23 22:37:24 +0200100
Thomas Gleixner33185c52007-10-23 22:37:24 +0200101struct pt_regs;
102
Thomas Gleixner33185c52007-10-23 22:37:24 +0200103#else /* __i386__ */
104
105#undef __HAVE_ARCH_SIG_BITOPS
106
Roland McGrathe1f28772008-01-30 13:30:50 +0100107#endif /* !__i386__ */
108
Thomas Gleixner33185c52007-10-23 22:37:24 +0200109#endif /* __ASSEMBLY__ */
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700110#endif /* _ASM_X86_SIGNAL_H */