forked from florianl/go-tc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
f_rsvp.go
123 lines (111 loc) · 3.06 KB
/
f_rsvp.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
118
119
120
121
122
123
package tc
import (
"fmt"
"github.com/mdlayher/netlink"
)
const (
tcaRsvpUnspec = iota
tcaRsvpClassID
tcaRsvpDst
tcaRsvpSrc
tcaRsvpPInfo
tcaRsvpPolice
tcaRsvpAct
)
// Rsvp contains attributes of the rsvp discipline
type Rsvp struct {
ClassID *uint32
Dst *[]byte
Src *[]byte
PInfo *RsvpPInfo
Police *Police
Actions *[]*Action
}
// unmarshalRsvp parses the Rsvp-encoded data and stores the result in the value pointed to by info.
func unmarshalRsvp(data []byte, info *Rsvp) error {
ad, err := netlink.NewAttributeDecoder(data)
if err != nil {
return err
}
var multiError error
for ad.Next() {
switch ad.Type() {
case tcaRsvpClassID:
info.ClassID = uint32Ptr(ad.Uint32())
case tcaRsvpDst:
info.Dst = bytesPtr(ad.Bytes())
case tcaRsvpSrc:
info.Src = bytesPtr(ad.Bytes())
case tcaRsvpPInfo:
arg := &RsvpPInfo{}
err := unmarshalStruct(ad.Bytes(), arg)
multiError = concatError(multiError, err)
info.PInfo = arg
case tcaRsvpPolice:
pol := &Police{}
err := unmarshalPolice(ad.Bytes(), pol)
multiError = concatError(multiError, err)
info.Police = pol
case tcaRsvpAct:
actions := &[]*Action{}
err := unmarshalActions(ad.Bytes(), actions)
multiError = concatError(multiError, err)
info.Actions = actions
default:
return fmt.Errorf("unmarshalRsvp()\t%d\n\t%v", ad.Type(), ad.Bytes())
}
}
return concatError(multiError, ad.Err())
}
// marshalRsvp returns the binary encoding of Rsvp
func marshalRsvp(info *Rsvp) ([]byte, error) {
options := []tcOption{}
if info == nil {
return []byte{}, fmt.Errorf("Rsvp: %w", ErrNoArg)
}
var multiError error
// TODO: improve logic and check combinations
if info.ClassID != nil {
options = append(options, tcOption{Interpretation: vtUint32, Type: tcaRoute4ClassID, Data: uint32Value(info.ClassID)})
}
if info.PInfo != nil {
data, err := marshalStruct(info.PInfo)
multiError = concatError(multiError, err)
options = append(options, tcOption{Interpretation: vtBytes, Type: tcaRsvpPInfo, Data: data})
}
if info.Src != nil {
options = append(options, tcOption{Interpretation: vtBytes, Type: tcaRsvpSrc, Data: bytesValue(info.Src)})
}
if info.Dst != nil {
options = append(options, tcOption{Interpretation: vtBytes, Type: tcaRsvpDst, Data: bytesValue(info.Dst)})
}
if info.Police != nil {
data, err := marshalPolice(info.Police)
multiError = concatError(multiError, err)
options = append(options, tcOption{Interpretation: vtBytes, Type: tcaRsvpPolice, Data: data})
}
if info.Actions != nil {
data, err := marshalActions(*info.Actions)
multiError = concatError(multiError, err)
options = append(options, tcOption{Interpretation: vtBytes, Type: tcaRsvpAct, Data: data})
}
if multiError != nil {
return []byte{}, multiError
}
return marshalAttributes(options)
}
// RsvpPInfo from include/uapi/linux/pkt_sched.h
type RsvpPInfo struct {
Dpi RsvpGpi
Spi RsvpGpi
Protocol uint8
TunnelID uint8
TunnelHdr uint8
Pad uint8
}
// RsvpGpi from include/uapi/linux/pkt_sched.h
type RsvpGpi struct {
Key uint32
Mask uint32
Offset uint32
}