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
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
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
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
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
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
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
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
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
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
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
1549
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
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
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
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
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
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
|
/* BGP attributes management routines.
Copyright (C) 1996, 97, 98, 1999 Kunihiro Ishiguro
This file is part of GNU Zebra.
GNU Zebra is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2, or (at your option) any
later version.
GNU Zebra is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Zebra; see the file COPYING. If not, write to the Free
Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA. */
#include <zebra.h>
#include "linklist.h"
#include "prefix.h"
#include "memory.h"
#include "vector.h"
#include "vty.h"
#include "stream.h"
#include "log.h"
#include "hash.h"
#include "jhash.h"
#include "bgpd/bgpd.h"
#include "bgpd/bgp_peer.h"
#include "bgpd/bgp_attr.h"
#include "bgpd/bgp_route.h"
#include "bgpd/bgp_aspath.h"
#include "bgpd/bgp_community.h"
#include "bgpd/bgp_debug.h"
#include "bgpd/bgp_packet.h"
#include "bgpd/bgp_ecommunity.h"
#include "bgpd/bgp_names.h"
#if 0
/* Attribute strings for logging. */
static const struct message attr_str [] =
{
{ BGP_ATTR_ORIGIN, "ORIGIN" },
{ BGP_ATTR_AS_PATH, "AS_PATH" },
{ BGP_ATTR_NEXT_HOP, "NEXT_HOP" },
{ BGP_ATTR_MULTI_EXIT_DISC, "MULTI_EXIT_DISC" },
{ BGP_ATTR_LOCAL_PREF, "LOCAL_PREF" },
{ BGP_ATTR_ATOMIC_AGGREGATE, "ATOMIC_AGGREGATE" },
{ BGP_ATTR_AGGREGATOR, "AGGREGATOR" },
{ BGP_ATTR_COMMUNITIES, "COMMUNITY" },
{ BGP_ATTR_ORIGINATOR_ID, "ORIGINATOR_ID" },
{ BGP_ATTR_CLUSTER_LIST, "CLUSTER_LIST" },
{ BGP_ATTR_DPA, "DPA" },
{ BGP_ATTR_ADVERTISER, "ADVERTISER" } ,
{ BGP_ATTR_RCID_PATH, "RCID_PATH" },
{ BGP_ATTR_MP_REACH_NLRI, "MP_REACH_NLRI" },
{ BGP_ATTR_MP_UNREACH_NLRI, "MP_UNREACH_NLRI" },
{ BGP_ATTR_EXT_COMMUNITIES, "EXT_COMMUNITIES" },
{ BGP_ATTR_AS4_PATH, "AS4_PATH" },
{ BGP_ATTR_AS4_AGGREGATOR, "AS4_AGGREGATOR" },
{ BGP_ATTR_AS_PATHLIMIT, "AS_PATHLIMIT" },
};
static const int attr_str_max = sizeof(attr_str)/sizeof(attr_str[0]);
#endif
static const struct message attr_flag_str[] =
{
{ BGP_ATTR_FLAG_OPTIONAL, "Optional" },
{ BGP_ATTR_FLAG_TRANS, "Transitive" },
{ BGP_ATTR_FLAG_PARTIAL, "Partial" },
{ BGP_ATTR_FLAG_EXTLEN, "Extended Length" },
};
static const size_t attr_flag_str_max =
sizeof (attr_flag_str) / sizeof (attr_flag_str[0]);
/* Flag check table
*
* For each known attribute: mask = flags we care about
* req = state required for those flags
*/
#define BGP_ATTR_FLAGS_WELL_KNOWN \
.mask = BGP_ATTR_FLAG_OPTIONAL | BGP_ATTR_FLAG_TRANS | BGP_ATTR_FLAG_PARTIAL,\
.req = 0 | BGP_ATTR_FLAG_TRANS | 0
#define BGP_ATTR_FLAGS_OPTIONAL_NON_TRANS \
.mask = BGP_ATTR_FLAG_OPTIONAL | BGP_ATTR_FLAG_TRANS | BGP_ATTR_FLAG_PARTIAL,\
.req = BGP_ATTR_FLAG_OPTIONAL | 0 | 0
#define BGP_ATTR_FLAGS_OPTIONAL_TRANS \
.mask = BGP_ATTR_FLAG_OPTIONAL | BGP_ATTR_FLAG_TRANS | 0,\
.req = BGP_ATTR_FLAG_OPTIONAL | BGP_ATTR_FLAG_TRANS | 0
enum { attr_flags_check_limit = 32 } ;
typedef const struct
{
uint8_t mask ;
uint8_t req ;
} attr_flags_check_t ;
static attr_flags_check_t attr_flags_check_array[attr_flags_check_limit] =
{
[0 ] = { 0 },
[BGP_ATTR_ORIGIN ] = { BGP_ATTR_FLAGS_WELL_KNOWN },
[BGP_ATTR_AS_PATH ] = { BGP_ATTR_FLAGS_WELL_KNOWN },
[BGP_ATTR_NEXT_HOP ] = { BGP_ATTR_FLAGS_WELL_KNOWN },
[BGP_ATTR_MULTI_EXIT_DISC ] = { BGP_ATTR_FLAGS_OPTIONAL_NON_TRANS },
[BGP_ATTR_LOCAL_PREF ] = { BGP_ATTR_FLAGS_WELL_KNOWN },
[BGP_ATTR_ATOMIC_AGGREGATE ] = { BGP_ATTR_FLAGS_WELL_KNOWN },
[BGP_ATTR_AGGREGATOR ] = { BGP_ATTR_FLAGS_OPTIONAL_TRANS },
[BGP_ATTR_COMMUNITIES ] = { BGP_ATTR_FLAGS_OPTIONAL_TRANS },
[BGP_ATTR_ORIGINATOR_ID ] = { BGP_ATTR_FLAGS_OPTIONAL_NON_TRANS },
[BGP_ATTR_CLUSTER_LIST ] = { BGP_ATTR_FLAGS_OPTIONAL_NON_TRANS },
[BGP_ATTR_DPA ] = { BGP_ATTR_FLAGS_OPTIONAL_TRANS },
[BGP_ATTR_ADVERTISER ] = { BGP_ATTR_FLAGS_OPTIONAL_NON_TRANS },
[BGP_ATTR_RCID_PATH ] = { BGP_ATTR_FLAGS_OPTIONAL_NON_TRANS },
[BGP_ATTR_MP_REACH_NLRI ] = { BGP_ATTR_FLAGS_OPTIONAL_NON_TRANS },
[BGP_ATTR_MP_UNREACH_NLRI ] = { BGP_ATTR_FLAGS_OPTIONAL_NON_TRANS },
[BGP_ATTR_EXT_COMMUNITIES ] = { BGP_ATTR_FLAGS_OPTIONAL_TRANS },
[BGP_ATTR_AS4_PATH ] = { BGP_ATTR_FLAGS_OPTIONAL_TRANS },
[BGP_ATTR_AS4_AGGREGATOR ] = { BGP_ATTR_FLAGS_OPTIONAL_TRANS },
[BGP_ATTR_AS_PATHLIMIT ] = { BGP_ATTR_FLAGS_OPTIONAL_TRANS },
} ;
static struct hash *cluster_hash;
static void *
cluster_hash_alloc (void *p)
{
struct cluster_list * val = (struct cluster_list *) p;
struct cluster_list *cluster;
cluster = XMALLOC (MTYPE_CLUSTER, sizeof (struct cluster_list));
cluster->length = val->length;
if (cluster->length)
{
cluster->list = XMALLOC (MTYPE_CLUSTER_VAL, val->length);
memcpy (cluster->list, val->list, val->length);
}
else
cluster->list = NULL;
cluster->refcnt = 0;
return cluster;
}
/* Cluster list related functions. */
static struct cluster_list *
cluster_parse (struct in_addr * pnt, int length)
{
struct cluster_list tmp;
struct cluster_list *cluster;
tmp.length = length;
tmp.list = pnt;
cluster = hash_get (cluster_hash, &tmp, cluster_hash_alloc);
cluster->refcnt++;
return cluster;
}
int
cluster_loop_check (struct cluster_list *cluster, struct in_addr originator)
{
int i;
for (i = 0; i < cluster->length / 4; i++)
if (cluster->list[i].s_addr == originator.s_addr)
return 1;
return 0;
}
static unsigned int
cluster_hash_key_make (void *p)
{
const struct cluster_list *cluster = p;
return jhash(cluster->list, cluster->length, 0);
}
static int
cluster_hash_cmp (const void *p1, const void *p2)
{
const struct cluster_list * cluster1 = p1;
const struct cluster_list * cluster2 = p2;
return (cluster1->length == cluster2->length &&
memcmp (cluster1->list, cluster2->list, cluster1->length) == 0);
}
static void
cluster_free (struct cluster_list *cluster)
{
if (cluster->list)
XFREE (MTYPE_CLUSTER_VAL, cluster->list);
XFREE (MTYPE_CLUSTER, cluster);
}
#if 0
static struct cluster_list *
cluster_dup (struct cluster_list *cluster)
{
struct cluster_list *new;
new = XCALLOC (MTYPE_CLUSTER, sizeof (struct cluster_list));
new->length = cluster->length;
if (cluster->length)
{
new->list = XMALLOC (MTYPE_CLUSTER_VAL, cluster->length);
memcpy (new->list, cluster->list, cluster->length);
}
else
new->list = NULL;
return new;
}
#endif
static struct cluster_list *
cluster_intern (struct cluster_list *cluster)
{
struct cluster_list *find;
find = hash_get (cluster_hash, cluster, cluster_hash_alloc);
find->refcnt++;
return find;
}
void
cluster_unintern (struct cluster_list *cluster)
{
if (cluster->refcnt)
cluster->refcnt--;
if (cluster->refcnt == 0)
{
hash_release (cluster_hash, cluster);
cluster_free (cluster);
}
}
static void
cluster_init (void)
{
cluster_hash = hash_create (cluster_hash_key_make, cluster_hash_cmp);
}
static void
cluster_finish (void)
{
hash_free (cluster_hash);
cluster_hash = NULL;
}
/* Unknown transit attribute. */
static struct hash *transit_hash;
static void
transit_free (struct transit *transit)
{
if (transit->val)
XFREE (MTYPE_TRANSIT_VAL, transit->val);
XFREE (MTYPE_TRANSIT, transit);
}
static void *
transit_hash_alloc (void *p)
{
/* Transit structure is already allocated. */
return p;
}
static struct transit *
transit_intern (struct transit *transit)
{
struct transit *find;
find = hash_get (transit_hash, transit, transit_hash_alloc);
if (find != transit)
transit_free (transit);
find->refcnt++;
return find;
}
void
transit_unintern (struct transit *transit)
{
if (transit->refcnt)
transit->refcnt--;
if (transit->refcnt == 0)
{
hash_release (transit_hash, transit);
transit_free (transit);
}
}
static unsigned int
transit_hash_key_make (void *p)
{
const struct transit * transit = p ;
return jhash(transit->val, transit->length, 0);
}
static int
transit_hash_cmp (const void *p1, const void *p2)
{
const struct transit * transit1 = p1;
const struct transit * transit2 = p2;
return (transit1->length == transit2->length &&
memcmp (transit1->val, transit2->val, transit1->length) == 0);
}
static void
transit_init (void)
{
transit_hash = hash_create (transit_hash_key_make, transit_hash_cmp);
}
static void
transit_finish (void)
{
hash_free (transit_hash);
transit_hash = NULL;
}
/* Attribute hash routines. */
static struct hash *attrhash;
static struct attr_extra *
bgp_attr_extra_new (void)
{
return XCALLOC (MTYPE_ATTR_EXTRA, sizeof (struct attr_extra));
}
void
bgp_attr_extra_free (struct attr *attr)
{
if (attr->extra)
{
XFREE (MTYPE_ATTR_EXTRA, attr->extra);
attr->extra = NULL;
}
}
struct attr_extra *
bgp_attr_extra_get (struct attr *attr)
{
if (!attr->extra)
attr->extra = bgp_attr_extra_new();
return attr->extra;
}
/* Shallow copy of an attribute
* Though, not so shallow that it doesn't copy the contents
* of the attr_extra pointed to by 'extra'
*/
void
bgp_attr_dup (struct attr *new, struct attr *orig)
{
*new = *orig;
if (orig->extra)
{
new->extra = bgp_attr_extra_new();
*new->extra = *orig->extra;
}
}
unsigned long int
attr_count (void)
{
return attrhash->count;
}
unsigned long int
attr_unknown_count (void)
{
return transit_hash->count;
}
unsigned int
attrhash_key_make (void *p)
{
const struct attr * attr = (struct attr *) p;
uint32_t key = 0;
#define MIX(val) key = jhash_1word(val, key)
MIX(attr->origin);
MIX(attr->nexthop.s_addr);
MIX(attr->med);
MIX(attr->local_pref);
if (attr->extra)
{
MIX(attr->extra->aggregator_as);
MIX(attr->extra->aggregator_addr.s_addr);
MIX(attr->extra->weight);
MIX(attr->extra->mp_nexthop_global_in.s_addr);
}
if (attr->aspath)
MIX(aspath_key_make (attr->aspath));
if (attr->community)
MIX(community_hash_make (attr->community));
if (attr->extra)
{
if (attr->extra->ecommunity)
MIX(ecommunity_hash_make (attr->extra->ecommunity));
if (attr->extra->cluster)
MIX(cluster_hash_key_make (attr->extra->cluster));
if (attr->extra->transit)
MIX(transit_hash_key_make (attr->extra->transit));
#ifdef HAVE_IPV6
MIX(attr->extra->mp_nexthop_len);
key = jhash(attr->extra->mp_nexthop_global.s6_addr, 16, key);
key = jhash(attr->extra->mp_nexthop_local.s6_addr, 16, key);
#endif /* HAVE_IPV6 */
}
return key;
}
int
attrhash_cmp (const void *p1, const void *p2)
{
const struct attr * attr1 = p1;
const struct attr * attr2 = p2;
if (attr1->flag == attr2->flag
&& attr1->origin == attr2->origin
&& attr1->nexthop.s_addr == attr2->nexthop.s_addr
&& attr1->aspath == attr2->aspath
&& attr1->community == attr2->community
&& attr1->med == attr2->med
&& attr1->local_pref == attr2->local_pref)
{
const struct attr_extra *ae1 = attr1->extra;
const struct attr_extra *ae2 = attr2->extra;
if (ae1 && ae2
&& ae1->aggregator_as == ae2->aggregator_as
&& ae1->aggregator_addr.s_addr == ae2->aggregator_addr.s_addr
&& ae1->weight == ae2->weight
#ifdef HAVE_IPV6
&& ae1->mp_nexthop_len == ae2->mp_nexthop_len
&& IPV6_ADDR_SAME (&ae1->mp_nexthop_global, &ae2->mp_nexthop_global)
&& IPV6_ADDR_SAME (&ae1->mp_nexthop_local, &ae2->mp_nexthop_local)
#endif /* HAVE_IPV6 */
&& IPV4_ADDR_SAME (&ae1->mp_nexthop_global_in, &ae2->mp_nexthop_global_in)
&& ae1->ecommunity == ae2->ecommunity
&& ae1->cluster == ae2->cluster
&& ae1->transit == ae2->transit)
return 1;
else if (ae1 || ae2)
return 0;
/* neither attribute has extra attributes, so they're same */
return 1;
}
else
return 0;
}
static void
attrhash_init (void)
{
attrhash = hash_create (attrhash_key_make, attrhash_cmp);
}
static void
attrhash_finish (void)
{
hash_free (attrhash);
attrhash = NULL;
}
static void
attr_show_all_iterator (struct hash_backet *backet, struct vty *vty)
{
struct attr *attr = backet->data;
vty_out (vty, "attr[%ld] nexthop %s%s", attr->refcnt,
safe_inet_ntoa (attr->nexthop), VTY_NEWLINE);
}
void
attr_show_all (struct vty *vty)
{
hash_iterate (attrhash,
(void (*)(struct hash_backet *, void *))
attr_show_all_iterator,
vty);
}
static void *
bgp_attr_hash_alloc (void *p)
{
struct attr * val = (struct attr *) p;
struct attr *attr;
attr = XMALLOC (MTYPE_ATTR, sizeof (struct attr));
*attr = *val;
if (val->extra)
{
attr->extra = bgp_attr_extra_new ();
*attr->extra = *val->extra;
}
attr->refcnt = 0;
return attr;
}
/*------------------------------------------------------------------------------
* Internet argument attribute.
*
* 1. "internalise" and increase reference count for each of:
*
* attr->aspath
* attr->community
* attr->extra->ecommunity
* attr->extra->cluster
* attr->extra->transit
*
* Noting that the reference count for each of these is zero if they have not
* yet been internalised.
*
* Each of these pointers is updated to point at either a new entry in the
* relevant attribute store, or at the existing entry.
*
* 2. "internalise" the complete attribute object and increase its reference
* count.
*
* If the attribute collection is new, then this function returns a pointer
* to a brand new attribute object, complete with a copy of the attr->extra.
*
* If the attribute collection is not new, then this function returns a
* pointer to the stored attribute object.
*
* In any event, the pointer returned != pointer passed in.
*
* NB: the incoming attr reference count is ignored.
*
* Note that the original attr object remains with its own attr->extra object.
*/
struct attr *
bgp_attr_intern (struct attr *attr)
{
struct attr *find;
/* Intern referenced structure. */
if (attr->aspath)
{
if (! attr->aspath->refcnt)
attr->aspath = aspath_intern (attr->aspath);
else
attr->aspath->refcnt++;
}
if (attr->community)
{
if (! attr->community->refcnt)
attr->community = community_intern (attr->community);
else
attr->community->refcnt++;
}
if (attr->extra)
{
struct attr_extra *attre = attr->extra;
if (attre->ecommunity)
{
if (! attre->ecommunity->refcnt)
attre->ecommunity = ecommunity_intern (attre->ecommunity);
else
attre->ecommunity->refcnt++;
}
if (attre->cluster)
{
if (! attre->cluster->refcnt)
attre->cluster = cluster_intern (attre->cluster);
else
attre->cluster->refcnt++;
}
if (attre->transit)
{
if (! attre->transit->refcnt)
attre->transit = transit_intern (attre->transit);
else
attre->transit->refcnt++;
}
}
find = (struct attr *) hash_get (attrhash, attr, bgp_attr_hash_alloc);
find->refcnt++;
return find;
}
/* Make network statement's attribute.
*
* All elements are interned, but not the attribute set itself.
*/
struct attr *
bgp_attr_default_set (struct attr *attr, u_char origin)
{
memset (attr, 0, sizeof (struct attr));
bgp_attr_extra_get (attr);
attr->origin = origin;
attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_ORIGIN);
attr->aspath = aspath_empty ();
attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_AS_PATH);
attr->extra->weight = BGP_ATTR_DEFAULT_WEIGHT;
attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_NEXT_HOP);
#ifdef HAVE_IPV6
attr->extra->mp_nexthop_len = IPV6_MAX_BYTELEN;
#endif
return attr;
}
/* Make network statement's attribute. */
struct attr *
bgp_attr_default_intern (u_char origin)
{
struct attr attr;
struct attr *new;
memset (&attr, 0, sizeof (struct attr));
bgp_attr_extra_get (&attr);
bgp_attr_default_set(&attr, origin);
new = bgp_attr_intern (&attr);
bgp_attr_extra_free (&attr);
aspath_unintern (&new->aspath);
return new;
}
struct attr *
bgp_attr_aggregate_intern (struct bgp *bgp, u_char origin,
struct aspath *aspath,
struct community *community, int as_set)
{
struct attr attr;
struct attr *new;
struct attr_extra *attre;
memset (&attr, 0, sizeof (struct attr));
attre = bgp_attr_extra_get (&attr);
/* Origin attribute. */
attr.origin = origin;
attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_ORIGIN);
/* AS path attribute. */
if (aspath)
attr.aspath = aspath_intern (aspath);
else
attr.aspath = aspath_empty ();
attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_AS_PATH);
/* Next hop attribute. */
attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_NEXT_HOP);
if (community)
{
attr.community = community;
attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_COMMUNITIES);
}
attre->weight = BGP_ATTR_DEFAULT_WEIGHT;
#ifdef HAVE_IPV6
attre->mp_nexthop_len = IPV6_MAX_BYTELEN;
#endif
if (! as_set)
attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_ATOMIC_AGGREGATE);
attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_AGGREGATOR);
if (CHECK_FLAG (bgp->config, BGP_CONFIG_CONFEDERATION))
attre->aggregator_as = bgp->confed_id;
else
attre->aggregator_as = bgp->as;
attre->aggregator_addr = bgp->router_id;
new = bgp_attr_intern (&attr);
bgp_attr_extra_free (&attr);
aspath_unintern (&new->aspath);
return new;
}
/* Unintern just the sub-components of the attr, but not the attr */
extern void
bgp_attr_unintern_sub (struct attr *attr, bool free_extra)
{
/* aspath refcount shoud be decrement. */
if (attr->aspath)
aspath_unintern (&attr->aspath);
UNSET_FLAG(attr->flag, BGP_ATTR_AS_PATH);
if (attr->community)
community_unintern (&attr->community);
UNSET_FLAG(attr->flag, BGP_ATTR_COMMUNITIES);
if (attr->extra)
{
if (attr->extra->ecommunity)
ecommunity_unintern (&attr->extra->ecommunity);
UNSET_FLAG(attr->flag, BGP_ATTR_EXT_COMMUNITIES);
if (attr->extra->cluster)
cluster_unintern (attr->extra->cluster);
UNSET_FLAG(attr->flag, BGP_ATTR_CLUSTER_LIST);
if (attr->extra->transit)
transit_unintern (attr->extra->transit);
if (free_extra)
bgp_attr_extra_free (attr) ;
}
}
/*------------------------------------------------------------------------------
* Free bgp attribute and aspath.
*
* For all the elements of the given attributes:
*
* if the reference count != 0, decrement it
* if the reference count is now zero, remove from hash table and discard
* stored value.
*
* For the attribute object itself:
*
* decrement the reference count
* if the reference count is now zero, remove from hash table and discard
* stored value.
*
* So... do NOT do this to a set of attributes whose elements have not been
* interned !
*
* Can do this to an attribute object which has not been interned, because its
* reference count SHOULD be zero.
*/
void
bgp_attr_unintern (struct attr **attr)
{
struct attr tmp ;
struct attr_extra tmp_extra ;
/* Take copy of attributes so that can unintern sub-objects */
tmp = *(*attr);
if ((*attr)->extra)
{
tmp.extra = &tmp_extra ;
memcpy (tmp.extra, (*attr)->extra, sizeof (struct attr_extra));
}
/* If reference becomes zero then free attribute object. */
if ((*attr)->refcnt != 0)
{
--(*attr)->refcnt ;
if ((*attr)->refcnt == 0)
{
struct attr *ret;
ret = hash_release (attrhash, *attr);
assert (ret != NULL);
bgp_attr_extra_free (*attr);
XFREE (MTYPE_ATTR, *attr); /* sets *attr = NULL */
} ;
} ;
/* Now the sub-objects
*/
bgp_attr_unintern_sub (&tmp, false /* don't free extra */) ;
}
/*------------------------------------------------------------------------------
* Release any element whose reference count is zero.
*
* This is used where attributes have been replaced, but not internalised, and
* which are no longer of interest -- typically where a route-map returns DENY.
*/
void
bgp_attr_flush (struct attr *attr)
{
if (attr->aspath && (attr->aspath->refcnt == 0))
aspath_free (attr->aspath);
if (attr->community && (attr->community->refcnt == 0))
community_free (attr->community);
if (attr->extra)
{
struct attr_extra *attre = attr->extra;
if (attre->ecommunity && (attre->ecommunity->refcnt == 0))
ecommunity_free (&attre->ecommunity);
if (attre->cluster && (attre->cluster->refcnt == 0))
cluster_free (attre->cluster);
if (attre->transit && (attre->transit->refcnt == 0))
transit_free (attre->transit);
}
}
/*------------------------------------------------------------------------------
* Get address of start of attribute (byte 0 of header) and total length of
* same.
*
* Uses the s->startp planted for this purpose.
*
* NB: if the s->startp is at or beyond s->endp, then it is "unset", and we
* return NULL and zero length.
*
* Otherwise, at this point the entire attribute is expected to be within
* the bounds of the stream.
*/
static byte*
bgp_attr_raw(struct peer *peer, ulen* total)
{
struct stream* s ;
byte* raw ;
ulen len ;
ulen startp ;
s = BGP_INPUT(peer) ;
startp = stream_get_startp(s) ;
if (startp >= stream_get_endp(s))
{
*total = 0 ;
return NULL ;
} ;
raw = stream_get_pnt_to(s, startp) ;
len = raw[2] ;
if (CHECK_FLAG (raw[0], BGP_ATTR_FLAG_EXTLEN))
len = (len << 8) + 4 ;
else
len = len + 3 ;
qassert((raw + len) <= stream_get_pnt_to(s, stream_get_endp(s))) ;
*total = len ;
return raw ;
} ;
/* Implement draft-ietf-idr-optional-transitive behaviour and
* avoid resetting sessions for malformed attributes which are
* are partial/optional and hence where the error likely was not
* introduced by the sending neighbour.
*
* NB: if sends a notification, then picks the data to send out of the
* BGP_INPUT(peer), assuming that the s->startp has been set to the start
* of the attribute.
*
* Assumes that the attribute header and the entire length of the attribute
* is within the current stream -- for if not, the attribute would have
* been rejected well before we get to this point.
*/
static bgp_attr_parse_ret_t
bgp_attr_malformed (restrict bgp_attr_parser_args args, u_char subcode)
{
byte* data ;
uint data_len ;
/* Only relax error handling for eBGP peers */
if (peer_sort (args->peer) == BGP_PEER_EBGP)
{
switch (args->type)
{
/* where an optional attribute is inconsequential, e.g. it does not
* affect route selection, and can be safely ignored then any such
* attributes which are malformed should just be ignored and the
* route processed as normal.
*/
case BGP_ATTR_AS4_AGGREGATOR:
case BGP_ATTR_AGGREGATOR:
case BGP_ATTR_ATOMIC_AGGREGATE:
return BGP_ATTR_PARSE_IGNORE;
/* Core attributes, particularly ones which may influence route
* selection should always cause session resets
*/
case BGP_ATTR_ORIGIN:
case BGP_ATTR_AS_PATH:
case BGP_ATTR_NEXT_HOP:
case BGP_ATTR_MULTI_EXIT_DISC:
case BGP_ATTR_LOCAL_PREF:
case BGP_ATTR_COMMUNITIES:
case BGP_ATTR_ORIGINATOR_ID:
case BGP_ATTR_CLUSTER_LIST:
case BGP_ATTR_MP_REACH_NLRI:
case BGP_ATTR_MP_UNREACH_NLRI:
case BGP_ATTR_EXT_COMMUNITIES:
break ;
/* Partial optional attributes that are malformed should not cause
* the whole session to be reset. Instead treat it as a withdrawal
* of the routes, if possible.
*/
default:
if (CHECK_FLAG (args->flags, BGP_ATTR_FLAG_TRANS) &&
CHECK_FLAG (args->flags, BGP_ATTR_FLAG_OPTIONAL) &&
CHECK_FLAG (args->flags, BGP_ATTR_FLAG_PARTIAL))
return BGP_ATTR_PARSE_WITHDRAW;
break ;
} ;
} ;
/* default to reset
*
* If notification goes with data, that is generally the entire attribute,
* including the header.
*/
switch(subcode)
{
case BGP_NOTIFY_UPDATE_MAL_ATTR:
case BGP_NOTIFY_UPDATE_MAL_AS_PATH:
case BGP_NOTIFY_UPDATE_AS_ROUTE_LOOP:
case BGP_NOTIFY_UPDATE_INVAL_NETWORK:
default:
data = NULL ;
data_len = 0 ; /* send nothing */
break ;
case BGP_NOTIFY_UPDATE_MISS_ATTR:
data = &args->type ;
data_len = 1 ; /* send just the missing type */
break ;
case BGP_NOTIFY_UPDATE_UNREC_ATTR:
case BGP_NOTIFY_UPDATE_ATTR_FLAG_ERR:
case BGP_NOTIFY_UPDATE_ATTR_LENG_ERR:
case BGP_NOTIFY_UPDATE_INVAL_ORIGIN:
case BGP_NOTIFY_UPDATE_INVAL_NEXT_HOP:
case BGP_NOTIFY_UPDATE_OPT_ATTR_ERR:
data = bgp_attr_raw(args->peer, &data_len) ;
qassert(args->flags == (data[0] & 0xF0)) ;
qassert(args->type == data[1]) ;
break ; /* send complete attribute */
} ;
bgp_peer_down_error_with_data(args->peer, BGP_NOTIFY_UPDATE_ERR, subcode,
data, data_len) ;
return BGP_ATTR_PARSE_ERROR;
} ;
/* Reject attribute on basis of its length
*
* Issues a logging message and treats as BGP_NOTIFY_UPDATE_ATTR_LENG_ERR
*/
static bgp_attr_parse_ret_t
bgp_attr_length_malformed (restrict bgp_attr_parser_args args,
ulen len_required)
{
zlog (args->peer->log, LOG_ERR, "%s attribute length is %u -- should be %u",
map_direct(bgp_attr_name_map, args->type).str,
args->length, len_required) ;
return bgp_attr_malformed (args, BGP_NOTIFY_UPDATE_ATTR_LENG_ERR);
} ;
/* Reject attribute on basis of the flags being invalid
*
* Issues a logging message and treats as BGP_NOTIFY_UPDATE_ATTR_FLAG_ERR
*/
static bgp_attr_parse_ret_t
bgp_attr_flags_malformed(restrict bgp_attr_parser_args args,
attr_flags_check_t* check)
{
uint8_t diff ;
bool seen ;
uint i ;
qassert((args->flags & 0x0F) == 0) ;
qassert(check->mask != 0) ;
diff = (args->flags ^ check->req) & check->mask ;
seen = false ;
for (i = 0; i < attr_flag_str_max ; i++)
{
uint8_t bit ;
bit = attr_flag_str[i].key ;
if (diff & bit)
{
zlog (args->peer->log, LOG_ERR,
"%s attribute must%s be flagged as \"%s\"",
map_direct(bgp_attr_name_map, args->type).str,
(check->req & bit) ? "" : " not", attr_flag_str[i].str) ;
seen = true ;
} ;
} ;
qassert (seen) ;
return bgp_attr_malformed (args, BGP_NOTIFY_UPDATE_ATTR_FLAG_ERR) ;
} ;
/* This is actually an internal error -- at some point has failed to read
* everything that was expected (underrun) or have tried to read more than
* is available (overrun) !
*/
static bgp_attr_parse_ret_t
bgp_attr_over_or_underrun(restrict bgp_attr_parser_args args)
{
zlog (args->peer->log, LOG_ERR,
"%s: BGP attribute %s, parser error: %srun %u bytes (BUG)",
args->peer->host, map_direct(bgp_attr_name_map, args->type).str,
stream_has_overrun(args->peer->ibuf) ? "over" : "under",
args->length) ;
bgp_peer_down_error (args->peer, BGP_NOTIFY_CEASE,
BGP_NOTIFY_SUBCODE_UNSPECIFIC);
return BGP_ATTR_PARSE_ERROR;
} ;
/* Get origin attribute of the update message. */
static bgp_attr_parse_ret_t
bgp_attr_origin (restrict bgp_attr_parser_args args)
{
uint origin ;
if (args->length != 1)
return bgp_attr_length_malformed (args, 1) ;
/* Fetch origin attribute. */
origin = stream_getc (args->s);
/* If the ORIGIN attribute has an undefined value, then the Error
Subcode is set to Invalid Origin Attribute. The Data field
contains the unrecognized attribute (type, length and value). */
if ( (origin != BGP_ORIGIN_IGP)
&& (origin != BGP_ORIGIN_EGP)
&& (origin != BGP_ORIGIN_INCOMPLETE) )
{
zlog (args->peer->log, LOG_ERR, "Origin attribute value %u is invalid",
origin);
return bgp_attr_malformed (args, BGP_NOTIFY_UPDATE_INVAL_ORIGIN);
}
/* Set origin attribute.
*/
args->attr.origin = origin ;
args->attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_ORIGIN);
return BGP_ATTR_PARSE_PROCEED ;
}
/*------------------------------------------------------------------------------
* Parse AS path information. This function is wrapper of aspath_parse.
*
* Parses AS_PATH or AS4_PATH.
*
* Returns: if valid: BGP_ATTR_PARSE_PROCEED
*
* and sets *p_asp = address of struct aspath in the hash of
* known aspaths, with reference count incremented.
*
* else: whatever bgp_attr_malformed() decides.
*
* NB: empty AS path (length == 0) is valid. The returned struct aspath will
* have segments == NULL and str == zero length string (unique).
*
* NB: an AS4 speaker should not be sending an AS4_PATH, and we will (later)
* ignore the attribute. We capture it here so that it can be seen in
* any logging/debug stuff.
*/
static bgp_attr_parse_ret_t
bgp_attr_aspath (restrict bgp_attr_parser_args args, struct aspath** p_asp)
{
bool as4_path, as4_peer ;
qassert( (args->type == BGP_ATTR_AS_PATH)
|| (args->type == BGP_ATTR_AS4_PATH) ) ;
/* Parse the AS_PATH/AS4_PATH body.
*
* For AS_PATH peer with AS4 => 4Byte ASN otherwise 2Byte ASN
* AS4_PATH 4Byte ASN
*/
as4_path = (args->type == BGP_ATTR_AS4_PATH) ;
as4_peer = PEER_CAP_AS4_USE(args->peer) ;
*p_asp = aspath_parse (args->s, args->length, as4_peer|| as4_path, as4_path) ;
if (*p_asp == NULL)
{
zlog (args->peer->log, LOG_ERR, "Malformed %s from %s, length is %u",
map_direct(bgp_attr_name_map, args->type).str,
args->peer->host, args->length);
return bgp_attr_malformed (args, BGP_NOTIFY_UPDATE_MAL_AS_PATH);
} ;
/* Success !
*/
args->attr.flag |= ATTR_FLAG_BIT (args->type) ;
if (as4_path && as4_peer)
{
if (BGP_DEBUG(as4, AS4))
zlog_debug ("[AS4] %s sent AS4_PATH despite being an AS4 speaker",
args->peer->host) ;
}
return BGP_ATTR_PARSE_PROCEED;
} ;
static bgp_attr_parse_ret_t
bgp_attr_aspath_check (restrict bgp_attr_parser_args args)
{
/* These checks were part of bgp_attr_aspath, but with
* as4 we should to check aspath things when
* aspath synthesizing with as4_path has already taken place.
* Otherwise we check ASPATH and use the synthesized thing, and that is
* not right.
* So do the checks later, i.e. here
*
* NB: if the AS_PATH is malformed, that is reported as problem with the
* AS_PATH attribute, even if the malformation is due to a problem
* with the AS4_PATH.
*
* The AS_PATH is Well-Known Mandatory. So bgp_attr_malformed() will
* not allow much latitude !
*
* Returns: BGP_ATTR_PARSE_PROCEED -- all well
* BGP_ATTR_PARSE_xxx -- as decided by bgp_attr_malformed()
*/
struct bgp* bgp ;
struct aspath* aspath;
bgp_peer_sort_t sort ;
bgp = args->peer->bgp;
sort = peer_sort(args->peer) ;
aspath = args->attr.aspath ;
/* Confederation sanity check. */
if ( ((sort == BGP_PEER_CONFED) && ! aspath_left_confed_check (aspath))
|| ((sort == BGP_PEER_EBGP) && aspath_confed_check (aspath)) )
{
zlog (args->peer->log, LOG_ERR, "Malformed AS path from %s",
args->peer->host);
return bgp_attr_malformed (args, BGP_NOTIFY_UPDATE_MAL_AS_PATH);
}
/* First AS check for EBGP. */
if (bgp != NULL && bgp_flag_check (bgp, BGP_FLAG_ENFORCE_FIRST_AS))
{
if (sort == BGP_PEER_EBGP
&& ! aspath_firstas_check (aspath, args->peer->as))
{
zlog (args->peer->log, LOG_ERR, "%s incorrect first AS (must be %u)",
args->peer->host, args->peer->as);
return bgp_attr_malformed(args, BGP_NOTIFY_UPDATE_MAL_AS_PATH);
}
}
/* local-as prepend */
if (args->peer->change_local_as &&
! CHECK_FLAG (args->peer->flags, PEER_FLAG_LOCAL_AS_NO_PREPEND))
{
aspath = aspath_dup (aspath);
aspath = aspath_add_seq (aspath, args->peer->change_local_as);
aspath_unintern (&args->attr.aspath);
args->attr.aspath = aspath_intern (aspath);
}
return BGP_ATTR_PARSE_PROCEED;
}
/* Nexthop attribute. */
static bgp_attr_parse_ret_t
bgp_attr_nexthop (restrict bgp_attr_parser_args args)
{
in_addr_t nexthop_h, nexthop_n;
if (args->length != 4)
return bgp_attr_length_malformed (args, 4) ;
/* According to section 6.3 of RFC4271, syntactically incorrect NEXT_HOP
attribute must result in a NOTIFICATION message (this is implemented below).
At the same time, semantically incorrect NEXT_HOP is more likely to be just
logged locally (this is implemented somewhere else). The UPDATE message
gets ignored in any of these cases.
*/
nexthop_n = stream_get_ipv4 (args->s);
nexthop_h = ntohl (nexthop_n);
if (IPV4_NET0 (nexthop_h) || IPV4_NET127 (nexthop_h)
|| IPV4_CLASS_DE (nexthop_h))
{
zlog (args->peer->log, LOG_ERR, "Martian nexthop %s",
siptoa(AF_INET, &nexthop_n).str);
return bgp_attr_malformed (args, BGP_NOTIFY_UPDATE_INVAL_NEXT_HOP) ;
}
args->attr.nexthop.s_addr = nexthop_n;
args->attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_NEXT_HOP);
return BGP_ATTR_PARSE_PROCEED;
}
/* MED atrribute. */
static bgp_attr_parse_ret_t
bgp_attr_med (restrict bgp_attr_parser_args args)
{
if (args->length != 4)
return bgp_attr_length_malformed (args, 4) ;
args->attr.med = stream_getl (args->s);
args->attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_MULTI_EXIT_DISC);
return BGP_ATTR_PARSE_PROCEED;
}
/* Local preference attribute. */
static bgp_attr_parse_ret_t
bgp_attr_local_pref (restrict bgp_attr_parser_args args)
{
uint32_t local_pref ;
if (args->length != 4)
return bgp_attr_length_malformed (args, 4) ;
local_pref = stream_getl (args->s);
/* If it is contained in an UPDATE message that is received from an
external peer, then this attribute MUST be ignored by the
receiving speaker. */
if (peer_sort (args->peer) != BGP_PEER_EBGP)
{
args->attr.local_pref = local_pref ;
args->attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_LOCAL_PREF);
} ;
return BGP_ATTR_PARSE_PROCEED;
}
/* Atomic aggregate. */
static bgp_attr_parse_ret_t
bgp_attr_atomic (restrict bgp_attr_parser_args args)
{
if (args->length != 0)
return bgp_attr_length_malformed (args, 0) ;
/* Set atomic aggregate flag. */
args->attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_ATOMIC_AGGREGATE);
return BGP_ATTR_PARSE_PROCEED;
}
/* Aggregator attribute
*/
static bgp_attr_parse_ret_t
bgp_attr_aggregator (restrict bgp_attr_parser_args args)
{
bgp_size_t wantedlen ;
struct attr_extra *attre ;
/* peer with AS4 will send 4 Byte AS, peer without will send 2 Byte
*/
wantedlen = PEER_CAP_AS4_USE(args->peer) ? 4 + 4 : 2 + 4 ;
if (args->length != wantedlen)
return bgp_attr_length_malformed (args, wantedlen) ;
attre = bgp_attr_extra_get (&args->attr);
if ( PEER_CAP_AS4_USE(args->peer) )
attre->aggregator_as = stream_getl (args->s);
else
attre->aggregator_as = stream_getw (args->s);
attre->aggregator_addr.s_addr = stream_get_ipv4 (args->s);
/* Set atomic aggregate flag. */
args->attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_AGGREGATOR);
return BGP_ATTR_PARSE_PROCEED;
}
/* New Aggregator attribute
*
* NB: an AS4 speaker should not be sending an AS4_AGGREGATOR, and we will
* (later) ignore the attribute. We capture it here so that it can be seen
* in any logging/debug stuff.
*/
static bgp_attr_parse_ret_t
bgp_attr_as4_aggregator (restrict bgp_attr_parser_args args)
{
if (args->length != 8)
return bgp_attr_length_malformed (args, 8) ;
args->as4_aggregator_as = stream_getl (args->s);
args->as4_aggregator_addr.s_addr = stream_get_ipv4 (args->s);
args->attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_AS4_AGGREGATOR);
if (PEER_CAP_AS4_USE(args->peer))
{
if (BGP_DEBUG(as4, AS4))
zlog_debug ("[AS4] %s sent AS4_AGGREGATOR despite being an"
" AS4 speaker", args->peer->host);
}
return BGP_ATTR_PARSE_PROCEED;
}
/* Process AS4_PATH attribute, if any -- assuming peer is NOT an AS4 speaker
*
* This is done once all attributes have been processed, so that we can mash
* the AS_PATH and the AS4_PATH together, if required.
*
* NB: this MUST be done *after* bgp_attr_munge_as4_aggr() -- see there.
*
* Returns: BGP_ATTR_PARSE_PROCEED -- all is well
*
* NB: we quietly ignore AS4_PATH if no AS_PATH -- same like AS4_AGGREGATOR.
*/
static bgp_attr_parse_ret_t
bgp_attr_munge_as4_path (restrict bgp_attr_parser_args args)
{
struct aspath *newpath;
if (! (args->attr.flag & ATTR_FLAG_BIT (BGP_ATTR_AS4_PATH)))
return BGP_ATTR_PARSE_PROCEED ; /* Do nothing if no AS4_PATH ! */
if (!(args->attr.flag & ATTR_FLAG_BIT (BGP_ATTR_AS_PATH)))
/* The lack of an AS_PATH is likely to become a serious issue in the
* near future.
*
* In the meantime, we ignore the AS4_PATH. If it were ever the case that
* an AS_PATH is optional... then it would be perfectly possible for the
* non-AS4 speaker to send the AS4_PATH. So this is not the place to
* decide whether the lack of AS_PATH is a problem -- but certainly we
* can do nothing with the AS4_PATH !
*/
{
if ( BGP_DEBUG(as4, AS4))
zlog_debug ("[AS4] %s BGP not AS4 capable peer"
" sent AS4_PATH but no AS_PATH,"
" so ignore the AS4_PATH", args->peer->host);
return BGP_ATTR_PARSE_PROCEED ; /* Easy(-ish) if no AS_PATH */
} ;
/* need to reconcile NEW_AS_PATH and AS_PATH
*/
newpath = aspath_reconcile_as4 (args->attr.aspath, args->as4_path);
aspath_unintern (&args->attr.aspath);
args->attr.aspath = aspath_intern (newpath);
return BGP_ATTR_PARSE_PROCEED;
}
/* Process AS4_AGGREGATOR attribute -- assuming peer is NOT an AS4 speaker
*
* This is done once all attributes have been processed, so that we can mash
* any AGGREGATOR and the AS4_AGGREGATOR together, if required.
*
* NB: this must be done *before* processing the AS4_PATH, because RFC4893
* says:
*
* "A NEW BGP speaker should also be prepared to receive the
* AS4_AGGREGATOR attribute along with the AGGREGATOR attribute from an
* OLD BGP speaker. When both the attributes are received, if the AS
* number in the AGGREGATOR attribute is not AS_TRANS, then:
*
* - the AS4_AGGREGATOR attribute and the AS4_PATH attribute SHALL
* be ignored,
*
* - the AGGREGATOR attribute SHALL be taken as the information
* about the aggregating node, and
*
* - the AS_PATH attribute SHALL be taken as the AS path
* information.
*
* Otherwise,
*
* - the AGGREGATOR attribute SHALL be ignored,
*
* - the AS4_AGGREGATOR attribute SHALL be taken as the information
* about the aggregating node, and
*
* - the AS path information would need to be constructed, as in all
* other cases.
*
* There are two reasons for the AGGREGATOR to not be AS_TRANS:
*
* 1. Some AS2 speaker since the last AS4 speaker has aggregated
*
* Aggregation has possibly unfortunate effects on the relationship
* between the AS_PATH and the AS4_PATH, so the latter is discarded.
*
* In any case, it is likely that the AS2 aggregator could lose the
* AS4_PATH entirely in the process !
*
* 2. The last AS4 speaker was bonkers, and may not be trustworthy !
*
* But (1) is probably the reason for this behaviour.
*
* Returns: BGP_ATTR_PARSE_PROCEED -- all is well
* BGP_ATTR_PARSE_IGNORE => ignore this AND any AS4_PATH
* NB: this is not, strictly, and error
*/
static bgp_attr_parse_ret_t
bgp_attr_munge_as4_aggr (restrict bgp_attr_parser_args args)
{
struct attr_extra *attre ;
/* We have a AS2 peer. Worry about AGGREGATOR and AS4_AGGREGATOR.
*/
if (!(args->attr.flag & ATTR_FLAG_BIT (BGP_ATTR_AS4_AGGREGATOR)))
return BGP_ATTR_PARSE_PROCEED ; /* Easy if no AS4_AGGREGATOR */
/* AGGREGATOR is Optional Transitive.
*
* RFC4893 says:
*
* "... if the NEW speaker has to send the AGGREGATOR attribute,
* and if the aggregating Autonomous System's AS number is truly 4-
* octets, then the speaker constructs the AS4_AGGREGATOR attributes by
* taking the attribute length and attribute value from the AGGREGATOR
* attribute and placing them into the attribute length and attribute
* value of the AS4_AGGREGATOR attribute, and sets the AS number field
* in the existing AGGREGATOR attribute to the reserved AS number,
* AS_TRANS. Note that if the AS number is 2-octets only, then the
* AS4_AGGREGATOR attribute SHOULD NOT be sent."
*
* So, expect the AS4 speaker to generate an AS4_AGGREGATOR iff there is an
* AGGREGATOR, and the iff the ASN involved requires it.
*
* Do not expect any AS in between to drop the AGGREGATOR attribute.
*
* As noted above the RFC also says:
*
* "A NEW BGP speaker should also be prepared to receive the
* AS4_AGGREGATOR attribute along with the AGGREGATOR attribute..."
*
* It is silent on the case where an AS4_AGGREGATOR appears on its own !!
* In this case we suppose:
*
* (a) an AS4 speaker has issued an AS4_AGGREGATOR *without* sending the
* matching AGGREGATOR -- which is a mistake !
*
* In this case, one could treat this as if the AS4 speaker had failed
* to use AS_TRANS in the AGGREGATOR attribute.
*
* (b) an AS of either sex has dropped the AGGREGATOR , but not the
* AS4_AGGREGATOR.
*
* An AS2 speaker may have deliberately discarded the AGGREGATOR
* information, but (of course) not known enough to drop the
* AS4 version !
*
* We cannot really distinguish the case of deliberately dropping the
* AGGREGATOR (however naughty that might be) from a failure to issue
* both AGGREGATOR and AS4_AGGREGATOR together. BUT, if we were to resurrect
* an AGGREGATOR from a lone AS4_AGGREGATOR, then some poor AS2 speaker
* will find that BGP is no longer working as it did before !!!
*/
if (!(args->attr.flag & ATTR_FLAG_BIT (BGP_ATTR_AGGREGATOR)))
{
if ( BGP_DEBUG(as4, AS4))
zlog_debug ("[AS4] %s BGP not AS4 capable peer"
" sent AS4_AGGREGATOR but no AGGREGATOR,"
" so ignore the AS4_AGGREGATOR", args->peer->host);
return BGP_ATTR_PARSE_PROCEED ; /* Easy(-ish) if no AGGREGATOR */
} ;
/* received both AGGREGATOR and AS4_AGGREGATOR.
*/
attre = args->attr.extra ;
assert (attre != NULL);
if (attre->aggregator_as != BGP_AS_TRANS)
{
/* ignore */
if ( BGP_DEBUG(as4, AS4))
zlog_debug ("[AS4] %s BGP not AS4 capable peer"
" sent AGGREGATOR %u != AS_TRANS and"
" AS4_AGGREGATOR, so ignore"
" AS4_AGGREGATOR and AS4_PATH", args->peer->host,
attre->aggregator_as);
return BGP_ATTR_PARSE_IGNORE ;
} ;
/* Finally -- set the aggregator information from the AS4_AGGREGATOR !
*/
attre->aggregator_as = args->as4_aggregator_as;
attre->aggregator_addr.s_addr = args->as4_aggregator_addr.s_addr;
return BGP_ATTR_PARSE_PROCEED ;
}
/* Community attribute. */
static bgp_attr_parse_ret_t
bgp_attr_community (restrict bgp_attr_parser_args args)
{
if (args->length == 0)
{
args->attr.community = NULL;
return BGP_ATTR_PARSE_PROCEED;
}
args->attr.community =
community_parse ((uint32_t *)stream_get_pnt (args->s),
args->length);
/* XXX: fix community_parse to use stream API and remove this */
stream_forward_getp (args->s, args->length);
if (!args->attr.community)
{
zlog (args->peer->log, LOG_ERR, "Malformed COMMUNITIES (length is %u)",
args->length) ;
return bgp_attr_malformed (args, BGP_NOTIFY_UPDATE_OPT_ATTR_ERR);
} ;
args->attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_COMMUNITIES);
return BGP_ATTR_PARSE_PROCEED;
}
/* Originator ID attribute. */
static bgp_attr_parse_ret_t
bgp_attr_originator_id (bgp_attr_parser_args args)
{
if (args->length != 4)
return bgp_attr_length_malformed (args, 4) ;
(bgp_attr_extra_get (&args->attr))->originator_id.s_addr
= stream_get_ipv4 (args->s);
args->attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_ORIGINATOR_ID);
return BGP_ATTR_PARSE_PROCEED;
}
/* Cluster list attribute. */
static bgp_attr_parse_ret_t
bgp_attr_cluster_list (restrict bgp_attr_parser_args args)
{
if (args->length % 4)
{
zlog (args->peer->log, LOG_ERR, "Bad cluster list length %u",
args->length);
return bgp_attr_malformed (args, BGP_NOTIFY_UPDATE_ATTR_LENG_ERR);
}
(bgp_attr_extra_get (&args->attr))->cluster
= cluster_parse ((struct in_addr *)stream_get_pnt (args->peer->ibuf),
args->length);
/* XXX: Fix cluster_parse to use stream API and then remove this */
stream_forward_getp (args->s, args->length);
args->attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_CLUSTER_LIST);
return BGP_ATTR_PARSE_PROCEED;
}
/* Multiprotocol reachability information parse. */
extern bgp_attr_parse_ret_t
bgp_mp_reach_parse (bgp_attr_parser_args args)
{
afi_t afi;
safi_t safi;
size_t nlri_len ;
byte* nlri ;
ulen nexthop_endp ;
ulen nexthop_len ;
u_char reserved ;
int ret;
struct attr_extra *attre = bgp_attr_extra_get(&args->attr);
/* Load AFI, SAFI and Next Hop Length
*/
afi = stream_getw (args->s);
safi = stream_getc (args->s);
nexthop_len = stream_getc (args->s);
if (stream_has_overrun(args->s))
{
zlog (args->peer->log, LOG_ERR,
"%s attribute length is %u -- should be at least 5",
map_direct(bgp_attr_name_map, BGP_ATTR_MP_REACH_NLRI).str,
args->length) ;
return bgp_attr_malformed (args, BGP_NOTIFY_UPDATE_ATTR_LENG_ERR);
} ;
/* Get nexthop length and check
*/
nexthop_endp = stream_push_endp(args->s, nexthop_len + 1) ;
if (stream_has_overrun(args->s))
{
stream_pop_endp(args->s, nexthop_endp) ; /* as you was */
zlog_info ("%s: %s, MP nexthop length %u + reserved byte"
" overruns end of attribute",
__func__, args->peer->host, nexthop_len);
return bgp_attr_malformed (args, BGP_NOTIFY_UPDATE_OPT_ATTR_ERR);
} ;
/* Nexthop length check.
*/
switch (nexthop_len)
{
case 4:
stream_get (&attre->mp_nexthop_global_in, args->s, 4);
/* Probably needed for RFC 2283 */
if (args->attr.nexthop.s_addr == 0)
memcpy(&args->attr.nexthop.s_addr, &attre->mp_nexthop_global_in, 4);
break;
case 12:
stream_getl (args->s); /* RD high */
stream_getl (args->s); /* RD low */
stream_get (&attre->mp_nexthop_global_in, args->s, 4);
break;
#ifdef HAVE_IPV6
case 16:
stream_get (&attre->mp_nexthop_global, args->s, 16);
break;
case 32:
stream_get (&attre->mp_nexthop_global, args->s, 16);
stream_get (&attre->mp_nexthop_local, args->s, 16);
if (! IN6_IS_ADDR_LINKLOCAL (&attre->mp_nexthop_local))
{
if (BGP_DEBUG (update, UPDATE_IN))
zlog_debug ("%s got two nexthop %s %s "
"but second one is not a link-local nexthop",
args->peer->host,
siptoa(AF_INET6, &attre->mp_nexthop_global).str,
siptoa(AF_INET6, &attre->mp_nexthop_local).str) ;
attre->mp_nexthop_len = 16;
}
break;
#endif /* HAVE_IPV6 */
default:
stream_pop_endp(args->s, nexthop_endp) ; /* as you was */
zlog_info ("%s: (%s) unknown multiprotocol next hop length: %u",
__func__, args->peer->host, nexthop_len) ;
return bgp_attr_malformed (args, BGP_NOTIFY_UPDATE_OPT_ATTR_ERR);
}
attre->mp_nexthop_len = nexthop_len ; /* passed muster */
/* Eat the reserved byte
*/
reserved = stream_getc (args->s) ;
/* We should now have read up to the recorded endp, and not beyond
*
* This is an internal error, really.
*/
if (!stream_pop_endp(args->s, nexthop_endp))
return bgp_attr_over_or_underrun(args) ;
/* Check the reserved byte value
*/
if (reserved != 0)
zlog_warn("%s sent non-zero value, %u, for defunct SNPA-length field"
" in MP_REACH_NLRI for AFI/SAFI %u/%u",
args->peer->host, reserved, afi, safi) ;
/* must have nrli_len, what is left of the attribute
*
* RFC 4760 says (section 5, NLRI Encoding) that the NLRI "...is encoded as
* one or more 2-tuples..." which indicates that zero length NLRI would
* be wrong -- except, of course, for End-of-RIB !!
*
* Accepting zero bytes of NLRI does not appear to do harm. But we whine
* about it in the logging.
*/
nlri = stream_get_bytes_left(args->s, &nlri_len) ; /* steps past */
if (nlri_len == 0)
zlog_warn("%s sent zero length NLRI in MP_REACH_NLRI for AFI/SAFI %u/%u",
args->peer->host, afi, safi) ;
else if (safi != SAFI_MPLS_LABELED_VPN)
{
/* If the nlri are not valid, bgp_nlri_sanity_check() drops the session
*/
ret = bgp_nlri_sanity_check (args->peer, afi, nlri, nlri_len);
if (ret < 0)
{
zlog_info ("%s %s NLRI in MP_REACH_NLRI fails sanity check",
args->peer->host, map_direct(bgp_afi_name_map, afi).str) ;
return BGP_ATTR_PARSE_ERROR ;
}
}
/* Record the MP_REACH_NLRI
*/
args->mp_update.afi = afi;
args->mp_update.safi = safi;
args->mp_update.nlri = nlri ;
args->mp_update.length = nlri_len;
return BGP_ATTR_PARSE_PROCEED;
} ;
/* Multiprotocol unreachable parse
*
* Sets mp_eor iff all is well, and attribute is empty.
*/
extern bgp_attr_parse_ret_t
bgp_mp_unreach_parse (restrict bgp_attr_parser_args args)
{
afi_t afi;
safi_t safi;
size_t nlri_len ;
byte* nlri ;
/* Load AFI, SAFI.
*/
afi = stream_getw (args->s);
safi = stream_getc (args->s);
if (stream_has_overrun(args->s))
{
zlog (args->peer->log, LOG_ERR,
"%s attribute length is %u -- should be at least 3",
map_direct(bgp_attr_name_map, BGP_ATTR_MP_UNREACH_NLRI).str,
args->length) ;
return bgp_attr_malformed (args, BGP_NOTIFY_UPDATE_ATTR_LENG_ERR);
} ;
/* must have nrli_len, what is left of the attribute
*/
nlri = stream_get_bytes_left(args->s, &nlri_len) ; /* steps past */
if (nlri_len == 0)
args->mp_eor = true ;
else if (safi != SAFI_MPLS_LABELED_VPN)
{
/* If the nlri are not valid, bgp_nlri_sanity_check() drops the
* session
*/
int ret ;
ret = bgp_nlri_sanity_check (args->peer, afi, nlri, nlri_len);
if (ret < 0)
{
zlog_info ("%s %s NLRI in MP_UNREACH_NLRI fails sanity check",
args->peer->host, map_direct(bgp_afi_name_map, afi).str) ;
return BGP_ATTR_PARSE_ERROR ;
}
} ;
/* Record the MP_UNREACH_NLRI
*/
args->mp_withdraw.afi = afi;
args->mp_withdraw.safi = safi;
args->mp_withdraw.nlri = nlri ;
args->mp_withdraw.length = nlri_len ;
return BGP_ATTR_PARSE_PROCEED ;
}
/* Extended Community attribute. */
static bgp_attr_parse_ret_t
bgp_attr_ext_communities (restrict bgp_attr_parser_args args)
{
if (args->length == 0)
{
if (args->attr.extra != NULL)
args->attr.extra->ecommunity = NULL;
/* Empty extcomm doesn't seem to be invalid per se */
return BGP_ATTR_PARSE_PROCEED;
}
(bgp_attr_extra_get (&args->attr))->ecommunity =
ecommunity_parse ((u_int8_t *)stream_get_pnt (args->s),
args->length);
/* XXX: fix ecommunity_parse to use stream API */
stream_forward_getp (args->s, args->length);
if (args->attr.extra->ecommunity == NULL)
return bgp_attr_malformed (args, BGP_NOTIFY_UPDATE_OPT_ATTR_ERR);
args->attr.flag |= ATTR_FLAG_BIT (BGP_ATTR_EXT_COMMUNITIES);
return BGP_ATTR_PARSE_PROCEED;
}
/* BGP unknown attribute treatment. */
static bgp_attr_parse_ret_t
bgp_attr_unknown (restrict bgp_attr_parser_args args)
{
struct transit *transit;
struct attr_extra *attre;
byte* raw_attr ;
ulen raw_len ;
if (BGP_DEBUG (normal, NORMAL))
zlog_debug ("%s Unknown attribute is received "
"(%stransitive type %u, length %u)",
args->peer->host,
CHECK_FLAG (args->flags, BGP_ATTR_FLAG_TRANS) ? "" : "non-",
args->type, args->length);
if (BGP_DEBUG (events, EVENTS))
zlog (args->peer->log, LOG_DEBUG,
"Unknown attribute type %u length %u is received",
args->type, args->length);
/* Forward read pointer of input stream. */
stream_forward_getp (args->s, args->length);
/* If any of the mandatory well-known attributes are not recognized,
then the Error Subcode is set to Unrecognized Well-known
Attribute. The Data field contains the unrecognized attribute
(type, length and value). */
if (! CHECK_FLAG (args->flags, BGP_ATTR_FLAG_OPTIONAL))
{
zlog (args->peer->log, LOG_ERR,
"Unknown attribute type %u has flags 0x%x -- ie NOT Optional",
args->type, args->flags);
return bgp_attr_malformed (args, BGP_NOTIFY_UPDATE_UNREC_ATTR);
}
/* Unrecognized non-transitive optional attributes must be quietly
ignored and not passed along to other BGP peers. */
if (! CHECK_FLAG (args->flags, BGP_ATTR_FLAG_TRANS))
return BGP_ATTR_PARSE_PROCEED;
/* Get the address and total length of the attribute
*/
raw_attr = bgp_attr_raw(args->peer, &raw_len) ;
/* If a path with recognized transitive optional attribute is
accepted and passed along to other BGP peers and the Partial bit
in the Attribute Flags octet is set to 1 by some previous AS, it
is not set back to 0 by the current AS.
*/
SET_FLAG (raw_attr[0], BGP_ATTR_FLAG_PARTIAL);
/* Store transitive attribute to the end of attr->transit.
*/
if (! ((attre = bgp_attr_extra_get(&args->attr))->transit) )
attre->transit = XCALLOC (MTYPE_TRANSIT, sizeof (struct transit));
transit = attre->transit;
if (transit->val)
transit->val = XREALLOC (MTYPE_TRANSIT_VAL, transit->val,
transit->length + raw_len);
else
transit->val = XMALLOC (MTYPE_TRANSIT_VAL, raw_len);
memcpy (transit->val + transit->length, raw_attr, raw_len);
transit->length += raw_len;
return BGP_ATTR_PARSE_PROCEED;
}
/*------------------------------------------------------------------------------
* Read attribute of update packet.
*
* This function is called from bgp_update() in bgpd.c.
*
* NB: expects the structures pointed to by:
*
* attr
* mp_update
* mp_withdraw
*
* to be zeroised on entry to this function.
*
* Any elements in attr or attr->extra will be internalised as they are set.
* (So their reference counts will *not* be zero.)
*
* However, the attr object itself is NOT internalised.
* (So its reference count will be zero.)
*
* The peer->ibuf stream is set so that the getp is the start of the attributes,
* and the endp is the end of same.
*
* NB: uses the stream->startp.
*
* Returns: BGP_ATTR_PARSE_IGNORE -- OK, ignoring one or more bad, but
* trivial, attributes
* BGP_ATTR_PARSE_PROCEED -- all well
*
* BGP_ATTR_PARSE_WITHDRAW -- not good, but keep going, treating
* all prefixes as being withdrawn.
*
* BGP_ATTR_PARSE_ERROR -- not good at all: session dropped
*/
bgp_attr_parse_ret_t
bgp_attr_parse (restrict bgp_attr_parser_args args)
{
bgp_attr_parse_ret_t aret;
uint attr_count ;
u_char seen[BGP_ATTR_BITMAP_SIZE];
attr_flags_check_t* check ;
/* Initialize bitmap.
*/
memset (seen, 0, BGP_ATTR_BITMAP_SIZE);
/* We are going to read size bytes of attributes from the current stream
* position.
*/
attr_count = 0 ; /* nothing yet */
aret = BGP_ATTR_PARSE_PROCEED ; /* So far, so good ! */
while (stream_get_read_left(args->s) > 0)
{
bgp_attr_parse_ret_t ret ;
ulen header_length, attr_endp ;
++attr_count ;
/* Remember the start of the attribute -- used in bgp_attr_malformed()
* and other error handling.
*/
stream_set_startp(args->s, stream_get_getp(args->s)) ;
/* Fetch attribute flag, type and length.
*
* Note that stream_getx() return zero if overrun the end.
*
* "The lower-order four bits of the Attribute Flags octet are
* unused. They MUST be zero when sent and MUST be ignored when
* received."
*/
args->flags = stream_getc (args->s) & 0xF0 ;
args->type = stream_getc (args->s);
if (CHECK_FLAG (args->flags, BGP_ATTR_FLAG_EXTLEN))
{
header_length = 4 ;
args->length = stream_getw (args->s);
}
else
{
header_length = 3 ;
args->length = stream_getc (args->s);
} ;
/* Check whether attribute prefix and the length of the attribute body
* are all within the total attribute size.
*
* Sets the s->endp to the end of the current attribute and saves the
* end of all attributes in
*/
attr_endp = stream_push_endp(args->s, args->length) ;
if (stream_has_overrun(args->s))
{
ulen have = attr_endp - (ulen)stream_get_startp(args->s) ;
if (have < header_length)
zlog (args->peer->log, LOG_WARNING,
"%s: broken BGP attribute [0x%x %u %u] have just %u octets for"
" attribute header",
args->peer->host, args->flags, args->type, args->length, have) ;
else
zlog (args->peer->log, LOG_WARNING,
"%s: broken BGP attribute [0x%x %u %u] have just %u octets for"
" attribute body",
args->peer->host, args->flags, args->type, args->length,
(have - header_length)) ;
bgp_peer_down_error (args->peer, BGP_NOTIFY_UPDATE_ERR,
BGP_NOTIFY_UPDATE_ATTR_LENG_ERR);
aret = BGP_ATTR_PARSE_ERROR;
goto attr_parse_exit ;
} ;
/* If any attribute appears more than once in the UPDATE
* message, then the Error Subcode is set to Malformed Attribute
* List.
*/
if (CHECK_BITMAP (seen, args->type))
{
zlog (args->peer->log, LOG_WARNING,
"%s: error BGP attribute type %s appears twice in a message",
args->peer->host, map_direct(bgp_attr_name_map, args->type).str);
bgp_peer_down_error (args->peer, BGP_NOTIFY_UPDATE_ERR,
BGP_NOTIFY_UPDATE_MAL_ATTR);
aret = BGP_ATTR_PARSE_ERROR;
goto attr_parse_exit ;
}
/* Set type to bitmap to check duplicate attribute. `type' is
* unsigned char so it never overflow bitmap range.
*/
SET_BITMAP (seen, args->type);
/* OK check attribute and store it's value.
*
* NB: have long ago discarded the unused flag bits.
*
* can fetch up to length without running off the end of the stream.
*
* NB: if individual attribute parser returns BGP_ATTR_PARSE_PROCEED,
* then it is assumed that: (a) it will have read the entire
* attribute -- so getp == endp, and (b) no more -- so not overrun !
*/
qassert((args->flags & 0x0F) == 0) ;
qassert(stream_has_read_left(args->s, args->length)) ;
/* Check that the flags for the given attribute are OK, and if not, issue
* suitable diagnostic.
*
* Should collapse to next to nothing -- certainly for constant attr_code !
*/
check = &attr_flags_check_array[(args->type < attr_flags_check_limit)
? args->type : 0] ;
if (((args->flags & check->mask) == check->req) || (check->mask == 0))
ret = BGP_ATTR_PARSE_PROCEED ;
else
ret = bgp_attr_flags_malformed (args, check) ;
/* If Flags were OK -- parse the value part
*/
if (ret == BGP_ATTR_PARSE_PROCEED)
{
switch (args->type)
{
case BGP_ATTR_ORIGIN:
ret = bgp_attr_origin (args);
break;
case BGP_ATTR_AS_PATH:
ret = bgp_attr_aspath (args, &args->attr.aspath);
break;
case BGP_ATTR_AS4_PATH:
ret = bgp_attr_aspath (args, &args->as4_path);
break;
case BGP_ATTR_NEXT_HOP:
ret = bgp_attr_nexthop (args);
break;
case BGP_ATTR_MULTI_EXIT_DISC:
ret = bgp_attr_med (args);
break;
case BGP_ATTR_LOCAL_PREF:
ret = bgp_attr_local_pref (args);
break;
case BGP_ATTR_ATOMIC_AGGREGATE:
ret = bgp_attr_atomic (args);
break;
case BGP_ATTR_AGGREGATOR:
ret = bgp_attr_aggregator (args);
break;
case BGP_ATTR_AS4_AGGREGATOR:
ret = bgp_attr_as4_aggregator (args);
break;
case BGP_ATTR_COMMUNITIES:
ret = bgp_attr_community (args);
break;
case BGP_ATTR_ORIGINATOR_ID:
ret = bgp_attr_originator_id (args);
break;
case BGP_ATTR_CLUSTER_LIST:
ret = bgp_attr_cluster_list (args);
break;
case BGP_ATTR_MP_REACH_NLRI:
ret = bgp_mp_reach_parse (args);
break;
case BGP_ATTR_MP_UNREACH_NLRI:
ret = bgp_mp_unreach_parse (args);
break;
case BGP_ATTR_EXT_COMMUNITIES:
ret = bgp_attr_ext_communities (args);
break;
default:
ret = bgp_attr_unknown (args);
break;
} ;
} ;
/* Restore the end of all attributes, and check that has read all of
* the attribute.
*
* If individual attribute parser returns BGP_ATTR_PARSE_PROCEED, and
* has not exactly read the attribute, then we have a potentially serious
* internal error !!
*
* NB: in any case, the getp is now set to the end of the attribute we
* just dealt with, and the endp is the end of all attributes.
*/
if (!stream_pop_endp(args->s, attr_endp))
{
if (ret == BGP_ATTR_PARSE_PROCEED)
ret = bgp_attr_over_or_underrun(args) ;
stream_clear_overrun(args->s) ; /* in case continuing */
} ;
/* Now decide what to do with the return code
*/
switch (ret)
{
case BGP_ATTR_PARSE_PROCEED:
break ;
/* If we have chosen to ignore an error in a trivial attribute
*/
case BGP_ATTR_PARSE_IGNORE:
zlog (args->peer->log, LOG_WARNING,
"%s: Attribute %s invalid, but trivial -- ignoring it",
args->peer->host,
map_direct(bgp_attr_name_map, args->type).str);
if (aret == BGP_ATTR_PARSE_PROCEED)
aret = BGP_ATTR_PARSE_IGNORE ; /* promote */
break ;
/* If soft-ish error, turn into withdraw
*/
case BGP_ATTR_PARSE_WITHDRAW:
zlog (args->peer->log, LOG_WARNING,
"%s: Attribute %s invalid -- treating update as withdrawal",
args->peer->host,
map_direct(bgp_attr_name_map, args->type).str);
aret = ret ; /* promote */
break ;
/* Hard error occurred: drop the session and exit immediately.
*
* NB: may (well) already have downed the peer, in which case the
* bgp_peer_down_error() here is redundant -- but does no harm !
*/
case BGP_ATTR_PARSE_ERROR:
default:
zlog (args->peer->log, LOG_WARNING,
"%s: Attribute %s invalid -- session drop",
args->peer->host,
map_direct(bgp_attr_name_map, args->type).str);
bgp_peer_down_error (args->peer, BGP_NOTIFY_UPDATE_ERR,
BGP_NOTIFY_UPDATE_MAL_ATTR);
aret = BGP_ATTR_PARSE_ERROR ;
goto attr_parse_exit ;
} ;
} ;
/* We have finished parsing the attributes. Any further bgp_attr_malformed()
* will not refer to a specific attribute, but in any case cannot -- so we
* set s->startp to the absolute limit -- see bgp_attr_raw().
*
* At this point ret == BGP_ATTR_PARSE_PROCEED
* or BGP_ATTR_PARSE_IGNORE if last attribute parsed
* just happened to be so.
*/
stream_set_startp(args->s, stream_get_endp(args->s)) ;
/* At this place we can see whether we got AS4_PATH and/or
* AS4_AGGREGATOR from a 16Bit peer and act accordingly.
* We can not do this before we've read all attributes because
* the as4 handling does not say whether AS4_PATH has to be sent
* after AS_PATH or not - and when AS4_AGGREGATOR will be send
* in relationship to AGGREGATOR.
*
* So, to be defensive, we are not relying on any order and read
* all attributes first, including these 32bit ones, and now,
* afterwards, we look what and if something is to be done for as4.
*/
if (!PEER_CAP_AS4_USE(args->peer))
{
bgp_attr_parse_ret_t ret ;
/* NB: must deal with AS4_AGGREGATOR first, in case that returns
* BGP_ATTR_PARSE_IGNORE -- which means ignore it *and* and AS4_PATH.
*
* In this case BGP_ATTR_PARSE_IGNORE does not signal an *error*,
* so we do not set "ignored" on the strength of it.
*/
ret = bgp_attr_munge_as4_aggr (args) ;
if (ret == BGP_ATTR_PARSE_PROCEED)
ret = bgp_attr_munge_as4_path (args) ;
switch (ret)
{
case BGP_ATTR_PARSE_PROCEED:
case BGP_ATTR_PARSE_IGNORE:
break ;
case BGP_ATTR_PARSE_WITHDRAW:
aret = ret ;
break ;
case BGP_ATTR_PARSE_ERROR:
default:
aret = BGP_ATTR_PARSE_ERROR ;
goto attr_parse_exit ;
} ;
} ;
/* Finally do the checks on the aspath we did not do yet
* because we waited for a potentially synthesized aspath.
*/
if (args->attr.flag & (ATTR_FLAG_BIT(BGP_ATTR_AS_PATH)))
{
bgp_attr_parse_ret_t ret ;
ret = bgp_attr_aspath_check (args);
switch (ret)
{
case BGP_ATTR_PARSE_PROCEED:
break ;
case BGP_ATTR_PARSE_IGNORE:
if (aret == BGP_ATTR_PARSE_PROCEED)
aret = ret ;
break ;
case BGP_ATTR_PARSE_WITHDRAW:
aret = ret ;
break ;
case BGP_ATTR_PARSE_ERROR:
default:
aret = BGP_ATTR_PARSE_ERROR ;
goto attr_parse_exit ;
} ;
} ;
/* Finally intern unknown attribute. */
if (args->attr.extra && args->attr.extra->transit)
args->attr.extra->transit = transit_intern (args->attr.extra->transit);
/* Done everything we are going to do -- return the result.
*
* We are done with any AS4_PATH or AS4_AGGREGATOR, and do not hold on to
* those -- though their (temporary) existence is recorded in the attr->flag.
* Any values we wanted from those attributes have by now been integrated
* into the AS_PATH and the AGGREGATOR attributes.
*
* NB: for all returns other than BGP_ATTR_PARSE_ERROR, will have eaten all
* attributes and the s->getp should be at the current s->endp.
*
* We stop immediately on BGP_ATTR_PARSE_ERROR, so s->getp may be
* almost anywhere.
*
* If we had a BGP_ATTR_PARSE_IGNORE, then we have done that already, but
* return BGP_ATTR_PARSE_IGNORE for information.
*
* mp_eor is set false to start with, and...
* ...set true iff get a valid empty BGP_ATTR_MP_UNREACH_NLRI
*
* Here we force mp_eor false if we have anything other than 1 attribute,
* or if everything is not perfect.
*/
attr_parse_exit:
if (args->as4_path != NULL)
aspath_unintern (&args->as4_path);
if ((attr_count != 1) || (aret != BGP_ATTR_PARSE_PROCEED))
args->mp_eor = false ;
return aret ;
} ;
/* Well-known attribute check. */
extern int
bgp_attr_check (struct peer *peer, struct attr *attr, bool with_next_hop)
{
bool first ;
uint8_t type ;
uint32_t flags = ATTR_FLAG_BIT (BGP_ATTR_ORIGIN) |
ATTR_FLAG_BIT (BGP_ATTR_AS_PATH) ;
if (with_next_hop)
flags |= ATTR_FLAG_BIT (BGP_ATTR_NEXT_HOP) ;
if (peer_sort (peer) == BGP_PEER_IBGP)
flags |= ATTR_FLAG_BIT (BGP_ATTR_LOCAL_PREF) ;
if ((attr->flag & flags) == flags)
return BGP_ATTR_PARSE_PROCEED ;
/* Set flags to '1' where we have a *missing* attribute
*/
flags = (attr->flag & flags) ^ flags ;
first = true ;
type = 1 ;
while (flags != 0)
{
if (flags & 1)
{
zlog (peer->log, LOG_WARNING, "%s Missing well-known attribute %s.",
peer->host, map_direct(bgp_attr_name_map, type).str);
if (first)
bgp_peer_down_error_with_data (peer, BGP_NOTIFY_UPDATE_ERR,
BGP_NOTIFY_UPDATE_MISS_ATTR,
&type, 1);
first = false ;
} ;
flags >>= 1 ;
++type ;
} ;
qassert(flags == 0) ;
return BGP_ATTR_PARSE_ERROR ;
}
/* Make attribute packet. */
bgp_size_t
bgp_packet_attribute (struct bgp *bgp, struct peer *peer,
struct stream *s, struct attr *attr, struct prefix *p,
afi_t afi, safi_t safi, struct peer *from,
struct prefix_rd *prd, u_char *tag)
{
size_t cp;
size_t aspath_sizep;
struct aspath *aspath;
int send_as4_path = 0;
int send_as4_aggregator = 0;
int use32bit = PEER_CAP_AS4_USE(peer) ;
bgp_peer_sort_t sort ;
if (! bgp)
bgp = bgp_get_default ();
/* Remember current pointer. */
cp = stream_get_endp (s);
/* Origin attribute. */
stream_putc (s, BGP_ATTR_FLAG_TRANS);
stream_putc (s, BGP_ATTR_ORIGIN);
stream_putc (s, 1);
stream_putc (s, attr->origin);
/* AS path attribute. */
/* If remote-peer is EBGP */
sort = peer_sort(peer) ;
if (sort == BGP_PEER_EBGP
&& (! CHECK_FLAG (peer->af_flags[afi][safi], PEER_FLAG_AS_PATH_UNCHANGED)
|| attr->aspath->segments == NULL)
&& (! CHECK_FLAG (peer->af_flags[afi][safi], PEER_FLAG_RSERVER_CLIENT)))
{
aspath = aspath_dup (attr->aspath);
if (CHECK_FLAG(bgp->config, BGP_CONFIG_CONFEDERATION))
{
/* Strip the confed info, and then stuff our path CONFED_ID
on the front */
aspath = aspath_delete_confed_seq (aspath);
aspath = aspath_add_seq (aspath, bgp->confed_id);
}
else
{
aspath = aspath_add_seq (aspath, peer->local_as);
if (peer->change_local_as)
aspath = aspath_add_seq (aspath, peer->change_local_as);
}
}
else if (sort == BGP_PEER_CONFED)
{
/* A confed member, so we need to do the AS_CONFED_SEQUENCE thing */
aspath = aspath_dup (attr->aspath);
aspath = aspath_add_confed_seq (aspath, peer->local_as);
}
else
aspath = attr->aspath;
/* If peer is not AS4 capable, then:
* - send the created AS_PATH out as AS4_PATH (optional, transitive),
* but ensure that no AS_CONFED_SEQUENCE and AS_CONFED_SET path segment
* types are in it (i.e. exclude them if they are there)
* AND do this only if there is at least one asnum > 65535 in the path!
* - send an AS_PATH out, but put 16Bit ASnums in it, not 32bit, and change
* all ASnums > 65535 to BGP_AS_TRANS
*/
stream_putc (s, BGP_ATTR_FLAG_TRANS|BGP_ATTR_FLAG_EXTLEN);
stream_putc (s, BGP_ATTR_AS_PATH);
aspath_sizep = stream_get_endp (s);
stream_putw (s, 0);
stream_putw_at (s, aspath_sizep, aspath_put (s, aspath, use32bit));
/* OLD session may need NEW_AS_PATH sent, if there are 4-byte ASNs
* in the path
*/
if (!use32bit && aspath_has_as4 (aspath))
send_as4_path = 1; /* we'll do this later, at the correct place */
/* Nexthop attribute. */
if (attr->flag & ATTR_FLAG_BIT (BGP_ATTR_NEXT_HOP) && afi == AFI_IP)
{
stream_putc (s, BGP_ATTR_FLAG_TRANS);
stream_putc (s, BGP_ATTR_NEXT_HOP);
stream_putc (s, 4);
if (safi == SAFI_MPLS_VPN)
{
if (attr->nexthop.s_addr == 0)
stream_put_ipv4 (s, peer->nexthop.v4.s_addr);
else
stream_put_ipv4 (s, attr->nexthop.s_addr);
}
else
stream_put_ipv4 (s, attr->nexthop.s_addr);
}
/* MED attribute. */
if (attr->flag & ATTR_FLAG_BIT (BGP_ATTR_MULTI_EXIT_DISC))
{
stream_putc (s, BGP_ATTR_FLAG_OPTIONAL);
stream_putc (s, BGP_ATTR_MULTI_EXIT_DISC);
stream_putc (s, 4);
stream_putl (s, attr->med);
}
/* Local preference. */
if ((sort == BGP_PEER_IBGP) || (sort == BGP_PEER_CONFED))
{
stream_putc (s, BGP_ATTR_FLAG_TRANS);
stream_putc (s, BGP_ATTR_LOCAL_PREF);
stream_putc (s, 4);
stream_putl (s, attr->local_pref);
}
/* Atomic aggregate. */
if (attr->flag & ATTR_FLAG_BIT (BGP_ATTR_ATOMIC_AGGREGATE))
{
stream_putc (s, BGP_ATTR_FLAG_TRANS);
stream_putc (s, BGP_ATTR_ATOMIC_AGGREGATE);
stream_putc (s, 0);
}
/* Aggregator. */
if (attr->flag & ATTR_FLAG_BIT (BGP_ATTR_AGGREGATOR))
{
assert (attr->extra);
/* Common to BGP_ATTR_AGGREGATOR, regardless of ASN size */
stream_putc (s, BGP_ATTR_FLAG_OPTIONAL|BGP_ATTR_FLAG_TRANS);
stream_putc (s, BGP_ATTR_AGGREGATOR);
if (use32bit)
{
/* AS4 capable peer */
stream_putc (s, 8);
stream_putl (s, attr->extra->aggregator_as);
}
else
{
/* 2-byte AS peer */
stream_putc (s, 6);
/* Is ASN representable in 2-bytes? Or must AS_TRANS be used? */
if ( attr->extra->aggregator_as > 65535 )
{
stream_putw (s, BGP_AS_TRANS);
/* we have to send AS4_AGGREGATOR, too.
* we'll do that later in order to send attributes in ascending
* order.
*/
send_as4_aggregator = 1;
}
else
stream_putw (s, (u_int16_t) attr->extra->aggregator_as);
}
stream_put_ipv4 (s, attr->extra->aggregator_addr.s_addr);
}
/* Community attribute. */
if (CHECK_FLAG (peer->af_flags[afi][safi], PEER_FLAG_SEND_COMMUNITY)
&& (attr->flag & ATTR_FLAG_BIT (BGP_ATTR_COMMUNITIES)))
{
if (attr->community->size * 4 > 255)
{
stream_putc (s, BGP_ATTR_FLAG_OPTIONAL | BGP_ATTR_FLAG_TRANS
| BGP_ATTR_FLAG_EXTLEN);
stream_putc (s, BGP_ATTR_COMMUNITIES);
stream_putw (s, attr->community->size * 4);
}
else
{
stream_putc (s, BGP_ATTR_FLAG_OPTIONAL | BGP_ATTR_FLAG_TRANS);
stream_putc (s, BGP_ATTR_COMMUNITIES);
stream_putc (s, attr->community->size * 4);
}
stream_put (s, attr->community->val, attr->community->size * 4);
}
/* Route Reflector. */
if ( (sort == BGP_PEER_IBGP) && (from != NULL)
&& (peer_sort (from) == BGP_PEER_IBGP) )
{
/* Originator ID. */
stream_putc (s, BGP_ATTR_FLAG_OPTIONAL);
stream_putc (s, BGP_ATTR_ORIGINATOR_ID);
stream_putc (s, 4);
if (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_ORIGINATOR_ID))
stream_put_in_addr (s, &attr->extra->originator_id);
else
stream_put_in_addr (s, &from->remote_id);
/* Cluster list. */
stream_putc (s, BGP_ATTR_FLAG_OPTIONAL);
stream_putc (s, BGP_ATTR_CLUSTER_LIST);
if (attr->extra && attr->extra->cluster)
{
stream_putc (s, attr->extra->cluster->length + 4);
/* If this peer configuration's parent BGP has cluster_id. */
if (bgp->config & BGP_CONFIG_CLUSTER_ID)
stream_put_in_addr (s, &bgp->cluster_id);
else
stream_put_in_addr (s, &bgp->router_id);
stream_put (s, attr->extra->cluster->list,
attr->extra->cluster->length);
}
else
{
stream_putc (s, 4);
/* If this peer configuration's parent BGP has cluster_id. */
if (bgp->config & BGP_CONFIG_CLUSTER_ID)
stream_put_in_addr (s, &bgp->cluster_id);
else
stream_put_in_addr (s, &bgp->router_id);
}
}
#ifdef HAVE_IPV6
/* If p is IPv6 address put it into attribute. */
if (p->family == AF_INET6)
{
unsigned long sizep;
struct attr_extra *attre = attr->extra;
assert (attr->extra);
stream_putc (s, BGP_ATTR_FLAG_OPTIONAL);
stream_putc (s, BGP_ATTR_MP_REACH_NLRI);
sizep = stream_get_endp (s);
stream_putc (s, 0); /* Marker: Attribute length. */
stream_putw (s, AFI_IP6); /* AFI */
stream_putc (s, safi); /* SAFI */
stream_putc (s, attre->mp_nexthop_len);
if (attre->mp_nexthop_len == 16)
stream_put (s, &attre->mp_nexthop_global, 16);
else if (attre->mp_nexthop_len == 32)
{
stream_put (s, &attre->mp_nexthop_global, 16);
stream_put (s, &attre->mp_nexthop_local, 16);
}
/* SNPA */
stream_putc (s, 0);
/* Prefix write. */
stream_put_prefix (s, p);
/* Set MP attribute length. */
stream_putc_at (s, sizep, (stream_get_endp (s) - sizep) - 1);
}
#endif /* HAVE_IPV6 */
if (p->family == AF_INET && safi == SAFI_MULTICAST)
{
unsigned long sizep;
stream_putc (s, BGP_ATTR_FLAG_OPTIONAL);
stream_putc (s, BGP_ATTR_MP_REACH_NLRI);
sizep = stream_get_endp (s);
stream_putc (s, 0); /* Marker: Attribute Length. */
stream_putw (s, AFI_IP); /* AFI */
stream_putc (s, SAFI_MULTICAST); /* SAFI */
stream_putc (s, 4);
stream_put_ipv4 (s, attr->nexthop.s_addr);
/* SNPA */
stream_putc (s, 0);
/* Prefix write. */
stream_put_prefix (s, p);
/* Set MP attribute length. */
stream_putc_at (s, sizep, (stream_get_endp (s) - sizep) - 1);
}
if (p->family == AF_INET && safi == SAFI_MPLS_VPN)
{
unsigned long sizep;
stream_putc (s, BGP_ATTR_FLAG_OPTIONAL);
stream_putc (s, BGP_ATTR_MP_REACH_NLRI);
sizep = stream_get_endp (s);
stream_putc (s, 0); /* Length of this attribute. */
stream_putw (s, AFI_IP); /* AFI */
stream_putc (s, SAFI_MPLS_LABELED_VPN); /* SAFI */
stream_putc (s, 12);
stream_putl (s, 0);
stream_putl (s, 0);
stream_put (s, &attr->extra->mp_nexthop_global_in, 4);
/* SNPA */
stream_putc (s, 0);
/* Tag, RD, Prefix write. */
stream_putc (s, p->prefixlen + 88);
stream_put (s, tag, 3);
stream_put (s, prd->val, 8);
stream_put (s, &p->u.prefix, PSIZE (p->prefixlen));
/* Set MP attribute length. */
stream_putc_at (s, sizep, (stream_get_endp (s) - sizep) - 1);
}
/* Extended Communities attribute. */
if (CHECK_FLAG (peer->af_flags[afi][safi], PEER_FLAG_SEND_EXT_COMMUNITY)
&& (attr->flag & ATTR_FLAG_BIT (BGP_ATTR_EXT_COMMUNITIES)))
{
struct attr_extra *attre = attr->extra;
assert (attre);
if ((sort == BGP_PEER_IBGP) || (sort == BGP_PEER_CONFED))
{
if (attre->ecommunity->size * 8 > 255)
{
stream_putc (s, BGP_ATTR_FLAG_OPTIONAL | BGP_ATTR_FLAG_TRANS
| BGP_ATTR_FLAG_EXTLEN);
stream_putc (s, BGP_ATTR_EXT_COMMUNITIES);
stream_putw (s, attre->ecommunity->size * 8);
}
else
{
stream_putc (s, BGP_ATTR_FLAG_OPTIONAL | BGP_ATTR_FLAG_TRANS);
stream_putc (s, BGP_ATTR_EXT_COMMUNITIES);
stream_putc (s, attre->ecommunity->size * 8);
}
stream_put (s, attre->ecommunity->val, attre->ecommunity->size * 8);
}
else
{
u_int8_t *pnt;
int tbit;
int ecom_tr_size = 0;
int i;
for (i = 0; i < attre->ecommunity->size; i++)
{
pnt = attre->ecommunity->val + (i * 8);
tbit = *pnt;
if (CHECK_FLAG (tbit, ECOMMUNITY_FLAG_NON_TRANSITIVE))
continue;
ecom_tr_size++;
}
if (ecom_tr_size)
{
if (ecom_tr_size * 8 > 255)
{
stream_putc (s, BGP_ATTR_FLAG_OPTIONAL | BGP_ATTR_FLAG_TRANS
| BGP_ATTR_FLAG_EXTLEN);
stream_putc (s, BGP_ATTR_EXT_COMMUNITIES);
stream_putw (s, ecom_tr_size * 8);
}
else
{
stream_putc (s, BGP_ATTR_FLAG_OPTIONAL | BGP_ATTR_FLAG_TRANS);
stream_putc (s, BGP_ATTR_EXT_COMMUNITIES);
stream_putc (s, ecom_tr_size * 8);
}
for (i = 0; i < attre->ecommunity->size; i++)
{
pnt = attre->ecommunity->val + (i * 8);
tbit = *pnt;
if (CHECK_FLAG (tbit, ECOMMUNITY_FLAG_NON_TRANSITIVE))
continue;
stream_put (s, pnt, 8);
}
}
}
}
if ( send_as4_path )
{
/* If the peer is NOT As4 capable, AND */
/* there are ASnums > 65535 in path THEN
* give out AS4_PATH */
/* Get rid of all AS_CONFED_SEQUENCE and AS_CONFED_SET
* path segments!
* Hm, I wonder... confederation things *should* only be at
* the beginning of an aspath, right? Then we should use
* aspath_delete_confed_seq for this, because it is already
* there! (JK)
* Folks, talk to me: what is reasonable here!?
*/
aspath = aspath_delete_confed_seq (aspath);
stream_putc (s, BGP_ATTR_FLAG_TRANS |BGP_ATTR_FLAG_OPTIONAL
| BGP_ATTR_FLAG_EXTLEN);
stream_putc (s, BGP_ATTR_AS4_PATH);
aspath_sizep = stream_get_endp (s);
stream_putw (s, 0);
stream_putw_at (s, aspath_sizep, aspath_put (s, aspath, 1));
}
if (aspath != attr->aspath)
aspath_free (aspath);
if ( send_as4_aggregator )
{
assert (attr->extra);
/* send AS4_AGGREGATOR, at this place */
/* this section of code moved here in order to ensure the correct
* *ascending* order of attributes
*/
stream_putc (s, BGP_ATTR_FLAG_OPTIONAL|BGP_ATTR_FLAG_TRANS);
stream_putc (s, BGP_ATTR_AS4_AGGREGATOR);
stream_putc (s, 8);
stream_putl (s, attr->extra->aggregator_as);
stream_put_ipv4 (s, attr->extra->aggregator_addr.s_addr);
}
/* Unknown transit attribute. */
if (attr->extra && attr->extra->transit)
stream_put (s, attr->extra->transit->val, attr->extra->transit->length);
/* Return total size of attribute. */
return stream_get_endp (s) - cp;
}
bgp_size_t
bgp_packet_withdraw (struct peer *peer, struct stream *s, struct prefix *p,
afi_t afi, safi_t safi, struct prefix_rd *prd,
u_char *tag)
{
unsigned long cp;
unsigned long attrlen_pnt;
bgp_size_t size;
cp = stream_get_endp (s);
stream_putc (s, BGP_ATTR_FLAG_OPTIONAL);
stream_putc (s, BGP_ATTR_MP_UNREACH_NLRI);
attrlen_pnt = stream_get_endp (s);
stream_putc (s, 0); /* Length of this attribute. */
stream_putw (s, family2afi (p->family));
if (safi == SAFI_MPLS_VPN)
{
/* SAFI */
stream_putc (s, SAFI_MPLS_LABELED_VPN);
/* prefix. */
stream_putc (s, p->prefixlen + 88);
stream_put (s, tag, 3);
stream_put (s, prd->val, 8);
stream_put (s, &p->u.prefix, PSIZE (p->prefixlen));
}
else
{
/* SAFI */
stream_putc (s, safi);
/* prefix */
stream_put_prefix (s, p);
}
/* Set MP attribute length. */
size = stream_get_endp (s) - attrlen_pnt - 1;
stream_putc_at (s, attrlen_pnt, size);
return stream_get_endp (s) - cp;
}
/* Initialization of attribute. */
void
bgp_attr_init (void)
{
aspath_init ();
attrhash_init ();
community_init ();
ecommunity_init ();
cluster_init ();
transit_init ();
}
void
bgp_attr_finish (void)
{
aspath_finish ();
attrhash_finish ();
community_finish ();
ecommunity_finish ();
cluster_finish ();
transit_finish ();
}
/* Make attribute packet. */
void
bgp_dump_routes_attr (struct stream *s, struct attr *attr,
struct prefix *prefix)
{
unsigned long cp;
unsigned long len;
size_t aspath_lenp;
struct aspath *aspath;
/* Remember current pointer. */
cp = stream_get_endp (s);
/* Place holder of length. */
stream_putw (s, 0);
/* Origin attribute. */
stream_putc (s, BGP_ATTR_FLAG_TRANS);
stream_putc (s, BGP_ATTR_ORIGIN);
stream_putc (s, 1);
stream_putc (s, attr->origin);
aspath = attr->aspath;
stream_putc (s, BGP_ATTR_FLAG_TRANS|BGP_ATTR_FLAG_EXTLEN);
stream_putc (s, BGP_ATTR_AS_PATH);
aspath_lenp = stream_get_endp (s);
stream_putw (s, 0);
stream_putw_at (s, aspath_lenp, aspath_put (s, aspath, 1));
/* Nexthop attribute. */
/* If it's an IPv6 prefix, don't dump the IPv4 nexthop to save space */
if(prefix != NULL
#ifdef HAVE_IPV6
&& prefix->family != AF_INET6
#endif /* HAVE_IPV6 */
)
{
stream_putc (s, BGP_ATTR_FLAG_TRANS);
stream_putc (s, BGP_ATTR_NEXT_HOP);
stream_putc (s, 4);
stream_put_ipv4 (s, attr->nexthop.s_addr);
}
/* MED attribute. */
if (attr->flag & ATTR_FLAG_BIT (BGP_ATTR_MULTI_EXIT_DISC))
{
stream_putc (s, BGP_ATTR_FLAG_OPTIONAL);
stream_putc (s, BGP_ATTR_MULTI_EXIT_DISC);
stream_putc (s, 4);
stream_putl (s, attr->med);
}
/* Local preference. */
if (attr->flag & ATTR_FLAG_BIT (BGP_ATTR_LOCAL_PREF))
{
stream_putc (s, BGP_ATTR_FLAG_TRANS);
stream_putc (s, BGP_ATTR_LOCAL_PREF);
stream_putc (s, 4);
stream_putl (s, attr->local_pref);
}
/* Atomic aggregate. */
if (attr->flag & ATTR_FLAG_BIT (BGP_ATTR_ATOMIC_AGGREGATE))
{
stream_putc (s, BGP_ATTR_FLAG_TRANS);
stream_putc (s, BGP_ATTR_ATOMIC_AGGREGATE);
stream_putc (s, 0);
}
/* Aggregator. */
if (attr->flag & ATTR_FLAG_BIT (BGP_ATTR_AGGREGATOR))
{
assert (attr->extra);
stream_putc (s, BGP_ATTR_FLAG_OPTIONAL | BGP_ATTR_FLAG_TRANS);
stream_putc (s, BGP_ATTR_AGGREGATOR);
stream_putc (s, 8);
stream_putl (s, attr->extra->aggregator_as);
stream_put_ipv4 (s, attr->extra->aggregator_addr.s_addr);
}
/* Community attribute. */
if (attr->flag & ATTR_FLAG_BIT (BGP_ATTR_COMMUNITIES))
{
if (attr->community->size * 4 > 255)
{
stream_putc (s, BGP_ATTR_FLAG_OPTIONAL | BGP_ATTR_FLAG_TRANS
| BGP_ATTR_FLAG_EXTLEN);
stream_putc (s, BGP_ATTR_COMMUNITIES);
stream_putw (s, attr->community->size * 4);
}
else
{
stream_putc (s, BGP_ATTR_FLAG_OPTIONAL|BGP_ATTR_FLAG_TRANS);
stream_putc (s, BGP_ATTR_COMMUNITIES);
stream_putc (s, attr->community->size * 4);
}
stream_put (s, attr->community->val, attr->community->size * 4);
}
#ifdef HAVE_IPV6
/* Add a MP_NLRI attribute to dump the IPv6 next hop */
if (prefix != NULL && prefix->family == AF_INET6 && attr->extra &&
(attr->extra->mp_nexthop_len == 16 || attr->extra->mp_nexthop_len == 32) )
{
int sizep;
struct attr_extra *attre = attr->extra;
stream_putc(s, BGP_ATTR_FLAG_OPTIONAL);
stream_putc(s, BGP_ATTR_MP_REACH_NLRI);
sizep = stream_get_endp (s);
/* MP header */
stream_putc (s, 0); /* Marker: Attribute length. */
stream_putw(s, AFI_IP6); /* AFI */
stream_putc(s, SAFI_UNICAST); /* SAFI */
/* Next hop */
stream_putc(s, attre->mp_nexthop_len);
stream_put(s, &attre->mp_nexthop_global, 16);
if (attre->mp_nexthop_len == 32)
stream_put(s, &attre->mp_nexthop_local, 16);
/* SNPA */
stream_putc(s, 0);
/* Prefix */
stream_put_prefix(s, prefix);
/* Set MP attribute length. */
stream_putc_at (s, sizep, (stream_get_endp (s) - sizep) - 1);
}
#endif /* HAVE_IPV6 */
/* Return total size of attribute. */
len = stream_get_endp (s) - cp - 2;
stream_putw_at (s, cp, len);
}
|