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
|
// Copyright (C) 2014,2015 Nippon Telegraph and Telephone Corporation.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
// implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package bgp
import (
"encoding/binary"
"fmt"
"math"
"net"
)
type BMPHeader struct {
Version uint8
Length uint32
Type uint8
}
const (
BMP_HEADER_SIZE = 6
)
func (msg *BMPHeader) DecodeFromBytes(data []byte) error {
msg.Version = data[0]
if data[0] != 3 {
return fmt.Errorf("error version")
}
msg.Length = binary.BigEndian.Uint32(data[1:5])
msg.Type = data[5]
return nil
}
func (msg *BMPHeader) Len() int {
return int(msg.Length)
}
type BMPPeerHeader struct {
PeerType uint8
IsPostPolicy bool
PeerDistinguisher uint64
PeerAddress net.IP
PeerAS uint32
PeerBGPID net.IP
Timestamp float64
flags uint8
}
func (msg *BMPPeerHeader) DecodeFromBytes(data []byte) error {
data = data[6:]
msg.PeerType = data[0]
flags := data[1]
msg.flags = flags
if flags&1<<6 == 1 {
msg.IsPostPolicy = true
} else {
msg.IsPostPolicy = false
}
msg.PeerDistinguisher = binary.BigEndian.Uint64(data[2:10])
if flags&1<<7 == 1 {
msg.PeerAddress = data[10:26]
} else {
msg.PeerAddress = data[10:14]
}
msg.PeerAS = binary.BigEndian.Uint32(data[26:30])
msg.PeerBGPID = data[30:34]
timestamp1 := binary.BigEndian.Uint32(data[34:38])
timestamp2 := binary.BigEndian.Uint32(data[38:42])
msg.Timestamp = float64(timestamp1) + float64(timestamp2)*math.Pow(10, -6)
return nil
}
type BMPRouteMonitoring struct {
BGPUpdate *BGPMessage
}
func (body *BMPRouteMonitoring) ParseBody(msg *BMPMessage, data []byte) error {
update, err := ParseBGPMessage(data)
if err != nil {
return err
}
body.BGPUpdate = update
return nil
}
const (
BMP_STAT_TYPE_REJECTED = iota
BMP_STAT_TYPE_DUPLICATE_PREFIX
BMP_STAT_TYPE_DUPLICATE_WITHDRAW
BMP_STAT_TYPE_INV_UPDATE_DUE_TO_CLUSTER_LIST_LOOP
BMP_STAT_TYPE_INV_UPDATE_DUE_TO_AS_PATH_LOOP
BMP_STAT_TYPE_INV_UPDATE_DUE_TO_ORIGINATOR_ID
BMP_STAT_TYPE_INV_UPDATE_DUE_TO_AS_CONFED_LOOP
BMP_STAT_TYPE_ADJ_RIB_IN
BMP_STAT_TYPE_LOC_RIB
)
type BMPStatsTLV struct {
Type uint16
Length uint16
Value uint64
}
type BMPStatisticsReport struct {
Stats []BMPStatsTLV
}
const (
BMP_PEER_DOWN_REASON_UNKNOWN = iota
BMP_PEER_DOWN_REASON_LOCAL_BGP_NOTIFICATION
BMP_PEER_DOWN_REASON_LOCAL_NO_NOTIFICATION
BMP_PEER_DOWN_REASON_REMOTE_BGP_NOTIFICATION
BMP_PEER_DOWN_REASON_REMOTE_NO_NOTIFICATION
)
type BMPPeerDownNotification struct {
Reason uint8
BGPNotification *BGPMessage
Data []byte
}
func (body *BMPPeerDownNotification) ParseBody(msg *BMPMessage, data []byte) error {
body.Reason = data[0]
data = data[1:]
if body.Reason == BMP_PEER_DOWN_REASON_LOCAL_BGP_NOTIFICATION || body.Reason == BMP_PEER_DOWN_REASON_REMOTE_BGP_NOTIFICATION {
notification, err := ParseBGPMessage(data)
if err != nil {
return err
}
body.BGPNotification = notification
} else {
body.Data = data
}
return nil
}
type BMPPeerUpNotification struct {
LocalAddress net.IP
LocalPort uint16
RemotePort uint16
SentOpenMsg *BGPMessage
ReceivedOpenMsg *BGPMessage
}
func (body *BMPPeerUpNotification) ParseBody(msg *BMPMessage, data []byte) error {
if msg.PeerHeader.flags&1<<7 == 1 {
body.LocalAddress = data[:16]
} else {
body.LocalAddress = data[:4]
}
body.LocalPort = binary.BigEndian.Uint16(data[16:18])
body.RemotePort = binary.BigEndian.Uint16(data[18:20])
data = data[20:]
sentopen, err := ParseBGPMessage(data)
if err != nil {
return err
}
body.SentOpenMsg = sentopen
data = data[body.SentOpenMsg.Header.Len:]
body.ReceivedOpenMsg, err = ParseBGPMessage(data)
if err != nil {
return err
}
return nil
}
func (body *BMPStatisticsReport) ParseBody(msg *BMPMessage, data []byte) error {
_ = binary.BigEndian.Uint32(data[0:4])
data = data[4:]
for len(data) >= 4 {
s := BMPStatsTLV{}
s.Type = binary.BigEndian.Uint16(data[0:2])
s.Length = binary.BigEndian.Uint16(data[2:4])
if s.Type == BMP_STAT_TYPE_ADJ_RIB_IN || s.Type == BMP_STAT_TYPE_LOC_RIB {
s.Value = binary.BigEndian.Uint64(data[4:12])
} else {
s.Value = uint64(binary.BigEndian.Uint32(data[4:8]))
}
body.Stats = append(body.Stats, s)
data = data[4+s.Length:]
}
return nil
}
type BMPTLV struct {
Type uint16
Length uint16
Value []byte
}
type BMPInitiation struct {
Info []BMPTLV
}
func (body *BMPInitiation) ParseBody(msg *BMPMessage, data []byte) error {
for len(data) >= 4 {
tlv := BMPTLV{}
tlv.Type = binary.BigEndian.Uint16(data[0:2])
tlv.Length = binary.BigEndian.Uint16(data[2:4])
tlv.Value = data[4 : 4+tlv.Length]
body.Info = append(body.Info, tlv)
data = data[4+tlv.Length:]
}
return nil
}
type BMPTermination struct {
Info []BMPTLV
}
func (body *BMPTermination) ParseBody(msg *BMPMessage, data []byte) error {
for len(data) >= 4 {
tlv := BMPTLV{}
tlv.Type = binary.BigEndian.Uint16(data[0:2])
tlv.Length = binary.BigEndian.Uint16(data[2:4])
tlv.Value = data[4 : 4+tlv.Length]
body.Info = append(body.Info, tlv)
data = data[4+tlv.Length:]
}
return nil
}
type BMPBody interface {
ParseBody(*BMPMessage, []byte) error
}
type BMPMessage struct {
Header BMPHeader
PeerHeader BMPPeerHeader
Body BMPBody
}
func (msg *BMPMessage) Len() int {
return int(msg.Header.Length)
}
const (
BMP_MSG_ROUTE_MONITORING = iota
BMP_MSG_STATISTICS_REPORT
BMP_MSG_PEER_DOWN_NOTIFICATION
BMP_MSG_PEER_UP_NOTIFICATION
BMP_MSG_INITIATION
BMP_MSG_TERMINATION
)
// move somewhere else
func ReadBMPMessage(conn net.Conn) (*BMPMessage, error) {
buf := make([]byte, BMP_HEADER_SIZE)
for offset := 0; offset < BMP_HEADER_SIZE; {
rlen, err := conn.Read(buf[offset:])
if err != nil {
return nil, err
}
offset += rlen
}
h := BMPHeader{}
err := h.DecodeFromBytes(buf)
if err != nil {
return nil, err
}
data := make([]byte, h.Len())
copy(data, buf)
data = data[BMP_HEADER_SIZE:]
for offset := 0; offset < h.Len()-BMP_HEADER_SIZE; {
rlen, err := conn.Read(data[offset:])
if err != nil {
return nil, err
}
offset += rlen
}
msg := &BMPMessage{Header: h}
switch msg.Header.Type {
case BMP_MSG_ROUTE_MONITORING:
msg.Body = &BMPRouteMonitoring{}
case BMP_MSG_STATISTICS_REPORT:
msg.Body = &BMPStatisticsReport{}
case BMP_MSG_PEER_DOWN_NOTIFICATION:
msg.Body = &BMPPeerDownNotification{}
case BMP_MSG_PEER_UP_NOTIFICATION:
msg.Body = &BMPPeerUpNotification{}
case BMP_MSG_INITIATION:
msg.Body = &BMPInitiation{}
case BMP_MSG_TERMINATION:
msg.Body = &BMPTermination{}
}
if msg.Header.Type != BMP_MSG_INITIATION && msg.Header.Type != BMP_MSG_INITIATION {
msg.PeerHeader.DecodeFromBytes(data)
data = data[42:]
}
err = msg.Body.ParseBody(msg, data)
if err != nil {
return nil, err
}
return msg, nil
}
func ParseBMPMessage(data []byte) (*BMPMessage, error) {
msg := &BMPMessage{}
msg.Header.DecodeFromBytes(data)
data = data[6:msg.Header.Length]
switch msg.Header.Type {
case BMP_MSG_ROUTE_MONITORING:
msg.Body = &BMPRouteMonitoring{}
case BMP_MSG_STATISTICS_REPORT:
msg.Body = &BMPStatisticsReport{}
case BMP_MSG_PEER_DOWN_NOTIFICATION:
msg.Body = &BMPPeerDownNotification{}
case BMP_MSG_PEER_UP_NOTIFICATION:
msg.Body = &BMPPeerUpNotification{}
case BMP_MSG_INITIATION:
msg.Body = &BMPInitiation{}
case BMP_MSG_TERMINATION:
msg.Body = &BMPTermination{}
}
if msg.Header.Type != BMP_MSG_INITIATION && msg.Header.Type != BMP_MSG_INITIATION {
msg.PeerHeader.DecodeFromBytes(data)
data = data[42:]
}
err := msg.Body.ParseBody(msg, data)
if err != nil {
return nil, err
}
return msg, nil
}
type MessageError struct {
TypeCode uint8
SubTypeCode uint8
Data []byte
Message string
}
func NewMessageError(typeCode, subTypeCode uint8, data []byte, msg string) error {
return &MessageError{
TypeCode: typeCode,
SubTypeCode: subTypeCode,
Data: data,
Message: msg,
}
}
func (e *MessageError) Error() string {
return e.Message
}
|