Elf loader question: who updates .rela.dyn entries for load_bias compensation?

From: John Z. Bohach
Date: Fri May 05 2006 - 12:43:51 EST


Apologies if this is the wrong forum, but...

I'm porting Linux to a new architecture, and ran into an issue with
the .rela.dyn entries not being adjusted to compensate for the load_bias
of an ET_DYN shared executable: in particular, this is the ld.so itself that
doesn't get its .rela.dyn entries incremented by +load_bias. This makes
references from _GLOBAL_OFFSET_TABLE_ refer to the old compile-time
vma addresses, which of course causes runtime segfaults (appropriately
enough) with ld.so.

I've poured over binfmt_elf.c to see what it does, but it doesn't appear to
touch any of the sections themselves other than to load them, notably at
p_vaddr + load_bias for .so's.

I tried looking at other architectures to see if I could at least determine what
the proper existing operations are, but came up emtpy. The ET_PLAT_INIT()
macro only updates regisers. This leaves me to assume that the interpreter
itself updates the .rela.dyn entries for shared libs. besides itself, but I can't find
where/how, and how to get it to do so for itself as well.

This only affects ET_DYN type of .so's, because ET_EXEC's don't get a load_bias
and are loaded at the vma for which they were compiled.

Sorry if I sound like a novice...

Thanks for any pointers anyone could provide...

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/