blob: 9fe93c8d4fcff11b3c2638d901d8c62da5b921d2 [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"
Jiri Olsaf5fc1412013-10-15 16:27:32 +020018#include "util/data.h"
Arnaldo Carvalho de Meloc34984b2009-11-16 16:32:45 -020019
Arnaldo Carvalho de Melof2add9c2011-08-29 08:07:22 -030020static int sysfs__fprintf_build_id(FILE *fp)
21{
22 u8 kallsyms_build_id[BUILD_ID_SIZE];
23 char sbuild_id[BUILD_ID_SIZE * 2 + 1];
24
25 if (sysfs__read_build_id("/sys/kernel/notes", kallsyms_build_id,
26 sizeof(kallsyms_build_id)) != 0)
27 return -1;
28
29 build_id__sprintf(kallsyms_build_id, sizeof(kallsyms_build_id),
30 sbuild_id);
31 fprintf(fp, "%s\n", sbuild_id);
32 return 0;
33}
34
Arnaldo Carvalho de Melo7a6f2052011-08-29 08:33:17 -030035static int filename__fprintf_build_id(const char *name, FILE *fp)
36{
37 u8 build_id[BUILD_ID_SIZE];
38 char sbuild_id[BUILD_ID_SIZE * 2 + 1];
39
40 if (filename__read_build_id(name, build_id,
41 sizeof(build_id)) != sizeof(build_id))
42 return 0;
43
44 build_id__sprintf(build_id, sizeof(build_id), sbuild_id);
45 return fprintf(fp, "%s\n", sbuild_id);
46}
47
Arnaldo Carvalho de Melo417c2ff2012-12-07 09:53:58 -030048static bool dso__skip_buildid(struct dso *dso, int with_hits)
49{
50 return with_hits && !dso->hit;
51}
52
Feng Tang70cb4e92012-10-30 11:56:02 +080053static int perf_session__list_build_ids(bool force, bool with_hits)
Robert Richter1b549502011-12-07 10:02:53 +010054{
55 struct perf_session *session;
Jiri Olsaf5fc1412013-10-15 16:27:32 +020056 struct perf_data_file file = {
57 .path = input_name,
58 .mode = PERF_DATA_MODE_READ,
59 .force = force,
60 };
Robert Richter1b549502011-12-07 10:02:53 +010061
Namhyung Kim166ccc92012-08-06 13:41:19 +090062 symbol__elf_init();
Arnaldo Carvalho de Melof0bf9102012-12-05 16:24:05 -030063 /*
64 * See if this is an ELF file first:
65 */
66 if (filename__fprintf_build_id(input_name, stdout))
67 goto out;
Robert Richterefad1412011-12-07 10:02:54 +010068
Jiri Olsaf5fc1412013-10-15 16:27:32 +020069 session = perf_session__new(&file, false, &build_id__mark_dso_hit_ops);
Robert Richter1b549502011-12-07 10:02:53 +010070 if (session == NULL)
71 return -1;
Adrian Huntercd10b282015-04-30 17:37:26 +030072
73 /*
74 * We take all buildids when the file contains AUX area tracing data
75 * because we do not decode the trace because it would take too long.
76 */
77 if (!perf_data_file__is_pipe(&file) &&
78 perf_header__has_feat(&session->header, HEADER_AUXTRACE))
79 with_hits = false;
80
Stephane Eranian299c3452012-05-15 13:28:15 +020081 /*
82 * in pipe-mode, the only way to get the buildids is to parse
83 * the record stream. Buildids are stored as RECORD_HEADER_BUILD_ID
84 */
Jiri Olsacc9784bd2013-10-15 16:27:34 +020085 if (with_hits || perf_data_file__is_pipe(&file))
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -030086 perf_session__process_events(session);
Robert Richter1b549502011-12-07 10:02:53 +010087
Arnaldo Carvalho de Melo417c2ff2012-12-07 09:53:58 -030088 perf_session__fprintf_dsos_buildid(session, stdout, dso__skip_buildid, with_hits);
Robert Richter1b549502011-12-07 10:02:53 +010089 perf_session__delete(session);
Arnaldo Carvalho de Melof0bf9102012-12-05 16:24:05 -030090out:
Robert Richter1b549502011-12-07 10:02:53 +010091 return 0;
92}
93
Irina Tirdea1d037ca2012-09-11 01:15:03 +030094int cmd_buildid_list(int argc, const char **argv,
95 const char *prefix __maybe_unused)
Arnaldo Carvalho de Meloc34984b2009-11-16 16:32:45 -020096{
Arnaldo Carvalho de Melo6ee41492012-10-01 15:20:58 -030097 bool show_kernel = false;
98 bool with_hits = false;
99 bool force = false;
Arnaldo Carvalho de Melo6ee41492012-10-01 15:20:58 -0300100 const struct option options[] = {
101 OPT_BOOLEAN('H', "with-hits", &with_hits, "Show only DSOs with hits"),
102 OPT_STRING('i', "input", &input_name, "file", "input file name"),
103 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
104 OPT_BOOLEAN('k', "kernel", &show_kernel, "Show current kernel build id"),
105 OPT_INCR('v', "verbose", &verbose, "be more verbose"),
106 OPT_END()
107 };
108 const char * const buildid_list_usage[] = {
109 "perf buildid-list [<options>]",
110 NULL
111 };
112
Arnaldo Carvalho de Meloc34984b2009-11-16 16:32:45 -0200113 argc = parse_options(argc, argv, options, buildid_list_usage, 0);
114 setup_pager();
Arnaldo Carvalho de Melo6ee41492012-10-01 15:20:58 -0300115
116 if (show_kernel)
117 return sysfs__fprintf_build_id(stdout);
118
Feng Tang70cb4e92012-10-30 11:56:02 +0800119 return perf_session__list_build_ids(force, with_hits);
Arnaldo Carvalho de Meloc34984b2009-11-16 16:32:45 -0200120}