xref: /dpdk/examples/l2fwd-crypto/main.c (revision f5057be340e44f3edc0fe90fa875eb89a4c49b4f)
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2015-2016 Intel Corporation
3  */
4 
5 #include <time.h>
6 #include <stdio.h>
7 #include <stdlib.h>
8 #include <string.h>
9 #include <stdint.h>
10 #include <inttypes.h>
11 #include <sys/types.h>
12 #include <sys/queue.h>
13 #include <netinet/in.h>
14 #include <setjmp.h>
15 #include <stdarg.h>
16 #include <ctype.h>
17 #include <errno.h>
18 #include <getopt.h>
19 #include <fcntl.h>
20 #include <unistd.h>
21 
22 #include <rte_string_fns.h>
23 #include <rte_atomic.h>
24 #include <rte_branch_prediction.h>
25 #include <rte_common.h>
26 #include <rte_cryptodev.h>
27 #include <rte_cycles.h>
28 #include <rte_debug.h>
29 #include <rte_eal.h>
30 #include <rte_ether.h>
31 #include <rte_ethdev.h>
32 #include <rte_interrupts.h>
33 #include <rte_ip.h>
34 #include <rte_launch.h>
35 #include <rte_lcore.h>
36 #include <rte_log.h>
37 #include <rte_malloc.h>
38 #include <rte_mbuf.h>
39 #include <rte_memcpy.h>
40 #include <rte_memory.h>
41 #include <rte_mempool.h>
42 #include <rte_per_lcore.h>
43 #include <rte_prefetch.h>
44 #include <rte_random.h>
45 #include <rte_hexdump.h>
46 #ifdef RTE_LIBRTE_PMD_CRYPTO_SCHEDULER
47 #include <rte_cryptodev_scheduler.h>
48 #endif
49 
50 enum cdev_type {
51 	CDEV_TYPE_ANY,
52 	CDEV_TYPE_HW,
53 	CDEV_TYPE_SW
54 };
55 
56 #define RTE_LOGTYPE_L2FWD RTE_LOGTYPE_USER1
57 
58 #define NB_MBUF   8192
59 
60 #define MAX_STR_LEN 32
61 #define MAX_KEY_SIZE 128
62 #define MAX_IV_SIZE 16
63 #define MAX_AAD_SIZE 65535
64 #define MAX_PKT_BURST 32
65 #define BURST_TX_DRAIN_US 100 /* TX drain every ~100us */
66 #define SESSION_POOL_CACHE_SIZE 0
67 
68 #define MAXIMUM_IV_LENGTH	16
69 #define IV_OFFSET		(sizeof(struct rte_crypto_op) + \
70 				sizeof(struct rte_crypto_sym_op))
71 
72 /*
73  * Configurable number of RX/TX ring descriptors
74  */
75 #define RTE_TEST_RX_DESC_DEFAULT 1024
76 #define RTE_TEST_TX_DESC_DEFAULT 1024
77 
78 static uint16_t nb_rxd = RTE_TEST_RX_DESC_DEFAULT;
79 static uint16_t nb_txd = RTE_TEST_TX_DESC_DEFAULT;
80 
81 /* ethernet addresses of ports */
82 static struct rte_ether_addr l2fwd_ports_eth_addr[RTE_MAX_ETHPORTS];
83 
84 /* mask of enabled ports */
85 static uint64_t l2fwd_enabled_port_mask;
86 static uint64_t l2fwd_enabled_crypto_mask;
87 
88 /* list of enabled ports */
89 static uint16_t l2fwd_dst_ports[RTE_MAX_ETHPORTS];
90 
91 
92 struct pkt_buffer {
93 	unsigned len;
94 	struct rte_mbuf *buffer[MAX_PKT_BURST];
95 };
96 
97 struct op_buffer {
98 	unsigned len;
99 	struct rte_crypto_op *buffer[MAX_PKT_BURST];
100 };
101 
102 #define MAX_RX_QUEUE_PER_LCORE 16
103 #define MAX_TX_QUEUE_PER_PORT 16
104 
105 enum l2fwd_crypto_xform_chain {
106 	L2FWD_CRYPTO_CIPHER_HASH,
107 	L2FWD_CRYPTO_HASH_CIPHER,
108 	L2FWD_CRYPTO_CIPHER_ONLY,
109 	L2FWD_CRYPTO_HASH_ONLY,
110 	L2FWD_CRYPTO_AEAD
111 };
112 
113 struct l2fwd_key {
114 	uint8_t *data;
115 	uint32_t length;
116 	rte_iova_t phys_addr;
117 };
118 
119 struct l2fwd_iv {
120 	uint8_t *data;
121 	uint16_t length;
122 };
123 
124 /** l2fwd crypto application command line options */
125 struct l2fwd_crypto_options {
126 	unsigned portmask;
127 	unsigned nb_ports_per_lcore;
128 	unsigned refresh_period;
129 	unsigned single_lcore:1;
130 
131 	enum cdev_type type;
132 	unsigned sessionless:1;
133 
134 	enum l2fwd_crypto_xform_chain xform_chain;
135 
136 	struct rte_crypto_sym_xform cipher_xform;
137 	unsigned ckey_param;
138 	int ckey_random_size;
139 	uint8_t cipher_key[MAX_KEY_SIZE];
140 
141 	struct l2fwd_iv cipher_iv;
142 	unsigned int cipher_iv_param;
143 	int cipher_iv_random_size;
144 
145 	struct rte_crypto_sym_xform auth_xform;
146 	uint8_t akey_param;
147 	int akey_random_size;
148 	uint8_t auth_key[MAX_KEY_SIZE];
149 
150 	struct l2fwd_iv auth_iv;
151 	unsigned int auth_iv_param;
152 	int auth_iv_random_size;
153 
154 	struct rte_crypto_sym_xform aead_xform;
155 	unsigned int aead_key_param;
156 	int aead_key_random_size;
157 	uint8_t aead_key[MAX_KEY_SIZE];
158 
159 	struct l2fwd_iv aead_iv;
160 	unsigned int aead_iv_param;
161 	int aead_iv_random_size;
162 
163 	struct l2fwd_key aad;
164 	unsigned aad_param;
165 	int aad_random_size;
166 
167 	int digest_size;
168 
169 	uint16_t block_size;
170 	char string_type[MAX_STR_LEN];
171 
172 	uint64_t cryptodev_mask;
173 
174 	unsigned int mac_updating;
175 };
176 
177 /** l2fwd crypto lcore params */
178 struct l2fwd_crypto_params {
179 	uint8_t dev_id;
180 	uint8_t qp_id;
181 
182 	unsigned digest_length;
183 	unsigned block_size;
184 
185 	struct l2fwd_iv cipher_iv;
186 	struct l2fwd_iv auth_iv;
187 	struct l2fwd_iv aead_iv;
188 	struct l2fwd_key aad;
189 	struct rte_cryptodev_sym_session *session;
190 
191 	uint8_t do_cipher;
192 	uint8_t do_hash;
193 	uint8_t do_aead;
194 	uint8_t hash_verify;
195 
196 	enum rte_crypto_cipher_algorithm cipher_algo;
197 	enum rte_crypto_auth_algorithm auth_algo;
198 	enum rte_crypto_aead_algorithm aead_algo;
199 };
200 
201 /** lcore configuration */
202 struct lcore_queue_conf {
203 	unsigned nb_rx_ports;
204 	uint16_t rx_port_list[MAX_RX_QUEUE_PER_LCORE];
205 
206 	unsigned nb_crypto_devs;
207 	unsigned cryptodev_list[MAX_RX_QUEUE_PER_LCORE];
208 
209 	struct op_buffer op_buf[RTE_CRYPTO_MAX_DEVS];
210 	struct pkt_buffer pkt_buf[RTE_MAX_ETHPORTS];
211 } __rte_cache_aligned;
212 
213 struct lcore_queue_conf lcore_queue_conf[RTE_MAX_LCORE];
214 
215 static struct rte_eth_conf port_conf = {
216 	.rxmode = {
217 		.mq_mode = ETH_MQ_RX_NONE,
218 		.max_rx_pkt_len = RTE_ETHER_MAX_LEN,
219 		.split_hdr_size = 0,
220 	},
221 	.txmode = {
222 		.mq_mode = ETH_MQ_TX_NONE,
223 	},
224 };
225 
226 struct rte_mempool *l2fwd_pktmbuf_pool;
227 struct rte_mempool *l2fwd_crypto_op_pool;
228 static struct {
229 	struct rte_mempool *sess_mp;
230 	struct rte_mempool *priv_mp;
231 } session_pool_socket[RTE_MAX_NUMA_NODES];
232 
233 /* Per-port statistics struct */
234 struct l2fwd_port_statistics {
235 	uint64_t tx;
236 	uint64_t rx;
237 
238 	uint64_t crypto_enqueued;
239 	uint64_t crypto_dequeued;
240 
241 	uint64_t dropped;
242 } __rte_cache_aligned;
243 
244 struct l2fwd_crypto_statistics {
245 	uint64_t enqueued;
246 	uint64_t dequeued;
247 
248 	uint64_t errors;
249 } __rte_cache_aligned;
250 
251 struct l2fwd_port_statistics port_statistics[RTE_MAX_ETHPORTS];
252 struct l2fwd_crypto_statistics crypto_statistics[RTE_CRYPTO_MAX_DEVS];
253 
254 /* A tsc-based timer responsible for triggering statistics printout */
255 #define TIMER_MILLISECOND 2000000ULL /* around 1ms at 2 Ghz */
256 #define MAX_TIMER_PERIOD 86400UL /* 1 day max */
257 
258 /* default period is 10 seconds */
259 static int64_t timer_period = 10 * TIMER_MILLISECOND * 1000;
260 
261 /* Print out statistics on packets dropped */
262 static void
263 print_stats(void)
264 {
265 	uint64_t total_packets_dropped, total_packets_tx, total_packets_rx;
266 	uint64_t total_packets_enqueued, total_packets_dequeued,
267 		total_packets_errors;
268 	uint16_t portid;
269 	uint64_t cdevid;
270 
271 	total_packets_dropped = 0;
272 	total_packets_tx = 0;
273 	total_packets_rx = 0;
274 	total_packets_enqueued = 0;
275 	total_packets_dequeued = 0;
276 	total_packets_errors = 0;
277 
278 	const char clr[] = { 27, '[', '2', 'J', '\0' };
279 	const char topLeft[] = { 27, '[', '1', ';', '1', 'H', '\0' };
280 
281 		/* Clear screen and move to top left */
282 	printf("%s%s", clr, topLeft);
283 
284 	printf("\nPort statistics ====================================");
285 
286 	for (portid = 0; portid < RTE_MAX_ETHPORTS; portid++) {
287 		/* skip disabled ports */
288 		if ((l2fwd_enabled_port_mask & (1 << portid)) == 0)
289 			continue;
290 		printf("\nStatistics for port %u ------------------------------"
291 			   "\nPackets sent: %32"PRIu64
292 			   "\nPackets received: %28"PRIu64
293 			   "\nPackets dropped: %29"PRIu64,
294 			   portid,
295 			   port_statistics[portid].tx,
296 			   port_statistics[portid].rx,
297 			   port_statistics[portid].dropped);
298 
299 		total_packets_dropped += port_statistics[portid].dropped;
300 		total_packets_tx += port_statistics[portid].tx;
301 		total_packets_rx += port_statistics[portid].rx;
302 	}
303 	printf("\nCrypto statistics ==================================");
304 
305 	for (cdevid = 0; cdevid < RTE_CRYPTO_MAX_DEVS; cdevid++) {
306 		/* skip disabled ports */
307 		if ((l2fwd_enabled_crypto_mask & (((uint64_t)1) << cdevid)) == 0)
308 			continue;
309 		printf("\nStatistics for cryptodev %"PRIu64
310 				" -------------------------"
311 			   "\nPackets enqueued: %28"PRIu64
312 			   "\nPackets dequeued: %28"PRIu64
313 			   "\nPackets errors: %30"PRIu64,
314 			   cdevid,
315 			   crypto_statistics[cdevid].enqueued,
316 			   crypto_statistics[cdevid].dequeued,
317 			   crypto_statistics[cdevid].errors);
318 
319 		total_packets_enqueued += crypto_statistics[cdevid].enqueued;
320 		total_packets_dequeued += crypto_statistics[cdevid].dequeued;
321 		total_packets_errors += crypto_statistics[cdevid].errors;
322 	}
323 	printf("\nAggregate statistics ==============================="
324 		   "\nTotal packets received: %22"PRIu64
325 		   "\nTotal packets enqueued: %22"PRIu64
326 		   "\nTotal packets dequeued: %22"PRIu64
327 		   "\nTotal packets sent: %26"PRIu64
328 		   "\nTotal packets dropped: %23"PRIu64
329 		   "\nTotal packets crypto errors: %17"PRIu64,
330 		   total_packets_rx,
331 		   total_packets_enqueued,
332 		   total_packets_dequeued,
333 		   total_packets_tx,
334 		   total_packets_dropped,
335 		   total_packets_errors);
336 	printf("\n====================================================\n");
337 
338 	fflush(stdout);
339 }
340 
341 static int
342 l2fwd_crypto_send_burst(struct lcore_queue_conf *qconf, unsigned n,
343 		struct l2fwd_crypto_params *cparams)
344 {
345 	struct rte_crypto_op **op_buffer;
346 	unsigned ret;
347 
348 	op_buffer = (struct rte_crypto_op **)
349 			qconf->op_buf[cparams->dev_id].buffer;
350 
351 	ret = rte_cryptodev_enqueue_burst(cparams->dev_id,
352 			cparams->qp_id,	op_buffer, (uint16_t) n);
353 
354 	crypto_statistics[cparams->dev_id].enqueued += ret;
355 	if (unlikely(ret < n)) {
356 		crypto_statistics[cparams->dev_id].errors += (n - ret);
357 		do {
358 			rte_pktmbuf_free(op_buffer[ret]->sym->m_src);
359 			rte_crypto_op_free(op_buffer[ret]);
360 		} while (++ret < n);
361 	}
362 
363 	return 0;
364 }
365 
366 static int
367 l2fwd_crypto_enqueue(struct rte_crypto_op *op,
368 		struct l2fwd_crypto_params *cparams)
369 {
370 	unsigned lcore_id, len;
371 	struct lcore_queue_conf *qconf;
372 
373 	lcore_id = rte_lcore_id();
374 
375 	qconf = &lcore_queue_conf[lcore_id];
376 	len = qconf->op_buf[cparams->dev_id].len;
377 	qconf->op_buf[cparams->dev_id].buffer[len] = op;
378 	len++;
379 
380 	/* enough ops to be sent */
381 	if (len == MAX_PKT_BURST) {
382 		l2fwd_crypto_send_burst(qconf, MAX_PKT_BURST, cparams);
383 		len = 0;
384 	}
385 
386 	qconf->op_buf[cparams->dev_id].len = len;
387 	return 0;
388 }
389 
390 static int
391 l2fwd_simple_crypto_enqueue(struct rte_mbuf *m,
392 		struct rte_crypto_op *op,
393 		struct l2fwd_crypto_params *cparams)
394 {
395 	struct rte_ether_hdr *eth_hdr;
396 	struct rte_ipv4_hdr *ip_hdr;
397 
398 	uint32_t ipdata_offset, data_len;
399 	uint32_t pad_len = 0;
400 	char *padding;
401 
402 	eth_hdr = rte_pktmbuf_mtod(m, struct rte_ether_hdr *);
403 
404 	if (eth_hdr->ether_type != rte_cpu_to_be_16(RTE_ETHER_TYPE_IPV4))
405 		return -1;
406 
407 	ipdata_offset = sizeof(struct rte_ether_hdr);
408 
409 	ip_hdr = (struct rte_ipv4_hdr *)(rte_pktmbuf_mtod(m, char *) +
410 			ipdata_offset);
411 
412 	ipdata_offset += (ip_hdr->version_ihl & RTE_IPV4_HDR_IHL_MASK)
413 			* RTE_IPV4_IHL_MULTIPLIER;
414 
415 
416 	/* Zero pad data to be crypto'd so it is block aligned */
417 	data_len  = rte_pktmbuf_data_len(m) - ipdata_offset;
418 
419 	if ((cparams->do_hash || cparams->do_aead) && cparams->hash_verify)
420 		data_len -= cparams->digest_length;
421 
422 	if (cparams->do_cipher) {
423 		/*
424 		 * Following algorithms are block cipher algorithms,
425 		 * and might need padding
426 		 */
427 		switch (cparams->cipher_algo) {
428 		case RTE_CRYPTO_CIPHER_AES_CBC:
429 		case RTE_CRYPTO_CIPHER_AES_ECB:
430 		case RTE_CRYPTO_CIPHER_DES_CBC:
431 		case RTE_CRYPTO_CIPHER_3DES_CBC:
432 		case RTE_CRYPTO_CIPHER_3DES_ECB:
433 			if (data_len % cparams->block_size)
434 				pad_len = cparams->block_size -
435 					(data_len % cparams->block_size);
436 			break;
437 		default:
438 			pad_len = 0;
439 		}
440 
441 		if (pad_len) {
442 			padding = rte_pktmbuf_append(m, pad_len);
443 			if (unlikely(!padding))
444 				return -1;
445 
446 			data_len += pad_len;
447 			memset(padding, 0, pad_len);
448 		}
449 	}
450 
451 	/* Set crypto operation data parameters */
452 	rte_crypto_op_attach_sym_session(op, cparams->session);
453 
454 	if (cparams->do_hash) {
455 		if (cparams->auth_iv.length) {
456 			uint8_t *iv_ptr = rte_crypto_op_ctod_offset(op,
457 						uint8_t *,
458 						IV_OFFSET +
459 						cparams->cipher_iv.length);
460 			/*
461 			 * Copy IV at the end of the crypto operation,
462 			 * after the cipher IV, if added
463 			 */
464 			rte_memcpy(iv_ptr, cparams->auth_iv.data,
465 					cparams->auth_iv.length);
466 		}
467 		if (!cparams->hash_verify) {
468 			/* Append space for digest to end of packet */
469 			op->sym->auth.digest.data = (uint8_t *)rte_pktmbuf_append(m,
470 				cparams->digest_length);
471 		} else {
472 			op->sym->auth.digest.data = rte_pktmbuf_mtod(m,
473 				uint8_t *) + ipdata_offset + data_len;
474 		}
475 
476 		op->sym->auth.digest.phys_addr = rte_pktmbuf_iova_offset(m,
477 				rte_pktmbuf_pkt_len(m) - cparams->digest_length);
478 
479 		/* For wireless algorithms, offset/length must be in bits */
480 		if (cparams->auth_algo == RTE_CRYPTO_AUTH_SNOW3G_UIA2 ||
481 				cparams->auth_algo == RTE_CRYPTO_AUTH_KASUMI_F9 ||
482 				cparams->auth_algo == RTE_CRYPTO_AUTH_ZUC_EIA3) {
483 			op->sym->auth.data.offset = ipdata_offset << 3;
484 			op->sym->auth.data.length = data_len << 3;
485 		} else {
486 			op->sym->auth.data.offset = ipdata_offset;
487 			op->sym->auth.data.length = data_len;
488 		}
489 	}
490 
491 	if (cparams->do_cipher) {
492 		uint8_t *iv_ptr = rte_crypto_op_ctod_offset(op, uint8_t *,
493 							IV_OFFSET);
494 		/* Copy IV at the end of the crypto operation */
495 		rte_memcpy(iv_ptr, cparams->cipher_iv.data,
496 				cparams->cipher_iv.length);
497 
498 		/* For wireless algorithms, offset/length must be in bits */
499 		if (cparams->cipher_algo == RTE_CRYPTO_CIPHER_SNOW3G_UEA2 ||
500 				cparams->cipher_algo == RTE_CRYPTO_CIPHER_KASUMI_F8 ||
501 				cparams->cipher_algo == RTE_CRYPTO_CIPHER_ZUC_EEA3) {
502 			op->sym->cipher.data.offset = ipdata_offset << 3;
503 			op->sym->cipher.data.length = data_len << 3;
504 		} else {
505 			op->sym->cipher.data.offset = ipdata_offset;
506 			op->sym->cipher.data.length = data_len;
507 		}
508 	}
509 
510 	if (cparams->do_aead) {
511 		uint8_t *iv_ptr = rte_crypto_op_ctod_offset(op, uint8_t *,
512 							IV_OFFSET);
513 		/* Copy IV at the end of the crypto operation */
514 		/*
515 		 * If doing AES-CCM, nonce is copied one byte
516 		 * after the start of IV field
517 		 */
518 		if (cparams->aead_algo == RTE_CRYPTO_AEAD_AES_CCM)
519 			rte_memcpy(iv_ptr + 1, cparams->aead_iv.data,
520 					cparams->aead_iv.length);
521 		else
522 			rte_memcpy(iv_ptr, cparams->aead_iv.data,
523 					cparams->aead_iv.length);
524 
525 		op->sym->aead.data.offset = ipdata_offset;
526 		op->sym->aead.data.length = data_len;
527 
528 		if (!cparams->hash_verify) {
529 			/* Append space for digest to end of packet */
530 			op->sym->aead.digest.data = (uint8_t *)rte_pktmbuf_append(m,
531 				cparams->digest_length);
532 		} else {
533 			op->sym->aead.digest.data = rte_pktmbuf_mtod(m,
534 				uint8_t *) + ipdata_offset + data_len;
535 		}
536 
537 		op->sym->aead.digest.phys_addr = rte_pktmbuf_iova_offset(m,
538 				rte_pktmbuf_pkt_len(m) - cparams->digest_length);
539 
540 		if (cparams->aad.length) {
541 			op->sym->aead.aad.data = cparams->aad.data;
542 			op->sym->aead.aad.phys_addr = cparams->aad.phys_addr;
543 		}
544 	}
545 
546 	op->sym->m_src = m;
547 
548 	return l2fwd_crypto_enqueue(op, cparams);
549 }
550 
551 
552 /* Send the burst of packets on an output interface */
553 static int
554 l2fwd_send_burst(struct lcore_queue_conf *qconf, unsigned n,
555 		uint16_t port)
556 {
557 	struct rte_mbuf **pkt_buffer;
558 	unsigned ret;
559 
560 	pkt_buffer = (struct rte_mbuf **)qconf->pkt_buf[port].buffer;
561 
562 	ret = rte_eth_tx_burst(port, 0, pkt_buffer, (uint16_t)n);
563 	port_statistics[port].tx += ret;
564 	if (unlikely(ret < n)) {
565 		port_statistics[port].dropped += (n - ret);
566 		do {
567 			rte_pktmbuf_free(pkt_buffer[ret]);
568 		} while (++ret < n);
569 	}
570 
571 	return 0;
572 }
573 
574 /* Enqueue packets for TX and prepare them to be sent */
575 static int
576 l2fwd_send_packet(struct rte_mbuf *m, uint16_t port)
577 {
578 	unsigned lcore_id, len;
579 	struct lcore_queue_conf *qconf;
580 
581 	lcore_id = rte_lcore_id();
582 
583 	qconf = &lcore_queue_conf[lcore_id];
584 	len = qconf->pkt_buf[port].len;
585 	qconf->pkt_buf[port].buffer[len] = m;
586 	len++;
587 
588 	/* enough pkts to be sent */
589 	if (unlikely(len == MAX_PKT_BURST)) {
590 		l2fwd_send_burst(qconf, MAX_PKT_BURST, port);
591 		len = 0;
592 	}
593 
594 	qconf->pkt_buf[port].len = len;
595 	return 0;
596 }
597 
598 static void
599 l2fwd_mac_updating(struct rte_mbuf *m, uint16_t dest_portid)
600 {
601 	struct rte_ether_hdr *eth;
602 	void *tmp;
603 
604 	eth = rte_pktmbuf_mtod(m, struct rte_ether_hdr *);
605 
606 	/* 02:00:00:00:00:xx */
607 	tmp = &eth->d_addr.addr_bytes[0];
608 	*((uint64_t *)tmp) = 0x000000000002 + ((uint64_t)dest_portid << 40);
609 
610 	/* src addr */
611 	rte_ether_addr_copy(&l2fwd_ports_eth_addr[dest_portid], &eth->s_addr);
612 }
613 
614 static void
615 l2fwd_simple_forward(struct rte_mbuf *m, uint16_t portid,
616 		struct l2fwd_crypto_options *options)
617 {
618 	uint16_t dst_port;
619 
620 	dst_port = l2fwd_dst_ports[portid];
621 
622 	if (options->mac_updating)
623 		l2fwd_mac_updating(m, dst_port);
624 
625 	l2fwd_send_packet(m, dst_port);
626 }
627 
628 /** Generate random key */
629 static void
630 generate_random_key(uint8_t *key, unsigned length)
631 {
632 	int fd;
633 	int ret;
634 
635 	fd = open("/dev/urandom", O_RDONLY);
636 	if (fd < 0)
637 		rte_exit(EXIT_FAILURE, "Failed to generate random key\n");
638 
639 	ret = read(fd, key, length);
640 	close(fd);
641 
642 	if (ret != (signed)length)
643 		rte_exit(EXIT_FAILURE, "Failed to generate random key\n");
644 }
645 
646 static struct rte_cryptodev_sym_session *
647 initialize_crypto_session(struct l2fwd_crypto_options *options, uint8_t cdev_id)
648 {
649 	struct rte_crypto_sym_xform *first_xform;
650 	struct rte_cryptodev_sym_session *session;
651 	int retval = rte_cryptodev_socket_id(cdev_id);
652 
653 	if (retval < 0)
654 		return NULL;
655 
656 	uint8_t socket_id = (uint8_t) retval;
657 
658 	if (options->xform_chain == L2FWD_CRYPTO_AEAD) {
659 		first_xform = &options->aead_xform;
660 	} else if (options->xform_chain == L2FWD_CRYPTO_CIPHER_HASH) {
661 		first_xform = &options->cipher_xform;
662 		first_xform->next = &options->auth_xform;
663 	} else if (options->xform_chain == L2FWD_CRYPTO_HASH_CIPHER) {
664 		first_xform = &options->auth_xform;
665 		first_xform->next = &options->cipher_xform;
666 	} else if (options->xform_chain == L2FWD_CRYPTO_CIPHER_ONLY) {
667 		first_xform = &options->cipher_xform;
668 	} else {
669 		first_xform = &options->auth_xform;
670 	}
671 
672 	session = rte_cryptodev_sym_session_create(
673 			session_pool_socket[socket_id].sess_mp);
674 	if (session == NULL)
675 		return NULL;
676 
677 	if (rte_cryptodev_sym_session_init(cdev_id, session,
678 				first_xform,
679 				session_pool_socket[socket_id].priv_mp) < 0)
680 		return NULL;
681 
682 	return session;
683 }
684 
685 static void
686 l2fwd_crypto_options_print(struct l2fwd_crypto_options *options);
687 
688 /* main processing loop */
689 static void
690 l2fwd_main_loop(struct l2fwd_crypto_options *options)
691 {
692 	struct rte_mbuf *m, *pkts_burst[MAX_PKT_BURST];
693 	struct rte_crypto_op *ops_burst[MAX_PKT_BURST];
694 
695 	unsigned lcore_id = rte_lcore_id();
696 	uint64_t prev_tsc = 0, diff_tsc, cur_tsc, timer_tsc = 0;
697 	unsigned int i, j, nb_rx, len;
698 	uint16_t portid;
699 	struct lcore_queue_conf *qconf = &lcore_queue_conf[lcore_id];
700 	const uint64_t drain_tsc = (rte_get_tsc_hz() + US_PER_S - 1) /
701 			US_PER_S * BURST_TX_DRAIN_US;
702 	struct l2fwd_crypto_params *cparams;
703 	struct l2fwd_crypto_params port_cparams[qconf->nb_crypto_devs];
704 	struct rte_cryptodev_sym_session *session;
705 
706 	if (qconf->nb_rx_ports == 0) {
707 		RTE_LOG(INFO, L2FWD, "lcore %u has nothing to do\n", lcore_id);
708 		return;
709 	}
710 
711 	RTE_LOG(INFO, L2FWD, "entering main loop on lcore %u\n", lcore_id);
712 
713 	for (i = 0; i < qconf->nb_rx_ports; i++) {
714 
715 		portid = qconf->rx_port_list[i];
716 		RTE_LOG(INFO, L2FWD, " -- lcoreid=%u portid=%u\n", lcore_id,
717 			portid);
718 	}
719 
720 	for (i = 0; i < qconf->nb_crypto_devs; i++) {
721 		port_cparams[i].do_cipher = 0;
722 		port_cparams[i].do_hash = 0;
723 		port_cparams[i].do_aead = 0;
724 
725 		switch (options->xform_chain) {
726 		case L2FWD_CRYPTO_AEAD:
727 			port_cparams[i].do_aead = 1;
728 			break;
729 		case L2FWD_CRYPTO_CIPHER_HASH:
730 		case L2FWD_CRYPTO_HASH_CIPHER:
731 			port_cparams[i].do_cipher = 1;
732 			port_cparams[i].do_hash = 1;
733 			break;
734 		case L2FWD_CRYPTO_HASH_ONLY:
735 			port_cparams[i].do_hash = 1;
736 			break;
737 		case L2FWD_CRYPTO_CIPHER_ONLY:
738 			port_cparams[i].do_cipher = 1;
739 			break;
740 		}
741 
742 		port_cparams[i].dev_id = qconf->cryptodev_list[i];
743 		port_cparams[i].qp_id = 0;
744 
745 		port_cparams[i].block_size = options->block_size;
746 
747 		if (port_cparams[i].do_hash) {
748 			port_cparams[i].auth_iv.data = options->auth_iv.data;
749 			port_cparams[i].auth_iv.length = options->auth_iv.length;
750 			if (!options->auth_iv_param)
751 				generate_random_key(port_cparams[i].auth_iv.data,
752 						port_cparams[i].auth_iv.length);
753 			if (options->auth_xform.auth.op == RTE_CRYPTO_AUTH_OP_VERIFY)
754 				port_cparams[i].hash_verify = 1;
755 			else
756 				port_cparams[i].hash_verify = 0;
757 
758 			port_cparams[i].auth_algo = options->auth_xform.auth.algo;
759 			port_cparams[i].digest_length =
760 					options->auth_xform.auth.digest_length;
761 			/* Set IV parameters */
762 			if (options->auth_iv.length) {
763 				options->auth_xform.auth.iv.offset =
764 					IV_OFFSET + options->cipher_iv.length;
765 				options->auth_xform.auth.iv.length =
766 					options->auth_iv.length;
767 			}
768 		}
769 
770 		if (port_cparams[i].do_aead) {
771 			port_cparams[i].aead_iv.data = options->aead_iv.data;
772 			port_cparams[i].aead_iv.length = options->aead_iv.length;
773 			if (!options->aead_iv_param)
774 				generate_random_key(port_cparams[i].aead_iv.data,
775 						port_cparams[i].aead_iv.length);
776 			port_cparams[i].aead_algo = options->aead_xform.aead.algo;
777 			port_cparams[i].digest_length =
778 					options->aead_xform.aead.digest_length;
779 			if (options->aead_xform.aead.aad_length) {
780 				port_cparams[i].aad.data = options->aad.data;
781 				port_cparams[i].aad.phys_addr = options->aad.phys_addr;
782 				port_cparams[i].aad.length = options->aad.length;
783 				if (!options->aad_param)
784 					generate_random_key(port_cparams[i].aad.data,
785 						port_cparams[i].aad.length);
786 				/*
787 				 * If doing AES-CCM, first 18 bytes has to be reserved,
788 				 * and actual AAD should start from byte 18
789 				 */
790 				if (port_cparams[i].aead_algo == RTE_CRYPTO_AEAD_AES_CCM)
791 					memmove(port_cparams[i].aad.data + 18,
792 							port_cparams[i].aad.data,
793 							port_cparams[i].aad.length);
794 
795 			} else
796 				port_cparams[i].aad.length = 0;
797 
798 			if (options->aead_xform.aead.op == RTE_CRYPTO_AEAD_OP_DECRYPT)
799 				port_cparams[i].hash_verify = 1;
800 			else
801 				port_cparams[i].hash_verify = 0;
802 
803 			/* Set IV parameters */
804 			options->aead_xform.aead.iv.offset = IV_OFFSET;
805 			options->aead_xform.aead.iv.length = options->aead_iv.length;
806 		}
807 
808 		if (port_cparams[i].do_cipher) {
809 			port_cparams[i].cipher_iv.data = options->cipher_iv.data;
810 			port_cparams[i].cipher_iv.length = options->cipher_iv.length;
811 			if (!options->cipher_iv_param)
812 				generate_random_key(port_cparams[i].cipher_iv.data,
813 						port_cparams[i].cipher_iv.length);
814 
815 			port_cparams[i].cipher_algo = options->cipher_xform.cipher.algo;
816 			/* Set IV parameters */
817 			options->cipher_xform.cipher.iv.offset = IV_OFFSET;
818 			options->cipher_xform.cipher.iv.length =
819 						options->cipher_iv.length;
820 		}
821 
822 		session = initialize_crypto_session(options,
823 				port_cparams[i].dev_id);
824 		if (session == NULL)
825 			rte_exit(EXIT_FAILURE, "Failed to initialize crypto session\n");
826 
827 		port_cparams[i].session = session;
828 
829 		RTE_LOG(INFO, L2FWD, " -- lcoreid=%u cryptoid=%u\n", lcore_id,
830 				port_cparams[i].dev_id);
831 	}
832 
833 	l2fwd_crypto_options_print(options);
834 
835 	/*
836 	 * Initialize previous tsc timestamp before the loop,
837 	 * to avoid showing the port statistics immediately,
838 	 * so user can see the crypto information.
839 	 */
840 	prev_tsc = rte_rdtsc();
841 	while (1) {
842 
843 		cur_tsc = rte_rdtsc();
844 
845 		/*
846 		 * Crypto device/TX burst queue drain
847 		 */
848 		diff_tsc = cur_tsc - prev_tsc;
849 		if (unlikely(diff_tsc > drain_tsc)) {
850 			/* Enqueue all crypto ops remaining in buffers */
851 			for (i = 0; i < qconf->nb_crypto_devs; i++) {
852 				cparams = &port_cparams[i];
853 				len = qconf->op_buf[cparams->dev_id].len;
854 				l2fwd_crypto_send_burst(qconf, len, cparams);
855 				qconf->op_buf[cparams->dev_id].len = 0;
856 			}
857 			/* Transmit all packets remaining in buffers */
858 			for (portid = 0; portid < RTE_MAX_ETHPORTS; portid++) {
859 				if (qconf->pkt_buf[portid].len == 0)
860 					continue;
861 				l2fwd_send_burst(&lcore_queue_conf[lcore_id],
862 						 qconf->pkt_buf[portid].len,
863 						 portid);
864 				qconf->pkt_buf[portid].len = 0;
865 			}
866 
867 			/* if timer is enabled */
868 			if (timer_period > 0) {
869 
870 				/* advance the timer */
871 				timer_tsc += diff_tsc;
872 
873 				/* if timer has reached its timeout */
874 				if (unlikely(timer_tsc >=
875 						(uint64_t)timer_period)) {
876 
877 					/* do this only on master core */
878 					if (lcore_id == rte_get_master_lcore()
879 						&& options->refresh_period) {
880 						print_stats();
881 						timer_tsc = 0;
882 					}
883 				}
884 			}
885 
886 			prev_tsc = cur_tsc;
887 		}
888 
889 		/*
890 		 * Read packet from RX queues
891 		 */
892 		for (i = 0; i < qconf->nb_rx_ports; i++) {
893 			portid = qconf->rx_port_list[i];
894 
895 			cparams = &port_cparams[i];
896 
897 			nb_rx = rte_eth_rx_burst(portid, 0,
898 						 pkts_burst, MAX_PKT_BURST);
899 
900 			port_statistics[portid].rx += nb_rx;
901 
902 			if (nb_rx) {
903 				/*
904 				 * If we can't allocate a crypto_ops, then drop
905 				 * the rest of the burst and dequeue and
906 				 * process the packets to free offload structs
907 				 */
908 				if (rte_crypto_op_bulk_alloc(
909 						l2fwd_crypto_op_pool,
910 						RTE_CRYPTO_OP_TYPE_SYMMETRIC,
911 						ops_burst, nb_rx) !=
912 								nb_rx) {
913 					for (j = 0; j < nb_rx; j++)
914 						rte_pktmbuf_free(pkts_burst[j]);
915 
916 					nb_rx = 0;
917 				}
918 
919 				/* Enqueue packets from Crypto device*/
920 				for (j = 0; j < nb_rx; j++) {
921 					m = pkts_burst[j];
922 
923 					l2fwd_simple_crypto_enqueue(m,
924 							ops_burst[j], cparams);
925 				}
926 			}
927 
928 			/* Dequeue packets from Crypto device */
929 			do {
930 				nb_rx = rte_cryptodev_dequeue_burst(
931 						cparams->dev_id, cparams->qp_id,
932 						ops_burst, MAX_PKT_BURST);
933 
934 				crypto_statistics[cparams->dev_id].dequeued +=
935 						nb_rx;
936 
937 				/* Forward crypto'd packets */
938 				for (j = 0; j < nb_rx; j++) {
939 					m = ops_burst[j]->sym->m_src;
940 
941 					rte_crypto_op_free(ops_burst[j]);
942 					l2fwd_simple_forward(m, portid,
943 							options);
944 				}
945 			} while (nb_rx == MAX_PKT_BURST);
946 		}
947 	}
948 }
949 
950 static int
951 l2fwd_launch_one_lcore(void *arg)
952 {
953 	l2fwd_main_loop((struct l2fwd_crypto_options *)arg);
954 	return 0;
955 }
956 
957 /* Display command line arguments usage */
958 static void
959 l2fwd_crypto_usage(const char *prgname)
960 {
961 	printf("%s [EAL options] --\n"
962 		"  -p PORTMASK: hexadecimal bitmask of ports to configure\n"
963 		"  -q NQ: number of queue (=ports) per lcore (default is 1)\n"
964 		"  -s manage all ports from single lcore\n"
965 		"  -T PERIOD: statistics will be refreshed each PERIOD seconds"
966 		" (0 to disable, 10 default, 86400 maximum)\n"
967 
968 		"  --cdev_type HW / SW / ANY\n"
969 		"  --chain HASH_CIPHER / CIPHER_HASH / CIPHER_ONLY /"
970 		" HASH_ONLY / AEAD\n"
971 
972 		"  --cipher_algo ALGO\n"
973 		"  --cipher_op ENCRYPT / DECRYPT\n"
974 		"  --cipher_key KEY (bytes separated with \":\")\n"
975 		"  --cipher_key_random_size SIZE: size of cipher key when generated randomly\n"
976 		"  --cipher_iv IV (bytes separated with \":\")\n"
977 		"  --cipher_iv_random_size SIZE: size of cipher IV when generated randomly\n"
978 
979 		"  --auth_algo ALGO\n"
980 		"  --auth_op GENERATE / VERIFY\n"
981 		"  --auth_key KEY (bytes separated with \":\")\n"
982 		"  --auth_key_random_size SIZE: size of auth key when generated randomly\n"
983 		"  --auth_iv IV (bytes separated with \":\")\n"
984 		"  --auth_iv_random_size SIZE: size of auth IV when generated randomly\n"
985 
986 		"  --aead_algo ALGO\n"
987 		"  --aead_op ENCRYPT / DECRYPT\n"
988 		"  --aead_key KEY (bytes separated with \":\")\n"
989 		"  --aead_key_random_size SIZE: size of AEAD key when generated randomly\n"
990 		"  --aead_iv IV (bytes separated with \":\")\n"
991 		"  --aead_iv_random_size SIZE: size of AEAD IV when generated randomly\n"
992 		"  --aad AAD (bytes separated with \":\")\n"
993 		"  --aad_random_size SIZE: size of AAD when generated randomly\n"
994 
995 		"  --digest_size SIZE: size of digest to be generated/verified\n"
996 
997 		"  --sessionless\n"
998 		"  --cryptodev_mask MASK: hexadecimal bitmask of crypto devices to configure\n"
999 
1000 		"  --[no-]mac-updating: Enable or disable MAC addresses updating (enabled by default)\n"
1001 		"      When enabled:\n"
1002 		"       - The source MAC address is replaced by the TX port MAC address\n"
1003 		"       - The destination MAC address is replaced by 02:00:00:00:00:TX_PORT_ID\n",
1004 	       prgname);
1005 }
1006 
1007 /** Parse crypto device type command line argument */
1008 static int
1009 parse_cryptodev_type(enum cdev_type *type, char *optarg)
1010 {
1011 	if (strcmp("HW", optarg) == 0) {
1012 		*type = CDEV_TYPE_HW;
1013 		return 0;
1014 	} else if (strcmp("SW", optarg) == 0) {
1015 		*type = CDEV_TYPE_SW;
1016 		return 0;
1017 	} else if (strcmp("ANY", optarg) == 0) {
1018 		*type = CDEV_TYPE_ANY;
1019 		return 0;
1020 	}
1021 
1022 	return -1;
1023 }
1024 
1025 /** Parse crypto chain xform command line argument */
1026 static int
1027 parse_crypto_opt_chain(struct l2fwd_crypto_options *options, char *optarg)
1028 {
1029 	if (strcmp("CIPHER_HASH", optarg) == 0) {
1030 		options->xform_chain = L2FWD_CRYPTO_CIPHER_HASH;
1031 		return 0;
1032 	} else if (strcmp("HASH_CIPHER", optarg) == 0) {
1033 		options->xform_chain = L2FWD_CRYPTO_HASH_CIPHER;
1034 		return 0;
1035 	} else if (strcmp("CIPHER_ONLY", optarg) == 0) {
1036 		options->xform_chain = L2FWD_CRYPTO_CIPHER_ONLY;
1037 		return 0;
1038 	} else if (strcmp("HASH_ONLY", optarg) == 0) {
1039 		options->xform_chain = L2FWD_CRYPTO_HASH_ONLY;
1040 		return 0;
1041 	} else if (strcmp("AEAD", optarg) == 0) {
1042 		options->xform_chain = L2FWD_CRYPTO_AEAD;
1043 		return 0;
1044 	}
1045 
1046 	return -1;
1047 }
1048 
1049 /** Parse crypto cipher algo option command line argument */
1050 static int
1051 parse_cipher_algo(enum rte_crypto_cipher_algorithm *algo, char *optarg)
1052 {
1053 
1054 	if (rte_cryptodev_get_cipher_algo_enum(algo, optarg) < 0) {
1055 		RTE_LOG(ERR, USER1, "Cipher algorithm specified "
1056 				"not supported!\n");
1057 		return -1;
1058 	}
1059 
1060 	return 0;
1061 }
1062 
1063 /** Parse crypto cipher operation command line argument */
1064 static int
1065 parse_cipher_op(enum rte_crypto_cipher_operation *op, char *optarg)
1066 {
1067 	if (strcmp("ENCRYPT", optarg) == 0) {
1068 		*op = RTE_CRYPTO_CIPHER_OP_ENCRYPT;
1069 		return 0;
1070 	} else if (strcmp("DECRYPT", optarg) == 0) {
1071 		*op = RTE_CRYPTO_CIPHER_OP_DECRYPT;
1072 		return 0;
1073 	}
1074 
1075 	printf("Cipher operation not supported!\n");
1076 	return -1;
1077 }
1078 
1079 /** Parse bytes from command line argument */
1080 static int
1081 parse_bytes(uint8_t *data, char *input_arg, uint16_t max_size)
1082 {
1083 	unsigned byte_count;
1084 	char *token;
1085 
1086 	errno = 0;
1087 	for (byte_count = 0, token = strtok(input_arg, ":");
1088 			(byte_count < max_size) && (token != NULL);
1089 			token = strtok(NULL, ":")) {
1090 
1091 		int number = (int)strtol(token, NULL, 16);
1092 
1093 		if (errno == EINVAL || errno == ERANGE || number > 0xFF)
1094 			return -1;
1095 
1096 		data[byte_count++] = (uint8_t)number;
1097 	}
1098 
1099 	return byte_count;
1100 }
1101 
1102 /** Parse size param*/
1103 static int
1104 parse_size(int *size, const char *q_arg)
1105 {
1106 	char *end = NULL;
1107 	unsigned long n;
1108 
1109 	/* parse hexadecimal string */
1110 	n = strtoul(q_arg, &end, 10);
1111 	if ((q_arg[0] == '\0') || (end == NULL) || (*end != '\0'))
1112 		n = 0;
1113 
1114 	if (n == 0) {
1115 		printf("invalid size\n");
1116 		return -1;
1117 	}
1118 
1119 	*size = n;
1120 	return 0;
1121 }
1122 
1123 /** Parse crypto cipher operation command line argument */
1124 static int
1125 parse_auth_algo(enum rte_crypto_auth_algorithm *algo, char *optarg)
1126 {
1127 	if (rte_cryptodev_get_auth_algo_enum(algo, optarg) < 0) {
1128 		RTE_LOG(ERR, USER1, "Authentication algorithm specified "
1129 				"not supported!\n");
1130 		return -1;
1131 	}
1132 
1133 	return 0;
1134 }
1135 
1136 static int
1137 parse_auth_op(enum rte_crypto_auth_operation *op, char *optarg)
1138 {
1139 	if (strcmp("VERIFY", optarg) == 0) {
1140 		*op = RTE_CRYPTO_AUTH_OP_VERIFY;
1141 		return 0;
1142 	} else if (strcmp("GENERATE", optarg) == 0) {
1143 		*op = RTE_CRYPTO_AUTH_OP_GENERATE;
1144 		return 0;
1145 	}
1146 
1147 	printf("Authentication operation specified not supported!\n");
1148 	return -1;
1149 }
1150 
1151 static int
1152 parse_aead_algo(enum rte_crypto_aead_algorithm *algo, char *optarg)
1153 {
1154 	if (rte_cryptodev_get_aead_algo_enum(algo, optarg) < 0) {
1155 		RTE_LOG(ERR, USER1, "AEAD algorithm specified "
1156 				"not supported!\n");
1157 		return -1;
1158 	}
1159 
1160 	return 0;
1161 }
1162 
1163 static int
1164 parse_aead_op(enum rte_crypto_aead_operation *op, char *optarg)
1165 {
1166 	if (strcmp("ENCRYPT", optarg) == 0) {
1167 		*op = RTE_CRYPTO_AEAD_OP_ENCRYPT;
1168 		return 0;
1169 	} else if (strcmp("DECRYPT", optarg) == 0) {
1170 		*op = RTE_CRYPTO_AEAD_OP_DECRYPT;
1171 		return 0;
1172 	}
1173 
1174 	printf("AEAD operation specified not supported!\n");
1175 	return -1;
1176 }
1177 static int
1178 parse_cryptodev_mask(struct l2fwd_crypto_options *options,
1179 		const char *q_arg)
1180 {
1181 	char *end = NULL;
1182 	uint64_t pm;
1183 
1184 	/* parse hexadecimal string */
1185 	pm = strtoul(q_arg, &end, 16);
1186 	if ((pm == '\0') || (end == NULL) || (*end != '\0'))
1187 		pm = 0;
1188 
1189 	options->cryptodev_mask = pm;
1190 	if (options->cryptodev_mask == 0) {
1191 		printf("invalid cryptodev_mask specified\n");
1192 		return -1;
1193 	}
1194 
1195 	return 0;
1196 }
1197 
1198 /** Parse long options */
1199 static int
1200 l2fwd_crypto_parse_args_long_options(struct l2fwd_crypto_options *options,
1201 		struct option *lgopts, int option_index)
1202 {
1203 	int retval;
1204 
1205 	if (strcmp(lgopts[option_index].name, "cdev_type") == 0) {
1206 		retval = parse_cryptodev_type(&options->type, optarg);
1207 		if (retval == 0)
1208 			strlcpy(options->string_type, optarg, MAX_STR_LEN);
1209 		return retval;
1210 	}
1211 
1212 	else if (strcmp(lgopts[option_index].name, "chain") == 0)
1213 		return parse_crypto_opt_chain(options, optarg);
1214 
1215 	/* Cipher options */
1216 	else if (strcmp(lgopts[option_index].name, "cipher_algo") == 0)
1217 		return parse_cipher_algo(&options->cipher_xform.cipher.algo,
1218 				optarg);
1219 
1220 	else if (strcmp(lgopts[option_index].name, "cipher_op") == 0)
1221 		return parse_cipher_op(&options->cipher_xform.cipher.op,
1222 				optarg);
1223 
1224 	else if (strcmp(lgopts[option_index].name, "cipher_key") == 0) {
1225 		options->ckey_param = 1;
1226 		options->cipher_xform.cipher.key.length =
1227 			parse_bytes(options->cipher_key, optarg, MAX_KEY_SIZE);
1228 		if (options->cipher_xform.cipher.key.length > 0)
1229 			return 0;
1230 		else
1231 			return -1;
1232 	}
1233 
1234 	else if (strcmp(lgopts[option_index].name, "cipher_key_random_size") == 0)
1235 		return parse_size(&options->ckey_random_size, optarg);
1236 
1237 	else if (strcmp(lgopts[option_index].name, "cipher_iv") == 0) {
1238 		options->cipher_iv_param = 1;
1239 		options->cipher_iv.length =
1240 			parse_bytes(options->cipher_iv.data, optarg, MAX_IV_SIZE);
1241 		if (options->cipher_iv.length > 0)
1242 			return 0;
1243 		else
1244 			return -1;
1245 	}
1246 
1247 	else if (strcmp(lgopts[option_index].name, "cipher_iv_random_size") == 0)
1248 		return parse_size(&options->cipher_iv_random_size, optarg);
1249 
1250 	/* Authentication options */
1251 	else if (strcmp(lgopts[option_index].name, "auth_algo") == 0) {
1252 		return parse_auth_algo(&options->auth_xform.auth.algo,
1253 				optarg);
1254 	}
1255 
1256 	else if (strcmp(lgopts[option_index].name, "auth_op") == 0)
1257 		return parse_auth_op(&options->auth_xform.auth.op,
1258 				optarg);
1259 
1260 	else if (strcmp(lgopts[option_index].name, "auth_key") == 0) {
1261 		options->akey_param = 1;
1262 		options->auth_xform.auth.key.length =
1263 			parse_bytes(options->auth_key, optarg, MAX_KEY_SIZE);
1264 		if (options->auth_xform.auth.key.length > 0)
1265 			return 0;
1266 		else
1267 			return -1;
1268 	}
1269 
1270 	else if (strcmp(lgopts[option_index].name, "auth_key_random_size") == 0) {
1271 		return parse_size(&options->akey_random_size, optarg);
1272 	}
1273 
1274 	else if (strcmp(lgopts[option_index].name, "auth_iv") == 0) {
1275 		options->auth_iv_param = 1;
1276 		options->auth_iv.length =
1277 			parse_bytes(options->auth_iv.data, optarg, MAX_IV_SIZE);
1278 		if (options->auth_iv.length > 0)
1279 			return 0;
1280 		else
1281 			return -1;
1282 	}
1283 
1284 	else if (strcmp(lgopts[option_index].name, "auth_iv_random_size") == 0)
1285 		return parse_size(&options->auth_iv_random_size, optarg);
1286 
1287 	/* AEAD options */
1288 	else if (strcmp(lgopts[option_index].name, "aead_algo") == 0) {
1289 		return parse_aead_algo(&options->aead_xform.aead.algo,
1290 				optarg);
1291 	}
1292 
1293 	else if (strcmp(lgopts[option_index].name, "aead_op") == 0)
1294 		return parse_aead_op(&options->aead_xform.aead.op,
1295 				optarg);
1296 
1297 	else if (strcmp(lgopts[option_index].name, "aead_key") == 0) {
1298 		options->aead_key_param = 1;
1299 		options->aead_xform.aead.key.length =
1300 			parse_bytes(options->aead_key, optarg, MAX_KEY_SIZE);
1301 		if (options->aead_xform.aead.key.length > 0)
1302 			return 0;
1303 		else
1304 			return -1;
1305 	}
1306 
1307 	else if (strcmp(lgopts[option_index].name, "aead_key_random_size") == 0)
1308 		return parse_size(&options->aead_key_random_size, optarg);
1309 
1310 
1311 	else if (strcmp(lgopts[option_index].name, "aead_iv") == 0) {
1312 		options->aead_iv_param = 1;
1313 		options->aead_iv.length =
1314 			parse_bytes(options->aead_iv.data, optarg, MAX_IV_SIZE);
1315 		if (options->aead_iv.length > 0)
1316 			return 0;
1317 		else
1318 			return -1;
1319 	}
1320 
1321 	else if (strcmp(lgopts[option_index].name, "aead_iv_random_size") == 0)
1322 		return parse_size(&options->aead_iv_random_size, optarg);
1323 
1324 	else if (strcmp(lgopts[option_index].name, "aad") == 0) {
1325 		options->aad_param = 1;
1326 		options->aad.length =
1327 			parse_bytes(options->aad.data, optarg, MAX_AAD_SIZE);
1328 		if (options->aad.length > 0)
1329 			return 0;
1330 		else
1331 			return -1;
1332 	}
1333 
1334 	else if (strcmp(lgopts[option_index].name, "aad_random_size") == 0) {
1335 		return parse_size(&options->aad_random_size, optarg);
1336 	}
1337 
1338 	else if (strcmp(lgopts[option_index].name, "digest_size") == 0) {
1339 		return parse_size(&options->digest_size, optarg);
1340 	}
1341 
1342 	else if (strcmp(lgopts[option_index].name, "sessionless") == 0) {
1343 		options->sessionless = 1;
1344 		return 0;
1345 	}
1346 
1347 	else if (strcmp(lgopts[option_index].name, "cryptodev_mask") == 0)
1348 		return parse_cryptodev_mask(options, optarg);
1349 
1350 	else if (strcmp(lgopts[option_index].name, "mac-updating") == 0) {
1351 		options->mac_updating = 1;
1352 		return 0;
1353 	}
1354 
1355 	else if (strcmp(lgopts[option_index].name, "no-mac-updating") == 0) {
1356 		options->mac_updating = 0;
1357 		return 0;
1358 	}
1359 
1360 	return -1;
1361 }
1362 
1363 /** Parse port mask */
1364 static int
1365 l2fwd_crypto_parse_portmask(struct l2fwd_crypto_options *options,
1366 		const char *q_arg)
1367 {
1368 	char *end = NULL;
1369 	unsigned long pm;
1370 
1371 	/* parse hexadecimal string */
1372 	pm = strtoul(q_arg, &end, 16);
1373 	if ((pm == '\0') || (end == NULL) || (*end != '\0'))
1374 		pm = 0;
1375 
1376 	options->portmask = pm;
1377 	if (options->portmask == 0) {
1378 		printf("invalid portmask specified\n");
1379 		return -1;
1380 	}
1381 
1382 	return pm;
1383 }
1384 
1385 /** Parse number of queues */
1386 static int
1387 l2fwd_crypto_parse_nqueue(struct l2fwd_crypto_options *options,
1388 		const char *q_arg)
1389 {
1390 	char *end = NULL;
1391 	unsigned long n;
1392 
1393 	/* parse hexadecimal string */
1394 	n = strtoul(q_arg, &end, 10);
1395 	if ((q_arg[0] == '\0') || (end == NULL) || (*end != '\0'))
1396 		n = 0;
1397 	else if (n >= MAX_RX_QUEUE_PER_LCORE)
1398 		n = 0;
1399 
1400 	options->nb_ports_per_lcore = n;
1401 	if (options->nb_ports_per_lcore == 0) {
1402 		printf("invalid number of ports selected\n");
1403 		return -1;
1404 	}
1405 
1406 	return 0;
1407 }
1408 
1409 /** Parse timer period */
1410 static int
1411 l2fwd_crypto_parse_timer_period(struct l2fwd_crypto_options *options,
1412 		const char *q_arg)
1413 {
1414 	char *end = NULL;
1415 	unsigned long n;
1416 
1417 	/* parse number string */
1418 	n = (unsigned)strtol(q_arg, &end, 10);
1419 	if ((q_arg[0] == '\0') || (end == NULL) || (*end != '\0'))
1420 		n = 0;
1421 
1422 	if (n >= MAX_TIMER_PERIOD) {
1423 		printf("Warning refresh period specified %lu is greater than "
1424 				"max value %lu! using max value",
1425 				n, MAX_TIMER_PERIOD);
1426 		n = MAX_TIMER_PERIOD;
1427 	}
1428 
1429 	options->refresh_period = n * 1000 * TIMER_MILLISECOND;
1430 
1431 	return 0;
1432 }
1433 
1434 /** Generate default options for application */
1435 static void
1436 l2fwd_crypto_default_options(struct l2fwd_crypto_options *options)
1437 {
1438 	options->portmask = 0xffffffff;
1439 	options->nb_ports_per_lcore = 1;
1440 	options->refresh_period = 10000;
1441 	options->single_lcore = 0;
1442 	options->sessionless = 0;
1443 
1444 	options->xform_chain = L2FWD_CRYPTO_CIPHER_HASH;
1445 
1446 	/* Cipher Data */
1447 	options->cipher_xform.type = RTE_CRYPTO_SYM_XFORM_CIPHER;
1448 	options->cipher_xform.next = NULL;
1449 	options->ckey_param = 0;
1450 	options->ckey_random_size = -1;
1451 	options->cipher_xform.cipher.key.length = 0;
1452 	options->cipher_iv_param = 0;
1453 	options->cipher_iv_random_size = -1;
1454 	options->cipher_iv.length = 0;
1455 
1456 	options->cipher_xform.cipher.algo = RTE_CRYPTO_CIPHER_AES_CBC;
1457 	options->cipher_xform.cipher.op = RTE_CRYPTO_CIPHER_OP_ENCRYPT;
1458 
1459 	/* Authentication Data */
1460 	options->auth_xform.type = RTE_CRYPTO_SYM_XFORM_AUTH;
1461 	options->auth_xform.next = NULL;
1462 	options->akey_param = 0;
1463 	options->akey_random_size = -1;
1464 	options->auth_xform.auth.key.length = 0;
1465 	options->auth_iv_param = 0;
1466 	options->auth_iv_random_size = -1;
1467 	options->auth_iv.length = 0;
1468 
1469 	options->auth_xform.auth.algo = RTE_CRYPTO_AUTH_SHA1_HMAC;
1470 	options->auth_xform.auth.op = RTE_CRYPTO_AUTH_OP_GENERATE;
1471 
1472 	/* AEAD Data */
1473 	options->aead_xform.type = RTE_CRYPTO_SYM_XFORM_AEAD;
1474 	options->aead_xform.next = NULL;
1475 	options->aead_key_param = 0;
1476 	options->aead_key_random_size = -1;
1477 	options->aead_xform.aead.key.length = 0;
1478 	options->aead_iv_param = 0;
1479 	options->aead_iv_random_size = -1;
1480 	options->aead_iv.length = 0;
1481 
1482 	options->aead_xform.aead.algo = RTE_CRYPTO_AEAD_AES_GCM;
1483 	options->aead_xform.aead.op = RTE_CRYPTO_AEAD_OP_ENCRYPT;
1484 
1485 	options->aad_param = 0;
1486 	options->aad_random_size = -1;
1487 	options->aad.length = 0;
1488 
1489 	options->digest_size = -1;
1490 
1491 	options->type = CDEV_TYPE_ANY;
1492 	options->cryptodev_mask = UINT64_MAX;
1493 
1494 	options->mac_updating = 1;
1495 }
1496 
1497 static void
1498 display_cipher_info(struct l2fwd_crypto_options *options)
1499 {
1500 	printf("\n---- Cipher information ---\n");
1501 	printf("Algorithm: %s\n",
1502 		rte_crypto_cipher_algorithm_strings[options->cipher_xform.cipher.algo]);
1503 	rte_hexdump(stdout, "Cipher key:",
1504 			options->cipher_xform.cipher.key.data,
1505 			options->cipher_xform.cipher.key.length);
1506 	rte_hexdump(stdout, "IV:", options->cipher_iv.data, options->cipher_iv.length);
1507 }
1508 
1509 static void
1510 display_auth_info(struct l2fwd_crypto_options *options)
1511 {
1512 	printf("\n---- Authentication information ---\n");
1513 	printf("Algorithm: %s\n",
1514 		rte_crypto_auth_algorithm_strings[options->auth_xform.auth.algo]);
1515 	rte_hexdump(stdout, "Auth key:",
1516 			options->auth_xform.auth.key.data,
1517 			options->auth_xform.auth.key.length);
1518 	rte_hexdump(stdout, "IV:", options->auth_iv.data, options->auth_iv.length);
1519 }
1520 
1521 static void
1522 display_aead_info(struct l2fwd_crypto_options *options)
1523 {
1524 	printf("\n---- AEAD information ---\n");
1525 	printf("Algorithm: %s\n",
1526 		rte_crypto_aead_algorithm_strings[options->aead_xform.aead.algo]);
1527 	rte_hexdump(stdout, "AEAD key:",
1528 			options->aead_xform.aead.key.data,
1529 			options->aead_xform.aead.key.length);
1530 	rte_hexdump(stdout, "IV:", options->aead_iv.data, options->aead_iv.length);
1531 	rte_hexdump(stdout, "AAD:", options->aad.data, options->aad.length);
1532 }
1533 
1534 static void
1535 l2fwd_crypto_options_print(struct l2fwd_crypto_options *options)
1536 {
1537 	char string_cipher_op[MAX_STR_LEN];
1538 	char string_auth_op[MAX_STR_LEN];
1539 	char string_aead_op[MAX_STR_LEN];
1540 
1541 	if (options->cipher_xform.cipher.op == RTE_CRYPTO_CIPHER_OP_ENCRYPT)
1542 		strcpy(string_cipher_op, "Encrypt");
1543 	else
1544 		strcpy(string_cipher_op, "Decrypt");
1545 
1546 	if (options->auth_xform.auth.op == RTE_CRYPTO_AUTH_OP_GENERATE)
1547 		strcpy(string_auth_op, "Auth generate");
1548 	else
1549 		strcpy(string_auth_op, "Auth verify");
1550 
1551 	if (options->aead_xform.aead.op == RTE_CRYPTO_AEAD_OP_ENCRYPT)
1552 		strcpy(string_aead_op, "Authenticated encryption");
1553 	else
1554 		strcpy(string_aead_op, "Authenticated decryption");
1555 
1556 
1557 	printf("Options:-\nn");
1558 	printf("portmask: %x\n", options->portmask);
1559 	printf("ports per lcore: %u\n", options->nb_ports_per_lcore);
1560 	printf("refresh period : %u\n", options->refresh_period);
1561 	printf("single lcore mode: %s\n",
1562 			options->single_lcore ? "enabled" : "disabled");
1563 	printf("stats_printing: %s\n",
1564 			options->refresh_period == 0 ? "disabled" : "enabled");
1565 
1566 	printf("sessionless crypto: %s\n",
1567 			options->sessionless ? "enabled" : "disabled");
1568 
1569 	if (options->ckey_param && (options->ckey_random_size != -1))
1570 		printf("Cipher key already parsed, ignoring size of random key\n");
1571 
1572 	if (options->akey_param && (options->akey_random_size != -1))
1573 		printf("Auth key already parsed, ignoring size of random key\n");
1574 
1575 	if (options->cipher_iv_param && (options->cipher_iv_random_size != -1))
1576 		printf("Cipher IV already parsed, ignoring size of random IV\n");
1577 
1578 	if (options->auth_iv_param && (options->auth_iv_random_size != -1))
1579 		printf("Auth IV already parsed, ignoring size of random IV\n");
1580 
1581 	if (options->aad_param && (options->aad_random_size != -1))
1582 		printf("AAD already parsed, ignoring size of random AAD\n");
1583 
1584 	printf("\nCrypto chain: ");
1585 	switch (options->xform_chain) {
1586 	case L2FWD_CRYPTO_AEAD:
1587 		printf("Input --> %s --> Output\n", string_aead_op);
1588 		display_aead_info(options);
1589 		break;
1590 	case L2FWD_CRYPTO_CIPHER_HASH:
1591 		printf("Input --> %s --> %s --> Output\n",
1592 			string_cipher_op, string_auth_op);
1593 		display_cipher_info(options);
1594 		display_auth_info(options);
1595 		break;
1596 	case L2FWD_CRYPTO_HASH_CIPHER:
1597 		printf("Input --> %s --> %s --> Output\n",
1598 			string_auth_op, string_cipher_op);
1599 		display_cipher_info(options);
1600 		display_auth_info(options);
1601 		break;
1602 	case L2FWD_CRYPTO_HASH_ONLY:
1603 		printf("Input --> %s --> Output\n", string_auth_op);
1604 		display_auth_info(options);
1605 		break;
1606 	case L2FWD_CRYPTO_CIPHER_ONLY:
1607 		printf("Input --> %s --> Output\n", string_cipher_op);
1608 		display_cipher_info(options);
1609 		break;
1610 	}
1611 }
1612 
1613 /* Parse the argument given in the command line of the application */
1614 static int
1615 l2fwd_crypto_parse_args(struct l2fwd_crypto_options *options,
1616 		int argc, char **argv)
1617 {
1618 	int opt, retval, option_index;
1619 	char **argvopt = argv, *prgname = argv[0];
1620 
1621 	static struct option lgopts[] = {
1622 			{ "sessionless", no_argument, 0, 0 },
1623 
1624 			{ "cdev_type", required_argument, 0, 0 },
1625 			{ "chain", required_argument, 0, 0 },
1626 
1627 			{ "cipher_algo", required_argument, 0, 0 },
1628 			{ "cipher_op", required_argument, 0, 0 },
1629 			{ "cipher_key", required_argument, 0, 0 },
1630 			{ "cipher_key_random_size", required_argument, 0, 0 },
1631 			{ "cipher_iv", required_argument, 0, 0 },
1632 			{ "cipher_iv_random_size", required_argument, 0, 0 },
1633 
1634 			{ "auth_algo", required_argument, 0, 0 },
1635 			{ "auth_op", required_argument, 0, 0 },
1636 			{ "auth_key", required_argument, 0, 0 },
1637 			{ "auth_key_random_size", required_argument, 0, 0 },
1638 			{ "auth_iv", required_argument, 0, 0 },
1639 			{ "auth_iv_random_size", required_argument, 0, 0 },
1640 
1641 			{ "aead_algo", required_argument, 0, 0 },
1642 			{ "aead_op", required_argument, 0, 0 },
1643 			{ "aead_key", required_argument, 0, 0 },
1644 			{ "aead_key_random_size", required_argument, 0, 0 },
1645 			{ "aead_iv", required_argument, 0, 0 },
1646 			{ "aead_iv_random_size", required_argument, 0, 0 },
1647 
1648 			{ "aad", required_argument, 0, 0 },
1649 			{ "aad_random_size", required_argument, 0, 0 },
1650 
1651 			{ "digest_size", required_argument, 0, 0 },
1652 
1653 			{ "sessionless", no_argument, 0, 0 },
1654 			{ "cryptodev_mask", required_argument, 0, 0},
1655 
1656 			{ "mac-updating", no_argument, 0, 0},
1657 			{ "no-mac-updating", no_argument, 0, 0},
1658 
1659 			{ NULL, 0, 0, 0 }
1660 	};
1661 
1662 	l2fwd_crypto_default_options(options);
1663 
1664 	while ((opt = getopt_long(argc, argvopt, "p:q:sT:", lgopts,
1665 			&option_index)) != EOF) {
1666 		switch (opt) {
1667 		/* long options */
1668 		case 0:
1669 			retval = l2fwd_crypto_parse_args_long_options(options,
1670 					lgopts, option_index);
1671 			if (retval < 0) {
1672 				l2fwd_crypto_usage(prgname);
1673 				return -1;
1674 			}
1675 			break;
1676 
1677 		/* portmask */
1678 		case 'p':
1679 			retval = l2fwd_crypto_parse_portmask(options, optarg);
1680 			if (retval < 0) {
1681 				l2fwd_crypto_usage(prgname);
1682 				return -1;
1683 			}
1684 			break;
1685 
1686 		/* nqueue */
1687 		case 'q':
1688 			retval = l2fwd_crypto_parse_nqueue(options, optarg);
1689 			if (retval < 0) {
1690 				l2fwd_crypto_usage(prgname);
1691 				return -1;
1692 			}
1693 			break;
1694 
1695 		/* single  */
1696 		case 's':
1697 			options->single_lcore = 1;
1698 
1699 			break;
1700 
1701 		/* timer period */
1702 		case 'T':
1703 			retval = l2fwd_crypto_parse_timer_period(options,
1704 					optarg);
1705 			if (retval < 0) {
1706 				l2fwd_crypto_usage(prgname);
1707 				return -1;
1708 			}
1709 			break;
1710 
1711 		default:
1712 			l2fwd_crypto_usage(prgname);
1713 			return -1;
1714 		}
1715 	}
1716 
1717 
1718 	if (optind >= 0)
1719 		argv[optind-1] = prgname;
1720 
1721 	retval = optind-1;
1722 	optind = 1; /* reset getopt lib */
1723 
1724 	return retval;
1725 }
1726 
1727 /* Check the link status of all ports in up to 9s, and print them finally */
1728 static void
1729 check_all_ports_link_status(uint32_t port_mask)
1730 {
1731 #define CHECK_INTERVAL 100 /* 100ms */
1732 #define MAX_CHECK_TIME 90 /* 9s (90 * 100ms) in total */
1733 	uint16_t portid;
1734 	uint8_t count, all_ports_up, print_flag = 0;
1735 	struct rte_eth_link link;
1736 	int ret;
1737 	char link_status_text[RTE_ETH_LINK_MAX_STR_LEN];
1738 
1739 	printf("\nChecking link status");
1740 	fflush(stdout);
1741 	for (count = 0; count <= MAX_CHECK_TIME; count++) {
1742 		all_ports_up = 1;
1743 		RTE_ETH_FOREACH_DEV(portid) {
1744 			if ((port_mask & (1 << portid)) == 0)
1745 				continue;
1746 			memset(&link, 0, sizeof(link));
1747 			ret = rte_eth_link_get_nowait(portid, &link);
1748 			if (ret < 0) {
1749 				all_ports_up = 0;
1750 				if (print_flag == 1)
1751 					printf("Port %u link get failed: %s\n",
1752 						portid, rte_strerror(-ret));
1753 				continue;
1754 			}
1755 			/* print link status if flag set */
1756 			if (print_flag == 1) {
1757 				rte_eth_link_to_str(link_status_text,
1758 					sizeof(link_status_text), &link);
1759 				printf("Port %d %s\n", portid,
1760 					link_status_text);
1761 				continue;
1762 			}
1763 			/* clear all_ports_up flag if any link down */
1764 			if (link.link_status == ETH_LINK_DOWN) {
1765 				all_ports_up = 0;
1766 				break;
1767 			}
1768 		}
1769 		/* after finally printing all link status, get out */
1770 		if (print_flag == 1)
1771 			break;
1772 
1773 		if (all_ports_up == 0) {
1774 			printf(".");
1775 			fflush(stdout);
1776 			rte_delay_ms(CHECK_INTERVAL);
1777 		}
1778 
1779 		/* set the print_flag if all ports up or timeout */
1780 		if (all_ports_up == 1 || count == (MAX_CHECK_TIME - 1)) {
1781 			print_flag = 1;
1782 			printf("done\n");
1783 		}
1784 	}
1785 }
1786 
1787 /* Check if device has to be HW/SW or any */
1788 static int
1789 check_type(const struct l2fwd_crypto_options *options,
1790 		const struct rte_cryptodev_info *dev_info)
1791 {
1792 	if (options->type == CDEV_TYPE_HW &&
1793 			(dev_info->feature_flags & RTE_CRYPTODEV_FF_HW_ACCELERATED))
1794 		return 0;
1795 	if (options->type == CDEV_TYPE_SW &&
1796 			!(dev_info->feature_flags & RTE_CRYPTODEV_FF_HW_ACCELERATED))
1797 		return 0;
1798 	if (options->type == CDEV_TYPE_ANY)
1799 		return 0;
1800 
1801 	return -1;
1802 }
1803 
1804 static const struct rte_cryptodev_capabilities *
1805 check_device_support_cipher_algo(const struct l2fwd_crypto_options *options,
1806 		const struct rte_cryptodev_info *dev_info,
1807 		uint8_t cdev_id)
1808 {
1809 	unsigned int i = 0;
1810 	const struct rte_cryptodev_capabilities *cap = &dev_info->capabilities[0];
1811 	enum rte_crypto_cipher_algorithm cap_cipher_algo;
1812 	enum rte_crypto_cipher_algorithm opt_cipher_algo =
1813 					options->cipher_xform.cipher.algo;
1814 
1815 	while (cap->op != RTE_CRYPTO_OP_TYPE_UNDEFINED) {
1816 		cap_cipher_algo = cap->sym.cipher.algo;
1817 		if (cap->sym.xform_type == RTE_CRYPTO_SYM_XFORM_CIPHER) {
1818 			if (cap_cipher_algo == opt_cipher_algo) {
1819 				if (check_type(options, dev_info) == 0)
1820 					break;
1821 			}
1822 		}
1823 		cap = &dev_info->capabilities[++i];
1824 	}
1825 
1826 	if (cap->op == RTE_CRYPTO_OP_TYPE_UNDEFINED) {
1827 		printf("Algorithm %s not supported by cryptodev %u"
1828 			" or device not of preferred type (%s)\n",
1829 			rte_crypto_cipher_algorithm_strings[opt_cipher_algo],
1830 			cdev_id,
1831 			options->string_type);
1832 		return NULL;
1833 	}
1834 
1835 	return cap;
1836 }
1837 
1838 static const struct rte_cryptodev_capabilities *
1839 check_device_support_auth_algo(const struct l2fwd_crypto_options *options,
1840 		const struct rte_cryptodev_info *dev_info,
1841 		uint8_t cdev_id)
1842 {
1843 	unsigned int i = 0;
1844 	const struct rte_cryptodev_capabilities *cap = &dev_info->capabilities[0];
1845 	enum rte_crypto_auth_algorithm cap_auth_algo;
1846 	enum rte_crypto_auth_algorithm opt_auth_algo =
1847 					options->auth_xform.auth.algo;
1848 
1849 	while (cap->op != RTE_CRYPTO_OP_TYPE_UNDEFINED) {
1850 		cap_auth_algo = cap->sym.auth.algo;
1851 		if (cap->sym.xform_type == RTE_CRYPTO_SYM_XFORM_AUTH) {
1852 			if (cap_auth_algo == opt_auth_algo) {
1853 				if (check_type(options, dev_info) == 0)
1854 					break;
1855 			}
1856 		}
1857 		cap = &dev_info->capabilities[++i];
1858 	}
1859 
1860 	if (cap->op == RTE_CRYPTO_OP_TYPE_UNDEFINED) {
1861 		printf("Algorithm %s not supported by cryptodev %u"
1862 			" or device not of preferred type (%s)\n",
1863 			rte_crypto_auth_algorithm_strings[opt_auth_algo],
1864 			cdev_id,
1865 			options->string_type);
1866 		return NULL;
1867 	}
1868 
1869 	return cap;
1870 }
1871 
1872 static const struct rte_cryptodev_capabilities *
1873 check_device_support_aead_algo(const struct l2fwd_crypto_options *options,
1874 		const struct rte_cryptodev_info *dev_info,
1875 		uint8_t cdev_id)
1876 {
1877 	unsigned int i = 0;
1878 	const struct rte_cryptodev_capabilities *cap = &dev_info->capabilities[0];
1879 	enum rte_crypto_aead_algorithm cap_aead_algo;
1880 	enum rte_crypto_aead_algorithm opt_aead_algo =
1881 					options->aead_xform.aead.algo;
1882 
1883 	while (cap->op != RTE_CRYPTO_OP_TYPE_UNDEFINED) {
1884 		cap_aead_algo = cap->sym.aead.algo;
1885 		if (cap->sym.xform_type == RTE_CRYPTO_SYM_XFORM_AEAD) {
1886 			if (cap_aead_algo == opt_aead_algo) {
1887 				if (check_type(options, dev_info) == 0)
1888 					break;
1889 			}
1890 		}
1891 		cap = &dev_info->capabilities[++i];
1892 	}
1893 
1894 	if (cap->op == RTE_CRYPTO_OP_TYPE_UNDEFINED) {
1895 		printf("Algorithm %s not supported by cryptodev %u"
1896 			" or device not of preferred type (%s)\n",
1897 			rte_crypto_aead_algorithm_strings[opt_aead_algo],
1898 			cdev_id,
1899 			options->string_type);
1900 		return NULL;
1901 	}
1902 
1903 	return cap;
1904 }
1905 
1906 /* Check if the device is enabled by cryptodev_mask */
1907 static int
1908 check_cryptodev_mask(struct l2fwd_crypto_options *options,
1909 		uint8_t cdev_id)
1910 {
1911 	if (options->cryptodev_mask & (1 << cdev_id))
1912 		return 0;
1913 
1914 	return -1;
1915 }
1916 
1917 static inline int
1918 check_supported_size(uint16_t length, uint16_t min, uint16_t max,
1919 		uint16_t increment)
1920 {
1921 	uint16_t supp_size;
1922 
1923 	/* Single value */
1924 	if (increment == 0) {
1925 		if (length == min)
1926 			return 0;
1927 		else
1928 			return -1;
1929 	}
1930 
1931 	/* Range of values */
1932 	for (supp_size = min; supp_size <= max; supp_size += increment) {
1933 		if (length == supp_size)
1934 			return 0;
1935 	}
1936 
1937 	return -1;
1938 }
1939 
1940 static int
1941 check_iv_param(const struct rte_crypto_param_range *iv_range_size,
1942 		unsigned int iv_param, int iv_random_size,
1943 		uint16_t iv_length)
1944 {
1945 	/*
1946 	 * Check if length of provided IV is supported
1947 	 * by the algorithm chosen.
1948 	 */
1949 	if (iv_param) {
1950 		if (check_supported_size(iv_length,
1951 				iv_range_size->min,
1952 				iv_range_size->max,
1953 				iv_range_size->increment)
1954 					!= 0)
1955 			return -1;
1956 	/*
1957 	 * Check if length of IV to be randomly generated
1958 	 * is supported by the algorithm chosen.
1959 	 */
1960 	} else if (iv_random_size != -1) {
1961 		if (check_supported_size(iv_random_size,
1962 				iv_range_size->min,
1963 				iv_range_size->max,
1964 				iv_range_size->increment)
1965 					!= 0)
1966 			return -1;
1967 	}
1968 
1969 	return 0;
1970 }
1971 
1972 static int
1973 check_capabilities(struct l2fwd_crypto_options *options, uint8_t cdev_id)
1974 {
1975 	struct rte_cryptodev_info dev_info;
1976 	const struct rte_cryptodev_capabilities *cap;
1977 
1978 	rte_cryptodev_info_get(cdev_id, &dev_info);
1979 
1980 	/* Set AEAD parameters */
1981 	if (options->xform_chain == L2FWD_CRYPTO_AEAD) {
1982 		/* Check if device supports AEAD algo */
1983 		cap = check_device_support_aead_algo(options, &dev_info,
1984 						cdev_id);
1985 		if (cap == NULL)
1986 			return -1;
1987 
1988 		if (check_iv_param(&cap->sym.aead.iv_size,
1989 				options->aead_iv_param,
1990 				options->aead_iv_random_size,
1991 				options->aead_iv.length) != 0) {
1992 			RTE_LOG(DEBUG, USER1,
1993 				"Device %u does not support IV length\n",
1994 				cdev_id);
1995 			return -1;
1996 		}
1997 
1998 		/*
1999 		 * Check if length of provided AEAD key is supported
2000 		 * by the algorithm chosen.
2001 		 */
2002 		if (options->aead_key_param) {
2003 			if (check_supported_size(
2004 					options->aead_xform.aead.key.length,
2005 					cap->sym.aead.key_size.min,
2006 					cap->sym.aead.key_size.max,
2007 					cap->sym.aead.key_size.increment)
2008 						!= 0) {
2009 				RTE_LOG(DEBUG, USER1,
2010 					"Device %u does not support "
2011 					"AEAD key length\n",
2012 					cdev_id);
2013 				return -1;
2014 			}
2015 		/*
2016 		 * Check if length of the aead key to be randomly generated
2017 		 * is supported by the algorithm chosen.
2018 		 */
2019 		} else if (options->aead_key_random_size != -1) {
2020 			if (check_supported_size(options->aead_key_random_size,
2021 					cap->sym.aead.key_size.min,
2022 					cap->sym.aead.key_size.max,
2023 					cap->sym.aead.key_size.increment)
2024 						!= 0) {
2025 				RTE_LOG(DEBUG, USER1,
2026 					"Device %u does not support "
2027 					"AEAD key length\n",
2028 					cdev_id);
2029 				return -1;
2030 			}
2031 		}
2032 
2033 
2034 		/*
2035 		 * Check if length of provided AAD is supported
2036 		 * by the algorithm chosen.
2037 		 */
2038 		if (options->aad_param) {
2039 			if (check_supported_size(options->aad.length,
2040 					cap->sym.aead.aad_size.min,
2041 					cap->sym.aead.aad_size.max,
2042 					cap->sym.aead.aad_size.increment)
2043 						!= 0) {
2044 				RTE_LOG(DEBUG, USER1,
2045 					"Device %u does not support "
2046 					"AAD length\n",
2047 					cdev_id);
2048 				return -1;
2049 			}
2050 		/*
2051 		 * Check if length of AAD to be randomly generated
2052 		 * is supported by the algorithm chosen.
2053 		 */
2054 		} else if (options->aad_random_size != -1) {
2055 			if (check_supported_size(options->aad_random_size,
2056 					cap->sym.aead.aad_size.min,
2057 					cap->sym.aead.aad_size.max,
2058 					cap->sym.aead.aad_size.increment)
2059 						!= 0) {
2060 				RTE_LOG(DEBUG, USER1,
2061 					"Device %u does not support "
2062 					"AAD length\n",
2063 					cdev_id);
2064 				return -1;
2065 			}
2066 		}
2067 
2068 		/* Check if digest size is supported by the algorithm. */
2069 		if (options->digest_size != -1) {
2070 			if (check_supported_size(options->digest_size,
2071 					cap->sym.aead.digest_size.min,
2072 					cap->sym.aead.digest_size.max,
2073 					cap->sym.aead.digest_size.increment)
2074 						!= 0) {
2075 				RTE_LOG(DEBUG, USER1,
2076 					"Device %u does not support "
2077 					"digest length\n",
2078 					cdev_id);
2079 				return -1;
2080 			}
2081 		}
2082 	}
2083 
2084 	/* Set cipher parameters */
2085 	if (options->xform_chain == L2FWD_CRYPTO_CIPHER_HASH ||
2086 			options->xform_chain == L2FWD_CRYPTO_HASH_CIPHER ||
2087 			options->xform_chain == L2FWD_CRYPTO_CIPHER_ONLY) {
2088 		/* Check if device supports cipher algo */
2089 		cap = check_device_support_cipher_algo(options, &dev_info,
2090 						cdev_id);
2091 		if (cap == NULL)
2092 			return -1;
2093 
2094 		if (check_iv_param(&cap->sym.cipher.iv_size,
2095 				options->cipher_iv_param,
2096 				options->cipher_iv_random_size,
2097 				options->cipher_iv.length) != 0) {
2098 			RTE_LOG(DEBUG, USER1,
2099 				"Device %u does not support IV length\n",
2100 				cdev_id);
2101 			return -1;
2102 		}
2103 
2104 		/*
2105 		 * Check if length of provided cipher key is supported
2106 		 * by the algorithm chosen.
2107 		 */
2108 		if (options->ckey_param) {
2109 			if (check_supported_size(
2110 					options->cipher_xform.cipher.key.length,
2111 					cap->sym.cipher.key_size.min,
2112 					cap->sym.cipher.key_size.max,
2113 					cap->sym.cipher.key_size.increment)
2114 						!= 0) {
2115 				RTE_LOG(DEBUG, USER1,
2116 					"Device %u does not support cipher "
2117 					"key length\n",
2118 					cdev_id);
2119 				return -1;
2120 			}
2121 		/*
2122 		 * Check if length of the cipher key to be randomly generated
2123 		 * is supported by the algorithm chosen.
2124 		 */
2125 		} else if (options->ckey_random_size != -1) {
2126 			if (check_supported_size(options->ckey_random_size,
2127 					cap->sym.cipher.key_size.min,
2128 					cap->sym.cipher.key_size.max,
2129 					cap->sym.cipher.key_size.increment)
2130 						!= 0) {
2131 				RTE_LOG(DEBUG, USER1,
2132 					"Device %u does not support cipher "
2133 					"key length\n",
2134 					cdev_id);
2135 				return -1;
2136 			}
2137 		}
2138 	}
2139 
2140 	/* Set auth parameters */
2141 	if (options->xform_chain == L2FWD_CRYPTO_CIPHER_HASH ||
2142 			options->xform_chain == L2FWD_CRYPTO_HASH_CIPHER ||
2143 			options->xform_chain == L2FWD_CRYPTO_HASH_ONLY) {
2144 		/* Check if device supports auth algo */
2145 		cap = check_device_support_auth_algo(options, &dev_info,
2146 						cdev_id);
2147 		if (cap == NULL)
2148 			return -1;
2149 
2150 		if (check_iv_param(&cap->sym.auth.iv_size,
2151 				options->auth_iv_param,
2152 				options->auth_iv_random_size,
2153 				options->auth_iv.length) != 0) {
2154 			RTE_LOG(DEBUG, USER1,
2155 				"Device %u does not support IV length\n",
2156 				cdev_id);
2157 			return -1;
2158 		}
2159 		/*
2160 		 * Check if length of provided auth key is supported
2161 		 * by the algorithm chosen.
2162 		 */
2163 		if (options->akey_param) {
2164 			if (check_supported_size(
2165 					options->auth_xform.auth.key.length,
2166 					cap->sym.auth.key_size.min,
2167 					cap->sym.auth.key_size.max,
2168 					cap->sym.auth.key_size.increment)
2169 						!= 0) {
2170 				RTE_LOG(DEBUG, USER1,
2171 					"Device %u does not support auth "
2172 					"key length\n",
2173 					cdev_id);
2174 				return -1;
2175 			}
2176 		/*
2177 		 * Check if length of the auth key to be randomly generated
2178 		 * is supported by the algorithm chosen.
2179 		 */
2180 		} else if (options->akey_random_size != -1) {
2181 			if (check_supported_size(options->akey_random_size,
2182 					cap->sym.auth.key_size.min,
2183 					cap->sym.auth.key_size.max,
2184 					cap->sym.auth.key_size.increment)
2185 						!= 0) {
2186 				RTE_LOG(DEBUG, USER1,
2187 					"Device %u does not support auth "
2188 					"key length\n",
2189 					cdev_id);
2190 				return -1;
2191 			}
2192 		}
2193 
2194 		/* Check if digest size is supported by the algorithm. */
2195 		if (options->digest_size != -1) {
2196 			if (check_supported_size(options->digest_size,
2197 					cap->sym.auth.digest_size.min,
2198 					cap->sym.auth.digest_size.max,
2199 					cap->sym.auth.digest_size.increment)
2200 						!= 0) {
2201 				RTE_LOG(DEBUG, USER1,
2202 					"Device %u does not support "
2203 					"digest length\n",
2204 					cdev_id);
2205 				return -1;
2206 			}
2207 		}
2208 	}
2209 
2210 	return 0;
2211 }
2212 
2213 static int
2214 initialize_cryptodevs(struct l2fwd_crypto_options *options, unsigned nb_ports,
2215 		uint8_t *enabled_cdevs)
2216 {
2217 	uint8_t cdev_id, cdev_count, enabled_cdev_count = 0;
2218 	const struct rte_cryptodev_capabilities *cap;
2219 	unsigned int sess_sz, max_sess_sz = 0;
2220 	uint32_t sessions_needed = 0;
2221 	int retval;
2222 
2223 	cdev_count = rte_cryptodev_count();
2224 	if (cdev_count == 0) {
2225 		printf("No crypto devices available\n");
2226 		return -1;
2227 	}
2228 
2229 	for (cdev_id = 0; cdev_id < cdev_count && enabled_cdev_count < nb_ports;
2230 			cdev_id++) {
2231 		if (check_cryptodev_mask(options, cdev_id) < 0)
2232 			continue;
2233 
2234 		if (check_capabilities(options, cdev_id) < 0)
2235 			continue;
2236 
2237 		sess_sz = rte_cryptodev_sym_get_private_session_size(cdev_id);
2238 		if (sess_sz > max_sess_sz)
2239 			max_sess_sz = sess_sz;
2240 
2241 		l2fwd_enabled_crypto_mask |= (((uint64_t)1) << cdev_id);
2242 
2243 		enabled_cdevs[cdev_id] = 1;
2244 		enabled_cdev_count++;
2245 	}
2246 
2247 	for (cdev_id = 0; cdev_id < cdev_count; cdev_id++) {
2248 		struct rte_cryptodev_qp_conf qp_conf;
2249 		struct rte_cryptodev_info dev_info;
2250 
2251 		if (enabled_cdevs[cdev_id] == 0)
2252 			continue;
2253 
2254 		retval = rte_cryptodev_socket_id(cdev_id);
2255 
2256 		if (retval < 0) {
2257 			printf("Invalid crypto device id used\n");
2258 			return -1;
2259 		}
2260 
2261 		uint8_t socket_id = (uint8_t) retval;
2262 
2263 		struct rte_cryptodev_config conf = {
2264 			.nb_queue_pairs = 1,
2265 			.socket_id = socket_id,
2266 			.ff_disable = RTE_CRYPTODEV_FF_SECURITY,
2267 		};
2268 
2269 		rte_cryptodev_info_get(cdev_id, &dev_info);
2270 
2271 		/*
2272 		 * Two sessions objects are required for each session
2273 		 * (one for the header, one for the private data)
2274 		 */
2275 		if (!strcmp(dev_info.driver_name, "crypto_scheduler")) {
2276 #ifdef RTE_LIBRTE_PMD_CRYPTO_SCHEDULER
2277 			uint32_t nb_slaves =
2278 				rte_cryptodev_scheduler_slaves_get(cdev_id,
2279 								NULL);
2280 
2281 			sessions_needed = enabled_cdev_count * nb_slaves;
2282 #endif
2283 		} else
2284 			sessions_needed = enabled_cdev_count;
2285 
2286 		if (session_pool_socket[socket_id].priv_mp == NULL) {
2287 			char mp_name[RTE_MEMPOOL_NAMESIZE];
2288 
2289 			snprintf(mp_name, RTE_MEMPOOL_NAMESIZE,
2290 				"priv_sess_mp_%u", socket_id);
2291 
2292 			session_pool_socket[socket_id].priv_mp =
2293 					rte_mempool_create(mp_name,
2294 						sessions_needed,
2295 						max_sess_sz,
2296 						0, 0, NULL, NULL, NULL,
2297 						NULL, socket_id,
2298 						0);
2299 
2300 			if (session_pool_socket[socket_id].priv_mp == NULL) {
2301 				printf("Cannot create pool on socket %d\n",
2302 					socket_id);
2303 				return -ENOMEM;
2304 			}
2305 
2306 			printf("Allocated pool \"%s\" on socket %d\n",
2307 				mp_name, socket_id);
2308 		}
2309 
2310 		if (session_pool_socket[socket_id].sess_mp == NULL) {
2311 			char mp_name[RTE_MEMPOOL_NAMESIZE];
2312 			snprintf(mp_name, RTE_MEMPOOL_NAMESIZE,
2313 				"sess_mp_%u", socket_id);
2314 
2315 			session_pool_socket[socket_id].sess_mp =
2316 					rte_cryptodev_sym_session_pool_create(
2317 							mp_name,
2318 							sessions_needed,
2319 							0, 0, 0, socket_id);
2320 
2321 			if (session_pool_socket[socket_id].sess_mp == NULL) {
2322 				printf("Cannot create pool on socket %d\n",
2323 					socket_id);
2324 				return -ENOMEM;
2325 			}
2326 
2327 			printf("Allocated pool \"%s\" on socket %d\n",
2328 				mp_name, socket_id);
2329 		}
2330 
2331 		/* Set AEAD parameters */
2332 		if (options->xform_chain == L2FWD_CRYPTO_AEAD) {
2333 			cap = check_device_support_aead_algo(options, &dev_info,
2334 							cdev_id);
2335 
2336 			options->block_size = cap->sym.aead.block_size;
2337 
2338 			/* Set IV if not provided from command line */
2339 			if (options->aead_iv_param == 0) {
2340 				if (options->aead_iv_random_size != -1)
2341 					options->aead_iv.length =
2342 						options->aead_iv_random_size;
2343 				/* No size provided, use minimum size. */
2344 				else
2345 					options->aead_iv.length =
2346 						cap->sym.aead.iv_size.min;
2347 			}
2348 
2349 			/* Set key if not provided from command line */
2350 			if (options->aead_key_param == 0) {
2351 				if (options->aead_key_random_size != -1)
2352 					options->aead_xform.aead.key.length =
2353 						options->aead_key_random_size;
2354 				/* No size provided, use minimum size. */
2355 				else
2356 					options->aead_xform.aead.key.length =
2357 						cap->sym.aead.key_size.min;
2358 
2359 				generate_random_key(options->aead_key,
2360 					options->aead_xform.aead.key.length);
2361 			}
2362 
2363 			/* Set AAD if not provided from command line */
2364 			if (options->aad_param == 0) {
2365 				if (options->aad_random_size != -1)
2366 					options->aad.length =
2367 						options->aad_random_size;
2368 				/* No size provided, use minimum size. */
2369 				else
2370 					options->aad.length =
2371 						cap->sym.auth.aad_size.min;
2372 			}
2373 
2374 			options->aead_xform.aead.aad_length =
2375 						options->aad.length;
2376 
2377 			/* Set digest size if not provided from command line */
2378 			if (options->digest_size != -1)
2379 				options->aead_xform.aead.digest_length =
2380 							options->digest_size;
2381 				/* No size provided, use minimum size. */
2382 			else
2383 				options->aead_xform.aead.digest_length =
2384 						cap->sym.aead.digest_size.min;
2385 		}
2386 
2387 		/* Set cipher parameters */
2388 		if (options->xform_chain == L2FWD_CRYPTO_CIPHER_HASH ||
2389 				options->xform_chain == L2FWD_CRYPTO_HASH_CIPHER ||
2390 				options->xform_chain == L2FWD_CRYPTO_CIPHER_ONLY) {
2391 			cap = check_device_support_cipher_algo(options, &dev_info,
2392 							cdev_id);
2393 			options->block_size = cap->sym.cipher.block_size;
2394 
2395 			/* Set IV if not provided from command line */
2396 			if (options->cipher_iv_param == 0) {
2397 				if (options->cipher_iv_random_size != -1)
2398 					options->cipher_iv.length =
2399 						options->cipher_iv_random_size;
2400 				/* No size provided, use minimum size. */
2401 				else
2402 					options->cipher_iv.length =
2403 						cap->sym.cipher.iv_size.min;
2404 			}
2405 
2406 			/* Set key if not provided from command line */
2407 			if (options->ckey_param == 0) {
2408 				if (options->ckey_random_size != -1)
2409 					options->cipher_xform.cipher.key.length =
2410 						options->ckey_random_size;
2411 				/* No size provided, use minimum size. */
2412 				else
2413 					options->cipher_xform.cipher.key.length =
2414 						cap->sym.cipher.key_size.min;
2415 
2416 				generate_random_key(options->cipher_key,
2417 					options->cipher_xform.cipher.key.length);
2418 			}
2419 		}
2420 
2421 		/* Set auth parameters */
2422 		if (options->xform_chain == L2FWD_CRYPTO_CIPHER_HASH ||
2423 				options->xform_chain == L2FWD_CRYPTO_HASH_CIPHER ||
2424 				options->xform_chain == L2FWD_CRYPTO_HASH_ONLY) {
2425 			cap = check_device_support_auth_algo(options, &dev_info,
2426 							cdev_id);
2427 
2428 			/* Set IV if not provided from command line */
2429 			if (options->auth_iv_param == 0) {
2430 				if (options->auth_iv_random_size != -1)
2431 					options->auth_iv.length =
2432 						options->auth_iv_random_size;
2433 				/* No size provided, use minimum size. */
2434 				else
2435 					options->auth_iv.length =
2436 						cap->sym.auth.iv_size.min;
2437 			}
2438 
2439 			/* Set key if not provided from command line */
2440 			if (options->akey_param == 0) {
2441 				if (options->akey_random_size != -1)
2442 					options->auth_xform.auth.key.length =
2443 						options->akey_random_size;
2444 				/* No size provided, use minimum size. */
2445 				else
2446 					options->auth_xform.auth.key.length =
2447 						cap->sym.auth.key_size.min;
2448 
2449 				generate_random_key(options->auth_key,
2450 					options->auth_xform.auth.key.length);
2451 			}
2452 
2453 			/* Set digest size if not provided from command line */
2454 			if (options->digest_size != -1)
2455 				options->auth_xform.auth.digest_length =
2456 							options->digest_size;
2457 				/* No size provided, use minimum size. */
2458 			else
2459 				options->auth_xform.auth.digest_length =
2460 						cap->sym.auth.digest_size.min;
2461 		}
2462 
2463 		retval = rte_cryptodev_configure(cdev_id, &conf);
2464 		if (retval < 0) {
2465 			printf("Failed to configure cryptodev %u", cdev_id);
2466 			return -1;
2467 		}
2468 
2469 		qp_conf.nb_descriptors = 2048;
2470 		qp_conf.mp_session = session_pool_socket[socket_id].sess_mp;
2471 		qp_conf.mp_session_private =
2472 				session_pool_socket[socket_id].priv_mp;
2473 
2474 		retval = rte_cryptodev_queue_pair_setup(cdev_id, 0, &qp_conf,
2475 				socket_id);
2476 		if (retval < 0) {
2477 			printf("Failed to setup queue pair %u on cryptodev %u",
2478 					0, cdev_id);
2479 			return -1;
2480 		}
2481 
2482 		retval = rte_cryptodev_start(cdev_id);
2483 		if (retval < 0) {
2484 			printf("Failed to start device %u: error %d\n",
2485 					cdev_id, retval);
2486 			return -1;
2487 		}
2488 	}
2489 
2490 	return enabled_cdev_count;
2491 }
2492 
2493 static int
2494 initialize_ports(struct l2fwd_crypto_options *options)
2495 {
2496 	uint16_t last_portid = 0, portid;
2497 	unsigned enabled_portcount = 0;
2498 	unsigned nb_ports = rte_eth_dev_count_avail();
2499 
2500 	if (nb_ports == 0) {
2501 		printf("No Ethernet ports - bye\n");
2502 		return -1;
2503 	}
2504 
2505 	/* Reset l2fwd_dst_ports */
2506 	for (portid = 0; portid < RTE_MAX_ETHPORTS; portid++)
2507 		l2fwd_dst_ports[portid] = 0;
2508 
2509 	RTE_ETH_FOREACH_DEV(portid) {
2510 		int retval;
2511 		struct rte_eth_dev_info dev_info;
2512 		struct rte_eth_rxconf rxq_conf;
2513 		struct rte_eth_txconf txq_conf;
2514 		struct rte_eth_conf local_port_conf = port_conf;
2515 
2516 		/* Skip ports that are not enabled */
2517 		if ((options->portmask & (1 << portid)) == 0)
2518 			continue;
2519 
2520 		/* init port */
2521 		printf("Initializing port %u... ", portid);
2522 		fflush(stdout);
2523 
2524 		retval = rte_eth_dev_info_get(portid, &dev_info);
2525 		if (retval != 0) {
2526 			printf("Error during getting device (port %u) info: %s\n",
2527 					portid, strerror(-retval));
2528 			return retval;
2529 		}
2530 
2531 		if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_MBUF_FAST_FREE)
2532 			local_port_conf.txmode.offloads |=
2533 				DEV_TX_OFFLOAD_MBUF_FAST_FREE;
2534 		retval = rte_eth_dev_configure(portid, 1, 1, &local_port_conf);
2535 		if (retval < 0) {
2536 			printf("Cannot configure device: err=%d, port=%u\n",
2537 				  retval, portid);
2538 			return -1;
2539 		}
2540 
2541 		retval = rte_eth_dev_adjust_nb_rx_tx_desc(portid, &nb_rxd,
2542 							  &nb_txd);
2543 		if (retval < 0) {
2544 			printf("Cannot adjust number of descriptors: err=%d, port=%u\n",
2545 				retval, portid);
2546 			return -1;
2547 		}
2548 
2549 		/* init one RX queue */
2550 		fflush(stdout);
2551 		rxq_conf = dev_info.default_rxconf;
2552 		rxq_conf.offloads = local_port_conf.rxmode.offloads;
2553 		retval = rte_eth_rx_queue_setup(portid, 0, nb_rxd,
2554 					     rte_eth_dev_socket_id(portid),
2555 					     &rxq_conf, l2fwd_pktmbuf_pool);
2556 		if (retval < 0) {
2557 			printf("rte_eth_rx_queue_setup:err=%d, port=%u\n",
2558 					retval, portid);
2559 			return -1;
2560 		}
2561 
2562 		/* init one TX queue on each port */
2563 		fflush(stdout);
2564 		txq_conf = dev_info.default_txconf;
2565 		txq_conf.offloads = local_port_conf.txmode.offloads;
2566 		retval = rte_eth_tx_queue_setup(portid, 0, nb_txd,
2567 				rte_eth_dev_socket_id(portid),
2568 				&txq_conf);
2569 		if (retval < 0) {
2570 			printf("rte_eth_tx_queue_setup:err=%d, port=%u\n",
2571 				retval, portid);
2572 
2573 			return -1;
2574 		}
2575 
2576 		/* Start device */
2577 		retval = rte_eth_dev_start(portid);
2578 		if (retval < 0) {
2579 			printf("rte_eth_dev_start:err=%d, port=%u\n",
2580 					retval, portid);
2581 			return -1;
2582 		}
2583 
2584 		retval = rte_eth_promiscuous_enable(portid);
2585 		if (retval != 0) {
2586 			printf("rte_eth_promiscuous_enable:err=%s, port=%u\n",
2587 				rte_strerror(-retval), portid);
2588 			return -1;
2589 		}
2590 
2591 		retval = rte_eth_macaddr_get(portid,
2592 					     &l2fwd_ports_eth_addr[portid]);
2593 		if (retval < 0) {
2594 			printf("rte_eth_macaddr_get :err=%d, port=%u\n",
2595 					retval, portid);
2596 			return -1;
2597 		}
2598 
2599 		printf("Port %u, MAC address: %02X:%02X:%02X:%02X:%02X:%02X\n\n",
2600 				portid,
2601 				l2fwd_ports_eth_addr[portid].addr_bytes[0],
2602 				l2fwd_ports_eth_addr[portid].addr_bytes[1],
2603 				l2fwd_ports_eth_addr[portid].addr_bytes[2],
2604 				l2fwd_ports_eth_addr[portid].addr_bytes[3],
2605 				l2fwd_ports_eth_addr[portid].addr_bytes[4],
2606 				l2fwd_ports_eth_addr[portid].addr_bytes[5]);
2607 
2608 		/* initialize port stats */
2609 		memset(&port_statistics, 0, sizeof(port_statistics));
2610 
2611 		/* Setup port forwarding table */
2612 		if (enabled_portcount % 2) {
2613 			l2fwd_dst_ports[portid] = last_portid;
2614 			l2fwd_dst_ports[last_portid] = portid;
2615 		} else {
2616 			last_portid = portid;
2617 		}
2618 
2619 		l2fwd_enabled_port_mask |= (1 << portid);
2620 		enabled_portcount++;
2621 	}
2622 
2623 	if (enabled_portcount == 1) {
2624 		l2fwd_dst_ports[last_portid] = last_portid;
2625 	} else if (enabled_portcount % 2) {
2626 		printf("odd number of ports in portmask- bye\n");
2627 		return -1;
2628 	}
2629 
2630 	check_all_ports_link_status(l2fwd_enabled_port_mask);
2631 
2632 	return enabled_portcount;
2633 }
2634 
2635 static void
2636 reserve_key_memory(struct l2fwd_crypto_options *options)
2637 {
2638 	options->cipher_xform.cipher.key.data = options->cipher_key;
2639 
2640 	options->auth_xform.auth.key.data = options->auth_key;
2641 
2642 	options->aead_xform.aead.key.data = options->aead_key;
2643 
2644 	options->cipher_iv.data = rte_malloc("cipher iv", MAX_KEY_SIZE, 0);
2645 	if (options->cipher_iv.data == NULL)
2646 		rte_exit(EXIT_FAILURE, "Failed to allocate memory for cipher IV");
2647 
2648 	options->auth_iv.data = rte_malloc("auth iv", MAX_KEY_SIZE, 0);
2649 	if (options->auth_iv.data == NULL)
2650 		rte_exit(EXIT_FAILURE, "Failed to allocate memory for auth IV");
2651 
2652 	options->aead_iv.data = rte_malloc("aead_iv", MAX_KEY_SIZE, 0);
2653 	if (options->aead_iv.data == NULL)
2654 		rte_exit(EXIT_FAILURE, "Failed to allocate memory for AEAD iv");
2655 
2656 	options->aad.data = rte_malloc("aad", MAX_KEY_SIZE, 0);
2657 	if (options->aad.data == NULL)
2658 		rte_exit(EXIT_FAILURE, "Failed to allocate memory for AAD");
2659 	options->aad.phys_addr = rte_malloc_virt2iova(options->aad.data);
2660 }
2661 
2662 int
2663 main(int argc, char **argv)
2664 {
2665 	struct lcore_queue_conf *qconf = NULL;
2666 	struct l2fwd_crypto_options options;
2667 
2668 	uint8_t nb_cryptodevs, cdev_id;
2669 	uint16_t portid;
2670 	unsigned lcore_id, rx_lcore_id = 0;
2671 	int ret, enabled_cdevcount, enabled_portcount;
2672 	uint8_t enabled_cdevs[RTE_CRYPTO_MAX_DEVS] = {0};
2673 
2674 	/* init EAL */
2675 	ret = rte_eal_init(argc, argv);
2676 	if (ret < 0)
2677 		rte_exit(EXIT_FAILURE, "Invalid EAL arguments\n");
2678 	argc -= ret;
2679 	argv += ret;
2680 
2681 	/* reserve memory for Cipher/Auth key and IV */
2682 	reserve_key_memory(&options);
2683 
2684 	/* parse application arguments (after the EAL ones) */
2685 	ret = l2fwd_crypto_parse_args(&options, argc, argv);
2686 	if (ret < 0)
2687 		rte_exit(EXIT_FAILURE, "Invalid L2FWD-CRYPTO arguments\n");
2688 
2689 	printf("MAC updating %s\n",
2690 			options.mac_updating ? "enabled" : "disabled");
2691 
2692 	/* create the mbuf pool */
2693 	l2fwd_pktmbuf_pool = rte_pktmbuf_pool_create("mbuf_pool", NB_MBUF, 512,
2694 			sizeof(struct rte_crypto_op),
2695 			RTE_MBUF_DEFAULT_BUF_SIZE, rte_socket_id());
2696 	if (l2fwd_pktmbuf_pool == NULL)
2697 		rte_exit(EXIT_FAILURE, "Cannot create mbuf pool\n");
2698 
2699 	/* create crypto op pool */
2700 	l2fwd_crypto_op_pool = rte_crypto_op_pool_create("crypto_op_pool",
2701 			RTE_CRYPTO_OP_TYPE_SYMMETRIC, NB_MBUF, 128, MAXIMUM_IV_LENGTH,
2702 			rte_socket_id());
2703 	if (l2fwd_crypto_op_pool == NULL)
2704 		rte_exit(EXIT_FAILURE, "Cannot create crypto op pool\n");
2705 
2706 	/* Enable Ethernet ports */
2707 	enabled_portcount = initialize_ports(&options);
2708 	if (enabled_portcount < 1)
2709 		rte_exit(EXIT_FAILURE, "Failed to initial Ethernet ports\n");
2710 
2711 	/* Initialize the port/queue configuration of each logical core */
2712 	RTE_ETH_FOREACH_DEV(portid) {
2713 
2714 		/* skip ports that are not enabled */
2715 		if ((options.portmask & (1 << portid)) == 0)
2716 			continue;
2717 
2718 		if (options.single_lcore && qconf == NULL) {
2719 			while (rte_lcore_is_enabled(rx_lcore_id) == 0) {
2720 				rx_lcore_id++;
2721 				if (rx_lcore_id >= RTE_MAX_LCORE)
2722 					rte_exit(EXIT_FAILURE,
2723 							"Not enough cores\n");
2724 			}
2725 		} else if (!options.single_lcore) {
2726 			/* get the lcore_id for this port */
2727 			while (rte_lcore_is_enabled(rx_lcore_id) == 0 ||
2728 			       lcore_queue_conf[rx_lcore_id].nb_rx_ports ==
2729 			       options.nb_ports_per_lcore) {
2730 				rx_lcore_id++;
2731 				if (rx_lcore_id >= RTE_MAX_LCORE)
2732 					rte_exit(EXIT_FAILURE,
2733 							"Not enough cores\n");
2734 			}
2735 		}
2736 
2737 		/* Assigned a new logical core in the loop above. */
2738 		if (qconf != &lcore_queue_conf[rx_lcore_id])
2739 			qconf = &lcore_queue_conf[rx_lcore_id];
2740 
2741 		qconf->rx_port_list[qconf->nb_rx_ports] = portid;
2742 		qconf->nb_rx_ports++;
2743 
2744 		printf("Lcore %u: RX port %u\n", rx_lcore_id, portid);
2745 	}
2746 
2747 	/* Enable Crypto devices */
2748 	enabled_cdevcount = initialize_cryptodevs(&options, enabled_portcount,
2749 			enabled_cdevs);
2750 	if (enabled_cdevcount < 0)
2751 		rte_exit(EXIT_FAILURE, "Failed to initialize crypto devices\n");
2752 
2753 	if (enabled_cdevcount < enabled_portcount)
2754 		rte_exit(EXIT_FAILURE, "Number of capable crypto devices (%d) "
2755 				"has to be more or equal to number of ports (%d)\n",
2756 				enabled_cdevcount, enabled_portcount);
2757 
2758 	nb_cryptodevs = rte_cryptodev_count();
2759 
2760 	/* Initialize the port/cryptodev configuration of each logical core */
2761 	for (rx_lcore_id = 0, qconf = NULL, cdev_id = 0;
2762 			cdev_id < nb_cryptodevs && enabled_cdevcount;
2763 			cdev_id++) {
2764 		/* Crypto op not supported by crypto device */
2765 		if (!enabled_cdevs[cdev_id])
2766 			continue;
2767 
2768 		if (options.single_lcore && qconf == NULL) {
2769 			while (rte_lcore_is_enabled(rx_lcore_id) == 0) {
2770 				rx_lcore_id++;
2771 				if (rx_lcore_id >= RTE_MAX_LCORE)
2772 					rte_exit(EXIT_FAILURE,
2773 							"Not enough cores\n");
2774 			}
2775 		} else if (!options.single_lcore) {
2776 			/* get the lcore_id for this port */
2777 			while (rte_lcore_is_enabled(rx_lcore_id) == 0 ||
2778 			       lcore_queue_conf[rx_lcore_id].nb_crypto_devs ==
2779 			       options.nb_ports_per_lcore) {
2780 				rx_lcore_id++;
2781 				if (rx_lcore_id >= RTE_MAX_LCORE)
2782 					rte_exit(EXIT_FAILURE,
2783 							"Not enough cores\n");
2784 			}
2785 		}
2786 
2787 		/* Assigned a new logical core in the loop above. */
2788 		if (qconf != &lcore_queue_conf[rx_lcore_id])
2789 			qconf = &lcore_queue_conf[rx_lcore_id];
2790 
2791 		qconf->cryptodev_list[qconf->nb_crypto_devs] = cdev_id;
2792 		qconf->nb_crypto_devs++;
2793 
2794 		enabled_cdevcount--;
2795 
2796 		printf("Lcore %u: cryptodev %u\n", rx_lcore_id,
2797 				(unsigned)cdev_id);
2798 	}
2799 
2800 	/* launch per-lcore init on every lcore */
2801 	rte_eal_mp_remote_launch(l2fwd_launch_one_lcore, (void *)&options,
2802 			CALL_MASTER);
2803 	RTE_LCORE_FOREACH_SLAVE(lcore_id) {
2804 		if (rte_eal_wait_lcore(lcore_id) < 0)
2805 			return -1;
2806 	}
2807 
2808 	return 0;
2809 }
2810