builtin-buildid-list.c 2.9 KB
Newer Older
1 2 3
/*
 * builtin-buildid-list.c
 *
4 5
 * Builtin buildid-list command: list buildids in perf.data, in the running
 * kernel and in ELF files.
6 7 8 9 10 11
 *
 * Copyright (C) 2009, Red Hat Inc.
 * Copyright (C) 2009, Arnaldo Carvalho de Melo <acme@redhat.com>
 */
#include "builtin.h"
#include "perf.h"
12
#include "util/build-id.h"
13 14
#include "util/cache.h"
#include "util/debug.h"
15
#include <subcmd/parse-options.h>
16
#include "util/session.h"
17
#include "util/symbol.h"
18
#include "util/data.h"
19

20 21
static int sysfs__fprintf_build_id(FILE *fp)
{
22
	char sbuild_id[SBUILD_ID_SIZE];
23
	int ret;
24

25 26 27
	ret = sysfs__sprintf_build_id("/", sbuild_id);
	if (ret != sizeof(sbuild_id))
		return ret < 0 ? ret : -EINVAL;
28

29
	return fprintf(fp, "%s\n", sbuild_id);
30 31
}

32
static int filename__fprintf_build_id(const char *name, FILE *fp)
33
{
34
	char sbuild_id[SBUILD_ID_SIZE];
35
	int ret;
36

37 38 39
	ret = filename__sprintf_build_id(name, sbuild_id);
	if (ret != sizeof(sbuild_id))
		return ret < 0 ? ret : -EINVAL;
40 41 42 43

	return fprintf(fp, "%s\n", sbuild_id);
}

44 45 46 47 48
static bool dso__skip_buildid(struct dso *dso, int with_hits)
{
	return with_hits && !dso->hit;
}

49
static int perf_session__list_build_ids(bool force, bool with_hits)
50 51
{
	struct perf_session *session;
52 53 54 55 56
	struct perf_data_file file = {
		.path  = input_name,
		.mode  = PERF_DATA_MODE_READ,
		.force = force,
	};
57

58
	symbol__elf_init();
59 60 61
	/*
	 * See if this is an ELF file first:
	 */
62
	if (filename__fprintf_build_id(input_name, stdout) > 0)
63 64
		goto out;

65
	session = perf_session__new(&file, false, &build_id__mark_dso_hit_ops);
66 67
	if (session == NULL)
		return -1;
68 69 70 71 72 73 74 75 76

	/*
	 * We take all buildids when the file contains AUX area tracing data
	 * because we do not decode the trace because it would take too long.
	 */
	if (!perf_data_file__is_pipe(&file) &&
	    perf_header__has_feat(&session->header, HEADER_AUXTRACE))
		with_hits = false;

77 78 79 80
	/*
	 * in pipe-mode, the only way to get the buildids is to parse
	 * the record stream. Buildids are stored as RECORD_HEADER_BUILD_ID
	 */
81
	if (with_hits || perf_data_file__is_pipe(&file))
82
		perf_session__process_events(session);
83

84
	perf_session__fprintf_dsos_buildid(session, stdout, dso__skip_buildid, with_hits);
85
	perf_session__delete(session);
86
out:
87 88 89
	return 0;
}

90
int cmd_buildid_list(int argc, const char **argv)
91
{
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
	bool show_kernel = false;
	bool with_hits = false;
	bool force = false;
	const struct option options[] = {
	OPT_BOOLEAN('H', "with-hits", &with_hits, "Show only DSOs with hits"),
	OPT_STRING('i', "input", &input_name, "file", "input file name"),
	OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
	OPT_BOOLEAN('k', "kernel", &show_kernel, "Show current kernel build id"),
	OPT_INCR('v', "verbose", &verbose, "be more verbose"),
	OPT_END()
	};
	const char * const buildid_list_usage[] = {
		"perf buildid-list [<options>]",
		NULL
	};

108 109
	argc = parse_options(argc, argv, options, buildid_list_usage, 0);
	setup_pager();
110 111

	if (show_kernel)
112
		return !(sysfs__fprintf_build_id(stdout) > 0);
113

114
	return perf_session__list_build_ids(force, with_hits);
115
}