-
Notifications
You must be signed in to change notification settings - Fork 3
/
wall_test.go
332 lines (299 loc) · 7.88 KB
/
wall_test.go
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
package main
import (
"errors"
"net"
"testing"
"github.com/dropbox/goebpf"
"go.uber.org/zap"
"go.uber.org/zap/zapcore"
"go.uber.org/zap/zaptest/observer"
"github.com/stretchr/testify/assert"
)
func getAllLoggedLogs(logs []observer.LoggedEntry) []string {
var allLogs []string
for _, log := range logs {
allLogs = append(allLogs, log.Message)
}
return allLogs
}
func TestWall_createBPFSystem(t *testing.T) {
testCases := []struct {
name string
loadElfFn func(string) error
ElfFile string
expectedError error
expectedLogs []string
}{
{
name: "happy path",
ElfFile: "ebpf_prog/xdp_fw.elf",
},
{
name: "sad path: LoadElf() fails because of invalid file",
loadElfFn: func(s string) error {
return errors.New("no such file found")
},
expectedError: errors.New("no such file found"),
expectedLogs: []string{"loading of ELF program failed: no such file found"},
},
}
for _, tc := range testCases {
core, recorded := observer.New(zapcore.DebugLevel)
zl := zap.New(core)
w := Wall{
lg: zl.Sugar(),
bpf: mockSystem{
loadElf: tc.loadElfFn,
},
FirewallConfig: FirewallConfig{
IPAddrs: nil,
ELF: &tc.ElfFile,
Iface: nil,
},
}
assert.Equal(t, tc.expectedError, w.createBPFSystem(), tc.name)
loggedLogs := getAllLoggedLogs(recorded.All())
assert.Equal(t, tc.expectedLogs, loggedLogs, tc.name)
}
}
func TestWall_getBPFMaps(t *testing.T) {
testCases := []struct {
name string
getMapByNameFunc func(string) goebpf.Map
expectedError error
expectedLogs []string
}{
{
name: "happy path",
},
{
name: "sad path: matches map retrieval fails",
getMapByNameFunc: func(mapQueryString string) goebpf.Map {
switch mapQueryString {
case EBPFMatchesMap:
return nil
default:
assert.Failf(t, "unexpected map access: %s", mapQueryString)
}
return nil
},
expectedError: ErrMatchesMapNotFound,
expectedLogs: []string{"matches: eBPF matches map not found"},
},
{
name: "sad path: blacklist map retrieval fails",
getMapByNameFunc: func(mapQueryString string) goebpf.Map {
switch mapQueryString {
case EBPFMatchesMap:
return mockMap{}
case EBPFBlacklistMap:
return nil
default:
assert.Failf(t, "unexpected map access: %s", mapQueryString)
}
return nil
},
expectedError: ErrBlackListMapNotFound,
expectedLogs: []string{"blacklist: eBPF blacklist map not found"},
},
}
for _, tc := range testCases {
core, recorded := observer.New(zapcore.DebugLevel)
zl := zap.New(core)
w := Wall{
lg: zl.Sugar(),
bpf: mockSystem{
getMapByName: tc.getMapByNameFunc,
},
}
err := w.getBPFMaps()
switch {
case tc.expectedError != nil:
assert.Equal(t, tc.expectedError, err, tc.name)
default:
assert.NoError(t, err, tc.name)
}
loggedLogs := getAllLoggedLogs(recorded.All())
assert.Equal(t, tc.expectedLogs, loggedLogs, tc.name)
}
}
func TestWall_getProgramByName(t *testing.T) {
testCases := []struct {
name string
getProgramByNameFunc func(string) goebpf.Program
expectedError error
expectedLogs []string
}{
{
name: "happy path",
},
{
name: "sad path: failed to retrieve firewall xdp program",
getProgramByNameFunc: func(programName string) goebpf.Program {
switch programName {
case "firewall":
return nil
default:
assert.Failf(t, "unexpected program name: %s", programName)
}
return nil
},
expectedError: ErrProgramNotFound,
expectedLogs: []string{"eBPF program not found: firewall"},
},
}
for _, tc := range testCases {
core, recorded := observer.New(zapcore.DebugLevel)
zl := zap.New(core)
w := Wall{
lg: zl.Sugar(),
bpf: mockSystem{
getProgramByName: tc.getProgramByNameFunc,
},
}
err := w.getProgramByName()
switch {
case tc.expectedError != nil:
assert.Equal(t, tc.expectedError, err, tc.name)
default:
assert.NoError(t, err, tc.name)
}
loggedLogs := getAllLoggedLogs(recorded.All())
assert.Equal(t, tc.expectedLogs, loggedLogs, tc.name)
}
}
func TestWall_populateBlackList(t *testing.T) {
testCases := []struct {
name string
blackListInsertFunc func(interface{}, interface{}) error
expectedLogs []string
expectedError error
}{
{
name: "happy path with two IP addresses in blacklist",
blackListInsertFunc: func(ip interface{}, index interface{}) error {
switch index {
case 0:
assert.Equal(t, &net.IPNet{
IP: net.IP{0x1, 0x2, 0x3, 0x4},
Mask: net.IPMask{0xff, 0xff, 0xff, 0xff},
}, ip)
case 1:
assert.Equal(t, &net.IPNet{
IP: net.IP{0x5, 0x6, 0x7, 0x0}, // 5.6.7.8/24 is added as 5.6.7.0/24 for the range
Mask: net.IPMask{0xff, 0xff, 0xff, 0x0},
}, ip)
default:
assert.FailNow(t, "unexpected index ip combination found: ", ip, index)
}
return nil
},
expectedLogs: []string{"Populating blacklist with input IPs...", "1.2.3.4/32", "5.6.7.8/24"},
},
{
name: "sad path error adding ip address into LPMtrie",
blackListInsertFunc: func(i interface{}, i2 interface{}) error {
return errors.New("error adding ip")
},
expectedError: errors.New("error adding ip"),
expectedLogs: []string{"Populating blacklist with input IPs...", "1.2.3.4/32", "error adding ip: 1.2.3.4/32"},
},
}
for _, tc := range testCases {
core, recorded := observer.New(zapcore.DebugLevel)
zl := zap.New(core)
w := Wall{
lg: zl.Sugar(),
FirewallConfig: FirewallConfig{
IPAddrs: IPAddressList{
"1.2.3.4/32",
"5.6.7.8/24",
},
BlackList: mockMap{
insert: tc.blackListInsertFunc,
},
},
}
assert.Equal(t, tc.expectedError, w.populateBlackList(), tc.name)
loggedLogs := getAllLoggedLogs(recorded.All())
assert.Equal(t, tc.expectedLogs, loggedLogs, tc.name)
}
}
func TestWall_loadXDP(t *testing.T) {
testCases := []struct {
name string
loadFunc func() error
expectedError error
expectedLogs []string
}{
{
name: "happy path",
expectedLogs: []string{"loading XDP program into the kernel..."},
},
{
name: "sad path: load func returns an error",
loadFunc: func() error {
return errors.New("loading of program failed")
},
expectedLogs: []string{
"loading XDP program into the kernel...",
"load failed, err: loading of program failed",
},
expectedError: errors.New("loading of program failed"),
},
}
for _, tc := range testCases {
core, recorded := observer.New(zapcore.DebugLevel)
zl := zap.New(core)
w := Wall{
lg: zl.Sugar(),
xdp: mockProgram{
load: tc.loadFunc,
},
}
assert.Equal(t, tc.expectedError, w.loadXDP(), tc.name)
loggedLogs := getAllLoggedLogs(recorded.All())
assert.Equal(t, tc.expectedLogs, loggedLogs, tc.name)
}
}
func TestWall_attachXDP(t *testing.T) {
testCases := []struct {
name string
attachFunc func(interface{}) error
expectedError error
expectedLogs []string
}{
{
name: "happy path",
expectedLogs: []string{"attaching XDP program to interface: testiface..."},
},
{
name: "sad path: attach func returns an error",
attachFunc: func(interface{}) error {
return errors.New("attaching of program failed")
},
expectedLogs: []string{
"attaching XDP program to interface: testiface...",
"attach failed, err: attaching of program failed",
},
expectedError: errors.New("attaching of program failed"),
},
}
for _, tc := range testCases {
core, recorded := observer.New(zapcore.DebugLevel)
zl := zap.New(core)
testiface := "testiface"
w := Wall{
lg: zl.Sugar(),
xdp: mockProgram{
attach: tc.attachFunc,
},
FirewallConfig: FirewallConfig{
Iface: &testiface,
},
}
assert.Equal(t, tc.expectedError, w.attachXDP(), tc.name)
loggedLogs := getAllLoggedLogs(recorded.All())
assert.Equal(t, tc.expectedLogs, loggedLogs, tc.name)
}
}