1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef PERF_BUILD_ID_H_
3 #define PERF_BUILD_ID_H_ 1
5 #define BUILD_ID_SIZE 20
6 #define SBUILD_ID_SIZE (BUILD_ID_SIZE * 2 + 1)
9 #include "namespaces.h"
10 #include <linux/types.h>
12 extern struct perf_tool build_id__mark_dso_hit_ops
;
16 int build_id__sprintf(const u8
*build_id
, int len
, char *bf
);
17 int sysfs__sprintf_build_id(const char *root_dir
, char *sbuild_id
);
18 int filename__sprintf_build_id(const char *pathname
, char *sbuild_id
);
19 char *build_id_cache__kallsyms_path(const char *sbuild_id
, char *bf
,
22 char *dso__build_id_filename(const struct dso
*dso
, char *bf
, size_t size
,
25 int build_id__mark_dso_hit(struct perf_tool
*tool
, union perf_event
*event
,
26 struct perf_sample
*sample
, struct perf_evsel
*evsel
,
27 struct machine
*machine
);
29 int dsos__hit_all(struct perf_session
*session
);
31 bool perf_session__read_build_ids(struct perf_session
*session
, bool with_hits
);
32 int perf_session__write_buildid_table(struct perf_session
*session
,
34 int perf_session__cache_build_ids(struct perf_session
*session
);
36 char *build_id_cache__origname(const char *sbuild_id
);
37 char *build_id_cache__linkname(const char *sbuild_id
, char *bf
, size_t size
);
38 char *build_id_cache__cachedir(const char *sbuild_id
, const char *name
,
39 struct nsinfo
*nsi
, bool is_kallsyms
,
44 struct strlist
*build_id_cache__list_all(bool validonly
);
45 char *build_id_cache__complement(const char *incomplete_sbuild_id
);
46 int build_id_cache__list_build_ids(const char *pathname
, struct nsinfo
*nsi
,
47 struct strlist
**result
);
48 bool build_id_cache__cached(const char *sbuild_id
);
49 int build_id_cache__add_s(const char *sbuild_id
,
50 const char *name
, struct nsinfo
*nsi
,
51 bool is_kallsyms
, bool is_vdso
);
52 int build_id_cache__remove_s(const char *sbuild_id
);
54 extern char buildid_dir
[];
56 void set_buildid_dir(const char *dir
);
57 void disable_buildid_cache(void);