blob: 1159feeebb1955c0e5c16739dd1d856cd13e29c7 [file] [log] [blame]
Arnaldo Carvalho de Meloc34984b2009-11-16 16:32:45 -02001/*
2 * builtin-buildid-list.c
3 *
Arnaldo Carvalho de Melo7a6f2052011-08-29 08:33:17 -03004 * Builtin buildid-list command: list buildids in perf.data, in the running
5 * kernel and in ELF files.
Arnaldo Carvalho de Meloc34984b2009-11-16 16:32:45 -02006 *
7 * Copyright (C) 2009, Red Hat Inc.
8 * Copyright (C) 2009, Arnaldo Carvalho de Melo <acme@redhat.com>
9 */
10#include "builtin.h"
11#include "perf.h"
Arnaldo Carvalho de Melo7b2567c2010-02-03 16:52:04 -020012#include "util/build-id.h"
Arnaldo Carvalho de Meloc34984b2009-11-16 16:32:45 -020013#include "util/cache.h"
Arnaldo Carvalho de Meloc34984b2009-11-16 16:32:45 -020014#include "util/debug.h"
Arnaldo Carvalho de Meloc34984b2009-11-16 16:32:45 -020015#include "util/parse-options.h"
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020016#include "util/session.h"
Arnaldo Carvalho de Meloc34984b2009-11-16 16:32:45 -020017#include "util/symbol.h"
18
Robert Richterefad1412011-12-07 10:02:54 +010019static const char *input_name;
Ian Munsiec0555642010-04-13 18:37:33 +100020static bool force;
Arnaldo Carvalho de Melof2add9c2011-08-29 08:07:22 -030021static bool show_kernel;
Arnaldo Carvalho de Melo88d3d9b72010-01-14 23:45:30 -020022static bool with_hits;
Arnaldo Carvalho de Meloc34984b2009-11-16 16:32:45 -020023
Arnaldo Carvalho de Melo0422a4f2009-12-18 16:35:58 -020024static const char * const buildid_list_usage[] = {
Arnaldo Carvalho de Melob9b1e1c2009-12-06 18:03:10 -020025 "perf buildid-list [<options>]",
Arnaldo Carvalho de Meloc34984b2009-11-16 16:32:45 -020026 NULL
27};
28
29static const struct option options[] = {
Arnaldo Carvalho de Melo88d3d9b72010-01-14 23:45:30 -020030 OPT_BOOLEAN('H', "with-hits", &with_hits, "Show only DSOs with hits"),
Arnaldo Carvalho de Meloc34984b2009-11-16 16:32:45 -020031 OPT_STRING('i', "input", &input_name, "file",
32 "input file name"),
33 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
Arnaldo Carvalho de Melof2add9c2011-08-29 08:07:22 -030034 OPT_BOOLEAN('k', "kernel", &show_kernel, "Show current kernel build id"),
Ian Munsiec0555642010-04-13 18:37:33 +100035 OPT_INCR('v', "verbose", &verbose,
Arnaldo Carvalho de Melo1124ba72009-11-16 21:45:25 -020036 "be more verbose"),
Arnaldo Carvalho de Meloc34984b2009-11-16 16:32:45 -020037 OPT_END()
38};
39
Arnaldo Carvalho de Melof2add9c2011-08-29 08:07:22 -030040static int sysfs__fprintf_build_id(FILE *fp)
41{
42 u8 kallsyms_build_id[BUILD_ID_SIZE];
43 char sbuild_id[BUILD_ID_SIZE * 2 + 1];
44
45 if (sysfs__read_build_id("/sys/kernel/notes", kallsyms_build_id,
46 sizeof(kallsyms_build_id)) != 0)
47 return -1;
48
49 build_id__sprintf(kallsyms_build_id, sizeof(kallsyms_build_id),
50 sbuild_id);
51 fprintf(fp, "%s\n", sbuild_id);
52 return 0;
53}
54
Arnaldo Carvalho de Melo7a6f2052011-08-29 08:33:17 -030055static int filename__fprintf_build_id(const char *name, FILE *fp)
56{
57 u8 build_id[BUILD_ID_SIZE];
58 char sbuild_id[BUILD_ID_SIZE * 2 + 1];
59
60 if (filename__read_build_id(name, build_id,
61 sizeof(build_id)) != sizeof(build_id))
62 return 0;
63
64 build_id__sprintf(build_id, sizeof(build_id), sbuild_id);
65 return fprintf(fp, "%s\n", sbuild_id);
66}
67
Robert Richter1b549502011-12-07 10:02:53 +010068static int perf_session__list_build_ids(void)
69{
70 struct perf_session *session;
71
Namhyung Kim166ccc92012-08-06 13:41:19 +090072 symbol__elf_init();
Robert Richterefad1412011-12-07 10:02:54 +010073
Robert Richter1b549502011-12-07 10:02:53 +010074 session = perf_session__new(input_name, O_RDONLY, force, false,
75 &build_id__mark_dso_hit_ops);
76 if (session == NULL)
77 return -1;
78
Robert Richterefad1412011-12-07 10:02:54 +010079 /*
80 * See if this is an ELF file first:
81 */
82 if (filename__fprintf_build_id(session->filename, stdout))
83 goto out;
84
Stephane Eranian299c3452012-05-15 13:28:15 +020085 /*
86 * in pipe-mode, the only way to get the buildids is to parse
87 * the record stream. Buildids are stored as RECORD_HEADER_BUILD_ID
88 */
89 if (with_hits || session->fd_pipe)
Robert Richter1b549502011-12-07 10:02:53 +010090 perf_session__process_events(session, &build_id__mark_dso_hit_ops);
91
92 perf_session__fprintf_dsos_buildid(session, stdout, with_hits);
Robert Richterefad1412011-12-07 10:02:54 +010093out:
Robert Richter1b549502011-12-07 10:02:53 +010094 perf_session__delete(session);
95 return 0;
96}
97
Arnaldo Carvalho de Melof2add9c2011-08-29 08:07:22 -030098static int __cmd_buildid_list(void)
99{
Arnaldo Carvalho de Melof2add9c2011-08-29 08:07:22 -0300100 if (show_kernel)
101 return sysfs__fprintf_build_id(stdout);
102
103 return perf_session__list_build_ids();
104}
105
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300106int cmd_buildid_list(int argc, const char **argv,
107 const char *prefix __maybe_unused)
Arnaldo Carvalho de Meloc34984b2009-11-16 16:32:45 -0200108{
109 argc = parse_options(argc, argv, options, buildid_list_usage, 0);
110 setup_pager();
111 return __cmd_buildid_list();
112}