blob: cebadd63223453bb32b344143278ce6d3d89c259 [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/debug.h"
Arnaldo Carvalho de Melo4a3cec82019-08-30 11:11:01 -030014#include "util/dso.h"
Arnaldo Carvalho de Melofa0d9842019-08-30 12:52:25 -030015#include <subcmd/pager.h>
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -060016#include <subcmd/parse-options.h>
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020017#include "util/session.h"
Arnaldo Carvalho de Meloc34984b2009-11-16 16:32:45 -020018#include "util/symbol.h"
Jiri Olsaf5fc14122013-10-15 16:27:32 +020019#include "util/data.h"
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -030020#include <errno.h>
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +053021#include <linux/err.h>
Arnaldo Carvalho de Meloc34984b2009-11-16 16:32:45 -020022
Arnaldo Carvalho de Melof2add9c2011-08-29 08:07:22 -030023static int sysfs__fprintf_build_id(FILE *fp)
24{
Masami Hiramatsud77fac72015-07-15 18:14:28 +090025 char sbuild_id[SBUILD_ID_SIZE];
Masami Hiramatsu0b5a7932015-08-15 20:42:59 +090026 int ret;
Arnaldo Carvalho de Melof2add9c2011-08-29 08:07:22 -030027
Masami Hiramatsu0b5a7932015-08-15 20:42:59 +090028 ret = sysfs__sprintf_build_id("/", sbuild_id);
29 if (ret != sizeof(sbuild_id))
30 return ret < 0 ? ret : -EINVAL;
Arnaldo Carvalho de Melof2add9c2011-08-29 08:07:22 -030031
Masami Hiramatsu0b5a7932015-08-15 20:42:59 +090032 return fprintf(fp, "%s\n", sbuild_id);
Arnaldo Carvalho de Melof2add9c2011-08-29 08:07:22 -030033}
34
Arnaldo Carvalho de Melo7a6f2052011-08-29 08:33:17 -030035static int filename__fprintf_build_id(const char *name, FILE *fp)
36{
Masami Hiramatsud77fac72015-07-15 18:14:28 +090037 char sbuild_id[SBUILD_ID_SIZE];
Masami Hiramatsu0b5a7932015-08-15 20:42:59 +090038 int ret;
Arnaldo Carvalho de Melo7a6f2052011-08-29 08:33:17 -030039
Masami Hiramatsu0b5a7932015-08-15 20:42:59 +090040 ret = filename__sprintf_build_id(name, sbuild_id);
41 if (ret != sizeof(sbuild_id))
42 return ret < 0 ? ret : -EINVAL;
Arnaldo Carvalho de Melo7a6f2052011-08-29 08:33:17 -030043
Arnaldo Carvalho de Melo7a6f2052011-08-29 08:33:17 -030044 return fprintf(fp, "%s\n", sbuild_id);
45}
46
Arnaldo Carvalho de Melo417c2ff2012-12-07 09:53:58 -030047static bool dso__skip_buildid(struct dso *dso, int with_hits)
48{
49 return with_hits && !dso->hit;
50}
51
Feng Tang70cb4e92012-10-30 11:56:02 +080052static int perf_session__list_build_ids(bool force, bool with_hits)
Robert Richter1b549502011-12-07 10:02:53 +010053{
54 struct perf_session *session;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +010055 struct perf_data data = {
Jiri Olsa2d4f2792019-02-21 10:41:30 +010056 .path = input_name,
57 .mode = PERF_DATA_MODE_READ,
58 .force = force,
Jiri Olsaf5fc14122013-10-15 16:27:32 +020059 };
Robert Richter1b549502011-12-07 10:02:53 +010060
Namhyung Kim166ccc92012-08-06 13:41:19 +090061 symbol__elf_init();
Arnaldo Carvalho de Melof0bf9102012-12-05 16:24:05 -030062 /*
63 * See if this is an ELF file first:
64 */
Masami Hiramatsu0b5a7932015-08-15 20:42:59 +090065 if (filename__fprintf_build_id(input_name, stdout) > 0)
Arnaldo Carvalho de Melof0bf9102012-12-05 16:24:05 -030066 goto out;
Robert Richterefad1412011-12-07 10:02:54 +010067
Namhyung Kim2681bd82021-07-19 15:31:49 -070068 session = perf_session__new(&data, &build_id__mark_dso_hit_ops);
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +053069 if (IS_ERR(session))
70 return PTR_ERR(session);
Adrian Huntercd10b282015-04-30 17:37:26 +030071
72 /*
73 * We take all buildids when the file contains AUX area tracing data
74 * because we do not decode the trace because it would take too long.
75 */
Jiri Olsa8ceb41d2017-01-23 22:07:59 +010076 if (!perf_data__is_pipe(&data) &&
Adrian Huntercd10b282015-04-30 17:37:26 +030077 perf_header__has_feat(&session->header, HEADER_AUXTRACE))
78 with_hits = false;
79
Jiri Olsad176db92020-12-14 11:54:56 +010080 if (!perf_header__has_feat(&session->header, HEADER_BUILD_ID))
81 with_hits = true;
82
Milian Wolffc67d7342021-04-29 20:57:59 +020083 if (zstd_init(&(session->zstd_data), 0) < 0)
84 pr_warning("Decompression initialization failed. Reported data may be incomplete.\n");
85
Stephane Eranian299c3452012-05-15 13:28:15 +020086 /*
87 * in pipe-mode, the only way to get the buildids is to parse
88 * the record stream. Buildids are stored as RECORD_HEADER_BUILD_ID
89 */
Jiri Olsa8ceb41d2017-01-23 22:07:59 +010090 if (with_hits || perf_data__is_pipe(&data))
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -030091 perf_session__process_events(session);
Robert Richter1b549502011-12-07 10:02:53 +010092
Arnaldo Carvalho de Melo417c2ff2012-12-07 09:53:58 -030093 perf_session__fprintf_dsos_buildid(session, stdout, dso__skip_buildid, with_hits);
Robert Richter1b549502011-12-07 10:02:53 +010094 perf_session__delete(session);
Arnaldo Carvalho de Melof0bf9102012-12-05 16:24:05 -030095out:
Robert Richter1b549502011-12-07 10:02:53 +010096 return 0;
97}
98
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -030099int cmd_buildid_list(int argc, const char **argv)
Arnaldo Carvalho de Meloc34984b2009-11-16 16:32:45 -0200100{
Arnaldo Carvalho de Melo6ee41492012-10-01 15:20:58 -0300101 bool show_kernel = false;
102 bool with_hits = false;
103 bool force = false;
Arnaldo Carvalho de Melo6ee41492012-10-01 15:20:58 -0300104 const struct option options[] = {
105 OPT_BOOLEAN('H', "with-hits", &with_hits, "Show only DSOs with hits"),
106 OPT_STRING('i', "input", &input_name, "file", "input file name"),
107 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
108 OPT_BOOLEAN('k', "kernel", &show_kernel, "Show current kernel build id"),
109 OPT_INCR('v', "verbose", &verbose, "be more verbose"),
110 OPT_END()
111 };
112 const char * const buildid_list_usage[] = {
113 "perf buildid-list [<options>]",
114 NULL
115 };
116
Arnaldo Carvalho de Meloc34984b2009-11-16 16:32:45 -0200117 argc = parse_options(argc, argv, options, buildid_list_usage, 0);
118 setup_pager();
Arnaldo Carvalho de Melo6ee41492012-10-01 15:20:58 -0300119
120 if (show_kernel)
Michael Petlanc8319c92015-12-02 19:27:51 +0100121 return !(sysfs__fprintf_build_id(stdout) > 0);
Arnaldo Carvalho de Melo6ee41492012-10-01 15:20:58 -0300122
Feng Tang70cb4e92012-10-30 11:56:02 +0800123 return perf_session__list_build_ids(force, with_hits);
Arnaldo Carvalho de Meloc34984b2009-11-16 16:32:45 -0200124}