Pass HWCAP to ifunc resolver
authorAndreas Arnez <arnez@linux.vnet.ibm.com>
Fri, 9 Sep 2016 17:59:53 +0000 (19:59 +0200)
committerAndreas Arnez <arnez@linux.vnet.ibm.com>
Fri, 9 Sep 2016 17:59:53 +0000 (19:59 +0200)
commite1b2624a08fae1f669d879946d5041945b4dc248
tree2b3634606789cdb6b21fd1a0fe5e0e6b666f9a82
parent3569342c148dd1cb4b2e1bdafe64a9e3a3701813
Pass HWCAP to ifunc resolver

On various GNU Elf architectures, including AArch64, ARM, s390/s390x,
ppc32/64, and sparc32/64, the dynamic loader passes HWCAP as a parameter
to each ifunc resolver.  Currently there is an open glibc Bugzilla that
requests this to be generalized to all architectures:

  https://sourceware.org/bugzilla/show_bug.cgi?id=19766

And various ifunc resolvers already rely on receiving HWCAP.  Currently
GDB always calls an ifunc resolver without any arguments; thus the
resolver may receive garbage, and based on that, the resolver may decide
to return a function that is not suited for the given platform.

This patch always passes HWCAP to ifunc resolvers, even on systems where
the dynamic loader currently behaves otherwise.  The rationale is
that (1) the dynamic loader may get adjusted on those systems as well in
the future; (2) passing an unused argument should not cause a problem
with existing resolvers; and (3) the logic is much simpler without such
a distinction.

gdb/ChangeLog:

* elfread.c (auxv.h): New include.
(elf_gnu_ifunc_resolve_addr): Pass HWCAP to ifunc resolver.

gdb/testsuite/ChangeLog:

* gdb.base/gnu-ifunc-lib.c (resolver_hwcap): New external
variable declaration.
(gnu_ifunc): Add parameter hwcap.  Store it in resolver_hwcap.
* gdb.base/gnu-ifunc.c (resolver_hwcap): New global variable.
* gdb.base/gnu-ifunc.exp: Add test to verify that the resolver
received HWCAP as its argument.
gdb/ChangeLog
gdb/elfread.c
gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/gnu-ifunc-lib.c
gdb/testsuite/gdb.base/gnu-ifunc.c
gdb/testsuite/gdb.base/gnu-ifunc.exp
This page took 0.028206 seconds and 4 git commands to generate.