4 * Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
17 * * Neither the name of Intel Corporation nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38 #include <sys/types.h>
40 #include <sys/queue.h>
45 #include <rte_common.h>
46 #include <rte_byteorder.h>
48 #include <rte_memory.h>
49 #include <rte_memzone.h>
50 #include <rte_tailq.h>
52 #include <rte_per_lcore.h>
53 #include <rte_launch.h>
54 #include <rte_atomic.h>
55 #include <rte_cycles.h>
56 #include <rte_prefetch.h>
57 #include <rte_lcore.h>
58 #include <rte_per_lcore.h>
59 #include <rte_branch_prediction.h>
60 #include <rte_interrupts.h>
62 #include <rte_random.h>
63 #include <rte_debug.h>
64 #include <rte_ether.h>
65 #include <rte_ethdev.h>
67 #include <rte_mempool.h>
70 #include <rte_string_fns.h>
74 #define MBUF_SIZE (2048 + sizeof(struct rte_mbuf) + RTE_PKTMBUF_HEADROOM)
75 #define NB_MBUF (32 * 1024)
77 #define MAX_PKT_BURST 32
78 #define BURST_TX_DRAIN_US 100 /* TX drain every ~100us */
80 #define TX_QUEUE_FLUSH_MASK 0xFFFFFFFF
81 #define TSC_COUNT_LIMIT 1000
83 #define ACTION_ENCRYPT 1
84 #define ACTION_DECRYPT 2
87 * Configurable number of RX/TX ring descriptors
89 #define RTE_TEST_RX_DESC_DEFAULT 128
90 #define RTE_TEST_TX_DESC_DEFAULT 512
91 static uint16_t nb_rxd = RTE_TEST_RX_DESC_DEFAULT;
92 static uint16_t nb_txd = RTE_TEST_TX_DESC_DEFAULT;
94 /* ethernet addresses of ports */
95 static struct ether_addr ports_eth_addr[RTE_MAX_ETHPORTS];
97 /* mask of enabled ports */
98 static unsigned enabled_port_mask = 0;
99 static int promiscuous_on = 1; /**< Ports set in promiscuous mode on by default. */
101 /* list of enabled ports */
102 static uint32_t dst_ports[RTE_MAX_ETHPORTS];
106 struct rte_mbuf *m_table[MAX_PKT_BURST];
109 struct lcore_rx_queue {
114 #define MAX_RX_QUEUE_PER_LCORE 16
116 #define MAX_LCORE_PARAMS 1024
117 struct lcore_params {
123 static struct lcore_params lcore_params_array[MAX_LCORE_PARAMS];
124 static struct lcore_params lcore_params_array_default[] = {
136 static struct lcore_params * lcore_params = lcore_params_array_default;
137 static uint16_t nb_lcore_params = sizeof(lcore_params_array_default) /
138 sizeof(lcore_params_array_default[0]);
140 static struct rte_eth_conf port_conf = {
142 .mq_mode = ETH_MQ_RX_RSS,
144 .header_split = 0, /**< Header Split disabled */
145 .hw_ip_checksum = 1, /**< IP checksum offload enabled */
146 .hw_vlan_filter = 0, /**< VLAN filtering disabled */
147 .jumbo_frame = 0, /**< Jumbo Frame Support disabled */
148 .hw_strip_crc = 0, /**< CRC stripped by hardware */
153 .rss_hf = ETH_RSS_IP,
157 .mq_mode = ETH_MQ_TX_NONE,
161 static struct rte_mempool * pktmbuf_pool[RTE_MAX_NUMA_NODES];
168 uint16_t rx_queue_list_pos;
169 struct lcore_rx_queue rx_queue_list[MAX_RX_QUEUE_PER_LCORE];
170 uint16_t tx_queue_id[RTE_MAX_ETHPORTS];
171 struct mbuf_table rx_mbuf;
172 uint32_t rx_mbuf_pos;
173 uint32_t rx_curr_queue;
174 struct mbuf_table tx_mbufs[RTE_MAX_ETHPORTS];
175 } __rte_cache_aligned;
177 static struct lcore_conf lcore_conf[RTE_MAX_LCORE];
179 static inline struct rte_mbuf *
180 nic_rx_get_packet(struct lcore_conf *qconf)
182 struct rte_mbuf *pkt;
184 if (unlikely(qconf->n_rx_queue == 0))
187 /* Look for the next queue with packets; return if none */
188 if (unlikely(qconf->rx_mbuf_pos == qconf->rx_mbuf.len)) {
191 qconf->rx_mbuf_pos = 0;
192 for (i = 0; i < qconf->n_rx_queue; i++) {
193 qconf->rx_mbuf.len = rte_eth_rx_burst(
194 qconf->rx_queue_list[qconf->rx_curr_queue].port_id,
195 qconf->rx_queue_list[qconf->rx_curr_queue].queue_id,
196 qconf->rx_mbuf.m_table, MAX_PKT_BURST);
198 qconf->rx_curr_queue++;
199 if (unlikely(qconf->rx_curr_queue == qconf->n_rx_queue))
200 qconf->rx_curr_queue = 0;
201 if (likely(qconf->rx_mbuf.len > 0))
204 if (unlikely(i == qconf->n_rx_queue))
208 /* Get the next packet from the current queue; if last packet, go to next queue */
209 pkt = qconf->rx_mbuf.m_table[qconf->rx_mbuf_pos];
210 qconf->rx_mbuf_pos++;
216 nic_tx_flush_queues(struct lcore_conf *qconf)
220 for (portid = 0; portid < RTE_MAX_ETHPORTS; portid++) {
221 struct rte_mbuf **m_table = NULL;
222 uint16_t queueid, len;
225 if (likely((qconf->tx_mask & (1 << portid)) == 0))
228 len = qconf->tx_mbufs[portid].len;
229 if (likely(len == 0))
232 queueid = qconf->tx_queue_id[portid];
233 m_table = qconf->tx_mbufs[portid].m_table;
235 n = rte_eth_tx_burst(portid, queueid, m_table, len);
236 for (i = n; i < len; i++){
237 rte_pktmbuf_free(m_table[i]);
240 qconf->tx_mbufs[portid].len = 0;
243 qconf->tx_mask = TX_QUEUE_FLUSH_MASK;
247 nic_tx_send_packet(struct rte_mbuf *pkt, uint8_t port)
249 struct lcore_conf *qconf;
253 if (unlikely(pkt == NULL)) {
257 lcoreid = rte_lcore_id();
258 qconf = &lcore_conf[lcoreid];
260 len = qconf->tx_mbufs[port].len;
261 qconf->tx_mbufs[port].m_table[len] = pkt;
264 /* enough pkts to be sent */
265 if (unlikely(len == MAX_PKT_BURST)) {
269 queueid = qconf->tx_queue_id[port];
270 n = rte_eth_tx_burst(port, queueid, qconf->tx_mbufs[port].m_table, MAX_PKT_BURST);
271 for (i = n; i < MAX_PKT_BURST; i++){
272 rte_pktmbuf_free(qconf->tx_mbufs[port].m_table[i]);
275 qconf->tx_mask &= ~(1 << port);
279 qconf->tx_mbufs[port].len = len;
282 /* main processing loop */
283 static __attribute__((noreturn)) int
284 main_loop(__attribute__((unused)) void *dummy)
287 struct lcore_conf *qconf;
288 const uint64_t drain_tsc = (rte_get_tsc_hz() + US_PER_S - 1) / US_PER_S * BURST_TX_DRAIN_US;
290 lcoreid = rte_lcore_id();
291 qconf = &lcore_conf[lcoreid];
293 printf("Thread %u starting...\n", lcoreid);
296 struct rte_mbuf *pkt;
297 uint32_t pkt_from_nic_rx = 0;
300 /* Flush TX queues */
302 if (unlikely(qconf->tsc_count == TSC_COUNT_LIMIT)) {
303 uint64_t tsc, diff_tsc;
307 diff_tsc = tsc - qconf->tsc;
308 if (unlikely(diff_tsc > drain_tsc)) {
309 nic_tx_flush_queues(qconf);
310 crypto_flush_tx_queue(lcoreid);
314 qconf->tsc_count = 0;
318 * Check the Intel QuickAssist queues first
321 pkt = (struct rte_mbuf *) crypto_get_next_response();
323 pkt = nic_rx_get_packet(qconf);
328 /* Send packet to either QAT encrypt, QAT decrypt or NIC TX */
329 if (pkt_from_nic_rx) {
330 struct ipv4_hdr *ip = (struct ipv4_hdr *) (rte_pktmbuf_mtod(pkt, unsigned char *) +
331 sizeof(struct ether_hdr));
332 if (ip->src_addr & rte_cpu_to_be_32(ACTION_ENCRYPT)) {
333 if (CRYPTO_RESULT_FAIL == crypto_encrypt(pkt,
334 (enum cipher_alg)((ip->src_addr >> 16) & 0xFF),
335 (enum hash_alg)((ip->src_addr >> 8) & 0xFF)))
336 rte_pktmbuf_free(pkt);
340 if (ip->src_addr & rte_cpu_to_be_32(ACTION_DECRYPT)) {
341 if(CRYPTO_RESULT_FAIL == crypto_decrypt(pkt,
342 (enum cipher_alg)((ip->src_addr >> 16) & 0xFF),
343 (enum hash_alg)((ip->src_addr >> 8) & 0xFF)))
344 rte_pktmbuf_free(pkt);
349 port = dst_ports[pkt->port];
351 /* Transmit the packet */
352 nic_tx_send_packet(pkt, (uint8_t)port);
356 static inline unsigned
357 get_port_max_rx_queues(uint8_t port_id)
359 struct rte_eth_dev_info dev_info;
361 rte_eth_dev_info_get(port_id, &dev_info);
362 return dev_info.max_rx_queues;
365 static inline unsigned
366 get_port_max_tx_queues(uint8_t port_id)
368 struct rte_eth_dev_info dev_info;
370 rte_eth_dev_info_get(port_id, &dev_info);
371 return dev_info.max_tx_queues;
375 check_lcore_params(void)
379 for (i = 0; i < nb_lcore_params; ++i) {
380 if (lcore_params[i].queue_id >= get_port_max_rx_queues(lcore_params[i].port_id)) {
381 printf("invalid queue number: %hhu\n", lcore_params[i].queue_id);
384 if (!rte_lcore_is_enabled(lcore_params[i].lcore_id)) {
385 printf("error: lcore %hhu is not enabled in lcore mask\n",
386 lcore_params[i].lcore_id);
394 check_port_config(const unsigned nb_ports)
399 for (i = 0; i < nb_lcore_params; ++i) {
400 portid = lcore_params[i].port_id;
401 if ((enabled_port_mask & (1 << portid)) == 0) {
402 printf("port %u is not enabled in port mask\n", portid);
405 if (portid >= nb_ports) {
406 printf("port %u is not present on the board\n", portid);
414 get_port_n_rx_queues(const uint8_t port)
419 for (i = 0; i < nb_lcore_params; ++i) {
420 if (lcore_params[i].port_id == port && lcore_params[i].queue_id > queue)
421 queue = lcore_params[i].queue_id;
423 return (uint8_t)(++queue);
427 init_lcore_rx_queues(void)
429 uint16_t i, nb_rx_queue;
432 for (i = 0; i < nb_lcore_params; ++i) {
433 lcore = lcore_params[i].lcore_id;
434 nb_rx_queue = lcore_conf[lcore].n_rx_queue;
435 if (nb_rx_queue >= MAX_RX_QUEUE_PER_LCORE) {
436 printf("error: too many queues (%u) for lcore: %u\n",
437 (unsigned)nb_rx_queue + 1, (unsigned)lcore);
440 lcore_conf[lcore].rx_queue_list[nb_rx_queue].port_id =
441 lcore_params[i].port_id;
442 lcore_conf[lcore].rx_queue_list[nb_rx_queue].queue_id =
443 lcore_params[i].queue_id;
444 lcore_conf[lcore].n_rx_queue++;
451 print_usage(const char *prgname)
453 printf ("%s [EAL options] -- -p PORTMASK [--no-promisc]"
454 " [--config '(port,queue,lcore)[,(port,queue,lcore)]'\n"
455 " -p PORTMASK: hexadecimal bitmask of ports to configure\n"
456 " --no-promisc: disable promiscuous mode (default is ON)\n"
457 " --config '(port,queue,lcore)': rx queues configuration\n",
462 parse_portmask(const char *portmask)
467 /* parse hexadecimal string */
468 pm = strtoul(portmask, &end, 16);
469 if ((portmask[0] == '\0') || (end == NULL) || (*end != '\0'))
476 parse_config(const char *q_arg)
479 const char *p, *p_end = q_arg;
487 unsigned long int_fld[_NUM_FLD];
488 char *str_fld[_NUM_FLD];
494 while ((p = strchr(p_end,'(')) != NULL) {
495 if (nb_lcore_params >= MAX_LCORE_PARAMS) {
496 printf("exceeded max number of lcore params: %hu\n",
501 if((p_end = strchr(p,')')) == NULL)
505 if(size >= sizeof(s))
508 snprintf(s, sizeof(s), "%.*s", size, p);
509 if (rte_strsplit(s, sizeof(s), str_fld, _NUM_FLD, ',') != _NUM_FLD)
511 for (i = 0; i < _NUM_FLD; i++) {
513 int_fld[i] = strtoul(str_fld[i], &end, 0);
514 if (errno != 0 || end == str_fld[i] || int_fld[i] > 255)
517 lcore_params_array[nb_lcore_params].port_id = (uint8_t)int_fld[FLD_PORT];
518 lcore_params_array[nb_lcore_params].queue_id = (uint8_t)int_fld[FLD_QUEUE];
519 lcore_params_array[nb_lcore_params].lcore_id = (uint8_t)int_fld[FLD_LCORE];
522 lcore_params = lcore_params_array;
526 /* Parse the argument given in the command line of the application */
528 parse_args(int argc, char **argv)
533 char *prgname = argv[0];
534 static struct option lgopts[] = {
536 {"no-promisc", 0, 0, 0},
542 while ((opt = getopt_long(argc, argvopt, "p:",
543 lgopts, &option_index)) != EOF) {
548 enabled_port_mask = parse_portmask(optarg);
549 if (enabled_port_mask == 0) {
550 printf("invalid portmask\n");
551 print_usage(prgname);
558 if (strcmp(lgopts[option_index].name, "config") == 0) {
559 ret = parse_config(optarg);
561 printf("invalid config\n");
562 print_usage(prgname);
566 if (strcmp(lgopts[option_index].name, "no-promisc") == 0) {
567 printf("Promiscuous mode disabled\n");
572 print_usage(prgname);
577 if (enabled_port_mask == 0) {
578 printf("portmask not specified\n");
579 print_usage(prgname);
584 argv[optind-1] = prgname;
587 optind = 0; /* reset getopt lib */
592 print_ethaddr(const char *name, const struct ether_addr *eth_addr)
594 char buf[ETHER_ADDR_FMT_SIZE];
595 ether_format_addr(buf, ETHER_ADDR_FMT_SIZE, eth_addr);
596 printf("%s%s", name, buf);
602 const unsigned flags = 0;
607 RTE_LCORE_FOREACH(lcoreid) {
608 socketid = rte_lcore_to_socket_id(lcoreid);
609 if (socketid >= RTE_MAX_NUMA_NODES) {
610 printf("Socket %d of lcore %u is out of range %d\n",
611 socketid, lcoreid, RTE_MAX_NUMA_NODES);
614 if (pktmbuf_pool[socketid] == NULL) {
615 snprintf(s, sizeof(s), "mbuf_pool_%d", socketid);
616 pktmbuf_pool[socketid] =
617 rte_mempool_create(s, NB_MBUF, MBUF_SIZE, 32,
618 sizeof(struct rte_pktmbuf_pool_private),
619 rte_pktmbuf_pool_init, NULL,
620 rte_pktmbuf_init, NULL,
622 if (pktmbuf_pool[socketid] == NULL) {
623 printf("Cannot init mbuf pool on socket %d\n", socketid);
626 printf("Allocated mbuf pool on socket %d\n", socketid);
633 main(int argc, char **argv)
635 struct lcore_conf *qconf;
636 struct rte_eth_link link;
641 uint32_t nb_tx_queue;
642 uint8_t portid, nb_rx_queue, queue, socketid, last_port;
643 unsigned nb_ports_in_mask = 0;
646 ret = rte_eal_init(argc, argv);
652 /* parse application arguments (after the EAL ones) */
653 ret = parse_args(argc, argv);
657 if (check_lcore_params() < 0)
658 rte_panic("check_lcore_params failed\n");
660 ret = init_lcore_rx_queues();
668 nb_ports = rte_eth_dev_count();
669 if (nb_ports > RTE_MAX_ETHPORTS)
670 nb_ports = RTE_MAX_ETHPORTS;
672 if (check_port_config(nb_ports) < 0)
673 rte_panic("check_port_config failed\n");
675 /* reset dst_ports */
676 for (portid = 0; portid < RTE_MAX_ETHPORTS; portid++)
677 dst_ports[portid] = 0;
681 * Each logical core is assigned a dedicated TX queue on each port.
683 for (portid = 0; portid < nb_ports; portid++) {
684 /* skip ports that are not enabled */
685 if ((enabled_port_mask & (1 << portid)) == 0)
688 if (nb_ports_in_mask % 2) {
689 dst_ports[portid] = last_port;
690 dst_ports[last_port] = portid;
697 if (nb_ports_in_mask % 2) {
698 printf("Notice: odd number of ports in portmask.\n");
699 dst_ports[last_port] = last_port;
702 /* initialize all ports */
703 for (portid = 0; portid < nb_ports; portid++) {
704 /* skip ports that are not enabled */
705 if ((enabled_port_mask & (1 << portid)) == 0) {
706 printf("\nSkipping disabled port %d\n", portid);
711 printf("Initializing port %d ... ", portid );
714 nb_rx_queue = get_port_n_rx_queues(portid);
715 if (nb_rx_queue > get_port_max_rx_queues(portid))
716 rte_panic("Number of rx queues %d exceeds max number of rx queues %u"
717 " for port %d\n", nb_rx_queue, get_port_max_rx_queues(portid),
719 nb_tx_queue = rte_lcore_count();
720 if (nb_tx_queue > get_port_max_tx_queues(portid))
721 rte_panic("Number of lcores %u exceeds max number of tx queues %u"
722 " for port %d\n", nb_tx_queue, get_port_max_tx_queues(portid),
724 printf("Creating queues: nb_rxq=%d nb_txq=%u... ",
725 nb_rx_queue, (unsigned)nb_tx_queue );
726 ret = rte_eth_dev_configure(portid, nb_rx_queue,
727 (uint16_t)nb_tx_queue, &port_conf);
729 rte_panic("Cannot configure device: err=%d, port=%d\n",
732 rte_eth_macaddr_get(portid, &ports_eth_addr[portid]);
733 print_ethaddr(" Address:", &ports_eth_addr[portid]);
736 /* init one TX queue per couple (lcore,port) */
738 RTE_LCORE_FOREACH(lcoreid) {
739 socketid = (uint8_t)rte_lcore_to_socket_id(lcoreid);
740 printf("txq=%u,%d,%d ", lcoreid, queueid, socketid);
742 ret = rte_eth_tx_queue_setup(portid, queueid, nb_txd,
746 rte_panic("rte_eth_tx_queue_setup: err=%d, "
747 "port=%d\n", ret, portid);
749 qconf = &lcore_conf[lcoreid];
750 qconf->tx_queue_id[portid] = queueid;
756 RTE_LCORE_FOREACH(lcoreid) {
757 qconf = &lcore_conf[lcoreid];
758 printf("\nInitializing rx queues on lcore %u ... ", lcoreid );
761 for(queue = 0; queue < qconf->n_rx_queue; ++queue) {
762 portid = qconf->rx_queue_list[queue].port_id;
763 queueid = qconf->rx_queue_list[queue].queue_id;
764 socketid = (uint8_t)rte_lcore_to_socket_id(lcoreid);
765 printf("rxq=%d,%d,%d ", portid, queueid, socketid);
768 ret = rte_eth_rx_queue_setup(portid, queueid, nb_rxd,
771 pktmbuf_pool[socketid]);
773 rte_panic("rte_eth_rx_queue_setup: err=%d,"
774 "port=%d\n", ret, portid);
781 for (portid = 0; portid < nb_ports; portid++) {
782 if ((enabled_port_mask & (1 << portid)) == 0)
785 ret = rte_eth_dev_start(portid);
787 rte_panic("rte_eth_dev_start: err=%d, port=%d\n",
790 printf("done: Port %d ", portid);
792 /* get link status */
793 rte_eth_link_get(portid, &link);
794 if (link.link_status)
795 printf(" Link Up - speed %u Mbps - %s\n",
796 (unsigned) link.link_speed,
797 (link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
798 ("full-duplex") : ("half-duplex\n"));
800 printf(" Link Down\n");
802 * If enabled, put device in promiscuous mode.
803 * This allows IO forwarding mode to forward packets
804 * to itself through 2 cross-connected ports of the
808 rte_eth_promiscuous_enable(portid);
810 printf("Crypto: Initializing Crypto...\n");
811 if (crypto_init() != 0)
814 RTE_LCORE_FOREACH(lcoreid) {
815 if (per_core_crypto_init(lcoreid) != 0) {
816 printf("Crypto: Cannot init lcore crypto on lcore %u\n", (unsigned)lcoreid);
820 printf("Crypto: Initialization complete\n");
821 /* launch per-lcore init on every lcore */
822 rte_eal_mp_remote_launch(main_loop, NULL, CALL_MASTER);
823 RTE_LCORE_FOREACH_SLAVE(lcoreid) {
824 if (rte_eal_wait_lcore(lcoreid) < 0)