8c742028039a10395b099202a741f490bc72fe2d
[lttng-ust.git] / src / common / smp.c
1 /*
2 * SPDX-License-Identifier: LGPL-2.1-only
3 *
4 * Copyright (C) 2011-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 * Copyright (C) 2019 Michael Jeanson <mjeanson@efficios.com>
6 */
7
8 #define _LGPL_SOURCE
9 #include <assert.h>
10 #include <ctype.h>
11 #include <dirent.h>
12 #include <errno.h>
13 #include <fcntl.h>
14 #include <limits.h>
15 #include <unistd.h>
16 #include <pthread.h>
17 #include <stdlib.h>
18 #include <string.h>
19 #include <sys/types.h>
20
21 #include <urcu/compiler.h>
22
23 #include "common/logging.h"
24 #include "common/smp.h"
25
26 #define __max(a,b) ((a)>(b)?(a):(b))
27
28 static int possible_cpus_array_len_cache;
29
30 /*
31 * Get the highest CPU id from sysfs.
32 *
33 * Iterate on all the folders in "/sys/devices/system/cpu" that start with
34 * "cpu" followed by an integer, keep the highest CPU id encountered during
35 * this iteration and add 1 to get a number of CPUs.
36 *
37 * Returns the highest CPU id, or -1 on error.
38 */
39 int get_max_cpuid_from_sysfs(void)
40 {
41 return _get_max_cpuid_from_sysfs("/sys/devices/system/cpu");
42 }
43
44 int _get_max_cpuid_from_sysfs(const char *path)
45 {
46 long max_cpuid = -1;
47
48 DIR *cpudir;
49 struct dirent *entry;
50
51 assert(path);
52
53 cpudir = opendir(path);
54 if (cpudir == NULL)
55 goto end;
56
57 /*
58 * Iterate on all directories named "cpu" followed by an integer.
59 */
60 while ((entry = readdir(cpudir))) {
61 if (entry->d_type == DT_DIR &&
62 strncmp(entry->d_name, "cpu", 3) == 0) {
63
64 char *endptr;
65 long cpu_id;
66
67 cpu_id = strtol(entry->d_name + 3, &endptr, 10);
68 if ((cpu_id < LONG_MAX) && (endptr != entry->d_name + 3)
69 && (*endptr == '\0')) {
70 if (cpu_id > max_cpuid)
71 max_cpuid = cpu_id;
72 }
73 }
74 }
75
76 /*
77 * If the max CPU id is out of bound, set it to -1 so it results in a
78 * CPU num of 0.
79 */
80 if (max_cpuid < 0 || max_cpuid > INT_MAX)
81 max_cpuid = -1;
82
83 end:
84 return max_cpuid;
85 }
86
87 /*
88 * As a fallback to parsing the CPU mask in "/sys/devices/system/cpu/possible",
89 * iterate on all the folders in "/sys/devices/system/cpu" that start with
90 * "cpu" followed by an integer, keep the highest CPU id encountered during
91 * this iteration and add 1 to get a number of CPUs.
92 *
93 * Then get the value from sysconf(_SC_NPROCESSORS_CONF) as a fallback and
94 * return the highest one.
95 *
96 * On Linux, using the value from sysconf can be unreliable since the way it
97 * counts CPUs varies between C libraries and even between versions of the same
98 * library. If we used it directly, getcpu() could return a value greater than
99 * this sysconf, in which case the arrays indexed by processor would overflow.
100 *
101 * As another example, the MUSL libc implementation of the _SC_NPROCESSORS_CONF
102 * sysconf does not return the number of configured CPUs in the system but
103 * relies on the cpu affinity mask of the current task.
104 *
105 * Returns 0 or less on error.
106 */
107 int get_num_possible_cpus_fallback(void)
108 {
109 /*
110 * Get the sysconf value as a last resort. Keep the highest number.
111 */
112 return __max(sysconf(_SC_NPROCESSORS_CONF), get_max_cpuid_from_sysfs() + 1);
113 }
114
115 /*
116 * Get the CPU possible mask string from sysfs.
117 *
118 * buf: the buffer where the mask will be read.
119 * max_bytes: the maximum number of bytes to write in the buffer.
120 *
121 * Returns the number of bytes read or -1 on error.
122 */
123 int get_possible_cpu_mask_from_sysfs(char *buf, size_t max_bytes)
124 {
125 return get_cpu_mask_from_sysfs(buf, max_bytes,
126 "/sys/devices/system/cpu/possible");
127 }
128
129 /*
130 * Get a CPU mask string from sysfs.
131 *
132 * buf: the buffer where the mask will be read.
133 * max_bytes: the maximum number of bytes to write in the buffer.
134 * path: file path to read the mask from.
135 *
136 * Returns the number of bytes read or -1 on error.
137 */
138 int get_cpu_mask_from_sysfs(char *buf, size_t max_bytes, const char *path)
139 {
140 ssize_t bytes_read = 0;
141 size_t total_bytes_read = 0;
142 int fd = -1, ret = -1;
143
144 assert(path);
145
146 if (buf == NULL)
147 goto end;
148
149 fd = open(path, O_RDONLY);
150 if (fd < 0)
151 goto end;
152
153 do {
154 bytes_read = read(fd, buf + total_bytes_read,
155 max_bytes - total_bytes_read);
156
157 if (bytes_read < 0) {
158 if (errno == EINTR) {
159 continue; /* retry operation */
160 } else {
161 goto end;
162 }
163 }
164
165 total_bytes_read += bytes_read;
166 assert(total_bytes_read <= max_bytes);
167 } while (max_bytes > total_bytes_read && bytes_read > 0);
168
169 /*
170 * Make sure the mask read is a null terminated string.
171 */
172 if (total_bytes_read < max_bytes)
173 buf[total_bytes_read] = '\0';
174 else
175 buf[max_bytes - 1] = '\0';
176
177 if (total_bytes_read > INT_MAX)
178 goto end;
179 ret = (int) total_bytes_read;
180 end:
181 if (fd >= 0 && close(fd) < 0)
182 PERROR("close");
183 return ret;
184 }
185
186 /*
187 * Get the highest CPU id from a CPU mask.
188 *
189 * pmask: the mask to parse.
190 * len: the len of the mask excluding '\0'.
191 *
192 * Returns the highest CPU id from the mask or -1 on error.
193 */
194 int get_max_cpuid_from_mask(const char *pmask, size_t len)
195 {
196 ssize_t i;
197 unsigned long cpu_index;
198 char *endptr;
199
200 /* We need at least one char to read */
201 if (len < 1)
202 goto error;
203
204 /* Start from the end to read the last CPU index. */
205 for (i = len - 1; i > 0; i--) {
206 /* Break when we hit the first separator. */
207 if ((pmask[i] == ',') || (pmask[i] == '-')) {
208 i++;
209 break;
210 }
211 }
212
213 cpu_index = strtoul(&pmask[i], &endptr, 10);
214
215 /*
216 * If we read a CPU index, increment it by one to return a number of
217 * CPUs.
218 */
219 if ((&pmask[i] != endptr) && (cpu_index < INT_MAX))
220 return (int) cpu_index;
221
222 error:
223 return -1;
224 }
225
226 static void update_possible_cpus_array_len_cache(void)
227 {
228 int ret;
229 char buf[LTTNG_UST_CPUMASK_SIZE];
230
231 /* Get the possible cpu mask from sysfs, fallback to sysconf. */
232 ret = get_possible_cpu_mask_from_sysfs((char *) &buf, LTTNG_UST_CPUMASK_SIZE);
233 if (ret <= 0)
234 goto fallback;
235
236 /* Parse the possible cpu mask, on failure fallback to sysconf. */
237 ret = get_max_cpuid_from_mask((char *) &buf, ret);
238 if (ret >= 0) {
239 /* Add 1 to convert from max cpuid to an array len. */
240 ret++;
241 goto end;
242 }
243
244 fallback:
245 /* Fallback to sysconf. */
246 ret = get_num_possible_cpus_fallback();
247
248 end:
249 /* If all methods failed, don't store the value. */
250 if (ret < 1)
251 return;
252
253 possible_cpus_array_len_cache = ret;
254 }
255
256 /*
257 * Returns the length of an array that could contain a per-CPU element for each
258 * possible CPU id for the lifetime of the process.
259 *
260 * We currently assume CPU ids are contiguous up the maximum CPU id.
261 *
262 * If the cache is not yet initialized, get the value from
263 * "/sys/devices/system/cpu/possible" or fallback to sysconf and cache it.
264 *
265 * If all methods fail, don't populate the cache and return 0.
266 */
267 int get_possible_cpus_array_len(void)
268 {
269 if (caa_unlikely(!possible_cpus_array_len_cache))
270 update_possible_cpus_array_len_cache();
271
272 return possible_cpus_array_len_cache;
273 }
This page took 0.033463 seconds and 3 git commands to generate.