blob: e0148b081bdfbb7cead2c118a51ca81bd238e740 [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"
Arnaldo Carvalho de Melo76b31a22017-04-18 12:26:44 -030010#include <dirent.h>
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -030011#include <errno.h>
Arnaldo Carvalho de Melob36f19d2010-05-20 12:15:33 -030012#include <stdio.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -030013#include <sys/stat.h>
14#include <sys/types.h>
Arnaldo Carvalho de Melo7b2567c2010-02-03 16:52:04 -020015#include "build-id.h"
16#include "event.h"
17#include "symbol.h"
Arnaldo Carvalho de Meloe7ff8922017-04-19 21:34:35 -030018#include "thread.h"
Arnaldo Carvalho de Melo7b2567c2010-02-03 16:52:04 -020019#include <linux/kernel.h>
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -030020#include "debug.h"
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020021#include "session.h"
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020022#include "tool.h"
Namhyung Kime195fac2014-11-04 10:14:30 +090023#include "header.h"
24#include "vdso.h"
Arnaldo Carvalho de Melo9a3993d2017-04-18 11:33:48 -030025#include "path.h"
Masami Hiramatsu6430a942016-07-01 17:04:10 +090026#include "probe-file.h"
Arnaldo Carvalho de Melo8ec20b12017-04-18 10:57:25 -030027#include "strlist.h"
Arnaldo Carvalho de Melo7b2567c2010-02-03 16:52:04 -020028
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030029#include "sane_ctype.h"
Namhyung Kim73c5d222014-11-07 22:57:56 +090030
31static bool no_buildid_cache;
32
Andrew Vagin54a3cf52012-08-07 16:56:05 +040033int build_id__mark_dso_hit(struct perf_tool *tool __maybe_unused,
34 union perf_event *event,
Adrian Hunteref893252013-08-27 11:23:06 +030035 struct perf_sample *sample,
Andrew Vagin54a3cf52012-08-07 16:56:05 +040036 struct perf_evsel *evsel __maybe_unused,
37 struct machine *machine)
Arnaldo Carvalho de Melo7b2567c2010-02-03 16:52:04 -020038{
39 struct addr_location al;
Adrian Hunteref893252013-08-27 11:23:06 +030040 struct thread *thread = machine__findnew_thread(machine, sample->pid,
Namhyung Kim13ce34d2014-05-12 09:56:42 +090041 sample->tid);
Arnaldo Carvalho de Melo7b2567c2010-02-03 16:52:04 -020042
43 if (thread == NULL) {
44 pr_err("problem processing %d event, skipping it.\n",
45 event->header.type);
46 return -1;
47 }
48
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -030049 thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, sample->ip, &al);
Arnaldo Carvalho de Melo7b2567c2010-02-03 16:52:04 -020050
51 if (al.map != NULL)
52 al.map->dso->hit = 1;
53
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030054 thread__put(thread);
Arnaldo Carvalho de Melo7b2567c2010-02-03 16:52:04 -020055 return 0;
56}
57
Irina Tirdea1d037ca2012-09-11 01:15:03 +030058static int perf_event__exit_del_thread(struct perf_tool *tool __maybe_unused,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020059 union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +030060 struct perf_sample *sample
61 __maybe_unused,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020062 struct machine *machine)
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -030063{
Adrian Hunter314add62013-08-27 11:23:03 +030064 struct thread *thread = machine__findnew_thread(machine,
65 event->fork.pid,
66 event->fork.tid);
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -030067
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -020068 dump_printf("(%d:%d):(%d:%d)\n", event->fork.pid, event->fork.tid,
69 event->fork.ppid, event->fork.ptid);
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -030070
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030071 if (thread) {
He Kuang5e78c692015-04-10 17:35:00 +080072 machine__remove_thread(machine, thread);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030073 thread__put(thread);
74 }
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -030075
76 return 0;
77}
78
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020079struct perf_tool build_id__mark_dso_hit_ops = {
Arnaldo Carvalho de Melo7b2567c2010-02-03 16:52:04 -020080 .sample = build_id__mark_dso_hit,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -020081 .mmap = perf_event__process_mmap,
Stephane Eranian5c5e8542013-08-21 12:10:25 +020082 .mmap2 = perf_event__process_mmap2,
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -030083 .fork = perf_event__process_fork,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -020084 .exit = perf_event__exit_del_thread,
Stephane Eranian299c3452012-05-15 13:28:15 +020085 .attr = perf_event__process_attr,
86 .build_id = perf_event__process_build_id,
Adrian Hunter1216b652015-11-13 11:48:31 +020087 .ordered_events = true,
Arnaldo Carvalho de Melo7b2567c2010-02-03 16:52:04 -020088};
Arnaldo Carvalho de Melob36f19d2010-05-20 12:15:33 -030089
Jiri Olsaebb296c2012-10-27 23:18:28 +020090int build_id__sprintf(const u8 *build_id, int len, char *bf)
91{
92 char *bid = bf;
93 const u8 *raw = build_id;
94 int i;
95
96 for (i = 0; i < len; ++i) {
97 sprintf(bid, "%02x", *raw);
98 ++raw;
99 bid += 2;
100 }
101
Michael Petlan7375e152015-11-27 14:48:09 +0100102 return (bid - bf) + 1;
Jiri Olsaebb296c2012-10-27 23:18:28 +0200103}
104
Masami Hiramatsu0b5a7932015-08-15 20:42:59 +0900105int sysfs__sprintf_build_id(const char *root_dir, char *sbuild_id)
106{
107 char notes[PATH_MAX];
108 u8 build_id[BUILD_ID_SIZE];
109 int ret;
110
111 if (!root_dir)
112 root_dir = "";
113
114 scnprintf(notes, sizeof(notes), "%s/sys/kernel/notes", root_dir);
115
116 ret = sysfs__read_build_id(notes, build_id, sizeof(build_id));
117 if (ret < 0)
118 return ret;
119
120 return build_id__sprintf(build_id, sizeof(build_id), sbuild_id);
121}
122
123int filename__sprintf_build_id(const char *pathname, char *sbuild_id)
124{
125 u8 build_id[BUILD_ID_SIZE];
126 int ret;
127
128 ret = filename__read_build_id(pathname, build_id, sizeof(build_id));
129 if (ret < 0)
130 return ret;
131 else if (ret != sizeof(build_id))
132 return -EINVAL;
133
134 return build_id__sprintf(build_id, sizeof(build_id), sbuild_id);
135}
136
Masami Hiramatsu5cb113f2015-02-10 18:18:53 +0900137/* asnprintf consolidates asprintf and snprintf */
138static int asnprintf(char **strp, size_t size, const char *fmt, ...)
139{
140 va_list ap;
141 int ret;
142
143 if (!strp)
144 return -EINVAL;
145
146 va_start(ap, fmt);
147 if (*strp)
148 ret = vsnprintf(*strp, size, fmt, ap);
149 else
150 ret = vasprintf(strp, fmt, ap);
151 va_end(ap);
152
153 return ret;
154}
155
Masami Hiramatsu01412262016-05-29 00:15:37 +0900156char *build_id_cache__kallsyms_path(const char *sbuild_id, char *bf,
157 size_t size)
158{
Masami Hiramatsu01412262016-05-29 00:15:37 +0900159 bool retry_old = true;
160
Wang Nanc58c49a2016-06-07 03:54:38 +0000161 snprintf(bf, size, "%s/%s/%s/kallsyms",
162 buildid_dir, DSO__NAME_KALLSYMS, sbuild_id);
Masami Hiramatsu01412262016-05-29 00:15:37 +0900163retry:
164 if (!access(bf, F_OK))
165 return bf;
Masami Hiramatsu01412262016-05-29 00:15:37 +0900166 if (retry_old) {
167 /* Try old style kallsyms cache */
Wang Nanc58c49a2016-06-07 03:54:38 +0000168 snprintf(bf, size, "%s/%s/%s",
169 buildid_dir, DSO__NAME_KALLSYMS, sbuild_id);
Masami Hiramatsu01412262016-05-29 00:15:37 +0900170 retry_old = false;
171 goto retry;
172 }
173
174 return NULL;
175}
176
Masami Hiramatsu1f3736c2016-07-01 17:03:26 +0900177char *build_id_cache__linkname(const char *sbuild_id, char *bf, size_t size)
Masami Hiramatsu5cb113f2015-02-10 18:18:53 +0900178{
179 char *tmp = bf;
180 int ret = asnprintf(&bf, size, "%s/.build-id/%.2s/%s", buildid_dir,
181 sbuild_id, sbuild_id + 2);
182 if (ret < 0 || (tmp && size < (unsigned int)ret))
183 return NULL;
184 return bf;
185}
186
Masami Hiramatsu1f3736c2016-07-01 17:03:26 +0900187char *build_id_cache__origname(const char *sbuild_id)
188{
189 char *linkname;
190 char buf[PATH_MAX];
191 char *ret = NULL, *p;
192 size_t offs = 5; /* == strlen("../..") */
Tommi Rantala5a234212017-03-22 15:06:20 +0200193 ssize_t len;
Masami Hiramatsu1f3736c2016-07-01 17:03:26 +0900194
195 linkname = build_id_cache__linkname(sbuild_id, NULL, 0);
196 if (!linkname)
197 return NULL;
198
Tommi Rantala5a234212017-03-22 15:06:20 +0200199 len = readlink(linkname, buf, sizeof(buf) - 1);
200 if (len <= 0)
Masami Hiramatsu1f3736c2016-07-01 17:03:26 +0900201 goto out;
Tommi Rantala5a234212017-03-22 15:06:20 +0200202 buf[len] = '\0';
203
Masami Hiramatsu1f3736c2016-07-01 17:03:26 +0900204 /* The link should be "../..<origpath>/<sbuild_id>" */
205 p = strrchr(buf, '/'); /* Cut off the "/<sbuild_id>" */
206 if (p && (p > buf + offs)) {
207 *p = '\0';
208 if (buf[offs + 1] == '[')
209 offs++; /*
210 * This is a DSO name, like [kernel.kallsyms].
211 * Skip the first '/', since this is not the
212 * cache of a regular file.
213 */
214 ret = strdup(buf + offs); /* Skip "../..[/]" */
215 }
216out:
217 free(linkname);
218 return ret;
219}
220
Masami Hiramatsuc3492a32016-07-12 19:04:54 +0900221/* Check if the given build_id cache is valid on current running system */
222static bool build_id_cache__valid_id(char *sbuild_id)
223{
224 char real_sbuild_id[SBUILD_ID_SIZE] = "";
225 char *pathname;
226 int ret = 0;
227 bool result = false;
228
229 pathname = build_id_cache__origname(sbuild_id);
230 if (!pathname)
231 return false;
232
233 if (!strcmp(pathname, DSO__NAME_KALLSYMS))
234 ret = sysfs__sprintf_build_id("/", real_sbuild_id);
235 else if (pathname[0] == '/')
236 ret = filename__sprintf_build_id(pathname, real_sbuild_id);
237 else
238 ret = -EINVAL; /* Should we support other special DSO cache? */
239 if (ret >= 0)
240 result = (strcmp(sbuild_id, real_sbuild_id) == 0);
241 free(pathname);
242
243 return result;
244}
245
Masami Hiramatsu01412262016-05-29 00:15:37 +0900246static const char *build_id_cache__basename(bool is_kallsyms, bool is_vdso)
247{
248 return is_kallsyms ? "kallsyms" : (is_vdso ? "vdso" : "elf");
249}
250
Arnaldo Carvalho de Melo33449962013-12-10 15:46:29 -0300251char *dso__build_id_filename(const struct dso *dso, char *bf, size_t size)
Arnaldo Carvalho de Melob36f19d2010-05-20 12:15:33 -0300252{
Masami Hiramatsu01412262016-05-29 00:15:37 +0900253 bool is_kallsyms = dso__is_kallsyms((struct dso *)dso);
254 bool is_vdso = dso__is_vdso((struct dso *)dso);
255 char sbuild_id[SBUILD_ID_SIZE];
256 char *linkname;
257 bool alloc = (bf == NULL);
258 int ret;
Arnaldo Carvalho de Melob36f19d2010-05-20 12:15:33 -0300259
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300260 if (!dso->has_build_id)
Arnaldo Carvalho de Melob36f19d2010-05-20 12:15:33 -0300261 return NULL;
262
Masami Hiramatsu01412262016-05-29 00:15:37 +0900263 build_id__sprintf(dso->build_id, sizeof(dso->build_id), sbuild_id);
264 linkname = build_id_cache__linkname(sbuild_id, NULL, 0);
265 if (!linkname)
266 return NULL;
267
268 /* Check if old style build_id cache */
269 if (is_regular_file(linkname))
270 ret = asnprintf(&bf, size, "%s", linkname);
271 else
272 ret = asnprintf(&bf, size, "%s/%s", linkname,
273 build_id_cache__basename(is_kallsyms, is_vdso));
274 if (ret < 0 || (!alloc && size < (unsigned int)ret))
275 bf = NULL;
276 free(linkname);
277
278 return bf;
Arnaldo Carvalho de Melob36f19d2010-05-20 12:15:33 -0300279}
Namhyung Kime195fac2014-11-04 10:14:30 +0900280
281#define dsos__for_each_with_build_id(pos, head) \
282 list_for_each_entry(pos, head, node) \
283 if (!pos->has_build_id) \
284 continue; \
285 else
286
287static int write_buildid(const char *name, size_t name_len, u8 *build_id,
288 pid_t pid, u16 misc, int fd)
289{
290 int err;
291 struct build_id_event b;
292 size_t len;
293
294 len = name_len + 1;
295 len = PERF_ALIGN(len, NAME_ALIGN);
296
297 memset(&b, 0, sizeof(b));
298 memcpy(&b.build_id, build_id, BUILD_ID_SIZE);
299 b.pid = pid;
300 b.header.misc = misc;
301 b.header.size = sizeof(b) + len;
302
303 err = writen(fd, &b, sizeof(b));
304 if (err < 0)
305 return err;
306
307 return write_padded(fd, name, name_len + 1, len);
308}
309
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300310static int machine__write_buildid_table(struct machine *machine, int fd)
Namhyung Kime195fac2014-11-04 10:14:30 +0900311{
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300312 int err = 0;
Namhyung Kime195fac2014-11-04 10:14:30 +0900313 char nm[PATH_MAX];
314 struct dso *pos;
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300315 u16 kmisc = PERF_RECORD_MISC_KERNEL,
316 umisc = PERF_RECORD_MISC_USER;
Namhyung Kime195fac2014-11-04 10:14:30 +0900317
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300318 if (!machine__is_host(machine)) {
319 kmisc = PERF_RECORD_MISC_GUEST_KERNEL;
320 umisc = PERF_RECORD_MISC_GUEST_USER;
321 }
322
323 dsos__for_each_with_build_id(pos, &machine->dsos.head) {
Namhyung Kime195fac2014-11-04 10:14:30 +0900324 const char *name;
325 size_t name_len;
Wang Nanfd786fa2016-01-29 17:40:51 +0000326 bool in_kernel = false;
Namhyung Kime195fac2014-11-04 10:14:30 +0900327
He Kuang6ae98ba2016-05-12 08:43:11 +0000328 if (!pos->hit && !dso__is_vdso(pos))
Namhyung Kime195fac2014-11-04 10:14:30 +0900329 continue;
330
331 if (dso__is_vdso(pos)) {
332 name = pos->short_name;
Andrey Ryabinin70a2cba2016-04-19 11:17:27 +0300333 name_len = pos->short_name_len;
Namhyung Kime195fac2014-11-04 10:14:30 +0900334 } else if (dso__is_kcore(pos)) {
335 machine__mmap_name(machine, nm, sizeof(nm));
336 name = nm;
Andrey Ryabinin70a2cba2016-04-19 11:17:27 +0300337 name_len = strlen(nm);
Namhyung Kime195fac2014-11-04 10:14:30 +0900338 } else {
339 name = pos->long_name;
Andrey Ryabinin70a2cba2016-04-19 11:17:27 +0300340 name_len = pos->long_name_len;
Namhyung Kime195fac2014-11-04 10:14:30 +0900341 }
342
Wang Nanfd786fa2016-01-29 17:40:51 +0000343 in_kernel = pos->kernel ||
344 is_kernel_module(name,
345 PERF_RECORD_MISC_CPUMODE_UNKNOWN);
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300346 err = write_buildid(name, name_len, pos->build_id, machine->pid,
Wang Nanfd786fa2016-01-29 17:40:51 +0000347 in_kernel ? kmisc : umisc, fd);
Namhyung Kime195fac2014-11-04 10:14:30 +0900348 if (err)
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300349 break;
Namhyung Kime195fac2014-11-04 10:14:30 +0900350 }
351
Namhyung Kime195fac2014-11-04 10:14:30 +0900352 return err;
353}
354
355int perf_session__write_buildid_table(struct perf_session *session, int fd)
356{
357 struct rb_node *nd;
358 int err = machine__write_buildid_table(&session->machines.host, fd);
359
360 if (err)
361 return err;
362
363 for (nd = rb_first(&session->machines.guests); nd; nd = rb_next(nd)) {
364 struct machine *pos = rb_entry(nd, struct machine, rb_node);
365 err = machine__write_buildid_table(pos, fd);
366 if (err)
367 break;
368 }
369 return err;
370}
371
372static int __dsos__hit_all(struct list_head *head)
373{
374 struct dso *pos;
375
376 list_for_each_entry(pos, head, node)
377 pos->hit = true;
378
379 return 0;
380}
381
382static int machine__hit_all_dsos(struct machine *machine)
383{
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300384 return __dsos__hit_all(&machine->dsos.head);
Namhyung Kime195fac2014-11-04 10:14:30 +0900385}
386
387int dsos__hit_all(struct perf_session *session)
388{
389 struct rb_node *nd;
390 int err;
391
392 err = machine__hit_all_dsos(&session->machines.host);
393 if (err)
394 return err;
395
396 for (nd = rb_first(&session->machines.guests); nd; nd = rb_next(nd)) {
397 struct machine *pos = rb_entry(nd, struct machine, rb_node);
398
399 err = machine__hit_all_dsos(pos);
400 if (err)
401 return err;
402 }
403
404 return 0;
405}
406
Namhyung Kim73c5d222014-11-07 22:57:56 +0900407void disable_buildid_cache(void)
408{
409 no_buildid_cache = true;
410}
411
Masami Hiramatsu1f3736c2016-07-01 17:03:26 +0900412static bool lsdir_bid_head_filter(const char *name __maybe_unused,
Arnaldo Carvalho de Melo767fe712017-04-18 12:20:19 -0300413 struct dirent *d)
Masami Hiramatsu1f3736c2016-07-01 17:03:26 +0900414{
415 return (strlen(d->d_name) == 2) &&
416 isxdigit(d->d_name[0]) && isxdigit(d->d_name[1]);
417}
418
419static bool lsdir_bid_tail_filter(const char *name __maybe_unused,
Arnaldo Carvalho de Melo767fe712017-04-18 12:20:19 -0300420 struct dirent *d)
Masami Hiramatsu1f3736c2016-07-01 17:03:26 +0900421{
422 int i = 0;
423 while (isxdigit(d->d_name[i]) && i < SBUILD_ID_SIZE - 3)
424 i++;
425 return (i == SBUILD_ID_SIZE - 3) && (d->d_name[i] == '\0');
426}
427
Masami Hiramatsuc3492a32016-07-12 19:04:54 +0900428struct strlist *build_id_cache__list_all(bool validonly)
Masami Hiramatsu1f3736c2016-07-01 17:03:26 +0900429{
430 struct strlist *toplist, *linklist = NULL, *bidlist;
431 struct str_node *nd, *nd2;
432 char *topdir, *linkdir = NULL;
433 char sbuild_id[SBUILD_ID_SIZE];
434
Masami Hiramatsuc3492a32016-07-12 19:04:54 +0900435 /* for filename__ functions */
436 if (validonly)
437 symbol__init(NULL);
438
Masami Hiramatsu1f3736c2016-07-01 17:03:26 +0900439 /* Open the top-level directory */
440 if (asprintf(&topdir, "%s/.build-id/", buildid_dir) < 0)
441 return NULL;
442
443 bidlist = strlist__new(NULL, NULL);
444 if (!bidlist)
445 goto out;
446
447 toplist = lsdir(topdir, lsdir_bid_head_filter);
448 if (!toplist) {
449 pr_debug("Error in lsdir(%s): %d\n", topdir, errno);
450 /* If there is no buildid cache, return an empty list */
451 if (errno == ENOENT)
452 goto out;
453 goto err_out;
454 }
455
456 strlist__for_each_entry(nd, toplist) {
457 if (asprintf(&linkdir, "%s/%s", topdir, nd->s) < 0)
458 goto err_out;
459 /* Open the lower-level directory */
460 linklist = lsdir(linkdir, lsdir_bid_tail_filter);
461 if (!linklist) {
462 pr_debug("Error in lsdir(%s): %d\n", linkdir, errno);
463 goto err_out;
464 }
465 strlist__for_each_entry(nd2, linklist) {
466 if (snprintf(sbuild_id, SBUILD_ID_SIZE, "%s%s",
467 nd->s, nd2->s) != SBUILD_ID_SIZE - 1)
468 goto err_out;
Masami Hiramatsuc3492a32016-07-12 19:04:54 +0900469 if (validonly && !build_id_cache__valid_id(sbuild_id))
470 continue;
Masami Hiramatsu1f3736c2016-07-01 17:03:26 +0900471 if (strlist__add(bidlist, sbuild_id) < 0)
472 goto err_out;
473 }
474 strlist__delete(linklist);
475 zfree(&linkdir);
476 }
477
478out_free:
479 strlist__delete(toplist);
480out:
481 free(topdir);
482
483 return bidlist;
484
485err_out:
486 strlist__delete(linklist);
487 zfree(&linkdir);
488 strlist__delete(bidlist);
489 bidlist = NULL;
490 goto out_free;
491}
492
Masami Hiramatsua5981802016-07-12 19:05:37 +0900493static bool str_is_build_id(const char *maybe_sbuild_id, size_t len)
494{
495 size_t i;
496
497 for (i = 0; i < len; i++) {
498 if (!isxdigit(maybe_sbuild_id[i]))
499 return false;
500 }
501 return true;
502}
503
504/* Return the valid complete build-id */
505char *build_id_cache__complement(const char *incomplete_sbuild_id)
506{
507 struct strlist *bidlist;
508 struct str_node *nd, *cand = NULL;
509 char *sbuild_id = NULL;
510 size_t len = strlen(incomplete_sbuild_id);
511
512 if (len >= SBUILD_ID_SIZE ||
513 !str_is_build_id(incomplete_sbuild_id, len))
514 return NULL;
515
516 bidlist = build_id_cache__list_all(true);
517 if (!bidlist)
518 return NULL;
519
520 strlist__for_each_entry(nd, bidlist) {
521 if (strncmp(nd->s, incomplete_sbuild_id, len) != 0)
522 continue;
523 if (cand) { /* Error: There are more than 2 candidates. */
524 cand = NULL;
525 break;
526 }
527 cand = nd;
528 }
529 if (cand)
530 sbuild_id = strdup(cand->s);
531 strlist__delete(bidlist);
532
533 return sbuild_id;
534}
535
Masami Hiramatsu4698b8b2016-06-08 18:29:30 +0900536char *build_id_cache__cachedir(const char *sbuild_id, const char *name,
537 bool is_kallsyms, bool is_vdso)
Masami Hiramatsu8d8c8e42015-02-27 13:50:26 +0900538{
539 char *realname = (char *)name, *filename;
540 bool slash = is_kallsyms || is_vdso;
541
542 if (!slash) {
543 realname = realpath(name, NULL);
544 if (!realname)
545 return NULL;
546 }
547
Masami Hiramatsu01412262016-05-29 00:15:37 +0900548 if (asprintf(&filename, "%s%s%s%s%s", buildid_dir, slash ? "/" : "",
549 is_vdso ? DSO__NAME_VDSO : realname,
550 sbuild_id ? "/" : "", sbuild_id ?: "") < 0)
Masami Hiramatsu8d8c8e42015-02-27 13:50:26 +0900551 filename = NULL;
552
553 if (!slash)
554 free(realname);
555
556 return filename;
557}
558
559int build_id_cache__list_build_ids(const char *pathname,
560 struct strlist **result)
561{
Masami Hiramatsu8d8c8e42015-02-27 13:50:26 +0900562 char *dir_name;
Masami Hiramatsu8d8c8e42015-02-27 13:50:26 +0900563 int ret = 0;
564
Masami Hiramatsu4698b8b2016-06-08 18:29:30 +0900565 dir_name = build_id_cache__cachedir(NULL, pathname, false, false);
Masami Hiramatsud65444d2016-05-11 22:52:17 +0900566 if (!dir_name)
567 return -ENOMEM;
Masami Hiramatsu8d8c8e42015-02-27 13:50:26 +0900568
Masami Hiramatsud65444d2016-05-11 22:52:17 +0900569 *result = lsdir(dir_name, lsdir_no_dot_filter);
570 if (!*result)
Masami Hiramatsu8d8c8e42015-02-27 13:50:26 +0900571 ret = -errno;
Masami Hiramatsu8d8c8e42015-02-27 13:50:26 +0900572 free(dir_name);
Masami Hiramatsu8d8c8e42015-02-27 13:50:26 +0900573
574 return ret;
575}
576
Arnaldo Carvalho de Melo1c1a3a42016-07-12 12:19:09 -0300577#if defined(HAVE_LIBELF_SUPPORT) && defined(HAVE_GELF_GETNOTE_SUPPORT)
Masami Hiramatsu6430a942016-07-01 17:04:10 +0900578static int build_id_cache__add_sdt_cache(const char *sbuild_id,
579 const char *realname)
580{
581 struct probe_cache *cache;
582 int ret;
583
584 cache = probe_cache__new(sbuild_id);
585 if (!cache)
586 return -1;
587
588 ret = probe_cache__scan_sdt(cache, realname);
589 if (ret >= 0) {
Adrian Hunterf9655202016-09-23 17:38:40 +0300590 pr_debug4("Found %d SDTs in %s\n", ret, realname);
Masami Hiramatsu6430a942016-07-01 17:04:10 +0900591 if (probe_cache__commit(cache) < 0)
592 ret = -1;
593 }
594 probe_cache__delete(cache);
595 return ret;
596}
597#else
598#define build_id_cache__add_sdt_cache(sbuild_id, realname) (0)
599#endif
600
Masami Hiramatsue35f7362015-02-10 18:18:51 +0900601int build_id_cache__add_s(const char *sbuild_id, const char *name,
602 bool is_kallsyms, bool is_vdso)
Namhyung Kime195fac2014-11-04 10:14:30 +0900603{
604 const size_t size = PATH_MAX;
Masami Hiramatsu8d8c8e42015-02-27 13:50:26 +0900605 char *realname = NULL, *filename = NULL, *dir_name = NULL,
Masami Hiramatsu01412262016-05-29 00:15:37 +0900606 *linkname = zalloc(size), *tmp;
Masami Hiramatsu8d8c8e42015-02-27 13:50:26 +0900607 int err = -1;
Namhyung Kime195fac2014-11-04 10:14:30 +0900608
Masami Hiramatsu8d8c8e42015-02-27 13:50:26 +0900609 if (!is_kallsyms) {
Namhyung Kime195fac2014-11-04 10:14:30 +0900610 realname = realpath(name, NULL);
Masami Hiramatsu8d8c8e42015-02-27 13:50:26 +0900611 if (!realname)
612 goto out_free;
613 }
Namhyung Kime195fac2014-11-04 10:14:30 +0900614
Masami Hiramatsu4698b8b2016-06-08 18:29:30 +0900615 dir_name = build_id_cache__cachedir(sbuild_id, name,
616 is_kallsyms, is_vdso);
Masami Hiramatsu8d8c8e42015-02-27 13:50:26 +0900617 if (!dir_name)
Namhyung Kime195fac2014-11-04 10:14:30 +0900618 goto out_free;
619
Masami Hiramatsu01412262016-05-29 00:15:37 +0900620 /* Remove old style build-id cache */
621 if (is_regular_file(dir_name))
622 if (unlink(dir_name))
623 goto out_free;
624
Masami Hiramatsu8d8c8e42015-02-27 13:50:26 +0900625 if (mkdir_p(dir_name, 0755))
Namhyung Kime195fac2014-11-04 10:14:30 +0900626 goto out_free;
627
Masami Hiramatsu01412262016-05-29 00:15:37 +0900628 /* Save the allocated buildid dirname */
629 if (asprintf(&filename, "%s/%s", dir_name,
630 build_id_cache__basename(is_kallsyms, is_vdso)) < 0) {
Masami Hiramatsu8d8c8e42015-02-27 13:50:26 +0900631 filename = NULL;
632 goto out_free;
633 }
Namhyung Kime195fac2014-11-04 10:14:30 +0900634
635 if (access(filename, F_OK)) {
636 if (is_kallsyms) {
637 if (copyfile("/proc/kallsyms", filename))
638 goto out_free;
Milos Vyletel0635b0f2015-03-20 11:37:25 +0100639 } else if (link(realname, filename) && errno != EEXIST &&
640 copyfile(name, filename))
Namhyung Kime195fac2014-11-04 10:14:30 +0900641 goto out_free;
642 }
643
Masami Hiramatsu01412262016-05-29 00:15:37 +0900644 if (!build_id_cache__linkname(sbuild_id, linkname, size))
Masami Hiramatsu5cb113f2015-02-10 18:18:53 +0900645 goto out_free;
646 tmp = strrchr(linkname, '/');
647 *tmp = '\0';
Namhyung Kime195fac2014-11-04 10:14:30 +0900648
649 if (access(linkname, X_OK) && mkdir_p(linkname, 0755))
650 goto out_free;
651
Masami Hiramatsu5cb113f2015-02-10 18:18:53 +0900652 *tmp = '/';
Masami Hiramatsu01412262016-05-29 00:15:37 +0900653 tmp = dir_name + strlen(buildid_dir) - 5;
654 memcpy(tmp, "../..", 5);
Namhyung Kime195fac2014-11-04 10:14:30 +0900655
Masami Hiramatsu01412262016-05-29 00:15:37 +0900656 if (symlink(tmp, linkname) == 0)
Namhyung Kime195fac2014-11-04 10:14:30 +0900657 err = 0;
Masami Hiramatsu6430a942016-07-01 17:04:10 +0900658
659 /* Update SDT cache : error is just warned */
Tommi Rantala2ccc2202017-03-22 15:06:19 +0200660 if (realname && build_id_cache__add_sdt_cache(sbuild_id, realname) < 0)
Adrian Hunterf9655202016-09-23 17:38:40 +0300661 pr_debug4("Failed to update/scan SDT cache for %s\n", realname);
Masami Hiramatsu6430a942016-07-01 17:04:10 +0900662
Namhyung Kime195fac2014-11-04 10:14:30 +0900663out_free:
664 if (!is_kallsyms)
665 free(realname);
666 free(filename);
Masami Hiramatsu8d8c8e42015-02-27 13:50:26 +0900667 free(dir_name);
Namhyung Kime195fac2014-11-04 10:14:30 +0900668 free(linkname);
669 return err;
670}
671
672static int build_id_cache__add_b(const u8 *build_id, size_t build_id_size,
Masami Hiramatsue35f7362015-02-10 18:18:51 +0900673 const char *name, bool is_kallsyms,
674 bool is_vdso)
Namhyung Kime195fac2014-11-04 10:14:30 +0900675{
Masami Hiramatsud77fac72015-07-15 18:14:28 +0900676 char sbuild_id[SBUILD_ID_SIZE];
Namhyung Kime195fac2014-11-04 10:14:30 +0900677
678 build_id__sprintf(build_id, build_id_size, sbuild_id);
679
Masami Hiramatsue35f7362015-02-10 18:18:51 +0900680 return build_id_cache__add_s(sbuild_id, name, is_kallsyms, is_vdso);
Namhyung Kime195fac2014-11-04 10:14:30 +0900681}
682
Masami Hiramatsua50d11a2015-02-26 15:54:40 +0900683bool build_id_cache__cached(const char *sbuild_id)
684{
685 bool ret = false;
Masami Hiramatsu01412262016-05-29 00:15:37 +0900686 char *filename = build_id_cache__linkname(sbuild_id, NULL, 0);
Masami Hiramatsua50d11a2015-02-26 15:54:40 +0900687
688 if (filename && !access(filename, F_OK))
689 ret = true;
690 free(filename);
691
692 return ret;
693}
694
Masami Hiramatsue35f7362015-02-10 18:18:51 +0900695int build_id_cache__remove_s(const char *sbuild_id)
Namhyung Kime195fac2014-11-04 10:14:30 +0900696{
697 const size_t size = PATH_MAX;
698 char *filename = zalloc(size),
Masami Hiramatsu5cb113f2015-02-10 18:18:53 +0900699 *linkname = zalloc(size), *tmp;
Namhyung Kime195fac2014-11-04 10:14:30 +0900700 int err = -1;
701
702 if (filename == NULL || linkname == NULL)
703 goto out_free;
704
Masami Hiramatsu01412262016-05-29 00:15:37 +0900705 if (!build_id_cache__linkname(sbuild_id, linkname, size))
Masami Hiramatsu5cb113f2015-02-10 18:18:53 +0900706 goto out_free;
Namhyung Kime195fac2014-11-04 10:14:30 +0900707
708 if (access(linkname, F_OK))
709 goto out_free;
710
711 if (readlink(linkname, filename, size - 1) < 0)
712 goto out_free;
713
714 if (unlink(linkname))
715 goto out_free;
716
717 /*
718 * Since the link is relative, we must make it absolute:
719 */
Masami Hiramatsu5cb113f2015-02-10 18:18:53 +0900720 tmp = strrchr(linkname, '/') + 1;
721 snprintf(tmp, size - (tmp - linkname), "%s", filename);
Namhyung Kime195fac2014-11-04 10:14:30 +0900722
Masami Hiramatsu01412262016-05-29 00:15:37 +0900723 if (rm_rf(linkname))
Namhyung Kime195fac2014-11-04 10:14:30 +0900724 goto out_free;
725
726 err = 0;
727out_free:
728 free(filename);
729 free(linkname);
730 return err;
731}
732
Masami Hiramatsue35f7362015-02-10 18:18:51 +0900733static int dso__cache_build_id(struct dso *dso, struct machine *machine)
Namhyung Kime195fac2014-11-04 10:14:30 +0900734{
Masami Hiramatsu01412262016-05-29 00:15:37 +0900735 bool is_kallsyms = dso__is_kallsyms(dso);
Namhyung Kime195fac2014-11-04 10:14:30 +0900736 bool is_vdso = dso__is_vdso(dso);
737 const char *name = dso->long_name;
738 char nm[PATH_MAX];
739
740 if (dso__is_kcore(dso)) {
741 is_kallsyms = true;
742 machine__mmap_name(machine, nm, sizeof(nm));
743 name = nm;
744 }
745 return build_id_cache__add_b(dso->build_id, sizeof(dso->build_id), name,
Masami Hiramatsue35f7362015-02-10 18:18:51 +0900746 is_kallsyms, is_vdso);
Namhyung Kime195fac2014-11-04 10:14:30 +0900747}
748
749static int __dsos__cache_build_ids(struct list_head *head,
Masami Hiramatsue35f7362015-02-10 18:18:51 +0900750 struct machine *machine)
Namhyung Kime195fac2014-11-04 10:14:30 +0900751{
752 struct dso *pos;
753 int err = 0;
754
755 dsos__for_each_with_build_id(pos, head)
Masami Hiramatsue35f7362015-02-10 18:18:51 +0900756 if (dso__cache_build_id(pos, machine))
Namhyung Kime195fac2014-11-04 10:14:30 +0900757 err = -1;
758
759 return err;
760}
761
Masami Hiramatsue35f7362015-02-10 18:18:51 +0900762static int machine__cache_build_ids(struct machine *machine)
Namhyung Kime195fac2014-11-04 10:14:30 +0900763{
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300764 return __dsos__cache_build_ids(&machine->dsos.head, machine);
Namhyung Kime195fac2014-11-04 10:14:30 +0900765}
766
767int perf_session__cache_build_ids(struct perf_session *session)
768{
769 struct rb_node *nd;
770 int ret;
Namhyung Kime195fac2014-11-04 10:14:30 +0900771
Namhyung Kim73c5d222014-11-07 22:57:56 +0900772 if (no_buildid_cache)
773 return 0;
774
Jiri Olsa498922a2014-12-01 20:06:23 +0100775 if (mkdir(buildid_dir, 0755) != 0 && errno != EEXIST)
Namhyung Kime195fac2014-11-04 10:14:30 +0900776 return -1;
777
Masami Hiramatsue35f7362015-02-10 18:18:51 +0900778 ret = machine__cache_build_ids(&session->machines.host);
Namhyung Kime195fac2014-11-04 10:14:30 +0900779
780 for (nd = rb_first(&session->machines.guests); nd; nd = rb_next(nd)) {
781 struct machine *pos = rb_entry(nd, struct machine, rb_node);
Masami Hiramatsue35f7362015-02-10 18:18:51 +0900782 ret |= machine__cache_build_ids(pos);
Namhyung Kime195fac2014-11-04 10:14:30 +0900783 }
784 return ret ? -1 : 0;
785}
786
787static bool machine__read_build_ids(struct machine *machine, bool with_hits)
788{
Arnaldo Carvalho de Melo3d39ac52015-05-28 13:06:42 -0300789 return __dsos__read_build_ids(&machine->dsos.head, with_hits);
Namhyung Kime195fac2014-11-04 10:14:30 +0900790}
791
792bool perf_session__read_build_ids(struct perf_session *session, bool with_hits)
793{
794 struct rb_node *nd;
795 bool ret = machine__read_build_ids(&session->machines.host, with_hits);
796
797 for (nd = rb_first(&session->machines.guests); nd; nd = rb_next(nd)) {
798 struct machine *pos = rb_entry(nd, struct machine, rb_node);
799 ret |= machine__read_build_ids(pos, with_hits);
800 }
801
802 return ret;
803}