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 : #if defined(__linux__)
6 :
7 : #include "../../../../src/util/fd_util_base.h"
8 : #include <linux/audit.h>
9 : #include <linux/capability.h>
10 : #include <linux/filter.h>
11 : #include <linux/seccomp.h>
12 : #include <linux/bpf.h>
13 : #include <linux/unistd.h>
14 : #include <sys/syscall.h>
15 : #include <signal.h>
16 : #include <stddef.h>
17 :
18 : #if defined(__i386__)
19 : # define ARCH_NR AUDIT_ARCH_I386
20 : #elif defined(__x86_64__)
21 : # define ARCH_NR AUDIT_ARCH_X86_64
22 : #elif defined(__aarch64__)
23 : # define ARCH_NR AUDIT_ARCH_AARCH64
24 : #else
25 : # error "Target architecture is unsupported by seccomp."
26 : #endif
27 :
28 : #define FD_SECCOMP_ARG_LO_OFFSET(argno) ( offsetof( struct seccomp_data, args[(argno)] ) )
29 : #define FD_SECCOMP_ARG_HI_OFFSET(argno) ( offsetof( struct seccomp_data, args[(argno)] ) + 4U )
30 :
31 : #define FD_SECCOMP_ARG_LO(x) ((uint)(((ulong)(uint)(int)(x) ) & 0xffffffffUL))
32 : #define FD_SECCOMP_ARG_HI(x) ((uint)(((ulong)(x) >> 32) & 0xffffffffUL))
33 :
34 : static const uint sock_filter_policy_test_sandbox_instr_cnt = 18;
35 :
36 0 : static void populate_sock_filter_policy_test_sandbox( ulong out_cnt, struct sock_filter out[ static 18 ] ) {
37 0 : FD_TEST( out_cnt >= 18 );
38 0 : struct sock_filter filter[18] = {
39 : /* validate architecture */
40 0 : BPF_STMT( BPF_LD | BPF_W | BPF_ABS, ( offsetof( struct seccomp_data, arch ) )),
41 0 : BPF_JUMP( BPF_JMP | BPF_JEQ | BPF_K, ARCH_NR, 0, /* RET_KILL_PROCESS */ 4 ),
42 : /* load syscall number */
43 0 : BPF_STMT( BPF_LD | BPF_W | BPF_ABS, ( offsetof( struct seccomp_data, nr ) )),
44 : /* check write */
45 0 : BPF_JUMP( BPF_JMP | BPF_JEQ | BPF_K, SYS_write, /* check_write */ 4, 0 ),
46 : /* check fsync */
47 0 : BPF_JUMP( BPF_JMP | BPF_JEQ | BPF_K, SYS_fsync, /* check_fsync */ 9, 0 ),
48 : /* allow exit_group */
49 0 : BPF_JUMP( BPF_JMP | BPF_JEQ | BPF_K, SYS_exit_group, /* RET_ALLOW */ 1, 0 ),
50 : // RET_KILL_PROCESS:
51 : /* default deny */
52 0 : BPF_STMT( BPF_RET | BPF_K, SECCOMP_RET_KILL_PROCESS ),
53 : // RET_ALLOW:
54 : /* allow */
55 0 : BPF_STMT( BPF_RET | BPF_K, SECCOMP_RET_ALLOW ),
56 : // check_write:
57 : /* arg 0 low 32 bits */
58 0 : BPF_STMT( BPF_LD | BPF_W | BPF_ABS, FD_SECCOMP_ARG_LO_OFFSET(0)),
59 0 : BPF_JUMP( BPF_JMP | BPF_JEQ | BPF_K, 0x00000002U, /* write_ALLOW */ 3, /* or_1 */ 0 ),
60 : // or_1:
61 : /* arg 0 low 32 bits */
62 0 : BPF_STMT( BPF_LD | BPF_W | BPF_ABS, FD_SECCOMP_ARG_LO_OFFSET(0)),
63 0 : BPF_JUMP( BPF_JMP | BPF_JEQ | BPF_K, 0x00000003U, /* write_ALLOW */ 1, /* write_KILL */ 0 ),
64 : // write_KILL:
65 0 : BPF_STMT( BPF_RET | BPF_K, SECCOMP_RET_KILL_PROCESS ),
66 : // write_ALLOW:
67 0 : BPF_STMT( BPF_RET | BPF_K, SECCOMP_RET_ALLOW ),
68 : // check_fsync:
69 : /* arg 0 low 32 bits */
70 0 : BPF_STMT( BPF_LD | BPF_W | BPF_ABS, FD_SECCOMP_ARG_LO_OFFSET(0)),
71 0 : BPF_JUMP( BPF_JMP | BPF_JEQ | BPF_K, 0x00000003U, /* fsync_ALLOW */ 1, /* fsync_KILL */ 0 ),
72 : // fsync_KILL:
73 0 : BPF_STMT( BPF_RET | BPF_K, SECCOMP_RET_KILL_PROCESS ),
74 : // fsync_ALLOW:
75 : BPF_STMT( BPF_RET | BPF_K, SECCOMP_RET_ALLOW ),
76 0 : };
77 0 : fd_memcpy( out, filter, sizeof( filter ) );
78 0 : }
79 :
80 : #endif /* defined(__linux__) */
81 :
82 : #endif /* HEADER_fd_src_util_sandbox_generated_test_sandbox_seccomp_h */
|