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
|
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright 2008-2019 Cisco Systems, Inc. All rights reserved.
*/
#include <errno.h>
#include <stdint.h>
#include <rte_log.h>
#include <rte_ethdev_driver.h>
#include <rte_flow_driver.h>
#include <rte_ether.h>
#include <rte_ip.h>
#include <rte_udp.h>
#include <rte_memzone.h>
#include "enic_compat.h"
#include "enic.h"
#include "vnic_dev.h"
#include "vnic_nic.h"
#define IP_DEFTTL 64 /* from RFC 1340. */
#define IP6_VTC_FLOW 0x60000000
/* Highest Item type supported by Flowman */
#define FM_MAX_ITEM_TYPE RTE_FLOW_ITEM_TYPE_VXLAN
/* Up to 1024 TCAM entries */
#define FM_MAX_TCAM_TABLE_SIZE 1024
/* Up to 4096 entries per exact match table */
#define FM_MAX_EXACT_TABLE_SIZE 4096
/* Number of counters to increase on for each increment */
#define FM_COUNTERS_EXPAND 100
#define FM_INVALID_HANDLE 0
/*
* Flow exact match tables (FET) in the VIC and rte_flow groups.
* Use a simple scheme to map groups to tables.
* Group 0 uses the single TCAM tables, one for each direction.
* Group 1, 2, ... uses its own exact match table.
*
* The TCAM tables are allocated upfront during init.
*
* Exact match tables are allocated on demand. 3 paths that lead allocations.
*
* 1. Add a flow that jumps from group 0 to group N.
*
* If N does not exist, we allocate an exact match table for it, using
* a dummy key. A key is required for the table.
*
* 2. Add a flow that uses group N.
*
* If N does not exist, we allocate an exact match table for it, using
* the flow's key. Subsequent flows to the same group all should have
* the same key.
*
* Without a jump flow to N, N is not reachable in hardware. No packets
* reach N and match.
*
* 3. Add a flow to an empty group N.
*
* N has been created via (1) and the dummy key. We free that table, allocate
* a new table using the new flow's key. Also re-do the existing jump flow to
* point to the new table.
*/
#define FM_TCAM_RTE_GROUP 0
struct enic_fm_fet {
TAILQ_ENTRY(enic_fm_fet) list;
uint32_t group; /* rte_flow group ID */
uint64_t handle; /* Exact match table handle from flowman */
uint8_t ingress;
uint8_t default_key;
int ref; /* Reference count via get/put */
struct fm_key_template key; /* Key associated with the table */
};
struct enic_fm_counter {
SLIST_ENTRY(enic_fm_counter) next;
uint32_t handle;
};
/* rte_flow.fm */
struct enic_fm_flow {
bool counter_valid;
uint64_t entry_handle;
uint64_t action_handle;
struct enic_fm_counter *counter;
struct enic_fm_fet *fet;
};
struct enic_fm_jump_flow {
TAILQ_ENTRY(enic_fm_jump_flow) list;
struct rte_flow *flow;
uint32_t group;
struct fm_tcam_match_entry match;
struct fm_action action;
};
/*
* Flowman uses host memory for commands. This structure is allocated
* in DMA-able memory.
*/
union enic_flowman_cmd_mem {
struct fm_tcam_match_table fm_tcam_match_table;
struct fm_exact_match_table fm_exact_match_table;
struct fm_tcam_match_entry fm_tcam_match_entry;
struct fm_exact_match_entry fm_exact_match_entry;
struct fm_action fm_action;
};
struct enic_flowman {
struct enic *enic;
/* Command buffer */
struct {
union enic_flowman_cmd_mem *va;
dma_addr_t pa;
} cmd;
/* TCAM tables allocated upfront, used for group 0 */
uint64_t ig_tcam_hndl;
uint64_t eg_tcam_hndl;
/* Counters */
SLIST_HEAD(enic_free_counters, enic_fm_counter) counters;
void *counter_stack;
uint32_t counters_alloced;
/* Exact match tables for groups != 0, dynamically allocated */
TAILQ_HEAD(fet_list, enic_fm_fet) fet_list;
/*
* Default exact match tables used for jump actions to
* non-existent groups.
*/
struct enic_fm_fet *default_eg_fet;
struct enic_fm_fet *default_ig_fet;
/* Flows that jump to the default table above */
TAILQ_HEAD(jump_flow_list, enic_fm_jump_flow) jump_list;
/*
* Scratch data used during each invocation of flow_create
* and flow_validate.
*/
struct enic_fm_fet *fet;
struct fm_tcam_match_entry tcam_entry;
struct fm_action action;
struct fm_action action_tmp; /* enic_fm_reorder_action_op */
int action_op_count;
};
static int enic_fm_tbl_free(struct enic_flowman *fm, uint64_t handle);
/*
* Common arguments passed to copy_item functions. Use this structure
* so we can easily add new arguments.
* item: Item specification.
* fm_tcam_entry: Flowman TCAM match entry.
* header_level: 0 for outer header, 1 for inner header.
*/
struct copy_item_args {
const struct rte_flow_item *item;
struct fm_tcam_match_entry *fm_tcam_entry;
uint8_t header_level;
};
/* functions for copying items into flowman match */
typedef int (enic_copy_item_fn)(struct copy_item_args *arg);
/* Info about how to copy items into flowman match */
struct enic_fm_items {
/* Function for copying and validating an item. */
enic_copy_item_fn * const copy_item;
/* List of valid previous items. */
const enum rte_flow_item_type * const prev_items;
/*
* True if it's OK for this item to be the first item. For some NIC
* versions, it's invalid to start the stack above layer 3.
*/
const uint8_t valid_start_item;
};
static enic_copy_item_fn enic_fm_copy_item_eth;
static enic_copy_item_fn enic_fm_copy_item_ipv4;
static enic_copy_item_fn enic_fm_copy_item_ipv6;
static enic_copy_item_fn enic_fm_copy_item_raw;
static enic_copy_item_fn enic_fm_copy_item_sctp;
static enic_copy_item_fn enic_fm_copy_item_tcp;
static enic_copy_item_fn enic_fm_copy_item_udp;
static enic_copy_item_fn enic_fm_copy_item_vlan;
static enic_copy_item_fn enic_fm_copy_item_vxlan;
/* Ingress actions */
static const enum rte_flow_action_type enic_fm_supported_ig_actions[] = {
RTE_FLOW_ACTION_TYPE_COUNT,
RTE_FLOW_ACTION_TYPE_DROP,
RTE_FLOW_ACTION_TYPE_FLAG,
RTE_FLOW_ACTION_TYPE_JUMP,
RTE_FLOW_ACTION_TYPE_MARK,
RTE_FLOW_ACTION_TYPE_PORT_ID,
RTE_FLOW_ACTION_TYPE_PASSTHRU,
RTE_FLOW_ACTION_TYPE_QUEUE,
RTE_FLOW_ACTION_TYPE_RSS,
RTE_FLOW_ACTION_TYPE_VOID,
RTE_FLOW_ACTION_TYPE_VXLAN_ENCAP,
RTE_FLOW_ACTION_TYPE_VXLAN_DECAP,
RTE_FLOW_ACTION_TYPE_END, /* END must be the last entry */
};
/* Egress actions */
static const enum rte_flow_action_type enic_fm_supported_eg_actions[] = {
RTE_FLOW_ACTION_TYPE_COUNT,
RTE_FLOW_ACTION_TYPE_DROP,
RTE_FLOW_ACTION_TYPE_JUMP,
RTE_FLOW_ACTION_TYPE_PASSTHRU,
RTE_FLOW_ACTION_TYPE_VOID,
RTE_FLOW_ACTION_TYPE_VXLAN_ENCAP,
RTE_FLOW_ACTION_TYPE_END,
};
static const struct enic_fm_items enic_fm_items[] = {
[RTE_FLOW_ITEM_TYPE_RAW] = {
.copy_item = enic_fm_copy_item_raw,
.valid_start_item = 0,
.prev_items = (const enum rte_flow_item_type[]) {
RTE_FLOW_ITEM_TYPE_UDP,
RTE_FLOW_ITEM_TYPE_END,
},
},
[RTE_FLOW_ITEM_TYPE_ETH] = {
.copy_item = enic_fm_copy_item_eth,
.valid_start_item = 1,
.prev_items = (const enum rte_flow_item_type[]) {
RTE_FLOW_ITEM_TYPE_END,
},
},
[RTE_FLOW_ITEM_TYPE_VLAN] = {
.copy_item = enic_fm_copy_item_vlan,
.valid_start_item = 1,
.prev_items = (const enum rte_flow_item_type[]) {
RTE_FLOW_ITEM_TYPE_ETH,
RTE_FLOW_ITEM_TYPE_END,
},
},
[RTE_FLOW_ITEM_TYPE_IPV4] = {
.copy_item = enic_fm_copy_item_ipv4,
.valid_start_item = 1,
.prev_items = (const enum rte_flow_item_type[]) {
RTE_FLOW_ITEM_TYPE_ETH,
RTE_FLOW_ITEM_TYPE_VLAN,
RTE_FLOW_ITEM_TYPE_END,
},
},
[RTE_FLOW_ITEM_TYPE_IPV6] = {
.copy_item = enic_fm_copy_item_ipv6,
.valid_start_item = 1,
.prev_items = (const enum rte_flow_item_type[]) {
RTE_FLOW_ITEM_TYPE_ETH,
RTE_FLOW_ITEM_TYPE_VLAN,
RTE_FLOW_ITEM_TYPE_END,
},
},
[RTE_FLOW_ITEM_TYPE_UDP] = {
.copy_item = enic_fm_copy_item_udp,
.valid_start_item = 1,
.prev_items = (const enum rte_flow_item_type[]) {
RTE_FLOW_ITEM_TYPE_IPV4,
RTE_FLOW_ITEM_TYPE_IPV6,
RTE_FLOW_ITEM_TYPE_END,
},
},
[RTE_FLOW_ITEM_TYPE_TCP] = {
.copy_item = enic_fm_copy_item_tcp,
.valid_start_item = 1,
.prev_items = (const enum rte_flow_item_type[]) {
RTE_FLOW_ITEM_TYPE_IPV4,
RTE_FLOW_ITEM_TYPE_IPV6,
RTE_FLOW_ITEM_TYPE_END,
},
},
[RTE_FLOW_ITEM_TYPE_SCTP] = {
.copy_item = enic_fm_copy_item_sctp,
.valid_start_item = 0,
.prev_items = (const enum rte_flow_item_type[]) {
RTE_FLOW_ITEM_TYPE_IPV4,
RTE_FLOW_ITEM_TYPE_IPV6,
RTE_FLOW_ITEM_TYPE_END,
},
},
[RTE_FLOW_ITEM_TYPE_VXLAN] = {
.copy_item = enic_fm_copy_item_vxlan,
.valid_start_item = 1,
.prev_items = (const enum rte_flow_item_type[]) {
RTE_FLOW_ITEM_TYPE_UDP,
RTE_FLOW_ITEM_TYPE_END,
},
},
};
static int
enic_fm_copy_item_eth(struct copy_item_args *arg)
{
const struct rte_flow_item *item = arg->item;
const struct rte_flow_item_eth *spec = item->spec;
const struct rte_flow_item_eth *mask = item->mask;
const uint8_t lvl = arg->header_level;
struct fm_tcam_match_entry *entry = arg->fm_tcam_entry;
struct fm_header_set *fm_data, *fm_mask;
ENICPMD_FUNC_TRACE();
/* Match all if no spec */
if (!spec)
return 0;
if (!mask)
mask = &rte_flow_item_eth_mask;
fm_data = &entry->ftm_data.fk_hdrset[lvl];
fm_mask = &entry->ftm_mask.fk_hdrset[lvl];
fm_data->fk_header_select |= FKH_ETHER;
fm_mask->fk_header_select |= FKH_ETHER;
memcpy(&fm_data->l2.eth, spec, sizeof(*spec));
memcpy(&fm_mask->l2.eth, mask, sizeof(*mask));
return 0;
}
static int
enic_fm_copy_item_vlan(struct copy_item_args *arg)
{
const struct rte_flow_item *item = arg->item;
const struct rte_flow_item_vlan *spec = item->spec;
const struct rte_flow_item_vlan *mask = item->mask;
const uint8_t lvl = arg->header_level;
struct fm_tcam_match_entry *entry = arg->fm_tcam_entry;
struct fm_header_set *fm_data, *fm_mask;
struct rte_ether_hdr *eth_mask;
struct rte_ether_hdr *eth_val;
uint32_t meta;
ENICPMD_FUNC_TRACE();
fm_data = &entry->ftm_data.fk_hdrset[lvl];
fm_mask = &entry->ftm_mask.fk_hdrset[lvl];
/* Outer and inner packet vlans need different flags */
meta = FKM_VLAN_PRES;
if (lvl > 0)
meta = FKM_QTAG;
fm_data->fk_metadata |= meta;
fm_mask->fk_metadata |= meta;
/* Match all if no spec */
if (!spec)
return 0;
if (!mask)
mask = &rte_flow_item_vlan_mask;
eth_mask = (void *)&fm_mask->l2.eth;
eth_val = (void *)&fm_data->l2.eth;
/* Outer TPID cannot be matched */
if (eth_mask->ether_type)
return -ENOTSUP;
/*
* When packet matching, the VIC always compares vlan-stripped
* L2, regardless of vlan stripping settings. So, the inner type
* from vlan becomes the ether type of the eth header.
*/
eth_mask->ether_type = mask->inner_type;
eth_val->ether_type = spec->inner_type;
fm_data->fk_header_select |= FKH_ETHER | FKH_QTAG;
fm_mask->fk_header_select |= FKH_ETHER | FKH_QTAG;
fm_data->fk_vlan = rte_be_to_cpu_16(spec->tci);
fm_mask->fk_vlan = rte_be_to_cpu_16(mask->tci);
return 0;
}
static int
enic_fm_copy_item_ipv4(struct copy_item_args *arg)
{
const struct rte_flow_item *item = arg->item;
const struct rte_flow_item_ipv4 *spec = item->spec;
const struct rte_flow_item_ipv4 *mask = item->mask;
const uint8_t lvl = arg->header_level;
struct fm_tcam_match_entry *entry = arg->fm_tcam_entry;
struct fm_header_set *fm_data, *fm_mask;
ENICPMD_FUNC_TRACE();
fm_data = &entry->ftm_data.fk_hdrset[lvl];
fm_mask = &entry->ftm_mask.fk_hdrset[lvl];
fm_data->fk_metadata |= FKM_IPV4;
fm_mask->fk_metadata |= FKM_IPV4;
if (!spec)
return 0;
if (!mask)
mask = &rte_flow_item_ipv4_mask;
fm_data->fk_header_select |= FKH_IPV4;
fm_mask->fk_header_select |= FKH_IPV4;
memcpy(&fm_data->l3.ip4, spec, sizeof(*spec));
memcpy(&fm_mask->l3.ip4, mask, sizeof(*mask));
return 0;
}
static int
enic_fm_copy_item_ipv6(struct copy_item_args *arg)
{
const struct rte_flow_item *item = arg->item;
const struct rte_flow_item_ipv6 *spec = item->spec;
const struct rte_flow_item_ipv6 *mask = item->mask;
const uint8_t lvl = arg->header_level;
struct fm_tcam_match_entry *entry = arg->fm_tcam_entry;
struct fm_header_set *fm_data, *fm_mask;
ENICPMD_FUNC_TRACE();
fm_data = &entry->ftm_data.fk_hdrset[lvl];
fm_mask = &entry->ftm_mask.fk_hdrset[lvl];
fm_data->fk_metadata |= FKM_IPV6;
fm_mask->fk_metadata |= FKM_IPV6;
if (!spec)
return 0;
if (!mask)
mask = &rte_flow_item_ipv6_mask;
fm_data->fk_header_select |= FKH_IPV6;
fm_mask->fk_header_select |= FKH_IPV6;
memcpy(&fm_data->l3.ip6, spec, sizeof(*spec));
memcpy(&fm_mask->l3.ip6, mask, sizeof(*mask));
return 0;
}
static int
enic_fm_copy_item_udp(struct copy_item_args *arg)
{
const struct rte_flow_item *item = arg->item;
const struct rte_flow_item_udp *spec = item->spec;
const struct rte_flow_item_udp *mask = item->mask;
const uint8_t lvl = arg->header_level;
struct fm_tcam_match_entry *entry = arg->fm_tcam_entry;
struct fm_header_set *fm_data, *fm_mask;
ENICPMD_FUNC_TRACE();
fm_data = &entry->ftm_data.fk_hdrset[lvl];
fm_mask = &entry->ftm_mask.fk_hdrset[lvl];
fm_data->fk_metadata |= FKM_UDP;
fm_mask->fk_metadata |= FKM_UDP;
if (!spec)
return 0;
if (!mask)
mask = &rte_flow_item_udp_mask;
fm_data->fk_header_select |= FKH_UDP;
fm_mask->fk_header_select |= FKH_UDP;
memcpy(&fm_data->l4.udp, spec, sizeof(*spec));
memcpy(&fm_mask->l4.udp, mask, sizeof(*mask));
return 0;
}
static int
enic_fm_copy_item_tcp(struct copy_item_args *arg)
{
const struct rte_flow_item *item = arg->item;
const struct rte_flow_item_tcp *spec = item->spec;
const struct rte_flow_item_tcp *mask = item->mask;
const uint8_t lvl = arg->header_level;
struct fm_tcam_match_entry *entry = arg->fm_tcam_entry;
struct fm_header_set *fm_data, *fm_mask;
ENICPMD_FUNC_TRACE();
fm_data = &entry->ftm_data.fk_hdrset[lvl];
fm_mask = &entry->ftm_mask.fk_hdrset[lvl];
fm_data->fk_metadata |= FKM_TCP;
fm_mask->fk_metadata |= FKM_TCP;
if (!spec)
return 0;
if (!mask)
mask = &rte_flow_item_tcp_mask;
fm_data->fk_header_select |= FKH_TCP;
fm_mask->fk_header_select |= FKH_TCP;
memcpy(&fm_data->l4.tcp, spec, sizeof(*spec));
memcpy(&fm_mask->l4.tcp, mask, sizeof(*mask));
return 0;
}
static int
enic_fm_copy_item_sctp(struct copy_item_args *arg)
{
const struct rte_flow_item *item = arg->item;
const struct rte_flow_item_sctp *spec = item->spec;
const struct rte_flow_item_sctp *mask = item->mask;
const uint8_t lvl = arg->header_level;
struct fm_tcam_match_entry *entry = arg->fm_tcam_entry;
struct fm_header_set *fm_data, *fm_mask;
uint8_t *ip_proto_mask = NULL;
uint8_t *ip_proto = NULL;
uint32_t l3_fkh;
ENICPMD_FUNC_TRACE();
fm_data = &entry->ftm_data.fk_hdrset[lvl];
fm_mask = &entry->ftm_mask.fk_hdrset[lvl];
/*
* The NIC filter API has no flags for "match sctp", so explicitly
* set the protocol number in the IP pattern.
*/
if (fm_data->fk_metadata & FKM_IPV4) {
struct rte_ipv4_hdr *ip;
ip = (struct rte_ipv4_hdr *)&fm_mask->l3.ip4;
ip_proto_mask = &ip->next_proto_id;
ip = (struct rte_ipv4_hdr *)&fm_data->l3.ip4;
ip_proto = &ip->next_proto_id;
l3_fkh = FKH_IPV4;
} else if (fm_data->fk_metadata & FKM_IPV6) {
struct rte_ipv6_hdr *ip;
ip = (struct rte_ipv6_hdr *)&fm_mask->l3.ip6;
ip_proto_mask = &ip->proto;
ip = (struct rte_ipv6_hdr *)&fm_data->l3.ip6;
ip_proto = &ip->proto;
l3_fkh = FKH_IPV6;
} else {
/* Need IPv4/IPv6 pattern first */
return -EINVAL;
}
*ip_proto = IPPROTO_SCTP;
*ip_proto_mask = 0xff;
fm_data->fk_header_select |= l3_fkh;
fm_mask->fk_header_select |= l3_fkh;
if (!spec)
return 0;
if (!mask)
mask = &rte_flow_item_sctp_mask;
fm_data->fk_header_select |= FKH_L4RAW;
fm_mask->fk_header_select |= FKH_L4RAW;
memcpy(fm_data->l4.rawdata, spec, sizeof(*spec));
memcpy(fm_mask->l4.rawdata, mask, sizeof(*mask));
return 0;
}
static int
enic_fm_copy_item_vxlan(struct copy_item_args *arg)
{
const struct rte_flow_item *item = arg->item;
const struct rte_flow_item_vxlan *spec = item->spec;
const struct rte_flow_item_vxlan *mask = item->mask;
struct fm_tcam_match_entry *entry = arg->fm_tcam_entry;
struct fm_header_set *fm_data, *fm_mask;
ENICPMD_FUNC_TRACE();
/* Only 2 header levels (outer and inner) allowed */
if (arg->header_level > 0)
return -EINVAL;
fm_data = &entry->ftm_data.fk_hdrset[0];
fm_mask = &entry->ftm_mask.fk_hdrset[0];
fm_data->fk_metadata |= FKM_VXLAN;
fm_mask->fk_metadata |= FKM_VXLAN;
/* items from here on out are inner header items */
arg->header_level = 1;
/* Match all if no spec */
if (!spec)
return 0;
if (!mask)
mask = &rte_flow_item_vxlan_mask;
fm_data->fk_header_select |= FKH_VXLAN;
fm_mask->fk_header_select |= FKH_VXLAN;
memcpy(&fm_data->vxlan, spec, sizeof(*spec));
memcpy(&fm_mask->vxlan, mask, sizeof(*mask));
return 0;
}
/*
* Currently, raw pattern match is very limited. It is intended for matching
* UDP tunnel header (e.g. vxlan or geneve).
*/
static int
enic_fm_copy_item_raw(struct copy_item_args *arg)
{
const struct rte_flow_item *item = arg->item;
const struct rte_flow_item_raw *spec = item->spec;
const struct rte_flow_item_raw *mask = item->mask;
const uint8_t lvl = arg->header_level;
struct fm_tcam_match_entry *entry = arg->fm_tcam_entry;
struct fm_header_set *fm_data, *fm_mask;
ENICPMD_FUNC_TRACE();
/* Cannot be used for inner packet */
if (lvl > 0)
return -EINVAL;
/* Need both spec and mask */
if (!spec || !mask)
return -EINVAL;
/* Only supports relative with offset 0 */
if (!spec->relative || spec->offset != 0 || spec->search ||
spec->limit)
return -EINVAL;
/* Need non-null pattern that fits within the NIC's filter pattern */
if (spec->length == 0 ||
spec->length + sizeof(struct rte_udp_hdr) > FM_LAYER_SIZE ||
!spec->pattern || !mask->pattern)
return -EINVAL;
/*
* Mask fields, including length, are often set to zero. Assume that
* means "same as spec" to avoid breaking existing apps. If length
* is not zero, then it should be >= spec length.
*
* No more pattern follows this, so append to the L4 layer instead of
* L5 to work with both recent and older VICs.
*/
if (mask->length != 0 && mask->length < spec->length)
return -EINVAL;
fm_data = &entry->ftm_data.fk_hdrset[lvl];
fm_mask = &entry->ftm_mask.fk_hdrset[lvl];
fm_data->fk_header_select |= FKH_L4RAW;
fm_mask->fk_header_select |= FKH_L4RAW;
fm_data->fk_header_select &= ~FKH_UDP;
fm_mask->fk_header_select &= ~FKH_UDP;
memcpy(fm_data->l4.rawdata + sizeof(struct rte_udp_hdr),
spec->pattern, spec->length);
memcpy(fm_mask->l4.rawdata + sizeof(struct rte_udp_hdr),
mask->pattern, spec->length);
return 0;
}
static int
enic_fet_alloc(struct enic_flowman *fm, uint8_t ingress,
struct fm_key_template *key, int entries,
struct enic_fm_fet **fet_out)
{
struct fm_exact_match_table *cmd;
struct fm_header_set *hdr;
struct enic_fm_fet *fet;
uint64_t args[3];
int ret;
ENICPMD_FUNC_TRACE();
fet = calloc(1, sizeof(struct enic_fm_fet));
if (fet == NULL)
return -ENOMEM;
cmd = &fm->cmd.va->fm_exact_match_table;
memset(cmd, 0, sizeof(*cmd));
cmd->fet_direction = ingress ? FM_INGRESS : FM_EGRESS;
cmd->fet_stage = FM_STAGE_LAST;
cmd->fet_max_entries = entries ? entries : FM_MAX_EXACT_TABLE_SIZE;
if (key == NULL) {
hdr = &cmd->fet_key.fk_hdrset[0];
memset(hdr, 0, sizeof(*hdr));
hdr->fk_header_select = FKH_IPV4 | FKH_UDP;
hdr->l3.ip4.fk_saddr = 0xFFFFFFFF;
hdr->l3.ip4.fk_daddr = 0xFFFFFFFF;
hdr->l4.udp.fk_source = 0xFFFF;
hdr->l4.udp.fk_dest = 0xFFFF;
fet->default_key = 1;
} else {
memcpy(&cmd->fet_key, key, sizeof(*key));
memcpy(&fet->key, key, sizeof(*key));
fet->default_key = 0;
}
cmd->fet_key.fk_packet_tag = 1;
args[0] = FM_EXACT_TABLE_ALLOC;
args[1] = fm->cmd.pa;
ret = vnic_dev_flowman_cmd(fm->enic->vdev, args, 2);
if (ret) {
ENICPMD_LOG(ERR, "cannot alloc exact match table: rc=%d", ret);
free(fet);
return ret;
}
fet->handle = args[0];
fet->ingress = ingress;
ENICPMD_LOG(DEBUG, "allocated exact match table: handle=0x%" PRIx64,
fet->handle);
*fet_out = fet;
return 0;
}
static void
enic_fet_free(struct enic_flowman *fm, struct enic_fm_fet *fet)
{
ENICPMD_FUNC_TRACE();
enic_fm_tbl_free(fm, fet->handle);
if (!fet->default_key)
TAILQ_REMOVE(&fm->fet_list, fet, list);
free(fet);
}
/*
* Get the exact match table for the given combination of
* <group, ingress, key>. Allocate one on the fly as necessary.
*/
static int
enic_fet_get(struct enic_flowman *fm,
uint32_t group,
uint8_t ingress,
struct fm_key_template *key,
struct enic_fm_fet **fet_out,
struct rte_flow_error *error)
{
struct enic_fm_fet *fet;
ENICPMD_FUNC_TRACE();
/* See if we already have this table open */
TAILQ_FOREACH(fet, &fm->fet_list, list) {
if (fet->group == group && fet->ingress == ingress)
break;
}
if (fet == NULL) {
/* Jumping to a non-existing group? Use the default table */
if (key == NULL) {
fet = ingress ? fm->default_ig_fet : fm->default_eg_fet;
} else if (enic_fet_alloc(fm, ingress, key, 0, &fet)) {
return rte_flow_error_set(error, EINVAL,
RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
NULL, "enic: cannot get exact match table");
}
fet->group = group;
/* Default table is never on the open table list */
if (!fet->default_key)
TAILQ_INSERT_HEAD(&fm->fet_list, fet, list);
}
fet->ref++;
*fet_out = fet;
ENICPMD_LOG(DEBUG, "fet_get: %s %s group=%u ref=%u",
fet->default_key ? "default" : "",
fet->ingress ? "ingress" : "egress",
fet->group, fet->ref);
return 0;
}
static void
enic_fet_put(struct enic_flowman *fm, struct enic_fm_fet *fet)
{
ENICPMD_FUNC_TRACE();
RTE_ASSERT(fet->ref > 0);
fet->ref--;
ENICPMD_LOG(DEBUG, "fet_put: %s %s group=%u ref=%u",
fet->default_key ? "default" : "",
fet->ingress ? "ingress" : "egress",
fet->group, fet->ref);
if (fet->ref == 0)
enic_fet_free(fm, fet);
}
/* Return 1 if current item is valid on top of the previous one. */
static int
fm_item_stacking_valid(enum rte_flow_item_type prev_item,
const struct enic_fm_items *item_info,
uint8_t is_first_item)
{
enum rte_flow_item_type const *allowed_items = item_info->prev_items;
ENICPMD_FUNC_TRACE();
for (; *allowed_items != RTE_FLOW_ITEM_TYPE_END; allowed_items++) {
if (prev_item == *allowed_items)
return 1;
}
/* This is the first item in the stack. Check if that's cool */
if (is_first_item && item_info->valid_start_item)
return 1;
return 0;
}
/*
* Build the flow manager match entry structure from the provided pattern.
* The pattern is validated as the items are copied.
*/
static int
enic_fm_copy_entry(struct enic_flowman *fm,
const struct rte_flow_item pattern[],
struct rte_flow_error *error)
{
const struct enic_fm_items *item_info;
enum rte_flow_item_type prev_item;
const struct rte_flow_item *item;
struct copy_item_args args;
uint8_t prev_header_level;
uint8_t is_first_item;
int ret;
ENICPMD_FUNC_TRACE();
item = pattern;
is_first_item = 1;
prev_item = RTE_FLOW_ITEM_TYPE_END;
args.fm_tcam_entry = &fm->tcam_entry;
args.header_level = 0;
prev_header_level = 0;
for (; item->type != RTE_FLOW_ITEM_TYPE_END; item++) {
/*
* Get info about how to validate and copy the item. If NULL
* is returned the nic does not support the item.
*/
if (item->type == RTE_FLOW_ITEM_TYPE_VOID)
continue;
item_info = &enic_fm_items[item->type];
if (item->type > FM_MAX_ITEM_TYPE ||
item_info->copy_item == NULL) {
return rte_flow_error_set(error, ENOTSUP,
RTE_FLOW_ERROR_TYPE_ITEM,
NULL, "enic: unsupported item");
}
/* check to see if item stacking is valid */
if (!fm_item_stacking_valid(prev_item, item_info,
is_first_item))
goto stacking_error;
args.item = item;
ret = item_info->copy_item(&args);
if (ret)
goto item_not_supported;
/* Going from outer to inner? Treat it as a new packet start */
if (prev_header_level != args.header_level) {
prev_item = RTE_FLOW_ITEM_TYPE_END;
is_first_item = 1;
} else {
prev_item = item->type;
is_first_item = 0;
}
prev_header_level = args.header_level;
}
return 0;
item_not_supported:
return rte_flow_error_set(error, -ret, RTE_FLOW_ERROR_TYPE_ITEM,
NULL, "enic: unsupported item type");
stacking_error:
return rte_flow_error_set(error, EINVAL, RTE_FLOW_ERROR_TYPE_ITEM,
item, "enic: unsupported item stack");
}
static void
flow_item_skip_void(const struct rte_flow_item **item)
{
for ( ; ; (*item)++)
if ((*item)->type != RTE_FLOW_ITEM_TYPE_VOID)
return;
}
static void
append_template(void **template, uint8_t *off, const void *data, int len)
{
memcpy(*template, data, len);
*template = (char *)*template + len;
*off = *off + len;
}
static int
enic_fm_append_action_op(struct enic_flowman *fm,
struct fm_action_op *fm_op,
struct rte_flow_error *error)
{
int count;
count = fm->action_op_count;
ENICPMD_LOG(DEBUG, "append action op: idx=%d op=%u",
count, fm_op->fa_op);
if (count == FM_ACTION_OP_MAX) {
return rte_flow_error_set(error, EINVAL,
RTE_FLOW_ERROR_TYPE_ACTION, NULL,
"too many action operations");
}
fm->action.fma_action_ops[count] = *fm_op;
fm->action_op_count = count + 1;
return 0;
}
/* NIC requires that 1st steer appear before decap.
* Correct example: steer, decap, steer, steer, ...
*/
static void
enic_fm_reorder_action_op(struct enic_flowman *fm)
{
struct fm_action_op *op, *steer, *decap;
struct fm_action_op tmp_op;
ENICPMD_FUNC_TRACE();
/* Find 1st steer and decap */
op = fm->action.fma_action_ops;
steer = NULL;
decap = NULL;
while (op->fa_op != FMOP_END) {
if (!decap && op->fa_op == FMOP_DECAP_NOSTRIP)
decap = op;
else if (!steer && op->fa_op == FMOP_RQ_STEER)
steer = op;
op++;
}
/* If decap is before steer, swap */
if (steer && decap && decap < steer) {
op = fm->action.fma_action_ops;
ENICPMD_LOG(DEBUG, "swap decap %ld <-> steer %ld",
(long)(decap - op), (long)(steer - op));
tmp_op = *decap;
*decap = *steer;
*steer = tmp_op;
}
}
/* VXLAN decap is done via flowman compound action */
static int
enic_fm_copy_vxlan_decap(struct enic_flowman *fm,
struct fm_tcam_match_entry *fmt,
const struct rte_flow_action *action,
struct rte_flow_error *error)
{
struct fm_header_set *fm_data;
struct fm_action_op fm_op;
ENICPMD_FUNC_TRACE();
fm_data = &fmt->ftm_data.fk_hdrset[0];
if (!(fm_data->fk_metadata & FKM_VXLAN)) {
return rte_flow_error_set(error, EINVAL,
RTE_FLOW_ERROR_TYPE_ACTION, action,
"vxlan-decap: vxlan must be in pattern");
}
memset(&fm_op, 0, sizeof(fm_op));
fm_op.fa_op = FMOP_DECAP_NOSTRIP;
return enic_fm_append_action_op(fm, &fm_op, error);
}
/* VXLAN encap is done via flowman compound action */
static int
enic_fm_copy_vxlan_encap(struct enic_flowman *fm,
const struct rte_flow_item *item,
struct rte_flow_error *error)
{
struct fm_action_op fm_op;
struct rte_ether_hdr *eth;
uint16_t *ethertype;
void *template;
uint8_t off;
ENICPMD_FUNC_TRACE();
memset(&fm_op, 0, sizeof(fm_op));
fm_op.fa_op = FMOP_ENCAP;
template = fm->action.fma_data;
off = 0;
/*
* Copy flow items to the flowman template starting L2.
* L2 must be ethernet.
*/
flow_item_skip_void(&item);
if (item->type != RTE_FLOW_ITEM_TYPE_ETH)
return rte_flow_error_set(error, EINVAL,
RTE_FLOW_ERROR_TYPE_ITEM, item,
"vxlan-encap: first item should be ethernet");
eth = (struct rte_ether_hdr *)template;
ethertype = ð->ether_type;
append_template(&template, &off, item->spec,
sizeof(struct rte_flow_item_eth));
item++;
flow_item_skip_void(&item);
/* Optional VLAN */
if (item->type == RTE_FLOW_ITEM_TYPE_VLAN) {
const struct rte_flow_item_vlan *spec;
ENICPMD_LOG(DEBUG, "vxlan-encap: vlan");
spec = item->spec;
fm_op.encap.outer_vlan = rte_be_to_cpu_16(spec->tci);
item++;
flow_item_skip_void(&item);
}
/* L3 must be IPv4, IPv6 */
switch (item->type) {
case RTE_FLOW_ITEM_TYPE_IPV4:
{
struct rte_ipv4_hdr *ip4;
ENICPMD_LOG(DEBUG, "vxlan-encap: ipv4");
*ethertype = rte_cpu_to_be_16(RTE_ETHER_TYPE_IPV4);
ip4 = (struct rte_ipv4_hdr *)template;
/*
* Offset of IPv4 length field and its initial value
* (IP + UDP + VXLAN) are specified in the action. The NIC
* will add inner packet length.
*/
fm_op.encap.len1_offset = off +
offsetof(struct rte_ipv4_hdr, total_length);
fm_op.encap.len1_delta = sizeof(struct rte_ipv4_hdr) +
sizeof(struct rte_udp_hdr) +
sizeof(struct rte_vxlan_hdr);
append_template(&template, &off, item->spec,
sizeof(struct rte_ipv4_hdr));
ip4->version_ihl = RTE_IPV4_VHL_DEF;
if (ip4->time_to_live == 0)
ip4->time_to_live = IP_DEFTTL;
ip4->next_proto_id = IPPROTO_UDP;
break;
}
case RTE_FLOW_ITEM_TYPE_IPV6:
{
struct rte_ipv6_hdr *ip6;
ENICPMD_LOG(DEBUG, "vxlan-encap: ipv6");
*ethertype = rte_cpu_to_be_16(RTE_ETHER_TYPE_IPV6);
ip6 = (struct rte_ipv6_hdr *)template;
fm_op.encap.len1_offset = off +
offsetof(struct rte_ipv6_hdr, payload_len);
fm_op.encap.len1_delta = sizeof(struct rte_udp_hdr) +
sizeof(struct rte_vxlan_hdr);
append_template(&template, &off, item->spec,
sizeof(struct rte_ipv6_hdr));
ip6->vtc_flow |= rte_cpu_to_be_32(IP6_VTC_FLOW);
if (ip6->hop_limits == 0)
ip6->hop_limits = IP_DEFTTL;
ip6->proto = IPPROTO_UDP;
break;
}
default:
return rte_flow_error_set(error,
EINVAL, RTE_FLOW_ERROR_TYPE_ITEM, item,
"vxlan-encap: L3 must be IPv4/IPv6");
}
item++;
flow_item_skip_void(&item);
/* L4 is UDP */
if (item->type != RTE_FLOW_ITEM_TYPE_UDP)
return rte_flow_error_set(error, EINVAL,
RTE_FLOW_ERROR_TYPE_ITEM, item,
"vxlan-encap: UDP must follow IPv4/IPv6");
/* UDP length = UDP + VXLAN. NIC will add inner packet length. */
fm_op.encap.len2_offset =
off + offsetof(struct rte_udp_hdr, dgram_len);
fm_op.encap.len2_delta =
sizeof(struct rte_udp_hdr) + sizeof(struct rte_vxlan_hdr);
append_template(&template, &off, item->spec,
sizeof(struct rte_udp_hdr));
item++;
flow_item_skip_void(&item);
/* Finally VXLAN */
if (item->type != RTE_FLOW_ITEM_TYPE_VXLAN)
return rte_flow_error_set(error,
EINVAL, RTE_FLOW_ERROR_TYPE_ITEM, item,
"vxlan-encap: VXLAN must follow UDP");
append_template(&template, &off, item->spec,
sizeof(struct rte_flow_item_vxlan));
/*
* Fill in the rest of the action structure.
* Indicate that we want to encap with vxlan at packet start.
*/
fm_op.encap.template_offset = 0;
fm_op.encap.template_len = off;
return enic_fm_append_action_op(fm, &fm_op, error);
}
static int
enic_fm_find_vnic(struct enic *enic, const struct rte_pci_addr *addr,
uint64_t *handle)
{
uint32_t bdf;
uint64_t args[2];
int rc;
ENICPMD_FUNC_TRACE();
ENICPMD_LOG(DEBUG, "bdf=%x:%x:%x", addr->bus, addr->devid,
addr->function);
bdf = addr->bus << 8 | addr->devid << 3 | addr->function;
args[0] = FM_VNIC_FIND;
args[1] = bdf;
rc = vnic_dev_flowman_cmd(enic->vdev, args, 2);
if (rc != 0) {
ENICPMD_LOG(ERR, "allocating counters rc=%d", rc);
return rc;
}
*handle = args[0];
ENICPMD_LOG(DEBUG, "found vnic: handle=0x%" PRIx64, *handle);
return 0;
}
/* Translate flow actions to flowman TCAM entry actions */
static int
enic_fm_copy_action(struct enic_flowman *fm,
const struct rte_flow_action actions[],
uint8_t ingress,
struct rte_flow_error *error)
{
enum {
FATE = 1 << 0,
DECAP = 1 << 1,
PASSTHRU = 1 << 2,
COUNT = 1 << 3,
ENCAP = 1 << 4,
};
struct fm_tcam_match_entry *fmt;
struct fm_action_op fm_op;
struct enic *enic;
uint32_t overlap;
uint64_t vnic_h;
bool first_rq;
int ret;
ENICPMD_FUNC_TRACE();
fmt = &fm->tcam_entry;
first_rq = true;
enic = fm->enic;
overlap = 0;
vnic_h = 0; /* 0 = current vNIC */
for (; actions->type != RTE_FLOW_ACTION_TYPE_END; actions++) {
switch (actions->type) {
case RTE_FLOW_ACTION_TYPE_VOID:
continue;
case RTE_FLOW_ACTION_TYPE_PASSTHRU: {
if (overlap & PASSTHRU)
goto unsupported;
overlap |= PASSTHRU;
break;
}
case RTE_FLOW_ACTION_TYPE_JUMP: {
const struct rte_flow_action_jump *jump =
actions->conf;
struct enic_fm_fet *fet;
if (overlap & FATE)
goto unsupported;
ret = enic_fet_get(fm, jump->group, ingress, NULL,
&fet, error);
if (ret)
return ret;
overlap |= FATE;
memset(&fm_op, 0, sizeof(fm_op));
fm_op.fa_op = FMOP_EXACT_MATCH;
fm_op.exact.handle = fet->handle;
fm->fet = fet;
ret = enic_fm_append_action_op(fm, &fm_op, error);
if (ret)
return ret;
break;
}
case RTE_FLOW_ACTION_TYPE_MARK: {
const struct rte_flow_action_mark *mark =
actions->conf;
if (mark->id >= ENIC_MAGIC_FILTER_ID - 1)
return rte_flow_error_set(error, EINVAL,
RTE_FLOW_ERROR_TYPE_ACTION,
NULL, "invalid mark id");
memset(&fm_op, 0, sizeof(fm_op));
fm_op.fa_op = FMOP_MARK;
fm_op.mark.mark = mark->id + 1;
ret = enic_fm_append_action_op(fm, &fm_op, error);
if (ret)
return ret;
break;
}
case RTE_FLOW_ACTION_TYPE_FLAG: {
/* ENIC_MAGIC_FILTER_ID is reserved for flagging */
memset(&fm_op, 0, sizeof(fm_op));
fm_op.fa_op = FMOP_MARK;
fm_op.mark.mark = ENIC_MAGIC_FILTER_ID;
ret = enic_fm_append_action_op(fm, &fm_op, error);
if (ret)
return ret;
break;
}
case RTE_FLOW_ACTION_TYPE_QUEUE: {
const struct rte_flow_action_queue *queue =
actions->conf;
/*
* If fate other than QUEUE or RSS, fail. Multiple
* rss and queue actions are ok.
*/
if ((overlap & FATE) && first_rq)
goto unsupported;
first_rq = false;
overlap |= FATE;
memset(&fm_op, 0, sizeof(fm_op));
fm_op.fa_op = FMOP_RQ_STEER;
fm_op.rq_steer.rq_index =
enic_rte_rq_idx_to_sop_idx(queue->index);
fm_op.rq_steer.rq_count = 1;
fm_op.rq_steer.vnic_handle = vnic_h;
ret = enic_fm_append_action_op(fm, &fm_op, error);
if (ret)
return ret;
ENICPMD_LOG(DEBUG, "create QUEUE action rq: %u",
fm_op.rq_steer.rq_index);
break;
}
case RTE_FLOW_ACTION_TYPE_DROP: {
if (overlap & FATE)
goto unsupported;
overlap |= FATE;
memset(&fm_op, 0, sizeof(fm_op));
fm_op.fa_op = FMOP_DROP;
ret = enic_fm_append_action_op(fm, &fm_op, error);
if (ret)
return ret;
ENICPMD_LOG(DEBUG, "create DROP action");
break;
}
case RTE_FLOW_ACTION_TYPE_COUNT: {
if (overlap & COUNT)
goto unsupported;
overlap |= COUNT;
/* Count is associated with entry not action on VIC. */
fmt->ftm_flags |= FMEF_COUNTER;
break;
}
case RTE_FLOW_ACTION_TYPE_RSS: {
const struct rte_flow_action_rss *rss = actions->conf;
bool allow;
uint16_t i;
/*
* If fate other than QUEUE or RSS, fail. Multiple
* rss and queue actions are ok.
*/
if ((overlap & FATE) && first_rq)
goto unsupported;
first_rq = false;
overlap |= FATE;
/*
* Hardware only supports RSS actions on outer level
* with default type and function. Queues must be
* sequential.
*/
allow = rss->func == RTE_ETH_HASH_FUNCTION_DEFAULT &&
rss->level == 0 && (rss->types == 0 ||
rss->types == enic->rss_hf) &&
rss->queue_num <= enic->rq_count &&
rss->queue[rss->queue_num - 1] < enic->rq_count;
/* Identity queue map needs to be sequential */
for (i = 1; i < rss->queue_num; i++)
allow = allow && (rss->queue[i] ==
rss->queue[i - 1] + 1);
if (!allow)
goto unsupported;
memset(&fm_op, 0, sizeof(fm_op));
fm_op.fa_op = FMOP_RQ_STEER;
fm_op.rq_steer.rq_index =
enic_rte_rq_idx_to_sop_idx(rss->queue[0]);
fm_op.rq_steer.rq_count = rss->queue_num;
fm_op.rq_steer.vnic_handle = vnic_h;
ret = enic_fm_append_action_op(fm, &fm_op, error);
if (ret)
return ret;
ENICPMD_LOG(DEBUG, "create QUEUE action rq: %u",
fm_op.rq_steer.rq_index);
break;
}
case RTE_FLOW_ACTION_TYPE_PORT_ID: {
const struct rte_flow_action_port_id *port;
struct rte_pci_device *pdev;
struct rte_eth_dev *dev;
port = actions->conf;
if (port->original) {
vnic_h = 0; /* This port */
break;
}
ENICPMD_LOG(DEBUG, "port id %u", port->id);
if (!rte_eth_dev_is_valid_port(port->id)) {
return rte_flow_error_set(error, EINVAL,
RTE_FLOW_ERROR_TYPE_ACTION,
NULL, "invalid port_id");
}
dev = &rte_eth_devices[port->id];
if (!dev_is_enic(dev)) {
return rte_flow_error_set(error, EINVAL,
RTE_FLOW_ERROR_TYPE_ACTION,
NULL, "port_id is not enic");
}
pdev = RTE_ETH_DEV_TO_PCI(dev);
if (enic_fm_find_vnic(enic, &pdev->addr, &vnic_h)) {
return rte_flow_error_set(error, EINVAL,
RTE_FLOW_ERROR_TYPE_ACTION,
NULL, "port_id is not vnic");
}
break;
}
case RTE_FLOW_ACTION_TYPE_VXLAN_DECAP: {
if (overlap & DECAP)
goto unsupported;
overlap |= DECAP;
ret = enic_fm_copy_vxlan_decap(fm, fmt, actions,
error);
if (ret != 0)
return ret;
break;
}
case RTE_FLOW_ACTION_TYPE_VXLAN_ENCAP: {
const struct rte_flow_action_vxlan_encap *encap;
encap = actions->conf;
if (overlap & ENCAP)
goto unsupported;
overlap |= ENCAP;
ret = enic_fm_copy_vxlan_encap(fm, encap->definition,
error);
if (ret != 0)
return ret;
break;
}
default:
goto unsupported;
}
}
if (!(overlap & (FATE | PASSTHRU | COUNT)))
goto unsupported;
memset(&fm_op, 0, sizeof(fm_op));
fm_op.fa_op = FMOP_END;
ret = enic_fm_append_action_op(fm, &fm_op, error);
if (ret)
return ret;
enic_fm_reorder_action_op(fm);
return 0;
unsupported:
return rte_flow_error_set(error, ENOTSUP, RTE_FLOW_ERROR_TYPE_ACTION,
NULL, "enic: unsupported action");
}
/** Check if the action is supported */
static int
enic_fm_match_action(const struct rte_flow_action *action,
const enum rte_flow_action_type *supported_actions)
{
for (; *supported_actions != RTE_FLOW_ACTION_TYPE_END;
supported_actions++) {
if (action->type == *supported_actions)
return 1;
}
return 0;
}
/* Debug function to dump internal NIC action structure. */
static void
enic_fm_dump_tcam_actions(const struct fm_action *fm_action)
{
/* Manually keep in sync with FMOP commands */
const char *fmop_str[FMOP_OP_MAX] = {
[FMOP_END] = "end",
[FMOP_DROP] = "drop",
[FMOP_RQ_STEER] = "steer",
[FMOP_EXACT_MATCH] = "exmatch",
[FMOP_MARK] = "mark",
[FMOP_EXT_MARK] = "ext_mark",
[FMOP_TAG] = "tag",
[FMOP_EG_HAIRPIN] = "eg_hairpin",
[FMOP_IG_HAIRPIN] = "ig_hairpin",
[FMOP_ENCAP_IVLAN] = "encap_ivlan",
[FMOP_ENCAP_NOIVLAN] = "encap_noivlan",
[FMOP_ENCAP] = "encap",
[FMOP_SET_OVLAN] = "set_ovlan",
[FMOP_DECAP_NOSTRIP] = "decap_nostrip",
};
const struct fm_action_op *op = &fm_action->fma_action_ops[0];
char buf[128], *bp = buf;
const char *op_str;
int i, n, buf_len;
buf[0] = '\0';
buf_len = sizeof(buf);
for (i = 0; i < FM_ACTION_OP_MAX; i++) {
if (op->fa_op == FMOP_END)
break;
if (op->fa_op >= FMOP_OP_MAX)
op_str = "unknown";
else
op_str = fmop_str[op->fa_op];
n = snprintf(bp, buf_len, "%s,", op_str);
if (n > 0 && n < buf_len) {
bp += n;
buf_len -= n;
}
op++;
}
/* Remove trailing comma */
if (buf[0])
*(bp - 1) = '\0';
ENICPMD_LOG(DEBUG, " Acions: %s", buf);
}
static int
bits_to_str(uint32_t bits, const char *strings[], int max,
char *buf, int buf_len)
{
int i, n = 0, len = 0;
for (i = 0; i < max; i++) {
if (bits & (1 << i)) {
n = snprintf(buf, buf_len, "%s,", strings[i]);
if (n > 0 && n < buf_len) {
buf += n;
buf_len -= n;
len += n;
}
}
}
/* Remove trailing comma */
if (len) {
*(buf - 1) = '\0';
len--;
}
return len;
}
/* Debug function to dump internal NIC filter structure. */
static void
__enic_fm_dump_tcam_match(const struct fm_header_set *fk_hdrset, char *buf,
int buf_len)
{
/* Manually keep in sync with FKM_BITS */
const char *fm_fkm_str[FKM_BIT_COUNT] = {
[FKM_QTAG_BIT] = "qtag",
[FKM_CMD_BIT] = "cmd",
[FKM_IPV4_BIT] = "ip4",
[FKM_IPV6_BIT] = "ip6",
[FKM_ROCE_BIT] = "roce",
[FKM_UDP_BIT] = "udp",
[FKM_TCP_BIT] = "tcp",
[FKM_TCPORUDP_BIT] = "tcpportudp",
[FKM_IPFRAG_BIT] = "ipfrag",
[FKM_NVGRE_BIT] = "nvgre",
[FKM_VXLAN_BIT] = "vxlan",
[FKM_GENEVE_BIT] = "geneve",
[FKM_NSH_BIT] = "nsh",
[FKM_ROCEV2_BIT] = "rocev2",
[FKM_VLAN_PRES_BIT] = "vlan_pres",
[FKM_IPOK_BIT] = "ipok",
[FKM_L4OK_BIT] = "l4ok",
[FKM_ROCEOK_BIT] = "roceok",
[FKM_FCSOK_BIT] = "fcsok",
[FKM_EG_SPAN_BIT] = "eg_span",
[FKM_IG_SPAN_BIT] = "ig_span",
[FKM_EG_HAIRPINNED_BIT] = "eg_hairpinned",
};
/* Manually keep in sync with FKH_BITS */
const char *fm_fkh_str[FKH_BIT_COUNT] = {
[FKH_ETHER_BIT] = "eth",
[FKH_QTAG_BIT] = "qtag",
[FKH_L2RAW_BIT] = "l2raw",
[FKH_IPV4_BIT] = "ip4",
[FKH_IPV6_BIT] = "ip6",
[FKH_L3RAW_BIT] = "l3raw",
[FKH_UDP_BIT] = "udp",
[FKH_TCP_BIT] = "tcp",
[FKH_ICMP_BIT] = "icmp",
[FKH_VXLAN_BIT] = "vxlan",
[FKH_L4RAW_BIT] = "l4raw",
};
uint32_t fkh_bits = fk_hdrset->fk_header_select;
uint32_t fkm_bits = fk_hdrset->fk_metadata;
int n;
if (!fkm_bits && !fkh_bits)
return;
n = snprintf(buf, buf_len, "metadata(");
if (n > 0 && n < buf_len) {
buf += n;
buf_len -= n;
}
n = bits_to_str(fkm_bits, fm_fkm_str, FKM_BIT_COUNT, buf, buf_len);
if (n > 0 && n < buf_len) {
buf += n;
buf_len -= n;
}
n = snprintf(buf, buf_len, ") valid hdr fields(");
if (n > 0 && n < buf_len) {
buf += n;
buf_len -= n;
}
n = bits_to_str(fkh_bits, fm_fkh_str, FKH_BIT_COUNT, buf, buf_len);
if (n > 0 && n < buf_len) {
buf += n;
buf_len -= n;
}
snprintf(buf, buf_len, ")");
}
static void
enic_fm_dump_tcam_match(const struct fm_tcam_match_entry *match,
uint8_t ingress)
{
char buf[256];
memset(buf, 0, sizeof(buf));
__enic_fm_dump_tcam_match(&match->ftm_mask.fk_hdrset[0],
buf, sizeof(buf));
ENICPMD_LOG(DEBUG, " TCAM %s Outer: %s %scounter",
(ingress) ? "IG" : "EG", buf,
(match->ftm_flags & FMEF_COUNTER) ? "" : "no ");
memset(buf, 0, sizeof(buf));
__enic_fm_dump_tcam_match(&match->ftm_mask.fk_hdrset[1],
buf, sizeof(buf));
if (buf[0])
ENICPMD_LOG(DEBUG, " Inner: %s", buf);
}
/* Debug function to dump internal NIC flow structures. */
static void
enic_fm_dump_tcam_entry(const struct fm_tcam_match_entry *fm_match,
const struct fm_action *fm_action,
uint8_t ingress)
{
if (!rte_log_can_log(enic_pmd_logtype, RTE_LOG_DEBUG))
return;
enic_fm_dump_tcam_match(fm_match, ingress);
enic_fm_dump_tcam_actions(fm_action);
}
static int
enic_fm_flow_parse(struct enic_flowman *fm,
const struct rte_flow_attr *attrs,
const struct rte_flow_item pattern[],
const struct rte_flow_action actions[],
struct rte_flow_error *error)
{
const struct rte_flow_action *action;
unsigned int ret;
static const enum rte_flow_action_type *sa;
ENICPMD_FUNC_TRACE();
ret = 0;
if (!pattern) {
rte_flow_error_set(error, EINVAL, RTE_FLOW_ERROR_TYPE_ITEM_NUM,
NULL, "no pattern specified");
return -rte_errno;
}
if (!actions) {
rte_flow_error_set(error, EINVAL,
RTE_FLOW_ERROR_TYPE_ACTION_NUM,
NULL, "no action specified");
return -rte_errno;
}
if (attrs) {
if (attrs->priority) {
rte_flow_error_set(error, ENOTSUP,
RTE_FLOW_ERROR_TYPE_ATTR_PRIORITY,
NULL,
"priorities are not supported");
return -rte_errno;
} else if (attrs->transfer) {
rte_flow_error_set(error, ENOTSUP,
RTE_FLOW_ERROR_TYPE_ATTR_TRANSFER,
NULL,
"transfer is not supported");
return -rte_errno;
} else if (attrs->ingress && attrs->egress) {
rte_flow_error_set(error, ENOTSUP,
RTE_FLOW_ERROR_TYPE_ATTR_INGRESS,
NULL,
"bidirectional rules not supported");
return -rte_errno;
}
} else {
rte_flow_error_set(error, EINVAL,
RTE_FLOW_ERROR_TYPE_ATTR,
NULL, "no attribute specified");
return -rte_errno;
}
/* Verify Actions. */
sa = (attrs->ingress) ? enic_fm_supported_ig_actions :
enic_fm_supported_eg_actions;
for (action = &actions[0]; action->type != RTE_FLOW_ACTION_TYPE_END;
action++) {
if (action->type == RTE_FLOW_ACTION_TYPE_VOID)
continue;
else if (!enic_fm_match_action(action, sa))
break;
}
if (action->type != RTE_FLOW_ACTION_TYPE_END) {
rte_flow_error_set(error, EPERM, RTE_FLOW_ERROR_TYPE_ACTION,
action, "invalid action");
return -rte_errno;
}
ret = enic_fm_copy_entry(fm, pattern, error);
if (ret)
return ret;
ret = enic_fm_copy_action(fm, actions, attrs->ingress, error);
return ret;
}
static void
enic_fm_counter_free(struct enic_flowman *fm, struct enic_fm_flow *fm_flow)
{
if (!fm_flow->counter_valid)
return;
SLIST_INSERT_HEAD(&fm->counters, fm_flow->counter, next);
fm_flow->counter_valid = false;
}
static int
enic_fm_more_counters(struct enic_flowman *fm)
{
struct enic_fm_counter *new_stack;
struct enic_fm_counter *ctrs;
struct enic *enic;
int i, rc;
uint64_t args[2];
ENICPMD_FUNC_TRACE();
enic = fm->enic;
new_stack = rte_realloc(fm->counter_stack, (fm->counters_alloced +
FM_COUNTERS_EXPAND) *
sizeof(struct enic_fm_counter), 0);
if (new_stack == NULL) {
ENICPMD_LOG(ERR, "cannot alloc counter memory");
return -ENOMEM;
}
fm->counter_stack = new_stack;
args[0] = FM_COUNTER_BRK;
args[1] = fm->counters_alloced + FM_COUNTERS_EXPAND;
rc = vnic_dev_flowman_cmd(enic->vdev, args, 2);
if (rc != 0) {
ENICPMD_LOG(ERR, "cannot alloc counters rc=%d", rc);
return rc;
}
ctrs = (struct enic_fm_counter *)fm->counter_stack +
fm->counters_alloced;
for (i = 0; i < FM_COUNTERS_EXPAND; i++, ctrs++) {
ctrs->handle = fm->counters_alloced + i;
SLIST_INSERT_HEAD(&fm->counters, ctrs, next);
}
fm->counters_alloced += FM_COUNTERS_EXPAND;
ENICPMD_LOG(DEBUG, "%u counters allocated, total: %u",
FM_COUNTERS_EXPAND, fm->counters_alloced);
return 0;
}
static int
enic_fm_counter_zero(struct enic_flowman *fm, struct enic_fm_counter *c)
{
struct enic *enic;
uint64_t args[3];
int ret;
ENICPMD_FUNC_TRACE();
enic = fm->enic;
args[0] = FM_COUNTER_QUERY;
args[1] = c->handle;
args[2] = 1; /* clear */
ret = vnic_dev_flowman_cmd(enic->vdev, args, 3);
if (ret) {
ENICPMD_LOG(ERR, "counter init: rc=%d handle=0x%x",
ret, c->handle);
return ret;
}
return 0;
}
static int
enic_fm_counter_alloc(struct enic_flowman *fm, struct rte_flow_error *error,
struct enic_fm_counter **ctr)
{
struct enic_fm_counter *c;
int ret;
ENICPMD_FUNC_TRACE();
*ctr = NULL;
if (SLIST_EMPTY(&fm->counters)) {
ret = enic_fm_more_counters(fm);
if (ret)
return rte_flow_error_set(error, -ret,
RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
NULL, "enic: out of counters");
}
c = SLIST_FIRST(&fm->counters);
SLIST_REMOVE_HEAD(&fm->counters, next);
*ctr = c;
return 0;
}
static int
enic_fm_action_free(struct enic_flowman *fm, uint64_t handle)
{
uint64_t args[2];
int rc;
ENICPMD_FUNC_TRACE();
args[0] = FM_ACTION_FREE;
args[1] = handle;
rc = vnic_dev_flowman_cmd(fm->enic->vdev, args, 2);
if (rc)
ENICPMD_LOG(ERR, "cannot free action: rc=%d handle=0x%" PRIx64,
rc, handle);
return rc;
}
static int
enic_fm_entry_free(struct enic_flowman *fm, uint64_t handle)
{
uint64_t args[2];
int rc;
ENICPMD_FUNC_TRACE();
args[0] = FM_MATCH_ENTRY_REMOVE;
args[1] = handle;
rc = vnic_dev_flowman_cmd(fm->enic->vdev, args, 2);
if (rc)
ENICPMD_LOG(ERR, "cannot free match entry: rc=%d"
" handle=0x%" PRIx64, rc, handle);
return rc;
}
static struct enic_fm_jump_flow *
find_jump_flow(struct enic_flowman *fm, uint32_t group)
{
struct enic_fm_jump_flow *j;
ENICPMD_FUNC_TRACE();
TAILQ_FOREACH(j, &fm->jump_list, list) {
if (j->group == group)
return j;
}
return NULL;
}
static void
remove_jump_flow(struct enic_flowman *fm, struct rte_flow *flow)
{
struct enic_fm_jump_flow *j;
ENICPMD_FUNC_TRACE();
TAILQ_FOREACH(j, &fm->jump_list, list) {
if (j->flow == flow) {
TAILQ_REMOVE(&fm->jump_list, j, list);
free(j);
return;
}
}
}
static int
save_jump_flow(struct enic_flowman *fm,
struct rte_flow *flow,
uint32_t group,
struct fm_tcam_match_entry *match,
struct fm_action *action)
{
struct enic_fm_jump_flow *j;
ENICPMD_FUNC_TRACE();
j = calloc(1, sizeof(struct enic_fm_jump_flow));
if (j == NULL)
return -ENOMEM;
j->flow = flow;
j->group = group;
j->match = *match;
j->action = *action;
TAILQ_INSERT_HEAD(&fm->jump_list, j, list);
ENICPMD_LOG(DEBUG, "saved jump flow: flow=%p group=%u", flow, group);
return 0;
}
static void
__enic_fm_flow_free(struct enic_flowman *fm, struct enic_fm_flow *fm_flow)
{
if (fm_flow->entry_handle != FM_INVALID_HANDLE) {
enic_fm_entry_free(fm, fm_flow->entry_handle);
fm_flow->entry_handle = FM_INVALID_HANDLE;
}
if (fm_flow->action_handle != FM_INVALID_HANDLE) {
enic_fm_action_free(fm, fm_flow->action_handle);
fm_flow->action_handle = FM_INVALID_HANDLE;
}
enic_fm_counter_free(fm, fm_flow);
if (fm_flow->fet) {
enic_fet_put(fm, fm_flow->fet);
fm_flow->fet = NULL;
}
}
static void
enic_fm_flow_free(struct enic_flowman *fm, struct rte_flow *flow)
{
if (flow->fm->fet && flow->fm->fet->default_key)
remove_jump_flow(fm, flow);
__enic_fm_flow_free(fm, flow->fm);
free(flow->fm);
free(flow);
}
static int
enic_fm_add_tcam_entry(struct enic_flowman *fm,
struct fm_tcam_match_entry *match_in,
uint64_t *entry_handle,
uint8_t ingress,
struct rte_flow_error *error)
{
struct fm_tcam_match_entry *ftm;
uint64_t args[3];
int ret;
ENICPMD_FUNC_TRACE();
/* Copy entry to the command buffer */
ftm = &fm->cmd.va->fm_tcam_match_entry;
memcpy(ftm, match_in, sizeof(*ftm));
/* Add TCAM entry */
args[0] = FM_TCAM_ENTRY_INSTALL;
args[1] = ingress ? fm->ig_tcam_hndl : fm->eg_tcam_hndl;
args[2] = fm->cmd.pa;
ret = vnic_dev_flowman_cmd(fm->enic->vdev, args, 3);
if (ret != 0) {
ENICPMD_LOG(ERR, "cannot add %s TCAM entry: rc=%d",
ingress ? "ingress" : "egress", ret);
rte_flow_error_set(error, ret, RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
NULL, "enic: devcmd(tcam-entry-install)");
return ret;
}
ENICPMD_LOG(DEBUG, "installed %s TCAM entry: handle=0x%" PRIx64,
ingress ? "ingress" : "egress", (uint64_t)args[0]);
*entry_handle = args[0];
return 0;
}
static int
enic_fm_add_exact_entry(struct enic_flowman *fm,
struct fm_tcam_match_entry *match_in,
uint64_t *entry_handle,
struct enic_fm_fet *fet,
struct rte_flow_error *error)
{
struct fm_exact_match_entry *fem;
uint64_t args[3];
int ret;
ENICPMD_FUNC_TRACE();
/* The new entry must have the table's key */
if (memcmp(fet->key.fk_hdrset, match_in->ftm_mask.fk_hdrset,
sizeof(struct fm_header_set) * FM_HDRSET_MAX)) {
return rte_flow_error_set(error, EINVAL,
RTE_FLOW_ERROR_TYPE_ITEM, NULL,
"enic: key does not match group's key");
}
/* Copy entry to the command buffer */
fem = &fm->cmd.va->fm_exact_match_entry;
/*
* Translate TCAM entry to exact entry. As is only need to drop
* position and mask. The mask is part of the exact match table.
* Position (aka priority) is not supported in the exact match table.
*/
fem->fem_data = match_in->ftm_data;
fem->fem_flags = match_in->ftm_flags;
fem->fem_action = match_in->ftm_action;
fem->fem_counter = match_in->ftm_counter;
/* Add exact entry */
args[0] = FM_EXACT_ENTRY_INSTALL;
args[1] = fet->handle;
args[2] = fm->cmd.pa;
ret = vnic_dev_flowman_cmd(fm->enic->vdev, args, 3);
if (ret != 0) {
ENICPMD_LOG(ERR, "cannot add %s exact entry: group=%u",
fet->ingress ? "ingress" : "egress", fet->group);
rte_flow_error_set(error, ret, RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
NULL, "enic: devcmd(exact-entry-install)");
return ret;
}
ENICPMD_LOG(DEBUG, "installed %s exact entry: group=%u"
" handle=0x%" PRIx64,
fet->ingress ? "ingress" : "egress", fet->group,
(uint64_t)args[0]);
*entry_handle = args[0];
return 0;
}
/* Push match-action to the NIC. */
static int
__enic_fm_flow_add_entry(struct enic_flowman *fm,
struct enic_fm_flow *fm_flow,
struct fm_tcam_match_entry *match_in,
struct fm_action *action_in,
uint32_t group,
uint8_t ingress,
struct rte_flow_error *error)
{
struct enic_fm_counter *ctr;
struct fm_action *fma;
uint64_t action_h;
uint64_t entry_h;
uint64_t args[3];
int ret;
ENICPMD_FUNC_TRACE();
/* Allocate action. */
fma = &fm->cmd.va->fm_action;
memcpy(fma, action_in, sizeof(*fma));
args[0] = FM_ACTION_ALLOC;
args[1] = fm->cmd.pa;
ret = vnic_dev_flowman_cmd(fm->enic->vdev, args, 2);
if (ret != 0) {
ENICPMD_LOG(ERR, "allocating TCAM table action rc=%d", ret);
rte_flow_error_set(error, ret, RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
NULL, "enic: devcmd(action-alloc)");
return ret;
}
action_h = args[0];
fm_flow->action_handle = action_h;
match_in->ftm_action = action_h;
ENICPMD_LOG(DEBUG, "action allocated: handle=0x%" PRIx64, action_h);
/* Allocate counter if requested. */
if (match_in->ftm_flags & FMEF_COUNTER) {
ret = enic_fm_counter_alloc(fm, error, &ctr);
if (ret) /* error has been filled in */
return ret;
fm_flow->counter_valid = true;
fm_flow->counter = ctr;
match_in->ftm_counter = ctr->handle;
}
/*
* Get the group's table (either TCAM or exact match table) and
* add entry to it. If we use the exact match table, the handler
* will translate the TCAM entry (match_in) to the appropriate
* exact match entry and use that instead.
*/
entry_h = FM_INVALID_HANDLE;
if (group == FM_TCAM_RTE_GROUP) {
ret = enic_fm_add_tcam_entry(fm, match_in, &entry_h, ingress,
error);
if (ret)
return ret;
/* Jump action might have a ref to fet */
fm_flow->fet = fm->fet;
fm->fet = NULL;
} else {
struct enic_fm_fet *fet = NULL;
ret = enic_fet_get(fm, group, ingress,
&match_in->ftm_mask, &fet, error);
if (ret)
return ret;
fm_flow->fet = fet;
ret = enic_fm_add_exact_entry(fm, match_in, &entry_h, fet,
error);
if (ret)
return ret;
}
/* Clear counter after adding entry, as it requires in-use counter */
if (fm_flow->counter_valid) {
ret = enic_fm_counter_zero(fm, fm_flow->counter);
if (ret)
return ret;
}
fm_flow->entry_handle = entry_h;
return 0;
}
/* Push match-action to the NIC. */
static struct rte_flow *
enic_fm_flow_add_entry(struct enic_flowman *fm,
struct fm_tcam_match_entry *match_in,
struct fm_action *action_in,
const struct rte_flow_attr *attrs,
struct rte_flow_error *error)
{
struct enic_fm_flow *fm_flow;
struct rte_flow *flow;
ENICPMD_FUNC_TRACE();
enic_fm_dump_tcam_entry(match_in, action_in, attrs->ingress);
flow = calloc(1, sizeof(*flow));
fm_flow = calloc(1, sizeof(*fm_flow));
if (flow == NULL || fm_flow == NULL) {
rte_flow_error_set(error, ENOMEM, RTE_FLOW_ERROR_TYPE_HANDLE,
NULL, "enic: cannot allocate rte_flow");
free(flow);
free(fm_flow);
return NULL;
}
flow->fm = fm_flow;
fm_flow->action_handle = FM_INVALID_HANDLE;
fm_flow->entry_handle = FM_INVALID_HANDLE;
if (__enic_fm_flow_add_entry(fm, fm_flow, match_in, action_in,
attrs->group, attrs->ingress, error)) {
enic_fm_flow_free(fm, flow);
return NULL;
}
return flow;
}
static void
convert_jump_flows(struct enic_flowman *fm, struct enic_fm_fet *fet,
struct rte_flow_error *error)
{
struct enic_fm_flow *fm_flow;
struct enic_fm_jump_flow *j;
struct fm_action *fma;
uint32_t group;
ENICPMD_FUNC_TRACE();
/*
* Find the saved flows that should jump to the new table (fet).
* Then delete the old TCAM entry that jumps to the default table,
* and add a new one that jumps to the new table.
*/
group = fet->group;
j = find_jump_flow(fm, group);
while (j) {
ENICPMD_LOG(DEBUG, "convert jump flow: flow=%p group=%u",
j->flow, group);
/* Delete old entry */
fm_flow = j->flow->fm;
__enic_fm_flow_free(fm, fm_flow);
/* Add new entry */
fma = &j->action;
fma->fma_action_ops[0].exact.handle = fet->handle;
if (__enic_fm_flow_add_entry(fm, fm_flow, &j->match, fma,
FM_TCAM_RTE_GROUP, fet->ingress, error)) {
/* Cannot roll back changes at the moment */
ENICPMD_LOG(ERR, "cannot convert jump flow: flow=%p",
j->flow);
} else {
fm_flow->fet = fet;
fet->ref++;
ENICPMD_LOG(DEBUG, "convert ok: group=%u ref=%u",
fet->group, fet->ref);
}
TAILQ_REMOVE(&fm->jump_list, j, list);
free(j);
j = find_jump_flow(fm, group);
}
}
static void
enic_fm_open_scratch(struct enic_flowman *fm)
{
fm->action_op_count = 0;
fm->fet = NULL;
memset(&fm->tcam_entry, 0, sizeof(fm->tcam_entry));
memset(&fm->action, 0, sizeof(fm->action));
}
static void
enic_fm_close_scratch(struct enic_flowman *fm)
{
if (fm->fet) {
enic_fet_put(fm, fm->fet);
fm->fet = NULL;
}
fm->action_op_count = 0;
}
static int
enic_fm_flow_validate(struct rte_eth_dev *dev,
const struct rte_flow_attr *attrs,
const struct rte_flow_item pattern[],
const struct rte_flow_action actions[],
struct rte_flow_error *error)
{
struct fm_tcam_match_entry *fm_tcam_entry;
struct fm_action *fm_action;
struct enic_flowman *fm;
int ret;
ENICPMD_FUNC_TRACE();
fm = pmd_priv(dev)->fm;
if (fm == NULL)
return -ENOTSUP;
enic_fm_open_scratch(fm);
ret = enic_fm_flow_parse(fm, attrs, pattern, actions, error);
if (!ret) {
fm_tcam_entry = &fm->tcam_entry;
fm_action = &fm->action;
enic_fm_dump_tcam_entry(fm_tcam_entry, fm_action,
attrs->ingress);
}
enic_fm_close_scratch(fm);
return ret;
}
static int
enic_fm_flow_query_count(struct rte_eth_dev *dev,
struct rte_flow *flow, void *data,
struct rte_flow_error *error)
{
struct rte_flow_query_count *query;
struct enic_fm_flow *fm_flow;
struct enic *enic;
uint64_t args[3];
int rc;
ENICPMD_FUNC_TRACE();
enic = pmd_priv(dev);
query = data;
fm_flow = flow->fm;
if (!fm_flow->counter_valid)
return rte_flow_error_set(error, ENOTSUP,
RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
"enic: flow does not have counter");
args[0] = FM_COUNTER_QUERY;
args[1] = fm_flow->counter->handle;
args[2] = query->reset;
rc = vnic_dev_flowman_cmd(enic->vdev, args, 3);
if (rc) {
ENICPMD_LOG(ERR, "cannot query counter: rc=%d handle=0x%x",
rc, fm_flow->counter->handle);
return rc;
}
query->hits_set = 1;
query->hits = args[0];
query->bytes_set = 1;
query->bytes = args[1];
return 0;
}
static int
enic_fm_flow_query(struct rte_eth_dev *dev,
struct rte_flow *flow,
const struct rte_flow_action *actions,
void *data,
struct rte_flow_error *error)
{
int ret = 0;
ENICPMD_FUNC_TRACE();
for (; actions->type != RTE_FLOW_ACTION_TYPE_END; actions++) {
switch (actions->type) {
case RTE_FLOW_ACTION_TYPE_VOID:
break;
case RTE_FLOW_ACTION_TYPE_COUNT:
ret = enic_fm_flow_query_count(dev, flow, data, error);
break;
default:
return rte_flow_error_set(error, ENOTSUP,
RTE_FLOW_ERROR_TYPE_ACTION,
actions,
"action not supported");
}
if (ret < 0)
return ret;
}
return 0;
}
static struct rte_flow *
enic_fm_flow_create(struct rte_eth_dev *dev,
const struct rte_flow_attr *attrs,
const struct rte_flow_item pattern[],
const struct rte_flow_action actions[],
struct rte_flow_error *error)
{
struct fm_tcam_match_entry *fm_tcam_entry;
struct fm_action *fm_action;
struct enic_flowman *fm;
struct enic_fm_fet *fet;
struct rte_flow *flow;
struct enic *enic;
int ret;
ENICPMD_FUNC_TRACE();
enic = pmd_priv(dev);
fm = enic->fm;
if (fm == NULL) {
rte_flow_error_set(error, ENOTSUP,
RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
"flowman is not initialized");
return NULL;
}
enic_fm_open_scratch(fm);
flow = NULL;
ret = enic_fm_flow_parse(fm, attrs, pattern, actions, error);
if (ret < 0)
goto error_with_scratch;
fm_tcam_entry = &fm->tcam_entry;
fm_action = &fm->action;
flow = enic_fm_flow_add_entry(fm, fm_tcam_entry, fm_action,
attrs, error);
if (flow) {
LIST_INSERT_HEAD(&enic->flows, flow, next);
fet = flow->fm->fet;
if (fet && fet->default_key) {
/*
* Jump to non-existent group? Save the relevant info
* so we can convert this flow when that group
* materializes.
*/
save_jump_flow(fm, flow, fet->group,
fm_tcam_entry, fm_action);
} else if (fet && fet->ref == 1) {
/*
* A new table is created. Convert the saved flows
* that should jump to this group.
*/
convert_jump_flows(fm, fet, error);
}
}
error_with_scratch:
enic_fm_close_scratch(fm);
return flow;
}
static int
enic_fm_flow_destroy(struct rte_eth_dev *dev, struct rte_flow *flow,
__rte_unused struct rte_flow_error *error)
{
struct enic *enic = pmd_priv(dev);
ENICPMD_FUNC_TRACE();
if (enic->fm == NULL)
return 0;
LIST_REMOVE(flow, next);
enic_fm_flow_free(enic->fm, flow);
return 0;
}
static int
enic_fm_flow_flush(struct rte_eth_dev *dev,
__rte_unused struct rte_flow_error *error)
{
struct enic_fm_flow *fm_flow;
struct enic_flowman *fm;
struct rte_flow *flow;
struct enic *enic = pmd_priv(dev);
ENICPMD_FUNC_TRACE();
if (enic->fm == NULL)
return 0;
fm = enic->fm;
while (!LIST_EMPTY(&enic->flows)) {
flow = LIST_FIRST(&enic->flows);
fm_flow = flow->fm;
LIST_REMOVE(flow, next);
/*
* If tables are null, then vNIC is closing, and the firmware
* has already cleaned up flowman state. So do not try to free
* resources, as it only causes errors.
*/
if (fm->ig_tcam_hndl == FM_INVALID_HANDLE) {
fm_flow->entry_handle = FM_INVALID_HANDLE;
fm_flow->action_handle = FM_INVALID_HANDLE;
fm_flow->fet = NULL;
}
enic_fm_flow_free(fm, flow);
}
return 0;
}
static int
enic_fm_tbl_free(struct enic_flowman *fm, uint64_t handle)
{
uint64_t args[2];
int rc;
args[0] = FM_MATCH_TABLE_FREE;
args[1] = handle;
rc = vnic_dev_flowman_cmd(fm->enic->vdev, args, 2);
if (rc)
ENICPMD_LOG(ERR, "cannot free table: rc=%d handle=0x%" PRIx64,
rc, handle);
return rc;
}
static int
enic_fm_tcam_tbl_alloc(struct enic_flowman *fm, uint32_t direction,
uint32_t max_entries, uint64_t *handle)
{
struct fm_tcam_match_table *tcam_tbl;
struct enic *enic;
uint64_t args[2];
int rc;
ENICPMD_FUNC_TRACE();
enic = fm->enic;
tcam_tbl = &fm->cmd.va->fm_tcam_match_table;
tcam_tbl->ftt_direction = direction;
tcam_tbl->ftt_stage = FM_STAGE_LAST;
tcam_tbl->ftt_max_entries = max_entries;
args[0] = FM_TCAM_TABLE_ALLOC;
args[1] = fm->cmd.pa;
rc = vnic_dev_flowman_cmd(enic->vdev, args, 2);
if (rc) {
ENICPMD_LOG(ERR, "cannot alloc %s TCAM table: rc=%d",
(direction == FM_INGRESS) ? "IG" : "EG", rc);
return rc;
}
*handle = args[0];
ENICPMD_LOG(DEBUG, "%s TCAM table allocated, handle=0x%" PRIx64,
(direction == FM_INGRESS) ? "IG" : "EG", *handle);
return 0;
}
static int
enic_fm_init_counters(struct enic_flowman *fm)
{
ENICPMD_FUNC_TRACE();
SLIST_INIT(&fm->counters);
return enic_fm_more_counters(fm);
}
static void
enic_fm_free_all_counters(struct enic_flowman *fm)
{
struct enic *enic;
uint64_t args[2];
int rc;
enic = fm->enic;
args[0] = FM_COUNTER_BRK;
args[1] = 0;
rc = vnic_dev_flowman_cmd(enic->vdev, args, 2);
if (rc != 0)
ENICPMD_LOG(ERR, "cannot free counters: rc=%d", rc);
rte_free(fm->counter_stack);
}
static int
enic_fm_alloc_tcam_tables(struct enic_flowman *fm)
{
int rc;
ENICPMD_FUNC_TRACE();
rc = enic_fm_tcam_tbl_alloc(fm, FM_INGRESS, FM_MAX_TCAM_TABLE_SIZE,
&fm->ig_tcam_hndl);
if (rc)
return rc;
rc = enic_fm_tcam_tbl_alloc(fm, FM_EGRESS, FM_MAX_TCAM_TABLE_SIZE,
&fm->eg_tcam_hndl);
return rc;
}
static void
enic_fm_free_tcam_tables(struct enic_flowman *fm)
{
ENICPMD_FUNC_TRACE();
if (fm->ig_tcam_hndl) {
ENICPMD_LOG(DEBUG, "free IG TCAM table handle=0x%" PRIx64,
fm->ig_tcam_hndl);
enic_fm_tbl_free(fm, fm->ig_tcam_hndl);
fm->ig_tcam_hndl = FM_INVALID_HANDLE;
}
if (fm->eg_tcam_hndl) {
ENICPMD_LOG(DEBUG, "free EG TCAM table handle=0x%" PRIx64,
fm->eg_tcam_hndl);
enic_fm_tbl_free(fm, fm->eg_tcam_hndl);
fm->eg_tcam_hndl = FM_INVALID_HANDLE;
}
}
int
enic_fm_init(struct enic *enic)
{
struct enic_flowman *fm;
uint8_t name[RTE_MEMZONE_NAMESIZE];
int rc;
if (enic->flow_filter_mode != FILTER_FLOWMAN)
return 0;
ENICPMD_FUNC_TRACE();
fm = calloc(1, sizeof(*fm));
if (fm == NULL) {
ENICPMD_LOG(ERR, "cannot alloc flowman struct");
return -ENOMEM;
}
fm->enic = enic;
TAILQ_INIT(&fm->fet_list);
TAILQ_INIT(&fm->jump_list);
/* Allocate host memory for flowman commands */
snprintf((char *)name, sizeof(name), "fm-cmd-%s", enic->bdf_name);
fm->cmd.va = enic_alloc_consistent(enic,
sizeof(union enic_flowman_cmd_mem), &fm->cmd.pa, name);
if (!fm->cmd.va) {
ENICPMD_LOG(ERR, "cannot allocate flowman command memory");
rc = -ENOMEM;
goto error_fm;
}
/* Allocate TCAM tables upfront as they are the main tables */
rc = enic_fm_alloc_tcam_tables(fm);
if (rc) {
ENICPMD_LOG(ERR, "cannot alloc TCAM tables");
goto error_cmd;
}
/* Then a number of counters */
rc = enic_fm_init_counters(fm);
if (rc) {
ENICPMD_LOG(ERR, "cannot alloc counters");
goto error_tables;
}
/*
* One default exact match table for each direction. We hold onto
* it until close.
*/
rc = enic_fet_alloc(fm, 1, NULL, 128, &fm->default_ig_fet);
if (rc) {
ENICPMD_LOG(ERR, "cannot alloc default IG exact match table");
goto error_counters;
}
fm->default_ig_fet->ref = 1;
rc = enic_fet_alloc(fm, 0, NULL, 128, &fm->default_eg_fet);
if (rc) {
ENICPMD_LOG(ERR, "cannot alloc default EG exact match table");
goto error_ig_fet;
}
fm->default_eg_fet->ref = 1;
enic->fm = fm;
return 0;
error_ig_fet:
enic_fet_free(fm, fm->default_ig_fet);
error_counters:
enic_fm_free_all_counters(fm);
error_tables:
enic_fm_free_tcam_tables(fm);
error_cmd:
enic_free_consistent(enic, sizeof(union enic_flowman_cmd_mem),
fm->cmd.va, fm->cmd.pa);
error_fm:
free(fm);
return rc;
}
void
enic_fm_destroy(struct enic *enic)
{
struct enic_flowman *fm;
struct enic_fm_fet *fet;
if (enic->fm == NULL)
return;
ENICPMD_FUNC_TRACE();
fm = enic->fm;
enic_fet_free(fm, fm->default_eg_fet);
enic_fet_free(fm, fm->default_ig_fet);
/* Free all exact match tables still open */
while (!TAILQ_EMPTY(&fm->fet_list)) {
fet = TAILQ_FIRST(&fm->fet_list);
enic_fet_free(fm, fet);
}
enic_fm_free_tcam_tables(fm);
enic_fm_free_all_counters(fm);
enic_free_consistent(enic, sizeof(union enic_flowman_cmd_mem),
fm->cmd.va, fm->cmd.pa);
fm->cmd.va = NULL;
free(fm);
enic->fm = NULL;
}
const struct rte_flow_ops enic_fm_flow_ops = {
.validate = enic_fm_flow_validate,
.create = enic_fm_flow_create,
.destroy = enic_fm_flow_destroy,
.flush = enic_fm_flow_flush,
.query = enic_fm_flow_query,
};
|