1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2014 Intel Corporation
11 #include <sys/queue.h>
17 #include <rte_common.h>
18 #include <rte_byteorder.h>
20 #include <rte_memory.h>
21 #include <rte_memcpy.h>
23 #include <rte_launch.h>
24 #include <rte_atomic.h>
25 #include <rte_spinlock.h>
26 #include <rte_cycles.h>
27 #include <rte_prefetch.h>
28 #include <rte_lcore.h>
29 #include <rte_per_lcore.h>
30 #include <rte_branch_prediction.h>
31 #include <rte_interrupts.h>
32 #include <rte_random.h>
33 #include <rte_debug.h>
34 #include <rte_ether.h>
35 #include <rte_ethdev.h>
36 #include <rte_mempool.h>
41 #include <rte_string_fns.h>
43 #define APP_LOOKUP_EXACT_MATCH 0
44 #define APP_LOOKUP_LPM 1
45 #define DO_RFC_1812_CHECKS
47 //#define APP_LOOKUP_METHOD APP_LOOKUP_EXACT_MATCH
48 #ifndef APP_LOOKUP_METHOD
49 #define APP_LOOKUP_METHOD APP_LOOKUP_LPM
52 #if (APP_LOOKUP_METHOD == APP_LOOKUP_EXACT_MATCH)
54 #elif (APP_LOOKUP_METHOD == APP_LOOKUP_LPM)
57 #error "APP_LOOKUP_METHOD set to incorrect value"
60 #define RTE_LOGTYPE_L3FWD RTE_LOGTYPE_USER1
62 #define MEMPOOL_CACHE_SIZE 256
65 * This expression is used to calculate the number of mbufs needed depending on user input, taking
66 * into account memory for rx and tx hardware rings, cache per lcore and mtable per port per lcore.
67 * RTE_MAX is used to ensure that NB_MBUF never goes below a minimum value of 8192
70 #define NB_MBUF RTE_MAX ( \
71 (nb_ports*nb_rx_queue*nb_rxd + \
72 nb_ports*nb_lcores*MAX_PKT_BURST + \
73 nb_ports*n_tx_queue*nb_txd + \
74 nb_lcores*MEMPOOL_CACHE_SIZE), \
77 #define MAX_PKT_BURST 32
78 #define BURST_TX_DRAIN_US 100 /* TX drain every ~100us */
84 /* Configure how many packets ahead to prefetch, when reading packets */
85 #define PREFETCH_OFFSET 3
88 * Configurable number of RX/TX ring descriptors
90 #define RTE_TEST_RX_DESC_DEFAULT 1024
91 #define RTE_TEST_TX_DESC_DEFAULT 1024
92 static uint16_t nb_rxd = RTE_TEST_RX_DESC_DEFAULT;
93 static uint16_t nb_txd = RTE_TEST_TX_DESC_DEFAULT;
95 /* ethernet addresses of ports */
96 static struct rte_ether_addr ports_eth_addr[RTE_MAX_ETHPORTS];
98 /* mask of enabled ports */
99 static uint32_t enabled_port_mask = 0;
100 static int numa_on = 1; /**< NUMA is enabled by default. */
104 struct rte_mbuf *m_table[MAX_PKT_BURST];
107 struct lcore_rx_queue {
110 } __rte_cache_aligned;
112 #define MAX_RX_QUEUE_PER_LCORE 16
113 #define MAX_TX_QUEUE_PER_PORT 1
114 #define MAX_RX_QUEUE_PER_PORT 1
116 #define MAX_LCORE_PARAMS 1024
117 struct lcore_params {
121 } __rte_cache_aligned;
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,
143 .max_rx_pkt_len = RTE_ETHER_MAX_LEN,
145 .offloads = DEV_RX_OFFLOAD_CHECKSUM,
150 .rss_hf = ETH_RSS_IP,
154 .mq_mode = ETH_MQ_TX_NONE,
158 static struct rte_mempool * pktmbuf_pool[NB_SOCKETS];
161 #if (APP_LOOKUP_METHOD == APP_LOOKUP_EXACT_MATCH)
164 #include <rte_hash_crc.h>
165 #define DEFAULT_HASH_FUNC rte_hash_crc
167 #include <rte_jhash.h>
168 #define DEFAULT_HASH_FUNC rte_jhash
177 } __attribute__((__packed__));
180 struct ipv4_5tuple key;
184 static struct l3fwd_route l3fwd_route_array[] = {
185 {{RTE_IPV4(100,10,0,1), RTE_IPV4(200,10,0,1), 101, 11, IPPROTO_TCP}, 0},
186 {{RTE_IPV4(100,20,0,2), RTE_IPV4(200,20,0,2), 102, 12, IPPROTO_TCP}, 1},
187 {{RTE_IPV4(100,30,0,3), RTE_IPV4(200,30,0,3), 103, 13, IPPROTO_TCP}, 2},
188 {{RTE_IPV4(100,40,0,4), RTE_IPV4(200,40,0,4), 104, 14, IPPROTO_TCP}, 3},
191 typedef struct rte_hash lookup_struct_t;
192 static lookup_struct_t *l3fwd_lookup_struct[NB_SOCKETS];
194 #define L3FWD_HASH_ENTRIES 1024
195 struct rte_hash_parameters l3fwd_hash_params = {
196 .name = "l3fwd_hash_0",
197 .entries = L3FWD_HASH_ENTRIES,
198 .key_len = sizeof(struct ipv4_5tuple),
199 .hash_func = DEFAULT_HASH_FUNC,
200 .hash_func_init_val = 0,
201 .socket_id = SOCKET0,
204 #define L3FWD_NUM_ROUTES \
205 (sizeof(l3fwd_route_array) / sizeof(l3fwd_route_array[0]))
207 static uint8_t l3fwd_out_if[L3FWD_HASH_ENTRIES] __rte_cache_aligned;
210 #if (APP_LOOKUP_METHOD == APP_LOOKUP_LPM)
217 static struct l3fwd_route l3fwd_route_array[] = {
218 {RTE_IPV4(1,1,1,0), 24, 0},
219 {RTE_IPV4(2,1,1,0), 24, 1},
220 {RTE_IPV4(3,1,1,0), 24, 2},
221 {RTE_IPV4(4,1,1,0), 24, 3},
222 {RTE_IPV4(5,1,1,0), 24, 4},
223 {RTE_IPV4(6,1,1,0), 24, 5},
224 {RTE_IPV4(7,1,1,0), 24, 6},
225 {RTE_IPV4(8,1,1,0), 24, 7},
228 #define L3FWD_NUM_ROUTES \
229 (sizeof(l3fwd_route_array) / sizeof(l3fwd_route_array[0]))
231 #define L3FWD_LPM_MAX_RULES 1024
233 typedef struct rte_lpm lookup_struct_t;
234 static lookup_struct_t *l3fwd_lookup_struct[NB_SOCKETS];
239 struct lcore_rx_queue rx_queue_list[MAX_RX_QUEUE_PER_LCORE];
240 uint16_t tx_queue_id;
241 struct mbuf_table tx_mbufs[RTE_MAX_ETHPORTS];
242 lookup_struct_t * lookup_struct;
243 } __rte_cache_aligned;
245 static struct lcore_conf lcore_conf[RTE_MAX_LCORE];
246 static rte_spinlock_t spinlock_conf[RTE_MAX_ETHPORTS] = {RTE_SPINLOCK_INITIALIZER};
247 /* Send burst of packets on an output interface */
249 send_burst(struct lcore_conf *qconf, uint16_t n, uint16_t port)
251 struct rte_mbuf **m_table;
255 queueid = qconf->tx_queue_id;
256 m_table = (struct rte_mbuf **)qconf->tx_mbufs[port].m_table;
258 rte_spinlock_lock(&spinlock_conf[port]);
259 ret = rte_eth_tx_burst(port, queueid, m_table, n);
260 rte_spinlock_unlock(&spinlock_conf[port]);
262 if (unlikely(ret < n)) {
264 rte_pktmbuf_free(m_table[ret]);
271 /* Enqueue a single packet, and send burst if queue is filled */
273 send_single_packet(struct rte_mbuf *m, uint16_t port)
277 struct lcore_conf *qconf;
279 lcore_id = rte_lcore_id();
281 qconf = &lcore_conf[lcore_id];
282 len = qconf->tx_mbufs[port].len;
283 qconf->tx_mbufs[port].m_table[len] = m;
286 /* enough pkts to be sent */
287 if (unlikely(len == MAX_PKT_BURST)) {
288 send_burst(qconf, MAX_PKT_BURST, port);
292 qconf->tx_mbufs[port].len = len;
296 #ifdef DO_RFC_1812_CHECKS
298 is_valid_ipv4_pkt(struct rte_ipv4_hdr *pkt, uint32_t link_len)
300 /* From http://www.rfc-editor.org/rfc/rfc1812.txt section 5.2.2 */
302 * 1. The packet length reported by the Link Layer must be large
303 * enough to hold the minimum length legal IP datagram (20 bytes).
305 if (link_len < sizeof(struct rte_ipv4_hdr))
308 /* 2. The IP checksum must be correct. */
309 /* this is checked in H/W */
312 * 3. The IP version number must be 4. If the version number is not 4
313 * then the packet may be another version of IP, such as IPng or
316 if (((pkt->version_ihl) >> 4) != 4)
319 * 4. The IP header length field must be large enough to hold the
320 * minimum length legal IP datagram (20 bytes = 5 words).
322 if ((pkt->version_ihl & 0xf) < 5)
326 * 5. The IP total length field must be large enough to hold the IP
327 * datagram header, whose length is specified in the IP header length
330 if (rte_cpu_to_be_16(pkt->total_length) < sizeof(struct rte_ipv4_hdr))
337 #if (APP_LOOKUP_METHOD == APP_LOOKUP_EXACT_MATCH)
339 print_key(struct ipv4_5tuple key)
341 printf("IP dst = %08x, IP src = %08x, port dst = %d, port src = %d, proto = %d\n",
342 (unsigned)key.ip_dst, (unsigned)key.ip_src, key.port_dst, key.port_src, key.proto);
345 static inline uint16_t
346 get_dst_port(struct rte_ipv4_hdr *ipv4_hdr, uint16_t portid,
347 lookup_struct_t *l3fwd_lookup_struct)
349 struct ipv4_5tuple key;
350 struct rte_tcp_hdr *tcp;
351 struct rte_udp_hdr *udp;
354 key.ip_dst = rte_be_to_cpu_32(ipv4_hdr->dst_addr);
355 key.ip_src = rte_be_to_cpu_32(ipv4_hdr->src_addr);
356 key.proto = ipv4_hdr->next_proto_id;
358 switch (ipv4_hdr->next_proto_id) {
360 tcp = (struct rte_tcp_hdr *)((unsigned char *) ipv4_hdr +
361 sizeof(struct rte_ipv4_hdr));
362 key.port_dst = rte_be_to_cpu_16(tcp->dst_port);
363 key.port_src = rte_be_to_cpu_16(tcp->src_port);
367 udp = (struct rte_udp_hdr *)((unsigned char *) ipv4_hdr +
368 sizeof(struct rte_ipv4_hdr));
369 key.port_dst = rte_be_to_cpu_16(udp->dst_port);
370 key.port_src = rte_be_to_cpu_16(udp->src_port);
378 /* Find destination port */
379 ret = rte_hash_lookup(l3fwd_lookup_struct, (const void *)&key);
380 return ((ret < 0) ? portid : l3fwd_out_if[ret]);
384 #if (APP_LOOKUP_METHOD == APP_LOOKUP_LPM)
385 static inline uint32_t
386 get_dst_port(struct rte_ipv4_hdr *ipv4_hdr, uint16_t portid,
387 lookup_struct_t *l3fwd_lookup_struct)
391 return ((rte_lpm_lookup(l3fwd_lookup_struct,
392 rte_be_to_cpu_32(ipv4_hdr->dst_addr), &next_hop) == 0) ?
398 l3fwd_simple_forward(struct rte_mbuf *m, uint16_t portid,
399 lookup_struct_t *l3fwd_lookup_struct)
401 struct rte_ether_hdr *eth_hdr;
402 struct rte_ipv4_hdr *ipv4_hdr;
406 eth_hdr = rte_pktmbuf_mtod(m, struct rte_ether_hdr *);
408 ipv4_hdr = rte_pktmbuf_mtod_offset(m, struct rte_ipv4_hdr *,
409 sizeof(struct rte_ether_hdr));
411 #ifdef DO_RFC_1812_CHECKS
412 /* Check to make sure the packet is valid (RFC1812) */
413 if (is_valid_ipv4_pkt(ipv4_hdr, m->pkt_len) < 0) {
419 dst_port = get_dst_port(ipv4_hdr, portid, l3fwd_lookup_struct);
420 if (dst_port >= RTE_MAX_ETHPORTS || (enabled_port_mask & 1 << dst_port) == 0)
423 /* 02:00:00:00:00:xx */
424 tmp = ð_hdr->d_addr.addr_bytes[0];
425 *((uint64_t *)tmp) = 0x000000000002 + ((uint64_t)dst_port << 40);
427 #ifdef DO_RFC_1812_CHECKS
428 /* Update time to live and header checksum */
429 --(ipv4_hdr->time_to_live);
430 ++(ipv4_hdr->hdr_checksum);
434 rte_ether_addr_copy(&ports_eth_addr[dst_port], ð_hdr->s_addr);
436 send_single_packet(m, dst_port);
440 /* main processing loop */
442 main_loop(__attribute__((unused)) void *dummy)
444 struct rte_mbuf *pkts_burst[MAX_PKT_BURST];
446 uint64_t prev_tsc, diff_tsc, cur_tsc;
450 struct lcore_conf *qconf;
451 const uint64_t drain_tsc = (rte_get_tsc_hz() + US_PER_S - 1) / US_PER_S * BURST_TX_DRAIN_US;
455 lcore_id = rte_lcore_id();
456 qconf = &lcore_conf[lcore_id];
458 if (qconf->n_rx_queue == 0) {
459 RTE_LOG(INFO, L3FWD, "lcore %u has nothing to do\n", lcore_id);
463 RTE_LOG(INFO, L3FWD, "entering main loop on lcore %u\n", lcore_id);
465 for (i = 0; i < qconf->n_rx_queue; i++) {
467 portid = qconf->rx_queue_list[i].port_id;
468 queueid = qconf->rx_queue_list[i].queue_id;
469 RTE_LOG(INFO, L3FWD, " --lcoreid=%u portid=%u rxqueueid=%hhu\n",
470 lcore_id, portid, queueid);
475 cur_tsc = rte_rdtsc();
478 * TX burst queue drain
480 diff_tsc = cur_tsc - prev_tsc;
481 if (unlikely(diff_tsc > drain_tsc)) {
484 * This could be optimized (use queueid instead of
485 * portid), but it is not called so often
487 for (portid = 0; portid < RTE_MAX_ETHPORTS; portid++) {
488 if (qconf->tx_mbufs[portid].len == 0)
490 send_burst(&lcore_conf[lcore_id],
491 qconf->tx_mbufs[portid].len,
493 qconf->tx_mbufs[portid].len = 0;
500 * Read packet from RX queues
502 for (i = 0; i < qconf->n_rx_queue; ++i) {
504 portid = qconf->rx_queue_list[i].port_id;
505 queueid = qconf->rx_queue_list[i].queue_id;
506 nb_rx = rte_eth_rx_burst(portid, queueid, pkts_burst, MAX_PKT_BURST);
508 /* Prefetch first packets */
509 for (j = 0; j < PREFETCH_OFFSET && j < nb_rx; j++) {
510 rte_prefetch0(rte_pktmbuf_mtod(
511 pkts_burst[j], void *));
514 /* Prefetch and forward already prefetched packets */
515 for (j = 0; j < (nb_rx - PREFETCH_OFFSET); j++) {
516 rte_prefetch0(rte_pktmbuf_mtod(pkts_burst[
517 j + PREFETCH_OFFSET], void *));
518 l3fwd_simple_forward(pkts_burst[j], portid, qconf->lookup_struct);
521 /* Forward remaining prefetched packets */
522 for (; j < nb_rx; j++) {
523 l3fwd_simple_forward(pkts_burst[j], portid, qconf->lookup_struct);
530 check_lcore_params(void)
532 uint8_t queue, lcore;
536 for (i = 0; i < nb_lcore_params; ++i) {
537 queue = lcore_params[i].queue_id;
538 if (queue >= MAX_RX_QUEUE_PER_PORT) {
539 printf("invalid queue number: %hhu\n", queue);
542 lcore = lcore_params[i].lcore_id;
543 if (!rte_lcore_is_enabled(lcore)) {
544 printf("error: lcore %hhu is not enabled in lcore mask\n", lcore);
547 if ((socketid = rte_lcore_to_socket_id(lcore) != 0) &&
549 printf("warning: lcore %hhu is on socket %d with numa off \n",
557 check_port_config(void)
562 for (i = 0; i < nb_lcore_params; ++i) {
563 portid = lcore_params[i].port_id;
564 if ((enabled_port_mask & (1 << portid)) == 0) {
565 printf("port %u is not enabled in port mask\n", portid);
568 if (!rte_eth_dev_is_valid_port(portid)) {
569 printf("port %u is not present on the board\n", portid);
577 get_port_n_rx_queues(const uint16_t port)
582 for (i = 0; i < nb_lcore_params; ++i) {
583 if (lcore_params[i].port_id == port && lcore_params[i].queue_id > queue)
584 queue = lcore_params[i].queue_id;
586 return (uint8_t)(++queue);
590 init_lcore_rx_queues(void)
592 uint16_t i, nb_rx_queue;
595 for (i = 0; i < nb_lcore_params; ++i) {
596 lcore = lcore_params[i].lcore_id;
597 nb_rx_queue = lcore_conf[lcore].n_rx_queue;
598 if (nb_rx_queue >= MAX_RX_QUEUE_PER_LCORE) {
599 printf("error: too many queues (%u) for lcore: %u\n",
600 (unsigned)nb_rx_queue + 1, (unsigned)lcore);
603 lcore_conf[lcore].rx_queue_list[nb_rx_queue].port_id =
604 lcore_params[i].port_id;
605 lcore_conf[lcore].rx_queue_list[nb_rx_queue].queue_id =
606 lcore_params[i].queue_id;
607 lcore_conf[lcore].n_rx_queue++;
615 print_usage(const char *prgname)
617 printf ("%s [EAL options] -- -p PORTMASK"
618 " [--config (port,queue,lcore)[,(port,queue,lcore]]\n"
619 " -p PORTMASK: hexadecimal bitmask of ports to configure\n"
620 " --config (port,queue,lcore): rx queues configuration\n"
621 " --no-numa: optional, disable numa awareness\n",
625 /* Custom handling of signals to handle process terminal */
627 signal_handler(int signum)
631 /* When we receive a SIGINT signal */
632 if (signum == SIGINT) {
633 RTE_ETH_FOREACH_DEV(portid) {
634 /* skip ports that are not enabled */
635 if ((enabled_port_mask & (1 << portid)) == 0)
637 rte_eth_dev_close(portid);
640 rte_exit(EXIT_SUCCESS, "\n User forced exit\n");
643 parse_portmask(const char *portmask)
648 /* parse hexadecimal string */
649 pm = strtoul(portmask, &end, 16);
650 if ((portmask[0] == '\0') || (end == NULL) || (*end != '\0'))
660 parse_config(const char *q_arg)
663 const char *p, *p0 = q_arg;
671 unsigned long int_fld[_NUM_FLD];
672 char *str_fld[_NUM_FLD];
678 while ((p = strchr(p0,'(')) != NULL) {
680 if((p0 = strchr(p,')')) == NULL)
684 if(size >= sizeof(s))
687 snprintf(s, sizeof(s), "%.*s", size, p);
688 if (rte_strsplit(s, sizeof(s), str_fld, _NUM_FLD, ',') != _NUM_FLD)
690 for (i = 0; i < _NUM_FLD; i++){
692 int_fld[i] = strtoul(str_fld[i], &end, 0);
693 if (errno != 0 || end == str_fld[i] || int_fld[i] > 255)
696 if (nb_lcore_params >= MAX_LCORE_PARAMS) {
697 printf("exceeded max number of lcore params: %hu\n",
701 lcore_params_array[nb_lcore_params].port_id = int_fld[FLD_PORT];
702 lcore_params_array[nb_lcore_params].queue_id = (uint8_t)int_fld[FLD_QUEUE];
703 lcore_params_array[nb_lcore_params].lcore_id = (uint8_t)int_fld[FLD_LCORE];
706 lcore_params = lcore_params_array;
710 /* Parse the argument given in the command line of the application */
712 parse_args(int argc, char **argv)
717 char *prgname = argv[0];
718 static struct option lgopts[] = {
720 {"no-numa", 0, 0, 0},
726 while ((opt = getopt_long(argc, argvopt, "p:",
727 lgopts, &option_index)) != EOF) {
732 enabled_port_mask = parse_portmask(optarg);
733 if (enabled_port_mask == 0) {
734 printf("invalid portmask\n");
735 print_usage(prgname);
742 if (!strcmp(lgopts[option_index].name, "config")) {
743 ret = parse_config(optarg);
745 printf("invalid config\n");
746 print_usage(prgname);
751 if (!strcmp(lgopts[option_index].name, "no-numa")) {
752 printf("numa is disabled \n");
758 print_usage(prgname);
764 argv[optind-1] = prgname;
767 optind = 1; /* reset getopt lib */
772 print_ethaddr(const char *name, const struct rte_ether_addr *eth_addr)
774 char buf[RTE_ETHER_ADDR_FMT_SIZE];
775 rte_ether_format_addr(buf, RTE_ETHER_ADDR_FMT_SIZE, eth_addr);
776 printf("%s%s", name, buf);
779 #if (APP_LOOKUP_METHOD == APP_LOOKUP_EXACT_MATCH)
781 setup_hash(int socketid)
788 snprintf(s, sizeof(s), "l3fwd_hash_%d", socketid);
789 l3fwd_hash_params.name = s;
790 l3fwd_hash_params.socket_id = socketid;
791 l3fwd_lookup_struct[socketid] = rte_hash_create(&l3fwd_hash_params);
792 if (l3fwd_lookup_struct[socketid] == NULL)
793 rte_exit(EXIT_FAILURE, "Unable to create the l3fwd hash on "
794 "socket %d\n", socketid);
796 /* populate the hash */
797 for (i = 0; i < L3FWD_NUM_ROUTES; i++) {
798 ret = rte_hash_add_key (l3fwd_lookup_struct[socketid],
799 (void *) &l3fwd_route_array[i].key);
801 rte_exit(EXIT_FAILURE, "Unable to add entry %u to the"
802 "l3fwd hash on socket %d\n", i, socketid);
804 l3fwd_out_if[ret] = l3fwd_route_array[i].if_out;
805 printf("Hash: Adding key\n");
806 print_key(l3fwd_route_array[i].key);
811 #if (APP_LOOKUP_METHOD == APP_LOOKUP_LPM)
813 setup_lpm(int socketid)
819 struct rte_lpm_config lpm_ipv4_config;
821 lpm_ipv4_config.max_rules = L3FWD_LPM_MAX_RULES;
822 lpm_ipv4_config.number_tbl8s = 256;
823 lpm_ipv4_config.flags = 0;
825 /* create the LPM table */
826 snprintf(s, sizeof(s), "L3FWD_LPM_%d", socketid);
827 l3fwd_lookup_struct[socketid] =
828 rte_lpm_create(s, socketid, &lpm_ipv4_config);
829 if (l3fwd_lookup_struct[socketid] == NULL)
830 rte_exit(EXIT_FAILURE, "Unable to create the l3fwd LPM table"
831 " on socket %d\n", socketid);
833 /* populate the LPM table */
834 for (i = 0; i < L3FWD_NUM_ROUTES; i++) {
835 ret = rte_lpm_add(l3fwd_lookup_struct[socketid],
836 l3fwd_route_array[i].ip,
837 l3fwd_route_array[i].depth,
838 l3fwd_route_array[i].if_out);
841 rte_exit(EXIT_FAILURE, "Unable to add entry %u to the "
842 "l3fwd LPM table on socket %d\n",
846 printf("LPM: Adding route 0x%08x / %d (%d)\n",
847 (unsigned)l3fwd_route_array[i].ip,
848 l3fwd_route_array[i].depth,
849 l3fwd_route_array[i].if_out);
855 init_mem(unsigned nb_mbuf)
857 struct lcore_conf *qconf;
862 for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
863 if (rte_lcore_is_enabled(lcore_id) == 0)
867 socketid = rte_lcore_to_socket_id(lcore_id);
871 if (socketid >= NB_SOCKETS) {
872 rte_exit(EXIT_FAILURE, "Socket %d of lcore %u is out of range %d\n",
873 socketid, lcore_id, NB_SOCKETS);
875 if (pktmbuf_pool[socketid] == NULL) {
876 snprintf(s, sizeof(s), "mbuf_pool_%d", socketid);
877 pktmbuf_pool[socketid] = rte_pktmbuf_pool_create(s,
878 nb_mbuf, MEMPOOL_CACHE_SIZE, 0,
879 RTE_MBUF_DEFAULT_BUF_SIZE, socketid);
880 if (pktmbuf_pool[socketid] == NULL)
881 rte_exit(EXIT_FAILURE, "Cannot init mbuf pool on socket %d\n", socketid);
883 printf("Allocated mbuf pool on socket %d\n", socketid);
885 #if (APP_LOOKUP_METHOD == APP_LOOKUP_LPM)
888 setup_hash(socketid);
891 qconf = &lcore_conf[lcore_id];
892 qconf->lookup_struct = l3fwd_lookup_struct[socketid];
898 main(int argc, char **argv)
900 struct lcore_conf *qconf;
901 struct rte_eth_dev_info dev_info;
902 struct rte_eth_txconf *txconf;
905 uint16_t queueid, portid;
909 uint8_t nb_rx_queue, queue, socketid;
911 signal(SIGINT, signal_handler);
913 ret = rte_eal_init(argc, argv);
915 rte_exit(EXIT_FAILURE, "Invalid EAL parameters\n");
919 /* parse application arguments (after the EAL ones) */
920 ret = parse_args(argc, argv);
922 rte_exit(EXIT_FAILURE, "Invalid L3FWD-VF parameters\n");
924 if (check_lcore_params() < 0)
925 rte_exit(EXIT_FAILURE, "check_lcore_params failed\n");
927 ret = init_lcore_rx_queues();
929 rte_exit(EXIT_FAILURE, "init_lcore_rx_queues failed\n");
931 nb_ports = rte_eth_dev_count_avail();
933 if (check_port_config() < 0)
934 rte_exit(EXIT_FAILURE, "check_port_config failed\n");
936 nb_lcores = rte_lcore_count();
938 /* initialize all ports */
939 RTE_ETH_FOREACH_DEV(portid) {
940 struct rte_eth_conf local_port_conf = port_conf;
942 /* skip ports that are not enabled */
943 if ((enabled_port_mask & (1 << portid)) == 0) {
944 printf("\nSkipping disabled port %d\n", portid);
949 printf("Initializing port %d ... ", portid );
952 /* must always equal(=1) */
953 nb_rx_queue = get_port_n_rx_queues(portid);
954 n_tx_queue = MAX_TX_QUEUE_PER_PORT;
956 printf("Creating queues: nb_rxq=%d nb_txq=%u... ",
957 nb_rx_queue, (unsigned)1 );
959 rte_eth_dev_info_get(portid, &dev_info);
960 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_MBUF_FAST_FREE)
961 local_port_conf.txmode.offloads |=
962 DEV_TX_OFFLOAD_MBUF_FAST_FREE;
964 local_port_conf.rx_adv_conf.rss_conf.rss_hf &=
965 dev_info.flow_type_rss_offloads;
966 if (local_port_conf.rx_adv_conf.rss_conf.rss_hf !=
967 port_conf.rx_adv_conf.rss_conf.rss_hf) {
968 printf("Port %u modified RSS hash function based on hardware support,"
969 "requested:%#"PRIx64" configured:%#"PRIx64"\n",
971 port_conf.rx_adv_conf.rss_conf.rss_hf,
972 local_port_conf.rx_adv_conf.rss_conf.rss_hf);
975 ret = rte_eth_dev_configure(portid, nb_rx_queue,
976 n_tx_queue, &local_port_conf);
978 rte_exit(EXIT_FAILURE, "Cannot configure device: err=%d, port=%d\n",
981 ret = rte_eth_dev_adjust_nb_rx_tx_desc(portid, &nb_rxd,
984 rte_exit(EXIT_FAILURE,
985 "Cannot adjust number of descriptors: err=%d, port=%d\n",
988 rte_eth_macaddr_get(portid, &ports_eth_addr[portid]);
989 print_ethaddr(" Address:", &ports_eth_addr[portid]);
992 ret = init_mem(NB_MBUF);
994 rte_exit(EXIT_FAILURE, "init_mem failed\n");
996 /* init one TX queue */
997 socketid = (uint8_t)rte_lcore_to_socket_id(rte_get_master_lcore());
999 printf("txq=%d,%d,%d ", portid, 0, socketid);
1002 txconf = &dev_info.default_txconf;
1003 txconf->offloads = local_port_conf.txmode.offloads;
1004 ret = rte_eth_tx_queue_setup(portid, 0, nb_txd,
1007 rte_exit(EXIT_FAILURE, "rte_eth_tx_queue_setup: err=%d, "
1008 "port=%d\n", ret, portid);
1013 for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
1014 struct rte_eth_rxconf rxq_conf;
1016 if (rte_lcore_is_enabled(lcore_id) == 0)
1018 qconf = &lcore_conf[lcore_id];
1019 qconf->tx_queue_id = 0;
1021 printf("\nInitializing rx queues on lcore %u ... ", lcore_id );
1023 /* init RX queues */
1024 for(queue = 0; queue < qconf->n_rx_queue; ++queue) {
1025 struct rte_eth_dev *dev;
1026 struct rte_eth_conf *conf;
1028 portid = qconf->rx_queue_list[queue].port_id;
1029 queueid = qconf->rx_queue_list[queue].queue_id;
1030 dev = &rte_eth_devices[portid];
1031 conf = &dev->data->dev_conf;
1034 socketid = (uint8_t)rte_lcore_to_socket_id(lcore_id);
1038 printf("rxq=%d,%d,%d ", portid, queueid, socketid);
1041 rte_eth_dev_info_get(portid, &dev_info);
1042 rxq_conf = dev_info.default_rxconf;
1043 rxq_conf.offloads = conf->rxmode.offloads;
1044 ret = rte_eth_rx_queue_setup(portid, queueid, nb_rxd,
1045 socketid, &rxq_conf,
1046 pktmbuf_pool[socketid]);
1048 rte_exit(EXIT_FAILURE, "rte_eth_rx_queue_setup: err=%d,"
1049 "port=%d\n", ret, portid);
1055 RTE_ETH_FOREACH_DEV(portid) {
1056 if ((enabled_port_mask & (1 << portid)) == 0) {
1060 ret = rte_eth_dev_start(portid);
1062 rte_exit(EXIT_FAILURE, "rte_eth_dev_start: err=%d, port=%d\n",
1065 printf("done: Port %d\n", portid);
1069 /* launch per-lcore init on every lcore */
1070 rte_eal_mp_remote_launch(main_loop, NULL, CALL_MASTER);
1071 RTE_LCORE_FOREACH_SLAVE(lcore_id) {
1072 if (rte_eal_wait_lcore(lcore_id) < 0)