forked from cilium/ebpf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
collection_test.go
655 lines (574 loc) · 12.9 KB
/
collection_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
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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
package ebpf
import (
"errors"
"fmt"
"reflect"
"testing"
"github.com/cilium/ebpf/asm"
"github.com/cilium/ebpf/btf"
"github.com/cilium/ebpf/internal"
"github.com/cilium/ebpf/internal/testutils"
)
func TestCollectionSpecNotModified(t *testing.T) {
cs := CollectionSpec{
Maps: map[string]*MapSpec{
"my-map": {
Type: Array,
KeySize: 4,
ValueSize: 4,
MaxEntries: 1,
},
},
Programs: map[string]*ProgramSpec{
"test": {
Type: SocketFilter,
Instructions: asm.Instructions{
asm.LoadImm(asm.R1, 0, asm.DWord).WithReference("my-map"),
asm.LoadImm(asm.R0, 0, asm.DWord),
asm.Return(),
},
License: "MIT",
},
},
}
coll, err := NewCollection(&cs)
if err != nil {
t.Fatal(err)
}
coll.Close()
if cs.Programs["test"].Instructions[0].Constant != 0 {
t.Error("Creating a collection modifies input spec")
}
}
func TestCollectionSpecCopy(t *testing.T) {
cs := &CollectionSpec{
Maps: map[string]*MapSpec{
"my-map": {
Type: Array,
KeySize: 4,
ValueSize: 4,
MaxEntries: 1,
},
},
Programs: map[string]*ProgramSpec{
"test": {
Type: SocketFilter,
Instructions: asm.Instructions{
asm.LoadMapPtr(asm.R1, 0),
asm.LoadImm(asm.R0, 0, asm.DWord),
asm.Return(),
},
License: "MIT",
},
},
Types: &btf.Spec{},
}
cpy := cs.Copy()
if cpy == cs {
t.Error("Copy returned the same pointner")
}
if cpy.Maps["my-map"] == cs.Maps["my-map"] {
t.Error("Copy returned same Maps")
}
if cpy.Programs["test"] == cs.Programs["test"] {
t.Error("Copy returned same Programs")
}
if cpy.Types != cs.Types {
t.Error("Copy returned different Types")
}
}
func TestCollectionSpecLoadCopy(t *testing.T) {
file := fmt.Sprintf("testdata/loader-%s.elf", internal.ClangEndian)
spec, err := LoadCollectionSpec(file)
if err != nil {
t.Fatal(err)
}
spec2 := spec.Copy()
var objs struct {
Prog *Program `ebpf:"xdp_prog"`
}
err = spec.LoadAndAssign(&objs, nil)
testutils.SkipIfNotSupported(t, err)
if err != nil {
t.Fatal("Loading original spec:", err)
}
defer objs.Prog.Close()
if err := spec2.LoadAndAssign(&objs, nil); err != nil {
t.Fatal("Loading copied spec:", err)
}
defer objs.Prog.Close()
}
func TestCollectionSpecRewriteMaps(t *testing.T) {
insns := asm.Instructions{
// R1 map
asm.LoadMapPtr(asm.R1, 0).WithReference("test-map"),
// R2 key
asm.Mov.Reg(asm.R2, asm.R10),
asm.Add.Imm(asm.R2, -4),
asm.StoreImm(asm.R2, 0, 0, asm.Word),
// Lookup map[0]
asm.FnMapLookupElem.Call(),
asm.JEq.Imm(asm.R0, 0, "ret"),
asm.LoadMem(asm.R0, asm.R0, 0, asm.Word),
asm.Return().WithSymbol("ret"),
}
cs := &CollectionSpec{
Maps: map[string]*MapSpec{
"test-map": {
Type: Array,
KeySize: 4,
ValueSize: 4,
MaxEntries: 1,
},
},
Programs: map[string]*ProgramSpec{
"test-prog": {
Type: SocketFilter,
Instructions: insns,
License: "MIT",
},
},
}
// Override the map with another one
newMap, err := NewMap(cs.Maps["test-map"])
if err != nil {
t.Fatal(err)
}
defer newMap.Close()
err = newMap.Put(uint32(0), uint32(2))
if err != nil {
t.Fatal(err)
}
err = cs.RewriteMaps(map[string]*Map{
"test-map": newMap,
})
if err != nil {
t.Fatal(err)
}
if cs.Maps["test-map"] != nil {
t.Error("RewriteMaps doesn't remove map from CollectionSpec.Maps")
}
coll, err := NewCollection(cs)
if err != nil {
t.Fatal(err)
}
defer coll.Close()
ret, _, err := coll.Programs["test-prog"].Test(internal.EmptyBPFContext)
testutils.SkipIfNotSupported(t, err)
if err != nil {
t.Fatal(err)
}
if ret != 2 {
t.Fatal("new / override map not used")
}
}
func TestCollectionSpecMapReplacements(t *testing.T) {
insns := asm.Instructions{
// R1 map
asm.LoadMapPtr(asm.R1, 0).WithReference("test-map"),
// R2 key
asm.Mov.Reg(asm.R2, asm.R10),
asm.Add.Imm(asm.R2, -4),
asm.StoreImm(asm.R2, 0, 0, asm.Word),
// Lookup map[0]
asm.FnMapLookupElem.Call(),
asm.JEq.Imm(asm.R0, 0, "ret"),
asm.LoadMem(asm.R0, asm.R0, 0, asm.Word),
asm.Return().WithSymbol("ret"),
}
cs := &CollectionSpec{
Maps: map[string]*MapSpec{
"test-map": {
Type: Array,
KeySize: 4,
ValueSize: 4,
MaxEntries: 1,
},
},
Programs: map[string]*ProgramSpec{
"test-prog": {
Type: SocketFilter,
Instructions: insns,
License: "MIT",
},
},
}
// Replace the map with another one
newMap, err := NewMap(cs.Maps["test-map"])
if err != nil {
t.Fatal(err)
}
defer newMap.Close()
err = newMap.Put(uint32(0), uint32(2))
if err != nil {
t.Fatal(err)
}
coll, err := NewCollectionWithOptions(cs, CollectionOptions{
MapReplacements: map[string]*Map{
"test-map": newMap,
},
})
if err != nil {
t.Fatal(err)
}
defer coll.Close()
ret, _, err := coll.Programs["test-prog"].Test(internal.EmptyBPFContext)
testutils.SkipIfNotSupported(t, err)
if err != nil {
t.Fatal(err)
}
if ret != 2 {
t.Fatal("new / override map not used")
}
// Check that newMap isn't closed when the collection is closed
coll.Close()
err = newMap.Put(uint32(0), uint32(3))
if err != nil {
t.Fatalf("failed to update replaced map: %s", err)
}
}
func TestCollectionSpecMapReplacements_NonExistingMap(t *testing.T) {
cs := &CollectionSpec{
Maps: map[string]*MapSpec{
"test-map": {
Type: Array,
KeySize: 4,
ValueSize: 4,
MaxEntries: 1,
},
},
}
// Override non-existing map
newMap, err := NewMap(cs.Maps["test-map"])
if err != nil {
t.Fatal(err)
}
defer newMap.Close()
coll, err := NewCollectionWithOptions(cs, CollectionOptions{
MapReplacements: map[string]*Map{
"non-existing-map": newMap,
},
})
if err == nil {
coll.Close()
t.Fatal("Overriding a non existing map did not fail")
}
}
func TestCollectionSpecMapReplacements_SpecMismatch(t *testing.T) {
cs := &CollectionSpec{
Maps: map[string]*MapSpec{
"test-map": {
Type: Array,
KeySize: 4,
ValueSize: 4,
MaxEntries: 1,
},
},
}
// Override map with mismatching spec
newMap, err := NewMap(&MapSpec{
Type: Array,
KeySize: 4,
ValueSize: 8, // this is different
MaxEntries: 1,
})
if err != nil {
t.Fatal(err)
}
// Map fd is duplicated by MapReplacements, this one can be safely closed.
defer newMap.Close()
coll, err := NewCollectionWithOptions(cs, CollectionOptions{
MapReplacements: map[string]*Map{
"test-map": newMap,
},
})
if err == nil {
coll.Close()
t.Fatal("Overriding a map with a mismatching spec did not fail")
}
if !errors.Is(err, ErrMapIncompatible) {
t.Fatalf("Overriding a map with a mismatching spec failed with the wrong error")
}
}
func TestCollectionSpec_LoadAndAssign_LazyLoading(t *testing.T) {
spec := &CollectionSpec{
Maps: map[string]*MapSpec{
"valid": {
Type: Array,
KeySize: 4,
ValueSize: 4,
MaxEntries: 1,
},
"bogus": {
Type: Array,
MaxEntries: 0,
},
},
Programs: map[string]*ProgramSpec{
"valid": {
Type: SocketFilter,
Instructions: asm.Instructions{
asm.LoadImm(asm.R0, 0, asm.DWord),
asm.Return(),
},
License: "MIT",
},
"bogus": {
Type: SocketFilter,
Instructions: asm.Instructions{
// Undefined return value is rejected
asm.Return(),
},
License: "MIT",
},
},
}
var objs struct {
Prog *Program `ebpf:"valid"`
Map *Map `ebpf:"valid"`
}
if err := spec.LoadAndAssign(&objs, nil); err != nil {
t.Fatal("Assign loads a map or program that isn't requested in the struct:", err)
}
defer objs.Prog.Close()
defer objs.Map.Close()
if objs.Prog == nil {
t.Error("Program is nil")
}
if objs.Map == nil {
t.Error("Map is nil")
}
}
func TestCollectionAssign(t *testing.T) {
var specs struct {
Program *ProgramSpec `ebpf:"prog1"`
Map *MapSpec `ebpf:"map1"`
}
mapSpec := &MapSpec{
Type: Array,
KeySize: 4,
ValueSize: 4,
MaxEntries: 1,
}
progSpec := &ProgramSpec{
Type: SocketFilter,
Instructions: asm.Instructions{
asm.LoadImm(asm.R0, 0, asm.DWord),
asm.Return(),
},
License: "MIT",
}
cs := &CollectionSpec{
Maps: map[string]*MapSpec{
"map1": mapSpec,
},
Programs: map[string]*ProgramSpec{
"prog1": progSpec,
},
}
if err := cs.Assign(&specs); err != nil {
t.Fatal("Can't assign spec:", err)
}
if specs.Program != progSpec {
t.Fatalf("Expected Program to be %p, got %p", progSpec, specs.Program)
}
if specs.Map != mapSpec {
t.Fatalf("Expected Map to be %p, got %p", mapSpec, specs.Map)
}
if err := cs.Assign(new(int)); err == nil {
t.Fatal("Assign allows to besides *struct")
}
if err := cs.Assign(new(struct{ Foo int })); err != nil {
t.Fatal("Assign doesn't ignore untagged fields")
}
unexported := new(struct {
foo *MapSpec `ebpf:"map1"`
})
if err := cs.Assign(unexported); err == nil {
t.Error("Assign should return an error on unexported fields")
}
}
func TestAssignValues(t *testing.T) {
zero := func(t reflect.Type, name string) (interface{}, error) {
return reflect.Zero(t).Interface(), nil
}
type t1 struct {
Bar int `ebpf:"bar"`
}
type t2 struct {
t1
Foo int `ebpf:"foo"`
}
type t2ptr struct {
*t1
Foo int `ebpf:"foo"`
}
invalid := []struct {
name string
to interface{}
}{
{"non-struct", 1},
{"non-pointer struct", t1{}},
{"pointer to non-struct", new(int)},
{"embedded nil pointer", &t2ptr{}},
{"unexported field", new(struct {
foo int `ebpf:"foo"`
})},
{"identical tag", new(struct {
Foo1 int `ebpf:"foo"`
Foo2 int `ebpf:"foo"`
})},
}
for _, testcase := range invalid {
t.Run(testcase.name, func(t *testing.T) {
if err := assignValues(testcase.to, zero); err == nil {
t.Fatal("assignValues didn't return an error")
} else {
t.Log(err)
}
})
}
valid := []struct {
name string
to interface{}
}{
{"pointer to struct", new(t1)},
{"embedded struct", new(t2)},
{"embedded struct pointer", &t2ptr{t1: new(t1)}},
{"untagged field", new(struct{ Foo int })},
}
for _, testcase := range valid {
t.Run(testcase.name, func(t *testing.T) {
if err := assignValues(testcase.to, zero); err != nil {
t.Fatal("assignValues returned", err)
}
})
}
}
func TestIncompleteLoadAndAssign(t *testing.T) {
spec := &CollectionSpec{
Programs: map[string]*ProgramSpec{
"valid": {
Type: SocketFilter,
Instructions: asm.Instructions{
asm.LoadImm(asm.R0, 0, asm.DWord),
asm.Return(),
},
License: "MIT",
},
"invalid": {
Type: SocketFilter,
Instructions: asm.Instructions{
asm.Return(),
},
License: "MIT",
},
},
}
s := struct {
// Assignment to Valid should execute and succeed.
Valid *Program `ebpf:"valid"`
// Assignment to Invalid should fail and cause Valid's fd to be closed.
Invalid *Program `ebpf:"invalid"`
}{}
if err := spec.LoadAndAssign(&s, nil); err == nil {
t.Fatal("expected error loading invalid ProgramSpec")
}
if fd := s.Valid.FD(); fd != -1 {
t.Fatal("expected valid prog to have closed fd -1, got:", fd)
}
if s.Invalid != nil {
t.Fatal("expected invalid prog to be nil due to never being assigned")
}
}
func BenchmarkNewCollection(b *testing.B) {
file := fmt.Sprintf("testdata/loader-%s.elf", internal.ClangEndian)
spec, err := LoadCollectionSpec(file)
if err != nil {
b.Fatal(err)
}
spec.Maps["array_of_hash_map"].InnerMap = spec.Maps["hash_map"]
for _, m := range spec.Maps {
m.Pinning = PinNone
}
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
coll, err := NewCollection(spec)
if err != nil {
b.Fatal(err)
}
coll.Close()
}
}
func ExampleCollectionSpec_Assign() {
spec := &CollectionSpec{
Maps: map[string]*MapSpec{
"map1": {
Type: Array,
KeySize: 4,
ValueSize: 4,
MaxEntries: 1,
},
},
Programs: map[string]*ProgramSpec{
"prog1": {
Type: SocketFilter,
Instructions: asm.Instructions{
asm.LoadImm(asm.R0, 0, asm.DWord),
asm.Return(),
},
License: "MIT",
},
},
}
type maps struct {
Map *MapSpec `ebpf:"map1"`
}
var specs struct {
maps
Program *ProgramSpec `ebpf:"prog1"`
}
if err := spec.Assign(&specs); err != nil {
panic(err)
}
fmt.Println(specs.Program.Type)
fmt.Println(specs.Map.Type)
// Output: SocketFilter
// Array
}
func ExampleCollectionSpec_LoadAndAssign() {
spec := &CollectionSpec{
Maps: map[string]*MapSpec{
"map1": {
Type: Array,
KeySize: 4,
ValueSize: 4,
MaxEntries: 1,
},
},
Programs: map[string]*ProgramSpec{
"prog1": {
Type: SocketFilter,
Instructions: asm.Instructions{
asm.LoadImm(asm.R0, 0, asm.DWord),
asm.Return(),
},
License: "MIT",
},
},
}
var objs struct {
Program *Program `ebpf:"prog1"`
Map *Map `ebpf:"map1"`
}
if err := spec.LoadAndAssign(&objs, nil); err != nil {
panic(err)
}
defer objs.Program.Close()
defer objs.Map.Close()
fmt.Println(objs.Program.Type())
fmt.Println(objs.Map.Type())
// Output: SocketFilter
// Array
}