1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2016 Intel Corporation
9 #include <rte_common.h>
10 #include <rte_errno.h>
11 #include <rte_ethdev.h>
12 #include <rte_lcore.h>
13 #include <rte_malloc.h>
15 #include <rte_mempool.h>
17 #include <rte_reorder.h>
19 #define RX_DESC_PER_QUEUE 1024
20 #define TX_DESC_PER_QUEUE 1024
22 #define MAX_PKTS_BURST 32
23 #define REORDER_BUFFER_SIZE 8192
24 #define MBUF_PER_POOL 65535
25 #define MBUF_POOL_CACHE_SIZE 250
27 #define RING_SIZE 16384
29 /* Macros for printing using RTE_LOG */
30 #define RTE_LOGTYPE_REORDERAPP RTE_LOGTYPE_USER1
32 unsigned int portmask;
33 unsigned int disable_reorder;
34 unsigned int insight_worker;
35 volatile uint8_t quit_signal;
37 static struct rte_mempool *mbuf_pool;
39 static struct rte_eth_conf port_conf_default;
41 struct worker_thread_args {
42 struct rte_ring *ring_in;
43 struct rte_ring *ring_out;
46 struct send_thread_args {
47 struct rte_ring *ring_in;
48 struct rte_reorder_buffer *buffer;
51 volatile struct app_stats {
54 uint64_t enqueue_pkts;
55 uint64_t enqueue_failed_pkts;
56 } rx __rte_cache_aligned;
59 uint64_t dequeue_pkts;
60 uint64_t enqueue_pkts;
61 uint64_t enqueue_failed_pkts;
62 } wkr __rte_cache_aligned;
65 uint64_t dequeue_pkts;
66 /* Too early pkts transmitted directly w/o reordering */
67 uint64_t early_pkts_txtd_woro;
68 /* Too early pkts failed from direct transmit */
69 uint64_t early_pkts_tx_failed_woro;
71 uint64_t ro_tx_failed_pkts;
72 } tx __rte_cache_aligned;
75 /* per worker lcore stats */
76 struct wkr_stats_per {
79 uint64_t enq_failed_pkts;
80 } __rte_cache_aligned;
82 static struct wkr_stats_per wkr_stats[RTE_MAX_LCORE] = { {0} };
84 * Get the last enabled lcore ID
87 * The last enabled lcore ID.
90 get_last_lcore_id(void)
94 for (i = RTE_MAX_LCORE - 1; i >= 0; i--)
95 if (rte_lcore_is_enabled(i))
101 * Get the previous enabled lcore ID
103 * The current lcore ID
105 * The previous enabled lcore ID or the current lcore
106 * ID if it is the first available core.
109 get_previous_lcore_id(unsigned int id)
113 for (i = id - 1; i >= 0; i--)
114 if (rte_lcore_is_enabled(i))
120 pktmbuf_free_bulk(struct rte_mbuf *mbuf_table[], unsigned n)
124 for (i = 0; i < n; i++)
125 rte_pktmbuf_free(mbuf_table[i]);
130 print_usage(const char *prgname)
132 printf("%s [EAL options] -- -p PORTMASK\n"
133 " -p PORTMASK: hexadecimal bitmask of ports to configure\n",
138 parse_portmask(const char *portmask)
143 /* parse hexadecimal string */
144 pm = strtoul(portmask, &end, 16);
145 if ((portmask[0] == '\0') || (end == NULL) || (*end != '\0'))
154 /* Parse the argument given in the command line of the application */
156 parse_args(int argc, char **argv)
161 char *prgname = argv[0];
162 static struct option lgopts[] = {
163 {"disable-reorder", 0, 0, 0},
164 {"insight-worker", 0, 0, 0},
170 while ((opt = getopt_long(argc, argvopt, "p:",
171 lgopts, &option_index)) != EOF) {
175 portmask = parse_portmask(optarg);
177 printf("invalid portmask\n");
178 print_usage(prgname);
184 if (!strcmp(lgopts[option_index].name, "disable-reorder")) {
185 printf("reorder disabled\n");
188 if (!strcmp(lgopts[option_index].name,
190 printf("print all worker statistics\n");
195 print_usage(prgname);
200 print_usage(prgname);
204 argv[optind-1] = prgname;
205 optind = 1; /* reset getopt lib */
210 * Tx buffer error callback
213 flush_tx_error_callback(struct rte_mbuf **unsent, uint16_t count,
214 void *userdata __rte_unused) {
216 /* free the mbufs which failed from transmit */
217 app_stats.tx.ro_tx_failed_pkts += count;
218 RTE_LOG_DP(DEBUG, REORDERAPP, "%s:Packet loss with tx_burst\n", __func__);
219 pktmbuf_free_bulk(unsent, count);
224 free_tx_buffers(struct rte_eth_dev_tx_buffer *tx_buffer[]) {
227 /* initialize buffers for all ports */
228 RTE_ETH_FOREACH_DEV(port_id) {
229 /* skip ports that are not enabled */
230 if ((portmask & (1 << port_id)) == 0)
233 rte_free(tx_buffer[port_id]);
239 configure_tx_buffers(struct rte_eth_dev_tx_buffer *tx_buffer[])
244 /* initialize buffers for all ports */
245 RTE_ETH_FOREACH_DEV(port_id) {
246 /* skip ports that are not enabled */
247 if ((portmask & (1 << port_id)) == 0)
250 /* Initialize TX buffers */
251 tx_buffer[port_id] = rte_zmalloc_socket("tx_buffer",
252 RTE_ETH_TX_BUFFER_SIZE(MAX_PKTS_BURST), 0,
253 rte_eth_dev_socket_id(port_id));
254 if (tx_buffer[port_id] == NULL)
255 rte_exit(EXIT_FAILURE, "Cannot allocate buffer for tx on port %u\n",
258 rte_eth_tx_buffer_init(tx_buffer[port_id], MAX_PKTS_BURST);
260 ret = rte_eth_tx_buffer_set_err_callback(tx_buffer[port_id],
261 flush_tx_error_callback, NULL);
263 rte_exit(EXIT_FAILURE,
264 "Cannot set error callback for tx buffer on port %u\n",
271 configure_eth_port(uint16_t port_id)
273 struct rte_ether_addr addr;
274 const uint16_t rxRings = 1, txRings = 1;
277 uint16_t nb_rxd = RX_DESC_PER_QUEUE;
278 uint16_t nb_txd = TX_DESC_PER_QUEUE;
279 struct rte_eth_dev_info dev_info;
280 struct rte_eth_txconf txconf;
281 struct rte_eth_conf port_conf = port_conf_default;
283 if (!rte_eth_dev_is_valid_port(port_id))
286 ret = rte_eth_dev_info_get(port_id, &dev_info);
288 printf("Error during getting device (port %u) info: %s\n",
289 port_id, strerror(-ret));
293 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_MBUF_FAST_FREE)
294 port_conf.txmode.offloads |=
295 DEV_TX_OFFLOAD_MBUF_FAST_FREE;
296 ret = rte_eth_dev_configure(port_id, rxRings, txRings, &port_conf_default);
300 ret = rte_eth_dev_adjust_nb_rx_tx_desc(port_id, &nb_rxd, &nb_txd);
304 for (q = 0; q < rxRings; q++) {
305 ret = rte_eth_rx_queue_setup(port_id, q, nb_rxd,
306 rte_eth_dev_socket_id(port_id), NULL,
312 txconf = dev_info.default_txconf;
313 txconf.offloads = port_conf.txmode.offloads;
314 for (q = 0; q < txRings; q++) {
315 ret = rte_eth_tx_queue_setup(port_id, q, nb_txd,
316 rte_eth_dev_socket_id(port_id), &txconf);
321 ret = rte_eth_dev_start(port_id);
325 ret = rte_eth_macaddr_get(port_id, &addr);
327 printf("Failed to get MAC address (port %u): %s\n",
328 port_id, rte_strerror(-ret));
332 printf("Port %u MAC: %02"PRIx8" %02"PRIx8" %02"PRIx8
333 " %02"PRIx8" %02"PRIx8" %02"PRIx8"\n",
335 addr.addr_bytes[0], addr.addr_bytes[1],
336 addr.addr_bytes[2], addr.addr_bytes[3],
337 addr.addr_bytes[4], addr.addr_bytes[5]);
339 ret = rte_eth_promiscuous_enable(port_id);
350 struct rte_eth_stats eth_stats;
351 unsigned int lcore_id, last_lcore_id, master_lcore_id, end_w_lcore_id;
353 last_lcore_id = get_last_lcore_id();
354 master_lcore_id = rte_get_master_lcore();
355 end_w_lcore_id = get_previous_lcore_id(last_lcore_id);
357 printf("\nRX thread stats:\n");
358 printf(" - Pkts rxd: %"PRIu64"\n",
359 app_stats.rx.rx_pkts);
360 printf(" - Pkts enqd to workers ring: %"PRIu64"\n",
361 app_stats.rx.enqueue_pkts);
363 for (lcore_id = 0; lcore_id <= end_w_lcore_id; lcore_id++) {
365 && rte_lcore_is_enabled(lcore_id)
366 && lcore_id != master_lcore_id) {
367 printf("\nWorker thread stats on core [%u]:\n",
369 printf(" - Pkts deqd from workers ring: %"PRIu64"\n",
370 wkr_stats[lcore_id].deq_pkts);
371 printf(" - Pkts enqd to tx ring: %"PRIu64"\n",
372 wkr_stats[lcore_id].enq_pkts);
373 printf(" - Pkts enq to tx failed: %"PRIu64"\n",
374 wkr_stats[lcore_id].enq_failed_pkts);
377 app_stats.wkr.dequeue_pkts += wkr_stats[lcore_id].deq_pkts;
378 app_stats.wkr.enqueue_pkts += wkr_stats[lcore_id].enq_pkts;
379 app_stats.wkr.enqueue_failed_pkts +=
380 wkr_stats[lcore_id].enq_failed_pkts;
383 printf("\nWorker thread stats:\n");
384 printf(" - Pkts deqd from workers ring: %"PRIu64"\n",
385 app_stats.wkr.dequeue_pkts);
386 printf(" - Pkts enqd to tx ring: %"PRIu64"\n",
387 app_stats.wkr.enqueue_pkts);
388 printf(" - Pkts enq to tx failed: %"PRIu64"\n",
389 app_stats.wkr.enqueue_failed_pkts);
391 printf("\nTX stats:\n");
392 printf(" - Pkts deqd from tx ring: %"PRIu64"\n",
393 app_stats.tx.dequeue_pkts);
394 printf(" - Ro Pkts transmitted: %"PRIu64"\n",
395 app_stats.tx.ro_tx_pkts);
396 printf(" - Ro Pkts tx failed: %"PRIu64"\n",
397 app_stats.tx.ro_tx_failed_pkts);
398 printf(" - Pkts transmitted w/o reorder: %"PRIu64"\n",
399 app_stats.tx.early_pkts_txtd_woro);
400 printf(" - Pkts tx failed w/o reorder: %"PRIu64"\n",
401 app_stats.tx.early_pkts_tx_failed_woro);
403 RTE_ETH_FOREACH_DEV(i) {
404 rte_eth_stats_get(i, ð_stats);
405 printf("\nPort %u stats:\n", i);
406 printf(" - Pkts in: %"PRIu64"\n", eth_stats.ipackets);
407 printf(" - Pkts out: %"PRIu64"\n", eth_stats.opackets);
408 printf(" - In Errs: %"PRIu64"\n", eth_stats.ierrors);
409 printf(" - Out Errs: %"PRIu64"\n", eth_stats.oerrors);
410 printf(" - Mbuf Errs: %"PRIu64"\n", eth_stats.rx_nombuf);
415 int_handler(int sig_num)
417 printf("Exiting on signal %d\n", sig_num);
422 * This thread receives mbufs from the port and affects them an internal
423 * sequence number to keep track of their order of arrival through an
425 * The mbufs are then passed to the worker threads via the rx_to_workers
429 rx_thread(struct rte_ring *ring_out)
435 struct rte_mbuf *pkts[MAX_PKTS_BURST];
437 RTE_LOG(INFO, REORDERAPP, "%s() started on lcore %u\n", __func__,
440 while (!quit_signal) {
442 RTE_ETH_FOREACH_DEV(port_id) {
443 if ((portmask & (1 << port_id)) != 0) {
445 /* receive packets */
446 nb_rx_pkts = rte_eth_rx_burst(port_id, 0,
447 pkts, MAX_PKTS_BURST);
448 if (nb_rx_pkts == 0) {
449 RTE_LOG_DP(DEBUG, REORDERAPP,
450 "%s():Received zero packets\n", __func__);
453 app_stats.rx.rx_pkts += nb_rx_pkts;
455 /* mark sequence number */
456 for (i = 0; i < nb_rx_pkts; )
457 pkts[i++]->seqn = seqn++;
459 /* enqueue to rx_to_workers ring */
460 ret = rte_ring_enqueue_burst(ring_out,
461 (void *)pkts, nb_rx_pkts, NULL);
462 app_stats.rx.enqueue_pkts += ret;
463 if (unlikely(ret < nb_rx_pkts)) {
464 app_stats.rx.enqueue_failed_pkts +=
466 pktmbuf_free_bulk(&pkts[ret], nb_rx_pkts - ret);
475 * This thread takes bursts of packets from the rx_to_workers ring and
476 * Changes the input port value to output port value. And feds it to
480 worker_thread(void *args_ptr)
482 const uint16_t nb_ports = rte_eth_dev_count_avail();
484 uint16_t burst_size = 0;
485 struct worker_thread_args *args;
486 struct rte_mbuf *burst_buffer[MAX_PKTS_BURST] = { NULL };
487 struct rte_ring *ring_in, *ring_out;
488 const unsigned xor_val = (nb_ports > 1);
489 unsigned int core_id = rte_lcore_id();
491 args = (struct worker_thread_args *) args_ptr;
492 ring_in = args->ring_in;
493 ring_out = args->ring_out;
495 RTE_LOG(INFO, REORDERAPP, "%s() started on lcore %u\n", __func__,
498 while (!quit_signal) {
500 /* dequeue the mbufs from rx_to_workers ring */
501 burst_size = rte_ring_dequeue_burst(ring_in,
502 (void *)burst_buffer, MAX_PKTS_BURST, NULL);
503 if (unlikely(burst_size == 0))
506 wkr_stats[core_id].deq_pkts += burst_size;
508 /* just do some operation on mbuf */
509 for (i = 0; i < burst_size;)
510 burst_buffer[i++]->port ^= xor_val;
512 /* enqueue the modified mbufs to workers_to_tx ring */
513 ret = rte_ring_enqueue_burst(ring_out, (void *)burst_buffer,
515 wkr_stats[core_id].enq_pkts += ret;
516 if (unlikely(ret < burst_size)) {
517 /* Return the mbufs to their respective pool, dropping packets */
518 wkr_stats[core_id].enq_failed_pkts += burst_size - ret;
519 pktmbuf_free_bulk(&burst_buffer[ret], burst_size - ret);
526 * Dequeue mbufs from the workers_to_tx ring and reorder them before
530 send_thread(struct send_thread_args *args)
533 unsigned int i, dret;
534 uint16_t nb_dq_mbufs;
537 struct rte_mbuf *mbufs[MAX_PKTS_BURST];
538 struct rte_mbuf *rombufs[MAX_PKTS_BURST] = {NULL};
539 static struct rte_eth_dev_tx_buffer *tx_buffer[RTE_MAX_ETHPORTS];
541 RTE_LOG(INFO, REORDERAPP, "%s() started on lcore %u\n", __func__, rte_lcore_id());
543 configure_tx_buffers(tx_buffer);
545 while (!quit_signal) {
547 /* deque the mbufs from workers_to_tx ring */
548 nb_dq_mbufs = rte_ring_dequeue_burst(args->ring_in,
549 (void *)mbufs, MAX_PKTS_BURST, NULL);
551 if (unlikely(nb_dq_mbufs == 0))
554 app_stats.tx.dequeue_pkts += nb_dq_mbufs;
556 for (i = 0; i < nb_dq_mbufs; i++) {
557 /* send dequeued mbufs for reordering */
558 ret = rte_reorder_insert(args->buffer, mbufs[i]);
560 if (ret == -1 && rte_errno == ERANGE) {
561 /* Too early pkts should be transmitted out directly */
562 RTE_LOG_DP(DEBUG, REORDERAPP,
563 "%s():Cannot reorder early packet "
564 "direct enqueuing to TX\n", __func__);
565 outp = mbufs[i]->port;
566 if ((portmask & (1 << outp)) == 0) {
567 rte_pktmbuf_free(mbufs[i]);
570 if (rte_eth_tx_burst(outp, 0, (void *)mbufs[i], 1) != 1) {
571 rte_pktmbuf_free(mbufs[i]);
572 app_stats.tx.early_pkts_tx_failed_woro++;
574 app_stats.tx.early_pkts_txtd_woro++;
575 } else if (ret == -1 && rte_errno == ENOSPC) {
577 * Early pkts just outside of window should be dropped
579 rte_pktmbuf_free(mbufs[i]);
584 * drain MAX_PKTS_BURST of reordered
587 dret = rte_reorder_drain(args->buffer, rombufs, MAX_PKTS_BURST);
588 for (i = 0; i < dret; i++) {
590 struct rte_eth_dev_tx_buffer *outbuf;
593 outp1 = rombufs[i]->port;
594 /* skip ports that are not enabled */
595 if ((portmask & (1 << outp1)) == 0) {
596 rte_pktmbuf_free(rombufs[i]);
600 outbuf = tx_buffer[outp1];
601 sent = rte_eth_tx_buffer(outp1, 0, outbuf, rombufs[i]);
603 app_stats.tx.ro_tx_pkts += sent;
607 free_tx_buffers(tx_buffer);
613 * Dequeue mbufs from the workers_to_tx ring and transmit them
616 tx_thread(struct rte_ring *ring_in)
621 struct rte_mbuf *mbufs[MAX_PKTS_BURST];
622 struct rte_eth_dev_tx_buffer *outbuf;
623 static struct rte_eth_dev_tx_buffer *tx_buffer[RTE_MAX_ETHPORTS];
625 RTE_LOG(INFO, REORDERAPP, "%s() started on lcore %u\n", __func__,
628 configure_tx_buffers(tx_buffer);
630 while (!quit_signal) {
632 /* deque the mbufs from workers_to_tx ring */
633 dqnum = rte_ring_dequeue_burst(ring_in,
634 (void *)mbufs, MAX_PKTS_BURST, NULL);
636 if (unlikely(dqnum == 0))
639 app_stats.tx.dequeue_pkts += dqnum;
641 for (i = 0; i < dqnum; i++) {
642 outp = mbufs[i]->port;
643 /* skip ports that are not enabled */
644 if ((portmask & (1 << outp)) == 0) {
645 rte_pktmbuf_free(mbufs[i]);
649 outbuf = tx_buffer[outp];
650 sent = rte_eth_tx_buffer(outp, 0, outbuf, mbufs[i]);
652 app_stats.tx.ro_tx_pkts += sent;
660 main(int argc, char **argv)
664 unsigned int lcore_id, last_lcore_id, master_lcore_id;
666 uint16_t nb_ports_available;
667 struct worker_thread_args worker_args = {NULL, NULL};
668 struct send_thread_args send_args = {NULL, NULL};
669 struct rte_ring *rx_to_workers;
670 struct rte_ring *workers_to_tx;
672 /* catch ctrl-c so we can print on exit */
673 signal(SIGINT, int_handler);
676 ret = rte_eal_init(argc, argv);
683 /* Parse the application specific arguments */
684 ret = parse_args(argc, argv);
688 /* Check if we have enought cores */
689 if (rte_lcore_count() < 3)
690 rte_exit(EXIT_FAILURE, "Error, This application needs at "
691 "least 3 logical cores to run:\n"
692 "1 lcore for packet RX\n"
693 "1 lcore for packet TX\n"
694 "and at least 1 lcore for worker threads\n");
696 nb_ports = rte_eth_dev_count_avail();
698 rte_exit(EXIT_FAILURE, "Error: no ethernet ports detected\n");
699 if (nb_ports != 1 && (nb_ports & 1))
700 rte_exit(EXIT_FAILURE, "Error: number of ports must be even, except "
701 "when using a single port\n");
703 mbuf_pool = rte_pktmbuf_pool_create("mbuf_pool", MBUF_PER_POOL,
704 MBUF_POOL_CACHE_SIZE, 0, RTE_MBUF_DEFAULT_BUF_SIZE,
706 if (mbuf_pool == NULL)
707 rte_exit(EXIT_FAILURE, "%s\n", rte_strerror(rte_errno));
709 nb_ports_available = nb_ports;
711 /* initialize all ports */
712 RTE_ETH_FOREACH_DEV(port_id) {
713 /* skip ports that are not enabled */
714 if ((portmask & (1 << port_id)) == 0) {
715 printf("\nSkipping disabled port %d\n", port_id);
716 nb_ports_available--;
720 printf("Initializing port %u... done\n", port_id);
722 if (configure_eth_port(port_id) != 0)
723 rte_exit(EXIT_FAILURE, "Cannot initialize port %"PRIu8"\n",
727 if (!nb_ports_available) {
728 rte_exit(EXIT_FAILURE,
729 "All available ports are disabled. Please set portmask.\n");
732 /* Create rings for inter core communication */
733 rx_to_workers = rte_ring_create("rx_to_workers", RING_SIZE, rte_socket_id(),
735 if (rx_to_workers == NULL)
736 rte_exit(EXIT_FAILURE, "%s\n", rte_strerror(rte_errno));
738 workers_to_tx = rte_ring_create("workers_to_tx", RING_SIZE, rte_socket_id(),
740 if (workers_to_tx == NULL)
741 rte_exit(EXIT_FAILURE, "%s\n", rte_strerror(rte_errno));
743 if (!disable_reorder) {
744 send_args.buffer = rte_reorder_create("PKT_RO", rte_socket_id(),
745 REORDER_BUFFER_SIZE);
746 if (send_args.buffer == NULL)
747 rte_exit(EXIT_FAILURE, "%s\n", rte_strerror(rte_errno));
750 last_lcore_id = get_last_lcore_id();
751 master_lcore_id = rte_get_master_lcore();
753 worker_args.ring_in = rx_to_workers;
754 worker_args.ring_out = workers_to_tx;
756 /* Start worker_thread() on all the available slave cores but the last 1 */
757 for (lcore_id = 0; lcore_id <= get_previous_lcore_id(last_lcore_id); lcore_id++)
758 if (rte_lcore_is_enabled(lcore_id) && lcore_id != master_lcore_id)
759 rte_eal_remote_launch(worker_thread, (void *)&worker_args,
762 if (disable_reorder) {
763 /* Start tx_thread() on the last slave core */
764 rte_eal_remote_launch((lcore_function_t *)tx_thread, workers_to_tx,
767 send_args.ring_in = workers_to_tx;
768 /* Start send_thread() on the last slave core */
769 rte_eal_remote_launch((lcore_function_t *)send_thread,
770 (void *)&send_args, last_lcore_id);
773 /* Start rx_thread() on the master core */
774 rx_thread(rx_to_workers);
776 RTE_LCORE_FOREACH_SLAVE(lcore_id) {
777 if (rte_eal_wait_lcore(lcore_id) < 0)