perf symbol: Add filename__has_section()
authorNamhyung Kim <namhyung@kernel.org>
Thu, 15 Dec 2022 19:28:11 +0000 (11:28 -0800)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Wed, 21 Dec 2022 17:52:40 +0000 (14:52 -0300)
The filename__has_section() is to check if the given section name is in
the binary.  It'd be used for checking debug info for srcline.

Committer notes:

Added missing  __maybe_unused to the unused filename__has_section()
arguments in tools/perf/util/symbol-minimal.c.

Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Acked-by: Ian Rogers <irogers@google.com>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Leo Yan <leo.yan@linaro.org>
Cc: Milian Wolff <milian.wolff@kdab.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: https://lore.kernel.org/r/20221215192817.2734573-4-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/util/symbol-elf.c
tools/perf/util/symbol-minimal.c
tools/perf/util/symbol.h

index 80345695b1360eec031b34826d25f0365f239d47..96767d1b3f1c233dcd7552de0996c3cd036d2f3b 100644 (file)
@@ -233,6 +233,34 @@ Elf_Scn *elf_section_by_name(Elf *elf, GElf_Ehdr *ep,
        return NULL;
 }
 
+bool filename__has_section(const char *filename, const char *sec)
+{
+       int fd;
+       Elf *elf;
+       GElf_Ehdr ehdr;
+       GElf_Shdr shdr;
+       bool found = false;
+
+       fd = open(filename, O_RDONLY);
+       if (fd < 0)
+               return false;
+
+       elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
+       if (elf == NULL)
+               goto out;
+
+       if (gelf_getehdr(elf, &ehdr) == NULL)
+               goto elf_out;
+
+       found = !!elf_section_by_name(elf, &ehdr, &shdr, sec, NULL);
+
+elf_out:
+       elf_end(elf);
+out:
+       close(fd);
+       return found;
+}
+
 static int elf_read_program_header(Elf *elf, u64 vaddr, GElf_Phdr *phdr)
 {
        size_t i, phdrnum;
index f9eb0bee7f157a971ff514496ddc0b69c0aa3ee3..a81a14769bd101bdeb207a05ec4b858ac04b8193 100644 (file)
@@ -385,3 +385,8 @@ char *dso__demangle_sym(struct dso *dso __maybe_unused,
 {
        return NULL;
 }
+
+bool filename__has_section(const char *filename __maybe_unused, const char *sec __maybe_unused)
+{
+       return false;
+}
index e297de14184c53acd6202f0c8beb19e2479bb258..f735108c4d4ecfd9480af24aa512d6eca8a5791e 100644 (file)
@@ -165,6 +165,7 @@ int modules__parse(const char *filename, void *arg,
                                         u64 start, u64 size));
 int filename__read_debuglink(const char *filename, char *debuglink,
                             size_t size);
+bool filename__has_section(const char *filename, const char *sec);
 
 struct perf_env;
 int symbol__init(struct perf_env *env);