fab9ecab6debb04fa023478171639a464c6dcb54
[dpdk.git] / lib / librte_eal / bsdapp / eal / eal.c
1 /*-
2  *   BSD LICENSE
3  * 
4  *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
5  *   Copyright(c) 2014 6WIND S.A.
6  *   All rights reserved.
7  * 
8  *   Redistribution and use in source and binary forms, with or without
9  *   modification, are permitted provided that the following conditions
10  *   are met:
11  * 
12  *     * Redistributions of source code must retain the above copyright
13  *       notice, this list of conditions and the following disclaimer.
14  *     * Redistributions in binary form must reproduce the above copyright
15  *       notice, this list of conditions and the following disclaimer in
16  *       the documentation and/or other materials provided with the
17  *       distribution.
18  *     * Neither the name of Intel Corporation nor the names of its
19  *       contributors may be used to endorse or promote products derived
20  *       from this software without specific prior written permission.
21  * 
22  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
26  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
28  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33  */
34
35 #include <stdio.h>
36 #include <stdlib.h>
37 #include <stdint.h>
38 #include <string.h>
39 #include <stdarg.h>
40 #include <unistd.h>
41 #include <pthread.h>
42 #include <syslog.h>
43 #include <getopt.h>
44 #include <sys/file.h>
45 #include <stddef.h>
46 #include <errno.h>
47 #include <limits.h>
48 #include <errno.h>
49 #include <sys/mman.h>
50 #include <sys/queue.h>
51
52 #include <rte_common.h>
53 #include <rte_debug.h>
54 #include <rte_memory.h>
55 #include <rte_memzone.h>
56 #include <rte_launch.h>
57 #include <rte_tailq.h>
58 #include <rte_eal.h>
59 #include <rte_eal_memconfig.h>
60 #include <rte_per_lcore.h>
61 #include <rte_lcore.h>
62 #include <rte_log.h>
63 #include <rte_random.h>
64 #include <rte_cycles.h>
65 #include <rte_string_fns.h>
66 #include <rte_cpuflags.h>
67 #include <rte_interrupts.h>
68 #include <rte_pci.h>
69 #include <rte_devargs.h>
70 #include <rte_common.h>
71 #include <rte_version.h>
72 #include <rte_atomic.h>
73 #include <malloc_heap.h>
74 #include <rte_eth_ring.h>
75
76 #include "eal_private.h"
77 #include "eal_thread.h"
78 #include "eal_internal_cfg.h"
79 #include "eal_filesystem.h"
80 #include "eal_hugepages.h"
81
82 #define OPT_HUGE_DIR    "huge-dir"
83 #define OPT_PROC_TYPE   "proc-type"
84 #define OPT_NO_SHCONF   "no-shconf"
85 #define OPT_NO_HPET     "no-hpet"
86 #define OPT_VMWARE_TSC_MAP   "vmware-tsc-map"
87 #define OPT_NO_PCI      "no-pci"
88 #define OPT_NO_HUGE     "no-huge"
89 #define OPT_FILE_PREFIX "file-prefix"
90 #define OPT_SOCKET_MEM  "socket-mem"
91 #define OPT_USE_DEVICE "use-device"
92 #define OPT_PCI_WHITELIST "pci-whitelist"
93 #define OPT_PCI_BLACKLIST "pci-blacklist"
94 #define OPT_VDEV        "vdev"
95 #define OPT_SYSLOG      "syslog"
96
97 #define RTE_EAL_BLACKLIST_SIZE  0x100
98
99 #define MEMSIZE_IF_NO_HUGE_PAGE (64ULL * 1024ULL * 1024ULL)
100
101 #define SOCKET_MEM_STRLEN (RTE_MAX_NUMA_NODES * 10)
102
103 #define HIGHEST_RPL 3
104
105 #define BITS_PER_HEX 4
106
107 #define GET_BLACKLIST_FIELD(in, fd, lim, dlm)                   \
108 {                                                               \
109         unsigned long val;                                      \
110         char *end;                                              \
111         errno = 0;                                              \
112         val = strtoul((in), &end, 16);                          \
113         if (errno != 0 || end[0] != (dlm) || val > (lim))       \
114                 return (-EINVAL);                               \
115         (fd) = (typeof (fd))val;                                \
116         (in) = end + 1;                                         \
117 }
118
119 /* Allow the application to print its usage message too if set */
120 static rte_usage_hook_t rte_application_usage_hook = NULL;
121 /* early configuration structure, when memory config is not mmapped */
122 static struct rte_mem_config early_mem_config;
123
124 /* define fd variable here, because file needs to be kept open for the
125  * duration of the program, as we hold a write lock on it in the primary proc */
126 static int mem_cfg_fd = -1;
127
128 static struct flock wr_lock = {
129                 .l_type = F_WRLCK,
130                 .l_whence = SEEK_SET,
131                 .l_start = offsetof(struct rte_mem_config, memseg),
132                 .l_len = sizeof(early_mem_config.memseg),
133 };
134
135 /* Address of global and public configuration */
136 static struct rte_config rte_config = {
137                 .mem_config = &early_mem_config,
138 };
139
140 /* internal configuration (per-core) */
141 struct lcore_config lcore_config[RTE_MAX_LCORE];
142
143 /* internal configuration */
144 struct internal_config internal_config;
145
146 /* used by rte_rdtsc() */
147 int rte_cycles_vmware_tsc_map;
148
149 /* Return a pointer to the configuration structure */
150 struct rte_config *
151 rte_eal_get_configuration(void)
152 {
153         return &rte_config;
154 }
155
156 /* parse a sysfs (or other) file containing one integer value */
157 int
158 eal_parse_sysfs_value(const char *filename, unsigned long *val)
159 {
160         FILE *f;
161         char buf[BUFSIZ];
162         char *end = NULL;
163
164         if ((f = fopen(filename, "r")) == NULL) {
165                 RTE_LOG(ERR, EAL, "%s(): cannot open sysfs value %s\n",
166                         __func__, filename);
167                 return -1;
168         }
169
170         if (fgets(buf, sizeof(buf), f) == NULL) {
171                 RTE_LOG(ERR, EAL, "%s(): cannot read sysfs value %s\n",
172                         __func__, filename);
173                 fclose(f);
174                 return -1;
175         }
176         *val = strtoul(buf, &end, 0);
177         if ((buf[0] == '\0') || (end == NULL) || (*end != '\n')) {
178                 RTE_LOG(ERR, EAL, "%s(): cannot parse sysfs value %s\n",
179                                 __func__, filename);
180                 fclose(f);
181                 return -1;
182         }
183         fclose(f);
184         return 0;
185 }
186
187
188 /* create memory configuration in shared/mmap memory. Take out
189  * a write lock on the memsegs, so we can auto-detect primary/secondary.
190  * This means we never close the file while running (auto-close on exit).
191  * We also don't lock the whole file, so that in future we can use read-locks
192  * on other parts, e.g. memzones, to detect if there are running secondary
193  * processes. */
194 static void
195 rte_eal_config_create(void)
196 {
197         void *rte_mem_cfg_addr;
198         int retval;
199
200         const char *pathname = eal_runtime_config_path();
201
202         if (internal_config.no_shconf)
203                 return;
204
205         if (mem_cfg_fd < 0){
206                 mem_cfg_fd = open(pathname, O_RDWR | O_CREAT, 0660);
207                 if (mem_cfg_fd < 0)
208                         rte_panic("Cannot open '%s' for rte_mem_config\n", pathname);
209         }
210
211         retval = ftruncate(mem_cfg_fd, sizeof(*rte_config.mem_config));
212         if (retval < 0){
213                 close(mem_cfg_fd);
214                 rte_panic("Cannot resize '%s' for rte_mem_config\n", pathname);
215         }
216
217         retval = fcntl(mem_cfg_fd, F_SETLK, &wr_lock);
218         if (retval < 0){
219                 close(mem_cfg_fd);
220                 rte_exit(EXIT_FAILURE, "Cannot create lock on '%s'. Is another primary "
221                                 "process running?\n", pathname);
222         }
223
224         rte_mem_cfg_addr = mmap(NULL, sizeof(*rte_config.mem_config),
225                                 PROT_READ | PROT_WRITE, MAP_SHARED, mem_cfg_fd, 0);
226
227         if (rte_mem_cfg_addr == MAP_FAILED){
228                 rte_panic("Cannot mmap memory for rte_config\n");
229         }
230         memcpy(rte_mem_cfg_addr, &early_mem_config, sizeof(early_mem_config));
231         rte_config.mem_config = (struct rte_mem_config *) rte_mem_cfg_addr;
232 }
233
234 /* attach to an existing shared memory config */
235 static void
236 rte_eal_config_attach(void)
237 {
238         void *rte_mem_cfg_addr;
239         const char *pathname = eal_runtime_config_path();
240
241         if (internal_config.no_shconf)
242                 return;
243
244         if (mem_cfg_fd < 0){
245                 mem_cfg_fd = open(pathname, O_RDWR);
246                 if (mem_cfg_fd < 0)
247                         rte_panic("Cannot open '%s' for rte_mem_config\n", pathname);
248         }
249
250         rte_mem_cfg_addr = mmap(NULL, sizeof(*rte_config.mem_config), 
251                                 PROT_READ | PROT_WRITE, MAP_SHARED, mem_cfg_fd, 0);
252         close(mem_cfg_fd);
253         if (rte_mem_cfg_addr == MAP_FAILED)
254                 rte_panic("Cannot mmap memory for rte_config\n");
255
256         rte_config.mem_config = (struct rte_mem_config *) rte_mem_cfg_addr;
257 }
258
259 /* Detect if we are a primary or a secondary process */
260 static enum rte_proc_type_t
261 eal_proc_type_detect(void)
262 {
263         enum rte_proc_type_t ptype = RTE_PROC_PRIMARY;
264         const char *pathname = eal_runtime_config_path();
265
266         /* if we can open the file but not get a write-lock we are a secondary
267          * process. NOTE: if we get a file handle back, we keep that open
268          * and don't close it to prevent a race condition between multiple opens */
269         if (((mem_cfg_fd = open(pathname, O_RDWR)) >= 0) &&
270                         (fcntl(mem_cfg_fd, F_SETLK, &wr_lock) < 0))
271                 ptype = RTE_PROC_SECONDARY;
272
273         RTE_LOG(INFO, EAL, "Auto-detected process type: %s\n",
274                         ptype == RTE_PROC_PRIMARY ? "PRIMARY" : "SECONDARY");
275
276         return ptype;
277 }
278
279 /* Sets up rte_config structure with the pointer to shared memory config.*/
280 static void
281 rte_config_init(void)
282 {
283         rte_config.process_type = (internal_config.process_type == RTE_PROC_AUTO) ?
284                         eal_proc_type_detect() : /* for auto, detect the type */
285                         internal_config.process_type; /* otherwise use what's already set */
286
287         switch (rte_config.process_type){
288         case RTE_PROC_PRIMARY:
289                 rte_eal_config_create();
290                 break;
291         case RTE_PROC_SECONDARY:
292                 rte_eal_config_attach();
293                 rte_eal_mcfg_wait_complete(rte_config.mem_config);
294                 break;
295         case RTE_PROC_AUTO:
296         case RTE_PROC_INVALID:
297                 rte_panic("Invalid process type\n");
298         }
299 }
300
301 /* display usage */
302 static void
303 eal_usage(const char *prgname)
304 {
305         printf("\nUsage: %s -c COREMASK -n NUM [-m NB] [-r NUM] [-b <domain:bus:devid.func>]"
306                "[--proc-type primary|secondary|auto] \n\n"
307                "EAL options:\n"
308                "  -c COREMASK  : A hexadecimal bitmask of cores to run on\n"
309                "  -n NUM       : Number of memory channels\n"
310                "  -v           : Display version information on startup\n"
311                "  -m MB        : memory to allocate\n"
312                "  -r NUM       : force number of memory ranks (don't detect)\n"
313                "  --"OPT_PROC_TYPE"  : type of this process\n"
314                "  --"OPT_PCI_BLACKLIST", -b: add a PCI device in black list.\n"
315                "               Prevent EAL from using this PCI device. The argument\n"
316                "               format is <domain:bus:devid.func>.\n"
317                "  --"OPT_PCI_WHITELIST", -w: add a PCI device in white list.\n"
318                "               Only use the specified PCI devices. The argument format\n"
319                "               is <[domain:]bus:devid.func>. This option can be present\n"
320                "               several times (once per device).\n"
321                "               [NOTE: PCI whitelist cannot be used with -b option]\n"
322                "  --"OPT_VDEV": add a virtual device.\n"
323                "               The argument format is <driver><id>[,key=val,...]\n"
324                "               (ex: --vdev=eth_pcap0,iface=eth2).\n"
325                "  --"OPT_VMWARE_TSC_MAP": use VMware TSC map instead of "
326                            "native RDTSC\n"
327                "\nEAL options for DEBUG use only:\n"
328                "  --"OPT_NO_HUGE"  : use malloc instead of hugetlbfs\n"
329                "  --"OPT_NO_PCI"   : disable pci\n"
330                "  --"OPT_NO_SHCONF": no shared config (mmap'd files)\n"
331                "\n",
332                prgname);
333         /* Allow the application to print its usage message too if hook is set */
334         if ( rte_application_usage_hook ) {
335                 printf("===== Application Usage =====\n\n");
336                 rte_application_usage_hook(prgname);
337         }
338 }
339
340 /* Set a per-application usage message */
341 rte_usage_hook_t
342 rte_set_application_usage_hook( rte_usage_hook_t usage_func )
343 {
344         rte_usage_hook_t        old_func;
345
346         /* Will be NULL on the first call to denote the last usage routine. */
347         old_func                                        = rte_application_usage_hook;
348         rte_application_usage_hook      = usage_func;
349
350         return old_func;
351 }
352
353 /*
354  * Parse the coremask given as argument (hexadecimal string) and fill
355  * the global configuration (core role and core count) with the parsed
356  * value.
357  */
358 static int xdigit2val(unsigned char c)
359 {
360         int val;
361         if(isdigit(c)) 
362                 val = c - '0';
363         else if(isupper(c))
364                 val = c - 'A' + 10;
365         else 
366                 val = c - 'a' + 10;
367         return val;
368 }
369 static int
370 eal_parse_coremask(const char *coremask)
371 {
372         struct rte_config *cfg = rte_eal_get_configuration();
373         int i, j, idx = 0 ;
374         unsigned count = 0;
375         char c;
376         int val;
377
378         if (coremask == NULL)
379                 return -1;
380         /* Remove all blank characters ahead and after .
381          * Remove 0x/0X if exists.
382          */
383         while (isblank(*coremask))
384                 coremask++;
385         if (coremask[0] == '0' && ((coremask[1] == 'x')
386                 ||  (coremask[1] == 'X')) )
387                 coremask += 2;
388         i = strnlen(coremask, sysconf(_SC_ARG_MAX));
389         while ((i > 0) && isblank(coremask[i - 1]))
390                 i--;
391         if (i == 0)
392                 return -1;
393
394         for (i = i - 1; i >= 0 && idx < RTE_MAX_LCORE; i--) {
395                 c = coremask[i];
396                 if (isxdigit(c) == 0) {
397                         /* invalid characters */
398                         return (-1);
399                 }
400                 val = xdigit2val(c);
401                 for(j = 0; j < BITS_PER_HEX && idx < RTE_MAX_LCORE; j++, idx++) {
402                         if((1 << j) & val) {
403                                 cfg->lcore_role[idx] = ROLE_RTE;
404                                 if(count == 0)
405                                         cfg->master_lcore = idx;
406                                 count++;
407                         } else  {
408                                 cfg->lcore_role[idx] = ROLE_OFF;
409                         }
410                 }
411         }
412         for(; i >= 0; i--)
413                 if(coremask[i] != '0')
414                         return -1;
415         for(; idx < RTE_MAX_LCORE; idx++)
416                 cfg->lcore_role[idx] = ROLE_OFF;
417         if(count == 0)
418                 return -1;
419         return 0;
420 }
421
422 static int
423 eal_parse_syslog(const char *facility)
424 {
425         int i;
426         static struct {
427                 const char *name;
428                 int value;
429         } map[] = {
430                 { "auth", LOG_AUTH },
431                 { "cron", LOG_CRON },
432                 { "daemon", LOG_DAEMON },
433                 { "ftp", LOG_FTP },
434                 { "kern", LOG_KERN },
435                 { "lpr", LOG_LPR },
436                 { "mail", LOG_MAIL },
437                 { "news", LOG_NEWS },
438                 { "syslog", LOG_SYSLOG },
439                 { "user", LOG_USER },
440                 { "uucp", LOG_UUCP },
441                 { "local0", LOG_LOCAL0 },
442                 { "local1", LOG_LOCAL1 },
443                 { "local2", LOG_LOCAL2 },
444                 { "local3", LOG_LOCAL3 },
445                 { "local4", LOG_LOCAL4 },
446                 { "local5", LOG_LOCAL5 },
447                 { "local6", LOG_LOCAL6 },
448                 { "local7", LOG_LOCAL7 },
449                 { NULL, 0 }
450         };
451
452         for (i = 0; map[i].name; i++) {
453                 if (!strcmp(facility, map[i].name)) {
454                         internal_config.syslog_facility = map[i].value;
455                         return 0;
456                 }
457         }
458         return -1;
459 }
460
461 static inline size_t
462 eal_get_hugepage_mem_size(void)
463 {
464         uint64_t size = 0;
465         unsigned i, j;
466
467         for (i = 0; i < internal_config.num_hugepage_sizes; i++) {
468                 struct hugepage_info *hpi = &internal_config.hugepage_info[i];
469                 if (hpi->hugedir != NULL) {
470                         for (j = 0; j < RTE_MAX_NUMA_NODES; j++) {
471                                 size += hpi->hugepage_sz * hpi->num_pages[j];
472                         }
473                 }
474         }
475
476         return (size < SIZE_MAX) ? (size_t)(size) : SIZE_MAX;
477 }
478
479 static enum rte_proc_type_t
480 eal_parse_proc_type(const char *arg)
481 {
482         if (strncasecmp(arg, "primary", sizeof("primary")) == 0)
483                 return RTE_PROC_PRIMARY;
484         if (strncasecmp(arg, "secondary", sizeof("secondary")) == 0)
485                 return RTE_PROC_SECONDARY;
486         if (strncasecmp(arg, "auto", sizeof("auto")) == 0)
487                 return RTE_PROC_AUTO;
488
489         return RTE_PROC_INVALID;
490 }
491
492 /* Parse the argument given in the command line of the application */
493 static int
494 eal_parse_args(int argc, char **argv)
495 {
496         int opt, ret, i;
497         char **argvopt;
498         int option_index;
499         int coremask_ok = 0;
500         char *prgname = argv[0];
501         static struct option lgopts[] = {
502                 {OPT_NO_HUGE, 0, 0, 0},
503                 {OPT_NO_PCI, 0, 0, 0},
504                 {OPT_NO_HPET, 0, 0, 0},
505                 {OPT_VMWARE_TSC_MAP, 0, 0, 0},
506                 {OPT_HUGE_DIR, 1, 0, 0},
507                 {OPT_NO_SHCONF, 0, 0, 0},
508                 {OPT_PROC_TYPE, 1, 0, 0},
509                 {OPT_FILE_PREFIX, 1, 0, 0},
510                 {OPT_SOCKET_MEM, 1, 0, 0},
511                 {OPT_PCI_WHITELIST, 1, 0, 0},
512                 {OPT_PCI_BLACKLIST, 1, 0, 0},
513                 {OPT_VDEV, 1, 0, 0},
514                 {OPT_SYSLOG, 1, NULL, 0},
515                 {0, 0, 0, 0}
516         };
517
518         argvopt = argv;
519
520         internal_config.memory = 0;
521         internal_config.force_nrank = 0;
522         internal_config.force_nchannel = 0;
523         internal_config.hugefile_prefix = HUGEFILE_PREFIX_DEFAULT;
524         internal_config.hugepage_dir = NULL;
525         internal_config.force_sockets = 0;
526         internal_config.syslog_facility = LOG_DAEMON;
527 #ifdef RTE_LIBEAL_USE_HPET
528         internal_config.no_hpet = 0;
529 #else
530         internal_config.no_hpet = 1;
531 #endif
532         /* zero out the NUMA config */
533         for (i = 0; i < RTE_MAX_NUMA_NODES; i++)
534                 internal_config.socket_mem[i] = 0;
535
536         /* zero out hugedir descriptors */
537         for (i = 0; i < MAX_HUGEPAGE_SIZES; i++)
538                 internal_config.hugepage_info[i].lock_descriptor = 0;
539
540         internal_config.vmware_tsc_map = 0;
541
542         while ((opt = getopt_long(argc, argvopt, "b:w:c:m:n:r:v",
543                                   lgopts, &option_index)) != EOF) {
544
545                 switch (opt) {
546                 /* blacklist */
547                 case 'b':
548                         if (rte_eal_devargs_add(RTE_DEVTYPE_BLACKLISTED_PCI,
549                                         optarg) < 0) {
550                                 eal_usage(prgname);
551                                 return (-1);
552                         }
553                         break;
554                 /* whitelist */
555                 case 'w':
556                         if (rte_eal_devargs_add(RTE_DEVTYPE_WHITELISTED_PCI,
557                                         optarg) < 0) {
558                                 eal_usage(prgname);
559                                 return -1;
560                         }
561                         break;
562                 /* coremask */
563                 case 'c':
564                         if (eal_parse_coremask(optarg) < 0) {
565                                 RTE_LOG(ERR, EAL, "invalid coremask\n");
566                                 eal_usage(prgname);
567                                 return -1;
568                         }
569                         coremask_ok = 1;
570                         break;
571                 /* size of memory */
572                 case 'm':
573                         internal_config.memory = atoi(optarg);
574                         internal_config.memory *= 1024ULL;
575                         internal_config.memory *= 1024ULL;
576                         break;
577                 /* force number of channels */
578                 case 'n':
579                         internal_config.force_nchannel = atoi(optarg);
580                         if (internal_config.force_nchannel == 0 ||
581                             internal_config.force_nchannel > 4) {
582                                 RTE_LOG(ERR, EAL, "invalid channel number\n");
583                                 eal_usage(prgname);
584                                 return -1;
585                         }
586                         break;
587                 /* force number of ranks */
588                 case 'r':
589                         internal_config.force_nrank = atoi(optarg);
590                         if (internal_config.force_nrank == 0 ||
591                             internal_config.force_nrank > 16) {
592                                 RTE_LOG(ERR, EAL, "invalid rank number\n");
593                                 eal_usage(prgname);
594                                 return -1;
595                         }
596                         break;
597                 case 'v':
598                         /* since message is explicitly requested by user, we
599                          * write message at highest log level so it can always be seen
600                          * even if info or warning messages are disabled */
601                         RTE_LOG(CRIT, EAL, "RTE Version: '%s'\n", rte_version());
602                         break;
603
604                 /* long options */
605                 case 0:
606                         if (!strcmp(lgopts[option_index].name, OPT_NO_HUGE)) {
607                                 internal_config.no_hugetlbfs = 1;
608                         }
609                         else if (!strcmp(lgopts[option_index].name, OPT_NO_PCI)) {
610                                 internal_config.no_pci = 1;
611                         }
612                         else if (!strcmp(lgopts[option_index].name, OPT_NO_HPET)) {
613                                 internal_config.no_hpet = 1;
614                         }
615                         else if (!strcmp(lgopts[option_index].name, OPT_VMWARE_TSC_MAP)) {
616                                 internal_config.vmware_tsc_map = 1;
617                         }
618                         else if (!strcmp(lgopts[option_index].name, OPT_NO_SHCONF)) {
619                                 internal_config.no_shconf = 1;
620                         }
621                         else if (!strcmp(lgopts[option_index].name, OPT_HUGE_DIR)) {
622                                 RTE_LOG(ERR, EAL, "Option "OPT_HUGE_DIR" is not supported on"
623                                                 "FreeBSD\n");
624                                 return -1;
625                         }
626                         else if (!strcmp(lgopts[option_index].name, OPT_PROC_TYPE)) {
627                                 internal_config.process_type = eal_parse_proc_type(optarg);
628                         }
629                         else if (!strcmp(lgopts[option_index].name, OPT_FILE_PREFIX)) {
630                                 RTE_LOG(ERR, EAL, "Option "OPT_FILE_PREFIX" is not supported on"
631                                                 "FreeBSD\n");
632                                 return -1;
633                         }
634                         else if (!strcmp(lgopts[option_index].name, OPT_SOCKET_MEM)) {
635                                 RTE_LOG(ERR, EAL, "Option "OPT_SOCKET_MEM" is not supported on"
636                                                 "FreeBSD\n");
637                                 return -1;
638                         }
639                         else if (!strcmp(lgopts[option_index].name, OPT_USE_DEVICE)) {
640                                 printf("The --use-device option is deprecated, please use\n"
641                                         "--whitelist or --vdev instead.\n");
642                                 eal_usage(prgname);
643                                 return -1;
644                         }
645                         else if (!strcmp(lgopts[option_index].name, OPT_PCI_BLACKLIST)) {
646                                 if (rte_eal_devargs_add(RTE_DEVTYPE_BLACKLISTED_PCI,
647                                                 optarg) < 0) {
648                                         eal_usage(prgname);
649                                         return -1;
650                                 }
651                         }
652                         else if (!strcmp(lgopts[option_index].name, OPT_PCI_WHITELIST)) {
653                                 if (rte_eal_devargs_add(RTE_DEVTYPE_WHITELISTED_PCI,
654                                                 optarg) < 0) {
655                                         eal_usage(prgname);
656                                         return -1;
657                                 }
658                         }
659                         else if (!strcmp(lgopts[option_index].name, OPT_VDEV)) {
660                                 if (rte_eal_devargs_add(RTE_DEVTYPE_VIRTUAL,
661                                                 optarg) < 0) {
662                                         eal_usage(prgname);
663                                         return -1;
664                                 }
665                         }
666                         else if (!strcmp(lgopts[option_index].name, OPT_SYSLOG)) {
667                                 if (eal_parse_syslog(optarg) < 0) {
668                                         RTE_LOG(ERR, EAL, "invalid parameters for --"
669                                                         OPT_SYSLOG "\n");
670                                         eal_usage(prgname);
671                                         return -1;
672                                 }
673                         }
674                         break;
675
676                 default:
677                         eal_usage(prgname);
678                         return -1;
679                 }
680         }
681
682         /* sanity checks */
683         if (!coremask_ok) {
684                 RTE_LOG(ERR, EAL, "coremask not specified\n");
685                 eal_usage(prgname);
686                 return -1;
687         }
688         if (internal_config.process_type == RTE_PROC_AUTO){
689                 internal_config.process_type = eal_proc_type_detect();
690         }
691         if (internal_config.process_type == RTE_PROC_INVALID){
692                 RTE_LOG(ERR, EAL, "Invalid process type specified\n");
693                 eal_usage(prgname);
694                 return -1;
695         }
696         if (internal_config.process_type == RTE_PROC_PRIMARY &&
697                         internal_config.force_nchannel == 0) {
698                 RTE_LOG(ERR, EAL, "Number of memory channels (-n) not specified\n");
699                 eal_usage(prgname);
700                 return -1;
701         }
702         if (index(internal_config.hugefile_prefix,'%') != NULL){
703                 RTE_LOG(ERR, EAL, "Invalid char, '%%', in '"OPT_FILE_PREFIX"' option\n");
704                 eal_usage(prgname);
705                 return -1;
706         }
707         if (internal_config.memory > 0 && internal_config.force_sockets == 1) {
708                 RTE_LOG(ERR, EAL, "Options -m and --socket-mem cannot be specified "
709                                 "at the same time\n");
710                 eal_usage(prgname);
711                 return -1;
712         }
713         /* --no-huge doesn't make sense with either -m or --socket-mem */
714         if (internal_config.no_hugetlbfs &&
715                         (internal_config.memory > 0 ||
716                                         internal_config.force_sockets == 1)) {
717                 RTE_LOG(ERR, EAL, "Options -m or --socket-mem cannot be specified "
718                                 "together with --no-huge!\n");
719                 eal_usage(prgname);
720                 return -1;
721         }
722
723         if (rte_eal_devargs_type_count(RTE_DEVTYPE_WHITELISTED_PCI) != 0 &&
724                 rte_eal_devargs_type_count(RTE_DEVTYPE_BLACKLISTED_PCI) != 0) {
725                 RTE_LOG(ERR, EAL, "Error: blacklist [-b] and whitelist "
726                         "[-w] options cannot be used at the same time\n");
727                 eal_usage(prgname);
728                 return -1;
729         }
730
731         if (optind >= 0)
732                 argv[optind-1] = prgname;
733
734         /* if no memory amounts were requested, this will result in 0 and
735          * will be overriden later, right after eal_hugepage_info_init() */
736         for (i = 0; i < RTE_MAX_NUMA_NODES; i++)
737                 internal_config.memory += internal_config.socket_mem[i];
738
739         ret = optind-1;
740         optind = 0; /* reset getopt lib */
741         return ret;
742 }
743
744 static void
745 eal_check_mem_on_local_socket(void)
746 {
747         const struct rte_memseg *ms;
748         int i, socket_id;
749
750         socket_id = rte_lcore_to_socket_id(rte_config.master_lcore);
751
752         ms = rte_eal_get_physmem_layout();
753
754         for (i = 0; i < RTE_MAX_MEMSEG; i++)
755                 if (ms[i].socket_id == socket_id &&
756                                 ms[i].len > 0)
757                         return;
758
759         RTE_LOG(WARNING, EAL, "WARNING: Master core has no "
760                         "memory on local socket!\n");
761 }
762
763 static int
764 sync_func(__attribute__((unused)) void *arg)
765 {
766         return 0;
767 }
768
769 inline static void 
770 rte_eal_mcfg_complete(void)
771 {
772         /* ALL shared mem_config related INIT DONE */
773         if (rte_config.process_type == RTE_PROC_PRIMARY)
774                 rte_config.mem_config->magic = RTE_MAGIC;
775 }
776
777 /* return non-zero if hugepages are enabled. */
778 int rte_eal_has_hugepages(void)
779 {
780         return !internal_config.no_hugetlbfs;
781 }
782
783 /* Abstraction for port I/0 privilege */
784 static int
785 rte_eal_iopl_init(void)
786 {
787         int fd = -1;
788         fd = open("/dev/io", O_RDWR);
789         if (fd < 0)
790                 return -1;
791         return 0;
792 }
793
794 /* Launch threads, called at application init(). */
795 int
796 rte_eal_init(int argc, char **argv)
797 {
798         int i, fctret, ret;
799         pthread_t thread_id;
800         static rte_atomic32_t run_once = RTE_ATOMIC32_INIT(0);
801
802         if (!rte_atomic32_test_and_set(&run_once))
803                 return -1;
804
805         thread_id = pthread_self();
806
807         if (rte_eal_log_early_init() < 0)
808                 rte_panic("Cannot init early logs\n");
809
810         fctret = eal_parse_args(argc, argv);
811         if (fctret < 0)
812                 exit(1);
813
814         if (internal_config.no_hugetlbfs == 0 &&
815                         internal_config.process_type != RTE_PROC_SECONDARY &&
816                         eal_hugepage_info_init() < 0)
817                 rte_panic("Cannot get hugepage information\n");
818
819         if (internal_config.memory == 0 && internal_config.force_sockets == 0) {
820                 if (internal_config.no_hugetlbfs)
821                         internal_config.memory = MEMSIZE_IF_NO_HUGE_PAGE;
822                 else
823                         internal_config.memory = eal_get_hugepage_mem_size();
824         }
825
826         if (internal_config.vmware_tsc_map == 1) {
827 #ifdef RTE_LIBRTE_EAL_VMWARE_TSC_MAP_SUPPORT
828                 rte_cycles_vmware_tsc_map = 1;
829                 RTE_LOG (DEBUG, EAL, "Using VMWARE TSC MAP, "
830                                 "you must have monitor_control.pseudo_perfctr = TRUE\n");
831 #else
832                 RTE_LOG (WARNING, EAL, "Ignoring --vmware-tsc-map because "
833                                 "RTE_LIBRTE_EAL_VMWARE_TSC_MAP_SUPPORT is not set\n");
834 #endif
835         }
836
837         rte_srand(rte_rdtsc());
838
839         rte_config_init();
840
841         if (rte_eal_iopl_init() == 0)
842                 rte_config.flags |= EAL_FLG_HIGH_IOPL;
843
844         if (rte_eal_cpu_init() < 0)
845                 rte_panic("Cannot detect lcores\n");
846
847         if (rte_eal_memory_init() < 0)
848                 rte_panic("Cannot init memory\n");
849
850         if (rte_eal_memzone_init() < 0)
851                 rte_panic("Cannot init memzone\n");
852
853         if (rte_eal_tailqs_init() < 0)
854                 rte_panic("Cannot init tail queues for objects\n");
855
856 /*      if (rte_eal_log_init(argv[0], internal_config.syslog_facility) < 0)
857                 rte_panic("Cannot init logs\n");*/
858
859         if (rte_eal_alarm_init() < 0)
860                 rte_panic("Cannot init interrupt-handling thread\n");
861
862         if (rte_eal_intr_init() < 0)
863                 rte_panic("Cannot init interrupt-handling thread\n");
864
865         if (rte_eal_timer_init() < 0)
866                 rte_panic("Cannot init HPET or TSC timers\n");
867
868         if (rte_eal_pci_init() < 0)
869                 rte_panic("Cannot init PCI\n");
870
871         RTE_LOG(DEBUG, EAL, "Master core %u is ready (tid=%p)\n",
872                 rte_config.master_lcore, thread_id);
873
874         eal_check_mem_on_local_socket();
875
876         rte_eal_mcfg_complete();
877
878         if (rte_eal_dev_init() < 0)
879                 rte_panic("Cannot init pmd devices\n");
880
881         RTE_LCORE_FOREACH_SLAVE(i) {
882
883                 /*
884                  * create communication pipes between master thread
885                  * and children
886                  */
887                 if (pipe(lcore_config[i].pipe_master2slave) < 0)
888                         rte_panic("Cannot create pipe\n");
889                 if (pipe(lcore_config[i].pipe_slave2master) < 0)
890                         rte_panic("Cannot create pipe\n");
891
892                 lcore_config[i].state = WAIT;
893
894                 /* create a thread for each lcore */
895                 ret = pthread_create(&lcore_config[i].thread_id, NULL,
896                                      eal_thread_loop, NULL);
897                 if (ret != 0)
898                         rte_panic("Cannot create thread\n");
899         }
900
901         eal_thread_init_master(rte_config.master_lcore);
902
903         /*
904          * Launch a dummy function on all slave lcores, so that master lcore
905          * knows they are all ready when this function returns.
906          */
907         rte_eal_mp_remote_launch(sync_func, NULL, SKIP_MASTER);
908         rte_eal_mp_wait_lcore();
909
910         return fctret;
911 }
912
913 /* get core role */
914 enum rte_lcore_role_t
915 rte_eal_lcore_role(unsigned lcore_id)
916 {
917         return (rte_config.lcore_role[lcore_id]);
918 }
919
920 enum rte_proc_type_t
921 rte_eal_process_type(void)
922 {
923         return (rte_config.process_type);
924 }
925