forked from florianl/go-tc
-
Notifications
You must be signed in to change notification settings - Fork 2
/
m_gate.go
124 lines (116 loc) · 3.19 KB
/
m_gate.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
package tc
import (
"fmt"
"github.com/mdlayher/netlink"
)
const (
tcaGateUnspec = iota
tcaGateTm
tcaGateParms
tcaGatePad
tcaGatePriority
tcaGateEntryList
tcaGateBaseTime
tcaGateCycleTime
tcaGateCycleTimeExt
tcaGateFlags
tcaGateClockID
)
// Gate contains attributes of the gate discipline
// https://man7.org/linux/man-pages/man8/tc-gate.8.html
type Gate struct {
Tm *Tcft
Parms *GateParms
Priority *int32
BaseTime *uint64
CycleTime *uint64
CycleTimeExt *uint64
Flags *uint32
ClockID *int32
}
// marshalGate returns the binary encoding of Gate
func marshalGate(info *Gate) ([]byte, error) {
options := []tcOption{}
if info == nil {
return []byte{}, fmt.Errorf("Gate: %w", ErrNoArg)
}
// TODO: improve logic and check combinations
if info.Tm != nil {
return []byte{}, ErrNoArgAlter
}
if info.Parms != nil {
data, err := marshalStruct(info.Parms)
if err != nil {
return []byte{}, err
}
options = append(options, tcOption{Interpretation: vtBytes, Type: tcaGateParms, Data: data})
}
if info.Priority != nil {
options = append(options, tcOption{Interpretation: vtInt32, Type: tcaGatePriority, Data: *info.Priority})
}
if info.BaseTime != nil {
options = append(options, tcOption{Interpretation: vtUint64, Type: tcaGateBaseTime, Data: *info.BaseTime})
}
if info.CycleTime != nil {
options = append(options, tcOption{Interpretation: vtUint64, Type: tcaGateCycleTime, Data: *info.CycleTime})
}
if info.CycleTimeExt != nil {
options = append(options, tcOption{Interpretation: vtUint64, Type: tcaGateCycleTimeExt, Data: *info.CycleTimeExt})
}
if info.Flags != nil {
options = append(options, tcOption{Interpretation: vtUint32, Type: tcaGateFlags, Data: *info.Flags})
}
if info.ClockID != nil {
options = append(options, tcOption{Interpretation: vtInt32, Type: tcaGateClockID, Data: *info.ClockID})
}
return marshalAttributes(options)
}
// unmarshalGate parses the gate-encoded data and stores the result in the value pointed to by info.
func unmarshalGate(data []byte, info *Gate) error {
ad, err := netlink.NewAttributeDecoder(data)
if err != nil {
return err
}
ad.ByteOrder = nativeEndian
for ad.Next() {
switch ad.Type() {
case tcaGateParms:
parms := &GateParms{}
if err := unmarshalStruct(ad.Bytes(), parms); err != nil {
return err
}
info.Parms = parms
case tcaGateTm:
tcft := &Tcft{}
if err := unmarshalStruct(ad.Bytes(), tcft); err != nil {
return err
}
info.Tm = tcft
case tcaGatePad:
// padding does not contain data, we just skip it
case tcaGatePriority:
info.Priority = int32Ptr(ad.Int32())
case tcaGateBaseTime:
info.BaseTime = uint64Ptr(ad.Uint64())
case tcaGateCycleTime:
info.CycleTime = uint64Ptr(ad.Uint64())
case tcaGateCycleTimeExt:
info.CycleTimeExt = uint64Ptr(ad.Uint64())
case tcaGateFlags:
info.Flags = uint32Ptr(ad.Uint32())
case tcaGateClockID:
info.ClockID = int32Ptr(ad.Int32())
default:
return fmt.Errorf("UnmarshalGate()\t%d\n\t%v", ad.Type(), ad.Bytes())
}
}
return ad.Err()
}
// GateParms from include/uapi/linux/tc_act/tc_gate.h
type GateParms struct {
Index uint32
Capab uint32
Action uint32
RefCnt uint32
BindCnt uint32
}