]>
git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - include/linux/seccomp.h
1 #ifndef _LINUX_SECCOMP_H
2 #define _LINUX_SECCOMP_H
4 #include <uapi/linux/seccomp.h>
6 #define SECCOMP_FILTER_FLAG_MASK (SECCOMP_FILTER_FLAG_TSYNC | \
7 SECCOMP_FILTER_FLAG_LOG)
11 #include <linux/thread_info.h>
12 #include <asm/seccomp.h>
14 struct seccomp_filter
;
16 * struct seccomp - the state of a seccomp'ed process
18 * @mode: indicates one of the valid values above for controlled
19 * system calls available to a process.
20 * @filter: must always point to a valid seccomp-filter or NULL as it is
21 * accessed without locking during system call entry.
23 * @filter must only be accessed from the context of current as there
28 struct seccomp_filter
*filter
;
31 #ifdef CONFIG_HAVE_ARCH_SECCOMP_FILTER
32 extern int __secure_computing(const struct seccomp_data
*sd
);
33 static inline int secure_computing(const struct seccomp_data
*sd
)
35 if (unlikely(test_thread_flag(TIF_SECCOMP
)))
36 return __secure_computing(sd
);
40 extern void secure_computing_strict(int this_syscall
);
43 extern long prctl_get_seccomp(void);
44 extern long prctl_set_seccomp(unsigned long, char __user
*);
46 static inline int seccomp_mode(struct seccomp
*s
)
51 #else /* CONFIG_SECCOMP */
53 #include <linux/errno.h>
56 struct seccomp_filter
{ };
58 #ifdef CONFIG_HAVE_ARCH_SECCOMP_FILTER
59 static inline int secure_computing(struct seccomp_data
*sd
) { return 0; }
61 static inline void secure_computing_strict(int this_syscall
) { return; }
64 static inline long prctl_get_seccomp(void)
69 static inline long prctl_set_seccomp(unsigned long arg2
, char __user
*arg3
)
74 static inline int seccomp_mode(struct seccomp
*s
)
76 return SECCOMP_MODE_DISABLED
;
78 #endif /* CONFIG_SECCOMP */
80 #ifdef CONFIG_SECCOMP_FILTER
81 extern void put_seccomp_filter(struct task_struct
*tsk
);
82 extern void get_seccomp_filter(struct task_struct
*tsk
);
83 #else /* CONFIG_SECCOMP_FILTER */
84 static inline void put_seccomp_filter(struct task_struct
*tsk
)
88 static inline void get_seccomp_filter(struct task_struct
*tsk
)
92 #endif /* CONFIG_SECCOMP_FILTER */
94 #if defined(CONFIG_SECCOMP_FILTER) && defined(CONFIG_CHECKPOINT_RESTORE)
95 extern long seccomp_get_filter(struct task_struct
*task
,
96 unsigned long filter_off
, void __user
*data
);
98 static inline long seccomp_get_filter(struct task_struct
*task
,
99 unsigned long n
, void __user
*data
)
103 #endif /* CONFIG_SECCOMP_FILTER && CONFIG_CHECKPOINT_RESTORE */
104 #endif /* _LINUX_SECCOMP_H */