4 * Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
17 * * Neither the name of Intel Corporation nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38 #include <sys/types.h>
40 #include <sys/queue.h>
46 #include <rte_common.h>
47 #include <rte_byteorder.h>
49 #include <rte_memory.h>
50 #include <rte_memcpy.h>
51 #include <rte_memzone.h>
52 #include <rte_tailq.h>
54 #include <rte_per_lcore.h>
55 #include <rte_launch.h>
56 #include <rte_atomic.h>
57 #include <rte_spinlock.h>
58 #include <rte_cycles.h>
59 #include <rte_prefetch.h>
60 #include <rte_lcore.h>
61 #include <rte_per_lcore.h>
62 #include <rte_branch_prediction.h>
63 #include <rte_interrupts.h>
65 #include <rte_random.h>
66 #include <rte_debug.h>
67 #include <rte_ether.h>
68 #include <rte_ethdev.h>
70 #include <rte_mempool.h>
75 #include <rte_string_fns.h>
77 #define APP_LOOKUP_EXACT_MATCH 0
78 #define APP_LOOKUP_LPM 1
79 #define DO_RFC_1812_CHECKS
81 //#define APP_LOOKUP_METHOD APP_LOOKUP_EXACT_MATCH
82 #ifndef APP_LOOKUP_METHOD
83 #define APP_LOOKUP_METHOD APP_LOOKUP_LPM
86 #if (APP_LOOKUP_METHOD == APP_LOOKUP_EXACT_MATCH)
88 #elif (APP_LOOKUP_METHOD == APP_LOOKUP_LPM)
91 #error "APP_LOOKUP_METHOD set to incorrect value"
94 #define RTE_LOGTYPE_L3FWD RTE_LOGTYPE_USER1
96 #define MEMPOOL_CACHE_SIZE 256
98 #define MBUF_SIZE (2048 + sizeof(struct rte_mbuf) + RTE_PKTMBUF_HEADROOM)
101 * This expression is used to calculate the number of mbufs needed depending on user input, taking
102 * into account memory for rx and tx hardware rings, cache per lcore and mtable per port per lcore.
103 * RTE_MAX is used to ensure that NB_MBUF never goes below a minimum value of 8192
106 #define NB_MBUF RTE_MAX ( \
107 (nb_ports*nb_rx_queue*RTE_TEST_RX_DESC_DEFAULT + \
108 nb_ports*nb_lcores*MAX_PKT_BURST + \
109 nb_ports*n_tx_queue*RTE_TEST_TX_DESC_DEFAULT + \
110 nb_lcores*MEMPOOL_CACHE_SIZE), \
114 * RX and TX Prefetch, Host, and Write-back threshold values should be
115 * carefully set for optimal performance. Consult the network
116 * controller's datasheet and supporting DPDK documentation for guidance
117 * on how these parameters should be set.
119 #define RX_PTHRESH 8 /**< Default values of RX prefetch threshold reg. */
120 #define RX_HTHRESH 8 /**< Default values of RX host threshold reg. */
121 #define RX_WTHRESH 4 /**< Default values of RX write-back threshold reg. */
124 * These default values are optimized for use with the Intel(R) 82599 10 GbE
125 * Controller and the DPDK ixgbe PMD. Consider using other values for other
126 * network controllers and/or network drivers.
128 #define TX_PTHRESH 36 /**< Default values of TX prefetch threshold reg. */
129 #define TX_HTHRESH 0 /**< Default values of TX host threshold reg. */
130 #define TX_WTHRESH 0 /**< Default values of TX write-back threshold reg. */
132 #define MAX_PKT_BURST 32
133 #define BURST_TX_DRAIN_US 100 /* TX drain every ~100us */
139 /* Configure how many packets ahead to prefetch, when reading packets */
140 #define PREFETCH_OFFSET 3
143 * Configurable number of RX/TX ring descriptors
145 #define RTE_TEST_RX_DESC_DEFAULT 128
146 #define RTE_TEST_TX_DESC_DEFAULT 512
147 static uint16_t nb_rxd = RTE_TEST_RX_DESC_DEFAULT;
148 static uint16_t nb_txd = RTE_TEST_TX_DESC_DEFAULT;
150 /* ethernet addresses of ports */
151 static struct ether_addr ports_eth_addr[RTE_MAX_ETHPORTS];
153 /* mask of enabled ports */
154 static uint32_t enabled_port_mask = 0;
155 static int numa_on = 1; /**< NUMA is enabled by default. */
159 struct rte_mbuf *m_table[MAX_PKT_BURST];
162 struct lcore_rx_queue {
165 } __rte_cache_aligned;
167 #define MAX_RX_QUEUE_PER_LCORE 16
168 #define MAX_TX_QUEUE_PER_PORT 1
169 #define MAX_RX_QUEUE_PER_PORT 1
171 #define MAX_LCORE_PARAMS 1024
172 struct lcore_params {
176 } __rte_cache_aligned;
178 static struct lcore_params lcore_params_array[MAX_LCORE_PARAMS];
179 static struct lcore_params lcore_params_array_default[] = {
191 static struct lcore_params * lcore_params = lcore_params_array_default;
192 static uint16_t nb_lcore_params = sizeof(lcore_params_array_default) /
193 sizeof(lcore_params_array_default[0]);
195 static struct rte_eth_conf port_conf = {
197 .mq_mode = ETH_MQ_RX_RSS,
198 .max_rx_pkt_len = ETHER_MAX_LEN,
200 .header_split = 0, /**< Header Split disabled */
201 .hw_ip_checksum = 1, /**< IP checksum offload enabled */
202 .hw_vlan_filter = 0, /**< VLAN filtering disabled */
203 .jumbo_frame = 0, /**< Jumbo Frame Support disabled */
204 .hw_strip_crc = 0, /**< CRC stripped by hardware */
209 .rss_hf = ETH_RSS_IP,
213 .mq_mode = ETH_MQ_TX_NONE,
217 static struct rte_mempool * pktmbuf_pool[NB_SOCKETS];
220 #if (APP_LOOKUP_METHOD == APP_LOOKUP_EXACT_MATCH)
222 #ifdef RTE_MACHINE_CPUFLAG_SSE4_2
223 #include <rte_hash_crc.h>
224 #define DEFAULT_HASH_FUNC rte_hash_crc
226 #include <rte_jhash.h>
227 #define DEFAULT_HASH_FUNC rte_jhash
236 } __attribute__((__packed__));
239 struct ipv4_5tuple key;
243 static struct l3fwd_route l3fwd_route_array[] = {
244 {{IPv4(100,10,0,1), IPv4(200,10,0,1), 101, 11, IPPROTO_TCP}, 0},
245 {{IPv4(100,20,0,2), IPv4(200,20,0,2), 102, 12, IPPROTO_TCP}, 1},
246 {{IPv4(100,30,0,3), IPv4(200,30,0,3), 103, 13, IPPROTO_TCP}, 2},
247 {{IPv4(100,40,0,4), IPv4(200,40,0,4), 104, 14, IPPROTO_TCP}, 3},
250 typedef struct rte_hash lookup_struct_t;
251 static lookup_struct_t *l3fwd_lookup_struct[NB_SOCKETS];
253 #define L3FWD_HASH_ENTRIES 1024
254 struct rte_hash_parameters l3fwd_hash_params = {
255 .name = "l3fwd_hash_0",
256 .entries = L3FWD_HASH_ENTRIES,
258 .key_len = sizeof(struct ipv4_5tuple),
259 .hash_func = DEFAULT_HASH_FUNC,
260 .hash_func_init_val = 0,
261 .socket_id = SOCKET0,
264 #define L3FWD_NUM_ROUTES \
265 (sizeof(l3fwd_route_array) / sizeof(l3fwd_route_array[0]))
267 static uint8_t l3fwd_out_if[L3FWD_HASH_ENTRIES] __rte_cache_aligned;
270 #if (APP_LOOKUP_METHOD == APP_LOOKUP_LPM)
277 static struct l3fwd_route l3fwd_route_array[] = {
278 {IPv4(1,1,1,0), 24, 0},
279 {IPv4(2,1,1,0), 24, 1},
280 {IPv4(3,1,1,0), 24, 2},
281 {IPv4(4,1,1,0), 24, 3},
282 {IPv4(5,1,1,0), 24, 4},
283 {IPv4(6,1,1,0), 24, 5},
284 {IPv4(7,1,1,0), 24, 6},
285 {IPv4(8,1,1,0), 24, 7},
288 #define L3FWD_NUM_ROUTES \
289 (sizeof(l3fwd_route_array) / sizeof(l3fwd_route_array[0]))
291 #define L3FWD_LPM_MAX_RULES 1024
293 typedef struct rte_lpm lookup_struct_t;
294 static lookup_struct_t *l3fwd_lookup_struct[NB_SOCKETS];
299 struct lcore_rx_queue rx_queue_list[MAX_RX_QUEUE_PER_LCORE];
300 uint16_t tx_queue_id;
301 struct mbuf_table tx_mbufs[RTE_MAX_ETHPORTS];
302 lookup_struct_t * lookup_struct;
303 } __rte_cache_aligned;
305 static struct lcore_conf lcore_conf[RTE_MAX_LCORE];
306 static rte_spinlock_t spinlock_conf[RTE_MAX_ETHPORTS] = {RTE_SPINLOCK_INITIALIZER};
307 /* Send burst of packets on an output interface */
309 send_burst(struct lcore_conf *qconf, uint16_t n, uint8_t port)
311 struct rte_mbuf **m_table;
315 queueid = qconf->tx_queue_id;
316 m_table = (struct rte_mbuf **)qconf->tx_mbufs[port].m_table;
318 rte_spinlock_lock(&spinlock_conf[port]);
319 ret = rte_eth_tx_burst(port, queueid, m_table, n);
320 rte_spinlock_unlock(&spinlock_conf[port]);
322 if (unlikely(ret < n)) {
324 rte_pktmbuf_free(m_table[ret]);
331 /* Enqueue a single packet, and send burst if queue is filled */
333 send_single_packet(struct rte_mbuf *m, uint8_t port)
337 struct lcore_conf *qconf;
339 lcore_id = rte_lcore_id();
341 qconf = &lcore_conf[lcore_id];
342 len = qconf->tx_mbufs[port].len;
343 qconf->tx_mbufs[port].m_table[len] = m;
346 /* enough pkts to be sent */
347 if (unlikely(len == MAX_PKT_BURST)) {
348 send_burst(qconf, MAX_PKT_BURST, port);
352 qconf->tx_mbufs[port].len = len;
356 #ifdef DO_RFC_1812_CHECKS
358 is_valid_ipv4_pkt(struct ipv4_hdr *pkt, uint32_t link_len)
360 /* From http://www.rfc-editor.org/rfc/rfc1812.txt section 5.2.2 */
362 * 1. The packet length reported by the Link Layer must be large
363 * enough to hold the minimum length legal IP datagram (20 bytes).
365 if (link_len < sizeof(struct ipv4_hdr))
368 /* 2. The IP checksum must be correct. */
369 /* this is checked in H/W */
372 * 3. The IP version number must be 4. If the version number is not 4
373 * then the packet may be another version of IP, such as IPng or
376 if (((pkt->version_ihl) >> 4) != 4)
379 * 4. The IP header length field must be large enough to hold the
380 * minimum length legal IP datagram (20 bytes = 5 words).
382 if ((pkt->version_ihl & 0xf) < 5)
386 * 5. The IP total length field must be large enough to hold the IP
387 * datagram header, whose length is specified in the IP header length
390 if (rte_cpu_to_be_16(pkt->total_length) < sizeof(struct ipv4_hdr))
397 #if (APP_LOOKUP_METHOD == APP_LOOKUP_EXACT_MATCH)
399 print_key(struct ipv4_5tuple key)
401 printf("IP dst = %08x, IP src = %08x, port dst = %d, port src = %d, proto = %d\n",
402 (unsigned)key.ip_dst, (unsigned)key.ip_src, key.port_dst, key.port_src, key.proto);
405 static inline uint8_t
406 get_dst_port(struct ipv4_hdr *ipv4_hdr, uint8_t portid, lookup_struct_t * l3fwd_lookup_struct)
408 struct ipv4_5tuple key;
413 key.ip_dst = rte_be_to_cpu_32(ipv4_hdr->dst_addr);
414 key.ip_src = rte_be_to_cpu_32(ipv4_hdr->src_addr);
415 key.proto = ipv4_hdr->next_proto_id;
417 switch (ipv4_hdr->next_proto_id) {
419 tcp = (struct tcp_hdr *)((unsigned char *) ipv4_hdr +
420 sizeof(struct ipv4_hdr));
421 key.port_dst = rte_be_to_cpu_16(tcp->dst_port);
422 key.port_src = rte_be_to_cpu_16(tcp->src_port);
426 udp = (struct udp_hdr *)((unsigned char *) ipv4_hdr +
427 sizeof(struct ipv4_hdr));
428 key.port_dst = rte_be_to_cpu_16(udp->dst_port);
429 key.port_src = rte_be_to_cpu_16(udp->src_port);
437 /* Find destination port */
438 ret = rte_hash_lookup(l3fwd_lookup_struct, (const void *)&key);
439 return (uint8_t)((ret < 0)? portid : l3fwd_out_if[ret]);
443 #if (APP_LOOKUP_METHOD == APP_LOOKUP_LPM)
444 static inline uint8_t
445 get_dst_port(struct ipv4_hdr *ipv4_hdr, uint8_t portid, lookup_struct_t * l3fwd_lookup_struct)
449 return (uint8_t) ((rte_lpm_lookup(l3fwd_lookup_struct,
450 rte_be_to_cpu_32(ipv4_hdr->dst_addr), &next_hop) == 0)?
456 l3fwd_simple_forward(struct rte_mbuf *m, uint8_t portid, lookup_struct_t * l3fwd_lookup_struct)
458 struct ether_hdr *eth_hdr;
459 struct ipv4_hdr *ipv4_hdr;
463 eth_hdr = rte_pktmbuf_mtod(m, struct ether_hdr *);
465 ipv4_hdr = (struct ipv4_hdr *)(rte_pktmbuf_mtod(m, unsigned char *) +
466 sizeof(struct ether_hdr));
468 #ifdef DO_RFC_1812_CHECKS
469 /* Check to make sure the packet is valid (RFC1812) */
470 if (is_valid_ipv4_pkt(ipv4_hdr, m->pkt_len) < 0) {
476 dst_port = get_dst_port(ipv4_hdr, portid, l3fwd_lookup_struct);
477 if (dst_port >= RTE_MAX_ETHPORTS || (enabled_port_mask & 1 << dst_port) == 0)
480 /* 02:00:00:00:00:xx */
481 tmp = ð_hdr->d_addr.addr_bytes[0];
482 *((uint64_t *)tmp) = 0x000000000002 + ((uint64_t)dst_port << 40);
484 #ifdef DO_RFC_1812_CHECKS
485 /* Update time to live and header checksum */
486 --(ipv4_hdr->time_to_live);
487 ++(ipv4_hdr->hdr_checksum);
491 ether_addr_copy(&ports_eth_addr[dst_port], ð_hdr->s_addr);
493 send_single_packet(m, dst_port);
497 /* main processing loop */
499 main_loop(__attribute__((unused)) void *dummy)
501 struct rte_mbuf *pkts_burst[MAX_PKT_BURST];
503 uint64_t prev_tsc, diff_tsc, cur_tsc;
505 uint8_t portid, queueid;
506 struct lcore_conf *qconf;
507 const uint64_t drain_tsc = (rte_get_tsc_hz() + US_PER_S - 1) / US_PER_S * BURST_TX_DRAIN_US;
511 lcore_id = rte_lcore_id();
512 qconf = &lcore_conf[lcore_id];
514 if (qconf->n_rx_queue == 0) {
515 RTE_LOG(INFO, L3FWD, "lcore %u has nothing to do\n", lcore_id);
519 RTE_LOG(INFO, L3FWD, "entering main loop on lcore %u\n", lcore_id);
521 for (i = 0; i < qconf->n_rx_queue; i++) {
523 portid = qconf->rx_queue_list[i].port_id;
524 queueid = qconf->rx_queue_list[i].queue_id;
525 RTE_LOG(INFO, L3FWD, " -- lcoreid=%u portid=%hhu rxqueueid=%hhu\n", lcore_id,
531 cur_tsc = rte_rdtsc();
534 * TX burst queue drain
536 diff_tsc = cur_tsc - prev_tsc;
537 if (unlikely(diff_tsc > drain_tsc)) {
540 * This could be optimized (use queueid instead of
541 * portid), but it is not called so often
543 for (portid = 0; portid < RTE_MAX_ETHPORTS; portid++) {
544 if (qconf->tx_mbufs[portid].len == 0)
546 send_burst(&lcore_conf[lcore_id],
547 qconf->tx_mbufs[portid].len,
549 qconf->tx_mbufs[portid].len = 0;
556 * Read packet from RX queues
558 for (i = 0; i < qconf->n_rx_queue; ++i) {
560 portid = qconf->rx_queue_list[i].port_id;
561 queueid = qconf->rx_queue_list[i].queue_id;
562 nb_rx = rte_eth_rx_burst(portid, queueid, pkts_burst, MAX_PKT_BURST);
564 /* Prefetch first packets */
565 for (j = 0; j < PREFETCH_OFFSET && j < nb_rx; j++) {
566 rte_prefetch0(rte_pktmbuf_mtod(
567 pkts_burst[j], void *));
570 /* Prefetch and forward already prefetched packets */
571 for (j = 0; j < (nb_rx - PREFETCH_OFFSET); j++) {
572 rte_prefetch0(rte_pktmbuf_mtod(pkts_burst[
573 j + PREFETCH_OFFSET], void *));
574 l3fwd_simple_forward(pkts_burst[j], portid, qconf->lookup_struct);
577 /* Forward remaining prefetched packets */
578 for (; j < nb_rx; j++) {
579 l3fwd_simple_forward(pkts_burst[j], portid, qconf->lookup_struct);
586 check_lcore_params(void)
588 uint8_t queue, lcore;
592 for (i = 0; i < nb_lcore_params; ++i) {
593 queue = lcore_params[i].queue_id;
594 if (queue >= MAX_RX_QUEUE_PER_PORT) {
595 printf("invalid queue number: %hhu\n", queue);
598 lcore = lcore_params[i].lcore_id;
599 if (!rte_lcore_is_enabled(lcore)) {
600 printf("error: lcore %hhu is not enabled in lcore mask\n", lcore);
603 if ((socketid = rte_lcore_to_socket_id(lcore) != 0) &&
605 printf("warning: lcore %hhu is on socket %d with numa off \n",
613 check_port_config(const unsigned nb_ports)
618 for (i = 0; i < nb_lcore_params; ++i) {
619 portid = lcore_params[i].port_id;
620 if ((enabled_port_mask & (1 << portid)) == 0) {
621 printf("port %u is not enabled in port mask\n", portid);
624 if (portid >= nb_ports) {
625 printf("port %u is not present on the board\n", portid);
633 get_port_n_rx_queues(const uint8_t port)
638 for (i = 0; i < nb_lcore_params; ++i) {
639 if (lcore_params[i].port_id == port && lcore_params[i].queue_id > queue)
640 queue = lcore_params[i].queue_id;
642 return (uint8_t)(++queue);
646 init_lcore_rx_queues(void)
648 uint16_t i, nb_rx_queue;
651 for (i = 0; i < nb_lcore_params; ++i) {
652 lcore = lcore_params[i].lcore_id;
653 nb_rx_queue = lcore_conf[lcore].n_rx_queue;
654 if (nb_rx_queue >= MAX_RX_QUEUE_PER_LCORE) {
655 printf("error: too many queues (%u) for lcore: %u\n",
656 (unsigned)nb_rx_queue + 1, (unsigned)lcore);
659 lcore_conf[lcore].rx_queue_list[nb_rx_queue].port_id =
660 lcore_params[i].port_id;
661 lcore_conf[lcore].rx_queue_list[nb_rx_queue].queue_id =
662 lcore_params[i].queue_id;
663 lcore_conf[lcore].n_rx_queue++;
671 print_usage(const char *prgname)
673 printf ("%s [EAL options] -- -p PORTMASK"
674 " [--config (port,queue,lcore)[,(port,queue,lcore]]\n"
675 " -p PORTMASK: hexadecimal bitmask of ports to configure\n"
676 " --config (port,queue,lcore): rx queues configuration\n"
677 " --no-numa: optional, disable numa awareness\n",
681 /* Custom handling of signals to handle process terminal */
683 signal_handler(int signum)
686 uint8_t nb_ports = rte_eth_dev_count();
688 /* When we receive a SIGINT signal */
689 if (signum == SIGINT) {
690 for (portid = 0; portid < nb_ports; portid++) {
691 /* skip ports that are not enabled */
692 if ((enabled_port_mask & (1 << portid)) == 0)
694 rte_eth_dev_close(portid);
697 rte_exit(EXIT_SUCCESS, "\n User forced exit\n");
700 parse_portmask(const char *portmask)
705 /* parse hexadecimal string */
706 pm = strtoul(portmask, &end, 16);
707 if ((portmask[0] == '\0') || (end == NULL) || (*end != '\0'))
717 parse_config(const char *q_arg)
720 const char *p, *p0 = q_arg;
728 unsigned long int_fld[_NUM_FLD];
729 char *str_fld[_NUM_FLD];
735 while ((p = strchr(p0,'(')) != NULL) {
737 if((p0 = strchr(p,')')) == NULL)
741 if(size >= sizeof(s))
744 snprintf(s, sizeof(s), "%.*s", size, p);
745 if (rte_strsplit(s, sizeof(s), str_fld, _NUM_FLD, ',') != _NUM_FLD)
747 for (i = 0; i < _NUM_FLD; i++){
749 int_fld[i] = strtoul(str_fld[i], &end, 0);
750 if (errno != 0 || end == str_fld[i] || int_fld[i] > 255)
753 if (nb_lcore_params >= MAX_LCORE_PARAMS) {
754 printf("exceeded max number of lcore params: %hu\n",
758 lcore_params_array[nb_lcore_params].port_id = (uint8_t)int_fld[FLD_PORT];
759 lcore_params_array[nb_lcore_params].queue_id = (uint8_t)int_fld[FLD_QUEUE];
760 lcore_params_array[nb_lcore_params].lcore_id = (uint8_t)int_fld[FLD_LCORE];
763 lcore_params = lcore_params_array;
767 /* Parse the argument given in the command line of the application */
769 parse_args(int argc, char **argv)
774 char *prgname = argv[0];
775 static struct option lgopts[] = {
777 {"no-numa", 0, 0, 0},
783 while ((opt = getopt_long(argc, argvopt, "p:",
784 lgopts, &option_index)) != EOF) {
789 enabled_port_mask = parse_portmask(optarg);
790 if (enabled_port_mask == 0) {
791 printf("invalid portmask\n");
792 print_usage(prgname);
799 if (!strcmp(lgopts[option_index].name, "config")) {
800 ret = parse_config(optarg);
802 printf("invalid config\n");
803 print_usage(prgname);
808 if (!strcmp(lgopts[option_index].name, "no-numa")) {
809 printf("numa is disabled \n");
815 print_usage(prgname);
821 argv[optind-1] = prgname;
824 optind = 0; /* reset getopt lib */
829 print_ethaddr(const char *name, const struct ether_addr *eth_addr)
831 char buf[ETHER_ADDR_FMT_SIZE];
832 ether_format_addr(buf, ETHER_ADDR_FMT_SIZE, eth_addr);
833 printf("%s%s", name, buf);
836 #if (APP_LOOKUP_METHOD == APP_LOOKUP_EXACT_MATCH)
838 setup_hash(int socketid)
845 snprintf(s, sizeof(s), "l3fwd_hash_%d", socketid);
846 l3fwd_hash_params.name = s;
847 l3fwd_hash_params.socket_id = socketid;
848 l3fwd_lookup_struct[socketid] = rte_hash_create(&l3fwd_hash_params);
849 if (l3fwd_lookup_struct[socketid] == NULL)
850 rte_exit(EXIT_FAILURE, "Unable to create the l3fwd hash on "
851 "socket %d\n", socketid);
853 /* populate the hash */
854 for (i = 0; i < L3FWD_NUM_ROUTES; i++) {
855 ret = rte_hash_add_key (l3fwd_lookup_struct[socketid],
856 (void *) &l3fwd_route_array[i].key);
858 rte_exit(EXIT_FAILURE, "Unable to add entry %u to the"
859 "l3fwd hash on socket %d\n", i, socketid);
861 l3fwd_out_if[ret] = l3fwd_route_array[i].if_out;
862 printf("Hash: Adding key\n");
863 print_key(l3fwd_route_array[i].key);
868 #if (APP_LOOKUP_METHOD == APP_LOOKUP_LPM)
870 setup_lpm(int socketid)
876 /* create the LPM table */
877 snprintf(s, sizeof(s), "L3FWD_LPM_%d", socketid);
878 l3fwd_lookup_struct[socketid] = rte_lpm_create(s, socketid,
879 L3FWD_LPM_MAX_RULES, 0);
880 if (l3fwd_lookup_struct[socketid] == NULL)
881 rte_exit(EXIT_FAILURE, "Unable to create the l3fwd LPM table"
882 " on socket %d\n", socketid);
884 /* populate the LPM table */
885 for (i = 0; i < L3FWD_NUM_ROUTES; i++) {
886 ret = rte_lpm_add(l3fwd_lookup_struct[socketid],
887 l3fwd_route_array[i].ip,
888 l3fwd_route_array[i].depth,
889 l3fwd_route_array[i].if_out);
892 rte_exit(EXIT_FAILURE, "Unable to add entry %u to the "
893 "l3fwd LPM table on socket %d\n",
897 printf("LPM: Adding route 0x%08x / %d (%d)\n",
898 (unsigned)l3fwd_route_array[i].ip,
899 l3fwd_route_array[i].depth,
900 l3fwd_route_array[i].if_out);
906 init_mem(unsigned nb_mbuf)
908 struct lcore_conf *qconf;
913 for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
914 if (rte_lcore_is_enabled(lcore_id) == 0)
918 socketid = rte_lcore_to_socket_id(lcore_id);
922 if (socketid >= NB_SOCKETS) {
923 rte_exit(EXIT_FAILURE, "Socket %d of lcore %u is out of range %d\n",
924 socketid, lcore_id, NB_SOCKETS);
926 if (pktmbuf_pool[socketid] == NULL) {
927 snprintf(s, sizeof(s), "mbuf_pool_%d", socketid);
928 pktmbuf_pool[socketid] =
929 rte_mempool_create(s, nb_mbuf, MBUF_SIZE,
931 sizeof(struct rte_pktmbuf_pool_private),
932 rte_pktmbuf_pool_init, NULL,
933 rte_pktmbuf_init, NULL,
935 if (pktmbuf_pool[socketid] == NULL)
936 rte_exit(EXIT_FAILURE, "Cannot init mbuf pool on socket %d\n", socketid);
938 printf("Allocated mbuf pool on socket %d\n", socketid);
940 #if (APP_LOOKUP_METHOD == APP_LOOKUP_LPM)
943 setup_hash(socketid);
946 qconf = &lcore_conf[lcore_id];
947 qconf->lookup_struct = l3fwd_lookup_struct[socketid];
953 main(int argc, char **argv)
955 struct lcore_conf *qconf;
956 struct rte_eth_dev_info dev_info;
957 struct rte_eth_txconf *txconf;
964 uint8_t portid, nb_rx_queue, queue, socketid;
966 signal(SIGINT, signal_handler);
968 ret = rte_eal_init(argc, argv);
970 rte_exit(EXIT_FAILURE, "Invalid EAL parameters\n");
974 /* parse application arguments (after the EAL ones) */
975 ret = parse_args(argc, argv);
977 rte_exit(EXIT_FAILURE, "Invalid L3FWD-VF parameters\n");
979 if (check_lcore_params() < 0)
980 rte_exit(EXIT_FAILURE, "check_lcore_params failed\n");
982 ret = init_lcore_rx_queues();
984 rte_exit(EXIT_FAILURE, "init_lcore_rx_queues failed\n");
986 nb_ports = rte_eth_dev_count();
987 if (nb_ports > RTE_MAX_ETHPORTS)
988 nb_ports = RTE_MAX_ETHPORTS;
990 if (check_port_config(nb_ports) < 0)
991 rte_exit(EXIT_FAILURE, "check_port_config failed\n");
993 nb_lcores = rte_lcore_count();
995 /* initialize all ports */
996 for (portid = 0; portid < nb_ports; portid++) {
997 /* skip ports that are not enabled */
998 if ((enabled_port_mask & (1 << portid)) == 0) {
999 printf("\nSkipping disabled port %d\n", portid);
1004 printf("Initializing port %d ... ", portid );
1007 /* must always equal(=1) */
1008 nb_rx_queue = get_port_n_rx_queues(portid);
1009 n_tx_queue = MAX_TX_QUEUE_PER_PORT;
1011 printf("Creating queues: nb_rxq=%d nb_txq=%u... ",
1012 nb_rx_queue, (unsigned)1 );
1013 ret = rte_eth_dev_configure(portid, nb_rx_queue, n_tx_queue, &port_conf);
1015 rte_exit(EXIT_FAILURE, "Cannot configure device: err=%d, port=%d\n",
1018 rte_eth_macaddr_get(portid, &ports_eth_addr[portid]);
1019 print_ethaddr(" Address:", &ports_eth_addr[portid]);
1022 ret = init_mem(NB_MBUF);
1024 rte_exit(EXIT_FAILURE, "init_mem failed\n");
1026 /* init one TX queue */
1027 socketid = (uint8_t)rte_lcore_to_socket_id(rte_get_master_lcore());
1029 printf("txq=%d,%d,%d ", portid, 0, socketid);
1032 rte_eth_dev_info_get(portid, &dev_info);
1033 txconf = &dev_info.default_txconf;
1034 if (port_conf.rxmode.jumbo_frame)
1035 txconf->txq_flags = 0;
1036 ret = rte_eth_tx_queue_setup(portid, 0, nb_txd,
1039 rte_exit(EXIT_FAILURE, "rte_eth_tx_queue_setup: err=%d, "
1040 "port=%d\n", ret, portid);
1045 for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
1046 if (rte_lcore_is_enabled(lcore_id) == 0)
1048 qconf = &lcore_conf[lcore_id];
1049 qconf->tx_queue_id = 0;
1051 printf("\nInitializing rx queues on lcore %u ... ", lcore_id );
1053 /* init RX queues */
1054 for(queue = 0; queue < qconf->n_rx_queue; ++queue) {
1055 portid = qconf->rx_queue_list[queue].port_id;
1056 queueid = qconf->rx_queue_list[queue].queue_id;
1059 socketid = (uint8_t)rte_lcore_to_socket_id(lcore_id);
1063 printf("rxq=%d,%d,%d ", portid, queueid, socketid);
1066 ret = rte_eth_rx_queue_setup(portid, queueid, nb_rxd,
1068 pktmbuf_pool[socketid]);
1070 rte_exit(EXIT_FAILURE, "rte_eth_rx_queue_setup: err=%d,"
1071 "port=%d\n", ret, portid);
1077 for (portid = 0; portid < nb_ports; portid++) {
1078 if ((enabled_port_mask & (1 << portid)) == 0) {
1082 ret = rte_eth_dev_start(portid);
1084 rte_exit(EXIT_FAILURE, "rte_eth_dev_start: err=%d, port=%d\n",
1087 printf("done: Port %d\n", portid);
1091 /* launch per-lcore init on every lcore */
1092 rte_eal_mp_remote_launch(main_loop, NULL, CALL_MASTER);
1093 RTE_LCORE_FOREACH_SLAVE(lcore_id) {
1094 if (rte_eal_wait_lcore(lcore_id) < 0)