1 // SPDX-License-Identifier: GPL-2.0
3 * builtin-buildid-cache.c
5 * Builtin buildid-cache command: Manages build-id cache
7 * Copyright (C) 2010, Red Hat Inc.
8 * Copyright (C) 2010, Arnaldo Carvalho de Melo <acme@redhat.com>
10 #include <sys/types.h>
18 #include "namespaces.h"
19 #include "util/cache.h"
20 #include "util/debug.h"
21 #include "util/header.h"
22 #include <subcmd/parse-options.h>
23 #include "util/strlist.h"
24 #include "util/build-id.h"
25 #include "util/session.h"
26 #include "util/symbol.h"
27 #include "util/time-utils.h"
28 #include "util/probe-file.h"
30 static int build_id_cache__kcore_buildid(const char *proc_dir
, char *sbuildid
)
32 char root_dir
[PATH_MAX
];
35 strlcpy(root_dir
, proc_dir
, sizeof(root_dir
));
37 p
= strrchr(root_dir
, '/');
41 return sysfs__sprintf_build_id(root_dir
, sbuildid
);
44 static int build_id_cache__kcore_dir(char *dir
, size_t sz
)
46 return fetch_current_timestamp(dir
, sz
);
49 static bool same_kallsyms_reloc(const char *from_dir
, char *to_dir
)
54 u64 addr1
= 0, addr2
= 0;
57 scnprintf(from
, sizeof(from
), "%s/kallsyms", from_dir
);
58 scnprintf(to
, sizeof(to
), "%s/kallsyms", to_dir
);
60 for (i
= 0; (name
= ref_reloc_sym_names
[i
]) != NULL
; i
++) {
61 err
= kallsyms__get_function_start(from
, name
, &addr1
);
69 if (kallsyms__get_function_start(to
, name
, &addr2
))
72 return addr1
== addr2
;
75 static int build_id_cache__kcore_existing(const char *from_dir
, char *to_dir
,
80 char to_subdir
[PATH_MAX
];
89 scnprintf(from
, sizeof(from
), "%s/modules", from_dir
);
95 if (dent
->d_type
!= DT_DIR
)
97 scnprintf(to
, sizeof(to
), "%s/%s/modules", to_dir
,
99 scnprintf(to_subdir
, sizeof(to_subdir
), "%s/%s",
100 to_dir
, dent
->d_name
);
101 if (!compare_proc_modules(from
, to
) &&
102 same_kallsyms_reloc(from_dir
, to_subdir
)) {
103 strlcpy(to_dir
, to_subdir
, to_dir_sz
);
114 static int build_id_cache__add_kcore(const char *filename
, bool force
)
116 char dir
[32], sbuildid
[SBUILD_ID_SIZE
];
117 char from_dir
[PATH_MAX
], to_dir
[PATH_MAX
];
120 strlcpy(from_dir
, filename
, sizeof(from_dir
));
122 p
= strrchr(from_dir
, '/');
123 if (!p
|| strcmp(p
+ 1, "kcore"))
127 if (build_id_cache__kcore_buildid(from_dir
, sbuildid
) < 0)
130 scnprintf(to_dir
, sizeof(to_dir
), "%s/%s/%s",
131 buildid_dir
, DSO__NAME_KCORE
, sbuildid
);
134 !build_id_cache__kcore_existing(from_dir
, to_dir
, sizeof(to_dir
))) {
135 pr_debug("same kcore found in %s\n", to_dir
);
139 if (build_id_cache__kcore_dir(dir
, sizeof(dir
)))
142 scnprintf(to_dir
, sizeof(to_dir
), "%s/%s/%s/%s",
143 buildid_dir
, DSO__NAME_KCORE
, sbuildid
, dir
);
145 if (mkdir_p(to_dir
, 0755))
148 if (kcore_copy(from_dir
, to_dir
)) {
149 /* Remove YYYYmmddHHMMSShh directory */
150 if (!rmdir(to_dir
)) {
151 p
= strrchr(to_dir
, '/');
154 /* Try to remove buildid directory */
155 if (!rmdir(to_dir
)) {
156 p
= strrchr(to_dir
, '/');
159 /* Try to remove [kernel.kcore] directory */
166 pr_debug("kcore added to build-id cache directory %s\n", to_dir
);
171 static int build_id_cache__add_file(const char *filename
, struct nsinfo
*nsi
)
173 char sbuild_id
[SBUILD_ID_SIZE
];
174 u8 build_id
[BUILD_ID_SIZE
];
178 nsinfo__mountns_enter(nsi
, &nsc
);
179 err
= filename__read_build_id(filename
, &build_id
, sizeof(build_id
));
180 nsinfo__mountns_exit(&nsc
);
182 pr_debug("Couldn't read a build-id in %s\n", filename
);
186 build_id__sprintf(build_id
, sizeof(build_id
), sbuild_id
);
187 err
= build_id_cache__add_s(sbuild_id
, filename
, nsi
,
189 pr_debug("Adding %s %s: %s\n", sbuild_id
, filename
,
190 err
? "FAIL" : "Ok");
194 static int build_id_cache__remove_file(const char *filename
, struct nsinfo
*nsi
)
196 u8 build_id
[BUILD_ID_SIZE
];
197 char sbuild_id
[SBUILD_ID_SIZE
];
202 nsinfo__mountns_enter(nsi
, &nsc
);
203 err
= filename__read_build_id(filename
, &build_id
, sizeof(build_id
));
204 nsinfo__mountns_exit(&nsc
);
206 pr_debug("Couldn't read a build-id in %s\n", filename
);
210 build_id__sprintf(build_id
, sizeof(build_id
), sbuild_id
);
211 err
= build_id_cache__remove_s(sbuild_id
);
212 pr_debug("Removing %s %s: %s\n", sbuild_id
, filename
,
213 err
? "FAIL" : "Ok");
218 static int build_id_cache__purge_path(const char *pathname
, struct nsinfo
*nsi
)
220 struct strlist
*list
;
221 struct str_node
*pos
;
224 err
= build_id_cache__list_build_ids(pathname
, nsi
, &list
);
228 strlist__for_each_entry(pos
, list
) {
229 err
= build_id_cache__remove_s(pos
->s
);
230 pr_debug("Removing %s %s: %s\n", pos
->s
, pathname
,
231 err
? "FAIL" : "Ok");
235 strlist__delete(list
);
238 pr_debug("Purging %s: %s\n", pathname
, err
? "FAIL" : "Ok");
243 static int build_id_cache__purge_all(void)
245 struct strlist
*list
;
246 struct str_node
*pos
;
250 list
= build_id_cache__list_all(false);
252 pr_debug("Failed to get buildids: -%d\n", errno
);
256 strlist__for_each_entry(pos
, list
) {
257 buf
= build_id_cache__origname(pos
->s
);
258 err
= build_id_cache__remove_s(pos
->s
);
259 pr_debug("Removing %s (%s): %s\n", buf
, pos
->s
,
260 err
? "FAIL" : "Ok");
265 strlist__delete(list
);
267 pr_debug("Purged all: %s\n", err
? "FAIL" : "Ok");
271 static bool dso__missing_buildid_cache(struct dso
*dso
, int parm __maybe_unused
)
273 char filename
[PATH_MAX
];
274 u8 build_id
[BUILD_ID_SIZE
];
276 if (dso__build_id_filename(dso
, filename
, sizeof(filename
), false) &&
277 filename__read_build_id(filename
, build_id
,
278 sizeof(build_id
)) != sizeof(build_id
)) {
282 pr_warning("Problems with %s file, consider removing it from the cache\n",
284 } else if (memcmp(dso
->build_id
, build_id
, sizeof(dso
->build_id
))) {
285 pr_warning("Problems with %s file, consider removing it from the cache\n",
292 static int build_id_cache__fprintf_missing(struct perf_session
*session
, FILE *fp
)
294 perf_session__fprintf_dsos_buildid(session
, fp
, dso__missing_buildid_cache
, 0);
298 static int build_id_cache__update_file(const char *filename
, struct nsinfo
*nsi
)
300 u8 build_id
[BUILD_ID_SIZE
];
301 char sbuild_id
[SBUILD_ID_SIZE
];
306 nsinfo__mountns_enter(nsi
, &nsc
);
307 err
= filename__read_build_id(filename
, &build_id
, sizeof(build_id
));
308 nsinfo__mountns_exit(&nsc
);
310 pr_debug("Couldn't read a build-id in %s\n", filename
);
315 build_id__sprintf(build_id
, sizeof(build_id
), sbuild_id
);
316 if (build_id_cache__cached(sbuild_id
))
317 err
= build_id_cache__remove_s(sbuild_id
);
320 err
= build_id_cache__add_s(sbuild_id
, filename
, nsi
, false,
323 pr_debug("Updating %s %s: %s\n", sbuild_id
, filename
,
324 err
? "FAIL" : "Ok");
329 static int build_id_cache__show_all(void)
331 struct strlist
*bidlist
;
335 bidlist
= build_id_cache__list_all(true);
337 pr_debug("Failed to get buildids: -%d\n", errno
);
340 strlist__for_each_entry(nd
, bidlist
) {
341 buf
= build_id_cache__origname(nd
->s
);
342 fprintf(stdout
, "%s %s\n", nd
->s
, buf
);
345 strlist__delete(bidlist
);
349 int cmd_buildid_cache(int argc
, const char **argv
)
351 struct strlist
*list
;
352 struct str_node
*pos
;
356 bool list_files
= false;
357 bool opts_flag
= false;
358 bool purge_all
= false;
359 char const *add_name_list_str
= NULL
,
360 *remove_name_list_str
= NULL
,
361 *purge_name_list_str
= NULL
,
362 *missing_filename
= NULL
,
363 *update_name_list_str
= NULL
,
364 *kcore_filename
= NULL
;
365 char sbuf
[STRERR_BUFSIZE
];
367 struct perf_data data
= {
368 .mode
= PERF_DATA_MODE_READ
,
370 struct perf_session
*session
= NULL
;
371 struct nsinfo
*nsi
= NULL
;
373 const struct option buildid_cache_options
[] = {
374 OPT_STRING('a', "add", &add_name_list_str
,
375 "file list", "file(s) to add"),
376 OPT_STRING('k', "kcore", &kcore_filename
,
377 "file", "kcore file to add"),
378 OPT_STRING('r', "remove", &remove_name_list_str
, "file list",
379 "file(s) to remove"),
380 OPT_STRING('p', "purge", &purge_name_list_str
, "file list",
381 "file(s) to remove (remove old caches too)"),
382 OPT_BOOLEAN('P', "purge-all", &purge_all
, "purge all cached files"),
383 OPT_BOOLEAN('l', "list", &list_files
, "list all cached files"),
384 OPT_STRING('M', "missing", &missing_filename
, "file",
385 "to find missing build ids in the cache"),
386 OPT_BOOLEAN('f', "force", &force
, "don't complain, do it"),
387 OPT_STRING('u', "update", &update_name_list_str
, "file list",
388 "file(s) to update"),
389 OPT_INCR('v', "verbose", &verbose
, "be more verbose"),
390 OPT_INTEGER(0, "target-ns", &ns_id
, "target pid for namespace context"),
393 const char * const buildid_cache_usage
[] = {
394 "perf buildid-cache [<options>]",
398 argc
= parse_options(argc
, argv
, buildid_cache_options
,
399 buildid_cache_usage
, 0);
401 opts_flag
= add_name_list_str
|| kcore_filename
||
402 remove_name_list_str
|| purge_name_list_str
||
403 missing_filename
|| update_name_list_str
||
406 if (argc
|| !(list_files
|| opts_flag
))
407 usage_with_options(buildid_cache_usage
, buildid_cache_options
);
409 /* -l is exclusive. It can not be used with other options. */
410 if (list_files
&& opts_flag
) {
411 usage_with_options_msg(buildid_cache_usage
,
412 buildid_cache_options
, "-l is exclusive.\n");
416 nsi
= nsinfo__new(ns_id
);
418 if (missing_filename
) {
419 data
.file
.path
= missing_filename
;
422 session
= perf_session__new(&data
, false, NULL
);
427 if (symbol__init(session
? &session
->header
.env
: NULL
) < 0)
433 ret
= build_id_cache__show_all();
437 if (add_name_list_str
) {
438 list
= strlist__new(add_name_list_str
, NULL
);
440 strlist__for_each_entry(pos
, list
)
441 if (build_id_cache__add_file(pos
->s
, nsi
)) {
442 if (errno
== EEXIST
) {
443 pr_debug("%s already in the cache\n",
447 pr_warning("Couldn't add %s: %s\n",
448 pos
->s
, str_error_r(errno
, sbuf
, sizeof(sbuf
)));
451 strlist__delete(list
);
455 if (remove_name_list_str
) {
456 list
= strlist__new(remove_name_list_str
, NULL
);
458 strlist__for_each_entry(pos
, list
)
459 if (build_id_cache__remove_file(pos
->s
, nsi
)) {
460 if (errno
== ENOENT
) {
461 pr_debug("%s wasn't in the cache\n",
465 pr_warning("Couldn't remove %s: %s\n",
466 pos
->s
, str_error_r(errno
, sbuf
, sizeof(sbuf
)));
469 strlist__delete(list
);
473 if (purge_name_list_str
) {
474 list
= strlist__new(purge_name_list_str
, NULL
);
476 strlist__for_each_entry(pos
, list
)
477 if (build_id_cache__purge_path(pos
->s
, nsi
)) {
478 if (errno
== ENOENT
) {
479 pr_debug("%s wasn't in the cache\n",
483 pr_warning("Couldn't remove %s: %s\n",
484 pos
->s
, str_error_r(errno
, sbuf
, sizeof(sbuf
)));
487 strlist__delete(list
);
492 if (build_id_cache__purge_all()) {
493 pr_warning("Couldn't remove some caches. Error: %s.\n",
494 str_error_r(errno
, sbuf
, sizeof(sbuf
)));
498 if (missing_filename
)
499 ret
= build_id_cache__fprintf_missing(session
, stdout
);
501 if (update_name_list_str
) {
502 list
= strlist__new(update_name_list_str
, NULL
);
504 strlist__for_each_entry(pos
, list
)
505 if (build_id_cache__update_file(pos
->s
, nsi
)) {
506 if (errno
== ENOENT
) {
507 pr_debug("%s wasn't in the cache\n",
511 pr_warning("Couldn't update %s: %s\n",
512 pos
->s
, str_error_r(errno
, sbuf
, sizeof(sbuf
)));
515 strlist__delete(list
);
519 if (kcore_filename
&& build_id_cache__add_kcore(kcore_filename
, force
))
520 pr_warning("Couldn't add %s\n", kcore_filename
);
523 perf_session__delete(session
);