14e1713294b1d564b5b2dc1a9d5f2bf2a3ed332c
[dpdk.git] / lib / librte_eal / freebsd / eal / eal.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2018 Intel Corporation.
3  * Copyright(c) 2014 6WIND S.A.
4  */
5
6 #include <stdio.h>
7 #include <stdlib.h>
8 #include <stdint.h>
9 #include <string.h>
10 #include <stdarg.h>
11 #include <unistd.h>
12 #include <pthread.h>
13 #include <syslog.h>
14 #include <getopt.h>
15 #include <sys/file.h>
16 #include <stddef.h>
17 #include <errno.h>
18 #include <limits.h>
19 #include <sys/mman.h>
20 #include <sys/queue.h>
21 #include <sys/stat.h>
22
23 #include <rte_compat.h>
24 #include <rte_common.h>
25 #include <rte_debug.h>
26 #include <rte_memory.h>
27 #include <rte_launch.h>
28 #include <rte_eal.h>
29 #include <rte_errno.h>
30 #include <rte_per_lcore.h>
31 #include <rte_lcore.h>
32 #include <rte_service_component.h>
33 #include <rte_log.h>
34 #include <rte_random.h>
35 #include <rte_cycles.h>
36 #include <rte_string_fns.h>
37 #include <rte_cpuflags.h>
38 #include <rte_interrupts.h>
39 #include <rte_bus.h>
40 #include <rte_dev.h>
41 #include <rte_devargs.h>
42 #include <rte_version.h>
43 #include <rte_vfio.h>
44 #include <rte_option.h>
45 #include <rte_atomic.h>
46 #include <malloc_heap.h>
47
48 #include "eal_private.h"
49 #include "eal_thread.h"
50 #include "eal_internal_cfg.h"
51 #include "eal_filesystem.h"
52 #include "eal_hugepages.h"
53 #include "eal_options.h"
54 #include "eal_memcfg.h"
55
56 #define MEMSIZE_IF_NO_HUGE_PAGE (64ULL * 1024ULL * 1024ULL)
57
58 /* Allow the application to print its usage message too if set */
59 static rte_usage_hook_t rte_application_usage_hook = NULL;
60 /* early configuration structure, when memory config is not mmapped */
61 static struct rte_mem_config early_mem_config;
62
63 /* define fd variable here, because file needs to be kept open for the
64  * duration of the program, as we hold a write lock on it in the primary proc */
65 static int mem_cfg_fd = -1;
66
67 static struct flock wr_lock = {
68                 .l_type = F_WRLCK,
69                 .l_whence = SEEK_SET,
70                 .l_start = offsetof(struct rte_mem_config, memsegs),
71                 .l_len = sizeof(early_mem_config.memsegs),
72 };
73
74 /* Address of global and public configuration */
75 static struct rte_config rte_config = {
76                 .mem_config = &early_mem_config,
77 };
78
79 /* internal configuration (per-core) */
80 struct lcore_config lcore_config[RTE_MAX_LCORE];
81
82 /* internal configuration */
83 struct internal_config internal_config;
84
85 /* used by rte_rdtsc() */
86 int rte_cycles_vmware_tsc_map;
87
88 /* platform-specific runtime dir */
89 static char runtime_dir[PATH_MAX];
90
91 static const char *default_runtime_dir = "/var/run";
92
93 int
94 eal_create_runtime_dir(void)
95 {
96         const char *directory = default_runtime_dir;
97         const char *xdg_runtime_dir = getenv("XDG_RUNTIME_DIR");
98         const char *fallback = "/tmp";
99         char tmp[PATH_MAX];
100         int ret;
101
102         if (getuid() != 0) {
103                 /* try XDG path first, fall back to /tmp */
104                 if (xdg_runtime_dir != NULL)
105                         directory = xdg_runtime_dir;
106                 else
107                         directory = fallback;
108         }
109         /* create DPDK subdirectory under runtime dir */
110         ret = snprintf(tmp, sizeof(tmp), "%s/dpdk", directory);
111         if (ret < 0 || ret == sizeof(tmp)) {
112                 RTE_LOG(ERR, EAL, "Error creating DPDK runtime path name\n");
113                 return -1;
114         }
115
116         /* create prefix-specific subdirectory under DPDK runtime dir */
117         ret = snprintf(runtime_dir, sizeof(runtime_dir), "%s/%s",
118                         tmp, eal_get_hugefile_prefix());
119         if (ret < 0 || ret == sizeof(runtime_dir)) {
120                 RTE_LOG(ERR, EAL, "Error creating prefix-specific runtime path name\n");
121                 return -1;
122         }
123
124         /* create the path if it doesn't exist. no "mkdir -p" here, so do it
125          * step by step.
126          */
127         ret = mkdir(tmp, 0700);
128         if (ret < 0 && errno != EEXIST) {
129                 RTE_LOG(ERR, EAL, "Error creating '%s': %s\n",
130                         tmp, strerror(errno));
131                 return -1;
132         }
133
134         ret = mkdir(runtime_dir, 0700);
135         if (ret < 0 && errno != EEXIST) {
136                 RTE_LOG(ERR, EAL, "Error creating '%s': %s\n",
137                         runtime_dir, strerror(errno));
138                 return -1;
139         }
140
141         return 0;
142 }
143
144 int
145 eal_clean_runtime_dir(void)
146 {
147         /* FreeBSD doesn't need this implemented for now, because, unlike Linux,
148          * FreeBSD doesn't create per-process files, so no need to clean up.
149          */
150         return 0;
151 }
152
153
154 const char *
155 rte_eal_get_runtime_dir(void)
156 {
157         return runtime_dir;
158 }
159
160 /* Return user provided mbuf pool ops name */
161 const char *
162 rte_eal_mbuf_user_pool_ops(void)
163 {
164         return internal_config.user_mbuf_pool_ops_name;
165 }
166
167 /* Return a pointer to the configuration structure */
168 struct rte_config *
169 rte_eal_get_configuration(void)
170 {
171         return &rte_config;
172 }
173
174 enum rte_iova_mode
175 rte_eal_iova_mode(void)
176 {
177         return rte_eal_get_configuration()->iova_mode;
178 }
179
180 /* parse a sysfs (or other) file containing one integer value */
181 int
182 eal_parse_sysfs_value(const char *filename, unsigned long *val)
183 {
184         FILE *f;
185         char buf[BUFSIZ];
186         char *end = NULL;
187
188         if ((f = fopen(filename, "r")) == NULL) {
189                 RTE_LOG(ERR, EAL, "%s(): cannot open sysfs value %s\n",
190                         __func__, filename);
191                 return -1;
192         }
193
194         if (fgets(buf, sizeof(buf), f) == NULL) {
195                 RTE_LOG(ERR, EAL, "%s(): cannot read sysfs value %s\n",
196                         __func__, filename);
197                 fclose(f);
198                 return -1;
199         }
200         *val = strtoul(buf, &end, 0);
201         if ((buf[0] == '\0') || (end == NULL) || (*end != '\n')) {
202                 RTE_LOG(ERR, EAL, "%s(): cannot parse sysfs value %s\n",
203                                 __func__, filename);
204                 fclose(f);
205                 return -1;
206         }
207         fclose(f);
208         return 0;
209 }
210
211
212 /* create memory configuration in shared/mmap memory. Take out
213  * a write lock on the memsegs, so we can auto-detect primary/secondary.
214  * This means we never close the file while running (auto-close on exit).
215  * We also don't lock the whole file, so that in future we can use read-locks
216  * on other parts, e.g. memzones, to detect if there are running secondary
217  * processes. */
218 static int
219 rte_eal_config_create(void)
220 {
221         void *rte_mem_cfg_addr;
222         int retval;
223
224         const char *pathname = eal_runtime_config_path();
225
226         if (internal_config.no_shconf)
227                 return 0;
228
229         /* map the config before base address so that we don't waste a page */
230         if (internal_config.base_virtaddr != 0)
231                 rte_mem_cfg_addr = (void *)
232                         RTE_ALIGN_FLOOR(internal_config.base_virtaddr -
233                         sizeof(struct rte_mem_config), sysconf(_SC_PAGE_SIZE));
234         else
235                 rte_mem_cfg_addr = NULL;
236
237         if (mem_cfg_fd < 0){
238                 mem_cfg_fd = open(pathname, O_RDWR | O_CREAT, 0600);
239                 if (mem_cfg_fd < 0) {
240                         RTE_LOG(ERR, EAL, "Cannot open '%s' for rte_mem_config\n",
241                                 pathname);
242                         return -1;
243                 }
244         }
245
246         retval = ftruncate(mem_cfg_fd, sizeof(*rte_config.mem_config));
247         if (retval < 0){
248                 close(mem_cfg_fd);
249                 mem_cfg_fd = -1;
250                 RTE_LOG(ERR, EAL, "Cannot resize '%s' for rte_mem_config\n",
251                         pathname);
252                 return -1;
253         }
254
255         retval = fcntl(mem_cfg_fd, F_SETLK, &wr_lock);
256         if (retval < 0){
257                 close(mem_cfg_fd);
258                 mem_cfg_fd = -1;
259                 RTE_LOG(ERR, EAL, "Cannot create lock on '%s'. Is another primary "
260                         "process running?\n", pathname);
261                 return -1;
262         }
263
264         rte_mem_cfg_addr = mmap(rte_mem_cfg_addr,
265                         sizeof(*rte_config.mem_config), PROT_READ | PROT_WRITE,
266                         MAP_SHARED, mem_cfg_fd, 0);
267
268         if (rte_mem_cfg_addr == MAP_FAILED){
269                 RTE_LOG(ERR, EAL, "Cannot mmap memory for rte_config\n");
270                 close(mem_cfg_fd);
271                 mem_cfg_fd = -1;
272                 return -1;
273         }
274         memcpy(rte_mem_cfg_addr, &early_mem_config, sizeof(early_mem_config));
275         rte_config.mem_config = rte_mem_cfg_addr;
276
277         /* store address of the config in the config itself so that secondary
278          * processes could later map the config into this exact location
279          */
280         rte_config.mem_config->mem_cfg_addr = (uintptr_t) rte_mem_cfg_addr;
281
282         return 0;
283 }
284
285 /* attach to an existing shared memory config */
286 static int
287 rte_eal_config_attach(void)
288 {
289         void *rte_mem_cfg_addr;
290         const char *pathname = eal_runtime_config_path();
291
292         if (internal_config.no_shconf)
293                 return 0;
294
295         if (mem_cfg_fd < 0){
296                 mem_cfg_fd = open(pathname, O_RDWR);
297                 if (mem_cfg_fd < 0) {
298                         RTE_LOG(ERR, EAL, "Cannot open '%s' for rte_mem_config\n",
299                                 pathname);
300                         return -1;
301                 }
302         }
303
304         rte_mem_cfg_addr = mmap(NULL, sizeof(*rte_config.mem_config),
305                                 PROT_READ, MAP_SHARED, mem_cfg_fd, 0);
306         /* don't close the fd here, it will be closed on reattach */
307         if (rte_mem_cfg_addr == MAP_FAILED) {
308                 close(mem_cfg_fd);
309                 mem_cfg_fd = -1;
310                 RTE_LOG(ERR, EAL, "Cannot mmap memory for rte_config! error %i (%s)\n",
311                         errno, strerror(errno));
312                 return -1;
313         }
314
315         rte_config.mem_config = rte_mem_cfg_addr;
316
317         return 0;
318 }
319
320 /* reattach the shared config at exact memory location primary process has it */
321 static int
322 rte_eal_config_reattach(void)
323 {
324         struct rte_mem_config *mem_config;
325         void *rte_mem_cfg_addr;
326
327         if (internal_config.no_shconf)
328                 return 0;
329
330         /* save the address primary process has mapped shared config to */
331         rte_mem_cfg_addr =
332                         (void *)(uintptr_t)rte_config.mem_config->mem_cfg_addr;
333
334         /* unmap original config */
335         munmap(rte_config.mem_config, sizeof(struct rte_mem_config));
336
337         /* remap the config at proper address */
338         mem_config = (struct rte_mem_config *) mmap(rte_mem_cfg_addr,
339                         sizeof(*mem_config), PROT_READ | PROT_WRITE, MAP_SHARED,
340                         mem_cfg_fd, 0);
341         close(mem_cfg_fd);
342         mem_cfg_fd = -1;
343
344         if (mem_config == MAP_FAILED || mem_config != rte_mem_cfg_addr) {
345                 if (mem_config != MAP_FAILED) {
346                         /* errno is stale, don't use */
347                         RTE_LOG(ERR, EAL, "Cannot mmap memory for rte_config at [%p], got [%p]"
348                                           " - please use '--" OPT_BASE_VIRTADDR
349                                           "' option\n",
350                                 rte_mem_cfg_addr, mem_config);
351                         munmap(mem_config, sizeof(struct rte_mem_config));
352                         return -1;
353                 }
354                 RTE_LOG(ERR, EAL, "Cannot mmap memory for rte_config! error %i (%s)\n",
355                         errno, strerror(errno));
356                 return -1;
357         }
358
359         rte_config.mem_config = mem_config;
360
361         return 0;
362 }
363
364 /* Detect if we are a primary or a secondary process */
365 enum rte_proc_type_t
366 eal_proc_type_detect(void)
367 {
368         enum rte_proc_type_t ptype = RTE_PROC_PRIMARY;
369         const char *pathname = eal_runtime_config_path();
370
371         /* if there no shared config, there can be no secondary processes */
372         if (!internal_config.no_shconf) {
373                 /* if we can open the file but not get a write-lock we are a
374                  * secondary process. NOTE: if we get a file handle back, we
375                  * keep that open and don't close it to prevent a race condition
376                  * between multiple opens.
377                  */
378                 if (((mem_cfg_fd = open(pathname, O_RDWR)) >= 0) &&
379                                 (fcntl(mem_cfg_fd, F_SETLK, &wr_lock) < 0))
380                         ptype = RTE_PROC_SECONDARY;
381         }
382
383         RTE_LOG(INFO, EAL, "Auto-detected process type: %s\n",
384                         ptype == RTE_PROC_PRIMARY ? "PRIMARY" : "SECONDARY");
385
386         return ptype;
387 }
388
389 /* Sets up rte_config structure with the pointer to shared memory config.*/
390 static int
391 rte_config_init(void)
392 {
393         rte_config.process_type = internal_config.process_type;
394
395         switch (rte_config.process_type){
396         case RTE_PROC_PRIMARY:
397                 if (rte_eal_config_create() < 0)
398                         return -1;
399                 eal_mcfg_update_from_internal();
400                 break;
401         case RTE_PROC_SECONDARY:
402                 if (rte_eal_config_attach() < 0)
403                         return -1;
404                 eal_mcfg_wait_complete();
405                 if (eal_mcfg_check_version() < 0) {
406                         RTE_LOG(ERR, EAL, "Primary and secondary process DPDK version mismatch\n");
407                         return -1;
408                 }
409                 if (rte_eal_config_reattach() < 0)
410                         return -1;
411                 eal_mcfg_update_internal();
412                 break;
413         case RTE_PROC_AUTO:
414         case RTE_PROC_INVALID:
415                 RTE_LOG(ERR, EAL, "Invalid process type %d\n",
416                         rte_config.process_type);
417                 return -1;
418         }
419
420         return 0;
421 }
422
423 /* display usage */
424 static void
425 eal_usage(const char *prgname)
426 {
427         printf("\nUsage: %s ", prgname);
428         eal_common_usage();
429         /* Allow the application to print its usage message too if hook is set */
430         if ( rte_application_usage_hook ) {
431                 printf("===== Application Usage =====\n\n");
432                 rte_application_usage_hook(prgname);
433         }
434 }
435
436 /* Set a per-application usage message */
437 rte_usage_hook_t
438 rte_set_application_usage_hook( rte_usage_hook_t usage_func )
439 {
440         rte_usage_hook_t        old_func;
441
442         /* Will be NULL on the first call to denote the last usage routine. */
443         old_func                                        = rte_application_usage_hook;
444         rte_application_usage_hook      = usage_func;
445
446         return old_func;
447 }
448
449 static inline size_t
450 eal_get_hugepage_mem_size(void)
451 {
452         uint64_t size = 0;
453         unsigned i, j;
454
455         for (i = 0; i < internal_config.num_hugepage_sizes; i++) {
456                 struct hugepage_info *hpi = &internal_config.hugepage_info[i];
457                 if (strnlen(hpi->hugedir, sizeof(hpi->hugedir)) != 0) {
458                         for (j = 0; j < RTE_MAX_NUMA_NODES; j++) {
459                                 size += hpi->hugepage_sz * hpi->num_pages[j];
460                         }
461                 }
462         }
463
464         return (size < SIZE_MAX) ? (size_t)(size) : SIZE_MAX;
465 }
466
467 /* Parse the arguments for --log-level only */
468 static void
469 eal_log_level_parse(int argc, char **argv)
470 {
471         int opt;
472         char **argvopt;
473         int option_index;
474         const int old_optind = optind;
475         const int old_optopt = optopt;
476         const int old_optreset = optreset;
477         char * const old_optarg = optarg;
478
479         argvopt = argv;
480         optind = 1;
481         optreset = 1;
482
483         while ((opt = getopt_long(argc, argvopt, eal_short_options,
484                                   eal_long_options, &option_index)) != EOF) {
485
486                 int ret;
487
488                 /* getopt is not happy, stop right now */
489                 if (opt == '?')
490                         break;
491
492                 ret = (opt == OPT_LOG_LEVEL_NUM) ?
493                         eal_parse_common_option(opt, optarg, &internal_config) : 0;
494
495                 /* common parser is not happy */
496                 if (ret < 0)
497                         break;
498         }
499
500         /* restore getopt lib */
501         optind = old_optind;
502         optopt = old_optopt;
503         optreset = old_optreset;
504         optarg = old_optarg;
505 }
506
507 /* Parse the argument given in the command line of the application */
508 static int
509 eal_parse_args(int argc, char **argv)
510 {
511         int opt, ret;
512         char **argvopt;
513         int option_index;
514         char *prgname = argv[0];
515         const int old_optind = optind;
516         const int old_optopt = optopt;
517         const int old_optreset = optreset;
518         char * const old_optarg = optarg;
519
520         argvopt = argv;
521         optind = 1;
522         optreset = 1;
523         opterr = 0;
524
525         while ((opt = getopt_long(argc, argvopt, eal_short_options,
526                                   eal_long_options, &option_index)) != EOF) {
527
528                 /*
529                  * getopt didn't recognise the option, lets parse the
530                  * registered options to see if the flag is valid
531                  */
532                 if (opt == '?') {
533                         ret = rte_option_parse(argv[optind-1]);
534                         if (ret == 0)
535                                 continue;
536
537                         eal_usage(prgname);
538                         ret = -1;
539                         goto out;
540                 }
541
542                 ret = eal_parse_common_option(opt, optarg, &internal_config);
543                 /* common parser is not happy */
544                 if (ret < 0) {
545                         eal_usage(prgname);
546                         ret = -1;
547                         goto out;
548                 }
549                 /* common parser handled this option */
550                 if (ret == 0)
551                         continue;
552
553                 switch (opt) {
554                 case OPT_MBUF_POOL_OPS_NAME_NUM:
555                 {
556                         char *ops_name = strdup(optarg);
557                         if (ops_name == NULL)
558                                 RTE_LOG(ERR, EAL, "Could not store mbuf pool ops name\n");
559                         else {
560                                 /* free old ops name */
561                                 if (internal_config.user_mbuf_pool_ops_name !=
562                                                 NULL)
563                                         free(internal_config.user_mbuf_pool_ops_name);
564
565                                 internal_config.user_mbuf_pool_ops_name =
566                                                 ops_name;
567                         }
568                         break;
569                 }
570                 case 'h':
571                         eal_usage(prgname);
572                         exit(EXIT_SUCCESS);
573                 default:
574                         if (opt < OPT_LONG_MIN_NUM && isprint(opt)) {
575                                 RTE_LOG(ERR, EAL, "Option %c is not supported "
576                                         "on FreeBSD\n", opt);
577                         } else if (opt >= OPT_LONG_MIN_NUM &&
578                                    opt < OPT_LONG_MAX_NUM) {
579                                 RTE_LOG(ERR, EAL, "Option %s is not supported "
580                                         "on FreeBSD\n",
581                                         eal_long_options[option_index].name);
582                         } else {
583                                 RTE_LOG(ERR, EAL, "Option %d is not supported "
584                                         "on FreeBSD\n", opt);
585                         }
586                         eal_usage(prgname);
587                         ret = -1;
588                         goto out;
589                 }
590         }
591
592         /* create runtime data directory */
593         if (internal_config.no_shconf == 0 &&
594                         eal_create_runtime_dir() < 0) {
595                 RTE_LOG(ERR, EAL, "Cannot create runtime directory\n");
596                 ret = -1;
597                 goto out;
598         }
599
600         if (eal_adjust_config(&internal_config) != 0) {
601                 ret = -1;
602                 goto out;
603         }
604
605         /* sanity checks */
606         if (eal_check_common_options(&internal_config) != 0) {
607                 eal_usage(prgname);
608                 ret = -1;
609                 goto out;
610         }
611
612         if (optind >= 0)
613                 argv[optind-1] = prgname;
614         ret = optind-1;
615
616 out:
617         /* restore getopt lib */
618         optind = old_optind;
619         optopt = old_optopt;
620         optreset = old_optreset;
621         optarg = old_optarg;
622
623         return ret;
624 }
625
626 static int
627 check_socket(const struct rte_memseg_list *msl, void *arg)
628 {
629         int *socket_id = arg;
630
631         if (msl->external)
632                 return 0;
633
634         if (msl->socket_id == *socket_id && msl->memseg_arr.count != 0)
635                 return 1;
636
637         return 0;
638 }
639
640 static void
641 eal_check_mem_on_local_socket(void)
642 {
643         int socket_id;
644
645         socket_id = rte_lcore_to_socket_id(rte_config.master_lcore);
646
647         if (rte_memseg_list_walk(check_socket, &socket_id) == 0)
648                 RTE_LOG(WARNING, EAL, "WARNING: Master core has no memory on local socket!\n");
649 }
650
651
652 static int
653 sync_func(__attribute__((unused)) void *arg)
654 {
655         return 0;
656 }
657
658 /* return non-zero if hugepages are enabled. */
659 int rte_eal_has_hugepages(void)
660 {
661         return !internal_config.no_hugetlbfs;
662 }
663
664 /* Abstraction for port I/0 privilege */
665 int
666 rte_eal_iopl_init(void)
667 {
668         static int fd = -1;
669
670         if (fd < 0)
671                 fd = open("/dev/io", O_RDWR);
672
673         if (fd < 0)
674                 return -1;
675         /* keep fd open for iopl */
676         return 0;
677 }
678
679 static void rte_eal_init_alert(const char *msg)
680 {
681         fprintf(stderr, "EAL: FATAL: %s\n", msg);
682         RTE_LOG(ERR, EAL, "%s\n", msg);
683 }
684
685 /* Launch threads, called at application init(). */
686 int
687 rte_eal_init(int argc, char **argv)
688 {
689         int i, fctret, ret;
690         pthread_t thread_id;
691         static rte_atomic32_t run_once = RTE_ATOMIC32_INIT(0);
692         char cpuset[RTE_CPU_AFFINITY_STR_LEN];
693         char thread_name[RTE_MAX_THREAD_NAME_LEN];
694
695         /* checks if the machine is adequate */
696         if (!rte_cpu_is_supported()) {
697                 rte_eal_init_alert("unsupported cpu type.");
698                 rte_errno = ENOTSUP;
699                 return -1;
700         }
701
702         if (!rte_atomic32_test_and_set(&run_once)) {
703                 rte_eal_init_alert("already called initialization.");
704                 rte_errno = EALREADY;
705                 return -1;
706         }
707
708         thread_id = pthread_self();
709
710         eal_reset_internal_config(&internal_config);
711
712         /* set log level as early as possible */
713         eal_log_level_parse(argc, argv);
714
715         if (rte_eal_cpu_init() < 0) {
716                 rte_eal_init_alert("Cannot detect lcores.");
717                 rte_errno = ENOTSUP;
718                 return -1;
719         }
720
721         fctret = eal_parse_args(argc, argv);
722         if (fctret < 0) {
723                 rte_eal_init_alert("Invalid 'command line' arguments.");
724                 rte_errno = EINVAL;
725                 rte_atomic32_clear(&run_once);
726                 return -1;
727         }
728
729         /* FreeBSD always uses legacy memory model */
730         internal_config.legacy_mem = true;
731
732         if (eal_plugins_init() < 0) {
733                 rte_eal_init_alert("Cannot init plugins");
734                 rte_errno = EINVAL;
735                 rte_atomic32_clear(&run_once);
736                 return -1;
737         }
738
739         if (eal_option_device_parse()) {
740                 rte_errno = ENODEV;
741                 rte_atomic32_clear(&run_once);
742                 return -1;
743         }
744
745         if (rte_config_init() < 0) {
746                 rte_eal_init_alert("Cannot init config");
747                 return -1;
748         }
749
750         if (rte_eal_intr_init() < 0) {
751                 rte_eal_init_alert("Cannot init interrupt-handling thread");
752                 return -1;
753         }
754
755         if (rte_eal_alarm_init() < 0) {
756                 rte_eal_init_alert("Cannot init alarm");
757                 /* rte_eal_alarm_init sets rte_errno on failure. */
758                 return -1;
759         }
760
761         /* Put mp channel init before bus scan so that we can init the vdev
762          * bus through mp channel in the secondary process before the bus scan.
763          */
764         if (rte_mp_channel_init() < 0 && rte_errno != ENOTSUP) {
765                 rte_eal_init_alert("failed to init mp channel");
766                 if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
767                         rte_errno = EFAULT;
768                         return -1;
769                 }
770         }
771
772         if (rte_bus_scan()) {
773                 rte_eal_init_alert("Cannot scan the buses for devices");
774                 rte_errno = ENODEV;
775                 rte_atomic32_clear(&run_once);
776                 return -1;
777         }
778
779         /* if no EAL option "--iova-mode=<pa|va>", use bus IOVA scheme */
780         if (internal_config.iova_mode == RTE_IOVA_DC) {
781                 /* autodetect the IOVA mapping mode (default is RTE_IOVA_PA) */
782                 enum rte_iova_mode iova_mode = rte_bus_get_iommu_class();
783
784                 if (iova_mode == RTE_IOVA_DC)
785                         iova_mode = RTE_IOVA_PA;
786                 rte_eal_get_configuration()->iova_mode = iova_mode;
787         } else {
788                 rte_eal_get_configuration()->iova_mode =
789                         internal_config.iova_mode;
790         }
791
792         RTE_LOG(INFO, EAL, "Selected IOVA mode '%s'\n",
793                 rte_eal_iova_mode() == RTE_IOVA_PA ? "PA" : "VA");
794
795         if (internal_config.no_hugetlbfs == 0) {
796                 /* rte_config isn't initialized yet */
797                 ret = internal_config.process_type == RTE_PROC_PRIMARY ?
798                         eal_hugepage_info_init() :
799                         eal_hugepage_info_read();
800                 if (ret < 0) {
801                         rte_eal_init_alert("Cannot get hugepage information.");
802                         rte_errno = EACCES;
803                         rte_atomic32_clear(&run_once);
804                         return -1;
805                 }
806         }
807
808         if (internal_config.memory == 0 && internal_config.force_sockets == 0) {
809                 if (internal_config.no_hugetlbfs)
810                         internal_config.memory = MEMSIZE_IF_NO_HUGE_PAGE;
811                 else
812                         internal_config.memory = eal_get_hugepage_mem_size();
813         }
814
815         if (internal_config.vmware_tsc_map == 1) {
816 #ifdef RTE_LIBRTE_EAL_VMWARE_TSC_MAP_SUPPORT
817                 rte_cycles_vmware_tsc_map = 1;
818                 RTE_LOG (DEBUG, EAL, "Using VMWARE TSC MAP, "
819                                 "you must have monitor_control.pseudo_perfctr = TRUE\n");
820 #else
821                 RTE_LOG (WARNING, EAL, "Ignoring --vmware-tsc-map because "
822                                 "RTE_LIBRTE_EAL_VMWARE_TSC_MAP_SUPPORT is not set\n");
823 #endif
824         }
825
826         /* in secondary processes, memory init may allocate additional fbarrays
827          * not present in primary processes, so to avoid any potential issues,
828          * initialize memzones first.
829          */
830         if (rte_eal_memzone_init() < 0) {
831                 rte_eal_init_alert("Cannot init memzone");
832                 rte_errno = ENODEV;
833                 return -1;
834         }
835
836         if (rte_eal_memory_init() < 0) {
837                 rte_eal_init_alert("Cannot init memory");
838                 rte_errno = ENOMEM;
839                 return -1;
840         }
841
842         if (rte_eal_malloc_heap_init() < 0) {
843                 rte_eal_init_alert("Cannot init malloc heap");
844                 rte_errno = ENODEV;
845                 return -1;
846         }
847
848         if (rte_eal_tailqs_init() < 0) {
849                 rte_eal_init_alert("Cannot init tail queues for objects");
850                 rte_errno = EFAULT;
851                 return -1;
852         }
853
854         if (rte_eal_timer_init() < 0) {
855                 rte_eal_init_alert("Cannot init HPET or TSC timers");
856                 rte_errno = ENOTSUP;
857                 return -1;
858         }
859
860         eal_check_mem_on_local_socket();
861
862         eal_thread_init_master(rte_config.master_lcore);
863
864         ret = eal_thread_dump_affinity(cpuset, sizeof(cpuset));
865
866         RTE_LOG(DEBUG, EAL, "Master lcore %u is ready (tid=%p;cpuset=[%s%s])\n",
867                 rte_config.master_lcore, thread_id, cpuset,
868                 ret == 0 ? "" : "...");
869
870         RTE_LCORE_FOREACH_SLAVE(i) {
871
872                 /*
873                  * create communication pipes between master thread
874                  * and children
875                  */
876                 if (pipe(lcore_config[i].pipe_master2slave) < 0)
877                         rte_panic("Cannot create pipe\n");
878                 if (pipe(lcore_config[i].pipe_slave2master) < 0)
879                         rte_panic("Cannot create pipe\n");
880
881                 lcore_config[i].state = WAIT;
882
883                 /* create a thread for each lcore */
884                 ret = pthread_create(&lcore_config[i].thread_id, NULL,
885                                      eal_thread_loop, NULL);
886                 if (ret != 0)
887                         rte_panic("Cannot create thread\n");
888
889                 /* Set thread_name for aid in debugging. */
890                 snprintf(thread_name, sizeof(thread_name),
891                                 "lcore-slave-%d", i);
892                 rte_thread_setname(lcore_config[i].thread_id, thread_name);
893         }
894
895         /*
896          * Launch a dummy function on all slave lcores, so that master lcore
897          * knows they are all ready when this function returns.
898          */
899         rte_eal_mp_remote_launch(sync_func, NULL, SKIP_MASTER);
900         rte_eal_mp_wait_lcore();
901
902         /* initialize services so vdevs register service during bus_probe. */
903         ret = rte_service_init();
904         if (ret) {
905                 rte_eal_init_alert("rte_service_init() failed");
906                 rte_errno = ENOEXEC;
907                 return -1;
908         }
909
910         /* Probe all the buses and devices/drivers on them */
911         if (rte_bus_probe()) {
912                 rte_eal_init_alert("Cannot probe devices");
913                 rte_errno = ENOTSUP;
914                 return -1;
915         }
916
917         /* initialize default service/lcore mappings and start running. Ignore
918          * -ENOTSUP, as it indicates no service coremask passed to EAL.
919          */
920         ret = rte_service_start_with_defaults();
921         if (ret < 0 && ret != -ENOTSUP) {
922                 rte_errno = ENOEXEC;
923                 return -1;
924         }
925
926         /*
927          * Clean up unused files in runtime directory. We do this at the end of
928          * init and not at the beginning because we want to clean stuff up
929          * whether we are primary or secondary process, but we cannot remove
930          * primary process' files because secondary should be able to run even
931          * if primary process is dead.
932          *
933          * In no_shconf mode, no runtime directory is created in the first
934          * place, so no cleanup needed.
935          */
936         if (!internal_config.no_shconf && eal_clean_runtime_dir() < 0) {
937                 rte_eal_init_alert("Cannot clear runtime directory\n");
938                 return -1;
939         }
940
941         eal_mcfg_complete();
942
943         /* Call each registered callback, if enabled */
944         rte_option_init();
945
946         return fctret;
947 }
948
949 int
950 rte_eal_cleanup(void)
951 {
952         rte_service_finalize();
953         rte_mp_channel_cleanup();
954         eal_cleanup_config(&internal_config);
955         return 0;
956 }
957
958 /* get core role */
959 enum rte_lcore_role_t
960 rte_eal_lcore_role(unsigned lcore_id)
961 {
962         return rte_config.lcore_role[lcore_id];
963 }
964
965 enum rte_proc_type_t
966 rte_eal_process_type(void)
967 {
968         return rte_config.process_type;
969 }
970
971 int rte_eal_has_pci(void)
972 {
973         return !internal_config.no_pci;
974 }
975
976 int rte_eal_create_uio_dev(void)
977 {
978         return internal_config.create_uio_dev;
979 }
980
981 enum rte_intr_mode
982 rte_eal_vfio_intr_mode(void)
983 {
984         return RTE_INTR_MODE_NONE;
985 }
986
987 int rte_vfio_setup_device(__rte_unused const char *sysfs_base,
988                       __rte_unused const char *dev_addr,
989                       __rte_unused int *vfio_dev_fd,
990                       __rte_unused struct vfio_device_info *device_info)
991 {
992         return -1;
993 }
994
995 int rte_vfio_release_device(__rte_unused const char *sysfs_base,
996                         __rte_unused const char *dev_addr,
997                         __rte_unused int fd)
998 {
999         return -1;
1000 }
1001
1002 int rte_vfio_enable(__rte_unused const char *modname)
1003 {
1004         return -1;
1005 }
1006
1007 int rte_vfio_is_enabled(__rte_unused const char *modname)
1008 {
1009         return 0;
1010 }
1011
1012 int rte_vfio_noiommu_is_enabled(void)
1013 {
1014         return 0;
1015 }
1016
1017 int rte_vfio_clear_group(__rte_unused int vfio_group_fd)
1018 {
1019         return 0;
1020 }
1021
1022 int
1023 rte_vfio_dma_map(uint64_t __rte_unused vaddr, __rte_unused uint64_t iova,
1024                   __rte_unused uint64_t len)
1025 {
1026         return -1;
1027 }
1028
1029 int
1030 rte_vfio_dma_unmap(uint64_t __rte_unused vaddr, uint64_t __rte_unused iova,
1031                     __rte_unused uint64_t len)
1032 {
1033         return -1;
1034 }
1035
1036 int
1037 rte_vfio_get_group_num(__rte_unused const char *sysfs_base,
1038                        __rte_unused const char *dev_addr,
1039                        __rte_unused int *iommu_group_num)
1040 {
1041         return -1;
1042 }
1043
1044 int
1045 rte_vfio_get_container_fd(void)
1046 {
1047         return -1;
1048 }
1049
1050 int
1051 rte_vfio_get_group_fd(__rte_unused int iommu_group_num)
1052 {
1053         return -1;
1054 }
1055
1056 int
1057 rte_vfio_container_create(void)
1058 {
1059         return -1;
1060 }
1061
1062 int
1063 rte_vfio_container_destroy(__rte_unused int container_fd)
1064 {
1065         return -1;
1066 }
1067
1068 int
1069 rte_vfio_container_group_bind(__rte_unused int container_fd,
1070                 __rte_unused int iommu_group_num)
1071 {
1072         return -1;
1073 }
1074
1075 int
1076 rte_vfio_container_group_unbind(__rte_unused int container_fd,
1077                 __rte_unused int iommu_group_num)
1078 {
1079         return -1;
1080 }
1081
1082 int
1083 rte_vfio_container_dma_map(__rte_unused int container_fd,
1084                         __rte_unused uint64_t vaddr,
1085                         __rte_unused uint64_t iova,
1086                         __rte_unused uint64_t len)
1087 {
1088         return -1;
1089 }
1090
1091 int
1092 rte_vfio_container_dma_unmap(__rte_unused int container_fd,
1093                         __rte_unused uint64_t vaddr,
1094                         __rte_unused uint64_t iova,
1095                         __rte_unused uint64_t len)
1096 {
1097         return -1;
1098 }