This repository has been archived by the owner on Mar 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathcollection_test.go
155 lines (135 loc) · 2.87 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
package ebpf
import (
"testing"
"github.com/newtools/ebpf/asm"
)
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.LoadMapPtr(asm.R1, 0),
asm.LoadImm(asm.R0, 0, asm.DWord),
asm.Return(),
},
License: "MIT",
},
},
}
cs.Programs["test"].Instructions[0].Reference = "my-map"
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",
},
},
}
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")
}
}
func TestCollectionSpecOverwriteMaps(t *testing.T) {
insns := asm.Instructions{
// R1 map
asm.LoadMapPtr(asm.R1, 0),
// 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.MapLookupElement.Call(),
asm.JEq.Imm(asm.R0, 0, "ret"),
asm.LoadMem(asm.R0, asm.R0, 0, asm.Word),
asm.Return().Sym("ret"),
}
insns[0].Reference = "test-map"
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 = Edit(&cs.Programs["test-prog"].Instructions).RewriteMap("test-map", newMap)
if err != nil {
t.Fatal(err)
}
coll, err := NewCollection(cs)
if err != nil {
t.Fatal(err)
}
defer coll.Close()
oldMap := coll.Maps["test-map"]
err = oldMap.Put(uint32(0), uint32(5))
if err != nil {
t.Fatal(err)
}
ret, _, err := coll.Programs["test-prog"].Test(make([]byte, 14))
if err != nil {
t.Fatal(err)
}
t.Log(ret)
if ret != 2 {
t.Fatal("new / override map not used")
}
}