blob: c8292055cb6cfd70bc287e0740af5b99ab5d40bf [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 Drewry980e9202012-02-09 11:50:58 -06006 * 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
Will Drewry980e9202012-02-09 11:50:58 -060016#include <linux/atomic.h>
Eric Paris85e7bac2012-01-03 14:23:05 -050017#include <linux/audit.h>
Roland McGrath5b101742009-02-27 23:25:54 -080018#include <linux/compat.h>
Will Drewry980e9202012-02-09 11:50:58 -060019#include <linux/sched.h>
20#include <linux/seccomp.h>
Kees Cook42835bc2014-06-27 15:16:33 -070021#include <linux/slab.h>
Kees Cook95de3e52014-06-25 16:08:24 -070022#include <linux/syscalls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24/* #define SECCOMP_DEBUG 1 */
Will Drewry980e9202012-02-09 11:50:58 -060025
26#ifdef CONFIG_SECCOMP_FILTER
27#include <asm/syscall.h>
28#include <linux/filter.h>
Will Drewry4ca6e672012-02-09 12:08:39 -060029#include <linux/ptrace.h>
Will Drewry980e9202012-02-09 11:50:58 -060030#include <linux/security.h>
Will Drewry980e9202012-02-09 11:50:58 -060031#include <linux/tracehook.h>
32#include <linux/uaccess.h>
33
34/**
35 * struct seccomp_filter - container for seccomp BPF programs
36 *
37 * @usage: reference count to manage the object lifetime.
38 * get/put helpers should be used when accessing an instance
39 * outside of a lifetime-guarded section. In general, this
40 * is only needed for handling filters shared across tasks.
41 * @prev: points to a previously installed, or inherited, filter
42 * @len: the number of instructions in the program
43 * @insns: the BPF program instructions to evaluate
44 *
45 * seccomp_filter objects are organized in a tree linked via the @prev
46 * pointer. For any task, it appears to be a singly-linked list starting
47 * with current->seccomp.filter, the most recently attached or inherited filter.
48 * However, multiple filters may share a @prev node, by way of fork(), which
49 * results in a unidirectional tree existing in memory. This is similar to
50 * how namespaces work.
51 *
52 * seccomp_filter objects should never be modified after being attached
53 * to a task_struct (other than @usage).
54 */
55struct seccomp_filter {
56 atomic_t usage;
57 struct seccomp_filter *prev;
58 unsigned short len; /* Instruction count */
59 struct sock_filter insns[];
60};
61
62/* Limit any path through the tree to 256KB worth of instructions. */
63#define MAX_INSNS_PER_PATH ((1 << 18) / sizeof(struct sock_filter))
64
Will Drewry980e9202012-02-09 11:50:58 -060065/**
66 * get_u32 - returns a u32 offset into data
67 * @data: a unsigned 64 bit value
68 * @index: 0 or 1 to return the first or second 32-bits
69 *
70 * This inline exists to hide the length of unsigned long. If a 32-bit
71 * unsigned long is passed in, it will be extended and the top 32-bits will be
72 * 0. If it is a 64-bit unsigned long, then whatever data is resident will be
73 * properly returned.
74 *
75 * Endianness is explicitly ignored and left for BPF program authors to manage
76 * as per the specific architecture.
77 */
78static inline u32 get_u32(u64 data, int index)
79{
80 return ((u32 *)&data)[index];
81}
82
83/* Helper for bpf_load below. */
84#define BPF_DATA(_name) offsetof(struct seccomp_data, _name)
85/**
86 * bpf_load: checks and returns a pointer to the requested offset
87 * @off: offset into struct seccomp_data to load from
88 *
89 * Returns the requested 32-bits of data.
90 * seccomp_check_filter() should assure that @off is 32-bit aligned
91 * and not out of bounds. Failure to do so is a BUG.
92 */
93u32 seccomp_bpf_load(int off)
94{
95 struct pt_regs *regs = task_pt_regs(current);
96 if (off == BPF_DATA(nr))
97 return syscall_get_nr(current, regs);
98 if (off == BPF_DATA(arch))
99 return syscall_get_arch(current, regs);
100 if (off >= BPF_DATA(args[0]) && off < BPF_DATA(args[6])) {
101 unsigned long value;
102 int arg = (off - BPF_DATA(args[0])) / sizeof(u64);
103 int index = !!(off % sizeof(u64));
104 syscall_get_arguments(current, regs, arg, 1, &value);
105 return get_u32(value, index);
106 }
107 if (off == BPF_DATA(instruction_pointer))
108 return get_u32(KSTK_EIP(current), 0);
109 if (off == BPF_DATA(instruction_pointer) + sizeof(u32))
110 return get_u32(KSTK_EIP(current), 1);
111 /* seccomp_check_filter should make this impossible. */
112 BUG();
113}
114
115/**
116 * seccomp_check_filter - verify seccomp filter code
117 * @filter: filter to verify
118 * @flen: length of filter
119 *
120 * Takes a previously checked filter (by sk_chk_filter) and
121 * redirects all filter code that loads struct sk_buff data
122 * and related data through seccomp_bpf_load. It also
123 * enforces length and alignment checking of those loads.
124 *
125 * Returns 0 if the rule set is legal or -EINVAL if not.
126 */
127static int seccomp_check_filter(struct sock_filter *filter, unsigned int flen)
128{
129 int pc;
130 for (pc = 0; pc < flen; pc++) {
131 struct sock_filter *ftest = &filter[pc];
132 u16 code = ftest->code;
133 u32 k = ftest->k;
134
135 switch (code) {
136 case BPF_S_LD_W_ABS:
137 ftest->code = BPF_S_ANC_SECCOMP_LD_W;
138 /* 32-bit aligned and not out of bounds. */
139 if (k >= sizeof(struct seccomp_data) || k & 3)
140 return -EINVAL;
141 continue;
142 case BPF_S_LD_W_LEN:
143 ftest->code = BPF_S_LD_IMM;
144 ftest->k = sizeof(struct seccomp_data);
145 continue;
146 case BPF_S_LDX_W_LEN:
147 ftest->code = BPF_S_LDX_IMM;
148 ftest->k = sizeof(struct seccomp_data);
149 continue;
150 /* Explicitly include allowed calls. */
151 case BPF_S_RET_K:
152 case BPF_S_RET_A:
153 case BPF_S_ALU_ADD_K:
154 case BPF_S_ALU_ADD_X:
155 case BPF_S_ALU_SUB_K:
156 case BPF_S_ALU_SUB_X:
157 case BPF_S_ALU_MUL_K:
158 case BPF_S_ALU_MUL_X:
159 case BPF_S_ALU_DIV_X:
160 case BPF_S_ALU_AND_K:
161 case BPF_S_ALU_AND_X:
162 case BPF_S_ALU_OR_K:
163 case BPF_S_ALU_OR_X:
164 case BPF_S_ALU_LSH_K:
165 case BPF_S_ALU_LSH_X:
166 case BPF_S_ALU_RSH_K:
167 case BPF_S_ALU_RSH_X:
168 case BPF_S_ALU_NEG:
169 case BPF_S_LD_IMM:
170 case BPF_S_LDX_IMM:
171 case BPF_S_MISC_TAX:
172 case BPF_S_MISC_TXA:
173 case BPF_S_ALU_DIV_K:
174 case BPF_S_LD_MEM:
175 case BPF_S_LDX_MEM:
176 case BPF_S_ST:
177 case BPF_S_STX:
178 case BPF_S_JMP_JA:
179 case BPF_S_JMP_JEQ_K:
180 case BPF_S_JMP_JEQ_X:
181 case BPF_S_JMP_JGE_K:
182 case BPF_S_JMP_JGE_X:
183 case BPF_S_JMP_JGT_K:
184 case BPF_S_JMP_JGT_X:
185 case BPF_S_JMP_JSET_K:
186 case BPF_S_JMP_JSET_X:
187 continue;
188 default:
189 return -EINVAL;
190 }
191 }
192 return 0;
193}
194
195/**
196 * seccomp_run_filters - evaluates all seccomp filters against @syscall
197 * @syscall: number of the current system call
198 *
199 * Returns valid seccomp BPF response codes.
200 */
201static u32 seccomp_run_filters(int syscall)
202{
Kees Cook38daf672014-06-27 15:01:35 -0700203 struct seccomp_filter *f = ACCESS_ONCE(current->seccomp.filter);
Will Drewry43ec8252012-02-15 20:45:54 -0600204 u32 ret = SECCOMP_RET_ALLOW;
205
206 /* Ensure unexpected behavior doesn't result in failing open. */
Kees Cook38daf672014-06-27 15:01:35 -0700207 if (unlikely(WARN_ON(f == NULL)))
Will Drewry43ec8252012-02-15 20:45:54 -0600208 return SECCOMP_RET_KILL;
209
Kees Cook38daf672014-06-27 15:01:35 -0700210 /* Make sure cross-thread synced filter points somewhere sane. */
211 smp_read_barrier_depends();
212
Will Drewry980e9202012-02-09 11:50:58 -0600213 /*
214 * All filters in the list are evaluated and the lowest BPF return
Will Drewry43ec8252012-02-15 20:45:54 -0600215 * value always takes priority (ignoring the DATA).
Will Drewry980e9202012-02-09 11:50:58 -0600216 */
Kees Cook38daf672014-06-27 15:01:35 -0700217 for (; f; f = f->prev) {
Will Drewry43ec8252012-02-15 20:45:54 -0600218 u32 cur_ret = sk_run_filter(NULL, f->insns);
Kees Cook38daf672014-06-27 15:01:35 -0700219
Will Drewry43ec8252012-02-15 20:45:54 -0600220 if ((cur_ret & SECCOMP_RET_ACTION) < (ret & SECCOMP_RET_ACTION))
221 ret = cur_ret;
Will Drewry980e9202012-02-09 11:50:58 -0600222 }
223 return ret;
224}
Kees Cookc5c2ce72014-06-25 15:38:02 -0700225#endif /* CONFIG_SECCOMP_FILTER */
Will Drewry980e9202012-02-09 11:50:58 -0600226
Kees Cookc5c2ce72014-06-25 15:38:02 -0700227static inline bool seccomp_may_assign_mode(unsigned long seccomp_mode)
228{
Kees Cook880e1ab2014-06-27 15:18:48 -0700229 BUG_ON(!spin_is_locked(&current->sighand->siglock));
230
Kees Cookc5c2ce72014-06-25 15:38:02 -0700231 if (current->seccomp.mode && current->seccomp.mode != seccomp_mode)
232 return false;
233
234 return true;
235}
236
Kees Cook38daf672014-06-27 15:01:35 -0700237static inline void seccomp_assign_mode(struct task_struct *task,
238 unsigned long seccomp_mode)
Kees Cookc5c2ce72014-06-25 15:38:02 -0700239{
Kees Cook38daf672014-06-27 15:01:35 -0700240 BUG_ON(!spin_is_locked(&task->sighand->siglock));
Kees Cook880e1ab2014-06-27 15:18:48 -0700241
Kees Cook38daf672014-06-27 15:01:35 -0700242 task->seccomp.mode = seccomp_mode;
243 /*
244 * Make sure TIF_SECCOMP cannot be set before the mode (and
245 * filter) is set.
246 */
247 smp_mb__before_atomic();
248 set_tsk_thread_flag(task, TIF_SECCOMP);
Kees Cookc5c2ce72014-06-25 15:38:02 -0700249}
250
251#ifdef CONFIG_SECCOMP_FILTER
Will Drewry980e9202012-02-09 11:50:58 -0600252/**
Kees Cook42835bc2014-06-27 15:16:33 -0700253 * seccomp_prepare_filter: Prepares a seccomp filter for use.
Will Drewry980e9202012-02-09 11:50:58 -0600254 * @fprog: BPF program to install
255 *
Kees Cook42835bc2014-06-27 15:16:33 -0700256 * Returns filter on success or an ERR_PTR on failure.
Will Drewry980e9202012-02-09 11:50:58 -0600257 */
Kees Cook42835bc2014-06-27 15:16:33 -0700258static struct seccomp_filter *seccomp_prepare_filter(struct sock_fprog *fprog)
Will Drewry980e9202012-02-09 11:50:58 -0600259{
260 struct seccomp_filter *filter;
261 unsigned long fp_size = fprog->len * sizeof(struct sock_filter);
262 unsigned long total_insns = fprog->len;
263 long ret;
264
265 if (fprog->len == 0 || fprog->len > BPF_MAXINSNS)
Kees Cook42835bc2014-06-27 15:16:33 -0700266 return ERR_PTR(-EINVAL);
267 BUG_ON(INT_MAX / fprog->len < sizeof(struct sock_filter));
Will Drewry980e9202012-02-09 11:50:58 -0600268
269 for (filter = current->seccomp.filter; filter; filter = filter->prev)
270 total_insns += filter->len + 4; /* include a 4 instr penalty */
271 if (total_insns > MAX_INSNS_PER_PATH)
Kees Cook42835bc2014-06-27 15:16:33 -0700272 return ERR_PTR(-ENOMEM);
Will Drewry980e9202012-02-09 11:50:58 -0600273
274 /*
275 * Installing a seccomp filter requires that the task have
276 * CAP_SYS_ADMIN in its namespace or be running with no_new_privs.
277 * This avoids scenarios where unprivileged tasks can affect the
278 * behavior of privileged children.
279 */
Kees Cook5eab1302014-05-21 15:23:46 -0700280 if (!task_no_new_privs(current) &&
Will Drewry980e9202012-02-09 11:50:58 -0600281 security_capable_noaudit(current_cred(), current_user_ns(),
282 CAP_SYS_ADMIN) != 0)
Kees Cook42835bc2014-06-27 15:16:33 -0700283 return ERR_PTR(-EACCES);
Will Drewry980e9202012-02-09 11:50:58 -0600284
285 /* Allocate a new seccomp_filter */
286 filter = kzalloc(sizeof(struct seccomp_filter) + fp_size,
287 GFP_KERNEL|__GFP_NOWARN);
288 if (!filter)
Kees Cook42835bc2014-06-27 15:16:33 -0700289 return ERR_PTR(-ENOMEM);
Will Drewry980e9202012-02-09 11:50:58 -0600290 atomic_set(&filter->usage, 1);
291 filter->len = fprog->len;
292
293 /* Copy the instructions from fprog. */
294 ret = -EFAULT;
295 if (copy_from_user(filter->insns, fprog->filter, fp_size))
296 goto fail;
297
298 /* Check and rewrite the fprog via the skb checker */
299 ret = sk_chk_filter(filter->insns, filter->len);
300 if (ret)
301 goto fail;
302
303 /* Check and rewrite the fprog for seccomp use */
304 ret = seccomp_check_filter(filter->insns, filter->len);
305 if (ret)
306 goto fail;
307
Kees Cook42835bc2014-06-27 15:16:33 -0700308 return filter;
Will Drewry980e9202012-02-09 11:50:58 -0600309fail:
310 kfree(filter);
Kees Cook42835bc2014-06-27 15:16:33 -0700311 return ERR_PTR(ret);
Will Drewry980e9202012-02-09 11:50:58 -0600312}
313
314/**
Kees Cook42835bc2014-06-27 15:16:33 -0700315 * seccomp_prepare_user_filter - prepares a user-supplied sock_fprog
Will Drewry980e9202012-02-09 11:50:58 -0600316 * @user_filter: pointer to the user data containing a sock_fprog.
317 *
318 * Returns 0 on success and non-zero otherwise.
319 */
Kees Cook42835bc2014-06-27 15:16:33 -0700320static struct seccomp_filter *
321seccomp_prepare_user_filter(const char __user *user_filter)
Will Drewry980e9202012-02-09 11:50:58 -0600322{
323 struct sock_fprog fprog;
Kees Cook42835bc2014-06-27 15:16:33 -0700324 struct seccomp_filter *filter = ERR_PTR(-EFAULT);
Will Drewry980e9202012-02-09 11:50:58 -0600325
326#ifdef CONFIG_COMPAT
327 if (is_compat_task()) {
328 struct compat_sock_fprog fprog32;
329 if (copy_from_user(&fprog32, user_filter, sizeof(fprog32)))
330 goto out;
331 fprog.len = fprog32.len;
332 fprog.filter = compat_ptr(fprog32.filter);
333 } else /* falls through to the if below. */
334#endif
335 if (copy_from_user(&fprog, user_filter, sizeof(fprog)))
336 goto out;
Kees Cook42835bc2014-06-27 15:16:33 -0700337 filter = seccomp_prepare_filter(&fprog);
Will Drewry980e9202012-02-09 11:50:58 -0600338out:
Kees Cook42835bc2014-06-27 15:16:33 -0700339 return filter;
340}
341
342/**
343 * seccomp_attach_filter: validate and attach filter
344 * @flags: flags to change filter behavior
345 * @filter: seccomp filter to add to the current process
346 *
Kees Cook880e1ab2014-06-27 15:18:48 -0700347 * Caller must be holding current->sighand->siglock lock.
348 *
Kees Cook42835bc2014-06-27 15:16:33 -0700349 * Returns 0 on success, -ve on error.
350 */
351static long seccomp_attach_filter(unsigned int flags,
352 struct seccomp_filter *filter)
353{
354 unsigned long total_insns;
355 struct seccomp_filter *walker;
356
Kees Cook880e1ab2014-06-27 15:18:48 -0700357 BUG_ON(!spin_is_locked(&current->sighand->siglock));
358
Kees Cook42835bc2014-06-27 15:16:33 -0700359 /* Validate resulting filter length. */
360 total_insns = filter->len;
361 for (walker = current->seccomp.filter; walker; walker = walker->prev)
362 total_insns += walker->len + 4; /* 4 instr penalty */
363 if (total_insns > MAX_INSNS_PER_PATH)
364 return -ENOMEM;
365
366 /*
367 * If there is an existing filter, make it the prev and don't drop its
368 * task reference.
369 */
370 filter->prev = current->seccomp.filter;
371 current->seccomp.filter = filter;
372
373 return 0;
Will Drewry980e9202012-02-09 11:50:58 -0600374}
375
376/* get_seccomp_filter - increments the reference count of the filter on @tsk */
377void get_seccomp_filter(struct task_struct *tsk)
378{
379 struct seccomp_filter *orig = tsk->seccomp.filter;
380 if (!orig)
381 return;
382 /* Reference count is bounded by the number of total processes. */
383 atomic_inc(&orig->usage);
384}
385
Kees Cook42835bc2014-06-27 15:16:33 -0700386static inline void seccomp_filter_free(struct seccomp_filter *filter)
387{
388 if (filter) {
389 kfree(filter);
390 }
391}
392
Will Drewry980e9202012-02-09 11:50:58 -0600393/* put_seccomp_filter - decrements the ref count of tsk->seccomp.filter */
394void put_seccomp_filter(struct task_struct *tsk)
395{
396 struct seccomp_filter *orig = tsk->seccomp.filter;
397 /* Clean up single-reference branches iteratively. */
398 while (orig && atomic_dec_and_test(&orig->usage)) {
399 struct seccomp_filter *freeme = orig;
400 orig = orig->prev;
Kees Cook42835bc2014-06-27 15:16:33 -0700401 seccomp_filter_free(freeme);
Will Drewry980e9202012-02-09 11:50:58 -0600402 }
403}
Will Drewry69537022012-02-09 12:01:37 -0600404
405/**
406 * seccomp_send_sigsys - signals the task to allow in-process syscall emulation
407 * @syscall: syscall number to send to userland
408 * @reason: filter-supplied reason code to send to userland (via si_errno)
409 *
410 * Forces a SIGSYS with a code of SYS_SECCOMP and related sigsys info.
411 */
412static void seccomp_send_sigsys(int syscall, int reason)
413{
414 struct siginfo info;
415 memset(&info, 0, sizeof(info));
416 info.si_signo = SIGSYS;
417 info.si_code = SYS_SECCOMP;
418 info.si_call_addr = (void __user *)KSTK_EIP(current);
419 info.si_errno = reason;
420 info.si_arch = syscall_get_arch(current, task_pt_regs(current));
421 info.si_syscall = syscall;
422 force_sig_info(SIGSYS, &info, current);
423}
Will Drewry980e9202012-02-09 11:50:58 -0600424#endif /* CONFIG_SECCOMP_FILTER */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426/*
427 * Secure computing mode 1 allows only read/write/exit/sigreturn.
428 * To be fully secure this must be combined with rlimit
429 * to limit the stack allocations too.
430 */
431static int mode1_syscalls[] = {
432 __NR_seccomp_read, __NR_seccomp_write, __NR_seccomp_exit, __NR_seccomp_sigreturn,
433 0, /* null terminated */
434};
435
Roland McGrath5b101742009-02-27 23:25:54 -0800436#ifdef CONFIG_COMPAT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437static int mode1_syscalls_32[] = {
438 __NR_seccomp_read_32, __NR_seccomp_write_32, __NR_seccomp_exit_32, __NR_seccomp_sigreturn_32,
439 0, /* null terminated */
440};
441#endif
442
Will Drewry43ec8252012-02-15 20:45:54 -0600443int __secure_computing(int this_syscall)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
Will Drewry980e9202012-02-09 11:50:58 -0600445 int exit_sig = 0;
446 int *syscall;
Will Drewry171ba892012-04-17 14:48:58 -0500447 u32 ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Kees Cook38daf672014-06-27 15:01:35 -0700449 /*
450 * Make sure that any changes to mode from another thread have
451 * been seen after TIF_SECCOMP was seen.
452 */
453 rmb();
454
455 switch (current->seccomp.mode) {
Will Drewry980e9202012-02-09 11:50:58 -0600456 case SECCOMP_MODE_STRICT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 syscall = mode1_syscalls;
Roland McGrath5b101742009-02-27 23:25:54 -0800458#ifdef CONFIG_COMPAT
459 if (is_compat_task())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 syscall = mode1_syscalls_32;
461#endif
462 do {
463 if (*syscall == this_syscall)
Will Drewry43ec8252012-02-15 20:45:54 -0600464 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 } while (*++syscall);
Will Drewry980e9202012-02-09 11:50:58 -0600466 exit_sig = SIGKILL;
Will Drewry171ba892012-04-17 14:48:58 -0500467 ret = SECCOMP_RET_KILL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 break;
Will Drewry980e9202012-02-09 11:50:58 -0600469#ifdef CONFIG_SECCOMP_FILTER
Will Drewry171ba892012-04-17 14:48:58 -0500470 case SECCOMP_MODE_FILTER: {
471 int data;
Will Drewry43ec8252012-02-15 20:45:54 -0600472 ret = seccomp_run_filters(this_syscall);
473 data = ret & SECCOMP_RET_DATA;
Will Drewry171ba892012-04-17 14:48:58 -0500474 ret &= SECCOMP_RET_ACTION;
475 switch (ret) {
Will Drewry43ec8252012-02-15 20:45:54 -0600476 case SECCOMP_RET_ERRNO:
477 /* Set the low-order 16-bits as a errno. */
478 syscall_set_return_value(current, task_pt_regs(current),
479 -data, 0);
480 goto skip;
Will Drewry69537022012-02-09 12:01:37 -0600481 case SECCOMP_RET_TRAP:
482 /* Show the handler the original registers. */
483 syscall_rollback(current, task_pt_regs(current));
484 /* Let the filter pass back 16 bits of data. */
485 seccomp_send_sigsys(this_syscall, data);
486 goto skip;
Will Drewry4ca6e672012-02-09 12:08:39 -0600487 case SECCOMP_RET_TRACE:
488 /* Skip these calls if there is no tracer. */
Will Drewrybefe2872012-04-27 11:25:30 -0500489 if (!ptrace_event_enabled(current, PTRACE_EVENT_SECCOMP)) {
490 /* Make sure userspace sees an ENOSYS. */
491 syscall_set_return_value(current,
492 task_pt_regs(current), -ENOSYS, 0);
Will Drewry4ca6e672012-02-09 12:08:39 -0600493 goto skip;
Will Drewrybefe2872012-04-27 11:25:30 -0500494 }
Will Drewry4ca6e672012-02-09 12:08:39 -0600495 /* Allow the BPF to provide the event message */
496 ptrace_event(PTRACE_EVENT_SECCOMP, data);
497 /*
498 * The delivery of a fatal signal during event
499 * notification may silently skip tracer notification.
500 * Terminating the task now avoids executing a system
501 * call that may not be intended.
502 */
503 if (fatal_signal_pending(current))
504 break;
505 return 0;
Will Drewry43ec8252012-02-15 20:45:54 -0600506 case SECCOMP_RET_ALLOW:
507 return 0;
508 case SECCOMP_RET_KILL:
509 default:
510 break;
511 }
Will Drewry980e9202012-02-09 11:50:58 -0600512 exit_sig = SIGSYS;
513 break;
Will Drewry171ba892012-04-17 14:48:58 -0500514 }
Will Drewry980e9202012-02-09 11:50:58 -0600515#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 default:
517 BUG();
518 }
519
520#ifdef SECCOMP_DEBUG
521 dump_stack();
522#endif
Will Drewry43ec8252012-02-15 20:45:54 -0600523 audit_seccomp(this_syscall, exit_sig, ret);
Will Drewry980e9202012-02-09 11:50:58 -0600524 do_exit(exit_sig);
Will Drewry171ba892012-04-17 14:48:58 -0500525#ifdef CONFIG_SECCOMP_FILTER
Will Drewry43ec8252012-02-15 20:45:54 -0600526skip:
527 audit_seccomp(this_syscall, exit_sig, ret);
Will Drewry171ba892012-04-17 14:48:58 -0500528#endif
Will Drewry43ec8252012-02-15 20:45:54 -0600529 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530}
Andrea Arcangeli1d9d02f2007-07-15 23:41:32 -0700531
532long prctl_get_seccomp(void)
533{
534 return current->seccomp.mode;
535}
536
Will Drewry980e9202012-02-09 11:50:58 -0600537/**
Kees Cookbc4bd0f2014-06-25 15:55:25 -0700538 * seccomp_set_mode_strict: internal function for setting strict seccomp
Will Drewry980e9202012-02-09 11:50:58 -0600539 *
540 * Once current->seccomp.mode is non-zero, it may not be changed.
541 *
542 * Returns 0 on success or -EINVAL on failure.
543 */
Kees Cookbc4bd0f2014-06-25 15:55:25 -0700544static long seccomp_set_mode_strict(void)
Andrea Arcangeli1d9d02f2007-07-15 23:41:32 -0700545{
Kees Cookbc4bd0f2014-06-25 15:55:25 -0700546 const unsigned long seccomp_mode = SECCOMP_MODE_STRICT;
Will Drewry980e9202012-02-09 11:50:58 -0600547 long ret = -EINVAL;
Andrea Arcangeli1d9d02f2007-07-15 23:41:32 -0700548
Kees Cook880e1ab2014-06-27 15:18:48 -0700549 spin_lock_irq(&current->sighand->siglock);
550
Kees Cookc5c2ce72014-06-25 15:38:02 -0700551 if (!seccomp_may_assign_mode(seccomp_mode))
Andrea Arcangeli1d9d02f2007-07-15 23:41:32 -0700552 goto out;
553
Andrea Arcangelicf99aba2007-07-15 23:41:33 -0700554#ifdef TIF_NOTSC
Kees Cookbc4bd0f2014-06-25 15:55:25 -0700555 disable_TSC();
Andrea Arcangelicf99aba2007-07-15 23:41:33 -0700556#endif
Kees Cook38daf672014-06-27 15:01:35 -0700557 seccomp_assign_mode(current, seccomp_mode);
Kees Cookbc4bd0f2014-06-25 15:55:25 -0700558 ret = 0;
559
560out:
Kees Cook880e1ab2014-06-27 15:18:48 -0700561 spin_unlock_irq(&current->sighand->siglock);
Kees Cookbc4bd0f2014-06-25 15:55:25 -0700562
563 return ret;
564}
565
Will Drewry980e9202012-02-09 11:50:58 -0600566#ifdef CONFIG_SECCOMP_FILTER
Kees Cookbc4bd0f2014-06-25 15:55:25 -0700567/**
568 * seccomp_set_mode_filter: internal function for setting seccomp filter
Kees Cook95de3e52014-06-25 16:08:24 -0700569 * @flags: flags to change filter behavior
Kees Cookbc4bd0f2014-06-25 15:55:25 -0700570 * @filter: struct sock_fprog containing filter
571 *
572 * This function may be called repeatedly to install additional filters.
573 * Every filter successfully installed will be evaluated (in reverse order)
574 * for each system call the task makes.
575 *
576 * Once current->seccomp.mode is non-zero, it may not be changed.
577 *
578 * Returns 0 on success or -EINVAL on failure.
579 */
Kees Cook95de3e52014-06-25 16:08:24 -0700580static long seccomp_set_mode_filter(unsigned int flags,
581 const char __user *filter)
Kees Cookbc4bd0f2014-06-25 15:55:25 -0700582{
583 const unsigned long seccomp_mode = SECCOMP_MODE_FILTER;
Kees Cook42835bc2014-06-27 15:16:33 -0700584 struct seccomp_filter *prepared = NULL;
Kees Cookbc4bd0f2014-06-25 15:55:25 -0700585 long ret = -EINVAL;
586
Kees Cook95de3e52014-06-25 16:08:24 -0700587 /* Validate flags. */
588 if (flags != 0)
Kees Cook880e1ab2014-06-27 15:18:48 -0700589 return -EINVAL;
Kees Cook95de3e52014-06-25 16:08:24 -0700590
Kees Cook42835bc2014-06-27 15:16:33 -0700591 /* Prepare the new filter before holding any locks. */
592 prepared = seccomp_prepare_user_filter(filter);
593 if (IS_ERR(prepared))
594 return PTR_ERR(prepared);
595
Kees Cook880e1ab2014-06-27 15:18:48 -0700596 spin_lock_irq(&current->sighand->siglock);
597
Kees Cookbc4bd0f2014-06-25 15:55:25 -0700598 if (!seccomp_may_assign_mode(seccomp_mode))
Will Drewry980e9202012-02-09 11:50:58 -0600599 goto out;
Kees Cookbc4bd0f2014-06-25 15:55:25 -0700600
Kees Cook42835bc2014-06-27 15:16:33 -0700601 ret = seccomp_attach_filter(flags, prepared);
Kees Cookbc4bd0f2014-06-25 15:55:25 -0700602 if (ret)
603 goto out;
Kees Cook42835bc2014-06-27 15:16:33 -0700604 /* Do not free the successfully attached filter. */
605 prepared = NULL;
Andrea Arcangeli1d9d02f2007-07-15 23:41:32 -0700606
Kees Cook38daf672014-06-27 15:01:35 -0700607 seccomp_assign_mode(current, seccomp_mode);
Will Drewry980e9202012-02-09 11:50:58 -0600608out:
Kees Cook880e1ab2014-06-27 15:18:48 -0700609 spin_unlock_irq(&current->sighand->siglock);
Kees Cook42835bc2014-06-27 15:16:33 -0700610 seccomp_filter_free(prepared);
Andrea Arcangeli1d9d02f2007-07-15 23:41:32 -0700611 return ret;
612}
Kees Cookbc4bd0f2014-06-25 15:55:25 -0700613#else
Kees Cook95de3e52014-06-25 16:08:24 -0700614static inline long seccomp_set_mode_filter(unsigned int flags,
615 const char __user *filter)
Kees Cookbc4bd0f2014-06-25 15:55:25 -0700616{
617 return -EINVAL;
618}
619#endif
Kees Cook2d5f6982014-05-21 15:02:11 -0700620
Kees Cook95de3e52014-06-25 16:08:24 -0700621/* Common entry point for both prctl and syscall. */
622static long do_seccomp(unsigned int op, unsigned int flags,
623 const char __user *uargs)
624{
625 switch (op) {
626 case SECCOMP_SET_MODE_STRICT:
627 if (flags != 0 || uargs != NULL)
628 return -EINVAL;
629 return seccomp_set_mode_strict();
630 case SECCOMP_SET_MODE_FILTER:
631 return seccomp_set_mode_filter(flags, uargs);
632 default:
633 return -EINVAL;
634 }
635}
636
637SYSCALL_DEFINE3(seccomp, unsigned int, op, unsigned int, flags,
638 const char __user *, uargs)
639{
640 return do_seccomp(op, flags, uargs);
641}
642
Kees Cook2d5f6982014-05-21 15:02:11 -0700643/**
644 * prctl_set_seccomp: configures current->seccomp.mode
645 * @seccomp_mode: requested mode to use
646 * @filter: optional struct sock_fprog for use with SECCOMP_MODE_FILTER
647 *
648 * Returns 0 on success or -EINVAL on failure.
649 */
650long prctl_set_seccomp(unsigned long seccomp_mode, char __user *filter)
651{
Kees Cook95de3e52014-06-25 16:08:24 -0700652 unsigned int op;
653 char __user *uargs;
654
Kees Cookbc4bd0f2014-06-25 15:55:25 -0700655 switch (seccomp_mode) {
656 case SECCOMP_MODE_STRICT:
Kees Cook95de3e52014-06-25 16:08:24 -0700657 op = SECCOMP_SET_MODE_STRICT;
658 /*
659 * Setting strict mode through prctl always ignored filter,
660 * so make sure it is always NULL here to pass the internal
661 * check in do_seccomp().
662 */
663 uargs = NULL;
664 break;
Kees Cookbc4bd0f2014-06-25 15:55:25 -0700665 case SECCOMP_MODE_FILTER:
Kees Cook95de3e52014-06-25 16:08:24 -0700666 op = SECCOMP_SET_MODE_FILTER;
667 uargs = filter;
668 break;
Kees Cookbc4bd0f2014-06-25 15:55:25 -0700669 default:
670 return -EINVAL;
671 }
Kees Cook95de3e52014-06-25 16:08:24 -0700672
673 /* prctl interface doesn't have flags, so they are always zero. */
674 return do_seccomp(op, 0, uargs);
Kees Cook2d5f6982014-05-21 15:02:11 -0700675}