Newer
Older
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
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
package packetv3
import (
"bytes"
"encoding/binary"
"fmt"
gonet "net"
"github.com/bio-routing/bio-rd/util/checksum"
"github.com/bio-routing/bio-rd/util/decode"
"github.com/bio-routing/tflow2/convert"
"github.com/pkg/errors"
)
const OSPFProtocolNumber = 89
const expectedVersion = 3
type OSPFMessageType uint8
// OSPF message types
const (
MsgTypeUnknown OSPFMessageType = iota
MsgTypeHello
MsgTypeDatabaseDescription
MsgTypeLinkStateRequest
MsgTypeLinkStateUpdate
MsgTypeLinkStateAcknowledgment
)
type OSPFv3Message struct {
Version uint8
Type OSPFMessageType
PacketLength uint16
RouterID ID
AreaID ID
Checksum uint16
InstanceID uint8
Body Serializable
}
const OSPFv3MessageHeaderLength = 16
const OSPFv3MessagePacketLengthAtByte = 2
const OSPFv3MessageChecksumAtByte = 12
func (x *OSPFv3Message) Serialize(out *bytes.Buffer, src, dst gonet.IP) {
buf := bytes.NewBuffer(nil)
buf.WriteByte(x.Version)
buf.WriteByte(uint8(x.Type))
buf.Write(convert.Uint16Byte(x.PacketLength))
x.RouterID.Serialize(buf)
x.AreaID.Serialize(buf)
buf.Write(convert.Uint16Byte(x.Checksum))
buf.WriteByte(x.InstanceID)
buf.WriteByte(0) // 1 byte reserved
x.Body.Serialize(buf)
data := buf.Bytes()
length := uint16(len(data))
putUint16(data, OSPFv3MessagePacketLengthAtByte, length)
checksum := checksum.IPv6UpperLayerChecksum(src, dst, OSPFProtocolNumber, data, OSPFv3MessageChecksumAtByte)
putUint16(data, OSPFv3MessageChecksumAtByte, checksum)
out.Write(data)
}
func putUint16(b []byte, p int, v uint16) {
binary.BigEndian.PutUint16(b[p:p+2], v)
}
func DeserializeOSPFv3Message(buf *bytes.Buffer, src, dst gonet.IP) (*OSPFv3Message, int, error) {
pdu := &OSPFv3Message{}
data := buf.Bytes()
var readBytes int
var err error
var fields []interface{}
fields = []interface{}{
&pdu.Version,
&pdu.Type,
&pdu.PacketLength,
&pdu.RouterID,
&pdu.AreaID,
&pdu.Checksum,
&pdu.InstanceID,
new(uint8), // 1 byte reserved
}
err = decode.Decode(buf, fields)
if err != nil {
return nil, readBytes, fmt.Errorf("Unable to decode fields: %v", err)
}
readBytes += 16
if pdu.Version != expectedVersion {
return nil, readBytes, fmt.Errorf("Invalid OSPF version: %d", pdu.Version)
}
expectedChecksum := checksum.IPv6UpperLayerChecksum(src, dst, OSPFProtocolNumber, data, OSPFv3MessageChecksumAtByte)
if pdu.Checksum != expectedChecksum {
return nil, readBytes, fmt.Errorf("Checksum mismatch. Expected %#04x, got %#04x", expectedChecksum, pdu.Checksum)
}
n, err := pdu.ReadBody(buf)
if err != nil {
return nil, readBytes, errors.Wrap(err, "unable to decode message body")
}
readBytes += n
return pdu, readBytes, nil
}
func (m *OSPFv3Message) ReadBody(buf *bytes.Buffer) (int, error) {
bodyLength := m.PacketLength - OSPFv3MessageHeaderLength
var body Serializable
var readBytes int
var err error
switch m.Type {
case MsgTypeHello:
body, readBytes, err = DeserializeHello(buf, bodyLength)
case MsgTypeDatabaseDescription:
body, readBytes, err = DeserializeDatabaseDescription(buf, bodyLength)
case MsgTypeLinkStateRequest:
body, readBytes, err = DeserializeLinkStateRequestMsg(buf, bodyLength)
case MsgTypeLinkStateUpdate:
body, readBytes, err = DeserializeLinkStateUpdate(buf)
case MsgTypeLinkStateAcknowledgment:
body, readBytes, err = DeserializeLinkStateAcknowledgement(buf, bodyLength)
default:
return 0, fmt.Errorf("unknown message type: %d", m.Type)
}
if err != nil {
return 0, err
}
m.Body = body
return readBytes, nil
}
type Hello struct {
InterfaceID ID
RouterPriority uint8
Options RouterOptions
HelloInterval uint16
RouterDeadInterval uint16
DesignatedRouterID ID
BackupDesignatedRouterID ID
Neighbors []ID
}
func (x *Hello) Serialize(buf *bytes.Buffer) {
x.InterfaceID.Serialize(buf)
buf.WriteByte(x.RouterPriority)
x.Options.Serialize(buf)
buf.Write(convert.Uint16Byte(x.HelloInterval))
buf.Write(convert.Uint16Byte(x.RouterDeadInterval))
x.DesignatedRouterID.Serialize(buf)
x.BackupDesignatedRouterID.Serialize(buf)
for i := range x.Neighbors {
x.Neighbors[i].Serialize(buf)
}
}
func DeserializeHello(buf *bytes.Buffer, bodyLength uint16) (*Hello, int, error) {
pdu := &Hello{}
var readBytes int
var err error
var fields []interface{}
fields = []interface{}{
&pdu.InterfaceID,
&pdu.RouterPriority,
&pdu.Options,
&pdu.HelloInterval,
&pdu.RouterDeadInterval,
&pdu.DesignatedRouterID,
&pdu.BackupDesignatedRouterID,
}
err = decode.Decode(buf, fields)
if err != nil {
return nil, readBytes, fmt.Errorf("Unable to decode fields: %v", err)
}
readBytes += 20
for i := readBytes; i < int(bodyLength); {
id, n, err := DeserializeID(buf)
if err != nil {
return nil, readBytes, errors.Wrap(err, "unable to decode neighbor id")
}
pdu.Neighbors = append(pdu.Neighbors, id)
i += n
readBytes += n
}
return pdu, readBytes, nil
}
type DBFlags uint8
// database description flags
const (
DBFlagInit DBFlags = 1 << iota
DBFlagMore
DBFlagMS
)
type DatabaseDescription struct {
Options RouterOptions
InterfaceMTU uint16
DBFlags DBFlags
DDSequenceNumber uint32
LSAHeaders []*LSA
}
func (x *DatabaseDescription) Serialize(buf *bytes.Buffer) {
buf.WriteByte(0) // 1 byte reserved
x.Options.Serialize(buf)
buf.Write(convert.Uint16Byte(x.InterfaceMTU))
buf.WriteByte(0) // 1 byte reserved
buf.WriteByte(uint8(x.DBFlags))
buf.Write(convert.Uint32Byte(x.DDSequenceNumber))
for i := range x.LSAHeaders {
x.LSAHeaders[i].SerializeHeader(buf)
}
}
func DeserializeDatabaseDescription(buf *bytes.Buffer, bodyLength uint16) (*DatabaseDescription, int, error) {
pdu := &DatabaseDescription{}
var readBytes int
var err error
var fields []interface{}
fields = []interface{}{
new(uint8),
&pdu.Options,
&pdu.InterfaceMTU,
new(uint8),
&pdu.DBFlags,
&pdu.DDSequenceNumber,
}
err = decode.Decode(buf, fields)
if err != nil {
return nil, readBytes, fmt.Errorf("Unable to decode fields: %v", err)
}
readBytes += 12
for i := readBytes; i < int(bodyLength); {
tlv, n, err := DeserializeLSAHeader(buf)
if err != nil {
return nil, 0, errors.Wrap(err, "Unable to decode")
}
pdu.LSAHeaders = append(pdu.LSAHeaders, tlv)
i += n
readBytes += n
}
return pdu, readBytes, nil
}
type LinkStateRequestMsg struct {
Requests []LinkStateRequest
}
func (x *LinkStateRequestMsg) Serialize(buf *bytes.Buffer) {
for i := range x.Requests {
x.Requests[i].Serialize(buf)
}
}
func DeserializeLinkStateRequestMsg(buf *bytes.Buffer, bodyLength uint16) (*LinkStateRequestMsg, int, error) {
pdu := &LinkStateRequestMsg{}
var readBytes int
for readBytes < int(bodyLength) {
req, n, err := DeserializeLinkStateRequest(buf)
if err != nil {
return nil, readBytes, errors.Wrap(err, "unable to decode LinkStateRequest")
}
pdu.Requests = append(pdu.Requests, req)
readBytes += n
}
return pdu, readBytes, nil
}
type LinkStateRequest struct {
LSType LSType
LinkStateID ID
AdvertisingRouter ID
}
func (x *LinkStateRequest) Serialize(buf *bytes.Buffer) {
buf.Write([]byte{0, 0}) // 2 bytes reserved
x.LSType.Serialize(buf)
x.LinkStateID.Serialize(buf)
x.AdvertisingRouter.Serialize(buf)
}
func DeserializeLinkStateRequest(buf *bytes.Buffer) (LinkStateRequest, int, error) {
pdu := LinkStateRequest{}
var readBytes int
var err error
var fields []interface{}
fields = []interface{}{
new(uint16), // 2 bytes reserved
&pdu.LSType,
&pdu.LinkStateID,
&pdu.AdvertisingRouter,
}
err = decode.Decode(buf, fields)
if err != nil {
return pdu, readBytes, fmt.Errorf("Unable to decode fields: %v", err)
}
readBytes += 12
return pdu, readBytes, nil
}
type LinkStateUpdate struct {
LSAs []*LSA
}
func (x *LinkStateUpdate) Serialize(buf *bytes.Buffer) {
buf.Write(convert.Uint32Byte(uint32(len(x.LSAs))))
for i := range x.LSAs {
x.LSAs[i].Serialize(buf)
}
}
func DeserializeLinkStateUpdate(buf *bytes.Buffer) (*LinkStateUpdate, int, error) {
pdu := &LinkStateUpdate{}
var lsaCount uint32
if err := binary.Read(buf, binary.BigEndian, &lsaCount); err != nil {
return nil, 0, errors.Wrap(err, "unable to decode LSA count")
}
readBytes := 4
for i := 0; i < int(lsaCount); i++ {
tlv, n, err := DeserializeLSA(buf)
if err != nil {
return nil, 0, errors.Wrap(err, "unable to decode LSA")
}
pdu.LSAs = append(pdu.LSAs, tlv)
readBytes += n
}
return pdu, readBytes, nil
}
type LinkStateAcknowledgement struct {
LSAHeaders []*LSA
}
func (x *LinkStateAcknowledgement) Serialize(buf *bytes.Buffer) {
for i := range x.LSAHeaders {
x.LSAHeaders[i].SerializeHeader(buf)
}
}
func DeserializeLinkStateAcknowledgement(buf *bytes.Buffer, bodyLength uint16) (*LinkStateAcknowledgement, int, error) {
pdu := &LinkStateAcknowledgement{}
var readBytes int
for i := 0; i < int(bodyLength); {
tlv, n, err := DeserializeLSAHeader(buf)
if err != nil {
return nil, 0, errors.Wrap(err, "Unable to decode")
}
pdu.LSAHeaders = append(pdu.LSAHeaders, tlv)
i += n
readBytes += n
}
return pdu, readBytes, nil
}