seccomp: split mode setting routines
[firefly-linux-kernel-4.4.55.git] / kernel / seccomp.c
1 /*
2  * linux/kernel/seccomp.c
3  *
4  * Copyright 2004-2005  Andrea Arcangeli <andrea@cpushare.com>
5  *
6  * 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.
14  */
15
16 #include <linux/atomic.h>
17 #include <linux/audit.h>
18 #include <linux/compat.h>
19 #include <linux/sched.h>
20 #include <linux/seccomp.h>
21
22 /* #define SECCOMP_DEBUG 1 */
23
24 #ifdef CONFIG_SECCOMP_FILTER
25 #include <asm/syscall.h>
26 #include <linux/filter.h>
27 #include <linux/ptrace.h>
28 #include <linux/security.h>
29 #include <linux/slab.h>
30 #include <linux/tracehook.h>
31 #include <linux/uaccess.h>
32
33 /**
34  * struct seccomp_filter - container for seccomp BPF programs
35  *
36  * @usage: reference count to manage the object lifetime.
37  *         get/put helpers should be used when accessing an instance
38  *         outside of a lifetime-guarded section.  In general, this
39  *         is only needed for handling filters shared across tasks.
40  * @prev: points to a previously installed, or inherited, filter
41  * @len: the number of instructions in the program
42  * @insns: the BPF program instructions to evaluate
43  *
44  * seccomp_filter objects are organized in a tree linked via the @prev
45  * pointer.  For any task, it appears to be a singly-linked list starting
46  * with current->seccomp.filter, the most recently attached or inherited filter.
47  * However, multiple filters may share a @prev node, by way of fork(), which
48  * results in a unidirectional tree existing in memory.  This is similar to
49  * how namespaces work.
50  *
51  * seccomp_filter objects should never be modified after being attached
52  * to a task_struct (other than @usage).
53  */
54 struct seccomp_filter {
55         atomic_t usage;
56         struct seccomp_filter *prev;
57         unsigned short len;  /* Instruction count */
58         struct sock_filter insns[];
59 };
60
61 /* Limit any path through the tree to 256KB worth of instructions. */
62 #define MAX_INSNS_PER_PATH ((1 << 18) / sizeof(struct sock_filter))
63
64 /**
65  * get_u32 - returns a u32 offset into data
66  * @data: a unsigned 64 bit value
67  * @index: 0 or 1 to return the first or second 32-bits
68  *
69  * This inline exists to hide the length of unsigned long.  If a 32-bit
70  * unsigned long is passed in, it will be extended and the top 32-bits will be
71  * 0. If it is a 64-bit unsigned long, then whatever data is resident will be
72  * properly returned.
73  *
74  * Endianness is explicitly ignored and left for BPF program authors to manage
75  * as per the specific architecture.
76  */
77 static inline u32 get_u32(u64 data, int index)
78 {
79         return ((u32 *)&data)[index];
80 }
81
82 /* Helper for bpf_load below. */
83 #define BPF_DATA(_name) offsetof(struct seccomp_data, _name)
84 /**
85  * bpf_load: checks and returns a pointer to the requested offset
86  * @off: offset into struct seccomp_data to load from
87  *
88  * Returns the requested 32-bits of data.
89  * seccomp_check_filter() should assure that @off is 32-bit aligned
90  * and not out of bounds.  Failure to do so is a BUG.
91  */
92 u32 seccomp_bpf_load(int off)
93 {
94         struct pt_regs *regs = task_pt_regs(current);
95         if (off == BPF_DATA(nr))
96                 return syscall_get_nr(current, regs);
97         if (off == BPF_DATA(arch))
98                 return syscall_get_arch(current, regs);
99         if (off >= BPF_DATA(args[0]) && off < BPF_DATA(args[6])) {
100                 unsigned long value;
101                 int arg = (off - BPF_DATA(args[0])) / sizeof(u64);
102                 int index = !!(off % sizeof(u64));
103                 syscall_get_arguments(current, regs, arg, 1, &value);
104                 return get_u32(value, index);
105         }
106         if (off == BPF_DATA(instruction_pointer))
107                 return get_u32(KSTK_EIP(current), 0);
108         if (off == BPF_DATA(instruction_pointer) + sizeof(u32))
109                 return get_u32(KSTK_EIP(current), 1);
110         /* seccomp_check_filter should make this impossible. */
111         BUG();
112 }
113
114 /**
115  *      seccomp_check_filter - verify seccomp filter code
116  *      @filter: filter to verify
117  *      @flen: length of filter
118  *
119  * Takes a previously checked filter (by sk_chk_filter) and
120  * redirects all filter code that loads struct sk_buff data
121  * and related data through seccomp_bpf_load.  It also
122  * enforces length and alignment checking of those loads.
123  *
124  * Returns 0 if the rule set is legal or -EINVAL if not.
125  */
126 static int seccomp_check_filter(struct sock_filter *filter, unsigned int flen)
127 {
128         int pc;
129         for (pc = 0; pc < flen; pc++) {
130                 struct sock_filter *ftest = &filter[pc];
131                 u16 code = ftest->code;
132                 u32 k = ftest->k;
133
134                 switch (code) {
135                 case BPF_S_LD_W_ABS:
136                         ftest->code = BPF_S_ANC_SECCOMP_LD_W;
137                         /* 32-bit aligned and not out of bounds. */
138                         if (k >= sizeof(struct seccomp_data) || k & 3)
139                                 return -EINVAL;
140                         continue;
141                 case BPF_S_LD_W_LEN:
142                         ftest->code = BPF_S_LD_IMM;
143                         ftest->k = sizeof(struct seccomp_data);
144                         continue;
145                 case BPF_S_LDX_W_LEN:
146                         ftest->code = BPF_S_LDX_IMM;
147                         ftest->k = sizeof(struct seccomp_data);
148                         continue;
149                 /* Explicitly include allowed calls. */
150                 case BPF_S_RET_K:
151                 case BPF_S_RET_A:
152                 case BPF_S_ALU_ADD_K:
153                 case BPF_S_ALU_ADD_X:
154                 case BPF_S_ALU_SUB_K:
155                 case BPF_S_ALU_SUB_X:
156                 case BPF_S_ALU_MUL_K:
157                 case BPF_S_ALU_MUL_X:
158                 case BPF_S_ALU_DIV_X:
159                 case BPF_S_ALU_AND_K:
160                 case BPF_S_ALU_AND_X:
161                 case BPF_S_ALU_OR_K:
162                 case BPF_S_ALU_OR_X:
163                 case BPF_S_ALU_XOR_K:
164                 case BPF_S_ALU_XOR_X:
165                 case BPF_S_ALU_LSH_K:
166                 case BPF_S_ALU_LSH_X:
167                 case BPF_S_ALU_RSH_K:
168                 case BPF_S_ALU_RSH_X:
169                 case BPF_S_ALU_NEG:
170                 case BPF_S_LD_IMM:
171                 case BPF_S_LDX_IMM:
172                 case BPF_S_MISC_TAX:
173                 case BPF_S_MISC_TXA:
174                 case BPF_S_ALU_DIV_K:
175                 case BPF_S_LD_MEM:
176                 case BPF_S_LDX_MEM:
177                 case BPF_S_ST:
178                 case BPF_S_STX:
179                 case BPF_S_JMP_JA:
180                 case BPF_S_JMP_JEQ_K:
181                 case BPF_S_JMP_JEQ_X:
182                 case BPF_S_JMP_JGE_K:
183                 case BPF_S_JMP_JGE_X:
184                 case BPF_S_JMP_JGT_K:
185                 case BPF_S_JMP_JGT_X:
186                 case BPF_S_JMP_JSET_K:
187                 case BPF_S_JMP_JSET_X:
188                         continue;
189                 default:
190                         return -EINVAL;
191                 }
192         }
193         return 0;
194 }
195
196 /**
197  * seccomp_run_filters - evaluates all seccomp filters against @syscall
198  * @syscall: number of the current system call
199  *
200  * Returns valid seccomp BPF response codes.
201  */
202 static u32 seccomp_run_filters(int syscall)
203 {
204         struct seccomp_filter *f;
205         u32 ret = SECCOMP_RET_ALLOW;
206
207         /* Ensure unexpected behavior doesn't result in failing open. */
208         if (WARN_ON(current->seccomp.filter == NULL))
209                 return SECCOMP_RET_KILL;
210
211         /*
212          * All filters in the list are evaluated and the lowest BPF return
213          * value always takes priority (ignoring the DATA).
214          */
215         for (f = current->seccomp.filter; f; f = f->prev) {
216                 u32 cur_ret = sk_run_filter(NULL, f->insns);
217                 if ((cur_ret & SECCOMP_RET_ACTION) < (ret & SECCOMP_RET_ACTION))
218                         ret = cur_ret;
219         }
220         return ret;
221 }
222 #endif /* CONFIG_SECCOMP_FILTER */
223
224 static inline bool seccomp_may_assign_mode(unsigned long seccomp_mode)
225 {
226         if (current->seccomp.mode && current->seccomp.mode != seccomp_mode)
227                 return false;
228
229         return true;
230 }
231
232 static inline void seccomp_assign_mode(unsigned long seccomp_mode)
233 {
234         current->seccomp.mode = seccomp_mode;
235         set_tsk_thread_flag(current, TIF_SECCOMP);
236 }
237
238 #ifdef CONFIG_SECCOMP_FILTER
239 /**
240  * seccomp_attach_filter: Attaches a seccomp filter to current.
241  * @fprog: BPF program to install
242  *
243  * Returns 0 on success or an errno on failure.
244  */
245 static long seccomp_attach_filter(struct sock_fprog *fprog)
246 {
247         struct seccomp_filter *filter;
248         unsigned long fp_size = fprog->len * sizeof(struct sock_filter);
249         unsigned long total_insns = fprog->len;
250         long ret;
251
252         if (fprog->len == 0 || fprog->len > BPF_MAXINSNS)
253                 return -EINVAL;
254
255         for (filter = current->seccomp.filter; filter; filter = filter->prev)
256                 total_insns += filter->len + 4;  /* include a 4 instr penalty */
257         if (total_insns > MAX_INSNS_PER_PATH)
258                 return -ENOMEM;
259
260         /*
261          * Installing a seccomp filter requires that the task have
262          * CAP_SYS_ADMIN in its namespace or be running with no_new_privs.
263          * This avoids scenarios where unprivileged tasks can affect the
264          * behavior of privileged children.
265          */
266         if (!current->no_new_privs &&
267             security_capable_noaudit(current_cred(), current_user_ns(),
268                                      CAP_SYS_ADMIN) != 0)
269                 return -EACCES;
270
271         /* Allocate a new seccomp_filter */
272         filter = kzalloc(sizeof(struct seccomp_filter) + fp_size,
273                          GFP_KERNEL|__GFP_NOWARN);
274         if (!filter)
275                 return -ENOMEM;
276         atomic_set(&filter->usage, 1);
277         filter->len = fprog->len;
278
279         /* Copy the instructions from fprog. */
280         ret = -EFAULT;
281         if (copy_from_user(filter->insns, fprog->filter, fp_size))
282                 goto fail;
283
284         /* Check and rewrite the fprog via the skb checker */
285         ret = sk_chk_filter(filter->insns, filter->len);
286         if (ret)
287                 goto fail;
288
289         /* Check and rewrite the fprog for seccomp use */
290         ret = seccomp_check_filter(filter->insns, filter->len);
291         if (ret)
292                 goto free_prog;
293
294         /* Allocate a new seccomp_filter */
295         ret = -ENOMEM;
296         filter = kzalloc(sizeof(struct seccomp_filter) +
297                          sizeof(struct sock_filter_int) * new_len,
298                          GFP_KERNEL|__GFP_NOWARN);
299         if (!filter)
300                 goto free_prog;
301
302         ret = sk_convert_filter(fp, fprog->len, filter->insnsi, &new_len);
303         if (ret)
304                 goto free_filter;
305         kfree(fp);
306
307         atomic_set(&filter->usage, 1);
308         filter->len = new_len;
309
310         /*
311          * If there is an existing filter, make it the prev and don't drop its
312          * task reference.
313          */
314         filter->prev = current->seccomp.filter;
315         current->seccomp.filter = filter;
316         return 0;
317 fail:
318         kfree(filter);
319         return ret;
320 }
321
322 /**
323  * seccomp_attach_user_filter - attaches a user-supplied sock_fprog
324  * @user_filter: pointer to the user data containing a sock_fprog.
325  *
326  * Returns 0 on success and non-zero otherwise.
327  */
328 long seccomp_attach_user_filter(char __user *user_filter)
329 {
330         struct sock_fprog fprog;
331         long ret = -EFAULT;
332
333 #ifdef CONFIG_COMPAT
334         if (is_compat_task()) {
335                 struct compat_sock_fprog fprog32;
336                 if (copy_from_user(&fprog32, user_filter, sizeof(fprog32)))
337                         goto out;
338                 fprog.len = fprog32.len;
339                 fprog.filter = compat_ptr(fprog32.filter);
340         } else /* falls through to the if below. */
341 #endif
342         if (copy_from_user(&fprog, user_filter, sizeof(fprog)))
343                 goto out;
344         ret = seccomp_attach_filter(&fprog);
345 out:
346         return ret;
347 }
348
349 /* get_seccomp_filter - increments the reference count of the filter on @tsk */
350 void get_seccomp_filter(struct task_struct *tsk)
351 {
352         struct seccomp_filter *orig = tsk->seccomp.filter;
353         if (!orig)
354                 return;
355         /* Reference count is bounded by the number of total processes. */
356         atomic_inc(&orig->usage);
357 }
358
359 /* put_seccomp_filter - decrements the ref count of tsk->seccomp.filter */
360 void put_seccomp_filter(struct task_struct *tsk)
361 {
362         struct seccomp_filter *orig = tsk->seccomp.filter;
363         /* Clean up single-reference branches iteratively. */
364         while (orig && atomic_dec_and_test(&orig->usage)) {
365                 struct seccomp_filter *freeme = orig;
366                 orig = orig->prev;
367                 kfree(freeme);
368         }
369 }
370
371 /**
372  * seccomp_send_sigsys - signals the task to allow in-process syscall emulation
373  * @syscall: syscall number to send to userland
374  * @reason: filter-supplied reason code to send to userland (via si_errno)
375  *
376  * Forces a SIGSYS with a code of SYS_SECCOMP and related sigsys info.
377  */
378 static void seccomp_send_sigsys(int syscall, int reason)
379 {
380         struct siginfo info;
381         memset(&info, 0, sizeof(info));
382         info.si_signo = SIGSYS;
383         info.si_code = SYS_SECCOMP;
384         info.si_call_addr = (void __user *)KSTK_EIP(current);
385         info.si_errno = reason;
386         info.si_arch = syscall_get_arch(current, task_pt_regs(current));
387         info.si_syscall = syscall;
388         force_sig_info(SIGSYS, &info, current);
389 }
390 #endif  /* CONFIG_SECCOMP_FILTER */
391
392 /*
393  * Secure computing mode 1 allows only read/write/exit/sigreturn.
394  * To be fully secure this must be combined with rlimit
395  * to limit the stack allocations too.
396  */
397 static int mode1_syscalls[] = {
398         __NR_seccomp_read, __NR_seccomp_write, __NR_seccomp_exit, __NR_seccomp_sigreturn,
399         0, /* null terminated */
400 };
401
402 #ifdef CONFIG_COMPAT
403 static int mode1_syscalls_32[] = {
404         __NR_seccomp_read_32, __NR_seccomp_write_32, __NR_seccomp_exit_32, __NR_seccomp_sigreturn_32,
405         0, /* null terminated */
406 };
407 #endif
408
409 int __secure_computing(int this_syscall)
410 {
411         int mode = current->seccomp.mode;
412         int exit_sig = 0;
413         int *syscall;
414         u32 ret;
415
416         switch (mode) {
417         case SECCOMP_MODE_STRICT:
418                 syscall = mode1_syscalls;
419 #ifdef CONFIG_COMPAT
420                 if (is_compat_task())
421                         syscall = mode1_syscalls_32;
422 #endif
423                 do {
424                         if (*syscall == this_syscall)
425                                 return 0;
426                 } while (*++syscall);
427                 exit_sig = SIGKILL;
428                 ret = SECCOMP_RET_KILL;
429                 break;
430 #ifdef CONFIG_SECCOMP_FILTER
431         case SECCOMP_MODE_FILTER: {
432                 int data;
433                 struct pt_regs *regs = task_pt_regs(current);
434                 ret = seccomp_run_filters(this_syscall);
435                 data = ret & SECCOMP_RET_DATA;
436                 ret &= SECCOMP_RET_ACTION;
437                 switch (ret) {
438                 case SECCOMP_RET_ERRNO:
439                         /* Set the low-order 16-bits as a errno. */
440                         syscall_set_return_value(current, regs,
441                                                  -data, 0);
442                         goto skip;
443                 case SECCOMP_RET_TRAP:
444                         /* Show the handler the original registers. */
445                         syscall_rollback(current, regs);
446                         /* Let the filter pass back 16 bits of data. */
447                         seccomp_send_sigsys(this_syscall, data);
448                         goto skip;
449                 case SECCOMP_RET_TRACE:
450                         /* Skip these calls if there is no tracer. */
451                         if (!ptrace_event_enabled(current, PTRACE_EVENT_SECCOMP)) {
452                                 syscall_set_return_value(current, regs,
453                                                          -ENOSYS, 0);
454                                 goto skip;
455                         }
456                         /* Allow the BPF to provide the event message */
457                         ptrace_event(PTRACE_EVENT_SECCOMP, data);
458                         /*
459                          * The delivery of a fatal signal during event
460                          * notification may silently skip tracer notification.
461                          * Terminating the task now avoids executing a system
462                          * call that may not be intended.
463                          */
464                         if (fatal_signal_pending(current))
465                                 break;
466                         if (syscall_get_nr(current, regs) < 0)
467                                 goto skip;  /* Explicit request to skip. */
468
469                         return 0;
470                 case SECCOMP_RET_ALLOW:
471                         return 0;
472                 case SECCOMP_RET_KILL:
473                 default:
474                         break;
475                 }
476                 exit_sig = SIGSYS;
477                 break;
478         }
479 #endif
480         default:
481                 BUG();
482         }
483
484 #ifdef SECCOMP_DEBUG
485         dump_stack();
486 #endif
487         audit_seccomp(this_syscall, exit_sig, ret);
488         do_exit(exit_sig);
489 #ifdef CONFIG_SECCOMP_FILTER
490 skip:
491         audit_seccomp(this_syscall, exit_sig, ret);
492 #endif
493         return -1;
494 }
495
496 long prctl_get_seccomp(void)
497 {
498         return current->seccomp.mode;
499 }
500
501 /**
502  * seccomp_set_mode_strict: internal function for setting strict seccomp
503  *
504  * Once current->seccomp.mode is non-zero, it may not be changed.
505  *
506  * Returns 0 on success or -EINVAL on failure.
507  */
508 static long seccomp_set_mode_strict(void)
509 {
510         const unsigned long seccomp_mode = SECCOMP_MODE_STRICT;
511         long ret = -EINVAL;
512
513         if (!seccomp_may_assign_mode(seccomp_mode))
514                 goto out;
515
516 #ifdef TIF_NOTSC
517         disable_TSC();
518 #endif
519         seccomp_assign_mode(seccomp_mode);
520         ret = 0;
521
522 out:
523
524         return ret;
525 }
526
527 #ifdef CONFIG_SECCOMP_FILTER
528 /**
529  * seccomp_set_mode_filter: internal function for setting seccomp filter
530  * @filter: struct sock_fprog containing filter
531  *
532  * This function may be called repeatedly to install additional filters.
533  * Every filter successfully installed will be evaluated (in reverse order)
534  * for each system call the task makes.
535  *
536  * Once current->seccomp.mode is non-zero, it may not be changed.
537  *
538  * Returns 0 on success or -EINVAL on failure.
539  */
540 static long seccomp_set_mode_filter(char __user *filter)
541 {
542         const unsigned long seccomp_mode = SECCOMP_MODE_FILTER;
543         long ret = -EINVAL;
544
545         if (!seccomp_may_assign_mode(seccomp_mode))
546                 goto out;
547
548         ret = seccomp_attach_user_filter(filter);
549         if (ret)
550                 goto out;
551
552         seccomp_assign_mode(seccomp_mode);
553 out:
554         return ret;
555 }
556 #else
557 static inline long seccomp_set_mode_filter(char __user *filter)
558 {
559         return -EINVAL;
560 }
561 #endif
562
563 /**
564  * prctl_set_seccomp: configures current->seccomp.mode
565  * @seccomp_mode: requested mode to use
566  * @filter: optional struct sock_fprog for use with SECCOMP_MODE_FILTER
567  *
568  * Returns 0 on success or -EINVAL on failure.
569  */
570 long prctl_set_seccomp(unsigned long seccomp_mode, char __user *filter)
571 {
572         switch (seccomp_mode) {
573         case SECCOMP_MODE_STRICT:
574                 return seccomp_set_mode_strict();
575         case SECCOMP_MODE_FILTER:
576                 return seccomp_set_mode_filter(filter);
577         default:
578                 return -EINVAL;
579         }
580 }