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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
|
// Copyright 2018 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package seccomp
import (
"bytes"
"fmt"
"io"
"io/ioutil"
"math"
"math/rand"
"os"
"os/exec"
"strings"
"testing"
"time"
"gvisor.googlesource.com/gvisor/pkg/abi/linux"
"gvisor.googlesource.com/gvisor/pkg/binary"
"gvisor.googlesource.com/gvisor/pkg/bpf"
)
type seccompData struct {
nr uint32
arch uint32
instructionPointer uint64
args [6]uint64
}
// newVictim makes a victim binary.
func newVictim() (string, error) {
f, err := ioutil.TempFile("", "victim")
if err != nil {
return "", err
}
defer f.Close()
path := f.Name()
if _, err := io.Copy(f, bytes.NewBuffer(victimData)); err != nil {
os.Remove(path)
return "", err
}
if err := os.Chmod(path, 0755); err != nil {
os.Remove(path)
return "", err
}
return path, nil
}
// asInput converts a seccompData to a bpf.Input.
func (d *seccompData) asInput() bpf.Input {
return bpf.InputBytes{binary.Marshal(nil, binary.LittleEndian, d), binary.LittleEndian}
}
func TestBasic(t *testing.T) {
type spec struct {
// desc is the test's description.
desc string
// data is the input data.
data seccompData
// want is the expected return value of the BPF program.
want uint32
}
for _, test := range []struct {
// filters are the set of syscall that are allowed.
filters SyscallRules
kill bool
specs []spec
}{
{
filters: SyscallRules{1: {}},
kill: false,
specs: []spec{
{
desc: "Single syscall allowed",
data: seccompData{nr: 1, arch: linux.AUDIT_ARCH_X86_64},
want: linux.SECCOMP_RET_ALLOW,
},
{
desc: "Single syscall disallowed",
data: seccompData{nr: 2, arch: linux.AUDIT_ARCH_X86_64},
want: linux.SECCOMP_RET_TRAP,
},
},
},
{
filters: SyscallRules{
1: {},
3: {},
5: {},
},
kill: false,
specs: []spec{
{
desc: "Multiple syscalls allowed (1)",
data: seccompData{nr: 1, arch: linux.AUDIT_ARCH_X86_64},
want: linux.SECCOMP_RET_ALLOW,
},
{
desc: "Multiple syscalls allowed (3)",
data: seccompData{nr: 3, arch: linux.AUDIT_ARCH_X86_64},
want: linux.SECCOMP_RET_ALLOW,
},
{
desc: "Multiple syscalls allowed (5)",
data: seccompData{nr: 5, arch: linux.AUDIT_ARCH_X86_64},
want: linux.SECCOMP_RET_ALLOW,
},
{
desc: "Multiple syscalls disallowed (0)",
data: seccompData{nr: 0, arch: linux.AUDIT_ARCH_X86_64},
want: linux.SECCOMP_RET_TRAP,
},
{
desc: "Multiple syscalls disallowed (2)",
data: seccompData{nr: 2, arch: linux.AUDIT_ARCH_X86_64},
want: linux.SECCOMP_RET_TRAP,
},
{
desc: "Multiple syscalls disallowed (4)",
data: seccompData{nr: 4, arch: linux.AUDIT_ARCH_X86_64},
want: linux.SECCOMP_RET_TRAP,
},
{
desc: "Multiple syscalls disallowed (6)",
data: seccompData{nr: 6, arch: linux.AUDIT_ARCH_X86_64},
want: linux.SECCOMP_RET_TRAP,
},
{
desc: "Multiple syscalls disallowed (100)",
data: seccompData{nr: 100, arch: linux.AUDIT_ARCH_X86_64},
want: linux.SECCOMP_RET_TRAP,
},
},
},
{
filters: SyscallRules{1: {}},
kill: false,
specs: []spec{
{
desc: "Wrong architecture",
data: seccompData{nr: 1, arch: 123},
want: linux.SECCOMP_RET_TRAP,
},
},
},
{
filters: SyscallRules{1: {}},
kill: true,
specs: []spec{
{
desc: "Syscall disallowed, action kill",
data: seccompData{nr: 2, arch: linux.AUDIT_ARCH_X86_64},
want: linux.SECCOMP_RET_KILL,
},
},
},
{
filters: SyscallRules{
1: []Rule{
{
AllowAny{},
AllowValue(0xf),
},
},
},
kill: false,
specs: []spec{
{
desc: "Syscall argument allowed",
data: seccompData{nr: 1, arch: linux.AUDIT_ARCH_X86_64, args: [6]uint64{0xf, 0xf}},
want: linux.SECCOMP_RET_ALLOW,
},
{
desc: "Syscall argument disallowed",
data: seccompData{nr: 1, arch: linux.AUDIT_ARCH_X86_64, args: [6]uint64{0xf, 0xe}},
want: linux.SECCOMP_RET_TRAP,
},
},
},
{
filters: SyscallRules{
1: []Rule{
{
AllowValue(0xf),
},
{
AllowValue(0xe),
},
},
},
kill: false,
specs: []spec{
{
desc: "Syscall argument allowed, two rules",
data: seccompData{nr: 1, arch: linux.AUDIT_ARCH_X86_64, args: [6]uint64{0xf}},
want: linux.SECCOMP_RET_ALLOW,
},
{
desc: "Syscall argument allowed, two rules",
data: seccompData{nr: 1, arch: linux.AUDIT_ARCH_X86_64, args: [6]uint64{0xe}},
want: linux.SECCOMP_RET_ALLOW,
},
},
},
{
filters: SyscallRules{
1: []Rule{
{
AllowValue(0),
AllowValue(math.MaxUint64 - 1),
AllowValue(math.MaxUint32),
},
},
},
kill: false,
specs: []spec{
{
desc: "64bit syscall argument allowed",
data: seccompData{
nr: 1,
arch: linux.AUDIT_ARCH_X86_64,
args: [6]uint64{0, math.MaxUint64 - 1, math.MaxUint32},
},
want: linux.SECCOMP_RET_ALLOW,
},
{
desc: "64bit syscall argument disallowed",
data: seccompData{
nr: 1,
arch: linux.AUDIT_ARCH_X86_64,
args: [6]uint64{0, math.MaxUint64, math.MaxUint32},
},
want: linux.SECCOMP_RET_TRAP,
},
{
desc: "64bit syscall argument disallowed",
data: seccompData{
nr: 1,
arch: linux.AUDIT_ARCH_X86_64,
args: [6]uint64{0, math.MaxUint64, math.MaxUint32 - 1},
},
want: linux.SECCOMP_RET_TRAP,
},
},
},
} {
instrs, err := buildProgram(test.filters, test.kill)
if err != nil {
t.Errorf("%s: buildProgram() got error: %v", test.specs[0].desc, err)
continue
}
p, err := bpf.Compile(instrs)
if err != nil {
t.Errorf("%s: bpf.Compile() got error: %v", test.specs[0].desc, err)
continue
}
for _, spec := range test.specs {
got, err := bpf.Exec(p, spec.data.asInput())
if err != nil {
t.Errorf("%s: bpf.Exec() got error: %v", spec.desc, err)
continue
}
if got != spec.want {
t.Errorf("%s: bpd.Exec() = %d, want: %d", spec.desc, got, spec.want)
}
}
}
}
func TestRandom(t *testing.T) {
rand.Seed(time.Now().UnixNano())
size := rand.Intn(50) + 1
syscallRules := make(map[uintptr][]Rule)
for len(syscallRules) < size {
n := uintptr(rand.Intn(200))
if _, ok := syscallRules[n]; !ok {
syscallRules[n] = []Rule{}
}
}
fmt.Printf("Testing filters: %v", syscallRules)
instrs, err := buildProgram(syscallRules, false)
if err != nil {
t.Fatalf("buildProgram() got error: %v", err)
}
p, err := bpf.Compile(instrs)
if err != nil {
t.Fatalf("bpf.Compile() got error: %v", err)
}
for i := uint32(0); i < 200; i++ {
data := seccompData{nr: i, arch: linux.AUDIT_ARCH_X86_64}
got, err := bpf.Exec(p, data.asInput())
if err != nil {
t.Errorf("bpf.Exec() got error: %v, for syscall %d", err, i)
continue
}
want := uint32(linux.SECCOMP_RET_TRAP)
if _, ok := syscallRules[uintptr(i)]; ok {
want = linux.SECCOMP_RET_ALLOW
}
if got != want {
t.Errorf("bpf.Exec() = %d, want: %d, for syscall %d", got, want, i)
}
}
}
// TestReadDeal checks that a process dies when it trips over the filter and that it
// doesn't die when the filter is not triggered.
func TestRealDeal(t *testing.T) {
for _, test := range []struct {
die bool
want string
}{
{die: true, want: "bad system call"},
{die: false, want: "Syscall was allowed!!!"},
} {
victim, err := newVictim()
if err != nil {
t.Fatalf("unable to get victim: %v", err)
}
defer os.Remove(victim)
dieFlag := fmt.Sprintf("-die=%v", test.die)
cmd := exec.Command(victim, dieFlag)
out, err := cmd.CombinedOutput()
if test.die {
if err == nil {
t.Errorf("victim was not killed as expected, output: %s", out)
continue
}
} else {
if err != nil {
t.Errorf("victim failed to execute, err: %v", err)
continue
}
}
if !strings.Contains(string(out), test.want) {
t.Errorf("Victim output is wrong, got: %v, want: %v", err, test.want)
continue
}
}
}
// TestMerge ensures that empty rules are not erased when rules are merged.
func TestMerge(t *testing.T) {
for _, tst := range []struct {
name string
main []Rule
merge []Rule
want []Rule
}{
{
name: "empty both",
main: nil,
merge: nil,
want: []Rule{{}, {}},
},
{
name: "empty main",
main: nil,
merge: []Rule{{}},
want: []Rule{{}, {}},
},
{
name: "empty merge",
main: []Rule{{}},
merge: nil,
want: []Rule{{}, {}},
},
} {
t.Run(tst.name, func(t *testing.T) {
mainRules := SyscallRules{1: tst.main}
mergeRules := SyscallRules{1: tst.merge}
mainRules.Merge(mergeRules)
if got, want := len(mainRules[1]), len(tst.want); got != want {
t.Errorf("wrong length, got: %d, want: %d", got, want)
}
for i, r := range mainRules[1] {
if r != tst.want[i] {
t.Errorf("result, got: %v, want: %v", r, tst.want[i])
}
}
})
}
}
// TestAddRule ensures that empty rules are not erased when rules are added.
func TestAddRule(t *testing.T) {
rules := SyscallRules{1: {}}
rules.AddRule(1, Rule{})
if got, want := len(rules[1]), 2; got != want {
t.Errorf("len(rules[1]), got: %d, want: %d", got, want)
}
}
|