Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | #ifndef _LINUX_SECCOMP_H |
| 3 | #define _LINUX_SECCOMP_H |
| 4 | |
David Howells | 607ca46 | 2012-10-13 10:46:48 +0100 | [diff] [blame] | 5 | #include <uapi/linux/seccomp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 7 | #define SECCOMP_FILTER_FLAG_MASK (SECCOMP_FILTER_FLAG_TSYNC | \ |
| 8 | SECCOMP_FILTER_FLAG_LOG | \ |
| 9 | SECCOMP_FILTER_FLAG_SPEC_ALLOW | \ |
Tycho Andersen | 5189149 | 2020-03-04 11:05:17 -0700 | [diff] [blame] | 10 | SECCOMP_FILTER_FLAG_NEW_LISTENER | \ |
| 11 | SECCOMP_FILTER_FLAG_TSYNC_ESRCH) |
Kees Cook | c2e1f2e | 2014-06-05 00:23:17 -0700 | [diff] [blame] | 12 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #ifdef CONFIG_SECCOMP |
| 14 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/thread_info.h> |
| 16 | #include <asm/seccomp.h> |
| 17 | |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 18 | struct seccomp_filter; |
| 19 | /** |
| 20 | * struct seccomp - the state of a seccomp'ed process |
| 21 | * |
| 22 | * @mode: indicates one of the valid values above for controlled |
| 23 | * system calls available to a process. |
Kees Cook | dbd95212 | 2014-06-27 15:18:48 -0700 | [diff] [blame] | 24 | * @filter: must always point to a valid seccomp-filter or NULL as it is |
| 25 | * accessed without locking during system call entry. |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 26 | * |
| 27 | * @filter must only be accessed from the context of current as there |
Kees Cook | dbd95212 | 2014-06-27 15:18:48 -0700 | [diff] [blame] | 28 | * is no read locking. |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 29 | */ |
Will Drewry | 932eceb | 2012-04-12 16:47:54 -0500 | [diff] [blame] | 30 | struct seccomp { |
| 31 | int mode; |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 32 | struct seccomp_filter *filter; |
Will Drewry | 932eceb | 2012-04-12 16:47:54 -0500 | [diff] [blame] | 33 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
Andy Lutomirski | a4412fc | 2014-07-21 18:49:14 -0700 | [diff] [blame] | 35 | #ifdef CONFIG_HAVE_ARCH_SECCOMP_FILTER |
Andy Lutomirski | 2f275de | 2016-05-27 12:57:02 -0700 | [diff] [blame] | 36 | extern int __secure_computing(const struct seccomp_data *sd); |
Christian Brauner | fefad9e | 2019-09-24 08:44:20 +0200 | [diff] [blame] | 37 | static inline int secure_computing(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | { |
| 39 | if (unlikely(test_thread_flag(TIF_SECCOMP))) |
Christian Brauner | fefad9e | 2019-09-24 08:44:20 +0200 | [diff] [blame] | 40 | return __secure_computing(NULL); |
Will Drewry | acf3b2c | 2012-04-12 16:47:59 -0500 | [diff] [blame] | 41 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | } |
Andy Lutomirski | a4412fc | 2014-07-21 18:49:14 -0700 | [diff] [blame] | 43 | #else |
| 44 | extern void secure_computing_strict(int this_syscall); |
| 45 | #endif |
Will Drewry | e4da89d | 2012-04-17 14:48:57 -0500 | [diff] [blame] | 46 | |
Andrea Arcangeli | 1d9d02f | 2007-07-15 23:41:32 -0700 | [diff] [blame] | 47 | extern long prctl_get_seccomp(void); |
Tycho Andersen | a5662e4 | 2018-12-09 11:24:12 -0700 | [diff] [blame] | 48 | extern long prctl_set_seccomp(unsigned long, void __user *); |
Andrea Arcangeli | 1d9d02f | 2007-07-15 23:41:32 -0700 | [diff] [blame] | 49 | |
Will Drewry | 932eceb | 2012-04-12 16:47:54 -0500 | [diff] [blame] | 50 | static inline int seccomp_mode(struct seccomp *s) |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 51 | { |
| 52 | return s->mode; |
| 53 | } |
| 54 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | #else /* CONFIG_SECCOMP */ |
| 56 | |
Ralf Baechle | 42a17ad | 2009-04-18 11:30:56 +0200 | [diff] [blame] | 57 | #include <linux/errno.h> |
| 58 | |
Will Drewry | 932eceb | 2012-04-12 16:47:54 -0500 | [diff] [blame] | 59 | struct seccomp { }; |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 60 | struct seccomp_filter { }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
Andy Lutomirski | a4412fc | 2014-07-21 18:49:14 -0700 | [diff] [blame] | 62 | #ifdef CONFIG_HAVE_ARCH_SECCOMP_FILTER |
Christian Brauner | fefad9e | 2019-09-24 08:44:20 +0200 | [diff] [blame] | 63 | static inline int secure_computing(void) { return 0; } |
Andy Lutomirski | a4412fc | 2014-07-21 18:49:14 -0700 | [diff] [blame] | 64 | #else |
Will Drewry | e4da89d | 2012-04-17 14:48:57 -0500 | [diff] [blame] | 65 | static inline void secure_computing_strict(int this_syscall) { return; } |
Andy Lutomirski | a4412fc | 2014-07-21 18:49:14 -0700 | [diff] [blame] | 66 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
Andrea Arcangeli | 1d9d02f | 2007-07-15 23:41:32 -0700 | [diff] [blame] | 68 | static inline long prctl_get_seccomp(void) |
| 69 | { |
| 70 | return -EINVAL; |
| 71 | } |
| 72 | |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 73 | static inline long prctl_set_seccomp(unsigned long arg2, char __user *arg3) |
Andrea Arcangeli | 1d9d02f | 2007-07-15 23:41:32 -0700 | [diff] [blame] | 74 | { |
| 75 | return -EINVAL; |
| 76 | } |
| 77 | |
Will Drewry | 932eceb | 2012-04-12 16:47:54 -0500 | [diff] [blame] | 78 | static inline int seccomp_mode(struct seccomp *s) |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 79 | { |
Kees Cook | 221272f | 2015-06-15 15:29:16 -0700 | [diff] [blame] | 80 | return SECCOMP_MODE_DISABLED; |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 81 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | #endif /* CONFIG_SECCOMP */ |
| 83 | |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 84 | #ifdef CONFIG_SECCOMP_FILTER |
| 85 | extern void put_seccomp_filter(struct task_struct *tsk); |
| 86 | extern void get_seccomp_filter(struct task_struct *tsk); |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 87 | #else /* CONFIG_SECCOMP_FILTER */ |
| 88 | static inline void put_seccomp_filter(struct task_struct *tsk) |
| 89 | { |
| 90 | return; |
| 91 | } |
| 92 | static inline void get_seccomp_filter(struct task_struct *tsk) |
| 93 | { |
| 94 | return; |
| 95 | } |
| 96 | #endif /* CONFIG_SECCOMP_FILTER */ |
Tycho Andersen | f8e529e | 2015-10-27 09:23:59 +0900 | [diff] [blame] | 97 | |
| 98 | #if defined(CONFIG_SECCOMP_FILTER) && defined(CONFIG_CHECKPOINT_RESTORE) |
| 99 | extern long seccomp_get_filter(struct task_struct *task, |
| 100 | unsigned long filter_off, void __user *data); |
Tycho Andersen | 2650047 | 2017-10-11 09:39:21 -0600 | [diff] [blame] | 101 | extern long seccomp_get_metadata(struct task_struct *task, |
| 102 | unsigned long filter_off, void __user *data); |
Tycho Andersen | f8e529e | 2015-10-27 09:23:59 +0900 | [diff] [blame] | 103 | #else |
| 104 | static inline long seccomp_get_filter(struct task_struct *task, |
| 105 | unsigned long n, void __user *data) |
| 106 | { |
| 107 | return -EINVAL; |
| 108 | } |
Tycho Andersen | 2650047 | 2017-10-11 09:39:21 -0600 | [diff] [blame] | 109 | static inline long seccomp_get_metadata(struct task_struct *task, |
| 110 | unsigned long filter_off, |
| 111 | void __user *data) |
| 112 | { |
| 113 | return -EINVAL; |
| 114 | } |
Tycho Andersen | f8e529e | 2015-10-27 09:23:59 +0900 | [diff] [blame] | 115 | #endif /* CONFIG_SECCOMP_FILTER && CONFIG_CHECKPOINT_RESTORE */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | #endif /* _LINUX_SECCOMP_H */ |