-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathq_htb.go
129 lines (120 loc) · 3.23 KB
/
q_htb.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
package tc
import (
"fmt"
"github.com/mdlayher/netlink"
)
const (
tcaHtbUnspec = iota
tcaHtbParms
tcaHtbInit
tcaHtbCtab
tcaHtbRtab
tcaHtbDirectQlen
tcaHtbRate64
tcaHtbCeil64
tcaHtbPad
tcaHtbOffload
)
// Htb contains attributes of the HTB discipline
type Htb struct {
Parms *HtbOpt
Init *HtbGlob
Ctab *[]byte
Rtab *[]byte
DirectQlen *uint32
Rate64 *uint64
Ceil64 *uint64
Offload *bool
}
// unmarshalHtb parses the Htb-encoded data and stores the result in the value pointed to by info.
func unmarshalHtb(data []byte, info *Htb) error {
ad, err := netlink.NewAttributeDecoder(data)
if err != nil {
return err
}
var multiError error
for ad.Next() {
switch ad.Type() {
case tcaHtbParms:
opt := &HtbOpt{}
err := unmarshalStruct(ad.Bytes(), opt)
multiError = concatError(multiError, err)
info.Parms = opt
case tcaHtbInit:
glob := &HtbGlob{}
err := unmarshalStruct(ad.Bytes(), glob)
multiError = concatError(multiError, err)
info.Init = glob
case tcaHtbCtab:
info.Ctab = bytesPtr(ad.Bytes())
case tcaHtbRtab:
info.Rtab = bytesPtr(ad.Bytes())
case tcaHtbDirectQlen:
info.DirectQlen = uint32Ptr(ad.Uint32())
case tcaHtbRate64:
info.Rate64 = uint64Ptr(ad.Uint64())
case tcaHtbCeil64:
info.Ceil64 = uint64Ptr(ad.Uint64())
case tcaHtbPad:
// padding does not contain data, we just skip it
case tcaHtbOffload:
info.Offload = boolPtr(ad.Flag())
default:
return fmt.Errorf("unmarshalHtb()\t%d\n\t%v", ad.Type(), ad.Bytes())
}
}
return concatError(multiError, ad.Err())
}
// marshalHtb returns the binary encoding of Qfq
func marshalHtb(info *Htb) ([]byte, error) {
options := []tcOption{}
if info == nil {
return []byte{}, fmt.Errorf("Htb: %w", ErrNoArg)
}
var multiError error
// TODO: improve logic and check combinations
if info.Parms != nil {
data, err := marshalStruct(info.Parms)
multiError = concatError(multiError, err)
options = append(options, tcOption{Interpretation: vtBytes, Type: tcaHtbParms, Data: data})
}
if info.Init != nil {
data, err := marshalStruct(info.Init)
multiError = concatError(multiError, err)
options = append(options, tcOption{Interpretation: vtBytes, Type: tcaHtbInit, Data: data})
}
if info.DirectQlen != nil {
options = append(options, tcOption{Interpretation: vtUint32, Type: tcaHtbDirectQlen, Data: uint32Value(info.DirectQlen)})
}
if info.Rate64 != nil {
options = append(options, tcOption{Interpretation: vtUint64, Type: tcaHtbRate64, Data: uint64Value(info.Rate64)})
}
if info.Ceil64 != nil {
options = append(options, tcOption{Interpretation: vtUint64, Type: tcaHtbCeil64, Data: uint64Value(info.Ceil64)})
}
if info.Offload != nil {
options = append(options, tcOption{Interpretation: vtFlag, Type: tcaHtbOffload, Data: boolValue(info.Offload)})
}
if multiError != nil {
return []byte{}, multiError
}
return marshalAttributes(options)
}
// HtbGlob from include/uapi/linux/pkt_sched.h
type HtbGlob struct {
Version uint32
Rate2Quantum uint32
Defcls uint32
Debug uint32
DirectPkts uint32
}
// HtbOpt from include/uapi/linux/pkt_sched.h
type HtbOpt struct {
Rate RateSpec
Ceil RateSpec
Buffer uint32
Cbuffer uint32
Quantum uint32
Level uint32
Prio uint32
}