-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathstab.go
81 lines (69 loc) · 1.61 KB
/
stab.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
package tc
import (
"fmt"
"github.com/mdlayher/netlink"
)
const (
tcaStabUnspec = iota
tcaStabBase
tcaStabData
)
// SizeSpec implements tc_sizespec
type SizeSpec struct {
CellLog uint8
SizeLog uint8
CellAlign int16
Overhead int32
LinkLayer uint32
MPU uint32
MTU uint32
TSize uint32
}
// Stab contains attributes of a stab
// http://man7.org/linux/man-pages/man8/tc-stab.8.html
type Stab struct {
Base *SizeSpec
Data *[]byte
}
func unmarshalStab(data []byte, stab *Stab) error {
ad, err := netlink.NewAttributeDecoder(data)
if err != nil {
return err
}
var multiError error
for ad.Next() {
switch ad.Type() {
case tcaStabBase:
base := &SizeSpec{}
err := unmarshalStruct(ad.Bytes(), base)
multiError = concatError(multiError, err)
stab.Base = base
case tcaStabData:
tmp := ad.Bytes()
stab.Data = &tmp
default:
return fmt.Errorf("unmarshalStab()\t%d\n\t%v", ad.Type(), ad.Bytes())
}
}
return concatError(multiError, ad.Err())
}
func marshalStab(info *Stab) ([]byte, error) {
options := []tcOption{}
if info == nil {
return []byte{}, fmt.Errorf("Stab: %w", ErrNoArg)
}
var multiError error
// TODO: improve logic and check combination
if info.Base != nil {
data, err := marshalStruct(info.Base)
multiError = concatError(multiError, err)
options = append(options, tcOption{Interpretation: vtBytes, Type: tcaStabBase, Data: data})
}
if info.Data != nil {
options = append(options, tcOption{Interpretation: vtBytes, Type: tcaStabData, Data: *info.Data})
}
if multiError != nil {
return []byte{}, multiError
}
return marshalAttributes(options)
}