mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2024-12-28 16:52:18 +00:00
recordmcount: Correct st_shndx handling
One should only use st_shndx when >SHN_UNDEF and <SHN_LORESERVE. When SHN_XINDEX, then use .symtab_shndx. Otherwise use 0. This handles the case: st_shndx >= SHN_LORESERVE && st_shndx != SHN_XINDEX. Link: https://lore.kernel.org/lkml/20210607023839.26387-1-mark-pk.tsai@mediatek.com/ Link: https://lkml.kernel.org/r/20210616154126.2794-1-mark-pk.tsai@mediatek.com Reported-by: Mark-PK Tsai <mark-pk.tsai@mediatek.com> Tested-by: Mark-PK Tsai <mark-pk.tsai@mediatek.com> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> [handle endianness of sym->st_shndx] Signed-off-by: Mark-PK Tsai <mark-pk.tsai@mediatek.com> Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
This commit is contained in:
parent
3e08a9f976
commit
fb780761e7
@ -192,15 +192,20 @@ static unsigned int get_symindex(Elf_Sym const *sym, Elf32_Word const *symtab,
|
|||||||
Elf32_Word const *symtab_shndx)
|
Elf32_Word const *symtab_shndx)
|
||||||
{
|
{
|
||||||
unsigned long offset;
|
unsigned long offset;
|
||||||
|
unsigned short shndx = w2(sym->st_shndx);
|
||||||
int index;
|
int index;
|
||||||
|
|
||||||
if (sym->st_shndx != SHN_XINDEX)
|
if (shndx > SHN_UNDEF && shndx < SHN_LORESERVE)
|
||||||
return w2(sym->st_shndx);
|
return shndx;
|
||||||
|
|
||||||
offset = (unsigned long)sym - (unsigned long)symtab;
|
if (shndx == SHN_XINDEX) {
|
||||||
index = offset / sizeof(*sym);
|
offset = (unsigned long)sym - (unsigned long)symtab;
|
||||||
|
index = offset / sizeof(*sym);
|
||||||
|
|
||||||
return w(symtab_shndx[index]);
|
return w(symtab_shndx[index]);
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static unsigned int get_shnum(Elf_Ehdr const *ehdr, Elf_Shdr const *shdr0)
|
static unsigned int get_shnum(Elf_Ehdr const *ehdr, Elf_Shdr const *shdr0)
|
||||||
|
Loading…
Reference in New Issue
Block a user