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