-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathtc.go
374 lines (326 loc) · 7.93 KB
/
tc.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
package tc
import (
"context"
"fmt"
"time"
"github.com/florianl/go-tc/internal/unix"
"github.com/josharian/native"
"github.com/mdlayher/netlink"
)
// tcConn defines a subset of netlink.Conn.
type tcConn interface {
Close() error
JoinGroup(group uint32) error
LeaveGroup(group uint32) error
Receive() ([]netlink.Message, error)
Send(m netlink.Message) (netlink.Message, error)
SetOption(option netlink.ConnOption, enable bool) error
SetReadDeadline(t time.Time) error
}
var _ tcConn = &netlink.Conn{}
// Tc represents a RTNETLINK wrapper
type Tc struct {
con tcConn
}
var nativeEndian = native.Endian
// Open establishes a RTNETLINK socket for traffic control
func Open(config *Config) (*Tc, error) {
var tc Tc
if config == nil {
config = &Config{}
}
con, err := netlink.Dial(unix.NETLINK_ROUTE, &netlink.Config{NetNS: config.NetNS})
if err != nil {
return nil, err
}
tc.con = con
return &tc, nil
}
// SetOption allows to enable or disable netlink socket options.
func (tc *Tc) SetOption(o netlink.ConnOption, enable bool) error {
return tc.con.SetOption(o, enable)
}
// Close the connection
func (tc *Tc) Close() error {
return tc.con.Close()
}
func (tc *Tc) query(req netlink.Message) ([]netlink.Message, error) {
verify, err := tc.con.Send(req)
if err != nil {
return nil, err
}
if err := netlink.Validate(req, []netlink.Message{verify}); err != nil {
return nil, err
}
return tc.con.Receive()
}
func (tc *Tc) action(action int, flags netlink.HeaderFlags, msg interface{}, opts []tcOption) error {
tcminfo, err := marshalStruct(msg)
if err != nil {
return err
}
var data []byte
data = append(data, tcminfo...)
attrs, err := marshalAttributes(opts)
if err != nil {
return err
}
data = append(data, attrs...)
req := netlink.Message{
Header: netlink.Header{
Type: netlink.HeaderType(action),
Flags: netlink.Request | netlink.Acknowledge | flags,
},
Data: data,
}
msgs, err := tc.query(req)
if err != nil {
return err
}
for _, msg := range msgs {
switch msg.Header.Type {
case netlink.Error:
errCode := bytesToInt32(msg.Data[:4])
// Check if the success message is embedded encoded as error code 0:
if errCode != 0 {
return fmt.Errorf("received error from netlink: %#v", msg)
}
case netlink.Overrun:
return fmt.Errorf("lost netlink data: %#v", msg)
}
}
return nil
}
func (tc *Tc) get(action int, i *Msg) ([]Object, error) {
var results []Object
tcminfo, err := marshalStruct(i)
if err != nil {
return results, err
}
var data []byte
data = append(data, tcminfo...)
req := netlink.Message{
Header: netlink.Header{
Type: netlink.HeaderType(action),
Flags: netlink.Request | netlink.Dump,
},
Data: data,
}
msgs, err := tc.query(req)
if err != nil {
return results, err
}
for _, msg := range msgs {
var result Object
if err := unmarshalStruct(msg.Data[:20], &result.Msg); err != nil {
return results, err
}
if err := extractTcmsgAttributes(action, msg.Data[20:], &result.Attribute); err != nil {
return results, err
}
results = append(results, result)
}
return results, nil
}
// Object represents a generic traffic control object
type Object struct {
Msg
Attribute
}
// Msg represents a Traffic Control Message
type Msg struct {
Family uint32
Ifindex uint32
Handle uint32
Parent uint32
Info uint32
}
// Attribute contains various elements for traffic control
type Attribute struct {
Kind string
EgressBlock *uint32
IngressBlock *uint32
HwOffload *uint8
Chain *uint32
Stats *Stats
XStats *XStats
Stats2 *Stats2
Stab *Stab
ExtWarnMsg string
// Filters
Basic *Basic
BPF *Bpf
Cgroup *Cgroup
U32 *U32
Rsvp *Rsvp
Route4 *Route4
Fw *Fw
Flow *Flow
Flower *Flower
Matchall *Matchall
TcIndex *TcIndex
// Classless qdiscs
Cake *Cake
FqCodel *FqCodel
Codel *Codel
Fq *Fq
Pie *Pie
Hhf *Hhf
Tbf *Tbf
Sfb *Sfb
Sfq *Sfq
Red *Red
MqPrio *MqPrio
Pfifo *FifoOpt
Bfifo *FifoOpt
Choke *Choke
Netem *Netem
Plug *Plug
// Classful qdiscs
Cbs *Cbs
Htb *Htb
Hfsc *Hfsc
HfscQOpt *HfscQOpt
Dsmark *Dsmark
Drr *Drr
Cbq *Cbq
Atm *Atm
Qfq *Qfq
Prio *Prio
TaPrio *TaPrio
}
// XStats contains further statistics to the TCA_KIND
type XStats struct {
Sfb *SfbXStats
Sfq *SfqXStats
Red *RedXStats
Choke *ChokeXStats
Htb *HtbXStats
Cbq *CbqXStats
Codel *CodelXStats
Hhf *HhfXStats
Pie *PieXStats
FqCodel *FqCodelXStats
Fq *FqQdStats
Hfsc *HfscXStats
}
func marshalXStats(v XStats) ([]byte, error) {
if v.Sfb != nil {
return marshalStruct(v.Sfb)
} else if v.Sfq != nil {
return marshalStruct(v.Sfq)
} else if v.Red != nil {
return marshalStruct(v.Red)
} else if v.Choke != nil {
return marshalStruct(v.Choke)
} else if v.Htb != nil {
return marshalStruct(v.Htb)
} else if v.Cbq != nil {
return marshalStruct(v.Cbq)
} else if v.Codel != nil {
return marshalStruct(v.Codel)
} else if v.Hhf != nil {
return marshalStruct(v.Hhf)
} else if v.Pie != nil {
return marshalStruct(v.Pie)
} else if v.FqCodel != nil {
return marshalFqCodelXStats(v.FqCodel)
}
return []byte{}, fmt.Errorf("could not marshal XStat")
}
// HookFunc is a function, which is called for each altered RTNETLINK Object.
// Return something different than 0, to stop receiving messages.
// action will have the value of unix.RTM_[NEW|GET|DEL][QDISC|TCLASS|FILTER].
type HookFunc func(action uint16, m Object) int
// ErrorFunc is a function that receives all errors that happen while reading
// from a Netlinkgroup. To stop receiving messages return something different than 0.
type ErrorFunc func(e error) int
// MonitorWithErrorFunc handles NETLINK_ROUTE messages and calls for each HookFunc.
// Received errors tigger the given ErrorFunc.
func (tc *Tc) MonitorWithErrorFunc(ctx context.Context, deadline time.Duration,
fn HookFunc, errfn ErrorFunc) error {
return tc.monitor(ctx, deadline, fn, errfn)
}
// Monitor NETLINK_ROUTE messages
//
// Deprecated: Use MonitorWithErrorFunc() instead.
func (tc *Tc) Monitor(ctx context.Context, deadline time.Duration, fn HookFunc) error {
return tc.monitor(ctx, deadline, fn, func(err error) int {
if opError, ok := err.(*netlink.OpError); ok {
if opError.Timeout() || opError.Temporary() {
return 0
}
}
return 1
})
}
func (tc *Tc) monitor(ctx context.Context, deadline time.Duration,
fn HookFunc, errfn ErrorFunc) error {
ifinfomsg, err := marshalStruct(unix.IfInfomsg{
Family: unix.AF_UNSPEC,
})
if err != nil {
return err
}
rtattr, err := marshalAttributes([]tcOption{
{Interpretation: vtUint32, Type: unix.IFLA_EXT_MASK, Data: uint32(1)},
})
if err != nil {
return err
}
data := ifinfomsg
data = append(data, rtattr...)
req := netlink.Message{
Header: netlink.Header{
Type: netlink.HeaderType(unix.RTM_GETLINK),
Flags: netlink.Request | netlink.Dump,
},
Data: data,
}
if err := tc.con.JoinGroup(unix.RTNLGRP_TC); err != nil {
return err
}
verify, err := tc.con.Send(req)
if err != nil {
tc.con.LeaveGroup(unix.RTNLGRP_TC)
return err
}
if err := netlink.Validate(req, []netlink.Message{verify}); err != nil {
tc.con.LeaveGroup(unix.RTNLGRP_TC)
return err
}
go func() {
go func() {
<-ctx.Done()
stop := time.Now().Add(deadline)
tc.con.SetReadDeadline(stop)
tc.con.LeaveGroup(unix.RTNLGRP_TC)
}()
for {
msgs, err := tc.con.Receive()
if err != nil {
if ret := errfn(err); ret != 0 {
return
}
if ctx.Err() != nil {
return
}
continue
}
for _, msg := range msgs {
var monitored Object
if err := unmarshalStruct(msg.Data[:20], &monitored.Msg); err != nil {
continue
}
if err := extractTcmsgAttributes(int(msg.Header.Type), msg.Data[20:],
&monitored.Attribute); err != nil {
continue
}
if fn(uint16(msg.Header.Type), monitored) != 0 {
return
}
}
}
}()
return nil
}