forked from florianl/go-tc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
m_mirred.go
79 lines (71 loc) · 1.69 KB
/
m_mirred.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
package tc
import (
"fmt"
"github.com/mdlayher/netlink"
)
const (
tcaMirredUnspec = iota
tcaMirredTm
tcaMirredParms
tcaMirredPad
)
// Mirred represents policing attributes of various filters and classes
type Mirred struct {
Parms *MirredParam
Tm *Tcft
}
// MirredParam from include/uapi/linux/tc_act/tc_mirred.h
type MirredParam struct {
Index uint32
Capab uint32
Action uint32
RefCnt uint32
BindCnt uint32
Eaction uint32
IfIndex uint32
}
func unmarshalMirred(data []byte, info *Mirred) error {
ad, err := netlink.NewAttributeDecoder(data)
if err != nil {
return err
}
var multiError error
for ad.Next() {
switch ad.Type() {
case tcaMirredParms:
param := &MirredParam{}
err = unmarshalStruct(ad.Bytes(), param)
multiError = concatError(multiError, err)
info.Parms = param
case tcaMirredTm:
tm := &Tcft{}
err = unmarshalStruct(ad.Bytes(), tm)
multiError = concatError(multiError, err)
info.Tm = tm
case tcaMirredPad:
// padding does not contain data, we just skip it
default:
return fmt.Errorf("unmarshalMirred()\t%d\n\t%v", ad.Type(), ad.Bytes())
}
}
return concatError(multiError, ad.Err())
}
// marshalMirred returns the binary encoding of Mirred
func marshalMirred(info *Mirred) ([]byte, error) {
options := []tcOption{}
if info == nil {
return []byte{}, fmt.Errorf("Mirred: %w", ErrNoArg)
}
// TODO: improve logic and check combinations
if info.Tm != nil {
return []byte{}, ErrNoArgAlter
}
if info.Parms != nil {
data, err := marshalStruct(info.Parms)
if err != nil {
return []byte{}, err
}
options = append(options, tcOption{Interpretation: vtBytes, Type: tcaMirredParms, Data: data})
}
return marshalAttributes(options)
}