mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-25 14:30:06 +00:00
Fix PLT rewrite when prelinking fails on 32-bit sparc.
When prelinking fails we have to rewrite the PLT, but the code doing so forgets to adjust all rela->r_offset addresses by the location of where the object was actually mapped.
This commit is contained in:
parent
1d204bf294
commit
5c866a8b9b
@ -1,3 +1,8 @@
|
||||
2009-02-20 David S. Miller <davem@davemloft.net>
|
||||
|
||||
* sysdeps/sparc/sparc32/dl-machine.h (elf_machine_runtime_setup):
|
||||
Adjust rela->r_offset by l->l_addr when rewriting PLT.
|
||||
|
||||
2009-02-20 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
* sysdeps/sparc/sparc64/dl-machine.h (elf_machine_runtime_setup):
|
||||
|
@ -166,15 +166,19 @@ elf_machine_runtime_setup (struct link_map *l, int lazy, int profile)
|
||||
in .rela.plt. */
|
||||
while (rela < relaend)
|
||||
{
|
||||
*(unsigned int *) rela->r_offset
|
||||
= OPCODE_SETHI_G1 | (rela->r_offset - (Elf32_Addr) plt);
|
||||
*(unsigned int *) (rela->r_offset + 4)
|
||||
*(unsigned int *) (rela->r_offset + l->l_addr)
|
||||
= OPCODE_SETHI_G1 | (rela->r_offset + l->l_addr
|
||||
- (Elf32_Addr) plt);
|
||||
*(unsigned int *) (rela->r_offset + l->l_addr + 4)
|
||||
= OPCODE_BA | ((((Elf32_Addr) plt
|
||||
- rela->r_offset - 4) >> 2) & 0x3fffff);
|
||||
- rela->r_offset - l->l_addr - 4) >> 2)
|
||||
& 0x3fffff);
|
||||
if (do_flush)
|
||||
{
|
||||
__asm __volatile ("flush %0" : : "r"(rela->r_offset));
|
||||
__asm __volatile ("flush %0+4" : : "r"(rela->r_offset));
|
||||
__asm __volatile ("flush %0" : : "r" (rela->r_offset
|
||||
+ l->l_addr));
|
||||
__asm __volatile ("flush %0+4" : : "r" (rela->r_offset
|
||||
+ l->l_addr));
|
||||
}
|
||||
++rela;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user