Newer
Older
ASNs: []uint32{
15169,
3320,
},
},
},
Next: &PathAttribute{
Optional: false,
Transitive: false,
Partial: false,
ExtendedLength: false,
Length: 4,
TypeCode: 3,
Value: bnet.IPv4FromOctets(10, 11, 12, 13),
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
Next: &PathAttribute{
Optional: false,
Transitive: false,
Partial: false,
ExtendedLength: false,
Length: 4,
TypeCode: 4,
Value: uint32(256),
Next: &PathAttribute{
Optional: false,
Transitive: false,
Partial: false,
ExtendedLength: false,
Length: 4,
TypeCode: 5,
Value: uint32(256),
Next: &PathAttribute{
Optional: false,
Transitive: false,
Partial: false,
ExtendedLength: false,
Length: 0,
TypeCode: 6,
},
},
},
},
},
},
},
},
{
// 2 withdraws with 7 path attributes (ORIGIN, ASPath, NH, MED, Local Pref, Atomic Aggregate), valid update
testNum: 10,
input: []byte{0, 5, 8, 10, 16, 192, 168,
0, 53, // Total Path Attribute Length
255, // Attribute flags
1, // Attribute Type code (ORIGIN)
0, 1, // Length
2, // INCOMPLETE
0, // Attribute flags
2, // Attribute Type code (AS Path)
12, // Length
2, // Type = AS_SEQUENCE
2, // Path Segement Length
59, 65, // AS15169
12, 248, // AS3320
1, // Type = AS_SET
2, // Path Segement Length
59, 65, // AS15169
12, 248, // AS3320
0, // Attribute flags
3, // Attribute Type code (Next Hop)
4, // Length
10, 11, 12, 13, // Next Hop
0, // Attribute flags
4, // Attribute Type code (MED)
4, // Length
0, 0, 1, 0, // MED 256
0, // Attribute flags
5, // Attribute Type code (Local Pref)
4, // Length
0, 0, 1, 0, // Local Pref 256
0, // Attribute flags
6, // Attribute Type code (Atomic Aggregate)
0, // Length
0, // Attribute flags
7, // Attribute Type code (Atomic Aggregate)
6, // Length
1, 2, // ASN
10, 11, 12, 13, // Address
8, 11, // 11.0.0.0/8
},
wantFail: false,
expected: &BGPUpdate{
WithdrawnRoutesLen: 5,
WithdrawnRoutes: &NLRI{
Prefix: bnet.NewPfx(bnet.IPv4FromOctets(10, 0, 0, 0), 8),
Prefix: bnet.NewPfx(bnet.IPv4FromOctets(192, 168, 0, 0), 16),
},
},
TotalPathAttrLen: 53,
PathAttributes: &PathAttribute{
Optional: true,
Transitive: true,
Partial: true,
ExtendedLength: true,
Length: 1,
TypeCode: 1,
Value: uint8(2),
Next: &PathAttribute{
Optional: false,
Transitive: false,
Partial: false,
ExtendedLength: false,
Length: 12,
TypeCode: 2,
ASNs: []uint32{
15169,
3320,
},
},
},
Next: &PathAttribute{
Optional: false,
Transitive: false,
Partial: false,
ExtendedLength: false,
Length: 4,
TypeCode: 3,
Value: bnet.IPv4FromOctets(10, 11, 12, 13),
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
Next: &PathAttribute{
Optional: false,
Transitive: false,
Partial: false,
ExtendedLength: false,
Length: 4,
TypeCode: 4,
Value: uint32(256),
Next: &PathAttribute{
Optional: false,
Transitive: false,
Partial: false,
ExtendedLength: false,
Length: 4,
TypeCode: 5,
Value: uint32(256),
Next: &PathAttribute{
Optional: false,
Transitive: false,
Partial: false,
ExtendedLength: false,
Length: 0,
TypeCode: 6,
Next: &PathAttribute{
Optional: false,
Transitive: false,
Partial: false,
ExtendedLength: false,
Length: 6,
TypeCode: 7,
Value: types.Aggregator{
ASN: uint16(258),
Address: bnet.IPv4FromOctets(10, 11, 12, 13).ToUint32(),
},
},
},
},
},
},
},
},
NLRI: &NLRI{
Prefix: bnet.NewPfx(bnet.IPv4FromOctets(11, 0, 0, 0), 8),
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
},
},
},
{
testNum: 11, // Incomplete Withdraw
input: []byte{
0, 5, // Length
},
wantFail: true,
},
{
testNum: 12, // Empty buffer
input: []byte{},
wantFail: true,
},
{
testNum: 13,
input: []byte{
0, 0, // No Withdraws
0, 5, // Total Path Attributes Length
},
wantFail: true,
},
{
testNum: 14,
input: []byte{
0, 0, // No Withdraws
0, 0, // Total Path Attributes Length
24, // Incomplete NLRI
},
wantFail: true,
},
{
testNum: 15, // Cut at Total Path Attributes Length
input: []byte{
0, 0, // No Withdraws
},
explicitLength: 5,
wantFail: true,
},
{
// Unknown attribute
testNum: 16,
input: []byte{
0, 0, // No Withdraws
0, 7, // Total Path Attributes Length
64, 111, 4, 1, 1, 1, 1, // Unknown attribute
},
wantFail: false,
expected: &BGPUpdate{
TotalPathAttrLen: 7,
PathAttributes: &PathAttribute{
Length: 4,
Transitive: true,
TypeCode: 111,
Value: []byte{1, 1, 1, 1},
},
},
},
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
{
// 2 withdraws with two path attributes (Communities + Origin), valid update
testNum: 17,
input: []byte{0, 5, 8, 10, 16, 192, 168,
0, 16, // Total Path Attribute Length
0, // Attribute flags
8, // Attribute Type code (Community)
8, // Length
0, 0, 1, 0, // Arbitrary Community
0, 0, 1, 1, // Arbitrary Community
255, // Attribute flags
1, // Attribute Type code (ORIGIN)
0, 1, // Length
2, // INCOMPLETE
},
wantFail: false,
expected: &BGPUpdate{
WithdrawnRoutesLen: 5,
WithdrawnRoutes: &NLRI{
Prefix: bnet.NewPfx(bnet.IPv4FromOctets(10, 0, 0, 0), 8),
Prefix: bnet.NewPfx(bnet.IPv4FromOctets(192, 168, 0, 0), 16),
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
},
},
TotalPathAttrLen: 16,
PathAttributes: &PathAttribute{
Optional: false,
Transitive: false,
Partial: false,
ExtendedLength: false,
Length: 8,
TypeCode: 8,
Value: []uint32{256, 257},
Next: &PathAttribute{
Optional: true,
Transitive: true,
Partial: true,
ExtendedLength: true,
Length: 1,
TypeCode: 1,
Value: uint8(2),
},
},
},
},
{
// 2 withdraws with two path attributes (ORIGIN + Community), invalid update (too short community)
testNum: 18,
input: []byte{0, 5, 8, 10, 16, 192, 168,
0, 11, // Total Path Attribute Length
255, // Attribute flags
1, // Attribute Type code (ORIGIN)
0, 1, // Length
2, // INCOMPLETE
0, // Attribute flags
8, // Attribute Type code (Community)
3, // Length
0, 0, 1, // Arbitrary Community
},
wantFail: true,
expected: nil,
},
{
// 2 withdraws with two path attributes (ORIGIN + Community), invalid update (too long community)
testNum: 19,
input: []byte{0, 5, 8, 10, 16, 192, 168,
0, 13, // Total Path Attribute Length
255, // Attribute flags
1, // Attribute Type code (ORIGIN)
0, 1, // Length
2, // INCOMPLETE
0, // Attribute flags
8, // Attribute Type code (Community)
5, // Length
0, 0, 1, 0, 1, // Arbitrary Community
},
wantFail: true,
expected: nil,
},
t.Run(strconv.Itoa(test.testNum), func(t *testing.T) {
buf := bytes.NewBuffer(test.input)
l := test.explicitLength
if l == 0 {
l = uint16(len(test.input))
}
msg, err := decodeUpdateMsg(buf, l, &DecodeOptions{})
if err != nil && !test.wantFail {
t.Fatalf("Unexpected error in test %d: %v", test.testNum, err)
}
if err == nil && test.wantFail {
t.Fatalf("Expected error did not happen in test %d", test.testNum)
}
if err != nil && test.wantFail {
return
}
assert.Equalf(t, test.expected, msg, "%d", test.testNum)
})
}
}
func TestDecodeMsgBody(t *testing.T) {
tests := []struct {
name string
buffer *bytes.Buffer
msgType uint8
length uint16
wantFail bool
expected interface{}
}{
{
name: "Unknown msgType",
msgType: 5,
wantFail: true,
},
}
for _, test := range tests {
res, err := decodeMsgBody(test.buffer, test.msgType, test.length, &DecodeOptions{})
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
if test.wantFail && err == nil {
t.Errorf("Expected error dit not happen in test %q", test.name)
}
if !test.wantFail && err != nil {
t.Errorf("Unexpected error in test %q: %v", test.name, err)
}
assert.Equal(t, test.expected, res)
}
}
func TestDecodeOpenMsg(t *testing.T) {
tests := []test{
{
// Valid message
testNum: 1,
input: []byte{4, 1, 1, 0, 15, 10, 20, 30, 40, 0},
wantFail: false,
expected: &BGPOpen{
Version: 4,
OptParams: make([]OptParam, 0),
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
},
},
{
// Invalid Version
testNum: 2,
input: []byte{3, 1, 1, 0, 15, 10, 10, 10, 11, 0},
wantFail: true,
},
}
genericTest(_decodeOpenMsg, tests, t)
}
func TestDecodeHeader(t *testing.T) {
tests := []test{
{
// Valid header
testNum: 1,
input: []byte{255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 0, 19, KeepaliveMsg},
wantFail: false,
expected: &BGPHeader{
Length: 19,
Type: KeepaliveMsg,
},
},
{
// Invalid length too short
testNum: 2,
input: []byte{255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 0, 18, KeepaliveMsg},
wantFail: true,
expected: &BGPHeader{
Length: 18,
Type: KeepaliveMsg,
},
},
{
// Invalid length too long
testNum: 3,
input: []byte{255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 16, 1, KeepaliveMsg},
wantFail: true,
expected: &BGPHeader{
Length: 18,
Type: KeepaliveMsg,
},
},
{
// Invalid message type 5
testNum: 4,
input: []byte{255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 0, 19, 5},
wantFail: true,
expected: &BGPHeader{
Length: 19,
Type: KeepaliveMsg,
},
},
{
// Invalid message type 0
testNum: 5,
input: []byte{255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 0, 19, 0},
wantFail: true,
expected: &BGPHeader{
Length: 19,
Type: KeepaliveMsg,
},
},
{
// Invalid marker
testNum: 6,
input: []byte{1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 19, KeepaliveMsg},
wantFail: true,
expected: &BGPHeader{
Length: 19,
Type: KeepaliveMsg,
},
},
{
// Incomplete Marker
testNum: 7,
input: []byte{255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255},
wantFail: true,
},
{
// Incomplete Header
testNum: 8,
input: []byte{255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 0, 19},
wantFail: true,
},
{
// Empty input
testNum: 9,
input: []byte{},
wantFail: true,
},
}
for _, test := range tests {
buf := bytes.NewBuffer(test.input)
res, err := decodeHeader(buf)
if err != nil {
if test.wantFail {
continue
}
t.Errorf("Unexpected failure for test %d: %v", test.testNum, err)
continue
}
if test.wantFail {
t.Errorf("Unexpected success fo test %d", test.testNum)
}
assert.Equal(t, test.expected, res)
}
}
func genericTest(f decodeFunc, tests []test, t *testing.T) {
for _, test := range tests {
buf := bytes.NewBuffer(test.input)
msg, err := f(buf)
if err != nil && !test.wantFail {
t.Errorf("Unexpected error in test %d: %v", test.testNum, err)
continue
}
if err == nil && test.wantFail {
t.Errorf("Expected error did not happen in test %d", test.testNum)
continue
}
if err != nil && test.wantFail {
continue
}
if msg == nil {
t.Errorf("Unexpected nil result in test %d. Expected: %v", test.testNum, test.expected)
continue
}
assert.Equalf(t, test.expected, msg, "%d", test.testNum)
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
}
}
func TestIsValidIdentifier(t *testing.T) {
tests := []struct {
name string
input uint32
expected bool
}{
{
name: "Valid #1",
input: convert.Uint32b([]byte{8, 8, 8, 8}),
expected: true,
},
{
name: "Multicast",
input: convert.Uint32b([]byte{239, 8, 8, 8}),
expected: false,
},
{
name: "Loopback",
input: convert.Uint32b([]byte{127, 8, 8, 8}),
expected: false,
},
{
name: "First byte 0",
input: convert.Uint32b([]byte{0, 8, 8, 8}),
expected: false,
},
{
name: "All bytes 255",
input: convert.Uint32b([]byte{255, 255, 255, 255}),
expected: false,
},
}
for _, test := range tests {
res := isValidIdentifier(test.input)
assert.Equal(t, test.expected, res)
}
}
func TestValidateOpenMessage(t *testing.T) {
tests := []struct {
name string
input *BGPOpen
wantFail bool
}{
{
name: "Valid #1",
input: &BGPOpen{
Version: 4,
BGPIdentifier: convert.Uint32b([]byte{8, 8, 8, 8}),
},
wantFail: false,
},
{
name: "Invalid Identifier",
input: &BGPOpen{
Version: 4,
BGPIdentifier: convert.Uint32b([]byte{0, 8, 8, 8}),
},
wantFail: true,
},
}
for _, test := range tests {
res := validateOpen(test.input)
if res != nil {
if test.wantFail {
continue
}
t.Errorf("Unexpected failure for test %q: %v", test.name, res)
continue
}
if test.wantFail {
t.Errorf("Unexpected success for test %q", test.name)
}
}
}
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
func TestDecodeOptParams(t *testing.T) {
tests := []struct {
name string
input []byte
wantFail bool
expected []OptParam
}{
{
name: "Add path capability",
input: []byte{
2, // Type
6, // Length
69, // Code
4, // Length
0, 1, // AFI
1, // SAFI
3, // Send/Receive
},
wantFail: false,
expected: []OptParam{
{
Type: 2,
Length: 6,
Value: Capabilities{
{
Code: 69,
Length: 4,
Value: AddPathCapability{
AFI: 1,
SAFI: 1,
SendReceive: 3,
},
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
},
},
},
},
},
}
for _, test := range tests {
buf := bytes.NewBuffer(test.input)
res, err := decodeOptParams(buf, uint8(len(test.input)))
if err != nil {
if test.wantFail {
continue
}
t.Errorf("Unexpected failure for test %q: %v", test.name, err)
continue
}
if test.wantFail {
t.Errorf("Unexpected success for test %q", test.name)
continue
}
assert.Equal(t, test.expected, res)
}
}
func TestDecodeCapability(t *testing.T) {
tests := []struct {
name string
input []byte
expected Capability
wantFail bool
}{
{
name: "Add Path",
input: []byte{69, 4, 0, 1, 1, 3},
expected: Capability{
Code: 69,
Length: 4,
Value: AddPathCapability{
AFI: 1,
SAFI: 1,
SendReceive: 3,
},
},
wantFail: false,
},
{
name: "MP Capability (IPv6)",
input: []byte{1, 4, 0, 2, 0, 1},
expected: Capability{
Code: MultiProtocolCapabilityCode,
Length: 4,
Value: MultiProtocolCapability{
AFI: IPv6AFI,
SAFI: UnicastSAFI,
},
},
wantFail: false,
},
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
{
name: "Fail",
input: []byte{69, 4, 0, 1},
wantFail: true,
},
}
for _, test := range tests {
cap, err := decodeCapability(bytes.NewBuffer(test.input))
if err != nil {
if test.wantFail {
continue
}
t.Errorf("Unexpected failure for test %q: %v", test.name, err)
continue
}
if test.wantFail {
t.Errorf("Unexpected success for test %q", err)
continue
}
assert.Equal(t, test.expected, cap)
}
}
func TestDecodeAddPathCapability(t *testing.T) {
tests := []struct {
name string
input []byte
expected AddPathCapability
wantFail bool
}{
{
name: "ok",
input: []byte{0, 1, 1, 3},
wantFail: false,
expected: AddPathCapability{
AFI: 1,
SAFI: 1,
SendReceive: 3,
},
},
{
name: "Incomplete",
input: []byte{0, 1, 1},
wantFail: true,
},
}
for _, test := range tests {
buf := bytes.NewBuffer(test.input)
cap, err := decodeAddPathCapability(buf)
if err != nil {
if test.wantFail {
continue
}
t.Errorf("Unexpected failure for test %q: %v", test.name, err)
continue
}
if test.wantFail {
t.Errorf("Unexpected success for test %q", test.name)
continue
}
assert.Equal(t, test.expected, cap)
}
}