From: Anton Blanchard Date: Wed, 24 Aug 2011 06:40:14 +0000 (+1000) Subject: perf symbols: Fix ppc64 SEGV in dso__load_sym with debuginfo files X-Git-Tag: v3.0.5~39 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=8413239bfc9e8b94af509c7a43c7d92bd8965630;p=karo-tx-linux.git perf symbols: Fix ppc64 SEGV in dso__load_sym with debuginfo files commit adb091846318f86e4f46c7d6a7b40d2f478abdbe upstream. 64bit PowerPC debuginfo files have an empty function descriptor section. I hit a SEGV when perf tried to use this section for symbol resolution. To fix this we need to check the section is valid and we can do this by checking for type SHT_PROGBITS. Cc: Cc: Ingo Molnar Cc: Paul Mackerras Cc: Peter Zijlstra Cc: Eric B Munson Link: http://lkml.kernel.org/r/20110824065242.895239970@samba.org Signed-off-by: Anton Blanchard Signed-off-by: Arnaldo Carvalho de Melo Signed-off-by: Greg Kroah-Hartman --- diff --git a/tools/perf/util/symbol.c b/tools/perf/util/symbol.c index eec196329fd9..40fd1c7c38a0 100644 --- a/tools/perf/util/symbol.c +++ b/tools/perf/util/symbol.c @@ -1111,6 +1111,8 @@ static int dso__load_sym(struct dso *dso, struct map *map, const char *name, } opdsec = elf_section_by_name(elf, &ehdr, &opdshdr, ".opd", &opdidx); + if (opdshdr.sh_type != SHT_PROGBITS) + opdsec = NULL; if (opdsec) opddata = elf_rawdata(opdsec, NULL);