examples/ipsec-secgw: update eth header during route lookup
[dpdk.git] / examples / ipsec-secgw / ipsec-secgw.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2016 Intel Corporation
3  */
4
5 #include <stdbool.h>
6 #include <stdio.h>
7 #include <stdlib.h>
8 #include <stdint.h>
9 #include <inttypes.h>
10 #include <sys/types.h>
11 #include <netinet/in.h>
12 #include <netinet/ip.h>
13 #include <netinet/ip6.h>
14 #include <string.h>
15 #include <sys/queue.h>
16 #include <stdarg.h>
17 #include <errno.h>
18 #include <signal.h>
19 #include <getopt.h>
20
21 #include <rte_common.h>
22 #include <rte_bitmap.h>
23 #include <rte_byteorder.h>
24 #include <rte_log.h>
25 #include <rte_eal.h>
26 #include <rte_launch.h>
27 #include <rte_cycles.h>
28 #include <rte_prefetch.h>
29 #include <rte_lcore.h>
30 #include <rte_per_lcore.h>
31 #include <rte_branch_prediction.h>
32 #include <rte_interrupts.h>
33 #include <rte_random.h>
34 #include <rte_debug.h>
35 #include <rte_ether.h>
36 #include <rte_ethdev.h>
37 #include <rte_mempool.h>
38 #include <rte_mbuf.h>
39 #include <rte_acl.h>
40 #include <rte_lpm.h>
41 #include <rte_lpm6.h>
42 #include <rte_hash.h>
43 #include <rte_jhash.h>
44 #include <rte_cryptodev.h>
45 #include <rte_security.h>
46 #include <rte_eventdev.h>
47 #include <rte_ip.h>
48 #include <rte_ip_frag.h>
49 #include <rte_alarm.h>
50 #include <rte_telemetry.h>
51
52 #include "event_helper.h"
53 #include "flow.h"
54 #include "ipsec.h"
55 #include "ipsec_worker.h"
56 #include "parser.h"
57 #include "sad.h"
58
59 volatile bool force_quit;
60
61 #define MAX_JUMBO_PKT_LEN  9600
62
63 #define MEMPOOL_CACHE_SIZE 256
64
65 #define CDEV_QUEUE_DESC 2048
66 #define CDEV_MAP_ENTRIES 16384
67 #define CDEV_MP_CACHE_SZ 64
68 #define CDEV_MP_CACHE_MULTIPLIER 1.5 /* from rte_mempool.c */
69 #define MAX_QUEUE_PAIRS 1
70
71 #define BURST_TX_DRAIN_US 100 /* TX drain every ~100us */
72
73 #define MAX_LCORE_PARAMS 1024
74
75 /*
76  * Configurable number of RX/TX ring descriptors
77  */
78 #define IPSEC_SECGW_RX_DESC_DEFAULT 1024
79 #define IPSEC_SECGW_TX_DESC_DEFAULT 1024
80 static uint16_t nb_rxd = IPSEC_SECGW_RX_DESC_DEFAULT;
81 static uint16_t nb_txd = IPSEC_SECGW_TX_DESC_DEFAULT;
82
83 #define ETHADDR_TO_UINT64(addr) __BYTES_TO_UINT64( \
84                 (addr)->addr_bytes[0], (addr)->addr_bytes[1], \
85                 (addr)->addr_bytes[2], (addr)->addr_bytes[3], \
86                 (addr)->addr_bytes[4], (addr)->addr_bytes[5], \
87                 0, 0)
88
89 #define FRAG_TBL_BUCKET_ENTRIES 4
90 #define MAX_FRAG_TTL_NS         (10LL * NS_PER_S)
91
92 #define MTU_TO_FRAMELEN(x)      ((x) + RTE_ETHER_HDR_LEN + RTE_ETHER_CRC_LEN)
93
94 struct ethaddr_info ethaddr_tbl[RTE_MAX_ETHPORTS] = {
95         { 0, ETHADDR(0x00, 0x16, 0x3e, 0x7e, 0x94, 0x9a) },
96         { 0, ETHADDR(0x00, 0x16, 0x3e, 0x22, 0xa1, 0xd9) },
97         { 0, ETHADDR(0x00, 0x16, 0x3e, 0x08, 0x69, 0x26) },
98         { 0, ETHADDR(0x00, 0x16, 0x3e, 0x49, 0x9e, 0xdd) }
99 };
100
101 struct flow_info flow_info_tbl[RTE_MAX_ETHPORTS];
102
103 #define CMD_LINE_OPT_CONFIG             "config"
104 #define CMD_LINE_OPT_SINGLE_SA          "single-sa"
105 #define CMD_LINE_OPT_CRYPTODEV_MASK     "cryptodev_mask"
106 #define CMD_LINE_OPT_TRANSFER_MODE      "transfer-mode"
107 #define CMD_LINE_OPT_SCHEDULE_TYPE      "event-schedule-type"
108 #define CMD_LINE_OPT_RX_OFFLOAD         "rxoffload"
109 #define CMD_LINE_OPT_TX_OFFLOAD         "txoffload"
110 #define CMD_LINE_OPT_REASSEMBLE         "reassemble"
111 #define CMD_LINE_OPT_MTU                "mtu"
112 #define CMD_LINE_OPT_FRAG_TTL           "frag-ttl"
113 #define CMD_LINE_OPT_EVENT_VECTOR       "event-vector"
114 #define CMD_LINE_OPT_VECTOR_SIZE        "vector-size"
115 #define CMD_LINE_OPT_VECTOR_TIMEOUT     "vector-tmo"
116 #define CMD_LINE_OPT_VECTOR_POOL_SZ     "vector-pool-sz"
117 #define CMD_LINE_OPT_PER_PORT_POOL      "per-port-pool"
118
119 #define CMD_LINE_ARG_EVENT      "event"
120 #define CMD_LINE_ARG_POLL       "poll"
121 #define CMD_LINE_ARG_ORDERED    "ordered"
122 #define CMD_LINE_ARG_ATOMIC     "atomic"
123 #define CMD_LINE_ARG_PARALLEL   "parallel"
124
125 enum {
126         /* long options mapped to a short option */
127
128         /* first long only option value must be >= 256, so that we won't
129          * conflict with short options
130          */
131         CMD_LINE_OPT_MIN_NUM = 256,
132         CMD_LINE_OPT_CONFIG_NUM,
133         CMD_LINE_OPT_SINGLE_SA_NUM,
134         CMD_LINE_OPT_CRYPTODEV_MASK_NUM,
135         CMD_LINE_OPT_TRANSFER_MODE_NUM,
136         CMD_LINE_OPT_SCHEDULE_TYPE_NUM,
137         CMD_LINE_OPT_RX_OFFLOAD_NUM,
138         CMD_LINE_OPT_TX_OFFLOAD_NUM,
139         CMD_LINE_OPT_REASSEMBLE_NUM,
140         CMD_LINE_OPT_MTU_NUM,
141         CMD_LINE_OPT_FRAG_TTL_NUM,
142         CMD_LINE_OPT_EVENT_VECTOR_NUM,
143         CMD_LINE_OPT_VECTOR_SIZE_NUM,
144         CMD_LINE_OPT_VECTOR_TIMEOUT_NUM,
145         CMD_LINE_OPT_VECTOR_POOL_SZ_NUM,
146         CMD_LINE_OPT_PER_PORT_POOL_NUM,
147 };
148
149 static const struct option lgopts[] = {
150         {CMD_LINE_OPT_CONFIG, 1, 0, CMD_LINE_OPT_CONFIG_NUM},
151         {CMD_LINE_OPT_SINGLE_SA, 1, 0, CMD_LINE_OPT_SINGLE_SA_NUM},
152         {CMD_LINE_OPT_CRYPTODEV_MASK, 1, 0, CMD_LINE_OPT_CRYPTODEV_MASK_NUM},
153         {CMD_LINE_OPT_TRANSFER_MODE, 1, 0, CMD_LINE_OPT_TRANSFER_MODE_NUM},
154         {CMD_LINE_OPT_SCHEDULE_TYPE, 1, 0, CMD_LINE_OPT_SCHEDULE_TYPE_NUM},
155         {CMD_LINE_OPT_RX_OFFLOAD, 1, 0, CMD_LINE_OPT_RX_OFFLOAD_NUM},
156         {CMD_LINE_OPT_TX_OFFLOAD, 1, 0, CMD_LINE_OPT_TX_OFFLOAD_NUM},
157         {CMD_LINE_OPT_REASSEMBLE, 1, 0, CMD_LINE_OPT_REASSEMBLE_NUM},
158         {CMD_LINE_OPT_MTU, 1, 0, CMD_LINE_OPT_MTU_NUM},
159         {CMD_LINE_OPT_FRAG_TTL, 1, 0, CMD_LINE_OPT_FRAG_TTL_NUM},
160         {CMD_LINE_OPT_EVENT_VECTOR, 0, 0, CMD_LINE_OPT_EVENT_VECTOR_NUM},
161         {CMD_LINE_OPT_VECTOR_SIZE, 1, 0, CMD_LINE_OPT_VECTOR_SIZE_NUM},
162         {CMD_LINE_OPT_VECTOR_TIMEOUT, 1, 0, CMD_LINE_OPT_VECTOR_TIMEOUT_NUM},
163         {CMD_LINE_OPT_VECTOR_POOL_SZ, 1, 0, CMD_LINE_OPT_VECTOR_POOL_SZ_NUM},
164         {CMD_LINE_OPT_PER_PORT_POOL, 0, 0, CMD_LINE_OPT_PER_PORT_POOL_NUM},
165         {NULL, 0, 0, 0}
166 };
167
168 uint32_t unprotected_port_mask;
169 uint32_t single_sa_idx;
170 /* mask of enabled ports */
171 static uint32_t enabled_port_mask;
172 static uint64_t enabled_cryptodev_mask = UINT64_MAX;
173 static int32_t promiscuous_on = 1;
174 static int32_t numa_on = 1; /**< NUMA is enabled by default. */
175 static uint32_t nb_lcores;
176 static uint32_t single_sa;
177 uint32_t nb_bufs_in_pool;
178
179 /*
180  * RX/TX HW offload capabilities to enable/use on ethernet ports.
181  * By default all capabilities are enabled.
182  */
183 static uint64_t dev_rx_offload = UINT64_MAX;
184 static uint64_t dev_tx_offload = UINT64_MAX;
185
186 /*
187  * global values that determine multi-seg policy
188  */
189 uint32_t frag_tbl_sz;
190 static uint32_t frame_buf_size = RTE_MBUF_DEFAULT_BUF_SIZE;
191 uint32_t mtu_size = RTE_ETHER_MTU;
192 static uint64_t frag_ttl_ns = MAX_FRAG_TTL_NS;
193 static uint32_t stats_interval;
194
195 /* application wide librte_ipsec/SA parameters */
196 struct app_sa_prm app_sa_prm = {
197                         .enable = 0,
198                         .cache_sz = SA_CACHE_SZ,
199                         .udp_encap = 0
200                 };
201 static const char *cfgfile;
202
203 struct lcore_params {
204         uint16_t port_id;
205         uint8_t queue_id;
206         uint8_t lcore_id;
207 } __rte_cache_aligned;
208
209 static struct lcore_params lcore_params_array[MAX_LCORE_PARAMS];
210
211 static struct lcore_params *lcore_params;
212 static uint16_t nb_lcore_params;
213
214 static struct rte_hash *cdev_map_in;
215 static struct rte_hash *cdev_map_out;
216
217 struct lcore_conf lcore_conf[RTE_MAX_LCORE];
218
219 static struct rte_eth_conf port_conf = {
220         .rxmode = {
221                 .mq_mode        = RTE_ETH_MQ_RX_RSS,
222                 .split_hdr_size = 0,
223                 .offloads = RTE_ETH_RX_OFFLOAD_CHECKSUM,
224         },
225         .rx_adv_conf = {
226                 .rss_conf = {
227                         .rss_key = NULL,
228                         .rss_hf = RTE_ETH_RSS_IP | RTE_ETH_RSS_UDP |
229                                 RTE_ETH_RSS_TCP | RTE_ETH_RSS_SCTP,
230                 },
231         },
232         .txmode = {
233                 .mq_mode = RTE_ETH_MQ_TX_NONE,
234         },
235 };
236
237 struct socket_ctx socket_ctx[NB_SOCKETS];
238
239 bool per_port_pool;
240
241 /*
242  * Determine is multi-segment support required:
243  *  - either frame buffer size is smaller then mtu
244  *  - or reassemble support is requested
245  */
246 static int
247 multi_seg_required(void)
248 {
249         return (MTU_TO_FRAMELEN(mtu_size) + RTE_PKTMBUF_HEADROOM >
250                 frame_buf_size || frag_tbl_sz != 0);
251 }
252
253
254 struct ipsec_core_statistics core_statistics[RTE_MAX_LCORE];
255
256 /* Print out statistics on packet distribution */
257 static void
258 print_stats_cb(__rte_unused void *param)
259 {
260         uint64_t total_packets_dropped, total_packets_tx, total_packets_rx;
261         float burst_percent, rx_per_call, tx_per_call;
262         unsigned int coreid;
263
264         total_packets_dropped = 0;
265         total_packets_tx = 0;
266         total_packets_rx = 0;
267
268         const char clr[] = { 27, '[', '2', 'J', '\0' };
269         const char topLeft[] = { 27, '[', '1', ';', '1', 'H', '\0' };
270
271         /* Clear screen and move to top left */
272         printf("%s%s", clr, topLeft);
273
274         printf("\nCore statistics ====================================");
275
276         for (coreid = 0; coreid < RTE_MAX_LCORE; coreid++) {
277                 /* skip disabled cores */
278                 if (rte_lcore_is_enabled(coreid) == 0)
279                         continue;
280                 burst_percent = (float)(core_statistics[coreid].burst_rx * 100)/
281                                         core_statistics[coreid].rx;
282                 rx_per_call =  (float)(core_statistics[coreid].rx)/
283                                        core_statistics[coreid].rx_call;
284                 tx_per_call =  (float)(core_statistics[coreid].tx)/
285                                        core_statistics[coreid].tx_call;
286                 printf("\nStatistics for core %u ------------------------------"
287                            "\nPackets received: %20"PRIu64
288                            "\nPackets sent: %24"PRIu64
289                            "\nPackets dropped: %21"PRIu64
290                            "\nBurst percent: %23.2f"
291                            "\nPackets per Rx call: %17.2f"
292                            "\nPackets per Tx call: %17.2f",
293                            coreid,
294                            core_statistics[coreid].rx,
295                            core_statistics[coreid].tx,
296                            core_statistics[coreid].dropped,
297                            burst_percent,
298                            rx_per_call,
299                            tx_per_call);
300
301                 total_packets_dropped += core_statistics[coreid].dropped;
302                 total_packets_tx += core_statistics[coreid].tx;
303                 total_packets_rx += core_statistics[coreid].rx;
304         }
305         printf("\nAggregate statistics ==============================="
306                    "\nTotal packets received: %14"PRIu64
307                    "\nTotal packets sent: %18"PRIu64
308                    "\nTotal packets dropped: %15"PRIu64,
309                    total_packets_rx,
310                    total_packets_tx,
311                    total_packets_dropped);
312         printf("\n====================================================\n");
313
314         rte_eal_alarm_set(stats_interval * US_PER_S, print_stats_cb, NULL);
315 }
316
317 static void
318 split46_traffic(struct ipsec_traffic *trf, struct rte_mbuf *mb[], uint32_t num)
319 {
320         uint32_t i, n4, n6;
321         struct ip *ip;
322         struct rte_mbuf *m;
323
324         n4 = trf->ip4.num;
325         n6 = trf->ip6.num;
326
327         for (i = 0; i < num; i++) {
328
329                 m = mb[i];
330                 ip = rte_pktmbuf_mtod(m, struct ip *);
331
332                 if (ip->ip_v == IPVERSION) {
333                         trf->ip4.pkts[n4] = m;
334                         trf->ip4.data[n4] = rte_pktmbuf_mtod_offset(m,
335                                         uint8_t *, offsetof(struct ip, ip_p));
336                         n4++;
337                 } else if (ip->ip_v == IP6_VERSION) {
338                         trf->ip6.pkts[n6] = m;
339                         trf->ip6.data[n6] = rte_pktmbuf_mtod_offset(m,
340                                         uint8_t *,
341                                         offsetof(struct ip6_hdr, ip6_nxt));
342                         n6++;
343                 } else
344                         free_pkts(&m, 1);
345         }
346
347         trf->ip4.num = n4;
348         trf->ip6.num = n6;
349 }
350
351
352 static inline void
353 process_pkts_inbound(struct ipsec_ctx *ipsec_ctx,
354                 struct ipsec_traffic *traffic)
355 {
356         unsigned int lcoreid = rte_lcore_id();
357         uint16_t nb_pkts_in, n_ip4, n_ip6;
358
359         n_ip4 = traffic->ip4.num;
360         n_ip6 = traffic->ip6.num;
361
362         if (app_sa_prm.enable == 0) {
363                 nb_pkts_in = ipsec_inbound(ipsec_ctx, traffic->ipsec.pkts,
364                                 traffic->ipsec.num, MAX_PKT_BURST);
365                 split46_traffic(traffic, traffic->ipsec.pkts, nb_pkts_in);
366         } else {
367                 inbound_sa_lookup(ipsec_ctx->sa_ctx, traffic->ipsec.pkts,
368                         traffic->ipsec.saptr, traffic->ipsec.num);
369                 ipsec_process(ipsec_ctx, traffic);
370         }
371
372         inbound_sp_sa(ipsec_ctx->sp4_ctx,
373                 ipsec_ctx->sa_ctx, &traffic->ip4, n_ip4,
374                 &core_statistics[lcoreid].inbound.spd4);
375
376         inbound_sp_sa(ipsec_ctx->sp6_ctx,
377                 ipsec_ctx->sa_ctx, &traffic->ip6, n_ip6,
378                 &core_statistics[lcoreid].inbound.spd6);
379 }
380
381 static inline void
382 outbound_spd_lookup(struct sp_ctx *sp,
383                 struct traffic_type *ip,
384                 struct traffic_type *ipsec,
385                 struct ipsec_spd_stats *stats)
386 {
387         struct rte_mbuf *m;
388         uint32_t i, j, sa_idx;
389
390         if (ip->num == 0 || sp == NULL)
391                 return;
392
393         rte_acl_classify((struct rte_acl_ctx *)sp, ip->data, ip->res,
394                         ip->num, DEFAULT_MAX_CATEGORIES);
395
396         for (i = 0, j = 0; i < ip->num; i++) {
397                 m = ip->pkts[i];
398                 sa_idx = ip->res[i] - 1;
399
400                 if (unlikely(ip->res[i] == DISCARD)) {
401                         free_pkts(&m, 1);
402
403                         stats->discard++;
404                 } else if (unlikely(ip->res[i] == BYPASS)) {
405                         ip->pkts[j++] = m;
406
407                         stats->bypass++;
408                 } else {
409                         ipsec->res[ipsec->num] = sa_idx;
410                         ipsec->pkts[ipsec->num++] = m;
411
412                         stats->protect++;
413                 }
414         }
415         ip->num = j;
416 }
417
418 static inline void
419 process_pkts_outbound(struct ipsec_ctx *ipsec_ctx,
420                 struct ipsec_traffic *traffic)
421 {
422         struct rte_mbuf *m;
423         uint16_t idx, nb_pkts_out, i;
424         unsigned int lcoreid = rte_lcore_id();
425
426         /* Drop any IPsec traffic from protected ports */
427         free_pkts(traffic->ipsec.pkts, traffic->ipsec.num);
428
429         traffic->ipsec.num = 0;
430
431         outbound_spd_lookup(ipsec_ctx->sp4_ctx,
432                 &traffic->ip4, &traffic->ipsec,
433                 &core_statistics[lcoreid].outbound.spd4);
434
435         outbound_spd_lookup(ipsec_ctx->sp6_ctx,
436                 &traffic->ip6, &traffic->ipsec,
437                 &core_statistics[lcoreid].outbound.spd6);
438
439         if (app_sa_prm.enable == 0) {
440
441                 nb_pkts_out = ipsec_outbound(ipsec_ctx, traffic->ipsec.pkts,
442                                 traffic->ipsec.res, traffic->ipsec.num,
443                                 MAX_PKT_BURST);
444
445                 for (i = 0; i < nb_pkts_out; i++) {
446                         m = traffic->ipsec.pkts[i];
447                         struct ip *ip = rte_pktmbuf_mtod(m, struct ip *);
448                         if (ip->ip_v == IPVERSION) {
449                                 idx = traffic->ip4.num++;
450                                 traffic->ip4.pkts[idx] = m;
451                         } else {
452                                 idx = traffic->ip6.num++;
453                                 traffic->ip6.pkts[idx] = m;
454                         }
455                 }
456         } else {
457                 outbound_sa_lookup(ipsec_ctx->sa_ctx, traffic->ipsec.res,
458                         traffic->ipsec.saptr, traffic->ipsec.num);
459                 ipsec_process(ipsec_ctx, traffic);
460         }
461 }
462
463 static inline void
464 process_pkts_inbound_nosp(struct ipsec_ctx *ipsec_ctx,
465                 struct ipsec_traffic *traffic)
466 {
467         struct rte_mbuf *m;
468         uint32_t nb_pkts_in, i, idx;
469
470         if (app_sa_prm.enable == 0) {
471
472                 nb_pkts_in = ipsec_inbound(ipsec_ctx, traffic->ipsec.pkts,
473                                 traffic->ipsec.num, MAX_PKT_BURST);
474
475                 for (i = 0; i < nb_pkts_in; i++) {
476                         m = traffic->ipsec.pkts[i];
477                         struct ip *ip = rte_pktmbuf_mtod(m, struct ip *);
478                         if (ip->ip_v == IPVERSION) {
479                                 idx = traffic->ip4.num++;
480                                 traffic->ip4.pkts[idx] = m;
481                         } else {
482                                 idx = traffic->ip6.num++;
483                                 traffic->ip6.pkts[idx] = m;
484                         }
485                 }
486         } else {
487                 inbound_sa_lookup(ipsec_ctx->sa_ctx, traffic->ipsec.pkts,
488                         traffic->ipsec.saptr, traffic->ipsec.num);
489                 ipsec_process(ipsec_ctx, traffic);
490         }
491 }
492
493 static inline void
494 process_pkts_outbound_nosp(struct ipsec_ctx *ipsec_ctx,
495                 struct ipsec_traffic *traffic)
496 {
497         struct rte_mbuf *m;
498         uint32_t nb_pkts_out, i, n;
499         struct ip *ip;
500
501         /* Drop any IPsec traffic from protected ports */
502         free_pkts(traffic->ipsec.pkts, traffic->ipsec.num);
503
504         n = 0;
505
506         for (i = 0; i < traffic->ip4.num; i++) {
507                 traffic->ipsec.pkts[n] = traffic->ip4.pkts[i];
508                 traffic->ipsec.res[n++] = single_sa_idx;
509         }
510
511         for (i = 0; i < traffic->ip6.num; i++) {
512                 traffic->ipsec.pkts[n] = traffic->ip6.pkts[i];
513                 traffic->ipsec.res[n++] = single_sa_idx;
514         }
515
516         traffic->ip4.num = 0;
517         traffic->ip6.num = 0;
518         traffic->ipsec.num = n;
519
520         if (app_sa_prm.enable == 0) {
521
522                 nb_pkts_out = ipsec_outbound(ipsec_ctx, traffic->ipsec.pkts,
523                                 traffic->ipsec.res, traffic->ipsec.num,
524                                 MAX_PKT_BURST);
525
526                 /* They all sue the same SA (ip4 or ip6 tunnel) */
527                 m = traffic->ipsec.pkts[0];
528                 ip = rte_pktmbuf_mtod(m, struct ip *);
529                 if (ip->ip_v == IPVERSION) {
530                         traffic->ip4.num = nb_pkts_out;
531                         for (i = 0; i < nb_pkts_out; i++)
532                                 traffic->ip4.pkts[i] = traffic->ipsec.pkts[i];
533                 } else {
534                         traffic->ip6.num = nb_pkts_out;
535                         for (i = 0; i < nb_pkts_out; i++)
536                                 traffic->ip6.pkts[i] = traffic->ipsec.pkts[i];
537                 }
538         } else {
539                 outbound_sa_lookup(ipsec_ctx->sa_ctx, traffic->ipsec.res,
540                         traffic->ipsec.saptr, traffic->ipsec.num);
541                 ipsec_process(ipsec_ctx, traffic);
542         }
543 }
544
545 static inline void
546 process_pkts(struct lcore_conf *qconf, struct rte_mbuf **pkts,
547              uint8_t nb_pkts, uint16_t portid, struct rte_security_ctx *ctx)
548 {
549         struct ipsec_traffic traffic;
550
551         prepare_traffic(ctx, pkts, &traffic, nb_pkts);
552
553         if (unlikely(single_sa)) {
554                 if (is_unprotected_port(portid))
555                         process_pkts_inbound_nosp(&qconf->inbound, &traffic);
556                 else
557                         process_pkts_outbound_nosp(&qconf->outbound, &traffic);
558         } else {
559                 if (is_unprotected_port(portid))
560                         process_pkts_inbound(&qconf->inbound, &traffic);
561                 else
562                         process_pkts_outbound(&qconf->outbound, &traffic);
563         }
564
565         route4_pkts(qconf->rt4_ctx, traffic.ip4.pkts, traffic.ip4.num,
566                     qconf->outbound.ipv4_offloads, true);
567         route6_pkts(qconf->rt6_ctx, traffic.ip6.pkts, traffic.ip6.num);
568 }
569
570 static inline void
571 drain_crypto_buffers(struct lcore_conf *qconf)
572 {
573         uint32_t i;
574         struct ipsec_ctx *ctx;
575
576         /* drain inbound buffers*/
577         ctx = &qconf->inbound;
578         for (i = 0; i != ctx->nb_qps; i++) {
579                 if (ctx->tbl[i].len != 0)
580                         enqueue_cop_burst(ctx->tbl  + i);
581         }
582
583         /* drain outbound buffers*/
584         ctx = &qconf->outbound;
585         for (i = 0; i != ctx->nb_qps; i++) {
586                 if (ctx->tbl[i].len != 0)
587                         enqueue_cop_burst(ctx->tbl  + i);
588         }
589 }
590
591 static void
592 drain_inbound_crypto_queues(const struct lcore_conf *qconf,
593                 struct ipsec_ctx *ctx)
594 {
595         uint32_t n;
596         struct ipsec_traffic trf;
597         unsigned int lcoreid = rte_lcore_id();
598
599         if (app_sa_prm.enable == 0) {
600
601                 /* dequeue packets from crypto-queue */
602                 n = ipsec_inbound_cqp_dequeue(ctx, trf.ipsec.pkts,
603                         RTE_DIM(trf.ipsec.pkts));
604
605                 trf.ip4.num = 0;
606                 trf.ip6.num = 0;
607
608                 /* split traffic by ipv4-ipv6 */
609                 split46_traffic(&trf, trf.ipsec.pkts, n);
610         } else
611                 ipsec_cqp_process(ctx, &trf);
612
613         /* process ipv4 packets */
614         if (trf.ip4.num != 0) {
615                 inbound_sp_sa(ctx->sp4_ctx, ctx->sa_ctx, &trf.ip4, 0,
616                         &core_statistics[lcoreid].inbound.spd4);
617                 route4_pkts(qconf->rt4_ctx, trf.ip4.pkts, trf.ip4.num,
618                             qconf->outbound.ipv4_offloads, true);
619         }
620
621         /* process ipv6 packets */
622         if (trf.ip6.num != 0) {
623                 inbound_sp_sa(ctx->sp6_ctx, ctx->sa_ctx, &trf.ip6, 0,
624                         &core_statistics[lcoreid].inbound.spd6);
625                 route6_pkts(qconf->rt6_ctx, trf.ip6.pkts, trf.ip6.num);
626         }
627 }
628
629 static void
630 drain_outbound_crypto_queues(const struct lcore_conf *qconf,
631                 struct ipsec_ctx *ctx)
632 {
633         uint32_t n;
634         struct ipsec_traffic trf;
635
636         if (app_sa_prm.enable == 0) {
637
638                 /* dequeue packets from crypto-queue */
639                 n = ipsec_outbound_cqp_dequeue(ctx, trf.ipsec.pkts,
640                         RTE_DIM(trf.ipsec.pkts));
641
642                 trf.ip4.num = 0;
643                 trf.ip6.num = 0;
644
645                 /* split traffic by ipv4-ipv6 */
646                 split46_traffic(&trf, trf.ipsec.pkts, n);
647         } else
648                 ipsec_cqp_process(ctx, &trf);
649
650         /* process ipv4 packets */
651         if (trf.ip4.num != 0)
652                 route4_pkts(qconf->rt4_ctx, trf.ip4.pkts, trf.ip4.num,
653                             qconf->outbound.ipv4_offloads, true);
654
655         /* process ipv6 packets */
656         if (trf.ip6.num != 0)
657                 route6_pkts(qconf->rt6_ctx, trf.ip6.pkts, trf.ip6.num);
658 }
659
660 /* main processing loop */
661 void
662 ipsec_poll_mode_worker(void)
663 {
664         struct rte_mbuf *pkts[MAX_PKT_BURST];
665         uint32_t lcore_id;
666         uint64_t prev_tsc, diff_tsc, cur_tsc;
667         int32_t i, nb_rx;
668         uint16_t portid;
669         uint8_t queueid;
670         struct lcore_conf *qconf;
671         int32_t rc, socket_id;
672         const uint64_t drain_tsc = (rte_get_tsc_hz() + US_PER_S - 1)
673                         / US_PER_S * BURST_TX_DRAIN_US;
674         struct lcore_rx_queue *rxql;
675
676         prev_tsc = 0;
677         lcore_id = rte_lcore_id();
678         qconf = &lcore_conf[lcore_id];
679         rxql = qconf->rx_queue_list;
680         socket_id = rte_lcore_to_socket_id(lcore_id);
681
682         qconf->rt4_ctx = socket_ctx[socket_id].rt_ip4;
683         qconf->rt6_ctx = socket_ctx[socket_id].rt_ip6;
684         qconf->inbound.sp4_ctx = socket_ctx[socket_id].sp_ip4_in;
685         qconf->inbound.sp6_ctx = socket_ctx[socket_id].sp_ip6_in;
686         qconf->inbound.sa_ctx = socket_ctx[socket_id].sa_in;
687         qconf->inbound.cdev_map = cdev_map_in;
688         qconf->inbound.session_pool = socket_ctx[socket_id].session_pool;
689         qconf->inbound.session_priv_pool =
690                         socket_ctx[socket_id].session_priv_pool;
691         qconf->outbound.sp4_ctx = socket_ctx[socket_id].sp_ip4_out;
692         qconf->outbound.sp6_ctx = socket_ctx[socket_id].sp_ip6_out;
693         qconf->outbound.sa_ctx = socket_ctx[socket_id].sa_out;
694         qconf->outbound.cdev_map = cdev_map_out;
695         qconf->outbound.session_pool = socket_ctx[socket_id].session_pool;
696         qconf->outbound.session_priv_pool =
697                         socket_ctx[socket_id].session_priv_pool;
698         qconf->frag.pool_indir = socket_ctx[socket_id].mbuf_pool_indir;
699
700         rc = ipsec_sad_lcore_cache_init(app_sa_prm.cache_sz);
701         if (rc != 0) {
702                 RTE_LOG(ERR, IPSEC,
703                         "SAD cache init on lcore %u, failed with code: %d\n",
704                         lcore_id, rc);
705                 return;
706         }
707
708         if (qconf->nb_rx_queue == 0) {
709                 RTE_LOG(DEBUG, IPSEC, "lcore %u has nothing to do\n",
710                         lcore_id);
711                 return;
712         }
713
714         RTE_LOG(INFO, IPSEC, "entering main loop on lcore %u\n", lcore_id);
715
716         for (i = 0; i < qconf->nb_rx_queue; i++) {
717                 portid = rxql[i].port_id;
718                 queueid = rxql[i].queue_id;
719                 RTE_LOG(INFO, IPSEC,
720                         " -- lcoreid=%u portid=%u rxqueueid=%hhu\n",
721                         lcore_id, portid, queueid);
722         }
723
724         while (!force_quit) {
725                 cur_tsc = rte_rdtsc();
726
727                 /* TX queue buffer drain */
728                 diff_tsc = cur_tsc - prev_tsc;
729
730                 if (unlikely(diff_tsc > drain_tsc)) {
731                         drain_tx_buffers(qconf);
732                         drain_crypto_buffers(qconf);
733                         prev_tsc = cur_tsc;
734                 }
735
736                 for (i = 0; i < qconf->nb_rx_queue; ++i) {
737
738                         /* Read packets from RX queues */
739                         portid = rxql[i].port_id;
740                         queueid = rxql[i].queue_id;
741                         nb_rx = rte_eth_rx_burst(portid, queueid,
742                                         pkts, MAX_PKT_BURST);
743
744                         if (nb_rx > 0) {
745                                 core_stats_update_rx(nb_rx);
746                                 process_pkts(qconf, pkts, nb_rx, portid,
747                                              rxql->sec_ctx);
748                         }
749
750                         /* dequeue and process completed crypto-ops */
751                         if (is_unprotected_port(portid))
752                                 drain_inbound_crypto_queues(qconf,
753                                         &qconf->inbound);
754                         else
755                                 drain_outbound_crypto_queues(qconf,
756                                         &qconf->outbound);
757                 }
758         }
759 }
760
761 int
762 check_flow_params(uint16_t fdir_portid, uint8_t fdir_qid)
763 {
764         uint16_t i;
765         uint16_t portid;
766         uint8_t queueid;
767
768         for (i = 0; i < nb_lcore_params; ++i) {
769                 portid = lcore_params_array[i].port_id;
770                 if (portid == fdir_portid) {
771                         queueid = lcore_params_array[i].queue_id;
772                         if (queueid == fdir_qid)
773                                 break;
774                 }
775
776                 if (i == nb_lcore_params - 1)
777                         return -1;
778         }
779
780         return 1;
781 }
782
783 static int32_t
784 check_poll_mode_params(struct eh_conf *eh_conf)
785 {
786         uint8_t lcore;
787         uint16_t portid;
788         uint16_t i;
789         int32_t socket_id;
790
791         if (!eh_conf)
792                 return -EINVAL;
793
794         if (eh_conf->mode != EH_PKT_TRANSFER_MODE_POLL)
795                 return 0;
796
797         if (lcore_params == NULL) {
798                 printf("Error: No port/queue/core mappings\n");
799                 return -1;
800         }
801
802         for (i = 0; i < nb_lcore_params; ++i) {
803                 lcore = lcore_params[i].lcore_id;
804                 if (!rte_lcore_is_enabled(lcore)) {
805                         printf("error: lcore %hhu is not enabled in "
806                                 "lcore mask\n", lcore);
807                         return -1;
808                 }
809                 socket_id = rte_lcore_to_socket_id(lcore);
810                 if (socket_id != 0 && numa_on == 0) {
811                         printf("warning: lcore %hhu is on socket %d "
812                                 "with numa off\n",
813                                 lcore, socket_id);
814                 }
815                 portid = lcore_params[i].port_id;
816                 if ((enabled_port_mask & (1 << portid)) == 0) {
817                         printf("port %u is not enabled in port mask\n", portid);
818                         return -1;
819                 }
820                 if (!rte_eth_dev_is_valid_port(portid)) {
821                         printf("port %u is not present on the board\n", portid);
822                         return -1;
823                 }
824         }
825         return 0;
826 }
827
828 static uint8_t
829 get_port_nb_rx_queues(const uint16_t port)
830 {
831         int32_t queue = -1;
832         uint16_t i;
833
834         for (i = 0; i < nb_lcore_params; ++i) {
835                 if (lcore_params[i].port_id == port &&
836                                 lcore_params[i].queue_id > queue)
837                         queue = lcore_params[i].queue_id;
838         }
839         return (uint8_t)(++queue);
840 }
841
842 static int32_t
843 init_lcore_rx_queues(void)
844 {
845         uint16_t i, nb_rx_queue;
846         uint8_t lcore;
847
848         for (i = 0; i < nb_lcore_params; ++i) {
849                 lcore = lcore_params[i].lcore_id;
850                 nb_rx_queue = lcore_conf[lcore].nb_rx_queue;
851                 if (nb_rx_queue >= MAX_RX_QUEUE_PER_LCORE) {
852                         printf("error: too many queues (%u) for lcore: %u\n",
853                                         nb_rx_queue + 1, lcore);
854                         return -1;
855                 }
856                 lcore_conf[lcore].rx_queue_list[nb_rx_queue].port_id =
857                         lcore_params[i].port_id;
858                 lcore_conf[lcore].rx_queue_list[nb_rx_queue].queue_id =
859                         lcore_params[i].queue_id;
860                 lcore_conf[lcore].nb_rx_queue++;
861         }
862         return 0;
863 }
864
865 /* display usage */
866 static void
867 print_usage(const char *prgname)
868 {
869         fprintf(stderr, "%s [EAL options] --"
870                 " -p PORTMASK"
871                 " [-P]"
872                 " [-u PORTMASK]"
873                 " [-j FRAMESIZE]"
874                 " [-l]"
875                 " [-w REPLAY_WINDOW_SIZE]"
876                 " [-e]"
877                 " [-a]"
878                 " [-c]"
879                 " [-t STATS_INTERVAL]"
880                 " [-s NUMBER_OF_MBUFS_IN_PKT_POOL]"
881                 " -f CONFIG_FILE"
882                 " --config (port,queue,lcore)[,(port,queue,lcore)]"
883                 " [--single-sa SAIDX]"
884                 " [--cryptodev_mask MASK]"
885                 " [--transfer-mode MODE]"
886                 " [--event-schedule-type TYPE]"
887                 " [--" CMD_LINE_OPT_RX_OFFLOAD " RX_OFFLOAD_MASK]"
888                 " [--" CMD_LINE_OPT_TX_OFFLOAD " TX_OFFLOAD_MASK]"
889                 " [--" CMD_LINE_OPT_REASSEMBLE " REASSEMBLE_TABLE_SIZE]"
890                 " [--" CMD_LINE_OPT_MTU " MTU]"
891                 " [--event-vector]"
892                 " [--vector-size SIZE]"
893                 " [--vector-tmo TIMEOUT in ns]"
894                 "\n\n"
895                 "  -p PORTMASK: Hexadecimal bitmask of ports to configure\n"
896                 "  -P : Enable promiscuous mode\n"
897                 "  -u PORTMASK: Hexadecimal bitmask of unprotected ports\n"
898                 "  -j FRAMESIZE: Data buffer size, minimum (and default)\n"
899                 "     value: RTE_MBUF_DEFAULT_BUF_SIZE\n"
900                 "  -l enables code-path that uses librte_ipsec\n"
901                 "  -w REPLAY_WINDOW_SIZE specifies IPsec SQN replay window\n"
902                 "     size for each SA\n"
903                 "  -e enables ESN\n"
904                 "  -a enables SA SQN atomic behaviour\n"
905                 "  -c specifies inbound SAD cache size,\n"
906                 "     zero value disables the cache (default value: 128)\n"
907                 "  -t specifies statistics screen update interval,\n"
908                 "     zero disables statistics screen (default value: 0)\n"
909                 "  -s number of mbufs in packet pool, if not specified number\n"
910                 "     of mbufs will be calculated based on number of cores,\n"
911                 "     ports and crypto queues\n"
912                 "  -f CONFIG_FILE: Configuration file\n"
913                 "  --config (port,queue,lcore): Rx queue configuration. In poll\n"
914                 "                               mode determines which queues from\n"
915                 "                               which ports are mapped to which cores.\n"
916                 "                               In event mode this option is not used\n"
917                 "                               as packets are dynamically scheduled\n"
918                 "                               to cores by HW.\n"
919                 "  --single-sa SAIDX: In poll mode use single SA index for\n"
920                 "                     outbound traffic, bypassing the SP\n"
921                 "                     In event mode selects driver submode,\n"
922                 "                     SA index value is ignored\n"
923                 "  --cryptodev_mask MASK: Hexadecimal bitmask of the crypto\n"
924                 "                         devices to configure\n"
925                 "  --transfer-mode MODE\n"
926                 "               \"poll\"  : Packet transfer via polling (default)\n"
927                 "               \"event\" : Packet transfer via event device\n"
928                 "  --event-schedule-type TYPE queue schedule type, used only when\n"
929                 "                             transfer mode is set to event\n"
930                 "               \"ordered\"  : Ordered (default)\n"
931                 "               \"atomic\"   : Atomic\n"
932                 "               \"parallel\" : Parallel\n"
933                 "  --" CMD_LINE_OPT_RX_OFFLOAD
934                 ": bitmask of the RX HW offload capabilities to enable/use\n"
935                 "                         (RTE_ETH_RX_OFFLOAD_*)\n"
936                 "  --" CMD_LINE_OPT_TX_OFFLOAD
937                 ": bitmask of the TX HW offload capabilities to enable/use\n"
938                 "                         (RTE_ETH_TX_OFFLOAD_*)\n"
939                 "  --" CMD_LINE_OPT_REASSEMBLE " NUM"
940                 ": max number of entries in reassemble(fragment) table\n"
941                 "    (zero (default value) disables reassembly)\n"
942                 "  --" CMD_LINE_OPT_MTU " MTU"
943                 ": MTU value on all ports (default value: 1500)\n"
944                 "    outgoing packets with bigger size will be fragmented\n"
945                 "    incoming packets with bigger size will be discarded\n"
946                 "  --" CMD_LINE_OPT_FRAG_TTL " FRAG_TTL_NS"
947                 ": fragments lifetime in nanoseconds, default\n"
948                 "    and maximum value is 10.000.000.000 ns (10 s)\n"
949                 "  --event-vector enables event vectorization\n"
950                 "  --vector-size Max vector size (default value: 16)\n"
951                 "  --vector-tmo Max vector timeout in nanoseconds"
952                 "    (default value: 102400)\n"
953                 "  --" CMD_LINE_OPT_PER_PORT_POOL " Enable per port mbuf pool\n"
954                 "  --" CMD_LINE_OPT_VECTOR_POOL_SZ " Vector pool size\n"
955                 "                    (default value is based on mbuf count)\n"
956                 "\n",
957                 prgname);
958 }
959
960 static int
961 parse_mask(const char *str, uint64_t *val)
962 {
963         char *end;
964         unsigned long t;
965
966         errno = 0;
967         t = strtoul(str, &end, 0);
968         if (errno != 0 || end[0] != 0)
969                 return -EINVAL;
970
971         *val = t;
972         return 0;
973 }
974
975 static int32_t
976 parse_portmask(const char *portmask)
977 {
978         char *end = NULL;
979         unsigned long pm;
980
981         errno = 0;
982
983         /* parse hexadecimal string */
984         pm = strtoul(portmask, &end, 16);
985         if ((portmask[0] == '\0') || (end == NULL) || (*end != '\0'))
986                 return -1;
987
988         if ((pm == 0) && errno)
989                 return -1;
990
991         return pm;
992 }
993
994 static int64_t
995 parse_decimal(const char *str)
996 {
997         char *end = NULL;
998         uint64_t num;
999
1000         num = strtoull(str, &end, 10);
1001         if ((str[0] == '\0') || (end == NULL) || (*end != '\0')
1002                 || num > INT64_MAX)
1003                 return -1;
1004
1005         return num;
1006 }
1007
1008 static int32_t
1009 parse_config(const char *q_arg)
1010 {
1011         char s[256];
1012         const char *p, *p0 = q_arg;
1013         char *end;
1014         enum fieldnames {
1015                 FLD_PORT = 0,
1016                 FLD_QUEUE,
1017                 FLD_LCORE,
1018                 _NUM_FLD
1019         };
1020         unsigned long int_fld[_NUM_FLD];
1021         char *str_fld[_NUM_FLD];
1022         int32_t i;
1023         uint32_t size;
1024
1025         nb_lcore_params = 0;
1026
1027         while ((p = strchr(p0, '(')) != NULL) {
1028                 ++p;
1029                 p0 = strchr(p, ')');
1030                 if (p0 == NULL)
1031                         return -1;
1032
1033                 size = p0 - p;
1034                 if (size >= sizeof(s))
1035                         return -1;
1036
1037                 snprintf(s, sizeof(s), "%.*s", size, p);
1038                 if (rte_strsplit(s, sizeof(s), str_fld, _NUM_FLD, ',') !=
1039                                 _NUM_FLD)
1040                         return -1;
1041                 for (i = 0; i < _NUM_FLD; i++) {
1042                         errno = 0;
1043                         int_fld[i] = strtoul(str_fld[i], &end, 0);
1044                         if (errno != 0 || end == str_fld[i] || int_fld[i] > 255)
1045                                 return -1;
1046                 }
1047                 if (nb_lcore_params >= MAX_LCORE_PARAMS) {
1048                         printf("exceeded max number of lcore params: %hu\n",
1049                                 nb_lcore_params);
1050                         return -1;
1051                 }
1052                 lcore_params_array[nb_lcore_params].port_id =
1053                         (uint8_t)int_fld[FLD_PORT];
1054                 lcore_params_array[nb_lcore_params].queue_id =
1055                         (uint8_t)int_fld[FLD_QUEUE];
1056                 lcore_params_array[nb_lcore_params].lcore_id =
1057                         (uint8_t)int_fld[FLD_LCORE];
1058                 ++nb_lcore_params;
1059         }
1060         lcore_params = lcore_params_array;
1061         return 0;
1062 }
1063
1064 static void
1065 print_app_sa_prm(const struct app_sa_prm *prm)
1066 {
1067         printf("librte_ipsec usage: %s\n",
1068                 (prm->enable == 0) ? "disabled" : "enabled");
1069
1070         printf("replay window size: %u\n", prm->window_size);
1071         printf("ESN: %s\n", (prm->enable_esn == 0) ? "disabled" : "enabled");
1072         printf("SA flags: %#" PRIx64 "\n", prm->flags);
1073         printf("Frag TTL: %" PRIu64 " ns\n", frag_ttl_ns);
1074 }
1075
1076 static int
1077 parse_transfer_mode(struct eh_conf *conf, const char *optarg)
1078 {
1079         if (!strcmp(CMD_LINE_ARG_POLL, optarg))
1080                 conf->mode = EH_PKT_TRANSFER_MODE_POLL;
1081         else if (!strcmp(CMD_LINE_ARG_EVENT, optarg))
1082                 conf->mode = EH_PKT_TRANSFER_MODE_EVENT;
1083         else {
1084                 printf("Unsupported packet transfer mode\n");
1085                 return -EINVAL;
1086         }
1087
1088         return 0;
1089 }
1090
1091 static int
1092 parse_schedule_type(struct eh_conf *conf, const char *optarg)
1093 {
1094         struct eventmode_conf *em_conf = NULL;
1095
1096         /* Get eventmode conf */
1097         em_conf = conf->mode_params;
1098
1099         if (!strcmp(CMD_LINE_ARG_ORDERED, optarg))
1100                 em_conf->ext_params.sched_type = RTE_SCHED_TYPE_ORDERED;
1101         else if (!strcmp(CMD_LINE_ARG_ATOMIC, optarg))
1102                 em_conf->ext_params.sched_type = RTE_SCHED_TYPE_ATOMIC;
1103         else if (!strcmp(CMD_LINE_ARG_PARALLEL, optarg))
1104                 em_conf->ext_params.sched_type = RTE_SCHED_TYPE_PARALLEL;
1105         else {
1106                 printf("Unsupported queue schedule type\n");
1107                 return -EINVAL;
1108         }
1109
1110         return 0;
1111 }
1112
1113 static int32_t
1114 parse_args(int32_t argc, char **argv, struct eh_conf *eh_conf)
1115 {
1116         int opt;
1117         int64_t ret;
1118         char **argvopt;
1119         int32_t option_index;
1120         char *prgname = argv[0];
1121         int32_t f_present = 0;
1122         struct eventmode_conf *em_conf = NULL;
1123
1124         argvopt = argv;
1125
1126         while ((opt = getopt_long(argc, argvopt, "aelp:Pu:f:j:w:c:t:s:",
1127                                 lgopts, &option_index)) != EOF) {
1128
1129                 switch (opt) {
1130                 case 'p':
1131                         enabled_port_mask = parse_portmask(optarg);
1132                         if (enabled_port_mask == 0) {
1133                                 printf("invalid portmask\n");
1134                                 print_usage(prgname);
1135                                 return -1;
1136                         }
1137                         break;
1138                 case 'P':
1139                         printf("Promiscuous mode selected\n");
1140                         promiscuous_on = 1;
1141                         break;
1142                 case 'u':
1143                         unprotected_port_mask = parse_portmask(optarg);
1144                         if (unprotected_port_mask == 0) {
1145                                 printf("invalid unprotected portmask\n");
1146                                 print_usage(prgname);
1147                                 return -1;
1148                         }
1149                         break;
1150                 case 'f':
1151                         if (f_present == 1) {
1152                                 printf("\"-f\" option present more than "
1153                                         "once!\n");
1154                                 print_usage(prgname);
1155                                 return -1;
1156                         }
1157                         cfgfile = optarg;
1158                         f_present = 1;
1159                         break;
1160
1161                 case 's':
1162                         ret = parse_decimal(optarg);
1163                         if (ret < 0) {
1164                                 printf("Invalid number of buffers in a pool: "
1165                                         "%s\n", optarg);
1166                                 print_usage(prgname);
1167                                 return -1;
1168                         }
1169
1170                         nb_bufs_in_pool = ret;
1171                         break;
1172
1173                 case 'j':
1174                         ret = parse_decimal(optarg);
1175                         if (ret < RTE_MBUF_DEFAULT_BUF_SIZE ||
1176                                         ret > UINT16_MAX) {
1177                                 printf("Invalid frame buffer size value: %s\n",
1178                                         optarg);
1179                                 print_usage(prgname);
1180                                 return -1;
1181                         }
1182                         frame_buf_size = ret;
1183                         printf("Custom frame buffer size %u\n", frame_buf_size);
1184                         break;
1185                 case 'l':
1186                         app_sa_prm.enable = 1;
1187                         break;
1188                 case 'w':
1189                         app_sa_prm.window_size = parse_decimal(optarg);
1190                         break;
1191                 case 'e':
1192                         app_sa_prm.enable_esn = 1;
1193                         break;
1194                 case 'a':
1195                         app_sa_prm.enable = 1;
1196                         app_sa_prm.flags |= RTE_IPSEC_SAFLAG_SQN_ATOM;
1197                         break;
1198                 case 'c':
1199                         ret = parse_decimal(optarg);
1200                         if (ret < 0) {
1201                                 printf("Invalid SA cache size: %s\n", optarg);
1202                                 print_usage(prgname);
1203                                 return -1;
1204                         }
1205                         app_sa_prm.cache_sz = ret;
1206                         break;
1207                 case 't':
1208                         ret = parse_decimal(optarg);
1209                         if (ret < 0) {
1210                                 printf("Invalid interval value: %s\n", optarg);
1211                                 print_usage(prgname);
1212                                 return -1;
1213                         }
1214                         stats_interval = ret;
1215                         break;
1216                 case CMD_LINE_OPT_CONFIG_NUM:
1217                         ret = parse_config(optarg);
1218                         if (ret) {
1219                                 printf("Invalid config\n");
1220                                 print_usage(prgname);
1221                                 return -1;
1222                         }
1223                         break;
1224                 case CMD_LINE_OPT_SINGLE_SA_NUM:
1225                         ret = parse_decimal(optarg);
1226                         if (ret == -1 || ret > UINT32_MAX) {
1227                                 printf("Invalid argument[sa_idx]\n");
1228                                 print_usage(prgname);
1229                                 return -1;
1230                         }
1231
1232                         /* else */
1233                         single_sa = 1;
1234                         single_sa_idx = ret;
1235                         eh_conf->ipsec_mode = EH_IPSEC_MODE_TYPE_DRIVER;
1236                         printf("Configured with single SA index %u\n",
1237                                         single_sa_idx);
1238                         break;
1239                 case CMD_LINE_OPT_CRYPTODEV_MASK_NUM:
1240                         ret = parse_portmask(optarg);
1241                         if (ret == -1) {
1242                                 printf("Invalid argument[portmask]\n");
1243                                 print_usage(prgname);
1244                                 return -1;
1245                         }
1246
1247                         /* else */
1248                         enabled_cryptodev_mask = ret;
1249                         break;
1250
1251                 case CMD_LINE_OPT_TRANSFER_MODE_NUM:
1252                         ret = parse_transfer_mode(eh_conf, optarg);
1253                         if (ret < 0) {
1254                                 printf("Invalid packet transfer mode\n");
1255                                 print_usage(prgname);
1256                                 return -1;
1257                         }
1258                         break;
1259
1260                 case CMD_LINE_OPT_SCHEDULE_TYPE_NUM:
1261                         ret = parse_schedule_type(eh_conf, optarg);
1262                         if (ret < 0) {
1263                                 printf("Invalid queue schedule type\n");
1264                                 print_usage(prgname);
1265                                 return -1;
1266                         }
1267                         break;
1268
1269                 case CMD_LINE_OPT_RX_OFFLOAD_NUM:
1270                         ret = parse_mask(optarg, &dev_rx_offload);
1271                         if (ret != 0) {
1272                                 printf("Invalid argument for \'%s\': %s\n",
1273                                         CMD_LINE_OPT_RX_OFFLOAD, optarg);
1274                                 print_usage(prgname);
1275                                 return -1;
1276                         }
1277                         break;
1278                 case CMD_LINE_OPT_TX_OFFLOAD_NUM:
1279                         ret = parse_mask(optarg, &dev_tx_offload);
1280                         if (ret != 0) {
1281                                 printf("Invalid argument for \'%s\': %s\n",
1282                                         CMD_LINE_OPT_TX_OFFLOAD, optarg);
1283                                 print_usage(prgname);
1284                                 return -1;
1285                         }
1286                         break;
1287                 case CMD_LINE_OPT_REASSEMBLE_NUM:
1288                         ret = parse_decimal(optarg);
1289                         if (ret < 0 || ret > UINT32_MAX) {
1290                                 printf("Invalid argument for \'%s\': %s\n",
1291                                         CMD_LINE_OPT_REASSEMBLE, optarg);
1292                                 print_usage(prgname);
1293                                 return -1;
1294                         }
1295                         frag_tbl_sz = ret;
1296                         break;
1297                 case CMD_LINE_OPT_MTU_NUM:
1298                         ret = parse_decimal(optarg);
1299                         if (ret < 0 || ret > RTE_IPV4_MAX_PKT_LEN) {
1300                                 printf("Invalid argument for \'%s\': %s\n",
1301                                         CMD_LINE_OPT_MTU, optarg);
1302                                 print_usage(prgname);
1303                                 return -1;
1304                         }
1305                         mtu_size = ret;
1306                         break;
1307                 case CMD_LINE_OPT_FRAG_TTL_NUM:
1308                         ret = parse_decimal(optarg);
1309                         if (ret < 0 || ret > MAX_FRAG_TTL_NS) {
1310                                 printf("Invalid argument for \'%s\': %s\n",
1311                                         CMD_LINE_OPT_MTU, optarg);
1312                                 print_usage(prgname);
1313                                 return -1;
1314                         }
1315                         frag_ttl_ns = ret;
1316                         break;
1317                 case CMD_LINE_OPT_EVENT_VECTOR_NUM:
1318                         em_conf = eh_conf->mode_params;
1319                         em_conf->ext_params.event_vector = 1;
1320                         break;
1321                 case CMD_LINE_OPT_VECTOR_SIZE_NUM:
1322                         ret = parse_decimal(optarg);
1323
1324                         if (ret > MAX_PKT_BURST_VEC) {
1325                                 printf("Invalid argument for \'%s\': %s\n",
1326                                         CMD_LINE_OPT_VECTOR_SIZE, optarg);
1327                                 print_usage(prgname);
1328                                 return -1;
1329                         }
1330                         em_conf = eh_conf->mode_params;
1331                         em_conf->ext_params.vector_size = ret;
1332                         break;
1333                 case CMD_LINE_OPT_VECTOR_TIMEOUT_NUM:
1334                         ret = parse_decimal(optarg);
1335
1336                         em_conf = eh_conf->mode_params;
1337                         em_conf->vector_tmo_ns = ret;
1338                         break;
1339                 case CMD_LINE_OPT_VECTOR_POOL_SZ_NUM:
1340                         ret = parse_decimal(optarg);
1341
1342                         em_conf = eh_conf->mode_params;
1343                         em_conf->vector_pool_sz = ret;
1344                         break;
1345                 case CMD_LINE_OPT_PER_PORT_POOL_NUM:
1346                         per_port_pool = 1;
1347                         break;
1348                 default:
1349                         print_usage(prgname);
1350                         return -1;
1351                 }
1352         }
1353
1354         if (f_present == 0) {
1355                 printf("Mandatory option \"-f\" not present\n");
1356                 return -1;
1357         }
1358
1359         /* check do we need to enable multi-seg support */
1360         if (multi_seg_required()) {
1361                 /* legacy mode doesn't support multi-seg */
1362                 app_sa_prm.enable = 1;
1363                 printf("frame buf size: %u, mtu: %u, "
1364                         "number of reassemble entries: %u\n"
1365                         "multi-segment support is required\n",
1366                         frame_buf_size, mtu_size, frag_tbl_sz);
1367         }
1368
1369         print_app_sa_prm(&app_sa_prm);
1370
1371         if (optind >= 0)
1372                 argv[optind-1] = prgname;
1373
1374         ret = optind-1;
1375         optind = 1; /* reset getopt lib */
1376         return ret;
1377 }
1378
1379 static void
1380 print_ethaddr(const char *name, const struct rte_ether_addr *eth_addr)
1381 {
1382         char buf[RTE_ETHER_ADDR_FMT_SIZE];
1383         rte_ether_format_addr(buf, RTE_ETHER_ADDR_FMT_SIZE, eth_addr);
1384         printf("%s%s", name, buf);
1385 }
1386
1387 /*
1388  * Update destination ethaddr for the port.
1389  */
1390 int
1391 add_dst_ethaddr(uint16_t port, const struct rte_ether_addr *addr)
1392 {
1393         if (port >= RTE_DIM(ethaddr_tbl))
1394                 return -EINVAL;
1395
1396         ethaddr_tbl[port].dst = ETHADDR_TO_UINT64(addr);
1397         return 0;
1398 }
1399
1400 /* Check the link status of all ports in up to 9s, and print them finally */
1401 static void
1402 check_all_ports_link_status(uint32_t port_mask)
1403 {
1404 #define CHECK_INTERVAL 100 /* 100ms */
1405 #define MAX_CHECK_TIME 90 /* 9s (90 * 100ms) in total */
1406         uint16_t portid;
1407         uint8_t count, all_ports_up, print_flag = 0;
1408         struct rte_eth_link link;
1409         int ret;
1410         char link_status_text[RTE_ETH_LINK_MAX_STR_LEN];
1411
1412         printf("\nChecking link status");
1413         fflush(stdout);
1414         for (count = 0; count <= MAX_CHECK_TIME; count++) {
1415                 all_ports_up = 1;
1416                 RTE_ETH_FOREACH_DEV(portid) {
1417                         if ((port_mask & (1 << portid)) == 0)
1418                                 continue;
1419                         memset(&link, 0, sizeof(link));
1420                         ret = rte_eth_link_get_nowait(portid, &link);
1421                         if (ret < 0) {
1422                                 all_ports_up = 0;
1423                                 if (print_flag == 1)
1424                                         printf("Port %u link get failed: %s\n",
1425                                                 portid, rte_strerror(-ret));
1426                                 continue;
1427                         }
1428                         /* print link status if flag set */
1429                         if (print_flag == 1) {
1430                                 rte_eth_link_to_str(link_status_text,
1431                                         sizeof(link_status_text), &link);
1432                                 printf("Port %d %s\n", portid,
1433                                        link_status_text);
1434                                 continue;
1435                         }
1436                         /* clear all_ports_up flag if any link down */
1437                         if (link.link_status == RTE_ETH_LINK_DOWN) {
1438                                 all_ports_up = 0;
1439                                 break;
1440                         }
1441                 }
1442                 /* after finally printing all link status, get out */
1443                 if (print_flag == 1)
1444                         break;
1445
1446                 if (all_ports_up == 0) {
1447                         printf(".");
1448                         fflush(stdout);
1449                         rte_delay_ms(CHECK_INTERVAL);
1450                 }
1451
1452                 /* set the print_flag if all ports up or timeout */
1453                 if (all_ports_up == 1 || count == (MAX_CHECK_TIME - 1)) {
1454                         print_flag = 1;
1455                         printf("done\n");
1456                 }
1457         }
1458 }
1459
1460 static int32_t
1461 add_mapping(struct rte_hash *map, const char *str, uint16_t cdev_id,
1462                 uint16_t qp, struct lcore_params *params,
1463                 struct ipsec_ctx *ipsec_ctx,
1464                 const struct rte_cryptodev_capabilities *cipher,
1465                 const struct rte_cryptodev_capabilities *auth,
1466                 const struct rte_cryptodev_capabilities *aead)
1467 {
1468         int32_t ret = 0;
1469         unsigned long i;
1470         struct cdev_key key = { 0 };
1471
1472         key.lcore_id = params->lcore_id;
1473         if (cipher)
1474                 key.cipher_algo = cipher->sym.cipher.algo;
1475         if (auth)
1476                 key.auth_algo = auth->sym.auth.algo;
1477         if (aead)
1478                 key.aead_algo = aead->sym.aead.algo;
1479
1480         ret = rte_hash_lookup(map, &key);
1481         if (ret != -ENOENT)
1482                 return 0;
1483
1484         for (i = 0; i < ipsec_ctx->nb_qps; i++)
1485                 if (ipsec_ctx->tbl[i].id == cdev_id)
1486                         break;
1487
1488         if (i == ipsec_ctx->nb_qps) {
1489                 if (ipsec_ctx->nb_qps == MAX_QP_PER_LCORE) {
1490                         printf("Maximum number of crypto devices assigned to "
1491                                 "a core, increase MAX_QP_PER_LCORE value\n");
1492                         return 0;
1493                 }
1494                 ipsec_ctx->tbl[i].id = cdev_id;
1495                 ipsec_ctx->tbl[i].qp = qp;
1496                 ipsec_ctx->nb_qps++;
1497                 printf("%s cdev mapping: lcore %u using cdev %u qp %u "
1498                                 "(cdev_id_qp %lu)\n", str, key.lcore_id,
1499                                 cdev_id, qp, i);
1500         }
1501
1502         ret = rte_hash_add_key_data(map, &key, (void *)i);
1503         if (ret < 0) {
1504                 printf("Failed to insert cdev mapping for (lcore %u, "
1505                                 "cdev %u, qp %u), errno %d\n",
1506                                 key.lcore_id, ipsec_ctx->tbl[i].id,
1507                                 ipsec_ctx->tbl[i].qp, ret);
1508                 return 0;
1509         }
1510
1511         return 1;
1512 }
1513
1514 static int32_t
1515 add_cdev_mapping(struct rte_cryptodev_info *dev_info, uint16_t cdev_id,
1516                 uint16_t qp, struct lcore_params *params)
1517 {
1518         int32_t ret = 0;
1519         const struct rte_cryptodev_capabilities *i, *j;
1520         struct rte_hash *map;
1521         struct lcore_conf *qconf;
1522         struct ipsec_ctx *ipsec_ctx;
1523         const char *str;
1524
1525         qconf = &lcore_conf[params->lcore_id];
1526
1527         if ((unprotected_port_mask & (1 << params->port_id)) == 0) {
1528                 map = cdev_map_out;
1529                 ipsec_ctx = &qconf->outbound;
1530                 str = "Outbound";
1531         } else {
1532                 map = cdev_map_in;
1533                 ipsec_ctx = &qconf->inbound;
1534                 str = "Inbound";
1535         }
1536
1537         /* Required cryptodevs with operation chaining */
1538         if (!(dev_info->feature_flags &
1539                                 RTE_CRYPTODEV_FF_SYM_OPERATION_CHAINING))
1540                 return ret;
1541
1542         for (i = dev_info->capabilities;
1543                         i->op != RTE_CRYPTO_OP_TYPE_UNDEFINED; i++) {
1544                 if (i->op != RTE_CRYPTO_OP_TYPE_SYMMETRIC)
1545                         continue;
1546
1547                 if (i->sym.xform_type == RTE_CRYPTO_SYM_XFORM_AEAD) {
1548                         ret |= add_mapping(map, str, cdev_id, qp, params,
1549                                         ipsec_ctx, NULL, NULL, i);
1550                         continue;
1551                 }
1552
1553                 if (i->sym.xform_type != RTE_CRYPTO_SYM_XFORM_CIPHER)
1554                         continue;
1555
1556                 for (j = dev_info->capabilities;
1557                                 j->op != RTE_CRYPTO_OP_TYPE_UNDEFINED; j++) {
1558                         if (j->op != RTE_CRYPTO_OP_TYPE_SYMMETRIC)
1559                                 continue;
1560
1561                         if (j->sym.xform_type != RTE_CRYPTO_SYM_XFORM_AUTH)
1562                                 continue;
1563
1564                         ret |= add_mapping(map, str, cdev_id, qp, params,
1565                                                 ipsec_ctx, i, j, NULL);
1566                 }
1567         }
1568
1569         return ret;
1570 }
1571
1572 /* Check if the device is enabled by cryptodev_mask */
1573 static int
1574 check_cryptodev_mask(uint8_t cdev_id)
1575 {
1576         if (enabled_cryptodev_mask & (1 << cdev_id))
1577                 return 0;
1578
1579         return -1;
1580 }
1581
1582 static uint16_t
1583 cryptodevs_init(uint16_t req_queue_num)
1584 {
1585         struct rte_cryptodev_config dev_conf;
1586         struct rte_cryptodev_qp_conf qp_conf;
1587         uint16_t idx, max_nb_qps, qp, total_nb_qps, i;
1588         int16_t cdev_id;
1589         struct rte_hash_parameters params = { 0 };
1590
1591         const uint64_t mseg_flag = multi_seg_required() ?
1592                                 RTE_CRYPTODEV_FF_IN_PLACE_SGL : 0;
1593
1594         params.entries = CDEV_MAP_ENTRIES;
1595         params.key_len = sizeof(struct cdev_key);
1596         params.hash_func = rte_jhash;
1597         params.hash_func_init_val = 0;
1598         params.socket_id = rte_socket_id();
1599
1600         params.name = "cdev_map_in";
1601         cdev_map_in = rte_hash_create(&params);
1602         if (cdev_map_in == NULL)
1603                 rte_panic("Failed to create cdev_map hash table, errno = %d\n",
1604                                 rte_errno);
1605
1606         params.name = "cdev_map_out";
1607         cdev_map_out = rte_hash_create(&params);
1608         if (cdev_map_out == NULL)
1609                 rte_panic("Failed to create cdev_map hash table, errno = %d\n",
1610                                 rte_errno);
1611
1612         printf("lcore/cryptodev/qp mappings:\n");
1613
1614         idx = 0;
1615         total_nb_qps = 0;
1616         for (cdev_id = 0; cdev_id < rte_cryptodev_count(); cdev_id++) {
1617                 struct rte_cryptodev_info cdev_info;
1618
1619                 if (check_cryptodev_mask((uint8_t)cdev_id))
1620                         continue;
1621
1622                 rte_cryptodev_info_get(cdev_id, &cdev_info);
1623
1624                 if ((mseg_flag & cdev_info.feature_flags) != mseg_flag)
1625                         rte_exit(EXIT_FAILURE,
1626                                 "Device %hd does not support \'%s\' feature\n",
1627                                 cdev_id,
1628                                 rte_cryptodev_get_feature_name(mseg_flag));
1629
1630                 if (nb_lcore_params > cdev_info.max_nb_queue_pairs)
1631                         max_nb_qps = cdev_info.max_nb_queue_pairs;
1632                 else
1633                         max_nb_qps = nb_lcore_params;
1634
1635                 qp = 0;
1636                 i = 0;
1637                 while (qp < max_nb_qps && i < nb_lcore_params) {
1638                         if (add_cdev_mapping(&cdev_info, cdev_id, qp,
1639                                                 &lcore_params[idx]))
1640                                 qp++;
1641                         idx++;
1642                         idx = idx % nb_lcore_params;
1643                         i++;
1644                 }
1645
1646                 qp = RTE_MIN(max_nb_qps, RTE_MAX(req_queue_num, qp));
1647                 if (qp == 0)
1648                         continue;
1649
1650                 total_nb_qps += qp;
1651                 dev_conf.socket_id = rte_cryptodev_socket_id(cdev_id);
1652                 dev_conf.nb_queue_pairs = qp;
1653                 dev_conf.ff_disable = RTE_CRYPTODEV_FF_ASYMMETRIC_CRYPTO;
1654
1655                 uint32_t dev_max_sess = cdev_info.sym.max_nb_sessions;
1656                 if (dev_max_sess != 0 &&
1657                                 dev_max_sess < get_nb_crypto_sessions())
1658                         rte_exit(EXIT_FAILURE,
1659                                 "Device does not support at least %u "
1660                                 "sessions", get_nb_crypto_sessions());
1661
1662                 if (rte_cryptodev_configure(cdev_id, &dev_conf))
1663                         rte_panic("Failed to initialize cryptodev %u\n",
1664                                         cdev_id);
1665
1666                 qp_conf.nb_descriptors = CDEV_QUEUE_DESC;
1667                 qp_conf.mp_session =
1668                         socket_ctx[dev_conf.socket_id].session_pool;
1669                 qp_conf.mp_session_private =
1670                         socket_ctx[dev_conf.socket_id].session_priv_pool;
1671                 for (qp = 0; qp < dev_conf.nb_queue_pairs; qp++)
1672                         if (rte_cryptodev_queue_pair_setup(cdev_id, qp,
1673                                         &qp_conf, dev_conf.socket_id))
1674                                 rte_panic("Failed to setup queue %u for "
1675                                                 "cdev_id %u\n", 0, cdev_id);
1676
1677                 if (rte_cryptodev_start(cdev_id))
1678                         rte_panic("Failed to start cryptodev %u\n",
1679                                         cdev_id);
1680         }
1681
1682         printf("\n");
1683
1684         return total_nb_qps;
1685 }
1686
1687 static int
1688 check_ptype(int portid)
1689 {
1690         int l3_ipv4 = 0, l3_ipv6 = 0, l4_udp = 0, tunnel_esp = 0;
1691         int i, nb_ptypes;
1692         uint32_t mask;
1693
1694         mask = (RTE_PTYPE_L3_MASK | RTE_PTYPE_L4_MASK |
1695                       RTE_PTYPE_TUNNEL_MASK);
1696
1697         nb_ptypes = rte_eth_dev_get_supported_ptypes(portid, mask, NULL, 0);
1698         if (nb_ptypes <= 0)
1699                 return 0;
1700
1701         uint32_t ptypes[nb_ptypes];
1702
1703         nb_ptypes = rte_eth_dev_get_supported_ptypes(portid, mask, ptypes, nb_ptypes);
1704         for (i = 0; i < nb_ptypes; ++i) {
1705                 if (RTE_ETH_IS_IPV4_HDR(ptypes[i]))
1706                         l3_ipv4 = 1;
1707                 if (RTE_ETH_IS_IPV6_HDR(ptypes[i]))
1708                         l3_ipv6 = 1;
1709                 if ((ptypes[i] & RTE_PTYPE_TUNNEL_MASK) == RTE_PTYPE_TUNNEL_ESP)
1710                         tunnel_esp = 1;
1711                 if ((ptypes[i] & RTE_PTYPE_L4_MASK) == RTE_PTYPE_L4_UDP)
1712                         l4_udp = 1;
1713         }
1714
1715         if (l3_ipv4 == 0)
1716                 printf("port %d cannot parse RTE_PTYPE_L3_IPV4\n", portid);
1717
1718         if (l3_ipv6 == 0)
1719                 printf("port %d cannot parse RTE_PTYPE_L3_IPV6\n", portid);
1720
1721         if (l4_udp == 0)
1722                 printf("port %d cannot parse RTE_PTYPE_L4_UDP\n", portid);
1723
1724         if (tunnel_esp == 0)
1725                 printf("port %d cannot parse RTE_PTYPE_TUNNEL_ESP\n", portid);
1726
1727         if (l3_ipv4 && l3_ipv6 && l4_udp && tunnel_esp)
1728                 return 1;
1729
1730         return 0;
1731
1732 }
1733
1734 static inline void
1735 parse_ptype(struct rte_mbuf *m)
1736 {
1737         uint32_t packet_type = RTE_PTYPE_UNKNOWN;
1738         const struct rte_ipv4_hdr *iph4;
1739         const struct rte_ipv6_hdr *iph6;
1740         const struct rte_ether_hdr *eth;
1741         const struct rte_udp_hdr *udp;
1742         uint16_t nat_port, ether_type;
1743         int next_proto = 0;
1744         size_t ext_len = 0;
1745         const uint8_t *p;
1746         uint32_t l3len;
1747
1748         eth = rte_pktmbuf_mtod(m, struct rte_ether_hdr *);
1749         ether_type = eth->ether_type;
1750
1751         if (ether_type == rte_cpu_to_be_16(RTE_ETHER_TYPE_IPV4)) {
1752                 iph4 = (const struct rte_ipv4_hdr *)(eth + 1);
1753                 l3len = ((iph4->version_ihl & RTE_IPV4_HDR_IHL_MASK) *
1754                                RTE_IPV4_IHL_MULTIPLIER);
1755
1756                 if (l3len == sizeof(struct rte_ipv4_hdr))
1757                         packet_type |= RTE_PTYPE_L3_IPV4;
1758                 else
1759                         packet_type |= RTE_PTYPE_L3_IPV4_EXT_UNKNOWN;
1760
1761                 next_proto = iph4->next_proto_id;
1762                 p = (const uint8_t *)iph4;
1763         } else if (ether_type == rte_cpu_to_be_16(RTE_ETHER_TYPE_IPV6)) {
1764                 iph6 = (const struct rte_ipv6_hdr *)(eth + 1);
1765                 l3len = sizeof(struct ip6_hdr);
1766
1767                 /* determine l3 header size up to ESP extension */
1768                 next_proto = iph6->proto;
1769                 p = (const uint8_t *)iph6;
1770                 while (next_proto != IPPROTO_ESP && l3len < m->data_len &&
1771                         (next_proto = rte_ipv6_get_next_ext(p + l3len,
1772                                                 next_proto, &ext_len)) >= 0)
1773                         l3len += ext_len;
1774
1775                 /* Skip IPv6 header exceeds first segment length */
1776                 if (unlikely(l3len + RTE_ETHER_HDR_LEN > m->data_len))
1777                         goto exit;
1778
1779                 if (l3len == sizeof(struct ip6_hdr))
1780                         packet_type |= RTE_PTYPE_L3_IPV6;
1781                 else
1782                         packet_type |= RTE_PTYPE_L3_IPV6_EXT;
1783         }
1784
1785         switch (next_proto) {
1786         case IPPROTO_ESP:
1787                 packet_type |= RTE_PTYPE_TUNNEL_ESP;
1788                 break;
1789         case IPPROTO_UDP:
1790                 if (app_sa_prm.udp_encap == 1) {
1791                         udp = (const struct rte_udp_hdr *)(p + l3len);
1792                         nat_port = rte_cpu_to_be_16(IPSEC_NAT_T_PORT);
1793                         if (udp->src_port == nat_port ||
1794                             udp->dst_port == nat_port)
1795                                 packet_type |=
1796                                         MBUF_PTYPE_TUNNEL_ESP_IN_UDP;
1797                 }
1798                 break;
1799         default:
1800                 break;
1801         }
1802 exit:
1803         m->packet_type = packet_type;
1804 }
1805
1806 static uint16_t
1807 parse_ptype_cb(uint16_t port __rte_unused, uint16_t queue __rte_unused,
1808                struct rte_mbuf *pkts[], uint16_t nb_pkts,
1809                uint16_t max_pkts __rte_unused,
1810                void *user_param __rte_unused)
1811 {
1812         uint32_t i;
1813
1814         if (unlikely(nb_pkts == 0))
1815                 return nb_pkts;
1816
1817         rte_prefetch0(rte_pktmbuf_mtod(pkts[0], struct ether_hdr *));
1818         for (i = 0; i < (unsigned int) (nb_pkts - 1); ++i) {
1819                 rte_prefetch0(rte_pktmbuf_mtod(pkts[i+1],
1820                         struct ether_hdr *));
1821                 parse_ptype(pkts[i]);
1822         }
1823         parse_ptype(pkts[i]);
1824
1825         return nb_pkts;
1826 }
1827
1828 static void
1829 port_init(uint16_t portid, uint64_t req_rx_offloads, uint64_t req_tx_offloads)
1830 {
1831         struct rte_eth_dev_info dev_info;
1832         struct rte_eth_txconf *txconf;
1833         uint16_t nb_tx_queue, nb_rx_queue;
1834         uint16_t tx_queueid, rx_queueid, queue, lcore_id;
1835         int32_t ret, socket_id;
1836         struct lcore_conf *qconf;
1837         struct rte_ether_addr ethaddr;
1838         struct rte_eth_conf local_port_conf = port_conf;
1839         int ptype_supported;
1840
1841         ret = rte_eth_dev_info_get(portid, &dev_info);
1842         if (ret != 0)
1843                 rte_exit(EXIT_FAILURE,
1844                         "Error during getting device (port %u) info: %s\n",
1845                         portid, strerror(-ret));
1846
1847         /* limit allowed HW offloads, as user requested */
1848         dev_info.rx_offload_capa &= dev_rx_offload;
1849         dev_info.tx_offload_capa &= dev_tx_offload;
1850
1851         printf("Configuring device port %u:\n", portid);
1852
1853         ret = rte_eth_macaddr_get(portid, &ethaddr);
1854         if (ret != 0)
1855                 rte_exit(EXIT_FAILURE,
1856                         "Error getting MAC address (port %u): %s\n",
1857                         portid, rte_strerror(-ret));
1858
1859         ethaddr_tbl[portid].src = ETHADDR_TO_UINT64(&ethaddr);
1860         print_ethaddr("Address: ", &ethaddr);
1861         printf("\n");
1862
1863         nb_rx_queue = get_port_nb_rx_queues(portid);
1864         nb_tx_queue = nb_lcores;
1865
1866         if (nb_rx_queue > dev_info.max_rx_queues)
1867                 rte_exit(EXIT_FAILURE, "Error: queue %u not available "
1868                                 "(max rx queue is %u)\n",
1869                                 nb_rx_queue, dev_info.max_rx_queues);
1870
1871         if (nb_tx_queue > dev_info.max_tx_queues)
1872                 rte_exit(EXIT_FAILURE, "Error: queue %u not available "
1873                                 "(max tx queue is %u)\n",
1874                                 nb_tx_queue, dev_info.max_tx_queues);
1875
1876         printf("Creating queues: nb_rx_queue=%d nb_tx_queue=%u...\n",
1877                         nb_rx_queue, nb_tx_queue);
1878
1879         local_port_conf.rxmode.mtu = mtu_size;
1880
1881         if (multi_seg_required()) {
1882                 local_port_conf.rxmode.offloads |= RTE_ETH_RX_OFFLOAD_SCATTER;
1883                 local_port_conf.txmode.offloads |= RTE_ETH_TX_OFFLOAD_MULTI_SEGS;
1884         }
1885
1886         local_port_conf.rxmode.offloads |= req_rx_offloads;
1887         local_port_conf.txmode.offloads |= req_tx_offloads;
1888
1889         /* Check that all required capabilities are supported */
1890         if ((local_port_conf.rxmode.offloads & dev_info.rx_offload_capa) !=
1891                         local_port_conf.rxmode.offloads)
1892                 rte_exit(EXIT_FAILURE,
1893                         "Error: port %u required RX offloads: 0x%" PRIx64
1894                         ", available RX offloads: 0x%" PRIx64 "\n",
1895                         portid, local_port_conf.rxmode.offloads,
1896                         dev_info.rx_offload_capa);
1897
1898         if ((local_port_conf.txmode.offloads & dev_info.tx_offload_capa) !=
1899                         local_port_conf.txmode.offloads)
1900                 rte_exit(EXIT_FAILURE,
1901                         "Error: port %u required TX offloads: 0x%" PRIx64
1902                         ", available TX offloads: 0x%" PRIx64 "\n",
1903                         portid, local_port_conf.txmode.offloads,
1904                         dev_info.tx_offload_capa);
1905
1906         if (dev_info.tx_offload_capa & RTE_ETH_TX_OFFLOAD_MBUF_FAST_FREE)
1907                 local_port_conf.txmode.offloads |=
1908                         RTE_ETH_TX_OFFLOAD_MBUF_FAST_FREE;
1909
1910         printf("port %u configuring rx_offloads=0x%" PRIx64
1911                 ", tx_offloads=0x%" PRIx64 "\n",
1912                 portid, local_port_conf.rxmode.offloads,
1913                 local_port_conf.txmode.offloads);
1914
1915         local_port_conf.rx_adv_conf.rss_conf.rss_hf &=
1916                 dev_info.flow_type_rss_offloads;
1917         if (local_port_conf.rx_adv_conf.rss_conf.rss_hf !=
1918                         port_conf.rx_adv_conf.rss_conf.rss_hf) {
1919                 printf("Port %u modified RSS hash function based on hardware support,"
1920                         "requested:%#"PRIx64" configured:%#"PRIx64"\n",
1921                         portid,
1922                         port_conf.rx_adv_conf.rss_conf.rss_hf,
1923                         local_port_conf.rx_adv_conf.rss_conf.rss_hf);
1924         }
1925
1926         ret = rte_eth_dev_configure(portid, nb_rx_queue, nb_tx_queue,
1927                         &local_port_conf);
1928         if (ret < 0)
1929                 rte_exit(EXIT_FAILURE, "Cannot configure device: "
1930                                 "err=%d, port=%d\n", ret, portid);
1931
1932         ret = rte_eth_dev_adjust_nb_rx_tx_desc(portid, &nb_rxd, &nb_txd);
1933         if (ret < 0)
1934                 rte_exit(EXIT_FAILURE, "Cannot adjust number of descriptors: "
1935                                 "err=%d, port=%d\n", ret, portid);
1936
1937         /* Check if required ptypes are supported */
1938         ptype_supported = check_ptype(portid);
1939         if (!ptype_supported)
1940                 printf("Port %d: softly parse packet type info\n", portid);
1941
1942         /* init one TX queue per lcore */
1943         tx_queueid = 0;
1944         for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
1945                 if (rte_lcore_is_enabled(lcore_id) == 0)
1946                         continue;
1947
1948                 if (numa_on)
1949                         socket_id = (uint8_t)rte_lcore_to_socket_id(lcore_id);
1950                 else
1951                         socket_id = 0;
1952
1953                 /* init TX queue */
1954                 printf("Setup txq=%u,%d,%d\n", lcore_id, tx_queueid, socket_id);
1955
1956                 txconf = &dev_info.default_txconf;
1957                 txconf->offloads = local_port_conf.txmode.offloads;
1958
1959                 ret = rte_eth_tx_queue_setup(portid, tx_queueid, nb_txd,
1960                                 socket_id, txconf);
1961                 if (ret < 0)
1962                         rte_exit(EXIT_FAILURE, "rte_eth_tx_queue_setup: "
1963                                         "err=%d, port=%d\n", ret, portid);
1964
1965                 qconf = &lcore_conf[lcore_id];
1966                 qconf->tx_queue_id[portid] = tx_queueid;
1967
1968                 /* Pre-populate pkt offloads based on capabilities */
1969                 qconf->outbound.ipv4_offloads = RTE_MBUF_F_TX_IPV4;
1970                 qconf->outbound.ipv6_offloads = RTE_MBUF_F_TX_IPV6;
1971                 if (local_port_conf.txmode.offloads & RTE_ETH_TX_OFFLOAD_IPV4_CKSUM)
1972                         qconf->outbound.ipv4_offloads |= RTE_MBUF_F_TX_IP_CKSUM;
1973
1974                 tx_queueid++;
1975
1976                 /* init RX queues */
1977                 for (queue = 0; queue < qconf->nb_rx_queue; ++queue) {
1978                         struct rte_eth_rxconf rxq_conf;
1979                         struct rte_mempool *pool;
1980
1981                         if (portid != qconf->rx_queue_list[queue].port_id)
1982                                 continue;
1983
1984                         rx_queueid = qconf->rx_queue_list[queue].queue_id;
1985
1986                         printf("Setup rxq=%d,%d,%d\n", portid, rx_queueid,
1987                                         socket_id);
1988
1989                         rxq_conf = dev_info.default_rxconf;
1990                         rxq_conf.offloads = local_port_conf.rxmode.offloads;
1991
1992                         if (per_port_pool)
1993                                 pool = socket_ctx[socket_id].mbuf_pool[portid];
1994                         else
1995                                 pool = socket_ctx[socket_id].mbuf_pool[0];
1996
1997                         ret = rte_eth_rx_queue_setup(portid, rx_queueid,
1998                                         nb_rxd, socket_id, &rxq_conf, pool);
1999                         if (ret < 0)
2000                                 rte_exit(EXIT_FAILURE,
2001                                         "rte_eth_rx_queue_setup: err=%d, "
2002                                         "port=%d\n", ret, portid);
2003
2004                         /* Register Rx callback if ptypes are not supported */
2005                         if (!ptype_supported &&
2006                             !rte_eth_add_rx_callback(portid, queue,
2007                                                      parse_ptype_cb, NULL)) {
2008                                 printf("Failed to add rx callback: port=%d, "
2009                                        "queue=%d\n", portid, queue);
2010                         }
2011
2012
2013                 }
2014         }
2015         printf("\n");
2016 }
2017
2018 static size_t
2019 max_session_size(void)
2020 {
2021         size_t max_sz, sz;
2022         void *sec_ctx;
2023         int16_t cdev_id, port_id, n;
2024
2025         max_sz = 0;
2026         n =  rte_cryptodev_count();
2027         for (cdev_id = 0; cdev_id != n; cdev_id++) {
2028                 sz = rte_cryptodev_sym_get_private_session_size(cdev_id);
2029                 if (sz > max_sz)
2030                         max_sz = sz;
2031                 /*
2032                  * If crypto device is security capable, need to check the
2033                  * size of security session as well.
2034                  */
2035
2036                 /* Get security context of the crypto device */
2037                 sec_ctx = rte_cryptodev_get_sec_ctx(cdev_id);
2038                 if (sec_ctx == NULL)
2039                         continue;
2040
2041                 /* Get size of security session */
2042                 sz = rte_security_session_get_size(sec_ctx);
2043                 if (sz > max_sz)
2044                         max_sz = sz;
2045         }
2046
2047         RTE_ETH_FOREACH_DEV(port_id) {
2048                 if ((enabled_port_mask & (1 << port_id)) == 0)
2049                         continue;
2050
2051                 sec_ctx = rte_eth_dev_get_sec_ctx(port_id);
2052                 if (sec_ctx == NULL)
2053                         continue;
2054
2055                 sz = rte_security_session_get_size(sec_ctx);
2056                 if (sz > max_sz)
2057                         max_sz = sz;
2058         }
2059
2060         return max_sz;
2061 }
2062
2063 static void
2064 session_pool_init(struct socket_ctx *ctx, int32_t socket_id, size_t sess_sz)
2065 {
2066         char mp_name[RTE_MEMPOOL_NAMESIZE];
2067         struct rte_mempool *sess_mp;
2068         uint32_t nb_sess;
2069
2070         snprintf(mp_name, RTE_MEMPOOL_NAMESIZE,
2071                         "sess_mp_%u", socket_id);
2072         nb_sess = (get_nb_crypto_sessions() + CDEV_MP_CACHE_SZ *
2073                 rte_lcore_count());
2074         nb_sess = RTE_MAX(nb_sess, CDEV_MP_CACHE_SZ *
2075                         CDEV_MP_CACHE_MULTIPLIER);
2076         sess_mp = rte_cryptodev_sym_session_pool_create(
2077                         mp_name, nb_sess, sess_sz, CDEV_MP_CACHE_SZ, 0,
2078                         socket_id);
2079         ctx->session_pool = sess_mp;
2080
2081         if (ctx->session_pool == NULL)
2082                 rte_exit(EXIT_FAILURE,
2083                         "Cannot init session pool on socket %d\n", socket_id);
2084         else
2085                 printf("Allocated session pool on socket %d\n", socket_id);
2086 }
2087
2088 static void
2089 session_priv_pool_init(struct socket_ctx *ctx, int32_t socket_id,
2090         size_t sess_sz)
2091 {
2092         char mp_name[RTE_MEMPOOL_NAMESIZE];
2093         struct rte_mempool *sess_mp;
2094         uint32_t nb_sess;
2095
2096         snprintf(mp_name, RTE_MEMPOOL_NAMESIZE,
2097                         "sess_mp_priv_%u", socket_id);
2098         nb_sess = (get_nb_crypto_sessions() + CDEV_MP_CACHE_SZ *
2099                 rte_lcore_count());
2100         nb_sess = RTE_MAX(nb_sess, CDEV_MP_CACHE_SZ *
2101                         CDEV_MP_CACHE_MULTIPLIER);
2102         sess_mp = rte_mempool_create(mp_name,
2103                         nb_sess,
2104                         sess_sz,
2105                         CDEV_MP_CACHE_SZ,
2106                         0, NULL, NULL, NULL,
2107                         NULL, socket_id,
2108                         0);
2109         ctx->session_priv_pool = sess_mp;
2110
2111         if (ctx->session_priv_pool == NULL)
2112                 rte_exit(EXIT_FAILURE,
2113                         "Cannot init session priv pool on socket %d\n",
2114                         socket_id);
2115         else
2116                 printf("Allocated session priv pool on socket %d\n",
2117                         socket_id);
2118 }
2119
2120 static void
2121 pool_init(struct socket_ctx *ctx, int32_t socket_id, int portid,
2122           uint32_t nb_mbuf)
2123 {
2124         char s[64];
2125         int32_t ms;
2126
2127
2128         /* mbuf_pool is initialised by the pool_init() function*/
2129         if (socket_ctx[socket_id].mbuf_pool[portid])
2130                 return;
2131
2132         snprintf(s, sizeof(s), "mbuf_pool_%d_%d", socket_id, portid);
2133         ctx->mbuf_pool[portid] = rte_pktmbuf_pool_create(s, nb_mbuf,
2134                                                          MEMPOOL_CACHE_SIZE,
2135                                                          ipsec_metadata_size(),
2136                                                          frame_buf_size,
2137                                                          socket_id);
2138
2139         /*
2140          * if multi-segment support is enabled, then create a pool
2141          * for indirect mbufs. This is not per-port but global.
2142          */
2143         ms = multi_seg_required();
2144         if (ms != 0 && !ctx->mbuf_pool_indir) {
2145                 snprintf(s, sizeof(s), "mbuf_pool_indir_%d", socket_id);
2146                 ctx->mbuf_pool_indir = rte_pktmbuf_pool_create(s, nb_mbuf,
2147                         MEMPOOL_CACHE_SIZE, 0, 0, socket_id);
2148         }
2149
2150         if (ctx->mbuf_pool[portid] == NULL ||
2151             (ms != 0 && ctx->mbuf_pool_indir == NULL))
2152                 rte_exit(EXIT_FAILURE, "Cannot init mbuf pool on socket %d\n",
2153                                 socket_id);
2154         else
2155                 printf("Allocated mbuf pool on socket %d\n", socket_id);
2156 }
2157
2158 static inline int
2159 inline_ipsec_event_esn_overflow(struct rte_security_ctx *ctx, uint64_t md)
2160 {
2161         struct ipsec_sa *sa;
2162
2163         /* For inline protocol processing, the metadata in the event will
2164          * uniquely identify the security session which raised the event.
2165          * Application would then need the userdata it had registered with the
2166          * security session to process the event.
2167          */
2168
2169         sa = (struct ipsec_sa *)rte_security_get_userdata(ctx, md);
2170
2171         if (sa == NULL) {
2172                 /* userdata could not be retrieved */
2173                 return -1;
2174         }
2175
2176         /* Sequence number over flow. SA need to be re-established */
2177         RTE_SET_USED(sa);
2178         return 0;
2179 }
2180
2181 static int
2182 inline_ipsec_event_callback(uint16_t port_id, enum rte_eth_event_type type,
2183                  void *param, void *ret_param)
2184 {
2185         uint64_t md;
2186         struct rte_eth_event_ipsec_desc *event_desc = NULL;
2187         struct rte_security_ctx *ctx = (struct rte_security_ctx *)
2188                                         rte_eth_dev_get_sec_ctx(port_id);
2189
2190         RTE_SET_USED(param);
2191
2192         if (type != RTE_ETH_EVENT_IPSEC)
2193                 return -1;
2194
2195         event_desc = ret_param;
2196         if (event_desc == NULL) {
2197                 printf("Event descriptor not set\n");
2198                 return -1;
2199         }
2200
2201         md = event_desc->metadata;
2202
2203         if (event_desc->subtype == RTE_ETH_EVENT_IPSEC_ESN_OVERFLOW)
2204                 return inline_ipsec_event_esn_overflow(ctx, md);
2205         else if (event_desc->subtype >= RTE_ETH_EVENT_IPSEC_MAX) {
2206                 printf("Invalid IPsec event reported\n");
2207                 return -1;
2208         }
2209
2210         return -1;
2211 }
2212
2213 static int
2214 ethdev_reset_event_callback(uint16_t port_id,
2215                 enum rte_eth_event_type type,
2216                  void *param __rte_unused, void *ret_param __rte_unused)
2217 {
2218         printf("Reset Event on port id %d type %d\n", port_id, type);
2219         printf("Force quit application");
2220         force_quit = true;
2221         return 0;
2222 }
2223
2224 static uint16_t
2225 rx_callback(__rte_unused uint16_t port, __rte_unused uint16_t queue,
2226         struct rte_mbuf *pkt[], uint16_t nb_pkts,
2227         __rte_unused uint16_t max_pkts, void *user_param)
2228 {
2229         uint64_t tm;
2230         uint32_t i, k;
2231         struct lcore_conf *lc;
2232         struct rte_mbuf *mb;
2233         struct rte_ether_hdr *eth;
2234
2235         lc = user_param;
2236         k = 0;
2237         tm = 0;
2238
2239         for (i = 0; i != nb_pkts; i++) {
2240
2241                 mb = pkt[i];
2242                 eth = rte_pktmbuf_mtod(mb, struct rte_ether_hdr *);
2243                 if (eth->ether_type == rte_cpu_to_be_16(RTE_ETHER_TYPE_IPV4)) {
2244
2245                         struct rte_ipv4_hdr *iph;
2246
2247                         iph = (struct rte_ipv4_hdr *)(eth + 1);
2248                         if (rte_ipv4_frag_pkt_is_fragmented(iph)) {
2249
2250                                 mb->l2_len = sizeof(*eth);
2251                                 mb->l3_len = sizeof(*iph);
2252                                 tm = (tm != 0) ? tm : rte_rdtsc();
2253                                 mb = rte_ipv4_frag_reassemble_packet(
2254                                         lc->frag.tbl, &lc->frag.dr,
2255                                         mb, tm, iph);
2256
2257                                 if (mb != NULL) {
2258                                         /* fix ip cksum after reassemble. */
2259                                         iph = rte_pktmbuf_mtod_offset(mb,
2260                                                 struct rte_ipv4_hdr *,
2261                                                 mb->l2_len);
2262                                         iph->hdr_checksum = 0;
2263                                         iph->hdr_checksum = rte_ipv4_cksum(iph);
2264                                 }
2265                         }
2266                 } else if (eth->ether_type ==
2267                                 rte_cpu_to_be_16(RTE_ETHER_TYPE_IPV6)) {
2268
2269                         struct rte_ipv6_hdr *iph;
2270                         struct rte_ipv6_fragment_ext *fh;
2271
2272                         iph = (struct rte_ipv6_hdr *)(eth + 1);
2273                         fh = rte_ipv6_frag_get_ipv6_fragment_header(iph);
2274                         if (fh != NULL) {
2275                                 mb->l2_len = sizeof(*eth);
2276                                 mb->l3_len = (uintptr_t)fh - (uintptr_t)iph +
2277                                         sizeof(*fh);
2278                                 tm = (tm != 0) ? tm : rte_rdtsc();
2279                                 mb = rte_ipv6_frag_reassemble_packet(
2280                                         lc->frag.tbl, &lc->frag.dr,
2281                                         mb, tm, iph, fh);
2282                                 if (mb != NULL)
2283                                         /* fix l3_len after reassemble. */
2284                                         mb->l3_len = mb->l3_len - sizeof(*fh);
2285                         }
2286                 }
2287
2288                 pkt[k] = mb;
2289                 k += (mb != NULL);
2290         }
2291
2292         /* some fragments were encountered, drain death row */
2293         if (tm != 0)
2294                 rte_ip_frag_free_death_row(&lc->frag.dr, 0);
2295
2296         return k;
2297 }
2298
2299
2300 static int
2301 reassemble_lcore_init(struct lcore_conf *lc, uint32_t cid)
2302 {
2303         int32_t sid;
2304         uint32_t i;
2305         uint64_t frag_cycles;
2306         const struct lcore_rx_queue *rxq;
2307         const struct rte_eth_rxtx_callback *cb;
2308
2309         /* create fragment table */
2310         sid = rte_lcore_to_socket_id(cid);
2311         frag_cycles = (rte_get_tsc_hz() + NS_PER_S - 1) /
2312                 NS_PER_S * frag_ttl_ns;
2313
2314         lc->frag.tbl = rte_ip_frag_table_create(frag_tbl_sz,
2315                 FRAG_TBL_BUCKET_ENTRIES, frag_tbl_sz, frag_cycles, sid);
2316         if (lc->frag.tbl == NULL) {
2317                 printf("%s(%u): failed to create fragment table of size: %u, "
2318                         "error code: %d\n",
2319                         __func__, cid, frag_tbl_sz, rte_errno);
2320                 return -ENOMEM;
2321         }
2322
2323         /* setup reassemble RX callbacks for all queues */
2324         for (i = 0; i != lc->nb_rx_queue; i++) {
2325
2326                 rxq = lc->rx_queue_list + i;
2327                 cb = rte_eth_add_rx_callback(rxq->port_id, rxq->queue_id,
2328                         rx_callback, lc);
2329                 if (cb == NULL) {
2330                         printf("%s(%u): failed to install RX callback for "
2331                                 "portid=%u, queueid=%u, error code: %d\n",
2332                                 __func__, cid,
2333                                 rxq->port_id, rxq->queue_id, rte_errno);
2334                         return -ENOMEM;
2335                 }
2336         }
2337
2338         return 0;
2339 }
2340
2341 static int
2342 reassemble_init(void)
2343 {
2344         int32_t rc;
2345         uint32_t i, lc;
2346
2347         rc = 0;
2348         for (i = 0; i != nb_lcore_params; i++) {
2349                 lc = lcore_params[i].lcore_id;
2350                 rc = reassemble_lcore_init(lcore_conf + lc, lc);
2351                 if (rc != 0)
2352                         break;
2353         }
2354
2355         return rc;
2356 }
2357
2358 static void
2359 create_default_ipsec_flow(uint16_t port_id, uint64_t rx_offloads)
2360 {
2361         struct rte_flow_action action[2];
2362         struct rte_flow_item pattern[2];
2363         struct rte_flow_attr attr = {0};
2364         struct rte_flow_error err;
2365         struct rte_flow *flow;
2366         int ret;
2367
2368         if (!(rx_offloads & RTE_ETH_RX_OFFLOAD_SECURITY))
2369                 return;
2370
2371         /* Add the default rte_flow to enable SECURITY for all ESP packets */
2372
2373         pattern[0].type = RTE_FLOW_ITEM_TYPE_ESP;
2374         pattern[0].spec = NULL;
2375         pattern[0].mask = NULL;
2376         pattern[0].last = NULL;
2377         pattern[1].type = RTE_FLOW_ITEM_TYPE_END;
2378
2379         action[0].type = RTE_FLOW_ACTION_TYPE_SECURITY;
2380         action[0].conf = NULL;
2381         action[1].type = RTE_FLOW_ACTION_TYPE_END;
2382         action[1].conf = NULL;
2383
2384         attr.ingress = 1;
2385
2386         ret = rte_flow_validate(port_id, &attr, pattern, action, &err);
2387         if (ret)
2388                 return;
2389
2390         flow = rte_flow_create(port_id, &attr, pattern, action, &err);
2391         if (flow == NULL)
2392                 return;
2393
2394         flow_info_tbl[port_id].rx_def_flow = flow;
2395         RTE_LOG(INFO, IPSEC,
2396                 "Created default flow enabling SECURITY for all ESP traffic on port %d\n",
2397                 port_id);
2398 }
2399
2400 static void
2401 signal_handler(int signum)
2402 {
2403         if (signum == SIGINT || signum == SIGTERM) {
2404                 printf("\n\nSignal %d received, preparing to exit...\n",
2405                                 signum);
2406                 force_quit = true;
2407         }
2408 }
2409
2410 static void
2411 ev_mode_sess_verify(struct ipsec_sa *sa, int nb_sa)
2412 {
2413         struct rte_ipsec_session *ips;
2414         int32_t i;
2415
2416         if (!sa || !nb_sa)
2417                 return;
2418
2419         for (i = 0; i < nb_sa; i++) {
2420                 ips = ipsec_get_primary_session(&sa[i]);
2421                 if (ips->type != RTE_SECURITY_ACTION_TYPE_INLINE_PROTOCOL)
2422                         rte_exit(EXIT_FAILURE, "Event mode supports only "
2423                                  "inline protocol sessions\n");
2424         }
2425
2426 }
2427
2428 static int32_t
2429 check_event_mode_params(struct eh_conf *eh_conf)
2430 {
2431         struct eventmode_conf *em_conf = NULL;
2432         struct lcore_params *params;
2433         uint16_t portid;
2434
2435         if (!eh_conf || !eh_conf->mode_params)
2436                 return -EINVAL;
2437
2438         /* Get eventmode conf */
2439         em_conf = eh_conf->mode_params;
2440
2441         if (eh_conf->mode == EH_PKT_TRANSFER_MODE_POLL &&
2442             em_conf->ext_params.sched_type != SCHED_TYPE_NOT_SET) {
2443                 printf("error: option --event-schedule-type applies only to "
2444                        "event mode\n");
2445                 return -EINVAL;
2446         }
2447
2448         if (eh_conf->mode != EH_PKT_TRANSFER_MODE_EVENT)
2449                 return 0;
2450
2451         /* Set schedule type to ORDERED if it wasn't explicitly set by user */
2452         if (em_conf->ext_params.sched_type == SCHED_TYPE_NOT_SET)
2453                 em_conf->ext_params.sched_type = RTE_SCHED_TYPE_ORDERED;
2454
2455         /*
2456          * Event mode currently supports only inline protocol sessions.
2457          * If there are other types of sessions configured then exit with
2458          * error.
2459          */
2460         ev_mode_sess_verify(sa_in, nb_sa_in);
2461         ev_mode_sess_verify(sa_out, nb_sa_out);
2462
2463
2464         /* Option --config does not apply to event mode */
2465         if (nb_lcore_params > 0) {
2466                 printf("error: option --config applies only to poll mode\n");
2467                 return -EINVAL;
2468         }
2469
2470         /*
2471          * In order to use the same port_init routine for both poll and event
2472          * modes initialize lcore_params with one queue for each eth port
2473          */
2474         lcore_params = lcore_params_array;
2475         RTE_ETH_FOREACH_DEV(portid) {
2476                 if ((enabled_port_mask & (1 << portid)) == 0)
2477                         continue;
2478
2479                 params = &lcore_params[nb_lcore_params++];
2480                 params->port_id = portid;
2481                 params->queue_id = 0;
2482                 params->lcore_id = rte_get_next_lcore(0, 0, 1);
2483         }
2484
2485         return 0;
2486 }
2487
2488 static void
2489 inline_sessions_free(struct sa_ctx *sa_ctx)
2490 {
2491         struct rte_ipsec_session *ips;
2492         struct ipsec_sa *sa;
2493         int32_t ret;
2494         uint32_t i;
2495
2496         if (!sa_ctx)
2497                 return;
2498
2499         for (i = 0; i < sa_ctx->nb_sa; i++) {
2500
2501                 sa = &sa_ctx->sa[i];
2502                 if (!sa->spi)
2503                         continue;
2504
2505                 ips = ipsec_get_primary_session(sa);
2506                 if (ips->type != RTE_SECURITY_ACTION_TYPE_INLINE_PROTOCOL &&
2507                     ips->type != RTE_SECURITY_ACTION_TYPE_INLINE_CRYPTO)
2508                         continue;
2509
2510                 if (!rte_eth_dev_is_valid_port(sa->portid))
2511                         continue;
2512
2513                 ret = rte_security_session_destroy(
2514                                 rte_eth_dev_get_sec_ctx(sa->portid),
2515                                 ips->security.ses);
2516                 if (ret)
2517                         RTE_LOG(ERR, IPSEC, "Failed to destroy security "
2518                                             "session type %d, spi %d\n",
2519                                             ips->type, sa->spi);
2520         }
2521 }
2522
2523 static uint32_t
2524 calculate_nb_mbufs(uint16_t nb_ports, uint16_t nb_crypto_qp, uint32_t nb_rxq,
2525                 uint32_t nb_txq)
2526 {
2527         return RTE_MAX((nb_rxq * nb_rxd +
2528                         nb_ports * nb_lcores * MAX_PKT_BURST +
2529                         nb_ports * nb_txq * nb_txd +
2530                         nb_lcores * MEMPOOL_CACHE_SIZE +
2531                         nb_crypto_qp * CDEV_QUEUE_DESC +
2532                         nb_lcores * frag_tbl_sz *
2533                         FRAG_TBL_BUCKET_ENTRIES),
2534                        8192U);
2535 }
2536
2537
2538 static int
2539 handle_telemetry_cmd_ipsec_secgw_stats(const char *cmd __rte_unused,
2540                 const char *params, struct rte_tel_data *data)
2541 {
2542         uint64_t total_pkts_dropped = 0, total_pkts_tx = 0, total_pkts_rx = 0;
2543         unsigned int coreid;
2544
2545         rte_tel_data_start_dict(data);
2546
2547         if (params) {
2548                 coreid = (uint32_t)atoi(params);
2549                 if (rte_lcore_is_enabled(coreid) == 0)
2550                         return -EINVAL;
2551
2552                 total_pkts_dropped = core_statistics[coreid].dropped;
2553                 total_pkts_tx = core_statistics[coreid].tx;
2554                 total_pkts_rx = core_statistics[coreid].rx;
2555
2556         } else {
2557                 for (coreid = 0; coreid < RTE_MAX_LCORE; coreid++) {
2558
2559                         /* skip disabled cores */
2560                         if (rte_lcore_is_enabled(coreid) == 0)
2561                                 continue;
2562
2563                         total_pkts_dropped += core_statistics[coreid].dropped;
2564                         total_pkts_tx += core_statistics[coreid].tx;
2565                         total_pkts_rx += core_statistics[coreid].rx;
2566                 }
2567         }
2568
2569         /* add telemetry key/values pairs */
2570         rte_tel_data_add_dict_u64(data, "packets received",
2571                                 total_pkts_rx);
2572
2573         rte_tel_data_add_dict_u64(data, "packets transmitted",
2574                                 total_pkts_tx);
2575
2576         rte_tel_data_add_dict_u64(data, "packets dropped",
2577                                 total_pkts_dropped);
2578
2579
2580         return 0;
2581 }
2582
2583 static void
2584 update_lcore_statistics(struct ipsec_core_statistics *total, uint32_t coreid)
2585 {
2586         struct ipsec_core_statistics *lcore_stats;
2587
2588         /* skip disabled cores */
2589         if (rte_lcore_is_enabled(coreid) == 0)
2590                 return;
2591
2592         lcore_stats = &core_statistics[coreid];
2593
2594         total->rx = lcore_stats->rx;
2595         total->dropped = lcore_stats->dropped;
2596         total->tx = lcore_stats->tx;
2597
2598         /* outbound stats */
2599         total->outbound.spd6.protect += lcore_stats->outbound.spd6.protect;
2600         total->outbound.spd6.bypass += lcore_stats->outbound.spd6.bypass;
2601         total->outbound.spd6.discard += lcore_stats->outbound.spd6.discard;
2602
2603         total->outbound.spd4.protect += lcore_stats->outbound.spd4.protect;
2604         total->outbound.spd4.bypass += lcore_stats->outbound.spd4.bypass;
2605         total->outbound.spd4.discard += lcore_stats->outbound.spd4.discard;
2606
2607         total->outbound.sad.miss += lcore_stats->outbound.sad.miss;
2608
2609         /* inbound stats */
2610         total->inbound.spd6.protect += lcore_stats->inbound.spd6.protect;
2611         total->inbound.spd6.bypass += lcore_stats->inbound.spd6.bypass;
2612         total->inbound.spd6.discard += lcore_stats->inbound.spd6.discard;
2613
2614         total->inbound.spd4.protect += lcore_stats->inbound.spd4.protect;
2615         total->inbound.spd4.bypass += lcore_stats->inbound.spd4.bypass;
2616         total->inbound.spd4.discard += lcore_stats->inbound.spd4.discard;
2617
2618         total->inbound.sad.miss += lcore_stats->inbound.sad.miss;
2619
2620
2621         /* routing stats */
2622         total->lpm4.miss += lcore_stats->lpm4.miss;
2623         total->lpm6.miss += lcore_stats->lpm6.miss;
2624 }
2625
2626 static void
2627 update_statistics(struct ipsec_core_statistics *total, uint32_t coreid)
2628 {
2629         memset(total, 0, sizeof(*total));
2630
2631         if (coreid != UINT32_MAX) {
2632                 update_lcore_statistics(total, coreid);
2633         } else {
2634                 for (coreid = 0; coreid < RTE_MAX_LCORE; coreid++)
2635                         update_lcore_statistics(total, coreid);
2636         }
2637 }
2638
2639 static int
2640 handle_telemetry_cmd_ipsec_secgw_stats_outbound(const char *cmd __rte_unused,
2641                 const char *params, struct rte_tel_data *data)
2642 {
2643         struct ipsec_core_statistics total_stats;
2644
2645         struct rte_tel_data *spd4_data = rte_tel_data_alloc();
2646         struct rte_tel_data *spd6_data = rte_tel_data_alloc();
2647         struct rte_tel_data *sad_data = rte_tel_data_alloc();
2648         unsigned int coreid = UINT32_MAX;
2649         int rc = 0;
2650
2651         /* verify allocated telemetry data structures */
2652         if (!spd4_data || !spd6_data || !sad_data) {
2653                 rc = -ENOMEM;
2654                 goto exit;
2655         }
2656
2657         /* initialize telemetry data structs as dicts */
2658         rte_tel_data_start_dict(data);
2659
2660         rte_tel_data_start_dict(spd4_data);
2661         rte_tel_data_start_dict(spd6_data);
2662         rte_tel_data_start_dict(sad_data);
2663
2664         if (params) {
2665                 coreid = (uint32_t)atoi(params);
2666                 if (rte_lcore_is_enabled(coreid) == 0) {
2667                         rc = -EINVAL;
2668                         goto exit;
2669                 }
2670         }
2671
2672         update_statistics(&total_stats, coreid);
2673
2674         /* add spd 4 telemetry key/values pairs */
2675
2676         rte_tel_data_add_dict_u64(spd4_data, "protect",
2677                 total_stats.outbound.spd4.protect);
2678         rte_tel_data_add_dict_u64(spd4_data, "bypass",
2679                 total_stats.outbound.spd4.bypass);
2680         rte_tel_data_add_dict_u64(spd4_data, "discard",
2681                 total_stats.outbound.spd4.discard);
2682
2683         rte_tel_data_add_dict_container(data, "spd4", spd4_data, 0);
2684
2685         /* add spd 6 telemetry key/values pairs */
2686
2687         rte_tel_data_add_dict_u64(spd6_data, "protect",
2688                 total_stats.outbound.spd6.protect);
2689         rte_tel_data_add_dict_u64(spd6_data, "bypass",
2690                 total_stats.outbound.spd6.bypass);
2691         rte_tel_data_add_dict_u64(spd6_data, "discard",
2692                 total_stats.outbound.spd6.discard);
2693
2694         rte_tel_data_add_dict_container(data, "spd6", spd6_data, 0);
2695
2696         /* add sad telemetry key/values pairs */
2697
2698         rte_tel_data_add_dict_u64(sad_data, "miss",
2699                 total_stats.outbound.sad.miss);
2700
2701         rte_tel_data_add_dict_container(data, "sad", sad_data, 0);
2702
2703 exit:
2704         if (rc) {
2705                 rte_tel_data_free(spd4_data);
2706                 rte_tel_data_free(spd6_data);
2707                 rte_tel_data_free(sad_data);
2708         }
2709         return rc;
2710 }
2711
2712 static int
2713 handle_telemetry_cmd_ipsec_secgw_stats_inbound(const char *cmd __rte_unused,
2714                 const char *params, struct rte_tel_data *data)
2715 {
2716         struct ipsec_core_statistics total_stats;
2717
2718         struct rte_tel_data *spd4_data = rte_tel_data_alloc();
2719         struct rte_tel_data *spd6_data = rte_tel_data_alloc();
2720         struct rte_tel_data *sad_data = rte_tel_data_alloc();
2721         unsigned int coreid = UINT32_MAX;
2722         int rc = 0;
2723
2724         /* verify allocated telemetry data structures */
2725         if (!spd4_data || !spd6_data || !sad_data) {
2726                 rc = -ENOMEM;
2727                 goto exit;
2728         }
2729
2730         /* initialize telemetry data structs as dicts */
2731         rte_tel_data_start_dict(data);
2732         rte_tel_data_start_dict(spd4_data);
2733         rte_tel_data_start_dict(spd6_data);
2734         rte_tel_data_start_dict(sad_data);
2735
2736         /* add children dicts to parent dict */
2737
2738         if (params) {
2739                 coreid = (uint32_t)atoi(params);
2740                 if (rte_lcore_is_enabled(coreid) == 0) {
2741                         rc = -EINVAL;
2742                         goto exit;
2743                 }
2744         }
2745
2746         update_statistics(&total_stats, coreid);
2747
2748         /* add sad telemetry key/values pairs */
2749
2750         rte_tel_data_add_dict_u64(sad_data, "miss",
2751                 total_stats.inbound.sad.miss);
2752
2753         rte_tel_data_add_dict_container(data, "sad", sad_data, 0);
2754
2755         /* add spd 4 telemetry key/values pairs */
2756
2757         rte_tel_data_add_dict_u64(spd4_data, "protect",
2758                 total_stats.inbound.spd4.protect);
2759         rte_tel_data_add_dict_u64(spd4_data, "bypass",
2760                 total_stats.inbound.spd4.bypass);
2761         rte_tel_data_add_dict_u64(spd4_data, "discard",
2762                 total_stats.inbound.spd4.discard);
2763
2764         rte_tel_data_add_dict_container(data, "spd4", spd4_data, 0);
2765
2766         /* add spd 6 telemetry key/values pairs */
2767
2768         rte_tel_data_add_dict_u64(spd6_data, "protect",
2769                 total_stats.inbound.spd6.protect);
2770         rte_tel_data_add_dict_u64(spd6_data, "bypass",
2771                 total_stats.inbound.spd6.bypass);
2772         rte_tel_data_add_dict_u64(spd6_data, "discard",
2773                 total_stats.inbound.spd6.discard);
2774
2775         rte_tel_data_add_dict_container(data, "spd6", spd6_data, 0);
2776
2777 exit:
2778         if (rc) {
2779                 rte_tel_data_free(spd4_data);
2780                 rte_tel_data_free(spd6_data);
2781                 rte_tel_data_free(sad_data);
2782         }
2783         return rc;
2784 }
2785
2786 static int
2787 handle_telemetry_cmd_ipsec_secgw_stats_routing(const char *cmd __rte_unused,
2788                 const char *params, struct rte_tel_data *data)
2789 {
2790         struct ipsec_core_statistics total_stats;
2791
2792         struct rte_tel_data *lpm4_data = rte_tel_data_alloc();
2793         struct rte_tel_data *lpm6_data = rte_tel_data_alloc();
2794         unsigned int coreid = UINT32_MAX;
2795         int rc = 0;
2796
2797         /* verify allocated telemetry data structures */
2798         if (!lpm4_data || !lpm6_data) {
2799                 rc = -ENOMEM;
2800                 goto exit;
2801         }
2802
2803         /* initialize telemetry data structs as dicts */
2804         rte_tel_data_start_dict(data);
2805         rte_tel_data_start_dict(lpm4_data);
2806         rte_tel_data_start_dict(lpm6_data);
2807
2808
2809         if (params) {
2810                 coreid = (uint32_t)atoi(params);
2811                 if (rte_lcore_is_enabled(coreid) == 0) {
2812                         rc = -EINVAL;
2813                         goto exit;
2814                 }
2815         }
2816
2817         update_statistics(&total_stats, coreid);
2818
2819         /* add lpm 4 telemetry key/values pairs */
2820         rte_tel_data_add_dict_u64(lpm4_data, "miss",
2821                 total_stats.lpm4.miss);
2822
2823         rte_tel_data_add_dict_container(data, "IPv4 LPM", lpm4_data, 0);
2824
2825         /* add lpm 6 telemetry key/values pairs */
2826         rte_tel_data_add_dict_u64(lpm6_data, "miss",
2827                 total_stats.lpm6.miss);
2828
2829         rte_tel_data_add_dict_container(data, "IPv6 LPM", lpm6_data, 0);
2830
2831 exit:
2832         if (rc) {
2833                 rte_tel_data_free(lpm4_data);
2834                 rte_tel_data_free(lpm6_data);
2835         }
2836         return rc;
2837 }
2838
2839 static void
2840 ipsec_secgw_telemetry_init(void)
2841 {
2842         rte_telemetry_register_cmd("/examples/ipsec-secgw/stats",
2843                 handle_telemetry_cmd_ipsec_secgw_stats,
2844                 "Returns global stats. "
2845                 "Optional Parameters: int <logical core id>");
2846
2847         rte_telemetry_register_cmd("/examples/ipsec-secgw/stats/outbound",
2848                 handle_telemetry_cmd_ipsec_secgw_stats_outbound,
2849                 "Returns outbound global stats. "
2850                 "Optional Parameters: int <logical core id>");
2851
2852         rte_telemetry_register_cmd("/examples/ipsec-secgw/stats/inbound",
2853                 handle_telemetry_cmd_ipsec_secgw_stats_inbound,
2854                 "Returns inbound global stats. "
2855                 "Optional Parameters: int <logical core id>");
2856
2857         rte_telemetry_register_cmd("/examples/ipsec-secgw/stats/routing",
2858                 handle_telemetry_cmd_ipsec_secgw_stats_routing,
2859                 "Returns routing stats. "
2860                 "Optional Parameters: int <logical core id>");
2861 }
2862
2863
2864 int32_t
2865 main(int32_t argc, char **argv)
2866 {
2867         int32_t ret;
2868         uint32_t lcore_id, nb_txq, nb_rxq = 0;
2869         uint32_t cdev_id;
2870         uint32_t i;
2871         uint8_t socket_id;
2872         uint16_t portid, nb_crypto_qp, nb_ports = 0;
2873         uint64_t req_rx_offloads[RTE_MAX_ETHPORTS];
2874         uint64_t req_tx_offloads[RTE_MAX_ETHPORTS];
2875         struct eh_conf *eh_conf = NULL;
2876         size_t sess_sz;
2877
2878         nb_bufs_in_pool = 0;
2879
2880         /* init EAL */
2881         ret = rte_eal_init(argc, argv);
2882         if (ret < 0)
2883                 rte_exit(EXIT_FAILURE, "Invalid EAL parameters\n");
2884         argc -= ret;
2885         argv += ret;
2886
2887         force_quit = false;
2888         signal(SIGINT, signal_handler);
2889         signal(SIGTERM, signal_handler);
2890
2891         /* initialize event helper configuration */
2892         eh_conf = eh_conf_init();
2893         if (eh_conf == NULL)
2894                 rte_exit(EXIT_FAILURE, "Failed to init event helper config");
2895
2896         /* parse application arguments (after the EAL ones) */
2897         ret = parse_args(argc, argv, eh_conf);
2898         if (ret < 0)
2899                 rte_exit(EXIT_FAILURE, "Invalid parameters\n");
2900
2901         ipsec_secgw_telemetry_init();
2902
2903         /* parse configuration file */
2904         if (parse_cfg_file(cfgfile) < 0) {
2905                 printf("parsing file \"%s\" failed\n",
2906                         optarg);
2907                 print_usage(argv[0]);
2908                 return -1;
2909         }
2910
2911         if ((unprotected_port_mask & enabled_port_mask) !=
2912                         unprotected_port_mask)
2913                 rte_exit(EXIT_FAILURE, "Invalid unprotected portmask 0x%x\n",
2914                                 unprotected_port_mask);
2915
2916         if (unprotected_port_mask && !nb_sa_in)
2917                 rte_exit(EXIT_FAILURE, "Cannot use unprotected portmask without configured SA inbound\n");
2918
2919         if (check_poll_mode_params(eh_conf) < 0)
2920                 rte_exit(EXIT_FAILURE, "check_poll_mode_params failed\n");
2921
2922         if (check_event_mode_params(eh_conf) < 0)
2923                 rte_exit(EXIT_FAILURE, "check_event_mode_params failed\n");
2924
2925         ret = init_lcore_rx_queues();
2926         if (ret < 0)
2927                 rte_exit(EXIT_FAILURE, "init_lcore_rx_queues failed\n");
2928
2929         nb_lcores = rte_lcore_count();
2930
2931         sess_sz = max_session_size();
2932
2933         /*
2934          * In event mode request minimum number of crypto queues
2935          * to be reserved equal to number of ports.
2936          */
2937         if (eh_conf->mode == EH_PKT_TRANSFER_MODE_EVENT)
2938                 nb_crypto_qp = rte_eth_dev_count_avail();
2939         else
2940                 nb_crypto_qp = 0;
2941
2942         nb_crypto_qp = cryptodevs_init(nb_crypto_qp);
2943
2944         if (nb_bufs_in_pool == 0) {
2945                 RTE_ETH_FOREACH_DEV(portid) {
2946                         if ((enabled_port_mask & (1 << portid)) == 0)
2947                                 continue;
2948                         nb_ports++;
2949                         nb_rxq += get_port_nb_rx_queues(portid);
2950                 }
2951
2952                 nb_txq = nb_lcores;
2953
2954                 nb_bufs_in_pool = calculate_nb_mbufs(nb_ports, nb_crypto_qp,
2955                                                 nb_rxq, nb_txq);
2956         }
2957
2958         for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
2959                 if (rte_lcore_is_enabled(lcore_id) == 0)
2960                         continue;
2961
2962                 if (numa_on)
2963                         socket_id = (uint8_t)rte_lcore_to_socket_id(lcore_id);
2964                 else
2965                         socket_id = 0;
2966
2967                 if (per_port_pool) {
2968                         RTE_ETH_FOREACH_DEV(portid) {
2969                                 if ((enabled_port_mask & (1 << portid)) == 0)
2970                                         continue;
2971
2972                                 pool_init(&socket_ctx[socket_id], socket_id,
2973                                           portid, nb_bufs_in_pool);
2974                         }
2975                 } else {
2976                         pool_init(&socket_ctx[socket_id], socket_id, 0,
2977                                   nb_bufs_in_pool);
2978                 }
2979
2980                 if (socket_ctx[socket_id].session_pool)
2981                         continue;
2982
2983                 session_pool_init(&socket_ctx[socket_id], socket_id, sess_sz);
2984                 session_priv_pool_init(&socket_ctx[socket_id], socket_id,
2985                         sess_sz);
2986         }
2987         printf("Number of mbufs in packet pool %d\n", nb_bufs_in_pool);
2988
2989         RTE_ETH_FOREACH_DEV(portid) {
2990                 if ((enabled_port_mask & (1 << portid)) == 0)
2991                         continue;
2992
2993                 sa_check_offloads(portid, &req_rx_offloads[portid],
2994                                 &req_tx_offloads[portid]);
2995                 port_init(portid, req_rx_offloads[portid],
2996                                 req_tx_offloads[portid]);
2997         }
2998
2999         /*
3000          * Set the enabled port mask in helper config for use by helper
3001          * sub-system. This will be used while initializing devices using
3002          * helper sub-system.
3003          */
3004         eh_conf->eth_portmask = enabled_port_mask;
3005
3006         /* Initialize eventmode components */
3007         ret = eh_devs_init(eh_conf);
3008         if (ret < 0)
3009                 rte_exit(EXIT_FAILURE, "eh_devs_init failed, err=%d\n", ret);
3010
3011         /* start ports */
3012         RTE_ETH_FOREACH_DEV(portid) {
3013                 if ((enabled_port_mask & (1 << portid)) == 0)
3014                         continue;
3015
3016                 ret = rte_eth_dev_start(portid);
3017                 if (ret < 0)
3018                         rte_exit(EXIT_FAILURE, "rte_eth_dev_start: "
3019                                         "err=%d, port=%d\n", ret, portid);
3020
3021                 /* Create flow after starting the device */
3022                 create_default_ipsec_flow(portid, req_rx_offloads[portid]);
3023
3024                 /*
3025                  * If enabled, put device in promiscuous mode.
3026                  * This allows IO forwarding mode to forward packets
3027                  * to itself through 2 cross-connected  ports of the
3028                  * target machine.
3029                  */
3030                 if (promiscuous_on) {
3031                         ret = rte_eth_promiscuous_enable(portid);
3032                         if (ret != 0)
3033                                 rte_exit(EXIT_FAILURE,
3034                                         "rte_eth_promiscuous_enable: err=%s, port=%d\n",
3035                                         rte_strerror(-ret), portid);
3036                 }
3037
3038                 rte_eth_dev_callback_register(portid, RTE_ETH_EVENT_INTR_RESET,
3039                         ethdev_reset_event_callback, NULL);
3040
3041                 rte_eth_dev_callback_register(portid,
3042                         RTE_ETH_EVENT_IPSEC, inline_ipsec_event_callback, NULL);
3043         }
3044
3045         /* fragment reassemble is enabled */
3046         if (frag_tbl_sz != 0) {
3047                 ret = reassemble_init();
3048                 if (ret != 0)
3049                         rte_exit(EXIT_FAILURE, "failed at reassemble init");
3050         }
3051
3052         /* Replicate each context per socket */
3053         for (i = 0; i < NB_SOCKETS && i < rte_socket_count(); i++) {
3054                 socket_id = rte_socket_id_by_idx(i);
3055                 if ((socket_ctx[socket_id].session_pool != NULL) &&
3056                         (socket_ctx[socket_id].sa_in == NULL) &&
3057                         (socket_ctx[socket_id].sa_out == NULL)) {
3058                         sa_init(&socket_ctx[socket_id], socket_id);
3059                         sp4_init(&socket_ctx[socket_id], socket_id);
3060                         sp6_init(&socket_ctx[socket_id], socket_id);
3061                         rt_init(&socket_ctx[socket_id], socket_id);
3062                 }
3063         }
3064
3065         flow_init();
3066
3067         /* Get security context if available and only if dynamic field is
3068          * registered for fast path access.
3069          */
3070         if (!rte_security_dynfield_is_registered())
3071                 goto skip_sec_ctx;
3072
3073         for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
3074                 for (i = 0; i < lcore_conf[lcore_id].nb_rx_queue; i++) {
3075                         portid = lcore_conf[lcore_id].rx_queue_list[i].port_id;
3076                         lcore_conf[lcore_id].rx_queue_list[i].sec_ctx =
3077                                 rte_eth_dev_get_sec_ctx(portid);
3078                 }
3079         }
3080 skip_sec_ctx:
3081
3082         check_all_ports_link_status(enabled_port_mask);
3083
3084         if (stats_interval > 0)
3085                 rte_eal_alarm_set(stats_interval * US_PER_S,
3086                                 print_stats_cb, NULL);
3087         else
3088                 RTE_LOG(INFO, IPSEC, "Stats display disabled\n");
3089
3090         /* launch per-lcore init on every lcore */
3091         rte_eal_mp_remote_launch(ipsec_launch_one_lcore, eh_conf, CALL_MAIN);
3092         RTE_LCORE_FOREACH_WORKER(lcore_id) {
3093                 if (rte_eal_wait_lcore(lcore_id) < 0)
3094                         return -1;
3095         }
3096
3097         /* Uninitialize eventmode components */
3098         ret = eh_devs_uninit(eh_conf);
3099         if (ret < 0)
3100                 rte_exit(EXIT_FAILURE, "eh_devs_uninit failed, err=%d\n", ret);
3101
3102         /* Free eventmode configuration memory */
3103         eh_conf_uninit(eh_conf);
3104
3105         /* Destroy inline inbound and outbound sessions */
3106         for (i = 0; i < NB_SOCKETS && i < rte_socket_count(); i++) {
3107                 socket_id = rte_socket_id_by_idx(i);
3108                 inline_sessions_free(socket_ctx[socket_id].sa_in);
3109                 inline_sessions_free(socket_ctx[socket_id].sa_out);
3110         }
3111
3112         for (cdev_id = 0; cdev_id < rte_cryptodev_count(); cdev_id++) {
3113                 printf("Closing cryptodev %d...", cdev_id);
3114                 rte_cryptodev_stop(cdev_id);
3115                 rte_cryptodev_close(cdev_id);
3116                 printf(" Done\n");
3117         }
3118
3119         RTE_ETH_FOREACH_DEV(portid) {
3120                 if ((enabled_port_mask & (1 << portid)) == 0)
3121                         continue;
3122
3123                 printf("Closing port %d...", portid);
3124                 if (flow_info_tbl[portid].rx_def_flow) {
3125                         struct rte_flow_error err;
3126
3127                         ret = rte_flow_destroy(portid,
3128                                 flow_info_tbl[portid].rx_def_flow, &err);
3129                         if (ret)
3130                                 RTE_LOG(ERR, IPSEC, "Failed to destroy flow "
3131                                         " for port %u, err msg: %s\n", portid,
3132                                         err.message);
3133                 }
3134                 ret = rte_eth_dev_stop(portid);
3135                 if (ret != 0)
3136                         RTE_LOG(ERR, IPSEC,
3137                                 "rte_eth_dev_stop: err=%s, port=%u\n",
3138                                 rte_strerror(-ret), portid);
3139
3140                 rte_eth_dev_close(portid);
3141                 printf(" Done\n");
3142         }
3143
3144         /* clean up the EAL */
3145         rte_eal_cleanup();
3146         printf("Bye...\n");
3147
3148         return 0;
3149 }