eal: get/set thread affinity per thread identifier
[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         static uint32_t run_once;
583         uint32_t has_run = 0;
584         char cpuset[RTE_CPU_AFFINITY_STR_LEN];
585         char thread_name[RTE_MAX_THREAD_NAME_LEN];
586         const struct rte_config *config = rte_eal_get_configuration();
587         struct internal_config *internal_conf =
588                 eal_get_internal_configuration();
589         bool has_phys_addr;
590         enum rte_iova_mode iova_mode;
591
592         /* checks if the machine is adequate */
593         if (!rte_cpu_is_supported()) {
594                 rte_eal_init_alert("unsupported cpu type.");
595                 rte_errno = ENOTSUP;
596                 return -1;
597         }
598
599         if (!__atomic_compare_exchange_n(&run_once, &has_run, 1, 0,
600                                         __ATOMIC_RELAXED, __ATOMIC_RELAXED)) {
601                 rte_eal_init_alert("already called initialization.");
602                 rte_errno = EALREADY;
603                 return -1;
604         }
605
606         eal_reset_internal_config(internal_conf);
607
608         /* clone argv to report out later in telemetry */
609         eal_save_args(argc, argv);
610
611         /* set log level as early as possible */
612         eal_log_level_parse(argc, argv);
613
614         if (rte_eal_cpu_init() < 0) {
615                 rte_eal_init_alert("Cannot detect lcores.");
616                 rte_errno = ENOTSUP;
617                 return -1;
618         }
619
620         fctret = eal_parse_args(argc, argv);
621         if (fctret < 0) {
622                 rte_eal_init_alert("Invalid 'command line' arguments.");
623                 rte_errno = EINVAL;
624                 __atomic_store_n(&run_once, 0, __ATOMIC_RELAXED);
625                 return -1;
626         }
627
628         /* FreeBSD always uses legacy memory model */
629         internal_conf->legacy_mem = true;
630         if (internal_conf->in_memory) {
631                 RTE_LOG(WARNING, EAL, "Warning: ignoring unsupported flag, '%s'\n", OPT_IN_MEMORY);
632                 internal_conf->in_memory = false;
633         }
634
635         if (eal_plugins_init() < 0) {
636                 rte_eal_init_alert("Cannot init plugins");
637                 rte_errno = EINVAL;
638                 __atomic_store_n(&run_once, 0, __ATOMIC_RELAXED);
639                 return -1;
640         }
641
642         if (eal_trace_init() < 0) {
643                 rte_eal_init_alert("Cannot init trace");
644                 rte_errno = EFAULT;
645                 __atomic_store_n(&run_once, 0, __ATOMIC_RELAXED);
646                 return -1;
647         }
648
649         if (eal_option_device_parse()) {
650                 rte_errno = ENODEV;
651                 __atomic_store_n(&run_once, 0, __ATOMIC_RELAXED);
652                 return -1;
653         }
654
655         if (rte_config_init() < 0) {
656                 rte_eal_init_alert("Cannot init config");
657                 return -1;
658         }
659
660         if (rte_eal_intr_init() < 0) {
661                 rte_eal_init_alert("Cannot init interrupt-handling thread");
662                 return -1;
663         }
664
665         if (rte_eal_alarm_init() < 0) {
666                 rte_eal_init_alert("Cannot init alarm");
667                 /* rte_eal_alarm_init sets rte_errno on failure. */
668                 return -1;
669         }
670
671         /* Put mp channel init before bus scan so that we can init the vdev
672          * bus through mp channel in the secondary process before the bus scan.
673          */
674         if (rte_mp_channel_init() < 0 && rte_errno != ENOTSUP) {
675                 rte_eal_init_alert("failed to init mp channel");
676                 if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
677                         rte_errno = EFAULT;
678                         return -1;
679                 }
680         }
681
682         if (rte_bus_scan()) {
683                 rte_eal_init_alert("Cannot scan the buses for devices");
684                 rte_errno = ENODEV;
685                 __atomic_store_n(&run_once, 0, __ATOMIC_RELAXED);
686                 return -1;
687         }
688
689         /*
690          * PA are only available for hugepages via contigmem.
691          * If contigmem is inaccessible, rte_eal_hugepage_init() will fail
692          * with a message describing the cause.
693          */
694         has_phys_addr = internal_conf->no_hugetlbfs == 0;
695         iova_mode = internal_conf->iova_mode;
696         if (iova_mode == RTE_IOVA_PA && !has_phys_addr) {
697                 rte_eal_init_alert("Cannot use IOVA as 'PA' since physical addresses are not available");
698                 rte_errno = EINVAL;
699                 return -1;
700         }
701         if (iova_mode == RTE_IOVA_DC) {
702                 RTE_LOG(DEBUG, EAL, "Specific IOVA mode is not requested, autodetecting\n");
703                 if (has_phys_addr) {
704                         RTE_LOG(DEBUG, EAL, "Selecting IOVA mode according to bus requests\n");
705                         iova_mode = rte_bus_get_iommu_class();
706                         if (iova_mode == RTE_IOVA_DC)
707                                 iova_mode = RTE_IOVA_PA;
708                 } else {
709                         iova_mode = RTE_IOVA_VA;
710                 }
711         }
712         rte_eal_get_configuration()->iova_mode = iova_mode;
713         RTE_LOG(INFO, EAL, "Selected IOVA mode '%s'\n",
714                 rte_eal_iova_mode() == RTE_IOVA_PA ? "PA" : "VA");
715
716         if (internal_conf->no_hugetlbfs == 0) {
717                 /* rte_config isn't initialized yet */
718                 ret = internal_conf->process_type == RTE_PROC_PRIMARY ?
719                         eal_hugepage_info_init() :
720                         eal_hugepage_info_read();
721                 if (ret < 0) {
722                         rte_eal_init_alert("Cannot get hugepage information.");
723                         rte_errno = EACCES;
724                         __atomic_store_n(&run_once, 0, __ATOMIC_RELAXED);
725                         return -1;
726                 }
727         }
728
729         if (internal_conf->memory == 0 && internal_conf->force_sockets == 0) {
730                 if (internal_conf->no_hugetlbfs)
731                         internal_conf->memory = MEMSIZE_IF_NO_HUGE_PAGE;
732                 else
733                         internal_conf->memory = eal_get_hugepage_mem_size();
734         }
735
736         if (internal_conf->vmware_tsc_map == 1) {
737 #ifdef RTE_LIBRTE_EAL_VMWARE_TSC_MAP_SUPPORT
738                 rte_cycles_vmware_tsc_map = 1;
739                 RTE_LOG (DEBUG, EAL, "Using VMWARE TSC MAP, "
740                                 "you must have monitor_control.pseudo_perfctr = TRUE\n");
741 #else
742                 RTE_LOG (WARNING, EAL, "Ignoring --vmware-tsc-map because "
743                                 "RTE_LIBRTE_EAL_VMWARE_TSC_MAP_SUPPORT is not set\n");
744 #endif
745         }
746
747         /* in secondary processes, memory init may allocate additional fbarrays
748          * not present in primary processes, so to avoid any potential issues,
749          * initialize memzones first.
750          */
751         if (rte_eal_memzone_init() < 0) {
752                 rte_eal_init_alert("Cannot init memzone");
753                 rte_errno = ENODEV;
754                 return -1;
755         }
756
757         if (rte_eal_memory_init() < 0) {
758                 rte_eal_init_alert("Cannot init memory");
759                 rte_errno = ENOMEM;
760                 return -1;
761         }
762
763         if (rte_eal_malloc_heap_init() < 0) {
764                 rte_eal_init_alert("Cannot init malloc heap");
765                 rte_errno = ENODEV;
766                 return -1;
767         }
768
769         if (rte_eal_tailqs_init() < 0) {
770                 rte_eal_init_alert("Cannot init tail queues for objects");
771                 rte_errno = EFAULT;
772                 return -1;
773         }
774
775         if (rte_eal_timer_init() < 0) {
776                 rte_eal_init_alert("Cannot init HPET or TSC timers");
777                 rte_errno = ENOTSUP;
778                 return -1;
779         }
780
781         eal_check_mem_on_local_socket();
782
783         if (pthread_setaffinity_np(pthread_self(), sizeof(rte_cpuset_t),
784                         &lcore_config[config->main_lcore].cpuset) != 0) {
785                 rte_eal_init_alert("Cannot set affinity");
786                 rte_errno = EINVAL;
787                 return -1;
788         }
789         __rte_thread_init(config->main_lcore,
790                 &lcore_config[config->main_lcore].cpuset);
791
792         ret = eal_thread_dump_current_affinity(cpuset, sizeof(cpuset));
793
794         RTE_LOG(DEBUG, EAL, "Main lcore %u is ready (tid=%zx;cpuset=[%s%s])\n",
795                 config->main_lcore, (uintptr_t)pthread_self(), cpuset,
796                 ret == 0 ? "" : "...");
797
798         RTE_LCORE_FOREACH_WORKER(i) {
799
800                 /*
801                  * create communication pipes between main thread
802                  * and children
803                  */
804                 if (pipe(lcore_config[i].pipe_main2worker) < 0)
805                         rte_panic("Cannot create pipe\n");
806                 if (pipe(lcore_config[i].pipe_worker2main) < 0)
807                         rte_panic("Cannot create pipe\n");
808
809                 lcore_config[i].state = WAIT;
810
811                 /* create a thread for each lcore */
812                 ret = pthread_create(&lcore_config[i].thread_id, NULL,
813                                      eal_thread_loop, (void *)(uintptr_t)i);
814                 if (ret != 0)
815                         rte_panic("Cannot create thread\n");
816
817                 /* Set thread_name for aid in debugging. */
818                 snprintf(thread_name, sizeof(thread_name),
819                                 "lcore-worker-%d", i);
820                 rte_thread_setname(lcore_config[i].thread_id, thread_name);
821
822                 ret = pthread_setaffinity_np(lcore_config[i].thread_id,
823                         sizeof(rte_cpuset_t), &lcore_config[i].cpuset);
824                 if (ret != 0)
825                         rte_panic("Cannot set affinity\n");
826         }
827
828         /*
829          * Launch a dummy function on all worker lcores, so that main lcore
830          * knows they are all ready when this function returns.
831          */
832         rte_eal_mp_remote_launch(sync_func, NULL, SKIP_MAIN);
833         rte_eal_mp_wait_lcore();
834
835         /* initialize services so vdevs register service during bus_probe. */
836         ret = rte_service_init();
837         if (ret) {
838                 rte_eal_init_alert("rte_service_init() failed");
839                 rte_errno = -ret;
840                 return -1;
841         }
842
843         /* Probe all the buses and devices/drivers on them */
844         if (rte_bus_probe()) {
845                 rte_eal_init_alert("Cannot probe devices");
846                 rte_errno = ENOTSUP;
847                 return -1;
848         }
849
850         /* initialize default service/lcore mappings and start running. Ignore
851          * -ENOTSUP, as it indicates no service coremask passed to EAL.
852          */
853         ret = rte_service_start_with_defaults();
854         if (ret < 0 && ret != -ENOTSUP) {
855                 rte_errno = -ret;
856                 return -1;
857         }
858
859         /*
860          * Clean up unused files in runtime directory. We do this at the end of
861          * init and not at the beginning because we want to clean stuff up
862          * whether we are primary or secondary process, but we cannot remove
863          * primary process' files because secondary should be able to run even
864          * if primary process is dead.
865          *
866          * In no_shconf mode, no runtime directory is created in the first
867          * place, so no cleanup needed.
868          */
869         if (!internal_conf->no_shconf && eal_clean_runtime_dir() < 0) {
870                 rte_eal_init_alert("Cannot clear runtime directory");
871                 return -1;
872         }
873         if (rte_eal_process_type() == RTE_PROC_PRIMARY && !internal_conf->no_telemetry) {
874                 int tlog = rte_log_register_type_and_pick_level(
875                                 "lib.telemetry", RTE_LOG_WARNING);
876                 if (tlog < 0)
877                         tlog = RTE_LOGTYPE_EAL;
878                 if (rte_telemetry_init(rte_eal_get_runtime_dir(),
879                                 rte_version(),
880                                 &internal_conf->ctrl_cpuset, rte_log, tlog) != 0)
881                         return -1;
882         }
883
884         eal_mcfg_complete();
885
886         return fctret;
887 }
888
889 int
890 rte_eal_cleanup(void)
891 {
892         struct internal_config *internal_conf =
893                 eal_get_internal_configuration();
894         rte_service_finalize();
895         rte_mp_channel_cleanup();
896         /* after this point, any DPDK pointers will become dangling */
897         rte_eal_memory_detach();
898         rte_eal_alarm_cleanup();
899         rte_trace_save();
900         eal_trace_fini();
901         eal_cleanup_config(internal_conf);
902         return 0;
903 }
904
905 int rte_eal_create_uio_dev(void)
906 {
907         const struct internal_config *internal_conf =
908                 eal_get_internal_configuration();
909         return internal_conf->create_uio_dev;
910 }
911
912 enum rte_intr_mode
913 rte_eal_vfio_intr_mode(void)
914 {
915         return RTE_INTR_MODE_NONE;
916 }
917
918 void
919 rte_eal_vfio_get_vf_token(__rte_unused rte_uuid_t vf_token)
920 {
921 }
922
923 int rte_vfio_setup_device(__rte_unused const char *sysfs_base,
924                       __rte_unused const char *dev_addr,
925                       __rte_unused int *vfio_dev_fd,
926                       __rte_unused struct vfio_device_info *device_info)
927 {
928         rte_errno = ENOTSUP;
929         return -1;
930 }
931
932 int rte_vfio_release_device(__rte_unused const char *sysfs_base,
933                         __rte_unused const char *dev_addr,
934                         __rte_unused int fd)
935 {
936         rte_errno = ENOTSUP;
937         return -1;
938 }
939
940 int rte_vfio_enable(__rte_unused const char *modname)
941 {
942         rte_errno = ENOTSUP;
943         return -1;
944 }
945
946 int rte_vfio_is_enabled(__rte_unused const char *modname)
947 {
948         return 0;
949 }
950
951 int rte_vfio_noiommu_is_enabled(void)
952 {
953         return 0;
954 }
955
956 int rte_vfio_clear_group(__rte_unused int vfio_group_fd)
957 {
958         rte_errno = ENOTSUP;
959         return -1;
960 }
961
962 int
963 rte_vfio_get_group_num(__rte_unused const char *sysfs_base,
964                        __rte_unused const char *dev_addr,
965                        __rte_unused int *iommu_group_num)
966 {
967         rte_errno = ENOTSUP;
968         return -1;
969 }
970
971 int
972 rte_vfio_get_container_fd(void)
973 {
974         rte_errno = ENOTSUP;
975         return -1;
976 }
977
978 int
979 rte_vfio_get_group_fd(__rte_unused int iommu_group_num)
980 {
981         rte_errno = ENOTSUP;
982         return -1;
983 }
984
985 int
986 rte_vfio_container_create(void)
987 {
988         rte_errno = ENOTSUP;
989         return -1;
990 }
991
992 int
993 rte_vfio_container_destroy(__rte_unused int container_fd)
994 {
995         rte_errno = ENOTSUP;
996         return -1;
997 }
998
999 int
1000 rte_vfio_container_group_bind(__rte_unused int container_fd,
1001                 __rte_unused int iommu_group_num)
1002 {
1003         rte_errno = ENOTSUP;
1004         return -1;
1005 }
1006
1007 int
1008 rte_vfio_container_group_unbind(__rte_unused int container_fd,
1009                 __rte_unused int iommu_group_num)
1010 {
1011         rte_errno = ENOTSUP;
1012         return -1;
1013 }
1014
1015 int
1016 rte_vfio_container_dma_map(__rte_unused int container_fd,
1017                         __rte_unused uint64_t vaddr,
1018                         __rte_unused uint64_t iova,
1019                         __rte_unused uint64_t len)
1020 {
1021         rte_errno = ENOTSUP;
1022         return -1;
1023 }
1024
1025 int
1026 rte_vfio_container_dma_unmap(__rte_unused int container_fd,
1027                         __rte_unused uint64_t vaddr,
1028                         __rte_unused uint64_t iova,
1029                         __rte_unused uint64_t len)
1030 {
1031         rte_errno = ENOTSUP;
1032         return -1;
1033 }