34e4a6bef25e84c635c218822560fd06f56cf6fd
[deb_dpdk.git] / examples / l3fwd-vf / main.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2014 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 #include <stdio.h>
35 #include <stdlib.h>
36 #include <stdint.h>
37 #include <inttypes.h>
38 #include <sys/types.h>
39 #include <string.h>
40 #include <sys/queue.h>
41 #include <stdarg.h>
42 #include <errno.h>
43 #include <getopt.h>
44 #include <signal.h>
45
46 #include <rte_common.h>
47 #include <rte_byteorder.h>
48 #include <rte_log.h>
49 #include <rte_memory.h>
50 #include <rte_memcpy.h>
51 #include <rte_memzone.h>
52 #include <rte_eal.h>
53 #include <rte_launch.h>
54 #include <rte_atomic.h>
55 #include <rte_spinlock.h>
56 #include <rte_cycles.h>
57 #include <rte_prefetch.h>
58 #include <rte_lcore.h>
59 #include <rte_per_lcore.h>
60 #include <rte_branch_prediction.h>
61 #include <rte_interrupts.h>
62 #include <rte_pci.h>
63 #include <rte_random.h>
64 #include <rte_debug.h>
65 #include <rte_ether.h>
66 #include <rte_ethdev.h>
67 #include <rte_mempool.h>
68 #include <rte_mbuf.h>
69 #include <rte_ip.h>
70 #include <rte_tcp.h>
71 #include <rte_udp.h>
72 #include <rte_string_fns.h>
73
74 #define APP_LOOKUP_EXACT_MATCH          0
75 #define APP_LOOKUP_LPM                  1
76 #define DO_RFC_1812_CHECKS
77
78 //#define APP_LOOKUP_METHOD             APP_LOOKUP_EXACT_MATCH
79 #ifndef APP_LOOKUP_METHOD
80 #define APP_LOOKUP_METHOD             APP_LOOKUP_LPM
81 #endif
82
83 #if (APP_LOOKUP_METHOD == APP_LOOKUP_EXACT_MATCH)
84 #include <rte_hash.h>
85 #elif (APP_LOOKUP_METHOD == APP_LOOKUP_LPM)
86 #include <rte_lpm.h>
87 #else
88 #error "APP_LOOKUP_METHOD set to incorrect value"
89 #endif
90
91 #define RTE_LOGTYPE_L3FWD RTE_LOGTYPE_USER1
92
93 #define MEMPOOL_CACHE_SIZE 256
94
95 /*
96  * This expression is used to calculate the number of mbufs needed depending on user input, taking
97  *  into account memory for rx and tx hardware rings, cache per lcore and mtable per port per lcore.
98  *  RTE_MAX is used to ensure that NB_MBUF never goes below a minimum value of 8192
99  */
100
101 #define NB_MBUF RTE_MAX (                                               \
102                                 (nb_ports*nb_rx_queue*nb_rxd +          \
103                                 nb_ports*nb_lcores*MAX_PKT_BURST +      \
104                                 nb_ports*n_tx_queue*nb_txd +            \
105                                 nb_lcores*MEMPOOL_CACHE_SIZE),          \
106                                 (unsigned)8192)
107
108 /*
109  * RX and TX Prefetch, Host, and Write-back threshold values should be
110  * carefully set for optimal performance. Consult the network
111  * controller's datasheet and supporting DPDK documentation for guidance
112  * on how these parameters should be set.
113  */
114 #define RX_PTHRESH 8 /**< Default values of RX prefetch threshold reg. */
115 #define RX_HTHRESH 8 /**< Default values of RX host threshold reg. */
116 #define RX_WTHRESH 4 /**< Default values of RX write-back threshold reg. */
117
118 /*
119  * These default values are optimized for use with the Intel(R) 82599 10 GbE
120  * Controller and the DPDK ixgbe PMD. Consider using other values for other
121  * network controllers and/or network drivers.
122  */
123 #define TX_PTHRESH 36 /**< Default values of TX prefetch threshold reg. */
124 #define TX_HTHRESH 0  /**< Default values of TX host threshold reg. */
125 #define TX_WTHRESH 0  /**< Default values of TX write-back threshold reg. */
126
127 #define MAX_PKT_BURST 32
128 #define BURST_TX_DRAIN_US 100 /* TX drain every ~100us */
129
130 #define NB_SOCKETS 8
131
132 #define SOCKET0 0
133
134 /* Configure how many packets ahead to prefetch, when reading packets */
135 #define PREFETCH_OFFSET 3
136
137 /*
138  * Configurable number of RX/TX ring descriptors
139  */
140 #define RTE_TEST_RX_DESC_DEFAULT 128
141 #define RTE_TEST_TX_DESC_DEFAULT 512
142 static uint16_t nb_rxd = RTE_TEST_RX_DESC_DEFAULT;
143 static uint16_t nb_txd = RTE_TEST_TX_DESC_DEFAULT;
144
145 /* ethernet addresses of ports */
146 static struct ether_addr ports_eth_addr[RTE_MAX_ETHPORTS];
147
148 /* mask of enabled ports */
149 static uint32_t enabled_port_mask = 0;
150 static int numa_on = 1; /**< NUMA is enabled by default. */
151
152 struct mbuf_table {
153         uint16_t len;
154         struct rte_mbuf *m_table[MAX_PKT_BURST];
155 };
156
157 struct lcore_rx_queue {
158         uint8_t port_id;
159         uint8_t queue_id;
160 } __rte_cache_aligned;
161
162 #define MAX_RX_QUEUE_PER_LCORE 16
163 #define MAX_TX_QUEUE_PER_PORT 1
164 #define MAX_RX_QUEUE_PER_PORT 1
165
166 #define MAX_LCORE_PARAMS 1024
167 struct lcore_params {
168         uint8_t port_id;
169         uint8_t queue_id;
170         uint8_t lcore_id;
171 } __rte_cache_aligned;
172
173 static struct lcore_params lcore_params_array[MAX_LCORE_PARAMS];
174 static struct lcore_params lcore_params_array_default[] = {
175         {0, 0, 2},
176         {0, 1, 2},
177         {0, 2, 2},
178         {1, 0, 2},
179         {1, 1, 2},
180         {1, 2, 2},
181         {2, 0, 2},
182         {3, 0, 3},
183         {3, 1, 3},
184 };
185
186 static struct lcore_params * lcore_params = lcore_params_array_default;
187 static uint16_t nb_lcore_params = sizeof(lcore_params_array_default) /
188                                 sizeof(lcore_params_array_default[0]);
189
190 static struct rte_eth_conf port_conf = {
191         .rxmode = {
192                 .mq_mode        = ETH_MQ_RX_RSS,
193                 .max_rx_pkt_len = ETHER_MAX_LEN,
194                 .split_hdr_size = 0,
195                 .header_split   = 0, /**< Header Split disabled */
196                 .hw_ip_checksum = 1, /**< IP checksum offload enabled */
197                 .hw_vlan_filter = 0, /**< VLAN filtering disabled */
198                 .jumbo_frame    = 0, /**< Jumbo Frame Support disabled */
199                 .hw_strip_crc   = 1, /**< CRC stripped by hardware */
200         },
201         .rx_adv_conf = {
202                 .rss_conf = {
203                         .rss_key = NULL,
204                         .rss_hf = ETH_RSS_IP,
205                 },
206         },
207         .txmode = {
208                 .mq_mode = ETH_MQ_TX_NONE,
209         },
210 };
211
212 static struct rte_mempool * pktmbuf_pool[NB_SOCKETS];
213
214
215 #if (APP_LOOKUP_METHOD == APP_LOOKUP_EXACT_MATCH)
216
217 #ifdef RTE_ARCH_X86
218 #include <rte_hash_crc.h>
219 #define DEFAULT_HASH_FUNC       rte_hash_crc
220 #else
221 #include <rte_jhash.h>
222 #define DEFAULT_HASH_FUNC       rte_jhash
223 #endif
224
225 struct ipv4_5tuple {
226         uint32_t ip_dst;
227         uint32_t ip_src;
228         uint16_t port_dst;
229         uint16_t port_src;
230         uint8_t proto;
231 } __attribute__((__packed__));
232
233 struct l3fwd_route {
234         struct ipv4_5tuple key;
235         uint8_t if_out;
236 };
237
238 static struct l3fwd_route l3fwd_route_array[] = {
239         {{IPv4(100,10,0,1), IPv4(200,10,0,1), 101, 11, IPPROTO_TCP}, 0},
240         {{IPv4(100,20,0,2), IPv4(200,20,0,2), 102, 12, IPPROTO_TCP}, 1},
241         {{IPv4(100,30,0,3), IPv4(200,30,0,3), 103, 13, IPPROTO_TCP}, 2},
242         {{IPv4(100,40,0,4), IPv4(200,40,0,4), 104, 14, IPPROTO_TCP}, 3},
243 };
244
245 typedef struct rte_hash lookup_struct_t;
246 static lookup_struct_t *l3fwd_lookup_struct[NB_SOCKETS];
247
248 #define L3FWD_HASH_ENTRIES      1024
249 struct rte_hash_parameters l3fwd_hash_params = {
250         .name = "l3fwd_hash_0",
251         .entries = L3FWD_HASH_ENTRIES,
252         .key_len = sizeof(struct ipv4_5tuple),
253         .hash_func = DEFAULT_HASH_FUNC,
254         .hash_func_init_val = 0,
255         .socket_id = SOCKET0,
256 };
257
258 #define L3FWD_NUM_ROUTES \
259         (sizeof(l3fwd_route_array) / sizeof(l3fwd_route_array[0]))
260
261 static uint8_t l3fwd_out_if[L3FWD_HASH_ENTRIES] __rte_cache_aligned;
262 #endif
263
264 #if (APP_LOOKUP_METHOD == APP_LOOKUP_LPM)
265 struct l3fwd_route {
266         uint32_t ip;
267         uint8_t  depth;
268         uint8_t  if_out;
269 };
270
271 static struct l3fwd_route l3fwd_route_array[] = {
272         {IPv4(1,1,1,0), 24, 0},
273         {IPv4(2,1,1,0), 24, 1},
274         {IPv4(3,1,1,0), 24, 2},
275         {IPv4(4,1,1,0), 24, 3},
276         {IPv4(5,1,1,0), 24, 4},
277         {IPv4(6,1,1,0), 24, 5},
278         {IPv4(7,1,1,0), 24, 6},
279         {IPv4(8,1,1,0), 24, 7},
280 };
281
282 #define L3FWD_NUM_ROUTES \
283         (sizeof(l3fwd_route_array) / sizeof(l3fwd_route_array[0]))
284
285 #define L3FWD_LPM_MAX_RULES     1024
286
287 typedef struct rte_lpm lookup_struct_t;
288 static lookup_struct_t *l3fwd_lookup_struct[NB_SOCKETS];
289 #endif
290
291 struct lcore_conf {
292         uint16_t n_rx_queue;
293         struct lcore_rx_queue rx_queue_list[MAX_RX_QUEUE_PER_LCORE];
294         uint16_t tx_queue_id;
295         struct mbuf_table tx_mbufs[RTE_MAX_ETHPORTS];
296         lookup_struct_t * lookup_struct;
297 } __rte_cache_aligned;
298
299 static struct lcore_conf lcore_conf[RTE_MAX_LCORE];
300 static rte_spinlock_t spinlock_conf[RTE_MAX_ETHPORTS] = {RTE_SPINLOCK_INITIALIZER};
301 /* Send burst of packets on an output interface */
302 static inline int
303 send_burst(struct lcore_conf *qconf, uint16_t n, uint8_t port)
304 {
305         struct rte_mbuf **m_table;
306         int ret;
307         uint16_t queueid;
308
309         queueid = qconf->tx_queue_id;
310         m_table = (struct rte_mbuf **)qconf->tx_mbufs[port].m_table;
311
312         rte_spinlock_lock(&spinlock_conf[port]);
313         ret = rte_eth_tx_burst(port, queueid, m_table, n);
314         rte_spinlock_unlock(&spinlock_conf[port]);
315
316         if (unlikely(ret < n)) {
317                 do {
318                         rte_pktmbuf_free(m_table[ret]);
319                 } while (++ret < n);
320         }
321
322         return 0;
323 }
324
325 /* Enqueue a single packet, and send burst if queue is filled */
326 static inline int
327 send_single_packet(struct rte_mbuf *m, uint8_t port)
328 {
329         uint32_t lcore_id;
330         uint16_t len;
331         struct lcore_conf *qconf;
332
333         lcore_id = rte_lcore_id();
334
335         qconf = &lcore_conf[lcore_id];
336         len = qconf->tx_mbufs[port].len;
337         qconf->tx_mbufs[port].m_table[len] = m;
338         len++;
339
340         /* enough pkts to be sent */
341         if (unlikely(len == MAX_PKT_BURST)) {
342                 send_burst(qconf, MAX_PKT_BURST, port);
343                 len = 0;
344         }
345
346         qconf->tx_mbufs[port].len = len;
347         return 0;
348 }
349
350 #ifdef DO_RFC_1812_CHECKS
351 static inline int
352 is_valid_ipv4_pkt(struct ipv4_hdr *pkt, uint32_t link_len)
353 {
354         /* From http://www.rfc-editor.org/rfc/rfc1812.txt section 5.2.2 */
355         /*
356          * 1. The packet length reported by the Link Layer must be large
357          * enough to hold the minimum length legal IP datagram (20 bytes).
358          */
359         if (link_len < sizeof(struct ipv4_hdr))
360                 return -1;
361
362         /* 2. The IP checksum must be correct. */
363         /* this is checked in H/W */
364
365         /*
366          * 3. The IP version number must be 4. If the version number is not 4
367          * then the packet may be another version of IP, such as IPng or
368          * ST-II.
369          */
370         if (((pkt->version_ihl) >> 4) != 4)
371                 return -3;
372         /*
373          * 4. The IP header length field must be large enough to hold the
374          * minimum length legal IP datagram (20 bytes = 5 words).
375          */
376         if ((pkt->version_ihl & 0xf) < 5)
377                 return -4;
378
379         /*
380          * 5. The IP total length field must be large enough to hold the IP
381          * datagram header, whose length is specified in the IP header length
382          * field.
383          */
384         if (rte_cpu_to_be_16(pkt->total_length) < sizeof(struct ipv4_hdr))
385                 return -5;
386
387         return 0;
388 }
389 #endif
390
391 #if (APP_LOOKUP_METHOD == APP_LOOKUP_EXACT_MATCH)
392 static void
393 print_key(struct ipv4_5tuple key)
394 {
395         printf("IP dst = %08x, IP src = %08x, port dst = %d, port src = %d, proto = %d\n",
396                (unsigned)key.ip_dst, (unsigned)key.ip_src, key.port_dst, key.port_src, key.proto);
397 }
398
399 static inline uint8_t
400 get_dst_port(struct ipv4_hdr *ipv4_hdr,  uint8_t portid, lookup_struct_t * l3fwd_lookup_struct)
401 {
402         struct ipv4_5tuple key;
403         struct tcp_hdr *tcp;
404         struct udp_hdr *udp;
405         int ret = 0;
406
407         key.ip_dst = rte_be_to_cpu_32(ipv4_hdr->dst_addr);
408         key.ip_src = rte_be_to_cpu_32(ipv4_hdr->src_addr);
409         key.proto = ipv4_hdr->next_proto_id;
410
411         switch (ipv4_hdr->next_proto_id) {
412         case IPPROTO_TCP:
413                 tcp = (struct tcp_hdr *)((unsigned char *) ipv4_hdr +
414                                         sizeof(struct ipv4_hdr));
415                 key.port_dst = rte_be_to_cpu_16(tcp->dst_port);
416                 key.port_src = rte_be_to_cpu_16(tcp->src_port);
417                 break;
418
419         case IPPROTO_UDP:
420                 udp = (struct udp_hdr *)((unsigned char *) ipv4_hdr +
421                                         sizeof(struct ipv4_hdr));
422                 key.port_dst = rte_be_to_cpu_16(udp->dst_port);
423                 key.port_src = rte_be_to_cpu_16(udp->src_port);
424                 break;
425
426         default:
427                 key.port_dst = 0;
428                 key.port_src = 0;
429         }
430
431         /* Find destination port */
432         ret = rte_hash_lookup(l3fwd_lookup_struct, (const void *)&key);
433         return (uint8_t)((ret < 0)? portid : l3fwd_out_if[ret]);
434 }
435 #endif
436
437 #if (APP_LOOKUP_METHOD == APP_LOOKUP_LPM)
438 static inline uint8_t
439 get_dst_port(struct ipv4_hdr *ipv4_hdr,  uint8_t portid, lookup_struct_t * l3fwd_lookup_struct)
440 {
441         uint32_t next_hop;
442
443         return (uint8_t) ((rte_lpm_lookup(l3fwd_lookup_struct,
444                         rte_be_to_cpu_32(ipv4_hdr->dst_addr), &next_hop) == 0)?
445                         next_hop : portid);
446 }
447 #endif
448
449 static inline void
450 l3fwd_simple_forward(struct rte_mbuf *m, uint8_t portid, lookup_struct_t * l3fwd_lookup_struct)
451 {
452         struct ether_hdr *eth_hdr;
453         struct ipv4_hdr *ipv4_hdr;
454         void *tmp;
455         uint8_t dst_port;
456
457         eth_hdr = rte_pktmbuf_mtod(m, struct ether_hdr *);
458
459         ipv4_hdr = rte_pktmbuf_mtod_offset(m, struct ipv4_hdr *,
460                                            sizeof(struct ether_hdr));
461
462 #ifdef DO_RFC_1812_CHECKS
463         /* Check to make sure the packet is valid (RFC1812) */
464         if (is_valid_ipv4_pkt(ipv4_hdr, m->pkt_len) < 0) {
465                 rte_pktmbuf_free(m);
466                 return;
467         }
468 #endif
469
470         dst_port = get_dst_port(ipv4_hdr, portid, l3fwd_lookup_struct);
471         if (dst_port >= RTE_MAX_ETHPORTS || (enabled_port_mask & 1 << dst_port) == 0)
472                 dst_port = portid;
473
474         /* 02:00:00:00:00:xx */
475         tmp = &eth_hdr->d_addr.addr_bytes[0];
476         *((uint64_t *)tmp) = 0x000000000002 + ((uint64_t)dst_port << 40);
477
478 #ifdef DO_RFC_1812_CHECKS
479         /* Update time to live and header checksum */
480         --(ipv4_hdr->time_to_live);
481         ++(ipv4_hdr->hdr_checksum);
482 #endif
483
484         /* src addr */
485         ether_addr_copy(&ports_eth_addr[dst_port], &eth_hdr->s_addr);
486
487         send_single_packet(m, dst_port);
488
489 }
490
491 /* main processing loop */
492 static int
493 main_loop(__attribute__((unused)) void *dummy)
494 {
495         struct rte_mbuf *pkts_burst[MAX_PKT_BURST];
496         unsigned lcore_id;
497         uint64_t prev_tsc, diff_tsc, cur_tsc;
498         int i, j, nb_rx;
499         uint8_t portid, queueid;
500         struct lcore_conf *qconf;
501         const uint64_t drain_tsc = (rte_get_tsc_hz() + US_PER_S - 1) / US_PER_S * BURST_TX_DRAIN_US;
502
503         prev_tsc = 0;
504
505         lcore_id = rte_lcore_id();
506         qconf = &lcore_conf[lcore_id];
507
508         if (qconf->n_rx_queue == 0) {
509                 RTE_LOG(INFO, L3FWD, "lcore %u has nothing to do\n", lcore_id);
510                 return 0;
511         }
512
513         RTE_LOG(INFO, L3FWD, "entering main loop on lcore %u\n", lcore_id);
514
515         for (i = 0; i < qconf->n_rx_queue; i++) {
516
517                 portid = qconf->rx_queue_list[i].port_id;
518                 queueid = qconf->rx_queue_list[i].queue_id;
519                 RTE_LOG(INFO, L3FWD, " -- lcoreid=%u portid=%hhu rxqueueid=%hhu\n", lcore_id,
520                         portid, queueid);
521         }
522
523         while (1) {
524
525                 cur_tsc = rte_rdtsc();
526
527                 /*
528                  * TX burst queue drain
529                  */
530                 diff_tsc = cur_tsc - prev_tsc;
531                 if (unlikely(diff_tsc > drain_tsc)) {
532
533                         /*
534                          * This could be optimized (use queueid instead of
535                          * portid), but it is not called so often
536                          */
537                         for (portid = 0; portid < RTE_MAX_ETHPORTS; portid++) {
538                                 if (qconf->tx_mbufs[portid].len == 0)
539                                         continue;
540                                 send_burst(&lcore_conf[lcore_id],
541                                         qconf->tx_mbufs[portid].len,
542                                         portid);
543                                 qconf->tx_mbufs[portid].len = 0;
544                         }
545
546                         prev_tsc = cur_tsc;
547                 }
548
549                 /*
550                  * Read packet from RX queues
551                  */
552                 for (i = 0; i < qconf->n_rx_queue; ++i) {
553
554                         portid = qconf->rx_queue_list[i].port_id;
555                         queueid = qconf->rx_queue_list[i].queue_id;
556                         nb_rx = rte_eth_rx_burst(portid, queueid, pkts_burst, MAX_PKT_BURST);
557
558                         /* Prefetch first packets */
559                         for (j = 0; j < PREFETCH_OFFSET && j < nb_rx; j++) {
560                                 rte_prefetch0(rte_pktmbuf_mtod(
561                                                 pkts_burst[j], void *));
562                         }
563
564                         /* Prefetch and forward already prefetched packets */
565                         for (j = 0; j < (nb_rx - PREFETCH_OFFSET); j++) {
566                                 rte_prefetch0(rte_pktmbuf_mtod(pkts_burst[
567                                                 j + PREFETCH_OFFSET], void *));
568                                 l3fwd_simple_forward(pkts_burst[j], portid, qconf->lookup_struct);
569                         }
570
571                         /* Forward remaining prefetched packets */
572                         for (; j < nb_rx; j++) {
573                                 l3fwd_simple_forward(pkts_burst[j], portid, qconf->lookup_struct);
574                         }
575                 }
576         }
577 }
578
579 static int
580 check_lcore_params(void)
581 {
582         uint8_t queue, lcore;
583         uint16_t i;
584         int socketid;
585
586         for (i = 0; i < nb_lcore_params; ++i) {
587                 queue = lcore_params[i].queue_id;
588                 if (queue >= MAX_RX_QUEUE_PER_PORT) {
589                         printf("invalid queue number: %hhu\n", queue);
590                         return -1;
591                 }
592                 lcore = lcore_params[i].lcore_id;
593                 if (!rte_lcore_is_enabled(lcore)) {
594                         printf("error: lcore %hhu is not enabled in lcore mask\n", lcore);
595                         return -1;
596                 }
597                 if ((socketid = rte_lcore_to_socket_id(lcore) != 0) &&
598                         (numa_on == 0)) {
599                         printf("warning: lcore %hhu is on socket %d with numa off \n",
600                                 lcore, socketid);
601                 }
602         }
603         return 0;
604 }
605
606 static int
607 check_port_config(const unsigned nb_ports)
608 {
609         unsigned portid;
610         uint16_t i;
611
612         for (i = 0; i < nb_lcore_params; ++i) {
613                 portid = lcore_params[i].port_id;
614                 if ((enabled_port_mask & (1 << portid)) == 0) {
615                         printf("port %u is not enabled in port mask\n", portid);
616                         return -1;
617                 }
618                 if (portid >= nb_ports) {
619                         printf("port %u is not present on the board\n", portid);
620                         return -1;
621                 }
622         }
623         return 0;
624 }
625
626 static uint8_t
627 get_port_n_rx_queues(const uint8_t port)
628 {
629         int queue = -1;
630         uint16_t i;
631
632         for (i = 0; i < nb_lcore_params; ++i) {
633                 if (lcore_params[i].port_id == port && lcore_params[i].queue_id > queue)
634                         queue = lcore_params[i].queue_id;
635         }
636         return (uint8_t)(++queue);
637 }
638
639 static int
640 init_lcore_rx_queues(void)
641 {
642         uint16_t i, nb_rx_queue;
643         uint8_t lcore;
644
645         for (i = 0; i < nb_lcore_params; ++i) {
646                 lcore = lcore_params[i].lcore_id;
647                 nb_rx_queue = lcore_conf[lcore].n_rx_queue;
648                 if (nb_rx_queue >= MAX_RX_QUEUE_PER_LCORE) {
649                         printf("error: too many queues (%u) for lcore: %u\n",
650                                 (unsigned)nb_rx_queue + 1, (unsigned)lcore);
651                         return -1;
652                 } else {
653                         lcore_conf[lcore].rx_queue_list[nb_rx_queue].port_id =
654                                 lcore_params[i].port_id;
655                         lcore_conf[lcore].rx_queue_list[nb_rx_queue].queue_id =
656                                 lcore_params[i].queue_id;
657                         lcore_conf[lcore].n_rx_queue++;
658                 }
659         }
660         return 0;
661 }
662
663 /* display usage */
664 static void
665 print_usage(const char *prgname)
666 {
667         printf ("%s [EAL options] -- -p PORTMASK"
668                 "  [--config (port,queue,lcore)[,(port,queue,lcore]]\n"
669                 "  -p PORTMASK: hexadecimal bitmask of ports to configure\n"
670                 "  --config (port,queue,lcore): rx queues configuration\n"
671                 "  --no-numa: optional, disable numa awareness\n",
672                 prgname);
673 }
674
675 /* Custom handling of signals to handle process terminal */
676 static void
677 signal_handler(int signum)
678 {
679         uint8_t portid;
680         uint8_t nb_ports = rte_eth_dev_count();
681
682         /* When we receive a SIGINT signal */
683         if (signum == SIGINT) {
684                 for (portid = 0; portid < nb_ports; portid++) {
685                         /* skip ports that are not enabled */
686                         if ((enabled_port_mask & (1 << portid)) == 0)
687                                 continue;
688                         rte_eth_dev_close(portid);
689                 }
690         }
691         rte_exit(EXIT_SUCCESS, "\n User forced exit\n");
692 }
693 static int
694 parse_portmask(const char *portmask)
695 {
696         char *end = NULL;
697         unsigned long pm;
698
699         /* parse hexadecimal string */
700         pm = strtoul(portmask, &end, 16);
701         if ((portmask[0] == '\0') || (end == NULL) || (*end != '\0'))
702                 return -1;
703
704         if (pm == 0)
705                 return -1;
706
707         return pm;
708 }
709
710 static int
711 parse_config(const char *q_arg)
712 {
713         char s[256];
714         const char *p, *p0 = q_arg;
715         char *end;
716         enum fieldnames {
717                 FLD_PORT = 0,
718                 FLD_QUEUE,
719                 FLD_LCORE,
720                 _NUM_FLD
721         };
722         unsigned long int_fld[_NUM_FLD];
723         char *str_fld[_NUM_FLD];
724         int i;
725         unsigned size;
726
727         nb_lcore_params = 0;
728
729         while ((p = strchr(p0,'(')) != NULL) {
730                 ++p;
731                 if((p0 = strchr(p,')')) == NULL)
732                         return -1;
733
734                 size = p0 - p;
735                 if(size >= sizeof(s))
736                         return -1;
737
738                 snprintf(s, sizeof(s), "%.*s", size, p);
739                 if (rte_strsplit(s, sizeof(s), str_fld, _NUM_FLD, ',') != _NUM_FLD)
740                         return -1;
741                 for (i = 0; i < _NUM_FLD; i++){
742                         errno = 0;
743                         int_fld[i] = strtoul(str_fld[i], &end, 0);
744                         if (errno != 0 || end == str_fld[i] || int_fld[i] > 255)
745                                 return -1;
746                 }
747                 if (nb_lcore_params >= MAX_LCORE_PARAMS) {
748                         printf("exceeded max number of lcore params: %hu\n",
749                                 nb_lcore_params);
750                         return -1;
751                 }
752                 lcore_params_array[nb_lcore_params].port_id = (uint8_t)int_fld[FLD_PORT];
753                 lcore_params_array[nb_lcore_params].queue_id = (uint8_t)int_fld[FLD_QUEUE];
754                 lcore_params_array[nb_lcore_params].lcore_id = (uint8_t)int_fld[FLD_LCORE];
755                 ++nb_lcore_params;
756         }
757         lcore_params = lcore_params_array;
758         return 0;
759 }
760
761 /* Parse the argument given in the command line of the application */
762 static int
763 parse_args(int argc, char **argv)
764 {
765         int opt, ret;
766         char **argvopt;
767         int option_index;
768         char *prgname = argv[0];
769         static struct option lgopts[] = {
770                 {"config", 1, 0, 0},
771                 {"no-numa", 0, 0, 0},
772                 {NULL, 0, 0, 0}
773         };
774
775         argvopt = argv;
776
777         while ((opt = getopt_long(argc, argvopt, "p:",
778                                 lgopts, &option_index)) != EOF) {
779
780                 switch (opt) {
781                 /* portmask */
782                 case 'p':
783                         enabled_port_mask = parse_portmask(optarg);
784                         if (enabled_port_mask == 0) {
785                                 printf("invalid portmask\n");
786                                 print_usage(prgname);
787                                 return -1;
788                         }
789                         break;
790
791                 /* long options */
792                 case 0:
793                         if (!strcmp(lgopts[option_index].name, "config")) {
794                                 ret = parse_config(optarg);
795                                 if (ret) {
796                                         printf("invalid config\n");
797                                         print_usage(prgname);
798                                         return -1;
799                                 }
800                         }
801
802                         if (!strcmp(lgopts[option_index].name, "no-numa")) {
803                                 printf("numa is disabled \n");
804                                 numa_on = 0;
805                         }
806                         break;
807
808                 default:
809                         print_usage(prgname);
810                         return -1;
811                 }
812         }
813
814         if (optind >= 0)
815                 argv[optind-1] = prgname;
816
817         ret = optind-1;
818         optind = 1; /* reset getopt lib */
819         return ret;
820 }
821
822 static void
823 print_ethaddr(const char *name, const struct ether_addr *eth_addr)
824 {
825         char buf[ETHER_ADDR_FMT_SIZE];
826         ether_format_addr(buf, ETHER_ADDR_FMT_SIZE, eth_addr);
827         printf("%s%s", name, buf);
828 }
829
830 #if (APP_LOOKUP_METHOD == APP_LOOKUP_EXACT_MATCH)
831 static void
832 setup_hash(int socketid)
833 {
834         unsigned i;
835         int ret;
836         char s[64];
837
838         /* create  hashes */
839         snprintf(s, sizeof(s), "l3fwd_hash_%d", socketid);
840         l3fwd_hash_params.name = s;
841         l3fwd_hash_params.socket_id = socketid;
842         l3fwd_lookup_struct[socketid] = rte_hash_create(&l3fwd_hash_params);
843         if (l3fwd_lookup_struct[socketid] == NULL)
844                 rte_exit(EXIT_FAILURE, "Unable to create the l3fwd hash on "
845                                 "socket %d\n", socketid);
846
847         /* populate the hash */
848         for (i = 0; i < L3FWD_NUM_ROUTES; i++) {
849                 ret = rte_hash_add_key (l3fwd_lookup_struct[socketid],
850                                 (void *) &l3fwd_route_array[i].key);
851                 if (ret < 0) {
852                         rte_exit(EXIT_FAILURE, "Unable to add entry %u to the"
853                                 "l3fwd hash on socket %d\n", i, socketid);
854                 }
855                 l3fwd_out_if[ret] = l3fwd_route_array[i].if_out;
856                 printf("Hash: Adding key\n");
857                 print_key(l3fwd_route_array[i].key);
858         }
859 }
860 #endif
861
862 #if (APP_LOOKUP_METHOD == APP_LOOKUP_LPM)
863 static void
864 setup_lpm(int socketid)
865 {
866         unsigned i;
867         int ret;
868         char s[64];
869
870         struct rte_lpm_config lpm_ipv4_config;
871
872         lpm_ipv4_config.max_rules = L3FWD_LPM_MAX_RULES;
873         lpm_ipv4_config.number_tbl8s = 256;
874         lpm_ipv4_config.flags = 0;
875
876         /* create the LPM table */
877         snprintf(s, sizeof(s), "L3FWD_LPM_%d", socketid);
878         l3fwd_lookup_struct[socketid] =
879                         rte_lpm_create(s, socketid, &lpm_ipv4_config);
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);
883
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);
890
891                 if (ret < 0) {
892                         rte_exit(EXIT_FAILURE, "Unable to add entry %u to the "
893                                 "l3fwd LPM table on socket %d\n",
894                                 i, socketid);
895                 }
896
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);
901         }
902 }
903 #endif
904
905 static int
906 init_mem(unsigned nb_mbuf)
907 {
908         struct lcore_conf *qconf;
909         int socketid;
910         unsigned lcore_id;
911         char s[64];
912
913         for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
914                 if (rte_lcore_is_enabled(lcore_id) == 0)
915                         continue;
916
917                 if (numa_on)
918                         socketid = rte_lcore_to_socket_id(lcore_id);
919                 else
920                         socketid = 0;
921
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);
925                 }
926                 if (pktmbuf_pool[socketid] == NULL) {
927                         snprintf(s, sizeof(s), "mbuf_pool_%d", socketid);
928                         pktmbuf_pool[socketid] = rte_pktmbuf_pool_create(s,
929                                 nb_mbuf, MEMPOOL_CACHE_SIZE, 0,
930                                 RTE_MBUF_DEFAULT_BUF_SIZE, socketid);
931                         if (pktmbuf_pool[socketid] == NULL)
932                                 rte_exit(EXIT_FAILURE, "Cannot init mbuf pool on socket %d\n", socketid);
933                         else
934                                 printf("Allocated mbuf pool on socket %d\n", socketid);
935
936 #if (APP_LOOKUP_METHOD == APP_LOOKUP_LPM)
937                         setup_lpm(socketid);
938 #else
939                         setup_hash(socketid);
940 #endif
941                 }
942                 qconf = &lcore_conf[lcore_id];
943                 qconf->lookup_struct = l3fwd_lookup_struct[socketid];
944         }
945         return 0;
946 }
947
948 int
949 main(int argc, char **argv)
950 {
951         struct lcore_conf *qconf;
952         struct rte_eth_dev_info dev_info;
953         struct rte_eth_txconf *txconf;
954         int ret;
955         unsigned nb_ports;
956         uint16_t queueid;
957         unsigned lcore_id;
958         uint32_t nb_lcores;
959         uint16_t n_tx_queue;
960         uint8_t portid, nb_rx_queue, queue, socketid;
961
962         signal(SIGINT, signal_handler);
963         /* init EAL */
964         ret = rte_eal_init(argc, argv);
965         if (ret < 0)
966                 rte_exit(EXIT_FAILURE, "Invalid EAL parameters\n");
967         argc -= ret;
968         argv += ret;
969
970         /* parse application arguments (after the EAL ones) */
971         ret = parse_args(argc, argv);
972         if (ret < 0)
973                 rte_exit(EXIT_FAILURE, "Invalid L3FWD-VF parameters\n");
974
975         if (check_lcore_params() < 0)
976                 rte_exit(EXIT_FAILURE, "check_lcore_params failed\n");
977
978         ret = init_lcore_rx_queues();
979         if (ret < 0)
980                 rte_exit(EXIT_FAILURE, "init_lcore_rx_queues failed\n");
981
982         nb_ports = rte_eth_dev_count();
983
984         if (check_port_config(nb_ports) < 0)
985                 rte_exit(EXIT_FAILURE, "check_port_config failed\n");
986
987         nb_lcores = rte_lcore_count();
988
989         /* initialize all ports */
990         for (portid = 0; portid < nb_ports; portid++) {
991                 /* skip ports that are not enabled */
992                 if ((enabled_port_mask & (1 << portid)) == 0) {
993                         printf("\nSkipping disabled port %d\n", portid);
994                         continue;
995                 }
996
997                 /* init port */
998                 printf("Initializing port %d ... ", portid );
999                 fflush(stdout);
1000
1001                 /* must always equal(=1) */
1002                 nb_rx_queue = get_port_n_rx_queues(portid);
1003                 n_tx_queue = MAX_TX_QUEUE_PER_PORT;
1004
1005                 printf("Creating queues: nb_rxq=%d nb_txq=%u... ",
1006                         nb_rx_queue, (unsigned)1 );
1007                 ret = rte_eth_dev_configure(portid, nb_rx_queue, n_tx_queue, &port_conf);
1008                 if (ret < 0)
1009                         rte_exit(EXIT_FAILURE, "Cannot configure device: err=%d, port=%d\n",
1010                                 ret, portid);
1011
1012                 ret = rte_eth_dev_adjust_nb_rx_tx_desc(portid, &nb_rxd,
1013                                                        &nb_txd);
1014                 if (ret < 0)
1015                         rte_exit(EXIT_FAILURE,
1016                                  "Cannot adjust number of descriptors: err=%d, port=%d\n",
1017                                  ret, portid);
1018
1019                 rte_eth_macaddr_get(portid, &ports_eth_addr[portid]);
1020                 print_ethaddr(" Address:", &ports_eth_addr[portid]);
1021                 printf(", ");
1022
1023                 ret = init_mem(NB_MBUF);
1024                 if (ret < 0)
1025                         rte_exit(EXIT_FAILURE, "init_mem failed\n");
1026
1027                 /* init one TX queue */
1028                 socketid = (uint8_t)rte_lcore_to_socket_id(rte_get_master_lcore());
1029
1030                 printf("txq=%d,%d,%d ", portid, 0, socketid);
1031                 fflush(stdout);
1032
1033                 rte_eth_dev_info_get(portid, &dev_info);
1034                 txconf = &dev_info.default_txconf;
1035                 if (port_conf.rxmode.jumbo_frame)
1036                         txconf->txq_flags = 0;
1037                 ret = rte_eth_tx_queue_setup(portid, 0, nb_txd,
1038                                                  socketid, txconf);
1039                 if (ret < 0)
1040                         rte_exit(EXIT_FAILURE, "rte_eth_tx_queue_setup: err=%d, "
1041                                 "port=%d\n", ret, portid);
1042
1043                 printf("\n");
1044         }
1045
1046         for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
1047                 if (rte_lcore_is_enabled(lcore_id) == 0)
1048                         continue;
1049                 qconf = &lcore_conf[lcore_id];
1050                 qconf->tx_queue_id = 0;
1051
1052                 printf("\nInitializing rx queues on lcore %u ... ", lcore_id );
1053                 fflush(stdout);
1054                 /* init RX queues */
1055                 for(queue = 0; queue < qconf->n_rx_queue; ++queue) {
1056                         portid = qconf->rx_queue_list[queue].port_id;
1057                         queueid = qconf->rx_queue_list[queue].queue_id;
1058
1059                         if (numa_on)
1060                                 socketid = (uint8_t)rte_lcore_to_socket_id(lcore_id);
1061                         else
1062                                 socketid = 0;
1063
1064                         printf("rxq=%d,%d,%d ", portid, queueid, socketid);
1065                         fflush(stdout);
1066
1067                         ret = rte_eth_rx_queue_setup(portid, queueid, nb_rxd,
1068                                                 socketid, NULL,
1069                                                 pktmbuf_pool[socketid]);
1070                         if (ret < 0)
1071                                 rte_exit(EXIT_FAILURE, "rte_eth_rx_queue_setup: err=%d,"
1072                                                 "port=%d\n", ret, portid);
1073                 }
1074         }
1075         printf("\n");
1076
1077         /* start ports */
1078         for (portid = 0; portid < nb_ports; portid++) {
1079                 if ((enabled_port_mask & (1 << portid)) == 0) {
1080                         continue;
1081                 }
1082                 /* Start device */
1083                 ret = rte_eth_dev_start(portid);
1084                 if (ret < 0)
1085                         rte_exit(EXIT_FAILURE, "rte_eth_dev_start: err=%d, port=%d\n",
1086                                 ret, portid);
1087
1088                 printf("done: Port %d\n", portid);
1089
1090         }
1091
1092         /* launch per-lcore init on every lcore */
1093         rte_eal_mp_remote_launch(main_loop, NULL, CALL_MASTER);
1094         RTE_LCORE_FOREACH_SLAVE(lcore_id) {
1095                 if (rte_eal_wait_lcore(lcore_id) < 0)
1096                         return -1;
1097         }
1098
1099         return 0;
1100 }