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 | /* |
| 3 | * linux/kernel/seccomp.c |
| 4 | * |
| 5 | * Copyright 2004-2005 Andrea Arcangeli <andrea@cpushare.com> |
| 6 | * |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 7 | * Copyright (C) 2012 Google, Inc. |
| 8 | * Will Drewry <wad@chromium.org> |
| 9 | * |
| 10 | * This defines a simple but solid secure-computing facility. |
| 11 | * |
| 12 | * Mode 1 uses a fixed list of allowed system calls. |
| 13 | * Mode 2 allows user-defined system call filters in the form |
| 14 | * of Berkeley Packet Filters/Linux Socket Filters. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | */ |
Kees Cook | e68f9d4 | 2020-06-15 22:02:56 -0700 | [diff] [blame] | 16 | #define pr_fmt(fmt) "seccomp: " fmt |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | |
Kees Cook | 0b5fa22 | 2017-06-26 09:24:00 -0700 | [diff] [blame] | 18 | #include <linux/refcount.h> |
Eric Paris | 85e7bac3 | 2012-01-03 14:23:05 -0500 | [diff] [blame] | 19 | #include <linux/audit.h> |
Roland McGrath | 5b10174 | 2009-02-27 23:25:54 -0800 | [diff] [blame] | 20 | #include <linux/compat.h> |
Mike Frysinger | b25e671 | 2017-01-19 22:28:57 -0600 | [diff] [blame] | 21 | #include <linux/coredump.h> |
Tyler Hicks | 8e5f1ad | 2017-08-11 04:33:52 +0000 | [diff] [blame] | 22 | #include <linux/kmemleak.h> |
Kees Cook | 5c30708 | 2018-05-01 15:07:31 -0700 | [diff] [blame] | 23 | #include <linux/nospec.h> |
| 24 | #include <linux/prctl.h> |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 25 | #include <linux/sched.h> |
Ingo Molnar | 68db0cf | 2017-02-08 18:51:37 +0100 | [diff] [blame] | 26 | #include <linux/sched/task_stack.h> |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 27 | #include <linux/seccomp.h> |
Kees Cook | c8bee43 | 2014-06-27 15:16:33 -0700 | [diff] [blame] | 28 | #include <linux/slab.h> |
Kees Cook | 48dc92b | 2014-06-25 16:08:24 -0700 | [diff] [blame] | 29 | #include <linux/syscalls.h> |
Tyler Hicks | 8e5f1ad | 2017-08-11 04:33:52 +0000 | [diff] [blame] | 30 | #include <linux/sysctl.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
Kees Cook | 495ac30 | 2022-02-07 20:21:13 -0800 | [diff] [blame] | 32 | /* Not exposed in headers: strictly internal use only. */ |
| 33 | #define SECCOMP_MODE_DEAD (SECCOMP_MODE_FILTER + 1) |
| 34 | |
Andy Lutomirski | a4412fc | 2014-07-21 18:49:14 -0700 | [diff] [blame] | 35 | #ifdef CONFIG_HAVE_ARCH_SECCOMP_FILTER |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 36 | #include <asm/syscall.h> |
Andy Lutomirski | a4412fc | 2014-07-21 18:49:14 -0700 | [diff] [blame] | 37 | #endif |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 38 | |
| 39 | #ifdef CONFIG_SECCOMP_FILTER |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 40 | #include <linux/file.h> |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 41 | #include <linux/filter.h> |
Kees Cook | c2e1f2e | 2014-06-05 00:23:17 -0700 | [diff] [blame] | 42 | #include <linux/pid.h> |
Will Drewry | fb0fadf | 2012-04-12 16:48:02 -0500 | [diff] [blame] | 43 | #include <linux/ptrace.h> |
Mickaël Salaün | fb14528 | 2020-10-30 13:38:49 +0100 | [diff] [blame] | 44 | #include <linux/capability.h> |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 45 | #include <linux/uaccess.h> |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 46 | #include <linux/anon_inodes.h> |
Sargun Dhillon | 9f87dcf | 2020-06-01 04:25:32 -0700 | [diff] [blame] | 47 | #include <linux/lockdep.h> |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 48 | |
Kees Cook | 47e33c05 | 2020-06-15 15:42:46 -0700 | [diff] [blame] | 49 | /* |
| 50 | * When SECCOMP_IOCTL_NOTIF_ID_VALID was first introduced, it had the |
| 51 | * wrong direction flag in the ioctl number. This is the broken one, |
| 52 | * which the kernel needs to keep supporting until all userspaces stop |
| 53 | * using the wrong command number. |
| 54 | */ |
| 55 | #define SECCOMP_IOCTL_NOTIF_ID_VALID_WRONG_DIR SECCOMP_IOR(2, __u64) |
| 56 | |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 57 | enum notify_state { |
| 58 | SECCOMP_NOTIFY_INIT, |
| 59 | SECCOMP_NOTIFY_SENT, |
| 60 | SECCOMP_NOTIFY_REPLIED, |
| 61 | }; |
| 62 | |
| 63 | struct seccomp_knotif { |
| 64 | /* The struct pid of the task whose filter triggered the notification */ |
| 65 | struct task_struct *task; |
| 66 | |
| 67 | /* The "cookie" for this request; this is unique for this filter. */ |
| 68 | u64 id; |
| 69 | |
| 70 | /* |
| 71 | * The seccomp data. This pointer is valid the entire time this |
| 72 | * notification is active, since it comes from __seccomp_filter which |
| 73 | * eclipses the entire lifecycle here. |
| 74 | */ |
| 75 | const struct seccomp_data *data; |
| 76 | |
| 77 | /* |
| 78 | * Notification states. When SECCOMP_RET_USER_NOTIF is returned, a |
| 79 | * struct seccomp_knotif is created and starts out in INIT. Once the |
| 80 | * handler reads the notification off of an FD, it transitions to SENT. |
| 81 | * If a signal is received the state transitions back to INIT and |
| 82 | * another message is sent. When the userspace handler replies, state |
| 83 | * transitions to REPLIED. |
| 84 | */ |
| 85 | enum notify_state state; |
| 86 | |
| 87 | /* The return values, only valid when in SECCOMP_NOTIFY_REPLIED */ |
| 88 | int error; |
| 89 | long val; |
Christian Brauner | fb3c5386 | 2019-09-20 10:30:05 +0200 | [diff] [blame] | 90 | u32 flags; |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 91 | |
Sargun Dhillon | 7cf97b1 | 2020-06-02 18:10:43 -0700 | [diff] [blame] | 92 | /* |
| 93 | * Signals when this has changed states, such as the listener |
| 94 | * dying, a new seccomp addfd message, or changing to REPLIED |
| 95 | */ |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 96 | struct completion ready; |
| 97 | |
| 98 | struct list_head list; |
Sargun Dhillon | 7cf97b1 | 2020-06-02 18:10:43 -0700 | [diff] [blame] | 99 | |
| 100 | /* outstanding addfd requests */ |
| 101 | struct list_head addfd; |
| 102 | }; |
| 103 | |
| 104 | /** |
| 105 | * struct seccomp_kaddfd - container for seccomp_addfd ioctl messages |
| 106 | * |
| 107 | * @file: A reference to the file to install in the other task |
| 108 | * @fd: The fd number to install it at. If the fd number is -1, it means the |
| 109 | * installing process should allocate the fd as normal. |
| 110 | * @flags: The flags for the new file descriptor. At the moment, only O_CLOEXEC |
| 111 | * is allowed. |
Rodrigo Campos | 0ae71c7 | 2021-05-17 12:39:07 -0700 | [diff] [blame] | 112 | * @ioctl_flags: The flags used for the seccomp_addfd ioctl. |
Sargun Dhillon | 7cf97b1 | 2020-06-02 18:10:43 -0700 | [diff] [blame] | 113 | * @ret: The return value of the installing process. It is set to the fd num |
| 114 | * upon success (>= 0). |
| 115 | * @completion: Indicates that the installing process has completed fd |
| 116 | * installation, or gone away (either due to successful |
| 117 | * reply, or signal) |
| 118 | * |
| 119 | */ |
| 120 | struct seccomp_kaddfd { |
| 121 | struct file *file; |
| 122 | int fd; |
| 123 | unsigned int flags; |
Rodrigo Campos | 0ae71c7 | 2021-05-17 12:39:07 -0700 | [diff] [blame] | 124 | __u32 ioctl_flags; |
Sargun Dhillon | 7cf97b1 | 2020-06-02 18:10:43 -0700 | [diff] [blame] | 125 | |
Christoph Hellwig | 42eb0d5 | 2021-03-25 09:22:09 +0100 | [diff] [blame] | 126 | union { |
| 127 | bool setfd; |
| 128 | /* To only be set on reply */ |
| 129 | int ret; |
| 130 | }; |
Sargun Dhillon | 7cf97b1 | 2020-06-02 18:10:43 -0700 | [diff] [blame] | 131 | struct completion completion; |
| 132 | struct list_head list; |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 133 | }; |
| 134 | |
| 135 | /** |
| 136 | * struct notification - container for seccomp userspace notifications. Since |
| 137 | * most seccomp filters will not have notification listeners attached and this |
| 138 | * structure is fairly large, we store the notification-specific stuff in a |
| 139 | * separate structure. |
| 140 | * |
| 141 | * @request: A semaphore that users of this notification can wait on for |
| 142 | * changes. Actual reads and writes are still controlled with |
| 143 | * filter->notify_lock. |
| 144 | * @next_id: The id of the next request. |
| 145 | * @notifications: A list of struct seccomp_knotif elements. |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 146 | */ |
| 147 | struct notification { |
| 148 | struct semaphore request; |
| 149 | u64 next_id; |
| 150 | struct list_head notifications; |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 151 | }; |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 152 | |
YiFei Zhu | f9d480b | 2020-10-11 10:47:42 -0500 | [diff] [blame] | 153 | #ifdef SECCOMP_ARCH_NATIVE |
| 154 | /** |
| 155 | * struct action_cache - per-filter cache of seccomp actions per |
| 156 | * arch/syscall pair |
| 157 | * |
| 158 | * @allow_native: A bitmap where each bit represents whether the |
| 159 | * filter will always allow the syscall, for the |
| 160 | * native architecture. |
| 161 | * @allow_compat: A bitmap where each bit represents whether the |
| 162 | * filter will always allow the syscall, for the |
| 163 | * compat architecture. |
| 164 | */ |
| 165 | struct action_cache { |
| 166 | DECLARE_BITMAP(allow_native, SECCOMP_ARCH_NATIVE_NR); |
| 167 | #ifdef SECCOMP_ARCH_COMPAT |
| 168 | DECLARE_BITMAP(allow_compat, SECCOMP_ARCH_COMPAT_NR); |
| 169 | #endif |
| 170 | }; |
| 171 | #else |
| 172 | struct action_cache { }; |
| 173 | |
| 174 | static inline bool seccomp_cache_check_allow(const struct seccomp_filter *sfilter, |
| 175 | const struct seccomp_data *sd) |
| 176 | { |
| 177 | return false; |
| 178 | } |
YiFei Zhu | 8e01b51 | 2020-10-11 10:47:43 -0500 | [diff] [blame] | 179 | |
| 180 | static inline void seccomp_cache_prepare(struct seccomp_filter *sfilter) |
| 181 | { |
| 182 | } |
YiFei Zhu | f9d480b | 2020-10-11 10:47:42 -0500 | [diff] [blame] | 183 | #endif /* SECCOMP_ARCH_NATIVE */ |
| 184 | |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 185 | /** |
| 186 | * struct seccomp_filter - container for seccomp BPF programs |
| 187 | * |
Christian Brauner | b707dde | 2020-05-31 13:50:28 +0200 | [diff] [blame] | 188 | * @refs: Reference count to manage the object lifetime. |
| 189 | * A filter's reference count is incremented for each directly |
| 190 | * attached task, once for the dependent filter, and if |
| 191 | * requested for the user notifier. When @refs reaches zero, |
| 192 | * the filter can be freed. |
Christian Brauner | 99cdb8b | 2020-05-31 13:50:30 +0200 | [diff] [blame] | 193 | * @users: A filter's @users count is incremented for each directly |
| 194 | * attached task (filter installation, fork(), thread_sync), |
| 195 | * and once for the dependent filter (tracked in filter->prev). |
| 196 | * When it reaches zero it indicates that no direct or indirect |
| 197 | * users of that filter exist. No new tasks can get associated with |
| 198 | * this filter after reaching 0. The @users count is always smaller |
| 199 | * or equal to @refs. Hence, reaching 0 for @users does not mean |
| 200 | * the filter can be freed. |
YiFei Zhu | 8e01b51 | 2020-10-11 10:47:43 -0500 | [diff] [blame] | 201 | * @cache: cache of arch/syscall mappings to actions |
Tyler Hicks | e66a399 | 2017-08-11 04:33:56 +0000 | [diff] [blame] | 202 | * @log: true if all actions except for SECCOMP_RET_ALLOW should be logged |
Sargun Dhillon | c2aa2df | 2022-05-03 01:09:56 -0700 | [diff] [blame] | 203 | * @wait_killable_recv: Put notifying process in killable state once the |
| 204 | * notification is received by the userspace listener. |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 205 | * @prev: points to a previously installed, or inherited, filter |
Mickaël Salaün | 285fdfc | 2016-09-20 19:39:47 +0200 | [diff] [blame] | 206 | * @prog: the BPF program to evaluate |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 207 | * @notif: the struct that holds all notification related information |
| 208 | * @notify_lock: A lock for all notification-related accesses. |
Christian Brauner | 76194c4 | 2020-06-01 11:50:07 -0700 | [diff] [blame] | 209 | * @wqh: A wait queue for poll if a notifier is in use. |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 210 | * |
| 211 | * seccomp_filter objects are organized in a tree linked via the @prev |
| 212 | * pointer. For any task, it appears to be a singly-linked list starting |
| 213 | * with current->seccomp.filter, the most recently attached or inherited filter. |
| 214 | * However, multiple filters may share a @prev node, by way of fork(), which |
| 215 | * results in a unidirectional tree existing in memory. This is similar to |
| 216 | * how namespaces work. |
| 217 | * |
| 218 | * seccomp_filter objects should never be modified after being attached |
Christian Brauner | b707dde | 2020-05-31 13:50:28 +0200 | [diff] [blame] | 219 | * to a task_struct (other than @refs). |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 220 | */ |
| 221 | struct seccomp_filter { |
Christian Brauner | b707dde | 2020-05-31 13:50:28 +0200 | [diff] [blame] | 222 | refcount_t refs; |
Christian Brauner | 99cdb8b | 2020-05-31 13:50:30 +0200 | [diff] [blame] | 223 | refcount_t users; |
Tyler Hicks | e66a399 | 2017-08-11 04:33:56 +0000 | [diff] [blame] | 224 | bool log; |
Sargun Dhillon | c2aa2df | 2022-05-03 01:09:56 -0700 | [diff] [blame] | 225 | bool wait_killable_recv; |
YiFei Zhu | 8e01b51 | 2020-10-11 10:47:43 -0500 | [diff] [blame] | 226 | struct action_cache cache; |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 227 | struct seccomp_filter *prev; |
Alexei Starovoitov | 7ae457c | 2014-07-30 20:34:16 -0700 | [diff] [blame] | 228 | struct bpf_prog *prog; |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 229 | struct notification *notif; |
| 230 | struct mutex notify_lock; |
Christian Brauner | 76194c4 | 2020-06-01 11:50:07 -0700 | [diff] [blame] | 231 | wait_queue_head_t wqh; |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 232 | }; |
| 233 | |
| 234 | /* Limit any path through the tree to 256KB worth of instructions. */ |
| 235 | #define MAX_INSNS_PER_PATH ((1 << 18) / sizeof(struct sock_filter)) |
| 236 | |
Alexei Starovoitov | bd4cf0e | 2014-03-28 18:58:25 +0100 | [diff] [blame] | 237 | /* |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 238 | * Endianness is explicitly ignored and left for BPF program authors to manage |
| 239 | * as per the specific architecture. |
| 240 | */ |
Alexei Starovoitov | bd4cf0e | 2014-03-28 18:58:25 +0100 | [diff] [blame] | 241 | static void populate_seccomp_data(struct seccomp_data *sd) |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 242 | { |
Denis Efremov | 2d9ca26 | 2020-08-24 15:59:21 +0300 | [diff] [blame] | 243 | /* |
| 244 | * Instead of using current_pt_reg(), we're already doing the work |
| 245 | * to safely fetch "current", so just use "task" everywhere below. |
| 246 | */ |
Alexei Starovoitov | bd4cf0e | 2014-03-28 18:58:25 +0100 | [diff] [blame] | 247 | struct task_struct *task = current; |
| 248 | struct pt_regs *regs = task_pt_regs(task); |
Daniel Borkmann | 2eac764 | 2014-04-14 21:02:59 +0200 | [diff] [blame] | 249 | unsigned long args[6]; |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 250 | |
Alexei Starovoitov | bd4cf0e | 2014-03-28 18:58:25 +0100 | [diff] [blame] | 251 | sd->nr = syscall_get_nr(task, regs); |
Dmitry V. Levin | 16add41 | 2019-03-18 02:30:18 +0300 | [diff] [blame] | 252 | sd->arch = syscall_get_arch(task); |
Steven Rostedt (Red Hat) | b35f549 | 2016-11-07 16:26:37 -0500 | [diff] [blame] | 253 | syscall_get_arguments(task, regs, args); |
Daniel Borkmann | 2eac764 | 2014-04-14 21:02:59 +0200 | [diff] [blame] | 254 | sd->args[0] = args[0]; |
| 255 | sd->args[1] = args[1]; |
| 256 | sd->args[2] = args[2]; |
| 257 | sd->args[3] = args[3]; |
| 258 | sd->args[4] = args[4]; |
| 259 | sd->args[5] = args[5]; |
Alexei Starovoitov | bd4cf0e | 2014-03-28 18:58:25 +0100 | [diff] [blame] | 260 | sd->instruction_pointer = KSTK_EIP(task); |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 261 | } |
| 262 | |
| 263 | /** |
| 264 | * seccomp_check_filter - verify seccomp filter code |
| 265 | * @filter: filter to verify |
| 266 | * @flen: length of filter |
| 267 | * |
Alexei Starovoitov | 4df95ff | 2014-07-30 20:34:14 -0700 | [diff] [blame] | 268 | * Takes a previously checked filter (by bpf_check_classic) and |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 269 | * redirects all filter code that loads struct sk_buff data |
| 270 | * and related data through seccomp_bpf_load. It also |
| 271 | * enforces length and alignment checking of those loads. |
| 272 | * |
| 273 | * Returns 0 if the rule set is legal or -EINVAL if not. |
| 274 | */ |
| 275 | static int seccomp_check_filter(struct sock_filter *filter, unsigned int flen) |
| 276 | { |
| 277 | int pc; |
| 278 | for (pc = 0; pc < flen; pc++) { |
| 279 | struct sock_filter *ftest = &filter[pc]; |
| 280 | u16 code = ftest->code; |
| 281 | u32 k = ftest->k; |
| 282 | |
| 283 | switch (code) { |
Daniel Borkmann | 3480593 | 2014-05-29 10:22:50 +0200 | [diff] [blame] | 284 | case BPF_LD | BPF_W | BPF_ABS: |
Alexei Starovoitov | bd4cf0e | 2014-03-28 18:58:25 +0100 | [diff] [blame] | 285 | ftest->code = BPF_LDX | BPF_W | BPF_ABS; |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 286 | /* 32-bit aligned and not out of bounds. */ |
| 287 | if (k >= sizeof(struct seccomp_data) || k & 3) |
| 288 | return -EINVAL; |
| 289 | continue; |
Daniel Borkmann | 3480593 | 2014-05-29 10:22:50 +0200 | [diff] [blame] | 290 | case BPF_LD | BPF_W | BPF_LEN: |
Alexei Starovoitov | bd4cf0e | 2014-03-28 18:58:25 +0100 | [diff] [blame] | 291 | ftest->code = BPF_LD | BPF_IMM; |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 292 | ftest->k = sizeof(struct seccomp_data); |
| 293 | continue; |
Daniel Borkmann | 3480593 | 2014-05-29 10:22:50 +0200 | [diff] [blame] | 294 | case BPF_LDX | BPF_W | BPF_LEN: |
Alexei Starovoitov | bd4cf0e | 2014-03-28 18:58:25 +0100 | [diff] [blame] | 295 | ftest->code = BPF_LDX | BPF_IMM; |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 296 | ftest->k = sizeof(struct seccomp_data); |
| 297 | continue; |
| 298 | /* Explicitly include allowed calls. */ |
Daniel Borkmann | 3480593 | 2014-05-29 10:22:50 +0200 | [diff] [blame] | 299 | case BPF_RET | BPF_K: |
| 300 | case BPF_RET | BPF_A: |
| 301 | case BPF_ALU | BPF_ADD | BPF_K: |
| 302 | case BPF_ALU | BPF_ADD | BPF_X: |
| 303 | case BPF_ALU | BPF_SUB | BPF_K: |
| 304 | case BPF_ALU | BPF_SUB | BPF_X: |
| 305 | case BPF_ALU | BPF_MUL | BPF_K: |
| 306 | case BPF_ALU | BPF_MUL | BPF_X: |
| 307 | case BPF_ALU | BPF_DIV | BPF_K: |
| 308 | case BPF_ALU | BPF_DIV | BPF_X: |
| 309 | case BPF_ALU | BPF_AND | BPF_K: |
| 310 | case BPF_ALU | BPF_AND | BPF_X: |
| 311 | case BPF_ALU | BPF_OR | BPF_K: |
| 312 | case BPF_ALU | BPF_OR | BPF_X: |
| 313 | case BPF_ALU | BPF_XOR | BPF_K: |
| 314 | case BPF_ALU | BPF_XOR | BPF_X: |
| 315 | case BPF_ALU | BPF_LSH | BPF_K: |
| 316 | case BPF_ALU | BPF_LSH | BPF_X: |
| 317 | case BPF_ALU | BPF_RSH | BPF_K: |
| 318 | case BPF_ALU | BPF_RSH | BPF_X: |
| 319 | case BPF_ALU | BPF_NEG: |
| 320 | case BPF_LD | BPF_IMM: |
| 321 | case BPF_LDX | BPF_IMM: |
| 322 | case BPF_MISC | BPF_TAX: |
| 323 | case BPF_MISC | BPF_TXA: |
| 324 | case BPF_LD | BPF_MEM: |
| 325 | case BPF_LDX | BPF_MEM: |
| 326 | case BPF_ST: |
| 327 | case BPF_STX: |
| 328 | case BPF_JMP | BPF_JA: |
| 329 | case BPF_JMP | BPF_JEQ | BPF_K: |
| 330 | case BPF_JMP | BPF_JEQ | BPF_X: |
| 331 | case BPF_JMP | BPF_JGE | BPF_K: |
| 332 | case BPF_JMP | BPF_JGE | BPF_X: |
| 333 | case BPF_JMP | BPF_JGT | BPF_K: |
| 334 | case BPF_JMP | BPF_JGT | BPF_X: |
| 335 | case BPF_JMP | BPF_JSET | BPF_K: |
| 336 | case BPF_JMP | BPF_JSET | BPF_X: |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 337 | continue; |
| 338 | default: |
| 339 | return -EINVAL; |
| 340 | } |
| 341 | } |
| 342 | return 0; |
| 343 | } |
| 344 | |
YiFei Zhu | f9d480b | 2020-10-11 10:47:42 -0500 | [diff] [blame] | 345 | #ifdef SECCOMP_ARCH_NATIVE |
| 346 | static inline bool seccomp_cache_check_allow_bitmap(const void *bitmap, |
| 347 | size_t bitmap_size, |
| 348 | int syscall_nr) |
| 349 | { |
| 350 | if (unlikely(syscall_nr < 0 || syscall_nr >= bitmap_size)) |
| 351 | return false; |
| 352 | syscall_nr = array_index_nospec(syscall_nr, bitmap_size); |
| 353 | |
| 354 | return test_bit(syscall_nr, bitmap); |
| 355 | } |
| 356 | |
| 357 | /** |
| 358 | * seccomp_cache_check_allow - lookup seccomp cache |
| 359 | * @sfilter: The seccomp filter |
| 360 | * @sd: The seccomp data to lookup the cache with |
| 361 | * |
| 362 | * Returns true if the seccomp_data is cached and allowed. |
| 363 | */ |
| 364 | static inline bool seccomp_cache_check_allow(const struct seccomp_filter *sfilter, |
| 365 | const struct seccomp_data *sd) |
| 366 | { |
| 367 | int syscall_nr = sd->nr; |
| 368 | const struct action_cache *cache = &sfilter->cache; |
| 369 | |
| 370 | #ifndef SECCOMP_ARCH_COMPAT |
| 371 | /* A native-only architecture doesn't need to check sd->arch. */ |
| 372 | return seccomp_cache_check_allow_bitmap(cache->allow_native, |
| 373 | SECCOMP_ARCH_NATIVE_NR, |
| 374 | syscall_nr); |
| 375 | #else |
| 376 | if (likely(sd->arch == SECCOMP_ARCH_NATIVE)) |
| 377 | return seccomp_cache_check_allow_bitmap(cache->allow_native, |
| 378 | SECCOMP_ARCH_NATIVE_NR, |
| 379 | syscall_nr); |
| 380 | if (likely(sd->arch == SECCOMP_ARCH_COMPAT)) |
| 381 | return seccomp_cache_check_allow_bitmap(cache->allow_compat, |
| 382 | SECCOMP_ARCH_COMPAT_NR, |
| 383 | syscall_nr); |
| 384 | #endif /* SECCOMP_ARCH_COMPAT */ |
| 385 | |
| 386 | WARN_ON_ONCE(true); |
| 387 | return false; |
| 388 | } |
| 389 | #endif /* SECCOMP_ARCH_NATIVE */ |
| 390 | |
Randy Dunlap | 0fb0624 | 2023-01-07 18:12:28 -0800 | [diff] [blame] | 391 | #define ACTION_ONLY(ret) ((s32)((ret) & (SECCOMP_RET_ACTION_FULL))) |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 392 | /** |
Mickaël Salaün | 285fdfc | 2016-09-20 19:39:47 +0200 | [diff] [blame] | 393 | * seccomp_run_filters - evaluates all seccomp filters against @sd |
| 394 | * @sd: optional seccomp data to be passed to filters |
Kees Cook | deb4de8 | 2017-08-02 15:00:40 -0700 | [diff] [blame] | 395 | * @match: stores struct seccomp_filter that resulted in the return value, |
| 396 | * unless filter returned SECCOMP_RET_ALLOW, in which case it will |
| 397 | * be unchanged. |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 398 | * |
| 399 | * Returns valid seccomp BPF response codes. |
| 400 | */ |
Kees Cook | deb4de8 | 2017-08-02 15:00:40 -0700 | [diff] [blame] | 401 | static u32 seccomp_run_filters(const struct seccomp_data *sd, |
| 402 | struct seccomp_filter **match) |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 403 | { |
Will Drewry | acf3b2c | 2012-04-12 16:47:59 -0500 | [diff] [blame] | 404 | u32 ret = SECCOMP_RET_ALLOW; |
Pranith Kumar | 8225d38 | 2014-11-21 10:06:01 -0500 | [diff] [blame] | 405 | /* Make sure cross-thread synced filter points somewhere sane. */ |
| 406 | struct seccomp_filter *f = |
Will Deacon | 506458e | 2017-10-24 11:22:48 +0100 | [diff] [blame] | 407 | READ_ONCE(current->seccomp.filter); |
Will Drewry | acf3b2c | 2012-04-12 16:47:59 -0500 | [diff] [blame] | 408 | |
| 409 | /* Ensure unexpected behavior doesn't result in failing open. */ |
Igor Stoppa | 0d42d73 | 2018-09-05 23:34:43 +0300 | [diff] [blame] | 410 | if (WARN_ON(f == NULL)) |
Kees Cook | 4d3b0b0 | 2017-08-11 13:01:39 -0700 | [diff] [blame] | 411 | return SECCOMP_RET_KILL_PROCESS; |
Will Drewry | acf3b2c | 2012-04-12 16:47:59 -0500 | [diff] [blame] | 412 | |
YiFei Zhu | f9d480b | 2020-10-11 10:47:42 -0500 | [diff] [blame] | 413 | if (seccomp_cache_check_allow(f, sd)) |
| 414 | return SECCOMP_RET_ALLOW; |
| 415 | |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 416 | /* |
| 417 | * All filters in the list are evaluated and the lowest BPF return |
Will Drewry | acf3b2c | 2012-04-12 16:47:59 -0500 | [diff] [blame] | 418 | * value always takes priority (ignoring the DATA). |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 419 | */ |
Kees Cook | 3ba2530 | 2014-06-27 15:01:35 -0700 | [diff] [blame] | 420 | for (; f; f = f->prev) { |
David Miller | 3d9f773c | 2020-02-24 15:01:43 +0100 | [diff] [blame] | 421 | u32 cur_ret = bpf_prog_run_pin_on_cpu(f->prog, sd); |
Alexei Starovoitov | 8f577ca | 2014-05-13 19:50:47 -0700 | [diff] [blame] | 422 | |
Kees Cook | 0466bdb | 2017-08-11 13:12:11 -0700 | [diff] [blame] | 423 | if (ACTION_ONLY(cur_ret) < ACTION_ONLY(ret)) { |
Will Drewry | acf3b2c | 2012-04-12 16:47:59 -0500 | [diff] [blame] | 424 | ret = cur_ret; |
Kees Cook | deb4de8 | 2017-08-02 15:00:40 -0700 | [diff] [blame] | 425 | *match = f; |
| 426 | } |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 427 | } |
| 428 | return ret; |
| 429 | } |
Kees Cook | 1f41b450 | 2014-06-25 15:38:02 -0700 | [diff] [blame] | 430 | #endif /* CONFIG_SECCOMP_FILTER */ |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 431 | |
Kees Cook | 1f41b450 | 2014-06-25 15:38:02 -0700 | [diff] [blame] | 432 | static inline bool seccomp_may_assign_mode(unsigned long seccomp_mode) |
| 433 | { |
Guenter Roeck | 69f6a34 | 2014-08-10 20:50:30 -0700 | [diff] [blame] | 434 | assert_spin_locked(¤t->sighand->siglock); |
Kees Cook | dbd95212 | 2014-06-27 15:18:48 -0700 | [diff] [blame] | 435 | |
Kees Cook | 1f41b450 | 2014-06-25 15:38:02 -0700 | [diff] [blame] | 436 | if (current->seccomp.mode && current->seccomp.mode != seccomp_mode) |
| 437 | return false; |
| 438 | |
| 439 | return true; |
| 440 | } |
| 441 | |
Thomas Gleixner | 8bf37d8 | 2018-05-04 15:12:06 +0200 | [diff] [blame] | 442 | void __weak arch_seccomp_spec_mitigate(struct task_struct *task) { } |
Kees Cook | 5c30708 | 2018-05-01 15:07:31 -0700 | [diff] [blame] | 443 | |
Kees Cook | 3ba2530 | 2014-06-27 15:01:35 -0700 | [diff] [blame] | 444 | static inline void seccomp_assign_mode(struct task_struct *task, |
Kees Cook | 00a02d0 | 2018-05-03 14:56:12 -0700 | [diff] [blame] | 445 | unsigned long seccomp_mode, |
| 446 | unsigned long flags) |
Kees Cook | 1f41b450 | 2014-06-25 15:38:02 -0700 | [diff] [blame] | 447 | { |
Guenter Roeck | 69f6a34 | 2014-08-10 20:50:30 -0700 | [diff] [blame] | 448 | assert_spin_locked(&task->sighand->siglock); |
Kees Cook | dbd95212 | 2014-06-27 15:18:48 -0700 | [diff] [blame] | 449 | |
Kees Cook | 3ba2530 | 2014-06-27 15:01:35 -0700 | [diff] [blame] | 450 | task->seccomp.mode = seccomp_mode; |
| 451 | /* |
Gabriel Krisman Bertazi | 23d67a5 | 2020-11-16 12:42:00 -0500 | [diff] [blame] | 452 | * Make sure SYSCALL_WORK_SECCOMP cannot be set before the mode (and |
Kees Cook | 3ba2530 | 2014-06-27 15:01:35 -0700 | [diff] [blame] | 453 | * filter) is set. |
| 454 | */ |
| 455 | smp_mb__before_atomic(); |
Kees Cook | 00a02d0 | 2018-05-03 14:56:12 -0700 | [diff] [blame] | 456 | /* Assume default seccomp processes want spec flaw mitigation. */ |
| 457 | if ((flags & SECCOMP_FILTER_FLAG_SPEC_ALLOW) == 0) |
Thomas Gleixner | 8bf37d8 | 2018-05-04 15:12:06 +0200 | [diff] [blame] | 458 | arch_seccomp_spec_mitigate(task); |
Gabriel Krisman Bertazi | 23d67a5 | 2020-11-16 12:42:00 -0500 | [diff] [blame] | 459 | set_task_syscall_work(task, SECCOMP); |
Kees Cook | 1f41b450 | 2014-06-25 15:38:02 -0700 | [diff] [blame] | 460 | } |
| 461 | |
| 462 | #ifdef CONFIG_SECCOMP_FILTER |
Kees Cook | c2e1f2e | 2014-06-05 00:23:17 -0700 | [diff] [blame] | 463 | /* Returns 1 if the parent is an ancestor of the child. */ |
| 464 | static int is_ancestor(struct seccomp_filter *parent, |
| 465 | struct seccomp_filter *child) |
| 466 | { |
| 467 | /* NULL is the root ancestor. */ |
| 468 | if (parent == NULL) |
| 469 | return 1; |
| 470 | for (; child; child = child->prev) |
| 471 | if (child == parent) |
| 472 | return 1; |
| 473 | return 0; |
| 474 | } |
| 475 | |
| 476 | /** |
| 477 | * seccomp_can_sync_threads: checks if all threads can be synchronized |
| 478 | * |
| 479 | * Expects sighand and cred_guard_mutex locks to be held. |
| 480 | * |
| 481 | * Returns 0 on success, -ve on error, or the pid of a thread which was |
Tycho Andersen | 6beff00 | 2019-03-06 13:14:12 -0700 | [diff] [blame] | 482 | * either not in the correct seccomp mode or did not have an ancestral |
Kees Cook | c2e1f2e | 2014-06-05 00:23:17 -0700 | [diff] [blame] | 483 | * seccomp filter. |
| 484 | */ |
| 485 | static inline pid_t seccomp_can_sync_threads(void) |
| 486 | { |
| 487 | struct task_struct *thread, *caller; |
| 488 | |
| 489 | BUG_ON(!mutex_is_locked(¤t->signal->cred_guard_mutex)); |
Guenter Roeck | 69f6a34 | 2014-08-10 20:50:30 -0700 | [diff] [blame] | 490 | assert_spin_locked(¤t->sighand->siglock); |
Kees Cook | c2e1f2e | 2014-06-05 00:23:17 -0700 | [diff] [blame] | 491 | |
| 492 | /* Validate all threads being eligible for synchronization. */ |
| 493 | caller = current; |
| 494 | for_each_thread(caller, thread) { |
| 495 | pid_t failed; |
| 496 | |
| 497 | /* Skip current, since it is initiating the sync. */ |
| 498 | if (thread == caller) |
| 499 | continue; |
| 500 | |
| 501 | if (thread->seccomp.mode == SECCOMP_MODE_DISABLED || |
| 502 | (thread->seccomp.mode == SECCOMP_MODE_FILTER && |
| 503 | is_ancestor(thread->seccomp.filter, |
| 504 | caller->seccomp.filter))) |
| 505 | continue; |
| 506 | |
| 507 | /* Return the first thread that cannot be synchronized. */ |
| 508 | failed = task_pid_vnr(thread); |
| 509 | /* If the pid cannot be resolved, then return -ESRCH */ |
Igor Stoppa | 0d42d73 | 2018-09-05 23:34:43 +0300 | [diff] [blame] | 510 | if (WARN_ON(failed == 0)) |
Kees Cook | c2e1f2e | 2014-06-05 00:23:17 -0700 | [diff] [blame] | 511 | failed = -ESRCH; |
| 512 | return failed; |
| 513 | } |
| 514 | |
| 515 | return 0; |
| 516 | } |
| 517 | |
Christian Brauner | 3a15fb6 | 2020-05-31 13:50:29 +0200 | [diff] [blame] | 518 | static inline void seccomp_filter_free(struct seccomp_filter *filter) |
| 519 | { |
| 520 | if (filter) { |
| 521 | bpf_prog_destroy(filter->prog); |
| 522 | kfree(filter); |
| 523 | } |
| 524 | } |
| 525 | |
Christian Brauner | 99cdb8b | 2020-05-31 13:50:30 +0200 | [diff] [blame] | 526 | static void __seccomp_filter_orphan(struct seccomp_filter *orig) |
| 527 | { |
| 528 | while (orig && refcount_dec_and_test(&orig->users)) { |
| 529 | if (waitqueue_active(&orig->wqh)) |
| 530 | wake_up_poll(&orig->wqh, EPOLLHUP); |
| 531 | orig = orig->prev; |
| 532 | } |
| 533 | } |
| 534 | |
Christian Brauner | 3a15fb6 | 2020-05-31 13:50:29 +0200 | [diff] [blame] | 535 | static void __put_seccomp_filter(struct seccomp_filter *orig) |
| 536 | { |
| 537 | /* Clean up single-reference branches iteratively. */ |
| 538 | while (orig && refcount_dec_and_test(&orig->refs)) { |
| 539 | struct seccomp_filter *freeme = orig; |
| 540 | orig = orig->prev; |
| 541 | seccomp_filter_free(freeme); |
| 542 | } |
| 543 | } |
| 544 | |
Christian Brauner | 99cdb8b | 2020-05-31 13:50:30 +0200 | [diff] [blame] | 545 | static void __seccomp_filter_release(struct seccomp_filter *orig) |
| 546 | { |
| 547 | /* Notify about any unused filters in the task's former filter tree. */ |
| 548 | __seccomp_filter_orphan(orig); |
| 549 | /* Finally drop all references to the task's former tree. */ |
| 550 | __put_seccomp_filter(orig); |
| 551 | } |
| 552 | |
Christian Brauner | 3a15fb6 | 2020-05-31 13:50:29 +0200 | [diff] [blame] | 553 | /** |
Christian Brauner | 99cdb8b | 2020-05-31 13:50:30 +0200 | [diff] [blame] | 554 | * seccomp_filter_release - Detach the task from its filter tree, |
| 555 | * drop its reference count, and notify |
| 556 | * about unused filters |
Christian Brauner | 3a15fb6 | 2020-05-31 13:50:29 +0200 | [diff] [blame] | 557 | * |
| 558 | * This function should only be called when the task is exiting as |
| 559 | * it detaches it from its filter tree. As such, READ_ONCE() and |
| 560 | * barriers are not needed here, as would normally be needed. |
| 561 | */ |
| 562 | void seccomp_filter_release(struct task_struct *tsk) |
| 563 | { |
| 564 | struct seccomp_filter *orig = tsk->seccomp.filter; |
| 565 | |
YiFei Zhu | 0d8315d | 2020-11-11 07:33:54 -0600 | [diff] [blame] | 566 | /* We are effectively holding the siglock by not having any sighand. */ |
| 567 | WARN_ON(tsk->sighand != NULL); |
| 568 | |
Christian Brauner | 3a15fb6 | 2020-05-31 13:50:29 +0200 | [diff] [blame] | 569 | /* Detach task from its filter tree. */ |
| 570 | tsk->seccomp.filter = NULL; |
Christian Brauner | 99cdb8b | 2020-05-31 13:50:30 +0200 | [diff] [blame] | 571 | __seccomp_filter_release(orig); |
Christian Brauner | 3a15fb6 | 2020-05-31 13:50:29 +0200 | [diff] [blame] | 572 | } |
| 573 | |
Kees Cook | c2e1f2e | 2014-06-05 00:23:17 -0700 | [diff] [blame] | 574 | /** |
| 575 | * seccomp_sync_threads: sets all threads to use current's filter |
| 576 | * |
| 577 | * Expects sighand and cred_guard_mutex locks to be held, and for |
| 578 | * seccomp_can_sync_threads() to have returned success already |
| 579 | * without dropping the locks. |
| 580 | * |
| 581 | */ |
Kees Cook | 00a02d0 | 2018-05-03 14:56:12 -0700 | [diff] [blame] | 582 | static inline void seccomp_sync_threads(unsigned long flags) |
Kees Cook | c2e1f2e | 2014-06-05 00:23:17 -0700 | [diff] [blame] | 583 | { |
| 584 | struct task_struct *thread, *caller; |
| 585 | |
| 586 | BUG_ON(!mutex_is_locked(¤t->signal->cred_guard_mutex)); |
Guenter Roeck | 69f6a34 | 2014-08-10 20:50:30 -0700 | [diff] [blame] | 587 | assert_spin_locked(¤t->sighand->siglock); |
Kees Cook | c2e1f2e | 2014-06-05 00:23:17 -0700 | [diff] [blame] | 588 | |
| 589 | /* Synchronize all threads. */ |
| 590 | caller = current; |
| 591 | for_each_thread(caller, thread) { |
| 592 | /* Skip current, since it needs no changes. */ |
| 593 | if (thread == caller) |
| 594 | continue; |
| 595 | |
| 596 | /* Get a task reference for the new leaf node. */ |
| 597 | get_seccomp_filter(caller); |
Christian Brauner | 99cdb8b | 2020-05-31 13:50:30 +0200 | [diff] [blame] | 598 | |
Kees Cook | c2e1f2e | 2014-06-05 00:23:17 -0700 | [diff] [blame] | 599 | /* |
| 600 | * Drop the task reference to the shared ancestor since |
| 601 | * current's path will hold a reference. (This also |
| 602 | * allows a put before the assignment.) |
| 603 | */ |
Christian Brauner | 99cdb8b | 2020-05-31 13:50:30 +0200 | [diff] [blame] | 604 | __seccomp_filter_release(thread->seccomp.filter); |
| 605 | |
| 606 | /* Make our new filter tree visible. */ |
Kees Cook | c2e1f2e | 2014-06-05 00:23:17 -0700 | [diff] [blame] | 607 | smp_store_release(&thread->seccomp.filter, |
| 608 | caller->seccomp.filter); |
Kees Cook | c818c03 | 2020-05-13 14:11:26 -0700 | [diff] [blame] | 609 | atomic_set(&thread->seccomp.filter_count, |
Hsuan-Chi Kuo | b4d8a58 | 2021-03-04 17:37:08 -0600 | [diff] [blame] | 610 | atomic_read(&caller->seccomp.filter_count)); |
Jann Horn | 103502a | 2015-12-26 06:00:48 +0100 | [diff] [blame] | 611 | |
| 612 | /* |
| 613 | * Don't let an unprivileged task work around |
| 614 | * the no_new_privs restriction by creating |
| 615 | * a thread that sets it up, enters seccomp, |
| 616 | * then dies. |
| 617 | */ |
| 618 | if (task_no_new_privs(caller)) |
| 619 | task_set_no_new_privs(thread); |
| 620 | |
Kees Cook | c2e1f2e | 2014-06-05 00:23:17 -0700 | [diff] [blame] | 621 | /* |
| 622 | * Opt the other thread into seccomp if needed. |
| 623 | * As threads are considered to be trust-realm |
| 624 | * equivalent (see ptrace_may_access), it is safe to |
| 625 | * allow one thread to transition the other. |
| 626 | */ |
Jann Horn | 103502a | 2015-12-26 06:00:48 +0100 | [diff] [blame] | 627 | if (thread->seccomp.mode == SECCOMP_MODE_DISABLED) |
Kees Cook | 00a02d0 | 2018-05-03 14:56:12 -0700 | [diff] [blame] | 628 | seccomp_assign_mode(thread, SECCOMP_MODE_FILTER, |
| 629 | flags); |
Kees Cook | c2e1f2e | 2014-06-05 00:23:17 -0700 | [diff] [blame] | 630 | } |
| 631 | } |
| 632 | |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 633 | /** |
Kees Cook | c8bee43 | 2014-06-27 15:16:33 -0700 | [diff] [blame] | 634 | * seccomp_prepare_filter: Prepares a seccomp filter for use. |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 635 | * @fprog: BPF program to install |
| 636 | * |
Kees Cook | c8bee43 | 2014-06-27 15:16:33 -0700 | [diff] [blame] | 637 | * Returns filter on success or an ERR_PTR on failure. |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 638 | */ |
Kees Cook | c8bee43 | 2014-06-27 15:16:33 -0700 | [diff] [blame] | 639 | static struct seccomp_filter *seccomp_prepare_filter(struct sock_fprog *fprog) |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 640 | { |
Daniel Borkmann | ac67eb2 | 2015-05-06 16:12:30 +0200 | [diff] [blame] | 641 | struct seccomp_filter *sfilter; |
| 642 | int ret; |
YiFei Zhu | 8e01b51 | 2020-10-11 10:47:43 -0500 | [diff] [blame] | 643 | const bool save_orig = |
| 644 | #if defined(CONFIG_CHECKPOINT_RESTORE) || defined(SECCOMP_ARCH_NATIVE) |
| 645 | true; |
| 646 | #else |
| 647 | false; |
| 648 | #endif |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 649 | |
| 650 | if (fprog->len == 0 || fprog->len > BPF_MAXINSNS) |
Kees Cook | c8bee43 | 2014-06-27 15:16:33 -0700 | [diff] [blame] | 651 | return ERR_PTR(-EINVAL); |
Nicolas Schichan | d9e12f42e | 2015-05-06 16:12:28 +0200 | [diff] [blame] | 652 | |
Kees Cook | c8bee43 | 2014-06-27 15:16:33 -0700 | [diff] [blame] | 653 | BUG_ON(INT_MAX / fprog->len < sizeof(struct sock_filter)); |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 654 | |
| 655 | /* |
Fabian Frederick | 119ce5c | 2014-06-06 14:37:53 -0700 | [diff] [blame] | 656 | * Installing a seccomp filter requires that the task has |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 657 | * CAP_SYS_ADMIN in its namespace or be running with no_new_privs. |
| 658 | * This avoids scenarios where unprivileged tasks can affect the |
| 659 | * behavior of privileged children. |
| 660 | */ |
Kees Cook | 1d4457f | 2014-05-21 15:23:46 -0700 | [diff] [blame] | 661 | if (!task_no_new_privs(current) && |
Mickaël Salaün | fb14528 | 2020-10-30 13:38:49 +0100 | [diff] [blame] | 662 | !ns_capable_noaudit(current_user_ns(), CAP_SYS_ADMIN)) |
Kees Cook | c8bee43 | 2014-06-27 15:16:33 -0700 | [diff] [blame] | 663 | return ERR_PTR(-EACCES); |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 664 | |
Alexei Starovoitov | bd4cf0e | 2014-03-28 18:58:25 +0100 | [diff] [blame] | 665 | /* Allocate a new seccomp_filter */ |
Daniel Borkmann | ac67eb2 | 2015-05-06 16:12:30 +0200 | [diff] [blame] | 666 | sfilter = kzalloc(sizeof(*sfilter), GFP_KERNEL | __GFP_NOWARN); |
| 667 | if (!sfilter) |
Nicolas Schichan | d9e12f42e | 2015-05-06 16:12:28 +0200 | [diff] [blame] | 668 | return ERR_PTR(-ENOMEM); |
Daniel Borkmann | ac67eb2 | 2015-05-06 16:12:30 +0200 | [diff] [blame] | 669 | |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 670 | mutex_init(&sfilter->notify_lock); |
Daniel Borkmann | ac67eb2 | 2015-05-06 16:12:30 +0200 | [diff] [blame] | 671 | ret = bpf_prog_create_from_user(&sfilter->prog, fprog, |
Tycho Andersen | f8e529ed | 2015-10-27 09:23:59 +0900 | [diff] [blame] | 672 | seccomp_check_filter, save_orig); |
Daniel Borkmann | ac67eb2 | 2015-05-06 16:12:30 +0200 | [diff] [blame] | 673 | if (ret < 0) { |
| 674 | kfree(sfilter); |
| 675 | return ERR_PTR(ret); |
Nicolas Schichan | d9e12f42e | 2015-05-06 16:12:28 +0200 | [diff] [blame] | 676 | } |
Alexei Starovoitov | bd4cf0e | 2014-03-28 18:58:25 +0100 | [diff] [blame] | 677 | |
Christian Brauner | b707dde | 2020-05-31 13:50:28 +0200 | [diff] [blame] | 678 | refcount_set(&sfilter->refs, 1); |
Christian Brauner | 99cdb8b | 2020-05-31 13:50:30 +0200 | [diff] [blame] | 679 | refcount_set(&sfilter->users, 1); |
Christian Brauner | 76194c4 | 2020-06-01 11:50:07 -0700 | [diff] [blame] | 680 | init_waitqueue_head(&sfilter->wqh); |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 681 | |
Daniel Borkmann | ac67eb2 | 2015-05-06 16:12:30 +0200 | [diff] [blame] | 682 | return sfilter; |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 683 | } |
| 684 | |
| 685 | /** |
Kees Cook | c8bee43 | 2014-06-27 15:16:33 -0700 | [diff] [blame] | 686 | * seccomp_prepare_user_filter - prepares a user-supplied sock_fprog |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 687 | * @user_filter: pointer to the user data containing a sock_fprog. |
| 688 | * |
| 689 | * Returns 0 on success and non-zero otherwise. |
| 690 | */ |
Kees Cook | c8bee43 | 2014-06-27 15:16:33 -0700 | [diff] [blame] | 691 | static struct seccomp_filter * |
| 692 | seccomp_prepare_user_filter(const char __user *user_filter) |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 693 | { |
| 694 | struct sock_fprog fprog; |
Kees Cook | c8bee43 | 2014-06-27 15:16:33 -0700 | [diff] [blame] | 695 | struct seccomp_filter *filter = ERR_PTR(-EFAULT); |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 696 | |
| 697 | #ifdef CONFIG_COMPAT |
Andy Lutomirski | 5c38065 | 2016-03-22 14:24:52 -0700 | [diff] [blame] | 698 | if (in_compat_syscall()) { |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 699 | struct compat_sock_fprog fprog32; |
| 700 | if (copy_from_user(&fprog32, user_filter, sizeof(fprog32))) |
| 701 | goto out; |
| 702 | fprog.len = fprog32.len; |
| 703 | fprog.filter = compat_ptr(fprog32.filter); |
| 704 | } else /* falls through to the if below. */ |
| 705 | #endif |
| 706 | if (copy_from_user(&fprog, user_filter, sizeof(fprog))) |
| 707 | goto out; |
Kees Cook | c8bee43 | 2014-06-27 15:16:33 -0700 | [diff] [blame] | 708 | filter = seccomp_prepare_filter(&fprog); |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 709 | out: |
Kees Cook | c8bee43 | 2014-06-27 15:16:33 -0700 | [diff] [blame] | 710 | return filter; |
| 711 | } |
| 712 | |
YiFei Zhu | 8e01b51 | 2020-10-11 10:47:43 -0500 | [diff] [blame] | 713 | #ifdef SECCOMP_ARCH_NATIVE |
| 714 | /** |
| 715 | * seccomp_is_const_allow - check if filter is constant allow with given data |
| 716 | * @fprog: The BPF programs |
| 717 | * @sd: The seccomp data to check against, only syscall number and arch |
| 718 | * number are considered constant. |
| 719 | */ |
| 720 | static bool seccomp_is_const_allow(struct sock_fprog_kern *fprog, |
| 721 | struct seccomp_data *sd) |
| 722 | { |
| 723 | unsigned int reg_value = 0; |
| 724 | unsigned int pc; |
| 725 | bool op_res; |
| 726 | |
| 727 | if (WARN_ON_ONCE(!fprog)) |
| 728 | return false; |
| 729 | |
| 730 | for (pc = 0; pc < fprog->len; pc++) { |
| 731 | struct sock_filter *insn = &fprog->filter[pc]; |
| 732 | u16 code = insn->code; |
| 733 | u32 k = insn->k; |
| 734 | |
| 735 | switch (code) { |
| 736 | case BPF_LD | BPF_W | BPF_ABS: |
| 737 | switch (k) { |
| 738 | case offsetof(struct seccomp_data, nr): |
| 739 | reg_value = sd->nr; |
| 740 | break; |
| 741 | case offsetof(struct seccomp_data, arch): |
| 742 | reg_value = sd->arch; |
| 743 | break; |
| 744 | default: |
| 745 | /* can't optimize (non-constant value load) */ |
| 746 | return false; |
| 747 | } |
| 748 | break; |
| 749 | case BPF_RET | BPF_K: |
| 750 | /* reached return with constant values only, check allow */ |
| 751 | return k == SECCOMP_RET_ALLOW; |
| 752 | case BPF_JMP | BPF_JA: |
| 753 | pc += insn->k; |
| 754 | break; |
| 755 | case BPF_JMP | BPF_JEQ | BPF_K: |
| 756 | case BPF_JMP | BPF_JGE | BPF_K: |
| 757 | case BPF_JMP | BPF_JGT | BPF_K: |
| 758 | case BPF_JMP | BPF_JSET | BPF_K: |
| 759 | switch (BPF_OP(code)) { |
| 760 | case BPF_JEQ: |
| 761 | op_res = reg_value == k; |
| 762 | break; |
| 763 | case BPF_JGE: |
| 764 | op_res = reg_value >= k; |
| 765 | break; |
| 766 | case BPF_JGT: |
| 767 | op_res = reg_value > k; |
| 768 | break; |
| 769 | case BPF_JSET: |
| 770 | op_res = !!(reg_value & k); |
| 771 | break; |
| 772 | default: |
| 773 | /* can't optimize (unknown jump) */ |
| 774 | return false; |
| 775 | } |
| 776 | |
| 777 | pc += op_res ? insn->jt : insn->jf; |
| 778 | break; |
| 779 | case BPF_ALU | BPF_AND | BPF_K: |
| 780 | reg_value &= k; |
| 781 | break; |
| 782 | default: |
| 783 | /* can't optimize (unknown insn) */ |
| 784 | return false; |
| 785 | } |
| 786 | } |
| 787 | |
| 788 | /* ran off the end of the filter?! */ |
| 789 | WARN_ON(1); |
| 790 | return false; |
| 791 | } |
| 792 | |
| 793 | static void seccomp_cache_prepare_bitmap(struct seccomp_filter *sfilter, |
| 794 | void *bitmap, const void *bitmap_prev, |
| 795 | size_t bitmap_size, int arch) |
| 796 | { |
| 797 | struct sock_fprog_kern *fprog = sfilter->prog->orig_prog; |
| 798 | struct seccomp_data sd; |
| 799 | int nr; |
| 800 | |
| 801 | if (bitmap_prev) { |
| 802 | /* The new filter must be as restrictive as the last. */ |
| 803 | bitmap_copy(bitmap, bitmap_prev, bitmap_size); |
| 804 | } else { |
| 805 | /* Before any filters, all syscalls are always allowed. */ |
| 806 | bitmap_fill(bitmap, bitmap_size); |
| 807 | } |
| 808 | |
| 809 | for (nr = 0; nr < bitmap_size; nr++) { |
| 810 | /* No bitmap change: not a cacheable action. */ |
| 811 | if (!test_bit(nr, bitmap)) |
| 812 | continue; |
| 813 | |
| 814 | sd.nr = nr; |
| 815 | sd.arch = arch; |
| 816 | |
| 817 | /* No bitmap change: continue to always allow. */ |
| 818 | if (seccomp_is_const_allow(fprog, &sd)) |
| 819 | continue; |
| 820 | |
| 821 | /* |
| 822 | * Not a cacheable action: always run filters. |
| 823 | * atomic clear_bit() not needed, filter not visible yet. |
| 824 | */ |
| 825 | __clear_bit(nr, bitmap); |
| 826 | } |
| 827 | } |
| 828 | |
| 829 | /** |
Cui GaoSheng | a3fc712 | 2021-03-30 23:07:24 -0400 | [diff] [blame] | 830 | * seccomp_cache_prepare - emulate the filter to find cacheable syscalls |
YiFei Zhu | 8e01b51 | 2020-10-11 10:47:43 -0500 | [diff] [blame] | 831 | * @sfilter: The seccomp filter |
| 832 | * |
| 833 | * Returns 0 if successful or -errno if error occurred. |
| 834 | */ |
| 835 | static void seccomp_cache_prepare(struct seccomp_filter *sfilter) |
| 836 | { |
| 837 | struct action_cache *cache = &sfilter->cache; |
| 838 | const struct action_cache *cache_prev = |
| 839 | sfilter->prev ? &sfilter->prev->cache : NULL; |
| 840 | |
| 841 | seccomp_cache_prepare_bitmap(sfilter, cache->allow_native, |
| 842 | cache_prev ? cache_prev->allow_native : NULL, |
| 843 | SECCOMP_ARCH_NATIVE_NR, |
| 844 | SECCOMP_ARCH_NATIVE); |
| 845 | |
| 846 | #ifdef SECCOMP_ARCH_COMPAT |
| 847 | seccomp_cache_prepare_bitmap(sfilter, cache->allow_compat, |
| 848 | cache_prev ? cache_prev->allow_compat : NULL, |
| 849 | SECCOMP_ARCH_COMPAT_NR, |
| 850 | SECCOMP_ARCH_COMPAT); |
| 851 | #endif /* SECCOMP_ARCH_COMPAT */ |
| 852 | } |
| 853 | #endif /* SECCOMP_ARCH_NATIVE */ |
| 854 | |
Kees Cook | c8bee43 | 2014-06-27 15:16:33 -0700 | [diff] [blame] | 855 | /** |
| 856 | * seccomp_attach_filter: validate and attach filter |
| 857 | * @flags: flags to change filter behavior |
| 858 | * @filter: seccomp filter to add to the current process |
| 859 | * |
Kees Cook | dbd95212 | 2014-06-27 15:18:48 -0700 | [diff] [blame] | 860 | * Caller must be holding current->sighand->siglock lock. |
| 861 | * |
Tycho Andersen | 7a0df7f | 2019-03-06 13:14:13 -0700 | [diff] [blame] | 862 | * Returns 0 on success, -ve on error, or |
| 863 | * - in TSYNC mode: the pid of a thread which was either not in the correct |
| 864 | * seccomp mode or did not have an ancestral seccomp filter |
| 865 | * - in NEW_LISTENER mode: the fd of the new listener |
Kees Cook | c8bee43 | 2014-06-27 15:16:33 -0700 | [diff] [blame] | 866 | */ |
| 867 | static long seccomp_attach_filter(unsigned int flags, |
| 868 | struct seccomp_filter *filter) |
| 869 | { |
| 870 | unsigned long total_insns; |
| 871 | struct seccomp_filter *walker; |
| 872 | |
Guenter Roeck | 69f6a34 | 2014-08-10 20:50:30 -0700 | [diff] [blame] | 873 | assert_spin_locked(¤t->sighand->siglock); |
Kees Cook | dbd95212 | 2014-06-27 15:18:48 -0700 | [diff] [blame] | 874 | |
Kees Cook | c8bee43 | 2014-06-27 15:16:33 -0700 | [diff] [blame] | 875 | /* Validate resulting filter length. */ |
| 876 | total_insns = filter->prog->len; |
| 877 | for (walker = current->seccomp.filter; walker; walker = walker->prev) |
| 878 | total_insns += walker->prog->len + 4; /* 4 instr penalty */ |
| 879 | if (total_insns > MAX_INSNS_PER_PATH) |
| 880 | return -ENOMEM; |
| 881 | |
Kees Cook | c2e1f2e | 2014-06-05 00:23:17 -0700 | [diff] [blame] | 882 | /* If thread sync has been requested, check that it is possible. */ |
| 883 | if (flags & SECCOMP_FILTER_FLAG_TSYNC) { |
| 884 | int ret; |
| 885 | |
| 886 | ret = seccomp_can_sync_threads(); |
Tycho Andersen | 5189149 | 2020-03-04 11:05:17 -0700 | [diff] [blame] | 887 | if (ret) { |
| 888 | if (flags & SECCOMP_FILTER_FLAG_TSYNC_ESRCH) |
| 889 | return -ESRCH; |
| 890 | else |
| 891 | return ret; |
| 892 | } |
Kees Cook | c2e1f2e | 2014-06-05 00:23:17 -0700 | [diff] [blame] | 893 | } |
| 894 | |
Tyler Hicks | e66a399 | 2017-08-11 04:33:56 +0000 | [diff] [blame] | 895 | /* Set log flag, if present. */ |
| 896 | if (flags & SECCOMP_FILTER_FLAG_LOG) |
| 897 | filter->log = true; |
| 898 | |
Sargun Dhillon | c2aa2df | 2022-05-03 01:09:56 -0700 | [diff] [blame] | 899 | /* Set wait killable flag, if present. */ |
| 900 | if (flags & SECCOMP_FILTER_FLAG_WAIT_KILLABLE_RECV) |
| 901 | filter->wait_killable_recv = true; |
| 902 | |
Kees Cook | c8bee43 | 2014-06-27 15:16:33 -0700 | [diff] [blame] | 903 | /* |
| 904 | * If there is an existing filter, make it the prev and don't drop its |
| 905 | * task reference. |
| 906 | */ |
| 907 | filter->prev = current->seccomp.filter; |
YiFei Zhu | 8e01b51 | 2020-10-11 10:47:43 -0500 | [diff] [blame] | 908 | seccomp_cache_prepare(filter); |
Kees Cook | c8bee43 | 2014-06-27 15:16:33 -0700 | [diff] [blame] | 909 | current->seccomp.filter = filter; |
Kees Cook | c818c03 | 2020-05-13 14:11:26 -0700 | [diff] [blame] | 910 | atomic_inc(¤t->seccomp.filter_count); |
Kees Cook | c8bee43 | 2014-06-27 15:16:33 -0700 | [diff] [blame] | 911 | |
Kees Cook | c2e1f2e | 2014-06-05 00:23:17 -0700 | [diff] [blame] | 912 | /* Now that the new filter is in place, synchronize to all threads. */ |
| 913 | if (flags & SECCOMP_FILTER_FLAG_TSYNC) |
Kees Cook | 00a02d0 | 2018-05-03 14:56:12 -0700 | [diff] [blame] | 914 | seccomp_sync_threads(flags); |
Kees Cook | c2e1f2e | 2014-06-05 00:23:17 -0700 | [diff] [blame] | 915 | |
Kees Cook | c8bee43 | 2014-06-27 15:16:33 -0700 | [diff] [blame] | 916 | return 0; |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 917 | } |
| 918 | |
Colin Ian King | 084f560 | 2017-09-29 14:26:48 +0100 | [diff] [blame] | 919 | static void __get_seccomp_filter(struct seccomp_filter *filter) |
Oleg Nesterov | 66a733e | 2017-09-27 09:25:30 -0600 | [diff] [blame] | 920 | { |
Christian Brauner | b707dde | 2020-05-31 13:50:28 +0200 | [diff] [blame] | 921 | refcount_inc(&filter->refs); |
Oleg Nesterov | 66a733e | 2017-09-27 09:25:30 -0600 | [diff] [blame] | 922 | } |
| 923 | |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 924 | /* get_seccomp_filter - increments the reference count of the filter on @tsk */ |
| 925 | void get_seccomp_filter(struct task_struct *tsk) |
| 926 | { |
| 927 | struct seccomp_filter *orig = tsk->seccomp.filter; |
| 928 | if (!orig) |
| 929 | return; |
Oleg Nesterov | 66a733e | 2017-09-27 09:25:30 -0600 | [diff] [blame] | 930 | __get_seccomp_filter(orig); |
Christian Brauner | 99cdb8b | 2020-05-31 13:50:30 +0200 | [diff] [blame] | 931 | refcount_inc(&orig->users); |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 932 | } |
| 933 | |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 934 | #endif /* CONFIG_SECCOMP_FILTER */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 935 | |
Tyler Hicks | 0ddec0f | 2017-08-11 04:33:54 +0000 | [diff] [blame] | 936 | /* For use with seccomp_actions_logged */ |
Kees Cook | 4d3b0b0 | 2017-08-11 13:01:39 -0700 | [diff] [blame] | 937 | #define SECCOMP_LOG_KILL_PROCESS (1 << 0) |
| 938 | #define SECCOMP_LOG_KILL_THREAD (1 << 1) |
Tyler Hicks | 0ddec0f | 2017-08-11 04:33:54 +0000 | [diff] [blame] | 939 | #define SECCOMP_LOG_TRAP (1 << 2) |
| 940 | #define SECCOMP_LOG_ERRNO (1 << 3) |
| 941 | #define SECCOMP_LOG_TRACE (1 << 4) |
Tyler Hicks | 59f5cf4 | 2017-08-11 04:33:57 +0000 | [diff] [blame] | 942 | #define SECCOMP_LOG_LOG (1 << 5) |
| 943 | #define SECCOMP_LOG_ALLOW (1 << 6) |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 944 | #define SECCOMP_LOG_USER_NOTIF (1 << 7) |
Tyler Hicks | 0ddec0f | 2017-08-11 04:33:54 +0000 | [diff] [blame] | 945 | |
Kees Cook | 4d3b0b0 | 2017-08-11 13:01:39 -0700 | [diff] [blame] | 946 | static u32 seccomp_actions_logged = SECCOMP_LOG_KILL_PROCESS | |
| 947 | SECCOMP_LOG_KILL_THREAD | |
Kees Cook | fd76875 | 2017-08-11 12:53:18 -0700 | [diff] [blame] | 948 | SECCOMP_LOG_TRAP | |
| 949 | SECCOMP_LOG_ERRNO | |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 950 | SECCOMP_LOG_USER_NOTIF | |
Kees Cook | fd76875 | 2017-08-11 12:53:18 -0700 | [diff] [blame] | 951 | SECCOMP_LOG_TRACE | |
Tyler Hicks | 59f5cf4 | 2017-08-11 04:33:57 +0000 | [diff] [blame] | 952 | SECCOMP_LOG_LOG; |
Tyler Hicks | 0ddec0f | 2017-08-11 04:33:54 +0000 | [diff] [blame] | 953 | |
Tyler Hicks | e66a399 | 2017-08-11 04:33:56 +0000 | [diff] [blame] | 954 | static inline void seccomp_log(unsigned long syscall, long signr, u32 action, |
| 955 | bool requested) |
Tyler Hicks | 0ddec0f | 2017-08-11 04:33:54 +0000 | [diff] [blame] | 956 | { |
| 957 | bool log = false; |
| 958 | |
| 959 | switch (action) { |
| 960 | case SECCOMP_RET_ALLOW: |
Tyler Hicks | e66a399 | 2017-08-11 04:33:56 +0000 | [diff] [blame] | 961 | break; |
Tyler Hicks | 0ddec0f | 2017-08-11 04:33:54 +0000 | [diff] [blame] | 962 | case SECCOMP_RET_TRAP: |
Tyler Hicks | e66a399 | 2017-08-11 04:33:56 +0000 | [diff] [blame] | 963 | log = requested && seccomp_actions_logged & SECCOMP_LOG_TRAP; |
| 964 | break; |
Tyler Hicks | 0ddec0f | 2017-08-11 04:33:54 +0000 | [diff] [blame] | 965 | case SECCOMP_RET_ERRNO: |
Tyler Hicks | e66a399 | 2017-08-11 04:33:56 +0000 | [diff] [blame] | 966 | log = requested && seccomp_actions_logged & SECCOMP_LOG_ERRNO; |
| 967 | break; |
Tyler Hicks | 0ddec0f | 2017-08-11 04:33:54 +0000 | [diff] [blame] | 968 | case SECCOMP_RET_TRACE: |
Tyler Hicks | e66a399 | 2017-08-11 04:33:56 +0000 | [diff] [blame] | 969 | log = requested && seccomp_actions_logged & SECCOMP_LOG_TRACE; |
Tyler Hicks | 0ddec0f | 2017-08-11 04:33:54 +0000 | [diff] [blame] | 970 | break; |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 971 | case SECCOMP_RET_USER_NOTIF: |
| 972 | log = requested && seccomp_actions_logged & SECCOMP_LOG_USER_NOTIF; |
| 973 | break; |
Tyler Hicks | 59f5cf4 | 2017-08-11 04:33:57 +0000 | [diff] [blame] | 974 | case SECCOMP_RET_LOG: |
| 975 | log = seccomp_actions_logged & SECCOMP_LOG_LOG; |
| 976 | break; |
Kees Cook | fd76875 | 2017-08-11 12:53:18 -0700 | [diff] [blame] | 977 | case SECCOMP_RET_KILL_THREAD: |
Kees Cook | fd76875 | 2017-08-11 12:53:18 -0700 | [diff] [blame] | 978 | log = seccomp_actions_logged & SECCOMP_LOG_KILL_THREAD; |
Kees Cook | 4d3b0b0 | 2017-08-11 13:01:39 -0700 | [diff] [blame] | 979 | break; |
| 980 | case SECCOMP_RET_KILL_PROCESS: |
| 981 | default: |
| 982 | log = seccomp_actions_logged & SECCOMP_LOG_KILL_PROCESS; |
Tyler Hicks | 0ddec0f | 2017-08-11 04:33:54 +0000 | [diff] [blame] | 983 | } |
| 984 | |
| 985 | /* |
Tyler Hicks | 326bee0 | 2018-05-04 01:08:15 +0000 | [diff] [blame] | 986 | * Emit an audit message when the action is RET_KILL_*, RET_LOG, or the |
| 987 | * FILTER_FLAG_LOG bit was set. The admin has the ability to silence |
| 988 | * any action from being logged by removing the action name from the |
| 989 | * seccomp_actions_logged sysctl. |
Tyler Hicks | 0ddec0f | 2017-08-11 04:33:54 +0000 | [diff] [blame] | 990 | */ |
Tyler Hicks | 326bee0 | 2018-05-04 01:08:15 +0000 | [diff] [blame] | 991 | if (!log) |
| 992 | return; |
Tyler Hicks | 0ddec0f | 2017-08-11 04:33:54 +0000 | [diff] [blame] | 993 | |
Tyler Hicks | 326bee0 | 2018-05-04 01:08:15 +0000 | [diff] [blame] | 994 | audit_seccomp(syscall, signr, action); |
Tyler Hicks | 0ddec0f | 2017-08-11 04:33:54 +0000 | [diff] [blame] | 995 | } |
| 996 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 997 | /* |
| 998 | * Secure computing mode 1 allows only read/write/exit/sigreturn. |
| 999 | * To be fully secure this must be combined with rlimit |
| 1000 | * to limit the stack allocations too. |
| 1001 | */ |
Matt Redfearn | cb4253a | 2016-03-29 09:35:34 +0100 | [diff] [blame] | 1002 | static const int mode1_syscalls[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | __NR_seccomp_read, __NR_seccomp_write, __NR_seccomp_exit, __NR_seccomp_sigreturn, |
Kees Cook | fe4bfff8 | 2020-06-19 12:20:15 -0700 | [diff] [blame] | 1004 | -1, /* negative terminated */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1005 | }; |
| 1006 | |
Andy Lutomirski | a4412fc | 2014-07-21 18:49:14 -0700 | [diff] [blame] | 1007 | static void __secure_computing_strict(int this_syscall) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1008 | { |
Kees Cook | fe4bfff8 | 2020-06-19 12:20:15 -0700 | [diff] [blame] | 1009 | const int *allowed_syscalls = mode1_syscalls; |
Andy Lutomirski | a4412fc | 2014-07-21 18:49:14 -0700 | [diff] [blame] | 1010 | #ifdef CONFIG_COMPAT |
Andy Lutomirski | 5c38065 | 2016-03-22 14:24:52 -0700 | [diff] [blame] | 1011 | if (in_compat_syscall()) |
Kees Cook | fe4bfff8 | 2020-06-19 12:20:15 -0700 | [diff] [blame] | 1012 | allowed_syscalls = get_compat_mode1_syscalls(); |
Andy Lutomirski | a4412fc | 2014-07-21 18:49:14 -0700 | [diff] [blame] | 1013 | #endif |
| 1014 | do { |
Kees Cook | fe4bfff8 | 2020-06-19 12:20:15 -0700 | [diff] [blame] | 1015 | if (*allowed_syscalls == this_syscall) |
Andy Lutomirski | a4412fc | 2014-07-21 18:49:14 -0700 | [diff] [blame] | 1016 | return; |
Kees Cook | fe4bfff8 | 2020-06-19 12:20:15 -0700 | [diff] [blame] | 1017 | } while (*++allowed_syscalls != -1); |
Andy Lutomirski | a4412fc | 2014-07-21 18:49:14 -0700 | [diff] [blame] | 1018 | |
| 1019 | #ifdef SECCOMP_DEBUG |
| 1020 | dump_stack(); |
| 1021 | #endif |
Kees Cook | 495ac30 | 2022-02-07 20:21:13 -0800 | [diff] [blame] | 1022 | current->seccomp.mode = SECCOMP_MODE_DEAD; |
Kees Cook | fd76875 | 2017-08-11 12:53:18 -0700 | [diff] [blame] | 1023 | seccomp_log(this_syscall, SIGKILL, SECCOMP_RET_KILL_THREAD, true); |
Andy Lutomirski | a4412fc | 2014-07-21 18:49:14 -0700 | [diff] [blame] | 1024 | do_exit(SIGKILL); |
| 1025 | } |
| 1026 | |
| 1027 | #ifndef CONFIG_HAVE_ARCH_SECCOMP_FILTER |
| 1028 | void secure_computing_strict(int this_syscall) |
| 1029 | { |
| 1030 | int mode = current->seccomp.mode; |
| 1031 | |
Masahiro Yamada | 97f2645 | 2016-08-03 13:45:50 -0700 | [diff] [blame] | 1032 | if (IS_ENABLED(CONFIG_CHECKPOINT_RESTORE) && |
Tycho Andersen | 13c4a90 | 2015-06-13 09:02:48 -0600 | [diff] [blame] | 1033 | unlikely(current->ptrace & PT_SUSPEND_SECCOMP)) |
| 1034 | return; |
| 1035 | |
Kees Cook | 221272f | 2015-06-15 15:29:16 -0700 | [diff] [blame] | 1036 | if (mode == SECCOMP_MODE_DISABLED) |
Andy Lutomirski | a4412fc | 2014-07-21 18:49:14 -0700 | [diff] [blame] | 1037 | return; |
| 1038 | else if (mode == SECCOMP_MODE_STRICT) |
| 1039 | __secure_computing_strict(this_syscall); |
| 1040 | else |
| 1041 | BUG(); |
| 1042 | } |
| 1043 | #else |
Andy Lutomirski | 13aa72f | 2014-07-21 18:49:15 -0700 | [diff] [blame] | 1044 | |
| 1045 | #ifdef CONFIG_SECCOMP_FILTER |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1046 | static u64 seccomp_next_notify_id(struct seccomp_filter *filter) |
| 1047 | { |
| 1048 | /* |
| 1049 | * Note: overflow is ok here, the id just needs to be unique per |
| 1050 | * filter. |
| 1051 | */ |
| 1052 | lockdep_assert_held(&filter->notify_lock); |
| 1053 | return filter->notif->next_id++; |
| 1054 | } |
| 1055 | |
Rodrigo Campos | 0ae71c7 | 2021-05-17 12:39:07 -0700 | [diff] [blame] | 1056 | static void seccomp_handle_addfd(struct seccomp_kaddfd *addfd, struct seccomp_knotif *n) |
Sargun Dhillon | 7cf97b1 | 2020-06-02 18:10:43 -0700 | [diff] [blame] | 1057 | { |
Rodrigo Campos | 0ae71c7 | 2021-05-17 12:39:07 -0700 | [diff] [blame] | 1058 | int fd; |
| 1059 | |
Sargun Dhillon | 7cf97b1 | 2020-06-02 18:10:43 -0700 | [diff] [blame] | 1060 | /* |
| 1061 | * Remove the notification, and reset the list pointers, indicating |
| 1062 | * that it has been handled. |
| 1063 | */ |
| 1064 | list_del_init(&addfd->list); |
Christoph Hellwig | 42eb0d5 | 2021-03-25 09:22:09 +0100 | [diff] [blame] | 1065 | if (!addfd->setfd) |
Rodrigo Campos | 0ae71c7 | 2021-05-17 12:39:07 -0700 | [diff] [blame] | 1066 | fd = receive_fd(addfd->file, addfd->flags); |
Christoph Hellwig | 42eb0d5 | 2021-03-25 09:22:09 +0100 | [diff] [blame] | 1067 | else |
Rodrigo Campos | 0ae71c7 | 2021-05-17 12:39:07 -0700 | [diff] [blame] | 1068 | fd = receive_fd_replace(addfd->fd, addfd->file, addfd->flags); |
| 1069 | addfd->ret = fd; |
| 1070 | |
| 1071 | if (addfd->ioctl_flags & SECCOMP_ADDFD_FLAG_SEND) { |
| 1072 | /* If we fail reset and return an error to the notifier */ |
| 1073 | if (fd < 0) { |
| 1074 | n->state = SECCOMP_NOTIFY_SENT; |
| 1075 | } else { |
| 1076 | /* Return the FD we just added */ |
| 1077 | n->flags = 0; |
| 1078 | n->error = 0; |
| 1079 | n->val = fd; |
| 1080 | } |
| 1081 | } |
| 1082 | |
| 1083 | /* |
| 1084 | * Mark the notification as completed. From this point, addfd mem |
| 1085 | * might be invalidated and we can't safely read it anymore. |
| 1086 | */ |
Sargun Dhillon | 7cf97b1 | 2020-06-02 18:10:43 -0700 | [diff] [blame] | 1087 | complete(&addfd->completion); |
| 1088 | } |
| 1089 | |
Sargun Dhillon | c2aa2df | 2022-05-03 01:09:56 -0700 | [diff] [blame] | 1090 | static bool should_sleep_killable(struct seccomp_filter *match, |
| 1091 | struct seccomp_knotif *n) |
| 1092 | { |
| 1093 | return match->wait_killable_recv && n->state == SECCOMP_NOTIFY_SENT; |
| 1094 | } |
| 1095 | |
Christian Brauner | fb3c5386 | 2019-09-20 10:30:05 +0200 | [diff] [blame] | 1096 | static int seccomp_do_user_notification(int this_syscall, |
| 1097 | struct seccomp_filter *match, |
| 1098 | const struct seccomp_data *sd) |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1099 | { |
| 1100 | int err; |
Christian Brauner | fb3c5386 | 2019-09-20 10:30:05 +0200 | [diff] [blame] | 1101 | u32 flags = 0; |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1102 | long ret = 0; |
| 1103 | struct seccomp_knotif n = {}; |
Sargun Dhillon | 7cf97b1 | 2020-06-02 18:10:43 -0700 | [diff] [blame] | 1104 | struct seccomp_kaddfd *addfd, *tmp; |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1105 | |
| 1106 | mutex_lock(&match->notify_lock); |
| 1107 | err = -ENOSYS; |
| 1108 | if (!match->notif) |
| 1109 | goto out; |
| 1110 | |
| 1111 | n.task = current; |
| 1112 | n.state = SECCOMP_NOTIFY_INIT; |
| 1113 | n.data = sd; |
| 1114 | n.id = seccomp_next_notify_id(match); |
| 1115 | init_completion(&n.ready); |
Sargun Dhillon | 4cbf6f6 | 2022-04-27 18:54:46 -0700 | [diff] [blame] | 1116 | list_add_tail(&n.list, &match->notif->notifications); |
Sargun Dhillon | 7cf97b1 | 2020-06-02 18:10:43 -0700 | [diff] [blame] | 1117 | INIT_LIST_HEAD(&n.addfd); |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1118 | |
| 1119 | up(&match->notif->request); |
Christian Brauner | 76194c4 | 2020-06-01 11:50:07 -0700 | [diff] [blame] | 1120 | wake_up_poll(&match->wqh, EPOLLIN | EPOLLRDNORM); |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1121 | |
| 1122 | /* |
| 1123 | * This is where we wait for a reply from userspace. |
| 1124 | */ |
Sargun Dhillon | ddc4739 | 2021-05-17 12:39:06 -0700 | [diff] [blame] | 1125 | do { |
Sargun Dhillon | c2aa2df | 2022-05-03 01:09:56 -0700 | [diff] [blame] | 1126 | bool wait_killable = should_sleep_killable(match, &n); |
| 1127 | |
Sargun Dhillon | ddc4739 | 2021-05-17 12:39:06 -0700 | [diff] [blame] | 1128 | mutex_unlock(&match->notify_lock); |
Sargun Dhillon | c2aa2df | 2022-05-03 01:09:56 -0700 | [diff] [blame] | 1129 | if (wait_killable) |
| 1130 | err = wait_for_completion_killable(&n.ready); |
| 1131 | else |
| 1132 | err = wait_for_completion_interruptible(&n.ready); |
Sargun Dhillon | ddc4739 | 2021-05-17 12:39:06 -0700 | [diff] [blame] | 1133 | mutex_lock(&match->notify_lock); |
Sargun Dhillon | c2aa2df | 2022-05-03 01:09:56 -0700 | [diff] [blame] | 1134 | |
| 1135 | if (err != 0) { |
| 1136 | /* |
| 1137 | * Check to see if the notifcation got picked up and |
| 1138 | * whether we should switch to wait killable. |
| 1139 | */ |
| 1140 | if (!wait_killable && should_sleep_killable(match, &n)) |
| 1141 | continue; |
| 1142 | |
Sargun Dhillon | ddc4739 | 2021-05-17 12:39:06 -0700 | [diff] [blame] | 1143 | goto interrupted; |
Sargun Dhillon | c2aa2df | 2022-05-03 01:09:56 -0700 | [diff] [blame] | 1144 | } |
Sargun Dhillon | ddc4739 | 2021-05-17 12:39:06 -0700 | [diff] [blame] | 1145 | |
Sargun Dhillon | 7cf97b1 | 2020-06-02 18:10:43 -0700 | [diff] [blame] | 1146 | addfd = list_first_entry_or_null(&n.addfd, |
| 1147 | struct seccomp_kaddfd, list); |
Sargun Dhillon | ddc4739 | 2021-05-17 12:39:06 -0700 | [diff] [blame] | 1148 | /* Check if we were woken up by a addfd message */ |
| 1149 | if (addfd) |
Rodrigo Campos | 0ae71c7 | 2021-05-17 12:39:07 -0700 | [diff] [blame] | 1150 | seccomp_handle_addfd(addfd, &n); |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1151 | |
Sargun Dhillon | ddc4739 | 2021-05-17 12:39:06 -0700 | [diff] [blame] | 1152 | } while (n.state != SECCOMP_NOTIFY_REPLIED); |
| 1153 | |
| 1154 | ret = n.val; |
| 1155 | err = n.error; |
| 1156 | flags = n.flags; |
| 1157 | |
| 1158 | interrupted: |
Sargun Dhillon | 7cf97b1 | 2020-06-02 18:10:43 -0700 | [diff] [blame] | 1159 | /* If there were any pending addfd calls, clear them out */ |
| 1160 | list_for_each_entry_safe(addfd, tmp, &n.addfd, list) { |
| 1161 | /* The process went away before we got a chance to handle it */ |
| 1162 | addfd->ret = -ESRCH; |
| 1163 | list_del_init(&addfd->list); |
| 1164 | complete(&addfd->completion); |
| 1165 | } |
| 1166 | |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1167 | /* |
| 1168 | * Note that it's possible the listener died in between the time when |
Sargun Dhillon | 7cf97b1 | 2020-06-02 18:10:43 -0700 | [diff] [blame] | 1169 | * we were notified of a response (or a signal) and when we were able to |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1170 | * re-acquire the lock, so only delete from the list if the |
| 1171 | * notification actually exists. |
| 1172 | * |
| 1173 | * Also note that this test is only valid because there's no way to |
| 1174 | * *reattach* to a notifier right now. If one is added, we'll need to |
| 1175 | * keep track of the notif itself and make sure they match here. |
| 1176 | */ |
| 1177 | if (match->notif) |
| 1178 | list_del(&n.list); |
| 1179 | out: |
| 1180 | mutex_unlock(&match->notify_lock); |
Christian Brauner | fb3c5386 | 2019-09-20 10:30:05 +0200 | [diff] [blame] | 1181 | |
| 1182 | /* Userspace requests to continue the syscall. */ |
| 1183 | if (flags & SECCOMP_USER_NOTIF_FLAG_CONTINUE) |
| 1184 | return 0; |
| 1185 | |
Denis Efremov | 2d9ca26 | 2020-08-24 15:59:21 +0300 | [diff] [blame] | 1186 | syscall_set_return_value(current, current_pt_regs(), |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1187 | err, ret); |
Christian Brauner | fb3c5386 | 2019-09-20 10:30:05 +0200 | [diff] [blame] | 1188 | return -1; |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1189 | } |
| 1190 | |
Kees Cook | ce6526e | 2016-06-01 19:29:15 -0700 | [diff] [blame] | 1191 | static int __seccomp_filter(int this_syscall, const struct seccomp_data *sd, |
| 1192 | const bool recheck_after_trace) |
Andy Lutomirski | 13aa72f | 2014-07-21 18:49:15 -0700 | [diff] [blame] | 1193 | { |
| 1194 | u32 filter_ret, action; |
Kees Cook | deb4de8 | 2017-08-02 15:00:40 -0700 | [diff] [blame] | 1195 | struct seccomp_filter *match = NULL; |
Andy Lutomirski | 13aa72f | 2014-07-21 18:49:15 -0700 | [diff] [blame] | 1196 | int data; |
Tycho Andersen | db51139 | 2018-12-09 11:24:11 -0700 | [diff] [blame] | 1197 | struct seccomp_data sd_local; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1198 | |
Kees Cook | 3ba2530 | 2014-06-27 15:01:35 -0700 | [diff] [blame] | 1199 | /* |
| 1200 | * Make sure that any changes to mode from another thread have |
Gabriel Krisman Bertazi | 23d67a5 | 2020-11-16 12:42:00 -0500 | [diff] [blame] | 1201 | * been seen after SYSCALL_WORK_SECCOMP was seen. |
Kees Cook | 3ba2530 | 2014-06-27 15:01:35 -0700 | [diff] [blame] | 1202 | */ |
wanghongzhe | a381b70 | 2021-02-05 11:34:09 +0800 | [diff] [blame] | 1203 | smp_rmb(); |
Kees Cook | 3ba2530 | 2014-06-27 15:01:35 -0700 | [diff] [blame] | 1204 | |
Tycho Andersen | db51139 | 2018-12-09 11:24:11 -0700 | [diff] [blame] | 1205 | if (!sd) { |
| 1206 | populate_seccomp_data(&sd_local); |
| 1207 | sd = &sd_local; |
| 1208 | } |
| 1209 | |
Kees Cook | deb4de8 | 2017-08-02 15:00:40 -0700 | [diff] [blame] | 1210 | filter_ret = seccomp_run_filters(sd, &match); |
Andy Lutomirski | 13aa72f | 2014-07-21 18:49:15 -0700 | [diff] [blame] | 1211 | data = filter_ret & SECCOMP_RET_DATA; |
Kees Cook | 0466bdb | 2017-08-11 13:12:11 -0700 | [diff] [blame] | 1212 | action = filter_ret & SECCOMP_RET_ACTION_FULL; |
Andy Lutomirski | 87b526d | 2012-10-01 11:40:45 -0700 | [diff] [blame] | 1213 | |
Andy Lutomirski | 13aa72f | 2014-07-21 18:49:15 -0700 | [diff] [blame] | 1214 | switch (action) { |
| 1215 | case SECCOMP_RET_ERRNO: |
Kees Cook | 580c57f | 2015-02-17 13:48:00 -0800 | [diff] [blame] | 1216 | /* Set low-order bits as an errno, capped at MAX_ERRNO. */ |
| 1217 | if (data > MAX_ERRNO) |
| 1218 | data = MAX_ERRNO; |
Denis Efremov | 2d9ca26 | 2020-08-24 15:59:21 +0300 | [diff] [blame] | 1219 | syscall_set_return_value(current, current_pt_regs(), |
Andy Lutomirski | 13aa72f | 2014-07-21 18:49:15 -0700 | [diff] [blame] | 1220 | -data, 0); |
| 1221 | goto skip; |
| 1222 | |
| 1223 | case SECCOMP_RET_TRAP: |
| 1224 | /* Show the handler the original registers. */ |
Denis Efremov | 2d9ca26 | 2020-08-24 15:59:21 +0300 | [diff] [blame] | 1225 | syscall_rollback(current, current_pt_regs()); |
Andy Lutomirski | 13aa72f | 2014-07-21 18:49:15 -0700 | [diff] [blame] | 1226 | /* Let the filter pass back 16 bits of data. */ |
Eric W. Biederman | 307d522 | 2021-06-23 16:44:32 -0500 | [diff] [blame] | 1227 | force_sig_seccomp(this_syscall, data, false); |
Andy Lutomirski | 13aa72f | 2014-07-21 18:49:15 -0700 | [diff] [blame] | 1228 | goto skip; |
| 1229 | |
| 1230 | case SECCOMP_RET_TRACE: |
Kees Cook | ce6526e | 2016-06-01 19:29:15 -0700 | [diff] [blame] | 1231 | /* We've been put in this state by the ptracer already. */ |
| 1232 | if (recheck_after_trace) |
| 1233 | return 0; |
| 1234 | |
Kees Cook | 8112c4f | 2016-06-01 16:02:17 -0700 | [diff] [blame] | 1235 | /* ENOSYS these calls if there is no tracer attached. */ |
| 1236 | if (!ptrace_event_enabled(current, PTRACE_EVENT_SECCOMP)) { |
| 1237 | syscall_set_return_value(current, |
Denis Efremov | 2d9ca26 | 2020-08-24 15:59:21 +0300 | [diff] [blame] | 1238 | current_pt_regs(), |
Kees Cook | 8112c4f | 2016-06-01 16:02:17 -0700 | [diff] [blame] | 1239 | -ENOSYS, 0); |
| 1240 | goto skip; |
| 1241 | } |
| 1242 | |
| 1243 | /* Allow the BPF to provide the event message */ |
| 1244 | ptrace_event(PTRACE_EVENT_SECCOMP, data); |
| 1245 | /* |
| 1246 | * The delivery of a fatal signal during event |
Kees Cook | 485a252 | 2016-08-10 16:28:09 -0700 | [diff] [blame] | 1247 | * notification may silently skip tracer notification, |
| 1248 | * which could leave us with a potentially unmodified |
| 1249 | * syscall that the tracer would have liked to have |
| 1250 | * changed. Since the process is about to die, we just |
| 1251 | * force the syscall to be skipped and let the signal |
| 1252 | * kill the process and correctly handle any tracer exit |
| 1253 | * notifications. |
Kees Cook | 8112c4f | 2016-06-01 16:02:17 -0700 | [diff] [blame] | 1254 | */ |
| 1255 | if (fatal_signal_pending(current)) |
Kees Cook | 485a252 | 2016-08-10 16:28:09 -0700 | [diff] [blame] | 1256 | goto skip; |
Kees Cook | 8112c4f | 2016-06-01 16:02:17 -0700 | [diff] [blame] | 1257 | /* Check if the tracer forced the syscall to be skipped. */ |
Denis Efremov | 2d9ca26 | 2020-08-24 15:59:21 +0300 | [diff] [blame] | 1258 | this_syscall = syscall_get_nr(current, current_pt_regs()); |
Kees Cook | 8112c4f | 2016-06-01 16:02:17 -0700 | [diff] [blame] | 1259 | if (this_syscall < 0) |
| 1260 | goto skip; |
| 1261 | |
Kees Cook | ce6526e | 2016-06-01 19:29:15 -0700 | [diff] [blame] | 1262 | /* |
| 1263 | * Recheck the syscall, since it may have changed. This |
| 1264 | * intentionally uses a NULL struct seccomp_data to force |
| 1265 | * a reload of all registers. This does not goto skip since |
| 1266 | * a skip would have already been reported. |
| 1267 | */ |
| 1268 | if (__seccomp_filter(this_syscall, NULL, true)) |
| 1269 | return -1; |
| 1270 | |
Kees Cook | 8112c4f | 2016-06-01 16:02:17 -0700 | [diff] [blame] | 1271 | return 0; |
Andy Lutomirski | 13aa72f | 2014-07-21 18:49:15 -0700 | [diff] [blame] | 1272 | |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1273 | case SECCOMP_RET_USER_NOTIF: |
Christian Brauner | fb3c5386 | 2019-09-20 10:30:05 +0200 | [diff] [blame] | 1274 | if (seccomp_do_user_notification(this_syscall, match, sd)) |
| 1275 | goto skip; |
| 1276 | |
| 1277 | return 0; |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1278 | |
Tyler Hicks | 59f5cf4 | 2017-08-11 04:33:57 +0000 | [diff] [blame] | 1279 | case SECCOMP_RET_LOG: |
| 1280 | seccomp_log(this_syscall, 0, action, true); |
| 1281 | return 0; |
| 1282 | |
Andy Lutomirski | 13aa72f | 2014-07-21 18:49:15 -0700 | [diff] [blame] | 1283 | case SECCOMP_RET_ALLOW: |
Kees Cook | deb4de8 | 2017-08-02 15:00:40 -0700 | [diff] [blame] | 1284 | /* |
| 1285 | * Note that the "match" filter will always be NULL for |
| 1286 | * this action since SECCOMP_RET_ALLOW is the starting |
| 1287 | * state in seccomp_run_filters(). |
| 1288 | */ |
Kees Cook | 8112c4f | 2016-06-01 16:02:17 -0700 | [diff] [blame] | 1289 | return 0; |
Andy Lutomirski | 13aa72f | 2014-07-21 18:49:15 -0700 | [diff] [blame] | 1290 | |
Kees Cook | fd76875 | 2017-08-11 12:53:18 -0700 | [diff] [blame] | 1291 | case SECCOMP_RET_KILL_THREAD: |
Kees Cook | 4d3b0b0 | 2017-08-11 13:01:39 -0700 | [diff] [blame] | 1292 | case SECCOMP_RET_KILL_PROCESS: |
Kees Cook | 131b635 | 2017-02-23 09:24:24 -0800 | [diff] [blame] | 1293 | default: |
Kees Cook | 495ac30 | 2022-02-07 20:21:13 -0800 | [diff] [blame] | 1294 | current->seccomp.mode = SECCOMP_MODE_DEAD; |
Tyler Hicks | e66a399 | 2017-08-11 04:33:56 +0000 | [diff] [blame] | 1295 | seccomp_log(this_syscall, SIGSYS, action, true); |
Kees Cook | d7276e3 | 2017-02-07 15:18:51 -0800 | [diff] [blame] | 1296 | /* Dump core only if this is the last remaining thread. */ |
Rich Felker | 4d671d9 | 2020-08-28 21:56:13 -0400 | [diff] [blame] | 1297 | if (action != SECCOMP_RET_KILL_THREAD || |
Eric W. Biederman | d21918e | 2021-06-23 16:51:49 -0500 | [diff] [blame] | 1298 | (atomic_read(¤t->signal->live) == 1)) { |
Kees Cook | d7276e3 | 2017-02-07 15:18:51 -0800 | [diff] [blame] | 1299 | /* Show the original registers in the dump. */ |
Denis Efremov | 2d9ca26 | 2020-08-24 15:59:21 +0300 | [diff] [blame] | 1300 | syscall_rollback(current, current_pt_regs()); |
Eric W. Biederman | 307d522 | 2021-06-23 16:44:32 -0500 | [diff] [blame] | 1301 | /* Trigger a coredump with SIGSYS */ |
| 1302 | force_sig_seccomp(this_syscall, data, true); |
| 1303 | } else { |
Kees Cook | 4d3b0b0 | 2017-08-11 13:01:39 -0700 | [diff] [blame] | 1304 | do_exit(SIGSYS); |
Eric W. Biederman | 307d522 | 2021-06-23 16:44:32 -0500 | [diff] [blame] | 1305 | } |
| 1306 | return -1; /* skip the syscall go directly to signal handling */ |
Will Drewry | 8156b45 | 2012-04-17 14:48:58 -0500 | [diff] [blame] | 1307 | } |
Andy Lutomirski | 13aa72f | 2014-07-21 18:49:15 -0700 | [diff] [blame] | 1308 | |
| 1309 | unreachable(); |
| 1310 | |
| 1311 | skip: |
Tyler Hicks | e66a399 | 2017-08-11 04:33:56 +0000 | [diff] [blame] | 1312 | seccomp_log(this_syscall, 0, action, match ? match->log : false); |
Kees Cook | 8112c4f | 2016-06-01 16:02:17 -0700 | [diff] [blame] | 1313 | return -1; |
| 1314 | } |
| 1315 | #else |
Kees Cook | ce6526e | 2016-06-01 19:29:15 -0700 | [diff] [blame] | 1316 | static int __seccomp_filter(int this_syscall, const struct seccomp_data *sd, |
| 1317 | const bool recheck_after_trace) |
Kees Cook | 8112c4f | 2016-06-01 16:02:17 -0700 | [diff] [blame] | 1318 | { |
| 1319 | BUG(); |
Paul Cercueil | 04b38d0 | 2021-01-11 17:28:39 +0000 | [diff] [blame] | 1320 | |
| 1321 | return -1; |
Andy Lutomirski | 13aa72f | 2014-07-21 18:49:15 -0700 | [diff] [blame] | 1322 | } |
| 1323 | #endif |
| 1324 | |
Kees Cook | 8112c4f | 2016-06-01 16:02:17 -0700 | [diff] [blame] | 1325 | int __secure_computing(const struct seccomp_data *sd) |
Andy Lutomirski | 13aa72f | 2014-07-21 18:49:15 -0700 | [diff] [blame] | 1326 | { |
| 1327 | int mode = current->seccomp.mode; |
Kees Cook | 8112c4f | 2016-06-01 16:02:17 -0700 | [diff] [blame] | 1328 | int this_syscall; |
Andy Lutomirski | 13aa72f | 2014-07-21 18:49:15 -0700 | [diff] [blame] | 1329 | |
Masahiro Yamada | 97f2645 | 2016-08-03 13:45:50 -0700 | [diff] [blame] | 1330 | if (IS_ENABLED(CONFIG_CHECKPOINT_RESTORE) && |
Tycho Andersen | 13c4a90 | 2015-06-13 09:02:48 -0600 | [diff] [blame] | 1331 | unlikely(current->ptrace & PT_SUSPEND_SECCOMP)) |
Kees Cook | 8112c4f | 2016-06-01 16:02:17 -0700 | [diff] [blame] | 1332 | return 0; |
| 1333 | |
| 1334 | this_syscall = sd ? sd->nr : |
Denis Efremov | 2d9ca26 | 2020-08-24 15:59:21 +0300 | [diff] [blame] | 1335 | syscall_get_nr(current, current_pt_regs()); |
Tycho Andersen | 13c4a90 | 2015-06-13 09:02:48 -0600 | [diff] [blame] | 1336 | |
Andy Lutomirski | 13aa72f | 2014-07-21 18:49:15 -0700 | [diff] [blame] | 1337 | switch (mode) { |
| 1338 | case SECCOMP_MODE_STRICT: |
| 1339 | __secure_computing_strict(this_syscall); /* may call do_exit */ |
Kees Cook | 8112c4f | 2016-06-01 16:02:17 -0700 | [diff] [blame] | 1340 | return 0; |
Andy Lutomirski | 13aa72f | 2014-07-21 18:49:15 -0700 | [diff] [blame] | 1341 | case SECCOMP_MODE_FILTER: |
Kees Cook | ce6526e | 2016-06-01 19:29:15 -0700 | [diff] [blame] | 1342 | return __seccomp_filter(this_syscall, sd, false); |
Kees Cook | 495ac30 | 2022-02-07 20:21:13 -0800 | [diff] [blame] | 1343 | /* Surviving SECCOMP_RET_KILL_* must be proactively impossible. */ |
| 1344 | case SECCOMP_MODE_DEAD: |
| 1345 | WARN_ON_ONCE(1); |
| 1346 | do_exit(SIGKILL); |
| 1347 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1348 | default: |
| 1349 | BUG(); |
| 1350 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1351 | } |
Andy Lutomirski | a4412fc | 2014-07-21 18:49:14 -0700 | [diff] [blame] | 1352 | #endif /* CONFIG_HAVE_ARCH_SECCOMP_FILTER */ |
Andrea Arcangeli | 1d9d02f | 2007-07-15 23:41:32 -0700 | [diff] [blame] | 1353 | |
| 1354 | long prctl_get_seccomp(void) |
| 1355 | { |
| 1356 | return current->seccomp.mode; |
| 1357 | } |
| 1358 | |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 1359 | /** |
Kees Cook | 3b23dd1 | 2014-06-25 15:55:25 -0700 | [diff] [blame] | 1360 | * seccomp_set_mode_strict: internal function for setting strict seccomp |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 1361 | * |
| 1362 | * Once current->seccomp.mode is non-zero, it may not be changed. |
| 1363 | * |
| 1364 | * Returns 0 on success or -EINVAL on failure. |
| 1365 | */ |
Kees Cook | 3b23dd1 | 2014-06-25 15:55:25 -0700 | [diff] [blame] | 1366 | static long seccomp_set_mode_strict(void) |
Andrea Arcangeli | 1d9d02f | 2007-07-15 23:41:32 -0700 | [diff] [blame] | 1367 | { |
Kees Cook | 3b23dd1 | 2014-06-25 15:55:25 -0700 | [diff] [blame] | 1368 | const unsigned long seccomp_mode = SECCOMP_MODE_STRICT; |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 1369 | long ret = -EINVAL; |
Andrea Arcangeli | 1d9d02f | 2007-07-15 23:41:32 -0700 | [diff] [blame] | 1370 | |
Kees Cook | dbd95212 | 2014-06-27 15:18:48 -0700 | [diff] [blame] | 1371 | spin_lock_irq(¤t->sighand->siglock); |
| 1372 | |
Kees Cook | 1f41b450 | 2014-06-25 15:38:02 -0700 | [diff] [blame] | 1373 | if (!seccomp_may_assign_mode(seccomp_mode)) |
Andrea Arcangeli | 1d9d02f | 2007-07-15 23:41:32 -0700 | [diff] [blame] | 1374 | goto out; |
| 1375 | |
Andrea Arcangeli | cf99aba | 2007-07-15 23:41:33 -0700 | [diff] [blame] | 1376 | #ifdef TIF_NOTSC |
Kees Cook | 3b23dd1 | 2014-06-25 15:55:25 -0700 | [diff] [blame] | 1377 | disable_TSC(); |
Andrea Arcangeli | cf99aba | 2007-07-15 23:41:33 -0700 | [diff] [blame] | 1378 | #endif |
Kees Cook | 00a02d0 | 2018-05-03 14:56:12 -0700 | [diff] [blame] | 1379 | seccomp_assign_mode(current, seccomp_mode, 0); |
Kees Cook | 3b23dd1 | 2014-06-25 15:55:25 -0700 | [diff] [blame] | 1380 | ret = 0; |
| 1381 | |
| 1382 | out: |
Kees Cook | dbd95212 | 2014-06-27 15:18:48 -0700 | [diff] [blame] | 1383 | spin_unlock_irq(¤t->sighand->siglock); |
Kees Cook | 3b23dd1 | 2014-06-25 15:55:25 -0700 | [diff] [blame] | 1384 | |
| 1385 | return ret; |
| 1386 | } |
| 1387 | |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 1388 | #ifdef CONFIG_SECCOMP_FILTER |
Tycho Andersen | e839317 | 2020-09-02 08:09:53 -0600 | [diff] [blame] | 1389 | static void seccomp_notify_free(struct seccomp_filter *filter) |
| 1390 | { |
| 1391 | kfree(filter->notif); |
| 1392 | filter->notif = NULL; |
| 1393 | } |
| 1394 | |
Tycho Andersen | a566a90 | 2020-09-01 19:40:16 -0600 | [diff] [blame] | 1395 | static void seccomp_notify_detach(struct seccomp_filter *filter) |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1396 | { |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1397 | struct seccomp_knotif *knotif; |
| 1398 | |
Tycho Andersen | a811dc6 | 2019-01-12 11:24:20 -0700 | [diff] [blame] | 1399 | if (!filter) |
Tycho Andersen | a566a90 | 2020-09-01 19:40:16 -0600 | [diff] [blame] | 1400 | return; |
Tycho Andersen | a811dc6 | 2019-01-12 11:24:20 -0700 | [diff] [blame] | 1401 | |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1402 | mutex_lock(&filter->notify_lock); |
| 1403 | |
| 1404 | /* |
| 1405 | * If this file is being closed because e.g. the task who owned it |
| 1406 | * died, let's wake everyone up who was waiting on us. |
| 1407 | */ |
| 1408 | list_for_each_entry(knotif, &filter->notif->notifications, list) { |
| 1409 | if (knotif->state == SECCOMP_NOTIFY_REPLIED) |
| 1410 | continue; |
| 1411 | |
| 1412 | knotif->state = SECCOMP_NOTIFY_REPLIED; |
| 1413 | knotif->error = -ENOSYS; |
| 1414 | knotif->val = 0; |
| 1415 | |
Sargun Dhillon | 7cf97b1 | 2020-06-02 18:10:43 -0700 | [diff] [blame] | 1416 | /* |
| 1417 | * We do not need to wake up any pending addfd messages, as |
| 1418 | * the notifier will do that for us, as this just looks |
| 1419 | * like a standard reply. |
| 1420 | */ |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1421 | complete(&knotif->ready); |
| 1422 | } |
| 1423 | |
Tycho Andersen | e839317 | 2020-09-02 08:09:53 -0600 | [diff] [blame] | 1424 | seccomp_notify_free(filter); |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1425 | mutex_unlock(&filter->notify_lock); |
Tycho Andersen | a566a90 | 2020-09-01 19:40:16 -0600 | [diff] [blame] | 1426 | } |
| 1427 | |
| 1428 | static int seccomp_notify_release(struct inode *inode, struct file *file) |
| 1429 | { |
| 1430 | struct seccomp_filter *filter = file->private_data; |
| 1431 | |
| 1432 | seccomp_notify_detach(filter); |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1433 | __put_seccomp_filter(filter); |
| 1434 | return 0; |
| 1435 | } |
| 1436 | |
Sargun Dhillon | 9f87dcf | 2020-06-01 04:25:32 -0700 | [diff] [blame] | 1437 | /* must be called with notif_lock held */ |
| 1438 | static inline struct seccomp_knotif * |
| 1439 | find_notification(struct seccomp_filter *filter, u64 id) |
| 1440 | { |
| 1441 | struct seccomp_knotif *cur; |
| 1442 | |
| 1443 | lockdep_assert_held(&filter->notify_lock); |
| 1444 | |
| 1445 | list_for_each_entry(cur, &filter->notif->notifications, list) { |
| 1446 | if (cur->id == id) |
| 1447 | return cur; |
| 1448 | } |
| 1449 | |
| 1450 | return NULL; |
| 1451 | } |
| 1452 | |
| 1453 | |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1454 | static long seccomp_notify_recv(struct seccomp_filter *filter, |
| 1455 | void __user *buf) |
| 1456 | { |
| 1457 | struct seccomp_knotif *knotif = NULL, *cur; |
| 1458 | struct seccomp_notif unotif; |
| 1459 | ssize_t ret; |
| 1460 | |
Sargun Dhillon | 2882d53 | 2019-12-28 22:24:50 -0800 | [diff] [blame] | 1461 | /* Verify that we're not given garbage to keep struct extensible. */ |
| 1462 | ret = check_zeroed_user(buf, sizeof(unotif)); |
| 1463 | if (ret < 0) |
| 1464 | return ret; |
| 1465 | if (!ret) |
| 1466 | return -EINVAL; |
| 1467 | |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1468 | memset(&unotif, 0, sizeof(unotif)); |
| 1469 | |
| 1470 | ret = down_interruptible(&filter->notif->request); |
| 1471 | if (ret < 0) |
| 1472 | return ret; |
| 1473 | |
| 1474 | mutex_lock(&filter->notify_lock); |
| 1475 | list_for_each_entry(cur, &filter->notif->notifications, list) { |
| 1476 | if (cur->state == SECCOMP_NOTIFY_INIT) { |
| 1477 | knotif = cur; |
| 1478 | break; |
| 1479 | } |
| 1480 | } |
| 1481 | |
| 1482 | /* |
| 1483 | * If we didn't find a notification, it could be that the task was |
| 1484 | * interrupted by a fatal signal between the time we were woken and |
| 1485 | * when we were able to acquire the rw lock. |
| 1486 | */ |
| 1487 | if (!knotif) { |
| 1488 | ret = -ENOENT; |
| 1489 | goto out; |
| 1490 | } |
| 1491 | |
| 1492 | unotif.id = knotif->id; |
| 1493 | unotif.pid = task_pid_vnr(knotif->task); |
| 1494 | unotif.data = *(knotif->data); |
| 1495 | |
| 1496 | knotif->state = SECCOMP_NOTIFY_SENT; |
Christian Brauner | 76194c4 | 2020-06-01 11:50:07 -0700 | [diff] [blame] | 1497 | wake_up_poll(&filter->wqh, EPOLLOUT | EPOLLWRNORM); |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1498 | ret = 0; |
| 1499 | out: |
| 1500 | mutex_unlock(&filter->notify_lock); |
| 1501 | |
| 1502 | if (ret == 0 && copy_to_user(buf, &unotif, sizeof(unotif))) { |
| 1503 | ret = -EFAULT; |
| 1504 | |
| 1505 | /* |
| 1506 | * Userspace screwed up. To make sure that we keep this |
| 1507 | * notification alive, let's reset it back to INIT. It |
| 1508 | * may have died when we released the lock, so we need to make |
| 1509 | * sure it's still around. |
| 1510 | */ |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1511 | mutex_lock(&filter->notify_lock); |
Sargun Dhillon | 9f87dcf | 2020-06-01 04:25:32 -0700 | [diff] [blame] | 1512 | knotif = find_notification(filter, unotif.id); |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1513 | if (knotif) { |
Sargun Dhillon | c2aa2df | 2022-05-03 01:09:56 -0700 | [diff] [blame] | 1514 | /* Reset the process to make sure it's not stuck */ |
| 1515 | if (should_sleep_killable(filter, knotif)) |
| 1516 | complete(&knotif->ready); |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1517 | knotif->state = SECCOMP_NOTIFY_INIT; |
| 1518 | up(&filter->notif->request); |
| 1519 | } |
| 1520 | mutex_unlock(&filter->notify_lock); |
| 1521 | } |
| 1522 | |
| 1523 | return ret; |
| 1524 | } |
| 1525 | |
| 1526 | static long seccomp_notify_send(struct seccomp_filter *filter, |
| 1527 | void __user *buf) |
| 1528 | { |
| 1529 | struct seccomp_notif_resp resp = {}; |
Sargun Dhillon | 9f87dcf | 2020-06-01 04:25:32 -0700 | [diff] [blame] | 1530 | struct seccomp_knotif *knotif; |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1531 | long ret; |
| 1532 | |
| 1533 | if (copy_from_user(&resp, buf, sizeof(resp))) |
| 1534 | return -EFAULT; |
| 1535 | |
Christian Brauner | fb3c5386 | 2019-09-20 10:30:05 +0200 | [diff] [blame] | 1536 | if (resp.flags & ~SECCOMP_USER_NOTIF_FLAG_CONTINUE) |
| 1537 | return -EINVAL; |
| 1538 | |
| 1539 | if ((resp.flags & SECCOMP_USER_NOTIF_FLAG_CONTINUE) && |
| 1540 | (resp.error || resp.val)) |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1541 | return -EINVAL; |
| 1542 | |
| 1543 | ret = mutex_lock_interruptible(&filter->notify_lock); |
| 1544 | if (ret < 0) |
| 1545 | return ret; |
| 1546 | |
Sargun Dhillon | 9f87dcf | 2020-06-01 04:25:32 -0700 | [diff] [blame] | 1547 | knotif = find_notification(filter, resp.id); |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1548 | if (!knotif) { |
| 1549 | ret = -ENOENT; |
| 1550 | goto out; |
| 1551 | } |
| 1552 | |
| 1553 | /* Allow exactly one reply. */ |
| 1554 | if (knotif->state != SECCOMP_NOTIFY_SENT) { |
| 1555 | ret = -EINPROGRESS; |
| 1556 | goto out; |
| 1557 | } |
| 1558 | |
| 1559 | ret = 0; |
| 1560 | knotif->state = SECCOMP_NOTIFY_REPLIED; |
| 1561 | knotif->error = resp.error; |
| 1562 | knotif->val = resp.val; |
Christian Brauner | fb3c5386 | 2019-09-20 10:30:05 +0200 | [diff] [blame] | 1563 | knotif->flags = resp.flags; |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1564 | complete(&knotif->ready); |
| 1565 | out: |
| 1566 | mutex_unlock(&filter->notify_lock); |
| 1567 | return ret; |
| 1568 | } |
| 1569 | |
| 1570 | static long seccomp_notify_id_valid(struct seccomp_filter *filter, |
| 1571 | void __user *buf) |
| 1572 | { |
Sargun Dhillon | 9f87dcf | 2020-06-01 04:25:32 -0700 | [diff] [blame] | 1573 | struct seccomp_knotif *knotif; |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1574 | u64 id; |
| 1575 | long ret; |
| 1576 | |
| 1577 | if (copy_from_user(&id, buf, sizeof(id))) |
| 1578 | return -EFAULT; |
| 1579 | |
| 1580 | ret = mutex_lock_interruptible(&filter->notify_lock); |
| 1581 | if (ret < 0) |
| 1582 | return ret; |
| 1583 | |
Sargun Dhillon | 9f87dcf | 2020-06-01 04:25:32 -0700 | [diff] [blame] | 1584 | knotif = find_notification(filter, id); |
| 1585 | if (knotif && knotif->state == SECCOMP_NOTIFY_SENT) |
| 1586 | ret = 0; |
| 1587 | else |
| 1588 | ret = -ENOENT; |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1589 | |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1590 | mutex_unlock(&filter->notify_lock); |
| 1591 | return ret; |
| 1592 | } |
| 1593 | |
Sargun Dhillon | 7cf97b1 | 2020-06-02 18:10:43 -0700 | [diff] [blame] | 1594 | static long seccomp_notify_addfd(struct seccomp_filter *filter, |
| 1595 | struct seccomp_notif_addfd __user *uaddfd, |
| 1596 | unsigned int size) |
| 1597 | { |
| 1598 | struct seccomp_notif_addfd addfd; |
| 1599 | struct seccomp_knotif *knotif; |
| 1600 | struct seccomp_kaddfd kaddfd; |
| 1601 | int ret; |
| 1602 | |
| 1603 | BUILD_BUG_ON(sizeof(addfd) < SECCOMP_NOTIFY_ADDFD_SIZE_VER0); |
| 1604 | BUILD_BUG_ON(sizeof(addfd) != SECCOMP_NOTIFY_ADDFD_SIZE_LATEST); |
| 1605 | |
| 1606 | if (size < SECCOMP_NOTIFY_ADDFD_SIZE_VER0 || size >= PAGE_SIZE) |
| 1607 | return -EINVAL; |
| 1608 | |
| 1609 | ret = copy_struct_from_user(&addfd, sizeof(addfd), uaddfd, size); |
| 1610 | if (ret) |
| 1611 | return ret; |
| 1612 | |
| 1613 | if (addfd.newfd_flags & ~O_CLOEXEC) |
| 1614 | return -EINVAL; |
| 1615 | |
Rodrigo Campos | 0ae71c7 | 2021-05-17 12:39:07 -0700 | [diff] [blame] | 1616 | if (addfd.flags & ~(SECCOMP_ADDFD_FLAG_SETFD | SECCOMP_ADDFD_FLAG_SEND)) |
Sargun Dhillon | 7cf97b1 | 2020-06-02 18:10:43 -0700 | [diff] [blame] | 1617 | return -EINVAL; |
| 1618 | |
| 1619 | if (addfd.newfd && !(addfd.flags & SECCOMP_ADDFD_FLAG_SETFD)) |
| 1620 | return -EINVAL; |
| 1621 | |
| 1622 | kaddfd.file = fget(addfd.srcfd); |
| 1623 | if (!kaddfd.file) |
| 1624 | return -EBADF; |
| 1625 | |
Rodrigo Campos | 0ae71c7 | 2021-05-17 12:39:07 -0700 | [diff] [blame] | 1626 | kaddfd.ioctl_flags = addfd.flags; |
Sargun Dhillon | 7cf97b1 | 2020-06-02 18:10:43 -0700 | [diff] [blame] | 1627 | kaddfd.flags = addfd.newfd_flags; |
Christoph Hellwig | 42eb0d5 | 2021-03-25 09:22:09 +0100 | [diff] [blame] | 1628 | kaddfd.setfd = addfd.flags & SECCOMP_ADDFD_FLAG_SETFD; |
| 1629 | kaddfd.fd = addfd.newfd; |
Sargun Dhillon | 7cf97b1 | 2020-06-02 18:10:43 -0700 | [diff] [blame] | 1630 | init_completion(&kaddfd.completion); |
| 1631 | |
| 1632 | ret = mutex_lock_interruptible(&filter->notify_lock); |
| 1633 | if (ret < 0) |
| 1634 | goto out; |
| 1635 | |
| 1636 | knotif = find_notification(filter, addfd.id); |
| 1637 | if (!knotif) { |
| 1638 | ret = -ENOENT; |
| 1639 | goto out_unlock; |
| 1640 | } |
| 1641 | |
| 1642 | /* |
| 1643 | * We do not want to allow for FD injection to occur before the |
| 1644 | * notification has been picked up by a userspace handler, or after |
| 1645 | * the notification has been replied to. |
| 1646 | */ |
| 1647 | if (knotif->state != SECCOMP_NOTIFY_SENT) { |
| 1648 | ret = -EINPROGRESS; |
| 1649 | goto out_unlock; |
| 1650 | } |
| 1651 | |
Rodrigo Campos | 0ae71c7 | 2021-05-17 12:39:07 -0700 | [diff] [blame] | 1652 | if (addfd.flags & SECCOMP_ADDFD_FLAG_SEND) { |
| 1653 | /* |
| 1654 | * Disallow queuing an atomic addfd + send reply while there are |
| 1655 | * some addfd requests still to process. |
| 1656 | * |
| 1657 | * There is no clear reason to support it and allows us to keep |
| 1658 | * the loop on the other side straight-forward. |
| 1659 | */ |
| 1660 | if (!list_empty(&knotif->addfd)) { |
| 1661 | ret = -EBUSY; |
| 1662 | goto out_unlock; |
| 1663 | } |
| 1664 | |
| 1665 | /* Allow exactly only one reply */ |
| 1666 | knotif->state = SECCOMP_NOTIFY_REPLIED; |
| 1667 | } |
| 1668 | |
Sargun Dhillon | 7cf97b1 | 2020-06-02 18:10:43 -0700 | [diff] [blame] | 1669 | list_add(&kaddfd.list, &knotif->addfd); |
| 1670 | complete(&knotif->ready); |
| 1671 | mutex_unlock(&filter->notify_lock); |
| 1672 | |
| 1673 | /* Now we wait for it to be processed or be interrupted */ |
| 1674 | ret = wait_for_completion_interruptible(&kaddfd.completion); |
| 1675 | if (ret == 0) { |
| 1676 | /* |
| 1677 | * We had a successful completion. The other side has already |
| 1678 | * removed us from the addfd queue, and |
| 1679 | * wait_for_completion_interruptible has a memory barrier upon |
| 1680 | * success that lets us read this value directly without |
| 1681 | * locking. |
| 1682 | */ |
| 1683 | ret = kaddfd.ret; |
| 1684 | goto out; |
| 1685 | } |
| 1686 | |
| 1687 | mutex_lock(&filter->notify_lock); |
| 1688 | /* |
| 1689 | * Even though we were woken up by a signal and not a successful |
| 1690 | * completion, a completion may have happened in the mean time. |
| 1691 | * |
| 1692 | * We need to check again if the addfd request has been handled, |
| 1693 | * and if not, we will remove it from the queue. |
| 1694 | */ |
| 1695 | if (list_empty(&kaddfd.list)) |
| 1696 | ret = kaddfd.ret; |
| 1697 | else |
| 1698 | list_del(&kaddfd.list); |
| 1699 | |
| 1700 | out_unlock: |
| 1701 | mutex_unlock(&filter->notify_lock); |
| 1702 | out: |
| 1703 | fput(kaddfd.file); |
| 1704 | |
| 1705 | return ret; |
| 1706 | } |
| 1707 | |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1708 | static long seccomp_notify_ioctl(struct file *file, unsigned int cmd, |
| 1709 | unsigned long arg) |
| 1710 | { |
| 1711 | struct seccomp_filter *filter = file->private_data; |
| 1712 | void __user *buf = (void __user *)arg; |
| 1713 | |
Sargun Dhillon | 7cf97b1 | 2020-06-02 18:10:43 -0700 | [diff] [blame] | 1714 | /* Fixed-size ioctls */ |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1715 | switch (cmd) { |
| 1716 | case SECCOMP_IOCTL_NOTIF_RECV: |
| 1717 | return seccomp_notify_recv(filter, buf); |
| 1718 | case SECCOMP_IOCTL_NOTIF_SEND: |
| 1719 | return seccomp_notify_send(filter, buf); |
Kees Cook | 47e33c05 | 2020-06-15 15:42:46 -0700 | [diff] [blame] | 1720 | case SECCOMP_IOCTL_NOTIF_ID_VALID_WRONG_DIR: |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1721 | case SECCOMP_IOCTL_NOTIF_ID_VALID: |
| 1722 | return seccomp_notify_id_valid(filter, buf); |
Sargun Dhillon | 7cf97b1 | 2020-06-02 18:10:43 -0700 | [diff] [blame] | 1723 | } |
| 1724 | |
| 1725 | /* Extensible Argument ioctls */ |
| 1726 | #define EA_IOCTL(cmd) ((cmd) & ~(IOC_INOUT | IOCSIZE_MASK)) |
| 1727 | switch (EA_IOCTL(cmd)) { |
| 1728 | case EA_IOCTL(SECCOMP_IOCTL_NOTIF_ADDFD): |
| 1729 | return seccomp_notify_addfd(filter, buf, _IOC_SIZE(cmd)); |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1730 | default: |
| 1731 | return -EINVAL; |
| 1732 | } |
| 1733 | } |
| 1734 | |
| 1735 | static __poll_t seccomp_notify_poll(struct file *file, |
| 1736 | struct poll_table_struct *poll_tab) |
| 1737 | { |
| 1738 | struct seccomp_filter *filter = file->private_data; |
| 1739 | __poll_t ret = 0; |
| 1740 | struct seccomp_knotif *cur; |
| 1741 | |
Christian Brauner | 76194c4 | 2020-06-01 11:50:07 -0700 | [diff] [blame] | 1742 | poll_wait(file, &filter->wqh, poll_tab); |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1743 | |
Tycho Andersen | 319deec | 2018-12-12 19:46:54 -0700 | [diff] [blame] | 1744 | if (mutex_lock_interruptible(&filter->notify_lock) < 0) |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1745 | return EPOLLERR; |
| 1746 | |
| 1747 | list_for_each_entry(cur, &filter->notif->notifications, list) { |
| 1748 | if (cur->state == SECCOMP_NOTIFY_INIT) |
| 1749 | ret |= EPOLLIN | EPOLLRDNORM; |
| 1750 | if (cur->state == SECCOMP_NOTIFY_SENT) |
| 1751 | ret |= EPOLLOUT | EPOLLWRNORM; |
| 1752 | if ((ret & EPOLLIN) && (ret & EPOLLOUT)) |
| 1753 | break; |
| 1754 | } |
| 1755 | |
| 1756 | mutex_unlock(&filter->notify_lock); |
| 1757 | |
Christian Brauner | 99cdb8b | 2020-05-31 13:50:30 +0200 | [diff] [blame] | 1758 | if (refcount_read(&filter->users) == 0) |
| 1759 | ret |= EPOLLHUP; |
| 1760 | |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1761 | return ret; |
| 1762 | } |
| 1763 | |
| 1764 | static const struct file_operations seccomp_notify_ops = { |
| 1765 | .poll = seccomp_notify_poll, |
| 1766 | .release = seccomp_notify_release, |
| 1767 | .unlocked_ioctl = seccomp_notify_ioctl, |
Sven Schnelle | 3db81af | 2020-03-10 13:33:32 +0100 | [diff] [blame] | 1768 | .compat_ioctl = seccomp_notify_ioctl, |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1769 | }; |
| 1770 | |
| 1771 | static struct file *init_listener(struct seccomp_filter *filter) |
| 1772 | { |
Jann Horn | dfe719f | 2020-10-05 03:44:01 +0200 | [diff] [blame] | 1773 | struct file *ret; |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1774 | |
| 1775 | ret = ERR_PTR(-ENOMEM); |
| 1776 | filter->notif = kzalloc(sizeof(*(filter->notif)), GFP_KERNEL); |
| 1777 | if (!filter->notif) |
| 1778 | goto out; |
| 1779 | |
| 1780 | sema_init(&filter->notif->request, 0); |
| 1781 | filter->notif->next_id = get_random_u64(); |
| 1782 | INIT_LIST_HEAD(&filter->notif->notifications); |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1783 | |
| 1784 | ret = anon_inode_getfile("seccomp notify", &seccomp_notify_ops, |
| 1785 | filter, O_RDWR); |
| 1786 | if (IS_ERR(ret)) |
| 1787 | goto out_notif; |
| 1788 | |
| 1789 | /* The file has a reference to it now */ |
| 1790 | __get_seccomp_filter(filter); |
| 1791 | |
| 1792 | out_notif: |
| 1793 | if (IS_ERR(ret)) |
Tycho Andersen | e839317 | 2020-09-02 08:09:53 -0600 | [diff] [blame] | 1794 | seccomp_notify_free(filter); |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1795 | out: |
| 1796 | return ret; |
| 1797 | } |
| 1798 | |
Jann Horn | dfe719f | 2020-10-05 03:44:01 +0200 | [diff] [blame] | 1799 | /* |
| 1800 | * Does @new_child have a listener while an ancestor also has a listener? |
| 1801 | * If so, we'll want to reject this filter. |
| 1802 | * This only has to be tested for the current process, even in the TSYNC case, |
| 1803 | * because TSYNC installs @child with the same parent on all threads. |
| 1804 | * Note that @new_child is not hooked up to its parent at this point yet, so |
| 1805 | * we use current->seccomp.filter. |
| 1806 | */ |
| 1807 | static bool has_duplicate_listener(struct seccomp_filter *new_child) |
| 1808 | { |
| 1809 | struct seccomp_filter *cur; |
| 1810 | |
| 1811 | /* must be protected against concurrent TSYNC */ |
| 1812 | lockdep_assert_held(¤t->sighand->siglock); |
| 1813 | |
| 1814 | if (!new_child->notif) |
| 1815 | return false; |
| 1816 | for (cur = current->seccomp.filter; cur; cur = cur->prev) { |
| 1817 | if (cur->notif) |
| 1818 | return true; |
| 1819 | } |
| 1820 | |
| 1821 | return false; |
| 1822 | } |
| 1823 | |
Kees Cook | 3b23dd1 | 2014-06-25 15:55:25 -0700 | [diff] [blame] | 1824 | /** |
| 1825 | * seccomp_set_mode_filter: internal function for setting seccomp filter |
Kees Cook | 48dc92b | 2014-06-25 16:08:24 -0700 | [diff] [blame] | 1826 | * @flags: flags to change filter behavior |
Kees Cook | 3b23dd1 | 2014-06-25 15:55:25 -0700 | [diff] [blame] | 1827 | * @filter: struct sock_fprog containing filter |
| 1828 | * |
| 1829 | * This function may be called repeatedly to install additional filters. |
| 1830 | * Every filter successfully installed will be evaluated (in reverse order) |
| 1831 | * for each system call the task makes. |
| 1832 | * |
| 1833 | * Once current->seccomp.mode is non-zero, it may not be changed. |
| 1834 | * |
| 1835 | * Returns 0 on success or -EINVAL on failure. |
| 1836 | */ |
Kees Cook | 48dc92b | 2014-06-25 16:08:24 -0700 | [diff] [blame] | 1837 | static long seccomp_set_mode_filter(unsigned int flags, |
| 1838 | const char __user *filter) |
Kees Cook | 3b23dd1 | 2014-06-25 15:55:25 -0700 | [diff] [blame] | 1839 | { |
| 1840 | const unsigned long seccomp_mode = SECCOMP_MODE_FILTER; |
Kees Cook | c8bee43 | 2014-06-27 15:16:33 -0700 | [diff] [blame] | 1841 | struct seccomp_filter *prepared = NULL; |
Kees Cook | 3b23dd1 | 2014-06-25 15:55:25 -0700 | [diff] [blame] | 1842 | long ret = -EINVAL; |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1843 | int listener = -1; |
| 1844 | struct file *listener_f = NULL; |
Kees Cook | 3b23dd1 | 2014-06-25 15:55:25 -0700 | [diff] [blame] | 1845 | |
Kees Cook | 48dc92b | 2014-06-25 16:08:24 -0700 | [diff] [blame] | 1846 | /* Validate flags. */ |
Kees Cook | c2e1f2e | 2014-06-05 00:23:17 -0700 | [diff] [blame] | 1847 | if (flags & ~SECCOMP_FILTER_FLAG_MASK) |
Kees Cook | dbd95212 | 2014-06-27 15:18:48 -0700 | [diff] [blame] | 1848 | return -EINVAL; |
Kees Cook | 48dc92b | 2014-06-25 16:08:24 -0700 | [diff] [blame] | 1849 | |
Tycho Andersen | 7a0df7f | 2019-03-06 13:14:13 -0700 | [diff] [blame] | 1850 | /* |
| 1851 | * In the successful case, NEW_LISTENER returns the new listener fd. |
| 1852 | * But in the failure case, TSYNC returns the thread that died. If you |
| 1853 | * combine these two flags, there's no way to tell whether something |
Tycho Andersen | 5189149 | 2020-03-04 11:05:17 -0700 | [diff] [blame] | 1854 | * succeeded or failed. So, let's disallow this combination if the user |
| 1855 | * has not explicitly requested no errors from TSYNC. |
Tycho Andersen | 7a0df7f | 2019-03-06 13:14:13 -0700 | [diff] [blame] | 1856 | */ |
| 1857 | if ((flags & SECCOMP_FILTER_FLAG_TSYNC) && |
Tycho Andersen | 5189149 | 2020-03-04 11:05:17 -0700 | [diff] [blame] | 1858 | (flags & SECCOMP_FILTER_FLAG_NEW_LISTENER) && |
| 1859 | ((flags & SECCOMP_FILTER_FLAG_TSYNC_ESRCH) == 0)) |
Tycho Andersen | 7a0df7f | 2019-03-06 13:14:13 -0700 | [diff] [blame] | 1860 | return -EINVAL; |
| 1861 | |
Sargun Dhillon | c2aa2df | 2022-05-03 01:09:56 -0700 | [diff] [blame] | 1862 | /* |
| 1863 | * The SECCOMP_FILTER_FLAG_WAIT_KILLABLE_SENT flag doesn't make sense |
| 1864 | * without the SECCOMP_FILTER_FLAG_NEW_LISTENER flag. |
| 1865 | */ |
| 1866 | if ((flags & SECCOMP_FILTER_FLAG_WAIT_KILLABLE_RECV) && |
| 1867 | ((flags & SECCOMP_FILTER_FLAG_NEW_LISTENER) == 0)) |
| 1868 | return -EINVAL; |
| 1869 | |
Kees Cook | c8bee43 | 2014-06-27 15:16:33 -0700 | [diff] [blame] | 1870 | /* Prepare the new filter before holding any locks. */ |
| 1871 | prepared = seccomp_prepare_user_filter(filter); |
| 1872 | if (IS_ERR(prepared)) |
| 1873 | return PTR_ERR(prepared); |
| 1874 | |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1875 | if (flags & SECCOMP_FILTER_FLAG_NEW_LISTENER) { |
| 1876 | listener = get_unused_fd_flags(O_CLOEXEC); |
| 1877 | if (listener < 0) { |
| 1878 | ret = listener; |
| 1879 | goto out_free; |
| 1880 | } |
| 1881 | |
| 1882 | listener_f = init_listener(prepared); |
| 1883 | if (IS_ERR(listener_f)) { |
| 1884 | put_unused_fd(listener); |
| 1885 | ret = PTR_ERR(listener_f); |
| 1886 | goto out_free; |
| 1887 | } |
| 1888 | } |
| 1889 | |
Kees Cook | c2e1f2e | 2014-06-05 00:23:17 -0700 | [diff] [blame] | 1890 | /* |
| 1891 | * Make sure we cannot change seccomp or nnp state via TSYNC |
| 1892 | * while another thread is in the middle of calling exec. |
| 1893 | */ |
| 1894 | if (flags & SECCOMP_FILTER_FLAG_TSYNC && |
| 1895 | mutex_lock_killable(¤t->signal->cred_guard_mutex)) |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1896 | goto out_put_fd; |
Kees Cook | c2e1f2e | 2014-06-05 00:23:17 -0700 | [diff] [blame] | 1897 | |
Kees Cook | dbd95212 | 2014-06-27 15:18:48 -0700 | [diff] [blame] | 1898 | spin_lock_irq(¤t->sighand->siglock); |
| 1899 | |
Kees Cook | 3b23dd1 | 2014-06-25 15:55:25 -0700 | [diff] [blame] | 1900 | if (!seccomp_may_assign_mode(seccomp_mode)) |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 1901 | goto out; |
Kees Cook | 3b23dd1 | 2014-06-25 15:55:25 -0700 | [diff] [blame] | 1902 | |
Jann Horn | dfe719f | 2020-10-05 03:44:01 +0200 | [diff] [blame] | 1903 | if (has_duplicate_listener(prepared)) { |
| 1904 | ret = -EBUSY; |
| 1905 | goto out; |
| 1906 | } |
| 1907 | |
Kees Cook | c8bee43 | 2014-06-27 15:16:33 -0700 | [diff] [blame] | 1908 | ret = seccomp_attach_filter(flags, prepared); |
Kees Cook | 3b23dd1 | 2014-06-25 15:55:25 -0700 | [diff] [blame] | 1909 | if (ret) |
| 1910 | goto out; |
Kees Cook | c8bee43 | 2014-06-27 15:16:33 -0700 | [diff] [blame] | 1911 | /* Do not free the successfully attached filter. */ |
| 1912 | prepared = NULL; |
Andrea Arcangeli | 1d9d02f | 2007-07-15 23:41:32 -0700 | [diff] [blame] | 1913 | |
Kees Cook | 00a02d0 | 2018-05-03 14:56:12 -0700 | [diff] [blame] | 1914 | seccomp_assign_mode(current, seccomp_mode, flags); |
Will Drewry | e2cfabdf | 2012-04-12 16:47:57 -0500 | [diff] [blame] | 1915 | out: |
Kees Cook | dbd95212 | 2014-06-27 15:18:48 -0700 | [diff] [blame] | 1916 | spin_unlock_irq(¤t->sighand->siglock); |
Kees Cook | c2e1f2e | 2014-06-05 00:23:17 -0700 | [diff] [blame] | 1917 | if (flags & SECCOMP_FILTER_FLAG_TSYNC) |
| 1918 | mutex_unlock(¤t->signal->cred_guard_mutex); |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1919 | out_put_fd: |
| 1920 | if (flags & SECCOMP_FILTER_FLAG_NEW_LISTENER) { |
Tycho Andersen | 7a0df7f | 2019-03-06 13:14:13 -0700 | [diff] [blame] | 1921 | if (ret) { |
Tycho Andersen | a811dc6 | 2019-01-12 11:24:20 -0700 | [diff] [blame] | 1922 | listener_f->private_data = NULL; |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1923 | fput(listener_f); |
| 1924 | put_unused_fd(listener); |
Tycho Andersen | a566a90 | 2020-09-01 19:40:16 -0600 | [diff] [blame] | 1925 | seccomp_notify_detach(prepared); |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1926 | } else { |
| 1927 | fd_install(listener, listener_f); |
| 1928 | ret = listener; |
| 1929 | } |
| 1930 | } |
Kees Cook | c2e1f2e | 2014-06-05 00:23:17 -0700 | [diff] [blame] | 1931 | out_free: |
Kees Cook | c8bee43 | 2014-06-27 15:16:33 -0700 | [diff] [blame] | 1932 | seccomp_filter_free(prepared); |
Andrea Arcangeli | 1d9d02f | 2007-07-15 23:41:32 -0700 | [diff] [blame] | 1933 | return ret; |
| 1934 | } |
Kees Cook | 3b23dd1 | 2014-06-25 15:55:25 -0700 | [diff] [blame] | 1935 | #else |
Kees Cook | 48dc92b | 2014-06-25 16:08:24 -0700 | [diff] [blame] | 1936 | static inline long seccomp_set_mode_filter(unsigned int flags, |
| 1937 | const char __user *filter) |
Kees Cook | 3b23dd1 | 2014-06-25 15:55:25 -0700 | [diff] [blame] | 1938 | { |
| 1939 | return -EINVAL; |
| 1940 | } |
| 1941 | #endif |
Kees Cook | d78ab02 | 2014-05-21 15:02:11 -0700 | [diff] [blame] | 1942 | |
Tyler Hicks | d612b1f | 2017-08-11 04:33:53 +0000 | [diff] [blame] | 1943 | static long seccomp_get_action_avail(const char __user *uaction) |
| 1944 | { |
| 1945 | u32 action; |
| 1946 | |
| 1947 | if (copy_from_user(&action, uaction, sizeof(action))) |
| 1948 | return -EFAULT; |
| 1949 | |
| 1950 | switch (action) { |
Kees Cook | 0466bdb | 2017-08-11 13:12:11 -0700 | [diff] [blame] | 1951 | case SECCOMP_RET_KILL_PROCESS: |
Kees Cook | fd76875 | 2017-08-11 12:53:18 -0700 | [diff] [blame] | 1952 | case SECCOMP_RET_KILL_THREAD: |
Tyler Hicks | d612b1f | 2017-08-11 04:33:53 +0000 | [diff] [blame] | 1953 | case SECCOMP_RET_TRAP: |
| 1954 | case SECCOMP_RET_ERRNO: |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1955 | case SECCOMP_RET_USER_NOTIF: |
Tyler Hicks | d612b1f | 2017-08-11 04:33:53 +0000 | [diff] [blame] | 1956 | case SECCOMP_RET_TRACE: |
Tyler Hicks | 59f5cf4 | 2017-08-11 04:33:57 +0000 | [diff] [blame] | 1957 | case SECCOMP_RET_LOG: |
Tyler Hicks | d612b1f | 2017-08-11 04:33:53 +0000 | [diff] [blame] | 1958 | case SECCOMP_RET_ALLOW: |
| 1959 | break; |
| 1960 | default: |
| 1961 | return -EOPNOTSUPP; |
| 1962 | } |
| 1963 | |
| 1964 | return 0; |
| 1965 | } |
| 1966 | |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1967 | static long seccomp_get_notif_sizes(void __user *usizes) |
| 1968 | { |
| 1969 | struct seccomp_notif_sizes sizes = { |
| 1970 | .seccomp_notif = sizeof(struct seccomp_notif), |
| 1971 | .seccomp_notif_resp = sizeof(struct seccomp_notif_resp), |
| 1972 | .seccomp_data = sizeof(struct seccomp_data), |
| 1973 | }; |
| 1974 | |
| 1975 | if (copy_to_user(usizes, &sizes, sizeof(sizes))) |
| 1976 | return -EFAULT; |
| 1977 | |
| 1978 | return 0; |
| 1979 | } |
| 1980 | |
Kees Cook | 48dc92b | 2014-06-25 16:08:24 -0700 | [diff] [blame] | 1981 | /* Common entry point for both prctl and syscall. */ |
| 1982 | static long do_seccomp(unsigned int op, unsigned int flags, |
Tycho Andersen | a5662e4 | 2018-12-09 11:24:12 -0700 | [diff] [blame] | 1983 | void __user *uargs) |
Kees Cook | 48dc92b | 2014-06-25 16:08:24 -0700 | [diff] [blame] | 1984 | { |
| 1985 | switch (op) { |
| 1986 | case SECCOMP_SET_MODE_STRICT: |
| 1987 | if (flags != 0 || uargs != NULL) |
| 1988 | return -EINVAL; |
| 1989 | return seccomp_set_mode_strict(); |
| 1990 | case SECCOMP_SET_MODE_FILTER: |
| 1991 | return seccomp_set_mode_filter(flags, uargs); |
Tyler Hicks | d612b1f | 2017-08-11 04:33:53 +0000 | [diff] [blame] | 1992 | case SECCOMP_GET_ACTION_AVAIL: |
| 1993 | if (flags != 0) |
| 1994 | return -EINVAL; |
| 1995 | |
| 1996 | return seccomp_get_action_avail(uargs); |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 1997 | case SECCOMP_GET_NOTIF_SIZES: |
| 1998 | if (flags != 0) |
| 1999 | return -EINVAL; |
| 2000 | |
| 2001 | return seccomp_get_notif_sizes(uargs); |
Kees Cook | 48dc92b | 2014-06-25 16:08:24 -0700 | [diff] [blame] | 2002 | default: |
| 2003 | return -EINVAL; |
| 2004 | } |
| 2005 | } |
| 2006 | |
| 2007 | SYSCALL_DEFINE3(seccomp, unsigned int, op, unsigned int, flags, |
Tycho Andersen | a5662e4 | 2018-12-09 11:24:12 -0700 | [diff] [blame] | 2008 | void __user *, uargs) |
Kees Cook | 48dc92b | 2014-06-25 16:08:24 -0700 | [diff] [blame] | 2009 | { |
| 2010 | return do_seccomp(op, flags, uargs); |
| 2011 | } |
| 2012 | |
Kees Cook | d78ab02 | 2014-05-21 15:02:11 -0700 | [diff] [blame] | 2013 | /** |
| 2014 | * prctl_set_seccomp: configures current->seccomp.mode |
| 2015 | * @seccomp_mode: requested mode to use |
| 2016 | * @filter: optional struct sock_fprog for use with SECCOMP_MODE_FILTER |
| 2017 | * |
| 2018 | * Returns 0 on success or -EINVAL on failure. |
| 2019 | */ |
Tycho Andersen | a5662e4 | 2018-12-09 11:24:12 -0700 | [diff] [blame] | 2020 | long prctl_set_seccomp(unsigned long seccomp_mode, void __user *filter) |
Kees Cook | d78ab02 | 2014-05-21 15:02:11 -0700 | [diff] [blame] | 2021 | { |
Kees Cook | 48dc92b | 2014-06-25 16:08:24 -0700 | [diff] [blame] | 2022 | unsigned int op; |
Tycho Andersen | a5662e4 | 2018-12-09 11:24:12 -0700 | [diff] [blame] | 2023 | void __user *uargs; |
Kees Cook | 48dc92b | 2014-06-25 16:08:24 -0700 | [diff] [blame] | 2024 | |
Kees Cook | 3b23dd1 | 2014-06-25 15:55:25 -0700 | [diff] [blame] | 2025 | switch (seccomp_mode) { |
| 2026 | case SECCOMP_MODE_STRICT: |
Kees Cook | 48dc92b | 2014-06-25 16:08:24 -0700 | [diff] [blame] | 2027 | op = SECCOMP_SET_MODE_STRICT; |
| 2028 | /* |
| 2029 | * Setting strict mode through prctl always ignored filter, |
| 2030 | * so make sure it is always NULL here to pass the internal |
| 2031 | * check in do_seccomp(). |
| 2032 | */ |
| 2033 | uargs = NULL; |
| 2034 | break; |
Kees Cook | 3b23dd1 | 2014-06-25 15:55:25 -0700 | [diff] [blame] | 2035 | case SECCOMP_MODE_FILTER: |
Kees Cook | 48dc92b | 2014-06-25 16:08:24 -0700 | [diff] [blame] | 2036 | op = SECCOMP_SET_MODE_FILTER; |
| 2037 | uargs = filter; |
| 2038 | break; |
Kees Cook | 3b23dd1 | 2014-06-25 15:55:25 -0700 | [diff] [blame] | 2039 | default: |
| 2040 | return -EINVAL; |
| 2041 | } |
Kees Cook | 48dc92b | 2014-06-25 16:08:24 -0700 | [diff] [blame] | 2042 | |
| 2043 | /* prctl interface doesn't have flags, so they are always zero. */ |
| 2044 | return do_seccomp(op, 0, uargs); |
Kees Cook | d78ab02 | 2014-05-21 15:02:11 -0700 | [diff] [blame] | 2045 | } |
Tycho Andersen | f8e529ed | 2015-10-27 09:23:59 +0900 | [diff] [blame] | 2046 | |
| 2047 | #if defined(CONFIG_SECCOMP_FILTER) && defined(CONFIG_CHECKPOINT_RESTORE) |
Tycho Andersen | f06eae8 | 2017-10-11 09:39:20 -0600 | [diff] [blame] | 2048 | static struct seccomp_filter *get_nth_filter(struct task_struct *task, |
| 2049 | unsigned long filter_off) |
| 2050 | { |
| 2051 | struct seccomp_filter *orig, *filter; |
| 2052 | unsigned long count; |
| 2053 | |
| 2054 | /* |
| 2055 | * Note: this is only correct because the caller should be the (ptrace) |
| 2056 | * tracer of the task, otherwise lock_task_sighand is needed. |
| 2057 | */ |
| 2058 | spin_lock_irq(&task->sighand->siglock); |
| 2059 | |
| 2060 | if (task->seccomp.mode != SECCOMP_MODE_FILTER) { |
| 2061 | spin_unlock_irq(&task->sighand->siglock); |
| 2062 | return ERR_PTR(-EINVAL); |
| 2063 | } |
| 2064 | |
| 2065 | orig = task->seccomp.filter; |
| 2066 | __get_seccomp_filter(orig); |
| 2067 | spin_unlock_irq(&task->sighand->siglock); |
| 2068 | |
| 2069 | count = 0; |
| 2070 | for (filter = orig; filter; filter = filter->prev) |
| 2071 | count++; |
| 2072 | |
| 2073 | if (filter_off >= count) { |
| 2074 | filter = ERR_PTR(-ENOENT); |
| 2075 | goto out; |
| 2076 | } |
| 2077 | |
| 2078 | count -= filter_off; |
| 2079 | for (filter = orig; filter && count > 1; filter = filter->prev) |
| 2080 | count--; |
| 2081 | |
| 2082 | if (WARN_ON(count != 1 || !filter)) { |
| 2083 | filter = ERR_PTR(-ENOENT); |
| 2084 | goto out; |
| 2085 | } |
| 2086 | |
| 2087 | __get_seccomp_filter(filter); |
| 2088 | |
| 2089 | out: |
| 2090 | __put_seccomp_filter(orig); |
| 2091 | return filter; |
| 2092 | } |
| 2093 | |
Tycho Andersen | f8e529ed | 2015-10-27 09:23:59 +0900 | [diff] [blame] | 2094 | long seccomp_get_filter(struct task_struct *task, unsigned long filter_off, |
| 2095 | void __user *data) |
| 2096 | { |
| 2097 | struct seccomp_filter *filter; |
| 2098 | struct sock_fprog_kern *fprog; |
| 2099 | long ret; |
Tycho Andersen | f8e529ed | 2015-10-27 09:23:59 +0900 | [diff] [blame] | 2100 | |
| 2101 | if (!capable(CAP_SYS_ADMIN) || |
| 2102 | current->seccomp.mode != SECCOMP_MODE_DISABLED) { |
| 2103 | return -EACCES; |
| 2104 | } |
| 2105 | |
Tycho Andersen | f06eae8 | 2017-10-11 09:39:20 -0600 | [diff] [blame] | 2106 | filter = get_nth_filter(task, filter_off); |
| 2107 | if (IS_ERR(filter)) |
| 2108 | return PTR_ERR(filter); |
Tycho Andersen | f8e529ed | 2015-10-27 09:23:59 +0900 | [diff] [blame] | 2109 | |
| 2110 | fprog = filter->prog->orig_prog; |
| 2111 | if (!fprog) { |
Mickaël Salaün | 470bf1f | 2016-03-24 02:46:33 +0100 | [diff] [blame] | 2112 | /* This must be a new non-cBPF filter, since we save |
Tycho Andersen | f8e529ed | 2015-10-27 09:23:59 +0900 | [diff] [blame] | 2113 | * every cBPF filter's orig_prog above when |
| 2114 | * CONFIG_CHECKPOINT_RESTORE is enabled. |
| 2115 | */ |
| 2116 | ret = -EMEDIUMTYPE; |
| 2117 | goto out; |
| 2118 | } |
| 2119 | |
| 2120 | ret = fprog->len; |
| 2121 | if (!data) |
| 2122 | goto out; |
| 2123 | |
Tycho Andersen | f8e529ed | 2015-10-27 09:23:59 +0900 | [diff] [blame] | 2124 | if (copy_to_user(data, fprog->filter, bpf_classic_proglen(fprog))) |
| 2125 | ret = -EFAULT; |
| 2126 | |
Tycho Andersen | f8e529ed | 2015-10-27 09:23:59 +0900 | [diff] [blame] | 2127 | out: |
Tyler Hicks | 8e5f1ad | 2017-08-11 04:33:52 +0000 | [diff] [blame] | 2128 | __put_seccomp_filter(filter); |
| 2129 | return ret; |
Tycho Andersen | f8e529ed | 2015-10-27 09:23:59 +0900 | [diff] [blame] | 2130 | } |
Tycho Andersen | f8e529ed | 2015-10-27 09:23:59 +0900 | [diff] [blame] | 2131 | |
Tycho Andersen | 2650047 | 2017-10-11 09:39:21 -0600 | [diff] [blame] | 2132 | long seccomp_get_metadata(struct task_struct *task, |
| 2133 | unsigned long size, void __user *data) |
| 2134 | { |
| 2135 | long ret; |
| 2136 | struct seccomp_filter *filter; |
| 2137 | struct seccomp_metadata kmd = {}; |
| 2138 | |
| 2139 | if (!capable(CAP_SYS_ADMIN) || |
| 2140 | current->seccomp.mode != SECCOMP_MODE_DISABLED) { |
| 2141 | return -EACCES; |
| 2142 | } |
| 2143 | |
| 2144 | size = min_t(unsigned long, size, sizeof(kmd)); |
| 2145 | |
Tycho Andersen | 63bb004 | 2018-02-20 19:47:46 -0700 | [diff] [blame] | 2146 | if (size < sizeof(kmd.filter_off)) |
| 2147 | return -EINVAL; |
| 2148 | |
| 2149 | if (copy_from_user(&kmd.filter_off, data, sizeof(kmd.filter_off))) |
Tycho Andersen | 2650047 | 2017-10-11 09:39:21 -0600 | [diff] [blame] | 2150 | return -EFAULT; |
| 2151 | |
| 2152 | filter = get_nth_filter(task, kmd.filter_off); |
| 2153 | if (IS_ERR(filter)) |
| 2154 | return PTR_ERR(filter); |
| 2155 | |
Tycho Andersen | 2650047 | 2017-10-11 09:39:21 -0600 | [diff] [blame] | 2156 | if (filter->log) |
| 2157 | kmd.flags |= SECCOMP_FILTER_FLAG_LOG; |
| 2158 | |
| 2159 | ret = size; |
| 2160 | if (copy_to_user(data, &kmd, size)) |
| 2161 | ret = -EFAULT; |
| 2162 | |
| 2163 | __put_seccomp_filter(filter); |
Tycho Andersen | f8e529ed | 2015-10-27 09:23:59 +0900 | [diff] [blame] | 2164 | return ret; |
| 2165 | } |
| 2166 | #endif |
Tyler Hicks | 8e5f1ad | 2017-08-11 04:33:52 +0000 | [diff] [blame] | 2167 | |
| 2168 | #ifdef CONFIG_SYSCTL |
| 2169 | |
| 2170 | /* Human readable action names for friendly sysctl interaction */ |
Kees Cook | 0466bdb | 2017-08-11 13:12:11 -0700 | [diff] [blame] | 2171 | #define SECCOMP_RET_KILL_PROCESS_NAME "kill_process" |
Kees Cook | fd76875 | 2017-08-11 12:53:18 -0700 | [diff] [blame] | 2172 | #define SECCOMP_RET_KILL_THREAD_NAME "kill_thread" |
Tyler Hicks | 8e5f1ad | 2017-08-11 04:33:52 +0000 | [diff] [blame] | 2173 | #define SECCOMP_RET_TRAP_NAME "trap" |
| 2174 | #define SECCOMP_RET_ERRNO_NAME "errno" |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 2175 | #define SECCOMP_RET_USER_NOTIF_NAME "user_notif" |
Tyler Hicks | 8e5f1ad | 2017-08-11 04:33:52 +0000 | [diff] [blame] | 2176 | #define SECCOMP_RET_TRACE_NAME "trace" |
Tyler Hicks | 59f5cf4 | 2017-08-11 04:33:57 +0000 | [diff] [blame] | 2177 | #define SECCOMP_RET_LOG_NAME "log" |
Tyler Hicks | 8e5f1ad | 2017-08-11 04:33:52 +0000 | [diff] [blame] | 2178 | #define SECCOMP_RET_ALLOW_NAME "allow" |
| 2179 | |
Kees Cook | fd76875 | 2017-08-11 12:53:18 -0700 | [diff] [blame] | 2180 | static const char seccomp_actions_avail[] = |
Kees Cook | 0466bdb | 2017-08-11 13:12:11 -0700 | [diff] [blame] | 2181 | SECCOMP_RET_KILL_PROCESS_NAME " " |
Kees Cook | fd76875 | 2017-08-11 12:53:18 -0700 | [diff] [blame] | 2182 | SECCOMP_RET_KILL_THREAD_NAME " " |
| 2183 | SECCOMP_RET_TRAP_NAME " " |
| 2184 | SECCOMP_RET_ERRNO_NAME " " |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 2185 | SECCOMP_RET_USER_NOTIF_NAME " " |
Kees Cook | fd76875 | 2017-08-11 12:53:18 -0700 | [diff] [blame] | 2186 | SECCOMP_RET_TRACE_NAME " " |
| 2187 | SECCOMP_RET_LOG_NAME " " |
| 2188 | SECCOMP_RET_ALLOW_NAME; |
Tyler Hicks | 8e5f1ad | 2017-08-11 04:33:52 +0000 | [diff] [blame] | 2189 | |
Tyler Hicks | 0ddec0f | 2017-08-11 04:33:54 +0000 | [diff] [blame] | 2190 | struct seccomp_log_name { |
| 2191 | u32 log; |
| 2192 | const char *name; |
| 2193 | }; |
| 2194 | |
| 2195 | static const struct seccomp_log_name seccomp_log_names[] = { |
Kees Cook | 0466bdb | 2017-08-11 13:12:11 -0700 | [diff] [blame] | 2196 | { SECCOMP_LOG_KILL_PROCESS, SECCOMP_RET_KILL_PROCESS_NAME }, |
Kees Cook | fd76875 | 2017-08-11 12:53:18 -0700 | [diff] [blame] | 2197 | { SECCOMP_LOG_KILL_THREAD, SECCOMP_RET_KILL_THREAD_NAME }, |
Tyler Hicks | 0ddec0f | 2017-08-11 04:33:54 +0000 | [diff] [blame] | 2198 | { SECCOMP_LOG_TRAP, SECCOMP_RET_TRAP_NAME }, |
| 2199 | { SECCOMP_LOG_ERRNO, SECCOMP_RET_ERRNO_NAME }, |
Tycho Andersen | 6a21cc5 | 2018-12-09 11:24:13 -0700 | [diff] [blame] | 2200 | { SECCOMP_LOG_USER_NOTIF, SECCOMP_RET_USER_NOTIF_NAME }, |
Tyler Hicks | 0ddec0f | 2017-08-11 04:33:54 +0000 | [diff] [blame] | 2201 | { SECCOMP_LOG_TRACE, SECCOMP_RET_TRACE_NAME }, |
Tyler Hicks | 59f5cf4 | 2017-08-11 04:33:57 +0000 | [diff] [blame] | 2202 | { SECCOMP_LOG_LOG, SECCOMP_RET_LOG_NAME }, |
Tyler Hicks | 0ddec0f | 2017-08-11 04:33:54 +0000 | [diff] [blame] | 2203 | { SECCOMP_LOG_ALLOW, SECCOMP_RET_ALLOW_NAME }, |
| 2204 | { } |
| 2205 | }; |
| 2206 | |
| 2207 | static bool seccomp_names_from_actions_logged(char *names, size_t size, |
Tyler Hicks | beb44ac | 2018-05-04 01:08:13 +0000 | [diff] [blame] | 2208 | u32 actions_logged, |
| 2209 | const char *sep) |
Tyler Hicks | 0ddec0f | 2017-08-11 04:33:54 +0000 | [diff] [blame] | 2210 | { |
| 2211 | const struct seccomp_log_name *cur; |
Tyler Hicks | beb44ac | 2018-05-04 01:08:13 +0000 | [diff] [blame] | 2212 | bool append_sep = false; |
Tyler Hicks | 0ddec0f | 2017-08-11 04:33:54 +0000 | [diff] [blame] | 2213 | |
| 2214 | for (cur = seccomp_log_names; cur->name && size; cur++) { |
| 2215 | ssize_t ret; |
| 2216 | |
| 2217 | if (!(actions_logged & cur->log)) |
| 2218 | continue; |
| 2219 | |
Tyler Hicks | beb44ac | 2018-05-04 01:08:13 +0000 | [diff] [blame] | 2220 | if (append_sep) { |
| 2221 | ret = strscpy(names, sep, size); |
Tyler Hicks | 0ddec0f | 2017-08-11 04:33:54 +0000 | [diff] [blame] | 2222 | if (ret < 0) |
| 2223 | return false; |
| 2224 | |
| 2225 | names += ret; |
| 2226 | size -= ret; |
| 2227 | } else |
Tyler Hicks | beb44ac | 2018-05-04 01:08:13 +0000 | [diff] [blame] | 2228 | append_sep = true; |
Tyler Hicks | 0ddec0f | 2017-08-11 04:33:54 +0000 | [diff] [blame] | 2229 | |
| 2230 | ret = strscpy(names, cur->name, size); |
| 2231 | if (ret < 0) |
| 2232 | return false; |
| 2233 | |
| 2234 | names += ret; |
| 2235 | size -= ret; |
| 2236 | } |
| 2237 | |
| 2238 | return true; |
| 2239 | } |
| 2240 | |
| 2241 | static bool seccomp_action_logged_from_name(u32 *action_logged, |
| 2242 | const char *name) |
| 2243 | { |
| 2244 | const struct seccomp_log_name *cur; |
| 2245 | |
| 2246 | for (cur = seccomp_log_names; cur->name; cur++) { |
| 2247 | if (!strcmp(cur->name, name)) { |
| 2248 | *action_logged = cur->log; |
| 2249 | return true; |
| 2250 | } |
| 2251 | } |
| 2252 | |
| 2253 | return false; |
| 2254 | } |
| 2255 | |
| 2256 | static bool seccomp_actions_logged_from_names(u32 *actions_logged, char *names) |
| 2257 | { |
| 2258 | char *name; |
| 2259 | |
| 2260 | *actions_logged = 0; |
| 2261 | while ((name = strsep(&names, " ")) && *name) { |
| 2262 | u32 action_logged = 0; |
| 2263 | |
| 2264 | if (!seccomp_action_logged_from_name(&action_logged, name)) |
| 2265 | return false; |
| 2266 | |
| 2267 | *actions_logged |= action_logged; |
| 2268 | } |
| 2269 | |
| 2270 | return true; |
| 2271 | } |
| 2272 | |
Jann Horn | fab686e | 2020-11-20 18:05:45 +0100 | [diff] [blame] | 2273 | static int read_actions_logged(struct ctl_table *ro_table, void *buffer, |
Tyler Hicks | d013db0 | 2018-05-04 01:08:12 +0000 | [diff] [blame] | 2274 | size_t *lenp, loff_t *ppos) |
Tyler Hicks | 0ddec0f | 2017-08-11 04:33:54 +0000 | [diff] [blame] | 2275 | { |
| 2276 | char names[sizeof(seccomp_actions_avail)]; |
| 2277 | struct ctl_table table; |
Tyler Hicks | 0ddec0f | 2017-08-11 04:33:54 +0000 | [diff] [blame] | 2278 | |
| 2279 | memset(names, 0, sizeof(names)); |
| 2280 | |
Tyler Hicks | d013db0 | 2018-05-04 01:08:12 +0000 | [diff] [blame] | 2281 | if (!seccomp_names_from_actions_logged(names, sizeof(names), |
Tyler Hicks | beb44ac | 2018-05-04 01:08:13 +0000 | [diff] [blame] | 2282 | seccomp_actions_logged, " ")) |
Tyler Hicks | d013db0 | 2018-05-04 01:08:12 +0000 | [diff] [blame] | 2283 | return -EINVAL; |
Tyler Hicks | 0ddec0f | 2017-08-11 04:33:54 +0000 | [diff] [blame] | 2284 | |
| 2285 | table = *ro_table; |
| 2286 | table.data = names; |
| 2287 | table.maxlen = sizeof(names); |
Tyler Hicks | d013db0 | 2018-05-04 01:08:12 +0000 | [diff] [blame] | 2288 | return proc_dostring(&table, 0, buffer, lenp, ppos); |
| 2289 | } |
| 2290 | |
Jann Horn | fab686e | 2020-11-20 18:05:45 +0100 | [diff] [blame] | 2291 | static int write_actions_logged(struct ctl_table *ro_table, void *buffer, |
Tyler Hicks | ea6eca7 | 2018-05-04 01:08:14 +0000 | [diff] [blame] | 2292 | size_t *lenp, loff_t *ppos, u32 *actions_logged) |
Tyler Hicks | 0ddec0f | 2017-08-11 04:33:54 +0000 | [diff] [blame] | 2293 | { |
| 2294 | char names[sizeof(seccomp_actions_avail)]; |
| 2295 | struct ctl_table table; |
| 2296 | int ret; |
| 2297 | |
Tyler Hicks | d013db0 | 2018-05-04 01:08:12 +0000 | [diff] [blame] | 2298 | if (!capable(CAP_SYS_ADMIN)) |
Tyler Hicks | 0ddec0f | 2017-08-11 04:33:54 +0000 | [diff] [blame] | 2299 | return -EPERM; |
| 2300 | |
| 2301 | memset(names, 0, sizeof(names)); |
| 2302 | |
Tyler Hicks | 0ddec0f | 2017-08-11 04:33:54 +0000 | [diff] [blame] | 2303 | table = *ro_table; |
| 2304 | table.data = names; |
| 2305 | table.maxlen = sizeof(names); |
Tyler Hicks | d013db0 | 2018-05-04 01:08:12 +0000 | [diff] [blame] | 2306 | ret = proc_dostring(&table, 1, buffer, lenp, ppos); |
Tyler Hicks | 0ddec0f | 2017-08-11 04:33:54 +0000 | [diff] [blame] | 2307 | if (ret) |
| 2308 | return ret; |
| 2309 | |
Tyler Hicks | ea6eca7 | 2018-05-04 01:08:14 +0000 | [diff] [blame] | 2310 | if (!seccomp_actions_logged_from_names(actions_logged, table.data)) |
Tyler Hicks | d013db0 | 2018-05-04 01:08:12 +0000 | [diff] [blame] | 2311 | return -EINVAL; |
Tyler Hicks | 0ddec0f | 2017-08-11 04:33:54 +0000 | [diff] [blame] | 2312 | |
Tyler Hicks | ea6eca7 | 2018-05-04 01:08:14 +0000 | [diff] [blame] | 2313 | if (*actions_logged & SECCOMP_LOG_ALLOW) |
Tyler Hicks | d013db0 | 2018-05-04 01:08:12 +0000 | [diff] [blame] | 2314 | return -EINVAL; |
Tyler Hicks | 0ddec0f | 2017-08-11 04:33:54 +0000 | [diff] [blame] | 2315 | |
Tyler Hicks | ea6eca7 | 2018-05-04 01:08:14 +0000 | [diff] [blame] | 2316 | seccomp_actions_logged = *actions_logged; |
Tyler Hicks | 0ddec0f | 2017-08-11 04:33:54 +0000 | [diff] [blame] | 2317 | return 0; |
| 2318 | } |
| 2319 | |
Tyler Hicks | ea6eca7 | 2018-05-04 01:08:14 +0000 | [diff] [blame] | 2320 | static void audit_actions_logged(u32 actions_logged, u32 old_actions_logged, |
| 2321 | int ret) |
| 2322 | { |
| 2323 | char names[sizeof(seccomp_actions_avail)]; |
| 2324 | char old_names[sizeof(seccomp_actions_avail)]; |
| 2325 | const char *new = names; |
| 2326 | const char *old = old_names; |
| 2327 | |
| 2328 | if (!audit_enabled) |
| 2329 | return; |
| 2330 | |
| 2331 | memset(names, 0, sizeof(names)); |
| 2332 | memset(old_names, 0, sizeof(old_names)); |
| 2333 | |
| 2334 | if (ret) |
| 2335 | new = "?"; |
| 2336 | else if (!actions_logged) |
| 2337 | new = "(none)"; |
| 2338 | else if (!seccomp_names_from_actions_logged(names, sizeof(names), |
| 2339 | actions_logged, ",")) |
| 2340 | new = "?"; |
| 2341 | |
| 2342 | if (!old_actions_logged) |
| 2343 | old = "(none)"; |
| 2344 | else if (!seccomp_names_from_actions_logged(old_names, |
| 2345 | sizeof(old_names), |
| 2346 | old_actions_logged, ",")) |
| 2347 | old = "?"; |
| 2348 | |
| 2349 | return audit_seccomp_actions_logged(new, old, !ret); |
| 2350 | } |
| 2351 | |
Tyler Hicks | d013db0 | 2018-05-04 01:08:12 +0000 | [diff] [blame] | 2352 | static int seccomp_actions_logged_handler(struct ctl_table *ro_table, int write, |
Christoph Hellwig | 3292739 | 2020-04-24 08:43:38 +0200 | [diff] [blame] | 2353 | void *buffer, size_t *lenp, |
Tyler Hicks | d013db0 | 2018-05-04 01:08:12 +0000 | [diff] [blame] | 2354 | loff_t *ppos) |
| 2355 | { |
Tyler Hicks | ea6eca7 | 2018-05-04 01:08:14 +0000 | [diff] [blame] | 2356 | int ret; |
| 2357 | |
| 2358 | if (write) { |
| 2359 | u32 actions_logged = 0; |
| 2360 | u32 old_actions_logged = seccomp_actions_logged; |
| 2361 | |
| 2362 | ret = write_actions_logged(ro_table, buffer, lenp, ppos, |
| 2363 | &actions_logged); |
| 2364 | audit_actions_logged(actions_logged, old_actions_logged, ret); |
| 2365 | } else |
| 2366 | ret = read_actions_logged(ro_table, buffer, lenp, ppos); |
| 2367 | |
| 2368 | return ret; |
Tyler Hicks | d013db0 | 2018-05-04 01:08:12 +0000 | [diff] [blame] | 2369 | } |
| 2370 | |
Tyler Hicks | 8e5f1ad | 2017-08-11 04:33:52 +0000 | [diff] [blame] | 2371 | static struct ctl_table seccomp_sysctl_table[] = { |
| 2372 | { |
| 2373 | .procname = "actions_avail", |
| 2374 | .data = (void *) &seccomp_actions_avail, |
| 2375 | .maxlen = sizeof(seccomp_actions_avail), |
| 2376 | .mode = 0444, |
| 2377 | .proc_handler = proc_dostring, |
| 2378 | }, |
Tyler Hicks | 0ddec0f | 2017-08-11 04:33:54 +0000 | [diff] [blame] | 2379 | { |
| 2380 | .procname = "actions_logged", |
| 2381 | .mode = 0644, |
| 2382 | .proc_handler = seccomp_actions_logged_handler, |
| 2383 | }, |
Tyler Hicks | 8e5f1ad | 2017-08-11 04:33:52 +0000 | [diff] [blame] | 2384 | { } |
| 2385 | }; |
| 2386 | |
| 2387 | static int __init seccomp_sysctl_init(void) |
| 2388 | { |
Luis Chamberlain | 02a6b45 | 2023-03-02 12:28:22 -0800 | [diff] [blame] | 2389 | register_sysctl_init("kernel/seccomp", seccomp_sysctl_table); |
Tyler Hicks | 8e5f1ad | 2017-08-11 04:33:52 +0000 | [diff] [blame] | 2390 | return 0; |
| 2391 | } |
| 2392 | |
| 2393 | device_initcall(seccomp_sysctl_init) |
| 2394 | |
| 2395 | #endif /* CONFIG_SYSCTL */ |
YiFei Zhu | 0d8315d | 2020-11-11 07:33:54 -0600 | [diff] [blame] | 2396 | |
| 2397 | #ifdef CONFIG_SECCOMP_CACHE_DEBUG |
| 2398 | /* Currently CONFIG_SECCOMP_CACHE_DEBUG implies SECCOMP_ARCH_NATIVE */ |
| 2399 | static void proc_pid_seccomp_cache_arch(struct seq_file *m, const char *name, |
| 2400 | const void *bitmap, size_t bitmap_size) |
| 2401 | { |
| 2402 | int nr; |
| 2403 | |
| 2404 | for (nr = 0; nr < bitmap_size; nr++) { |
| 2405 | bool cached = test_bit(nr, bitmap); |
| 2406 | char *status = cached ? "ALLOW" : "FILTER"; |
| 2407 | |
| 2408 | seq_printf(m, "%s %d %s\n", name, nr, status); |
| 2409 | } |
| 2410 | } |
| 2411 | |
| 2412 | int proc_pid_seccomp_cache(struct seq_file *m, struct pid_namespace *ns, |
| 2413 | struct pid *pid, struct task_struct *task) |
| 2414 | { |
| 2415 | struct seccomp_filter *f; |
| 2416 | unsigned long flags; |
| 2417 | |
| 2418 | /* |
| 2419 | * We don't want some sandboxed process to know what their seccomp |
| 2420 | * filters consist of. |
| 2421 | */ |
| 2422 | if (!file_ns_capable(m->file, &init_user_ns, CAP_SYS_ADMIN)) |
| 2423 | return -EACCES; |
| 2424 | |
| 2425 | if (!lock_task_sighand(task, &flags)) |
| 2426 | return -ESRCH; |
| 2427 | |
| 2428 | f = READ_ONCE(task->seccomp.filter); |
| 2429 | if (!f) { |
| 2430 | unlock_task_sighand(task, &flags); |
| 2431 | return 0; |
| 2432 | } |
| 2433 | |
| 2434 | /* prevent filter from being freed while we are printing it */ |
| 2435 | __get_seccomp_filter(f); |
| 2436 | unlock_task_sighand(task, &flags); |
| 2437 | |
| 2438 | proc_pid_seccomp_cache_arch(m, SECCOMP_ARCH_NATIVE_NAME, |
| 2439 | f->cache.allow_native, |
| 2440 | SECCOMP_ARCH_NATIVE_NR); |
| 2441 | |
| 2442 | #ifdef SECCOMP_ARCH_COMPAT |
| 2443 | proc_pid_seccomp_cache_arch(m, SECCOMP_ARCH_COMPAT_NAME, |
| 2444 | f->cache.allow_compat, |
| 2445 | SECCOMP_ARCH_COMPAT_NR); |
| 2446 | #endif /* SECCOMP_ARCH_COMPAT */ |
| 2447 | |
| 2448 | __put_seccomp_filter(f); |
| 2449 | return 0; |
| 2450 | } |
| 2451 | #endif /* CONFIG_SECCOMP_CACHE_DEBUG */ |