Line data Source code
1 : /* THIS FILE WAS GENERATED BY generate_filters.py. DO NOT EDIT BY HAND! */
2 : #ifndef HEADER_fd_src_util_sandbox_generated_test_sandbox_seccomp_h
3 : #define HEADER_fd_src_util_sandbox_generated_test_sandbox_seccomp_h
4 :
5 : #include "../../../../src/util/fd_util_base.h"
6 : #include <linux/audit.h>
7 : #include <linux/capability.h>
8 : #include <linux/filter.h>
9 : #include <linux/seccomp.h>
10 : #include <linux/bpf.h>
11 : #include <sys/syscall.h>
12 : #include <signal.h>
13 : #include <stddef.h>
14 :
15 : #if defined(__i386__)
16 : # define ARCH_NR AUDIT_ARCH_I386
17 : #elif defined(__x86_64__)
18 : # define ARCH_NR AUDIT_ARCH_X86_64
19 : #elif defined(__aarch64__)
20 : # define ARCH_NR AUDIT_ARCH_AARCH64
21 : #else
22 : # error "Target architecture is unsupported by seccomp."
23 : #endif
24 : static const unsigned int sock_filter_policy_test_sandbox_instr_cnt = 15;
25 :
26 0 : static void populate_sock_filter_policy_test_sandbox( ulong out_cnt, struct sock_filter * out ) {
27 0 : FD_TEST( out_cnt >= 15 );
28 0 : struct sock_filter filter[15] = {
29 : /* Check: Jump to RET_KILL_PROCESS if the script's arch != the runtime arch */
30 0 : BPF_STMT( BPF_LD | BPF_W | BPF_ABS, ( offsetof( struct seccomp_data, arch ) ) ),
31 0 : BPF_JUMP( BPF_JMP | BPF_JEQ | BPF_K, ARCH_NR, 0, /* RET_KILL_PROCESS */ 11 ),
32 : /* loading syscall number in accumulator */
33 0 : BPF_STMT( BPF_LD | BPF_W | BPF_ABS, ( offsetof( struct seccomp_data, nr ) ) ),
34 : /* allow write based on expression */
35 0 : BPF_JUMP( BPF_JMP | BPF_JEQ | BPF_K, SYS_write, /* check_write */ 3, 0 ),
36 : /* allow fsync based on expression */
37 0 : BPF_JUMP( BPF_JMP | BPF_JEQ | BPF_K, SYS_fsync, /* check_fsync */ 6, 0 ),
38 : /* simply allow exit_group */
39 0 : BPF_JUMP( BPF_JMP | BPF_JEQ | BPF_K, SYS_exit_group, /* RET_ALLOW */ 8, 0 ),
40 : /* none of the syscalls matched */
41 0 : { BPF_JMP | BPF_JA, 0, 0, /* RET_KILL_PROCESS */ 6 },
42 : // check_write:
43 : /* load syscall argument 0 in accumulator */
44 0 : BPF_STMT( BPF_LD | BPF_W | BPF_ABS, offsetof(struct seccomp_data, args[0])),
45 0 : BPF_JUMP( BPF_JMP | BPF_JEQ | BPF_K, 2, /* RET_ALLOW */ 5, /* lbl_1 */ 0 ),
46 : // lbl_1:
47 : /* load syscall argument 0 in accumulator */
48 0 : BPF_STMT( BPF_LD | BPF_W | BPF_ABS, offsetof(struct seccomp_data, args[0])),
49 0 : BPF_JUMP( BPF_JMP | BPF_JEQ | BPF_K, 3, /* RET_ALLOW */ 3, /* RET_KILL_PROCESS */ 2 ),
50 : // check_fsync:
51 : /* load syscall argument 0 in accumulator */
52 0 : BPF_STMT( BPF_LD | BPF_W | BPF_ABS, offsetof(struct seccomp_data, args[0])),
53 0 : BPF_JUMP( BPF_JMP | BPF_JEQ | BPF_K, 3, /* RET_ALLOW */ 1, /* RET_KILL_PROCESS */ 0 ),
54 : // RET_KILL_PROCESS:
55 : /* KILL_PROCESS is placed before ALLOW since it's the fallthrough case. */
56 0 : BPF_STMT( BPF_RET | BPF_K, SECCOMP_RET_KILL_PROCESS ),
57 : // RET_ALLOW:
58 : /* ALLOW has to be reached by jumping */
59 0 : BPF_STMT( BPF_RET | BPF_K, SECCOMP_RET_ALLOW ),
60 0 : };
61 0 : fd_memcpy( out, filter, sizeof( filter ) );
62 0 : }
63 :
64 : #endif
|