forked from jwhited/bgpls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
packet_open_test.go
294 lines (251 loc) · 5.83 KB
/
packet_open_test.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
package bgpls
import (
"encoding/binary"
"math"
"net"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
type fakeOptParam struct{}
func (f *fakeOptParam) optParamType() optParamType {
return optParamType(0)
}
func (f *fakeOptParam) serialize() ([]byte, error) {
return nil, nil
}
func (f *fakeOptParam) deserialize(b []byte) error {
return nil
}
func TestDeserializeOptParams(t *testing.T) {
c := &capabilityOptParam{
caps: []capability{
&capFourOctetAs{
asn: 1,
},
},
}
b, err := c.serialize()
if err != nil {
t.Fatal(err)
}
// error on cap deserialization
b = b[:len(b)-1]
b[1] = uint8(b[1] - 1)
_, err = deserializeOptParams(b)
assert.NotNil(t, err)
// invalid param len
b[1] = uint8(math.MaxUint8)
_, err = deserializeOptParams(b)
assert.NotNil(t, err)
}
func TestCapOptParam(t *testing.T) {
c := &capabilityOptParam{}
assert.Equal(t, c.optParamType(), capabilityOptParamType)
// empty caps
_, err := c.serialize()
assert.NotNil(t, err)
// error serializing cap
// len < 2 deserializing
err = c.deserialize([]byte{0})
assert.NotNil(t, err)
// invalid param len
err = c.deserialize([]byte{0, 2, 0})
assert.NotNil(t, err)
// deserialize capUnknown
u := &capUnknown{code: 100}
b, err := u.serialize()
if err != nil {
t.Fatal(err)
}
err = c.deserialize(b)
assert.Nil(t, err)
}
func TestCapUnknown(t *testing.T) {
c := &capUnknown{}
err := c.deserialize([]byte{0, 0, 0})
assert.Nil(t, err)
_, err = c.serialize()
assert.Nil(t, err)
assert.Equal(t, c.capabilityCode(), capabilityCode(0))
}
func TestCapMultiproto(t *testing.T) {
c := &capMultiproto{}
err := c.deserialize([]byte{0})
assert.NotNil(t, err)
assert.Equal(t, c.capabilityCode(), capCodeMultiproto)
}
func TestCapFourOctetAs(t *testing.T) {
c := &capFourOctetAs{}
err := c.deserialize([]byte{0})
assert.NotNil(t, err)
assert.Equal(t, c.capabilityCode(), capCodeFourOctetAs)
}
func TestValidateOpenMessage(t *testing.T) {
// valid
o, err := newOpenMessage(1, time.Second*3, net.ParseIP("172.16.1.1"))
if err != nil {
t.Fatal(err)
}
err = validateOpenMessage(o, 1)
if err != nil {
t.Fatal(err)
}
// asn mimatch
err = validateOpenMessage(o, 2)
assert.NotNil(t, err)
// bad version
o.version = 2
err = validateOpenMessage(o, 1)
assert.NotNil(t, err)
// bad hold time
o, err = newOpenMessage(1, time.Second*2, net.ParseIP("172.16.1.1"))
if err != nil {
t.Fatal(err)
}
err = validateOpenMessage(o, 1)
assert.NotNil(t, err)
// non-cap opt param
o, err = newOpenMessage(1, time.Second*3, net.ParseIP("172.16.1.1"))
if err != nil {
t.Fatal(err)
}
o.optParams = []optParam{&fakeOptParam{}}
err = validateOpenMessage(o, 1)
assert.NotNil(t, err)
// bad bgp id
o, err = newOpenMessage(1, time.Second*3, []byte{0, 0, 0, 0})
if err != nil {
t.Fatal(err)
}
err = validateOpenMessage(o, 1)
assert.NotNil(t, err)
// bad opt params
o.holdTime = 3
o.bgpID = 1
o.optParams = nil
err = validateOpenMessage(o, 1)
assert.NotNil(t, err)
// test 4 octet asn
o, err = newOpenMessage(523456, time.Second*3, net.ParseIP("172.16.1.1"))
if err != nil {
t.Fatal(err)
}
err = validateOpenMessage(o, 523456)
assert.Nil(t, err)
// 4 octet indicated but not found in cap
o, err = newOpenMessage(uint32(asTrans), time.Second*3, net.ParseIP("172.16.1.1"))
if err != nil {
t.Fatal(err)
}
o.optParams = []optParam{
&capabilityOptParam{
caps: []capability{
&capMultiproto{
afi: BgpLsAfi,
safi: BgpLsSafi,
},
},
},
}
err = validateOpenMessage(o, 5)
assert.NotNil(t, err)
// bad peer asn in 4 octet cap
o, err = newOpenMessage(uint32(asTrans), time.Second*3, net.ParseIP("172.16.1.1"))
if err != nil {
t.Fatal(err)
}
o.optParams = []optParam{
&capabilityOptParam{
caps: []capability{
&capFourOctetAs{
asn: 6,
},
&capMultiproto{
afi: BgpLsAfi,
safi: BgpLsSafi,
},
},
},
}
err = validateOpenMessage(o, 5)
assert.NotNil(t, err)
}
func TestOpenMessage(t *testing.T) {
asn := uint16(64512)
holdTime := time.Second * 30
bgpID := net.ParseIP("172.16.0.1")
// invalid bgp id
_, err := newOpenMessage(uint32(asn), holdTime, []byte{0})
assert.NotNil(t, err)
// invalid opt params
o := &openMessage{
optParams: []optParam{
&capabilityOptParam{},
},
}
_, err = o.serialize()
assert.NotNil(t, err)
// invalid length
err = o.deserialize([]byte{0})
assert.NotNil(t, err)
// invald opt params len
o, err = newOpenMessage(uint32(asn), holdTime, bgpID)
if err != nil {
t.Fatal(err)
}
b, err := o.serialize()
if err != nil {
t.Fatal(err)
}
b[9] = uint8(1)
err = o.deserialize(b)
assert.NotNil(t, err)
o, err = newOpenMessage(uint32(asn), holdTime, bgpID)
if err != nil {
t.Fatal(err)
}
b, err = o.serialize()
if err != nil {
t.Fatal(err)
}
m, err := messagesFromBytes(b)
if err != nil {
t.Fatal(err)
}
if len(m) != 1 {
t.Fatalf("invalid number of messages deserialized: %d", len(m))
}
f, ok := m[0].(*openMessage)
if !ok {
t.Fatal("not an open message")
}
assert.Equal(t, asn, f.asn)
assert.Equal(t, uint16(holdTime/time.Second), f.holdTime)
assert.Equal(t, binary.BigEndian.Uint32(bgpID[12:16]), f.bgpID)
assert.Equal(t, f.MessageType(), OpenMessageType)
assert.Equal(t, len(o.optParams), len(f.optParams))
assert.Equal(t, f.version, uint8(4))
if len(f.optParams) != 1 {
t.Fatal("missing optional param")
}
p, ok := f.optParams[0].(*capabilityOptParam)
if !ok {
t.Fatal("not capability optional param")
}
if len(p.caps) != 2 {
t.Fatal("missing capabilities")
}
q, ok := p.caps[0].(*capFourOctetAs)
if !ok {
t.Fatal("missing four octet ASN capability")
}
assert.Equal(t, q.asn, uint32(asn))
r, ok := p.caps[1].(*capMultiproto)
if !ok {
t.Fatal("missing multiprotocol capability")
}
assert.Equal(t, r.capabilityCode(), capCodeMultiproto)
assert.Equal(t, r.afi, BgpLsAfi)
assert.Equal(t, r.safi, BgpLsSafi)
}