-
Notifications
You must be signed in to change notification settings - Fork 48
/
f_matchall.go
83 lines (71 loc) · 1.97 KB
/
f_matchall.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
package tc
import (
"fmt"
"github.com/mdlayher/netlink"
)
const (
tcaMatchallUnspec = iota
tcaMatchallClassID
tcaMatchallAct
tcaMatchallFlags
tcaMatchallPcnt
tcaMatchallPad
)
// Matchall contains attributes of the matchall discipline
type Matchall struct {
ClassID *uint32
Actions *[]*Action
Flags *uint32
Pcnt *uint64
}
func unmarshalMatchall(data []byte, info *Matchall) error {
ad, err := netlink.NewAttributeDecoder(data)
if err != nil {
return err
}
var multiError error
for ad.Next() {
switch ad.Type() {
case tcaMatchallClassID:
info.ClassID = uint32Ptr(ad.Uint32())
case tcaMatchallAct:
actions := &[]*Action{}
err := unmarshalActions(ad.Bytes(), actions)
multiError = concatError(multiError, err)
info.Actions = actions
case tcaMatchallFlags:
info.Flags = uint32Ptr(ad.Uint32())
case tcaMatchallPcnt:
info.Pcnt = uint64Ptr(ad.Uint64())
case tcaMatchallPad:
// padding does not contain data, we just skip it
default:
return fmt.Errorf("unmarshalMatchall()\t%d\n\t%v", ad.Type(), ad.Bytes())
}
}
return concatError(multiError, ad.Err())
}
// marshalMatchall returns the binary encoding of Matchall
func marshalMatchall(info *Matchall) ([]byte, error) {
options := []tcOption{}
if info == nil {
return []byte{}, fmt.Errorf("Matchall: %w", ErrNoArg)
}
// TODO: improve logic and check combinations
var multiError error
if info.ClassID != nil {
options = append(options, tcOption{Interpretation: vtUint32, Type: tcaMatchallClassID, Data: uint32Value(info.ClassID)})
}
if info.Actions != nil {
data, err := marshalActions(0, *info.Actions)
multiError = concatError(multiError, err)
options = append(options, tcOption{Interpretation: vtBytes, Type: tcaMatchallAct, Data: data})
}
if info.Flags != nil {
options = append(options, tcOption{Interpretation: vtUint32, Type: tcaMatchallFlags, Data: uint32Value(info.Flags)})
}
if multiError != nil {
return []byte{}, multiError
}
return marshalAttributes(options)
}