This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] Remove unnecessary IFUNC dispatch for __memset_chk.


On Tue, Aug 11, 2015 at 12:03 PM, OndÅej BÃlka <neleai@seznam.cz> wrote:
> On Tue, Aug 11, 2015 at 10:00:39AM -0700, H.J. Lu wrote:
>> On Tue, Aug 11, 2015 at 1:04 AM, OndÅej BÃlka <neleai@seznam.cz> wrote:
>> >>
>> > Simple, we return null. Following causes segmentation fault.
>> >
>> > gcc -fPIC -shared x.c -o libx.so
>> > void foo (int x) __attribute__ ((ifunc ("resolve_foo")));
>> >
>> > int foo_impl(int x)
>> ^^^^^^^^^^^^^^^^^^^^
>>
>> This should be static.
>>
> Didn't know its explicitly forbidden to use nonstatic resolvers. Do we document that requirement somewhere?
> If not then we should add it to documentation.

It makes no senses for IFUNC selector to return the address of
a global function, which may be preempted at run-time.


-- 
H.J.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]