New upstream version 16.11.7
[deb_dpdk.git] / app / test-pmd / parameters.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2016 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 <errno.h>
35 #include <getopt.h>
36 #include <stdarg.h>
37 #include <stdio.h>
38 #include <stdlib.h>
39 #include <signal.h>
40 #include <string.h>
41 #include <time.h>
42 #include <fcntl.h>
43 #include <sys/types.h>
44 #include <errno.h>
45
46 #include <sys/queue.h>
47 #include <sys/stat.h>
48
49 #include <stdint.h>
50 #include <unistd.h>
51 #include <inttypes.h>
52
53 #include <rte_common.h>
54 #include <rte_byteorder.h>
55 #include <rte_log.h>
56 #include <rte_debug.h>
57 #include <rte_cycles.h>
58 #include <rte_memory.h>
59 #include <rte_memzone.h>
60 #include <rte_launch.h>
61 #include <rte_eal.h>
62 #include <rte_per_lcore.h>
63 #include <rte_lcore.h>
64 #include <rte_atomic.h>
65 #include <rte_branch_prediction.h>
66 #include <rte_mempool.h>
67 #include <rte_interrupts.h>
68 #include <rte_pci.h>
69 #include <rte_ether.h>
70 #include <rte_ethdev.h>
71 #include <rte_string_fns.h>
72 #ifdef RTE_LIBRTE_CMDLINE
73 #include <cmdline_parse.h>
74 #include <cmdline_parse_etheraddr.h>
75 #endif
76 #ifdef RTE_LIBRTE_PMD_BOND
77 #include <rte_eth_bond.h>
78 #endif
79
80 #include "testpmd.h"
81
82 static void
83 usage(char* progname)
84 {
85         printf("usage: %s "
86 #ifdef RTE_LIBRTE_CMDLINE
87                "[--interactive|-i] "
88 #endif
89                "[--help|-h] | [--auto-start|-a] | ["
90                "--coremask=COREMASK --portmask=PORTMASK --numa "
91                "--mbuf-size= | --total-num-mbufs= | "
92                "--nb-cores= | --nb-ports= | "
93 #ifdef RTE_LIBRTE_CMDLINE
94                "--eth-peers-configfile= | "
95                "--eth-peer=X,M:M:M:M:M:M | "
96 #endif
97                "--pkt-filter-mode= |"
98                "--rss-ip | --rss-udp | "
99                "--rxpt= | --rxht= | --rxwt= | --rxfreet= | "
100                "--txpt= | --txht= | --txwt= | --txfreet= | "
101                "--txrst= | --txqflags= ]\n",
102                progname);
103 #ifdef RTE_LIBRTE_CMDLINE
104         printf("  --interactive: run in interactive mode.\n");
105 #endif
106         printf("  --auto-start: start forwarding on init "
107                "[always when non-interactive].\n");
108         printf("  --help: display this message and quit.\n");
109         printf("  --nb-cores=N: set the number of forwarding cores "
110                "(1 <= N <= %d).\n", nb_lcores);
111         printf("  --nb-ports=N: set the number of forwarding ports "
112                "(1 <= N <= %d).\n", nb_ports);
113         printf("  --coremask=COREMASK: hexadecimal bitmask of cores running "
114                "the packet forwarding test. The master lcore is reserved for "
115                "command line parsing only, and cannot be masked on for "
116                "packet forwarding.\n");
117         printf("  --portmask=PORTMASK: hexadecimal bitmask of ports used "
118                "by the packet forwarding test.\n");
119         printf("  --numa: enable NUMA-aware allocation of RX/TX rings and of "
120                "RX memory buffers (mbufs).\n");
121         printf("  --port-numa-config=(port,socket)[,(port,socket)]: "
122                "specify the socket on which the memory pool "
123                "used by the port will be allocated.\n");
124         printf("  --ring-numa-config=(port,flag,socket)[,(port,flag,socket)]: "
125                "specify the socket on which the TX/RX rings for "
126                "the port will be allocated "
127                "(flag: 1 for RX; 2 for TX; 3 for RX and TX).\n");
128         printf("  --socket-num=N: set socket from which all memory is allocated "
129                "in NUMA mode.\n");
130         printf("  --mbuf-size=N: set the data size of mbuf to N bytes.\n");
131         printf("  --total-num-mbufs=N: set the number of mbufs to be allocated "
132                "in mbuf pools.\n");
133         printf("  --max-pkt-len=N: set the maximum size of packet to N bytes.\n");
134 #ifdef RTE_LIBRTE_CMDLINE
135         printf("  --eth-peers-configfile=name: config file with ethernet addresses "
136                "of peer ports.\n");
137         printf("  --eth-peer=X,M:M:M:M:M:M: set the MAC address of the X peer "
138                "port (0 <= X < %d).\n", RTE_MAX_ETHPORTS);
139 #endif
140         printf("  --pkt-filter-mode=N: set Flow Director mode "
141                "(N: none (default mode) or signature or perfect).\n");
142         printf("  --pkt-filter-report-hash=N: set Flow Director report mode "
143                "(N: none  or match (default) or always).\n");
144         printf("  --pkt-filter-size=N: set Flow Director mode "
145                "(N: 64K (default mode) or 128K or 256K).\n");
146         printf("  --pkt-filter-drop-queue=N: set drop-queue. "
147                "In perfect mode, when you add a rule with queue = -1 "
148                "the packet will be enqueued into the rx drop-queue. "
149                "If the drop-queue doesn't exist, the packet is dropped. "
150                "By default drop-queue=127.\n");
151         printf("  --disable-crc-strip: disable CRC stripping by hardware.\n");
152         printf("  --enable-lro: enable large receive offload.\n");
153         printf("  --enable-rx-cksum: enable rx hardware checksum offload.\n");
154         printf("  --disable-hw-vlan: disable hardware vlan.\n");
155         printf("  --disable-hw-vlan-filter: disable hardware vlan filter.\n");
156         printf("  --disable-hw-vlan-strip: disable hardware vlan strip.\n");
157         printf("  --disable-hw-vlan-extend: disable hardware vlan extend.\n");
158         printf("  --enable-drop-en: enable per queue packet drop.\n");
159         printf("  --disable-rss: disable rss.\n");
160         printf("  --port-topology=N: set port topology (N: paired (default) or "
161                "chained).\n");
162         printf("  --forward-mode=N: set forwarding mode (N: %s).\n",
163                list_pkt_forwarding_modes());
164         printf("  --rss-ip: set RSS functions to IPv4/IPv6 only .\n");
165         printf("  --rss-udp: set RSS functions to IPv4/IPv6 + UDP.\n");
166         printf("  --rxq=N: set the number of RX queues per port to N.\n");
167         printf("  --rxd=N: set the number of descriptors in RX rings to N.\n");
168         printf("  --txq=N: set the number of TX queues per port to N.\n");
169         printf("  --txd=N: set the number of descriptors in TX rings to N.\n");
170         printf("  --burst=N: set the number of packets per burst to N.\n");
171         printf("  --mbcache=N: set the cache of mbuf memory pool to N.\n");
172         printf("  --rxpt=N: set prefetch threshold register of RX rings to N.\n");
173         printf("  --rxht=N: set the host threshold register of RX rings to N.\n");
174         printf("  --rxfreet=N: set the free threshold of RX descriptors to N "
175                "(0 <= N < value of rxd).\n");
176         printf("  --rxwt=N: set the write-back threshold register of RX rings to N.\n");
177         printf("  --txpt=N: set the prefetch threshold register of TX rings to N.\n");
178         printf("  --txht=N: set the nhost threshold register of TX rings to N.\n");
179         printf("  --txwt=N: set the write-back threshold register of TX rings to N.\n");
180         printf("  --txfreet=N: set the transmit free threshold of TX rings to N "
181                "(0 <= N <= value of txd).\n");
182         printf("  --txrst=N: set the transmit RS bit threshold of TX rings to N "
183                "(0 <= N <= value of txd).\n");
184         printf("  --txqflags=0xXXXXXXXX: hexadecimal bitmask of TX queue flags "
185                "(0 <= N <= 0x7FFFFFFF).\n");
186         printf("  --tx-queue-stats-mapping=(port,queue,mapping)[,(port,queue,mapping]: "
187                "tx queues statistics counters mapping "
188                "(0 <= mapping <= %d).\n", RTE_ETHDEV_QUEUE_STAT_CNTRS - 1);
189         printf("  --rx-queue-stats-mapping=(port,queue,mapping)[,(port,queue,mapping]: "
190                "rx queues statistics counters mapping "
191                "(0 <= mapping <= %d).\n", RTE_ETHDEV_QUEUE_STAT_CNTRS - 1);
192         printf("  --no-flush-rx: Don't flush RX streams before forwarding."
193                " Used mainly with PCAP drivers.\n");
194         printf("  --txpkts=X[,Y]*: set TX segment sizes"
195                 " or total packet length.\n");
196         printf("  --disable-link-check: disable check on link status when "
197                "starting/stopping ports.\n");
198 }
199
200 #ifdef RTE_LIBRTE_CMDLINE
201 static int
202 init_peer_eth_addrs(char *config_filename)
203 {
204         FILE *config_file;
205         portid_t i;
206         char buf[50];
207
208         config_file = fopen(config_filename, "r");
209         if (config_file == NULL) {
210                 perror("Failed to open eth config file\n");
211                 return -1;
212         }
213
214         for (i = 0; i < RTE_MAX_ETHPORTS; i++) {
215
216                 if (fgets(buf, sizeof(buf), config_file) == NULL)
217                         break;
218
219                 if (cmdline_parse_etheraddr(NULL, buf, &peer_eth_addrs[i],
220                                 sizeof(peer_eth_addrs[i])) < 0) {
221                         printf("Bad MAC address format on line %d\n", i+1);
222                         fclose(config_file);
223                         return -1;
224                 }
225         }
226         fclose(config_file);
227         nb_peer_eth_addrs = (portid_t) i;
228         return 0;
229 }
230 #endif
231
232 /*
233  * Parse the coremask given as argument (hexadecimal string) and set
234  * the global configuration of forwarding cores.
235  */
236 static void
237 parse_fwd_coremask(const char *coremask)
238 {
239         char *end;
240         unsigned long long int cm;
241
242         /* parse hexadecimal string */
243         end = NULL;
244         cm = strtoull(coremask, &end, 16);
245         if ((coremask[0] == '\0') || (end == NULL) || (*end != '\0'))
246                 rte_exit(EXIT_FAILURE, "Invalid fwd core mask\n");
247         else if (set_fwd_lcores_mask((uint64_t) cm) < 0)
248                 rte_exit(EXIT_FAILURE, "coremask is not valid\n");
249 }
250
251 /*
252  * Parse the coremask given as argument (hexadecimal string) and set
253  * the global configuration of forwarding cores.
254  */
255 static void
256 parse_fwd_portmask(const char *portmask)
257 {
258         char *end;
259         unsigned long long int pm;
260
261         /* parse hexadecimal string */
262         end = NULL;
263         pm = strtoull(portmask, &end, 16);
264         if ((portmask[0] == '\0') || (end == NULL) || (*end != '\0'))
265                 rte_exit(EXIT_FAILURE, "Invalid fwd port mask\n");
266         else
267                 set_fwd_ports_mask((uint64_t) pm);
268 }
269
270
271 static int
272 parse_queue_stats_mapping_config(const char *q_arg, int is_rx)
273 {
274         char s[256];
275         const char *p, *p0 = q_arg;
276         char *end;
277         enum fieldnames {
278                 FLD_PORT = 0,
279                 FLD_QUEUE,
280                 FLD_STATS_COUNTER,
281                 _NUM_FLD
282         };
283         unsigned long int_fld[_NUM_FLD];
284         char *str_fld[_NUM_FLD];
285         int i;
286         unsigned size;
287
288         /* reset from value set at definition */
289         is_rx ? (nb_rx_queue_stats_mappings = 0) : (nb_tx_queue_stats_mappings = 0);
290
291         while ((p = strchr(p0,'(')) != NULL) {
292                 ++p;
293                 if((p0 = strchr(p,')')) == NULL)
294                         return -1;
295
296                 size = p0 - p;
297                 if(size >= sizeof(s))
298                         return -1;
299
300                 snprintf(s, sizeof(s), "%.*s", size, p);
301                 if (rte_strsplit(s, sizeof(s), str_fld, _NUM_FLD, ',') != _NUM_FLD)
302                         return -1;
303                 for (i = 0; i < _NUM_FLD; i++){
304                         errno = 0;
305                         int_fld[i] = strtoul(str_fld[i], &end, 0);
306                         if (errno != 0 || end == str_fld[i] || int_fld[i] > 255)
307                                 return -1;
308                 }
309                 /* Check mapping field is in correct range (0..RTE_ETHDEV_QUEUE_STAT_CNTRS-1) */
310                 if (int_fld[FLD_STATS_COUNTER] >= RTE_ETHDEV_QUEUE_STAT_CNTRS) {
311                         printf("Stats counter not in the correct range 0..%d\n",
312                                         RTE_ETHDEV_QUEUE_STAT_CNTRS - 1);
313                         return -1;
314                 }
315
316                 if (!is_rx) {
317                         if ((nb_tx_queue_stats_mappings >=
318                                                 MAX_TX_QUEUE_STATS_MAPPINGS)) {
319                                 printf("exceeded max number of TX queue "
320                                                 "statistics mappings: %hu\n",
321                                                 nb_tx_queue_stats_mappings);
322                                 return -1;
323                         }
324                         tx_queue_stats_mappings_array[nb_tx_queue_stats_mappings].port_id =
325                                 (uint8_t)int_fld[FLD_PORT];
326                         tx_queue_stats_mappings_array[nb_tx_queue_stats_mappings].queue_id =
327                                 (uint8_t)int_fld[FLD_QUEUE];
328                         tx_queue_stats_mappings_array[nb_tx_queue_stats_mappings].stats_counter_id =
329                                 (uint8_t)int_fld[FLD_STATS_COUNTER];
330                         ++nb_tx_queue_stats_mappings;
331                 }
332                 else {
333                         if ((nb_rx_queue_stats_mappings >=
334                                                 MAX_RX_QUEUE_STATS_MAPPINGS)) {
335                                 printf("exceeded max number of RX queue "
336                                                 "statistics mappings: %hu\n",
337                                                 nb_rx_queue_stats_mappings);
338                                 return -1;
339                         }
340                         rx_queue_stats_mappings_array[nb_rx_queue_stats_mappings].port_id =
341                                 (uint8_t)int_fld[FLD_PORT];
342                         rx_queue_stats_mappings_array[nb_rx_queue_stats_mappings].queue_id =
343                                 (uint8_t)int_fld[FLD_QUEUE];
344                         rx_queue_stats_mappings_array[nb_rx_queue_stats_mappings].stats_counter_id =
345                                 (uint8_t)int_fld[FLD_STATS_COUNTER];
346                         ++nb_rx_queue_stats_mappings;
347                 }
348
349         }
350 /* Reassign the rx/tx_queue_stats_mappings pointer to point to this newly populated array rather */
351 /* than to the default array (that was set at its definition) */
352         is_rx ? (rx_queue_stats_mappings = rx_queue_stats_mappings_array) :
353                 (tx_queue_stats_mappings = tx_queue_stats_mappings_array);
354         return 0;
355 }
356
357 static int
358 parse_portnuma_config(const char *q_arg)
359 {
360         char s[256];
361         const char *p, *p0 = q_arg;
362         char *end;
363         uint8_t i, socket_id;
364         portid_t port_id;
365         unsigned size;
366         enum fieldnames {
367                 FLD_PORT = 0,
368                 FLD_SOCKET,
369                 _NUM_FLD
370         };
371         unsigned long int_fld[_NUM_FLD];
372         char *str_fld[_NUM_FLD];
373
374         /* reset from value set at definition */
375         while ((p = strchr(p0,'(')) != NULL) {
376                 ++p;
377                 if((p0 = strchr(p,')')) == NULL)
378                         return -1;
379
380                 size = p0 - p;
381                 if(size >= sizeof(s))
382                         return -1;
383
384                 snprintf(s, sizeof(s), "%.*s", size, p);
385                 if (rte_strsplit(s, sizeof(s), str_fld, _NUM_FLD, ',') != _NUM_FLD)
386                         return -1;
387                 for (i = 0; i < _NUM_FLD; i++) {
388                         errno = 0;
389                         int_fld[i] = strtoul(str_fld[i], &end, 0);
390                         if (errno != 0 || end == str_fld[i] || int_fld[i] > 255)
391                                 return -1;
392                 }
393                 port_id = (portid_t)int_fld[FLD_PORT];
394                 if (port_id_is_invalid(port_id, ENABLED_WARN) ||
395                         port_id == (portid_t)RTE_PORT_ALL) {
396                         print_valid_ports();
397                         return -1;
398                 }
399                 socket_id = (uint8_t)int_fld[FLD_SOCKET];
400                 if(socket_id >= max_socket) {
401                         printf("Invalid socket id, range is [0, %d]\n",
402                                  max_socket - 1);
403                         return -1;
404                 }
405                 port_numa[port_id] = socket_id;
406         }
407
408         return 0;
409 }
410
411 static int
412 parse_ringnuma_config(const char *q_arg)
413 {
414         char s[256];
415         const char *p, *p0 = q_arg;
416         char *end;
417         uint8_t i, ring_flag, socket_id;
418         portid_t port_id;
419         unsigned size;
420         enum fieldnames {
421                 FLD_PORT = 0,
422                 FLD_FLAG,
423                 FLD_SOCKET,
424                 _NUM_FLD
425         };
426         unsigned long int_fld[_NUM_FLD];
427         char *str_fld[_NUM_FLD];
428         #define RX_RING_ONLY 0x1
429         #define TX_RING_ONLY 0x2
430         #define RXTX_RING    0x3
431
432         /* reset from value set at definition */
433         while ((p = strchr(p0,'(')) != NULL) {
434                 ++p;
435                 if((p0 = strchr(p,')')) == NULL)
436                         return -1;
437
438                 size = p0 - p;
439                 if(size >= sizeof(s))
440                         return -1;
441
442                 snprintf(s, sizeof(s), "%.*s", size, p);
443                 if (rte_strsplit(s, sizeof(s), str_fld, _NUM_FLD, ',') != _NUM_FLD)
444                         return -1;
445                 for (i = 0; i < _NUM_FLD; i++) {
446                         errno = 0;
447                         int_fld[i] = strtoul(str_fld[i], &end, 0);
448                         if (errno != 0 || end == str_fld[i] || int_fld[i] > 255)
449                                 return -1;
450                 }
451                 port_id = (portid_t)int_fld[FLD_PORT];
452                 if (port_id_is_invalid(port_id, ENABLED_WARN) ||
453                         port_id == (portid_t)RTE_PORT_ALL) {
454                         print_valid_ports();
455                         return -1;
456                 }
457                 socket_id = (uint8_t)int_fld[FLD_SOCKET];
458                 if (socket_id >= max_socket) {
459                         printf("Invalid socket id, range is [0, %d]\n",
460                                 max_socket - 1);
461                         return -1;
462                 }
463                 ring_flag = (uint8_t)int_fld[FLD_FLAG];
464                 if ((ring_flag < RX_RING_ONLY) || (ring_flag > RXTX_RING)) {
465                         printf("Invalid ring-flag=%d config for port =%d\n",
466                                 ring_flag,port_id);
467                         return -1;
468                 }
469
470                 switch (ring_flag & RXTX_RING) {
471                 case RX_RING_ONLY:
472                         rxring_numa[port_id] = socket_id;
473                         break;
474                 case TX_RING_ONLY:
475                         txring_numa[port_id] = socket_id;
476                         break;
477                 case RXTX_RING:
478                         rxring_numa[port_id] = socket_id;
479                         txring_numa[port_id] = socket_id;
480                         break;
481                 default:
482                         printf("Invalid ring-flag=%d config for port=%d\n",
483                                 ring_flag,port_id);
484                         break;
485                 }
486         }
487
488         return 0;
489 }
490
491 void
492 launch_args_parse(int argc, char** argv)
493 {
494         int n, opt;
495         char **argvopt;
496         int opt_idx;
497         enum { TX, RX };
498
499         static struct option lgopts[] = {
500                 { "help",                       0, 0, 0 },
501 #ifdef RTE_LIBRTE_CMDLINE
502                 { "interactive",                0, 0, 0 },
503                 { "auto-start",                 0, 0, 0 },
504                 { "eth-peers-configfile",       1, 0, 0 },
505                 { "eth-peer",                   1, 0, 0 },
506 #endif
507                 { "ports",                      1, 0, 0 },
508                 { "nb-cores",                   1, 0, 0 },
509                 { "nb-ports",                   1, 0, 0 },
510                 { "coremask",                   1, 0, 0 },
511                 { "portmask",                   1, 0, 0 },
512                 { "numa",                       0, 0, 0 },
513                 { "mp-anon",                    0, 0, 0 },
514                 { "port-numa-config",           1, 0, 0 },
515                 { "ring-numa-config",           1, 0, 0 },
516                 { "socket-num",                 1, 0, 0 },
517                 { "mbuf-size",                  1, 0, 0 },
518                 { "total-num-mbufs",            1, 0, 0 },
519                 { "max-pkt-len",                1, 0, 0 },
520                 { "pkt-filter-mode",            1, 0, 0 },
521                 { "pkt-filter-report-hash",     1, 0, 0 },
522                 { "pkt-filter-size",            1, 0, 0 },
523                 { "pkt-filter-drop-queue",      1, 0, 0 },
524                 { "disable-crc-strip",                  0, 0, 0 },
525                 { "enable-lro",                 0, 0, 0 },
526                 { "enable-rx-cksum",            0, 0, 0 },
527                 { "enable-scatter",             0, 0, 0 },
528                 { "disable-hw-vlan",            0, 0, 0 },
529                 { "disable-hw-vlan-filter",     0, 0, 0 },
530                 { "disable-hw-vlan-strip",      0, 0, 0 },
531                 { "disable-hw-vlan-extend",     0, 0, 0 },
532                 { "enable-drop-en",            0, 0, 0 },
533                 { "disable-rss",                0, 0, 0 },
534                 { "port-topology",              1, 0, 0 },
535                 { "forward-mode",               1, 0, 0 },
536                 { "rss-ip",                     0, 0, 0 },
537                 { "rss-udp",                    0, 0, 0 },
538                 { "rxq",                        1, 0, 0 },
539                 { "txq",                        1, 0, 0 },
540                 { "rxd",                        1, 0, 0 },
541                 { "txd",                        1, 0, 0 },
542                 { "burst",                      1, 0, 0 },
543                 { "mbcache",                    1, 0, 0 },
544                 { "txpt",                       1, 0, 0 },
545                 { "txht",                       1, 0, 0 },
546                 { "txwt",                       1, 0, 0 },
547                 { "txfreet",                    1, 0, 0 },
548                 { "txrst",                      1, 0, 0 },
549                 { "txqflags",                   1, 0, 0 },
550                 { "rxpt",                       1, 0, 0 },
551                 { "rxht",                       1, 0, 0 },
552                 { "rxwt",                       1, 0, 0 },
553                 { "rxfreet",                    1, 0, 0 },
554                 { "tx-queue-stats-mapping",     1, 0, 0 },
555                 { "rx-queue-stats-mapping",     1, 0, 0 },
556                 { "no-flush-rx",        0, 0, 0 },
557                 { "txpkts",                     1, 0, 0 },
558                 { "disable-link-check",         0, 0, 0 },
559                 { 0, 0, 0, 0 },
560         };
561
562         argvopt = argv;
563
564 #ifdef RTE_LIBRTE_CMDLINE
565 #define SHORTOPTS "i"
566 #else
567 #define SHORTOPTS ""
568 #endif
569         while ((opt = getopt_long(argc, argvopt, SHORTOPTS "ah",
570                                  lgopts, &opt_idx)) != EOF) {
571                 switch (opt) {
572 #ifdef RTE_LIBRTE_CMDLINE
573                 case 'i':
574                         printf("Interactive-mode selected\n");
575                         interactive = 1;
576                         break;
577 #endif
578                 case 'a':
579                         printf("Auto-start selected\n");
580                         auto_start = 1;
581                         break;
582
583                 case 0: /*long options */
584                         if (!strcmp(lgopts[opt_idx].name, "help")) {
585                                 usage(argv[0]);
586                                 rte_exit(EXIT_SUCCESS, "Displayed help\n");
587                         }
588 #ifdef RTE_LIBRTE_CMDLINE
589                         if (!strcmp(lgopts[opt_idx].name, "interactive")) {
590                                 printf("Interactive-mode selected\n");
591                                 interactive = 1;
592                         }
593                         if (!strcmp(lgopts[opt_idx].name, "auto-start")) {
594                                 printf("Auto-start selected\n");
595                                 auto_start = 1;
596                         }
597                         if (!strcmp(lgopts[opt_idx].name,
598                                     "eth-peers-configfile")) {
599                                 if (init_peer_eth_addrs(optarg) != 0)
600                                         rte_exit(EXIT_FAILURE,
601                                                  "Cannot open logfile\n");
602                         }
603                         if (!strcmp(lgopts[opt_idx].name, "eth-peer")) {
604                                 char *port_end;
605                                 uint8_t c, peer_addr[6];
606
607                                 errno = 0;
608                                 n = strtoul(optarg, &port_end, 10);
609                                 if (errno != 0 || port_end == optarg || *port_end++ != ',')
610                                         rte_exit(EXIT_FAILURE,
611                                                  "Invalid eth-peer: %s", optarg);
612                                 if (n >= RTE_MAX_ETHPORTS)
613                                         rte_exit(EXIT_FAILURE,
614                                                  "eth-peer: port %d >= RTE_MAX_ETHPORTS(%d)\n",
615                                                  n, RTE_MAX_ETHPORTS);
616
617                                 if (cmdline_parse_etheraddr(NULL, port_end,
618                                                 &peer_addr, sizeof(peer_addr)) < 0)
619                                         rte_exit(EXIT_FAILURE,
620                                                  "Invalid ethernet address: %s\n",
621                                                  port_end);
622                                 for (c = 0; c < 6; c++)
623                                         peer_eth_addrs[n].addr_bytes[c] =
624                                                 peer_addr[c];
625                                 nb_peer_eth_addrs++;
626                         }
627 #endif
628                         if (!strcmp(lgopts[opt_idx].name, "nb-ports")) {
629                                 n = atoi(optarg);
630                                 if (n > 0 && n <= nb_ports)
631                                         nb_fwd_ports = (uint8_t) n;
632                                 else
633                                         rte_exit(EXIT_FAILURE,
634                                                  "Invalid port %d\n", n);
635                         }
636                         if (!strcmp(lgopts[opt_idx].name, "nb-cores")) {
637                                 n = atoi(optarg);
638                                 if (n > 0 && n <= nb_lcores)
639                                         nb_fwd_lcores = (uint8_t) n;
640                                 else
641                                         rte_exit(EXIT_FAILURE,
642                                                  "nb-cores should be > 0 and <= %d\n",
643                                                  nb_lcores);
644                         }
645                         if (!strcmp(lgopts[opt_idx].name, "coremask"))
646                                 parse_fwd_coremask(optarg);
647                         if (!strcmp(lgopts[opt_idx].name, "portmask"))
648                                 parse_fwd_portmask(optarg);
649                         if (!strcmp(lgopts[opt_idx].name, "numa")) {
650                                 numa_support = 1;
651                                 memset(port_numa,NUMA_NO_CONFIG,RTE_MAX_ETHPORTS);
652                                 memset(rxring_numa,NUMA_NO_CONFIG,RTE_MAX_ETHPORTS);
653                                 memset(txring_numa,NUMA_NO_CONFIG,RTE_MAX_ETHPORTS);
654                         }
655                         if (!strcmp(lgopts[opt_idx].name, "mp-anon")) {
656                                 mp_anon = 1;
657                         }
658                         if (!strcmp(lgopts[opt_idx].name, "port-numa-config")) {
659                                 if (parse_portnuma_config(optarg))
660                                         rte_exit(EXIT_FAILURE,
661                                            "invalid port-numa configuration\n");
662                         }
663                         if (!strcmp(lgopts[opt_idx].name, "ring-numa-config"))
664                                 if (parse_ringnuma_config(optarg))
665                                         rte_exit(EXIT_FAILURE,
666                                            "invalid ring-numa configuration\n");
667                         if (!strcmp(lgopts[opt_idx].name, "socket-num")) {
668                                 n = atoi(optarg);
669                                 if((uint8_t)n < max_socket)
670                                         socket_num = (uint8_t)n;
671                                 else
672                                         rte_exit(EXIT_FAILURE,
673                                                 "The socket number should be < %d\n",
674                                                 max_socket);
675                         }
676                         if (!strcmp(lgopts[opt_idx].name, "mbuf-size")) {
677                                 n = atoi(optarg);
678                                 if (n > 0 && n <= 0xFFFF)
679                                         mbuf_data_size = (uint16_t) n;
680                                 else
681                                         rte_exit(EXIT_FAILURE,
682                                                  "mbuf-size should be > 0 and < 65536\n");
683                         }
684                         if (!strcmp(lgopts[opt_idx].name, "total-num-mbufs")) {
685                                 n = atoi(optarg);
686                                 if (n > 1024)
687                                         param_total_num_mbufs = (unsigned)n;
688                                 else
689                                         rte_exit(EXIT_FAILURE,
690                                                  "total-num-mbufs should be > 1024\n");
691                         }
692                         if (!strcmp(lgopts[opt_idx].name, "max-pkt-len")) {
693                                 n = atoi(optarg);
694                                 if (n >= ETHER_MIN_LEN) {
695                                         rx_mode.max_rx_pkt_len = (uint32_t) n;
696                                         if (n > ETHER_MAX_LEN)
697                                             rx_mode.jumbo_frame = 1;
698                                 } else
699                                         rte_exit(EXIT_FAILURE,
700                                                  "Invalid max-pkt-len=%d - should be > %d\n",
701                                                  n, ETHER_MIN_LEN);
702                         }
703                         if (!strcmp(lgopts[opt_idx].name, "pkt-filter-mode")) {
704                                 if (!strcmp(optarg, "signature"))
705                                         fdir_conf.mode =
706                                                 RTE_FDIR_MODE_SIGNATURE;
707                                 else if (!strcmp(optarg, "perfect"))
708                                         fdir_conf.mode = RTE_FDIR_MODE_PERFECT;
709                                 else if (!strcmp(optarg, "perfect-mac-vlan"))
710                                         fdir_conf.mode = RTE_FDIR_MODE_PERFECT_MAC_VLAN;
711                                 else if (!strcmp(optarg, "perfect-tunnel"))
712                                         fdir_conf.mode = RTE_FDIR_MODE_PERFECT_TUNNEL;
713                                 else if (!strcmp(optarg, "none"))
714                                         fdir_conf.mode = RTE_FDIR_MODE_NONE;
715                                 else
716                                         rte_exit(EXIT_FAILURE,
717                                                  "pkt-mode-invalid %s invalid - must be: "
718                                                  "none, signature, perfect, perfect-mac-vlan"
719                                                  " or perfect-tunnel\n",
720                                                  optarg);
721                         }
722                         if (!strcmp(lgopts[opt_idx].name,
723                                     "pkt-filter-report-hash")) {
724                                 if (!strcmp(optarg, "none"))
725                                         fdir_conf.status =
726                                                 RTE_FDIR_NO_REPORT_STATUS;
727                                 else if (!strcmp(optarg, "match"))
728                                         fdir_conf.status =
729                                                 RTE_FDIR_REPORT_STATUS;
730                                 else if (!strcmp(optarg, "always"))
731                                         fdir_conf.status =
732                                                 RTE_FDIR_REPORT_STATUS_ALWAYS;
733                                 else
734                                         rte_exit(EXIT_FAILURE,
735                                                  "pkt-filter-report-hash %s invalid "
736                                                  "- must be: none or match or always\n",
737                                                  optarg);
738                         }
739                         if (!strcmp(lgopts[opt_idx].name, "pkt-filter-size")) {
740                                 if (!strcmp(optarg, "64K"))
741                                         fdir_conf.pballoc =
742                                                 RTE_FDIR_PBALLOC_64K;
743                                 else if (!strcmp(optarg, "128K"))
744                                         fdir_conf.pballoc =
745                                                 RTE_FDIR_PBALLOC_128K;
746                                 else if (!strcmp(optarg, "256K"))
747                                         fdir_conf.pballoc =
748                                                 RTE_FDIR_PBALLOC_256K;
749                                 else
750                                         rte_exit(EXIT_FAILURE, "pkt-filter-size %s invalid -"
751                                                  " must be: 64K or 128K or 256K\n",
752                                                  optarg);
753                         }
754                         if (!strcmp(lgopts[opt_idx].name,
755                                     "pkt-filter-drop-queue")) {
756                                 n = atoi(optarg);
757                                 if (n >= 0)
758                                         fdir_conf.drop_queue = (uint8_t) n;
759                                 else
760                                         rte_exit(EXIT_FAILURE,
761                                                  "drop queue %d invalid - must"
762                                                  "be >= 0 \n", n);
763                         }
764                         if (!strcmp(lgopts[opt_idx].name, "disable-crc-strip"))
765                                 rx_mode.hw_strip_crc = 0;
766                         if (!strcmp(lgopts[opt_idx].name, "enable-lro"))
767                                 rx_mode.enable_lro = 1;
768                         if (!strcmp(lgopts[opt_idx].name, "enable-scatter"))
769                                 rx_mode.enable_scatter = 1;
770                         if (!strcmp(lgopts[opt_idx].name, "enable-rx-cksum"))
771                                 rx_mode.hw_ip_checksum = 1;
772
773                         if (!strcmp(lgopts[opt_idx].name, "disable-hw-vlan")) {
774                                 rx_mode.hw_vlan_filter = 0;
775                                 rx_mode.hw_vlan_strip  = 0;
776                                 rx_mode.hw_vlan_extend = 0;
777                         }
778
779                         if (!strcmp(lgopts[opt_idx].name,
780                                         "disable-hw-vlan-filter"))
781                                 rx_mode.hw_vlan_filter = 0;
782
783                         if (!strcmp(lgopts[opt_idx].name,
784                                         "disable-hw-vlan-strip"))
785                                 rx_mode.hw_vlan_strip  = 0;
786
787                         if (!strcmp(lgopts[opt_idx].name,
788                                         "disable-hw-vlan-extend"))
789                                 rx_mode.hw_vlan_extend = 0;
790
791                         if (!strcmp(lgopts[opt_idx].name, "enable-drop-en"))
792                                 rx_drop_en = 1;
793
794                         if (!strcmp(lgopts[opt_idx].name, "disable-rss"))
795                                 rss_hf = 0;
796                         if (!strcmp(lgopts[opt_idx].name, "port-topology")) {
797                                 if (!strcmp(optarg, "paired"))
798                                         port_topology = PORT_TOPOLOGY_PAIRED;
799                                 else if (!strcmp(optarg, "chained"))
800                                         port_topology = PORT_TOPOLOGY_CHAINED;
801                                 else if (!strcmp(optarg, "loop"))
802                                         port_topology = PORT_TOPOLOGY_LOOP;
803                                 else
804                                         rte_exit(EXIT_FAILURE, "port-topology %s invalid -"
805                                                  " must be: paired, chained or loop\n",
806                                                  optarg);
807                         }
808                         if (!strcmp(lgopts[opt_idx].name, "forward-mode"))
809                                 set_pkt_forwarding_mode(optarg);
810                         if (!strcmp(lgopts[opt_idx].name, "rss-ip"))
811                                 rss_hf = ETH_RSS_IP;
812                         if (!strcmp(lgopts[opt_idx].name, "rss-udp"))
813                                 rss_hf = ETH_RSS_UDP;
814                         if (!strcmp(lgopts[opt_idx].name, "rxq")) {
815                                 n = atoi(optarg);
816                                 if (n >= 0 && n <= (int) MAX_QUEUE_ID)
817                                         nb_rxq = (queueid_t) n;
818                                 else
819                                         rte_exit(EXIT_FAILURE, "rxq %d invalid - must be"
820                                                   " >= 0 && <= %d\n", n,
821                                                   (int) MAX_QUEUE_ID);
822                         }
823                         if (!strcmp(lgopts[opt_idx].name, "txq")) {
824                                 n = atoi(optarg);
825                                 if (n >= 0 && n <= (int) MAX_QUEUE_ID)
826                                         nb_txq = (queueid_t) n;
827                                 else
828                                         rte_exit(EXIT_FAILURE, "txq %d invalid - must be"
829                                                   " >= 0 && <= %d\n", n,
830                                                   (int) MAX_QUEUE_ID);
831                         }
832                         if (!nb_rxq && !nb_txq) {
833                                 rte_exit(EXIT_FAILURE, "Either rx or tx queues should "
834                                                 "be non-zero\n");
835                         }
836                         if (!strcmp(lgopts[opt_idx].name, "burst")) {
837                                 n = atoi(optarg);
838                                 if ((n >= 1) && (n <= MAX_PKT_BURST))
839                                         nb_pkt_per_burst = (uint16_t) n;
840                                 else
841                                         rte_exit(EXIT_FAILURE,
842                                                  "burst must >= 1 and <= %d]",
843                                                  MAX_PKT_BURST);
844                         }
845                         if (!strcmp(lgopts[opt_idx].name, "mbcache")) {
846                                 n = atoi(optarg);
847                                 if ((n >= 0) &&
848                                     (n <= RTE_MEMPOOL_CACHE_MAX_SIZE))
849                                         mb_mempool_cache = (uint16_t) n;
850                                 else
851                                         rte_exit(EXIT_FAILURE,
852                                                  "mbcache must be >= 0 and <= %d\n",
853                                                  RTE_MEMPOOL_CACHE_MAX_SIZE);
854                         }
855                         if (!strcmp(lgopts[opt_idx].name, "txfreet")) {
856                                 n = atoi(optarg);
857                                 if (n >= 0)
858                                         tx_free_thresh = (int16_t)n;
859                                 else
860                                         rte_exit(EXIT_FAILURE, "txfreet must be >= 0\n");
861                         }
862                         if (!strcmp(lgopts[opt_idx].name, "txrst")) {
863                                 n = atoi(optarg);
864                                 if (n >= 0)
865                                         tx_rs_thresh = (int16_t)n;
866                                 else
867                                         rte_exit(EXIT_FAILURE, "txrst must be >= 0\n");
868                         }
869                         if (!strcmp(lgopts[opt_idx].name, "txqflags")) {
870                                 char *end = NULL;
871                                 n = strtoul(optarg, &end, 16);
872                                 if (n >= 0)
873                                         txq_flags = (int32_t)n;
874                                 else
875                                         rte_exit(EXIT_FAILURE,
876                                                  "txqflags must be >= 0\n");
877                         }
878                         if (!strcmp(lgopts[opt_idx].name, "rxd")) {
879                                 n = atoi(optarg);
880                                 if (n > 0) {
881                                         if (rx_free_thresh >= n)
882                                                 rte_exit(EXIT_FAILURE,
883                                                          "rxd must be > "
884                                                          "rx_free_thresh(%d)\n",
885                                                          (int)rx_free_thresh);
886                                         else
887                                                 nb_rxd = (uint16_t) n;
888                                 } else
889                                         rte_exit(EXIT_FAILURE,
890                                                  "rxd(%d) invalid - must be > 0\n",
891                                                  n);
892                         }
893                         if (!strcmp(lgopts[opt_idx].name, "txd")) {
894                                 n = atoi(optarg);
895                                 if (n > 0)
896                                         nb_txd = (uint16_t) n;
897                                 else
898                                         rte_exit(EXIT_FAILURE, "txd must be in > 0\n");
899                         }
900                         if (!strcmp(lgopts[opt_idx].name, "txpt")) {
901                                 n = atoi(optarg);
902                                 if (n >= 0)
903                                         tx_pthresh = (int8_t)n;
904                                 else
905                                         rte_exit(EXIT_FAILURE, "txpt must be >= 0\n");
906                         }
907                         if (!strcmp(lgopts[opt_idx].name, "txht")) {
908                                 n = atoi(optarg);
909                                 if (n >= 0)
910                                         tx_hthresh = (int8_t)n;
911                                 else
912                                         rte_exit(EXIT_FAILURE, "txht must be >= 0\n");
913                         }
914                         if (!strcmp(lgopts[opt_idx].name, "txwt")) {
915                                 n = atoi(optarg);
916                                 if (n >= 0)
917                                         tx_wthresh = (int8_t)n;
918                                 else
919                                         rte_exit(EXIT_FAILURE, "txwt must be >= 0\n");
920                         }
921                         if (!strcmp(lgopts[opt_idx].name, "rxpt")) {
922                                 n = atoi(optarg);
923                                 if (n >= 0)
924                                         rx_pthresh = (int8_t)n;
925                                 else
926                                         rte_exit(EXIT_FAILURE, "rxpt must be >= 0\n");
927                         }
928                         if (!strcmp(lgopts[opt_idx].name, "rxht")) {
929                                 n = atoi(optarg);
930                                 if (n >= 0)
931                                         rx_hthresh = (int8_t)n;
932                                 else
933                                         rte_exit(EXIT_FAILURE, "rxht must be >= 0\n");
934                         }
935                         if (!strcmp(lgopts[opt_idx].name, "rxwt")) {
936                                 n = atoi(optarg);
937                                 if (n >= 0)
938                                         rx_wthresh = (int8_t)n;
939                                 else
940                                         rte_exit(EXIT_FAILURE, "rxwt must be >= 0\n");
941                         }
942                         if (!strcmp(lgopts[opt_idx].name, "rxfreet")) {
943                                 n = atoi(optarg);
944                                 if (n >= 0)
945                                         rx_free_thresh = (int16_t)n;
946                                 else
947                                         rte_exit(EXIT_FAILURE, "rxfreet must be >= 0\n");
948                         }
949                         if (!strcmp(lgopts[opt_idx].name, "tx-queue-stats-mapping")) {
950                                 if (parse_queue_stats_mapping_config(optarg, TX)) {
951                                         rte_exit(EXIT_FAILURE,
952                                                  "invalid TX queue statistics mapping config entered\n");
953                                 }
954                         }
955                         if (!strcmp(lgopts[opt_idx].name, "rx-queue-stats-mapping")) {
956                                 if (parse_queue_stats_mapping_config(optarg, RX)) {
957                                         rte_exit(EXIT_FAILURE,
958                                                  "invalid RX queue statistics mapping config entered\n");
959                                 }
960                         }
961                         if (!strcmp(lgopts[opt_idx].name, "txpkts")) {
962                                 unsigned seg_lengths[RTE_MAX_SEGS_PER_PKT];
963                                 unsigned int nb_segs;
964
965                                 nb_segs = parse_item_list(optarg, "txpkt segments",
966                                                 RTE_MAX_SEGS_PER_PKT, seg_lengths, 0);
967                                 if (nb_segs > 0)
968                                         set_tx_pkt_segments(seg_lengths, nb_segs);
969                                 else
970                                         rte_exit(EXIT_FAILURE, "bad txpkts\n");
971                         }
972                         if (!strcmp(lgopts[opt_idx].name, "no-flush-rx"))
973                                 no_flush_rx = 1;
974                         if (!strcmp(lgopts[opt_idx].name, "disable-link-check"))
975                                 no_link_check = 1;
976
977                         break;
978                 case 'h':
979                         usage(argv[0]);
980                         rte_exit(EXIT_SUCCESS, "Displayed help\n");
981                         break;
982                 default:
983                         usage(argv[0]);
984                         rte_exit(EXIT_FAILURE,
985                                  "Command line is incomplete or incorrect\n");
986                         break;
987                 }
988         }
989 }