1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
/*
* seccomp example with syscall reporting
*
* Copyright (c) 2012 The Chromium OS Authors <chromium-os-dev@chromium.org>
* Authors:
* Kees Cook <keescook@chromium.org>
* Will Drewry <wad@chromium.org>
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#define _GNU_SOURCE 1
#include <stddef.h>
#include <stdlib.h>
#include <unistd.h>
#include <libubox/utils.h>
#include <libubox/blobmsg.h>
#include <libubox/blobmsg_json.h>
#include "seccomp-bpf.h"
#include "seccomp.h"
#include "../syscall-names.h"
#include "seccomp-syscalls-helpers.h"
int install_syscall_filter(const char *argv, const char *file)
{
enum {
SECCOMP_WHITELIST,
SECCOMP_POLICY,
__SECCOMP_MAX
};
static const struct blobmsg_policy policy[__SECCOMP_MAX] = {
[SECCOMP_WHITELIST] = { .name = "whitelist", .type = BLOBMSG_TYPE_ARRAY },
[SECCOMP_POLICY] = { .name = "policy", .type = BLOBMSG_TYPE_INT32 },
};
struct blob_buf b = { 0 };
struct blob_attr *tb[__SECCOMP_MAX];
struct blob_attr *cur;
int rem;
struct sock_filter *filter;
struct sock_fprog prog = { 0 };
int sz = 5, idx = 0, default_policy = 0;
INFO("%s: setting up syscall filter\n", argv);
blob_buf_init(&b, 0);
if (!blobmsg_add_json_from_file(&b, file)) {
ERROR("%s: failed to load %s\n", argv, file);
return -1;
}
blobmsg_parse(policy, __SECCOMP_MAX, tb, blob_data(b.head), blob_len(b.head));
if (!tb[SECCOMP_WHITELIST]) {
ERROR("%s: %s is missing the syscall table\n", argv, file);
return -1;
}
if (tb[SECCOMP_POLICY])
default_policy = blobmsg_get_u32(tb[SECCOMP_POLICY]);
blobmsg_for_each_attr(cur, tb[SECCOMP_WHITELIST], rem)
sz += 2;
filter = calloc(sz, sizeof(struct sock_filter));
if (!filter) {
ERROR("failed to allocate filter memory\n");
return -1;
}
/* validate arch */
set_filter(&filter[idx++], BPF_LD + BPF_W + BPF_ABS, 0, 0, arch_nr);
set_filter(&filter[idx++], BPF_JMP + BPF_JEQ + BPF_K, 1, 0, ARCH_NR);
set_filter(&filter[idx++], BPF_RET + BPF_K, 0, 0, SECCOMP_RET_KILL);
/* get syscall */
set_filter(&filter[idx++], BPF_LD + BPF_W + BPF_ABS, 0, 0, syscall_nr);
blobmsg_for_each_attr(cur, tb[SECCOMP_WHITELIST], rem) {
char *name = blobmsg_get_string(cur);
int nr;
if (!name) {
INFO("%s: invalid syscall name\n", argv);
continue;
}
nr = find_syscall(name);
if (nr == -1) {
INFO("%s: unknown syscall %s\n", argv, name);
continue;
}
/* add whitelist */
set_filter(&filter[idx++], BPF_JMP + BPF_JEQ + BPF_K, 0, 1, nr);
set_filter(&filter[idx++], BPF_RET + BPF_K, 0, 0, SECCOMP_RET_ALLOW);
}
if (default_policy)
/* notify tracer; without tracer return -1 and set errno to ENOSYS */
set_filter(&filter[idx], BPF_RET + BPF_K, 0, 0, SECCOMP_RET_TRACE);
else
/* kill the process */
set_filter(&filter[idx], BPF_RET + BPF_K, 0, 0, SECCOMP_RET_KILL);
if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0)) {
ERROR("%s: prctl(PR_SET_NO_NEW_PRIVS) failed: %m\n", argv);
goto errout;
}
prog.len = (unsigned short) idx + 1;
prog.filter = filter;
if (prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &prog)) {
ERROR("%s: prctl(PR_SET_SECCOMP) failed: %m\n", argv);
goto errout;
}
return 0;
errout:
free(filter);
return errno;
}
|