mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-13 00:30:07 +00:00
e0ed2fb40a
With copy relocation, address of protected data defined in the shared library may be external. Compiler shouldn't asssume protected data will be local. But due to https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65248 __attribute__((visibility("protected"))) doesn't work correctly, we need to use asm (".protected xxx") instead. * elf/ifuncdep2.c (global): Replace __attribute__((visibility("protected"))) with asm (".protected global"). * elf/ifuncmod1.c (global): Likewise. * elf/ifuncmod5.c (global): Likewise.
57 lines
869 B
C
57 lines
869 B
C
/* Test 3 STT_GNU_IFUNC symbols. */
|
|
|
|
#include "ifunc-sel.h"
|
|
|
|
int global = -1;
|
|
/* Can't use __attribute__((visibility("protected"))) until the GCC bug:
|
|
|
|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65248
|
|
|
|
is fixed. */
|
|
asm (".protected global");
|
|
|
|
static int
|
|
one (void)
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
static int
|
|
minus_one (void)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
static int
|
|
zero (void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void * foo1_ifunc (void) __asm__ ("foo1");
|
|
__asm__(".type foo1, %gnu_indirect_function");
|
|
|
|
void *
|
|
foo1_ifunc (void)
|
|
{
|
|
return ifunc_sel (one, minus_one, zero);
|
|
}
|
|
|
|
void * foo2_ifunc (void) __asm__ ("foo2");
|
|
__asm__(".type foo2, %gnu_indirect_function");
|
|
|
|
void *
|
|
foo2_ifunc (void)
|
|
{
|
|
return ifunc_sel (minus_one, one, zero);
|
|
}
|
|
|
|
void * foo3_ifunc (void) __asm__ ("foo3");
|
|
__asm__(".type foo3, %gnu_indirect_function");
|
|
|
|
void *
|
|
foo3_ifunc (void)
|
|
{
|
|
return ifunc_sel (one, zero, minus_one);
|
|
}
|