-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathtc_test.go
278 lines (245 loc) · 7.95 KB
/
tc_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
package tc
import (
"bytes"
"context"
"encoding/binary"
"testing"
"time"
"github.com/florianl/go-tc/internal/unix"
"github.com/google/go-cmp/cmp"
"github.com/mdlayher/netlink"
"github.com/mdlayher/netlink/nltest"
)
func testConn(t *testing.T) (*Tc, func()) {
t.Helper()
var reqCache []netlink.Message
c := &Tc{
con: nltest.Dial(func(req []netlink.Message) ([]netlink.Message, error) {
if len(req) == 0 {
// skip validation requests
return []netlink.Message{}, nil
}
if diff := cmp.Diff(1, len(req)); diff != "" {
t.Fatalf("unexpected number of request messages (-want +got):\n%s", diff)
}
var altered []byte
switch req[0].Header.Type {
case unix.RTM_NEWTCLASS:
fallthrough
case unix.RTM_NEWTFILTER:
fallthrough
case unix.RTM_NEWQDISC:
fallthrough
case unix.RTM_NEWACTION:
reqCache = req
case unix.RTM_GETTFILTER:
fallthrough
case unix.RTM_GETQDISC:
altered = alterResponses(t, &reqCache)
case unix.RTM_DELTFILTER:
fallthrough
case unix.RTM_DELACTION:
fallthrough
case unix.RTM_DELQDISC:
reqCache = []netlink.Message{}
default:
}
emptyMsg := make([]netlink.Message, 0, 1)
var data []byte
tcmsg, err := marshalStruct(&Msg{
Family: unix.AF_UNSPEC,
Ifindex: 0,
Handle: 0xC001,
Parent: 0xCAFE,
Info: 0,
})
if err != nil {
t.Fatalf("could not encode dummy Msg{}: %v", err)
}
data = append(data, tcmsg...)
data = append(data, altered...)
emptyMsg = append(emptyMsg, netlink.Message{
Header: netlink.Header{
Sequence: req[0].Header.Sequence,
PID: req[0].Header.PID,
},
Data: data,
})
return emptyMsg, nil
}),
}
return c, func() {
if err := c.Close(); err != nil {
t.Fatalf("failed to close: %v", err)
}
}
}
var _ tcConn = &fakeConn{}
func (c *fakeConn) Close() error { return nil }
func (c *fakeConn) SendMessages(m []netlink.Message) error { c.msgs = append(c.msgs, m...); return nil }
func (c *fakeConn) Send(m netlink.Message) (netlink.Message, error) {
c.msgs = append(c.msgs, m)
return m, nil
}
func (c *fakeConn) Receive() ([]netlink.Message, error) {
if len(c.msgs) > 0 {
var resp []netlink.Message
for _, msg := range c.msgs {
if msg.Header.Type == netlink.HeaderType(unix.RTM_GETLINK) && msg.Header.Flags == (netlink.Request|netlink.Dump) {
resp = append(resp, netlink.Message{
Header: netlink.Header{
Type: unix.RTM_NEWQDISC,
Flags: netlink.Replace,
},
Data: []byte{
0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0x01,
0x00, 0x00, 0x00, 0x0b, 0x00, 0x01, 0x00, 0x63, 0x6c, 0x73, 0x61, 0x63, 0x74, 0x00, 0x00, 0x04, 0x00, 0x02,
0x00, 0x05, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x07, 0x00, 0x14, 0x00, 0x01, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x03,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x2c, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
},
})
}
}
c.msgs = nil
return resp, nil
}
return []netlink.Message{}, nil
}
func (c *fakeConn) JoinGroup(uint32) error { return nil }
func (c *fakeConn) LeaveGroup(uint32) error { return nil }
func (c *fakeConn) SetOption(netlink.ConnOption, bool) error { return nil }
func (c *fakeConn) SetReadDeadline(time.Time) error { return nil }
// fakeConn is a netlink.Conn used for testing.
type fakeConn struct {
msgs []netlink.Message
}
func testHookConn(t *testing.T) (*Tc, func()) {
t.Helper()
hookedConn := &fakeConn{}
c := &Tc{con: hookedConn}
return c, func() {
if err := c.Close(); err != nil {
t.Fatalf("failed to close: %v", err)
}
}
}
func TestMonitor(t *testing.T) {
if testing.Short() {
t.Skip("skipping test in short mode.")
}
tcSocket, done := testHookConn(t)
defer done()
ctx, cancel := context.WithTimeout(context.Background(), 7*time.Second)
defer cancel()
testHook := func(action uint16, m Object) int {
t.Logf("Action: %d\nObject: %#v\n", action, m)
return 1
}
// the deadline of 10 * time.Millisecond does not have an effect for the test,
// as the functionality is not implemented for the test socket
err := tcSocket.Monitor(ctx, 10*time.Millisecond, testHook)
if err != nil {
t.Fatalf("could not start tc monitor: %v", err)
}
<-ctx.Done()
}
func alterResponses(t *testing.T, cache *[]netlink.Message) []byte {
t.Helper()
var tmp []Object
var dataStream []byte
// Decode data from cache
for _, msg := range *cache {
var result Object
if err := extractTcmsgAttributes(0xCAFE, msg.Data[20:], &result.Attribute); err != nil {
t.Fatalf("could not decode attributes: %v", err)
}
tmp = append(tmp, result)
}
var stats2 bytes.Buffer
if err := binary.Write(&stats2, nativeEndian, &Stats2{
Bytes: 42,
Packets: 1,
Qlen: 1,
Backlog: 0,
Drops: 0,
Requeues: 0,
Overlimits: 42,
}); err != nil {
t.Fatalf("could not encode stats2: %v", err)
}
var stats bytes.Buffer
if err := binary.Write(&stats, nativeEndian, &Stats{
Bytes: 32,
Packets: 1,
Drops: 0,
Overlimits: 0,
Bps: 1,
Pps: 1,
Qlen: 1,
Backlog: 0,
}); err != nil {
t.Fatalf("could not encode stats: %v", err)
}
// Alter and marshal data
for _, obj := range tmp {
var data []byte
var err error
var attrs []tcOption
attrs = append(attrs, tcOption{Interpretation: vtString, Type: tcaKind, Data: obj.Kind})
attrs = append(attrs, tcOption{Interpretation: vtBytes, Type: tcaStats2, Data: stats2.Bytes()})
attrs = append(attrs, tcOption{Interpretation: vtBytes, Type: tcaStats, Data: stats.Bytes()})
attrs = append(attrs, tcOption{Interpretation: vtUint8, Type: tcaHwOffload, Data: uint8(0)})
// add XStats
switch obj.Kind {
case "fq_codel":
data, err = marshalXStats(XStats{FqCodel: &FqCodelXStats{Type: 0, Qd: &FqCodelQdStats{}}})
case "sfb":
data, err = marshalXStats(XStats{Sfb: &SfbXStats{EarlyDrop: 1, PenaltyDrop: 2, AvgProb: 42}})
case "sfq":
data, err = marshalXStats(XStats{Sfq: &SfqXStats{Allot: 42}})
case "red":
data, err = marshalXStats(XStats{Red: &RedXStats{Early: 1, PDrop: 2, Other: 3, Marked: 4}})
case "choke":
data, err = marshalXStats(XStats{Choke: &ChokeXStats{Early: 1, PDrop: 2, Other: 3, Marked: 4, Matched: 5}})
case "htb":
data, err = marshalXStats(XStats{Htb: &HtbXStats{Lends: 1, Borrows: 2, Giants: 3}})
case "cbq":
data, err = marshalXStats(XStats{Cbq: &CbqXStats{Borrows: 2}})
case "codel":
data, err = marshalXStats(XStats{Codel: &CodelXStats{MaxPacket: 3, LDelay: 5}})
case "hhf":
data, err = marshalXStats(XStats{Hhf: &HhfXStats{DropOverlimit: 42}})
case "pie":
data, err = marshalXStats(XStats{Pie: &PieXStats{Prob: 2, Delay: 4, Dropped: 5}})
case "hfsc":
data, err = marshalXStats(XStats{Hfsc: &HfscXStats{Work: 42}})
case "fq":
data, err = marshalXStats(XStats{Fq: &FqQdStats{GcFlows: 73}})
}
if err != nil {
t.Fatalf("could not marshal Xstats struct for %v: %v", obj.Kind, err)
}
if len(data) > 0 {
attrs = append(attrs, tcOption{Interpretation: vtBytes, Type: tcaXstats, Data: data})
data = data[:0]
}
if isFilter(obj.Kind) {
data, err := marshalFilterOptions(obj.Kind, &obj)
if err != nil {
t.Fatalf("failed to remarshal filter options: %v", err)
}
attrs = append(attrs, tcOption{Interpretation: vtBytes, Type: tcaOptions, Data: data})
}
marshaled, err := marshalAttributes(attrs)
if err != nil {
t.Fatalf("could not marshal attributes: %v", err)
}
data = append(data, marshaled...)
dataStream = append(dataStream, data...)
}
return dataStream
}