xref: /linux/tools/perf/util/cpumap.c (revision 5643b1a59e581ac3f66d36caba8124313cc446c0)
1 // SPDX-License-Identifier: GPL-2.0
2 #include <api/fs/fs.h>
3 #include "../perf.h"
4 #include "cpumap.h"
5 #include <assert.h>
6 #include <dirent.h>
7 #include <stdio.h>
8 #include <stdlib.h>
9 #include <linux/bitmap.h>
10 #include "asm/bug.h"
11 
12 #include <linux/ctype.h>
13 #include <linux/zalloc.h>
14 
15 static int max_cpu_num;
16 static int max_present_cpu_num;
17 static int max_node_num;
18 static int *cpunode_map;
19 
20 static struct perf_cpu_map *cpu_map__from_entries(struct cpu_map_entries *cpus)
21 {
22 	struct perf_cpu_map *map;
23 
24 	map = cpu_map__empty_new(cpus->nr);
25 	if (map) {
26 		unsigned i;
27 
28 		for (i = 0; i < cpus->nr; i++) {
29 			/*
30 			 * Special treatment for -1, which is not real cpu number,
31 			 * and we need to use (int) -1 to initialize map[i],
32 			 * otherwise it would become 65535.
33 			 */
34 			if (cpus->cpu[i] == (u16) -1)
35 				map->map[i] = -1;
36 			else
37 				map->map[i] = (int) cpus->cpu[i];
38 		}
39 	}
40 
41 	return map;
42 }
43 
44 static struct perf_cpu_map *cpu_map__from_mask(struct cpu_map_mask *mask)
45 {
46 	struct perf_cpu_map *map;
47 	int nr, nbits = mask->nr * mask->long_size * BITS_PER_BYTE;
48 
49 	nr = bitmap_weight(mask->mask, nbits);
50 
51 	map = cpu_map__empty_new(nr);
52 	if (map) {
53 		int cpu, i = 0;
54 
55 		for_each_set_bit(cpu, mask->mask, nbits)
56 			map->map[i++] = cpu;
57 	}
58 	return map;
59 
60 }
61 
62 struct perf_cpu_map *cpu_map__new_data(struct cpu_map_data *data)
63 {
64 	if (data->type == PERF_CPU_MAP__CPUS)
65 		return cpu_map__from_entries((struct cpu_map_entries *)data->data);
66 	else
67 		return cpu_map__from_mask((struct cpu_map_mask *)data->data);
68 }
69 
70 size_t cpu_map__fprintf(struct perf_cpu_map *map, FILE *fp)
71 {
72 #define BUFSIZE 1024
73 	char buf[BUFSIZE];
74 
75 	cpu_map__snprint(map, buf, sizeof(buf));
76 	return fprintf(fp, "%s\n", buf);
77 #undef BUFSIZE
78 }
79 
80 struct perf_cpu_map *cpu_map__empty_new(int nr)
81 {
82 	struct perf_cpu_map *cpus = malloc(sizeof(*cpus) + sizeof(int) * nr);
83 
84 	if (cpus != NULL) {
85 		int i;
86 
87 		cpus->nr = nr;
88 		for (i = 0; i < nr; i++)
89 			cpus->map[i] = -1;
90 
91 		refcount_set(&cpus->refcnt, 1);
92 	}
93 
94 	return cpus;
95 }
96 
97 static int cpu__get_topology_int(int cpu, const char *name, int *value)
98 {
99 	char path[PATH_MAX];
100 
101 	snprintf(path, PATH_MAX,
102 		"devices/system/cpu/cpu%d/topology/%s", cpu, name);
103 
104 	return sysfs__read_int(path, value);
105 }
106 
107 int cpu_map__get_socket_id(int cpu)
108 {
109 	int value, ret = cpu__get_topology_int(cpu, "physical_package_id", &value);
110 	return ret ?: value;
111 }
112 
113 int cpu_map__get_socket(struct perf_cpu_map *map, int idx, void *data __maybe_unused)
114 {
115 	int cpu;
116 
117 	if (idx > map->nr)
118 		return -1;
119 
120 	cpu = map->map[idx];
121 
122 	return cpu_map__get_socket_id(cpu);
123 }
124 
125 static int cmp_ids(const void *a, const void *b)
126 {
127 	return *(int *)a - *(int *)b;
128 }
129 
130 int cpu_map__build_map(struct perf_cpu_map *cpus, struct perf_cpu_map **res,
131 		       int (*f)(struct perf_cpu_map *map, int cpu, void *data),
132 		       void *data)
133 {
134 	struct perf_cpu_map *c;
135 	int nr = cpus->nr;
136 	int cpu, s1, s2;
137 
138 	/* allocate as much as possible */
139 	c = calloc(1, sizeof(*c) + nr * sizeof(int));
140 	if (!c)
141 		return -1;
142 
143 	for (cpu = 0; cpu < nr; cpu++) {
144 		s1 = f(cpus, cpu, data);
145 		for (s2 = 0; s2 < c->nr; s2++) {
146 			if (s1 == c->map[s2])
147 				break;
148 		}
149 		if (s2 == c->nr) {
150 			c->map[c->nr] = s1;
151 			c->nr++;
152 		}
153 	}
154 	/* ensure we process id in increasing order */
155 	qsort(c->map, c->nr, sizeof(int), cmp_ids);
156 
157 	refcount_set(&c->refcnt, 1);
158 	*res = c;
159 	return 0;
160 }
161 
162 int cpu_map__get_die_id(int cpu)
163 {
164 	int value, ret = cpu__get_topology_int(cpu, "die_id", &value);
165 
166 	return ret ?: value;
167 }
168 
169 int cpu_map__get_die(struct perf_cpu_map *map, int idx, void *data)
170 {
171 	int cpu, die_id, s;
172 
173 	if (idx > map->nr)
174 		return -1;
175 
176 	cpu = map->map[idx];
177 
178 	die_id = cpu_map__get_die_id(cpu);
179 	/* There is no die_id on legacy system. */
180 	if (die_id == -1)
181 		die_id = 0;
182 
183 	s = cpu_map__get_socket(map, idx, data);
184 	if (s == -1)
185 		return -1;
186 
187 	/*
188 	 * Encode socket in bit range 15:8
189 	 * die_id is relative to socket, and
190 	 * we need a global id. So we combine
191 	 * socket + die id
192 	 */
193 	if (WARN_ONCE(die_id >> 8, "The die id number is too big.\n"))
194 		return -1;
195 
196 	if (WARN_ONCE(s >> 8, "The socket id number is too big.\n"))
197 		return -1;
198 
199 	return (s << 8) | (die_id & 0xff);
200 }
201 
202 int cpu_map__get_core_id(int cpu)
203 {
204 	int value, ret = cpu__get_topology_int(cpu, "core_id", &value);
205 	return ret ?: value;
206 }
207 
208 int cpu_map__get_core(struct perf_cpu_map *map, int idx, void *data)
209 {
210 	int cpu, s_die;
211 
212 	if (idx > map->nr)
213 		return -1;
214 
215 	cpu = map->map[idx];
216 
217 	cpu = cpu_map__get_core_id(cpu);
218 
219 	/* s_die is the combination of socket + die id */
220 	s_die = cpu_map__get_die(map, idx, data);
221 	if (s_die == -1)
222 		return -1;
223 
224 	/*
225 	 * encode socket in bit range 31:24
226 	 * encode die id in bit range 23:16
227 	 * core_id is relative to socket and die,
228 	 * we need a global id. So we combine
229 	 * socket + die id + core id
230 	 */
231 	if (WARN_ONCE(cpu >> 16, "The core id number is too big.\n"))
232 		return -1;
233 
234 	return (s_die << 16) | (cpu & 0xffff);
235 }
236 
237 int cpu_map__build_socket_map(struct perf_cpu_map *cpus, struct perf_cpu_map **sockp)
238 {
239 	return cpu_map__build_map(cpus, sockp, cpu_map__get_socket, NULL);
240 }
241 
242 int cpu_map__build_die_map(struct perf_cpu_map *cpus, struct perf_cpu_map **diep)
243 {
244 	return cpu_map__build_map(cpus, diep, cpu_map__get_die, NULL);
245 }
246 
247 int cpu_map__build_core_map(struct perf_cpu_map *cpus, struct perf_cpu_map **corep)
248 {
249 	return cpu_map__build_map(cpus, corep, cpu_map__get_core, NULL);
250 }
251 
252 /* setup simple routines to easily access node numbers given a cpu number */
253 static int get_max_num(char *path, int *max)
254 {
255 	size_t num;
256 	char *buf;
257 	int err = 0;
258 
259 	if (filename__read_str(path, &buf, &num))
260 		return -1;
261 
262 	buf[num] = '\0';
263 
264 	/* start on the right, to find highest node num */
265 	while (--num) {
266 		if ((buf[num] == ',') || (buf[num] == '-')) {
267 			num++;
268 			break;
269 		}
270 	}
271 	if (sscanf(&buf[num], "%d", max) < 1) {
272 		err = -1;
273 		goto out;
274 	}
275 
276 	/* convert from 0-based to 1-based */
277 	(*max)++;
278 
279 out:
280 	free(buf);
281 	return err;
282 }
283 
284 /* Determine highest possible cpu in the system for sparse allocation */
285 static void set_max_cpu_num(void)
286 {
287 	const char *mnt;
288 	char path[PATH_MAX];
289 	int ret = -1;
290 
291 	/* set up default */
292 	max_cpu_num = 4096;
293 	max_present_cpu_num = 4096;
294 
295 	mnt = sysfs__mountpoint();
296 	if (!mnt)
297 		goto out;
298 
299 	/* get the highest possible cpu number for a sparse allocation */
300 	ret = snprintf(path, PATH_MAX, "%s/devices/system/cpu/possible", mnt);
301 	if (ret == PATH_MAX) {
302 		pr_err("sysfs path crossed PATH_MAX(%d) size\n", PATH_MAX);
303 		goto out;
304 	}
305 
306 	ret = get_max_num(path, &max_cpu_num);
307 	if (ret)
308 		goto out;
309 
310 	/* get the highest present cpu number for a sparse allocation */
311 	ret = snprintf(path, PATH_MAX, "%s/devices/system/cpu/present", mnt);
312 	if (ret == PATH_MAX) {
313 		pr_err("sysfs path crossed PATH_MAX(%d) size\n", PATH_MAX);
314 		goto out;
315 	}
316 
317 	ret = get_max_num(path, &max_present_cpu_num);
318 
319 out:
320 	if (ret)
321 		pr_err("Failed to read max cpus, using default of %d\n", max_cpu_num);
322 }
323 
324 /* Determine highest possible node in the system for sparse allocation */
325 static void set_max_node_num(void)
326 {
327 	const char *mnt;
328 	char path[PATH_MAX];
329 	int ret = -1;
330 
331 	/* set up default */
332 	max_node_num = 8;
333 
334 	mnt = sysfs__mountpoint();
335 	if (!mnt)
336 		goto out;
337 
338 	/* get the highest possible cpu number for a sparse allocation */
339 	ret = snprintf(path, PATH_MAX, "%s/devices/system/node/possible", mnt);
340 	if (ret == PATH_MAX) {
341 		pr_err("sysfs path crossed PATH_MAX(%d) size\n", PATH_MAX);
342 		goto out;
343 	}
344 
345 	ret = get_max_num(path, &max_node_num);
346 
347 out:
348 	if (ret)
349 		pr_err("Failed to read max nodes, using default of %d\n", max_node_num);
350 }
351 
352 int cpu__max_node(void)
353 {
354 	if (unlikely(!max_node_num))
355 		set_max_node_num();
356 
357 	return max_node_num;
358 }
359 
360 int cpu__max_cpu(void)
361 {
362 	if (unlikely(!max_cpu_num))
363 		set_max_cpu_num();
364 
365 	return max_cpu_num;
366 }
367 
368 int cpu__max_present_cpu(void)
369 {
370 	if (unlikely(!max_present_cpu_num))
371 		set_max_cpu_num();
372 
373 	return max_present_cpu_num;
374 }
375 
376 
377 int cpu__get_node(int cpu)
378 {
379 	if (unlikely(cpunode_map == NULL)) {
380 		pr_debug("cpu_map not initialized\n");
381 		return -1;
382 	}
383 
384 	return cpunode_map[cpu];
385 }
386 
387 static int init_cpunode_map(void)
388 {
389 	int i;
390 
391 	set_max_cpu_num();
392 	set_max_node_num();
393 
394 	cpunode_map = calloc(max_cpu_num, sizeof(int));
395 	if (!cpunode_map) {
396 		pr_err("%s: calloc failed\n", __func__);
397 		return -1;
398 	}
399 
400 	for (i = 0; i < max_cpu_num; i++)
401 		cpunode_map[i] = -1;
402 
403 	return 0;
404 }
405 
406 int cpu__setup_cpunode_map(void)
407 {
408 	struct dirent *dent1, *dent2;
409 	DIR *dir1, *dir2;
410 	unsigned int cpu, mem;
411 	char buf[PATH_MAX];
412 	char path[PATH_MAX];
413 	const char *mnt;
414 	int n;
415 
416 	/* initialize globals */
417 	if (init_cpunode_map())
418 		return -1;
419 
420 	mnt = sysfs__mountpoint();
421 	if (!mnt)
422 		return 0;
423 
424 	n = snprintf(path, PATH_MAX, "%s/devices/system/node", mnt);
425 	if (n == PATH_MAX) {
426 		pr_err("sysfs path crossed PATH_MAX(%d) size\n", PATH_MAX);
427 		return -1;
428 	}
429 
430 	dir1 = opendir(path);
431 	if (!dir1)
432 		return 0;
433 
434 	/* walk tree and setup map */
435 	while ((dent1 = readdir(dir1)) != NULL) {
436 		if (dent1->d_type != DT_DIR || sscanf(dent1->d_name, "node%u", &mem) < 1)
437 			continue;
438 
439 		n = snprintf(buf, PATH_MAX, "%s/%s", path, dent1->d_name);
440 		if (n == PATH_MAX) {
441 			pr_err("sysfs path crossed PATH_MAX(%d) size\n", PATH_MAX);
442 			continue;
443 		}
444 
445 		dir2 = opendir(buf);
446 		if (!dir2)
447 			continue;
448 		while ((dent2 = readdir(dir2)) != NULL) {
449 			if (dent2->d_type != DT_LNK || sscanf(dent2->d_name, "cpu%u", &cpu) < 1)
450 				continue;
451 			cpunode_map[cpu] = mem;
452 		}
453 		closedir(dir2);
454 	}
455 	closedir(dir1);
456 	return 0;
457 }
458 
459 bool cpu_map__has(struct perf_cpu_map *cpus, int cpu)
460 {
461 	return cpu_map__idx(cpus, cpu) != -1;
462 }
463 
464 int cpu_map__idx(struct perf_cpu_map *cpus, int cpu)
465 {
466 	int i;
467 
468 	for (i = 0; i < cpus->nr; ++i) {
469 		if (cpus->map[i] == cpu)
470 			return i;
471 	}
472 
473 	return -1;
474 }
475 
476 int cpu_map__cpu(struct perf_cpu_map *cpus, int idx)
477 {
478 	return cpus->map[idx];
479 }
480 
481 size_t cpu_map__snprint(struct perf_cpu_map *map, char *buf, size_t size)
482 {
483 	int i, cpu, start = -1;
484 	bool first = true;
485 	size_t ret = 0;
486 
487 #define COMMA first ? "" : ","
488 
489 	for (i = 0; i < map->nr + 1; i++) {
490 		bool last = i == map->nr;
491 
492 		cpu = last ? INT_MAX : map->map[i];
493 
494 		if (start == -1) {
495 			start = i;
496 			if (last) {
497 				ret += snprintf(buf + ret, size - ret,
498 						"%s%d", COMMA,
499 						map->map[i]);
500 			}
501 		} else if (((i - start) != (cpu - map->map[start])) || last) {
502 			int end = i - 1;
503 
504 			if (start == end) {
505 				ret += snprintf(buf + ret, size - ret,
506 						"%s%d", COMMA,
507 						map->map[start]);
508 			} else {
509 				ret += snprintf(buf + ret, size - ret,
510 						"%s%d-%d", COMMA,
511 						map->map[start], map->map[end]);
512 			}
513 			first = false;
514 			start = i;
515 		}
516 	}
517 
518 #undef COMMA
519 
520 	pr_debug2("cpumask list: %s\n", buf);
521 	return ret;
522 }
523 
524 static char hex_char(unsigned char val)
525 {
526 	if (val < 10)
527 		return val + '0';
528 	if (val < 16)
529 		return val - 10 + 'a';
530 	return '?';
531 }
532 
533 size_t cpu_map__snprint_mask(struct perf_cpu_map *map, char *buf, size_t size)
534 {
535 	int i, cpu;
536 	char *ptr = buf;
537 	unsigned char *bitmap;
538 	int last_cpu = cpu_map__cpu(map, map->nr - 1);
539 
540 	bitmap = zalloc((last_cpu + 7) / 8);
541 	if (bitmap == NULL) {
542 		buf[0] = '\0';
543 		return 0;
544 	}
545 
546 	for (i = 0; i < map->nr; i++) {
547 		cpu = cpu_map__cpu(map, i);
548 		bitmap[cpu / 8] |= 1 << (cpu % 8);
549 	}
550 
551 	for (cpu = last_cpu / 4 * 4; cpu >= 0; cpu -= 4) {
552 		unsigned char bits = bitmap[cpu / 8];
553 
554 		if (cpu % 8)
555 			bits >>= 4;
556 		else
557 			bits &= 0xf;
558 
559 		*ptr++ = hex_char(bits);
560 		if ((cpu % 32) == 0 && cpu > 0)
561 			*ptr++ = ',';
562 	}
563 	*ptr = '\0';
564 	free(bitmap);
565 
566 	buf[size - 1] = '\0';
567 	return ptr - buf;
568 }
569 
570 const struct perf_cpu_map *cpu_map__online(void) /* thread unsafe */
571 {
572 	static const struct perf_cpu_map *online = NULL;
573 
574 	if (!online)
575 		online = perf_cpu_map__new(NULL); /* from /sys/devices/system/cpu/online */
576 
577 	return online;
578 }
579