blob: d909459fb54cb2e24ec8da304935fed8424c2026 [file] [log] [blame]
Arnaldo Carvalho de Melo7b2567c2010-02-03 16:52:04 -02001/*
2 * build-id.c
3 *
4 * build-id support
5 *
6 * Copyright (C) 2009, 2010 Red Hat Inc.
7 * Copyright (C) 2009, 2010 Arnaldo Carvalho de Melo <acme@redhat.com>
8 */
Arnaldo Carvalho de Melob36f19d2010-05-20 12:15:33 -03009#include "util.h"
10#include <stdio.h>
Arnaldo Carvalho de Melo7b2567c2010-02-03 16:52:04 -020011#include "build-id.h"
12#include "event.h"
13#include "symbol.h"
14#include <linux/kernel.h>
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -030015#include "debug.h"
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020016#include "session.h"
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020017#include "tool.h"
Namhyung Kime195fac2014-11-04 10:14:30 +090018#include "header.h"
19#include "vdso.h"
Arnaldo Carvalho de Melo7b2567c2010-02-03 16:52:04 -020020
Namhyung Kim73c5d222014-11-07 22:57:56 +090021
22static bool no_buildid_cache;
23
Andrew Vagin54a3cf52012-08-07 16:56:05 +040024int build_id__mark_dso_hit(struct perf_tool *tool __maybe_unused,
25 union perf_event *event,
Adrian Hunteref893252013-08-27 11:23:06 +030026 struct perf_sample *sample,
Andrew Vagin54a3cf52012-08-07 16:56:05 +040027 struct perf_evsel *evsel __maybe_unused,
28 struct machine *machine)
Arnaldo Carvalho de Melo7b2567c2010-02-03 16:52:04 -020029{
30 struct addr_location al;
31 u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
Adrian Hunteref893252013-08-27 11:23:06 +030032 struct thread *thread = machine__findnew_thread(machine, sample->pid,
Namhyung Kim13ce34d2014-05-12 09:56:42 +090033 sample->tid);
Arnaldo Carvalho de Melo7b2567c2010-02-03 16:52:04 -020034
35 if (thread == NULL) {
36 pr_err("problem processing %d event, skipping it.\n",
37 event->header.type);
38 return -1;
39 }
40
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -030041 thread__find_addr_map(thread, cpumode, MAP__FUNCTION, sample->ip, &al);
Arnaldo Carvalho de Melo7b2567c2010-02-03 16:52:04 -020042
43 if (al.map != NULL)
44 al.map->dso->hit = 1;
45
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030046 thread__put(thread);
Arnaldo Carvalho de Melo7b2567c2010-02-03 16:52:04 -020047 return 0;
48}
49
Irina Tirdea1d037ca2012-09-11 01:15:03 +030050static int perf_event__exit_del_thread(struct perf_tool *tool __maybe_unused,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020051 union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +030052 struct perf_sample *sample
53 __maybe_unused,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020054 struct machine *machine)
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -030055{
Adrian Hunter314add62013-08-27 11:23:03 +030056 struct thread *thread = machine__findnew_thread(machine,
57 event->fork.pid,
58 event->fork.tid);
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -030059
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -020060 dump_printf("(%d:%d):(%d:%d)\n", event->fork.pid, event->fork.tid,
61 event->fork.ppid, event->fork.ptid);
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -030062
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030063 if (thread) {
He Kuang5e78c692015-04-10 17:35:00 +080064 machine__remove_thread(machine, thread);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030065 thread__put(thread);
66 }
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -030067
68 return 0;
69}
70
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020071struct perf_tool build_id__mark_dso_hit_ops = {
Arnaldo Carvalho de Melo7b2567c2010-02-03 16:52:04 -020072 .sample = build_id__mark_dso_hit,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -020073 .mmap = perf_event__process_mmap,
Stephane Eranian5c5e8542013-08-21 12:10:25 +020074 .mmap2 = perf_event__process_mmap2,
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -030075 .fork = perf_event__process_fork,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -020076 .exit = perf_event__exit_del_thread,
Stephane Eranian299c3452012-05-15 13:28:15 +020077 .attr = perf_event__process_attr,
78 .build_id = perf_event__process_build_id,
Arnaldo Carvalho de Melo7b2567c2010-02-03 16:52:04 -020079};
Arnaldo Carvalho de Melob36f19d2010-05-20 12:15:33 -030080
Jiri Olsaebb296c2012-10-27 23:18:28 +020081int build_id__sprintf(const u8 *build_id, int len, char *bf)
82{
83 char *bid = bf;
84 const u8 *raw = build_id;
85 int i;
86
87 for (i = 0; i < len; ++i) {
88 sprintf(bid, "%02x", *raw);
89 ++raw;
90 bid += 2;
91 }
92
93 return raw - build_id;
94}
95
Masami Hiramatsu0b5a7932015-08-15 20:42:59 +090096int sysfs__sprintf_build_id(const char *root_dir, char *sbuild_id)
97{
98 char notes[PATH_MAX];
99 u8 build_id[BUILD_ID_SIZE];
100 int ret;
101
102 if (!root_dir)
103 root_dir = "";
104
105 scnprintf(notes, sizeof(notes), "%s/sys/kernel/notes", root_dir);
106
107 ret = sysfs__read_build_id(notes, build_id, sizeof(build_id));
108 if (ret < 0)
109 return ret;
110
111 return build_id__sprintf(build_id, sizeof(build_id), sbuild_id);
112}
113
114int filename__sprintf_build_id(const char *pathname, char *sbuild_id)
115{
116 u8 build_id[BUILD_ID_SIZE];
117 int ret;
118
119 ret = filename__read_build_id(pathname, build_id, sizeof(build_id));
120 if (ret < 0)
121 return ret;
122 else if (ret != sizeof(build_id))
123 return -EINVAL;
124
125 return build_id__sprintf(build_id, sizeof(build_id), sbuild_id);
126}
127
Masami Hiramatsu5cb113f2015-02-10 18:18:53 +0900128/* asnprintf consolidates asprintf and snprintf */
129static int asnprintf(char **strp, size_t size, const char *fmt, ...)
130{
131 va_list ap;
132 int ret;
133
134 if (!strp)
135 return -EINVAL;
136
137 va_start(ap, fmt);
138 if (*strp)
139 ret = vsnprintf(*strp, size, fmt, ap);
140 else
141 ret = vasprintf(strp, fmt, ap);
142 va_end(ap);
143
144 return ret;
145}
146
147static char *build_id__filename(const char *sbuild_id, char *bf, size_t size)
148{
149 char *tmp = bf;
150 int ret = asnprintf(&bf, size, "%s/.build-id/%.2s/%s", buildid_dir,
151 sbuild_id, sbuild_id + 2);
152 if (ret < 0 || (tmp && size < (unsigned int)ret))
153 return NULL;
154 return bf;
155}
156
Arnaldo Carvalho de Melo33449962013-12-10 15:46:29 -0300157char *dso__build_id_filename(const struct dso *dso, char *bf, size_t size)
Arnaldo Carvalho de Melob36f19d2010-05-20 12:15:33 -0300158{
Masami Hiramatsud77fac72015-07-15 18:14:28 +0900159 char build_id_hex[SBUILD_ID_SIZE];
Arnaldo Carvalho de Melob36f19d2010-05-20 12:15:33 -0300160
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300161 if (!dso->has_build_id)
Arnaldo Carvalho de Melob36f19d2010-05-20 12:15:33 -0300162 return NULL;
163
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300164 build_id__sprintf(dso->build_id, sizeof(dso->build_id), build_id_hex);
Masami Hiramatsu5cb113f2015-02-10 18:18:53 +0900165 return build_id__filename(build_id_hex, bf, size);
Arnaldo Carvalho de Melob36f19d2010-05-20 12:15:33 -0300166}
Namhyung Kime195fac2014-11-04 10:14:30 +0900167
168#define dsos__for_each_with_build_id(pos, head) \
169 list_for_each_entry(pos, head, node) \
170 if (!pos->has_build_id) \
171 continue; \
172 else
173
174static int write_buildid(const char *name, size_t name_len, u8 *build_id,
175 pid_t pid, u16 misc, int fd)
176{
177 int err;
178 struct build_id_event b;
179 size_t len;
180
181 len = name_len + 1;
182 len = PERF_ALIGN(len, NAME_ALIGN);
183
184 memset(&b, 0, sizeof(b));
185 memcpy(&b.build_id, build_id, BUILD_ID_SIZE);
186 b.pid = pid;
187 b.header.misc = misc;
188 b.header.size = sizeof(b) + len;
189
190 err = writen(fd, &b, sizeof(b));
191 if (err < 0)
192 return err;
193
194 return write_padded(fd, name, name_len + 1, len);
195}
196
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300197static int machine__write_buildid_table(struct machine *machine, int fd)
Namhyung Kime195fac2014-11-04 10:14:30 +0900198{
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300199 int err = 0;
Namhyung Kime195fac2014-11-04 10:14:30 +0900200 char nm[PATH_MAX];
201 struct dso *pos;
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300202 u16 kmisc = PERF_RECORD_MISC_KERNEL,
203 umisc = PERF_RECORD_MISC_USER;
Namhyung Kime195fac2014-11-04 10:14:30 +0900204
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300205 if (!machine__is_host(machine)) {
206 kmisc = PERF_RECORD_MISC_GUEST_KERNEL;
207 umisc = PERF_RECORD_MISC_GUEST_USER;
208 }
209
210 dsos__for_each_with_build_id(pos, &machine->dsos.head) {
Namhyung Kime195fac2014-11-04 10:14:30 +0900211 const char *name;
212 size_t name_len;
213
214 if (!pos->hit)
215 continue;
216
217 if (dso__is_vdso(pos)) {
218 name = pos->short_name;
219 name_len = pos->short_name_len + 1;
220 } else if (dso__is_kcore(pos)) {
221 machine__mmap_name(machine, nm, sizeof(nm));
222 name = nm;
223 name_len = strlen(nm) + 1;
224 } else {
225 name = pos->long_name;
226 name_len = pos->long_name_len + 1;
227 }
228
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300229 err = write_buildid(name, name_len, pos->build_id, machine->pid,
230 pos->kernel ? kmisc : umisc, fd);
Namhyung Kime195fac2014-11-04 10:14:30 +0900231 if (err)
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300232 break;
Namhyung Kime195fac2014-11-04 10:14:30 +0900233 }
234
Namhyung Kime195fac2014-11-04 10:14:30 +0900235 return err;
236}
237
238int perf_session__write_buildid_table(struct perf_session *session, int fd)
239{
240 struct rb_node *nd;
241 int err = machine__write_buildid_table(&session->machines.host, fd);
242
243 if (err)
244 return err;
245
246 for (nd = rb_first(&session->machines.guests); nd; nd = rb_next(nd)) {
247 struct machine *pos = rb_entry(nd, struct machine, rb_node);
248 err = machine__write_buildid_table(pos, fd);
249 if (err)
250 break;
251 }
252 return err;
253}
254
255static int __dsos__hit_all(struct list_head *head)
256{
257 struct dso *pos;
258
259 list_for_each_entry(pos, head, node)
260 pos->hit = true;
261
262 return 0;
263}
264
265static int machine__hit_all_dsos(struct machine *machine)
266{
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300267 return __dsos__hit_all(&machine->dsos.head);
Namhyung Kime195fac2014-11-04 10:14:30 +0900268}
269
270int dsos__hit_all(struct perf_session *session)
271{
272 struct rb_node *nd;
273 int err;
274
275 err = machine__hit_all_dsos(&session->machines.host);
276 if (err)
277 return err;
278
279 for (nd = rb_first(&session->machines.guests); nd; nd = rb_next(nd)) {
280 struct machine *pos = rb_entry(nd, struct machine, rb_node);
281
282 err = machine__hit_all_dsos(pos);
283 if (err)
284 return err;
285 }
286
287 return 0;
288}
289
Namhyung Kim73c5d222014-11-07 22:57:56 +0900290void disable_buildid_cache(void)
291{
292 no_buildid_cache = true;
293}
294
Masami Hiramatsu8d8c8e42015-02-27 13:50:26 +0900295static char *build_id_cache__dirname_from_path(const char *name,
296 bool is_kallsyms, bool is_vdso)
297{
298 char *realname = (char *)name, *filename;
299 bool slash = is_kallsyms || is_vdso;
300
301 if (!slash) {
302 realname = realpath(name, NULL);
303 if (!realname)
304 return NULL;
305 }
306
307 if (asprintf(&filename, "%s%s%s", buildid_dir, slash ? "/" : "",
308 is_vdso ? DSO__NAME_VDSO : realname) < 0)
309 filename = NULL;
310
311 if (!slash)
312 free(realname);
313
314 return filename;
315}
316
317int build_id_cache__list_build_ids(const char *pathname,
318 struct strlist **result)
319{
320 struct strlist *list;
321 char *dir_name;
322 DIR *dir;
323 struct dirent *d;
324 int ret = 0;
325
Arnaldo Carvalho de Melo4a77e212015-07-20 12:13:34 -0300326 list = strlist__new(NULL, NULL);
Masami Hiramatsu8d8c8e42015-02-27 13:50:26 +0900327 dir_name = build_id_cache__dirname_from_path(pathname, false, false);
328 if (!list || !dir_name) {
329 ret = -ENOMEM;
330 goto out;
331 }
332
333 /* List up all dirents */
334 dir = opendir(dir_name);
335 if (!dir) {
336 ret = -errno;
337 goto out;
338 }
339
340 while ((d = readdir(dir)) != NULL) {
341 if (!strcmp(d->d_name, ".") || !strcmp(d->d_name, ".."))
342 continue;
343 strlist__add(list, d->d_name);
344 }
345 closedir(dir);
346
347out:
348 free(dir_name);
349 if (ret)
350 strlist__delete(list);
351 else
352 *result = list;
353
354 return ret;
355}
356
Masami Hiramatsue35f7362015-02-10 18:18:51 +0900357int build_id_cache__add_s(const char *sbuild_id, const char *name,
358 bool is_kallsyms, bool is_vdso)
Namhyung Kime195fac2014-11-04 10:14:30 +0900359{
360 const size_t size = PATH_MAX;
Masami Hiramatsu8d8c8e42015-02-27 13:50:26 +0900361 char *realname = NULL, *filename = NULL, *dir_name = NULL,
Masami Hiramatsu5cb113f2015-02-10 18:18:53 +0900362 *linkname = zalloc(size), *targetname, *tmp;
Masami Hiramatsu8d8c8e42015-02-27 13:50:26 +0900363 int err = -1;
Namhyung Kime195fac2014-11-04 10:14:30 +0900364
Masami Hiramatsu8d8c8e42015-02-27 13:50:26 +0900365 if (!is_kallsyms) {
Namhyung Kime195fac2014-11-04 10:14:30 +0900366 realname = realpath(name, NULL);
Masami Hiramatsu8d8c8e42015-02-27 13:50:26 +0900367 if (!realname)
368 goto out_free;
369 }
Namhyung Kime195fac2014-11-04 10:14:30 +0900370
Masami Hiramatsu8d8c8e42015-02-27 13:50:26 +0900371 dir_name = build_id_cache__dirname_from_path(name, is_kallsyms, is_vdso);
372 if (!dir_name)
Namhyung Kime195fac2014-11-04 10:14:30 +0900373 goto out_free;
374
Masami Hiramatsu8d8c8e42015-02-27 13:50:26 +0900375 if (mkdir_p(dir_name, 0755))
Namhyung Kime195fac2014-11-04 10:14:30 +0900376 goto out_free;
377
Masami Hiramatsu8d8c8e42015-02-27 13:50:26 +0900378 if (asprintf(&filename, "%s/%s", dir_name, sbuild_id) < 0) {
379 filename = NULL;
380 goto out_free;
381 }
Namhyung Kime195fac2014-11-04 10:14:30 +0900382
383 if (access(filename, F_OK)) {
384 if (is_kallsyms) {
385 if (copyfile("/proc/kallsyms", filename))
386 goto out_free;
Milos Vyletel0635b0f2015-03-20 11:37:25 +0100387 } else if (link(realname, filename) && errno != EEXIST &&
388 copyfile(name, filename))
Namhyung Kime195fac2014-11-04 10:14:30 +0900389 goto out_free;
390 }
391
Masami Hiramatsu5cb113f2015-02-10 18:18:53 +0900392 if (!build_id__filename(sbuild_id, linkname, size))
393 goto out_free;
394 tmp = strrchr(linkname, '/');
395 *tmp = '\0';
Namhyung Kime195fac2014-11-04 10:14:30 +0900396
397 if (access(linkname, X_OK) && mkdir_p(linkname, 0755))
398 goto out_free;
399
Masami Hiramatsu5cb113f2015-02-10 18:18:53 +0900400 *tmp = '/';
Masami Hiramatsue35f7362015-02-10 18:18:51 +0900401 targetname = filename + strlen(buildid_dir) - 5;
Namhyung Kime195fac2014-11-04 10:14:30 +0900402 memcpy(targetname, "../..", 5);
403
404 if (symlink(targetname, linkname) == 0)
405 err = 0;
406out_free:
407 if (!is_kallsyms)
408 free(realname);
409 free(filename);
Masami Hiramatsu8d8c8e42015-02-27 13:50:26 +0900410 free(dir_name);
Namhyung Kime195fac2014-11-04 10:14:30 +0900411 free(linkname);
412 return err;
413}
414
415static int build_id_cache__add_b(const u8 *build_id, size_t build_id_size,
Masami Hiramatsue35f7362015-02-10 18:18:51 +0900416 const char *name, bool is_kallsyms,
417 bool is_vdso)
Namhyung Kime195fac2014-11-04 10:14:30 +0900418{
Masami Hiramatsud77fac72015-07-15 18:14:28 +0900419 char sbuild_id[SBUILD_ID_SIZE];
Namhyung Kime195fac2014-11-04 10:14:30 +0900420
421 build_id__sprintf(build_id, build_id_size, sbuild_id);
422
Masami Hiramatsue35f7362015-02-10 18:18:51 +0900423 return build_id_cache__add_s(sbuild_id, name, is_kallsyms, is_vdso);
Namhyung Kime195fac2014-11-04 10:14:30 +0900424}
425
Masami Hiramatsua50d11a2015-02-26 15:54:40 +0900426bool build_id_cache__cached(const char *sbuild_id)
427{
428 bool ret = false;
429 char *filename = build_id__filename(sbuild_id, NULL, 0);
430
431 if (filename && !access(filename, F_OK))
432 ret = true;
433 free(filename);
434
435 return ret;
436}
437
Masami Hiramatsue35f7362015-02-10 18:18:51 +0900438int build_id_cache__remove_s(const char *sbuild_id)
Namhyung Kime195fac2014-11-04 10:14:30 +0900439{
440 const size_t size = PATH_MAX;
441 char *filename = zalloc(size),
Masami Hiramatsu5cb113f2015-02-10 18:18:53 +0900442 *linkname = zalloc(size), *tmp;
Namhyung Kime195fac2014-11-04 10:14:30 +0900443 int err = -1;
444
445 if (filename == NULL || linkname == NULL)
446 goto out_free;
447
Masami Hiramatsu5cb113f2015-02-10 18:18:53 +0900448 if (!build_id__filename(sbuild_id, linkname, size))
449 goto out_free;
Namhyung Kime195fac2014-11-04 10:14:30 +0900450
451 if (access(linkname, F_OK))
452 goto out_free;
453
454 if (readlink(linkname, filename, size - 1) < 0)
455 goto out_free;
456
457 if (unlink(linkname))
458 goto out_free;
459
460 /*
461 * Since the link is relative, we must make it absolute:
462 */
Masami Hiramatsu5cb113f2015-02-10 18:18:53 +0900463 tmp = strrchr(linkname, '/') + 1;
464 snprintf(tmp, size - (tmp - linkname), "%s", filename);
Namhyung Kime195fac2014-11-04 10:14:30 +0900465
466 if (unlink(linkname))
467 goto out_free;
468
469 err = 0;
470out_free:
471 free(filename);
472 free(linkname);
473 return err;
474}
475
Masami Hiramatsue35f7362015-02-10 18:18:51 +0900476static int dso__cache_build_id(struct dso *dso, struct machine *machine)
Namhyung Kime195fac2014-11-04 10:14:30 +0900477{
478 bool is_kallsyms = dso->kernel && dso->long_name[0] != '/';
479 bool is_vdso = dso__is_vdso(dso);
480 const char *name = dso->long_name;
481 char nm[PATH_MAX];
482
483 if (dso__is_kcore(dso)) {
484 is_kallsyms = true;
485 machine__mmap_name(machine, nm, sizeof(nm));
486 name = nm;
487 }
488 return build_id_cache__add_b(dso->build_id, sizeof(dso->build_id), name,
Masami Hiramatsue35f7362015-02-10 18:18:51 +0900489 is_kallsyms, is_vdso);
Namhyung Kime195fac2014-11-04 10:14:30 +0900490}
491
492static int __dsos__cache_build_ids(struct list_head *head,
Masami Hiramatsue35f7362015-02-10 18:18:51 +0900493 struct machine *machine)
Namhyung Kime195fac2014-11-04 10:14:30 +0900494{
495 struct dso *pos;
496 int err = 0;
497
498 dsos__for_each_with_build_id(pos, head)
Masami Hiramatsue35f7362015-02-10 18:18:51 +0900499 if (dso__cache_build_id(pos, machine))
Namhyung Kime195fac2014-11-04 10:14:30 +0900500 err = -1;
501
502 return err;
503}
504
Masami Hiramatsue35f7362015-02-10 18:18:51 +0900505static int machine__cache_build_ids(struct machine *machine)
Namhyung Kime195fac2014-11-04 10:14:30 +0900506{
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300507 return __dsos__cache_build_ids(&machine->dsos.head, machine);
Namhyung Kime195fac2014-11-04 10:14:30 +0900508}
509
510int perf_session__cache_build_ids(struct perf_session *session)
511{
512 struct rb_node *nd;
513 int ret;
Namhyung Kime195fac2014-11-04 10:14:30 +0900514
Namhyung Kim73c5d222014-11-07 22:57:56 +0900515 if (no_buildid_cache)
516 return 0;
517
Jiri Olsa498922a2014-12-01 20:06:23 +0100518 if (mkdir(buildid_dir, 0755) != 0 && errno != EEXIST)
Namhyung Kime195fac2014-11-04 10:14:30 +0900519 return -1;
520
Masami Hiramatsue35f7362015-02-10 18:18:51 +0900521 ret = machine__cache_build_ids(&session->machines.host);
Namhyung Kime195fac2014-11-04 10:14:30 +0900522
523 for (nd = rb_first(&session->machines.guests); nd; nd = rb_next(nd)) {
524 struct machine *pos = rb_entry(nd, struct machine, rb_node);
Masami Hiramatsue35f7362015-02-10 18:18:51 +0900525 ret |= machine__cache_build_ids(pos);
Namhyung Kime195fac2014-11-04 10:14:30 +0900526 }
527 return ret ? -1 : 0;
528}
529
530static bool machine__read_build_ids(struct machine *machine, bool with_hits)
531{
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300532 return __dsos__read_build_ids(&machine->dsos.head, with_hits);
Namhyung Kime195fac2014-11-04 10:14:30 +0900533}
534
535bool perf_session__read_build_ids(struct perf_session *session, bool with_hits)
536{
537 struct rb_node *nd;
538 bool ret = machine__read_build_ids(&session->machines.host, with_hits);
539
540 for (nd = rb_first(&session->machines.guests); nd; nd = rb_next(nd)) {
541 struct machine *pos = rb_entry(nd, struct machine, rb_node);
542 ret |= machine__read_build_ids(pos, with_hits);
543 }
544
545 return ret;
546}