-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathq_hfsc.go
117 lines (103 loc) · 2.87 KB
/
q_hfsc.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
package tc
import (
"bytes"
"encoding/binary"
"fmt"
"github.com/mdlayher/netlink"
)
const (
tcaHfscUnspec = iota
tcaHfscRsc
tcaHfscFsc
tcaHfscUsc
)
// Hfsc contains attributes of the hfsc class
type Hfsc struct {
Rsc *ServiceCurve
Fsc *ServiceCurve
Usc *ServiceCurve
}
// unmarshalHfsc parses the Hfsc-encoded data and stores the result in the value pointed to by info.
func unmarshalHfsc(data []byte, info *Hfsc) error {
ad, err := netlink.NewAttributeDecoder(data)
if err != nil {
return err
}
var multiError error
for ad.Next() {
switch ad.Type() {
case tcaHfscRsc:
curve := &ServiceCurve{}
err := unmarshalStruct(ad.Bytes(), curve)
multiError = concatError(multiError, err)
info.Rsc = curve
case tcaHfscFsc:
curve := &ServiceCurve{}
err := unmarshalStruct(ad.Bytes(), curve)
multiError = concatError(multiError, err)
info.Fsc = curve
case tcaHfscUsc:
curve := &ServiceCurve{}
err := unmarshalStruct(ad.Bytes(), curve)
multiError = concatError(multiError, err)
info.Usc = curve
default:
return fmt.Errorf("unmarshalHfsc()\t%d\n\t%v", ad.Type(), ad.Bytes())
}
}
return concatError(multiError, ad.Err())
}
// marshalHfsc returns the binary encoding of Hfsc
func marshalHfsc(info *Hfsc) ([]byte, error) {
options := []tcOption{}
var multiError error
if info == nil {
return []byte{}, fmt.Errorf("Hfsc: %w", ErrNoArg)
}
// TODO: improve logic and check combinations
if info.Rsc != nil {
data, err := marshalStruct(info.Rsc)
multiError = concatError(multiError, err)
options = append(options, tcOption{Interpretation: vtBytes, Type: tcaHfscRsc, Data: data})
}
if info.Fsc != nil {
data, err := marshalStruct(info.Fsc)
multiError = concatError(multiError, err)
options = append(options, tcOption{Interpretation: vtBytes, Type: tcaHfscFsc, Data: data})
}
if info.Usc != nil {
data, err := marshalStruct(info.Usc)
multiError = concatError(multiError, err)
options = append(options, tcOption{Interpretation: vtBytes, Type: tcaHfscUsc, Data: data})
}
if multiError != nil {
return []byte{}, multiError
}
return marshalAttributes(options)
}
// ServiceCurve from include/uapi/linux/pkt_sched.h
type ServiceCurve struct {
M1 uint32
D uint32
M2 uint32
}
// HfscQOpt contains attributes of the hfsc qdisc
type HfscQOpt struct {
DefCls uint16
}
// unmarshalHfscQOpt parses the HfscQOpt-encoded data and stores the result in the value pointed to by info.
func unmarshalHfscQOpt(data []byte, info *HfscQOpt) error {
info.DefCls = nativeEndian.Uint16(data)
return nil
}
// marshalHfscQOpt returns the binary encoding of HfscQOpt
func marshalHfscQOpt(info *HfscQOpt) ([]byte, error) {
if info == nil {
return []byte{}, fmt.Errorf("HfscQOpt: %w", ErrNoArg)
}
data := bytes.NewBuffer(make([]byte, 0, 2))
if err := binary.Write(data, nativeEndian, info.DefCls); err != nil {
return []byte{}, err
}
return data.Bytes(), nil
}