]> git.karo-electronics.de Git - mv-sheeva.git/blob - include/linux/seccomp.h
d708974dbfe3d000835201fb5ae6e6181beeee91
[mv-sheeva.git] / include / linux / seccomp.h
1 #ifndef _LINUX_SECCOMP_H
2 #define _LINUX_SECCOMP_H
3
4
5 #ifdef CONFIG_SECCOMP
6
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
19 static inline int has_secure_computing(struct thread_info *ti)
20 {
21         return unlikely(test_ti_thread_flag(ti, TIF_SECCOMP));
22 }
23
24 extern long prctl_get_seccomp(void);
25 extern long prctl_set_seccomp(unsigned long);
26
27 #else /* CONFIG_SECCOMP */
28
29 typedef struct { } seccomp_t;
30
31 #define secure_computing(x) do { } while (0)
32 /* static inline to preserve typechecking */
33 static inline int has_secure_computing(struct thread_info *ti)
34 {
35         return 0;
36 }
37
38 static inline long prctl_get_seccomp(void)
39 {
40         return -EINVAL;
41 }
42
43 static inline long prctl_set_seccomp(unsigned long arg2)
44 {
45         return -EINVAL;
46 }
47
48 #endif /* CONFIG_SECCOMP */
49
50 #endif /* _LINUX_SECCOMP_H */