Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _LINUX_SECCOMP_H |
| 2 | #define _LINUX_SECCOMP_H |
| 3 | |
Will Drewry | 980e920 | 2012-02-09 11:50:58 -0600 | [diff] [blame^] | 4 | #include <linux/compiler.h> |
| 5 | #include <linux/types.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | |
Will Drewry | 980e920 | 2012-02-09 11:50:58 -0600 | [diff] [blame^] | 7 | |
| 8 | /* Valid values for seccomp.mode and prctl(PR_SET_SECCOMP, <mode>) */ |
| 9 | #define SECCOMP_MODE_DISABLED 0 /* seccomp is not in use. */ |
| 10 | #define SECCOMP_MODE_STRICT 1 /* uses hard-coded filter. */ |
| 11 | #define SECCOMP_MODE_FILTER 2 /* uses user-supplied filter. */ |
| 12 | |
| 13 | /* |
| 14 | * All BPF programs must return a 32-bit value. |
| 15 | * The bottom 16-bits are reserved for future use. |
| 16 | * The upper 16-bits are ordered from least permissive values to most. |
| 17 | * |
| 18 | * The ordering ensures that a min_t() over composed return values always |
| 19 | * selects the least permissive choice. |
| 20 | */ |
| 21 | #define SECCOMP_RET_KILL 0x00000000U /* kill the task immediately */ |
| 22 | #define SECCOMP_RET_ALLOW 0x7fff0000U /* allow */ |
| 23 | |
| 24 | /* Masks for the return value sections. */ |
| 25 | #define SECCOMP_RET_ACTION 0x7fff0000U |
| 26 | #define SECCOMP_RET_DATA 0x0000ffffU |
| 27 | |
| 28 | /** |
| 29 | * struct seccomp_data - the format the BPF program executes over. |
| 30 | * @nr: the system call number |
| 31 | * @arch: indicates system call convention as an AUDIT_ARCH_* value |
| 32 | * as defined in <linux/audit.h>. |
| 33 | * @instruction_pointer: at the time of the system call. |
| 34 | * @args: up to 6 system call arguments always stored as 64-bit values |
| 35 | * regardless of the architecture. |
| 36 | */ |
| 37 | struct seccomp_data { |
| 38 | int nr; |
| 39 | __u32 arch; |
| 40 | __u64 instruction_pointer; |
| 41 | __u64 args[6]; |
| 42 | }; |
| 43 | |
| 44 | #ifdef __KERNEL__ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #ifdef CONFIG_SECCOMP |
| 46 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #include <linux/thread_info.h> |
| 48 | #include <asm/seccomp.h> |
| 49 | |
Will Drewry | 980e920 | 2012-02-09 11:50:58 -0600 | [diff] [blame^] | 50 | struct seccomp_filter; |
| 51 | /** |
| 52 | * struct seccomp - the state of a seccomp'ed process |
| 53 | * |
| 54 | * @mode: indicates one of the valid values above for controlled |
| 55 | * system calls available to a process. |
| 56 | * @filter: The metadata and ruleset for determining what system calls |
| 57 | * are allowed for a task. |
| 58 | * |
| 59 | * @filter must only be accessed from the context of current as there |
| 60 | * is no locking. |
| 61 | */ |
Will Drewry | 807936e | 2012-01-13 14:40:01 -0600 | [diff] [blame] | 62 | struct seccomp { |
| 63 | int mode; |
Will Drewry | 980e920 | 2012-02-09 11:50:58 -0600 | [diff] [blame^] | 64 | struct seccomp_filter *filter; |
Will Drewry | 807936e | 2012-01-13 14:40:01 -0600 | [diff] [blame] | 65 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
| 67 | extern void __secure_computing(int); |
| 68 | static inline void secure_computing(int this_syscall) |
| 69 | { |
| 70 | if (unlikely(test_thread_flag(TIF_SECCOMP))) |
| 71 | __secure_computing(this_syscall); |
| 72 | } |
| 73 | |
Andrea Arcangeli | 1d9d02f | 2007-07-15 23:41:32 -0700 | [diff] [blame] | 74 | extern long prctl_get_seccomp(void); |
Will Drewry | 980e920 | 2012-02-09 11:50:58 -0600 | [diff] [blame^] | 75 | extern long prctl_set_seccomp(unsigned long, char __user *); |
Andrea Arcangeli | 1d9d02f | 2007-07-15 23:41:32 -0700 | [diff] [blame] | 76 | |
Will Drewry | 807936e | 2012-01-13 14:40:01 -0600 | [diff] [blame] | 77 | static inline int seccomp_mode(struct seccomp *s) |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 78 | { |
| 79 | return s->mode; |
| 80 | } |
| 81 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | #else /* CONFIG_SECCOMP */ |
| 83 | |
Ralf Baechle | 42a17ad | 2009-04-18 11:30:56 +0200 | [diff] [blame] | 84 | #include <linux/errno.h> |
| 85 | |
Will Drewry | 807936e | 2012-01-13 14:40:01 -0600 | [diff] [blame] | 86 | struct seccomp { }; |
Will Drewry | 980e920 | 2012-02-09 11:50:58 -0600 | [diff] [blame^] | 87 | struct seccomp_filter { }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | |
Will Drewry | 980e920 | 2012-02-09 11:50:58 -0600 | [diff] [blame^] | 89 | #define secure_computing(x) 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | |
Andrea Arcangeli | 1d9d02f | 2007-07-15 23:41:32 -0700 | [diff] [blame] | 91 | static inline long prctl_get_seccomp(void) |
| 92 | { |
| 93 | return -EINVAL; |
| 94 | } |
| 95 | |
Will Drewry | 980e920 | 2012-02-09 11:50:58 -0600 | [diff] [blame^] | 96 | static inline long prctl_set_seccomp(unsigned long arg2, char __user *arg3) |
Andrea Arcangeli | 1d9d02f | 2007-07-15 23:41:32 -0700 | [diff] [blame] | 97 | { |
| 98 | return -EINVAL; |
| 99 | } |
| 100 | |
Will Drewry | 807936e | 2012-01-13 14:40:01 -0600 | [diff] [blame] | 101 | static inline int seccomp_mode(struct seccomp *s) |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 102 | { |
| 103 | return 0; |
| 104 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | #endif /* CONFIG_SECCOMP */ |
| 106 | |
Will Drewry | 980e920 | 2012-02-09 11:50:58 -0600 | [diff] [blame^] | 107 | #ifdef CONFIG_SECCOMP_FILTER |
| 108 | extern void put_seccomp_filter(struct task_struct *tsk); |
| 109 | extern void get_seccomp_filter(struct task_struct *tsk); |
| 110 | extern u32 seccomp_bpf_load(int off); |
| 111 | #else /* CONFIG_SECCOMP_FILTER */ |
| 112 | static inline void put_seccomp_filter(struct task_struct *tsk) |
| 113 | { |
| 114 | return; |
| 115 | } |
| 116 | static inline void get_seccomp_filter(struct task_struct *tsk) |
| 117 | { |
| 118 | return; |
| 119 | } |
| 120 | #endif /* CONFIG_SECCOMP_FILTER */ |
| 121 | #endif /* __KERNEL__ */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | #endif /* _LINUX_SECCOMP_H */ |