blob: 5eb4e1fbb877e5c1c1d275d9ce506c018e93177e [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Borislav Petkovcd0cfad2013-12-09 17:14:24 +01002#include <api/fs/fs.h>
Paul Mackerrasa12b51c2010-03-10 20:36:09 +11003#include "../perf.h"
4#include "cpumap.h"
5#include <assert.h>
Arnaldo Carvalho de Melo76b31a22017-04-18 12:26:44 -03006#include <dirent.h>
Paul Mackerrasa12b51c2010-03-10 20:36:09 +11007#include <stdio.h>
Stephane Eranian86ee6e12013-02-14 13:57:27 +01008#include <stdlib.h>
Jiri Olsaf77b57a2015-10-25 15:51:25 +01009#include <linux/bitmap.h>
Jiri Olsaf30a79b2015-06-23 00:36:04 +020010#include "asm/bug.h"
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110011
Arnaldo Carvalho de Melo3052ba52019-06-25 17:27:31 -030012#include <linux/ctype.h>
Arnaldo Carvalho de Melo7f7c5362019-07-04 11:32:27 -030013#include <linux/zalloc.h>
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030014
Arnaldo Carvalho de Melo5ac76282016-01-26 15:51:46 -030015static int max_cpu_num;
Jan Stancek92a7e122017-02-17 12:10:24 +010016static int max_present_cpu_num;
Arnaldo Carvalho de Melo5ac76282016-01-26 15:51:46 -030017static int max_node_num;
18static int *cpunode_map;
19
Jiri Olsaf8548392019-07-21 13:23:49 +020020static struct perf_cpu_map *cpu_map__default_new(void)
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110021{
Jiri Olsaf8548392019-07-21 13:23:49 +020022 struct perf_cpu_map *cpus;
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -020023 int nr_cpus;
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110024
25 nr_cpus = sysconf(_SC_NPROCESSORS_ONLN);
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -020026 if (nr_cpus < 0)
27 return NULL;
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110028
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -020029 cpus = malloc(sizeof(*cpus) + nr_cpus * sizeof(int));
30 if (cpus != NULL) {
31 int i;
32 for (i = 0; i < nr_cpus; ++i)
33 cpus->map[i] = i;
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110034
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -020035 cpus->nr = nr_cpus;
Elena Reshetovaec09a422017-02-21 17:34:56 +020036 refcount_set(&cpus->refcnt, 1);
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -020037 }
38
39 return cpus;
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110040}
41
Jiri Olsaf8548392019-07-21 13:23:49 +020042static struct perf_cpu_map *cpu_map__trim_new(int nr_cpus, int *tmp_cpus)
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110043{
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -020044 size_t payload_size = nr_cpus * sizeof(int);
Jiri Olsaf8548392019-07-21 13:23:49 +020045 struct perf_cpu_map *cpus = malloc(sizeof(*cpus) + payload_size);
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -020046
47 if (cpus != NULL) {
48 cpus->nr = nr_cpus;
49 memcpy(cpus->map, tmp_cpus, payload_size);
Elena Reshetovaec09a422017-02-21 17:34:56 +020050 refcount_set(&cpus->refcnt, 1);
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -020051 }
52
53 return cpus;
54}
55
Jiri Olsaf8548392019-07-21 13:23:49 +020056struct perf_cpu_map *cpu_map__read(FILE *file)
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -020057{
Jiri Olsaf8548392019-07-21 13:23:49 +020058 struct perf_cpu_map *cpus = NULL;
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110059 int nr_cpus = 0;
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -020060 int *tmp_cpus = NULL, *tmp;
61 int max_entries = 0;
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110062 int n, cpu, prev;
63 char sep;
64
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110065 sep = 0;
66 prev = -1;
67 for (;;) {
Yan, Zheng7ae92e72012-09-10 15:53:50 +080068 n = fscanf(file, "%u%c", &cpu, &sep);
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110069 if (n <= 0)
70 break;
71 if (prev >= 0) {
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -020072 int new_max = nr_cpus + cpu - prev - 1;
73
74 if (new_max >= max_entries) {
75 max_entries = new_max + MAX_NR_CPUS / 2;
76 tmp = realloc(tmp_cpus, max_entries * sizeof(int));
77 if (tmp == NULL)
78 goto out_free_tmp;
79 tmp_cpus = tmp;
80 }
81
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110082 while (++prev < cpu)
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -020083 tmp_cpus[nr_cpus++] = prev;
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110084 }
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -020085 if (nr_cpus == max_entries) {
86 max_entries += MAX_NR_CPUS;
87 tmp = realloc(tmp_cpus, max_entries * sizeof(int));
88 if (tmp == NULL)
89 goto out_free_tmp;
90 tmp_cpus = tmp;
91 }
92
93 tmp_cpus[nr_cpus++] = cpu;
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110094 if (n == 2 && sep == '-')
95 prev = cpu;
96 else
97 prev = -1;
98 if (n == 1 || sep == '\n')
99 break;
100 }
Paul Mackerrasa12b51c2010-03-10 20:36:09 +1100101
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -0200102 if (nr_cpus > 0)
103 cpus = cpu_map__trim_new(nr_cpus, tmp_cpus);
104 else
105 cpus = cpu_map__default_new();
106out_free_tmp:
107 free(tmp_cpus);
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800108 return cpus;
109}
110
Jiri Olsaf8548392019-07-21 13:23:49 +0200111static struct perf_cpu_map *cpu_map__read_all_cpu_map(void)
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800112{
Jiri Olsaf8548392019-07-21 13:23:49 +0200113 struct perf_cpu_map *cpus = NULL;
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800114 FILE *onlnf;
115
116 onlnf = fopen("/sys/devices/system/cpu/online", "r");
117 if (!onlnf)
118 return cpu_map__default_new();
119
120 cpus = cpu_map__read(onlnf);
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -0200121 fclose(onlnf);
122 return cpus;
Paul Mackerrasa12b51c2010-03-10 20:36:09 +1100123}
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200124
Jiri Olsaf8548392019-07-21 13:23:49 +0200125struct perf_cpu_map *cpu_map__new(const char *cpu_list)
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200126{
Jiri Olsaf8548392019-07-21 13:23:49 +0200127 struct perf_cpu_map *cpus = NULL;
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200128 unsigned long start_cpu, end_cpu = 0;
129 char *p = NULL;
130 int i, nr_cpus = 0;
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -0200131 int *tmp_cpus = NULL, *tmp;
132 int max_entries = 0;
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200133
134 if (!cpu_list)
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -0200135 return cpu_map__read_all_cpu_map();
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200136
Stephane Eranian1497e802019-01-19 00:12:39 -0800137 /*
138 * must handle the case of empty cpumap to cover
139 * TOPOLOGY header for NUMA nodes with no CPU
140 * ( e.g., because of CPU hotplug)
141 */
142 if (!isdigit(*cpu_list) && *cpu_list != '\0')
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -0200143 goto out;
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200144
145 while (isdigit(*cpu_list)) {
146 p = NULL;
147 start_cpu = strtoul(cpu_list, &p, 0);
148 if (start_cpu >= INT_MAX
149 || (*p != '\0' && *p != ',' && *p != '-'))
150 goto invalid;
151
152 if (*p == '-') {
153 cpu_list = ++p;
154 p = NULL;
155 end_cpu = strtoul(cpu_list, &p, 0);
156
157 if (end_cpu >= INT_MAX || (*p != '\0' && *p != ','))
158 goto invalid;
159
160 if (end_cpu < start_cpu)
161 goto invalid;
162 } else {
163 end_cpu = start_cpu;
164 }
165
166 for (; start_cpu <= end_cpu; start_cpu++) {
167 /* check for duplicates */
168 for (i = 0; i < nr_cpus; i++)
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -0200169 if (tmp_cpus[i] == (int)start_cpu)
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200170 goto invalid;
171
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -0200172 if (nr_cpus == max_entries) {
173 max_entries += MAX_NR_CPUS;
174 tmp = realloc(tmp_cpus, max_entries * sizeof(int));
175 if (tmp == NULL)
176 goto invalid;
177 tmp_cpus = tmp;
178 }
179 tmp_cpus[nr_cpus++] = (int)start_cpu;
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200180 }
181 if (*p)
182 ++p;
183
184 cpu_list = p;
185 }
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200186
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -0200187 if (nr_cpus > 0)
188 cpus = cpu_map__trim_new(nr_cpus, tmp_cpus);
Stephane Eranian1497e802019-01-19 00:12:39 -0800189 else if (*cpu_list != '\0')
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -0200190 cpus = cpu_map__default_new();
Stephane Eranian1497e802019-01-19 00:12:39 -0800191 else
192 cpus = cpu_map__dummy_new();
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200193invalid:
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -0200194 free(tmp_cpus);
195out:
196 return cpus;
197}
198
Jiri Olsaf8548392019-07-21 13:23:49 +0200199static struct perf_cpu_map *cpu_map__from_entries(struct cpu_map_entries *cpus)
Jiri Olsaf77b57a2015-10-25 15:51:25 +0100200{
Jiri Olsaf8548392019-07-21 13:23:49 +0200201 struct perf_cpu_map *map;
Jiri Olsaf77b57a2015-10-25 15:51:25 +0100202
203 map = cpu_map__empty_new(cpus->nr);
204 if (map) {
205 unsigned i;
206
Jiri Olsa15d2b992016-01-06 11:49:55 +0100207 for (i = 0; i < cpus->nr; i++) {
208 /*
209 * Special treatment for -1, which is not real cpu number,
210 * and we need to use (int) -1 to initialize map[i],
211 * otherwise it would become 65535.
212 */
213 if (cpus->cpu[i] == (u16) -1)
214 map->map[i] = -1;
215 else
216 map->map[i] = (int) cpus->cpu[i];
217 }
Jiri Olsaf77b57a2015-10-25 15:51:25 +0100218 }
219
220 return map;
221}
222
Jiri Olsaf8548392019-07-21 13:23:49 +0200223static struct perf_cpu_map *cpu_map__from_mask(struct cpu_map_mask *mask)
Jiri Olsaf77b57a2015-10-25 15:51:25 +0100224{
Jiri Olsaf8548392019-07-21 13:23:49 +0200225 struct perf_cpu_map *map;
Jiri Olsaf77b57a2015-10-25 15:51:25 +0100226 int nr, nbits = mask->nr * mask->long_size * BITS_PER_BYTE;
227
228 nr = bitmap_weight(mask->mask, nbits);
229
230 map = cpu_map__empty_new(nr);
231 if (map) {
232 int cpu, i = 0;
233
234 for_each_set_bit(cpu, mask->mask, nbits)
235 map->map[i++] = cpu;
236 }
237 return map;
238
239}
240
Jiri Olsaf8548392019-07-21 13:23:49 +0200241struct perf_cpu_map *cpu_map__new_data(struct cpu_map_data *data)
Jiri Olsaf77b57a2015-10-25 15:51:25 +0100242{
243 if (data->type == PERF_CPU_MAP__CPUS)
244 return cpu_map__from_entries((struct cpu_map_entries *)data->data);
245 else
246 return cpu_map__from_mask((struct cpu_map_mask *)data->data);
247}
248
Jiri Olsaf8548392019-07-21 13:23:49 +0200249size_t cpu_map__fprintf(struct perf_cpu_map *map, FILE *fp)
Arnaldo Carvalho de Melo9ae7d332012-01-19 14:07:23 -0200250{
Jiri Olsaa24020e2016-06-28 13:29:04 +0200251#define BUFSIZE 1024
252 char buf[BUFSIZE];
Arnaldo Carvalho de Melo9ae7d332012-01-19 14:07:23 -0200253
Jiri Olsaa24020e2016-06-28 13:29:04 +0200254 cpu_map__snprint(map, buf, sizeof(buf));
255 return fprintf(fp, "%s\n", buf);
256#undef BUFSIZE
Arnaldo Carvalho de Melo9ae7d332012-01-19 14:07:23 -0200257}
258
Jiri Olsaf8548392019-07-21 13:23:49 +0200259struct perf_cpu_map *cpu_map__dummy_new(void)
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -0200260{
Jiri Olsaf8548392019-07-21 13:23:49 +0200261 struct perf_cpu_map *cpus = malloc(sizeof(*cpus) + sizeof(int));
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -0200262
263 if (cpus != NULL) {
264 cpus->nr = 1;
265 cpus->map[0] = -1;
Elena Reshetovaec09a422017-02-21 17:34:56 +0200266 refcount_set(&cpus->refcnt, 1);
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -0200267 }
268
269 return cpus;
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200270}
Arnaldo Carvalho de Melo915fce22011-01-14 16:19:12 -0200271
Jiri Olsaf8548392019-07-21 13:23:49 +0200272struct perf_cpu_map *cpu_map__empty_new(int nr)
Jiri Olsa2322f572015-10-25 15:51:17 +0100273{
Jiri Olsaf8548392019-07-21 13:23:49 +0200274 struct perf_cpu_map *cpus = malloc(sizeof(*cpus) + sizeof(int) * nr);
Jiri Olsa2322f572015-10-25 15:51:17 +0100275
276 if (cpus != NULL) {
277 int i;
278
279 cpus->nr = nr;
280 for (i = 0; i < nr; i++)
281 cpus->map[i] = -1;
282
Elena Reshetovaec09a422017-02-21 17:34:56 +0200283 refcount_set(&cpus->refcnt, 1);
Jiri Olsa2322f572015-10-25 15:51:17 +0100284 }
285
286 return cpus;
287}
288
Jiri Olsaf8548392019-07-21 13:23:49 +0200289static void cpu_map__delete(struct perf_cpu_map *map)
Arnaldo Carvalho de Melo915fce22011-01-14 16:19:12 -0200290{
Jiri Olsaf30a79b2015-06-23 00:36:04 +0200291 if (map) {
Elena Reshetovaec09a422017-02-21 17:34:56 +0200292 WARN_ONCE(refcount_read(&map->refcnt) != 0,
Jiri Olsaf30a79b2015-06-23 00:36:04 +0200293 "cpu_map refcnt unbalanced\n");
294 free(map);
295 }
296}
297
Jiri Olsaf8548392019-07-21 13:23:49 +0200298struct perf_cpu_map *cpu_map__get(struct perf_cpu_map *map)
Jiri Olsaf30a79b2015-06-23 00:36:04 +0200299{
300 if (map)
Elena Reshetovaec09a422017-02-21 17:34:56 +0200301 refcount_inc(&map->refcnt);
Jiri Olsaf30a79b2015-06-23 00:36:04 +0200302 return map;
303}
304
Jiri Olsaf8548392019-07-21 13:23:49 +0200305void cpu_map__put(struct perf_cpu_map *map)
Jiri Olsaf30a79b2015-06-23 00:36:04 +0200306{
Elena Reshetovaec09a422017-02-21 17:34:56 +0200307 if (map && refcount_dec_and_test(&map->refcnt))
Jiri Olsaf30a79b2015-06-23 00:36:04 +0200308 cpu_map__delete(map);
Arnaldo Carvalho de Melo915fce22011-01-14 16:19:12 -0200309}
Stephane Eranian5ac59a82013-02-06 15:46:01 +0100310
Arnaldo Carvalho de Melo5d8cf722015-09-11 10:49:45 -0300311static int cpu__get_topology_int(int cpu, const char *name, int *value)
Stephane Eranian5ac59a82013-02-06 15:46:01 +0100312{
Stephane Eranian5ac59a82013-02-06 15:46:01 +0100313 char path[PATH_MAX];
Stephane Eranian5ac59a82013-02-06 15:46:01 +0100314
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100315 snprintf(path, PATH_MAX,
Arnaldo Carvalho de Melo5d8cf722015-09-11 10:49:45 -0300316 "devices/system/cpu/cpu%d/topology/%s", cpu, name);
Stephane Eranian5ac59a82013-02-06 15:46:01 +0100317
Arnaldo Carvalho de Melo5d8cf722015-09-11 10:49:45 -0300318 return sysfs__read_int(path, value);
319}
Kan Liang193b6bd2015-09-01 09:58:11 -0400320
Arnaldo Carvalho de Melo5d8cf722015-09-11 10:49:45 -0300321int cpu_map__get_socket_id(int cpu)
322{
323 int value, ret = cpu__get_topology_int(cpu, "physical_package_id", &value);
324 return ret ?: value;
Kan Liang193b6bd2015-09-01 09:58:11 -0400325}
326
Jiri Olsaf8548392019-07-21 13:23:49 +0200327int cpu_map__get_socket(struct perf_cpu_map *map, int idx, void *data __maybe_unused)
Kan Liang193b6bd2015-09-01 09:58:11 -0400328{
329 int cpu;
330
331 if (idx > map->nr)
332 return -1;
333
334 cpu = map->map[idx];
335
336 return cpu_map__get_socket_id(cpu);
Stephane Eranian5ac59a82013-02-06 15:46:01 +0100337}
338
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100339static int cmp_ids(const void *a, const void *b)
Stephane Eranian5ac59a82013-02-06 15:46:01 +0100340{
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100341 return *(int *)a - *(int *)b;
342}
343
Jiri Olsaf8548392019-07-21 13:23:49 +0200344int cpu_map__build_map(struct perf_cpu_map *cpus, struct perf_cpu_map **res,
345 int (*f)(struct perf_cpu_map *map, int cpu, void *data),
Jiri Olsa1fe7a302015-10-16 12:41:15 +0200346 void *data)
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100347{
Jiri Olsaf8548392019-07-21 13:23:49 +0200348 struct perf_cpu_map *c;
Stephane Eranian5ac59a82013-02-06 15:46:01 +0100349 int nr = cpus->nr;
350 int cpu, s1, s2;
351
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100352 /* allocate as much as possible */
353 c = calloc(1, sizeof(*c) + nr * sizeof(int));
354 if (!c)
Stephane Eranian5ac59a82013-02-06 15:46:01 +0100355 return -1;
356
357 for (cpu = 0; cpu < nr; cpu++) {
Jiri Olsa1fe7a302015-10-16 12:41:15 +0200358 s1 = f(cpus, cpu, data);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100359 for (s2 = 0; s2 < c->nr; s2++) {
360 if (s1 == c->map[s2])
Stephane Eranian5ac59a82013-02-06 15:46:01 +0100361 break;
362 }
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100363 if (s2 == c->nr) {
364 c->map[c->nr] = s1;
365 c->nr++;
Stephane Eranian5ac59a82013-02-06 15:46:01 +0100366 }
367 }
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100368 /* ensure we process id in increasing order */
369 qsort(c->map, c->nr, sizeof(int), cmp_ids);
370
Elena Reshetovaec09a422017-02-21 17:34:56 +0200371 refcount_set(&c->refcnt, 1);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100372 *res = c;
Stephane Eranian5ac59a82013-02-06 15:46:01 +0100373 return 0;
374}
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100375
Kan Liangb74d8682019-06-04 15:50:40 -0700376int cpu_map__get_die_id(int cpu)
377{
378 int value, ret = cpu__get_topology_int(cpu, "die_id", &value);
379
380 return ret ?: value;
381}
382
Jiri Olsaf8548392019-07-21 13:23:49 +0200383int cpu_map__get_die(struct perf_cpu_map *map, int idx, void *data)
Kan Liangdb5742b2019-06-04 15:50:42 -0700384{
385 int cpu, die_id, s;
386
387 if (idx > map->nr)
388 return -1;
389
390 cpu = map->map[idx];
391
392 die_id = cpu_map__get_die_id(cpu);
393 /* There is no die_id on legacy system. */
394 if (die_id == -1)
395 die_id = 0;
396
397 s = cpu_map__get_socket(map, idx, data);
398 if (s == -1)
399 return -1;
400
401 /*
402 * Encode socket in bit range 15:8
403 * die_id is relative to socket, and
404 * we need a global id. So we combine
405 * socket + die id
406 */
407 if (WARN_ONCE(die_id >> 8, "The die id number is too big.\n"))
408 return -1;
409
410 if (WARN_ONCE(s >> 8, "The socket id number is too big.\n"))
411 return -1;
412
413 return (s << 8) | (die_id & 0xff);
414}
415
Kan Liang193b6bd2015-09-01 09:58:11 -0400416int cpu_map__get_core_id(int cpu)
Stephane Eranian12c08a92013-02-14 13:57:29 +0100417{
Arnaldo Carvalho de Melo5d8cf722015-09-11 10:49:45 -0300418 int value, ret = cpu__get_topology_int(cpu, "core_id", &value);
419 return ret ?: value;
Kan Liang193b6bd2015-09-01 09:58:11 -0400420}
421
Jiri Olsaf8548392019-07-21 13:23:49 +0200422int cpu_map__get_core(struct perf_cpu_map *map, int idx, void *data)
Kan Liang193b6bd2015-09-01 09:58:11 -0400423{
Kan Liangdb5742b2019-06-04 15:50:42 -0700424 int cpu, s_die;
Kan Liang193b6bd2015-09-01 09:58:11 -0400425
426 if (idx > map->nr)
Stephane Eranian12c08a92013-02-14 13:57:29 +0100427 return -1;
428
Kan Liang193b6bd2015-09-01 09:58:11 -0400429 cpu = map->map[idx];
430
431 cpu = cpu_map__get_core_id(cpu);
432
Kan Liangdb5742b2019-06-04 15:50:42 -0700433 /* s_die is the combination of socket + die id */
434 s_die = cpu_map__get_die(map, idx, data);
435 if (s_die == -1)
Stephane Eranian12c08a92013-02-14 13:57:29 +0100436 return -1;
437
438 /*
Kan Liangdb5742b2019-06-04 15:50:42 -0700439 * encode socket in bit range 31:24
440 * encode die id in bit range 23:16
441 * core_id is relative to socket and die,
Stephane Eranian12c08a92013-02-14 13:57:29 +0100442 * we need a global id. So we combine
Kan Liangdb5742b2019-06-04 15:50:42 -0700443 * socket + die id + core id
Stephane Eranian12c08a92013-02-14 13:57:29 +0100444 */
Kan Liangdb5742b2019-06-04 15:50:42 -0700445 if (WARN_ONCE(cpu >> 16, "The core id number is too big.\n"))
446 return -1;
447
448 return (s_die << 16) | (cpu & 0xffff);
Stephane Eranian12c08a92013-02-14 13:57:29 +0100449}
450
Jiri Olsaf8548392019-07-21 13:23:49 +0200451int cpu_map__build_socket_map(struct perf_cpu_map *cpus, struct perf_cpu_map **sockp)
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100452{
Jiri Olsa1fe7a302015-10-16 12:41:15 +0200453 return cpu_map__build_map(cpus, sockp, cpu_map__get_socket, NULL);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100454}
Stephane Eranian12c08a92013-02-14 13:57:29 +0100455
Jiri Olsaf8548392019-07-21 13:23:49 +0200456int cpu_map__build_die_map(struct perf_cpu_map *cpus, struct perf_cpu_map **diep)
Kan Liangdb5742b2019-06-04 15:50:42 -0700457{
458 return cpu_map__build_map(cpus, diep, cpu_map__get_die, NULL);
459}
460
Jiri Olsaf8548392019-07-21 13:23:49 +0200461int cpu_map__build_core_map(struct perf_cpu_map *cpus, struct perf_cpu_map **corep)
Stephane Eranian12c08a92013-02-14 13:57:29 +0100462{
Jiri Olsa1fe7a302015-10-16 12:41:15 +0200463 return cpu_map__build_map(cpus, corep, cpu_map__get_core, NULL);
Stephane Eranian12c08a92013-02-14 13:57:29 +0100464}
Don Zickus7780c252014-04-07 14:55:21 -0400465
466/* setup simple routines to easily access node numbers given a cpu number */
467static int get_max_num(char *path, int *max)
468{
469 size_t num;
470 char *buf;
471 int err = 0;
472
473 if (filename__read_str(path, &buf, &num))
474 return -1;
475
476 buf[num] = '\0';
477
478 /* start on the right, to find highest node num */
479 while (--num) {
480 if ((buf[num] == ',') || (buf[num] == '-')) {
481 num++;
482 break;
483 }
484 }
485 if (sscanf(&buf[num], "%d", max) < 1) {
486 err = -1;
487 goto out;
488 }
489
490 /* convert from 0-based to 1-based */
491 (*max)++;
492
493out:
494 free(buf);
495 return err;
496}
497
498/* Determine highest possible cpu in the system for sparse allocation */
499static void set_max_cpu_num(void)
500{
501 const char *mnt;
502 char path[PATH_MAX];
503 int ret = -1;
504
505 /* set up default */
506 max_cpu_num = 4096;
Jan Stancek92a7e122017-02-17 12:10:24 +0100507 max_present_cpu_num = 4096;
Don Zickus7780c252014-04-07 14:55:21 -0400508
509 mnt = sysfs__mountpoint();
510 if (!mnt)
511 goto out;
512
513 /* get the highest possible cpu number for a sparse allocation */
Don Zickusf5b1f4e2014-04-07 14:55:22 -0400514 ret = snprintf(path, PATH_MAX, "%s/devices/system/cpu/possible", mnt);
Don Zickus7780c252014-04-07 14:55:21 -0400515 if (ret == PATH_MAX) {
516 pr_err("sysfs path crossed PATH_MAX(%d) size\n", PATH_MAX);
517 goto out;
518 }
519
520 ret = get_max_num(path, &max_cpu_num);
Jan Stancek92a7e122017-02-17 12:10:24 +0100521 if (ret)
522 goto out;
523
524 /* get the highest present cpu number for a sparse allocation */
525 ret = snprintf(path, PATH_MAX, "%s/devices/system/cpu/present", mnt);
526 if (ret == PATH_MAX) {
527 pr_err("sysfs path crossed PATH_MAX(%d) size\n", PATH_MAX);
528 goto out;
529 }
530
531 ret = get_max_num(path, &max_present_cpu_num);
Don Zickus7780c252014-04-07 14:55:21 -0400532
533out:
534 if (ret)
535 pr_err("Failed to read max cpus, using default of %d\n", max_cpu_num);
536}
537
538/* Determine highest possible node in the system for sparse allocation */
539static void set_max_node_num(void)
540{
541 const char *mnt;
542 char path[PATH_MAX];
543 int ret = -1;
544
545 /* set up default */
546 max_node_num = 8;
547
548 mnt = sysfs__mountpoint();
549 if (!mnt)
550 goto out;
551
552 /* get the highest possible cpu number for a sparse allocation */
553 ret = snprintf(path, PATH_MAX, "%s/devices/system/node/possible", mnt);
554 if (ret == PATH_MAX) {
555 pr_err("sysfs path crossed PATH_MAX(%d) size\n", PATH_MAX);
556 goto out;
557 }
558
559 ret = get_max_num(path, &max_node_num);
560
561out:
562 if (ret)
563 pr_err("Failed to read max nodes, using default of %d\n", max_node_num);
564}
565
Arnaldo Carvalho de Melo5ac76282016-01-26 15:51:46 -0300566int cpu__max_node(void)
567{
568 if (unlikely(!max_node_num))
569 set_max_node_num();
570
571 return max_node_num;
572}
573
574int cpu__max_cpu(void)
575{
576 if (unlikely(!max_cpu_num))
577 set_max_cpu_num();
578
579 return max_cpu_num;
580}
581
Jan Stancek92a7e122017-02-17 12:10:24 +0100582int cpu__max_present_cpu(void)
583{
584 if (unlikely(!max_present_cpu_num))
585 set_max_cpu_num();
586
587 return max_present_cpu_num;
588}
589
590
Arnaldo Carvalho de Melo5ac76282016-01-26 15:51:46 -0300591int cpu__get_node(int cpu)
592{
593 if (unlikely(cpunode_map == NULL)) {
594 pr_debug("cpu_map not initialized\n");
595 return -1;
596 }
597
598 return cpunode_map[cpu];
599}
600
Don Zickus7780c252014-04-07 14:55:21 -0400601static int init_cpunode_map(void)
602{
603 int i;
604
605 set_max_cpu_num();
606 set_max_node_num();
607
608 cpunode_map = calloc(max_cpu_num, sizeof(int));
609 if (!cpunode_map) {
610 pr_err("%s: calloc failed\n", __func__);
611 return -1;
612 }
613
614 for (i = 0; i < max_cpu_num; i++)
615 cpunode_map[i] = -1;
616
617 return 0;
618}
619
620int cpu__setup_cpunode_map(void)
621{
622 struct dirent *dent1, *dent2;
623 DIR *dir1, *dir2;
624 unsigned int cpu, mem;
625 char buf[PATH_MAX];
626 char path[PATH_MAX];
627 const char *mnt;
628 int n;
629
630 /* initialize globals */
631 if (init_cpunode_map())
632 return -1;
633
634 mnt = sysfs__mountpoint();
635 if (!mnt)
636 return 0;
637
638 n = snprintf(path, PATH_MAX, "%s/devices/system/node", mnt);
639 if (n == PATH_MAX) {
640 pr_err("sysfs path crossed PATH_MAX(%d) size\n", PATH_MAX);
641 return -1;
642 }
643
644 dir1 = opendir(path);
645 if (!dir1)
646 return 0;
647
648 /* walk tree and setup map */
649 while ((dent1 = readdir(dir1)) != NULL) {
650 if (dent1->d_type != DT_DIR || sscanf(dent1->d_name, "node%u", &mem) < 1)
651 continue;
652
653 n = snprintf(buf, PATH_MAX, "%s/%s", path, dent1->d_name);
654 if (n == PATH_MAX) {
655 pr_err("sysfs path crossed PATH_MAX(%d) size\n", PATH_MAX);
656 continue;
657 }
658
659 dir2 = opendir(buf);
660 if (!dir2)
661 continue;
662 while ((dent2 = readdir(dir2)) != NULL) {
663 if (dent2->d_type != DT_LNK || sscanf(dent2->d_name, "cpu%u", &cpu) < 1)
664 continue;
665 cpunode_map[cpu] = mem;
666 }
667 closedir(dir2);
668 }
669 closedir(dir1);
670 return 0;
671}
Jiri Olsae632aa62016-04-12 15:29:25 +0200672
Jiri Olsaf8548392019-07-21 13:23:49 +0200673bool cpu_map__has(struct perf_cpu_map *cpus, int cpu)
Jiri Olsae632aa62016-04-12 15:29:25 +0200674{
Mark Rutland9a6c5822016-07-15 11:08:11 +0100675 return cpu_map__idx(cpus, cpu) != -1;
676}
677
Jiri Olsaf8548392019-07-21 13:23:49 +0200678int cpu_map__idx(struct perf_cpu_map *cpus, int cpu)
Mark Rutland9a6c5822016-07-15 11:08:11 +0100679{
Jiri Olsae632aa62016-04-12 15:29:25 +0200680 int i;
681
682 for (i = 0; i < cpus->nr; ++i) {
683 if (cpus->map[i] == cpu)
Mark Rutland9a6c5822016-07-15 11:08:11 +0100684 return i;
Jiri Olsae632aa62016-04-12 15:29:25 +0200685 }
686
Mark Rutland9a6c5822016-07-15 11:08:11 +0100687 return -1;
688}
689
Jiri Olsaf8548392019-07-21 13:23:49 +0200690int cpu_map__cpu(struct perf_cpu_map *cpus, int idx)
Mark Rutland9a6c5822016-07-15 11:08:11 +0100691{
692 return cpus->map[idx];
Jiri Olsae632aa62016-04-12 15:29:25 +0200693}
Jiri Olsaa24020e2016-06-28 13:29:04 +0200694
Jiri Olsaf8548392019-07-21 13:23:49 +0200695size_t cpu_map__snprint(struct perf_cpu_map *map, char *buf, size_t size)
Jiri Olsaa24020e2016-06-28 13:29:04 +0200696{
697 int i, cpu, start = -1;
698 bool first = true;
699 size_t ret = 0;
700
701#define COMMA first ? "" : ","
702
703 for (i = 0; i < map->nr + 1; i++) {
704 bool last = i == map->nr;
705
706 cpu = last ? INT_MAX : map->map[i];
707
708 if (start == -1) {
709 start = i;
710 if (last) {
711 ret += snprintf(buf + ret, size - ret,
712 "%s%d", COMMA,
713 map->map[i]);
714 }
715 } else if (((i - start) != (cpu - map->map[start])) || last) {
716 int end = i - 1;
717
718 if (start == end) {
719 ret += snprintf(buf + ret, size - ret,
720 "%s%d", COMMA,
721 map->map[start]);
722 } else {
723 ret += snprintf(buf + ret, size - ret,
724 "%s%d-%d", COMMA,
725 map->map[start], map->map[end]);
726 }
727 first = false;
728 start = i;
729 }
730 }
731
732#undef COMMA
733
Jiri Olsadeb83da2019-02-20 13:27:59 +0100734 pr_debug2("cpumask list: %s\n", buf);
Jiri Olsaa24020e2016-06-28 13:29:04 +0200735 return ret;
736}
Namhyung Kim4400ac82017-02-24 10:12:49 +0900737
738static char hex_char(unsigned char val)
739{
740 if (val < 10)
741 return val + '0';
742 if (val < 16)
743 return val - 10 + 'a';
744 return '?';
745}
746
Jiri Olsaf8548392019-07-21 13:23:49 +0200747size_t cpu_map__snprint_mask(struct perf_cpu_map *map, char *buf, size_t size)
Namhyung Kim4400ac82017-02-24 10:12:49 +0900748{
749 int i, cpu;
750 char *ptr = buf;
751 unsigned char *bitmap;
752 int last_cpu = cpu_map__cpu(map, map->nr - 1);
753
754 bitmap = zalloc((last_cpu + 7) / 8);
755 if (bitmap == NULL) {
756 buf[0] = '\0';
757 return 0;
758 }
759
760 for (i = 0; i < map->nr; i++) {
761 cpu = cpu_map__cpu(map, i);
762 bitmap[cpu / 8] |= 1 << (cpu % 8);
763 }
764
765 for (cpu = last_cpu / 4 * 4; cpu >= 0; cpu -= 4) {
766 unsigned char bits = bitmap[cpu / 8];
767
768 if (cpu % 8)
769 bits >>= 4;
770 else
771 bits &= 0xf;
772
773 *ptr++ = hex_char(bits);
774 if ((cpu % 32) == 0 && cpu > 0)
775 *ptr++ = ',';
776 }
777 *ptr = '\0';
778 free(bitmap);
779
780 buf[size - 1] = '\0';
781 return ptr - buf;
782}
Alexey Budankovf13de662019-01-22 20:50:57 +0300783
Jiri Olsaf8548392019-07-21 13:23:49 +0200784const struct perf_cpu_map *cpu_map__online(void) /* thread unsafe */
Alexey Budankovf13de662019-01-22 20:50:57 +0300785{
Jiri Olsaf8548392019-07-21 13:23:49 +0200786 static const struct perf_cpu_map *online = NULL;
Alexey Budankovf13de662019-01-22 20:50:57 +0300787
788 if (!online)
789 online = cpu_map__new(NULL); /* from /sys/devices/system/cpu/online */
790
791 return online;
792}