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
|
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Zebra SRv6 definitions
* Copyright (C) 2020 Hiroki Shirokura, LINE Corporation
* Copyright (C) 2020 Masakazu Asama
*/
#include <zebra.h>
#include "network.h"
#include "prefix.h"
#include "stream.h"
#include "srv6.h"
#include "zebra/debug.h"
#include "zebra/zapi_msg.h"
#include "zebra/zserv.h"
#include "zebra/zebra_router.h"
#include "zebra/zebra_srv6.h"
#include "zebra/zebra_errors.h"
#include "zebra/ge_netlink.h"
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <arpa/inet.h>
#include <netinet/in.h>
DEFINE_MGROUP(SRV6_MGR, "SRv6 Manager");
DEFINE_MTYPE_STATIC(SRV6_MGR, SRV6M_CHUNK, "SRv6 Manager Chunk");
DEFINE_MTYPE_STATIC(SRV6_MGR, ZEBRA_SRV6_SID_BLOCK, "SRv6 SID block");
DEFINE_MTYPE_STATIC(SRV6_MGR, ZEBRA_SRV6_SID_FUNC, "SRv6 SID function");
DEFINE_MTYPE_STATIC(SRV6_MGR, ZEBRA_SRV6_USID_WLIB,
"SRv6 uSID Wide LIB information");
DEFINE_MTYPE_STATIC(SRV6_MGR, ZEBRA_SRV6_SID, "SRv6 SID");
DEFINE_MTYPE_STATIC(SRV6_MGR, ZEBRA_SRV6_SID_CTX, "SRv6 SID context");
/* Prototypes */
static int release_srv6_sid_func_dynamic(struct zebra_srv6_sid_block *block,
uint32_t sid_func);
/* define hooks for the basic API, so that it can be specialized or served
* externally
*/
DEFINE_HOOK(srv6_manager_client_connect,
(struct zserv *client, vrf_id_t vrf_id),
(client, vrf_id));
DEFINE_HOOK(srv6_manager_client_disconnect,
(struct zserv *client), (client));
DEFINE_HOOK(srv6_manager_get_chunk,
(struct srv6_locator **loc,
struct zserv *client,
const char *locator_name,
vrf_id_t vrf_id),
(loc, client, locator_name, vrf_id));
DEFINE_HOOK(srv6_manager_release_chunk,
(struct zserv *client,
const char *locator_name,
vrf_id_t vrf_id),
(client, locator_name, vrf_id));
DEFINE_HOOK(srv6_manager_get_sid,
(struct zebra_srv6_sid **sid, struct zserv *client,
struct srv6_sid_ctx *ctx, struct in6_addr *sid_value,
const char *locator_name),
(sid, client, ctx, sid_value, locator_name));
DEFINE_HOOK(srv6_manager_release_sid,
(struct zserv *client, struct srv6_sid_ctx *ctx), (client, ctx));
DEFINE_HOOK(srv6_manager_get_locator,
(struct srv6_locator **locator, struct zserv *client,
const char *locator_name),
(locator, client, locator_name));
/* define wrappers to be called in zapi_msg.c (as hooks must be called in
* source file where they were defined)
*/
void srv6_manager_client_connect_call(struct zserv *client, vrf_id_t vrf_id)
{
hook_call(srv6_manager_client_connect, client, vrf_id);
}
void srv6_manager_get_locator_chunk_call(struct srv6_locator **loc,
struct zserv *client,
const char *locator_name,
vrf_id_t vrf_id)
{
hook_call(srv6_manager_get_chunk, loc, client, locator_name, vrf_id);
}
void srv6_manager_release_locator_chunk_call(struct zserv *client,
const char *locator_name,
vrf_id_t vrf_id)
{
hook_call(srv6_manager_release_chunk, client, locator_name, vrf_id);
}
int srv6_manager_client_disconnect_cb(struct zserv *client)
{
hook_call(srv6_manager_client_disconnect, client);
return 0;
}
void srv6_manager_get_sid_call(struct zebra_srv6_sid **sid,
struct zserv *client, struct srv6_sid_ctx *ctx,
struct in6_addr *sid_value,
const char *locator_name)
{
hook_call(srv6_manager_get_sid, sid, client, ctx, sid_value,
locator_name);
}
void srv6_manager_release_sid_call(struct zserv *client,
struct srv6_sid_ctx *ctx)
{
hook_call(srv6_manager_release_sid, client, ctx);
}
void srv6_manager_get_locator_call(struct srv6_locator **locator,
struct zserv *client,
const char *locator_name)
{
hook_call(srv6_manager_get_locator, locator, client, locator_name);
}
static int zebra_srv6_cleanup(struct zserv *client)
{
/* Client has disconnected, let's release all the SIDs allocated by it. */
release_daemon_srv6_sids(client);
return 0;
}
/* --- Zebra SRv6 SID context management functions -------------------------- */
struct zebra_srv6_sid_ctx *zebra_srv6_sid_ctx_alloc(void)
{
struct zebra_srv6_sid_ctx *ctx = NULL;
ctx = XCALLOC(MTYPE_ZEBRA_SRV6_SID_CTX,
sizeof(struct zebra_srv6_sid_ctx));
return ctx;
}
void zebra_srv6_sid_ctx_free(struct zebra_srv6_sid_ctx *ctx)
{
XFREE(MTYPE_ZEBRA_SRV6_SID_CTX, ctx);
}
/**
* Free an SRv6 SID context.
*
* @param val SRv6 SID context to be freed
*/
void delete_zebra_srv6_sid_ctx(void *val)
{
zebra_srv6_sid_ctx_free((struct zebra_srv6_sid_ctx *)val);
}
/* --- Zebra SRv6 SID format management functions --------------------------- */
void srv6_sid_format_register(struct srv6_sid_format *format)
{
struct zebra_srv6 *srv6 = zebra_srv6_get_default();
/* Ensure that the format is registered only once */
assert(!srv6_sid_format_lookup(format->name));
listnode_add(srv6->sid_formats, format);
}
void srv6_sid_format_unregister(struct srv6_sid_format *format)
{
struct zebra_srv6 *srv6 = zebra_srv6_get_default();
listnode_delete(srv6->sid_formats, format);
}
struct srv6_sid_format *srv6_sid_format_lookup(const char *name)
{
struct zebra_srv6 *srv6 = zebra_srv6_get_default();
struct srv6_sid_format *format;
struct listnode *node;
for (ALL_LIST_ELEMENTS_RO(srv6->sid_formats, node, format))
if (!strncmp(name, format->name, sizeof(format->name)))
return format;
return NULL;
}
/*
* Called to change the SID format of a locator.
*
* After switching the locator to a different format, the SIDs allocated
* from the locator may no longer be valid; we need to notify the
* interested zclient that the locator has changed, so that the
* zclients can withdraw/uninstall the old SIDs, allocate/advertise/program
* the new SIDs.
*/
void zebra_srv6_locator_format_set(struct srv6_locator *locator,
struct srv6_sid_format *format)
{
struct zebra_srv6 *srv6 = zebra_srv6_get_default();
struct zebra_srv6_sid_block *block_old, *block_new;
struct prefix_ipv6 block_pfx_new;
struct listnode *node, *nnode;
struct zebra_srv6_sid_ctx *ctx;
if (!locator)
return;
locator->sid_format = format;
if (IS_ZEBRA_DEBUG_PACKET)
zlog_debug("%s: Locator %s format has changed, old=%s new=%s",
__func__, locator->name,
locator->sid_format ? ((struct srv6_sid_format *)
locator->sid_format)
->name
: NULL,
format ? format->name : NULL);
/* Notify zclients that the locator is no longer valid */
zebra_notify_srv6_locator_delete(locator);
for (ALL_LIST_ELEMENTS(srv6->sids, node, nnode, ctx)) {
if (!ctx->sid || ctx->sid->locator != locator)
continue;
if (ctx->sid)
zebra_srv6_sid_free(ctx->sid);
listnode_delete(srv6->sids, ctx);
zebra_srv6_sid_ctx_free(ctx);
}
if (IS_ZEBRA_DEBUG_PACKET)
zlog_debug("%s: Locator %s format has changed, send SRV6_LOCATOR_DEL notification to zclients",
__func__, locator->name);
/* Release the current parent block */
block_old = locator->sid_block;
if (block_old) {
block_old->refcnt--;
if (block_old->refcnt == 0) {
listnode_delete(srv6->sid_blocks, block_old);
zebra_srv6_sid_block_free(block_old);
}
}
locator->sid_block = NULL;
block_pfx_new = locator->prefix;
if (format)
block_pfx_new.prefixlen = format->block_len;
else
block_pfx_new.prefixlen = locator->block_bits_length;
apply_mask(&block_pfx_new);
/* Allocate the new parent block */
block_new = zebra_srv6_sid_block_lookup(&block_pfx_new);
if (!block_new) {
block_new = zebra_srv6_sid_block_alloc(format, &block_pfx_new);
listnode_add(srv6->sid_blocks, block_new);
}
block_new->refcnt++;
locator->sid_block = block_new;
if (IS_ZEBRA_DEBUG_PACKET)
zlog_debug("%s: Locator %s format has changed, send SRV6_LOCATOR_ADD notification to zclients",
__func__, locator->name);
/* Notify zclients about the updated locator */
zebra_srv6_locator_add(locator);
}
/*
* Called when a SID format is modified by the user.
*
* After modifying a SID format, the SIDs that are using that format may no
* longer be valid.
* This function walks through the list of locators that are using the SID format
* and notifies the zclients that the locator has changed, so that the zclients
* can withdraw/uninstall the old SIDs, allocate/program/advertise the new SIDs.
*/
void zebra_srv6_sid_format_changed_cb(struct srv6_sid_format *format)
{
struct zebra_srv6 *srv6 = zebra_srv6_get_default();
struct srv6_locator *locator;
struct listnode *node, *nnode;
struct zebra_srv6_sid_ctx *ctx;
if (IS_ZEBRA_DEBUG_PACKET)
zlog_debug("%s: SID format %s has changed. Notifying zclients.",
__func__, format->name);
for (ALL_LIST_ELEMENTS_RO(srv6->locators, node, locator)) {
if (locator->sid_format == format) {
if (IS_ZEBRA_DEBUG_PACKET)
zlog_debug("%s: Locator %s has changed because its format (%s) has been modified. Notifying zclients.",
__func__, locator->name,
format->name);
/* Notify zclients that the locator is no longer valid */
zebra_notify_srv6_locator_delete(locator);
for (ALL_LIST_ELEMENTS(srv6->sids, node, nnode, ctx)) {
if (!ctx->sid || ctx->sid->locator != locator)
continue;
if (ctx->sid)
zebra_srv6_sid_free(ctx->sid);
listnode_delete(srv6->sids, ctx);
zebra_srv6_sid_ctx_free(ctx);
}
/* Notify zclients about the updated locator */
zebra_notify_srv6_locator_add(locator);
}
}
}
/*
* Helper function to create the SRv6 compressed format `usid-f3216`.
*/
static struct srv6_sid_format *create_srv6_sid_format_usid_f3216(void)
{
struct srv6_sid_format *format = NULL;
format = srv6_sid_format_alloc(SRV6_SID_FORMAT_USID_F3216_NAME);
format->type = SRV6_SID_FORMAT_TYPE_USID;
/* Define block/node/function length */
format->block_len = SRV6_SID_FORMAT_USID_F3216_BLOCK_LEN;
format->node_len = SRV6_SID_FORMAT_USID_F3216_NODE_LEN;
format->function_len = SRV6_SID_FORMAT_USID_F3216_FUNCTION_LEN;
format->argument_len = SRV6_SID_FORMAT_USID_F3216_ARGUMENT_LEN;
/* Define the ranges from which the SID function can be allocated */
format->config.usid.lib_start = SRV6_SID_FORMAT_USID_F3216_LIB_START;
format->config.usid.elib_start = SRV6_SID_FORMAT_USID_F3216_ELIB_START;
format->config.usid.elib_end = SRV6_SID_FORMAT_USID_F3216_ELIB_END;
format->config.usid.wlib_start = SRV6_SID_FORMAT_USID_F3216_WLIB_START;
format->config.usid.wlib_end = SRV6_SID_FORMAT_USID_F3216_WLIB_END;
format->config.usid.ewlib_start = SRV6_SID_FORMAT_USID_F3216_EWLIB_START;
return format;
}
/*
* Helper function to create the SRv6 uncompressed format.
*/
static struct srv6_sid_format *create_srv6_sid_format_uncompressed(void)
{
struct srv6_sid_format *format = NULL;
format = srv6_sid_format_alloc(SRV6_SID_FORMAT_UNCOMPRESSED_F4024_NAME);
format->type = SRV6_SID_FORMAT_TYPE_UNCOMPRESSED;
/* Define block/node/function length */
format->block_len = SRV6_SID_FORMAT_UNCOMPRESSED_F4024_BLOCK_LEN;
format->node_len = SRV6_SID_FORMAT_UNCOMPRESSED_F4024_NODE_LEN;
format->function_len = SRV6_SID_FORMAT_UNCOMPRESSED_F4024_FUNCTION_LEN;
format->argument_len = SRV6_SID_FORMAT_UNCOMPRESSED_F4024_ARGUMENT_LEN;
/* Define the ranges from which the SID function can be allocated */
format->config.uncompressed.explicit_start =
SRV6_SID_FORMAT_UNCOMPRESSED_F4024_EXPLICIT_RANGE_START;
return format;
}
/* --- Zebra SRv6 SID function management functions ---------------------------- */
uint32_t *zebra_srv6_sid_func_alloc(uint32_t func)
{
uint32_t *sid_func_ptr;
sid_func_ptr = XCALLOC(MTYPE_ZEBRA_SRV6_SID_FUNC, sizeof(uint32_t));
*sid_func_ptr = func;
return sid_func_ptr;
}
void zebra_srv6_sid_func_free(uint32_t *func)
{
XFREE(MTYPE_ZEBRA_SRV6_SID_FUNC, func);
}
/**
* Free an SRv6 SID function.
*
* @param val SRv6 SID function to be freed
*/
void delete_zebra_srv6_sid_func(void *val)
{
zebra_srv6_sid_func_free((uint32_t *)val);
}
/* --- Zebra SRv6 SID block management functions ---------------------------- */
static struct zebra_srv6_sid_block *zebra_srv6_sid_block_alloc_internal(void)
{
struct zebra_srv6_sid_block *block = NULL;
block = XCALLOC(MTYPE_ZEBRA_SRV6_SID_BLOCK,
sizeof(struct zebra_srv6_sid_block));
return block;
}
struct zebra_srv6_sid_block *
zebra_srv6_sid_block_alloc(struct srv6_sid_format *format,
struct prefix_ipv6 *prefix)
{
struct zebra_srv6_sid_block *block;
block = zebra_srv6_sid_block_alloc_internal();
block->sid_format = format;
block->prefix = *prefix;
if (format) {
if (format->type == SRV6_SID_FORMAT_TYPE_USID) {
uint32_t wlib_start, wlib_end, func;
/* Init uSID LIB */
block->u.usid.lib.func_allocated = list_new();
block->u.usid.lib.func_allocated->del =
delete_zebra_srv6_sid_func;
block->u.usid.lib.func_released = list_new();
block->u.usid.lib.func_released->del =
delete_zebra_srv6_sid_func;
block->u.usid.lib.first_available_func =
format->config.usid.lib_start;
/* Init uSID Wide LIB */
wlib_start = block->sid_format->config.usid.wlib_start;
wlib_end = block->sid_format->config.usid.wlib_end;
block->u.usid.wide_lib =
XCALLOC(MTYPE_ZEBRA_SRV6_USID_WLIB,
(wlib_end - wlib_start + 1) *
sizeof(struct wide_lib));
for (func = 0; func < wlib_end - wlib_start + 1;
func++) {
block->u.usid.wide_lib[func].func_allocated =
list_new();
block->u.usid.wide_lib[func].func_allocated->del =
delete_zebra_srv6_sid_func;
block->u.usid.wide_lib[func].func_released =
list_new();
block->u.usid.wide_lib[func].func_released->del =
delete_zebra_srv6_sid_func;
block->u.usid.wide_lib[func].func = func;
}
} else if (format->type == SRV6_SID_FORMAT_TYPE_UNCOMPRESSED) {
block->u.uncompressed.func_allocated = list_new();
block->u.uncompressed.func_allocated->del =
delete_zebra_srv6_sid_func;
block->u.uncompressed.func_released = list_new();
block->u.uncompressed.func_released->del =
delete_zebra_srv6_sid_func;
block->u.uncompressed.first_available_func =
SRV6_SID_FORMAT_UNCOMPRESSED_F4024_FUNC_UNRESERVED_MIN;
} else {
/* We should never arrive here */
assert(0);
}
} else {
block->u.uncompressed.func_allocated = list_new();
block->u.uncompressed.func_allocated->del =
delete_zebra_srv6_sid_func;
block->u.uncompressed.func_released = list_new();
block->u.uncompressed.func_released->del =
delete_zebra_srv6_sid_func;
block->u.uncompressed.first_available_func = 1;
}
return block;
}
void zebra_srv6_sid_block_free(struct zebra_srv6_sid_block *block)
{
if (block->sid_format) {
if (block->sid_format->type == SRV6_SID_FORMAT_TYPE_USID) {
uint32_t wlib_start, wlib_end, func;
/* Free uSID LIB */
list_delete(&block->u.usid.lib.func_allocated);
list_delete(&block->u.usid.lib.func_released);
/* Free uSID Wide LIB */
wlib_start = block->sid_format->config.usid.wlib_start;
wlib_end = block->sid_format->config.usid.wlib_end;
for (func = 0; func < wlib_end - wlib_start + 1;
func++) {
list_delete(&block->u.usid.wide_lib[func]
.func_allocated);
list_delete(&block->u.usid.wide_lib[func]
.func_released);
}
XFREE(MTYPE_ZEBRA_SRV6_USID_WLIB,
block->u.usid.wide_lib);
} else if (block->sid_format->type ==
SRV6_SID_FORMAT_TYPE_UNCOMPRESSED) {
list_delete(&block->u.uncompressed.func_allocated);
list_delete(&block->u.uncompressed.func_released);
} else {
/* We should never arrive here */
assert(0);
}
} else {
list_delete(&block->u.uncompressed.func_allocated);
list_delete(&block->u.uncompressed.func_released);
}
XFREE(MTYPE_ZEBRA_SRV6_SID_BLOCK, block);
}
/**
* Free an SRv6 SID block.
*
* @param val SRv6 SID block to be freed
*/
void delete_zebra_srv6_sid_block(void *val)
{
zebra_srv6_sid_block_free((struct zebra_srv6_sid_block *)val);
}
struct zebra_srv6_sid_block *
zebra_srv6_sid_block_lookup(struct prefix_ipv6 *prefix)
{
struct zebra_srv6 *srv6 = zebra_srv6_get_default();
struct zebra_srv6_sid_block *block;
struct listnode *node;
for (ALL_LIST_ELEMENTS_RO(srv6->sid_blocks, node, block))
if (prefix_match(prefix, &block->prefix))
return block;
return NULL;
}
/* --- Zebra SRv6 SID management functions ---------------------------------- */
/**
* Alloc and fill an SRv6 SID.
*
* @param ctx Context associated with the SID to be created
* @param sid_value IPv6 address associated with the SID to be created
* @param locator Parent locator of the SID to be created
* @param sid_block Block from which the SID value has been allocated
* @param sid_func Function part of the SID to be created
* @param alloc_mode Allocation mode of the Function (dynamic vs explicit)
* @return The requested SID
*/
struct zebra_srv6_sid *
zebra_srv6_sid_alloc(struct zebra_srv6_sid_ctx *ctx, struct in6_addr *sid_value,
struct srv6_locator *locator,
struct zebra_srv6_sid_block *sid_block, uint32_t sid_func,
enum srv6_sid_alloc_mode alloc_mode)
{
struct zebra_srv6_sid *sid;
if (!ctx || !sid_value)
return NULL;
sid = XCALLOC(MTYPE_ZEBRA_SRV6_SID, sizeof(struct zebra_srv6_sid));
sid->ctx = ctx;
sid->value = *sid_value;
sid->locator = locator;
sid->block = sid_block;
sid->func = sid_func;
sid->alloc_mode = alloc_mode;
sid->client_list = list_new();
return sid;
}
void zebra_srv6_sid_free(struct zebra_srv6_sid *sid)
{
list_delete(&sid->client_list);
XFREE(MTYPE_ZEBRA_SRV6_SID, sid);
}
/**
* Free an SRv6 SID.
*
* @param val SRv6 SID to be freed
*/
void delete_zebra_srv6_sid(void *val)
{
zebra_srv6_sid_free((struct zebra_srv6_sid *)val);
}
void zebra_srv6_locator_add(struct srv6_locator *locator)
{
struct zebra_srv6 *srv6 = zebra_srv6_get_default();
struct srv6_locator *tmp;
struct listnode *node;
struct zserv *client;
tmp = zebra_srv6_locator_lookup(locator->name);
if (!tmp)
listnode_add(srv6->locators, locator);
/*
* Notify new locator info to zclients.
*
* The srv6 locators and their prefixes are managed by zserv(zebra).
* And an actual configuration the srv6 sid in the srv6 locator is done
* by zclient(bgpd, isisd, etc). The configuration of each locator
* allocation and specify it by zserv and zclient should be
* asynchronous. For that, zclient should be received the event via
* ZAPI when a srv6 locator is added on zebra.
* Basically, in SRv6, adding/removing SRv6 locators is performed less
* frequently than adding rib entries, so a broad to all zclients will
* not degrade the overall performance of FRRouting.
*/
for (ALL_LIST_ELEMENTS_RO(zrouter.client_list, node, client))
zsend_zebra_srv6_locator_add(client, locator);
}
void zebra_srv6_locator_delete(struct srv6_locator *locator)
{
struct listnode *n;
struct zebra_srv6 *srv6 = zebra_srv6_get_default();
struct zserv *client;
/*
* Notify deleted locator info to zclients if needed.
*
* zclient(bgpd,isisd,etc) allocates a sid from srv6 locator chunk and
* uses it for its own purpose. For example, in the case of BGP L3VPN,
* the SID assigned to vpn unicast rib will be given.
* And when the locator is deleted by zserv(zebra), those SIDs need to
* be withdrawn. The zclient must initiate the withdrawal of the SIDs
* by ZEBRA_SRV6_LOCATOR_DELETE, and this notification is sent to the
* owner of each chunk.
*/
for (ALL_LIST_ELEMENTS_RO(zrouter.client_list, n, client))
zsend_zebra_srv6_locator_delete(client, locator);
listnode_delete(srv6->locators, locator);
srv6_locator_free(locator);
}
struct srv6_locator *zebra_srv6_locator_lookup(const char *name)
{
struct zebra_srv6 *srv6 = zebra_srv6_get_default();
struct srv6_locator *locator;
struct listnode *node;
for (ALL_LIST_ELEMENTS_RO(srv6->locators, node, locator))
if (!strncmp(name, locator->name, SRV6_LOCNAME_SIZE))
return locator;
return NULL;
}
void zebra_notify_srv6_locator_add(struct srv6_locator *locator)
{
struct listnode *node;
struct zserv *client;
/*
* Notify new locator info to zclients.
*
* The srv6 locators and their prefixes are managed by zserv(zebra).
* And an actual configuration the srv6 sid in the srv6 locator is done
* by zclient(bgpd, isisd, etc). The configuration of each locator
* allocation and specify it by zserv and zclient should be
* asynchronous. For that, zclient should be received the event via
* ZAPI when a srv6 locator is added on zebra.
* Basically, in SRv6, adding/removing SRv6 locators is performed less
* frequently than adding rib entries, so a broad to all zclients will
* not degrade the overall performance of FRRouting.
*/
for (ALL_LIST_ELEMENTS_RO(zrouter.client_list, node, client))
zsend_zebra_srv6_locator_add(client, locator);
}
void zebra_notify_srv6_locator_delete(struct srv6_locator *locator)
{
struct listnode *n;
struct zserv *client;
/*
* Notify deleted locator info to zclients if needed.
*
* zclient(bgpd,isisd,etc) allocates a sid from srv6 locator chunk and
* uses it for its own purpose. For example, in the case of BGP L3VPN,
* the SID assigned to vpn unicast rib will be given.
* And when the locator is deleted by zserv(zebra), those SIDs need to
* be withdrawn. The zclient must initiate the withdrawal of the SIDs
* by ZEBRA_SRV6_LOCATOR_DELETE, and this notification is sent to the
* owner of each chunk.
*/
for (ALL_LIST_ELEMENTS_RO(zrouter.client_list, n, client))
zsend_zebra_srv6_locator_delete(client, locator);
}
struct zebra_srv6 srv6;
struct zebra_srv6 *zebra_srv6_get_default(void)
{
static bool first_execution = true;
struct srv6_sid_format *format_usidf3216;
struct srv6_sid_format *format_uncompressed;
if (first_execution) {
first_execution = false;
srv6.locators = list_new();
/* Initialize list of SID formats */
srv6.sid_formats = list_new();
srv6.sid_formats->del = delete_srv6_sid_format;
/* Create SID format `usid-f3216` */
format_usidf3216 = create_srv6_sid_format_usid_f3216();
srv6_sid_format_register(format_usidf3216);
/* Create SID format `uncompressed` */
format_uncompressed = create_srv6_sid_format_uncompressed();
srv6_sid_format_register(format_uncompressed);
/* Init list to store SRv6 SIDs */
srv6.sids = list_new();
srv6.sids->del = delete_zebra_srv6_sid_ctx;
/* Init list to store SRv6 SID blocks */
srv6.sid_blocks = list_new();
srv6.sid_blocks->del = delete_zebra_srv6_sid_block;
}
return &srv6;
}
/**
* Core function, assigns srv6-locator chunks
*
* It first searches through the list to check if there's one available
* (previously released). Otherwise it creates and assigns a new one
*
* @param proto Daemon protocol of client, to identify the owner
* @param instance Instance, to identify the owner
* @param session_id SessionID of client
* @param name Name of SRv6-locator
* @return Pointer to the assigned srv6-locator chunk,
* or NULL if the request could not be satisfied
*/
static struct srv6_locator *
assign_srv6_locator_chunk(uint8_t proto,
uint16_t instance,
uint32_t session_id,
const char *locator_name)
{
bool chunk_found = false;
struct listnode *node = NULL;
struct srv6_locator *loc = NULL;
struct srv6_locator_chunk *chunk = NULL;
loc = zebra_srv6_locator_lookup(locator_name);
if (!loc) {
zlog_info("%s: locator %s was not found",
__func__, locator_name);
return NULL;
}
for (ALL_LIST_ELEMENTS_RO((struct list *)loc->chunks, node, chunk)) {
if (chunk->proto != NO_PROTO && chunk->proto != proto)
continue;
chunk_found = true;
break;
}
if (!chunk_found) {
zlog_info("%s: locator is already owned", __func__);
return NULL;
}
chunk->proto = proto;
chunk->instance = instance;
chunk->session_id = session_id;
return loc;
}
static int zebra_srv6_manager_get_locator_chunk(struct srv6_locator **loc,
struct zserv *client,
const char *locator_name,
vrf_id_t vrf_id)
{
int ret = 0;
*loc = assign_srv6_locator_chunk(client->proto, client->instance,
client->session_id, locator_name);
if (!*loc)
zlog_err("Unable to assign locator chunk to %s instance %u",
zebra_route_string(client->proto), client->instance);
else if (IS_ZEBRA_DEBUG_PACKET)
zlog_info("Assigned locator chunk %s to %s instance %u",
(*loc)->name, zebra_route_string(client->proto),
client->instance);
if (*loc && (*loc)->status_up)
ret = zsend_srv6_manager_get_locator_chunk_response(client,
vrf_id,
*loc);
return ret;
}
/**
* Core function, release no longer used srv6-locator chunks
*
* @param proto Daemon protocol of client, to identify the owner
* @param instance Instance, to identify the owner
* @param session_id Zclient session ID, to identify the zclient session
* @param locator_name SRv6-locator name, to identify the actual locator
* @return 0 on success, -1 otherwise
*/
static int release_srv6_locator_chunk(uint8_t proto, uint16_t instance,
uint32_t session_id,
const char *locator_name)
{
int ret = -1;
struct listnode *node;
struct srv6_locator_chunk *chunk;
struct srv6_locator *loc = NULL;
loc = zebra_srv6_locator_lookup(locator_name);
if (!loc)
return -1;
if (IS_ZEBRA_DEBUG_PACKET)
zlog_debug("%s: Releasing srv6-locator on %s", __func__,
locator_name);
for (ALL_LIST_ELEMENTS_RO((struct list *)loc->chunks, node, chunk)) {
if (chunk->proto != proto ||
chunk->instance != instance ||
chunk->session_id != session_id)
continue;
chunk->proto = NO_PROTO;
chunk->instance = 0;
chunk->session_id = 0;
chunk->keep = 0;
ret = 0;
break;
}
if (ret != 0)
flog_err(EC_ZEBRA_SRV6M_UNRELEASED_LOCATOR_CHUNK,
"%s: SRv6 locator chunk not released", __func__);
return ret;
}
static int zebra_srv6_manager_release_locator_chunk(struct zserv *client,
const char *locator_name,
vrf_id_t vrf_id)
{
if (vrf_id != VRF_DEFAULT) {
zlog_err("SRv6 locator doesn't support vrf");
return -1;
}
return release_srv6_locator_chunk(client->proto, client->instance,
client->session_id, locator_name);
}
/**
* Release srv6-locator chunks from a client.
*
* Called on client disconnection or reconnection. It only releases chunks
* with empty keep value.
*
* @param proto Daemon protocol of client, to identify the owner
* @param instance Instance, to identify the owner
* @return Number of chunks released
*/
int release_daemon_srv6_locator_chunks(struct zserv *client)
{
int ret;
int count = 0;
struct zebra_srv6 *srv6 = zebra_srv6_get_default();
struct listnode *loc_node;
struct listnode *chunk_node;
struct srv6_locator *loc;
struct srv6_locator_chunk *chunk;
if (IS_ZEBRA_DEBUG_PACKET)
zlog_debug("%s: Releasing chunks for client proto %s, instance %d, session %u",
__func__, zebra_route_string(client->proto),
client->instance, client->session_id);
for (ALL_LIST_ELEMENTS_RO(srv6->locators, loc_node, loc)) {
for (ALL_LIST_ELEMENTS_RO(loc->chunks, chunk_node, chunk)) {
if (chunk->proto == client->proto &&
chunk->instance == client->instance &&
chunk->session_id == client->session_id &&
chunk->keep == 0) {
ret = release_srv6_locator_chunk(
chunk->proto, chunk->instance,
chunk->session_id, loc->name);
if (ret == 0)
count++;
}
}
}
if (IS_ZEBRA_DEBUG_PACKET)
zlog_debug("%s: Released %d srv6-locator chunks",
__func__, count);
return count;
}
void zebra_srv6_encap_src_addr_set(struct in6_addr *encap_src_addr)
{
struct zebra_srv6 *srv6 = zebra_srv6_get_default();
if (!encap_src_addr)
return;
memcpy(&srv6->encap_src_addr, encap_src_addr, sizeof(struct in6_addr));
}
void zebra_srv6_encap_src_addr_unset(void)
{
struct zebra_srv6 *srv6 = zebra_srv6_get_default();
memset(&srv6->encap_src_addr, 0, sizeof(struct in6_addr));
}
/* --- SRv6 SID Allocation/Release functions -------------------------------- */
/**
* Return the SRv6 SID obtained composing the locator and function.
*
* @param sid_value SRv6 SID address returned
* @param locator Parent locator of the SRv6 SID
* @param sid_func Function part of the SID
* @return True if success, False otherwise
*/
static bool zebra_srv6_sid_compose(struct in6_addr *sid_value,
struct srv6_locator *locator,
uint32_t sid_func)
{
uint8_t offset, func_len;
struct srv6_sid_format *format;
if (!sid_value || !locator)
return false;
format = locator->sid_format;
if (format) {
offset = format->block_len + format->node_len;
func_len = format->function_len;
} else {
offset = locator->block_bits_length + locator->node_bits_length;
func_len = locator->function_bits_length;
}
*sid_value = locator->prefix.prefix;
for (uint8_t idx = 0; idx < func_len; idx++) {
uint8_t tidx = offset + idx;
sid_value->s6_addr[tidx / 8] &= ~(0x1 << (7 - tidx % 8));
if (sid_func >> (func_len - 1 - idx) & 0x1)
sid_value->s6_addr[tidx / 8] |= 0x1 << (7 - tidx % 8);
}
return true;
}
/**
* Return the parent locator and function of an SRv6 SID.
*
* @param sid_value SRv6 SID address to be decomposed
* @param sid_block Parent block of the SRv6 SID
* @param locator Parent locator of the SRv6 SID
* @param sid_func Function part of the SID
* @param sid_wide_func Wide function of the SID
* @return True if success, False otherwise
*/
static bool zebra_srv6_sid_decompose(struct in6_addr *sid_value,
struct zebra_srv6_sid_block **sid_block,
struct srv6_locator **locator,
uint32_t *sid_func, uint32_t *sid_wide_func)
{
struct zebra_srv6 *srv6 = zebra_srv6_get_default();
struct srv6_locator *l;
struct zebra_srv6_sid_block *b;
struct srv6_sid_format *format;
struct listnode *node;
struct prefix_ipv6 tmp_prefix;
uint8_t offset, func_len;
if (!sid_value || !sid_func)
return false;
*sid_func = 0;
*sid_wide_func = 0;
/*
* Build a temporary prefix_ipv6 object representing the SRv6 SID.
* This temporary prefix object is used below by the prefix_match
* function to check if the SID belongs to a specific locator.
*/
tmp_prefix.family = AF_INET6;
tmp_prefix.prefixlen = IPV6_MAX_BITLEN;
tmp_prefix.prefix = *sid_value;
/*
* Lookup the parent locator of the SID and return the locator and
* the function of the SID.
*/
for (ALL_LIST_ELEMENTS_RO(srv6->locators, node, l)) {
/*
* Check if the locator prefix includes the temporary prefix
* representing the SID.
*/
if (prefix_match((struct prefix *)&l->prefix,
(struct prefix *)&tmp_prefix)) {
format = l->sid_format;
if (format) {
offset = format->block_len + format->node_len;
func_len = format->function_len;
} else {
offset = l->block_bits_length +
l->node_bits_length;
func_len = l->function_bits_length;
}
for (uint8_t idx = 0; idx < func_len; idx++) {
uint8_t tidx = offset + idx;
*sid_func |= (sid_value->s6_addr[tidx / 8] &
(0x1 << (7 - tidx % 8)))
<< (((func_len - 1 - idx) / 8) * 8);
}
/*
* If function comes from the Wide LIB range, we also
* need to get the Wide function.
*/
if (format && format->type == SRV6_SID_FORMAT_TYPE_USID) {
if (*sid_func >= format->config.usid.wlib_start &&
*sid_func <= format->config.usid.wlib_end) {
format = l->sid_format;
offset = format->block_len +
format->node_len +
format->function_len;
for (uint8_t idx = 0; idx < 16; idx++) {
uint8_t tidx = offset + idx;
*sid_wide_func |=
(sid_value->s6_addr[tidx /
8] &
(0x1 << (7 - tidx % 8)))
<< (((16 - 1 - idx) / 8) *
8);
}
}
}
*locator = l;
*sid_block = l->sid_block;
return true;
}
}
/*
* If we arrive here, the SID does not belong to any locator.
* Then, let's try to find the parent block from which the SID
* has been allocated.
*/
/*
* Lookup the parent block of the SID and return the block and
* the function of the SID.
*/
for (ALL_LIST_ELEMENTS_RO(srv6->sid_blocks, node, b)) {
/*
* Check if the block prefix includes the temporary prefix
* representing the SID
*/
if (prefix_match((struct prefix *)&b->prefix,
(struct prefix *)&tmp_prefix)) {
format = b->sid_format;
if (!format)
continue;
offset = format->block_len + format->node_len;
func_len = format->function_len;
for (uint8_t idx = 0; idx < func_len; idx++) {
uint8_t tidx = offset + idx;
*sid_func |= (sid_value->s6_addr[tidx / 8] &
(0x1 << (7 - tidx % 8)))
<< ((func_len - 1 - idx) / 8);
}
/*
* If function comes from the Wide LIB range, we also
* need to get the Wide function.
*/
if (*sid_func >= format->config.usid.wlib_start &&
*sid_func <= format->config.usid.wlib_end) {
format = b->sid_format;
offset = format->block_len + format->node_len +
format->function_len;
for (uint8_t idx = 0; idx < 16; idx++) {
uint8_t tidx = offset + idx;
*sid_wide_func |=
(sid_value->s6_addr[tidx / 8] &
(0x1 << (7 - tidx % 8)))
<< (((16 - 1 - idx) / 8) * 8);
}
}
*sid_block = b;
return true;
}
}
return false;
}
/**
* Allocate an explicit SID function (i.e. specific SID function value) from a given SID block.
*
* @param block SRv6 SID block from which the SID function has to be allocated
* @param sid_func SID function to be allocated
* @param sid_wide_func SID wide function to be allocated
*
* @return true on success, false otherwise
*/
static bool alloc_srv6_sid_func_explicit(struct zebra_srv6_sid_block *block,
uint32_t sid_func,
uint32_t sid_wide_func)
{
struct srv6_sid_format *format;
struct listnode *node;
uint32_t *sid_func_ptr = NULL;
if (!block)
return false;
format = block->sid_format;
if (ZEBRA_DEBUG_PACKET)
zlog_debug("%s: trying to allocate explicit SID function %u from block %pFX",
__func__, sid_func, &block->prefix);
/*
* Allocate SID function from the corresponding range depending on the SID format type
*/
if (format) {
if (format->type == SRV6_SID_FORMAT_TYPE_USID) {
uint32_t elib_start = format->config.usid.elib_start;
uint32_t elib_end = format->config.usid.elib_end;
uint32_t wlib_end = format->config.usid.wlib_end;
uint32_t ewlib_start = format->config.usid.ewlib_start;
uint32_t ewlib_end = wlib_end;
uint32_t *sid_wide_func_ptr = NULL;
/* Figure out the range from which the SID function has been allocated and release it */
if ((sid_func >= elib_start) && (sid_func <= elib_end)) {
/* The SID function has to be allocated from the ELIB range */
/* Ensure that the requested SID function has not already been taken */
for (ALL_LIST_ELEMENTS_RO(block->u.usid.lib
.func_allocated,
node, sid_func_ptr))
if (*sid_func_ptr == sid_func)
break;
if (sid_func_ptr) {
zlog_err("%s: invalid SM request arguments: SID function %u already taken",
__func__, sid_func);
return false;
}
/*
* Mark the SID function as "taken" by adding it to the "func_allocated" list and
* increase the counter of function allocated
*/
sid_func_ptr =
zebra_srv6_sid_func_alloc(sid_func);
listnode_add(block->u.usid.lib.func_allocated,
sid_func_ptr);
block->u.usid.lib.num_func_allocated++;
} else if ((sid_func >= ewlib_start) &&
(sid_func <= ewlib_end)) {
/* The SID function has to be allocated from the EWLIB range */
/* Ensure that the requested SID function has not already been taken */
for (ALL_LIST_ELEMENTS_RO(block->u.usid
.wide_lib[sid_func]
.func_allocated,
node,
sid_wide_func_ptr))
if (*sid_wide_func_ptr == sid_wide_func)
break;
if (sid_wide_func_ptr) {
zlog_err("%s: invalid SM request arguments: SID function %u already taken",
__func__, sid_func);
return false;
}
/*
* Mark the SID function as "taken" by adding it to the "func_allocated" list and
* increase the counter of function allocated
*/
sid_wide_func_ptr = zebra_srv6_sid_func_alloc(
sid_wide_func);
listnode_add(block->u.usid.wide_lib[sid_func]
.func_allocated,
sid_wide_func_ptr);
block->u.usid.wide_lib[sid_func]
.num_func_allocated++;
} else {
zlog_warn("%s: function %u is outside ELIB [%u/%u] and EWLIB alloc ranges [%u/%u]",
__func__, sid_func, elib_start,
elib_end, ewlib_start, ewlib_end);
return -1;
}
} else if (format->type == SRV6_SID_FORMAT_TYPE_UNCOMPRESSED) {
uint32_t explicit_start =
format->config.uncompressed.explicit_start;
uint32_t explicit_end =
(uint32_t)((1 << format->function_len) - 1);
/* Ensure that the SID function comes from the Explicit range */
if (!(sid_func >= explicit_start &&
sid_func <= explicit_end)) {
zlog_err("%s: invalid SM request arguments: SID function %u out of explicit range (%u - %u)",
__func__, sid_func, explicit_start,
explicit_end);
return false;
}
/* Ensure that the SID function has not already been taken */
for (ALL_LIST_ELEMENTS_RO(block->u.uncompressed
.func_allocated,
node, sid_func_ptr))
if (*sid_func_ptr == sid_func)
break;
/* SID function already taken */
if (sid_func_ptr) {
zlog_err("%s: invalid SM request arguments: SID function %u already taken",
__func__, sid_func);
return false;
}
/*
* Mark the SID function as "taken" by adding it to the "func_allocated" list and
* increase the counter of function allocated
*/
sid_func_ptr = zebra_srv6_sid_func_alloc(sid_func);
listnode_add(block->u.uncompressed.func_allocated,
sid_func_ptr);
block->u.uncompressed.num_func_allocated++;
} else {
/* We should never arrive here */
zlog_err("%s: unknown SID format type: %u", __func__,
format->type);
assert(0);
}
} else {
/* Ensure that the SID function has not already been taken */
for (ALL_LIST_ELEMENTS_RO(block->u.uncompressed.func_allocated,
node, sid_func_ptr))
if (*sid_func_ptr == sid_func)
break;
/* SID function already taken */
if (sid_func_ptr) {
zlog_err("%s: invalid SM request arguments: SID function %u already taken",
__func__, sid_func);
return false;
}
/*
* Mark the SID function as "taken" by adding it to the "func_allocated" list and
* increase the counter of function allocated
*/
sid_func_ptr = zebra_srv6_sid_func_alloc(sid_func);
listnode_add(block->u.uncompressed.func_allocated, sid_func_ptr);
block->u.uncompressed.num_func_allocated++;
}
if (ZEBRA_DEBUG_PACKET)
zlog_debug("%s: allocated explicit SID function %u from block %pFX",
__func__, sid_func, &block->prefix);
return true;
}
/**
* Allocate a dynamic SID function (i.e. any available SID function value) from a given SID block.
*
* @param block SRv6 SID block from which the SID function has to be allocated
* @param sid_func SID function allocated
*
* @return true on success, false otherwise
*/
static bool alloc_srv6_sid_func_dynamic(struct zebra_srv6_sid_block *block,
uint32_t *sid_func)
{
struct srv6_sid_format *format;
uint32_t *sid_func_ptr = NULL;
if (!block || !sid_func)
return false;
format = block->sid_format;
if (ZEBRA_DEBUG_PACKET)
zlog_debug("%s: trying to allocate dynamic SID function from block %pFX",
__func__, &block->prefix);
/*
* Allocate SID function from the corresponding range depending on the SID format type
*/
if (format) {
if (format->type == SRV6_SID_FORMAT_TYPE_USID) {
/* Format is uSID and behavior => allocate SID function from LIB range */
/* The Dynamic LIB range ends where the Explicit LIB range begins */
uint32_t dlib_end = format->config.usid.elib_start - 1;
/* Check if we ran out of available SID functions */
if (block->u.usid.lib.first_available_func > dlib_end) {
zlog_warn("%s: SRv6: Warning, SRv6 Dynamic LIB is depleted",
__func__);
return false;
}
/*
* First, let's check if there are any SID functions that were previously
* allocated and then released.
*/
if (listcount(block->u.usid.lib.func_released) != 0) {
/*
* There are SID functions previously allocated and then released,
* let's pick the first one and reuse it now.
*/
sid_func_ptr = listnode_head(
block->u.usid.lib.func_released);
*sid_func = *sid_func_ptr;
listnode_delete(block->u.usid.lib.func_released,
sid_func_ptr);
zebra_srv6_sid_func_free(sid_func_ptr);
} else {
/*
* There are no SID functions previously allocated and then released,
* let's allocate a new function from the pool of available functions.
*/
*sid_func =
block->u.usid.lib.first_available_func;
block->u.usid.lib.first_available_func++;
}
/* Increase the counter of SID functions allocated */
block->u.usid.lib.num_func_allocated++;
if (block->u.usid.lib.first_available_func > dlib_end)
zlog_warn("%s: SRv6: Warning, SRv6 Dynamic LIB is depleted and next SID request will fail",
__func__);
} else if (format->type == SRV6_SID_FORMAT_TYPE_UNCOMPRESSED) {
/* Format is uncompressed => allocate SID function from Dynamic range */
uint32_t dynamic_end =
format->config.uncompressed.explicit_start - 1;
/* Check if we ran out of available SID functions */
if (block->u.uncompressed.first_available_func >
dynamic_end) {
zlog_warn("%s: SRv6: Warning, SRv6 SID Dynamic alloc space is depleted",
__func__);
return NULL;
}
/*
* First, let's check if there are any SID functions that were previously
* allocated and then released.
*/
if (listcount(block->u.uncompressed.func_released) != 0) {
/*
* There are SID functions previously allocated and then released,
* let's pick the first one and reuse it now.
*/
sid_func_ptr = listnode_head(
block->u.uncompressed.func_released);
*sid_func = *sid_func_ptr;
listnode_delete(block->u.uncompressed
.func_released,
sid_func_ptr);
zebra_srv6_sid_func_free(sid_func_ptr);
} else {
/*
* There are no SID functions previously allocated and then released,
* let's allocate a new function from the pool of available functions.
*/
*sid_func = block->u.uncompressed
.first_available_func;
block->u.uncompressed.first_available_func++;
}
/* Increase the counter of SID functions allocated */
block->u.uncompressed.num_func_allocated++;
if (block->u.uncompressed.first_available_func >
dynamic_end)
zlog_warn("%s: SRv6: Warning, SRv6 SID Dynamic alloc space is depleted and next SID request will fail",
__func__);
} else {
/* We should never arrive here */
zlog_err("%s: unknown SID format type: %u", __func__,
format->type);
assert(0);
}
} else {
/*
* First, let's check if there are any SID functions that were previously
* allocated and then released.
*/
if (listcount(block->u.uncompressed.func_released) != 0) {
/*
* There are SID functions previously allocated and then released,
* let's pick the first one and reuse it now.
*/
sid_func_ptr = listnode_head(
block->u.uncompressed.func_released);
*sid_func = *sid_func_ptr;
listnode_delete(block->u.uncompressed.func_released,
sid_func_ptr);
zebra_srv6_sid_func_free(sid_func_ptr);
} else {
/*
* There are no SID functions previously allocated and then released,
* let's allocate a new function from the pool of available functions.
*/
*sid_func = block->u.uncompressed.first_available_func;
block->u.uncompressed.first_available_func++;
}
/* Increase the counter of SID functions allocated */
block->u.uncompressed.num_func_allocated++;
}
if (ZEBRA_DEBUG_PACKET)
zlog_debug("%s: allocated dynamic SID function %u from block %pFX",
__func__, *sid_func, &block->prefix);
return true;
}
/**
* Get an explicit SID (i.e., a specific SID value) for a given context.
*
* If a SID already exists associated with the context, it returns the existing SID.
* Otherwise, it allocates a new SID.
*
* @param sid SID returned
* @param ctx Context for which the SID has been requested
* @param sid_value specific SRv6 SID value (i.e. IPv6 address) to be
* allocated explicitly
*
* @return 0 if the function returned an existing SID and SID value has not changed,
* 1 if a new SID has been allocated or the existing SID value has changed, -1 if an error occurred
*/
static int get_srv6_sid_explicit(struct zebra_srv6_sid **sid,
struct srv6_sid_ctx *ctx,
struct in6_addr *sid_value)
{
struct zebra_srv6 *srv6 = zebra_srv6_get_default();
struct zebra_srv6_sid_ctx *s = NULL;
struct zebra_srv6_sid_ctx *zctx = NULL;
struct listnode *node;
uint32_t sid_func = 0, sid_func_wide = 0;
struct srv6_locator *locator = NULL;
struct zebra_srv6_sid_block *block = NULL;
char buf[256];
if (!ctx || !sid_value)
return -1;
/* Check if we already have a SID associated with the provided context */
for (ALL_LIST_ELEMENTS_RO(srv6->sids, node, s)) {
if (memcmp(&s->ctx, ctx, sizeof(struct srv6_sid_ctx)) == 0) {
/*
* If the context is already associated with a SID that has the same SID value, then
* return the existing SID
*/
if (sid_same(&s->sid->value, sid_value)) {
if (IS_ZEBRA_DEBUG_PACKET)
zlog_debug("%s: returning existing SRv6 SID %pI6 ctx %s",
__func__, &s->sid->value,
srv6_sid_ctx2str(buf,
sizeof(buf),
ctx));
*sid = s->sid;
return 0;
}
/*
* It is not allowed to allocate an explicit SID for a given context if the context
* is already associated with an explicit SID
*/
if (s->sid->alloc_mode == SRV6_SID_ALLOC_MODE_EXPLICIT) {
zlog_err("%s: cannot alloc SID %pI6 for ctx %s: ctx already associated with SID %pI6",
__func__, sid_value,
srv6_sid_ctx2str(buf, sizeof(buf),
&s->ctx),
&s->sid->value);
return -1;
}
zctx = s;
break;
}
}
/* Get parent locator and function of the provided SID */
if (!zebra_srv6_sid_decompose(sid_value, &block, &locator, &sid_func,
&sid_func_wide)) {
zlog_err("%s: invalid SM request arguments: parent block/locator not found for SID %pI6",
__func__, sid_value);
return -1;
}
if (ctx->behavior == ZEBRA_SEG6_LOCAL_ACTION_END) {
zlog_err("%s: invalid SM request arguments: explicit SID allocation not allowed for End/uN behavior",
__func__);
return -1;
}
/* Allocate an explicit SID function for the SID */
if (!alloc_srv6_sid_func_explicit(block, sid_func, sid_func_wide)) {
zlog_err("%s: invalid SM request arguments: failed to allocate SID function %u from block %pFX",
__func__, sid_func, &block->prefix);
return -1;
}
if (!zctx) {
/* If we don't have a zebra SID context for this context, allocate a new one */
zctx = zebra_srv6_sid_ctx_alloc();
zctx->ctx = *ctx;
} else {
/*
* If we already have a SID associated with this context, we need to
* deallocate the current SID function before allocating the new one
*/
if (zctx->sid) {
if (IS_ZEBRA_DEBUG_PACKET)
zlog_debug("%s: ctx %s already associated with a dynamic SID %pI6, releasing dynamic SID",
__func__,
srv6_sid_ctx2str(buf, sizeof(buf),
ctx),
&zctx->sid->value);
release_srv6_sid_func_dynamic(block, zctx->sid->func);
zebra_srv6_sid_free(zctx->sid);
zctx->sid = NULL;
}
}
/* Allocate the SID to store SID information */
*sid = zebra_srv6_sid_alloc(zctx, sid_value, locator, block, sid_func,
SRV6_SID_ALLOC_MODE_EXPLICIT);
if (!(*sid)) {
flog_err(EC_ZEBRA_SM_CANNOT_ASSIGN_SID,
"%s: failed to create SRv6 SID %s (%pI6)", __func__,
srv6_sid_ctx2str(buf, sizeof(buf), ctx), sid_value);
return -1;
}
(*sid)->ctx = zctx;
zctx->sid = *sid;
listnode_add(srv6->sids, zctx);
if (IS_ZEBRA_DEBUG_PACKET)
zlog_debug("%s: allocated explicit SRv6 SID %pI6 for context %s",
__func__, &(*sid)->value,
srv6_sid_ctx2str(buf, sizeof(buf), ctx));
return 1;
}
/**
* Get a dynamic SID (i.e., any available SID value) for a given context.
*
* If a SID already exists associated with the context, it returns the existing SID.
* Otherwise, it allocates a new SID.
*
* @param sid SID returned
* @param ctx Context for which the SID has been requested
* @param locator SRv6 locator from which the SID has to be allocated
*
* @return 0 if the function returned an existing SID and SID value has not changed,
* 1 if a new SID has been allocated or the existing SID value has changed, -1 if an error occurred
*/
static int get_srv6_sid_dynamic(struct zebra_srv6_sid **sid,
struct srv6_sid_ctx *ctx,
struct srv6_locator *locator)
{
struct zebra_srv6 *srv6 = zebra_srv6_get_default();
struct zebra_srv6_sid_block *block;
struct srv6_sid_format *format;
struct zebra_srv6_sid_ctx *s = NULL;
struct zebra_srv6_sid_ctx *zctx;
struct listnode *node;
struct in6_addr sid_value;
uint32_t sid_func = 0;
char buf[256];
if (!ctx || !locator)
return -1;
block = locator->sid_block;
format = locator->sid_format;
/*
* If we already have a SID for the provided context, we return the existing
* SID instead of allocating a new one.
*/
for (ALL_LIST_ELEMENTS_RO(srv6->sids, node, s)) {
if (locator && s->sid && s->sid->locator) {
if (strncmp(s->sid->locator->name, locator->name,
SRV6_LOCNAME_SIZE)) {
continue;
}
}
if (memcmp(&s->ctx, ctx, sizeof(struct srv6_sid_ctx)) == 0) {
if (IS_ZEBRA_DEBUG_PACKET)
zlog_debug("%s: returning existing SID %s %pI6",
__func__,
srv6_sid_ctx2str(buf, sizeof(buf),
ctx),
&s->sid->value);
*sid = s->sid;
return 0;
}
}
if (format && format->type == SRV6_SID_FORMAT_TYPE_USID &&
ctx->behavior == ZEBRA_SEG6_LOCAL_ACTION_END) {
/* uN SID is allocated from the GIB range */
sid_value = locator->prefix.prefix;
} else if (!format && ctx->behavior == ZEBRA_SEG6_LOCAL_ACTION_END) {
/* uN SID is allocated from the GIB range */
sid_value = locator->prefix.prefix;
} else {
/* Allocate a dynamic SID function for the SID */
if (!alloc_srv6_sid_func_dynamic(block, &sid_func)) {
zlog_err("%s: invalid SM request arguments: failed to allocate SID function %u from block %pFX",
__func__, sid_func, &block->prefix);
return -1;
}
/* Compose the SID as the locator followed by the SID function */
zebra_srv6_sid_compose(&sid_value, locator, sid_func);
}
/* Allocate a zebra SID context to store SID context information */
zctx = zebra_srv6_sid_ctx_alloc();
zctx->ctx = *ctx;
/* Allocate the SID to store SID information */
*sid = zebra_srv6_sid_alloc(zctx, &sid_value, locator, block, sid_func,
SRV6_SID_ALLOC_MODE_DYNAMIC);
if (!(*sid)) {
flog_err(EC_ZEBRA_SM_CANNOT_ASSIGN_SID,
"%s: failed to create SRv6 SID ctx %s (%pI6)", __func__,
srv6_sid_ctx2str(buf, sizeof(buf), ctx), &sid_value);
return -1;
}
(*sid)->ctx = zctx;
zctx->sid = *sid;
listnode_add(srv6->sids, zctx);
if (IS_ZEBRA_DEBUG_PACKET)
zlog_debug("%s: allocated new dynamic SRv6 SID %pI6 for context %s",
__func__, &(*sid)->value,
srv6_sid_ctx2str(buf, sizeof(buf), ctx));
return 1;
}
/**
* Get an SRv6 SID for a given context.
*
* If a SID already exists associated with the context, it returns the existing SID.
* Otherwise, it allocates a new SID.
*
* If the sid_value parameter is non-NULL, it allocates the requested SID value
* if it is available (explicit SID allocation).
* If the sid_value parameter is NULL, it allocates any available SID value
* (dynamic SID allocation).
*
* @param sid SID returned
* @param ctx Context for which the SID has been requested
* @param sid_value SRv6 SID value to be allocated (for explicit SID allocation)
* @param locator_name Parent SRv6 locator from which the SID has to be allocated (for dynamic SID allocation)
*
* @return 0 if the function returned an existing SID and SID value has not changed,
* 1 if a new SID has been allocated or the existing SID value has changed, -1 if an error occurred
*/
int get_srv6_sid(struct zebra_srv6_sid **sid, struct srv6_sid_ctx *ctx,
struct in6_addr *sid_value, const char *locator_name)
{
int ret = -1;
struct srv6_locator *locator;
char buf[256];
enum srv6_sid_alloc_mode alloc_mode =
(sid_value) ? SRV6_SID_ALLOC_MODE_EXPLICIT
: SRV6_SID_ALLOC_MODE_DYNAMIC;
if (IS_ZEBRA_DEBUG_PACKET)
zlog_debug("%s: received SRv6 SID alloc request: SID ctx %s (%pI6), mode=%s",
__func__, srv6_sid_ctx2str(buf, sizeof(buf), ctx),
sid_value, srv6_sid_alloc_mode2str(alloc_mode));
if (alloc_mode == SRV6_SID_ALLOC_MODE_EXPLICIT) {
/*
* Explicit SID allocation: allocate a specific SID value
*/
if (!sid_value) {
zlog_err("%s: invalid SM request arguments: missing SRv6 SID value, necessary for explicit allocation",
__func__);
return -1;
}
ret = get_srv6_sid_explicit(sid, ctx, sid_value);
} else {
/*
* Dynamic SID allocation: allocate any available SID value
*/
if (!locator_name) {
zlog_err("%s: invalid SM request arguments: missing SRv6 locator, necessary for dynamic allocation",
__func__);
return -1;
}
locator = zebra_srv6_locator_lookup(locator_name);
if (!locator) {
zlog_err("%s: invalid SM request arguments: SRv6 locator '%s' does not exist",
__func__, locator_name);
return -1;
}
ret = get_srv6_sid_dynamic(sid, ctx, locator);
}
return ret;
}
/**
* Release an explicit SRv6 SID function.
*
* @param block Parent SRv6 SID block of the SID function that has to be released
* @param sid_func SID function to be released
* @return 0 on success, -1 otherwise
*/
static bool release_srv6_sid_func_explicit(struct zebra_srv6_sid_block *block,
uint32_t sid_func,
uint32_t sid_wide_func)
{
struct srv6_sid_format *format;
struct listnode *node;
uint32_t *sid_func_ptr = NULL;
if (!block)
return -1;
format = block->sid_format;
if (ZEBRA_DEBUG_PACKET)
zlog_debug("%s: trying to release explicit SRv6 SID function %u from block %pFX",
__func__, sid_func, &block->prefix);
/*
* Release SID function from the corresponding range depending on the SID format type
*/
if (format) {
if (format->type == SRV6_SID_FORMAT_TYPE_USID) {
uint32_t elib_start = format->config.usid.elib_start;
uint32_t elib_end = format->config.usid.elib_end;
uint32_t ewlib_start = format->config.usid.ewlib_start;
uint32_t ewlib_end = format->config.usid.wlib_end;
uint32_t *sid_wide_func_ptr = NULL;
/* Figure out the range from which the SID function has been allocated and release it */
if ((sid_func >= elib_start) && (sid_func <= elib_end)) {
/* The SID function comes from the ELIB range */
/* Lookup SID function in the functions allocated list of ELIB range */
for (ALL_LIST_ELEMENTS_RO(block->u.usid.lib
.func_allocated,
node, sid_func_ptr))
if (*sid_func_ptr == sid_func)
break;
/* Ensure that the SID function is allocated */
if (!sid_func_ptr) {
zlog_warn("%s: failed to release SID function %u, function is not allocated",
__func__, sid_func);
return -1;
}
/* Release the SID function from the ELIB range */
listnode_delete(block->u.usid.lib.func_allocated,
sid_func_ptr);
zebra_srv6_sid_func_free(sid_func_ptr);
} else if ((sid_func >= ewlib_start) &&
(sid_func <= ewlib_end)) {
/* The SID function comes from the EWLIB range */
/* Lookup SID function in the functions allocated list of EWLIB range */
for (ALL_LIST_ELEMENTS_RO(block->u.usid
.wide_lib[sid_func]
.func_allocated,
node, sid_wide_func_ptr))
if (*sid_wide_func_ptr == sid_wide_func)
break;
/* Ensure that the SID function is allocated */
if (!sid_wide_func_ptr) {
zlog_warn("%s: failed to release wide SID function %u, function is not allocated",
__func__, sid_wide_func);
return -1;
}
/* Release the SID function from the EWLIB range */
listnode_delete(block->u.usid.wide_lib[sid_func]
.func_allocated,
sid_wide_func_ptr);
zebra_srv6_sid_func_free(sid_wide_func_ptr);
} else {
zlog_warn("%s: function %u is outside ELIB [%u/%u] and EWLIB alloc ranges [%u/%u]",
__func__, sid_func, elib_start,
elib_end, ewlib_start, ewlib_end);
return -1;
}
} else if (format->type == SRV6_SID_FORMAT_TYPE_UNCOMPRESSED) {
uint32_t explicit_start =
format->config.uncompressed.explicit_start;
uint32_t explicit_end =
(uint32_t)((1 << format->function_len) - 1);
/* Ensure that the SID function comes from the Explicit range */
if (!(sid_func >= explicit_start &&
sid_func <= explicit_end)) {
zlog_warn("%s: function %u is outside explicit alloc range [%u/%u]",
__func__, sid_func, explicit_start,
explicit_end);
return -1;
}
/* Lookup SID function in the functions allocated list of Explicit range */
for (ALL_LIST_ELEMENTS_RO(block->u.uncompressed
.func_allocated,
node, sid_func_ptr))
if (*sid_func_ptr == sid_func)
break;
/* Ensure that the SID function is allocated */
if (!sid_func_ptr) {
zlog_warn("%s: failed to release SID function %u, function is not allocated",
__func__, sid_func);
return -1;
}
/* Release the SID function from the Explicit range */
listnode_delete(block->u.uncompressed.func_allocated,
sid_func_ptr);
zebra_srv6_sid_func_free(sid_func_ptr);
} else {
/* We should never arrive here */
assert(0);
}
} else {
/* Lookup SID function in the functions allocated list of Explicit range */
for (ALL_LIST_ELEMENTS_RO(block->u.uncompressed.func_allocated,
node, sid_func_ptr))
if (*sid_func_ptr == sid_func)
break;
/* Ensure that the SID function is allocated */
if (!sid_func_ptr) {
zlog_warn("%s: failed to release SID function %u, function is not allocated",
__func__, sid_func);
return -1;
}
/* Release the SID function from the Explicit range */
listnode_delete(block->u.uncompressed.func_allocated,
sid_func_ptr);
zebra_srv6_sid_func_free(sid_func_ptr);
}
if (ZEBRA_DEBUG_PACKET)
zlog_debug("%s: released explicit SRv6 SID function %u from block %pFX",
__func__, sid_func, &block->prefix);
return 0;
}
/**
* Release a dynamic SRv6 SID function.
*
* @param block Parent SRv6 SID block of the SID function that has to be released
* @param sid_func SID function to be released
* @return 0 on success, -1 otherwise
*/
static int release_srv6_sid_func_dynamic(struct zebra_srv6_sid_block *block,
uint32_t sid_func)
{
struct srv6_sid_format *format;
struct listnode *node, *nnode;
uint32_t *sid_func_ptr = NULL;
if (!block)
return -1;
format = block->sid_format;
if (ZEBRA_DEBUG_PACKET)
zlog_debug("%s: trying to release dynamic SRv6 SID function %u from block %pFX",
__func__, sid_func, &block->prefix);
/*
* Release SID function from the corresponding range depending on the SID format type
*/
if (format && format->type == SRV6_SID_FORMAT_TYPE_USID) {
uint32_t dlib_start = format->config.usid.lib_start;
/* The Dynamic LIB range ends where the Explicit LIB range begins */
uint32_t dlib_end = format->config.usid.elib_start - 1;
/* Ensure that the SID function to be released comes from the Dynamic LIB (DLIB) range */
if (!(sid_func >= dlib_start && sid_func <= dlib_end)) {
zlog_warn("%s: function %u is outside Dynamic LIB range [%u/%u]",
__func__, sid_func, dlib_start, dlib_end);
return -1;
}
if (sid_func == block->u.usid.lib.first_available_func - 1) {
/*
* The SID function to be released precedes the `first_available_func`.
* Reset first_available_func to the first available position.
*/
block->u.usid.lib.first_available_func -= 1;
bool found;
do {
found = false;
for (ALL_LIST_ELEMENTS(block->u.usid.lib
.func_released,
node, nnode,
sid_func_ptr))
if (*sid_func_ptr ==
block->u.usid.lib.first_available_func -
1) {
listnode_delete(block->u.usid
.lib
.func_released,
sid_func_ptr);
zebra_srv6_sid_func_free(
sid_func_ptr);
block->u.usid.lib
.first_available_func -=
1;
found = true;
break;
}
} while (found);
} else {
/*
* The SID function to be released does not precede the `first_available_func`.
* Add the released function to the func_released array to indicate
* that it is available again for allocation.
*/
sid_func_ptr = zebra_srv6_sid_func_alloc(sid_func);
listnode_add_head(block->u.usid.lib.func_released,
sid_func_ptr);
}
} else if (format && format->type == SRV6_SID_FORMAT_TYPE_UNCOMPRESSED) {
uint32_t dynamic_start =
SRV6_SID_FORMAT_UNCOMPRESSED_F4024_FUNC_UNRESERVED_MIN;
/* The Dynamic range ends where the Explicit range begins */
uint32_t dynamic_end =
format->config.uncompressed.explicit_start - 1;
/* Ensure that the SID function to be released comes from the Dynamic range */
if (!(sid_func >= dynamic_start && sid_func <= dynamic_end)) {
zlog_warn("%s: function %u is outside dynamic range [%u/%u]",
__func__, sid_func, dynamic_start,
dynamic_end);
return -1;
}
if (sid_func == block->u.uncompressed.first_available_func - 1) {
/*
* The released SID function precedes the `first_available_func`.
* Reset first_available_func to the first available position.
*/
block->u.uncompressed.first_available_func -= 1;
bool found;
do {
found = false;
for (ALL_LIST_ELEMENTS(block->u.uncompressed
.func_released,
node, nnode,
sid_func_ptr))
if (*sid_func_ptr ==
block->u.uncompressed
.first_available_func -
1) {
listnode_delete(block->u.uncompressed
.func_released,
sid_func_ptr);
zebra_srv6_sid_func_free(
sid_func_ptr);
block->u.uncompressed
.first_available_func -=
1;
found = true;
break;
}
} while (found);
} else {
/*
* The released SID function does not precede the `first_available_func`.
* Add the released function to the func_released array to indicate
* that it is available again for allocation.
*/
sid_func_ptr = zebra_srv6_sid_func_alloc(sid_func);
listnode_add_head(block->u.uncompressed.func_released,
sid_func_ptr);
}
} else if (!format) {
if (sid_func == block->u.uncompressed.first_available_func - 1) {
/*
* The released SID function precedes the `first_available_func`.
* Reset first_available_func to the first available position.
*/
block->u.uncompressed.first_available_func -= 1;
bool found;
do {
found = false;
for (ALL_LIST_ELEMENTS(block->u.uncompressed
.func_released,
node, nnode,
sid_func_ptr))
if (*sid_func_ptr ==
block->u.uncompressed
.first_available_func -
1) {
listnode_delete(block->u.uncompressed
.func_released,
sid_func_ptr);
zebra_srv6_sid_func_free(
sid_func_ptr);
block->u.uncompressed
.first_available_func -=
1;
found = true;
break;
}
} while (found);
} else {
/*
* The released SID function does not precede the `first_available_func`.
* Add the released function to the func_released array to indicate
* that it is available again for allocation.
*/
sid_func_ptr = zebra_srv6_sid_func_alloc(sid_func);
listnode_add_head(block->u.uncompressed.func_released,
sid_func_ptr);
}
}
if (ZEBRA_DEBUG_PACKET)
zlog_debug("%s: released dynamic SRv6 SID function %u from block %pFX",
__func__, sid_func, &block->prefix);
return 0;
}
/**
* Core function, release the SRv6 SID associated with a given context.
*
* @param client The client for which the SID has to be released
* @param ctx Context associated with the SRv6 SID to be released
* @return 0 on success, -1 otherwise
*/
int release_srv6_sid(struct zserv *client, struct zebra_srv6_sid_ctx *zctx)
{
struct zebra_srv6 *srv6 = zebra_srv6_get_default();
char buf[256];
if (!zctx || !zctx->sid)
return -1;
if (IS_ZEBRA_DEBUG_PACKET)
zlog_debug("%s: releasing SRv6 SID %pI6 associated with ctx %s (proto=%u, instance=%u)",
__func__, &zctx->sid->value,
srv6_sid_ctx2str(buf, sizeof(buf), &zctx->ctx),
client->proto, client->instance);
/* Ensures the SID is in use by the client */
if (!listnode_lookup(zctx->sid->client_list, client)) {
flog_err(EC_ZEBRA_SM_DAEMON_MISMATCH, "%s: Daemon mismatch!!",
__func__);
return -1;
}
/* Remove the client from the list of clients using the SID */
listnode_delete(zctx->sid->client_list, client);
if (IS_ZEBRA_DEBUG_PACKET)
zlog_debug("%s: released SRv6 SID %pI6 associated with ctx %s (proto=%u, instance=%u)",
__func__, &zctx->sid->value,
srv6_sid_ctx2str(buf, sizeof(buf), &zctx->ctx),
client->proto, client->instance);
/*
* If the SID is not used by any other client, then deallocate it
* and remove it from the SRv6 database.
*/
if (listcount(zctx->sid->client_list) == 0) {
if (IS_ZEBRA_DEBUG_PACKET)
zlog_debug("%s: SRv6 SID %pI6 associated with ctx %s is no longer in use, removing it from SRv6 database",
__func__, &zctx->sid->value,
srv6_sid_ctx2str(buf, sizeof(buf),
&zctx->ctx));
if (!(zctx->sid->block->sid_format &&
zctx->sid->block->sid_format->type ==
SRV6_SID_FORMAT_TYPE_USID &&
zctx->ctx.behavior == ZEBRA_SEG6_LOCAL_ACTION_END) &&
!(!zctx->sid->block->sid_format &&
zctx->ctx.behavior == ZEBRA_SEG6_LOCAL_ACTION_END)) {
if (zctx->sid->alloc_mode ==
SRV6_SID_ALLOC_MODE_EXPLICIT)
/* Release SRv6 SID function */
release_srv6_sid_func_explicit(zctx->sid->block,
zctx->sid->func,
zctx->sid->wide_func);
else if (zctx->sid->alloc_mode ==
SRV6_SID_ALLOC_MODE_DYNAMIC)
/* Release SRv6 SID function */
release_srv6_sid_func_dynamic(zctx->sid->block,
zctx->sid->func);
else
/* We should never arrive here */
assert(0);
}
/* Free the SID */
zebra_srv6_sid_free(zctx->sid);
zctx->sid = NULL;
/* Remove the SID context from the list and free memory */
listnode_delete(srv6->sids, zctx);
zebra_srv6_sid_ctx_free(zctx);
}
return 0;
}
/**
* Handle a get SRv6 Locator request received from a client.
*
* It looks up the requested locator and send it to the client.
*
* @param locator SRv6 locator returned by this function
* @param client The client that sent the Get SRv6 Locator request
* @param locator_name Name of the locator to look up
*
* @return 0 on success
*/
static int srv6_manager_get_srv6_locator_internal(struct srv6_locator **locator,
struct zserv *client,
const char *locator_name)
{
*locator = zebra_srv6_locator_lookup(locator_name);
if (!*locator)
return -1;
return zsend_zebra_srv6_locator_add(client, *locator);
}
/**
* Handle a get SID request received from a client.
*
* It gets a SID for a given context. If there is no SID associated with the context yet,
* we allocate one and return it to the client. Otherwise, we return the existing SID.
*
* - When the `sid_value` parameter is non-NULL, SRv6 Manager assigns the requested SID value
* if it is available (explicit SID allocation).
* - When the `sid_value` parameter is NULL, SRv6 Manager assigns any available SID value
* (dynamic SID allocation).
*
* Finally, notify the client whether the SID allocation was successful or failed.
*
* @param sid SID returned by this function
* @param client The client that requested the SID
* @param ctx Context for which the SID was requested
* @param sid_value SID value (i.e., IPv6 address) that has to be assigned to the SID
* (for explicit SID allocation)
* @param locator_name Locator from which the SID has to be allocated (for dynamic SID allocation)
*
* @return 0 on success, -1 otherwise
*/
static int srv6_manager_get_sid_internal(struct zebra_srv6_sid **sid,
struct zserv *client,
struct srv6_sid_ctx *ctx,
struct in6_addr *sid_value,
const char *locator_name)
{
int ret = -1;
struct listnode *node;
struct zserv *c;
char buf[256];
if (IS_ZEBRA_DEBUG_PACKET)
zlog_debug("%s: getting SRv6 SID for ctx %s, sid_value=%pI6, locator_name=%s",
__func__, srv6_sid_ctx2str(buf, sizeof(buf), ctx),
sid_value ? sid_value : &in6addr_any, locator_name);
ret = get_srv6_sid(sid, ctx, sid_value, locator_name);
if (ret < 0) {
zlog_warn("%s: not got SRv6 SID for ctx %s, sid_value=%pI6, locator_name=%s",
__func__, srv6_sid_ctx2str(buf, sizeof(buf), ctx),
sid_value ? sid_value : &in6addr_any, locator_name);
/* Notify client about SID alloc failure */
zsend_srv6_sid_notify(client, ctx, sid_value, 0, 0, NULL,
ZAPI_SRV6_SID_FAIL_ALLOC);
} else if (ret == 0) {
if (IS_ZEBRA_DEBUG_PACKET)
zlog_debug("%s: got existing SRv6 SID for ctx %s: sid_value=%pI6 (func=%u) (proto=%u, instance=%u, sessionId=%u), notify client",
__func__,
srv6_sid_ctx2str(buf, sizeof(buf), ctx),
&(*sid)->value, (*sid)->func, client->proto,
client->instance, client->session_id);
if (!listnode_lookup((*sid)->client_list, client))
listnode_add((*sid)->client_list, client);
zsend_srv6_sid_notify(client, ctx, &(*sid)->value, (*sid)->func,
(*sid)->wide_func,
(*sid)->locator ? (*sid)->locator->name
: NULL,
ZAPI_SRV6_SID_ALLOCATED);
} else {
if (IS_ZEBRA_DEBUG_PACKET)
zlog_debug("%s: got new SRv6 SID for ctx %s: sid_value=%pI6 (func=%u) (proto=%u, instance=%u, sessionId=%u), notifying all clients",
__func__,
srv6_sid_ctx2str(buf, sizeof(buf), ctx),
&(*sid)->value, (*sid)->func, client->proto,
client->instance, client->session_id);
if (!listnode_lookup((*sid)->client_list, client))
listnode_add((*sid)->client_list, client);
for (ALL_LIST_ELEMENTS_RO((*sid)->client_list, node, c))
zsend_srv6_sid_notify(c, ctx, &(*sid)->value,
(*sid)->func, (*sid)->wide_func,
(*sid)->locator
? (*sid)->locator->name
: NULL,
ZAPI_SRV6_SID_ALLOCATED);
}
return ret;
}
/**
* Release SRv6 SIDs from a client.
*
* Called on client disconnection or reconnection.
*
* @param client The client to release SIDs from
* @return Number of SIDs released
*/
int release_daemon_srv6_sids(struct zserv *client)
{
struct zebra_srv6 *srv6 = zebra_srv6_get_default();
struct listnode *node, *nnode;
struct zebra_srv6_sid_ctx *ctx;
int count = 0;
int ret;
if (IS_ZEBRA_DEBUG_PACKET)
zlog_debug("%s: releasing SRv6 SIDs for client proto %s, instance %d, session %u",
__func__, zebra_route_string(client->proto),
client->instance, client->session_id);
/* Iterate over the SIDs and release SIDs used by the client daemon */
for (ALL_LIST_ELEMENTS(srv6->sids, node, nnode, ctx)) {
if (!listnode_lookup(ctx->sid->client_list, client))
continue;
ret = release_srv6_sid(client, ctx);
if (ret == 0)
count++;
}
if (IS_ZEBRA_DEBUG_PACKET)
zlog_debug("%s: released %d SRv6 SIDs", __func__, count);
return count;
}
/**
* Release SRv6 SIDs from a client.
*
* @param client The client zapi session
* @param ctx Context associated with the SRv6 SID
* @return 0 on success, -1 on failure
*/
static int srv6_manager_release_sid_internal(struct zserv *client,
struct srv6_sid_ctx *ctx)
{
int ret = -1;
struct zebra_srv6 *srv6 = zebra_srv6_get_default();
struct zebra_srv6_sid_ctx *zctx;
struct listnode *node, *nnode;
char buf[256];
const char *locator_name = NULL;
if (IS_ZEBRA_DEBUG_PACKET)
zlog_debug("%s: releasing SRv6 SID associated with ctx %s",
__func__, srv6_sid_ctx2str(buf, sizeof(buf), ctx));
/* Lookup Zebra SID context and release it */
for (ALL_LIST_ELEMENTS(srv6->sids, node, nnode, zctx))
if (memcmp(&zctx->ctx, ctx, sizeof(struct srv6_sid_ctx)) == 0) {
if (zctx->sid && zctx->sid->locator)
locator_name =
(const char *)zctx->sid->locator->name;
ret = release_srv6_sid(client, zctx);
break;
}
if (IS_ZEBRA_DEBUG_PACKET)
zlog_debug("%s: no SID associated with ctx %s", __func__,
srv6_sid_ctx2str(buf, sizeof(buf), ctx));
if (ret == 0)
zsend_srv6_sid_notify(client, ctx, NULL, 0, 0, locator_name,
ZAPI_SRV6_SID_RELEASED);
else
zsend_srv6_sid_notify(client, ctx, NULL, 0, 0, locator_name,
ZAPI_SRV6_SID_FAIL_RELEASE);
return ret;
}
void zebra_srv6_terminate(void)
{
struct srv6_locator *locator;
struct srv6_sid_format *format;
struct zebra_srv6_sid_block *block;
struct zebra_srv6_sid_ctx *sid_ctx;
if (srv6.locators) {
while (listcount(srv6.locators)) {
locator = listnode_head(srv6.locators);
listnode_delete(srv6.locators, locator);
srv6_locator_free(locator);
}
list_delete(&srv6.locators);
}
/* Free SRv6 SIDs */
if (srv6.sids) {
while (listcount(srv6.sids)) {
sid_ctx = listnode_head(srv6.sids);
listnode_delete(srv6.sids, sid_ctx);
zebra_srv6_sid_ctx_free(sid_ctx);
}
list_delete(&srv6.sids);
}
/* Free SRv6 SID blocks */
if (srv6.sid_blocks) {
while (listcount(srv6.sid_blocks)) {
block = listnode_head(srv6.sid_blocks);
listnode_delete(srv6.sid_blocks, block);
zebra_srv6_sid_block_free(block);
}
list_delete(&srv6.sid_blocks);
}
/* Free SRv6 SID formats */
if (srv6.sid_formats) {
while (listcount(srv6.sid_formats)) {
format = listnode_head(srv6.sid_formats);
srv6_sid_format_unregister(format);
srv6_sid_format_free(format);
}
list_delete(&srv6.sid_formats);
}
}
void zebra_srv6_init(void)
{
hook_register(zserv_client_close, zebra_srv6_cleanup);
hook_register(srv6_manager_get_chunk,
zebra_srv6_manager_get_locator_chunk);
hook_register(srv6_manager_release_chunk,
zebra_srv6_manager_release_locator_chunk);
hook_register(srv6_manager_get_sid, srv6_manager_get_sid_internal);
hook_register(srv6_manager_release_sid,
srv6_manager_release_sid_internal);
hook_register(srv6_manager_get_locator,
srv6_manager_get_srv6_locator_internal);
}
bool zebra_srv6_is_enable(void)
{
struct zebra_srv6 *srv6 = zebra_srv6_get_default();
return listcount(srv6->locators);
}
|