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