2 * builtin-buildid-cache.c
4 * Builtin buildid-cache command: Manages build-id cache
6 * Copyright (C) 2010, Red Hat Inc.
7 * Copyright (C) 2010, Arnaldo Carvalho de Melo <acme@redhat.com>
16 #include "util/cache.h"
17 #include "util/debug.h"
18 #include "util/header.h"
19 #include "util/parse-options.h"
20 #include "util/strlist.h"
21 #include "util/build-id.h"
22 #include "util/session.h"
23 #include "util/symbol.h"
25 static int build_id_cache__kcore_buildid(const char *proc_dir
, char *sbuildid
)
27 char root_dir
[PATH_MAX
];
29 u8 build_id
[BUILD_ID_SIZE
];
32 strlcpy(root_dir
, proc_dir
, sizeof(root_dir
));
34 p
= strrchr(root_dir
, '/');
39 scnprintf(notes
, sizeof(notes
), "%s/sys/kernel/notes", root_dir
);
41 if (sysfs__read_build_id(notes
, build_id
, sizeof(build_id
)))
44 build_id__sprintf(build_id
, sizeof(build_id
), sbuildid
);
49 static int build_id_cache__kcore_dir(char *dir
, size_t sz
)
55 if (gettimeofday(&tv
, NULL
) || !localtime_r(&tv
.tv_sec
, &tm
))
58 if (!strftime(dt
, sizeof(dt
), "%Y%m%d%H%M%S", &tm
))
61 scnprintf(dir
, sz
, "%s%02u", dt
, (unsigned)tv
.tv_usec
/ 10000);
66 static bool same_kallsyms_reloc(const char *from_dir
, char *to_dir
)
71 u64 addr1
= 0, addr2
= 0;
74 scnprintf(from
, sizeof(from
), "%s/kallsyms", from_dir
);
75 scnprintf(to
, sizeof(to
), "%s/kallsyms", to_dir
);
77 for (i
= 0; (name
= ref_reloc_sym_names
[i
]) != NULL
; i
++) {
78 addr1
= kallsyms__get_function_start(from
, name
);
84 addr2
= kallsyms__get_function_start(to
, name
);
86 return addr1
== addr2
;
89 static int build_id_cache__kcore_existing(const char *from_dir
, char *to_dir
,
94 char to_subdir
[PATH_MAX
];
103 scnprintf(from
, sizeof(from
), "%s/modules", from_dir
);
109 if (dent
->d_type
!= DT_DIR
)
111 scnprintf(to
, sizeof(to
), "%s/%s/modules", to_dir
,
113 scnprintf(to_subdir
, sizeof(to_subdir
), "%s/%s",
114 to_dir
, dent
->d_name
);
115 if (!compare_proc_modules(from
, to
) &&
116 same_kallsyms_reloc(from_dir
, to_subdir
)) {
117 strlcpy(to_dir
, to_subdir
, to_dir_sz
);
128 static int build_id_cache__add_kcore(const char *filename
, const char *debugdir
)
130 char dir
[32], sbuildid
[BUILD_ID_SIZE
* 2 + 1];
131 char from_dir
[PATH_MAX
], to_dir
[PATH_MAX
];
134 strlcpy(from_dir
, filename
, sizeof(from_dir
));
136 p
= strrchr(from_dir
, '/');
137 if (!p
|| strcmp(p
+ 1, "kcore"))
141 if (build_id_cache__kcore_buildid(from_dir
, sbuildid
))
144 scnprintf(to_dir
, sizeof(to_dir
), "%s/[kernel.kcore]/%s",
147 if (!build_id_cache__kcore_existing(from_dir
, to_dir
, sizeof(to_dir
))) {
148 pr_debug("same kcore found in %s\n", to_dir
);
152 if (build_id_cache__kcore_dir(dir
, sizeof(dir
)))
155 scnprintf(to_dir
, sizeof(to_dir
), "%s/[kernel.kcore]/%s/%s",
156 debugdir
, sbuildid
, dir
);
158 if (mkdir_p(to_dir
, 0755))
161 if (kcore_copy(from_dir
, to_dir
)) {
162 /* Remove YYYYmmddHHMMSShh directory */
163 if (!rmdir(to_dir
)) {
164 p
= strrchr(to_dir
, '/');
167 /* Try to remove buildid directory */
168 if (!rmdir(to_dir
)) {
169 p
= strrchr(to_dir
, '/');
172 /* Try to remove [kernel.kcore] directory */
179 pr_debug("kcore added to build-id cache directory %s\n", to_dir
);
184 static int build_id_cache__add_file(const char *filename
, const char *debugdir
)
186 char sbuild_id
[BUILD_ID_SIZE
* 2 + 1];
187 u8 build_id
[BUILD_ID_SIZE
];
190 if (filename__read_build_id(filename
, &build_id
, sizeof(build_id
)) < 0) {
191 pr_debug("Couldn't read a build-id in %s\n", filename
);
195 build_id__sprintf(build_id
, sizeof(build_id
), sbuild_id
);
196 err
= build_id_cache__add_s(sbuild_id
, debugdir
, filename
,
199 pr_info("Adding %s %s: %s\n", sbuild_id
, filename
,
200 err
? "FAIL" : "Ok");
204 static int build_id_cache__remove_file(const char *filename
,
205 const char *debugdir
)
207 u8 build_id
[BUILD_ID_SIZE
];
208 char sbuild_id
[BUILD_ID_SIZE
* 2 + 1];
212 if (filename__read_build_id(filename
, &build_id
, sizeof(build_id
)) < 0) {
213 pr_debug("Couldn't read a build-id in %s\n", filename
);
217 build_id__sprintf(build_id
, sizeof(build_id
), sbuild_id
);
218 err
= build_id_cache__remove_s(sbuild_id
, debugdir
);
220 pr_info("Removing %s %s: %s\n", sbuild_id
, filename
,
221 err
? "FAIL" : "Ok");
226 static bool dso__missing_buildid_cache(struct dso
*dso
, int parm __maybe_unused
)
228 char filename
[PATH_MAX
];
229 u8 build_id
[BUILD_ID_SIZE
];
231 if (dso__build_id_filename(dso
, filename
, sizeof(filename
)) &&
232 filename__read_build_id(filename
, build_id
,
233 sizeof(build_id
)) != sizeof(build_id
)) {
237 pr_warning("Problems with %s file, consider removing it from the cache\n",
239 } else if (memcmp(dso
->build_id
, build_id
, sizeof(dso
->build_id
))) {
240 pr_warning("Problems with %s file, consider removing it from the cache\n",
247 static int build_id_cache__fprintf_missing(const char *filename
, bool force
, FILE *fp
)
249 struct perf_data_file file
= {
251 .mode
= PERF_DATA_MODE_READ
,
254 struct perf_session
*session
= perf_session__new(&file
, false, NULL
);
258 perf_session__fprintf_dsos_buildid(session
, fp
, dso__missing_buildid_cache
, 0);
259 perf_session__delete(session
);
264 static int build_id_cache__update_file(const char *filename
,
265 const char *debugdir
)
267 u8 build_id
[BUILD_ID_SIZE
];
268 char sbuild_id
[BUILD_ID_SIZE
* 2 + 1];
272 if (filename__read_build_id(filename
, &build_id
, sizeof(build_id
)) < 0) {
273 pr_debug("Couldn't read a build-id in %s\n", filename
);
277 build_id__sprintf(build_id
, sizeof(build_id
), sbuild_id
);
278 err
= build_id_cache__remove_s(sbuild_id
, debugdir
);
280 err
= build_id_cache__add_s(sbuild_id
, debugdir
, filename
,
284 pr_info("Updating %s %s: %s\n", sbuild_id
, filename
,
285 err
? "FAIL" : "Ok");
290 int cmd_buildid_cache(int argc
, const char **argv
,
291 const char *prefix __maybe_unused
)
293 struct strlist
*list
;
294 struct str_node
*pos
;
297 char debugdir
[PATH_MAX
];
298 char const *add_name_list_str
= NULL
,
299 *remove_name_list_str
= NULL
,
300 *missing_filename
= NULL
,
301 *update_name_list_str
= NULL
,
304 const struct option buildid_cache_options
[] = {
305 OPT_STRING('a', "add", &add_name_list_str
,
306 "file list", "file(s) to add"),
307 OPT_STRING('k', "kcore", &kcore_filename
,
308 "file", "kcore file to add"),
309 OPT_STRING('r', "remove", &remove_name_list_str
, "file list",
310 "file(s) to remove"),
311 OPT_STRING('M', "missing", &missing_filename
, "file",
312 "to find missing build ids in the cache"),
313 OPT_BOOLEAN('f', "force", &force
, "don't complain, do it"),
314 OPT_STRING('u', "update", &update_name_list_str
, "file list",
315 "file(s) to update"),
316 OPT_INCR('v', "verbose", &verbose
, "be more verbose"),
319 const char * const buildid_cache_usage
[] = {
320 "perf buildid-cache [<options>]",
324 argc
= parse_options(argc
, argv
, buildid_cache_options
,
325 buildid_cache_usage
, 0);
327 if (symbol__init() < 0)
332 snprintf(debugdir
, sizeof(debugdir
), "%s", buildid_dir
);
334 if (add_name_list_str
) {
335 list
= strlist__new(true, add_name_list_str
);
337 strlist__for_each(pos
, list
)
338 if (build_id_cache__add_file(pos
->s
, debugdir
)) {
339 if (errno
== EEXIST
) {
340 pr_debug("%s already in the cache\n",
344 pr_warning("Couldn't add %s: %s\n",
345 pos
->s
, strerror(errno
));
348 strlist__delete(list
);
352 if (remove_name_list_str
) {
353 list
= strlist__new(true, remove_name_list_str
);
355 strlist__for_each(pos
, list
)
356 if (build_id_cache__remove_file(pos
->s
, debugdir
)) {
357 if (errno
== ENOENT
) {
358 pr_debug("%s wasn't in the cache\n",
362 pr_warning("Couldn't remove %s: %s\n",
363 pos
->s
, strerror(errno
));
366 strlist__delete(list
);
370 if (missing_filename
)
371 ret
= build_id_cache__fprintf_missing(missing_filename
, force
, stdout
);
373 if (update_name_list_str
) {
374 list
= strlist__new(true, update_name_list_str
);
376 strlist__for_each(pos
, list
)
377 if (build_id_cache__update_file(pos
->s
, debugdir
)) {
378 if (errno
== ENOENT
) {
379 pr_debug("%s wasn't in the cache\n",
383 pr_warning("Couldn't update %s: %s\n",
384 pos
->s
, strerror(errno
));
387 strlist__delete(list
);
391 if (kcore_filename
&&
392 build_id_cache__add_kcore(kcore_filename
, debugdir
))
393 pr_warning("Couldn't add %s\n", kcore_filename
);