1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2014 Intel Corporation.
3 * Copyright(c) 2014 6WIND S.A.
15 #include <sys/types.h>
21 #include <rte_lcore.h>
22 #include <rte_tailq.h>
23 #include <rte_version.h>
24 #include <rte_devargs.h>
25 #include <rte_memcpy.h>
27 #include "eal_internal_cfg.h"
28 #include "eal_options.h"
29 #include "eal_filesystem.h"
30 #include "eal_private.h"
32 #define BITS_PER_HEX 4
33 #define LCORE_OPT_LST 1
34 #define LCORE_OPT_MSK 2
35 #define LCORE_OPT_MAP 3
39 "b:" /* pci-blacklist */
41 "s:" /* service coremask */
45 "S:" /* service corelist */
46 "m:" /* memory size */
47 "n:" /* memory channels */
48 "r:" /* memory ranks */
50 "w:" /* pci-whitelist */
54 eal_long_options[] = {
55 {OPT_BASE_VIRTADDR, 1, NULL, OPT_BASE_VIRTADDR_NUM },
56 {OPT_CREATE_UIO_DEV, 0, NULL, OPT_CREATE_UIO_DEV_NUM },
57 {OPT_FILE_PREFIX, 1, NULL, OPT_FILE_PREFIX_NUM },
58 {OPT_HELP, 0, NULL, OPT_HELP_NUM },
59 {OPT_HUGE_DIR, 1, NULL, OPT_HUGE_DIR_NUM },
60 {OPT_HUGE_UNLINK, 0, NULL, OPT_HUGE_UNLINK_NUM },
61 {OPT_IOVA_MODE, 1, NULL, OPT_IOVA_MODE_NUM },
62 {OPT_LCORES, 1, NULL, OPT_LCORES_NUM },
63 {OPT_LOG_LEVEL, 1, NULL, OPT_LOG_LEVEL_NUM },
64 {OPT_MASTER_LCORE, 1, NULL, OPT_MASTER_LCORE_NUM },
65 {OPT_MBUF_POOL_OPS_NAME, 1, NULL, OPT_MBUF_POOL_OPS_NAME_NUM},
66 {OPT_NO_HPET, 0, NULL, OPT_NO_HPET_NUM },
67 {OPT_NO_HUGE, 0, NULL, OPT_NO_HUGE_NUM },
68 {OPT_NO_PCI, 0, NULL, OPT_NO_PCI_NUM },
69 {OPT_NO_SHCONF, 0, NULL, OPT_NO_SHCONF_NUM },
70 {OPT_IN_MEMORY, 0, NULL, OPT_IN_MEMORY_NUM },
71 {OPT_PCI_BLACKLIST, 1, NULL, OPT_PCI_BLACKLIST_NUM },
72 {OPT_PCI_WHITELIST, 1, NULL, OPT_PCI_WHITELIST_NUM },
73 {OPT_PROC_TYPE, 1, NULL, OPT_PROC_TYPE_NUM },
74 {OPT_SOCKET_MEM, 1, NULL, OPT_SOCKET_MEM_NUM },
75 {OPT_SOCKET_LIMIT, 1, NULL, OPT_SOCKET_LIMIT_NUM },
76 {OPT_SYSLOG, 1, NULL, OPT_SYSLOG_NUM },
77 {OPT_VDEV, 1, NULL, OPT_VDEV_NUM },
78 {OPT_VFIO_INTR, 1, NULL, OPT_VFIO_INTR_NUM },
79 {OPT_VMWARE_TSC_MAP, 0, NULL, OPT_VMWARE_TSC_MAP_NUM },
80 {OPT_LEGACY_MEM, 0, NULL, OPT_LEGACY_MEM_NUM },
81 {OPT_SINGLE_FILE_SEGMENTS, 0, NULL, OPT_SINGLE_FILE_SEGMENTS_NUM},
82 {OPT_MATCH_ALLOCATIONS, 0, NULL, OPT_MATCH_ALLOCATIONS_NUM},
86 TAILQ_HEAD(shared_driver_list, shared_driver);
88 /* Definition for shared object drivers. */
89 struct shared_driver {
90 TAILQ_ENTRY(shared_driver) next;
96 /* List of external loadable drivers */
97 static struct shared_driver_list solib_list =
98 TAILQ_HEAD_INITIALIZER(solib_list);
100 /* Default path of external loadable drivers */
101 static const char *default_solib_dir = RTE_EAL_PMD_PATH;
104 * Stringified version of solib path used by dpdk-pmdinfo.py
105 * Note: PLEASE DO NOT ALTER THIS without making a corresponding
106 * change to usertools/dpdk-pmdinfo.py
108 static const char dpdk_solib_path[] __attribute__((used)) =
109 "DPDK_PLUGIN_PATH=" RTE_EAL_PMD_PATH;
111 TAILQ_HEAD(device_option_list, device_option);
113 struct device_option {
114 TAILQ_ENTRY(device_option) next;
116 enum rte_devtype type;
120 static struct device_option_list devopt_list =
121 TAILQ_HEAD_INITIALIZER(devopt_list);
123 static int master_lcore_parsed;
124 static int mem_parsed;
125 static int core_parsed;
128 eal_option_device_add(enum rte_devtype type, const char *optarg)
130 struct device_option *devopt;
134 optlen = strlen(optarg) + 1;
135 devopt = calloc(1, sizeof(*devopt) + optlen);
136 if (devopt == NULL) {
137 RTE_LOG(ERR, EAL, "Unable to allocate device option\n");
142 ret = snprintf(devopt->arg, optlen, "%s", optarg);
144 RTE_LOG(ERR, EAL, "Unable to copy device option\n");
148 TAILQ_INSERT_TAIL(&devopt_list, devopt, next);
153 eal_option_device_parse(void)
155 struct device_option *devopt;
159 TAILQ_FOREACH_SAFE(devopt, &devopt_list, next, tmp) {
161 ret = rte_devargs_add(devopt->type, devopt->arg);
163 RTE_LOG(ERR, EAL, "Unable to parse device '%s'\n",
166 TAILQ_REMOVE(&devopt_list, devopt, next);
173 eal_get_hugefile_prefix(void)
175 if (internal_config.hugefile_prefix != NULL)
176 return internal_config.hugefile_prefix;
177 return HUGEFILE_PREFIX_DEFAULT;
181 eal_reset_internal_config(struct internal_config *internal_cfg)
185 internal_cfg->memory = 0;
186 internal_cfg->force_nrank = 0;
187 internal_cfg->force_nchannel = 0;
188 internal_cfg->hugefile_prefix = NULL;
189 internal_cfg->hugepage_dir = NULL;
190 internal_cfg->force_sockets = 0;
191 /* zero out the NUMA config */
192 for (i = 0; i < RTE_MAX_NUMA_NODES; i++)
193 internal_cfg->socket_mem[i] = 0;
194 internal_cfg->force_socket_limits = 0;
195 /* zero out the NUMA limits config */
196 for (i = 0; i < RTE_MAX_NUMA_NODES; i++)
197 internal_cfg->socket_limit[i] = 0;
198 /* zero out hugedir descriptors */
199 for (i = 0; i < MAX_HUGEPAGE_SIZES; i++) {
200 memset(&internal_cfg->hugepage_info[i], 0,
201 sizeof(internal_cfg->hugepage_info[0]));
202 internal_cfg->hugepage_info[i].lock_descriptor = -1;
204 internal_cfg->base_virtaddr = 0;
206 internal_cfg->syslog_facility = LOG_DAEMON;
208 /* if set to NONE, interrupt mode is determined automatically */
209 internal_cfg->vfio_intr_mode = RTE_INTR_MODE_NONE;
211 #ifdef RTE_LIBEAL_USE_HPET
212 internal_cfg->no_hpet = 0;
214 internal_cfg->no_hpet = 1;
216 internal_cfg->vmware_tsc_map = 0;
217 internal_cfg->create_uio_dev = 0;
218 internal_cfg->iova_mode = RTE_IOVA_DC;
219 internal_cfg->user_mbuf_pool_ops_name = NULL;
220 CPU_ZERO(&internal_cfg->ctrl_cpuset);
221 internal_cfg->init_complete = 0;
225 eal_plugin_add(const char *path)
227 struct shared_driver *solib;
229 solib = malloc(sizeof(*solib));
231 RTE_LOG(ERR, EAL, "malloc(solib) failed\n");
234 memset(solib, 0, sizeof(*solib));
235 strlcpy(solib->name, path, PATH_MAX-1);
236 solib->name[PATH_MAX-1] = 0;
237 TAILQ_INSERT_TAIL(&solib_list, solib, next);
243 eal_plugindir_init(const char *path)
246 struct dirent *dent = NULL;
247 char sopath[PATH_MAX];
249 if (path == NULL || *path == '\0')
254 RTE_LOG(ERR, EAL, "failed to open directory %s: %s\n",
255 path, strerror(errno));
259 while ((dent = readdir(d)) != NULL) {
262 snprintf(sopath, PATH_MAX-1, "%s/%s", path, dent->d_name);
263 sopath[PATH_MAX-1] = 0;
265 if (!(stat(sopath, &sb) == 0 && S_ISREG(sb.st_mode)))
268 if (eal_plugin_add(sopath) == -1)
273 /* XXX this ignores failures from readdir() itself */
274 return (dent == NULL) ? 0 : -1;
278 eal_plugins_init(void)
280 struct shared_driver *solib = NULL;
283 if (*default_solib_dir != '\0' && stat(default_solib_dir, &sb) == 0 &&
285 eal_plugin_add(default_solib_dir);
287 TAILQ_FOREACH(solib, &solib_list, next) {
289 if (stat(solib->name, &sb) == 0 && S_ISDIR(sb.st_mode)) {
290 if (eal_plugindir_init(solib->name) == -1) {
292 "Cannot init plugin directory %s\n",
297 RTE_LOG(DEBUG, EAL, "open shared lib %s\n",
299 solib->lib_handle = dlopen(solib->name, RTLD_NOW);
300 if (solib->lib_handle == NULL) {
301 RTE_LOG(ERR, EAL, "%s\n", dlerror());
311 * Parse the coremask given as argument (hexadecimal string) and fill
312 * the global configuration (core role and core count) with the parsed
315 static int xdigit2val(unsigned char c)
329 eal_parse_service_coremask(const char *coremask)
331 struct rte_config *cfg = rte_eal_get_configuration();
333 unsigned int count = 0;
336 uint32_t taken_lcore_count = 0;
338 if (coremask == NULL)
340 /* Remove all blank characters ahead and after .
341 * Remove 0x/0X if exists.
343 while (isblank(*coremask))
345 if (coremask[0] == '0' && ((coremask[1] == 'x')
346 || (coremask[1] == 'X')))
348 i = strlen(coremask);
349 while ((i > 0) && isblank(coremask[i - 1]))
355 for (i = i - 1; i >= 0 && idx < RTE_MAX_LCORE; i--) {
357 if (isxdigit(c) == 0) {
358 /* invalid characters */
362 for (j = 0; j < BITS_PER_HEX && idx < RTE_MAX_LCORE;
364 if ((1 << j) & val) {
365 /* handle master lcore already parsed */
366 uint32_t lcore = idx;
367 if (master_lcore_parsed &&
368 cfg->master_lcore == lcore) {
370 "lcore %u is master lcore, cannot use as service core\n",
375 if (!lcore_config[idx].detected) {
377 "lcore %u unavailable\n", idx);
381 if (cfg->lcore_role[idx] == ROLE_RTE)
384 lcore_config[idx].core_role = ROLE_SERVICE;
391 if (coremask[i] != '0')
394 for (; idx < RTE_MAX_LCORE; idx++)
395 lcore_config[idx].core_index = -1;
400 if (core_parsed && taken_lcore_count != count) {
401 RTE_LOG(WARNING, EAL,
402 "Not all service cores are in the coremask. "
403 "Please ensure -c or -l includes service cores\n");
406 cfg->service_lcore_count = count;
411 eal_service_cores_parsed(void)
414 for (idx = 0; idx < RTE_MAX_LCORE; idx++) {
415 if (lcore_config[idx].core_role == ROLE_SERVICE)
422 eal_parse_coremask(const char *coremask)
424 struct rte_config *cfg = rte_eal_get_configuration();
430 if (eal_service_cores_parsed())
431 RTE_LOG(WARNING, EAL,
432 "Service cores parsed before dataplane cores. "
433 "Please ensure -c is before -s or -S\n");
435 if (coremask == NULL)
437 /* Remove all blank characters ahead and after .
438 * Remove 0x/0X if exists.
440 while (isblank(*coremask))
442 if (coremask[0] == '0' && ((coremask[1] == 'x')
443 || (coremask[1] == 'X')))
445 i = strlen(coremask);
446 while ((i > 0) && isblank(coremask[i - 1]))
451 for (i = i - 1; i >= 0 && idx < RTE_MAX_LCORE; i--) {
453 if (isxdigit(c) == 0) {
454 /* invalid characters */
458 for (j = 0; j < BITS_PER_HEX && idx < RTE_MAX_LCORE; j++, idx++)
460 if ((1 << j) & val) {
461 if (!lcore_config[idx].detected) {
462 RTE_LOG(ERR, EAL, "lcore %u "
463 "unavailable\n", idx);
467 cfg->lcore_role[idx] = ROLE_RTE;
468 lcore_config[idx].core_index = count;
471 cfg->lcore_role[idx] = ROLE_OFF;
472 lcore_config[idx].core_index = -1;
477 if (coremask[i] != '0')
479 for (; idx < RTE_MAX_LCORE; idx++) {
480 cfg->lcore_role[idx] = ROLE_OFF;
481 lcore_config[idx].core_index = -1;
485 /* Update the count of enabled logical cores of the EAL configuration */
486 cfg->lcore_count = count;
491 eal_parse_service_corelist(const char *corelist)
493 struct rte_config *cfg = rte_eal_get_configuration();
498 uint32_t taken_lcore_count = 0;
500 if (corelist == NULL)
503 /* Remove all blank characters ahead and after */
504 while (isblank(*corelist))
506 i = strlen(corelist);
507 while ((i > 0) && isblank(corelist[i - 1]))
510 /* Get list of cores */
513 while (isblank(*corelist))
515 if (*corelist == '\0')
518 idx = strtoul(corelist, &end, 10);
519 if (errno || end == NULL)
521 while (isblank(*end))
525 } else if ((*end == ',') || (*end == '\0')) {
527 if (min == RTE_MAX_LCORE)
529 for (idx = min; idx <= max; idx++) {
530 if (cfg->lcore_role[idx] != ROLE_SERVICE) {
531 /* handle master lcore already parsed */
532 uint32_t lcore = idx;
533 if (cfg->master_lcore == lcore &&
534 master_lcore_parsed) {
536 "Error: lcore %u is master lcore, cannot use as service core\n",
540 if (cfg->lcore_role[idx] == ROLE_RTE)
543 lcore_config[idx].core_role =
552 } while (*end != '\0');
557 if (core_parsed && taken_lcore_count != count) {
558 RTE_LOG(WARNING, EAL,
559 "Not all service cores were in the coremask. "
560 "Please ensure -c or -l includes service cores\n");
567 eal_parse_corelist(const char *corelist)
569 struct rte_config *cfg = rte_eal_get_configuration();
575 if (eal_service_cores_parsed())
576 RTE_LOG(WARNING, EAL,
577 "Service cores parsed before dataplane cores. "
578 "Please ensure -l is before -s or -S\n");
580 if (corelist == NULL)
583 /* Remove all blank characters ahead and after */
584 while (isblank(*corelist))
586 i = strlen(corelist);
587 while ((i > 0) && isblank(corelist[i - 1]))
591 for (idx = 0; idx < RTE_MAX_LCORE; idx++) {
592 cfg->lcore_role[idx] = ROLE_OFF;
593 lcore_config[idx].core_index = -1;
596 /* Get list of cores */
599 while (isblank(*corelist))
601 if (*corelist == '\0')
604 idx = strtol(corelist, &end, 10);
605 if (idx < 0 || idx >= (int)cfg->lcore_count)
607 if (errno || end == NULL)
609 while (isblank(*end))
613 } else if ((*end == ',') || (*end == '\0')) {
615 if (min == RTE_MAX_LCORE)
617 for (idx = min; idx <= max; idx++) {
618 if (cfg->lcore_role[idx] != ROLE_RTE) {
619 cfg->lcore_role[idx] = ROLE_RTE;
620 lcore_config[idx].core_index = count;
628 } while (*end != '\0');
633 /* Update the count of enabled logical cores of the EAL configuration */
634 cfg->lcore_count = count;
639 /* Changes the lcore id of the master thread */
641 eal_parse_master_lcore(const char *arg)
644 struct rte_config *cfg = rte_eal_get_configuration();
647 cfg->master_lcore = (uint32_t) strtol(arg, &parsing_end, 0);
648 if (errno || parsing_end[0] != 0)
650 if (cfg->master_lcore >= RTE_MAX_LCORE)
652 master_lcore_parsed = 1;
654 /* ensure master core is not used as service core */
655 if (lcore_config[cfg->master_lcore].core_role == ROLE_SERVICE) {
657 "Error: Master lcore is used as a service core\n");
665 * Parse elem, the elem could be single number/range or '(' ')' group
666 * 1) A single number elem, it's just a simple digit. e.g. 9
667 * 2) A single range elem, two digits with a '-' between. e.g. 2-6
668 * 3) A group elem, combines multiple 1) or 2) with '( )'. e.g (0,2-4,6)
669 * Within group elem, '-' used for a range separator;
670 * ',' used for a single number.
673 eal_parse_set(const char *input, uint16_t set[], unsigned num)
676 const char *str = input;
680 memset(set, 0, num * sizeof(uint16_t));
682 while (isblank(*str))
685 /* only digit or left bracket is qualify for start point */
686 if ((!isdigit(*str) && *str != '(') || *str == '\0')
689 /* process single number or single range of number */
692 idx = strtoul(str, &end, 10);
693 if (errno || end == NULL || idx >= num)
696 while (isblank(*end))
702 /* process single <number>-<number> */
704 while (isblank(*end))
710 idx = strtoul(end, &end, 10);
711 if (errno || end == NULL || idx >= num)
714 while (isblank(*end))
716 if (*end != ',' && *end != '\0')
720 if (*end != ',' && *end != '\0' &&
724 for (idx = RTE_MIN(min, max);
725 idx <= RTE_MAX(min, max); idx++)
732 /* process set within bracket */
734 while (isblank(*str))
742 /* go ahead to the first digit */
743 while (isblank(*str))
748 /* get the digit value */
750 idx = strtoul(str, &end, 10);
751 if (errno || end == NULL || idx >= num)
754 /* go ahead to separator '-',',' and ')' */
755 while (isblank(*end))
758 if (min == RTE_MAX_LCORE)
760 else /* avoid continuous '-' */
762 } else if ((*end == ',') || (*end == ')')) {
764 if (min == RTE_MAX_LCORE)
766 for (idx = RTE_MIN(min, max);
767 idx <= RTE_MAX(min, max); idx++)
775 } while (*end != '\0' && *end != ')');
778 * to avoid failure that tail blank makes end character check fail
779 * in eal_parse_lcores( )
781 while (isblank(*str))
787 /* convert from set array to cpuset bitmap */
789 convert_to_cpuset(rte_cpuset_t *cpusetp,
790 uint16_t *set, unsigned num)
796 for (idx = 0; idx < num; idx++) {
800 if (!lcore_config[idx].detected) {
801 RTE_LOG(ERR, EAL, "core %u "
802 "unavailable\n", idx);
806 CPU_SET(idx, cpusetp);
813 * The format pattern: --lcores='<lcores[@cpus]>[<,lcores[@cpus]>...]'
814 * lcores, cpus could be a single digit/range or a group.
815 * '(' and ')' are necessary if it's a group.
816 * If not supply '@cpus', the value of cpus uses the same as lcores.
817 * e.g. '1,2@(5-7),(3-5)@(0,2),(0,6),7-8' means start 9 EAL thread as below
818 * lcore 0 runs on cpuset 0x41 (cpu 0,6)
819 * lcore 1 runs on cpuset 0x2 (cpu 1)
820 * lcore 2 runs on cpuset 0xe0 (cpu 5,6,7)
821 * lcore 3,4,5 runs on cpuset 0x5 (cpu 0,2)
822 * lcore 6 runs on cpuset 0x41 (cpu 0,6)
823 * lcore 7 runs on cpuset 0x80 (cpu 7)
824 * lcore 8 runs on cpuset 0x100 (cpu 8)
827 eal_parse_lcores(const char *lcores)
829 struct rte_config *cfg = rte_eal_get_configuration();
830 static uint16_t set[RTE_MAX_LCORE];
833 const char *lcore_start = NULL;
834 const char *end = NULL;
843 /* Remove all blank characters ahead and after */
844 while (isblank(*lcores))
849 /* Reset lcore config */
850 for (idx = 0; idx < RTE_MAX_LCORE; idx++) {
851 cfg->lcore_role[idx] = ROLE_OFF;
852 lcore_config[idx].core_index = -1;
853 CPU_ZERO(&lcore_config[idx].cpuset);
856 /* Get list of cores */
858 while (isblank(*lcores))
865 /* record lcore_set start point */
866 lcore_start = lcores;
868 /* go across a complete bracket */
869 if (*lcore_start == '(') {
870 lcores += strcspn(lcores, ")");
871 if (*lcores++ == '\0')
875 /* scan the separator '@', ','(next) or '\0'(finish) */
876 lcores += strcspn(lcores, "@,");
878 if (*lcores == '@') {
879 /* explicit assign cpu_set */
880 offset = eal_parse_set(lcores + 1, set, RTE_DIM(set));
884 /* prepare cpu_set and update the end cursor */
885 if (0 > convert_to_cpuset(&cpuset,
888 end = lcores + 1 + offset;
889 } else { /* ',' or '\0' */
890 /* haven't given cpu_set, current loop done */
893 /* go back to check <number>-<number> */
894 offset = strcspn(lcore_start, "(-");
895 if (offset < (end - lcore_start) &&
896 *(lcore_start + offset) != '(')
900 if (*end != ',' && *end != '\0')
903 /* parse lcore_set from start point */
904 if (0 > eal_parse_set(lcore_start, set, RTE_DIM(set)))
907 /* without '@', by default using lcore_set as cpu_set */
908 if (*lcores != '@' &&
909 0 > convert_to_cpuset(&cpuset, set, RTE_DIM(set)))
912 /* start to update lcore_set */
913 for (idx = 0; idx < RTE_MAX_LCORE; idx++) {
917 if (cfg->lcore_role[idx] != ROLE_RTE) {
918 lcore_config[idx].core_index = count;
919 cfg->lcore_role[idx] = ROLE_RTE;
925 CPU_SET(idx, &cpuset);
927 rte_memcpy(&lcore_config[idx].cpuset, &cpuset,
928 sizeof(rte_cpuset_t));
932 } while (*end != '\0');
937 cfg->lcore_count = count;
946 eal_parse_syslog(const char *facility, struct internal_config *conf)
949 static const struct {
953 { "auth", LOG_AUTH },
954 { "cron", LOG_CRON },
955 { "daemon", LOG_DAEMON },
957 { "kern", LOG_KERN },
959 { "mail", LOG_MAIL },
960 { "news", LOG_NEWS },
961 { "syslog", LOG_SYSLOG },
962 { "user", LOG_USER },
963 { "uucp", LOG_UUCP },
964 { "local0", LOG_LOCAL0 },
965 { "local1", LOG_LOCAL1 },
966 { "local2", LOG_LOCAL2 },
967 { "local3", LOG_LOCAL3 },
968 { "local4", LOG_LOCAL4 },
969 { "local5", LOG_LOCAL5 },
970 { "local6", LOG_LOCAL6 },
971 { "local7", LOG_LOCAL7 },
975 for (i = 0; map[i].name; i++) {
976 if (!strcmp(facility, map[i].name)) {
977 conf->syslog_facility = map[i].value;
985 eal_parse_log_priority(const char *level)
987 static const char * const levels[] = {
988 [RTE_LOG_EMERG] = "emergency",
989 [RTE_LOG_ALERT] = "alert",
990 [RTE_LOG_CRIT] = "critical",
991 [RTE_LOG_ERR] = "error",
992 [RTE_LOG_WARNING] = "warning",
993 [RTE_LOG_NOTICE] = "notice",
994 [RTE_LOG_INFO] = "info",
995 [RTE_LOG_DEBUG] = "debug",
997 size_t len = strlen(level);
1005 /* look for named values, skip 0 which is not a valid level */
1006 for (i = 1; i < RTE_DIM(levels); i++) {
1007 if (strncmp(levels[i], level, len) == 0)
1011 /* not a string, maybe it is numeric */
1013 tmp = strtoul(level, &end, 0);
1015 /* check for errors */
1016 if (errno != 0 || end == NULL || *end != '\0' ||
1024 eal_parse_log_level(const char *arg)
1026 const char *pattern = NULL;
1027 const char *regex = NULL;
1035 if ((level = strchr(str, ','))) {
1038 } else if ((level = strchr(str, ':'))) {
1045 priority = eal_parse_log_priority(level);
1047 fprintf(stderr, "invalid log priority: %s\n", level);
1052 if (rte_log_set_level_regexp(regex, priority) < 0) {
1053 fprintf(stderr, "cannot set log level %s,%d\n",
1057 if (rte_log_save_regexp(regex, priority) < 0)
1059 } else if (pattern) {
1060 if (rte_log_set_level_pattern(pattern, priority) < 0) {
1061 fprintf(stderr, "cannot set log level %s:%d\n",
1065 if (rte_log_save_pattern(pattern, priority) < 0)
1068 rte_log_set_global_level(priority);
1079 static enum rte_proc_type_t
1080 eal_parse_proc_type(const char *arg)
1082 if (strncasecmp(arg, "primary", sizeof("primary")) == 0)
1083 return RTE_PROC_PRIMARY;
1084 if (strncasecmp(arg, "secondary", sizeof("secondary")) == 0)
1085 return RTE_PROC_SECONDARY;
1086 if (strncasecmp(arg, "auto", sizeof("auto")) == 0)
1087 return RTE_PROC_AUTO;
1089 return RTE_PROC_INVALID;
1093 eal_parse_iova_mode(const char *name)
1100 if (!strcmp("pa", name))
1102 else if (!strcmp("va", name))
1107 internal_config.iova_mode = mode;
1112 eal_parse_common_option(int opt, const char *optarg,
1113 struct internal_config *conf)
1117 struct rte_config *cfg = rte_eal_get_configuration();
1124 if (eal_option_device_add(RTE_DEVTYPE_BLACKLISTED_PCI,
1134 if (eal_option_device_add(RTE_DEVTYPE_WHITELISTED_PCI,
1142 if (eal_parse_coremask(optarg) < 0) {
1143 RTE_LOG(ERR, EAL, "invalid coremask\n");
1148 RTE_LOG(ERR, EAL, "Option -c is ignored, because (%s) is set!\n",
1149 (core_parsed == LCORE_OPT_LST) ? "-l" :
1150 (core_parsed == LCORE_OPT_MAP) ? "--lcore" :
1155 core_parsed = LCORE_OPT_MSK;
1159 if (eal_parse_corelist(optarg) < 0) {
1161 "invalid core list, please check core numbers are in [0, %u] range\n",
1162 cfg->lcore_count-1);
1167 RTE_LOG(ERR, EAL, "Option -l is ignored, because (%s) is set!\n",
1168 (core_parsed == LCORE_OPT_MSK) ? "-c" :
1169 (core_parsed == LCORE_OPT_MAP) ? "--lcore" :
1174 core_parsed = LCORE_OPT_LST;
1176 /* service coremask */
1178 if (eal_parse_service_coremask(optarg) < 0) {
1179 RTE_LOG(ERR, EAL, "invalid service coremask\n");
1183 /* service corelist */
1185 if (eal_parse_service_corelist(optarg) < 0) {
1186 RTE_LOG(ERR, EAL, "invalid service core list\n");
1190 /* size of memory */
1192 conf->memory = atoi(optarg);
1193 conf->memory *= 1024ULL;
1194 conf->memory *= 1024ULL;
1197 /* force number of channels */
1199 conf->force_nchannel = atoi(optarg);
1200 if (conf->force_nchannel == 0) {
1201 RTE_LOG(ERR, EAL, "invalid channel number\n");
1205 /* force number of ranks */
1207 conf->force_nrank = atoi(optarg);
1208 if (conf->force_nrank == 0 ||
1209 conf->force_nrank > 16) {
1210 RTE_LOG(ERR, EAL, "invalid rank number\n");
1214 /* force loading of external driver */
1216 if (eal_plugin_add(optarg) == -1)
1220 /* since message is explicitly requested by user, we
1221 * write message at highest log level so it can always
1223 * even if info or warning messages are disabled */
1224 RTE_LOG(CRIT, EAL, "RTE Version: '%s'\n", rte_version());
1228 case OPT_HUGE_UNLINK_NUM:
1229 conf->hugepage_unlink = 1;
1232 case OPT_NO_HUGE_NUM:
1233 conf->no_hugetlbfs = 1;
1234 /* no-huge is legacy mem */
1235 conf->legacy_mem = 1;
1238 case OPT_NO_PCI_NUM:
1242 case OPT_NO_HPET_NUM:
1246 case OPT_VMWARE_TSC_MAP_NUM:
1247 conf->vmware_tsc_map = 1;
1250 case OPT_NO_SHCONF_NUM:
1251 conf->no_shconf = 1;
1254 case OPT_IN_MEMORY_NUM:
1255 conf->in_memory = 1;
1256 /* in-memory is a superset of noshconf and huge-unlink */
1257 conf->no_shconf = 1;
1258 conf->hugepage_unlink = 1;
1261 case OPT_PROC_TYPE_NUM:
1262 conf->process_type = eal_parse_proc_type(optarg);
1265 case OPT_MASTER_LCORE_NUM:
1266 if (eal_parse_master_lcore(optarg) < 0) {
1267 RTE_LOG(ERR, EAL, "invalid parameter for --"
1268 OPT_MASTER_LCORE "\n");
1274 if (eal_option_device_add(RTE_DEVTYPE_VIRTUAL,
1280 case OPT_SYSLOG_NUM:
1281 if (eal_parse_syslog(optarg, conf) < 0) {
1282 RTE_LOG(ERR, EAL, "invalid parameters for --"
1288 case OPT_LOG_LEVEL_NUM: {
1289 if (eal_parse_log_level(optarg) < 0) {
1291 "invalid parameters for --"
1292 OPT_LOG_LEVEL "\n");
1297 case OPT_LCORES_NUM:
1298 if (eal_parse_lcores(optarg) < 0) {
1299 RTE_LOG(ERR, EAL, "invalid parameter for --"
1305 RTE_LOG(ERR, EAL, "Option --lcore is ignored, because (%s) is set!\n",
1306 (core_parsed == LCORE_OPT_LST) ? "-l" :
1307 (core_parsed == LCORE_OPT_MSK) ? "-c" :
1312 core_parsed = LCORE_OPT_MAP;
1314 case OPT_LEGACY_MEM_NUM:
1315 conf->legacy_mem = 1;
1317 case OPT_SINGLE_FILE_SEGMENTS_NUM:
1318 conf->single_file_segments = 1;
1320 case OPT_IOVA_MODE_NUM:
1321 if (eal_parse_iova_mode(optarg) < 0) {
1322 RTE_LOG(ERR, EAL, "invalid parameters for --"
1323 OPT_IOVA_MODE "\n");
1328 /* don't know what to do, leave this to caller */
1336 RTE_LOG(ERR, EAL, "Options blacklist (-b) and whitelist (-w) "
1337 "cannot be used at the same time\n");
1342 eal_auto_detect_cores(struct rte_config *cfg)
1344 unsigned int lcore_id;
1345 unsigned int removed = 0;
1346 rte_cpuset_t affinity_set;
1348 if (pthread_getaffinity_np(pthread_self(), sizeof(rte_cpuset_t),
1350 CPU_ZERO(&affinity_set);
1352 for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
1353 if (cfg->lcore_role[lcore_id] == ROLE_RTE &&
1354 !CPU_ISSET(lcore_id, &affinity_set)) {
1355 cfg->lcore_role[lcore_id] = ROLE_OFF;
1360 cfg->lcore_count -= removed;
1364 compute_ctrl_threads_cpuset(struct internal_config *internal_cfg)
1366 rte_cpuset_t *cpuset = &internal_cfg->ctrl_cpuset;
1367 rte_cpuset_t default_set;
1368 unsigned int lcore_id;
1370 for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
1371 if (eal_cpu_detected(lcore_id) &&
1372 rte_lcore_has_role(lcore_id, ROLE_OFF)) {
1373 CPU_SET(lcore_id, cpuset);
1377 if (pthread_getaffinity_np(pthread_self(), sizeof(rte_cpuset_t),
1379 CPU_ZERO(&default_set);
1381 RTE_CPU_AND(cpuset, cpuset, &default_set);
1383 /* if no detected CPU is off, use master core */
1384 if (!CPU_COUNT(cpuset))
1385 CPU_SET(rte_get_master_lcore(), cpuset);
1389 eal_cleanup_config(struct internal_config *internal_cfg)
1391 if (internal_cfg->hugefile_prefix != NULL)
1392 free(internal_cfg->hugefile_prefix);
1393 if (internal_cfg->hugepage_dir != NULL)
1394 free(internal_cfg->hugepage_dir);
1395 if (internal_cfg->user_mbuf_pool_ops_name != NULL)
1396 free(internal_cfg->user_mbuf_pool_ops_name);
1402 eal_adjust_config(struct internal_config *internal_cfg)
1405 struct rte_config *cfg = rte_eal_get_configuration();
1408 eal_auto_detect_cores(cfg);
1410 if (internal_config.process_type == RTE_PROC_AUTO)
1411 internal_config.process_type = eal_proc_type_detect();
1413 /* default master lcore is the first one */
1414 if (!master_lcore_parsed) {
1415 cfg->master_lcore = rte_get_next_lcore(-1, 0, 0);
1416 if (cfg->master_lcore >= RTE_MAX_LCORE)
1418 lcore_config[cfg->master_lcore].core_role = ROLE_RTE;
1421 compute_ctrl_threads_cpuset(internal_cfg);
1423 /* if no memory amounts were requested, this will result in 0 and
1424 * will be overridden later, right after eal_hugepage_info_init() */
1425 for (i = 0; i < RTE_MAX_NUMA_NODES; i++)
1426 internal_cfg->memory += internal_cfg->socket_mem[i];
1432 eal_check_common_options(struct internal_config *internal_cfg)
1434 struct rte_config *cfg = rte_eal_get_configuration();
1436 if (cfg->lcore_role[cfg->master_lcore] != ROLE_RTE) {
1437 RTE_LOG(ERR, EAL, "Master lcore is not enabled for DPDK\n");
1441 if (internal_cfg->process_type == RTE_PROC_INVALID) {
1442 RTE_LOG(ERR, EAL, "Invalid process type specified\n");
1445 if (internal_cfg->hugefile_prefix != NULL &&
1446 strlen(internal_cfg->hugefile_prefix) < 1) {
1447 RTE_LOG(ERR, EAL, "Invalid length of --" OPT_FILE_PREFIX " option\n");
1450 if (internal_cfg->hugepage_dir != NULL &&
1451 strlen(internal_cfg->hugepage_dir) < 1) {
1452 RTE_LOG(ERR, EAL, "Invalid length of --" OPT_HUGE_DIR" option\n");
1455 if (internal_cfg->user_mbuf_pool_ops_name != NULL &&
1456 strlen(internal_cfg->user_mbuf_pool_ops_name) < 1) {
1457 RTE_LOG(ERR, EAL, "Invalid length of --" OPT_MBUF_POOL_OPS_NAME" option\n");
1460 if (index(eal_get_hugefile_prefix(), '%') != NULL) {
1461 RTE_LOG(ERR, EAL, "Invalid char, '%%', in --"OPT_FILE_PREFIX" "
1465 if (mem_parsed && internal_cfg->force_sockets == 1) {
1466 RTE_LOG(ERR, EAL, "Options -m and --"OPT_SOCKET_MEM" cannot "
1467 "be specified at the same time\n");
1470 if (internal_cfg->no_hugetlbfs && internal_cfg->force_sockets == 1) {
1471 RTE_LOG(ERR, EAL, "Option --"OPT_SOCKET_MEM" cannot "
1472 "be specified together with --"OPT_NO_HUGE"\n");
1475 if (internal_cfg->no_hugetlbfs && internal_cfg->hugepage_unlink &&
1476 !internal_cfg->in_memory) {
1477 RTE_LOG(ERR, EAL, "Option --"OPT_HUGE_UNLINK" cannot "
1478 "be specified together with --"OPT_NO_HUGE"\n");
1481 if (internal_config.force_socket_limits && internal_config.legacy_mem) {
1482 RTE_LOG(ERR, EAL, "Option --"OPT_SOCKET_LIMIT
1483 " is only supported in non-legacy memory mode\n");
1485 if (internal_cfg->single_file_segments &&
1486 internal_cfg->hugepage_unlink &&
1487 !internal_cfg->in_memory) {
1488 RTE_LOG(ERR, EAL, "Option --"OPT_SINGLE_FILE_SEGMENTS" is "
1489 "not compatible with --"OPT_HUGE_UNLINK"\n");
1492 if (internal_cfg->legacy_mem &&
1493 internal_cfg->in_memory) {
1494 RTE_LOG(ERR, EAL, "Option --"OPT_LEGACY_MEM" is not compatible "
1495 "with --"OPT_IN_MEMORY"\n");
1498 if (internal_cfg->legacy_mem && internal_cfg->match_allocations) {
1499 RTE_LOG(ERR, EAL, "Option --"OPT_LEGACY_MEM" is not compatible "
1500 "with --"OPT_MATCH_ALLOCATIONS"\n");
1503 if (internal_cfg->no_hugetlbfs && internal_cfg->match_allocations) {
1504 RTE_LOG(ERR, EAL, "Option --"OPT_NO_HUGE" is not compatible "
1505 "with --"OPT_MATCH_ALLOCATIONS"\n");
1513 eal_common_usage(void)
1515 printf("[options]\n\n"
1516 "EAL common options:\n"
1517 " -c COREMASK Hexadecimal bitmask of cores to run on\n"
1518 " -l CORELIST List of cores to run on\n"
1519 " The argument format is <c1>[-c2][,c3[-c4],...]\n"
1520 " where c1, c2, etc are core indexes between 0 and %d\n"
1521 " --"OPT_LCORES" COREMAP Map lcore set to physical cpu set\n"
1522 " The argument format is\n"
1523 " '<lcores[@cpus]>[<,lcores[@cpus]>...]'\n"
1524 " lcores and cpus list are grouped by '(' and ')'\n"
1525 " Within the group, '-' is used for range separator,\n"
1526 " ',' is used for single number separator.\n"
1527 " '( )' can be omitted for single element group,\n"
1528 " '@' can be omitted if cpus and lcores have the same value\n"
1529 " -s SERVICE COREMASK Hexadecimal bitmask of cores to be used as service cores\n"
1530 " --"OPT_MASTER_LCORE" ID Core ID that is used as master\n"
1531 " --"OPT_MBUF_POOL_OPS_NAME" Pool ops name for mbuf to use\n"
1532 " -n CHANNELS Number of memory channels\n"
1533 " -m MB Memory to allocate (see also --"OPT_SOCKET_MEM")\n"
1534 " -r RANKS Force number of memory ranks (don't detect)\n"
1535 " -b, --"OPT_PCI_BLACKLIST" Add a PCI device in black list.\n"
1536 " Prevent EAL from using this PCI device. The argument\n"
1537 " format is <domain:bus:devid.func>.\n"
1538 " -w, --"OPT_PCI_WHITELIST" Add a PCI device in white list.\n"
1539 " Only use the specified PCI devices. The argument format\n"
1540 " is <[domain:]bus:devid.func>. This option can be present\n"
1541 " several times (once per device).\n"
1542 " [NOTE: PCI whitelist cannot be used with -b option]\n"
1543 " --"OPT_VDEV" Add a virtual device.\n"
1544 " The argument format is <driver><id>[,key=val,...]\n"
1545 " (ex: --vdev=net_pcap0,iface=eth2).\n"
1546 " --"OPT_IOVA_MODE" Set IOVA mode. 'pa' for IOVA_PA\n"
1547 " 'va' for IOVA_VA\n"
1548 " -d LIB.so|DIR Add a driver or driver directory\n"
1549 " (can be used multiple times)\n"
1550 " --"OPT_VMWARE_TSC_MAP" Use VMware TSC map instead of native RDTSC\n"
1551 " --"OPT_PROC_TYPE" Type of this process (primary|secondary|auto)\n"
1552 " --"OPT_SYSLOG" Set syslog facility\n"
1553 " --"OPT_LOG_LEVEL"=<int> Set global log level\n"
1554 " --"OPT_LOG_LEVEL"=<type-match>:<int>\n"
1555 " Set specific log level\n"
1556 " -v Display version information on startup\n"
1557 " -h, --help This help\n"
1558 " --"OPT_IN_MEMORY" Operate entirely in memory. This will\n"
1559 " disable secondary process support\n"
1560 "\nEAL options for DEBUG use only:\n"
1561 " --"OPT_HUGE_UNLINK" Unlink hugepage files after init\n"
1562 " --"OPT_NO_HUGE" Use malloc instead of hugetlbfs\n"
1563 " --"OPT_NO_PCI" Disable PCI\n"
1564 " --"OPT_NO_HPET" Disable HPET\n"
1565 " --"OPT_NO_SHCONF" No shared config (mmap'd files)\n"
1566 "\n", RTE_MAX_LCORE);