]> www.infradead.org Git - users/griffoul/linux.git/commitdiff
perf symbol-elf: Add support for the block argument for libbfd
authorIan Rogers <irogers@google.com>
Thu, 4 Sep 2025 16:17:31 +0000 (09:17 -0700)
committerNamhyung Kim <namhyung@kernel.org>
Thu, 4 Sep 2025 23:37:35 +0000 (16:37 -0700)
James Clark caught that the BUILD_NONDISTRO=1 build with libbfd was
broken due to an update to the read_build_id function adding a
blocking argument. Add support for this argument by first opening the
file blocking or non-blocking, then switching from bfd_openr to
bfd_fdopenr and passing the opened fd. bfd_fdopenr closes the fd on
error and when bfd_close are called.

Reported-by: James Clark <james.clark@linaro.org>
Closes: https://lore.kernel.org/lkml/20250903-james-perf-read-build-id-fix-v1-2-6a694d0a980f@linaro.org/
Fixes: 2c369d91d093 ("perf symbol: Add blocking argument to filename__read_build_id")
Signed-off-by: Ian Rogers <irogers@google.com>
Reviewed-by: James Clark <james.clark@linaro.org>
Link: https://lore.kernel.org/r/20250904161731.1193729-1-irogers@google.com
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
tools/perf/util/symbol-elf.c

index 033c79231a54cd4e209e1a824d31c4f10fa63889..1346fd18065365956a537ddd1bff511ca5b7e553 100644 (file)
@@ -873,13 +873,17 @@ out:
 
 #ifdef HAVE_LIBBFD_BUILDID_SUPPORT
 
-static int read_build_id(const char *filename, struct build_id *bid)
+static int read_build_id(const char *filename, struct build_id *bid, bool block)
 {
        size_t size = sizeof(bid->data);
-       int err = -1;
+       int err = -1, fd;
        bfd *abfd;
 
-       abfd = bfd_openr(filename, NULL);
+       fd = open(filename, block ? O_RDONLY : (O_RDONLY | O_NONBLOCK));
+       if (fd < 0)
+               return -1;
+
+       abfd = bfd_fdopenr(filename, /*target=*/NULL, fd);
        if (!abfd)
                return -1;