eal: allow combining -m and --no-huge
[dpdk.git] / lib / librte_eal / common / eal_common_options.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
5  *   Copyright(c) 2014 6WIND S.A.
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 <stdlib.h>
35 #include <unistd.h>
36 #include <string.h>
37 #include <syslog.h>
38 #include <ctype.h>
39 #include <limits.h>
40 #include <errno.h>
41 #include <getopt.h>
42
43 #include <rte_eal.h>
44 #include <rte_log.h>
45 #include <rte_lcore.h>
46 #include <rte_version.h>
47 #include <rte_devargs.h>
48 #include <rte_memcpy.h>
49
50 #include "eal_internal_cfg.h"
51 #include "eal_options.h"
52 #include "eal_filesystem.h"
53
54 #define BITS_PER_HEX 4
55
56 const char
57 eal_short_options[] =
58         "b:" /* pci-blacklist */
59         "c:" /* coremask */
60         "d:" /* driver */
61         "h"  /* help */
62         "l:" /* corelist */
63         "m:" /* memory size */
64         "n:" /* memory channels */
65         "r:" /* memory ranks */
66         "v"  /* version */
67         "w:" /* pci-whitelist */
68         ;
69
70 const struct option
71 eal_long_options[] = {
72         {OPT_BASE_VIRTADDR,     1, NULL, OPT_BASE_VIRTADDR_NUM    },
73         {OPT_CREATE_UIO_DEV,    0, NULL, OPT_CREATE_UIO_DEV_NUM   },
74         {OPT_FILE_PREFIX,       1, NULL, OPT_FILE_PREFIX_NUM      },
75         {OPT_HELP,              0, NULL, OPT_HELP_NUM             },
76         {OPT_HUGE_DIR,          1, NULL, OPT_HUGE_DIR_NUM         },
77         {OPT_LCORES,            1, NULL, OPT_LCORES_NUM           },
78         {OPT_LOG_LEVEL,         1, NULL, OPT_LOG_LEVEL_NUM        },
79         {OPT_MASTER_LCORE,      1, NULL, OPT_MASTER_LCORE_NUM     },
80         {OPT_NO_HPET,           0, NULL, OPT_NO_HPET_NUM          },
81         {OPT_NO_HUGE,           0, NULL, OPT_NO_HUGE_NUM          },
82         {OPT_NO_PCI,            0, NULL, OPT_NO_PCI_NUM           },
83         {OPT_NO_SHCONF,         0, NULL, OPT_NO_SHCONF_NUM        },
84         {OPT_PCI_BLACKLIST,     1, NULL, OPT_PCI_BLACKLIST_NUM    },
85         {OPT_PCI_WHITELIST,     1, NULL, OPT_PCI_WHITELIST_NUM    },
86         {OPT_PROC_TYPE,         1, NULL, OPT_PROC_TYPE_NUM        },
87         {OPT_SOCKET_MEM,        1, NULL, OPT_SOCKET_MEM_NUM       },
88         {OPT_SYSLOG,            1, NULL, OPT_SYSLOG_NUM           },
89         {OPT_VDEV,              1, NULL, OPT_VDEV_NUM             },
90         {OPT_VFIO_INTR,         1, NULL, OPT_VFIO_INTR_NUM        },
91         {OPT_VMWARE_TSC_MAP,    0, NULL, OPT_VMWARE_TSC_MAP_NUM   },
92         {OPT_XEN_DOM0,          0, NULL, OPT_XEN_DOM0_NUM         },
93         {0,                     0, NULL, 0                        }
94 };
95
96 static int lcores_parsed;
97 static int master_lcore_parsed;
98 static int mem_parsed;
99
100 void
101 eal_reset_internal_config(struct internal_config *internal_cfg)
102 {
103         int i;
104
105         internal_cfg->memory = 0;
106         internal_cfg->force_nrank = 0;
107         internal_cfg->force_nchannel = 0;
108         internal_cfg->hugefile_prefix = HUGEFILE_PREFIX_DEFAULT;
109         internal_cfg->hugepage_dir = NULL;
110         internal_cfg->force_sockets = 0;
111         /* zero out the NUMA config */
112         for (i = 0; i < RTE_MAX_NUMA_NODES; i++)
113                 internal_cfg->socket_mem[i] = 0;
114         /* zero out hugedir descriptors */
115         for (i = 0; i < MAX_HUGEPAGE_SIZES; i++)
116                 internal_cfg->hugepage_info[i].lock_descriptor = -1;
117         internal_cfg->base_virtaddr = 0;
118
119         internal_cfg->syslog_facility = LOG_DAEMON;
120         /* default value from build option */
121         internal_cfg->log_level = RTE_LOG_LEVEL;
122
123         internal_cfg->xen_dom0_support = 0;
124
125         /* if set to NONE, interrupt mode is determined automatically */
126         internal_cfg->vfio_intr_mode = RTE_INTR_MODE_NONE;
127
128 #ifdef RTE_LIBEAL_USE_HPET
129         internal_cfg->no_hpet = 0;
130 #else
131         internal_cfg->no_hpet = 1;
132 #endif
133         internal_cfg->vmware_tsc_map = 0;
134         internal_cfg->create_uio_dev = 0;
135 }
136
137 /*
138  * Parse the coremask given as argument (hexadecimal string) and fill
139  * the global configuration (core role and core count) with the parsed
140  * value.
141  */
142 static int xdigit2val(unsigned char c)
143 {
144         int val;
145
146         if (isdigit(c))
147                 val = c - '0';
148         else if (isupper(c))
149                 val = c - 'A' + 10;
150         else
151                 val = c - 'a' + 10;
152         return val;
153 }
154
155 static int
156 eal_parse_coremask(const char *coremask)
157 {
158         struct rte_config *cfg = rte_eal_get_configuration();
159         int i, j, idx = 0;
160         unsigned count = 0;
161         char c;
162         int val;
163
164         if (coremask == NULL)
165                 return -1;
166         /* Remove all blank characters ahead and after .
167          * Remove 0x/0X if exists.
168          */
169         while (isblank(*coremask))
170                 coremask++;
171         if (coremask[0] == '0' && ((coremask[1] == 'x')
172                 || (coremask[1] == 'X')))
173                 coremask += 2;
174         i = strlen(coremask);
175         while ((i > 0) && isblank(coremask[i - 1]))
176                 i--;
177         if (i == 0)
178                 return -1;
179
180         for (i = i - 1; i >= 0 && idx < RTE_MAX_LCORE; i--) {
181                 c = coremask[i];
182                 if (isxdigit(c) == 0) {
183                         /* invalid characters */
184                         return -1;
185                 }
186                 val = xdigit2val(c);
187                 for (j = 0; j < BITS_PER_HEX && idx < RTE_MAX_LCORE; j++, idx++)
188                 {
189                         if ((1 << j) & val) {
190                                 if (!lcore_config[idx].detected) {
191                                         RTE_LOG(ERR, EAL, "lcore %u "
192                                                 "unavailable\n", idx);
193                                         return -1;
194                                 }
195                                 cfg->lcore_role[idx] = ROLE_RTE;
196                                 lcore_config[idx].core_index = count;
197                                 count++;
198                         } else {
199                                 cfg->lcore_role[idx] = ROLE_OFF;
200                                 lcore_config[idx].core_index = -1;
201                         }
202                 }
203         }
204         for (; i >= 0; i--)
205                 if (coremask[i] != '0')
206                         return -1;
207         for (; idx < RTE_MAX_LCORE; idx++) {
208                 cfg->lcore_role[idx] = ROLE_OFF;
209                 lcore_config[idx].core_index = -1;
210         }
211         if (count == 0)
212                 return -1;
213         /* Update the count of enabled logical cores of the EAL configuration */
214         cfg->lcore_count = count;
215         lcores_parsed = 1;
216         return 0;
217 }
218
219 static int
220 eal_parse_corelist(const char *corelist)
221 {
222         struct rte_config *cfg = rte_eal_get_configuration();
223         int i, idx = 0;
224         unsigned count = 0;
225         char *end = NULL;
226         int min, max;
227
228         if (corelist == NULL)
229                 return -1;
230
231         /* Remove all blank characters ahead and after */
232         while (isblank(*corelist))
233                 corelist++;
234         i = strlen(corelist);
235         while ((i > 0) && isblank(corelist[i - 1]))
236                 i--;
237
238         /* Reset config */
239         for (idx = 0; idx < RTE_MAX_LCORE; idx++) {
240                 cfg->lcore_role[idx] = ROLE_OFF;
241                 lcore_config[idx].core_index = -1;
242         }
243
244         /* Get list of cores */
245         min = RTE_MAX_LCORE;
246         do {
247                 while (isblank(*corelist))
248                         corelist++;
249                 if (*corelist == '\0')
250                         return -1;
251                 errno = 0;
252                 idx = strtoul(corelist, &end, 10);
253                 if (errno || end == NULL)
254                         return -1;
255                 while (isblank(*end))
256                         end++;
257                 if (*end == '-') {
258                         min = idx;
259                 } else if ((*end == ',') || (*end == '\0')) {
260                         max = idx;
261                         if (min == RTE_MAX_LCORE)
262                                 min = idx;
263                         for (idx = min; idx <= max; idx++) {
264                                 if (cfg->lcore_role[idx] != ROLE_RTE) {
265                                         cfg->lcore_role[idx] = ROLE_RTE;
266                                         lcore_config[idx].core_index = count;
267                                         count++;
268                                 }
269                         }
270                         min = RTE_MAX_LCORE;
271                 } else
272                         return -1;
273                 corelist = end + 1;
274         } while (*end != '\0');
275
276         if (count == 0)
277                 return -1;
278
279         /* Update the count of enabled logical cores of the EAL configuration */
280         cfg->lcore_count = count;
281
282         lcores_parsed = 1;
283         return 0;
284 }
285
286 /* Changes the lcore id of the master thread */
287 static int
288 eal_parse_master_lcore(const char *arg)
289 {
290         char *parsing_end;
291         struct rte_config *cfg = rte_eal_get_configuration();
292
293         errno = 0;
294         cfg->master_lcore = (uint32_t) strtol(arg, &parsing_end, 0);
295         if (errno || parsing_end[0] != 0)
296                 return -1;
297         if (cfg->master_lcore >= RTE_MAX_LCORE)
298                 return -1;
299         master_lcore_parsed = 1;
300         return 0;
301 }
302
303 /*
304  * Parse elem, the elem could be single number/range or '(' ')' group
305  * 1) A single number elem, it's just a simple digit. e.g. 9
306  * 2) A single range elem, two digits with a '-' between. e.g. 2-6
307  * 3) A group elem, combines multiple 1) or 2) with '( )'. e.g (0,2-4,6)
308  *    Within group elem, '-' used for a range separator;
309  *                       ',' used for a single number.
310  */
311 static int
312 eal_parse_set(const char *input, uint16_t set[], unsigned num)
313 {
314         unsigned idx;
315         const char *str = input;
316         char *end = NULL;
317         unsigned min, max;
318
319         memset(set, 0, num * sizeof(uint16_t));
320
321         while (isblank(*str))
322                 str++;
323
324         /* only digit or left bracket is qualify for start point */
325         if ((!isdigit(*str) && *str != '(') || *str == '\0')
326                 return -1;
327
328         /* process single number or single range of number */
329         if (*str != '(') {
330                 errno = 0;
331                 idx = strtoul(str, &end, 10);
332                 if (errno || end == NULL || idx >= num)
333                         return -1;
334                 else {
335                         while (isblank(*end))
336                                 end++;
337
338                         min = idx;
339                         max = idx;
340                         if (*end == '-') {
341                                 /* process single <number>-<number> */
342                                 end++;
343                                 while (isblank(*end))
344                                         end++;
345                                 if (!isdigit(*end))
346                                         return -1;
347
348                                 errno = 0;
349                                 idx = strtoul(end, &end, 10);
350                                 if (errno || end == NULL || idx >= num)
351                                         return -1;
352                                 max = idx;
353                                 while (isblank(*end))
354                                         end++;
355                                 if (*end != ',' && *end != '\0')
356                                         return -1;
357                         }
358
359                         if (*end != ',' && *end != '\0' &&
360                             *end != '@')
361                                 return -1;
362
363                         for (idx = RTE_MIN(min, max);
364                              idx <= RTE_MAX(min, max); idx++)
365                                 set[idx] = 1;
366
367                         return end - input;
368                 }
369         }
370
371         /* process set within bracket */
372         str++;
373         while (isblank(*str))
374                 str++;
375         if (*str == '\0')
376                 return -1;
377
378         min = RTE_MAX_LCORE;
379         do {
380
381                 /* go ahead to the first digit */
382                 while (isblank(*str))
383                         str++;
384                 if (!isdigit(*str))
385                         return -1;
386
387                 /* get the digit value */
388                 errno = 0;
389                 idx = strtoul(str, &end, 10);
390                 if (errno || end == NULL || idx >= num)
391                         return -1;
392
393                 /* go ahead to separator '-',',' and ')' */
394                 while (isblank(*end))
395                         end++;
396                 if (*end == '-') {
397                         if (min == RTE_MAX_LCORE)
398                                 min = idx;
399                         else /* avoid continuous '-' */
400                                 return -1;
401                 } else if ((*end == ',') || (*end == ')')) {
402                         max = idx;
403                         if (min == RTE_MAX_LCORE)
404                                 min = idx;
405                         for (idx = RTE_MIN(min, max);
406                              idx <= RTE_MAX(min, max); idx++)
407                                 set[idx] = 1;
408
409                         min = RTE_MAX_LCORE;
410                 } else
411                         return -1;
412
413                 str = end + 1;
414         } while (*end != '\0' && *end != ')');
415
416         return str - input;
417 }
418
419 /* convert from set array to cpuset bitmap */
420 static int
421 convert_to_cpuset(rte_cpuset_t *cpusetp,
422               uint16_t *set, unsigned num)
423 {
424         unsigned idx;
425
426         CPU_ZERO(cpusetp);
427
428         for (idx = 0; idx < num; idx++) {
429                 if (!set[idx])
430                         continue;
431
432                 if (!lcore_config[idx].detected) {
433                         RTE_LOG(ERR, EAL, "core %u "
434                                 "unavailable\n", idx);
435                         return -1;
436                 }
437
438                 CPU_SET(idx, cpusetp);
439         }
440
441         return 0;
442 }
443
444 /*
445  * The format pattern: --lcores='<lcores[@cpus]>[<,lcores[@cpus]>...]'
446  * lcores, cpus could be a single digit/range or a group.
447  * '(' and ')' are necessary if it's a group.
448  * If not supply '@cpus', the value of cpus uses the same as lcores.
449  * e.g. '1,2@(5-7),(3-5)@(0,2),(0,6),7-8' means start 9 EAL thread as below
450  *   lcore 0 runs on cpuset 0x41 (cpu 0,6)
451  *   lcore 1 runs on cpuset 0x2 (cpu 1)
452  *   lcore 2 runs on cpuset 0xe0 (cpu 5,6,7)
453  *   lcore 3,4,5 runs on cpuset 0x5 (cpu 0,2)
454  *   lcore 6 runs on cpuset 0x41 (cpu 0,6)
455  *   lcore 7 runs on cpuset 0x80 (cpu 7)
456  *   lcore 8 runs on cpuset 0x100 (cpu 8)
457  */
458 static int
459 eal_parse_lcores(const char *lcores)
460 {
461         struct rte_config *cfg = rte_eal_get_configuration();
462         static uint16_t set[RTE_MAX_LCORE];
463         unsigned idx = 0;
464         int i;
465         unsigned count = 0;
466         const char *lcore_start = NULL;
467         const char *end = NULL;
468         int offset;
469         rte_cpuset_t cpuset;
470         int lflags = 0;
471         int ret = -1;
472
473         if (lcores == NULL)
474                 return -1;
475
476         /* Remove all blank characters ahead and after */
477         while (isblank(*lcores))
478                 lcores++;
479         i = strlen(lcores);
480         while ((i > 0) && isblank(lcores[i - 1]))
481                 i--;
482
483         CPU_ZERO(&cpuset);
484
485         /* Reset lcore config */
486         for (idx = 0; idx < RTE_MAX_LCORE; idx++) {
487                 cfg->lcore_role[idx] = ROLE_OFF;
488                 lcore_config[idx].core_index = -1;
489                 CPU_ZERO(&lcore_config[idx].cpuset);
490         }
491
492         /* Get list of cores */
493         do {
494                 while (isblank(*lcores))
495                         lcores++;
496                 if (*lcores == '\0')
497                         goto err;
498
499                 /* record lcore_set start point */
500                 lcore_start = lcores;
501
502                 /* go across a complete bracket */
503                 if (*lcore_start == '(') {
504                         lcores += strcspn(lcores, ")");
505                         if (*lcores++ == '\0')
506                                 goto err;
507                 }
508
509                 /* scan the separator '@', ','(next) or '\0'(finish) */
510                 lcores += strcspn(lcores, "@,");
511
512                 if (*lcores == '@') {
513                         /* explicit assign cpu_set */
514                         offset = eal_parse_set(lcores + 1, set, RTE_DIM(set));
515                         if (offset < 0)
516                                 goto err;
517
518                         /* prepare cpu_set and update the end cursor */
519                         if (0 > convert_to_cpuset(&cpuset,
520                                                   set, RTE_DIM(set)))
521                                 goto err;
522                         end = lcores + 1 + offset;
523                 } else { /* ',' or '\0' */
524                         /* haven't given cpu_set, current loop done */
525                         end = lcores;
526
527                         /* go back to check <number>-<number> */
528                         offset = strcspn(lcore_start, "(-");
529                         if (offset < (end - lcore_start) &&
530                             *(lcore_start + offset) != '(')
531                                 lflags = 1;
532                 }
533
534                 if (*end != ',' && *end != '\0')
535                         goto err;
536
537                 /* parse lcore_set from start point */
538                 if (0 > eal_parse_set(lcore_start, set, RTE_DIM(set)))
539                         goto err;
540
541                 /* without '@', by default using lcore_set as cpu_set */
542                 if (*lcores != '@' &&
543                     0 > convert_to_cpuset(&cpuset, set, RTE_DIM(set)))
544                         goto err;
545
546                 /* start to update lcore_set */
547                 for (idx = 0; idx < RTE_MAX_LCORE; idx++) {
548                         if (!set[idx])
549                                 continue;
550
551                         if (cfg->lcore_role[idx] != ROLE_RTE) {
552                                 lcore_config[idx].core_index = count;
553                                 cfg->lcore_role[idx] = ROLE_RTE;
554                                 count++;
555                         }
556
557                         if (lflags) {
558                                 CPU_ZERO(&cpuset);
559                                 CPU_SET(idx, &cpuset);
560                         }
561                         rte_memcpy(&lcore_config[idx].cpuset, &cpuset,
562                                    sizeof(rte_cpuset_t));
563                 }
564
565                 lcores = end + 1;
566         } while (*end != '\0');
567
568         if (count == 0)
569                 goto err;
570
571         cfg->lcore_count = count;
572         lcores_parsed = 1;
573         ret = 0;
574
575 err:
576
577         return ret;
578 }
579
580 static int
581 eal_parse_syslog(const char *facility, struct internal_config *conf)
582 {
583         int i;
584         static struct {
585                 const char *name;
586                 int value;
587         } map[] = {
588                 { "auth", LOG_AUTH },
589                 { "cron", LOG_CRON },
590                 { "daemon", LOG_DAEMON },
591                 { "ftp", LOG_FTP },
592                 { "kern", LOG_KERN },
593                 { "lpr", LOG_LPR },
594                 { "mail", LOG_MAIL },
595                 { "news", LOG_NEWS },
596                 { "syslog", LOG_SYSLOG },
597                 { "user", LOG_USER },
598                 { "uucp", LOG_UUCP },
599                 { "local0", LOG_LOCAL0 },
600                 { "local1", LOG_LOCAL1 },
601                 { "local2", LOG_LOCAL2 },
602                 { "local3", LOG_LOCAL3 },
603                 { "local4", LOG_LOCAL4 },
604                 { "local5", LOG_LOCAL5 },
605                 { "local6", LOG_LOCAL6 },
606                 { "local7", LOG_LOCAL7 },
607                 { NULL, 0 }
608         };
609
610         for (i = 0; map[i].name; i++) {
611                 if (!strcmp(facility, map[i].name)) {
612                         conf->syslog_facility = map[i].value;
613                         return 0;
614                 }
615         }
616         return -1;
617 }
618
619 static int
620 eal_parse_log_level(const char *level, uint32_t *log_level)
621 {
622         char *end;
623         unsigned long tmp;
624
625         errno = 0;
626         tmp = strtoul(level, &end, 0);
627
628         /* check for errors */
629         if ((errno != 0) || (level[0] == '\0') ||
630             end == NULL || (*end != '\0'))
631                 return -1;
632
633         /* log_level is a uint32_t */
634         if (tmp >= UINT32_MAX)
635                 return -1;
636
637         *log_level = tmp;
638         return 0;
639 }
640
641 static enum rte_proc_type_t
642 eal_parse_proc_type(const char *arg)
643 {
644         if (strncasecmp(arg, "primary", sizeof("primary")) == 0)
645                 return RTE_PROC_PRIMARY;
646         if (strncasecmp(arg, "secondary", sizeof("secondary")) == 0)
647                 return RTE_PROC_SECONDARY;
648         if (strncasecmp(arg, "auto", sizeof("auto")) == 0)
649                 return RTE_PROC_AUTO;
650
651         return RTE_PROC_INVALID;
652 }
653
654 int
655 eal_parse_common_option(int opt, const char *optarg,
656                         struct internal_config *conf)
657 {
658         switch (opt) {
659         /* blacklist */
660         case 'b':
661                 if (rte_eal_devargs_add(RTE_DEVTYPE_BLACKLISTED_PCI,
662                                 optarg) < 0) {
663                         return -1;
664                 }
665                 break;
666         /* whitelist */
667         case 'w':
668                 if (rte_eal_devargs_add(RTE_DEVTYPE_WHITELISTED_PCI,
669                                 optarg) < 0) {
670                         return -1;
671                 }
672                 break;
673         /* coremask */
674         case 'c':
675                 if (eal_parse_coremask(optarg) < 0) {
676                         RTE_LOG(ERR, EAL, "invalid coremask\n");
677                         return -1;
678                 }
679                 break;
680         /* corelist */
681         case 'l':
682                 if (eal_parse_corelist(optarg) < 0) {
683                         RTE_LOG(ERR, EAL, "invalid core list\n");
684                         return -1;
685                 }
686                 break;
687         /* size of memory */
688         case 'm':
689                 conf->memory = atoi(optarg);
690                 conf->memory *= 1024ULL;
691                 conf->memory *= 1024ULL;
692                 mem_parsed = 1;
693                 break;
694         /* force number of channels */
695         case 'n':
696                 conf->force_nchannel = atoi(optarg);
697                 if (conf->force_nchannel == 0 ||
698                     conf->force_nchannel > 4) {
699                         RTE_LOG(ERR, EAL, "invalid channel number\n");
700                         return -1;
701                 }
702                 break;
703         /* force number of ranks */
704         case 'r':
705                 conf->force_nrank = atoi(optarg);
706                 if (conf->force_nrank == 0 ||
707                     conf->force_nrank > 16) {
708                         RTE_LOG(ERR, EAL, "invalid rank number\n");
709                         return -1;
710                 }
711                 break;
712         case 'v':
713                 /* since message is explicitly requested by user, we
714                  * write message at highest log level so it can always
715                  * be seen
716                  * even if info or warning messages are disabled */
717                 RTE_LOG(CRIT, EAL, "RTE Version: '%s'\n", rte_version());
718                 break;
719
720         /* long options */
721         case OPT_NO_HUGE_NUM:
722                 conf->no_hugetlbfs = 1;
723                 break;
724
725         case OPT_NO_PCI_NUM:
726                 conf->no_pci = 1;
727                 break;
728
729         case OPT_NO_HPET_NUM:
730                 conf->no_hpet = 1;
731                 break;
732
733         case OPT_VMWARE_TSC_MAP_NUM:
734                 conf->vmware_tsc_map = 1;
735                 break;
736
737         case OPT_NO_SHCONF_NUM:
738                 conf->no_shconf = 1;
739                 break;
740
741         case OPT_PROC_TYPE_NUM:
742                 conf->process_type = eal_parse_proc_type(optarg);
743                 break;
744
745         case OPT_MASTER_LCORE_NUM:
746                 if (eal_parse_master_lcore(optarg) < 0) {
747                         RTE_LOG(ERR, EAL, "invalid parameter for --"
748                                         OPT_MASTER_LCORE "\n");
749                         return -1;
750                 }
751                 break;
752
753         case OPT_VDEV_NUM:
754                 if (rte_eal_devargs_add(RTE_DEVTYPE_VIRTUAL,
755                                 optarg) < 0) {
756                         return -1;
757                 }
758                 break;
759
760         case OPT_SYSLOG_NUM:
761                 if (eal_parse_syslog(optarg, conf) < 0) {
762                         RTE_LOG(ERR, EAL, "invalid parameters for --"
763                                         OPT_SYSLOG "\n");
764                         return -1;
765                 }
766                 break;
767
768         case OPT_LOG_LEVEL_NUM: {
769                 uint32_t log;
770
771                 if (eal_parse_log_level(optarg, &log) < 0) {
772                         RTE_LOG(ERR, EAL,
773                                 "invalid parameters for --"
774                                 OPT_LOG_LEVEL "\n");
775                         return -1;
776                 }
777                 conf->log_level = log;
778                 break;
779         }
780         case OPT_LCORES_NUM:
781                 if (eal_parse_lcores(optarg) < 0) {
782                         RTE_LOG(ERR, EAL, "invalid parameter for --"
783                                 OPT_LCORES "\n");
784                         return -1;
785                 }
786                 break;
787
788         /* don't know what to do, leave this to caller */
789         default:
790                 return 1;
791
792         }
793
794         return 0;
795 }
796
797 int
798 eal_adjust_config(struct internal_config *internal_cfg)
799 {
800         int i;
801         struct rte_config *cfg = rte_eal_get_configuration();
802
803         if (internal_config.process_type == RTE_PROC_AUTO)
804                 internal_config.process_type = eal_proc_type_detect();
805
806         /* default master lcore is the first one */
807         if (!master_lcore_parsed)
808                 cfg->master_lcore = rte_get_next_lcore(-1, 0, 0);
809
810         /* if no memory amounts were requested, this will result in 0 and
811          * will be overridden later, right after eal_hugepage_info_init() */
812         for (i = 0; i < RTE_MAX_NUMA_NODES; i++)
813                 internal_cfg->memory += internal_cfg->socket_mem[i];
814
815         return 0;
816 }
817
818 int
819 eal_check_common_options(struct internal_config *internal_cfg)
820 {
821         struct rte_config *cfg = rte_eal_get_configuration();
822
823         if (!lcores_parsed) {
824                 RTE_LOG(ERR, EAL, "CPU cores must be enabled with options "
825                         "-c, -l or --lcores\n");
826                 return -1;
827         }
828         if (cfg->lcore_role[cfg->master_lcore] != ROLE_RTE) {
829                 RTE_LOG(ERR, EAL, "Master lcore is not enabled for DPDK\n");
830                 return -1;
831         }
832
833         if (internal_cfg->process_type == RTE_PROC_INVALID) {
834                 RTE_LOG(ERR, EAL, "Invalid process type specified\n");
835                 return -1;
836         }
837         if (internal_cfg->process_type == RTE_PROC_PRIMARY &&
838                         internal_cfg->force_nchannel == 0) {
839                 RTE_LOG(ERR, EAL, "Number of memory channels (-n) not "
840                         "specified\n");
841                 return -1;
842         }
843         if (index(internal_cfg->hugefile_prefix, '%') != NULL) {
844                 RTE_LOG(ERR, EAL, "Invalid char, '%%', in --"OPT_FILE_PREFIX" "
845                         "option\n");
846                 return -1;
847         }
848         if (mem_parsed && internal_cfg->force_sockets == 1) {
849                 RTE_LOG(ERR, EAL, "Options -m and --"OPT_SOCKET_MEM" cannot "
850                         "be specified at the same time\n");
851                 return -1;
852         }
853         if (internal_cfg->no_hugetlbfs && internal_cfg->force_sockets == 1) {
854                 RTE_LOG(ERR, EAL, "Option --"OPT_SOCKET_MEM" cannot "
855                         "be specified together with --"OPT_NO_HUGE"\n");
856                 return -1;
857         }
858
859         if (rte_eal_devargs_type_count(RTE_DEVTYPE_WHITELISTED_PCI) != 0 &&
860                 rte_eal_devargs_type_count(RTE_DEVTYPE_BLACKLISTED_PCI) != 0) {
861                 RTE_LOG(ERR, EAL, "Options blacklist (-b) and whitelist (-w) "
862                         "cannot be used at the same time\n");
863                 return -1;
864         }
865
866         return 0;
867 }
868
869 void
870 eal_common_usage(void)
871 {
872         printf("-c COREMASK|-l CORELIST -n CHANNELS [options]\n\n"
873                "EAL common options:\n"
874                "  -c COREMASK         Hexadecimal bitmask of cores to run on\n"
875                "  -l CORELIST         List of cores to run on\n"
876                "                      The argument format is <c1>[-c2][,c3[-c4],...]\n"
877                "                      where c1, c2, etc are core indexes between 0 and %d\n"
878                "  --"OPT_LCORES" COREMAP    Map lcore set to physical cpu set\n"
879                "                      The argument format is\n"
880                "                            '<lcores[@cpus]>[<,lcores[@cpus]>...]'\n"
881                "                      lcores and cpus list are grouped by '(' and ')'\n"
882                "                      Within the group, '-' is used for range separator,\n"
883                "                      ',' is used for single number separator.\n"
884                "                      '( )' can be omitted for single element group,\n"
885                "                      '@' can be omitted if cpus and lcores have the same value\n"
886                "  --"OPT_MASTER_LCORE" ID   Core ID that is used as master\n"
887                "  -n CHANNELS         Number of memory channels\n"
888                "  -m MB               Memory to allocate (see also --"OPT_SOCKET_MEM")\n"
889                "  -r RANKS            Force number of memory ranks (don't detect)\n"
890                "  -b, --"OPT_PCI_BLACKLIST" Add a PCI device in black list.\n"
891                "                      Prevent EAL from using this PCI device. The argument\n"
892                "                      format is <domain:bus:devid.func>.\n"
893                "  -w, --"OPT_PCI_WHITELIST" Add a PCI device in white list.\n"
894                "                      Only use the specified PCI devices. The argument format\n"
895                "                      is <[domain:]bus:devid.func>. This option can be present\n"
896                "                      several times (once per device).\n"
897                "                      [NOTE: PCI whitelist cannot be used with -b option]\n"
898                "  --"OPT_VDEV"              Add a virtual device.\n"
899                "                      The argument format is <driver><id>[,key=val,...]\n"
900                "                      (ex: --vdev=eth_pcap0,iface=eth2).\n"
901                "  --"OPT_VMWARE_TSC_MAP"    Use VMware TSC map instead of native RDTSC\n"
902                "  --"OPT_PROC_TYPE"         Type of this process (primary|secondary|auto)\n"
903                "  --"OPT_SYSLOG"            Set syslog facility\n"
904                "  --"OPT_LOG_LEVEL"         Set default log level\n"
905                "  -v                  Display version information on startup\n"
906                "  -h, --help          This help\n"
907                "\nEAL options for DEBUG use only:\n"
908                "  --"OPT_NO_HUGE"           Use malloc instead of hugetlbfs\n"
909                "  --"OPT_NO_PCI"            Disable PCI\n"
910                "  --"OPT_NO_HPET"           Disable HPET\n"
911                "  --"OPT_NO_SHCONF"         No shared config (mmap'd files)\n"
912                "\n", RTE_MAX_LCORE);
913 }