examples/l3fwd-power: fix Rx without interrupt
[dpdk.git] / examples / l3fwd-power / main.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2016 Intel Corporation
3  */
4
5 #include <stdio.h>
6 #include <stdlib.h>
7 #include <stdint.h>
8 #include <inttypes.h>
9 #include <sys/types.h>
10 #include <string.h>
11 #include <sys/queue.h>
12 #include <stdarg.h>
13 #include <errno.h>
14 #include <getopt.h>
15 #include <unistd.h>
16 #include <signal.h>
17
18 #include <rte_common.h>
19 #include <rte_byteorder.h>
20 #include <rte_log.h>
21 #include <rte_malloc.h>
22 #include <rte_memory.h>
23 #include <rte_memcpy.h>
24 #include <rte_eal.h>
25 #include <rte_launch.h>
26 #include <rte_atomic.h>
27 #include <rte_cycles.h>
28 #include <rte_prefetch.h>
29 #include <rte_lcore.h>
30 #include <rte_per_lcore.h>
31 #include <rte_branch_prediction.h>
32 #include <rte_interrupts.h>
33 #include <rte_random.h>
34 #include <rte_debug.h>
35 #include <rte_ether.h>
36 #include <rte_ethdev.h>
37 #include <rte_mempool.h>
38 #include <rte_mbuf.h>
39 #include <rte_ip.h>
40 #include <rte_tcp.h>
41 #include <rte_udp.h>
42 #include <rte_string_fns.h>
43 #include <rte_timer.h>
44 #include <rte_power.h>
45 #include <rte_spinlock.h>
46
47 #define RTE_LOGTYPE_L3FWD_POWER RTE_LOGTYPE_USER1
48
49 #define MAX_PKT_BURST 32
50
51 #define MIN_ZERO_POLL_COUNT 10
52
53 /* around 100ms at 2 Ghz */
54 #define TIMER_RESOLUTION_CYCLES           200000000ULL
55 /* 100 ms interval */
56 #define TIMER_NUMBER_PER_SECOND           10
57 /* 100000 us */
58 #define SCALING_PERIOD                    (1000000/TIMER_NUMBER_PER_SECOND)
59 #define SCALING_DOWN_TIME_RATIO_THRESHOLD 0.25
60
61 #define APP_LOOKUP_EXACT_MATCH          0
62 #define APP_LOOKUP_LPM                  1
63 #define DO_RFC_1812_CHECKS
64
65 #ifndef APP_LOOKUP_METHOD
66 #define APP_LOOKUP_METHOD             APP_LOOKUP_LPM
67 #endif
68
69 #if (APP_LOOKUP_METHOD == APP_LOOKUP_EXACT_MATCH)
70 #include <rte_hash.h>
71 #elif (APP_LOOKUP_METHOD == APP_LOOKUP_LPM)
72 #include <rte_lpm.h>
73 #else
74 #error "APP_LOOKUP_METHOD set to incorrect value"
75 #endif
76
77 #ifndef IPv6_BYTES
78 #define IPv6_BYTES_FMT "%02x%02x:%02x%02x:%02x%02x:%02x%02x:"\
79                        "%02x%02x:%02x%02x:%02x%02x:%02x%02x"
80 #define IPv6_BYTES(addr) \
81         addr[0],  addr[1], addr[2],  addr[3], \
82         addr[4],  addr[5], addr[6],  addr[7], \
83         addr[8],  addr[9], addr[10], addr[11],\
84         addr[12], addr[13],addr[14], addr[15]
85 #endif
86
87 #define MAX_JUMBO_PKT_LEN  9600
88
89 #define IPV6_ADDR_LEN 16
90
91 #define MEMPOOL_CACHE_SIZE 256
92
93 /*
94  * This expression is used to calculate the number of mbufs needed depending on
95  * user input, taking into account memory for rx and tx hardware rings, cache
96  * per lcore and mtable per port per lcore. RTE_MAX is used to ensure that
97  * NB_MBUF never goes below a minimum value of 8192.
98  */
99
100 #define NB_MBUF RTE_MAX ( \
101         (nb_ports*nb_rx_queue*nb_rxd + \
102         nb_ports*nb_lcores*MAX_PKT_BURST + \
103         nb_ports*n_tx_queue*nb_txd + \
104         nb_lcores*MEMPOOL_CACHE_SIZE), \
105         (unsigned)8192)
106
107 #define BURST_TX_DRAIN_US 100 /* TX drain every ~100us */
108
109 #define NB_SOCKETS 8
110
111 /* Configure how many packets ahead to prefetch, when reading packets */
112 #define PREFETCH_OFFSET 3
113
114 /*
115  * Configurable number of RX/TX ring descriptors
116  */
117 #define RTE_TEST_RX_DESC_DEFAULT 512
118 #define RTE_TEST_TX_DESC_DEFAULT 512
119 static uint16_t nb_rxd = RTE_TEST_RX_DESC_DEFAULT;
120 static uint16_t nb_txd = RTE_TEST_TX_DESC_DEFAULT;
121
122 /* ethernet addresses of ports */
123 static struct ether_addr ports_eth_addr[RTE_MAX_ETHPORTS];
124
125 /* ethernet addresses of ports */
126 static rte_spinlock_t locks[RTE_MAX_ETHPORTS];
127
128 /* mask of enabled ports */
129 static uint32_t enabled_port_mask = 0;
130 /* Ports set in promiscuous mode off by default. */
131 static int promiscuous_on = 0;
132 /* NUMA is enabled by default. */
133 static int numa_on = 1;
134 static int parse_ptype; /**< Parse packet type using rx callback, and */
135                         /**< disabled by default */
136
137 enum freq_scale_hint_t
138 {
139         FREQ_LOWER    =      -1,
140         FREQ_CURRENT  =       0,
141         FREQ_HIGHER   =       1,
142         FREQ_HIGHEST  =       2
143 };
144
145 struct lcore_rx_queue {
146         uint16_t port_id;
147         uint8_t queue_id;
148         enum freq_scale_hint_t freq_up_hint;
149         uint32_t zero_rx_packet_count;
150         uint32_t idle_hint;
151 } __rte_cache_aligned;
152
153 #define MAX_RX_QUEUE_PER_LCORE 16
154 #define MAX_TX_QUEUE_PER_PORT RTE_MAX_ETHPORTS
155 #define MAX_RX_QUEUE_PER_PORT 128
156
157 #define MAX_RX_QUEUE_INTERRUPT_PER_PORT 16
158
159
160 #define MAX_LCORE_PARAMS 1024
161 struct lcore_params {
162         uint16_t port_id;
163         uint8_t queue_id;
164         uint8_t lcore_id;
165 } __rte_cache_aligned;
166
167 static struct lcore_params lcore_params_array[MAX_LCORE_PARAMS];
168 static struct lcore_params lcore_params_array_default[] = {
169         {0, 0, 2},
170         {0, 1, 2},
171         {0, 2, 2},
172         {1, 0, 2},
173         {1, 1, 2},
174         {1, 2, 2},
175         {2, 0, 2},
176         {3, 0, 3},
177         {3, 1, 3},
178 };
179
180 static struct lcore_params * lcore_params = lcore_params_array_default;
181 static uint16_t nb_lcore_params = sizeof(lcore_params_array_default) /
182                                 sizeof(lcore_params_array_default[0]);
183
184 static struct rte_eth_conf port_conf = {
185         .rxmode = {
186                 .mq_mode        = ETH_MQ_RX_RSS,
187                 .max_rx_pkt_len = ETHER_MAX_LEN,
188                 .split_hdr_size = 0,
189                 .header_split   = 0, /**< Header Split disabled */
190                 .hw_ip_checksum = 1, /**< IP checksum offload enabled */
191                 .hw_vlan_filter = 0, /**< VLAN filtering disabled */
192                 .jumbo_frame    = 0, /**< Jumbo Frame Support disabled */
193                 .hw_strip_crc   = 1, /**< CRC stripped by hardware */
194         },
195         .rx_adv_conf = {
196                 .rss_conf = {
197                         .rss_key = NULL,
198                         .rss_hf = ETH_RSS_UDP,
199                 },
200         },
201         .txmode = {
202                 .mq_mode = ETH_MQ_TX_NONE,
203         },
204         .intr_conf = {
205                 .lsc = 1,
206                 .rxq = 1,
207         },
208 };
209
210 static struct rte_mempool * pktmbuf_pool[NB_SOCKETS];
211
212
213 #if (APP_LOOKUP_METHOD == APP_LOOKUP_EXACT_MATCH)
214
215 #ifdef RTE_ARCH_X86
216 #include <rte_hash_crc.h>
217 #define DEFAULT_HASH_FUNC       rte_hash_crc
218 #else
219 #include <rte_jhash.h>
220 #define DEFAULT_HASH_FUNC       rte_jhash
221 #endif
222
223 struct ipv4_5tuple {
224         uint32_t ip_dst;
225         uint32_t ip_src;
226         uint16_t port_dst;
227         uint16_t port_src;
228         uint8_t  proto;
229 } __attribute__((__packed__));
230
231 struct ipv6_5tuple {
232         uint8_t  ip_dst[IPV6_ADDR_LEN];
233         uint8_t  ip_src[IPV6_ADDR_LEN];
234         uint16_t port_dst;
235         uint16_t port_src;
236         uint8_t  proto;
237 } __attribute__((__packed__));
238
239 struct ipv4_l3fwd_route {
240         struct ipv4_5tuple key;
241         uint8_t if_out;
242 };
243
244 struct ipv6_l3fwd_route {
245         struct ipv6_5tuple key;
246         uint8_t if_out;
247 };
248
249 static struct ipv4_l3fwd_route ipv4_l3fwd_route_array[] = {
250         {{IPv4(100,10,0,1), IPv4(200,10,0,1), 101, 11, IPPROTO_TCP}, 0},
251         {{IPv4(100,20,0,2), IPv4(200,20,0,2), 102, 12, IPPROTO_TCP}, 1},
252         {{IPv4(100,30,0,3), IPv4(200,30,0,3), 103, 13, IPPROTO_TCP}, 2},
253         {{IPv4(100,40,0,4), IPv4(200,40,0,4), 104, 14, IPPROTO_TCP}, 3},
254 };
255
256 static struct ipv6_l3fwd_route ipv6_l3fwd_route_array[] = {
257         {
258                 {
259                         {0xfe, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
260                          0x02, 0x1b, 0x21, 0xff, 0xfe, 0x91, 0x38, 0x05},
261                         {0xfe, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
262                          0x02, 0x1e, 0x67, 0xff, 0xfe, 0x0d, 0xb6, 0x0a},
263                          1, 10, IPPROTO_UDP
264                 }, 4
265         },
266 };
267
268 typedef struct rte_hash lookup_struct_t;
269 static lookup_struct_t *ipv4_l3fwd_lookup_struct[NB_SOCKETS];
270 static lookup_struct_t *ipv6_l3fwd_lookup_struct[NB_SOCKETS];
271
272 #define L3FWD_HASH_ENTRIES      1024
273
274 #define IPV4_L3FWD_NUM_ROUTES \
275         (sizeof(ipv4_l3fwd_route_array) / sizeof(ipv4_l3fwd_route_array[0]))
276
277 #define IPV6_L3FWD_NUM_ROUTES \
278         (sizeof(ipv6_l3fwd_route_array) / sizeof(ipv6_l3fwd_route_array[0]))
279
280 static uint16_t ipv4_l3fwd_out_if[L3FWD_HASH_ENTRIES] __rte_cache_aligned;
281 static uint16_t ipv6_l3fwd_out_if[L3FWD_HASH_ENTRIES] __rte_cache_aligned;
282 #endif
283
284 #if (APP_LOOKUP_METHOD == APP_LOOKUP_LPM)
285 struct ipv4_l3fwd_route {
286         uint32_t ip;
287         uint8_t  depth;
288         uint8_t  if_out;
289 };
290
291 static struct ipv4_l3fwd_route ipv4_l3fwd_route_array[] = {
292         {IPv4(1,1,1,0), 24, 0},
293         {IPv4(2,1,1,0), 24, 1},
294         {IPv4(3,1,1,0), 24, 2},
295         {IPv4(4,1,1,0), 24, 3},
296         {IPv4(5,1,1,0), 24, 4},
297         {IPv4(6,1,1,0), 24, 5},
298         {IPv4(7,1,1,0), 24, 6},
299         {IPv4(8,1,1,0), 24, 7},
300 };
301
302 #define IPV4_L3FWD_NUM_ROUTES \
303         (sizeof(ipv4_l3fwd_route_array) / sizeof(ipv4_l3fwd_route_array[0]))
304
305 #define IPV4_L3FWD_LPM_MAX_RULES     1024
306
307 typedef struct rte_lpm lookup_struct_t;
308 static lookup_struct_t *ipv4_l3fwd_lookup_struct[NB_SOCKETS];
309 #endif
310
311 struct lcore_conf {
312         uint16_t n_rx_queue;
313         struct lcore_rx_queue rx_queue_list[MAX_RX_QUEUE_PER_LCORE];
314         uint16_t n_tx_port;
315         uint16_t tx_port_id[RTE_MAX_ETHPORTS];
316         uint16_t tx_queue_id[RTE_MAX_ETHPORTS];
317         struct rte_eth_dev_tx_buffer *tx_buffer[RTE_MAX_ETHPORTS];
318         lookup_struct_t * ipv4_lookup_struct;
319         lookup_struct_t * ipv6_lookup_struct;
320 } __rte_cache_aligned;
321
322 struct lcore_stats {
323         /* total sleep time in ms since last frequency scaling down */
324         uint32_t sleep_time;
325         /* number of long sleep recently */
326         uint32_t nb_long_sleep;
327         /* freq. scaling up trend */
328         uint32_t trend;
329         /* total packet processed recently */
330         uint64_t nb_rx_processed;
331         /* total iterations looped recently */
332         uint64_t nb_iteration_looped;
333         uint32_t padding[9];
334 } __rte_cache_aligned;
335
336 static struct lcore_conf lcore_conf[RTE_MAX_LCORE] __rte_cache_aligned;
337 static struct lcore_stats stats[RTE_MAX_LCORE] __rte_cache_aligned;
338 static struct rte_timer power_timers[RTE_MAX_LCORE];
339
340 static inline uint32_t power_idle_heuristic(uint32_t zero_rx_packet_count);
341 static inline enum freq_scale_hint_t power_freq_scaleup_heuristic( \
342                 unsigned int lcore_id, uint16_t port_id, uint16_t queue_id);
343
344 /* exit signal handler */
345 static void
346 signal_exit_now(int sigtype)
347 {
348         unsigned lcore_id;
349         unsigned int portid, nb_ports;
350         int ret;
351
352         if (sigtype == SIGINT) {
353                 for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
354                         if (rte_lcore_is_enabled(lcore_id) == 0)
355                                 continue;
356
357                         /* init power management library */
358                         ret = rte_power_exit(lcore_id);
359                         if (ret)
360                                 rte_exit(EXIT_FAILURE, "Power management "
361                                         "library de-initialization failed on "
362                                                         "core%u\n", lcore_id);
363                 }
364
365                 nb_ports = rte_eth_dev_count();
366                 for (portid = 0; portid < nb_ports; portid++) {
367                         if ((enabled_port_mask & (1 << portid)) == 0)
368                                 continue;
369
370                         rte_eth_dev_stop(portid);
371                         rte_eth_dev_close(portid);
372                 }
373         }
374
375         rte_exit(EXIT_SUCCESS, "User forced exit\n");
376 }
377
378 /*  Freqency scale down timer callback */
379 static void
380 power_timer_cb(__attribute__((unused)) struct rte_timer *tim,
381                           __attribute__((unused)) void *arg)
382 {
383         uint64_t hz;
384         float sleep_time_ratio;
385         unsigned lcore_id = rte_lcore_id();
386
387         /* accumulate total execution time in us when callback is invoked */
388         sleep_time_ratio = (float)(stats[lcore_id].sleep_time) /
389                                         (float)SCALING_PERIOD;
390         /**
391          * check whether need to scale down frequency a step if it sleep a lot.
392          */
393         if (sleep_time_ratio >= SCALING_DOWN_TIME_RATIO_THRESHOLD) {
394                 if (rte_power_freq_down)
395                         rte_power_freq_down(lcore_id);
396         }
397         else if ( (unsigned)(stats[lcore_id].nb_rx_processed /
398                 stats[lcore_id].nb_iteration_looped) < MAX_PKT_BURST) {
399                 /**
400                  * scale down a step if average packet per iteration less
401                  * than expectation.
402                  */
403                 if (rte_power_freq_down)
404                         rte_power_freq_down(lcore_id);
405         }
406
407         /**
408          * initialize another timer according to current frequency to ensure
409          * timer interval is relatively fixed.
410          */
411         hz = rte_get_timer_hz();
412         rte_timer_reset(&power_timers[lcore_id], hz/TIMER_NUMBER_PER_SECOND,
413                                 SINGLE, lcore_id, power_timer_cb, NULL);
414
415         stats[lcore_id].nb_rx_processed = 0;
416         stats[lcore_id].nb_iteration_looped = 0;
417
418         stats[lcore_id].sleep_time = 0;
419 }
420
421 /* Enqueue a single packet, and send burst if queue is filled */
422 static inline int
423 send_single_packet(struct rte_mbuf *m, uint16_t port)
424 {
425         uint32_t lcore_id;
426         struct lcore_conf *qconf;
427
428         lcore_id = rte_lcore_id();
429         qconf = &lcore_conf[lcore_id];
430
431         rte_eth_tx_buffer(port, qconf->tx_queue_id[port],
432                         qconf->tx_buffer[port], m);
433
434         return 0;
435 }
436
437 #ifdef DO_RFC_1812_CHECKS
438 static inline int
439 is_valid_ipv4_pkt(struct ipv4_hdr *pkt, uint32_t link_len)
440 {
441         /* From http://www.rfc-editor.org/rfc/rfc1812.txt section 5.2.2 */
442         /*
443          * 1. The packet length reported by the Link Layer must be large
444          * enough to hold the minimum length legal IP datagram (20 bytes).
445          */
446         if (link_len < sizeof(struct ipv4_hdr))
447                 return -1;
448
449         /* 2. The IP checksum must be correct. */
450         /* this is checked in H/W */
451
452         /*
453          * 3. The IP version number must be 4. If the version number is not 4
454          * then the packet may be another version of IP, such as IPng or
455          * ST-II.
456          */
457         if (((pkt->version_ihl) >> 4) != 4)
458                 return -3;
459         /*
460          * 4. The IP header length field must be large enough to hold the
461          * minimum length legal IP datagram (20 bytes = 5 words).
462          */
463         if ((pkt->version_ihl & 0xf) < 5)
464                 return -4;
465
466         /*
467          * 5. The IP total length field must be large enough to hold the IP
468          * datagram header, whose length is specified in the IP header length
469          * field.
470          */
471         if (rte_cpu_to_be_16(pkt->total_length) < sizeof(struct ipv4_hdr))
472                 return -5;
473
474         return 0;
475 }
476 #endif
477
478 #if (APP_LOOKUP_METHOD == APP_LOOKUP_EXACT_MATCH)
479 static void
480 print_ipv4_key(struct ipv4_5tuple key)
481 {
482         printf("IP dst = %08x, IP src = %08x, port dst = %d, port src = %d, "
483                 "proto = %d\n", (unsigned)key.ip_dst, (unsigned)key.ip_src,
484                                 key.port_dst, key.port_src, key.proto);
485 }
486 static void
487 print_ipv6_key(struct ipv6_5tuple key)
488 {
489         printf( "IP dst = " IPv6_BYTES_FMT ", IP src = " IPv6_BYTES_FMT ", "
490                 "port dst = %d, port src = %d, proto = %d\n",
491                 IPv6_BYTES(key.ip_dst), IPv6_BYTES(key.ip_src),
492                 key.port_dst, key.port_src, key.proto);
493 }
494
495 static inline uint16_t
496 get_ipv4_dst_port(struct ipv4_hdr *ipv4_hdr, uint16_t portid,
497                 lookup_struct_t * ipv4_l3fwd_lookup_struct)
498 {
499         struct ipv4_5tuple key;
500         struct tcp_hdr *tcp;
501         struct udp_hdr *udp;
502         int ret = 0;
503
504         key.ip_dst = rte_be_to_cpu_32(ipv4_hdr->dst_addr);
505         key.ip_src = rte_be_to_cpu_32(ipv4_hdr->src_addr);
506         key.proto = ipv4_hdr->next_proto_id;
507
508         switch (ipv4_hdr->next_proto_id) {
509         case IPPROTO_TCP:
510                 tcp = (struct tcp_hdr *)((unsigned char *)ipv4_hdr +
511                                         sizeof(struct ipv4_hdr));
512                 key.port_dst = rte_be_to_cpu_16(tcp->dst_port);
513                 key.port_src = rte_be_to_cpu_16(tcp->src_port);
514                 break;
515
516         case IPPROTO_UDP:
517                 udp = (struct udp_hdr *)((unsigned char *)ipv4_hdr +
518                                         sizeof(struct ipv4_hdr));
519                 key.port_dst = rte_be_to_cpu_16(udp->dst_port);
520                 key.port_src = rte_be_to_cpu_16(udp->src_port);
521                 break;
522
523         default:
524                 key.port_dst = 0;
525                 key.port_src = 0;
526                 break;
527         }
528
529         /* Find destination port */
530         ret = rte_hash_lookup(ipv4_l3fwd_lookup_struct, (const void *)&key);
531         return ((ret < 0) ? portid : ipv4_l3fwd_out_if[ret]);
532 }
533
534 static inline uint16_t
535 get_ipv6_dst_port(struct ipv6_hdr *ipv6_hdr, uint16_t portid,
536                         lookup_struct_t *ipv6_l3fwd_lookup_struct)
537 {
538         struct ipv6_5tuple key;
539         struct tcp_hdr *tcp;
540         struct udp_hdr *udp;
541         int ret = 0;
542
543         memcpy(key.ip_dst, ipv6_hdr->dst_addr, IPV6_ADDR_LEN);
544         memcpy(key.ip_src, ipv6_hdr->src_addr, IPV6_ADDR_LEN);
545
546         key.proto = ipv6_hdr->proto;
547
548         switch (ipv6_hdr->proto) {
549         case IPPROTO_TCP:
550                 tcp = (struct tcp_hdr *)((unsigned char *) ipv6_hdr +
551                                         sizeof(struct ipv6_hdr));
552                 key.port_dst = rte_be_to_cpu_16(tcp->dst_port);
553                 key.port_src = rte_be_to_cpu_16(tcp->src_port);
554                 break;
555
556         case IPPROTO_UDP:
557                 udp = (struct udp_hdr *)((unsigned char *) ipv6_hdr +
558                                         sizeof(struct ipv6_hdr));
559                 key.port_dst = rte_be_to_cpu_16(udp->dst_port);
560                 key.port_src = rte_be_to_cpu_16(udp->src_port);
561                 break;
562
563         default:
564                 key.port_dst = 0;
565                 key.port_src = 0;
566                 break;
567         }
568
569         /* Find destination port */
570         ret = rte_hash_lookup(ipv6_l3fwd_lookup_struct, (const void *)&key);
571         return ((ret < 0) ? portid : ipv6_l3fwd_out_if[ret]);
572 }
573 #endif
574
575 #if (APP_LOOKUP_METHOD == APP_LOOKUP_LPM)
576 static inline uint16_t
577 get_ipv4_dst_port(struct ipv4_hdr *ipv4_hdr, uint16_t portid,
578                 lookup_struct_t *ipv4_l3fwd_lookup_struct)
579 {
580         uint32_t next_hop;
581
582         return ((rte_lpm_lookup(ipv4_l3fwd_lookup_struct,
583                         rte_be_to_cpu_32(ipv4_hdr->dst_addr), &next_hop) == 0)?
584                         next_hop : portid);
585 }
586 #endif
587
588 static inline void
589 parse_ptype_one(struct rte_mbuf *m)
590 {
591         struct ether_hdr *eth_hdr;
592         uint32_t packet_type = RTE_PTYPE_UNKNOWN;
593         uint16_t ether_type;
594
595         eth_hdr = rte_pktmbuf_mtod(m, struct ether_hdr *);
596         ether_type = eth_hdr->ether_type;
597         if (ether_type == rte_cpu_to_be_16(ETHER_TYPE_IPv4))
598                 packet_type |= RTE_PTYPE_L3_IPV4_EXT_UNKNOWN;
599         else if (ether_type == rte_cpu_to_be_16(ETHER_TYPE_IPv6))
600                 packet_type |= RTE_PTYPE_L3_IPV6_EXT_UNKNOWN;
601
602         m->packet_type = packet_type;
603 }
604
605 static uint16_t
606 cb_parse_ptype(uint16_t port __rte_unused, uint16_t queue __rte_unused,
607                struct rte_mbuf *pkts[], uint16_t nb_pkts,
608                uint16_t max_pkts __rte_unused,
609                void *user_param __rte_unused)
610 {
611         unsigned int i;
612
613         for (i = 0; i < nb_pkts; ++i)
614                 parse_ptype_one(pkts[i]);
615
616         return nb_pkts;
617 }
618
619 static int
620 add_cb_parse_ptype(uint16_t portid, uint16_t queueid)
621 {
622         printf("Port %d: softly parse packet type info\n", portid);
623         if (rte_eth_add_rx_callback(portid, queueid, cb_parse_ptype, NULL))
624                 return 0;
625
626         printf("Failed to add rx callback: port=%d\n", portid);
627         return -1;
628 }
629
630 static inline void
631 l3fwd_simple_forward(struct rte_mbuf *m, uint16_t portid,
632                                 struct lcore_conf *qconf)
633 {
634         struct ether_hdr *eth_hdr;
635         struct ipv4_hdr *ipv4_hdr;
636         void *d_addr_bytes;
637         uint16_t dst_port;
638
639         eth_hdr = rte_pktmbuf_mtod(m, struct ether_hdr *);
640
641         if (RTE_ETH_IS_IPV4_HDR(m->packet_type)) {
642                 /* Handle IPv4 headers.*/
643                 ipv4_hdr =
644                         rte_pktmbuf_mtod_offset(m, struct ipv4_hdr *,
645                                                 sizeof(struct ether_hdr));
646
647 #ifdef DO_RFC_1812_CHECKS
648                 /* Check to make sure the packet is valid (RFC1812) */
649                 if (is_valid_ipv4_pkt(ipv4_hdr, m->pkt_len) < 0) {
650                         rte_pktmbuf_free(m);
651                         return;
652                 }
653 #endif
654
655                 dst_port = get_ipv4_dst_port(ipv4_hdr, portid,
656                                         qconf->ipv4_lookup_struct);
657                 if (dst_port >= RTE_MAX_ETHPORTS ||
658                                 (enabled_port_mask & 1 << dst_port) == 0)
659                         dst_port = portid;
660
661                 /* 02:00:00:00:00:xx */
662                 d_addr_bytes = &eth_hdr->d_addr.addr_bytes[0];
663                 *((uint64_t *)d_addr_bytes) =
664                         0x000000000002 + ((uint64_t)dst_port << 40);
665
666 #ifdef DO_RFC_1812_CHECKS
667                 /* Update time to live and header checksum */
668                 --(ipv4_hdr->time_to_live);
669                 ++(ipv4_hdr->hdr_checksum);
670 #endif
671
672                 /* src addr */
673                 ether_addr_copy(&ports_eth_addr[dst_port], &eth_hdr->s_addr);
674
675                 send_single_packet(m, dst_port);
676         } else if (RTE_ETH_IS_IPV6_HDR(m->packet_type)) {
677                 /* Handle IPv6 headers.*/
678 #if (APP_LOOKUP_METHOD == APP_LOOKUP_EXACT_MATCH)
679                 struct ipv6_hdr *ipv6_hdr;
680
681                 ipv6_hdr =
682                         rte_pktmbuf_mtod_offset(m, struct ipv6_hdr *,
683                                                 sizeof(struct ether_hdr));
684
685                 dst_port = get_ipv6_dst_port(ipv6_hdr, portid,
686                                         qconf->ipv6_lookup_struct);
687
688                 if (dst_port >= RTE_MAX_ETHPORTS ||
689                                 (enabled_port_mask & 1 << dst_port) == 0)
690                         dst_port = portid;
691
692                 /* 02:00:00:00:00:xx */
693                 d_addr_bytes = &eth_hdr->d_addr.addr_bytes[0];
694                 *((uint64_t *)d_addr_bytes) =
695                         0x000000000002 + ((uint64_t)dst_port << 40);
696
697                 /* src addr */
698                 ether_addr_copy(&ports_eth_addr[dst_port], &eth_hdr->s_addr);
699
700                 send_single_packet(m, dst_port);
701 #else
702                 /* We don't currently handle IPv6 packets in LPM mode. */
703                 rte_pktmbuf_free(m);
704 #endif
705         } else
706                 rte_pktmbuf_free(m);
707
708 }
709
710 #define MINIMUM_SLEEP_TIME         1
711 #define SUSPEND_THRESHOLD          300
712
713 static inline uint32_t
714 power_idle_heuristic(uint32_t zero_rx_packet_count)
715 {
716         /* If zero count is less than 100,  sleep 1us */
717         if (zero_rx_packet_count < SUSPEND_THRESHOLD)
718                 return MINIMUM_SLEEP_TIME;
719         /* If zero count is less than 1000, sleep 100 us which is the
720                 minimum latency switching from C3/C6 to C0
721         */
722         else
723                 return SUSPEND_THRESHOLD;
724 }
725
726 static inline enum freq_scale_hint_t
727 power_freq_scaleup_heuristic(unsigned lcore_id,
728                              uint16_t port_id,
729                              uint16_t queue_id)
730 {
731 /**
732  * HW Rx queue size is 128 by default, Rx burst read at maximum 32 entries
733  * per iteration
734  */
735 #define FREQ_GEAR1_RX_PACKET_THRESHOLD             MAX_PKT_BURST
736 #define FREQ_GEAR2_RX_PACKET_THRESHOLD             (MAX_PKT_BURST*2)
737 #define FREQ_GEAR3_RX_PACKET_THRESHOLD             (MAX_PKT_BURST*3)
738 #define FREQ_UP_TREND1_ACC   1
739 #define FREQ_UP_TREND2_ACC   100
740 #define FREQ_UP_THRESHOLD    10000
741
742         if (likely(rte_eth_rx_descriptor_done(port_id, queue_id,
743                         FREQ_GEAR3_RX_PACKET_THRESHOLD) > 0)) {
744                 stats[lcore_id].trend = 0;
745                 return FREQ_HIGHEST;
746         } else if (likely(rte_eth_rx_descriptor_done(port_id, queue_id,
747                         FREQ_GEAR2_RX_PACKET_THRESHOLD) > 0))
748                 stats[lcore_id].trend += FREQ_UP_TREND2_ACC;
749         else if (likely(rte_eth_rx_descriptor_done(port_id, queue_id,
750                         FREQ_GEAR1_RX_PACKET_THRESHOLD) > 0))
751                 stats[lcore_id].trend += FREQ_UP_TREND1_ACC;
752
753         if (likely(stats[lcore_id].trend > FREQ_UP_THRESHOLD)) {
754                 stats[lcore_id].trend = 0;
755                 return FREQ_HIGHER;
756         }
757
758         return FREQ_CURRENT;
759 }
760
761 /**
762  * force polling thread sleep until one-shot rx interrupt triggers
763  * @param port_id
764  *  Port id.
765  * @param queue_id
766  *  Rx queue id.
767  * @return
768  *  0 on success
769  */
770 static int
771 sleep_until_rx_interrupt(int num)
772 {
773         struct rte_epoll_event event[num];
774         int n, i;
775         uint16_t port_id;
776         uint8_t queue_id;
777         void *data;
778
779         RTE_LOG(INFO, L3FWD_POWER,
780                 "lcore %u sleeps until interrupt triggers\n",
781                 rte_lcore_id());
782
783         n = rte_epoll_wait(RTE_EPOLL_PER_THREAD, event, num, -1);
784         for (i = 0; i < n; i++) {
785                 data = event[i].epdata.data;
786                 port_id = ((uintptr_t)data) >> CHAR_BIT;
787                 queue_id = ((uintptr_t)data) &
788                         RTE_LEN2MASK(CHAR_BIT, uint8_t);
789                 rte_eth_dev_rx_intr_disable(port_id, queue_id);
790                 RTE_LOG(INFO, L3FWD_POWER,
791                         "lcore %u is waked up from rx interrupt on"
792                         " port %d queue %d\n",
793                         rte_lcore_id(), port_id, queue_id);
794         }
795
796         return 0;
797 }
798
799 static void turn_on_intr(struct lcore_conf *qconf)
800 {
801         int i;
802         struct lcore_rx_queue *rx_queue;
803         uint8_t queue_id;
804         uint16_t port_id;
805
806         for (i = 0; i < qconf->n_rx_queue; ++i) {
807                 rx_queue = &(qconf->rx_queue_list[i]);
808                 port_id = rx_queue->port_id;
809                 queue_id = rx_queue->queue_id;
810
811                 rte_spinlock_lock(&(locks[port_id]));
812                 rte_eth_dev_rx_intr_enable(port_id, queue_id);
813                 rte_spinlock_unlock(&(locks[port_id]));
814         }
815 }
816
817 static int event_register(struct lcore_conf *qconf)
818 {
819         struct lcore_rx_queue *rx_queue;
820         uint8_t queueid;
821         uint16_t portid;
822         uint32_t data;
823         int ret;
824         int i;
825
826         for (i = 0; i < qconf->n_rx_queue; ++i) {
827                 rx_queue = &(qconf->rx_queue_list[i]);
828                 portid = rx_queue->port_id;
829                 queueid = rx_queue->queue_id;
830                 data = portid << CHAR_BIT | queueid;
831
832                 ret = rte_eth_dev_rx_intr_ctl_q(portid, queueid,
833                                                 RTE_EPOLL_PER_THREAD,
834                                                 RTE_INTR_EVENT_ADD,
835                                                 (void *)((uintptr_t)data));
836                 if (ret)
837                         return ret;
838         }
839
840         return 0;
841 }
842
843 /* main processing loop */
844 static int
845 main_loop(__attribute__((unused)) void *dummy)
846 {
847         struct rte_mbuf *pkts_burst[MAX_PKT_BURST];
848         unsigned lcore_id;
849         uint64_t prev_tsc, diff_tsc, cur_tsc;
850         uint64_t prev_tsc_power = 0, cur_tsc_power, diff_tsc_power;
851         int i, j, nb_rx;
852         uint8_t queueid;
853         uint16_t portid;
854         struct lcore_conf *qconf;
855         struct lcore_rx_queue *rx_queue;
856         enum freq_scale_hint_t lcore_scaleup_hint;
857         uint32_t lcore_rx_idle_count = 0;
858         uint32_t lcore_idle_hint = 0;
859         int intr_en = 0;
860
861         const uint64_t drain_tsc = (rte_get_tsc_hz() + US_PER_S - 1) / US_PER_S * BURST_TX_DRAIN_US;
862
863         prev_tsc = 0;
864
865         lcore_id = rte_lcore_id();
866         qconf = &lcore_conf[lcore_id];
867
868         if (qconf->n_rx_queue == 0) {
869                 RTE_LOG(INFO, L3FWD_POWER, "lcore %u has nothing to do\n", lcore_id);
870                 return 0;
871         }
872
873         RTE_LOG(INFO, L3FWD_POWER, "entering main loop on lcore %u\n", lcore_id);
874
875         for (i = 0; i < qconf->n_rx_queue; i++) {
876                 portid = qconf->rx_queue_list[i].port_id;
877                 queueid = qconf->rx_queue_list[i].queue_id;
878                 RTE_LOG(INFO, L3FWD_POWER, " -- lcoreid=%u portid=%u "
879                         "rxqueueid=%hhu\n", lcore_id, portid, queueid);
880         }
881
882         /* add into event wait list */
883         if (event_register(qconf) == 0)
884                 intr_en = 1;
885         else
886                 RTE_LOG(INFO, L3FWD_POWER, "RX interrupt won't enable.\n");
887
888         while (1) {
889                 stats[lcore_id].nb_iteration_looped++;
890
891                 cur_tsc = rte_rdtsc();
892                 cur_tsc_power = cur_tsc;
893
894                 /*
895                  * TX burst queue drain
896                  */
897                 diff_tsc = cur_tsc - prev_tsc;
898                 if (unlikely(diff_tsc > drain_tsc)) {
899                         for (i = 0; i < qconf->n_tx_port; ++i) {
900                                 portid = qconf->tx_port_id[i];
901                                 rte_eth_tx_buffer_flush(portid,
902                                                 qconf->tx_queue_id[portid],
903                                                 qconf->tx_buffer[portid]);
904                         }
905                         prev_tsc = cur_tsc;
906                 }
907
908                 diff_tsc_power = cur_tsc_power - prev_tsc_power;
909                 if (diff_tsc_power > TIMER_RESOLUTION_CYCLES) {
910                         rte_timer_manage();
911                         prev_tsc_power = cur_tsc_power;
912                 }
913
914 start_rx:
915                 /*
916                  * Read packet from RX queues
917                  */
918                 lcore_scaleup_hint = FREQ_CURRENT;
919                 lcore_rx_idle_count = 0;
920                 for (i = 0; i < qconf->n_rx_queue; ++i) {
921                         rx_queue = &(qconf->rx_queue_list[i]);
922                         rx_queue->idle_hint = 0;
923                         portid = rx_queue->port_id;
924                         queueid = rx_queue->queue_id;
925
926                         nb_rx = rte_eth_rx_burst(portid, queueid, pkts_burst,
927                                                                 MAX_PKT_BURST);
928
929                         stats[lcore_id].nb_rx_processed += nb_rx;
930                         if (unlikely(nb_rx == 0)) {
931                                 /**
932                                  * no packet received from rx queue, try to
933                                  * sleep for a while forcing CPU enter deeper
934                                  * C states.
935                                  */
936                                 rx_queue->zero_rx_packet_count++;
937
938                                 if (rx_queue->zero_rx_packet_count <=
939                                                         MIN_ZERO_POLL_COUNT)
940                                         continue;
941
942                                 rx_queue->idle_hint = power_idle_heuristic(\
943                                         rx_queue->zero_rx_packet_count);
944                                 lcore_rx_idle_count++;
945                         } else {
946                                 rx_queue->zero_rx_packet_count = 0;
947
948                                 /**
949                                  * do not scale up frequency immediately as
950                                  * user to kernel space communication is costly
951                                  * which might impact packet I/O for received
952                                  * packets.
953                                  */
954                                 rx_queue->freq_up_hint =
955                                         power_freq_scaleup_heuristic(lcore_id,
956                                                         portid, queueid);
957                         }
958
959                         /* Prefetch first packets */
960                         for (j = 0; j < PREFETCH_OFFSET && j < nb_rx; j++) {
961                                 rte_prefetch0(rte_pktmbuf_mtod(
962                                                 pkts_burst[j], void *));
963                         }
964
965                         /* Prefetch and forward already prefetched packets */
966                         for (j = 0; j < (nb_rx - PREFETCH_OFFSET); j++) {
967                                 rte_prefetch0(rte_pktmbuf_mtod(pkts_burst[
968                                                 j + PREFETCH_OFFSET], void *));
969                                 l3fwd_simple_forward(pkts_burst[j], portid,
970                                                                 qconf);
971                         }
972
973                         /* Forward remaining prefetched packets */
974                         for (; j < nb_rx; j++) {
975                                 l3fwd_simple_forward(pkts_burst[j], portid,
976                                                                 qconf);
977                         }
978                 }
979
980                 if (likely(lcore_rx_idle_count != qconf->n_rx_queue)) {
981                         for (i = 1, lcore_scaleup_hint =
982                                 qconf->rx_queue_list[0].freq_up_hint;
983                                         i < qconf->n_rx_queue; ++i) {
984                                 rx_queue = &(qconf->rx_queue_list[i]);
985                                 if (rx_queue->freq_up_hint >
986                                                 lcore_scaleup_hint)
987                                         lcore_scaleup_hint =
988                                                 rx_queue->freq_up_hint;
989                         }
990
991                         if (lcore_scaleup_hint == FREQ_HIGHEST) {
992                                 if (rte_power_freq_max)
993                                         rte_power_freq_max(lcore_id);
994                         } else if (lcore_scaleup_hint == FREQ_HIGHER) {
995                                 if (rte_power_freq_up)
996                                         rte_power_freq_up(lcore_id);
997                         }
998                 } else {
999                         /**
1000                          * All Rx queues empty in recent consecutive polls,
1001                          * sleep in a conservative manner, meaning sleep as
1002                          * less as possible.
1003                          */
1004                         for (i = 1, lcore_idle_hint =
1005                                 qconf->rx_queue_list[0].idle_hint;
1006                                         i < qconf->n_rx_queue; ++i) {
1007                                 rx_queue = &(qconf->rx_queue_list[i]);
1008                                 if (rx_queue->idle_hint < lcore_idle_hint)
1009                                         lcore_idle_hint = rx_queue->idle_hint;
1010                         }
1011
1012                         if (lcore_idle_hint < SUSPEND_THRESHOLD)
1013                                 /**
1014                                  * execute "pause" instruction to avoid context
1015                                  * switch which generally take hundred of
1016                                  * microseconds for short sleep.
1017                                  */
1018                                 rte_delay_us(lcore_idle_hint);
1019                         else {
1020                                 /* suspend until rx interrupt trigges */
1021                                 if (intr_en) {
1022                                         turn_on_intr(qconf);
1023                                         sleep_until_rx_interrupt(
1024                                                 qconf->n_rx_queue);
1025                                         /**
1026                                          * start receiving packets immediately
1027                                          */
1028                                         goto start_rx;
1029                                 }
1030                         }
1031                         stats[lcore_id].sleep_time += lcore_idle_hint;
1032                 }
1033         }
1034 }
1035
1036 static int
1037 check_lcore_params(void)
1038 {
1039         uint8_t queue, lcore;
1040         uint16_t i;
1041         int socketid;
1042
1043         for (i = 0; i < nb_lcore_params; ++i) {
1044                 queue = lcore_params[i].queue_id;
1045                 if (queue >= MAX_RX_QUEUE_PER_PORT) {
1046                         printf("invalid queue number: %hhu\n", queue);
1047                         return -1;
1048                 }
1049                 lcore = lcore_params[i].lcore_id;
1050                 if (!rte_lcore_is_enabled(lcore)) {
1051                         printf("error: lcore %hhu is not enabled in lcore "
1052                                                         "mask\n", lcore);
1053                         return -1;
1054                 }
1055                 if ((socketid = rte_lcore_to_socket_id(lcore) != 0) &&
1056                                                         (numa_on == 0)) {
1057                         printf("warning: lcore %hhu is on socket %d with numa "
1058                                                 "off\n", lcore, socketid);
1059                 }
1060         }
1061         return 0;
1062 }
1063
1064 static int
1065 check_port_config(const unsigned nb_ports)
1066 {
1067         unsigned portid;
1068         uint16_t i;
1069
1070         for (i = 0; i < nb_lcore_params; ++i) {
1071                 portid = lcore_params[i].port_id;
1072                 if ((enabled_port_mask & (1 << portid)) == 0) {
1073                         printf("port %u is not enabled in port mask\n",
1074                                                                 portid);
1075                         return -1;
1076                 }
1077                 if (portid >= nb_ports) {
1078                         printf("port %u is not present on the board\n",
1079                                                                 portid);
1080                         return -1;
1081                 }
1082         }
1083         return 0;
1084 }
1085
1086 static uint8_t
1087 get_port_n_rx_queues(const uint16_t port)
1088 {
1089         int queue = -1;
1090         uint16_t i;
1091
1092         for (i = 0; i < nb_lcore_params; ++i) {
1093                 if (lcore_params[i].port_id == port &&
1094                                 lcore_params[i].queue_id > queue)
1095                         queue = lcore_params[i].queue_id;
1096         }
1097         return (uint8_t)(++queue);
1098 }
1099
1100 static int
1101 init_lcore_rx_queues(void)
1102 {
1103         uint16_t i, nb_rx_queue;
1104         uint8_t lcore;
1105
1106         for (i = 0; i < nb_lcore_params; ++i) {
1107                 lcore = lcore_params[i].lcore_id;
1108                 nb_rx_queue = lcore_conf[lcore].n_rx_queue;
1109                 if (nb_rx_queue >= MAX_RX_QUEUE_PER_LCORE) {
1110                         printf("error: too many queues (%u) for lcore: %u\n",
1111                                 (unsigned)nb_rx_queue + 1, (unsigned)lcore);
1112                         return -1;
1113                 } else {
1114                         lcore_conf[lcore].rx_queue_list[nb_rx_queue].port_id =
1115                                 lcore_params[i].port_id;
1116                         lcore_conf[lcore].rx_queue_list[nb_rx_queue].queue_id =
1117                                 lcore_params[i].queue_id;
1118                         lcore_conf[lcore].n_rx_queue++;
1119                 }
1120         }
1121         return 0;
1122 }
1123
1124 /* display usage */
1125 static void
1126 print_usage(const char *prgname)
1127 {
1128         printf ("%s [EAL options] -- -p PORTMASK -P"
1129                 "  [--config (port,queue,lcore)[,(port,queue,lcore]]"
1130                 "  [--enable-jumbo [--max-pkt-len PKTLEN]]\n"
1131                 "  -p PORTMASK: hexadecimal bitmask of ports to configure\n"
1132                 "  -P : enable promiscuous mode\n"
1133                 "  --config (port,queue,lcore): rx queues configuration\n"
1134                 "  --no-numa: optional, disable numa awareness\n"
1135                 "  --enable-jumbo: enable jumbo frame"
1136                 " which max packet len is PKTLEN in decimal (64-9600)\n"
1137                 "  --parse-ptype: parse packet type by software\n",
1138                 prgname);
1139 }
1140
1141 static int parse_max_pkt_len(const char *pktlen)
1142 {
1143         char *end = NULL;
1144         unsigned long len;
1145
1146         /* parse decimal string */
1147         len = strtoul(pktlen, &end, 10);
1148         if ((pktlen[0] == '\0') || (end == NULL) || (*end != '\0'))
1149                 return -1;
1150
1151         if (len == 0)
1152                 return -1;
1153
1154         return len;
1155 }
1156
1157 static int
1158 parse_portmask(const char *portmask)
1159 {
1160         char *end = NULL;
1161         unsigned long pm;
1162
1163         /* parse hexadecimal string */
1164         pm = strtoul(portmask, &end, 16);
1165         if ((portmask[0] == '\0') || (end == NULL) || (*end != '\0'))
1166                 return -1;
1167
1168         if (pm == 0)
1169                 return -1;
1170
1171         return pm;
1172 }
1173
1174 static int
1175 parse_config(const char *q_arg)
1176 {
1177         char s[256];
1178         const char *p, *p0 = q_arg;
1179         char *end;
1180         enum fieldnames {
1181                 FLD_PORT = 0,
1182                 FLD_QUEUE,
1183                 FLD_LCORE,
1184                 _NUM_FLD
1185         };
1186         unsigned long int_fld[_NUM_FLD];
1187         char *str_fld[_NUM_FLD];
1188         int i;
1189         unsigned size;
1190
1191         nb_lcore_params = 0;
1192
1193         while ((p = strchr(p0,'(')) != NULL) {
1194                 ++p;
1195                 if((p0 = strchr(p,')')) == NULL)
1196                         return -1;
1197
1198                 size = p0 - p;
1199                 if(size >= sizeof(s))
1200                         return -1;
1201
1202                 snprintf(s, sizeof(s), "%.*s", size, p);
1203                 if (rte_strsplit(s, sizeof(s), str_fld, _NUM_FLD, ',') !=
1204                                                                 _NUM_FLD)
1205                         return -1;
1206                 for (i = 0; i < _NUM_FLD; i++){
1207                         errno = 0;
1208                         int_fld[i] = strtoul(str_fld[i], &end, 0);
1209                         if (errno != 0 || end == str_fld[i] || int_fld[i] >
1210                                                                         255)
1211                                 return -1;
1212                 }
1213                 if (nb_lcore_params >= MAX_LCORE_PARAMS) {
1214                         printf("exceeded max number of lcore params: %hu\n",
1215                                 nb_lcore_params);
1216                         return -1;
1217                 }
1218                 lcore_params_array[nb_lcore_params].port_id =
1219                                 (uint8_t)int_fld[FLD_PORT];
1220                 lcore_params_array[nb_lcore_params].queue_id =
1221                                 (uint8_t)int_fld[FLD_QUEUE];
1222                 lcore_params_array[nb_lcore_params].lcore_id =
1223                                 (uint8_t)int_fld[FLD_LCORE];
1224                 ++nb_lcore_params;
1225         }
1226         lcore_params = lcore_params_array;
1227
1228         return 0;
1229 }
1230
1231 #define CMD_LINE_OPT_PARSE_PTYPE "parse-ptype"
1232
1233 /* Parse the argument given in the command line of the application */
1234 static int
1235 parse_args(int argc, char **argv)
1236 {
1237         int opt, ret;
1238         char **argvopt;
1239         int option_index;
1240         char *prgname = argv[0];
1241         static struct option lgopts[] = {
1242                 {"config", 1, 0, 0},
1243                 {"no-numa", 0, 0, 0},
1244                 {"enable-jumbo", 0, 0, 0},
1245                 {CMD_LINE_OPT_PARSE_PTYPE, 0, 0, 0},
1246                 {NULL, 0, 0, 0}
1247         };
1248
1249         argvopt = argv;
1250
1251         while ((opt = getopt_long(argc, argvopt, "p:P",
1252                                 lgopts, &option_index)) != EOF) {
1253
1254                 switch (opt) {
1255                 /* portmask */
1256                 case 'p':
1257                         enabled_port_mask = parse_portmask(optarg);
1258                         if (enabled_port_mask == 0) {
1259                                 printf("invalid portmask\n");
1260                                 print_usage(prgname);
1261                                 return -1;
1262                         }
1263                         break;
1264                 case 'P':
1265                         printf("Promiscuous mode selected\n");
1266                         promiscuous_on = 1;
1267                         break;
1268
1269                 /* long options */
1270                 case 0:
1271                         if (!strncmp(lgopts[option_index].name, "config", 6)) {
1272                                 ret = parse_config(optarg);
1273                                 if (ret) {
1274                                         printf("invalid config\n");
1275                                         print_usage(prgname);
1276                                         return -1;
1277                                 }
1278                         }
1279
1280                         if (!strncmp(lgopts[option_index].name,
1281                                                 "no-numa", 7)) {
1282                                 printf("numa is disabled \n");
1283                                 numa_on = 0;
1284                         }
1285
1286                         if (!strncmp(lgopts[option_index].name,
1287                                         "enable-jumbo", 12)) {
1288                                 struct option lenopts =
1289                                         {"max-pkt-len", required_argument, \
1290                                                                         0, 0};
1291
1292                                 printf("jumbo frame is enabled \n");
1293                                 port_conf.rxmode.jumbo_frame = 1;
1294
1295                                 /**
1296                                  * if no max-pkt-len set, use the default value
1297                                  * ETHER_MAX_LEN
1298                                  */
1299                                 if (0 == getopt_long(argc, argvopt, "",
1300                                                 &lenopts, &option_index)) {
1301                                         ret = parse_max_pkt_len(optarg);
1302                                         if ((ret < 64) ||
1303                                                 (ret > MAX_JUMBO_PKT_LEN)){
1304                                                 printf("invalid packet "
1305                                                                 "length\n");
1306                                                 print_usage(prgname);
1307                                                 return -1;
1308                                         }
1309                                         port_conf.rxmode.max_rx_pkt_len = ret;
1310                                 }
1311                                 printf("set jumbo frame "
1312                                         "max packet length to %u\n",
1313                                 (unsigned int)port_conf.rxmode.max_rx_pkt_len);
1314                         }
1315
1316                         if (!strncmp(lgopts[option_index].name,
1317                                      CMD_LINE_OPT_PARSE_PTYPE,
1318                                      sizeof(CMD_LINE_OPT_PARSE_PTYPE))) {
1319                                 printf("soft parse-ptype is enabled\n");
1320                                 parse_ptype = 1;
1321                         }
1322
1323                         break;
1324
1325                 default:
1326                         print_usage(prgname);
1327                         return -1;
1328                 }
1329         }
1330
1331         if (optind >= 0)
1332                 argv[optind-1] = prgname;
1333
1334         ret = optind-1;
1335         optind = 1; /* reset getopt lib */
1336         return ret;
1337 }
1338
1339 static void
1340 print_ethaddr(const char *name, const struct ether_addr *eth_addr)
1341 {
1342         char buf[ETHER_ADDR_FMT_SIZE];
1343         ether_format_addr(buf, ETHER_ADDR_FMT_SIZE, eth_addr);
1344         printf("%s%s", name, buf);
1345 }
1346
1347 #if (APP_LOOKUP_METHOD == APP_LOOKUP_EXACT_MATCH)
1348 static void
1349 setup_hash(int socketid)
1350 {
1351         struct rte_hash_parameters ipv4_l3fwd_hash_params = {
1352                 .name = NULL,
1353                 .entries = L3FWD_HASH_ENTRIES,
1354                 .key_len = sizeof(struct ipv4_5tuple),
1355                 .hash_func = DEFAULT_HASH_FUNC,
1356                 .hash_func_init_val = 0,
1357         };
1358
1359         struct rte_hash_parameters ipv6_l3fwd_hash_params = {
1360                 .name = NULL,
1361                 .entries = L3FWD_HASH_ENTRIES,
1362                 .key_len = sizeof(struct ipv6_5tuple),
1363                 .hash_func = DEFAULT_HASH_FUNC,
1364                 .hash_func_init_val = 0,
1365         };
1366
1367         unsigned i;
1368         int ret;
1369         char s[64];
1370
1371         /* create ipv4 hash */
1372         snprintf(s, sizeof(s), "ipv4_l3fwd_hash_%d", socketid);
1373         ipv4_l3fwd_hash_params.name = s;
1374         ipv4_l3fwd_hash_params.socket_id = socketid;
1375         ipv4_l3fwd_lookup_struct[socketid] =
1376                 rte_hash_create(&ipv4_l3fwd_hash_params);
1377         if (ipv4_l3fwd_lookup_struct[socketid] == NULL)
1378                 rte_exit(EXIT_FAILURE, "Unable to create the l3fwd hash on "
1379                                 "socket %d\n", socketid);
1380
1381         /* create ipv6 hash */
1382         snprintf(s, sizeof(s), "ipv6_l3fwd_hash_%d", socketid);
1383         ipv6_l3fwd_hash_params.name = s;
1384         ipv6_l3fwd_hash_params.socket_id = socketid;
1385         ipv6_l3fwd_lookup_struct[socketid] =
1386                 rte_hash_create(&ipv6_l3fwd_hash_params);
1387         if (ipv6_l3fwd_lookup_struct[socketid] == NULL)
1388                 rte_exit(EXIT_FAILURE, "Unable to create the l3fwd hash on "
1389                                 "socket %d\n", socketid);
1390
1391
1392         /* populate the ipv4 hash */
1393         for (i = 0; i < IPV4_L3FWD_NUM_ROUTES; i++) {
1394                 ret = rte_hash_add_key (ipv4_l3fwd_lookup_struct[socketid],
1395                                 (void *) &ipv4_l3fwd_route_array[i].key);
1396                 if (ret < 0) {
1397                         rte_exit(EXIT_FAILURE, "Unable to add entry %u to the"
1398                                 "l3fwd hash on socket %d\n", i, socketid);
1399                 }
1400                 ipv4_l3fwd_out_if[ret] = ipv4_l3fwd_route_array[i].if_out;
1401                 printf("Hash: Adding key\n");
1402                 print_ipv4_key(ipv4_l3fwd_route_array[i].key);
1403         }
1404
1405         /* populate the ipv6 hash */
1406         for (i = 0; i < IPV6_L3FWD_NUM_ROUTES; i++) {
1407                 ret = rte_hash_add_key (ipv6_l3fwd_lookup_struct[socketid],
1408                                 (void *) &ipv6_l3fwd_route_array[i].key);
1409                 if (ret < 0) {
1410                         rte_exit(EXIT_FAILURE, "Unable to add entry %u to the"
1411                                 "l3fwd hash on socket %d\n", i, socketid);
1412                 }
1413                 ipv6_l3fwd_out_if[ret] = ipv6_l3fwd_route_array[i].if_out;
1414                 printf("Hash: Adding key\n");
1415                 print_ipv6_key(ipv6_l3fwd_route_array[i].key);
1416         }
1417 }
1418 #endif
1419
1420 #if (APP_LOOKUP_METHOD == APP_LOOKUP_LPM)
1421 static void
1422 setup_lpm(int socketid)
1423 {
1424         unsigned i;
1425         int ret;
1426         char s[64];
1427
1428         /* create the LPM table */
1429         struct rte_lpm_config lpm_ipv4_config;
1430
1431         lpm_ipv4_config.max_rules = IPV4_L3FWD_LPM_MAX_RULES;
1432         lpm_ipv4_config.number_tbl8s = 256;
1433         lpm_ipv4_config.flags = 0;
1434
1435         snprintf(s, sizeof(s), "IPV4_L3FWD_LPM_%d", socketid);
1436         ipv4_l3fwd_lookup_struct[socketid] =
1437                         rte_lpm_create(s, socketid, &lpm_ipv4_config);
1438         if (ipv4_l3fwd_lookup_struct[socketid] == NULL)
1439                 rte_exit(EXIT_FAILURE, "Unable to create the l3fwd LPM table"
1440                                 " on socket %d\n", socketid);
1441
1442         /* populate the LPM table */
1443         for (i = 0; i < IPV4_L3FWD_NUM_ROUTES; i++) {
1444                 ret = rte_lpm_add(ipv4_l3fwd_lookup_struct[socketid],
1445                         ipv4_l3fwd_route_array[i].ip,
1446                         ipv4_l3fwd_route_array[i].depth,
1447                         ipv4_l3fwd_route_array[i].if_out);
1448
1449                 if (ret < 0) {
1450                         rte_exit(EXIT_FAILURE, "Unable to add entry %u to the "
1451                                 "l3fwd LPM table on socket %d\n",
1452                                 i, socketid);
1453                 }
1454
1455                 printf("LPM: Adding route 0x%08x / %d (%d)\n",
1456                         (unsigned)ipv4_l3fwd_route_array[i].ip,
1457                         ipv4_l3fwd_route_array[i].depth,
1458                         ipv4_l3fwd_route_array[i].if_out);
1459         }
1460 }
1461 #endif
1462
1463 static int
1464 init_mem(unsigned nb_mbuf)
1465 {
1466         struct lcore_conf *qconf;
1467         int socketid;
1468         unsigned lcore_id;
1469         char s[64];
1470
1471         for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
1472                 if (rte_lcore_is_enabled(lcore_id) == 0)
1473                         continue;
1474
1475                 if (numa_on)
1476                         socketid = rte_lcore_to_socket_id(lcore_id);
1477                 else
1478                         socketid = 0;
1479
1480                 if (socketid >= NB_SOCKETS) {
1481                         rte_exit(EXIT_FAILURE, "Socket %d of lcore %u is "
1482                                         "out of range %d\n", socketid,
1483                                                 lcore_id, NB_SOCKETS);
1484                 }
1485                 if (pktmbuf_pool[socketid] == NULL) {
1486                         snprintf(s, sizeof(s), "mbuf_pool_%d", socketid);
1487                         pktmbuf_pool[socketid] =
1488                                 rte_pktmbuf_pool_create(s, nb_mbuf,
1489                                         MEMPOOL_CACHE_SIZE, 0,
1490                                         RTE_MBUF_DEFAULT_BUF_SIZE,
1491                                         socketid);
1492                         if (pktmbuf_pool[socketid] == NULL)
1493                                 rte_exit(EXIT_FAILURE,
1494                                         "Cannot init mbuf pool on socket %d\n",
1495                                                                 socketid);
1496                         else
1497                                 printf("Allocated mbuf pool on socket %d\n",
1498                                                                 socketid);
1499
1500 #if (APP_LOOKUP_METHOD == APP_LOOKUP_LPM)
1501                         setup_lpm(socketid);
1502 #else
1503                         setup_hash(socketid);
1504 #endif
1505                 }
1506                 qconf = &lcore_conf[lcore_id];
1507                 qconf->ipv4_lookup_struct = ipv4_l3fwd_lookup_struct[socketid];
1508 #if (APP_LOOKUP_METHOD == APP_LOOKUP_EXACT_MATCH)
1509                 qconf->ipv6_lookup_struct = ipv6_l3fwd_lookup_struct[socketid];
1510 #endif
1511         }
1512         return 0;
1513 }
1514
1515 /* Check the link status of all ports in up to 9s, and print them finally */
1516 static void
1517 check_all_ports_link_status(uint16_t port_num, uint32_t port_mask)
1518 {
1519 #define CHECK_INTERVAL 100 /* 100ms */
1520 #define MAX_CHECK_TIME 90 /* 9s (90 * 100ms) in total */
1521         uint8_t count, all_ports_up, print_flag = 0;
1522         uint16_t portid;
1523         struct rte_eth_link link;
1524
1525         printf("\nChecking link status");
1526         fflush(stdout);
1527         for (count = 0; count <= MAX_CHECK_TIME; count++) {
1528                 all_ports_up = 1;
1529                 for (portid = 0; portid < port_num; portid++) {
1530                         if ((port_mask & (1 << portid)) == 0)
1531                                 continue;
1532                         memset(&link, 0, sizeof(link));
1533                         rte_eth_link_get_nowait(portid, &link);
1534                         /* print link status if flag set */
1535                         if (print_flag == 1) {
1536                                 if (link.link_status)
1537                                         printf("Port %d Link Up - speed %u "
1538                                                 "Mbps - %s\n", (uint8_t)portid,
1539                                                 (unsigned)link.link_speed,
1540                                 (link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
1541                                         ("full-duplex") : ("half-duplex\n"));
1542                                 else
1543                                         printf("Port %d Link Down\n",
1544                                                 (uint8_t)portid);
1545                                 continue;
1546                         }
1547                         /* clear all_ports_up flag if any link down */
1548                         if (link.link_status == ETH_LINK_DOWN) {
1549                                 all_ports_up = 0;
1550                                 break;
1551                         }
1552                 }
1553                 /* after finally printing all link status, get out */
1554                 if (print_flag == 1)
1555                         break;
1556
1557                 if (all_ports_up == 0) {
1558                         printf(".");
1559                         fflush(stdout);
1560                         rte_delay_ms(CHECK_INTERVAL);
1561                 }
1562
1563                 /* set the print_flag if all ports up or timeout */
1564                 if (all_ports_up == 1 || count == (MAX_CHECK_TIME - 1)) {
1565                         print_flag = 1;
1566                         printf("done\n");
1567                 }
1568         }
1569 }
1570
1571 static int check_ptype(uint16_t portid)
1572 {
1573         int i, ret;
1574         int ptype_l3_ipv4 = 0;
1575 #if (APP_LOOKUP_METHOD == APP_LOOKUP_EXACT_MATCH)
1576         int ptype_l3_ipv6 = 0;
1577 #endif
1578         uint32_t ptype_mask = RTE_PTYPE_L3_MASK;
1579
1580         ret = rte_eth_dev_get_supported_ptypes(portid, ptype_mask, NULL, 0);
1581         if (ret <= 0)
1582                 return 0;
1583
1584         uint32_t ptypes[ret];
1585
1586         ret = rte_eth_dev_get_supported_ptypes(portid, ptype_mask, ptypes, ret);
1587         for (i = 0; i < ret; ++i) {
1588                 if (ptypes[i] & RTE_PTYPE_L3_IPV4)
1589                         ptype_l3_ipv4 = 1;
1590 #if (APP_LOOKUP_METHOD == APP_LOOKUP_EXACT_MATCH)
1591                 if (ptypes[i] & RTE_PTYPE_L3_IPV6)
1592                         ptype_l3_ipv6 = 1;
1593 #endif
1594         }
1595
1596         if (ptype_l3_ipv4 == 0)
1597                 printf("port %d cannot parse RTE_PTYPE_L3_IPV4\n", portid);
1598
1599 #if (APP_LOOKUP_METHOD == APP_LOOKUP_EXACT_MATCH)
1600         if (ptype_l3_ipv6 == 0)
1601                 printf("port %d cannot parse RTE_PTYPE_L3_IPV6\n", portid);
1602 #endif
1603
1604 #if (APP_LOOKUP_METHOD == APP_LOOKUP_LPM)
1605         if (ptype_l3_ipv4)
1606 #else /* APP_LOOKUP_EXACT_MATCH */
1607         if (ptype_l3_ipv4 && ptype_l3_ipv6)
1608 #endif
1609                 return 1;
1610
1611         return 0;
1612
1613 }
1614
1615 int
1616 main(int argc, char **argv)
1617 {
1618         struct lcore_conf *qconf;
1619         struct rte_eth_dev_info dev_info;
1620         struct rte_eth_txconf *txconf;
1621         int ret;
1622         uint16_t nb_ports;
1623         uint16_t queueid;
1624         unsigned lcore_id;
1625         uint64_t hz;
1626         uint32_t n_tx_queue, nb_lcores;
1627         uint32_t dev_rxq_num, dev_txq_num;
1628         uint8_t nb_rx_queue, queue, socketid;
1629         uint16_t portid;
1630         uint16_t org_rxq_intr = port_conf.intr_conf.rxq;
1631
1632         /* catch SIGINT and restore cpufreq governor to ondemand */
1633         signal(SIGINT, signal_exit_now);
1634
1635         /* init EAL */
1636         ret = rte_eal_init(argc, argv);
1637         if (ret < 0)
1638                 rte_exit(EXIT_FAILURE, "Invalid EAL parameters\n");
1639         argc -= ret;
1640         argv += ret;
1641
1642         /* init RTE timer library to be used late */
1643         rte_timer_subsystem_init();
1644
1645         /* parse application arguments (after the EAL ones) */
1646         ret = parse_args(argc, argv);
1647         if (ret < 0)
1648                 rte_exit(EXIT_FAILURE, "Invalid L3FWD parameters\n");
1649
1650         if (check_lcore_params() < 0)
1651                 rte_exit(EXIT_FAILURE, "check_lcore_params failed\n");
1652
1653         ret = init_lcore_rx_queues();
1654         if (ret < 0)
1655                 rte_exit(EXIT_FAILURE, "init_lcore_rx_queues failed\n");
1656
1657         nb_ports = rte_eth_dev_count();
1658
1659         if (check_port_config(nb_ports) < 0)
1660                 rte_exit(EXIT_FAILURE, "check_port_config failed\n");
1661
1662         nb_lcores = rte_lcore_count();
1663
1664         /* initialize all ports */
1665         for (portid = 0; portid < nb_ports; portid++) {
1666                 /* skip ports that are not enabled */
1667                 if ((enabled_port_mask & (1 << portid)) == 0) {
1668                         printf("\nSkipping disabled port %d\n", portid);
1669                         continue;
1670                 }
1671
1672                 /* init port */
1673                 printf("Initializing port %d ... ", portid );
1674                 fflush(stdout);
1675
1676                 rte_eth_dev_info_get(portid, &dev_info);
1677                 dev_rxq_num = dev_info.max_rx_queues;
1678                 dev_txq_num = dev_info.max_tx_queues;
1679
1680                 nb_rx_queue = get_port_n_rx_queues(portid);
1681                 if (nb_rx_queue > dev_rxq_num)
1682                         rte_exit(EXIT_FAILURE,
1683                                 "Cannot configure not existed rxq: "
1684                                 "port=%d\n", portid);
1685
1686                 n_tx_queue = nb_lcores;
1687                 if (n_tx_queue > dev_txq_num)
1688                         n_tx_queue = dev_txq_num;
1689                 printf("Creating queues: nb_rxq=%d nb_txq=%u... ",
1690                         nb_rx_queue, (unsigned)n_tx_queue );
1691                 /* If number of Rx queue is 0, no need to enable Rx interrupt */
1692                 if (nb_rx_queue == 0)
1693                         port_conf.intr_conf.rxq = 0;
1694                 ret = rte_eth_dev_configure(portid, nb_rx_queue,
1695                                         (uint16_t)n_tx_queue, &port_conf);
1696                 /* Revert to original value */
1697                 port_conf.intr_conf.rxq = org_rxq_intr;
1698                 if (ret < 0)
1699                         rte_exit(EXIT_FAILURE, "Cannot configure device: "
1700                                         "err=%d, port=%d\n", ret, portid);
1701
1702                 ret = rte_eth_dev_adjust_nb_rx_tx_desc(portid, &nb_rxd,
1703                                                        &nb_txd);
1704                 if (ret < 0)
1705                         rte_exit(EXIT_FAILURE,
1706                                  "Cannot adjust number of descriptors: err=%d, port=%d\n",
1707                                  ret, portid);
1708
1709                 rte_eth_macaddr_get(portid, &ports_eth_addr[portid]);
1710                 print_ethaddr(" Address:", &ports_eth_addr[portid]);
1711                 printf(", ");
1712
1713                 /* init memory */
1714                 ret = init_mem(NB_MBUF);
1715                 if (ret < 0)
1716                         rte_exit(EXIT_FAILURE, "init_mem failed\n");
1717
1718                 for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
1719                         if (rte_lcore_is_enabled(lcore_id) == 0)
1720                                 continue;
1721
1722                         /* Initialize TX buffers */
1723                         qconf = &lcore_conf[lcore_id];
1724                         qconf->tx_buffer[portid] = rte_zmalloc_socket("tx_buffer",
1725                                 RTE_ETH_TX_BUFFER_SIZE(MAX_PKT_BURST), 0,
1726                                 rte_eth_dev_socket_id(portid));
1727                         if (qconf->tx_buffer[portid] == NULL)
1728                                 rte_exit(EXIT_FAILURE, "Can't allocate tx buffer for port %u\n",
1729                                                  portid);
1730
1731                         rte_eth_tx_buffer_init(qconf->tx_buffer[portid], MAX_PKT_BURST);
1732                 }
1733
1734                 /* init one TX queue per couple (lcore,port) */
1735                 queueid = 0;
1736                 for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
1737                         if (rte_lcore_is_enabled(lcore_id) == 0)
1738                                 continue;
1739
1740                         if (queueid >= dev_txq_num)
1741                                 continue;
1742
1743                         if (numa_on)
1744                                 socketid = \
1745                                 (uint8_t)rte_lcore_to_socket_id(lcore_id);
1746                         else
1747                                 socketid = 0;
1748
1749                         printf("txq=%u,%d,%d ", lcore_id, queueid, socketid);
1750                         fflush(stdout);
1751
1752                         rte_eth_dev_info_get(portid, &dev_info);
1753                         txconf = &dev_info.default_txconf;
1754                         if (port_conf.rxmode.jumbo_frame)
1755                                 txconf->txq_flags = 0;
1756                         ret = rte_eth_tx_queue_setup(portid, queueid, nb_txd,
1757                                                      socketid, txconf);
1758                         if (ret < 0)
1759                                 rte_exit(EXIT_FAILURE,
1760                                         "rte_eth_tx_queue_setup: err=%d, "
1761                                                 "port=%d\n", ret, portid);
1762
1763                         qconf = &lcore_conf[lcore_id];
1764                         qconf->tx_queue_id[portid] = queueid;
1765                         queueid++;
1766
1767                         qconf->tx_port_id[qconf->n_tx_port] = portid;
1768                         qconf->n_tx_port++;
1769                 }
1770                 printf("\n");
1771         }
1772
1773         for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
1774                 if (rte_lcore_is_enabled(lcore_id) == 0)
1775                         continue;
1776
1777                 /* init power management library */
1778                 ret = rte_power_init(lcore_id);
1779                 if (ret)
1780                         RTE_LOG(ERR, POWER,
1781                                 "Library initialization failed on core %u\n", lcore_id);
1782
1783                 /* init timer structures for each enabled lcore */
1784                 rte_timer_init(&power_timers[lcore_id]);
1785                 hz = rte_get_timer_hz();
1786                 rte_timer_reset(&power_timers[lcore_id],
1787                         hz/TIMER_NUMBER_PER_SECOND, SINGLE, lcore_id,
1788                                                 power_timer_cb, NULL);
1789
1790                 qconf = &lcore_conf[lcore_id];
1791                 printf("\nInitializing rx queues on lcore %u ... ", lcore_id );
1792                 fflush(stdout);
1793                 /* init RX queues */
1794                 for(queue = 0; queue < qconf->n_rx_queue; ++queue) {
1795                         portid = qconf->rx_queue_list[queue].port_id;
1796                         queueid = qconf->rx_queue_list[queue].queue_id;
1797
1798                         if (numa_on)
1799                                 socketid = \
1800                                 (uint8_t)rte_lcore_to_socket_id(lcore_id);
1801                         else
1802                                 socketid = 0;
1803
1804                         printf("rxq=%d,%d,%d ", portid, queueid, socketid);
1805                         fflush(stdout);
1806
1807                         ret = rte_eth_rx_queue_setup(portid, queueid, nb_rxd,
1808                                 socketid, NULL,
1809                                 pktmbuf_pool[socketid]);
1810                         if (ret < 0)
1811                                 rte_exit(EXIT_FAILURE,
1812                                         "rte_eth_rx_queue_setup: err=%d, "
1813                                                 "port=%d\n", ret, portid);
1814
1815                         if (parse_ptype) {
1816                                 if (add_cb_parse_ptype(portid, queueid) < 0)
1817                                         rte_exit(EXIT_FAILURE,
1818                                                  "Fail to add ptype cb\n");
1819                         } else if (!check_ptype(portid))
1820                                 rte_exit(EXIT_FAILURE,
1821                                          "PMD can not provide needed ptypes\n");
1822                 }
1823         }
1824
1825         printf("\n");
1826
1827         /* start ports */
1828         for (portid = 0; portid < nb_ports; portid++) {
1829                 if ((enabled_port_mask & (1 << portid)) == 0) {
1830                         continue;
1831                 }
1832                 /* Start device */
1833                 ret = rte_eth_dev_start(portid);
1834                 if (ret < 0)
1835                         rte_exit(EXIT_FAILURE, "rte_eth_dev_start: err=%d, "
1836                                                 "port=%d\n", ret, portid);
1837                 /*
1838                  * If enabled, put device in promiscuous mode.
1839                  * This allows IO forwarding mode to forward packets
1840                  * to itself through 2 cross-connected  ports of the
1841                  * target machine.
1842                  */
1843                 if (promiscuous_on)
1844                         rte_eth_promiscuous_enable(portid);
1845                 /* initialize spinlock for each port */
1846                 rte_spinlock_init(&(locks[portid]));
1847         }
1848
1849         check_all_ports_link_status(nb_ports, enabled_port_mask);
1850
1851         /* launch per-lcore init on every lcore */
1852         rte_eal_mp_remote_launch(main_loop, NULL, CALL_MASTER);
1853         RTE_LCORE_FOREACH_SLAVE(lcore_id) {
1854                 if (rte_eal_wait_lcore(lcore_id) < 0)
1855                         return -1;
1856         }
1857
1858         return 0;
1859 }