summaryrefslogtreecommitdiffstats
path: root/src/bp_sim.h
blob: fd4e6627758633f5b09b103166f4851ae2935ea7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
#ifndef BP_SIM_H
#define BP_SIM_H
/*
 Hanoh Haim
 Cisco Systems, Inc.
*/

/*
Copyright (c) 2015-2016 Cisco Systems, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

#include <stddef.h>
#include <stdio.h>
#include <stdint.h>
#include <vector>
#include <algorithm>
#include <map>
#include <iostream>
#include <fstream>
#include <string>
#include <queue>
#include "mbuf.h"
#include <common/c_common.h>
#include <common/captureFile.h>
#include <common/Network/Packet/TcpHeader.h>
#include <common/Network/Packet/UdpHeader.h>
#include <common/Network/Packet/IcmpHeader.h>
#include <common/Network/Packet/IPHeader.h>
#include <common/Network/Packet/IPv6Header.h>
#include <common/Network/Packet/EthernetHeader.h>
#include <math.h>
#include <common/bitMan.h>
#include <yaml-cpp/yaml.h>
#include "trex_defs.h"
#include "utl_ip.h"
#include "os_time.h"
#include "pal_utl.h"
#include "rx_check_header.h"
#include "rx_check.h"
#include "time_histogram.h"
#include "utl_cpuu.h"
#include "tuple_gen.h"
#include "utl_jitter.h"
#include "msg_manager.h"
#include "nat_check.h"
#include <common/cgen_map.h>
#include <arpa/inet.h>
#include "platform_cfg.h"
#include "flow_stat.h"
#include "trex_watchdog.h"
#include "trex_client_config.h"
#include "h_timer.h"
#include "tw_cfg.h"


#include <trex_stateless_dp_core.h>

#ifdef RTE_DPDK
#	include <rte_ip.h>
#endif /* RTE_DPDK */

class CGenNodePCAP;

#define FORCE_NO_INLINE __attribute__ ((noinline))
#define FORCE_INLINE __attribute__((always_inline))

/* reserve both 0xFF and 0xFE , router will -1 FF */
#define TTL_RESERVE_DUPLICATE 0xff
#define TOS_TTL_RESERVE_DUPLICATE 0x1
/*
 * Length of string needed to hold the largest port (16-bit) address
 */
#define INET_PORTSTRLEN 5

/* VM commands */

class CMiniVMCmdBase {
public:
    enum MV_FLAGS {
        MIN_VM_V6=1    // IPv6 addressing
    };
    uint8_t   m_cmd;
    uint8_t   m_flags;
    uint16_t  m_start_0;
    uint16_t  m_stop_1;
    uint16_t  m_add_pkt_len; /* request more length for mbuf packet the size */
};

class CMiniVMReplaceIP : public CMiniVMCmdBase {
public:
    ipaddr_t m_server_ip;
};

class CMiniVMReplaceIPWithPort : public CMiniVMReplaceIP {
public:
    uint16_t  m_start_port;
    uint16_t  m_stop_port;
    uint16_t  m_client_port;
    uint16_t  m_server_port;
};

/* this command replace IP in 2 diffrent location and port

c =  10.1.1.2
o =  10.1.1.2
m = audio 102000

==>

c =  xx.xx.xx.xx
o =  xx.xx.xx.xx
m = audio yyyy

*/

class CMiniVMReplaceIP_IP_Port : public CMiniVMCmdBase {
public:
    ipaddr_t m_ip;
    uint16_t  m_ip0_start;
    uint16_t  m_ip0_stop;

    uint16_t  m_ip1_start;
    uint16_t  m_ip1_stop;


    uint16_t  m_port;
    uint16_t  m_port_start;
    uint16_t  m_port_stop;
};

class CMiniVMReplaceIP_PORT_IP_IP_Port : public CMiniVMReplaceIP_IP_Port {
public:
    ipaddr_t m_ip_via;
    uint16_t m_port_via;

    uint16_t  m_ip_via_start;
    uint16_t  m_ip_via_stop;
};

class CMiniVMDynPyload : public CMiniVMCmdBase {
public:
    void * m_ptr;
    ipaddr_t m_ip;
} ;

/* VM with SIMD commands for RTSP we can add SIP/FTP  commands too */

typedef enum { VM_REPLACE_IP_OFFSET =0x12, /* fix ip at offset  */
               VM_REPLACE_IP_PORT_OFFSET, /*  fix ip at offset and client port*/
               VM_REPLACE_IP_PORT_RESPONSE_OFFSET, /* fix client port and server port  */
               VM_REPLACE_IP_IP_PORT,/* SMID command to replace IPV4 , IPV4, PORT in 3 diffrent location , see CMiniVMReplaceIP_IP_Port*/
               VM_REPLACE_IPVIA_IP_IP_PORT,/* SMID command to replace ip,port IPV4 , IPV4, PORT in 3 diffrent location , see CMiniVMReplaceIP_PORT_IP_IP_Port*/
               VM_DYN_PYLOAD,


               VM_EOP /* end of program */
               } mini_vm_op_code_t;


/* work only on x86 littel */
#define	MY_B(b)	(((int)b)&0xff)

class CFlowPktInfo ;

class CMiniVM {

public:
    CMiniVM(){
        m_new_pkt_size=0;
    }

    int mini_vm_run(CMiniVMCmdBase * cmds[]);
    int mini_vm_replace_ip(CMiniVMReplaceIP * cmd);
    int mini_vm_replace_port_ip(CMiniVMReplaceIPWithPort * cmd);
    int mini_vm_replace_ports(CMiniVMReplaceIPWithPort * cmd);
    int mini_vm_replace_ip_ip_ports(CMiniVMReplaceIP_IP_Port * cmd);
    int mini_vm_replace_ip_via_ip_ip_ports(CMiniVMReplaceIP_PORT_IP_IP_Port * cmd);
    int mini_vm_dyn_payload( CMiniVMDynPyload * cmd);


private:
    int append_with_end_of_line(uint16_t len){
        //assert(m_new_pkt_size<=0);
        if (m_new_pkt_size <0 ) {
            memset(m_pyload_mbuf_ptr+len+m_new_pkt_size,0xa,(-m_new_pkt_size));
        }

        return (0);
    }

public:
    int16_t        m_new_pkt_size; /* New packet size after transform by plugin */
    CFlowPktInfo * m_pkt_info;
    char *         m_pyload_mbuf_ptr; /* pointer to the pyload pointer of new allocated packet from mbuf */
};





class CGenNode;
class CFlowYamlInfo;
class CFlowGenListPerThread ;


/* callback */
void on_node_first(uint8_t plugin_id,CGenNode *     node,
                   CFlowYamlInfo *  template_info,
                   CTupleTemplateGeneratorSmart * tuple_gen,
                   CFlowGenListPerThread  * flow_gen
                   );

void on_node_last(uint8_t plugin_id,CGenNode *     node);

rte_mbuf_t * on_node_generate_mbuf(uint8_t plugin_id,CGenNode *     node,CFlowPktInfo * pkt_info);

class CPreviewMode ;

class CLatencyPktData {
 public:
    CLatencyPktData() {m_flow_seq = FLOW_STAT_PAYLOAD_INITIAL_FLOW_SEQ;}
    inline uint32_t get_seq_num() {return m_seq_num;}
    inline void inc_seq_num() {m_seq_num++;}
    inline uint32_t get_flow_seq() {return m_flow_seq;}
    void reset() {
        m_seq_num = UINT32_MAX - 1; // catch wrap around issues early
        m_flow_seq++;
        if (m_flow_seq == FLOW_STAT_PAYLOAD_INITIAL_FLOW_SEQ)
            m_flow_seq++;
    }

 private:
    uint32_t m_seq_num;  // seq num to put in packet for payload rules. Increased every packet.
    uint16_t m_flow_seq;  // Seq num of flow. Changed when we start new flow on this id.
};

/* represent the virtual interface
*/

/* counters per side */
class CVirtualIFPerSideStats {
public:
    CVirtualIFPerSideStats(){
        Clear();
        m_template.Clear();
    }

    uint64_t   m_tx_pkt;
    uint64_t   m_tx_rx_check_pkt;
    uint64_t   m_tx_bytes;
    uint64_t   m_tx_drop;
    uint64_t   m_tx_queue_full;
    uint64_t   m_tx_alloc_error;
    tx_per_flow_t m_tx_per_flow[MAX_FLOW_STATS + MAX_FLOW_STATS_PAYLOAD];
    CLatencyPktData m_lat_data[MAX_FLOW_STATS_PAYLOAD];
    CPerTxthreadTemplateInfo m_template;

public:

    void Add(CVirtualIFPerSideStats * obj){
        m_tx_pkt     += obj->m_tx_pkt;
        m_tx_rx_check_pkt +=obj->m_tx_rx_check_pkt;
        m_tx_bytes   += obj->m_tx_bytes;
        m_tx_drop    += obj->m_tx_drop;
        m_tx_alloc_error += obj->m_tx_alloc_error;
        m_tx_queue_full +=obj->m_tx_queue_full;
        m_template.Add(&obj->m_template);
    }

    void Clear(){
       m_tx_pkt=0;
       m_tx_rx_check_pkt=0;
       m_tx_bytes=0;
       m_tx_drop=0;
       m_tx_alloc_error=0;
       m_tx_queue_full=0;
       m_template.Clear();
       for (int i = 0; i < MAX_FLOW_STATS_PAYLOAD; i++) {
           m_lat_data[i].reset();
       }
       for (int i = 0; i < sizeof(m_tx_per_flow) / sizeof(m_tx_per_flow[0]); i++) {
           m_tx_per_flow[i].clear();
       }
    }

    inline void Dump(FILE *fd);
};


void CVirtualIFPerSideStats::Dump(FILE *fd){

    #define DP_B(f) if (f) printf(" %-40s : %lu \n",#f,f)
    DP_B(m_tx_pkt);
    DP_B(m_tx_rx_check_pkt);
    DP_B(m_tx_bytes);
    DP_B(m_tx_drop);
    DP_B(m_tx_alloc_error);
    DP_B(m_tx_queue_full);
    m_template.Dump(fd);
}

class CVirtualIF {
public:
    CVirtualIF () {
        m_preview_mode = NULL;
    }
    virtual ~CVirtualIF() {}
    virtual int open_file(std::string file_name)=0;
    virtual int close_file(void)=0;

    /* send one packet */
    virtual int send_node(CGenNode * node)=0;
    
    /* by default does the same */
    virtual int send_node_service_mode(CGenNode *node) {
        return send_node(node);
    }
    
    /* send one packet to a specific dir. flush all packets */
    virtual void send_one_pkt(pkt_dir_t dir, rte_mbuf_t *m) {}
    /* flush all pending packets into the stream */
    virtual int flush_tx_queue(void)=0;
    /* update the source and destination mac-addr of a given mbuf by global database */
    virtual int update_mac_addr_from_global_cfg(pkt_dir_t dir, uint8_t * p)=0;
    /* translate port_id to the correct dir on the core */
    virtual pkt_dir_t port_id_to_dir(uint8_t port_id) {
        return (CS_INVALID);
    }
    void set_review_mode(CPreviewMode *preview_mode) {
        m_preview_mode = preview_mode;
    }

protected:
    CPreviewMode            * m_preview_mode;

public:
    CVirtualIFPerSideStats    m_stats[CS_NUM];
};

/* global info */

#define CONST_NB_MBUF  16380

/* this is the first small part of the packet that we manipulate */
#define FIRST_PKT_SIZE 64
#define CONST_SMALL_MBUF_SIZE (FIRST_PKT_SIZE + sizeof(struct rte_mbuf) + RTE_PKTMBUF_HEADROOM)


#define _128_MBUF_SIZE 128
#define _256_MBUF_SIZE 256
#define _512_MBUF_SIZE 512
#define _1024_MBUF_SIZE 1024
#define _2048_MBUF_SIZE 2048
#define _4096_MBUF_SIZE 4096
#define MAX_PKT_ALIGN_BUF_9K       (9*1024+64)

#define MBUF_PKT_PREFIX ( sizeof(struct rte_mbuf) + RTE_PKTMBUF_HEADROOM )

#define CONST_128_MBUF_SIZE (128 + MBUF_PKT_PREFIX )
#define CONST_256_MBUF_SIZE (256 + MBUF_PKT_PREFIX )
#define CONST_512_MBUF_SIZE (512 + MBUF_PKT_PREFIX)
#define CONST_1024_MBUF_SIZE (1024 + MBUF_PKT_PREFIX)
#define CONST_2048_MBUF_SIZE (2048 + MBUF_PKT_PREFIX)
#define CONST_4096_MBUF_SIZE (4096 + MBUF_PKT_PREFIX)
#define CONST_9k_MBUF_SIZE   (MAX_PKT_ALIGN_BUF_9K + MBUF_PKT_PREFIX)


#define TW_BUCKETS       (CGlobalInfo::m_options.get_tw_buckets())
#define TW_BUCKETS_LEVEL1_DIV (16)
#define TW_LEVELS        (CGlobalInfo::m_options.get_tw_levels())
#define BUCKET_TIME_SEC (CGlobalInfo::m_options.get_tw_bucket_time_in_sec())
#define BUCKET_TIME_SEC_LEVEL1 (CGlobalInfo::m_options.get_tw_bucket_level1_time_in_sec())


class CPreviewMode {
public:
    enum {
        VLAN_MODE_NONE = 0,
        VLAN_MODE_NORMAL = 1,
        VLAN_MODE_LOAD_BALANCE = 2,
    };

    CPreviewMode(){
        clean();
    }
    void clean(){
        m_flags = 0;
        m_flags1=0;
        setCores(1);
        set_vlan_mode(VLAN_MODE_NONE);
        set_zmq_publish_enable(true);
    }

    void setFileWrite(bool enable){
        btSetMaskBit32(m_flags,0,0,enable?1:0);
    }

    bool getFileWrite(){
        return (btGetMaskBit32(m_flags,0,0) ? true:false);
    }

    void setDisableMbufCache(bool enable){
        btSetMaskBit32(m_flags,2,2,enable?1:0);
    }

    bool isMbufCacheDisabled(){
        return (btGetMaskBit32(m_flags,2,2) ? true:false);
    }

    void set_disable_hw_flow_stat(bool enable) {
        btSetMaskBit32(m_flags, 3, 3, enable ? 1 : 0);
    }

    bool get_disable_hw_flow_stat() {
        return (btGetMaskBit32(m_flags, 3, 3) ? true:false);
    }

    void set_disable_flow_control_setting(bool enable){
        btSetMaskBit32(m_flags,4,4,enable?1:0);
    }

    bool get_is_disable_flow_control_setting(){
        return (btGetMaskBit32(m_flags,4,4) ? true:false);
    }

          /* learn & verify mode  */
    void set_learn_and_verify_mode_enable(bool enable){
        btSetMaskBit32(m_flags,5,5,enable?1:0);
    }

    bool get_learn_and_verify_mode_enable(){
        return (btGetMaskBit32(m_flags,5,5) ? true:false);
    }

  /* IPv6 enable/disable */
    void set_ipv6_mode_enable(bool enable){
        btSetMaskBit32(m_flags,7,7,enable?1:0);
    }

    bool get_ipv6_mode_enable(){
        return (btGetMaskBit32(m_flags,7,7) ? true:false);
    }

    void setVMode(uint8_t vmode){
        btSetMaskBit32(m_flags,10,8,vmode);
    }
    uint8_t  getVMode(){
        return (btGetMaskBit32(m_flags,10,8) );
    }


    void setRealTime(bool enable){
        btSetMaskBit32(m_flags,11,11,enable?1:0);
    }

    bool getRealTime(){
        return (btGetMaskBit32(m_flags,11,11) ? true:false);
    }

    void setClientServerFlip(bool enable){
        btSetMaskBit32(m_flags,12,12,enable?1:0);
    }

    bool getClientServerFlip(){
        return (btGetMaskBit32(m_flags,12,12) ? true:false);
    }

    void setSingleCore(bool enable){
        btSetMaskBit32(m_flags,13,13,enable?1:0);
    }

    bool getSingleCore(){
        return (btGetMaskBit32(m_flags,13,13) ? true:false);
    }

    /* -p */
    void setClientServerFlowFlip(bool enable){
        btSetMaskBit32(m_flags,14,14,enable?1:0);
    }

    bool getClientServerFlowFlip(){
        return (btGetMaskBit32(m_flags,14,14) ? true:false);
    }



    void setNoCleanFlowClose(bool enable){
        btSetMaskBit32(m_flags,15,15,enable?1:0);
    }

    bool getNoCleanFlowClose(){
        return (btGetMaskBit32(m_flags,15,15) ? true:false);
    }

    void setCores(uint8_t cores){
        btSetMaskBit32(m_flags,24,16,cores);
    }

    uint8_t getCores(){
        return (btGetMaskBit32(m_flags,24,16) );
    }

    bool  getIsOneCore(){
        return (getCores()==1?true:false);
    }

    void setOnlyLatency(bool enable){
        btSetMaskBit32(m_flags,25,25,enable?1:0);
    }

    bool getOnlyLatency(){
        return (btGetMaskBit32(m_flags,25,25) ? true:false);
    }

    void set_pcap_mode_enable(bool enable){
        btSetMaskBit32(m_flags,26,26,enable?1:0);
    }

    bool get_pcap_mode_enable(){
        return (btGetMaskBit32(m_flags,26,26) ? true:false);
    }

    void set_zmq_publish_enable(bool enable){
        btSetMaskBit32(m_flags,27,27,enable?1:0);
    }

    bool get_zmq_publish_enable(){
        return (btGetMaskBit32(m_flags,27,27) ? true:false);
    }

    uint8_t get_vlan_mode() {
        return (btGetMaskBit32(m_flags, 29, 28));
    }

    void set_vlan_mode(uint8_t mode) {
        btSetMaskBit32(m_flags, 29, 28, mode);
    }

    void set_vlan_mode_verify(uint8_t mode);
    bool get_mac_ip_overide_enable(){
        return (btGetMaskBit32(m_flags,30,30) ? true:false);
    }

    void set_mac_ip_overide_enable(bool enable){
        btSetMaskBit32(m_flags,30,30,enable?1:0);
        if (enable) {
            set_slowpath_features_on(enable);
        }
    }

    bool get_is_rx_check_enable(){
        return (btGetMaskBit32(m_flags,31,31) ? true:false);
    }

    void set_rx_check_enable(bool enable){
        btSetMaskBit32(m_flags,31,31,enable?1:0);
    }

    bool get_is_slowpath_features_on() {
        return (btGetMaskBit32(m_flags1, 0, 0) ? true : false);
    }

    void set_slowpath_features_on(bool enable) {
        btSetMaskBit32(m_flags1, 0, 0, enable ? 1 : 0);
    }

    bool get_is_client_cfg_enable() {
        return (btGetMaskBit32(m_flags1, 1, 1) ? true : false);
    }

    void set_client_cfg_enable(bool enable){
        btSetMaskBit32(m_flags1, 1, 1, enable ? 1 : 0);
        if (enable) {
            set_slowpath_features_on(enable);
        }
    }

    // m_flags1 - bit 2 is free
    void set_no_keyboard(bool enable){
        btSetMaskBit32(m_flags1,5,5,enable?1:0);
    }

    bool get_no_keyboard(){
        return (btGetMaskBit32(m_flags1,5,5) ? true:false);
    }

    /* -e */
    void setClientServerFlowFlipAddr(bool enable){
        btSetMaskBit32(m_flags1,3,3,enable?1:0);
    }

    bool getClientServerFlowFlipAddr(){
        return (btGetMaskBit32(m_flags1,3,3) ? true:false);
    }

    /* split mac is enabled */
    void setWDDisable(bool wd_disable){
        btSetMaskBit32(m_flags1,6,6,wd_disable?1:0);
    }

    bool getWDDisable(){
        return (btGetMaskBit32(m_flags1,6,6) ? true:false);
    }

    void setCoreDumpEnable(bool enable) {
        btSetMaskBit32(m_flags1, 7, 7, (enable ? 1 : 0) );
    }

    bool getCoreDumpEnable(){
        return (btGetMaskBit32(m_flags1, 7, 7) ? true : false);
    }

    void setChecksumOffloadEnable(bool enable) {
        btSetMaskBit32(m_flags1, 8, 8, (enable ? 1 : 0) );
    }

    bool getChecksumOffloadEnable(){
        return (btGetMaskBit32(m_flags1, 8, 8) ? true : false);
    }

    void setCloseEnable(bool enable) {
        btSetMaskBit32(m_flags1, 9, 9, (enable ? 1 : 0) );
    }

    bool getCloseEnable(){
        return (btGetMaskBit32(m_flags1, 9, 9) ? true : false);
    }

    void set_rt_prio_mode(bool enable) {
        btSetMaskBit32(m_flags1, 10, 10, (enable ? 1 : 0) );
    }

    bool get_rt_prio_mode() {
        return (btGetMaskBit32(m_flags1, 10, 10) ? true : false);
    }

    void set_mlx5_so_mode(bool enable) {
        btSetMaskBit32(m_flags1, 11, 11, (enable ? 1 : 0) );
    }

    bool get_mlx5_so_mode() {
        return (btGetMaskBit32(m_flags1, 11, 11) ? true : false);
    }

    void set_mlx4_so_mode(bool enable) {
        btSetMaskBit32(m_flags1, 12, 12, (enable ? 1 : 0) );
    }

    bool get_mlx4_so_mode() {
        return (btGetMaskBit32(m_flags1, 12, 12) ? true : false);
    }

public:
    void Dump(FILE *fd);

private:
    uint32_t      m_flags;
    uint32_t      m_flags1;


};



typedef  struct mac_align_t_ {
        uint8_t dest[6];
        uint8_t src[6];
        uint8_t is_set;
        uint8_t pad[3];
} mac_align_t  ;

struct CMacAddrCfg {
public:
    CMacAddrCfg () {
        reset();
    }
    void reset () {
        memset(u.m_data, 0, sizeof(u.m_data));
        u.m_mac.dest[3] = 1;
        u.m_mac.is_set = 0;
    }
    union {
        mac_align_t m_mac;
        uint8_t     m_data[16];
    } u;
} __rte_cache_aligned; ;

class CPerPortIPCfg {
 public:
    uint32_t get_ip() {return m_ip;}
    uint32_t get_mask() {return m_mask;}
    uint32_t get_def_gw() {return m_def_gw;}
    uint32_t get_vlan() {return m_vlan;}
    void set_ip(uint32_t val) {m_ip = val;}
    void set_mask(uint32_t val) {m_mask = val;}
    void set_def_gw(uint32_t val) {m_def_gw = val;}
    void set_vlan(uint16_t val) {m_vlan = val;}

 private:
    uint32_t m_def_gw;
    uint32_t m_ip;
    uint32_t m_mask;
    uint16_t m_vlan;
};


class CParserOption {

public:
    /* Runtime flags */
    enum {
        RUN_FLAGS_RXCHECK_CONST_TS =1,
    };

    /**
     * different running modes for Trex
     */
    enum trex_run_mode_e {
        RUN_MODE_INVALID,
        RUN_MODE_BATCH,
        RUN_MODE_INTERACTIVE,
        RUN_MODE_DUMP_INFO,
    };

    enum trex_learn_mode_e {
    LEARN_MODE_DISABLED=0,
    LEARN_MODE_TCP_ACK=1,
    LEARN_MODE_IP_OPTION=2,
    LEARN_MODE_TCP_ACK_NO_SERVER_SEQ_RAND=3,
    LEARN_MODE_MAX=LEARN_MODE_TCP_ACK_NO_SERVER_SEQ_RAND,
    // This is used to check if 1 or 3 exist
    LEARN_MODE_TCP=100
    };

public:

    void reset() {
        preview.clean();
        m_tw_buckets = 1024;
        m_tw_levels = 3;
        m_active_flows = 0;
        m_factor = 1.0;
        m_mbuf_factor = 1.0;
        m_duration = 0.0;
        m_platform_factor = 1.0;
        m_vlan_port[0] = 100;
        m_vlan_port[1] = 100;
        memset(m_src_ipv6, 0, sizeof(m_src_ipv6));
        memset(m_dst_ipv6, 0, sizeof(m_dst_ipv6));
        memset(m_ip_cfg, 0, sizeof(m_ip_cfg));
        m_latency_rate = 0;
        m_latency_mask = 0xffffffff;
        m_latency_prev = 0;
        m_rx_check_sample = 0;
        m_rx_check_hops = 0;
        m_wait_before_traffic = 1;
        m_zmq_port = 4500;
        m_telnet_port = 4501;
        m_expected_portd = 4; /* should be at least the number of ports found in the system but could be less */
        m_io_mode = 1;
        m_run_flags = 0;
        m_l_pkt_mode = 0;
        m_learn_mode = 0;
        m_debug_pkt_proto = 0;
        m_arp_ref_per = 120; // in seconds
        m_rx_thread_enabled = false;
        m_run_mode = RUN_MODE_INVALID;
        cfg_file = "";
        client_cfg_file = "";
        platform_cfg_file = "";
        out_file = "";
        prefix = "";
        set_tw_bucket_time_in_usec(20.0);
        // we read every 0.5 second. We want to catch the counter when it approach the maximum (where it will stuck,
        // and we will start losing packets).
        x710_fdir_reset_threshold = 0xffffffff - 1000000000/8/64*40;
    }

    CParserOption(){
        reset();
    }

    CPreviewMode    preview;
    uint16_t        m_tw_buckets;
    uint16_t        m_tw_levels;
    uint32_t        m_active_flows;
    float           m_factor;
    float           m_mbuf_factor;
    float           m_duration;
    float           m_platform_factor;
    uint16_t		m_vlan_port[2]; /* vlan value */
    uint16_t		m_src_ipv6[6];  /* Most signficant 96-bits */
    uint16_t		m_dst_ipv6[6];  /* Most signficant 96-bits */
    CPerPortIPCfg   m_ip_cfg[TREX_MAX_PORTS];
    uint32_t        m_latency_rate; /* pkt/sec for each thread/port zero disable */
    uint32_t        m_latency_mask;
    uint32_t        m_latency_prev;
    uint32_t        m_wait_before_traffic;
    uint16_t        m_rx_check_sample; /* the sample rate of flows */
    uint16_t        m_rx_check_hops;
    uint16_t        m_zmq_port;
    uint16_t        m_telnet_port;
    uint16_t        m_expected_portd;
    uint16_t        m_io_mode; //0,1,2 0 disable, 1- normal , 2 - short
    uint16_t        m_run_flags;
    uint8_t         m_l_pkt_mode;
    uint8_t         m_learn_mode;
    uint16_t        m_debug_pkt_proto;
    uint16_t        m_arp_ref_per;
    bool            m_rx_thread_enabled;
    trex_run_mode_e    m_run_mode;
    std::string        cfg_file;
    std::string        client_cfg_file;
    std::string        platform_cfg_file;
    std::string        out_file;
    std::string        prefix;
    std::vector<std::string> dump_interfaces;
    CMacAddrCfg     m_mac_addr[TREX_MAX_PORTS];
    double          m_tw_bucket_time_sec;
    double          m_tw_bucket_time_sec_level1;
    uint32_t        x710_fdir_reset_threshold;

public:
    uint8_t *       get_src_mac_addr(int if_index){
        return (m_mac_addr[if_index].u.m_mac.src);
    }
    uint8_t *       get_dst_src_mac_addr(int if_index){
        return (m_mac_addr[if_index].u.m_mac.dest);
    }

    uint32_t get_expected_ports(){
        return (m_expected_portd);
    }

    /* how many dual ports supported */
    uint32_t get_expected_dual_ports(void){
        return (m_expected_portd>>1);
    }

    uint32_t get_number_of_dp_cores_needed() {
        return ( (m_expected_portd>>1)   * preview.getCores());
    }
    bool is_stateless(){
        if (m_run_mode == RUN_MODE_INVALID) {
            fprintf(stderr, "Internal bug: Calling is stateless before initializing run mode\n");
            fprintf(stderr, "Try to put -i or -f <file> option as first in the option list\n");
            exit(-1);
        }
        return (m_run_mode == RUN_MODE_INTERACTIVE ?true:false);
    }
    bool is_latency_enabled() {
        return ( (m_latency_rate == 0) ? false : true);
    }
    bool is_rx_enabled() {
        return m_rx_thread_enabled;
    }
    void set_rx_enabled() {
        m_rx_thread_enabled = true;
    }
    uint32_t get_x710_fdir_reset_threshold() {
        return (x710_fdir_reset_threshold);
    }
    void set_x710_fdir_reset_threshold(uint32_t val) {
        x710_fdir_reset_threshold = val;
    }

    inline double get_tw_bucket_time_in_sec(void){
        return (m_tw_bucket_time_sec);
    }

    inline double get_tw_bucket_level1_time_in_sec(void){
        return (m_tw_bucket_time_sec_level1);
    }

    void set_tw_bucket_time_in_usec(double usec){
        m_tw_bucket_time_sec= (usec/1000000.0);
        m_tw_bucket_time_sec_level1 = (m_tw_bucket_time_sec*(double)m_tw_buckets)/((double)TW_BUCKETS_LEVEL1_DIV);
    }

    void     set_tw_buckets(uint16_t buckets){
        m_tw_buckets=buckets;
    }

    inline uint16_t get_tw_buckets(void){
        return (m_tw_buckets);
    }

    void     set_tw_levels(uint16_t levels){
        m_tw_levels=levels;
    }

    inline uint16_t get_tw_levels(void){
        return (m_tw_levels);
    }



    inline void set_rxcheck_const_ts(){
        m_run_flags |= RUN_FLAGS_RXCHECK_CONST_TS;
    }
    inline void clear_rxcheck_const_ts(){
        m_run_flags &=~ RUN_FLAGS_RXCHECK_CONST_TS;
    }

    inline bool is_rxcheck_const_ts(){
        return (  (m_run_flags &RUN_FLAGS_RXCHECK_CONST_TS)?true:false );
    }

    inline uint8_t get_l_pkt_mode(){
        return (m_l_pkt_mode);
    }
    void dump(FILE *fd);
    bool is_valid_opt_val(int val, int min, int max, const std::string &opt_name);

    void verify();
};


class  CGlobalMemory {

public:
    CGlobalMemory(){
        CPlatformMemoryYamlInfo info;
        m_num_cores=1;
        m_pool_cache_size=32;
    }
    void set(const CPlatformMemoryYamlInfo &info,float mul);

    uint32_t get_2k_num_blocks(){
        return ( m_mbuf[MBUF_2048]);
    }

    uint32_t get_each_core_dp_flows(){
        return ( m_mbuf[MBUF_DP_FLOWS]/m_num_cores );
    }
    void set_number_of_dp_cors(uint32_t cores){
        m_num_cores = cores;
    }

    void set_pool_cache_size(uint32_t pool_cache){
        m_pool_cache_size=pool_cache;
    }

    void Dump(FILE *fd);

public:
    uint32_t         m_mbuf[MBUF_ELM_SIZE]; // relative to traffic norm to 2x10G ports
    uint32_t         m_num_cores;
    uint32_t         m_pool_cache_size;

};

typedef uint8_t socket_id_t;
typedef uint8_t port_id_t;
/* the real phsical thread id */
typedef uint8_t physical_thread_id_t;


typedef uint8_t virtual_thread_id_t;
/*

 virtual thread 0 (v0)- is always the master

for 2 dual ports ( 2x2 =4 ports) the virtual thread looks like that
-----------------
DEFAULT:
-----------------
  (0,1)       (2,3)
  dual-if0       dual-if-1
    v1        v2
    v3        v4
    v5        v6
    v7        v8

    rx is v9

  */

#define MAX_SOCKETS_SUPPORTED   (4)
#define MAX_THREADS_SUPPORTED   (120)


class CPlatformSocketInfoBase {


public:
    /* sockets API */

    /* is socket enabled */
    virtual bool is_sockets_enable(socket_id_t socket)=0;

    /* number of main active sockets. socket #0 is always used  */
    virtual socket_id_t max_num_active_sockets()=0;

    virtual ~CPlatformSocketInfoBase() {}

public:
    /* which socket to allocate memory to each port */
    virtual socket_id_t port_to_socket(port_id_t port)=0;

public:
    /* this is from CLI, number of thread per dual port */
    virtual void set_number_of_threads_per_ports(uint8_t num_threads)=0;
    virtual void set_rx_thread_is_enabled(bool enable)=0;
    virtual void set_number_of_dual_ports(uint8_t num_dual_ports)=0;


    virtual bool sanity_check()=0;

    /* return the core mask */
    virtual uint64_t get_cores_mask()=0;

    /* virtual thread_id is always from   1..number of threads  virtual  */
    virtual virtual_thread_id_t thread_phy_to_virt(physical_thread_id_t  phy_id)=0;

    /* return  the map betwean virtual to phy id */
    virtual physical_thread_id_t thread_virt_to_phy(virtual_thread_id_t virt_id)=0;


    virtual physical_thread_id_t get_master_phy_id() = 0;
    virtual bool thread_phy_is_rx(physical_thread_id_t  phy_id)=0;

    virtual void dump(FILE *fd)=0;

    bool thread_phy_is_master(physical_thread_id_t  phy_id) {
        return (get_master_phy_id() == phy_id);
    }

};

class CPlatformSocketInfoNoConfig : public CPlatformSocketInfoBase {

public:
    CPlatformSocketInfoNoConfig(){
        m_dual_if=0;
        m_threads_per_dual_if=0;
        m_rx_is_enabled=false;
    }

    /* is socket enabled */
    bool is_sockets_enable(socket_id_t socket);

    /* number of main active sockets. socket #0 is always used  */
    socket_id_t max_num_active_sockets();

public:
    /* which socket to allocate memory to each port */
    socket_id_t port_to_socket(port_id_t port);

public:
    /* this is from CLI, number of thread per dual port */
    void set_number_of_threads_per_ports(uint8_t num_threads);
    void set_rx_thread_is_enabled(bool enable);
    void set_number_of_dual_ports(uint8_t num_dual_ports);

    bool sanity_check();

    /* return the core mask */
    uint64_t get_cores_mask();

    /* virtual thread_id is always from   1..number of threads  virtual  */
    virtual_thread_id_t thread_phy_to_virt(physical_thread_id_t  phy_id);

    /* return  the map betwean virtual to phy id */
    physical_thread_id_t thread_virt_to_phy(virtual_thread_id_t virt_id);

    physical_thread_id_t get_master_phy_id();
    bool thread_phy_is_rx(physical_thread_id_t  phy_id);

    virtual void dump(FILE *fd);

private:
    uint32_t                 m_dual_if;
    uint32_t                 m_threads_per_dual_if;
    bool                     m_rx_is_enabled;
};



/* there is a configuration file */
class CPlatformSocketInfoConfig : public CPlatformSocketInfoBase {
public:
    bool Create(CPlatformCoresYamlInfo * platform);
    void Delete();

        /* is socket enabled */
    bool is_sockets_enable(socket_id_t socket);

    /* number of main active sockets. socket #0 is always used  */
    socket_id_t max_num_active_sockets();

public:
    /* which socket to allocate memory to each port */
    socket_id_t port_to_socket(port_id_t port);

public:
    /* this is from CLI, number of thread per dual port */
    void set_number_of_threads_per_ports(uint8_t num_threads);
    void set_rx_thread_is_enabled(bool enable);
    void set_number_of_dual_ports(uint8_t num_dual_ports);

    bool sanity_check();

    /* return the core mask */
    uint64_t get_cores_mask();

    /* virtual thread_id is always from   1..number of threads  virtual  */
    virtual_thread_id_t thread_phy_to_virt(physical_thread_id_t  phy_id);

    /* return  the map betwean virtual to phy id */
    physical_thread_id_t thread_virt_to_phy(virtual_thread_id_t virt_id);

    physical_thread_id_t get_master_phy_id();
    bool thread_phy_is_rx(physical_thread_id_t  phy_id);

public:
    virtual void dump(FILE *fd);
private:
    void reset();
    bool init();

private:
    bool                     m_sockets_enable[MAX_SOCKETS_SUPPORTED];
    uint32_t                 m_sockets_enabled;
    socket_id_t              m_socket_per_dual_if[(TREX_MAX_PORTS >> 1)];

    uint32_t                 m_max_threads_per_dual_if;

    uint32_t                 m_num_dual_if;
    uint32_t                 m_threads_per_dual_if;
    bool                     m_rx_is_enabled;
    uint8_t                  m_thread_virt_to_phy[MAX_THREADS_SUPPORTED];
    uint8_t                  m_thread_phy_to_virtual[MAX_THREADS_SUPPORTED];

    CPlatformCoresYamlInfo * m_platform;
};



class CPlatformSocketInfo {

public:
    bool Create(CPlatformCoresYamlInfo * platform);
    void Delete();

public:
    /* sockets API */

    /* is socket enabled */
    bool is_sockets_enable(socket_id_t socket);

    /* number of main active sockets. socket #0 is always used  */
    socket_id_t max_num_active_sockets();

public:
    /* which socket to allocate memory to each port */
    socket_id_t port_to_socket(port_id_t port);

public:
    /* this is from CLI, number of thread per dual port */
    void set_number_of_threads_per_ports(uint8_t num_threads);
    void set_rx_thread_is_enabled(bool enable);
    void set_number_of_dual_ports(uint8_t num_dual_ports);


    bool sanity_check();

    /* return the core mask */
    uint64_t get_cores_mask();

    /* virtual thread_id is always from   1..number of threads  virtual  */
    virtual_thread_id_t thread_phy_to_virt(physical_thread_id_t  phy_id);

    /* return  the map betwean virtual to phy id */
    physical_thread_id_t thread_virt_to_phy(virtual_thread_id_t virt_id);

    bool thread_phy_is_master(physical_thread_id_t  phy_id);
    physical_thread_id_t get_master_phy_id();
    bool thread_phy_is_rx(physical_thread_id_t  phy_id);

    void dump(FILE *fd);


private:
    CPlatformSocketInfoBase * m_obj;
    CPlatformCoresYamlInfo * m_platform;
};

class CRteMemPool {

public:
    inline rte_mbuf_t   * _rte_pktmbuf_alloc(rte_mempool_t * mp ){
        rte_mbuf_t   * m=rte_pktmbuf_alloc(mp);
        if ( likely(m>0) ) {
            return (m);
        }
        dump_in_case_of_error(stderr);
        assert(0);
    }

    inline rte_mbuf_t   * pktmbuf_alloc(uint16_t size){

        rte_mbuf_t        * m;
        if ( size < _128_MBUF_SIZE) {
            m = _rte_pktmbuf_alloc(m_mbuf_pool_128);
        }else if ( size < _256_MBUF_SIZE) {
            m = _rte_pktmbuf_alloc(m_mbuf_pool_256);
        }else if (size < _512_MBUF_SIZE) {
            m = _rte_pktmbuf_alloc(m_mbuf_pool_512);
        }else if (size < _1024_MBUF_SIZE) {
            m = _rte_pktmbuf_alloc(m_mbuf_pool_1024);
        }else if (size < _2048_MBUF_SIZE) {
            m = _rte_pktmbuf_alloc(m_mbuf_pool_2048);
        }else if (size < _4096_MBUF_SIZE) {
            m = _rte_pktmbuf_alloc(m_mbuf_pool_4096);
        }else{
            assert(size<MAX_PKT_ALIGN_BUF_9K);
            m = _rte_pktmbuf_alloc(m_mbuf_pool_9k);
        }
        return (m);
    }

    inline rte_mbuf_t   * pktmbuf_alloc_small(){
        return ( _rte_pktmbuf_alloc(m_small_mbuf_pool) );
    }


    void dump(FILE *fd);

    void dump_in_case_of_error(FILE *fd);

    void dump_as_json(Json::Value &json);

private:
    void add_to_json(Json::Value &json, std::string name, rte_mempool_t * pool);

public:
    rte_mempool_t *   m_small_mbuf_pool; /* pool for start packets */

    rte_mempool_t *   m_mbuf_pool_128;
    rte_mempool_t *   m_mbuf_pool_256;
    rte_mempool_t *   m_mbuf_pool_512;
    rte_mempool_t *   m_mbuf_pool_1024;
    rte_mempool_t *   m_mbuf_pool_2048;
    rte_mempool_t *   m_mbuf_pool_4096;
    rte_mempool_t *   m_mbuf_pool_9k;

    rte_mempool_t *   m_mbuf_global_nodes;
    uint32_t          m_pool_id;
};




class CGlobalInfo {
public:
    typedef enum {
        Q_MODE_NORMAL,
        Q_MODE_ONE_QUEUE, // One RX queue and one TX queue
        Q_MODE_RSS,
        Q_MODE_MANY_DROP_Q // For Mellanox
    } queues_mode;


    static void init_pools(uint32_t rx_buffers);
    /* for simulation */
    static void free_pools();

    static inline rte_mbuf_t   * pktmbuf_alloc_small(socket_id_t socket){
        return ( m_mem_pool[socket].pktmbuf_alloc_small() );
    }

    static inline rte_mbuf_t * pktmbuf_alloc_small_by_port(uint8_t port_id) {
        return ( m_mem_pool[m_socket.port_to_socket(port_id)].pktmbuf_alloc_small() );
    }

    /**
     * try to allocate small buffers too
     * _alloc allocate big buffers only
     *
     * @param socket
     * @param size
     *
     * @return
     */
    static inline rte_mbuf_t   * pktmbuf_alloc(socket_id_t socket,uint16_t size){
        if (size<FIRST_PKT_SIZE) {
            return ( pktmbuf_alloc_small(socket));
        }
        return (m_mem_pool[socket].pktmbuf_alloc(size));
    }

    static inline rte_mbuf_t * pktmbuf_alloc_by_port(uint8_t port_id, uint16_t size){
        socket_id_t socket = m_socket.port_to_socket(port_id);
        if (size<FIRST_PKT_SIZE) {
            return ( pktmbuf_alloc_small(socket));
        }
        return (m_mem_pool[socket].pktmbuf_alloc(size));
    }

    static inline bool is_learn_verify_mode(){
        return ( (m_options.m_learn_mode != CParserOption::LEARN_MODE_DISABLED) && m_options.preview.get_learn_and_verify_mode_enable());
    }

    static inline bool is_learn_mode(){
        return ( (m_options.m_learn_mode != CParserOption::LEARN_MODE_DISABLED));
    }

    static inline bool is_learn_mode(CParserOption::trex_learn_mode_e mode){
        if (mode == CParserOption::LEARN_MODE_TCP) {
            return ((m_options.m_learn_mode == CParserOption::LEARN_MODE_TCP_ACK_NO_SERVER_SEQ_RAND)
                    || (m_options.m_learn_mode == CParserOption::LEARN_MODE_TCP_ACK));
        } else
            return (m_options.m_learn_mode == mode);
    }

    static inline bool is_ipv6_enable(void){
        return ( m_options.preview.get_ipv6_mode_enable() );
    }

    static inline bool is_realtime(void){
        //return (false);
        return ( m_options.preview.getRealTime() );
    }

    static inline void set_realtime(bool enable){
        m_options.preview.setRealTime(enable);
    }

    static uint32_t get_node_pool_size(){
        return (m_nodes_pool_size);
    }

    static inline CGenNode * create_node(void){
        CGenNode * res;
        if ( unlikely (rte_mempool_get(m_mem_pool[0].m_mbuf_global_nodes, (void **)&res) <0) ){
            rte_exit(EXIT_FAILURE, "can't allocate m_mbuf_global_nodes  objects try to tune the configuration file \n");
            return (0);
        }
        return (res);
    }


    static inline void free_node(CGenNode *p){
        rte_mempool_put(m_mem_pool[0].m_mbuf_global_nodes, p);
    }


    static void dump_pool_as_json(Json::Value &json);
    static std::string dump_pool_as_json_str(void);
    static inline int get_queues_mode() {
        return m_q_mode;        
    }
    static inline void set_queues_mode(queues_mode mode) {
        m_q_mode = mode;
    }
    
public:
    static CRteMemPool       m_mem_pool[MAX_SOCKETS_SUPPORTED];
    static uint32_t              m_nodes_pool_size;
    static CParserOption         m_options;
    static CGlobalMemory         m_memory_cfg;
    static CPlatformSocketInfo   m_socket;
    static queues_mode           m_q_mode;
};

static inline int get_is_stateless(){
    return (CGlobalInfo::m_options.is_stateless() );
}

static inline int get_is_rx_check_mode(){
    return (CGlobalInfo::m_options.preview.get_is_rx_check_enable() ?1:0);
}

static inline bool get_is_rx_filter_enable(){
    uint32_t latency_rate=CGlobalInfo::m_options.m_latency_rate;
    return ( ( get_is_rx_check_mode() || CGlobalInfo::is_learn_mode() || latency_rate != 0
               || get_is_stateless()) &&  ((CGlobalInfo::get_queues_mode() != CGlobalInfo::Q_MODE_RSS)
                                           && (CGlobalInfo::get_queues_mode() != CGlobalInfo::Q_MODE_ONE_QUEUE))
             ?true:false );
}
static inline uint16_t get_rx_check_hops() {
    return (CGlobalInfo::m_options.m_rx_check_hops);
}

#define MAX_PYLOAD_PKT_CHANGE 4
/* info for the dynamic plugin */


struct CFlowYamlDpPkt {
    CFlowYamlDpPkt(){
        m_pkt_id=0xff;
        m_pyld_offset=0;
        m_type=0;
        m_len=0;
        m_pkt_mask=0xffffffff;
    }

    uint8_t   m_pkt_id; /* number of packet */
    uint8_t   m_pyld_offset; /* 0-10 */
    uint8_t   m_type;  /* 0 -random , 1 - inc */
    uint8_t   m_len;   /* number of 32bit data 1,2,3,*/

    uint32_t  m_pkt_mask; /* 0xffffffff take all the packet */
public:
    void Dump(FILE *fd);
};

struct CFlowYamlDynamicPyloadPlugin {

    CFlowYamlDynamicPyloadPlugin(){
        m_num=0;
        int i;
        for (i=0;i<MAX_PYLOAD_PKT_CHANGE;i++ ) {
            m_pkt_ids[i]=0xff;
        }
    }

    uint8_t         m_num;/* number of pkts_id*/
    uint8_t         m_pkt_ids[MAX_PYLOAD_PKT_CHANGE]; /* -1 for not valid - fast mask */
    CFlowYamlDpPkt  m_program[MAX_PYLOAD_PKT_CHANGE];
public:
    void Add(CFlowYamlDpPkt & fd);
    void Dump(FILE *fd);
};

struct CVlanYamlInfo {
    CVlanYamlInfo(){
        m_enable=0;
        m_vlan_per_port[0]=100;
        m_vlan_per_port[1]=200;
    }
    bool            m_enable;
    uint16_t        m_vlan_per_port[2];

public:
    void Dump(FILE *fd);

};



struct CFlowYamlInfo {
    CFlowYamlInfo(){
        m_dpPkt=0;
        m_server_addr=0;
        m_client_pool_idx = 0;
        m_server_pool_idx = 0;
        m_cap_mode=false;
        m_ipg_sec=0.01; 
        m_rtt_sec=0.01; 
    }

    std::string     m_name;
    std::string     m_client_pool_name;
    std::string     m_server_pool_name;
    double          m_k_cps;    //k CPS
    double          m_restart_time; /* restart time of this template */
    dsec_t          m_ipg_sec;   // ipg in sec
    dsec_t          m_rtt_sec;   // rtt in sec
    uint32_t        m_w;
    uint32_t        m_wlength;
    uint32_t        m_limit;
    uint32_t        m_flowcnt;
    pool_index_t    m_client_pool_idx;
    pool_index_t    m_server_pool_idx;
    uint32_t        m_server_addr;
    uint8_t         m_plugin_id; /* 0 - default , 1 - RTSP160 , 2- RTSP250 */
    bool            m_one_app_server;
    bool            m_one_app_server_was_set;
    bool            m_cap_mode;
    bool            m_cap_mode_was_set;
    bool            m_wlength_set;
    bool            m_limit_was_set;
    CFlowYamlDynamicPyloadPlugin * m_dpPkt; /* plugin */

public:
    void Dump(FILE *fd);
};




#define _1MB_DOUBLE ((double)(1024.0*1024.0))
#define _1GB_DOUBLE ((double)(1024.0*1024.0*1024.0))

#define _1Mb_DOUBLE ((double)(1000.0*1000.0))


#define _1MB ((1024*1024)ULL)
#define _1GB 1000000000ULL
#define _500GB (_1GB*500)



#define DP(f) if (f) printf(" %-40s: %llu \n",#f,(unsigned long long)f)
#define DP_name(n,f) if (f) printf(" %-40s: %llu \n",n,(unsigned long long)f)

#define DP_S(f,f_s) if (f) printf(" %-40s: %s \n",#f,f_s.c_str())

class CFlowPktInfo;



typedef enum {
    KBYE_1024,
    KBYE_1000
} human_kbyte_t;

std::string double_to_human_str(double num,
                                std::string units,
                                human_kbyte_t etype);



class CCapFileFlowInfo ;

#define SYNC_TIME_OUT ( 1.0/1000)

//#define SYNC_TIME_OUT ( 2000.0/1000)

/* this is a simple struct, do not add constructor and destractor here!
   we are optimizing the allocation dealocation !!!
 */

struct CGenNodeBase  {
public:

    enum {
        FLOW_PKT                =0,
        FLOW_FIF                =1,
        FLOW_DEFER_PORT_RELEASE =2,
        FLOW_PKT_NAT            =3,
        FLOW_SYNC               =4,     /* called evey 1 msec */
        STATELESS_PKT           =5,
        EXIT_SCHED              =6,
        COMMAND                 =7,
        EXIT_PORT_SCHED         =8,
        PCAP_PKT                =9,
        GRAT_ARP                =10,
        TW_SYNC                 =11,
        TW_SYNC1                =12,

    };

    /* flags MASKS*/
    enum {
        NODE_FLAGS_DIR                  =1,
        NODE_FLAGS_MBUF_CACHE           =2,
        NODE_FLAGS_SAMPLE_RX_CHECK      =4,

        NODE_FLAGS_LEARN_MODE           =8,   /* bits 3,4 MASK 0x18 wait for second direction packet */
        NODE_FLAGS_LEARN_MSG_PROCESSED  =0x10,   /* got NAT msg */

        NODE_FLAGS_LATENCY              =0x20,   /* got NAT msg */
        NODE_FLAGS_INIT_START_FROM_SERVER_SIDE = 0x40,
        NODE_FLAGS_ALL_FLOW_SAME_PORT_SIDE     = 0x80,
        NODE_FLAGS_INIT_START_FROM_SERVER_SIDE_SERVER_ADDR = 0x100, /* init packet start from server side with server addr */
        NODE_FLAGS_SLOW_PATH = 0x200 /* used by the nodes to differ between fast path nodes and slow path nodes */
    };


public:
    /*********************************************/
    /* C1  must */
    uint8_t             m_type;
    uint8_t             m_thread_id; /* zero base */
    uint8_t             m_socket_id;
    uint8_t             m_pad2;

    uint16_t            m_src_port;
    uint16_t            m_flags; /* BIT 0 - DIR ,
                                    BIT 1 - mbug_cache
                                    BIT 2 - SAMPLE DUPLICATE */

    double              m_time;    /* can't change this header - size 16 bytes*/

public:
    bool operator <(const CGenNodeBase * rsh ) const {
        return (m_time<rsh->m_time);
    }
    bool operator ==(const CGenNodeBase * rsh ) const {
        return (m_time==rsh->m_time);
    }
    bool operator >(const CGenNodeBase * rsh ) const {
        return (m_time>rsh->m_time);
    }

public:
    void set_socket_id(socket_id_t socket){
        m_socket_id=socket;
    }

    socket_id_t get_socket_id(){
        return ( m_socket_id );
    }

    inline void set_slow_path(bool enable) {
        if (enable) {
            m_flags |= NODE_FLAGS_SLOW_PATH;
        } else {
            m_flags &= ~NODE_FLAGS_SLOW_PATH;
        }
    }

    inline bool get_is_slow_path() const {
        return ( (m_flags & NODE_FLAGS_SLOW_PATH) ? true : false);
    }

    void free_base();

    bool is_flow_node(){
        if ((m_type == FLOW_PKT) || (m_type == FLOW_PKT_NAT)) {
            return (true);
        }else{
            return (false);
        }
    }
};


struct CGenNode : public CGenNodeBase  {

public:

    uint32_t        m_src_ip;  /* client ip */
    uint32_t        m_dest_ip; /* server ip */

    uint64_t            m_flow_id; /* id that goes up for each flow */

    /*c2*/
    CFlowPktInfo *      m_pkt_info;

    CCapFileFlowInfo *  m_flow_info;
    CFlowYamlInfo    *  m_template_info;

    void *              m_plugin_info;

/* cache line -2 */
    CHTimerObj           m_tmr;
    uint64_t             m_tmr_pad[4];

/* cache line -3 */


    CTupleGeneratorSmart *m_tuple_gen;
    // cache line 1 - 64bytes waste of space !
    uint32_t            m_nat_external_ipv4; // NAT client IP
    uint32_t            m_nat_tcp_seq_diff_client; // support for firewalls that do TCP seq num randomization
    uint32_t            m_nat_tcp_seq_diff_server; // And some do seq num randomization for server->client also
    uint16_t            m_nat_external_port; // NAT client port
    uint16_t            m_nat_pad[1];
    const ClientCfgBase *m_client_cfg;
    uint32_t            m_src_idx;
    uint32_t            m_dest_idx;
    uint32_t            m_end_of_cache_line[6];


public:
    void free_gen_node();
public:
    void Dump(FILE *fd);



    static void DumpHeader(FILE *fd);
    inline bool is_last_in_flow();
    inline uint16_t get_template_id();
    inline bool is_repeat_flow();
    inline bool can_cache_mbuf(void);

    /* is it possible to cache MBUF */
    inline uint32_t update_next_pkt_in_flow_tw(void);

    /* update the node time for accurate scheduler */
    inline void update_next_pkt_in_flow_as(void);

    inline uint32_t update_next_pkt_in_flow_both(void);


    inline void reset_pkt_in_flow(void);
    inline uint8_t get_plugin_id(void){
        return ( m_template_info->m_plugin_id);
    }

    inline bool is_responder_pkt();
    inline bool is_initiator_pkt();


    inline bool is_eligible_from_server_side(){
        return ( ( (m_src_ip&1) == 1)?true:false);
    }


    inline void set_initiator_start_from_server_side_with_server_addr(bool enable){
           if (enable) {
            m_flags |= NODE_FLAGS_INIT_START_FROM_SERVER_SIDE_SERVER_ADDR;
           }else{
            m_flags &=~ NODE_FLAGS_INIT_START_FROM_SERVER_SIDE_SERVER_ADDR;
           }
    }

    inline bool get_is_initiator_start_from_server_with_server_addr(){
            return (  (m_flags &NODE_FLAGS_INIT_START_FROM_SERVER_SIDE_SERVER_ADDR)?true:false );
    }

    inline void set_initiator_start_from_server(bool enable){
       if (enable) {
        m_flags |= NODE_FLAGS_INIT_START_FROM_SERVER_SIDE;
       }else{
        m_flags &=~ NODE_FLAGS_INIT_START_FROM_SERVER_SIDE;
       }
    }
    inline bool get_is_initiator_start_from_server(){
        return (  (m_flags &NODE_FLAGS_INIT_START_FROM_SERVER_SIDE)?true:false );
    }

    inline void set_all_flow_from_same_dir(bool enable){
        if (enable) {
         m_flags |= NODE_FLAGS_ALL_FLOW_SAME_PORT_SIDE;
        }else{
         m_flags &=~ NODE_FLAGS_ALL_FLOW_SAME_PORT_SIDE;
        }
    }

    inline bool get_is_all_flow_from_same_dir(void){
        return (  (m_flags &NODE_FLAGS_ALL_FLOW_SAME_PORT_SIDE)?true:false );
    }

  

    /* direction for ip addr */
    inline  pkt_dir_t cur_pkt_ip_addr_dir();
    /* direction for TCP/UDP port */
    inline  pkt_dir_t cur_pkt_port_addr_dir();
    /* from which interface dir to get out */
    inline  pkt_dir_t cur_interface_dir();


    inline void set_mbuf_cache_dir(pkt_dir_t  dir){
        if (dir) {
            m_flags |=NODE_FLAGS_DIR;
        }else{
            m_flags &=~NODE_FLAGS_DIR;
        }
    }

    inline pkt_dir_t get_mbuf_cache_dir(){
        return ((pkt_dir_t)( m_flags &1));
    }

    inline void set_cache_mbuf(rte_mbuf_t * m){
        m_plugin_info=(void *)m;
        m_flags |= NODE_FLAGS_MBUF_CACHE;
    }

    inline rte_mbuf_t * get_cache_mbuf(){
        if ( m_flags &NODE_FLAGS_MBUF_CACHE ) {
            return ((rte_mbuf_t *)m_plugin_info);
        }else{
            return ((rte_mbuf_t *)0);
        }
    }

public:

    inline void set_rx_check(){
        m_flags |= NODE_FLAGS_SAMPLE_RX_CHECK;
    }

    inline bool is_rx_check_enabled(){
        return ((m_flags & NODE_FLAGS_SAMPLE_RX_CHECK)?true:false);
    }

public:

    inline void set_nat_first_state(){
        btSetMaskBit16(m_flags,4,3,1);
        m_type=FLOW_PKT_NAT;
    }

    inline bool is_nat_first_state(){
        return (btGetMaskBit16(m_flags,4,3)==1?true:false) ;
    }

    inline void set_nat_wait_state(){
        btSetMaskBit16(m_flags,4,3,2);
    }


    inline bool is_nat_wait_state(){
        return (btGetMaskBit16(m_flags,4,3)==2?true:false) ;
    }

    // We saw first TCP SYN. Waiting for SYN+ACK
    inline void set_nat_wait_ack_state() {
        btSetMaskBit16(m_flags, 4, 3, 3);
    }

    inline bool is_nat_wait_ack_state(){
        return (btGetMaskBit16(m_flags,4,3) == 3) ? true : false;
    }

    inline void set_nat_learn_state(){
        m_type=FLOW_PKT; /* normal operation .. repeat might work too */
    }

public:
    inline uint32_t get_short_fid(void){
        return (((uint32_t)m_flow_id) & NAT_FLOW_ID_MASK_TCP_ACK);
    }

    inline uint8_t get_thread_id(void){
        return (m_thread_id);
    }

    inline void set_nat_tcp_seq_diff_client(uint32_t diff) {
        m_nat_tcp_seq_diff_client = diff;
    }

    inline uint32_t get_nat_tcp_seq_diff_client() {
        return m_nat_tcp_seq_diff_client;
    }

    inline void set_nat_tcp_seq_diff_server(uint32_t diff) {
        m_nat_tcp_seq_diff_server = diff;
    }

    inline uint32_t get_nat_tcp_seq_diff_server() {
        return m_nat_tcp_seq_diff_server;
    }

    inline void set_nat_ipv4_addr(uint32_t ip){
        m_nat_external_ipv4 =ip;
    }

    inline void set_nat_ipv4_port(uint16_t port){
        m_nat_external_port = port;
    }

    inline uint32_t  get_nat_ipv4_addr(){
        return ( m_nat_external_ipv4 );
    }

    inline uint16_t get_nat_ipv4_port(){
        return ( m_nat_external_port );
    }

    bool is_external_is_eq_to_internal_ip(){
        /* this API is used to check TRex itself */
        if ( (get_nat_ipv4_addr() == m_src_ip ) &&
             (get_nat_ipv4_port()==m_src_port)) {
            return (true);
        }else{
            return (false);
        }
    }


public:
    inline void replace_tuple(void);

} __rte_cache_aligned;





#if __x86_64__
/* size of 64 bytes */
    #define DEFER_CLIENTS_NUM (16)
#else
    #define DEFER_CLIENTS_NUM (16)
#endif

/* this class must be in the same size of CGenNode */
struct CGenNodeDeferPort  {
    /* this header must be the same as CGenNode */
    uint8_t             m_type;
    uint8_t             m_pad3;
    uint16_t            m_pad2;
    uint32_t            m_cnt;
    double              m_time;

    uint32_t            m_clients[DEFER_CLIENTS_NUM];
    uint16_t            m_ports[DEFER_CLIENTS_NUM];
    pool_index_t        m_pool_idx[DEFER_CLIENTS_NUM];
    uint64_t            m_pad4[6];

public:
    void init(void){
        m_type=CGenNode::FLOW_DEFER_PORT_RELEASE;
        m_cnt=0;
    }

    /* return true if object is full */
    bool add_client(pool_index_t pool_idx, uint32_t client,
                   uint16_t port){
        m_clients[m_cnt]=client;
        m_ports[m_cnt]=port;
        m_pool_idx[m_cnt] = pool_idx;
        m_cnt++;
        if ( m_cnt == DEFER_CLIENTS_NUM ) {
            return (true);
        }
        return (false);
    }

} __rte_cache_aligned ;

/* run time verification of objects size and offsets
   need to clean this up and derive this objects from base object but require too much refactoring right now
   hhaim
*/

#define COMPARE_NODE_OBJECT(NODE_NAME)     if ( sizeof(NODE_NAME) != sizeof(CGenNode)  ) { \
                                            printf("ERROR sizeof(%s) %lu != sizeof(CGenNode) %lu must be the same size \n",#NODE_NAME,sizeof(NODE_NAME),sizeof(CGenNode)); \
                                            assert(0); \
                                            }\
                                            if ( (int)offsetof(struct NODE_NAME,m_type)!=offsetof(struct CGenNodeBase,m_type) ){\
                                            printf("ERROR offsetof(struct %s,m_type)!=offsetof(struct CGenNodeBase,m_type) \n",#NODE_NAME);\
                                            assert(0);\
                                            }\
                                            if ( (int)offsetof(struct CGenNodeDeferPort,m_time)!=offsetof(struct CGenNodeBase,m_time) ){\
                                            printf("ERROR offsetof(struct %s,m_time)!=offsetof(struct CGenNodeBase,m_time) \n",#NODE_NAME);\
                                            assert(0);\
                                            }

#define COMPARE_NODE_OBJECT_SIZE(NODE_NAME)     if ( sizeof(NODE_NAME) != sizeof(CGenNode)  ) { \
                                            printf("ERROR sizeof(%s) %lu != sizeof(CGenNode) %lu must be the same size \n",#NODE_NAME,sizeof(NODE_NAME),sizeof(CGenNode)); \
                                            assert(0); \
                                            }



inline int check_objects_sizes(void){
    COMPARE_NODE_OBJECT(CGenNodeDeferPort);
    return (0);
}


struct CGenNodeCompare
{
   bool operator() (const CGenNode * lhs, const CGenNode * rhs)
   {
       return lhs->m_time > rhs->m_time;
   }
};


class CCapPktRaw;
class CFileWriterBase;



class CFlowGenStats {
public:
    CFlowGenStats(){
        clear();
    }
    // stats
    uint64_t                         m_total_bytes;
    uint64_t                         m_total_pkt;
    uint64_t                         m_total_open_flows;
    uint64_t                         m_total_close_flows;
    uint64_t                         m_nat_lookup_no_flow_id;
    uint64_t                         m_nat_lookup_remove_flow_id;
    uint64_t                         m_nat_lookup_wait_ack_state;
    uint64_t                         m_nat_lookup_add_flow_id;
    uint64_t                         m_nat_flow_timeout;
    uint64_t                         m_nat_flow_timeout_wait_ack;
    uint64_t                         m_nat_flow_learn_error;

public:
    void clear();
    void dump(FILE *fd);
};



typedef std::priority_queue<CGenNode *, std::vector<CGenNode *>,CGenNodeCompare> pqueue_t;



class CErfIF : public CVirtualIF {
    friend class basic_client_cfg_test1_Test;
public:
    CErfIF(){
        m_writer=NULL;
        m_raw=NULL;
    }
public:

    virtual int open_file(std::string file_name);
    virtual int write_pkt(CCapPktRaw *pkt_raw);
    virtual int close_file(void);

    virtual int update_mac_addr_from_global_cfg(pkt_dir_t       dir, uint8_t * p){
        return (0);
    }



    /**
     * send one packet
     *
     * @param node
     *
     * @return
     */
    virtual int send_node(CGenNode * node);



    /**
     * flush all pending packets into the stream
     *
     * @return
     */
    virtual int flush_tx_queue(void);


protected:
    void add_vlan(uint16_t vlan_id);
    void apply_client_config(const ClientCfgBase *cfg, pkt_dir_t dir);
    virtual void fill_raw_packet(rte_mbuf_t * m,CGenNode * node,pkt_dir_t dir);

    CFileWriterBase         * m_writer;
    CCapPktRaw              * m_raw;
};

/* for stateless we have a small changes in case we send the packets for optimization */
class CErfIFStl : public CErfIF {

public:

    virtual int send_node(CGenNode * node);

    virtual int update_mac_addr_from_global_cfg(pkt_dir_t       dir, uint8_t * p);

    virtual pkt_dir_t port_id_to_dir(uint8_t port_id);

private:
    int send_sl_node(CGenNodeStateless * node_sl);
    int send_pcap_node(CGenNodePCAP * pcap_node);

};

/**
 * same as regular STL but no I/O (dry run)
 *
 * @author imarom (07-Jan-16)
 */
class CErfIFStlNull : public CErfIFStl {
public:

    virtual int open_file(std::string file_name) {
        return (0);
    }

    virtual int write_pkt(CCapPktRaw *pkt_raw) {
        return (0);
    }

    virtual int close_file(void) {
        return (0);
    }

    virtual void fill_raw_packet(rte_mbuf_t * m,CGenNode * node,pkt_dir_t dir) {

    }



    virtual int flush_tx_queue(void){
        return (0);

    }

};


static inline int fill_pkt(CCapPktRaw  * raw,rte_mbuf_t * m){
    raw->pkt_len = m->pkt_len;
    char *p=raw->raw;

    rte_mbuf_t *m_next;

    while (m != NULL) {
        m_next = m->next;
        rte_memcpy(p,m->buf_addr,m->data_len);
        p+=m->data_len;
        m = m_next;
    }
    return (0);
}


class CNullIF : public CVirtualIF {

public:
    CNullIF(){
    }

public:

    virtual int open_file(std::string file_name){
        return (0);
    }

    virtual int write_pkt(CCapPktRaw *pkt_raw){
        return (0);
    }

    virtual int close_file(void){
        return (0);
    }

    virtual int update_mac_addr_from_global_cfg(pkt_dir_t       dir, uint8_t * p){
        return (0);
    }


    virtual int send_node(CGenNode * node);

    virtual int flush_tx_queue(void){
        return (0);

    }
};





class CNodeGenerator {
public:

    friend CFlowGenListPerThread;

     typedef enum { scINIT = 0x17,
                    scWORK ,
                    scWAIT , 
                    scSTRECH,
                    scTERMINATE 
                   } sch_state_t;

   typedef enum { smSTATELESS = 0x17,
                  smSTATEFUL  ,
                 } sch_mode_t;

   #define BURST_OFFSET_DTIME    (100.0/1000000) 
   #define EAT_WINDOW_DTIME      (15.0/1000000) 
   #define WAIT_WINDOW_SIZE      (-1.0/1000000)
   
    bool  Create(CFlowGenListPerThread  *  parent);
    void  Delete();

    void  set_vif(CVirtualIF * v_if);

    CFlowGenListPerThread  *  Parent(){
        return (m_parent);
    }

public:
    void  add_node(CGenNode * mynode);
    void  remove_all(CFlowGenListPerThread * thread);
    void  remove_all_stateless(CFlowGenListPerThread * thread);

    int   open_file(std::string file_name,
                    CPreviewMode * preview);
    int   close_file(CFlowGenListPerThread * thread);
    int   flush_file(dsec_t max_time,
                     dsec_t d_time,
                     bool on_terminate,
                     CFlowGenListPerThread * thread,
                     double & old_offset);
    int   defer_handler(CFlowGenListPerThread * thread);

    void schedule_node(CGenNode * node,double delay){
        node->m_time = (now_sec()+ delay);
        add_node(node);
    }

    /**
     * set packet limit for the generator
     */
    void set_packet_limit(uint64_t limit) {
        m_limit = limit;
    }

    void DumpHist(FILE *fd){
        fprintf(fd,"\n");
        fprintf(fd,"\n");
        fprintf(fd,"normal\n");
        fprintf(fd,"-------------\n");
        m_realtime_his.Dump(fd);
    }

    void dump_json(std::string & json);



private:

    #ifdef _DEBUG
      #define UPDATE_STATS(a) update_stats(a)
    #else 
      #define UPDATE_STATS(a) 
    #endif  
    
    int   update_stats(CGenNode * node);

    inline int   flush_one_node_to_file(CGenNode * node){
        return (m_v_if->send_node(node));
    }
    int   update_stl_stats(CGenNodeStateless *node_sl);
    bool  has_limit_reached();

    FORCE_NO_INLINE bool handle_slow_messages(uint8_t type,
                                              CGenNode * node,
                                              CFlowGenListPerThread * thread,
                                              bool on_terminate);

private:
        void add_exit_node(CFlowGenListPerThread * thread,
                                          dsec_t max_time);

        inline bool handle_stl_node(CGenNode * node,
                                    CFlowGenListPerThread * thread);


        FORCE_INLINE bool do_work_stl(CGenNode * node,
                                      CFlowGenListPerThread * thread,
                                      bool on_terminate);
        
        template<bool ON_TERMINATE>
        FORCE_INLINE bool do_work_both(CGenNode * node,
                                      CFlowGenListPerThread * thread,
                                      dsec_t d_time);
        
        template<int SCH_MODE,bool ON_TERMINATE>
        FORCE_INLINE bool do_work(CGenNode * node,
                                  CFlowGenListPerThread * thread,
                                  dsec_t d_time);
        
        FORCE_INLINE void do_sleep(dsec_t & cur_time,
                                   CFlowGenListPerThread * thread,
                                   dsec_t ntime);
        
        
        FORCE_INLINE int teardown(CFlowGenListPerThread * thread,
                                   bool on_terminate,
                                   double &old_offset,
                                   double offset);
        
        template<int SCH_MODE,bool ON_TERIMATE>
        int flush_file_realtime(dsec_t max_time, 
                                dsec_t d_time,
                                CFlowGenListPerThread * thread,
                                double &old_offset);
        
        int flush_file_sim(dsec_t max_time, 
                            dsec_t d_time,
                            bool always,
                            CFlowGenListPerThread * thread,
                            double &old_offset);

        FORCE_NO_INLINE void handle_slow_operations(sch_state_t &state,
                                                    CGenNode * &node,
                                                    dsec_t &cur_time,
                                                    dsec_t &n_time,
                                                    dsec_t &offset,
                                                    CFlowGenListPerThread *thread);

        void handle_time_strech(CGenNode * &node,
                                dsec_t &cur_time,
                                dsec_t &n_time,
                                dsec_t &offset,
                                CFlowGenListPerThread *thread);


private:        
    void handle_command(CGenNode *node, CFlowGenListPerThread *thread, bool &exit_scheduler);
    void handle_flow_pkt(CGenNode *node, CFlowGenListPerThread *thread);
    void handle_flow_sync(CGenNode *node, CFlowGenListPerThread *thread, bool &exit_scheduler);
    void handle_pcap_pkt(CGenNode *node, CFlowGenListPerThread *thread);
    void handle_maintenance(CFlowGenListPerThread *thread);
    void handle_batch_tw_level1(CGenNode *node, CFlowGenListPerThread *thread,bool &exit_scheduler,bool on_terminate);


public:
    pqueue_t                  m_p_queue;
    socket_id_t               m_socket_id;
    CVirtualIF *              m_v_if;
    CFlowGenListPerThread  *  m_parent;
    CPreviewMode              m_preview_mode;
    uint64_t                  m_cnt;
    uint64_t                  m_non_active;
    uint64_t                  m_limit;
    CTimeHistogram            m_realtime_his;
    dsec_t                    m_scheduler_offset;

    dsec_t                    m_last_sync_time_sec;
    dsec_t                    m_tw_level1_next_sec;
};


class CPolicer {

public:

    CPolicer(){
        ClearMeter();
    }

    void ClearMeter(){
        m_cir=0.0;
        m_bucket_size=1.0;
        m_level=0.0;
        m_last_time=0.0;
    }

    bool update(double dsize,dsec_t now_sec);

    void set_cir(double cir){
        BP_ASSERT(cir>=0.0);
        m_cir=cir;
    }
    void set_level(double level){
        m_level =level;
    }

    void set_bucket_size(double bucket){
        m_bucket_size =bucket;
    }

private:

    double                      m_cir;

    double                      m_bucket_size;

    double                      m_level;

    double                      m_last_time;
};

class CFlowKey {
public:
    uint32_t                m_ipaddr1;
    uint32_t                m_ipaddr2;

    uint16_t                m_port1;
    uint16_t                m_port2;

    uint8_t                 m_ip_proto; /* TCP/UDP 6/17*/
    uint8_t                 m_l2_proto; /*IPV4/IPV6*/
    uint16_t                m_vrfid;

public:
    inline bool operator <(const CFlowKey& rhs) const;
    inline bool operator >(const CFlowKey& rhs) const;
    inline bool operator ==(const CFlowKey& rhs) const;
public:
    void Dump(FILE *fd);
    void Clean();
};


inline  bool CFlowKey::operator <(const CFlowKey& rhs) const{
    int cmp=memcmp(&m_ipaddr1,&rhs.m_ipaddr1 ,sizeof(CFlowKey));
    if (cmp>0) {
        return (true);
    }else{
        return (false);
    }
}

inline bool CFlowKey::operator >(const CFlowKey& rhs) const{
    int cmp=memcmp(&m_ipaddr1,&rhs.m_ipaddr1 ,sizeof(CFlowKey));
    if (cmp<0) {
        return (true);
    }else{
        return (false);
    }
}

inline bool CFlowKey::operator ==(const CFlowKey& rhs) const{
    int cmp=memcmp(&m_ipaddr1,&rhs.m_ipaddr1 ,sizeof(CFlowKey));
    if (cmp==0) {
        return (true);
    }else{
        return (false);
    }
}



/***********************************************************/
/* descriptor flags                                        */

#define IS_SWAP_S 0
#define IS_SWAP_E 0

#define IS_VALID_S 1
#define IS_VALID_E 1

#define PROTO_S 3
#define PROTO_E 2

#define IS_INIT_SIDE 4

#define IS_LAST_PKT_S 5
#define IS_LAST_PKT_E 5

#define IS_RTT 6

#define IS_PCAP_TIMING 7

// 8-12 is used
#define FLOW_ID 8


#define PLUGIN_ENABLE_S 13
#define PLUGIN_ENABLE_E 13
#define BOTH_DIR_FLOW_SE 14
#define LEARN_MODE_ENABLE 15

/***********************************************************/

class CPacketDescriptorPerDir {
public:
    CPacketDescriptorPerDir(){
       m_dir_pkt_num=0;
       m_max_dir_flow_pkts=0;
    }
public:
    void SetMaxPkts( uint32_t val){
        assert(val<65000);
        m_max_dir_flow_pkts = (uint16_t)val;
    }
    uint16_t GetMaxPkts(void){
        return (m_max_dir_flow_pkts);
    }

    void SetPktNum(uint32_t pkt_id){
        assert(pkt_id<65000);
        m_dir_pkt_num=(uint16_t)pkt_id;
    }

    uint16_t GetPktNum(void){
        return (m_dir_pkt_num);
    }

private:
    // per direction info
    uint16_t    m_dir_pkt_num;   // pkt id
    uint16_t    m_max_dir_flow_pkts;
};


class CPacketDescriptor {

public:

    inline void Clear(){
        m_flags = 0;
        m_flow_pkt_num=0;
        m_plugin_id=0;
        m_max_flow_pkts=0;
        m_max_flow_aging=0;
    }

    inline uint8_t getPluginId(){
        return (m_plugin_id);
    }
    inline void SetPluginId(uint8_t plugin_id){
        m_plugin_id=plugin_id;
    }

    inline bool IsLearn(){
        return (btGetMaskBit32(m_flags,LEARN_MODE_ENABLE,LEARN_MODE_ENABLE) ? true:false);
    }
    inline void SetLearn(bool enable){
        btSetMaskBit32(m_flags,LEARN_MODE_ENABLE ,LEARN_MODE_ENABLE ,enable?1:0);
    }


    inline bool IsPluginEnable(){
        return (btGetMaskBit32(m_flags,PLUGIN_ENABLE_S,PLUGIN_ENABLE_S) ? true:false);
    }
    inline void SetPluginEnable(bool enable){
        btSetMaskBit32(m_flags,PLUGIN_ENABLE_S ,PLUGIN_ENABLE_S ,enable?1:0);
    }

    inline bool IsBiDirectionalFlow(){
        return (btGetMaskBit32(m_flags,BOTH_DIR_FLOW_SE,BOTH_DIR_FLOW_SE) ? true:false);
    }
    inline void SetBiPluginEnable(bool enable){
        btSetMaskBit32(m_flags,BOTH_DIR_FLOW_SE ,BOTH_DIR_FLOW_SE ,enable?1:0);
    }


    /* packet number inside the global flow */
    inline void SetFlowPktNum(uint32_t pkt_id){
        m_flow_pkt_num = pkt_id;

    }
    /**
     * start from zero 0,1,2,.. , it is on global flow if you have couple of flows it will count all of the flows
     *
     * flow  FlowPktNum
     * 0         0
     * 0         1
     * 0         2
     * 1         0
     * 1         1
     * 2         0
     *
     * @return
     */
    inline uint32_t getFlowPktNum(){
        return ( m_flow_pkt_num);
    }


    inline void SetFlowId(uint16_t flow_id){
        btSetMaskBit32(m_flags,12,8,flow_id);

    }

    inline uint16_t getFlowId(){
        return ( ( uint16_t)btGetMaskBit32(m_flags,12,8));
    }

    inline void SetPcapTiming(bool is_pcap){
        btSetMaskBit32(m_flags,IS_PCAP_TIMING,IS_PCAP_TIMING,is_pcap?1:0);
    }
    inline bool IsPcapTiming(){
        return (btGetMaskBit32(m_flags,IS_PCAP_TIMING,IS_PCAP_TIMING) ? true:false);
    }


    /* return true if this packet in diff direction from prev flow packet ,
    if true need to choose RTT else IPG for inter packet gap */
    inline bool IsRtt(){
        return (btGetMaskBit32(m_flags,IS_RTT,IS_RTT) ? true:false);
    }
    inline void SetRtt(bool is_rtt){
        btSetMaskBit32(m_flags,IS_RTT,IS_RTT,is_rtt?1:0);
    }

    /* this is in respect to the first flow  */
    inline bool IsInitSide(){
        return (btGetMaskBit32(m_flags,IS_INIT_SIDE,IS_INIT_SIDE) ? true:false);
    }

    /* this is in respect to the first flow , this is what is needed when we replace IP source / destiniation */
    inline void SetInitSide(bool is_init_side){
        btSetMaskBit32(m_flags,IS_INIT_SIDE,IS_INIT_SIDE,is_init_side?1:0);
    }

    /* per flow */
    inline bool IsSwapTuple(){
        return (btGetMaskBit32(m_flags,IS_SWAP_S,IS_SWAP_E) ? true:false);
    }
    inline void SetSwapTuple(bool is_swap){
        btSetMaskBit32(m_flags,IS_SWAP_S,IS_SWAP_E,is_swap?1:0);
    }

    inline bool IsValidPkt(){
        return (btGetMaskBit32(m_flags,IS_VALID_S,IS_VALID_E) ? true:false);
    }

    inline void SetIsValidPkt(bool is_valid){
        btSetMaskBit32(m_flags,IS_VALID_S,IS_VALID_E,is_valid?1:0);
    }

    inline void SetIsTcp(bool is_valid){
        btSetMaskBit32(m_flags,PROTO_S,PROTO_E,is_valid?1:0);
    }

    inline bool IsTcp(){
        return ((btGetMaskBit32(m_flags,PROTO_S,PROTO_E) == 1) ? true:false);
    }

    inline void SetIsUdp(bool is_valid){
        btSetMaskBit32(m_flags,PROTO_S,PROTO_E,is_valid?2:0);
    }

    inline bool IsUdp(){
        return ((btGetMaskBit32(m_flags,PROTO_S,PROTO_E) == 2) ? true:false);
    }

    inline void SetIsIcmp(bool is_valid){
        btSetMaskBit32(m_flags,PROTO_S,PROTO_E,is_valid?3:0);
    }

    inline bool IsIcmp(){
        return ((btGetMaskBit32(m_flags,PROTO_S,PROTO_E) == 3) ? true:false);
    }

    inline void SetId(uint16_t _id){
        btSetMaskBit32(m_flags,31,16,_id);

    }
    inline uint16_t getId(){
        return ( ( uint16_t)btGetMaskBit32(m_flags,31,16));
    }

    inline void SetIsLastPkt(bool is_last){
        btSetMaskBit32(m_flags,IS_LAST_PKT_S,IS_LAST_PKT_E,is_last?1:0);
    }

    /* last packet of couple of flows */
    inline bool IsLastPkt(){
        return (btGetMaskBit32(m_flags,IS_LAST_PKT_S,IS_LAST_PKT_E) ? true:false);
    }

    // there could be couple of flows per template in case of plugin
    inline void SetMaxPktsPerFlow(uint32_t pkts){
        assert(pkts<65000);
        m_max_flow_pkts=pkts;
    }
    inline uint16_t GetMaxPktsPerFlow(){
        return ( m_max_flow_pkts );
    }
        // there could be couple of flows per template in case of plugin
    inline void SetMaxFlowTimeout(double sec){
        //assert (sec<65000);
        sec = sec*2.0+5.0;
        if ( sec > 65000) {
            printf("Warning pcap file aging is %f truncating it \n",sec);
            sec = 65000;
        }
        m_max_flow_aging = (uint16_t)sec;
    }

    inline uint16_t GetMaxFlowTimeout(void){
        return ( m_max_flow_aging );
    }

    /* return per dir info , the dir is with respect to the first flow client/server side , this is tricky */
    CPacketDescriptorPerDir * GetDirInfo(void){
        return (&m_per_dir[IsInitSide()?CLIENT_SIDE:SERVER_SIDE]);
    }

    bool IsOneDirectionalFlow(void){
        if ( ( m_per_dir[CLIENT_SIDE].GetMaxPkts() == GetMaxPktsPerFlow()) || ( m_per_dir[SERVER_SIDE].GetMaxPkts() == GetMaxPktsPerFlow()) ) {
            return (true);
        }else{
            return (false);
        }
    }

public:
    void Dump(FILE *fd);

private:
    uint32_t    m_flags;
    uint16_t    m_flow_pkt_num; // packet number inside the flow
    uint8_t     m_plugin_id; // packet number inside the flow
    uint8_t     m_pad;
    uint16_t    m_max_flow_pkts;  // how many packet per this flow getFlowId()
    uint16_t    m_max_flow_aging; // maximum aging in sec
    CPacketDescriptorPerDir  m_per_dir[CS_NUM]; // per direction info
};


class CPacketParser;
class CFlow ;


class CCPacketParserCounters {
public:
    uint64_t  m_pkt;
    uint64_t  m_ipv4;
    uint64_t  m_ipv6;
    uint64_t  m_non_ip;
    uint64_t  m_vlan;
    uint64_t  m_arp;
    uint64_t  m_mpls;


    /* IP stats */
    uint64_t  m_non_valid_ipv4_ver;
    uint64_t  m_non_valid_ipv6_ver;
    uint64_t  m_ip_checksum_error;
    uint64_t  m_ip_length_error;
    uint64_t  m_ipv6_length_error;
    uint64_t  m_ip_not_first_fragment_error;
    uint64_t  m_ip_ttl_is_zero_error;
    uint64_t  m_ip_multicast_error;
    uint64_t  m_ip_header_options;

    /* TCP/UDP */
    uint64_t  m_non_tcp_udp;
    uint64_t  m_non_tcp_udp_ah;
    uint64_t  m_non_tcp_udp_esp;
    uint64_t  m_non_tcp_udp_icmp;
    uint64_t  m_non_tcp_udp_gre;
    uint64_t  m_non_tcp_udp_ip;
    uint64_t  m_tcp_header_options;
    uint64_t  m_tcp_udp_pkt_length_error;
    uint64_t  m_tcp;
    uint64_t  m_udp;
    uint64_t  m_valid_udp_tcp;

public:
    void Clear();
    uint64_t getTotalErrors();
    void Dump(FILE *fd);
};


class CPacketIndication {

public:
    uint32_t            m_ticks;
    CPacketDescriptor   m_desc;
    CCapPktRaw *        m_packet;

    CFlow *          m_flow;
    EthernetHeader * m_ether;
    union {
        IPHeader       * m_ipv4;
        IPv6Header     * m_ipv6;
    } l3;
    bool        m_is_ipv6;
    union {
        TCPHeader * m_tcp;
        UDPHeader * m_udp;
        ICMPHeader * m_icmp;
    } l4;
    uint8_t *       m_payload;
    uint16_t        m_payload_len;
    uint16_t        m_packet_padding; /* total packet size - IP total length */

    dsec_t          m_cap_ipg; /* ipg from cap file */

    CFlowKey            m_flow_key;

    uint8_t             m_ether_offset;
    uint8_t             m_ip_offset;
    uint8_t             m_udp_tcp_offset;
    uint8_t             m_payload_offset;

public:

    void Dump(FILE *fd,int verbose);
    void Clean();
    bool ConvertPacketToIpv6InPlace(CCapPktRaw * pkt,
                                    int offset);
    void ProcessPacket(CPacketParser *parser,CCapPktRaw * pkt);
    void Clone(CPacketIndication * obj,CCapPktRaw * pkt);
    void RefreshPointers(void);
    void UpdatePacketPadding();

public:
    bool is_ipv6(){
        return (m_is_ipv6);
    }
    char * getBasePtr(){
        return ((char *)m_packet->raw);
    }

    uint32_t getEtherOffset(){
        BP_ASSERT(m_ether);
        return (uint32_t)((uintptr_t) (((char *)m_ether)- getBasePtr()) );
    }
    uint32_t getIpOffset(){
        if (l3.m_ipv4 != NULL) {
            return (uint32_t)((uintptr_t)( ((char *)l3.m_ipv4)-getBasePtr()) );
        }else{
            BP_ASSERT(0);
            return (0);
        }
    }


    /**
     * return the application ipv4/ipv6 option offset
     * if learn bit is ON , it is always the first options ( IPV6/IPV4)
     *
     * @return
     */
    uint32_t getIpAppOptionOffset(){
        if ( is_ipv6() ) {
            return  ( getIpOffset()+IPv6Header::DefaultSize);
        }else{
            return  ( getIpOffset()+IPHeader::DefaultSize);
        }
    }

    uint32_t getTcpOffset(){
        BP_ASSERT(l4.m_tcp);
        return (uint32_t)((uintptr_t) ((char *)l4.m_tcp-getBasePtr()) );
    }
    uint32_t getPayloadOffset(){
        if (m_payload) {
            return (uint32_t)((uintptr_t) ((char *)m_payload-getBasePtr()) );
        }else{
            return (0);
        }
    }

    // if is_nat is true, turn on MSB of IP_ID, else turn it off
    void setIpIdNat(bool is_nat) {
        BP_ASSERT(l3.m_ipv4);
        if (! is_ipv6()) {
            if (is_nat) {
                l3.m_ipv4->setId(l3.m_ipv4->getId() | 0x8000);
            } else {
                l3.m_ipv4->setId(l3.m_ipv4->getId() & 0x7fff);
            }
        }
    }

    void  setTOSReserve(){
        BP_ASSERT(l3.m_ipv4);
        if (is_ipv6()) {
            l3.m_ipv6->setTrafficClass(l3.m_ipv6->getTrafficClass() | TOS_TTL_RESERVE_DUPLICATE );
        }else{
            l3.m_ipv4->setTOS(l3.m_ipv4->getTOS()| TOS_TTL_RESERVE_DUPLICATE );
        }
    }

    void  clearTOSReserve(){
        BP_ASSERT(l3.m_ipv4);
        if (is_ipv6()) {
            l3.m_ipv6->setTrafficClass(l3.m_ipv6->getTrafficClass()& (~TOS_TTL_RESERVE_DUPLICATE) );
        }else{
            l3.m_ipv4->setTOS(l3.m_ipv4->getTOS() & (~TOS_TTL_RESERVE_DUPLICATE) );
        }
    }

    uint8_t getTTL(){
        BP_ASSERT(l3.m_ipv4);
        if (is_ipv6()) {
            return(l3.m_ipv6->getHopLimit());
        }else{
            return(l3.m_ipv4->getTimeToLive());
        }
    }
    void setTTL(uint8_t ttl){
        BP_ASSERT(l3.m_ipv4);
        if (is_ipv6()) {
            l3.m_ipv6->setHopLimit(ttl);
        }else{
            l3.m_ipv4->setTimeToLive(ttl);
            l3.m_ipv4->updateCheckSum();
        }
    }

    uint8_t getIpProto(){
        BP_ASSERT(l3.m_ipv4);
        if (is_ipv6()) {
            return(l3.m_ipv6->getNextHdr());
        }else{
            return(l3.m_ipv4->getProtocol());
        }
    }

    uint8_t getFastEtherOffset(void){
        return (m_ether_offset);
    }
    uint8_t getFastIpOffsetFast(void){
        return (m_ip_offset);
    }
    uint8_t getFastTcpOffset(void){
        return (m_udp_tcp_offset );
    }
    uint8_t getFastPayloadOffset(void){
        return (m_payload_offset );
    }
private:
    void SetKey(void);
    uint8_t ProcessIpPacketProtocol(CCPacketParserCounters *m_cnt,
                                    uint8_t protocol, int *offset);
    void ProcessIpPacket(CPacketParser *parser,int offset);
    void ProcessIpv6Packet(CPacketParser *parser,int offset);
    void _ProcessPacket(CPacketParser *parser,CCapPktRaw * pkt);

    void UpdateOffsets();
};



#define SRC_IP_BASE 0x10000001
#define DST_IP_BASE 0x20000001

class CFlowTemplateGenerator {
public:
    CFlowTemplateGenerator(uint64_t fid){
        src_ip_base=((SRC_IP_BASE + (uint32_t)fid )& 0x7fffffff);
        dst_ip_base=((DST_IP_BASE + (uint32_t) ((fid & 0xffffffff00000000ULL)>>32)) & 0x7fffffff);
    }
public:
    uint32_t src_ip_base;
    uint32_t dst_ip_base;
};


class CPacketParser {

public:
    bool Create();
    void Delete();
    bool ProcessPacket(CPacketIndication * pkt_indication,
                       CCapPktRaw * raw_packet);
public:
    CCPacketParserCounters m_counter;
public:
    void Dump(FILE *fd);
};


class CFlowTableStats {
public:
    uint64_t  m_lookup;
    uint64_t  m_found;
    uint64_t  m_fif;
    uint64_t  m_add;
    uint64_t  m_remove;
    uint64_t  m_fif_err;
    uint64_t  m_active;
public:
    void Clear();
    void Dump(FILE *fd);
};



class CFlow {
public:
    CFlow(){
        is_fif_swap=0;
        pkt_id=0;
    }
    ~CFlow(){
       }
public:
    void Dump(FILE *fd);
public:
    uint8_t   is_fif_swap;
    uint32_t  pkt_id;
    uint32_t  flow_id;
};

class CFlowTableInterator {
public:
    virtual void do_flow(CFlow *flow)=0;
};

class CFlowTableManagerBase {
public:
    virtual bool Create(int max_size)=0;
    virtual void Delete()=0;
public:
    CFlow * process(const CFlowKey & key,bool &is_fif  );
    virtual void remove(const CFlowKey & key )=0;
    virtual void remove_all()=0;
    virtual uint64_t count()=0;
public:
    void Dump(FILE *fd);
protected:
    virtual CFlow * lookup(const CFlowKey & key )=0;
    virtual CFlow * add(const CFlowKey & key )=0;

    //virtual IterateFlows(CFlowTableInterator * iter)=0;
protected:
    CFlowTableStats  m_stats;
};



typedef CFlow * flow_ptr;
typedef std::map<CFlowKey, flow_ptr, std::less<CFlowKey> > flow_map_t;
typedef flow_map_t::iterator flow_map_iter_t;


class CFlowTableMap  : public CFlowTableManagerBase {
public:
    virtual bool Create(int max_size);
    virtual void Delete();
    virtual void remove(const CFlowKey & key );

protected:
    virtual CFlow * lookup(const CFlowKey & key );
    virtual CFlow * add(const CFlowKey & key );
    virtual void remove_all(void);
    uint64_t count(void);
private:
    flow_map_t m_map;
};

class CFlowInfo {
public:
    uint32_t client_ip;
    uint32_t server_ip;
    uint32_t client_port;
    uint32_t server_port;
    bool     is_init_ip_dir;
    bool     is_init_port_dir;

    bool     replace_server_port;
    CMiniVMCmdBase ** vm_program;/* pointer to vm program */
};

class CFlowPktInfo {
public:
    bool Create(CPacketIndication  * pkt_ind);
    void Delete();
    void Dump(FILE *fd);
    inline void replace_tuple(CGenNode * node);

    /* generate a new packet */
    inline rte_mbuf_t * generate_new_mbuf(CGenNode * node);
    inline rte_mbuf_t * do_generate_new_mbuf(CGenNode * node);
    inline rte_mbuf_t * do_generate_new_mbuf_big(CGenNode * node);

    /* new packet with rx check info in IP option */
    void do_generate_new_mbuf_rxcheck(rte_mbuf_t * m,
                                 CGenNode * node,
                                 bool single_port);

    inline rte_mbuf_t * do_generate_new_mbuf_ex(CGenNode * node,CFlowInfo * flow_info);
    inline rte_mbuf_t * do_generate_new_mbuf_ex_big(CGenNode * node,CFlowInfo * flow_info);
    inline rte_mbuf_t * do_generate_new_mbuf_ex_vm(CGenNode * node,
                                    CFlowInfo * flow_info, int16_t * s_size);

public:
    /* push the number of bytes into the packets and make more room
      should be used by NAT feature that should have ipv4 option in the first packet
      this function should not be called in runtime, only when template is loaded due to it heavey cost of operation ( malloc/free memory )
    */
    char * push_ipv4_option_offline(uint8_t bytes);
    char * push_ipv6_option_offline(uint8_t bytes);



    /**
     * mark this packet as learn packet
     * should
     * 1. push ipv4 option ( 8 bytes)
     * 2. mark the packet as learn
     * 3. update the option pointer
     */
    void   mark_as_learn();

private:
    inline void append_big_mbuf(rte_mbuf_t * m,
                                              CGenNode * node);

    inline void update_pkt_info(char *p,
                                       CGenNode * node);
    inline void update_pkt_info2(char *p,
                                 CFlowInfo * flow_info,
                                 int update_len,
                                 CGenNode * node
                                 );

    void alloc_const_mbuf();

    void free_const_mbuf();

    rte_mbuf_t    *  get_big_mbuf(socket_id_t socket_id){
        return (m_big_mbuf[socket_id]);
    }


public:
    CPacketIndication   m_pkt_indication;
    CCapPktRaw        * m_packet;
    rte_mbuf_t        * m_big_mbuf[MAX_SOCKETS_SUPPORTED]; /* allocate big mbug per socket */
};


inline void CFlowPktInfo::replace_tuple(CGenNode * node){
    update_pkt_info(m_packet->raw,node);
}

inline void CFlowPktInfo::update_pkt_info2(char *p,
                                           CFlowInfo * flow_info,
                                           int update_len ,
                                           CGenNode * node
                                           ){
    IPHeader       * ipv4=
        (IPHeader       *)(p + m_pkt_indication.getFastIpOffsetFast());

    EthernetHeader * et  =
        (EthernetHeader * )(p + m_pkt_indication.getFastEtherOffset());

    (void)et;

    if ( unlikely (m_pkt_indication.is_ipv6())) {
        IPv6Header *ipv6= (IPv6Header *)ipv4;

        if ( update_len ){
            ipv6->setPayloadLen(ipv6->getPayloadLen() + update_len);
        }

        if ( flow_info->is_init_ip_dir  ) {
            ipv6->updateLSBIpv6Src(flow_info->client_ip);
            ipv6->updateLSBIpv6Dst(flow_info->server_ip);
        }else{
            ipv6->updateLSBIpv6Src(flow_info->server_ip);
            ipv6->updateLSBIpv6Dst(flow_info->client_ip);
        }

    }else{
        if ( update_len ){
            ipv4->setTotalLength((ipv4->getTotalLength() + update_len));
        }

        if ( flow_info->is_init_ip_dir  ) {
            ipv4->setSourceIp(flow_info->client_ip);
            ipv4->setDestIp(flow_info->server_ip);
        }else{
            ipv4->setSourceIp(flow_info->server_ip);
            ipv4->setDestIp(flow_info->client_ip);
        }
        ipv4->updateCheckSum();
    }



    /* replace port base on TCP/UDP */
    if ( m_pkt_indication.m_desc.IsTcp() ) {
        TCPHeader * m_tcp = (TCPHeader *)(p +m_pkt_indication.getFastTcpOffset());
        BP_ASSERT(m_tcp);
        /* replace port */
        if ( flow_info->is_init_port_dir  ) {
            m_tcp->setSourcePort(flow_info->client_port);
            if ( flow_info->replace_server_port ){
                m_tcp->setDestPort(flow_info->server_port);
            }
        }else{
            m_tcp->setDestPort(flow_info->client_port);
            if ( flow_info->replace_server_port ){
                m_tcp->setSourcePort(flow_info->server_port);
            }
        }

    }else {
        if ( m_pkt_indication.m_desc.IsUdp() ){
            UDPHeader * m_udp =(UDPHeader *)(p +m_pkt_indication.getFastTcpOffset() );
            BP_ASSERT(m_udp);
            m_udp->setLength(m_udp->getLength() + update_len);
            m_udp->setChecksum(0);
            if ( flow_info->is_init_port_dir  ) {
                m_udp->setSourcePort(flow_info->client_port);
                if ( flow_info->replace_server_port ){
                    m_udp->setDestPort(flow_info->server_port);
                }
            }else{
                m_udp->setDestPort(flow_info->client_port);
                if ( flow_info->replace_server_port ){
                    m_udp->setSourcePort(flow_info->server_port);
                }
            }
        }else{
            BP_ASSERT(0);
        }
    }
}


inline void CFlowPktInfo::update_pkt_info(char *p,
                                   CGenNode * node){

    IPHeader       * ipv4=
        (IPHeader       *)(p + m_pkt_indication.getFastIpOffsetFast());

    uint16_t src_port =   node->m_src_port;
    uint32_t tcp_seq_diff_client = 0;
    uint32_t tcp_seq_diff_server = 0;

    pkt_dir_t ip_dir = node->cur_pkt_ip_addr_dir();
    pkt_dir_t port_dir = node->cur_pkt_port_addr_dir();


    if ( unlikely (m_pkt_indication.is_ipv6())) {

        // Update the IPv6 address
        IPv6Header *ipv6= (IPv6Header *)ipv4;

        if ( ip_dir ==  CLIENT_SIDE  ) {
            ipv6->updateLSBIpv6Src(node->m_src_ip);
            ipv6->updateLSBIpv6Dst(node->m_dest_ip);
        }else{
            ipv6->updateLSBIpv6Src(node->m_dest_ip);
            ipv6->updateLSBIpv6Dst(node->m_src_ip);
        }
    }else{

        if ( unlikely ( CGlobalInfo::is_learn_mode()  ) ){
            if (m_pkt_indication.m_desc.IsLearn()) {
                /* might be done twice */
#ifdef NAT_TRACE_
                printf(" %.3f : DP :  learn packet !\n",now_sec());
#endif
                /* first ipv4 option add the info in case of learn packet, usualy only the first packet */
                if (CGlobalInfo::is_learn_mode(CParserOption::LEARN_MODE_IP_OPTION)) {
                    CNatOption *lpNat =(CNatOption *)ipv4->getOption();
                    lpNat->set_fid(node->get_short_fid());
                    lpNat->set_thread_id(node->get_thread_id());
                } else {
                    if (ipv4->getProtocol() == IPPROTO_TCP) {
                        TCPHeader *tcp = (TCPHeader *)(((uint8_t *)ipv4) + ipv4->getHeaderLength());
                        // Put NAT info in first TCP SYN
                        if (tcp->getSynFlag()) {
                            tcp->setAckNumber(CNatRxManager::calc_tcp_ack_val(node->get_short_fid(), node->get_thread_id()));
                        }
#ifdef NAT_TRACE_
                        printf(" %.3f : flow_id: %x thread_id %x TCP ack %x seq %x\n"
                               ,now_sec(), node->get_short_fid(), node->get_thread_id(), tcp->getAckNumber()
                               , tcp->getSeqNumber());
#endif
                    } else {
                        // If protocol is not TCP, put NAT info in IP_ID
                        ipv4->setId(CNatRxManager::calc_ip_id_val(node->get_short_fid(), node->get_thread_id()));
                    }
                }
            }
            /* in all cases update the ip using the outside ip */

            if ( m_pkt_indication.m_desc.IsInitSide()  ) {
#ifdef NAT_TRACE_
                if (node->m_flags != CGenNode::NODE_FLAGS_LATENCY ) {
                    printf(" %.3f : DP : i %x:%x -> %x  flow_id: %lx\n",now_sec(), node->m_src_ip
                           , node->m_src_port, node->m_dest_ip, node->m_flow_id);
                }
#endif

                tcp_seq_diff_server = node->get_nat_tcp_seq_diff_server();
                ipv4->updateIpSrc(node->m_src_ip);
                ipv4->updateIpDst(node->m_dest_ip);
            } else {
#ifdef NAT_TRACE_
                if (node->m_flags != CGenNode::NODE_FLAGS_LATENCY ) {
                    printf(" %.3f : r %x   -> %x:%x  flow_id: %lx \n", now_sec(), node->m_dest_ip
                           , node->m_src_ip, node->m_src_port, node->m_flow_id);
                }
#endif
                src_port = node->get_nat_ipv4_port();
                tcp_seq_diff_client = node->get_nat_tcp_seq_diff_client();
                ipv4->updateIpSrc(node->m_dest_ip);
                ipv4->updateIpDst(node->get_nat_ipv4_addr());
            }

#ifdef NAT_TRACE_
            if (node->m_flags != CGenNode::NODE_FLAGS_LATENCY ) {
                if ( m_pkt_indication.m_desc.IsInitSide() ==false ){
                    printf(" %.3f : pkt ==> %x %x:%x \n",now_sec(),node->get_nat_ipv4_addr(),
                           node->get_nat_ipv4_port(),node->m_src_port);
                }else{
                    printf(" %.3f : pkt ==> init pkt sent \n",now_sec());
                }
            }
#endif


        }else{
            if ( ip_dir ==  CLIENT_SIDE  ) {
#ifdef NAT_TRACE_
                if (node->m_flags != CGenNode::NODE_FLAGS_LATENCY ) {
                    printf(" %.3f : i %x:%x -> %x \n",now_sec(),node->m_src_ip,node->m_src_port,node->m_dest_ip);
                }
#endif
                ipv4->updateIpSrc(node->m_src_ip);
                ipv4->updateIpDst(node->m_dest_ip);
            }else{
#ifdef NAT_TRACE_
                if (node->m_flags != CGenNode::NODE_FLAGS_LATENCY ) {
                    printf(" %.3f : r %x   -> %x:%x  \n",now_sec(),node->m_dest_ip,node->m_src_ip,node->m_src_port);
                }
#endif
                ipv4->updateIpSrc(node->m_dest_ip);
                ipv4->updateIpDst(node->m_src_ip);
            }
        }

#ifdef RTE_DPDK
        if (CGlobalInfo::m_options.preview.getChecksumOffloadEnable()) {
            ipv4->myChecksum = 0;
        } else {
            ipv4->updateCheckSum();
        }
#else
        ipv4->updateCheckSum();
#endif
    }


    /* replace port base on TCP/UDP */
    if ( m_pkt_indication.m_desc.IsTcp() ) {
        TCPHeader * m_tcp = (TCPHeader *)(p +m_pkt_indication.getFastTcpOffset());
        BP_ASSERT(m_tcp);
        /* replace port */
        if ( port_dir ==  CLIENT_SIDE ) {
            m_tcp->setSourcePort(src_port);
            m_tcp->setAckNumber(m_tcp->getAckNumber() + tcp_seq_diff_server);
        }else{
            m_tcp->setDestPort(src_port);
            m_tcp->setAckNumber(m_tcp->getAckNumber() + tcp_seq_diff_client);
        }

#ifdef RTE_DPDK
        if (CGlobalInfo::m_options.preview.getChecksumOffloadEnable()) {
            /* set pseudo-header checksum */
            m_tcp->setChecksum(PKT_NTOHS(rte_ipv4_phdr_cksum((struct ipv4_hdr *)ipv4->getPointer(),
                                                             PKT_TX_IPV4 | PKT_TX_IP_CKSUM | PKT_TX_TCP_CKSUM)));
        }
#endif
    }else {
        if ( m_pkt_indication.m_desc.IsUdp() ){
            UDPHeader * m_udp =(UDPHeader *)(p +m_pkt_indication.getFastTcpOffset() );
            BP_ASSERT(m_udp);

            if ( port_dir ==  CLIENT_SIDE ) {
                m_udp->setSourcePort(src_port);
            }else{
                m_udp->setDestPort(src_port);
            }

#ifdef RTE_DPDK
        if (CGlobalInfo::m_options.preview.getChecksumOffloadEnable()) {
            /* set pseudo-header checksum */
            m_udp->setChecksum(PKT_NTOHS(rte_ipv4_phdr_cksum((struct ipv4_hdr *) ipv4->getPointer(),
                                                             PKT_TX_IPV4 | PKT_TX_IP_CKSUM | PKT_TX_UDP_CKSUM)));
        } else {
            m_udp->setChecksum(0);
        }
#else
        m_udp->setChecksum(0);
#endif
        }else{
#ifdef _DEBUG
            if (!m_pkt_indication.m_desc.IsIcmp()) {
               BP_ASSERT(0);
            }
#endif
        }
    }
}


inline rte_mbuf_t * CFlowPktInfo::do_generate_new_mbuf_ex(CGenNode * node,
                                                          CFlowInfo * flow_info){
    rte_mbuf_t        * m;
    /* alloc small packet buffer*/
    m =  CGlobalInfo::pktmbuf_alloc_small(node->get_socket_id());
    assert(m);
    uint16_t len= ( m_packet->pkt_len > FIRST_PKT_SIZE) ?FIRST_PKT_SIZE:m_packet->pkt_len;
    /* append*/
    char *p=rte_pktmbuf_append(m, len);

    BP_ASSERT ( (((uintptr_t)m_packet->raw) & 0x7f )== 0) ;

    memcpy(p,m_packet->raw,len);

    update_pkt_info2(p,flow_info,0,node);

    append_big_mbuf(m,node);

    return(m);
}


inline rte_mbuf_t * CFlowPktInfo::do_generate_new_mbuf_ex_big(CGenNode * node,
                                                          CFlowInfo * flow_info){
    rte_mbuf_t        * m;
    uint16_t len =  m_packet->pkt_len;

    /* alloc big buffer to update it*/
    m = CGlobalInfo::pktmbuf_alloc(node->get_socket_id(), len);
    assert(m);

    /* append*/
    char *p=rte_pktmbuf_append(m, len);

    BP_ASSERT ( (((uintptr_t)m_packet->raw) & 0x7f )== 0) ;

    memcpy(p,m_packet->raw,len);

    update_pkt_info2(p,flow_info,0,node);

    return(m);
}


inline rte_mbuf_t * CFlowPktInfo::do_generate_new_mbuf_ex_vm(CGenNode * node,
                                              CFlowInfo * flow_info, int16_t * s_size){
    rte_mbuf_t        * m;

    /* sanity check we need to have payload */
    if ( unlikely( m_pkt_indication.m_payload_len == 0) ){
        printf(" ERROR nothing to do \n");
        return (do_generate_new_mbuf_ex(node,flow_info));
    }

    CMiniVMCmdBase ** cmds=flow_info->vm_program;
    BP_ASSERT(cmds);

        /* packet is going to be changed update len with what we expect ( written in first command ) */
    uint16_t len =  m_packet->pkt_len + cmds[0]->m_add_pkt_len;

    /* alloc big buffer to update it*/
    m = CGlobalInfo::pktmbuf_alloc(node->get_socket_id(), len);
    assert(m);

    /* append the additional bytes requested and update later */
    char *p=rte_pktmbuf_append(m, len);

    BP_ASSERT ( (((uintptr_t)m_packet->raw) & 0x7f )== 0) ;

    /* copy the headers until the payload  */
    memcpy(p, m_packet->raw, m_pkt_indication.getPayloadOffset() );
    CMiniVM vm;
    vm.m_pkt_info = this;
    vm.m_pyload_mbuf_ptr = p+m_pkt_indication.getPayloadOffset();
    vm.mini_vm_run(cmds);

    /* need to update the mbuf size here .., this is not must but needed for accuracy  */
    uint16_t buf_adjust = len - vm.m_new_pkt_size;
    int rc = rte_pktmbuf_trim(m, buf_adjust);
    (void)rc;

    /* update IP length , and TCP checksum , we can accelerate this using hardware ! */
    uint16_t pkt_adjust = vm.m_new_pkt_size - m_packet->pkt_len;
    update_pkt_info2(p,flow_info,pkt_adjust,node);

    /* return change in packet size due to packet tranforms */
    *s_size = vm.m_new_pkt_size - m_packet->pkt_len;

    //printf(" new length : actual %d , update:%d \n",m_packet->pkt_len,m_packet->pkt_len + vm.m_new_pkt_size);
    return(m);
}


inline void CFlowPktInfo::append_big_mbuf(rte_mbuf_t * m,
                                          CGenNode * node){

    rte_mbuf_t * mbig= get_big_mbuf(node->get_socket_id());

    if (  mbig == NULL) {
        return ;
    }

    utl_rte_pktmbuf_add_after(m,mbig);
}


inline rte_mbuf_t * CFlowPktInfo::do_generate_new_mbuf(CGenNode * node){
    rte_mbuf_t        * m;
    /* alloc small packet buffer*/
    m = CGlobalInfo::pktmbuf_alloc_small(node->get_socket_id());
    assert(m);
    uint16_t len= ( m_packet->pkt_len > FIRST_PKT_SIZE) ?FIRST_PKT_SIZE:m_packet->pkt_len;
    /* append*/
    char *p=rte_pktmbuf_append(m, len);

    BP_ASSERT ( (((uintptr_t)m_packet->raw) & 0x7f )== 0) ;

    memcpy(p,m_packet->raw,len);

#ifdef RTE_DPDK
    if (CGlobalInfo::m_options.preview.getChecksumOffloadEnable()) {
        if (m_pkt_indication.m_desc.IsTcp()) {
            m->l2_len = 14;
            m->l3_len = 20;
            m->ol_flags |= PKT_TX_IPV4 | PKT_TX_IP_CKSUM | PKT_TX_TCP_CKSUM;
        } else {
            if (m_pkt_indication.m_desc.IsUdp()) {
                m->l2_len = 14;
                m->l3_len = 20;
                m->ol_flags |= PKT_TX_IPV4 | PKT_TX_IP_CKSUM | PKT_TX_UDP_CKSUM;
            }
        }
    }
#endif

    update_pkt_info(p,node);

    append_big_mbuf(m,node);

    return m;
}


inline rte_mbuf_t * CFlowPktInfo::do_generate_new_mbuf_big(CGenNode * node){
    rte_mbuf_t        * m;
    uint16_t len =  m_packet->pkt_len;

    /* alloc big buffer to update it*/
    m = CGlobalInfo::pktmbuf_alloc(node->get_socket_id(),  len);
    assert(m);

    /* append*/
    char *p=rte_pktmbuf_append(m, len);

    BP_ASSERT ( (((uintptr_t)m_packet->raw) & 0x7f )== 0) ;

    memcpy(p,m_packet->raw,len);

    update_pkt_info(p,node);

    return(m);
}


inline rte_mbuf_t * CFlowPktInfo::generate_new_mbuf(CGenNode * node){

    if ( m_pkt_indication.m_desc.IsPluginEnable() ) {
        return ( on_node_generate_mbuf( node->get_plugin_id(),node,this) );
    }
    return  (do_generate_new_mbuf(node));
}



typedef CFlowPktInfo * flow_pkt_info_t;

class CCCapFileMemoryUsage {

public:

  enum { SIZE_MIN = 64,
         SIZE_64  = 64,
        SIZE_128  = 128,
        SIZE_256   = 256,
        SIZE_512   = 512,
        SIZE_1024  = 1024,
        SIZE_2048  = 2048,
        SIZE_4096  = 4096,
        SIZE_8192  = 8192,
        SIZE_16384  = 16384,

        MASK_SIZE =9
      };

  void clear(){
      int i;
      for (i=0; i<CCCapFileMemoryUsage::MASK_SIZE; i++) {
          m_buf[i] = 0;
      }
      m_total_bytes=0;
  }

  void add_size(uint32_t size){
      m_total_bytes+=size;
      int c_size=CCCapFileMemoryUsage::SIZE_MIN;
      int i;
      for (i=0; i<CCCapFileMemoryUsage::MASK_SIZE; i++) {
          if (size<c_size) {
              m_buf[i]+=1;
              return;
          }
          c_size = c_size*2;
      }
      printf("ERROR pkt size bigger than %d is not supported !\n",CCCapFileMemoryUsage::SIZE_2048);
      exit(1);
  }
  void dump(FILE *fd);

  void Add(const CCCapFileMemoryUsage & obj);

public:
    uint32_t m_buf[MASK_SIZE];
    uint64_t m_total_bytes;
};



class CCapFileFlowInfo {
public:
    const int LEARN_MODE_MIN_IPG = 10; // msec

    enum load_cap_file_err {
    kOK = 0,
    kFileNotExist,
    kNegTimestamp,
    kNoSyn,
    kTCPOffsetTooBig,
    kNoTCPFromServer,
    kNoTCPSynAck,
    kTCPLearnModeBadFlow,
    kPktNotSupp,
    kPktProcessFail,
    kCapFileErr,
    kPlugInWithLearn,
    kIPOptionNotAllowed,
    kTCPIpgTooLow
    };

    bool Create();
    void Delete();
    uint64_t Size(void){
        return (m_flow_pkts.size());
    }
    inline CFlowPktInfo * GetPacket(uint32_t index);
    void Append(CPacketIndication * pkt_indication);
    void RemoveAll();
    void dump_pkt_sizes(void);
    enum load_cap_file_err load_cap_file(std::string cap_file, uint16_t _id, uint8_t plugin_id);

    /* update flow info */
    void update_info(CFlowYamlInfo *  info);

    enum CCapFileFlowInfo::load_cap_file_err is_valid_template_load_time();

    void save_to_erf(std::string cap_file_name,int pcap);

    void generate_flow(CTupleTemplateGeneratorSmart   * tuple_gen,
                              CNodeGenerator * gen,
                              dsec_t time,
                              uint64_t flow_id,
                              CFlowYamlInfo *  template_info,
                              CGenNode *     node);

    inline uint64_t get_total_bytes(){
        return (m_total_bytes);
    }
    inline uint64_t get_total_flows(){
        return (m_total_flows);
    }

    inline uint64_t get_total_errors(){
        return (m_total_errors);
    }

    // return the cap file length in sec
    double get_cap_file_length_sec();

    void get_total_memory(CCCapFileMemoryUsage & memory);

public:
    void update_min_ipg(dsec_t min_ipg, dsec_t override_ipg);
    void update_ipg_by_factor(double factor,CFlowYamlInfo *  flow_info);
    void update_pcap_mode();
    void Dump(FILE *fd);

private:
    std::vector<flow_pkt_info_t> m_flow_pkts;
    uint64_t                     m_total_bytes;
    uint64_t                     m_total_flows;
    uint64_t                     m_total_errors;
};



inline CFlowPktInfo * CCapFileFlowInfo::GetPacket(uint32_t index){
    BP_ASSERT(index<m_flow_pkts.size());
    return (m_flow_pkts[index]);
}




struct CFlowsYamlInfo {
public:
    double          m_duration_sec;    //duration in sec for the cap file
// IPv6 addressing
    std::vector     <uint16_t> m_src_ipv6;
    std::vector     <uint16_t> m_dst_ipv6;
    bool             m_ipv6_set;

// new section
    bool            m_cap_mode;
    bool            m_cap_mode_set;

    double          m_cap_ipg_min;
    bool            m_cap_ipg_min_set;

    double          m_cap_overide_ipg;
    bool            m_cap_overide_ipg_set;

    uint32_t        m_wlength;
    bool            m_wlength_set;

    bool            m_one_app_server;
    bool            m_one_app_server_was_set;
    bool            m_mac_replace_by_ip;

    CVlanYamlInfo   m_vlan_info;
    CTupleGenYamlInfo m_tuple_gen;
    bool              m_tuple_gen_was_set;
    std::vector     <CFlowYamlInfo> m_vec;
    bool            m_is_plugin_configured; /* any plugin  is configured */

    CTimerWheelYamlInfo         m_tw;

public:
    void Dump(FILE *fd);
    int load_from_yaml_file(std::string file_name);
    bool verify_correctness(uint32_t num_threads) ;
    bool is_any_plugin_configured(){
        return ( m_is_plugin_configured);
    }
};




class CFlowStats {
public:
    CFlowStats(){
        Clear();
    }
    uint16_t    m_id;
    std::string m_name;
    double m_pkt;
    double m_bytes;
    double duration_sec;
    double m_cps;
    double m_mb_sec;
    double m_mB_sec;
    double m_c_flows;
    double m_pps ;
    double m_total_Mbytes ;
    uint64_t m_errors ;
    uint64_t m_flows  ;
    CCCapFileMemoryUsage m_memory;

    /* normalized CPS by the number of flows */
    double get_normal_cps(){
        return ( m_cps*(double)m_flows  );
    }
public:
    void Clear();
    void Add(const CFlowStats & obj);

public:
    static void DumpHeader(FILE *fd);
    void Dump(FILE *fd);
};


class CFlowGeneratorRecPerThread {

public:
    bool Create(CTupleGeneratorSmart  * global_gen,
                CFlowYamlInfo *         info,
                CFlowsYamlInfo *        yaml_flow_info,
                CCapFileFlowInfo *      flow_info,
                uint16_t _id,
                uint32_t thread_id );
    void Delete();
public:
    void Dump(FILE *fd);
    inline void generate_flow(CNodeGenerator * gen,
                              dsec_t time,
                              uint64_t flow_id,
                              CGenNode * node);
    void getFlowStats(CFlowStats * stats);

public:
    CTupleTemplateGeneratorSmart  tuple_gen;

    CCapFileFlowInfo *      m_flow_info;
    CFlowYamlInfo *         m_info;
    CFlowsYamlInfo *        m_flows_info;
    CPolicer                m_policer;
    uint16_t                m_id ;
    uint32_t                m_thread_id;
    bool                    m_tuple_gen_was_set;
} __rte_cache_aligned;




class CFlowGeneratorRec {

public:
    bool Create(CFlowYamlInfo * info,
                CFlowsYamlInfo * flow_info,
                uint16_t _id);
    void Delete();
public:

    void Dump(FILE *fd);
    void getFlowStats(CFlowStats * stats);
    void updateIpg(double factor);

public:
    CCapFileFlowInfo m_flow_info;
    CFlowYamlInfo *  m_info;
    CFlowsYamlInfo * m_flows_info;
    CPolicer         m_policer;
    uint16_t         m_id;
private:
    void fixup_ipg_if_needed();
};

class CPPSMeasure {
public:
    CPPSMeasure(){
        reset();
    }
    //reset
    void reset(void){
        m_start=false;
        m_last_time_msec=0;
        m_last_pkts=0;
        m_last_result=0.0;
    }
    //add packet size
    float add(uint64_t pkts);

private:
    float calc_pps(uint32_t dtime_msec,
                                 uint32_t pkts){
        float rate=( (  (float)pkts*(float)os_get_time_freq())/((float)dtime_msec) );
        return (rate);

    }

public:
   bool      m_start;
   uint32_t  m_last_time_msec;
   uint64_t  m_last_pkts;
   float     m_last_result;
};



class CBwMeasure {
public:
    CBwMeasure();
    //reset
    void reset(void);
    //add packet size
    double add(uint64_t size);

private:
    double calc_MBsec(uint32_t dtime_msec,
                     uint64_t dbytes);

public:
   bool      m_start;
   uint32_t  m_last_time_msec;
   uint64_t  m_last_bytes;
   double     m_last_result;
};


class CFlowGenList;

typedef uint32_t flow_id_t;


class CTcpSeq {
public:
    CTcpSeq (){
        client_seq_delta = 0;
        server_seq_delta = 0;
        server_seq_init=false;
    };
    void update(uint8_t *p, CFlowPktInfo *pkt_info, int16_t s_size);
private:
    uint32_t       client_seq_delta;  /* Delta to TCP seq number for client */
    uint32_t       server_seq_delta;  /* Delta to TCP seq number for server */
    bool           server_seq_init;  /* TCP seq been init for server? */
};




/////////////////////////////////////////////////////////////////////////////////
/* per thread info  */
class CFlowGenListPerThread {

public:


    friend class CNodeGenerator;
    friend class CPluginCallbackSimple;
    friend class CCapFileFlowInfo;

    typedef  CGenericMap<flow_id_t,CGenNode> flow_id_node_t;

    bool Create(uint32_t           thread_id,
                uint32_t           core_id,
                CFlowGenList  *    flow_list,
                uint32_t           max_threads);
    void Delete();

    void set_terminate_mode(bool is_terminate){
        m_terminated_by_master =is_terminate;
    }
    bool is_terminated_by_master(){
        return (m_terminated_by_master);
    }

    void set_vif(CVirtualIF * v_if){
        m_node_gen.set_vif(v_if);
    }

    void flush_tx_queue() {
        m_node_gen.m_v_if->flush_tx_queue();
    }

    void tickle() {
        m_monitor.tickle();
    }

    template<bool TEARDOWN>
    inline void on_flow_tick(CGenNode *node);


    /* return the dual port ID this thread is attached to in 4 ports configuration
       there are 2 dual-ports

      thread 0 - dual 0
      thread 1 - dual 1

      thread 2 - dual 0
      thread 3 - dual 1

     */
    uint32_t getDualPortId();
public :
    double get_total_kcps();
    double get_total_kcps(pool_index_t pool_idx, bool is_client);
    double get_delta_flow_is_sec();
    double get_longest_flow();
    double get_longest_flow(pool_index_t pool_idx, bool is_client);
    void inc_current_template(void);
    int generate_flows_roundrobin(bool *done);
    int reschedule_flow(CGenNode *node);


    inline CGenNode * create_node(void);

    inline CGenNodeStateless * create_node_sl(void){
        return ((CGenNodeStateless*)create_node() );
    }

    inline CGenNodePCAP * allocate_pcap_node(void) {
        return ((CGenNodePCAP*)create_node());
    }

    inline void free_node(CGenNode *p);
    inline void free_last_flow_node(CGenNode *p);



public:
    void Clean();
    void start_generate_stateful(std::string erf_file_name,CPreviewMode &preview);
    void start_stateless_daemon(CPreviewMode &preview);

    void start_stateless_daemon_simulation();

    /* open a file for simulation */
    void start_stateless_simulation_file(std::string erf_file_name,CPreviewMode &preview, uint64_t limit = 0);
    /* close a file for simulation */
    void stop_stateless_simulation_file();

    /* return true if we need to shedule next_stream,  */
    bool  set_stateless_next_node( CGenNodeStateless * cur_node,
                                   CGenNodeStateless * next_node);

    void stop_stateless_traffic(uint8_t port_id) { 
        m_stateless_dp_info.stop_traffic(port_id, false, 0);
    }

    /**
     * return true if a core currently has some pending CP 
     * messages 
     */
    bool are_any_pending_cp_messages() {
        if (get_is_stateless()) {
            return m_stateless_dp_info.are_any_pending_cp_messages();
        } else {
            /* for stateful this is always false */
            return false;
        }
    }

    /**
     * a core provides services for two interfaces
     * it can either be idle, active for one port 
     * or active for both 
     */
    bool is_port_active(uint8_t port_id) {
        /* for stateful (batch) core is always active,
           for stateless relay the query to the next level
         */
        if (get_is_stateless()) {
            return m_stateless_dp_info.is_port_active(port_id);
        } else {
            return true;
        }
    }


    /**
     * returns the two ports associated with this core
     * 
     */
    void get_port_ids(uint8_t &p1, uint8_t &p2) {
        p1 = 2 * getDualPortId();
        p2 = p1 + 1;
    }

    void Dump(FILE *fd);
    void DumpCsv(FILE *fd);
    void DumpStats(FILE *fd);
    void Update(void){
        m_cpu_cp_u.Update();
    }
    double getCpuUtil(void){
        return ( m_cpu_cp_u.GetVal());
    }

    
    bool check_msgs();
    
private:
    
    FORCE_NO_INLINE void   no_memory_error();

    bool check_msgs_from_rx();
    
    void handle_nat_msg(CGenNodeNatInfo * msg);
    void handle_latency_pkt_msg(CGenNodeLatencyPktInfo * msg);

    void terminate_nat_flows(CGenNode *node);


    void init_from_global();
    void defer_client_port_free(CGenNode *p);
    void defer_client_port_free(bool is_tcp,uint32_t c_ip,uint16_t port,
                                pool_index_t pool_idx, CTupleGeneratorSmart*gen);


    FORCE_NO_INLINE void   handler_defer_job(CGenNode *p);
    FORCE_NO_INLINE void   handler_defer_job_flush(void);


    inline CGenNodeDeferPort     * get_tcp_defer(void){
        if (m_tcp_dpc==0) {
            m_tcp_dpc =(CGenNodeDeferPort     *)create_node();
            m_tcp_dpc->init();
        }
        return (m_tcp_dpc);
    }

    inline CGenNodeDeferPort     * get_udp_defer(void){
        if (m_udp_dpc==0) {
            m_udp_dpc =(CGenNodeDeferPort     *)create_node();
            m_udp_dpc->init();
        }
        return (m_udp_dpc);
    }

private:
     FORCE_NO_INLINE void associate(uint32_t fid,CGenNode *     node ){
         assert(m_flow_id_to_node_lookup.lookup(fid)==0);
        m_stats.m_nat_lookup_add_flow_id++;
        m_flow_id_to_node_lookup.add(fid,node);
    }

public:
    uint32_t                         m_thread_id; /* virtual */
    uint32_t                         m_core_id;   /* phsical */

    uint32_t                         m_max_threads;
    CFlowGenList                *    m_flow_list;
    rte_mempool_t *                  m_node_pool;

    std::vector<CFlowGeneratorRecPerThread *> m_cap_gen;

    CFlowsYamlInfo                   m_yaml_info;

    CTupleGeneratorSmart             m_smart_gen;

    TrexMonitor                      m_monitor;

public:
    CNodeGenerator                   m_node_gen;
    CNATimerWheel                    m_tw;

public:
    uint32_t                         m_cur_template;
    uint32_t                         m_non_active_nodes; /* the number of non active nodes -> nodes that try to stop somthing */
    uint64_t                         m_cur_flow_id;
    double                           m_cur_time_sec;
    double                           m_stop_time_sec;

    CPreviewMode                     m_preview_mode;
public:
    CFlowGenStats                    m_stats;
    CBwMeasure                       m_mb_sec;
    CCpuUtlDp                        m_cpu_dp_u;
    CCpuUtlCp                        m_cpu_cp_u;

private:
    CGenNodeDeferPort     *          m_tcp_dpc;
    CGenNodeDeferPort     *          m_udp_dpc;

    CNodeRing *                      m_ring_from_rx; /* ring rx thread -> dp */
    CNodeRing *                      m_ring_to_rx;   /* ring dp -> rx thread */

    flow_id_node_t                   m_flow_id_to_node_lookup;

    TrexStatelessDpCore              m_stateless_dp_info;
    bool                             m_terminated_by_master;

private:
    uint8_t                 m_cacheline_pad[RTE_CACHE_LINE_SIZE][19]; // improve prefech
} __rte_cache_aligned ;

inline CGenNode * CFlowGenListPerThread::create_node(void){
    CGenNode * res;
    if ( unlikely (rte_mempool_sc_get(m_node_pool, (void **)&res) <0) ){
        no_memory_error();
        return (0);
    }
    return (res);
}



inline void CFlowGenListPerThread::free_node(CGenNode *p){
    p->free_base();
    rte_mempool_sp_put(m_node_pool, p);
}

inline void CFlowGenListPerThread::free_last_flow_node(CGenNode *p){
    m_stats.m_total_close_flows +=p->m_flow_info->get_total_flows();

    uint8_t plugin_id =p->get_plugin_id();
    if ( plugin_id ) {
        /* free memory of the plugin */
        on_node_last(plugin_id,p);
    }
    defer_client_port_free(p);
    free_node( p);
}


class CFlowGenList {

public:
    bool Create();
    void Delete();
    void Clean();
public:
    void generate_p_thread_info(uint32_t num_threads);
    void clean_p_thread_info(void);

public:

    int load_from_yaml(std::string csv_file,uint32_t num_threads);
    int load_client_config_file(std::string file_name);
    void set_client_config_tuple_gen_info(CTupleGenYamlInfo * tg);
    void get_client_cfg_ip_list(std::vector<ClientCfgCompactEntry *> &ret);
    void set_client_config_resolved_macs(CManyIPInfo &pretest_result);
    void dump_client_config(FILE *fd);

public:
    void Dump(FILE *fd);
    void DumpCsv(FILE *fd);
    void DumpPktSize();
    void UpdateFast();
    double GetCpuUtil();
    double GetCpuUtilRaw();

public:
    /* update ipg in a way for */ 
    int update_active_flows(uint32_t active_flows);
    double get_worse_case_active_flows();

    double get_total_kcps();
    double get_total_pps();
    double get_total_tx_bps();
    uint32_t get_total_repeat_flows();
    double get_delta_flow_is_sec();

public:
    std::vector<CFlowGeneratorRec *>        m_cap_gen;   /* global info */
    CFlowsYamlInfo                          m_yaml_info; /* global yaml*/
    std::vector<CFlowGenListPerThread   *>  m_threads_info;
    ClientCfgDB                             m_client_config_info;
};

inline void CFlowGeneratorRecPerThread::generate_flow(CNodeGenerator * gen,
                                                      dsec_t time,
                                                      uint64_t flow_id,
                                                      CGenNode * node){

    m_flow_info->generate_flow(&tuple_gen,
                               gen,
                               time,
                               flow_id,
                               m_info,
                               node);
}

inline bool CGenNode::is_responder_pkt(){
    return ( m_pkt_info->m_pkt_indication.m_desc.IsInitSide() ?false:true );
}

inline bool CGenNode::is_initiator_pkt(){
    return ( m_pkt_info->m_pkt_indication.m_desc.IsInitSide() ?true:false );
}



inline uint16_t CGenNode::get_template_id(){
    return ( m_pkt_info->m_pkt_indication.m_desc.getId()  );
}


inline bool CGenNode::is_last_in_flow(){
    return ( m_pkt_info->m_pkt_indication.m_desc.IsLastPkt());
}

inline bool CGenNode::is_repeat_flow(){
    return ( m_template_info->m_limit_was_set);
}


inline void CGenNode::update_next_pkt_in_flow_as(void){

    m_time     += m_pkt_info->m_pkt_indication.m_cap_ipg;
    uint32_t pkt_index   = m_pkt_info->m_pkt_indication.m_packet->pkt_cnt;
    pkt_index++;
    m_pkt_info = m_flow_info->GetPacket((pkt_index-1));
}


inline uint32_t CGenNode::update_next_pkt_in_flow_both(void){
    m_time     += m_pkt_info->m_pkt_indication.m_cap_ipg;
    uint32_t dticks = m_pkt_info->m_pkt_indication.m_ticks;
    uint32_t pkt_index   = m_pkt_info->m_pkt_indication.m_packet->pkt_cnt;
    pkt_index++;
    m_pkt_info = m_flow_info->GetPacket((pkt_index-1));
    return (dticks);
}


inline uint32_t CGenNode::update_next_pkt_in_flow_tw(void){

        uint32_t dticks = m_pkt_info->m_pkt_indication.m_ticks;
        uint32_t pkt_index   = m_pkt_info->m_pkt_indication.m_packet->pkt_cnt;
        pkt_index++;
        m_pkt_info = m_flow_info->GetPacket((pkt_index-1));
        return (dticks);
}

inline void CGenNode::reset_pkt_in_flow(void){
        m_pkt_info = m_flow_info->GetPacket(0);
}

inline void CGenNode::replace_tuple(void){
    m_pkt_info->replace_tuple(this);
}

enum MINVM_PLUGIN_ID{
    mpRTSP=1,
    mpSIP_VOICE=2,
    mpDYN_PYLOAD=3,
    mpAVL_HTTP_BROWSIN=4  /* this is a way to change the host ip by client ip */
};

class CPluginCallback {
public:
    virtual ~CPluginCallback(){
    }
    virtual void on_node_first(uint8_t plugin_id,CGenNode *     node,CFlowYamlInfo *  template_info, CTupleTemplateGeneratorSmart * tuple_gen,CFlowGenListPerThread  * flow_gen) =0;
    virtual void on_node_last(uint8_t plugin_id,CGenNode *     node)=0;
    virtual rte_mbuf_t * on_node_generate_mbuf(uint8_t plugin_id,CGenNode *     node,CFlowPktInfo * pkt_info)=0;
public:
    static CPluginCallback * callback;
};

class CPluginCallbackSimple : public CPluginCallback {
public:
    virtual void on_node_first(uint8_t plugin_id,CGenNode *     node,
                               CFlowYamlInfo *  template_info,
                               CTupleTemplateGeneratorSmart * tuple_gen,
                               CFlowGenListPerThread  * flow_gen);
    virtual void on_node_last(uint8_t plugin_id,CGenNode *     node);
    virtual rte_mbuf_t * on_node_generate_mbuf(uint8_t plugin_id,CGenNode *     node,CFlowPktInfo * pkt_info);

private:
    rte_mbuf_t * rtsp_plugin(uint8_t plugin_id,CGenNode *     node,CFlowPktInfo * pkt_info);
    rte_mbuf_t * sip_voice_plugin(uint8_t plugin_id,CGenNode *     node,CFlowPktInfo * pkt_info);
    rte_mbuf_t * dyn_pyload_plugin(uint8_t plugin_id,CGenNode *     node,CFlowPktInfo * pkt_info);
    rte_mbuf_t * http_plugin(uint8_t plugin_id,CGenNode *     node,CFlowPktInfo * pkt_info);

};


inline bool CGenNode::can_cache_mbuf(void){
    if ( is_repeat_flow() && ( m_flow_info->Size()==1 ) ){
        return (true);
    }else{
        return (false);
    }
}


/* direction for ip addr SERVER put tuple from server side client put addr of client side */
inline  pkt_dir_t CGenNode::cur_pkt_ip_addr_dir(){

    CFlowPktInfo *  lp=m_pkt_info;
    bool init_from_server=get_is_initiator_start_from_server_with_server_addr();
    bool is_init=lp->m_pkt_indication.m_desc.IsInitSide() ^ init_from_server;
    return ( is_init ?CLIENT_SIDE:SERVER_SIDE);
}

/* direction for TCP/UDP port */
inline  pkt_dir_t CGenNode::cur_pkt_port_addr_dir(){
    CFlowPktInfo *  lp=m_pkt_info;
    bool is_init=lp->m_pkt_indication.m_desc.IsInitSide() ;
    return ( is_init ?CLIENT_SIDE:SERVER_SIDE);
}
/* from which interface dir to get out */
inline  pkt_dir_t CGenNode::cur_interface_dir(){

    CFlowPktInfo *  lp=m_pkt_info;

    bool init_from_server=(get_is_initiator_start_from_server()||
                            get_is_initiator_start_from_server_with_server_addr());
    bool is_init=lp->m_pkt_indication.m_desc.IsInitSide() ^ init_from_server;

    if (get_is_all_flow_from_same_dir()) {
        return (is_eligible_from_server_side()?SERVER_SIDE:CLIENT_SIDE);
    }else{
        return ( is_init ?CLIENT_SIDE:SERVER_SIDE);
    }
}

/* Itay: move this to a better place (common for RX STL and RX STF) */
class CRXCoreIgnoreStat {
    friend class CCPortLatency;
    friend class CLatencyManager;
    friend class RXGratARP;
 public:
    inline CRXCoreIgnoreStat operator- (const CRXCoreIgnoreStat &t_in) const {
        CRXCoreIgnoreStat t_out;
        t_out.m_tx_arp = this->m_tx_arp - t_in.m_tx_arp;
        t_out.m_tx_ipv6_n_solic = this->m_tx_ipv6_n_solic - t_in.m_tx_ipv6_n_solic;
        t_out.m_tot_bytes = this->m_tot_bytes - t_in.m_tot_bytes;
        return t_out;
    }
    uint64_t get_tx_bytes() {return m_tot_bytes;}
    uint64_t get_tx_pkts() {return m_tx_arp + m_tx_ipv6_n_solic;}
    uint64_t get_tx_arp() {return m_tx_arp;}
    uint64_t get_tx_n_solic() {return m_tx_ipv6_n_solic;}
    void clear() {
        m_tx_arp = 0;
        m_tx_ipv6_n_solic = 0;
        m_tot_bytes = 0;
    }

 private:
    uint64_t m_tx_arp;
    uint64_t m_tx_ipv6_n_solic;
    uint64_t m_tot_bytes;
};

static_assert(sizeof(CGenNodeNatInfo) == sizeof(CGenNode), "sizeof(CGenNodeNatInfo) != sizeof(CGenNode)" );
static_assert(sizeof(CGenNodeLatencyPktInfo) == sizeof(CGenNode), "sizeof(CGenNodeLatencyPktInfo) != sizeof(CGenNode)" );

#endif