examples: remove unnecessary dev info queries
[dpdk.git] / examples / l2fwd-keepalive / main.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2016 Intel Corporation
3  */
4
5 #include <stdio.h>
6 #include <stdlib.h>
7 #include <string.h>
8 #include <stdint.h>
9 #include <inttypes.h>
10 #include <sys/types.h>
11 #include <sys/queue.h>
12 #include <netinet/in.h>
13 #include <setjmp.h>
14 #include <stdarg.h>
15 #include <ctype.h>
16 #include <errno.h>
17 #include <getopt.h>
18 #include <signal.h>
19
20 #include <rte_common.h>
21 #include <rte_log.h>
22 #include <rte_malloc.h>
23 #include <rte_memory.h>
24 #include <rte_memcpy.h>
25 #include <rte_eal.h>
26 #include <rte_launch.h>
27 #include <rte_atomic.h>
28 #include <rte_cycles.h>
29 #include <rte_prefetch.h>
30 #include <rte_lcore.h>
31 #include <rte_per_lcore.h>
32 #include <rte_branch_prediction.h>
33 #include <rte_interrupts.h>
34 #include <rte_random.h>
35 #include <rte_debug.h>
36 #include <rte_ether.h>
37 #include <rte_ethdev.h>
38 #include <rte_mempool.h>
39 #include <rte_mbuf.h>
40 #include <rte_timer.h>
41 #include <rte_keepalive.h>
42
43 #include "shm.h"
44
45 #define RTE_LOGTYPE_L2FWD RTE_LOGTYPE_USER1
46
47 #define NB_MBUF   8192
48
49 #define MAX_PKT_BURST 32
50 #define BURST_TX_DRAIN_US 100 /* TX drain every ~100us */
51
52 /*
53  * Configurable number of RX/TX ring descriptors
54  */
55 #define RTE_TEST_RX_DESC_DEFAULT 128
56 #define RTE_TEST_TX_DESC_DEFAULT 512
57 static uint16_t nb_rxd = RTE_TEST_RX_DESC_DEFAULT;
58 static uint16_t nb_txd = RTE_TEST_TX_DESC_DEFAULT;
59
60 /* ethernet addresses of ports */
61 static struct ether_addr l2fwd_ports_eth_addr[RTE_MAX_ETHPORTS];
62
63 /* mask of enabled ports */
64 static uint32_t l2fwd_enabled_port_mask;
65
66 /* list of enabled ports */
67 static uint32_t l2fwd_dst_ports[RTE_MAX_ETHPORTS];
68
69 static unsigned int l2fwd_rx_queue_per_lcore = 1;
70
71 #define MAX_RX_QUEUE_PER_LCORE 16
72 #define MAX_TX_QUEUE_PER_PORT 16
73 struct lcore_queue_conf {
74         unsigned n_rx_port;
75         unsigned rx_port_list[MAX_RX_QUEUE_PER_LCORE];
76 } __rte_cache_aligned;
77 struct lcore_queue_conf lcore_queue_conf[RTE_MAX_LCORE];
78
79 struct rte_eth_dev_tx_buffer *tx_buffer[RTE_MAX_ETHPORTS];
80
81 static const struct rte_eth_conf port_conf = {
82         .rxmode = {
83                 .split_hdr_size = 0,
84                 .header_split   = 0, /**< Header Split disabled */
85                 .hw_ip_checksum = 0, /**< IP checksum offload disabled */
86                 .hw_vlan_filter = 0, /**< VLAN filtering disabled */
87                 .jumbo_frame    = 0, /**< Jumbo Frame Support disabled */
88                 .hw_strip_crc   = 1, /**< CRC stripped by hardware */
89         },
90         .txmode = {
91                 .mq_mode = ETH_MQ_TX_NONE,
92         },
93 };
94
95 struct rte_mempool *l2fwd_pktmbuf_pool = NULL;
96
97 /* Per-port statistics struct */
98 struct l2fwd_port_statistics {
99         uint64_t tx;
100         uint64_t rx;
101         uint64_t dropped;
102 } __rte_cache_aligned;
103 struct l2fwd_port_statistics port_statistics[RTE_MAX_ETHPORTS];
104
105 /* A tsc-based timer responsible for triggering statistics printout */
106 #define TIMER_MILLISECOND 1
107 #define MAX_TIMER_PERIOD 86400 /* 1 day max */
108 static int64_t timer_period = 10 * TIMER_MILLISECOND * 1000; /* 10 seconds */
109 static int64_t check_period = 5; /* default check cycle is 5ms */
110
111 /* Keepalive structure */
112 struct rte_keepalive *rte_global_keepalive_info;
113
114 /* Termination signalling */
115 static int terminate_signal_received;
116
117 /* Termination signal handler */
118 static void handle_sigterm(__rte_unused int value)
119 {
120         terminate_signal_received = 1;
121 }
122
123 /* Print out statistics on packets dropped */
124 static void
125 print_stats(__attribute__((unused)) struct rte_timer *ptr_timer,
126         __attribute__((unused)) void *ptr_data)
127 {
128         uint64_t total_packets_dropped, total_packets_tx, total_packets_rx;
129         uint16_t portid;
130
131         total_packets_dropped = 0;
132         total_packets_tx = 0;
133         total_packets_rx = 0;
134
135         const char clr[] = { 27, '[', '2', 'J', '\0' };
136         const char topLeft[] = { 27, '[', '1', ';', '1', 'H', '\0' };
137
138                 /* Clear screen and move to top left */
139         printf("%s%s", clr, topLeft);
140
141         printf("\nPort statistics ====================================");
142
143         for (portid = 0; portid < RTE_MAX_ETHPORTS; portid++) {
144                 /* skip disabled ports */
145                 if ((l2fwd_enabled_port_mask & (1 << portid)) == 0)
146                         continue;
147                 printf("\nStatistics for port %u ------------------------------"
148                            "\nPackets sent: %24"PRIu64
149                            "\nPackets received: %20"PRIu64
150                            "\nPackets dropped: %21"PRIu64,
151                            portid,
152                            port_statistics[portid].tx,
153                            port_statistics[portid].rx,
154                            port_statistics[portid].dropped);
155
156                 total_packets_dropped += port_statistics[portid].dropped;
157                 total_packets_tx += port_statistics[portid].tx;
158                 total_packets_rx += port_statistics[portid].rx;
159         }
160         printf("\nAggregate statistics ==============================="
161                    "\nTotal packets sent: %18"PRIu64
162                    "\nTotal packets received: %14"PRIu64
163                    "\nTotal packets dropped: %15"PRIu64,
164                    total_packets_tx,
165                    total_packets_rx,
166                    total_packets_dropped);
167         printf("\n====================================================\n");
168 }
169
170 static void
171 l2fwd_simple_forward(struct rte_mbuf *m, unsigned portid)
172 {
173         struct ether_hdr *eth;
174         void *tmp;
175         int sent;
176         unsigned dst_port;
177         struct rte_eth_dev_tx_buffer *buffer;
178
179         dst_port = l2fwd_dst_ports[portid];
180         eth = rte_pktmbuf_mtod(m, struct ether_hdr *);
181
182         /* 02:00:00:00:00:xx */
183         tmp = &eth->d_addr.addr_bytes[0];
184         *((uint64_t *)tmp) = 0x000000000002 + ((uint64_t)dst_port << 40);
185
186         /* src addr */
187         ether_addr_copy(&l2fwd_ports_eth_addr[dst_port], &eth->s_addr);
188
189         buffer = tx_buffer[dst_port];
190         sent = rte_eth_tx_buffer(dst_port, 0, buffer, m);
191         if (sent)
192                 port_statistics[dst_port].tx += sent;
193 }
194
195 /* main processing loop */
196 static void
197 l2fwd_main_loop(void)
198 {
199         struct rte_mbuf *pkts_burst[MAX_PKT_BURST];
200         struct rte_mbuf *m;
201         int sent;
202         unsigned lcore_id;
203         uint64_t prev_tsc, diff_tsc, cur_tsc;
204         unsigned i, j, portid, nb_rx;
205         struct lcore_queue_conf *qconf;
206         const uint64_t drain_tsc = (rte_get_tsc_hz() + US_PER_S - 1)
207                 / US_PER_S * BURST_TX_DRAIN_US;
208         struct rte_eth_dev_tx_buffer *buffer;
209
210         prev_tsc = 0;
211
212         lcore_id = rte_lcore_id();
213         qconf = &lcore_queue_conf[lcore_id];
214
215         if (qconf->n_rx_port == 0) {
216                 RTE_LOG(INFO, L2FWD, "lcore %u has nothing to do\n", lcore_id);
217                 return;
218         }
219
220         RTE_LOG(INFO, L2FWD, "entering main loop on lcore %u\n", lcore_id);
221
222         for (i = 0; i < qconf->n_rx_port; i++) {
223
224                 portid = qconf->rx_port_list[i];
225                 RTE_LOG(INFO, L2FWD, " -- lcoreid=%u portid=%u\n", lcore_id,
226                         portid);
227         }
228
229         uint64_t tsc_initial = rte_rdtsc();
230         uint64_t tsc_lifetime = (rand()&0x07) * rte_get_tsc_hz();
231
232         while (!terminate_signal_received) {
233                 /* Keepalive heartbeat */
234                 rte_keepalive_mark_alive(rte_global_keepalive_info);
235
236                 cur_tsc = rte_rdtsc();
237
238                 /*
239                  * Die randomly within 7 secs for demo purposes if
240                  * keepalive enabled
241                  */
242                 if (check_period > 0 && cur_tsc - tsc_initial > tsc_lifetime)
243                         break;
244
245                 /*
246                  * TX burst queue drain
247                  */
248                 diff_tsc = cur_tsc - prev_tsc;
249                 if (unlikely(diff_tsc > drain_tsc)) {
250
251                         for (i = 0; i < qconf->n_rx_port; i++) {
252
253                                 portid = l2fwd_dst_ports[qconf->rx_port_list[i]];
254                                 buffer = tx_buffer[portid];
255
256                                 sent = rte_eth_tx_buffer_flush(portid, 0, buffer);
257                                 if (sent)
258                                         port_statistics[portid].tx += sent;
259
260                         }
261
262                         prev_tsc = cur_tsc;
263                 }
264
265                 /*
266                  * Read packet from RX queues
267                  */
268                 for (i = 0; i < qconf->n_rx_port; i++) {
269
270                         portid = qconf->rx_port_list[i];
271                         nb_rx = rte_eth_rx_burst(portid, 0,
272                                                  pkts_burst, MAX_PKT_BURST);
273
274                         port_statistics[portid].rx += nb_rx;
275
276                         for (j = 0; j < nb_rx; j++) {
277                                 m = pkts_burst[j];
278                                 rte_prefetch0(rte_pktmbuf_mtod(m, void *));
279                                 l2fwd_simple_forward(m, portid);
280                         }
281                 }
282         }
283 }
284
285 static int
286 l2fwd_launch_one_lcore(__attribute__((unused)) void *dummy)
287 {
288         l2fwd_main_loop();
289         return 0;
290 }
291
292 /* display usage */
293 static void
294 l2fwd_usage(const char *prgname)
295 {
296         printf("%s [EAL options] -- -p PORTMASK [-q NQ]\n"
297                "  -p PORTMASK: hexadecimal bitmask of ports to configure\n"
298                "  -q NQ: number of queue (=ports) per lcore (default is 1)\n"
299                "  -K PERIOD: Keepalive check period (5 default; 86400 max)\n"
300                    "  -T PERIOD: statistics will be refreshed each PERIOD seconds (0 to disable, 10 default, 86400 maximum)\n",
301                prgname);
302 }
303
304 static int
305 l2fwd_parse_portmask(const char *portmask)
306 {
307         char *end = NULL;
308         unsigned long pm;
309
310         /* parse hexadecimal string */
311         pm = strtoul(portmask, &end, 16);
312         if ((portmask[0] == '\0') || (end == NULL) || (*end != '\0'))
313                 return -1;
314
315         if (pm == 0)
316                 return -1;
317
318         return pm;
319 }
320
321 static unsigned int
322 l2fwd_parse_nqueue(const char *q_arg)
323 {
324         char *end = NULL;
325         unsigned long n;
326
327         /* parse hexadecimal string */
328         n = strtoul(q_arg, &end, 10);
329         if ((q_arg[0] == '\0') || (end == NULL) || (*end != '\0'))
330                 return 0;
331         if (n == 0)
332                 return 0;
333         if (n >= MAX_RX_QUEUE_PER_LCORE)
334                 return 0;
335
336         return n;
337 }
338
339 static int
340 l2fwd_parse_timer_period(const char *q_arg)
341 {
342         char *end = NULL;
343         int n;
344
345         /* parse number string */
346         n = strtol(q_arg, &end, 10);
347         if ((q_arg[0] == '\0') || (end == NULL) || (*end != '\0'))
348                 return -1;
349         if (n >= MAX_TIMER_PERIOD)
350                 return -1;
351
352         return n;
353 }
354
355 static int
356 l2fwd_parse_check_period(const char *q_arg)
357 {
358         char *end = NULL;
359         int n;
360
361         /* parse number string */
362         n = strtol(q_arg, &end, 10);
363         if ((q_arg[0] == '\0') || (end == NULL) || (*end != '\0'))
364                 return -1;
365         if (n >= MAX_TIMER_PERIOD)
366                 return -1;
367
368         return n;
369 }
370
371 /* Parse the argument given in the command line of the application */
372 static int
373 l2fwd_parse_args(int argc, char **argv)
374 {
375         int opt, ret;
376         char **argvopt;
377         int option_index;
378         char *prgname = argv[0];
379         static struct option lgopts[] = {
380                 {NULL, 0, 0, 0}
381         };
382
383         argvopt = argv;
384
385         while ((opt = getopt_long(argc, argvopt, "p:q:T:K:",
386                                   lgopts, &option_index)) != EOF) {
387
388                 switch (opt) {
389                 /* portmask */
390                 case 'p':
391                         l2fwd_enabled_port_mask = l2fwd_parse_portmask(optarg);
392                         if (l2fwd_enabled_port_mask == 0) {
393                                 printf("invalid portmask\n");
394                                 l2fwd_usage(prgname);
395                                 return -1;
396                         }
397                         break;
398
399                 /* nqueue */
400                 case 'q':
401                         l2fwd_rx_queue_per_lcore = l2fwd_parse_nqueue(optarg);
402                         if (l2fwd_rx_queue_per_lcore == 0) {
403                                 printf("invalid queue number\n");
404                                 l2fwd_usage(prgname);
405                                 return -1;
406                         }
407                         break;
408
409                 /* timer period */
410                 case 'T':
411                         timer_period = l2fwd_parse_timer_period(optarg)
412                                 * (int64_t)(1000 * TIMER_MILLISECOND);
413                         if (timer_period < 0) {
414                                 printf("invalid timer period\n");
415                                 l2fwd_usage(prgname);
416                                 return -1;
417                         }
418                         break;
419
420                 /* Check period */
421                 case 'K':
422                         check_period = l2fwd_parse_check_period(optarg);
423                         if (check_period < 0) {
424                                 printf("invalid check period\n");
425                                 l2fwd_usage(prgname);
426                                 return -1;
427                         }
428                         break;
429
430                 /* long options */
431                 case 0:
432                         l2fwd_usage(prgname);
433                         return -1;
434
435                 default:
436                         l2fwd_usage(prgname);
437                         return -1;
438                 }
439         }
440
441         if (optind >= 0)
442                 argv[optind-1] = prgname;
443
444         ret = optind-1;
445         optind = 1; /* reset getopt lib */
446         return ret;
447 }
448
449 /* Check the link status of all ports in up to 9s, and print them finally */
450 static void
451 check_all_ports_link_status(uint16_t port_num, uint32_t port_mask)
452 {
453 #define CHECK_INTERVAL 100 /* 100ms */
454 #define MAX_CHECK_TIME 90 /* 9s (90 * 100ms) in total */
455         uint16_t portid;
456         uint8_t count, all_ports_up, print_flag = 0;
457         struct rte_eth_link link;
458
459         printf("\nChecking link status");
460         fflush(stdout);
461         for (count = 0; count <= MAX_CHECK_TIME; count++) {
462                 all_ports_up = 1;
463                 for (portid = 0; portid < port_num; portid++) {
464                         if ((port_mask & (1 << portid)) == 0)
465                                 continue;
466                         memset(&link, 0, sizeof(link));
467                         rte_eth_link_get_nowait(portid, &link);
468                         /* print link status if flag set */
469                         if (print_flag == 1) {
470                                 if (link.link_status)
471                                         printf(
472                                         "Port%d Link Up. Speed %u Mbps - %s\n",
473                                                 portid, link.link_speed,
474                                 (link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
475                                         ("full-duplex") : ("half-duplex\n"));
476                                 else
477                                         printf("Port %d Link Down\n", portid);
478                                 continue;
479                         }
480                         /* clear all_ports_up flag if any link down */
481                         if (link.link_status == ETH_LINK_DOWN) {
482                                 all_ports_up = 0;
483                                 break;
484                         }
485                 }
486                 /* after finally printing all link status, get out */
487                 if (print_flag == 1)
488                         break;
489
490                 if (all_ports_up == 0) {
491                         printf(".");
492                         fflush(stdout);
493                         rte_delay_ms(CHECK_INTERVAL);
494                 }
495
496                 /* set the print_flag if all ports up or timeout */
497                 if (all_ports_up == 1 || count == (MAX_CHECK_TIME - 1)) {
498                         print_flag = 1;
499                         printf("done\n");
500                 }
501         }
502 }
503
504 static void
505 dead_core(__rte_unused void *ptr_data, const int id_core)
506 {
507         if (terminate_signal_received)
508                 return;
509         printf("Dead core %i - restarting..\n", id_core);
510         if (rte_eal_get_lcore_state(id_core) == FINISHED) {
511                 rte_eal_wait_lcore(id_core);
512                 rte_eal_remote_launch(l2fwd_launch_one_lcore, NULL, id_core);
513         } else {
514                 printf("..false positive!\n");
515         }
516 }
517
518 static void
519 relay_core_state(void *ptr_data, const int id_core,
520         const enum rte_keepalive_state core_state, uint64_t last_alive)
521 {
522         rte_keepalive_relayed_state((struct rte_keepalive_shm *)ptr_data,
523                 id_core, core_state, last_alive);
524 }
525
526 int
527 main(int argc, char **argv)
528 {
529         struct lcore_queue_conf *qconf;
530         int ret;
531         uint16_t nb_ports;
532         uint16_t nb_ports_available;
533         uint16_t portid, last_port;
534         unsigned lcore_id, rx_lcore_id;
535         unsigned nb_ports_in_mask = 0;
536         struct sigaction signal_handler;
537         struct rte_keepalive_shm *ka_shm;
538
539         memset(&signal_handler, 0, sizeof(signal_handler));
540         terminate_signal_received = 0;
541         signal_handler.sa_handler = &handle_sigterm;
542         if (sigaction(SIGINT, &signal_handler, NULL) == -1 ||
543                         sigaction(SIGTERM, &signal_handler, NULL) == -1)
544                 rte_exit(EXIT_FAILURE, "SIGNAL\n");
545
546
547         /* init EAL */
548         ret = rte_eal_init(argc, argv);
549         if (ret < 0)
550                 rte_exit(EXIT_FAILURE, "Invalid EAL arguments\n");
551         argc -= ret;
552         argv += ret;
553
554         l2fwd_enabled_port_mask = 0;
555
556         /* parse application arguments (after the EAL ones) */
557         ret = l2fwd_parse_args(argc, argv);
558         if (ret < 0)
559                 rte_exit(EXIT_FAILURE, "Invalid L2FWD arguments\n");
560
561         /* create the mbuf pool */
562         l2fwd_pktmbuf_pool = rte_pktmbuf_pool_create("mbuf_pool", NB_MBUF, 32,
563                 0, RTE_MBUF_DEFAULT_BUF_SIZE, rte_socket_id());
564         if (l2fwd_pktmbuf_pool == NULL)
565                 rte_exit(EXIT_FAILURE, "Cannot init mbuf pool\n");
566
567         nb_ports = rte_eth_dev_count();
568         if (nb_ports == 0)
569                 rte_exit(EXIT_FAILURE, "No Ethernet ports - bye\n");
570
571         /* reset l2fwd_dst_ports */
572         for (portid = 0; portid < RTE_MAX_ETHPORTS; portid++)
573                 l2fwd_dst_ports[portid] = 0;
574         last_port = 0;
575
576         /*
577          * Each logical core is assigned a dedicated TX queue on each port.
578          */
579         for (portid = 0; portid < nb_ports; portid++) {
580                 /* skip ports that are not enabled */
581                 if ((l2fwd_enabled_port_mask & (1 << portid)) == 0)
582                         continue;
583
584                 if (nb_ports_in_mask % 2) {
585                         l2fwd_dst_ports[portid] = last_port;
586                         l2fwd_dst_ports[last_port] = portid;
587                 } else
588                         last_port = portid;
589
590                 nb_ports_in_mask++;
591         }
592         if (nb_ports_in_mask % 2) {
593                 printf("Notice: odd number of ports in portmask.\n");
594                 l2fwd_dst_ports[last_port] = last_port;
595         }
596
597         rx_lcore_id = 1;
598         qconf = NULL;
599
600         /* Initialize the port/queue configuration of each logical core */
601         for (portid = 0; portid < nb_ports; portid++) {
602                 /* skip ports that are not enabled */
603                 if ((l2fwd_enabled_port_mask & (1 << portid)) == 0)
604                         continue;
605
606                 /* get the lcore_id for this port */
607                 while (rte_lcore_is_enabled(rx_lcore_id) == 0 ||
608                        lcore_queue_conf[rx_lcore_id].n_rx_port ==
609                        l2fwd_rx_queue_per_lcore) {
610                         rx_lcore_id++;
611                         if (rx_lcore_id >= RTE_MAX_LCORE)
612                                 rte_exit(EXIT_FAILURE, "Not enough cores\n");
613                 }
614
615                 if (qconf != &lcore_queue_conf[rx_lcore_id])
616                         /* Assigned a new logical core in the loop above. */
617                         qconf = &lcore_queue_conf[rx_lcore_id];
618
619                 qconf->rx_port_list[qconf->n_rx_port] = portid;
620                 qconf->n_rx_port++;
621                 printf("Lcore %u: RX port %u\n",
622                         rx_lcore_id, portid);
623         }
624
625         nb_ports_available = nb_ports;
626
627         /* Initialise each port */
628         for (portid = 0; portid < nb_ports; portid++) {
629                 /* skip ports that are not enabled */
630                 if ((l2fwd_enabled_port_mask & (1 << portid)) == 0) {
631                         printf("Skipping disabled port %u\n", portid);
632                         nb_ports_available--;
633                         continue;
634                 }
635                 /* init port */
636                 printf("Initializing port %u... ", portid);
637                 fflush(stdout);
638                 ret = rte_eth_dev_configure(portid, 1, 1, &port_conf);
639                 if (ret < 0)
640                         rte_exit(EXIT_FAILURE,
641                                 "Cannot configure device: err=%d, port=%u\n",
642                                 ret, portid);
643
644                 ret = rte_eth_dev_adjust_nb_rx_tx_desc(portid, &nb_rxd,
645                                                        &nb_txd);
646                 if (ret < 0)
647                         rte_exit(EXIT_FAILURE,
648                                 "Cannot adjust number of descriptors: err=%d, port=%u\n",
649                                 ret, portid);
650
651                 rte_eth_macaddr_get(portid, &l2fwd_ports_eth_addr[portid]);
652
653                 /* init one RX queue */
654                 fflush(stdout);
655                 ret = rte_eth_rx_queue_setup(portid, 0, nb_rxd,
656                                              rte_eth_dev_socket_id(portid),
657                                              NULL,
658                                              l2fwd_pktmbuf_pool);
659                 if (ret < 0)
660                         rte_exit(EXIT_FAILURE,
661                                 "rte_eth_rx_queue_setup:err=%d, port=%u\n",
662                                 ret, portid);
663
664                 /* init one TX queue on each port */
665                 fflush(stdout);
666                 ret = rte_eth_tx_queue_setup(portid, 0, nb_txd,
667                                 rte_eth_dev_socket_id(portid),
668                                 NULL);
669                 if (ret < 0)
670                         rte_exit(EXIT_FAILURE,
671                                 "rte_eth_tx_queue_setup:err=%d, port=%u\n",
672                                 ret, portid);
673
674                 /* Initialize TX buffers */
675                 tx_buffer[portid] = rte_zmalloc_socket("tx_buffer",
676                                 RTE_ETH_TX_BUFFER_SIZE(MAX_PKT_BURST), 0,
677                                 rte_eth_dev_socket_id(portid));
678                 if (tx_buffer[portid] == NULL)
679                         rte_exit(EXIT_FAILURE, "Cannot allocate buffer for tx on port %u\n",
680                                                 portid);
681
682                 rte_eth_tx_buffer_init(tx_buffer[portid], MAX_PKT_BURST);
683
684                 ret = rte_eth_tx_buffer_set_err_callback(tx_buffer[portid],
685                                 rte_eth_tx_buffer_count_callback,
686                                 &port_statistics[portid].dropped);
687                 if (ret < 0)
688                         rte_exit(EXIT_FAILURE,
689                         "Cannot set error callback for tx buffer on port %u\n",
690                                  portid);
691
692                 /* Start device */
693                 ret = rte_eth_dev_start(portid);
694                 if (ret < 0)
695                         rte_exit(EXIT_FAILURE,
696                                 "rte_eth_dev_start:err=%d, port=%u\n",
697                                   ret, portid);
698
699                 rte_eth_promiscuous_enable(portid);
700
701                 printf("Port %u, MAC address: "
702                         "%02X:%02X:%02X:%02X:%02X:%02X\n\n",
703                         portid,
704                         l2fwd_ports_eth_addr[portid].addr_bytes[0],
705                         l2fwd_ports_eth_addr[portid].addr_bytes[1],
706                         l2fwd_ports_eth_addr[portid].addr_bytes[2],
707                         l2fwd_ports_eth_addr[portid].addr_bytes[3],
708                         l2fwd_ports_eth_addr[portid].addr_bytes[4],
709                         l2fwd_ports_eth_addr[portid].addr_bytes[5]);
710
711                 /* initialize port stats */
712                 memset(&port_statistics, 0, sizeof(port_statistics));
713         }
714
715         if (!nb_ports_available) {
716                 rte_exit(EXIT_FAILURE,
717                         "All available ports are disabled. Please set portmask.\n");
718         }
719
720         check_all_ports_link_status(nb_ports, l2fwd_enabled_port_mask);
721
722         struct rte_timer hb_timer, stats_timer;
723
724         rte_timer_subsystem_init();
725         rte_timer_init(&stats_timer);
726
727         ka_shm = NULL;
728         if (check_period > 0) {
729                 ka_shm = rte_keepalive_shm_create();
730                 if (ka_shm == NULL)
731                         rte_exit(EXIT_FAILURE,
732                                 "rte_keepalive_shm_create() failed");
733                 rte_global_keepalive_info =
734                         rte_keepalive_create(&dead_core, ka_shm);
735                 if (rte_global_keepalive_info == NULL)
736                         rte_exit(EXIT_FAILURE, "init_keep_alive() failed");
737                 rte_keepalive_register_relay_callback(rte_global_keepalive_info,
738                         relay_core_state, ka_shm);
739                 rte_timer_init(&hb_timer);
740                 if (rte_timer_reset(&hb_timer,
741                                 (check_period * rte_get_timer_hz()) / 1000,
742                                 PERIODICAL,
743                                 rte_lcore_id(),
744                                 (void(*)(struct rte_timer*, void*))
745                                 &rte_keepalive_dispatch_pings,
746                                 rte_global_keepalive_info
747                                 ) != 0 )
748                         rte_exit(EXIT_FAILURE, "Keepalive setup failure.\n");
749         }
750         if (timer_period > 0) {
751                 if (rte_timer_reset(&stats_timer,
752                                 (timer_period * rte_get_timer_hz()) / 1000,
753                                 PERIODICAL,
754                                 rte_lcore_id(),
755                                 &print_stats, NULL
756                                 ) != 0 )
757                         rte_exit(EXIT_FAILURE, "Stats setup failure.\n");
758         }
759         /* launch per-lcore init on every slave lcore */
760         RTE_LCORE_FOREACH_SLAVE(lcore_id) {
761                 struct lcore_queue_conf *qconf = &lcore_queue_conf[lcore_id];
762
763                 if (qconf->n_rx_port == 0)
764                         RTE_LOG(INFO, L2FWD,
765                                 "lcore %u has nothing to do\n",
766                                 lcore_id
767                                 );
768                 else {
769                         rte_eal_remote_launch(
770                                 l2fwd_launch_one_lcore,
771                                 NULL,
772                                 lcore_id
773                                 );
774                         rte_keepalive_register_core(rte_global_keepalive_info,
775                                 lcore_id);
776                 }
777         }
778         while (!terminate_signal_received) {
779                 rte_timer_manage();
780                 rte_delay_ms(5);
781                 }
782
783         RTE_LCORE_FOREACH_SLAVE(lcore_id) {
784                 if (rte_eal_wait_lcore(lcore_id) < 0)
785                         return -1;
786         }
787
788         if (ka_shm != NULL)
789                 rte_keepalive_shm_cleanup(ka_shm);
790         return 0;
791 }