]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commit
LoongArch: ld: Fix hidden ifunc symbol linker error bug.
authormengqinggang <mengqinggang@loongson.cn>
Mon, 9 Jan 2023 08:35:26 +0000 (16:35 +0800)
committerliuzhensong <liuzhensong@loongson.cn>
Mon, 16 Jan 2023 01:05:46 +0000 (09:05 +0800)
commit87cb95ba8c4d86de23b6ba694a126995a17c5fcd
tree2ee2f645c6e7ebd3c9744df567839a52140e3950
parent9d131130d2f35f1515855d786a9905d8eb8cce8f
LoongArch: ld: Fix hidden ifunc symbol linker error bug.

For hidden ifunc symbols, it not have GOT entry, only have gotplt entry. When
process R_LARCH_SOP_PUSH_GPREL, the offset is gotplt entry address minus GOT
address. When call bfd_put_NN(got->contents + offset), the absolute value of
offset is grather than got size, and other memory not belonging to GOT is be
overwritten.

bfd/ChangeLog:

* elfnn-loongarch.c (loongarch_elf_relocate_section): If hidden ifunc
symbol, don't call bfd_put_NN.
bfd/elfnn-loongarch.c