blob: 5f19f41e4e5057bb8f5c3bd714435fbd60d53b2c [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
525/*
526 * Secure computing mode 1 allows only read/write/exit/sigreturn.
527 * To be fully secure this must be combined with rlimit
528 * to limit the stack allocations too.
529 */
Matt Redfearncb4253a2016-03-29 09:35:34 +0100530static const int mode1_syscalls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 __NR_seccomp_read, __NR_seccomp_write, __NR_seccomp_exit, __NR_seccomp_sigreturn,
532 0, /* null terminated */
533};
534
Andy Lutomirskia4412fc2014-07-21 18:49:14 -0700535static void __secure_computing_strict(int this_syscall)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
Matt Redfearncb4253a2016-03-29 09:35:34 +0100537 const int *syscall_whitelist = mode1_syscalls;
Andy Lutomirskia4412fc2014-07-21 18:49:14 -0700538#ifdef CONFIG_COMPAT
Andy Lutomirski5c380652016-03-22 14:24:52 -0700539 if (in_compat_syscall())
Matt Redfearnc983f0e2016-03-29 09:35:32 +0100540 syscall_whitelist = get_compat_mode1_syscalls();
Andy Lutomirskia4412fc2014-07-21 18:49:14 -0700541#endif
542 do {
543 if (*syscall_whitelist == this_syscall)
544 return;
545 } while (*++syscall_whitelist);
546
547#ifdef SECCOMP_DEBUG
548 dump_stack();
549#endif
550 audit_seccomp(this_syscall, SIGKILL, SECCOMP_RET_KILL);
551 do_exit(SIGKILL);
552}
553
554#ifndef CONFIG_HAVE_ARCH_SECCOMP_FILTER
555void secure_computing_strict(int this_syscall)
556{
557 int mode = current->seccomp.mode;
558
Masahiro Yamada97f26452016-08-03 13:45:50 -0700559 if (IS_ENABLED(CONFIG_CHECKPOINT_RESTORE) &&
Tycho Andersen13c4a902015-06-13 09:02:48 -0600560 unlikely(current->ptrace & PT_SUSPEND_SECCOMP))
561 return;
562
Kees Cook221272f2015-06-15 15:29:16 -0700563 if (mode == SECCOMP_MODE_DISABLED)
Andy Lutomirskia4412fc2014-07-21 18:49:14 -0700564 return;
565 else if (mode == SECCOMP_MODE_STRICT)
566 __secure_computing_strict(this_syscall);
567 else
568 BUG();
569}
570#else
Andy Lutomirski13aa72f2014-07-21 18:49:15 -0700571
572#ifdef CONFIG_SECCOMP_FILTER
Kees Cookce6526e2016-06-01 19:29:15 -0700573static int __seccomp_filter(int this_syscall, const struct seccomp_data *sd,
574 const bool recheck_after_trace)
Andy Lutomirski13aa72f2014-07-21 18:49:15 -0700575{
576 u32 filter_ret, action;
Kees Cookdeb4de82017-08-02 15:00:40 -0700577 struct seccomp_filter *match = NULL;
Andy Lutomirski13aa72f2014-07-21 18:49:15 -0700578 int data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Kees Cook3ba25302014-06-27 15:01:35 -0700580 /*
581 * Make sure that any changes to mode from another thread have
582 * been seen after TIF_SECCOMP was seen.
583 */
584 rmb();
585
Kees Cookdeb4de82017-08-02 15:00:40 -0700586 filter_ret = seccomp_run_filters(sd, &match);
Andy Lutomirski13aa72f2014-07-21 18:49:15 -0700587 data = filter_ret & SECCOMP_RET_DATA;
588 action = filter_ret & SECCOMP_RET_ACTION;
Andy Lutomirski87b526d2012-10-01 11:40:45 -0700589
Andy Lutomirski13aa72f2014-07-21 18:49:15 -0700590 switch (action) {
591 case SECCOMP_RET_ERRNO:
Kees Cook580c57f2015-02-17 13:48:00 -0800592 /* Set low-order bits as an errno, capped at MAX_ERRNO. */
593 if (data > MAX_ERRNO)
594 data = MAX_ERRNO;
Andy Lutomirskid39bd002014-07-21 18:49:16 -0700595 syscall_set_return_value(current, task_pt_regs(current),
Andy Lutomirski13aa72f2014-07-21 18:49:15 -0700596 -data, 0);
597 goto skip;
598
599 case SECCOMP_RET_TRAP:
600 /* Show the handler the original registers. */
Andy Lutomirskid39bd002014-07-21 18:49:16 -0700601 syscall_rollback(current, task_pt_regs(current));
Andy Lutomirski13aa72f2014-07-21 18:49:15 -0700602 /* Let the filter pass back 16 bits of data. */
603 seccomp_send_sigsys(this_syscall, data);
604 goto skip;
605
606 case SECCOMP_RET_TRACE:
Kees Cookce6526e2016-06-01 19:29:15 -0700607 /* We've been put in this state by the ptracer already. */
608 if (recheck_after_trace)
609 return 0;
610
Kees Cook8112c4f2016-06-01 16:02:17 -0700611 /* ENOSYS these calls if there is no tracer attached. */
612 if (!ptrace_event_enabled(current, PTRACE_EVENT_SECCOMP)) {
613 syscall_set_return_value(current,
614 task_pt_regs(current),
615 -ENOSYS, 0);
616 goto skip;
617 }
618
619 /* Allow the BPF to provide the event message */
620 ptrace_event(PTRACE_EVENT_SECCOMP, data);
621 /*
622 * The delivery of a fatal signal during event
Kees Cook485a2522016-08-10 16:28:09 -0700623 * notification may silently skip tracer notification,
624 * which could leave us with a potentially unmodified
625 * syscall that the tracer would have liked to have
626 * changed. Since the process is about to die, we just
627 * force the syscall to be skipped and let the signal
628 * kill the process and correctly handle any tracer exit
629 * notifications.
Kees Cook8112c4f2016-06-01 16:02:17 -0700630 */
631 if (fatal_signal_pending(current))
Kees Cook485a2522016-08-10 16:28:09 -0700632 goto skip;
Kees Cook8112c4f2016-06-01 16:02:17 -0700633 /* Check if the tracer forced the syscall to be skipped. */
634 this_syscall = syscall_get_nr(current, task_pt_regs(current));
635 if (this_syscall < 0)
636 goto skip;
637
Kees Cookce6526e2016-06-01 19:29:15 -0700638 /*
639 * Recheck the syscall, since it may have changed. This
640 * intentionally uses a NULL struct seccomp_data to force
641 * a reload of all registers. This does not goto skip since
642 * a skip would have already been reported.
643 */
644 if (__seccomp_filter(this_syscall, NULL, true))
645 return -1;
646
Kees Cook8112c4f2016-06-01 16:02:17 -0700647 return 0;
Andy Lutomirski13aa72f2014-07-21 18:49:15 -0700648
649 case SECCOMP_RET_ALLOW:
Kees Cookdeb4de82017-08-02 15:00:40 -0700650 /*
651 * Note that the "match" filter will always be NULL for
652 * this action since SECCOMP_RET_ALLOW is the starting
653 * state in seccomp_run_filters().
654 */
Kees Cook8112c4f2016-06-01 16:02:17 -0700655 return 0;
Andy Lutomirski13aa72f2014-07-21 18:49:15 -0700656
657 case SECCOMP_RET_KILL:
Kees Cook131b6352017-02-23 09:24:24 -0800658 default:
Andy Lutomirski13aa72f2014-07-21 18:49:15 -0700659 audit_seccomp(this_syscall, SIGSYS, action);
Kees Cookd7276e32017-02-07 15:18:51 -0800660 /* Dump core only if this is the last remaining thread. */
661 if (get_nr_threads(current) == 1) {
Kees Cook131b6352017-02-23 09:24:24 -0800662 siginfo_t info;
663
Kees Cookd7276e32017-02-07 15:18:51 -0800664 /* Show the original registers in the dump. */
665 syscall_rollback(current, task_pt_regs(current));
666 /* Trigger a manual coredump since do_exit skips it. */
667 seccomp_init_siginfo(&info, this_syscall, data);
668 do_coredump(&info);
669 }
Andy Lutomirski13aa72f2014-07-21 18:49:15 -0700670 do_exit(SIGSYS);
Will Drewry8156b452012-04-17 14:48:58 -0500671 }
Andy Lutomirski13aa72f2014-07-21 18:49:15 -0700672
673 unreachable();
674
675skip:
676 audit_seccomp(this_syscall, 0, action);
Kees Cook8112c4f2016-06-01 16:02:17 -0700677 return -1;
678}
679#else
Kees Cookce6526e2016-06-01 19:29:15 -0700680static int __seccomp_filter(int this_syscall, const struct seccomp_data *sd,
681 const bool recheck_after_trace)
Kees Cook8112c4f2016-06-01 16:02:17 -0700682{
683 BUG();
Andy Lutomirski13aa72f2014-07-21 18:49:15 -0700684}
685#endif
686
Kees Cook8112c4f2016-06-01 16:02:17 -0700687int __secure_computing(const struct seccomp_data *sd)
Andy Lutomirski13aa72f2014-07-21 18:49:15 -0700688{
689 int mode = current->seccomp.mode;
Kees Cook8112c4f2016-06-01 16:02:17 -0700690 int this_syscall;
Andy Lutomirski13aa72f2014-07-21 18:49:15 -0700691
Masahiro Yamada97f26452016-08-03 13:45:50 -0700692 if (IS_ENABLED(CONFIG_CHECKPOINT_RESTORE) &&
Tycho Andersen13c4a902015-06-13 09:02:48 -0600693 unlikely(current->ptrace & PT_SUSPEND_SECCOMP))
Kees Cook8112c4f2016-06-01 16:02:17 -0700694 return 0;
695
696 this_syscall = sd ? sd->nr :
697 syscall_get_nr(current, task_pt_regs(current));
Tycho Andersen13c4a902015-06-13 09:02:48 -0600698
Andy Lutomirski13aa72f2014-07-21 18:49:15 -0700699 switch (mode) {
700 case SECCOMP_MODE_STRICT:
701 __secure_computing_strict(this_syscall); /* may call do_exit */
Kees Cook8112c4f2016-06-01 16:02:17 -0700702 return 0;
Andy Lutomirski13aa72f2014-07-21 18:49:15 -0700703 case SECCOMP_MODE_FILTER:
Kees Cookce6526e2016-06-01 19:29:15 -0700704 return __seccomp_filter(this_syscall, sd, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 default:
706 BUG();
707 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708}
Andy Lutomirskia4412fc2014-07-21 18:49:14 -0700709#endif /* CONFIG_HAVE_ARCH_SECCOMP_FILTER */
Andrea Arcangeli1d9d02f2007-07-15 23:41:32 -0700710
711long prctl_get_seccomp(void)
712{
713 return current->seccomp.mode;
714}
715
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500716/**
Kees Cook3b23dd12014-06-25 15:55:25 -0700717 * seccomp_set_mode_strict: internal function for setting strict seccomp
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500718 *
719 * Once current->seccomp.mode is non-zero, it may not be changed.
720 *
721 * Returns 0 on success or -EINVAL on failure.
722 */
Kees Cook3b23dd12014-06-25 15:55:25 -0700723static long seccomp_set_mode_strict(void)
Andrea Arcangeli1d9d02f2007-07-15 23:41:32 -0700724{
Kees Cook3b23dd12014-06-25 15:55:25 -0700725 const unsigned long seccomp_mode = SECCOMP_MODE_STRICT;
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500726 long ret = -EINVAL;
Andrea Arcangeli1d9d02f2007-07-15 23:41:32 -0700727
Kees Cookdbd952122014-06-27 15:18:48 -0700728 spin_lock_irq(&current->sighand->siglock);
729
Kees Cook1f41b4502014-06-25 15:38:02 -0700730 if (!seccomp_may_assign_mode(seccomp_mode))
Andrea Arcangeli1d9d02f2007-07-15 23:41:32 -0700731 goto out;
732
Andrea Arcangelicf99aba2007-07-15 23:41:33 -0700733#ifdef TIF_NOTSC
Kees Cook3b23dd12014-06-25 15:55:25 -0700734 disable_TSC();
Andrea Arcangelicf99aba2007-07-15 23:41:33 -0700735#endif
Kees Cook3ba25302014-06-27 15:01:35 -0700736 seccomp_assign_mode(current, seccomp_mode);
Kees Cook3b23dd12014-06-25 15:55:25 -0700737 ret = 0;
738
739out:
Kees Cookdbd952122014-06-27 15:18:48 -0700740 spin_unlock_irq(&current->sighand->siglock);
Kees Cook3b23dd12014-06-25 15:55:25 -0700741
742 return ret;
743}
744
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500745#ifdef CONFIG_SECCOMP_FILTER
Kees Cook3b23dd12014-06-25 15:55:25 -0700746/**
747 * seccomp_set_mode_filter: internal function for setting seccomp filter
Kees Cook48dc92b2014-06-25 16:08:24 -0700748 * @flags: flags to change filter behavior
Kees Cook3b23dd12014-06-25 15:55:25 -0700749 * @filter: struct sock_fprog containing filter
750 *
751 * This function may be called repeatedly to install additional filters.
752 * Every filter successfully installed will be evaluated (in reverse order)
753 * for each system call the task makes.
754 *
755 * Once current->seccomp.mode is non-zero, it may not be changed.
756 *
757 * Returns 0 on success or -EINVAL on failure.
758 */
Kees Cook48dc92b2014-06-25 16:08:24 -0700759static long seccomp_set_mode_filter(unsigned int flags,
760 const char __user *filter)
Kees Cook3b23dd12014-06-25 15:55:25 -0700761{
762 const unsigned long seccomp_mode = SECCOMP_MODE_FILTER;
Kees Cookc8bee432014-06-27 15:16:33 -0700763 struct seccomp_filter *prepared = NULL;
Kees Cook3b23dd12014-06-25 15:55:25 -0700764 long ret = -EINVAL;
765
Kees Cook48dc92b2014-06-25 16:08:24 -0700766 /* Validate flags. */
Kees Cookc2e1f2e2014-06-05 00:23:17 -0700767 if (flags & ~SECCOMP_FILTER_FLAG_MASK)
Kees Cookdbd952122014-06-27 15:18:48 -0700768 return -EINVAL;
Kees Cook48dc92b2014-06-25 16:08:24 -0700769
Kees Cookc8bee432014-06-27 15:16:33 -0700770 /* Prepare the new filter before holding any locks. */
771 prepared = seccomp_prepare_user_filter(filter);
772 if (IS_ERR(prepared))
773 return PTR_ERR(prepared);
774
Kees Cookc2e1f2e2014-06-05 00:23:17 -0700775 /*
776 * Make sure we cannot change seccomp or nnp state via TSYNC
777 * while another thread is in the middle of calling exec.
778 */
779 if (flags & SECCOMP_FILTER_FLAG_TSYNC &&
780 mutex_lock_killable(&current->signal->cred_guard_mutex))
781 goto out_free;
782
Kees Cookdbd952122014-06-27 15:18:48 -0700783 spin_lock_irq(&current->sighand->siglock);
784
Kees Cook3b23dd12014-06-25 15:55:25 -0700785 if (!seccomp_may_assign_mode(seccomp_mode))
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500786 goto out;
Kees Cook3b23dd12014-06-25 15:55:25 -0700787
Kees Cookc8bee432014-06-27 15:16:33 -0700788 ret = seccomp_attach_filter(flags, prepared);
Kees Cook3b23dd12014-06-25 15:55:25 -0700789 if (ret)
790 goto out;
Kees Cookc8bee432014-06-27 15:16:33 -0700791 /* Do not free the successfully attached filter. */
792 prepared = NULL;
Andrea Arcangeli1d9d02f2007-07-15 23:41:32 -0700793
Kees Cook3ba25302014-06-27 15:01:35 -0700794 seccomp_assign_mode(current, seccomp_mode);
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500795out:
Kees Cookdbd952122014-06-27 15:18:48 -0700796 spin_unlock_irq(&current->sighand->siglock);
Kees Cookc2e1f2e2014-06-05 00:23:17 -0700797 if (flags & SECCOMP_FILTER_FLAG_TSYNC)
798 mutex_unlock(&current->signal->cred_guard_mutex);
799out_free:
Kees Cookc8bee432014-06-27 15:16:33 -0700800 seccomp_filter_free(prepared);
Andrea Arcangeli1d9d02f2007-07-15 23:41:32 -0700801 return ret;
802}
Kees Cook3b23dd12014-06-25 15:55:25 -0700803#else
Kees Cook48dc92b2014-06-25 16:08:24 -0700804static inline long seccomp_set_mode_filter(unsigned int flags,
805 const char __user *filter)
Kees Cook3b23dd12014-06-25 15:55:25 -0700806{
807 return -EINVAL;
808}
809#endif
Kees Cookd78ab022014-05-21 15:02:11 -0700810
Kees Cook48dc92b2014-06-25 16:08:24 -0700811/* Common entry point for both prctl and syscall. */
812static long do_seccomp(unsigned int op, unsigned int flags,
813 const char __user *uargs)
814{
815 switch (op) {
816 case SECCOMP_SET_MODE_STRICT:
817 if (flags != 0 || uargs != NULL)
818 return -EINVAL;
819 return seccomp_set_mode_strict();
820 case SECCOMP_SET_MODE_FILTER:
821 return seccomp_set_mode_filter(flags, uargs);
822 default:
823 return -EINVAL;
824 }
825}
826
827SYSCALL_DEFINE3(seccomp, unsigned int, op, unsigned int, flags,
828 const char __user *, uargs)
829{
830 return do_seccomp(op, flags, uargs);
831}
832
Kees Cookd78ab022014-05-21 15:02:11 -0700833/**
834 * prctl_set_seccomp: configures current->seccomp.mode
835 * @seccomp_mode: requested mode to use
836 * @filter: optional struct sock_fprog for use with SECCOMP_MODE_FILTER
837 *
838 * Returns 0 on success or -EINVAL on failure.
839 */
840long prctl_set_seccomp(unsigned long seccomp_mode, char __user *filter)
841{
Kees Cook48dc92b2014-06-25 16:08:24 -0700842 unsigned int op;
843 char __user *uargs;
844
Kees Cook3b23dd12014-06-25 15:55:25 -0700845 switch (seccomp_mode) {
846 case SECCOMP_MODE_STRICT:
Kees Cook48dc92b2014-06-25 16:08:24 -0700847 op = SECCOMP_SET_MODE_STRICT;
848 /*
849 * Setting strict mode through prctl always ignored filter,
850 * so make sure it is always NULL here to pass the internal
851 * check in do_seccomp().
852 */
853 uargs = NULL;
854 break;
Kees Cook3b23dd12014-06-25 15:55:25 -0700855 case SECCOMP_MODE_FILTER:
Kees Cook48dc92b2014-06-25 16:08:24 -0700856 op = SECCOMP_SET_MODE_FILTER;
857 uargs = filter;
858 break;
Kees Cook3b23dd12014-06-25 15:55:25 -0700859 default:
860 return -EINVAL;
861 }
Kees Cook48dc92b2014-06-25 16:08:24 -0700862
863 /* prctl interface doesn't have flags, so they are always zero. */
864 return do_seccomp(op, 0, uargs);
Kees Cookd78ab022014-05-21 15:02:11 -0700865}
Tycho Andersenf8e529e2015-10-27 09:23:59 +0900866
867#if defined(CONFIG_SECCOMP_FILTER) && defined(CONFIG_CHECKPOINT_RESTORE)
868long seccomp_get_filter(struct task_struct *task, unsigned long filter_off,
869 void __user *data)
870{
871 struct seccomp_filter *filter;
872 struct sock_fprog_kern *fprog;
873 long ret;
874 unsigned long count = 0;
875
876 if (!capable(CAP_SYS_ADMIN) ||
877 current->seccomp.mode != SECCOMP_MODE_DISABLED) {
878 return -EACCES;
879 }
880
881 spin_lock_irq(&task->sighand->siglock);
882 if (task->seccomp.mode != SECCOMP_MODE_FILTER) {
883 ret = -EINVAL;
884 goto out;
885 }
886
887 filter = task->seccomp.filter;
888 while (filter) {
889 filter = filter->prev;
890 count++;
891 }
892
893 if (filter_off >= count) {
894 ret = -ENOENT;
895 goto out;
896 }
897 count -= filter_off;
898
899 filter = task->seccomp.filter;
900 while (filter && count > 1) {
901 filter = filter->prev;
902 count--;
903 }
904
905 if (WARN_ON(count != 1 || !filter)) {
906 /* The filter tree shouldn't shrink while we're using it. */
907 ret = -ENOENT;
908 goto out;
909 }
910
911 fprog = filter->prog->orig_prog;
912 if (!fprog) {
Mickaël Salaün470bf1f2016-03-24 02:46:33 +0100913 /* This must be a new non-cBPF filter, since we save
Tycho Andersenf8e529e2015-10-27 09:23:59 +0900914 * every cBPF filter's orig_prog above when
915 * CONFIG_CHECKPOINT_RESTORE is enabled.
916 */
917 ret = -EMEDIUMTYPE;
918 goto out;
919 }
920
921 ret = fprog->len;
922 if (!data)
923 goto out;
924
925 get_seccomp_filter(task);
926 spin_unlock_irq(&task->sighand->siglock);
927
928 if (copy_to_user(data, fprog->filter, bpf_classic_proglen(fprog)))
929 ret = -EFAULT;
930
931 put_seccomp_filter(task);
932 return ret;
933
934out:
935 spin_unlock_irq(&task->sighand->siglock);
936 return ret;
937}
938#endif
Tyler Hicks8e5f1ad2017-08-11 04:33:52 +0000939
940#ifdef CONFIG_SYSCTL
941
942/* Human readable action names for friendly sysctl interaction */
943#define SECCOMP_RET_KILL_NAME "kill"
944#define SECCOMP_RET_TRAP_NAME "trap"
945#define SECCOMP_RET_ERRNO_NAME "errno"
946#define SECCOMP_RET_TRACE_NAME "trace"
947#define SECCOMP_RET_ALLOW_NAME "allow"
948
949static const char seccomp_actions_avail[] = SECCOMP_RET_KILL_NAME " "
950 SECCOMP_RET_TRAP_NAME " "
951 SECCOMP_RET_ERRNO_NAME " "
952 SECCOMP_RET_TRACE_NAME " "
953 SECCOMP_RET_ALLOW_NAME;
954
955static struct ctl_path seccomp_sysctl_path[] = {
956 { .procname = "kernel", },
957 { .procname = "seccomp", },
958 { }
959};
960
961static struct ctl_table seccomp_sysctl_table[] = {
962 {
963 .procname = "actions_avail",
964 .data = (void *) &seccomp_actions_avail,
965 .maxlen = sizeof(seccomp_actions_avail),
966 .mode = 0444,
967 .proc_handler = proc_dostring,
968 },
969 { }
970};
971
972static int __init seccomp_sysctl_init(void)
973{
974 struct ctl_table_header *hdr;
975
976 hdr = register_sysctl_paths(seccomp_sysctl_path, seccomp_sysctl_table);
977 if (!hdr)
978 pr_warn("seccomp: sysctl registration failed\n");
979 else
980 kmemleak_not_leak(hdr);
981
982 return 0;
983}
984
985device_initcall(seccomp_sysctl_init)
986
987#endif /* CONFIG_SYSCTL */