Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _LINUX_SECCOMP_H |
| 2 | #define _LINUX_SECCOMP_H |
| 3 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | |
| 5 | #ifdef CONFIG_SECCOMP |
| 6 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | #include <linux/thread_info.h> |
| 8 | #include <asm/seccomp.h> |
| 9 | |
| 10 | typedef struct { int mode; } seccomp_t; |
| 11 | |
| 12 | extern void __secure_computing(int); |
| 13 | static inline void secure_computing(int this_syscall) |
| 14 | { |
| 15 | if (unlikely(test_thread_flag(TIF_SECCOMP))) |
| 16 | __secure_computing(this_syscall); |
| 17 | } |
| 18 | |
Andrea Arcangeli | 1d9d02f | 2007-07-15 23:41:32 -0700 | [diff] [blame] | 19 | extern long prctl_get_seccomp(void); |
| 20 | extern long prctl_set_seccomp(unsigned long); |
| 21 | |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 22 | static inline int seccomp_mode(seccomp_t *s) |
| 23 | { |
| 24 | return s->mode; |
| 25 | } |
| 26 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #else /* CONFIG_SECCOMP */ |
| 28 | |
Ralf Baechle | 42a17ad | 2009-04-18 11:30:56 +0200 | [diff] [blame] | 29 | #include <linux/errno.h> |
| 30 | |
Andrew Morton | a136564 | 2006-01-08 01:04:09 -0800 | [diff] [blame] | 31 | typedef struct { } seccomp_t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
| 33 | #define secure_computing(x) do { } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
Andrea Arcangeli | 1d9d02f | 2007-07-15 23:41:32 -0700 | [diff] [blame] | 35 | static inline long prctl_get_seccomp(void) |
| 36 | { |
| 37 | return -EINVAL; |
| 38 | } |
| 39 | |
| 40 | static inline long prctl_set_seccomp(unsigned long arg2) |
| 41 | { |
| 42 | return -EINVAL; |
| 43 | } |
| 44 | |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 45 | static inline int seccomp_mode(seccomp_t *s) |
| 46 | { |
| 47 | return 0; |
| 48 | } |
| 49 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | #endif /* CONFIG_SECCOMP */ |
| 51 | |
| 52 | #endif /* _LINUX_SECCOMP_H */ |