-
Notifications
You must be signed in to change notification settings - Fork 48
/
f_fw.go
92 lines (84 loc) · 2.35 KB
/
f_fw.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
package tc
import (
"fmt"
"github.com/mdlayher/netlink"
)
const (
tcaFwUnspec = iota
tcaFwClassID
tcaFwPolice
tcaFwInDev
tcaFwAct
tcaFwMask
)
// Fw contains attributes of the fw discipline
type Fw struct {
ClassID *uint32
Police *Police
InDev *string
Mask *uint32
Actions *[]*Action
}
// unmarshalFw parses the Fw-encoded data and stores the result in the value pointed to by info.
func unmarshalFw(data []byte, info *Fw) error {
ad, err := netlink.NewAttributeDecoder(data)
if err != nil {
return err
}
var multiError error
for ad.Next() {
switch ad.Type() {
case tcaFwClassID:
info.ClassID = uint32Ptr(ad.Uint32())
case tcaFwInDev:
info.InDev = stringPtr(ad.String())
case tcaFwMask:
info.Mask = uint32Ptr(ad.Uint32())
case tcaFwPolice:
pol := &Police{}
err := unmarshalPolice(ad.Bytes(), pol)
multiError = concatError(multiError, err)
info.Police = pol
case tcaFwAct:
actions := &[]*Action{}
err := unmarshalActions(ad.Bytes(), actions)
multiError = concatError(multiError, err)
info.Actions = actions
default:
return fmt.Errorf("unmarshalFw()\t%d\n\t%v", ad.Type(), ad.Bytes())
}
}
return concatError(multiError, ad.Err())
}
// marshalFw returns the binary encoding of Fw
func marshalFw(info *Fw) ([]byte, error) {
options := []tcOption{}
if info == nil {
return []byte{}, fmt.Errorf("Fw: %w", ErrNoArg)
}
var multiError error
// TODO: improve logic and check combinations
if info.ClassID != nil {
options = append(options, tcOption{Interpretation: vtUint32, Type: tcaFwClassID, Data: uint32Value(info.ClassID)})
}
if info.Mask != nil {
options = append(options, tcOption{Interpretation: vtUint32, Type: tcaFwMask, Data: uint32Value(info.Mask)})
}
if info.InDev != nil {
options = append(options, tcOption{Interpretation: vtString, Type: tcaFwInDev, Data: stringValue(info.InDev)})
}
if info.Police != nil {
data, err := marshalPolice(info.Police)
multiError = concatError(multiError, err)
options = append(options, tcOption{Interpretation: vtBytes, Type: tcaFwPolice, Data: data})
}
if info.Actions != nil {
data, err := marshalActions(0, *info.Actions)
multiError = concatError(multiError, err)
options = append(options, tcOption{Interpretation: vtBytes, Type: tcaFwAct, Data: data})
}
if multiError != nil {
return []byte{}, multiError
}
return marshalAttributes(options)
}