eal: add cpuset into lcore config
[dpdk.git] / lib / librte_eal / linuxapp / eal / eal_lcore.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #include <unistd.h>
35 #include <limits.h>
36 #include <string.h>
37 #include <dirent.h>
38
39 #include <rte_log.h>
40 #include <rte_eal.h>
41 #include <rte_lcore.h>
42 #include <rte_common.h>
43 #include <rte_string_fns.h>
44 #include <rte_debug.h>
45
46 #include "eal_private.h"
47 #include "eal_filesystem.h"
48
49 #define SYS_CPU_DIR "/sys/devices/system/cpu/cpu%u"
50 #define CORE_ID_FILE "topology/core_id"
51 #define PHYS_PKG_FILE "topology/physical_package_id"
52
53 /* Check if a cpu is present by the presence of the cpu information for it */
54 static int
55 cpu_detected(unsigned lcore_id)
56 {
57         char path[PATH_MAX];
58         int len = snprintf(path, sizeof(path), SYS_CPU_DIR
59                 "/"CORE_ID_FILE, lcore_id);
60         if (len <= 0 || (unsigned)len >= sizeof(path))
61                 return 0;
62         if (access(path, F_OK) != 0)
63                 return 0;
64
65         return 1;
66 }
67
68 /* Get CPU socket id (NUMA node) by reading directory
69  * /sys/devices/system/cpu/cpuX looking for symlink "nodeY"
70  * which gives the NUMA topology information.
71  * Note: physical package id != NUMA node, but we use it as a
72  * fallback for kernels which don't create a nodeY link
73  */
74 static unsigned
75 cpu_socket_id(unsigned lcore_id)
76 {
77         const char node_prefix[] = "node";
78         const size_t prefix_len = sizeof(node_prefix) - 1;
79         char path[PATH_MAX];
80         DIR *d = NULL;
81         unsigned long id = 0;
82         struct dirent *e;
83         char *endptr = NULL;
84
85         int len = snprintf(path, sizeof(path),
86                                SYS_CPU_DIR, lcore_id);
87         if (len <= 0 || (unsigned)len >= sizeof(path))
88                 goto err;
89
90         d = opendir(path);
91         if (!d)
92                 goto err;
93
94         while ((e = readdir(d)) != NULL) {
95                 if (strncmp(e->d_name, node_prefix, prefix_len) == 0) {
96                         id = strtoul(e->d_name+prefix_len, &endptr, 0);
97                         break;
98                 }
99         }
100         if (endptr == NULL || *endptr!='\0' || endptr == e->d_name+prefix_len) {
101                 RTE_LOG(WARNING, EAL, "Cannot read numa node link "
102                                 "for lcore %u - using physical package id instead\n",
103                                 lcore_id);
104
105                 len = snprintf(path, sizeof(path), SYS_CPU_DIR "/%s",
106                                 lcore_id, PHYS_PKG_FILE);
107                 if (len <= 0 || (unsigned)len >= sizeof(path))
108                         goto err;
109                 if (eal_parse_sysfs_value(path, &id) != 0)
110                         goto err;
111         }
112         closedir(d);
113         return (unsigned)id;
114
115 err:
116         if (d)
117                 closedir(d);
118         RTE_LOG(ERR, EAL, "Error getting NUMA socket information from %s "
119                         "for lcore %u - assuming NUMA socket 0\n", SYS_CPU_DIR, lcore_id);
120         return 0;
121 }
122
123 /* Get the cpu core id value from the /sys/.../cpuX core_id value */
124 static unsigned
125 cpu_core_id(unsigned lcore_id)
126 {
127         char path[PATH_MAX];
128         unsigned long id;
129
130         int len = snprintf(path, sizeof(path), SYS_CPU_DIR "/%s", lcore_id, CORE_ID_FILE);
131         if (len <= 0 || (unsigned)len >= sizeof(path))
132                 goto err;
133         if (eal_parse_sysfs_value(path, &id) != 0)
134                 goto err;
135         return (unsigned)id;
136
137 err:
138         RTE_LOG(ERR, EAL, "Error reading core id value from %s "
139                         "for lcore %u - assuming core 0\n", SYS_CPU_DIR, lcore_id);
140         return 0;
141 }
142
143 /*
144  * Parse /sys/devices/system/cpu to get the number of physical and logical
145  * processors on the machine. The function will fill the cpu_info
146  * structure.
147  */
148 int
149 rte_eal_cpu_init(void)
150 {
151         /* pointer to global configuration */
152         struct rte_config *config = rte_eal_get_configuration();
153         unsigned lcore_id;
154         unsigned count = 0;
155
156         /*
157          * Parse the maximum set of logical cores, detect the subset of running
158          * ones and enable them by default.
159          */
160         for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
161                 /* init cpuset for per lcore config */
162                 CPU_ZERO(&lcore_config[lcore_id].cpuset);
163
164                 /* in 1:1 mapping, record related cpu detected state */
165                 lcore_config[lcore_id].detected = cpu_detected(lcore_id);
166                 if (lcore_config[lcore_id].detected == 0) {
167                         config->lcore_role[lcore_id] = ROLE_OFF;
168                         continue;
169                 }
170
171                 /* By default, lcore 1:1 map to cpu id */
172                 CPU_SET(lcore_id, &lcore_config[lcore_id].cpuset);
173
174                 /* By default, each detected core is enabled */
175                 config->lcore_role[lcore_id] = ROLE_RTE;
176                 lcore_config[lcore_id].core_id = cpu_core_id(lcore_id);
177                 lcore_config[lcore_id].socket_id = cpu_socket_id(lcore_id);
178                 if (lcore_config[lcore_id].socket_id >= RTE_MAX_NUMA_NODES)
179 #ifdef RTE_EAL_ALLOW_INV_SOCKET_ID
180                         lcore_config[lcore_id].socket_id = 0;
181 #else
182                         rte_panic("Socket ID (%u) is greater than "
183                                 "RTE_MAX_NUMA_NODES (%d)\n",
184                                 lcore_config[lcore_id].socket_id, RTE_MAX_NUMA_NODES);
185 #endif
186                 RTE_LOG(DEBUG, EAL, "Detected lcore %u as core %u on socket %u\n",
187                                 lcore_id,
188                                 lcore_config[lcore_id].core_id,
189                                 lcore_config[lcore_id].socket_id);
190                 count ++;
191         }
192         /* Set the count of enabled logical cores of the EAL configuration */
193         config->lcore_count = count;
194         RTE_LOG(DEBUG, EAL, "Support maximum %u logical core(s) by configuration.\n",
195                 RTE_MAX_LCORE);
196         RTE_LOG(DEBUG, EAL, "Detected %u lcore(s)\n", config->lcore_count);
197
198         return 0;
199 }