linux: Use GLRO(dl_vdso_gettimeofday) on gettimeofday
Checks
Context |
Check |
Description |
redhat-pt-bot/TryBot-apply_patch |
success
|
Patch applied to master at the time it was sent
|
linaro-tcwg-bot/tcwg_glibc_build--master-aarch64 |
fail
|
Build failed
|
redhat-pt-bot/TryBot-32bit |
success
|
Build for i686
|
linaro-tcwg-bot/tcwg_glibc_build--master-arm |
success
|
Build passed
|
linaro-tcwg-bot/tcwg_glibc_check--master-arm |
success
|
Test passed
|
Commit Message
The BZ#24967 fix (1bdda52fe92fd01b424c) missed the gettimeofday for
architectures that define USE_IFUNC_GETTIMEOFDAY. Although it is not
an issue, since there is no pointer mangling, there is also no need
to call dl_vdso_vsym since the vDSO setup was already done by the
loader.
Checked on x86_64-linux-gnu and i686-linux-gnu.
---
sysdeps/unix/sysv/linux/gettimeofday.c | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
Comments
* Adhemerval Zanella:
> The BZ#24967 fix (1bdda52fe92fd01b424c) missed the gettimeofday for
> architectures that define USE_IFUNC_GETTIMEOFDAY. Although it is not
> an issue, since there is no pointer mangling, there is also no need
> to call dl_vdso_vsym since the vDSO setup was already done by the
> loader.
What's the impact? Is this an actually visible bug (like always
performing the syscall)?
Thanks,
Florian
On 04/09/24 14:09, Florian Weimer wrote:
> * Adhemerval Zanella:
>
>> The BZ#24967 fix (1bdda52fe92fd01b424c) missed the gettimeofday for
>> architectures that define USE_IFUNC_GETTIMEOFDAY. Although it is not
>> an issue, since there is no pointer mangling, there is also no need
>> to call dl_vdso_vsym since the vDSO setup was already done by the
>> loader.
>
> What's the impact? Is this an actually visible bug (like always
> performing the syscall)?
I don't think this is a bug, it will just redo the dl_vdso_vsym
already done by the loader (so waste some cycles) when gettimeofday
is resolved.
@@ -36,12 +36,10 @@ __gettimeofday_syscall (struct timeval *restrict tv, void *restrict tz)
return INLINE_SYSCALL_CALL (gettimeofday, tv, tz);
}
-# undef INIT_ARCH
-# define INIT_ARCH() \
- void *vdso_gettimeofday = dl_vdso_vsym (HAVE_GETTIMEOFDAY_VSYSCALL)
libc_ifunc (__gettimeofday,
- vdso_gettimeofday ? VDSO_IFUNC_RET (vdso_gettimeofday)
- : (void *) __gettimeofday_syscall)
+ GLRO(dl_vdso_gettimeofday) != NULL
+ ? VDSO_IFUNC_RET (GLRO(dl_vdso_gettimeofday))
+ : (void *) __gettimeofday_syscall)
# else
int