blob: 54357e361aea5cbe90597208372f26ef94ead915 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/kernel/seccomp.c
3 *
4 * Copyright 2004-2005 Andrea Arcangeli <andrea@cpushare.com>
5 *
Will Drewrye2cfabdf2012-04-12 16:47:57 -05006 * Copyright (C) 2012 Google, Inc.
7 * Will Drewry <wad@chromium.org>
8 *
9 * This defines a simple but solid secure-computing facility.
10 *
11 * Mode 1 uses a fixed list of allowed system calls.
12 * Mode 2 allows user-defined system call filters in the form
13 * of Berkeley Packet Filters/Linux Socket Filters.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 */
15
Kees Cook0b5fa222017-06-26 09:24:00 -070016#include <linux/refcount.h>
Eric Paris85e7bac32012-01-03 14:23:05 -050017#include <linux/audit.h>
Roland McGrath5b101742009-02-27 23:25:54 -080018#include <linux/compat.h>
Mike Frysingerb25e6712017-01-19 22:28:57 -060019#include <linux/coredump.h>
Tyler Hicks8e5f1ad2017-08-11 04:33:52 +000020#include <linux/kmemleak.h>
Will Drewrye2cfabdf2012-04-12 16:47:57 -050021#include <linux/sched.h>
Ingo Molnar68db0cf2017-02-08 18:51:37 +010022#include <linux/sched/task_stack.h>
Will Drewrye2cfabdf2012-04-12 16:47:57 -050023#include <linux/seccomp.h>
Kees Cookc8bee432014-06-27 15:16:33 -070024#include <linux/slab.h>
Kees Cook48dc92b2014-06-25 16:08:24 -070025#include <linux/syscalls.h>
Tyler Hicks8e5f1ad2017-08-11 04:33:52 +000026#include <linux/sysctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Andy Lutomirskia4412fc2014-07-21 18:49:14 -070028#ifdef CONFIG_HAVE_ARCH_SECCOMP_FILTER
Will Drewrye2cfabdf2012-04-12 16:47:57 -050029#include <asm/syscall.h>
Andy Lutomirskia4412fc2014-07-21 18:49:14 -070030#endif
Will Drewrye2cfabdf2012-04-12 16:47:57 -050031
32#ifdef CONFIG_SECCOMP_FILTER
Will Drewrye2cfabdf2012-04-12 16:47:57 -050033#include <linux/filter.h>
Kees Cookc2e1f2e2014-06-05 00:23:17 -070034#include <linux/pid.h>
Will Drewryfb0fadf2012-04-12 16:48:02 -050035#include <linux/ptrace.h>
Will Drewrye2cfabdf2012-04-12 16:47:57 -050036#include <linux/security.h>
Will Drewrye2cfabdf2012-04-12 16:47:57 -050037#include <linux/tracehook.h>
38#include <linux/uaccess.h>
39
40/**
41 * struct seccomp_filter - container for seccomp BPF programs
42 *
43 * @usage: reference count to manage the object lifetime.
44 * get/put helpers should be used when accessing an instance
45 * outside of a lifetime-guarded section. In general, this
46 * is only needed for handling filters shared across tasks.
47 * @prev: points to a previously installed, or inherited, filter
Mickaël Salaün285fdfc2016-09-20 19:39:47 +020048 * @prog: the BPF program to evaluate
Will Drewrye2cfabdf2012-04-12 16:47:57 -050049 *
50 * seccomp_filter objects are organized in a tree linked via the @prev
51 * pointer. For any task, it appears to be a singly-linked list starting
52 * with current->seccomp.filter, the most recently attached or inherited filter.
53 * However, multiple filters may share a @prev node, by way of fork(), which
54 * results in a unidirectional tree existing in memory. This is similar to
55 * how namespaces work.
56 *
57 * seccomp_filter objects should never be modified after being attached
58 * to a task_struct (other than @usage).
59 */
60struct seccomp_filter {
Kees Cook0b5fa222017-06-26 09:24:00 -070061 refcount_t usage;
Will Drewrye2cfabdf2012-04-12 16:47:57 -050062 struct seccomp_filter *prev;
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -070063 struct bpf_prog *prog;
Will Drewrye2cfabdf2012-04-12 16:47:57 -050064};
65
66/* Limit any path through the tree to 256KB worth of instructions. */
67#define MAX_INSNS_PER_PATH ((1 << 18) / sizeof(struct sock_filter))
68
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +010069/*
Will Drewrye2cfabdf2012-04-12 16:47:57 -050070 * Endianness is explicitly ignored and left for BPF program authors to manage
71 * as per the specific architecture.
72 */
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +010073static void populate_seccomp_data(struct seccomp_data *sd)
Will Drewrye2cfabdf2012-04-12 16:47:57 -050074{
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +010075 struct task_struct *task = current;
76 struct pt_regs *regs = task_pt_regs(task);
Daniel Borkmann2eac7642014-04-14 21:02:59 +020077 unsigned long args[6];
Will Drewrye2cfabdf2012-04-12 16:47:57 -050078
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +010079 sd->nr = syscall_get_nr(task, regs);
Linus Torvalds0b747172014-04-12 12:38:53 -070080 sd->arch = syscall_get_arch();
Daniel Borkmann2eac7642014-04-14 21:02:59 +020081 syscall_get_arguments(task, regs, 0, 6, args);
82 sd->args[0] = args[0];
83 sd->args[1] = args[1];
84 sd->args[2] = args[2];
85 sd->args[3] = args[3];
86 sd->args[4] = args[4];
87 sd->args[5] = args[5];
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +010088 sd->instruction_pointer = KSTK_EIP(task);
Will Drewrye2cfabdf2012-04-12 16:47:57 -050089}
90
91/**
92 * seccomp_check_filter - verify seccomp filter code
93 * @filter: filter to verify
94 * @flen: length of filter
95 *
Alexei Starovoitov4df95ff2014-07-30 20:34:14 -070096 * Takes a previously checked filter (by bpf_check_classic) and
Will Drewrye2cfabdf2012-04-12 16:47:57 -050097 * redirects all filter code that loads struct sk_buff data
98 * and related data through seccomp_bpf_load. It also
99 * enforces length and alignment checking of those loads.
100 *
101 * Returns 0 if the rule set is legal or -EINVAL if not.
102 */
103static int seccomp_check_filter(struct sock_filter *filter, unsigned int flen)
104{
105 int pc;
106 for (pc = 0; pc < flen; pc++) {
107 struct sock_filter *ftest = &filter[pc];
108 u16 code = ftest->code;
109 u32 k = ftest->k;
110
111 switch (code) {
Daniel Borkmann348059312014-05-29 10:22:50 +0200112 case BPF_LD | BPF_W | BPF_ABS:
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100113 ftest->code = BPF_LDX | BPF_W | BPF_ABS;
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500114 /* 32-bit aligned and not out of bounds. */
115 if (k >= sizeof(struct seccomp_data) || k & 3)
116 return -EINVAL;
117 continue;
Daniel Borkmann348059312014-05-29 10:22:50 +0200118 case BPF_LD | BPF_W | BPF_LEN:
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100119 ftest->code = BPF_LD | BPF_IMM;
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500120 ftest->k = sizeof(struct seccomp_data);
121 continue;
Daniel Borkmann348059312014-05-29 10:22:50 +0200122 case BPF_LDX | BPF_W | BPF_LEN:
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100123 ftest->code = BPF_LDX | BPF_IMM;
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500124 ftest->k = sizeof(struct seccomp_data);
125 continue;
126 /* Explicitly include allowed calls. */
Daniel Borkmann348059312014-05-29 10:22:50 +0200127 case BPF_RET | BPF_K:
128 case BPF_RET | BPF_A:
129 case BPF_ALU | BPF_ADD | BPF_K:
130 case BPF_ALU | BPF_ADD | BPF_X:
131 case BPF_ALU | BPF_SUB | BPF_K:
132 case BPF_ALU | BPF_SUB | BPF_X:
133 case BPF_ALU | BPF_MUL | BPF_K:
134 case BPF_ALU | BPF_MUL | BPF_X:
135 case BPF_ALU | BPF_DIV | BPF_K:
136 case BPF_ALU | BPF_DIV | BPF_X:
137 case BPF_ALU | BPF_AND | BPF_K:
138 case BPF_ALU | BPF_AND | BPF_X:
139 case BPF_ALU | BPF_OR | BPF_K:
140 case BPF_ALU | BPF_OR | BPF_X:
141 case BPF_ALU | BPF_XOR | BPF_K:
142 case BPF_ALU | BPF_XOR | BPF_X:
143 case BPF_ALU | BPF_LSH | BPF_K:
144 case BPF_ALU | BPF_LSH | BPF_X:
145 case BPF_ALU | BPF_RSH | BPF_K:
146 case BPF_ALU | BPF_RSH | BPF_X:
147 case BPF_ALU | BPF_NEG:
148 case BPF_LD | BPF_IMM:
149 case BPF_LDX | BPF_IMM:
150 case BPF_MISC | BPF_TAX:
151 case BPF_MISC | BPF_TXA:
152 case BPF_LD | BPF_MEM:
153 case BPF_LDX | BPF_MEM:
154 case BPF_ST:
155 case BPF_STX:
156 case BPF_JMP | BPF_JA:
157 case BPF_JMP | BPF_JEQ | BPF_K:
158 case BPF_JMP | BPF_JEQ | BPF_X:
159 case BPF_JMP | BPF_JGE | BPF_K:
160 case BPF_JMP | BPF_JGE | BPF_X:
161 case BPF_JMP | BPF_JGT | BPF_K:
162 case BPF_JMP | BPF_JGT | BPF_X:
163 case BPF_JMP | BPF_JSET | BPF_K:
164 case BPF_JMP | BPF_JSET | BPF_X:
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500165 continue;
166 default:
167 return -EINVAL;
168 }
169 }
170 return 0;
171}
172
173/**
Mickaël Salaün285fdfc2016-09-20 19:39:47 +0200174 * seccomp_run_filters - evaluates all seccomp filters against @sd
175 * @sd: optional seccomp data to be passed to filters
Kees Cookdeb4de82017-08-02 15:00:40 -0700176 * @match: stores struct seccomp_filter that resulted in the return value,
177 * unless filter returned SECCOMP_RET_ALLOW, in which case it will
178 * be unchanged.
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500179 *
180 * Returns valid seccomp BPF response codes.
181 */
Kees Cookdeb4de82017-08-02 15:00:40 -0700182static u32 seccomp_run_filters(const struct seccomp_data *sd,
183 struct seccomp_filter **match)
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500184{
Andy Lutomirskid39bd002014-07-21 18:49:16 -0700185 struct seccomp_data sd_local;
Will Drewryacf3b2c2012-04-12 16:47:59 -0500186 u32 ret = SECCOMP_RET_ALLOW;
Pranith Kumar8225d382014-11-21 10:06:01 -0500187 /* Make sure cross-thread synced filter points somewhere sane. */
188 struct seccomp_filter *f =
189 lockless_dereference(current->seccomp.filter);
Will Drewryacf3b2c2012-04-12 16:47:59 -0500190
191 /* Ensure unexpected behavior doesn't result in failing open. */
Kees Cook3ba25302014-06-27 15:01:35 -0700192 if (unlikely(WARN_ON(f == NULL)))
Will Drewryacf3b2c2012-04-12 16:47:59 -0500193 return SECCOMP_RET_KILL;
194
Andy Lutomirskid39bd002014-07-21 18:49:16 -0700195 if (!sd) {
196 populate_seccomp_data(&sd_local);
197 sd = &sd_local;
198 }
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100199
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500200 /*
201 * All filters in the list are evaluated and the lowest BPF return
Will Drewryacf3b2c2012-04-12 16:47:59 -0500202 * value always takes priority (ignoring the DATA).
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500203 */
Kees Cook3ba25302014-06-27 15:01:35 -0700204 for (; f; f = f->prev) {
Daniel Borkmann88575192016-11-26 01:28:04 +0100205 u32 cur_ret = BPF_PROG_RUN(f->prog, sd);
Alexei Starovoitov8f577ca2014-05-13 19:50:47 -0700206
Kees Cookdeb4de82017-08-02 15:00:40 -0700207 if ((cur_ret & SECCOMP_RET_ACTION) < (ret & SECCOMP_RET_ACTION)) {
Will Drewryacf3b2c2012-04-12 16:47:59 -0500208 ret = cur_ret;
Kees Cookdeb4de82017-08-02 15:00:40 -0700209 *match = f;
210 }
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500211 }
212 return ret;
213}
Kees Cook1f41b4502014-06-25 15:38:02 -0700214#endif /* CONFIG_SECCOMP_FILTER */
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500215
Kees Cook1f41b4502014-06-25 15:38:02 -0700216static inline bool seccomp_may_assign_mode(unsigned long seccomp_mode)
217{
Guenter Roeck69f6a342014-08-10 20:50:30 -0700218 assert_spin_locked(&current->sighand->siglock);
Kees Cookdbd952122014-06-27 15:18:48 -0700219
Kees Cook1f41b4502014-06-25 15:38:02 -0700220 if (current->seccomp.mode && current->seccomp.mode != seccomp_mode)
221 return false;
222
223 return true;
224}
225
Kees Cook3ba25302014-06-27 15:01:35 -0700226static inline void seccomp_assign_mode(struct task_struct *task,
227 unsigned long seccomp_mode)
Kees Cook1f41b4502014-06-25 15:38:02 -0700228{
Guenter Roeck69f6a342014-08-10 20:50:30 -0700229 assert_spin_locked(&task->sighand->siglock);
Kees Cookdbd952122014-06-27 15:18:48 -0700230
Kees Cook3ba25302014-06-27 15:01:35 -0700231 task->seccomp.mode = seccomp_mode;
232 /*
233 * Make sure TIF_SECCOMP cannot be set before the mode (and
234 * filter) is set.
235 */
236 smp_mb__before_atomic();
237 set_tsk_thread_flag(task, TIF_SECCOMP);
Kees Cook1f41b4502014-06-25 15:38:02 -0700238}
239
240#ifdef CONFIG_SECCOMP_FILTER
Kees Cookc2e1f2e2014-06-05 00:23:17 -0700241/* Returns 1 if the parent is an ancestor of the child. */
242static int is_ancestor(struct seccomp_filter *parent,
243 struct seccomp_filter *child)
244{
245 /* NULL is the root ancestor. */
246 if (parent == NULL)
247 return 1;
248 for (; child; child = child->prev)
249 if (child == parent)
250 return 1;
251 return 0;
252}
253
254/**
255 * seccomp_can_sync_threads: checks if all threads can be synchronized
256 *
257 * Expects sighand and cred_guard_mutex locks to be held.
258 *
259 * Returns 0 on success, -ve on error, or the pid of a thread which was
260 * either not in the correct seccomp mode or it did not have an ancestral
261 * seccomp filter.
262 */
263static inline pid_t seccomp_can_sync_threads(void)
264{
265 struct task_struct *thread, *caller;
266
267 BUG_ON(!mutex_is_locked(&current->signal->cred_guard_mutex));
Guenter Roeck69f6a342014-08-10 20:50:30 -0700268 assert_spin_locked(&current->sighand->siglock);
Kees Cookc2e1f2e2014-06-05 00:23:17 -0700269
270 /* Validate all threads being eligible for synchronization. */
271 caller = current;
272 for_each_thread(caller, thread) {
273 pid_t failed;
274
275 /* Skip current, since it is initiating the sync. */
276 if (thread == caller)
277 continue;
278
279 if (thread->seccomp.mode == SECCOMP_MODE_DISABLED ||
280 (thread->seccomp.mode == SECCOMP_MODE_FILTER &&
281 is_ancestor(thread->seccomp.filter,
282 caller->seccomp.filter)))
283 continue;
284
285 /* Return the first thread that cannot be synchronized. */
286 failed = task_pid_vnr(thread);
287 /* If the pid cannot be resolved, then return -ESRCH */
288 if (unlikely(WARN_ON(failed == 0)))
289 failed = -ESRCH;
290 return failed;
291 }
292
293 return 0;
294}
295
296/**
297 * seccomp_sync_threads: sets all threads to use current's filter
298 *
299 * Expects sighand and cred_guard_mutex locks to be held, and for
300 * seccomp_can_sync_threads() to have returned success already
301 * without dropping the locks.
302 *
303 */
304static inline void seccomp_sync_threads(void)
305{
306 struct task_struct *thread, *caller;
307
308 BUG_ON(!mutex_is_locked(&current->signal->cred_guard_mutex));
Guenter Roeck69f6a342014-08-10 20:50:30 -0700309 assert_spin_locked(&current->sighand->siglock);
Kees Cookc2e1f2e2014-06-05 00:23:17 -0700310
311 /* Synchronize all threads. */
312 caller = current;
313 for_each_thread(caller, thread) {
314 /* Skip current, since it needs no changes. */
315 if (thread == caller)
316 continue;
317
318 /* Get a task reference for the new leaf node. */
319 get_seccomp_filter(caller);
320 /*
321 * Drop the task reference to the shared ancestor since
322 * current's path will hold a reference. (This also
323 * allows a put before the assignment.)
324 */
325 put_seccomp_filter(thread);
326 smp_store_release(&thread->seccomp.filter,
327 caller->seccomp.filter);
Jann Horn103502a2015-12-26 06:00:48 +0100328
329 /*
330 * Don't let an unprivileged task work around
331 * the no_new_privs restriction by creating
332 * a thread that sets it up, enters seccomp,
333 * then dies.
334 */
335 if (task_no_new_privs(caller))
336 task_set_no_new_privs(thread);
337
Kees Cookc2e1f2e2014-06-05 00:23:17 -0700338 /*
339 * Opt the other thread into seccomp if needed.
340 * As threads are considered to be trust-realm
341 * equivalent (see ptrace_may_access), it is safe to
342 * allow one thread to transition the other.
343 */
Jann Horn103502a2015-12-26 06:00:48 +0100344 if (thread->seccomp.mode == SECCOMP_MODE_DISABLED)
Kees Cookc2e1f2e2014-06-05 00:23:17 -0700345 seccomp_assign_mode(thread, SECCOMP_MODE_FILTER);
Kees Cookc2e1f2e2014-06-05 00:23:17 -0700346 }
347}
348
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500349/**
Kees Cookc8bee432014-06-27 15:16:33 -0700350 * seccomp_prepare_filter: Prepares a seccomp filter for use.
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500351 * @fprog: BPF program to install
352 *
Kees Cookc8bee432014-06-27 15:16:33 -0700353 * Returns filter on success or an ERR_PTR on failure.
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500354 */
Kees Cookc8bee432014-06-27 15:16:33 -0700355static struct seccomp_filter *seccomp_prepare_filter(struct sock_fprog *fprog)
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500356{
Daniel Borkmannac67eb22015-05-06 16:12:30 +0200357 struct seccomp_filter *sfilter;
358 int ret;
Masahiro Yamada97f26452016-08-03 13:45:50 -0700359 const bool save_orig = IS_ENABLED(CONFIG_CHECKPOINT_RESTORE);
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500360
361 if (fprog->len == 0 || fprog->len > BPF_MAXINSNS)
Kees Cookc8bee432014-06-27 15:16:33 -0700362 return ERR_PTR(-EINVAL);
Nicolas Schichand9e12f42015-05-06 16:12:28 +0200363
Kees Cookc8bee432014-06-27 15:16:33 -0700364 BUG_ON(INT_MAX / fprog->len < sizeof(struct sock_filter));
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500365
366 /*
Fabian Frederick119ce5c2014-06-06 14:37:53 -0700367 * Installing a seccomp filter requires that the task has
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500368 * CAP_SYS_ADMIN in its namespace or be running with no_new_privs.
369 * This avoids scenarios where unprivileged tasks can affect the
370 * behavior of privileged children.
371 */
Kees Cook1d4457f2014-05-21 15:23:46 -0700372 if (!task_no_new_privs(current) &&
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500373 security_capable_noaudit(current_cred(), current_user_ns(),
374 CAP_SYS_ADMIN) != 0)
Kees Cookc8bee432014-06-27 15:16:33 -0700375 return ERR_PTR(-EACCES);
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500376
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100377 /* Allocate a new seccomp_filter */
Daniel Borkmannac67eb22015-05-06 16:12:30 +0200378 sfilter = kzalloc(sizeof(*sfilter), GFP_KERNEL | __GFP_NOWARN);
379 if (!sfilter)
Nicolas Schichand9e12f42015-05-06 16:12:28 +0200380 return ERR_PTR(-ENOMEM);
Daniel Borkmannac67eb22015-05-06 16:12:30 +0200381
382 ret = bpf_prog_create_from_user(&sfilter->prog, fprog,
Tycho Andersenf8e529e2015-10-27 09:23:59 +0900383 seccomp_check_filter, save_orig);
Daniel Borkmannac67eb22015-05-06 16:12:30 +0200384 if (ret < 0) {
385 kfree(sfilter);
386 return ERR_PTR(ret);
Nicolas Schichand9e12f42015-05-06 16:12:28 +0200387 }
Alexei Starovoitovbd4cf0e2014-03-28 18:58:25 +0100388
Kees Cook0b5fa222017-06-26 09:24:00 -0700389 refcount_set(&sfilter->usage, 1);
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500390
Daniel Borkmannac67eb22015-05-06 16:12:30 +0200391 return sfilter;
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500392}
393
394/**
Kees Cookc8bee432014-06-27 15:16:33 -0700395 * seccomp_prepare_user_filter - prepares a user-supplied sock_fprog
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500396 * @user_filter: pointer to the user data containing a sock_fprog.
397 *
398 * Returns 0 on success and non-zero otherwise.
399 */
Kees Cookc8bee432014-06-27 15:16:33 -0700400static struct seccomp_filter *
401seccomp_prepare_user_filter(const char __user *user_filter)
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500402{
403 struct sock_fprog fprog;
Kees Cookc8bee432014-06-27 15:16:33 -0700404 struct seccomp_filter *filter = ERR_PTR(-EFAULT);
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500405
406#ifdef CONFIG_COMPAT
Andy Lutomirski5c380652016-03-22 14:24:52 -0700407 if (in_compat_syscall()) {
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500408 struct compat_sock_fprog fprog32;
409 if (copy_from_user(&fprog32, user_filter, sizeof(fprog32)))
410 goto out;
411 fprog.len = fprog32.len;
412 fprog.filter = compat_ptr(fprog32.filter);
413 } else /* falls through to the if below. */
414#endif
415 if (copy_from_user(&fprog, user_filter, sizeof(fprog)))
416 goto out;
Kees Cookc8bee432014-06-27 15:16:33 -0700417 filter = seccomp_prepare_filter(&fprog);
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500418out:
Kees Cookc8bee432014-06-27 15:16:33 -0700419 return filter;
420}
421
422/**
423 * seccomp_attach_filter: validate and attach filter
424 * @flags: flags to change filter behavior
425 * @filter: seccomp filter to add to the current process
426 *
Kees Cookdbd952122014-06-27 15:18:48 -0700427 * Caller must be holding current->sighand->siglock lock.
428 *
Kees Cookc8bee432014-06-27 15:16:33 -0700429 * Returns 0 on success, -ve on error.
430 */
431static long seccomp_attach_filter(unsigned int flags,
432 struct seccomp_filter *filter)
433{
434 unsigned long total_insns;
435 struct seccomp_filter *walker;
436
Guenter Roeck69f6a342014-08-10 20:50:30 -0700437 assert_spin_locked(&current->sighand->siglock);
Kees Cookdbd952122014-06-27 15:18:48 -0700438
Kees Cookc8bee432014-06-27 15:16:33 -0700439 /* Validate resulting filter length. */
440 total_insns = filter->prog->len;
441 for (walker = current->seccomp.filter; walker; walker = walker->prev)
442 total_insns += walker->prog->len + 4; /* 4 instr penalty */
443 if (total_insns > MAX_INSNS_PER_PATH)
444 return -ENOMEM;
445
Kees Cookc2e1f2e2014-06-05 00:23:17 -0700446 /* If thread sync has been requested, check that it is possible. */
447 if (flags & SECCOMP_FILTER_FLAG_TSYNC) {
448 int ret;
449
450 ret = seccomp_can_sync_threads();
451 if (ret)
452 return ret;
453 }
454
Kees Cookc8bee432014-06-27 15:16:33 -0700455 /*
456 * If there is an existing filter, make it the prev and don't drop its
457 * task reference.
458 */
459 filter->prev = current->seccomp.filter;
460 current->seccomp.filter = filter;
461
Kees Cookc2e1f2e2014-06-05 00:23:17 -0700462 /* Now that the new filter is in place, synchronize to all threads. */
463 if (flags & SECCOMP_FILTER_FLAG_TSYNC)
464 seccomp_sync_threads();
465
Kees Cookc8bee432014-06-27 15:16:33 -0700466 return 0;
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500467}
468
469/* get_seccomp_filter - increments the reference count of the filter on @tsk */
470void get_seccomp_filter(struct task_struct *tsk)
471{
472 struct seccomp_filter *orig = tsk->seccomp.filter;
473 if (!orig)
474 return;
475 /* Reference count is bounded by the number of total processes. */
Kees Cook0b5fa222017-06-26 09:24:00 -0700476 refcount_inc(&orig->usage);
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500477}
478
Kees Cookc8bee432014-06-27 15:16:33 -0700479static inline void seccomp_filter_free(struct seccomp_filter *filter)
480{
481 if (filter) {
Daniel Borkmannbab18992015-10-02 15:17:33 +0200482 bpf_prog_destroy(filter->prog);
Kees Cookc8bee432014-06-27 15:16:33 -0700483 kfree(filter);
484 }
485}
486
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500487/* put_seccomp_filter - decrements the ref count of tsk->seccomp.filter */
488void put_seccomp_filter(struct task_struct *tsk)
489{
490 struct seccomp_filter *orig = tsk->seccomp.filter;
491 /* Clean up single-reference branches iteratively. */
Kees Cook0b5fa222017-06-26 09:24:00 -0700492 while (orig && refcount_dec_and_test(&orig->usage)) {
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500493 struct seccomp_filter *freeme = orig;
494 orig = orig->prev;
Kees Cookc8bee432014-06-27 15:16:33 -0700495 seccomp_filter_free(freeme);
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500496 }
497}
Will Drewrybb6ea432012-04-12 16:48:01 -0500498
Mike Frysingerb25e6712017-01-19 22:28:57 -0600499static void seccomp_init_siginfo(siginfo_t *info, int syscall, int reason)
500{
501 memset(info, 0, sizeof(*info));
502 info->si_signo = SIGSYS;
503 info->si_code = SYS_SECCOMP;
504 info->si_call_addr = (void __user *)KSTK_EIP(current);
505 info->si_errno = reason;
506 info->si_arch = syscall_get_arch();
507 info->si_syscall = syscall;
508}
509
Will Drewrybb6ea432012-04-12 16:48:01 -0500510/**
511 * seccomp_send_sigsys - signals the task to allow in-process syscall emulation
512 * @syscall: syscall number to send to userland
513 * @reason: filter-supplied reason code to send to userland (via si_errno)
514 *
515 * Forces a SIGSYS with a code of SYS_SECCOMP and related sigsys info.
516 */
517static void seccomp_send_sigsys(int syscall, int reason)
518{
519 struct siginfo info;
Mike Frysingerb25e6712017-01-19 22:28:57 -0600520 seccomp_init_siginfo(&info, syscall, reason);
Will Drewrybb6ea432012-04-12 16:48:01 -0500521 force_sig_info(SIGSYS, &info, current);
522}
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500523#endif /* CONFIG_SECCOMP_FILTER */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Tyler Hicks0ddec0f2017-08-11 04:33:54 +0000525/* For use with seccomp_actions_logged */
526#define SECCOMP_LOG_KILL (1 << 0)
527#define SECCOMP_LOG_TRAP (1 << 2)
528#define SECCOMP_LOG_ERRNO (1 << 3)
529#define SECCOMP_LOG_TRACE (1 << 4)
530#define SECCOMP_LOG_ALLOW (1 << 5)
531
532static u32 seccomp_actions_logged = SECCOMP_LOG_KILL | SECCOMP_LOG_TRAP |
533 SECCOMP_LOG_ERRNO | SECCOMP_LOG_TRACE;
534
535static inline void seccomp_log(unsigned long syscall, long signr, u32 action)
536{
537 bool log = false;
538
539 switch (action) {
540 case SECCOMP_RET_ALLOW:
541 case SECCOMP_RET_TRAP:
542 case SECCOMP_RET_ERRNO:
543 case SECCOMP_RET_TRACE:
544 break;
545 case SECCOMP_RET_KILL:
546 default:
547 log = seccomp_actions_logged & SECCOMP_LOG_KILL;
548 }
549
550 /*
551 * Force an audit message to be emitted when the action is RET_KILL and
552 * the action is allowed to be logged by the admin.
553 */
554 if (log)
555 return __audit_seccomp(syscall, signr, action);
556
557 /*
558 * Let the audit subsystem decide if the action should be audited based
559 * on whether the current task itself is being audited.
560 */
561 return audit_seccomp(syscall, signr, action);
562}
563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564/*
565 * Secure computing mode 1 allows only read/write/exit/sigreturn.
566 * To be fully secure this must be combined with rlimit
567 * to limit the stack allocations too.
568 */
Matt Redfearncb4253a2016-03-29 09:35:34 +0100569static const int mode1_syscalls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 __NR_seccomp_read, __NR_seccomp_write, __NR_seccomp_exit, __NR_seccomp_sigreturn,
571 0, /* null terminated */
572};
573
Andy Lutomirskia4412fc2014-07-21 18:49:14 -0700574static void __secure_computing_strict(int this_syscall)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575{
Matt Redfearncb4253a2016-03-29 09:35:34 +0100576 const int *syscall_whitelist = mode1_syscalls;
Andy Lutomirskia4412fc2014-07-21 18:49:14 -0700577#ifdef CONFIG_COMPAT
Andy Lutomirski5c380652016-03-22 14:24:52 -0700578 if (in_compat_syscall())
Matt Redfearnc983f0e2016-03-29 09:35:32 +0100579 syscall_whitelist = get_compat_mode1_syscalls();
Andy Lutomirskia4412fc2014-07-21 18:49:14 -0700580#endif
581 do {
582 if (*syscall_whitelist == this_syscall)
583 return;
584 } while (*++syscall_whitelist);
585
586#ifdef SECCOMP_DEBUG
587 dump_stack();
588#endif
Tyler Hicks0ddec0f2017-08-11 04:33:54 +0000589 seccomp_log(this_syscall, SIGKILL, SECCOMP_RET_KILL);
Andy Lutomirskia4412fc2014-07-21 18:49:14 -0700590 do_exit(SIGKILL);
591}
592
593#ifndef CONFIG_HAVE_ARCH_SECCOMP_FILTER
594void secure_computing_strict(int this_syscall)
595{
596 int mode = current->seccomp.mode;
597
Masahiro Yamada97f26452016-08-03 13:45:50 -0700598 if (IS_ENABLED(CONFIG_CHECKPOINT_RESTORE) &&
Tycho Andersen13c4a902015-06-13 09:02:48 -0600599 unlikely(current->ptrace & PT_SUSPEND_SECCOMP))
600 return;
601
Kees Cook221272f2015-06-15 15:29:16 -0700602 if (mode == SECCOMP_MODE_DISABLED)
Andy Lutomirskia4412fc2014-07-21 18:49:14 -0700603 return;
604 else if (mode == SECCOMP_MODE_STRICT)
605 __secure_computing_strict(this_syscall);
606 else
607 BUG();
608}
609#else
Andy Lutomirski13aa72f2014-07-21 18:49:15 -0700610
611#ifdef CONFIG_SECCOMP_FILTER
Kees Cookce6526e2016-06-01 19:29:15 -0700612static int __seccomp_filter(int this_syscall, const struct seccomp_data *sd,
613 const bool recheck_after_trace)
Andy Lutomirski13aa72f2014-07-21 18:49:15 -0700614{
615 u32 filter_ret, action;
Kees Cookdeb4de82017-08-02 15:00:40 -0700616 struct seccomp_filter *match = NULL;
Andy Lutomirski13aa72f2014-07-21 18:49:15 -0700617 int data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Kees Cook3ba25302014-06-27 15:01:35 -0700619 /*
620 * Make sure that any changes to mode from another thread have
621 * been seen after TIF_SECCOMP was seen.
622 */
623 rmb();
624
Kees Cookdeb4de82017-08-02 15:00:40 -0700625 filter_ret = seccomp_run_filters(sd, &match);
Andy Lutomirski13aa72f2014-07-21 18:49:15 -0700626 data = filter_ret & SECCOMP_RET_DATA;
627 action = filter_ret & SECCOMP_RET_ACTION;
Andy Lutomirski87b526d2012-10-01 11:40:45 -0700628
Andy Lutomirski13aa72f2014-07-21 18:49:15 -0700629 switch (action) {
630 case SECCOMP_RET_ERRNO:
Kees Cook580c57f2015-02-17 13:48:00 -0800631 /* Set low-order bits as an errno, capped at MAX_ERRNO. */
632 if (data > MAX_ERRNO)
633 data = MAX_ERRNO;
Andy Lutomirskid39bd002014-07-21 18:49:16 -0700634 syscall_set_return_value(current, task_pt_regs(current),
Andy Lutomirski13aa72f2014-07-21 18:49:15 -0700635 -data, 0);
636 goto skip;
637
638 case SECCOMP_RET_TRAP:
639 /* Show the handler the original registers. */
Andy Lutomirskid39bd002014-07-21 18:49:16 -0700640 syscall_rollback(current, task_pt_regs(current));
Andy Lutomirski13aa72f2014-07-21 18:49:15 -0700641 /* Let the filter pass back 16 bits of data. */
642 seccomp_send_sigsys(this_syscall, data);
643 goto skip;
644
645 case SECCOMP_RET_TRACE:
Kees Cookce6526e2016-06-01 19:29:15 -0700646 /* We've been put in this state by the ptracer already. */
647 if (recheck_after_trace)
648 return 0;
649
Kees Cook8112c4f2016-06-01 16:02:17 -0700650 /* ENOSYS these calls if there is no tracer attached. */
651 if (!ptrace_event_enabled(current, PTRACE_EVENT_SECCOMP)) {
652 syscall_set_return_value(current,
653 task_pt_regs(current),
654 -ENOSYS, 0);
655 goto skip;
656 }
657
658 /* Allow the BPF to provide the event message */
659 ptrace_event(PTRACE_EVENT_SECCOMP, data);
660 /*
661 * The delivery of a fatal signal during event
Kees Cook485a2522016-08-10 16:28:09 -0700662 * notification may silently skip tracer notification,
663 * which could leave us with a potentially unmodified
664 * syscall that the tracer would have liked to have
665 * changed. Since the process is about to die, we just
666 * force the syscall to be skipped and let the signal
667 * kill the process and correctly handle any tracer exit
668 * notifications.
Kees Cook8112c4f2016-06-01 16:02:17 -0700669 */
670 if (fatal_signal_pending(current))
Kees Cook485a2522016-08-10 16:28:09 -0700671 goto skip;
Kees Cook8112c4f2016-06-01 16:02:17 -0700672 /* Check if the tracer forced the syscall to be skipped. */
673 this_syscall = syscall_get_nr(current, task_pt_regs(current));
674 if (this_syscall < 0)
675 goto skip;
676
Kees Cookce6526e2016-06-01 19:29:15 -0700677 /*
678 * Recheck the syscall, since it may have changed. This
679 * intentionally uses a NULL struct seccomp_data to force
680 * a reload of all registers. This does not goto skip since
681 * a skip would have already been reported.
682 */
683 if (__seccomp_filter(this_syscall, NULL, true))
684 return -1;
685
Kees Cook8112c4f2016-06-01 16:02:17 -0700686 return 0;
Andy Lutomirski13aa72f2014-07-21 18:49:15 -0700687
688 case SECCOMP_RET_ALLOW:
Kees Cookdeb4de82017-08-02 15:00:40 -0700689 /*
690 * Note that the "match" filter will always be NULL for
691 * this action since SECCOMP_RET_ALLOW is the starting
692 * state in seccomp_run_filters().
693 */
Kees Cook8112c4f2016-06-01 16:02:17 -0700694 return 0;
Andy Lutomirski13aa72f2014-07-21 18:49:15 -0700695
696 case SECCOMP_RET_KILL:
Kees Cook131b6352017-02-23 09:24:24 -0800697 default:
Tyler Hicks0ddec0f2017-08-11 04:33:54 +0000698 seccomp_log(this_syscall, SIGSYS, action);
Kees Cookd7276e32017-02-07 15:18:51 -0800699 /* Dump core only if this is the last remaining thread. */
700 if (get_nr_threads(current) == 1) {
Kees Cook131b6352017-02-23 09:24:24 -0800701 siginfo_t info;
702
Kees Cookd7276e32017-02-07 15:18:51 -0800703 /* Show the original registers in the dump. */
704 syscall_rollback(current, task_pt_regs(current));
705 /* Trigger a manual coredump since do_exit skips it. */
706 seccomp_init_siginfo(&info, this_syscall, data);
707 do_coredump(&info);
708 }
Andy Lutomirski13aa72f2014-07-21 18:49:15 -0700709 do_exit(SIGSYS);
Will Drewry8156b452012-04-17 14:48:58 -0500710 }
Andy Lutomirski13aa72f2014-07-21 18:49:15 -0700711
712 unreachable();
713
714skip:
Tyler Hicks0ddec0f2017-08-11 04:33:54 +0000715 seccomp_log(this_syscall, 0, action);
Kees Cook8112c4f2016-06-01 16:02:17 -0700716 return -1;
717}
718#else
Kees Cookce6526e2016-06-01 19:29:15 -0700719static int __seccomp_filter(int this_syscall, const struct seccomp_data *sd,
720 const bool recheck_after_trace)
Kees Cook8112c4f2016-06-01 16:02:17 -0700721{
722 BUG();
Andy Lutomirski13aa72f2014-07-21 18:49:15 -0700723}
724#endif
725
Kees Cook8112c4f2016-06-01 16:02:17 -0700726int __secure_computing(const struct seccomp_data *sd)
Andy Lutomirski13aa72f2014-07-21 18:49:15 -0700727{
728 int mode = current->seccomp.mode;
Kees Cook8112c4f2016-06-01 16:02:17 -0700729 int this_syscall;
Andy Lutomirski13aa72f2014-07-21 18:49:15 -0700730
Masahiro Yamada97f26452016-08-03 13:45:50 -0700731 if (IS_ENABLED(CONFIG_CHECKPOINT_RESTORE) &&
Tycho Andersen13c4a902015-06-13 09:02:48 -0600732 unlikely(current->ptrace & PT_SUSPEND_SECCOMP))
Kees Cook8112c4f2016-06-01 16:02:17 -0700733 return 0;
734
735 this_syscall = sd ? sd->nr :
736 syscall_get_nr(current, task_pt_regs(current));
Tycho Andersen13c4a902015-06-13 09:02:48 -0600737
Andy Lutomirski13aa72f2014-07-21 18:49:15 -0700738 switch (mode) {
739 case SECCOMP_MODE_STRICT:
740 __secure_computing_strict(this_syscall); /* may call do_exit */
Kees Cook8112c4f2016-06-01 16:02:17 -0700741 return 0;
Andy Lutomirski13aa72f2014-07-21 18:49:15 -0700742 case SECCOMP_MODE_FILTER:
Kees Cookce6526e2016-06-01 19:29:15 -0700743 return __seccomp_filter(this_syscall, sd, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 default:
745 BUG();
746 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747}
Andy Lutomirskia4412fc2014-07-21 18:49:14 -0700748#endif /* CONFIG_HAVE_ARCH_SECCOMP_FILTER */
Andrea Arcangeli1d9d02f2007-07-15 23:41:32 -0700749
750long prctl_get_seccomp(void)
751{
752 return current->seccomp.mode;
753}
754
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500755/**
Kees Cook3b23dd12014-06-25 15:55:25 -0700756 * seccomp_set_mode_strict: internal function for setting strict seccomp
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500757 *
758 * Once current->seccomp.mode is non-zero, it may not be changed.
759 *
760 * Returns 0 on success or -EINVAL on failure.
761 */
Kees Cook3b23dd12014-06-25 15:55:25 -0700762static long seccomp_set_mode_strict(void)
Andrea Arcangeli1d9d02f2007-07-15 23:41:32 -0700763{
Kees Cook3b23dd12014-06-25 15:55:25 -0700764 const unsigned long seccomp_mode = SECCOMP_MODE_STRICT;
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500765 long ret = -EINVAL;
Andrea Arcangeli1d9d02f2007-07-15 23:41:32 -0700766
Kees Cookdbd952122014-06-27 15:18:48 -0700767 spin_lock_irq(&current->sighand->siglock);
768
Kees Cook1f41b4502014-06-25 15:38:02 -0700769 if (!seccomp_may_assign_mode(seccomp_mode))
Andrea Arcangeli1d9d02f2007-07-15 23:41:32 -0700770 goto out;
771
Andrea Arcangelicf99aba2007-07-15 23:41:33 -0700772#ifdef TIF_NOTSC
Kees Cook3b23dd12014-06-25 15:55:25 -0700773 disable_TSC();
Andrea Arcangelicf99aba2007-07-15 23:41:33 -0700774#endif
Kees Cook3ba25302014-06-27 15:01:35 -0700775 seccomp_assign_mode(current, seccomp_mode);
Kees Cook3b23dd12014-06-25 15:55:25 -0700776 ret = 0;
777
778out:
Kees Cookdbd952122014-06-27 15:18:48 -0700779 spin_unlock_irq(&current->sighand->siglock);
Kees Cook3b23dd12014-06-25 15:55:25 -0700780
781 return ret;
782}
783
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500784#ifdef CONFIG_SECCOMP_FILTER
Kees Cook3b23dd12014-06-25 15:55:25 -0700785/**
786 * seccomp_set_mode_filter: internal function for setting seccomp filter
Kees Cook48dc92b2014-06-25 16:08:24 -0700787 * @flags: flags to change filter behavior
Kees Cook3b23dd12014-06-25 15:55:25 -0700788 * @filter: struct sock_fprog containing filter
789 *
790 * This function may be called repeatedly to install additional filters.
791 * Every filter successfully installed will be evaluated (in reverse order)
792 * for each system call the task makes.
793 *
794 * Once current->seccomp.mode is non-zero, it may not be changed.
795 *
796 * Returns 0 on success or -EINVAL on failure.
797 */
Kees Cook48dc92b2014-06-25 16:08:24 -0700798static long seccomp_set_mode_filter(unsigned int flags,
799 const char __user *filter)
Kees Cook3b23dd12014-06-25 15:55:25 -0700800{
801 const unsigned long seccomp_mode = SECCOMP_MODE_FILTER;
Kees Cookc8bee432014-06-27 15:16:33 -0700802 struct seccomp_filter *prepared = NULL;
Kees Cook3b23dd12014-06-25 15:55:25 -0700803 long ret = -EINVAL;
804
Kees Cook48dc92b2014-06-25 16:08:24 -0700805 /* Validate flags. */
Kees Cookc2e1f2e2014-06-05 00:23:17 -0700806 if (flags & ~SECCOMP_FILTER_FLAG_MASK)
Kees Cookdbd952122014-06-27 15:18:48 -0700807 return -EINVAL;
Kees Cook48dc92b2014-06-25 16:08:24 -0700808
Kees Cookc8bee432014-06-27 15:16:33 -0700809 /* Prepare the new filter before holding any locks. */
810 prepared = seccomp_prepare_user_filter(filter);
811 if (IS_ERR(prepared))
812 return PTR_ERR(prepared);
813
Kees Cookc2e1f2e2014-06-05 00:23:17 -0700814 /*
815 * Make sure we cannot change seccomp or nnp state via TSYNC
816 * while another thread is in the middle of calling exec.
817 */
818 if (flags & SECCOMP_FILTER_FLAG_TSYNC &&
819 mutex_lock_killable(&current->signal->cred_guard_mutex))
820 goto out_free;
821
Kees Cookdbd952122014-06-27 15:18:48 -0700822 spin_lock_irq(&current->sighand->siglock);
823
Kees Cook3b23dd12014-06-25 15:55:25 -0700824 if (!seccomp_may_assign_mode(seccomp_mode))
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500825 goto out;
Kees Cook3b23dd12014-06-25 15:55:25 -0700826
Kees Cookc8bee432014-06-27 15:16:33 -0700827 ret = seccomp_attach_filter(flags, prepared);
Kees Cook3b23dd12014-06-25 15:55:25 -0700828 if (ret)
829 goto out;
Kees Cookc8bee432014-06-27 15:16:33 -0700830 /* Do not free the successfully attached filter. */
831 prepared = NULL;
Andrea Arcangeli1d9d02f2007-07-15 23:41:32 -0700832
Kees Cook3ba25302014-06-27 15:01:35 -0700833 seccomp_assign_mode(current, seccomp_mode);
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500834out:
Kees Cookdbd952122014-06-27 15:18:48 -0700835 spin_unlock_irq(&current->sighand->siglock);
Kees Cookc2e1f2e2014-06-05 00:23:17 -0700836 if (flags & SECCOMP_FILTER_FLAG_TSYNC)
837 mutex_unlock(&current->signal->cred_guard_mutex);
838out_free:
Kees Cookc8bee432014-06-27 15:16:33 -0700839 seccomp_filter_free(prepared);
Andrea Arcangeli1d9d02f2007-07-15 23:41:32 -0700840 return ret;
841}
Kees Cook3b23dd12014-06-25 15:55:25 -0700842#else
Kees Cook48dc92b2014-06-25 16:08:24 -0700843static inline long seccomp_set_mode_filter(unsigned int flags,
844 const char __user *filter)
Kees Cook3b23dd12014-06-25 15:55:25 -0700845{
846 return -EINVAL;
847}
848#endif
Kees Cookd78ab022014-05-21 15:02:11 -0700849
Tyler Hicksd612b1f2017-08-11 04:33:53 +0000850static long seccomp_get_action_avail(const char __user *uaction)
851{
852 u32 action;
853
854 if (copy_from_user(&action, uaction, sizeof(action)))
855 return -EFAULT;
856
857 switch (action) {
858 case SECCOMP_RET_KILL:
859 case SECCOMP_RET_TRAP:
860 case SECCOMP_RET_ERRNO:
861 case SECCOMP_RET_TRACE:
862 case SECCOMP_RET_ALLOW:
863 break;
864 default:
865 return -EOPNOTSUPP;
866 }
867
868 return 0;
869}
870
Kees Cook48dc92b2014-06-25 16:08:24 -0700871/* Common entry point for both prctl and syscall. */
872static long do_seccomp(unsigned int op, unsigned int flags,
873 const char __user *uargs)
874{
875 switch (op) {
876 case SECCOMP_SET_MODE_STRICT:
877 if (flags != 0 || uargs != NULL)
878 return -EINVAL;
879 return seccomp_set_mode_strict();
880 case SECCOMP_SET_MODE_FILTER:
881 return seccomp_set_mode_filter(flags, uargs);
Tyler Hicksd612b1f2017-08-11 04:33:53 +0000882 case SECCOMP_GET_ACTION_AVAIL:
883 if (flags != 0)
884 return -EINVAL;
885
886 return seccomp_get_action_avail(uargs);
Kees Cook48dc92b2014-06-25 16:08:24 -0700887 default:
888 return -EINVAL;
889 }
890}
891
892SYSCALL_DEFINE3(seccomp, unsigned int, op, unsigned int, flags,
893 const char __user *, uargs)
894{
895 return do_seccomp(op, flags, uargs);
896}
897
Kees Cookd78ab022014-05-21 15:02:11 -0700898/**
899 * prctl_set_seccomp: configures current->seccomp.mode
900 * @seccomp_mode: requested mode to use
901 * @filter: optional struct sock_fprog for use with SECCOMP_MODE_FILTER
902 *
903 * Returns 0 on success or -EINVAL on failure.
904 */
905long prctl_set_seccomp(unsigned long seccomp_mode, char __user *filter)
906{
Kees Cook48dc92b2014-06-25 16:08:24 -0700907 unsigned int op;
908 char __user *uargs;
909
Kees Cook3b23dd12014-06-25 15:55:25 -0700910 switch (seccomp_mode) {
911 case SECCOMP_MODE_STRICT:
Kees Cook48dc92b2014-06-25 16:08:24 -0700912 op = SECCOMP_SET_MODE_STRICT;
913 /*
914 * Setting strict mode through prctl always ignored filter,
915 * so make sure it is always NULL here to pass the internal
916 * check in do_seccomp().
917 */
918 uargs = NULL;
919 break;
Kees Cook3b23dd12014-06-25 15:55:25 -0700920 case SECCOMP_MODE_FILTER:
Kees Cook48dc92b2014-06-25 16:08:24 -0700921 op = SECCOMP_SET_MODE_FILTER;
922 uargs = filter;
923 break;
Kees Cook3b23dd12014-06-25 15:55:25 -0700924 default:
925 return -EINVAL;
926 }
Kees Cook48dc92b2014-06-25 16:08:24 -0700927
928 /* prctl interface doesn't have flags, so they are always zero. */
929 return do_seccomp(op, 0, uargs);
Kees Cookd78ab022014-05-21 15:02:11 -0700930}
Tycho Andersenf8e529e2015-10-27 09:23:59 +0900931
932#if defined(CONFIG_SECCOMP_FILTER) && defined(CONFIG_CHECKPOINT_RESTORE)
933long seccomp_get_filter(struct task_struct *task, unsigned long filter_off,
934 void __user *data)
935{
936 struct seccomp_filter *filter;
937 struct sock_fprog_kern *fprog;
938 long ret;
939 unsigned long count = 0;
940
941 if (!capable(CAP_SYS_ADMIN) ||
942 current->seccomp.mode != SECCOMP_MODE_DISABLED) {
943 return -EACCES;
944 }
945
946 spin_lock_irq(&task->sighand->siglock);
947 if (task->seccomp.mode != SECCOMP_MODE_FILTER) {
948 ret = -EINVAL;
949 goto out;
950 }
951
952 filter = task->seccomp.filter;
953 while (filter) {
954 filter = filter->prev;
955 count++;
956 }
957
958 if (filter_off >= count) {
959 ret = -ENOENT;
960 goto out;
961 }
962 count -= filter_off;
963
964 filter = task->seccomp.filter;
965 while (filter && count > 1) {
966 filter = filter->prev;
967 count--;
968 }
969
970 if (WARN_ON(count != 1 || !filter)) {
971 /* The filter tree shouldn't shrink while we're using it. */
972 ret = -ENOENT;
973 goto out;
974 }
975
976 fprog = filter->prog->orig_prog;
977 if (!fprog) {
Mickaël Salaün470bf1f2016-03-24 02:46:33 +0100978 /* This must be a new non-cBPF filter, since we save
Tycho Andersenf8e529e2015-10-27 09:23:59 +0900979 * every cBPF filter's orig_prog above when
980 * CONFIG_CHECKPOINT_RESTORE is enabled.
981 */
982 ret = -EMEDIUMTYPE;
983 goto out;
984 }
985
986 ret = fprog->len;
987 if (!data)
988 goto out;
989
990 get_seccomp_filter(task);
991 spin_unlock_irq(&task->sighand->siglock);
992
993 if (copy_to_user(data, fprog->filter, bpf_classic_proglen(fprog)))
994 ret = -EFAULT;
995
996 put_seccomp_filter(task);
997 return ret;
998
999out:
1000 spin_unlock_irq(&task->sighand->siglock);
1001 return ret;
1002}
1003#endif
Tyler Hicks8e5f1ad2017-08-11 04:33:52 +00001004
1005#ifdef CONFIG_SYSCTL
1006
1007/* Human readable action names for friendly sysctl interaction */
1008#define SECCOMP_RET_KILL_NAME "kill"
1009#define SECCOMP_RET_TRAP_NAME "trap"
1010#define SECCOMP_RET_ERRNO_NAME "errno"
1011#define SECCOMP_RET_TRACE_NAME "trace"
1012#define SECCOMP_RET_ALLOW_NAME "allow"
1013
1014static const char seccomp_actions_avail[] = SECCOMP_RET_KILL_NAME " "
1015 SECCOMP_RET_TRAP_NAME " "
1016 SECCOMP_RET_ERRNO_NAME " "
1017 SECCOMP_RET_TRACE_NAME " "
1018 SECCOMP_RET_ALLOW_NAME;
1019
Tyler Hicks0ddec0f2017-08-11 04:33:54 +00001020struct seccomp_log_name {
1021 u32 log;
1022 const char *name;
1023};
1024
1025static const struct seccomp_log_name seccomp_log_names[] = {
1026 { SECCOMP_LOG_KILL, SECCOMP_RET_KILL_NAME },
1027 { SECCOMP_LOG_TRAP, SECCOMP_RET_TRAP_NAME },
1028 { SECCOMP_LOG_ERRNO, SECCOMP_RET_ERRNO_NAME },
1029 { SECCOMP_LOG_TRACE, SECCOMP_RET_TRACE_NAME },
1030 { SECCOMP_LOG_ALLOW, SECCOMP_RET_ALLOW_NAME },
1031 { }
1032};
1033
1034static bool seccomp_names_from_actions_logged(char *names, size_t size,
1035 u32 actions_logged)
1036{
1037 const struct seccomp_log_name *cur;
1038 bool append_space = false;
1039
1040 for (cur = seccomp_log_names; cur->name && size; cur++) {
1041 ssize_t ret;
1042
1043 if (!(actions_logged & cur->log))
1044 continue;
1045
1046 if (append_space) {
1047 ret = strscpy(names, " ", size);
1048 if (ret < 0)
1049 return false;
1050
1051 names += ret;
1052 size -= ret;
1053 } else
1054 append_space = true;
1055
1056 ret = strscpy(names, cur->name, size);
1057 if (ret < 0)
1058 return false;
1059
1060 names += ret;
1061 size -= ret;
1062 }
1063
1064 return true;
1065}
1066
1067static bool seccomp_action_logged_from_name(u32 *action_logged,
1068 const char *name)
1069{
1070 const struct seccomp_log_name *cur;
1071
1072 for (cur = seccomp_log_names; cur->name; cur++) {
1073 if (!strcmp(cur->name, name)) {
1074 *action_logged = cur->log;
1075 return true;
1076 }
1077 }
1078
1079 return false;
1080}
1081
1082static bool seccomp_actions_logged_from_names(u32 *actions_logged, char *names)
1083{
1084 char *name;
1085
1086 *actions_logged = 0;
1087 while ((name = strsep(&names, " ")) && *name) {
1088 u32 action_logged = 0;
1089
1090 if (!seccomp_action_logged_from_name(&action_logged, name))
1091 return false;
1092
1093 *actions_logged |= action_logged;
1094 }
1095
1096 return true;
1097}
1098
1099static int seccomp_actions_logged_handler(struct ctl_table *ro_table, int write,
1100 void __user *buffer, size_t *lenp,
1101 loff_t *ppos)
1102{
1103 char names[sizeof(seccomp_actions_avail)];
1104 struct ctl_table table;
1105 int ret;
1106
1107 if (write && !capable(CAP_SYS_ADMIN))
1108 return -EPERM;
1109
1110 memset(names, 0, sizeof(names));
1111
1112 if (!write) {
1113 if (!seccomp_names_from_actions_logged(names, sizeof(names),
1114 seccomp_actions_logged))
1115 return -EINVAL;
1116 }
1117
1118 table = *ro_table;
1119 table.data = names;
1120 table.maxlen = sizeof(names);
1121 ret = proc_dostring(&table, write, buffer, lenp, ppos);
1122 if (ret)
1123 return ret;
1124
1125 if (write) {
1126 u32 actions_logged;
1127
1128 if (!seccomp_actions_logged_from_names(&actions_logged,
1129 table.data))
1130 return -EINVAL;
1131
1132 if (actions_logged & SECCOMP_LOG_ALLOW)
1133 return -EINVAL;
1134
1135 seccomp_actions_logged = actions_logged;
1136 }
1137
1138 return 0;
1139}
1140
Tyler Hicks8e5f1ad2017-08-11 04:33:52 +00001141static struct ctl_path seccomp_sysctl_path[] = {
1142 { .procname = "kernel", },
1143 { .procname = "seccomp", },
1144 { }
1145};
1146
1147static struct ctl_table seccomp_sysctl_table[] = {
1148 {
1149 .procname = "actions_avail",
1150 .data = (void *) &seccomp_actions_avail,
1151 .maxlen = sizeof(seccomp_actions_avail),
1152 .mode = 0444,
1153 .proc_handler = proc_dostring,
1154 },
Tyler Hicks0ddec0f2017-08-11 04:33:54 +00001155 {
1156 .procname = "actions_logged",
1157 .mode = 0644,
1158 .proc_handler = seccomp_actions_logged_handler,
1159 },
Tyler Hicks8e5f1ad2017-08-11 04:33:52 +00001160 { }
1161};
1162
1163static int __init seccomp_sysctl_init(void)
1164{
1165 struct ctl_table_header *hdr;
1166
1167 hdr = register_sysctl_paths(seccomp_sysctl_path, seccomp_sysctl_table);
1168 if (!hdr)
1169 pr_warn("seccomp: sysctl registration failed\n");
1170 else
1171 kmemleak_not_leak(hdr);
1172
1173 return 0;
1174}
1175
1176device_initcall(seccomp_sysctl_init)
1177
1178#endif /* CONFIG_SYSCTL */