update Intel copyright years to 2014
[dpdk.git] / lib / librte_eal / linuxapp / eal / eal.c
1 /*-
2  *   BSD LICENSE
3  * 
4  *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  * 
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  * 
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  * 
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #include <stdio.h>
35 #include <stdlib.h>
36 #include <stdint.h>
37 #include <string.h>
38 #include <stdarg.h>
39 #include <unistd.h>
40 #include <pthread.h>
41 #include <syslog.h>
42 #include <getopt.h>
43 #include <sys/file.h>
44 #include <stddef.h>
45 #include <errno.h>
46 #include <limits.h>
47 #include <errno.h>
48 #include <sys/mman.h>
49 #include <sys/queue.h>
50 #include <sys/io.h>
51 #include <sys/user.h>
52 #include <linux/binfmts.h>
53
54 #include <rte_common.h>
55 #include <rte_debug.h>
56 #include <rte_memory.h>
57 #include <rte_memzone.h>
58 #include <rte_launch.h>
59 #include <rte_tailq.h>
60 #include <rte_eal.h>
61 #include <rte_eal_memconfig.h>
62 #include <rte_per_lcore.h>
63 #include <rte_lcore.h>
64 #include <rte_log.h>
65 #include <rte_random.h>
66 #include <rte_cycles.h>
67 #include <rte_string_fns.h>
68 #include <rte_cpuflags.h>
69 #include <rte_interrupts.h>
70 #include <rte_pci.h>
71 #include <rte_common.h>
72 #include <rte_version.h>
73 #include <rte_atomic.h>
74 #include <malloc_heap.h>
75 #include <rte_eth_ring.h>
76
77 #include "eal_private.h"
78 #include "eal_thread.h"
79 #include "eal_internal_cfg.h"
80 #include "eal_filesystem.h"
81 #include "eal_hugepages.h"
82
83 #define OPT_HUGE_DIR    "huge-dir"
84 #define OPT_PROC_TYPE   "proc-type"
85 #define OPT_NO_SHCONF   "no-shconf"
86 #define OPT_NO_HPET     "no-hpet"
87 #define OPT_VMWARE_TSC_MAP   "vmware-tsc-map"
88 #define OPT_NO_PCI      "no-pci"
89 #define OPT_NO_HUGE     "no-huge"
90 #define OPT_FILE_PREFIX "file-prefix"
91 #define OPT_SOCKET_MEM  "socket-mem"
92 #define OPT_USE_DEVICE  "use-device"
93 #define OPT_SYSLOG      "syslog"
94
95 #define RTE_EAL_BLACKLIST_SIZE  0x100
96
97 #define MEMSIZE_IF_NO_HUGE_PAGE (64ULL * 1024ULL * 1024ULL)
98
99 #define SOCKET_MEM_STRLEN (RTE_MAX_NUMA_NODES * 10)
100
101 #define HIGHEST_RPL 3
102
103 #define BITS_PER_HEX 4
104
105 #define GET_BLACKLIST_FIELD(in, fd, lim, dlm)                   \
106 {                                                               \
107         unsigned long val;                                      \
108         char *end;                                              \
109         errno = 0;                                              \
110         val = strtoul((in), &end, 16);                          \
111         if (errno != 0 || end[0] != (dlm) || val > (lim))       \
112                 return (-EINVAL);                               \
113         (fd) = (typeof (fd))val;                                \
114         (in) = end + 1;                                         \
115 }
116
117 /* Allow the application to print its usage message too if set */
118 static rte_usage_hook_t rte_application_usage_hook = NULL;
119 /* early configuration structure, when memory config is not mmapped */
120 static struct rte_mem_config early_mem_config;
121
122 /* define fd variable here, because file needs to be kept open for the
123  * duration of the program, as we hold a write lock on it in the primary proc */
124 static int mem_cfg_fd = -1;
125
126 static struct flock wr_lock = {
127                 .l_type = F_WRLCK,
128                 .l_whence = SEEK_SET,
129                 .l_start = offsetof(struct rte_mem_config, memseg),
130                 .l_len = sizeof(early_mem_config.memseg),
131 };
132
133 /* Address of global and public configuration */
134 static struct rte_config rte_config = {
135                 .mem_config = &early_mem_config,
136 };
137
138 static struct rte_pci_addr eal_dev_blacklist[RTE_EAL_BLACKLIST_SIZE];
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         /* set the magic in configuration structure */
284         rte_config.magic = RTE_MAGIC;
285         rte_config.process_type = (internal_config.process_type == RTE_PROC_AUTO) ?
286                         eal_proc_type_detect() : /* for auto, detect the type */
287                         internal_config.process_type; /* otherwise use what's already set */
288
289         switch (rte_config.process_type){
290         case RTE_PROC_PRIMARY:
291                 rte_eal_config_create();
292                 break;
293         case RTE_PROC_SECONDARY:
294                 rte_eal_config_attach();
295                 rte_eal_mcfg_wait_complete(rte_config.mem_config);
296                 break;
297         case RTE_PROC_AUTO:
298         case RTE_PROC_INVALID:
299                 rte_panic("Invalid process type\n");
300         }
301 }
302
303 /* Unlocks hugepage directories that were locked by eal_hugepage_info_init */
304 static void
305 eal_hugedirs_unlock(void)
306 {
307         int i;
308
309         for (i = 0; i < MAX_HUGEPAGE_SIZES; i++)
310         {
311                 /* skip uninitialized */
312                 if (internal_config.hugepage_info[i].lock_descriptor == 0)
313                         continue;
314                 /* unlock hugepage file */
315                 flock(internal_config.hugepage_info[i].lock_descriptor, LOCK_UN);
316                 close(internal_config.hugepage_info[i].lock_descriptor);
317                 /* reset the field */
318                 internal_config.hugepage_info[i].lock_descriptor = 0;
319         }
320 }
321
322 /* display usage */
323 static void
324 eal_usage(const char *prgname)
325 {
326         printf("\nUsage: %s -c COREMASK -n NUM [-m NB] [-r NUM] [-b <domain:bus:devid.func>]"
327                "[--proc-type primary|secondary|auto] \n\n"
328                "EAL options:\n"
329                "  -c COREMASK  : A hexadecimal bitmask of cores to run on\n"
330                "  -n NUM       : Number of memory channels\n"
331                    "  -v           : Display version information on startup\n"
332                "  -b <domain:bus:devid.func>: to prevent EAL from using specified "
333            "PCI device\n"
334                "                 (multiple -b options are allowed)\n"
335                "  -m MB        : memory to allocate (see also --"OPT_SOCKET_MEM")\n"
336                "  -r NUM       : force number of memory ranks (don't detect)\n"
337                "  --"OPT_SYSLOG"     : set syslog facility\n"
338                "  --"OPT_SOCKET_MEM" : memory to allocate on specific \n"
339                    "                 sockets (use comma separated values)\n"
340                "  --"OPT_HUGE_DIR"   : directory where hugetlbfs is mounted\n"
341                "  --"OPT_PROC_TYPE"  : type of this process\n"
342                "  --"OPT_FILE_PREFIX": prefix for hugepage filenames\n"
343                "  --"OPT_USE_DEVICE": use the specified ethernet device(s) only. "
344                            "Use comma-separate <[domain:]bus:devid.func> values.\n"
345                "               [NOTE: Cannot be used with -b option]\n"
346                "  --"OPT_VMWARE_TSC_MAP": use VMware TSC map instead of "
347                            "native RDTSC\n"
348                "\nEAL options for DEBUG use only:\n"
349                "  --"OPT_NO_HUGE"  : use malloc instead of hugetlbfs\n"
350                "  --"OPT_NO_PCI"   : disable pci\n"
351                "  --"OPT_NO_HPET"  : disable hpet\n"
352                "  --"OPT_NO_SHCONF": no shared config (mmap'd files)\n"
353                "\n",
354                prgname);
355         /* Allow the application to print its usage message too if hook is set */
356         if ( rte_application_usage_hook ) {
357                 printf("===== Application Usage =====\n\n");
358                 rte_application_usage_hook(prgname);
359         }
360 }
361
362 /* Set a per-application usage message */
363 rte_usage_hook_t
364 rte_set_application_usage_hook( rte_usage_hook_t usage_func )
365 {
366         rte_usage_hook_t        old_func;
367
368         /* Will be NULL on the first call to denote the last usage routine. */
369         old_func                                        = rte_application_usage_hook;
370         rte_application_usage_hook      = usage_func;
371
372         return old_func;
373 }
374
375 /*
376  * Parse the coremask given as argument (hexadecimal string) and fill
377  * the global configuration (core role and core count) with the parsed
378  * value.
379  */
380 static int xdigit2val(unsigned char c)
381 {
382         int val;
383         if(isdigit(c)) 
384                 val = c - '0';
385         else if(isupper(c))
386                 val = c - 'A' + 10;
387         else 
388                 val = c - 'a' + 10;
389         return val;
390 }
391 static int
392 eal_parse_coremask(const char *coremask)
393 {
394         struct rte_config *cfg = rte_eal_get_configuration();
395         int i, j, idx = 0 ;
396         unsigned count = 0;
397         char c;
398         int val;
399
400         if (coremask == NULL)
401                 return -1;
402         /* Remove all blank characters ahead and after .
403          * Remove 0x/0X if exists.
404          */
405         while (isblank(*coremask))
406                 coremask++;
407         if (coremask[0] == '0' && ((coremask[1] == 'x')
408                 ||  (coremask[1] == 'X')) )
409                 coremask += 2;
410         i = strnlen(coremask, MAX_ARG_STRLEN);
411         while ((i > 0) && isblank(coremask[i - 1]))
412                 i--;
413         if (i == 0)
414                 return -1;
415
416         for (i = i - 1; i >= 0 && idx < RTE_MAX_LCORE; i--) {
417                 c = coremask[i];
418                 if (isxdigit(c) == 0) {
419                         /* invalid characters */
420                         return (-1);
421                 }
422                 val = xdigit2val(c);
423                 for(j = 0; j < BITS_PER_HEX && idx < RTE_MAX_LCORE; j++, idx++) {
424                         if((1 << j) & val) {
425                                 cfg->lcore_role[idx] = ROLE_RTE;
426                                 if(count == 0)
427                                         cfg->master_lcore = idx;
428                                 count++;
429                         } else  {
430                                 cfg->lcore_role[idx] = ROLE_OFF;
431                         }
432                 }
433         }
434         for(; i >= 0; i--)
435                 if(coremask[i] != '0')
436                         return -1;
437         for(; idx < RTE_MAX_LCORE; idx++)
438                 cfg->lcore_role[idx] = ROLE_OFF;
439         if(count == 0)
440                 return -1;
441         return 0;
442 }
443
444 static int
445 eal_parse_syslog(const char *facility)
446 {
447         int i;
448         static struct {
449                 const char *name;
450                 int value;
451         } map[] = {
452                 { "auth", LOG_AUTH },
453                 { "cron", LOG_CRON },
454                 { "daemon", LOG_DAEMON },
455                 { "ftp", LOG_FTP },
456                 { "kern", LOG_KERN },
457                 { "lpr", LOG_LPR },
458                 { "mail", LOG_MAIL },
459                 { "news", LOG_NEWS },
460                 { "syslog", LOG_SYSLOG },
461                 { "user", LOG_USER },
462                 { "uucp", LOG_UUCP },
463                 { "local0", LOG_LOCAL0 },
464                 { "local1", LOG_LOCAL1 },
465                 { "local2", LOG_LOCAL2 },
466                 { "local3", LOG_LOCAL3 },
467                 { "local4", LOG_LOCAL4 },
468                 { "local5", LOG_LOCAL5 },
469                 { "local6", LOG_LOCAL6 },
470                 { "local7", LOG_LOCAL7 },
471                 { NULL, 0 }
472         };
473
474         for (i = 0; map[i].name; i++) {
475                 if (!strcmp(facility, map[i].name)) {
476                         internal_config.syslog_facility = map[i].value;
477                         return 0;
478                 }
479         }
480         return -1;
481 }
482
483 static int
484 eal_parse_socket_mem(char *socket_mem)
485 {
486         char * arg[RTE_MAX_NUMA_NODES];
487         char *end;
488         int arg_num, i, len;
489         uint64_t total_mem = 0;
490
491         len = strnlen(socket_mem, SOCKET_MEM_STRLEN);
492         if (len == SOCKET_MEM_STRLEN) {
493                 RTE_LOG(ERR, EAL, "--socket-mem is too long\n");
494                 return -1;
495         }
496
497         /* all other error cases will be caught later */
498         if (!isdigit(socket_mem[len-1]))
499                 return -1;
500
501         /* split the optarg into separate socket values */
502         arg_num = rte_strsplit(socket_mem, len,
503                         arg, RTE_MAX_NUMA_NODES, ',');
504
505         /* if split failed, or 0 arguments */
506         if (arg_num <= 0)
507                 return -1;
508
509         internal_config.force_sockets = 1;
510
511         /* parse each defined socket option */
512         errno = 0;
513         for (i = 0; i < arg_num; i++) {
514                 end = NULL;
515                 internal_config.socket_mem[i] = strtoull(arg[i], &end, 10);
516
517                 /* check for invalid input */
518                 if ((errno != 0)  ||
519                                 (arg[i][0] == '\0') || (end == NULL) || (*end != '\0'))
520                         return -1;
521                 internal_config.socket_mem[i] *= 1024ULL;
522                 internal_config.socket_mem[i] *= 1024ULL;
523                 total_mem += internal_config.socket_mem[i];
524         }
525
526         /* check if we have a positive amount of total memory */
527         if (total_mem == 0)
528                 return -1;
529
530         return 0;
531 }
532
533 static inline size_t
534 eal_get_hugepage_mem_size(void)
535 {
536         uint64_t size = 0;
537         unsigned i, j;
538
539         for (i = 0; i < internal_config.num_hugepage_sizes; i++) {
540                 struct hugepage_info *hpi = &internal_config.hugepage_info[i];
541                 if (hpi->hugedir != NULL) {
542                         for (j = 0; j < RTE_MAX_NUMA_NODES; j++) {
543                                 size += hpi->hugepage_sz * hpi->num_pages[j];
544                         }
545                 }
546         }
547
548         return (size < SIZE_MAX) ? (size_t)(size) : SIZE_MAX;
549 }
550
551 static enum rte_proc_type_t
552 eal_parse_proc_type(const char *arg)
553 {
554         if (strncasecmp(arg, "primary", sizeof("primary")) == 0)
555                 return RTE_PROC_PRIMARY;
556         if (strncasecmp(arg, "secondary", sizeof("secondary")) == 0)
557                 return RTE_PROC_SECONDARY;
558         if (strncasecmp(arg, "auto", sizeof("auto")) == 0)
559                 return RTE_PROC_AUTO;
560
561         return RTE_PROC_INVALID;
562 }
563
564 static ssize_t
565 eal_parse_blacklist_opt(const char *optarg, size_t idx)
566 {
567         if (idx >= sizeof (eal_dev_blacklist) / sizeof (eal_dev_blacklist[0])) {
568                 RTE_LOG(ERR, EAL, "%s - too many devices to blacklist...\n", optarg);
569                 return (-EINVAL);
570         } else if (eal_parse_pci_DomBDF(optarg, eal_dev_blacklist + idx) < 0 &&
571                         eal_parse_pci_BDF(optarg, eal_dev_blacklist + idx) < 0) {
572                 RTE_LOG(ERR, EAL, "%s - invalid device to blacklist...\n", optarg);
573                 return (-EINVAL);
574         }
575
576         idx += 1;
577         return (idx);
578 }
579
580 /* Parse the argument given in the command line of the application */
581 static int
582 eal_parse_args(int argc, char **argv)
583 {
584         int opt, ret, i;
585         char **argvopt;
586         int option_index;
587         int coremask_ok = 0;
588         ssize_t blacklist_index = 0;
589         char *prgname = argv[0];
590         static struct option lgopts[] = {
591                 {OPT_NO_HUGE, 0, 0, 0},
592                 {OPT_NO_PCI, 0, 0, 0},
593                 {OPT_NO_HPET, 0, 0, 0},
594                 {OPT_VMWARE_TSC_MAP, 0, 0, 0},
595                 {OPT_HUGE_DIR, 1, 0, 0},
596                 {OPT_NO_SHCONF, 0, 0, 0},
597                 {OPT_PROC_TYPE, 1, 0, 0},
598                 {OPT_FILE_PREFIX, 1, 0, 0},
599                 {OPT_SOCKET_MEM, 1, 0, 0},
600                 {OPT_USE_DEVICE, 1, 0, 0},
601                 {OPT_SYSLOG, 1, NULL, 0},
602                 {0, 0, 0, 0}
603         };
604
605         argvopt = argv;
606
607         internal_config.memory = 0;
608         internal_config.force_nrank = 0;
609         internal_config.force_nchannel = 0;
610         internal_config.hugefile_prefix = HUGEFILE_PREFIX_DEFAULT;
611         internal_config.hugepage_dir = NULL;
612         internal_config.force_sockets = 0;
613         internal_config.syslog_facility = LOG_DAEMON;
614 #ifdef RTE_LIBEAL_USE_HPET
615         internal_config.no_hpet = 0;
616 #else
617         internal_config.no_hpet = 1;
618 #endif
619         /* zero out the NUMA config */
620         for (i = 0; i < RTE_MAX_NUMA_NODES; i++)
621                 internal_config.socket_mem[i] = 0;
622
623         /* zero out hugedir descriptors */
624         for (i = 0; i < MAX_HUGEPAGE_SIZES; i++)
625                 internal_config.hugepage_info[i].lock_descriptor = 0;
626
627         internal_config.vmware_tsc_map = 0;
628
629         while ((opt = getopt_long(argc, argvopt, "b:c:m:n:r:v",
630                                   lgopts, &option_index)) != EOF) {
631
632                 switch (opt) {
633                 /* blacklist */
634                 case 'b':
635                         if ((blacklist_index = eal_parse_blacklist_opt(optarg,
636                             blacklist_index)) < 0) {
637                                 eal_usage(prgname);
638                                 return (-1);
639                         }
640                         break;
641                 /* coremask */
642                 case 'c':
643                         if (eal_parse_coremask(optarg) < 0) {
644                                 RTE_LOG(ERR, EAL, "invalid coremask\n");
645                                 eal_usage(prgname);
646                                 return -1;
647                         }
648                         coremask_ok = 1;
649                         break;
650                 /* size of memory */
651                 case 'm':
652                         internal_config.memory = atoi(optarg);
653                         internal_config.memory *= 1024ULL;
654                         internal_config.memory *= 1024ULL;
655                         break;
656                 /* force number of channels */
657                 case 'n':
658                         internal_config.force_nchannel = atoi(optarg);
659                         if (internal_config.force_nchannel == 0 ||
660                             internal_config.force_nchannel > 4) {
661                                 RTE_LOG(ERR, EAL, "invalid channel number\n");
662                                 eal_usage(prgname);
663                                 return -1;
664                         }
665                         break;
666                 /* force number of ranks */
667                 case 'r':
668                         internal_config.force_nrank = atoi(optarg);
669                         if (internal_config.force_nrank == 0 ||
670                             internal_config.force_nrank > 16) {
671                                 RTE_LOG(ERR, EAL, "invalid rank number\n");
672                                 eal_usage(prgname);
673                                 return -1;
674                         }
675                         break;
676                 case 'v':
677                         /* since message is explicitly requested by user, we
678                          * write message at highest log level so it can always be seen
679                          * even if info or warning messages are disabled */
680                         RTE_LOG(CRIT, EAL, "RTE Version: '%s'\n", rte_version());
681                         break;
682
683                 /* long options */
684                 case 0:
685                         if (!strcmp(lgopts[option_index].name, OPT_NO_HUGE)) {
686                                 internal_config.no_hugetlbfs = 1;
687                         }
688                         else if (!strcmp(lgopts[option_index].name, OPT_NO_PCI)) {
689                                 internal_config.no_pci = 1;
690                         }
691                         else if (!strcmp(lgopts[option_index].name, OPT_NO_HPET)) {
692                                 internal_config.no_hpet = 1;
693                         }
694                         else if (!strcmp(lgopts[option_index].name, OPT_VMWARE_TSC_MAP)) {
695                                 internal_config.vmware_tsc_map = 1;
696                         }
697                         else if (!strcmp(lgopts[option_index].name, OPT_NO_SHCONF)) {
698                                 internal_config.no_shconf = 1;
699                         }
700                         else if (!strcmp(lgopts[option_index].name, OPT_HUGE_DIR)) {
701                                 internal_config.hugepage_dir = optarg;
702                         }
703                         else if (!strcmp(lgopts[option_index].name, OPT_PROC_TYPE)) {
704                                 internal_config.process_type = eal_parse_proc_type(optarg);
705                         }
706                         else if (!strcmp(lgopts[option_index].name, OPT_FILE_PREFIX)) {
707                                 internal_config.hugefile_prefix = optarg;
708                         }
709                         else if (!strcmp(lgopts[option_index].name, OPT_SOCKET_MEM)) {
710                                 if (eal_parse_socket_mem(optarg) < 0) {
711                                         RTE_LOG(ERR, EAL, "invalid parameters for --"
712                                                         OPT_SOCKET_MEM "\n");
713                                         eal_usage(prgname);
714                                         return -1;
715                                 }
716                         }
717                         else if (!strcmp(lgopts[option_index].name, OPT_USE_DEVICE)) {
718                                 eal_dev_whitelist_add_entry(optarg);
719                         }
720                         else if (!strcmp(lgopts[option_index].name, OPT_SYSLOG)) {
721                                 if (eal_parse_syslog(optarg) < 0) {
722                                         RTE_LOG(ERR, EAL, "invalid parameters for --"
723                                                         OPT_SYSLOG "\n");
724                                         eal_usage(prgname);
725                                         return -1;
726                                 }
727                         }
728                         break;
729
730                 default:
731                         eal_usage(prgname);
732                         return -1;
733                 }
734         }
735
736         /* sanity checks */
737         if (!coremask_ok) {
738                 RTE_LOG(ERR, EAL, "coremask not specified\n");
739                 eal_usage(prgname);
740                 return -1;
741         }
742         if (internal_config.process_type == RTE_PROC_AUTO){
743                 internal_config.process_type = eal_proc_type_detect();
744         }
745         if (internal_config.process_type == RTE_PROC_INVALID){
746                 RTE_LOG(ERR, EAL, "Invalid process type specified\n");
747                 eal_usage(prgname);
748                 return -1;
749         }
750         if (internal_config.process_type == RTE_PROC_PRIMARY &&
751                         internal_config.force_nchannel == 0) {
752                 RTE_LOG(ERR, EAL, "Number of memory channels (-n) not specified\n");
753                 eal_usage(prgname);
754                 return -1;
755         }
756         if (index(internal_config.hugefile_prefix,'%') != NULL){
757                 RTE_LOG(ERR, EAL, "Invalid char, '%%', in '"OPT_FILE_PREFIX"' option\n");
758                 eal_usage(prgname);
759                 return -1;
760         }
761         if (internal_config.memory > 0 && internal_config.force_sockets == 1) {
762                 RTE_LOG(ERR, EAL, "Options -m and --socket-mem cannot be specified "
763                                 "at the same time\n");
764                 eal_usage(prgname);
765                 return -1;
766         }
767         /* --no-huge doesn't make sense with either -m or --socket-mem */
768         if (internal_config.no_hugetlbfs &&
769                         (internal_config.memory > 0 ||
770                                         internal_config.force_sockets == 1)) {
771                 RTE_LOG(ERR, EAL, "Options -m or --socket-mem cannot be specified "
772                                 "together with --no-huge!\n");
773                 eal_usage(prgname);
774                 return -1;
775         }
776
777         /* if no blacklist, parse a whitelist */
778         if (blacklist_index > 0) {
779                 if (eal_dev_whitelist_exists()) {
780                         RTE_LOG(ERR, EAL, "Error: blacklist [-b] and whitelist "
781                                         "[--use-device] options cannot be used at the same time\n");
782                         eal_usage(prgname);
783                         return -1;
784                 }
785                 rte_eal_pci_set_blacklist(eal_dev_blacklist, blacklist_index);
786         } else {
787                 if (eal_dev_whitelist_exists() && eal_dev_whitelist_parse() < 0) {
788                         RTE_LOG(ERR,EAL, "Error parsing whitelist[--use-device] options\n");
789                         return -1;
790                 }
791         }
792
793         if (optind >= 0)
794                 argv[optind-1] = prgname;
795
796         /* if no memory amounts were requested, this will result in 0 and
797          * will be overriden later, right after eal_hugepage_info_init() */
798         for (i = 0; i < RTE_MAX_NUMA_NODES; i++)
799                 internal_config.memory += internal_config.socket_mem[i];
800
801         ret = optind-1;
802         optind = 0; /* reset getopt lib */
803         return ret;
804 }
805
806 static void
807 eal_check_mem_on_local_socket(void)
808 {
809         const struct rte_memseg *ms;
810         int i, socket_id;
811
812         socket_id = rte_lcore_to_socket_id(rte_config.master_lcore);
813
814         ms = rte_eal_get_physmem_layout();
815
816         for (i = 0; i < RTE_MAX_MEMSEG; i++)
817                 if (ms[i].socket_id == socket_id &&
818                                 ms[i].len > 0)
819                         return;
820
821         RTE_LOG(WARNING, EAL, "WARNING: Master core has no "
822                         "memory on local socket!\n");
823 }
824
825 static int
826 sync_func(__attribute__((unused)) void *arg)
827 {
828         return 0;
829 }
830
831 inline static void 
832 rte_eal_mcfg_complete(void)
833 {
834         /* ALL shared mem_config related INIT DONE */
835         if (rte_config.process_type == RTE_PROC_PRIMARY)
836                 rte_config.mem_config->magic = RTE_MAGIC;
837 }
838
839 /*
840  * Request iopl priviledge for all RPL, returns 0 on success
841  */
842 static int
843 rte_eal_iopl_init(void)
844 {
845         return iopl(HIGHEST_RPL);
846 }
847
848 /* Launch threads, called at application init(). */
849 int
850 rte_eal_init(int argc, char **argv)
851 {
852         int i, fctret, ret;
853         pthread_t thread_id;
854         static rte_atomic32_t run_once = RTE_ATOMIC32_INIT(0);
855
856         if (!rte_atomic32_test_and_set(&run_once))
857                 return -1;
858
859         thread_id = pthread_self();
860
861         if (rte_eal_log_early_init() < 0)
862                 rte_panic("Cannot init early logs\n");
863
864         fctret = eal_parse_args(argc, argv);
865         if (fctret < 0)
866                 exit(1);
867
868         if (internal_config.no_hugetlbfs == 0 &&
869                         internal_config.process_type != RTE_PROC_SECONDARY &&
870                         eal_hugepage_info_init() < 0)
871                 rte_panic("Cannot get hugepage information\n");
872
873         if (internal_config.memory == 0 && internal_config.force_sockets == 0) {
874                 if (internal_config.no_hugetlbfs)
875                         internal_config.memory = MEMSIZE_IF_NO_HUGE_PAGE;
876                 else
877                         internal_config.memory = eal_get_hugepage_mem_size();
878         }
879
880         if (internal_config.vmware_tsc_map == 1) {
881 #ifdef RTE_LIBRTE_EAL_VMWARE_TSC_MAP_SUPPORT
882                 rte_cycles_vmware_tsc_map = 1;
883                 RTE_LOG (DEBUG, EAL, "Using VMWARE TSC MAP, "
884                                 "you must have monitor_control.pseudo_perfctr = TRUE\n");
885 #else
886                 RTE_LOG (WARNING, EAL, "Ignoring --vmware-tsc-map because "
887                                 "RTE_LIBRTE_EAL_VMWARE_TSC_MAP_SUPPORT is not set\n");
888 #endif
889         }
890
891         rte_srand(rte_rdtsc());
892
893         rte_config_init();
894
895         if (rte_eal_iopl_init() == 0)
896                 rte_config.flags |= EAL_FLG_HIGH_IOPL;
897         
898         if (rte_eal_cpu_init() < 0)
899                 rte_panic("Cannot detect lcores\n");
900
901         if (rte_eal_memory_init() < 0)
902                 rte_panic("Cannot init memory\n");
903
904         /* the directories are locked during eal_hugepage_info_init */
905         eal_hugedirs_unlock();
906         
907         if (rte_eal_memzone_init() < 0)
908                 rte_panic("Cannot init memzone\n");
909
910         if (rte_eal_tailqs_init() < 0)
911                 rte_panic("Cannot init tail queues for objects\n");
912
913         if (rte_eal_log_init(argv[0], internal_config.syslog_facility) < 0)
914                 rte_panic("Cannot init logs\n");
915
916         if (rte_eal_alarm_init() < 0)
917                 rte_panic("Cannot init interrupt-handling thread\n");
918
919         if (rte_eal_intr_init() < 0)
920                 rte_panic("Cannot init interrupt-handling thread\n");
921
922         if (rte_eal_timer_init() < 0)
923                 rte_panic("Cannot init HPET or TSC timers\n");
924
925         if (rte_eal_pci_init() < 0)
926                 rte_panic("Cannot init PCI\n");
927
928         RTE_LOG(DEBUG, EAL, "Master core %u is ready (tid=%x)\n",
929                 rte_config.master_lcore, (int)thread_id);
930
931         eal_check_mem_on_local_socket();
932
933         rte_eal_mcfg_complete();
934
935         if (rte_eal_non_pci_ethdev_init() < 0)
936                 rte_panic("Cannot init non-PCI eth_devs\n");
937
938         RTE_LCORE_FOREACH_SLAVE(i) {
939
940                 /*
941                  * create communication pipes between master thread
942                  * and children
943                  */
944                 if (pipe(lcore_config[i].pipe_master2slave) < 0)
945                         rte_panic("Cannot create pipe\n");
946                 if (pipe(lcore_config[i].pipe_slave2master) < 0)
947                         rte_panic("Cannot create pipe\n");
948
949                 lcore_config[i].state = WAIT;
950
951                 /* create a thread for each lcore */
952                 ret = pthread_create(&lcore_config[i].thread_id, NULL,
953                                      eal_thread_loop, NULL);
954                 if (ret != 0)
955                         rte_panic("Cannot create thread\n");
956         }
957
958         eal_thread_init_master(rte_config.master_lcore);
959
960         /*
961          * Launch a dummy function on all slave lcores, so that master lcore
962          * knows they are all ready when this function returns.
963          */
964         rte_eal_mp_remote_launch(sync_func, NULL, SKIP_MASTER);
965         rte_eal_mp_wait_lcore();
966
967         return fctret;
968 }
969
970 /* get core role */
971 enum rte_lcore_role_t
972 rte_eal_lcore_role(unsigned lcore_id)
973 {
974         return (rte_config.lcore_role[lcore_id]);
975 }
976
977 enum rte_proc_type_t
978 rte_eal_process_type(void)
979 {
980         return (rte_config.process_type);
981 }
982