-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtypes.go
342 lines (274 loc) · 7.44 KB
/
types.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
// SPDX-FileCopyrightText: 2022 SAP SE or an SAP affiliate company and IronCore contributors
// SPDX-License-Identifier: Apache-2.0
package metalbond
import (
"encoding/json"
"fmt"
"net/netip"
"github.com/ironcore-dev/metalbond/pb"
"google.golang.org/protobuf/proto"
)
/////////////////////////////////////////////////////////////
// TYPES //
/////////////////////////////////////////////////////////////
type VNI uint32
type Destination struct {
IPVersion IPVersion
Prefix netip.Prefix
}
func (d Destination) MarshalText() (text []byte, err error) {
type x Destination
return json.Marshal(x(d))
}
func (d *Destination) UnmarshalText(text []byte) error {
type x Destination
return json.Unmarshal(text, (*x)(d))
}
func (d Destination) String() string {
return d.Prefix.String()
}
type NextHop struct {
TargetAddress netip.Addr
TargetVNI uint32
Type pb.NextHopType
NATPortRangeFrom uint16
NATPortRangeTo uint16
}
func (h NextHop) String() string {
if h.TargetVNI != 0 {
return fmt.Sprintf("%s (VNI: %d)", h.TargetAddress.String(), h.TargetVNI)
} else {
return h.TargetAddress.String()
}
}
/////////////////////////////////////////////////////////////
// ENUMS //
/////////////////////////////////////////////////////////////
type IPVersion uint8
const (
IPV4 IPVersion = 4
IPV6 IPVersion = 6
)
type ConnectionDirection uint8
const (
INCOMING ConnectionDirection = iota
OUTGOING
)
type ConnectionState uint8
func (cs ConnectionState) String() string {
switch cs {
case CONNECTING:
return "CONNECTING"
case HELLO_SENT:
return "HELLO_SENT"
case HELLO_RECEIVED:
return "HELLO_RECEIVED"
case ESTABLISHED:
return "ESTABLISHED"
case RETRY:
return "RETRY"
case CLOSED:
return "CLOSED"
default:
return "UNKNOWN"
}
}
const (
CONNECTING ConnectionState = iota
HELLO_SENT
HELLO_RECEIVED
ESTABLISHED
RETRY
CLOSED
)
type MESSAGE_TYPE uint8
const (
HELLO MESSAGE_TYPE = 1
KEEPALIVE MESSAGE_TYPE = 2
SUBSCRIBE MESSAGE_TYPE = 3
UNSUBSCRIBE MESSAGE_TYPE = 4
UPDATE MESSAGE_TYPE = 5
)
type UpdateAction uint8
const (
ADD UpdateAction = iota
REMOVE
)
type message interface {
Serialize() ([]byte, error)
}
var _ message = (*msgHello)(nil)
type msgHello struct {
KeepaliveInterval uint32
IsServer bool
}
func (m msgHello) Serialize() ([]byte, error) {
pbmsg := pb.Hello{
KeepaliveInterval: m.KeepaliveInterval,
IsServer: m.IsServer,
}
msgBytes, err := proto.Marshal(&pbmsg)
if err != nil {
return nil, fmt.Errorf("Could not marshal message: %v", err)
}
if len(msgBytes) > 1188 {
return nil, fmt.Errorf("Message too long: %d bytes > maximum of 1188 bytes", len(msgBytes))
}
return msgBytes, nil
}
var _ message = (*msgKeepalive)(nil)
type msgKeepalive struct {
}
func (msg msgKeepalive) Serialize() ([]byte, error) {
return []byte{}, nil
}
var _ message = (*msgSubscribe)(nil)
type msgSubscribe struct {
VNI VNI
}
func (msg msgSubscribe) Serialize() ([]byte, error) {
pbmsg := pb.Subscription{
Vni: uint32(msg.VNI),
}
msgBytes, err := proto.Marshal(&pbmsg)
if err != nil {
return nil, fmt.Errorf("Could not marshal message: %v", err)
}
if len(msgBytes) > 1188 {
return nil, fmt.Errorf("Message too long: %d bytes > maximum of 1188 bytes", len(msgBytes))
}
return msgBytes, nil
}
var _ message = (*msgUnsubscribe)(nil)
type msgUnsubscribe struct {
VNI VNI
}
func (msg msgUnsubscribe) Serialize() ([]byte, error) {
pbmsg := pb.Subscription{
Vni: uint32(msg.VNI),
}
msgBytes, err := proto.Marshal(&pbmsg)
if err != nil {
return nil, fmt.Errorf("Could not marshal message: %v", err)
}
if len(msgBytes) > 1188 {
return nil, fmt.Errorf("Message too long: %d bytes > maximum of 1188 bytes", len(msgBytes))
}
return msgBytes, nil
}
var _ message = (*msgUpdate)(nil)
type msgUpdate struct {
Action UpdateAction
VNI VNI
Destination Destination
NextHop NextHop
}
func (msg msgUpdate) Serialize() ([]byte, error) {
pbmsg := pb.Update{
Vni: uint32(msg.VNI),
Destination: &pb.Destination{},
NextHop: &pb.NextHop{},
}
switch msg.Action {
case ADD:
pbmsg.Action = pb.Action_ADD
case REMOVE:
pbmsg.Action = pb.Action_REMOVE
default:
return nil, fmt.Errorf("Invalid UPDATE action")
}
switch msg.Destination.IPVersion {
case IPV4:
pbmsg.Destination.IpVersion = pb.IPVersion_IPv4
case IPV6:
pbmsg.Destination.IpVersion = pb.IPVersion_IPv6
default:
return nil, fmt.Errorf("Invalid Destination IP version")
}
pbmsg.Destination.Prefix = msg.Destination.Prefix.Addr().AsSlice()
pbmsg.Destination.PrefixLength = uint32(msg.Destination.Prefix.Bits())
pbmsg.NextHop.TargetVNI = msg.NextHop.TargetVNI
pbmsg.NextHop.TargetAddress = msg.NextHop.TargetAddress.AsSlice()
pbmsg.NextHop.Type = msg.NextHop.Type
if pbmsg.NextHop.Type == pb.NextHopType_NAT {
pbmsg.NextHop.NatPortRangeFrom = uint32(msg.NextHop.NATPortRangeFrom)
pbmsg.NextHop.NatPortRangeTo = uint32(msg.NextHop.NATPortRangeTo)
}
msgBytes, err := proto.Marshal(&pbmsg)
if err != nil {
return nil, fmt.Errorf("Could not marshal message: %v", err)
}
if len(msgBytes) > 1188 {
return nil, fmt.Errorf("Message too long: %d bytes > maximum of 1188 bytes", len(msgBytes))
}
return msgBytes, nil
}
func deserializeHelloMsg(pktBytes []byte) (*msgHello, error) {
pbmsg := &pb.Hello{}
if err := proto.Unmarshal(pktBytes, pbmsg); err != nil {
return nil, fmt.Errorf("Cannot unmarshal received packet. Closing connection: %v", err)
}
return &msgHello{
KeepaliveInterval: pbmsg.KeepaliveInterval,
}, nil
}
func deserializeSubscribeMsg(pktBytes []byte) (*msgSubscribe, error) {
pbmsg := &pb.Subscription{}
if err := proto.Unmarshal(pktBytes, pbmsg); err != nil {
return nil, fmt.Errorf("Cannot unmarshal received packet. Closing connection: %v", err)
}
return &msgSubscribe{
VNI: VNI(pbmsg.Vni),
}, nil
}
func deserializeUnsubscribeMsg(pktBytes []byte) (*msgUnsubscribe, error) {
pbmsg := &pb.Subscription{}
if err := proto.Unmarshal(pktBytes, pbmsg); err != nil {
return nil, fmt.Errorf("Cannot unmarshal received packet. Closing connection: %v", err)
}
return &msgUnsubscribe{
VNI: VNI(pbmsg.Vni),
}, nil
}
func deserializeUpdateMsg(pktBytes []byte) (*msgUpdate, error) {
pbmsg := &pb.Update{}
if err := proto.Unmarshal(pktBytes, pbmsg); err != nil {
return nil, fmt.Errorf("Cannot unmarshal received packet. Closing connection: %v", err)
}
action := ADD
if pbmsg.Action == pb.Action_REMOVE {
action = REMOVE
}
if pbmsg.Destination == nil {
return nil, fmt.Errorf("Destination is nil")
}
ipversion := IPV6
if pbmsg.Destination.IpVersion == pb.IPVersion_IPv4 {
ipversion = IPV4
}
destIP, ok := netip.AddrFromSlice(pbmsg.Destination.Prefix)
if !ok {
return nil, fmt.Errorf("Invalid destination IP")
}
destination := Destination{
IPVersion: ipversion,
Prefix: netip.PrefixFrom(destIP, int(pbmsg.Destination.PrefixLength)),
}
nhAddr, ok := netip.AddrFromSlice(pbmsg.NextHop.TargetAddress)
if !ok {
return nil, fmt.Errorf("Invalid nexthop IP")
}
nexthop := NextHop{
TargetAddress: nhAddr,
TargetVNI: pbmsg.NextHop.TargetVNI,
Type: pbmsg.NextHop.Type,
NATPortRangeFrom: uint16(pbmsg.NextHop.NatPortRangeFrom),
NATPortRangeTo: uint16(pbmsg.NextHop.NatPortRangeTo),
}
return &msgUpdate{
Action: action,
VNI: VNI(pbmsg.Vni),
Destination: destination,
NextHop: nexthop,
}, nil
}