Merge remote-tracking branch 'asoc/topic/compress' into asoc-next
[linux-2.6/btrfs-unstable.git] / include / linux / seccomp.h
blob6f19cfd1840e4adea37b84dea76175361d3187bc
1 #ifndef _LINUX_SECCOMP_H
2 #define _LINUX_SECCOMP_H
4 #include <uapi/linux/seccomp.h>
6 #ifdef CONFIG_SECCOMP
8 #include <linux/thread_info.h>
9 #include <asm/seccomp.h>
11 struct seccomp_filter;
12 /**
13 * struct seccomp - the state of a seccomp'ed process
15 * @mode: indicates one of the valid values above for controlled
16 * system calls available to a process.
17 * @filter: The metadata and ruleset for determining what system calls
18 * are allowed for a task.
20 * @filter must only be accessed from the context of current as there
21 * is no locking.
23 struct seccomp {
24 int mode;
25 struct seccomp_filter *filter;
28 extern int __secure_computing(int);
29 static inline int secure_computing(int this_syscall)
31 if (unlikely(test_thread_flag(TIF_SECCOMP)))
32 return __secure_computing(this_syscall);
33 return 0;
36 /* A wrapper for architectures supporting only SECCOMP_MODE_STRICT. */
37 static inline void secure_computing_strict(int this_syscall)
39 BUG_ON(secure_computing(this_syscall) != 0);
42 extern long prctl_get_seccomp(void);
43 extern long prctl_set_seccomp(unsigned long, char __user *);
45 static inline int seccomp_mode(struct seccomp *s)
47 return s->mode;
50 #else /* CONFIG_SECCOMP */
52 #include <linux/errno.h>
54 struct seccomp { };
55 struct seccomp_filter { };
57 static inline int secure_computing(int this_syscall) { return 0; }
58 static inline void secure_computing_strict(int this_syscall) { return; }
60 static inline long prctl_get_seccomp(void)
62 return -EINVAL;
65 static inline long prctl_set_seccomp(unsigned long arg2, char __user *arg3)
67 return -EINVAL;
70 static inline int seccomp_mode(struct seccomp *s)
72 return 0;
74 #endif /* CONFIG_SECCOMP */
76 #ifdef CONFIG_SECCOMP_FILTER
77 extern void put_seccomp_filter(struct task_struct *tsk);
78 extern void get_seccomp_filter(struct task_struct *tsk);
79 extern u32 seccomp_bpf_load(int off);
80 #else /* CONFIG_SECCOMP_FILTER */
81 static inline void put_seccomp_filter(struct task_struct *tsk)
83 return;
85 static inline void get_seccomp_filter(struct task_struct *tsk)
87 return;
89 #endif /* CONFIG_SECCOMP_FILTER */
90 #endif /* _LINUX_SECCOMP_H */