]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
Add support for weak symbols to the kernel linkers. It means that
authorKonstantin Belousov <kib@FreeBSD.org>
Sun, 20 Sep 2015 01:27:59 +0000 (01:27 +0000)
committerKonstantin Belousov <kib@FreeBSD.org>
Sun, 20 Sep 2015 01:27:59 +0000 (01:27 +0000)
commitcff8c6f2d1f8ee2cfd12b5a6f67d196b7c27194f
treea3938733f5d6f30948a42db47e8b9ee2521c366d
parentbb957021d768ec7b0770f25c36ad01a1439f585c
Add support for weak symbols to the kernel linkers.  It means that
linkers no longer raise an error when undefined weak symbols are
found, but relocate as if the symbol value was 0.  Note that we do not
repeat the mistake of userspace dynamic linker of making the symbol
lookup prefer non-weak symbol definition over the weak one, if both
are available.  In fact, kernel linker uses the first definition
found, and ignores duplicates.

Signature of the elf_lookup() and elf_obj_lookup() functions changed
to split result/error code and the symbol address returned.
Otherwise, it is impossible to return zero address as the symbol
value, to MD relocation code.  This explains the mechanical changes in
elf_machdep.c sources.

The powerpc64 R_PPC_JMP_SLOT handler did not checked error from the
lookup() call, the patch leaves the code as is (untested).

Reported by: glebius
Sponsored by: The FreeBSD Foundation
MFC after: 1 week
sys/amd64/amd64/elf_machdep.c
sys/arm/arm/elf_machdep.c
sys/i386/i386/elf_machdep.c
sys/kern/link_elf.c
sys/kern/link_elf_obj.c
sys/mips/mips/elf_machdep.c
sys/powerpc/powerpc/elf32_machdep.c
sys/powerpc/powerpc/elf64_machdep.c
sys/sparc64/sparc64/elf_machdep.c
sys/sys/linker.h