update Intel copyright years to 2014
[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 = rte_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;
81         unsigned long id = 0;
82         struct dirent *e;
83         char *endptr = NULL;
84
85         int len = rte_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         closedir(d);
101         if (endptr == NULL || *endptr!='\0' || endptr == e->d_name+prefix_len) {
102                 RTE_LOG(WARNING, EAL, "Cannot read numa node link "
103                                 "for lcore %u - using physical package id instead\n",
104                                 lcore_id);
105
106                 len = rte_snprintf(path, sizeof(path), SYS_CPU_DIR "/%s",
107                                 lcore_id, PHYS_PKG_FILE);
108                 if (len <= 0 || (unsigned)len >= sizeof(path))
109                         goto err;
110                 if (eal_parse_sysfs_value(path, &id) != 0)
111                         goto err;
112         }
113         return (unsigned)id;
114
115 err:
116         RTE_LOG(ERR, EAL, "Error getting NUMA socket information from %s "
117                         "for lcore %u - assuming NUMA socket 0\n", SYS_CPU_DIR, lcore_id);
118         return 0;
119 }
120
121 /* Get the cpu core id value from the /sys/.../cpuX core_id value */
122 static unsigned
123 cpu_core_id(unsigned lcore_id)
124 {
125         char path[PATH_MAX];
126         unsigned long id;
127
128         int len = rte_snprintf(path, sizeof(path), SYS_CPU_DIR "/%s", lcore_id, CORE_ID_FILE);
129         if (len <= 0 || (unsigned)len >= sizeof(path))
130                 goto err;
131         if (eal_parse_sysfs_value(path, &id) != 0)
132                 goto err;
133         return (unsigned)id;
134
135 err:
136         RTE_LOG(ERR, EAL, "Error reading core id value from %s "
137                         "for lcore %u - assuming core 0\n", SYS_CPU_DIR, lcore_id);
138         return 0;
139 }
140
141 /*
142  * Parse /sys/devices/system/cpu to get the number of physical and logical
143  * processors on the machine. The function will fill the cpu_info
144  * structure.
145  */
146 int
147 rte_eal_cpu_init(void)
148 {
149         /* pointer to global configuration */
150         struct rte_config *config = rte_eal_get_configuration();
151         unsigned lcore_id;
152         unsigned count = 0;
153
154         /* disable lcores that were not detected */
155         RTE_LCORE_FOREACH(lcore_id) {
156
157                 lcore_config[lcore_id].detected = cpu_detected(lcore_id);
158                 if (lcore_config[lcore_id].detected == 0) {
159                         RTE_LOG(DEBUG, EAL, "Skip lcore %u (not detected)\n", lcore_id);
160                         config->lcore_role[lcore_id] = ROLE_OFF;
161                         continue;
162                 }
163                 lcore_config[lcore_id].core_id = cpu_core_id(lcore_id);
164                 lcore_config[lcore_id].socket_id = cpu_socket_id(lcore_id);
165                 if (lcore_config[lcore_id].socket_id >= RTE_MAX_NUMA_NODES)
166 #ifdef CONFIG_RTE_EAL_ALLOW_INV_SOCKET_ID
167                         lcore_config[lcore_id].socket_id = 0;
168 #else
169                         rte_panic("Socket ID (%u) is greater than "
170                                 "RTE_MAX_NUMA_NODES (%d)\n",
171                                 lcore_config[lcore_id].socket_id, RTE_MAX_NUMA_NODES);
172 #endif
173                 RTE_LOG(DEBUG, EAL, "Detected lcore %u as core %u on socket %u\n",
174                                 lcore_id,
175                                 lcore_config[lcore_id].core_id,
176                                 lcore_config[lcore_id].socket_id);
177                 count ++;
178         }
179
180         config->lcore_count = count;
181
182         return 0;
183 }