diff options
author | Lukasz Majewski <lukma@denx.de> | 2020-10-14 13:45:43 +0200 |
---|---|---|
committer | Lukasz Majewski <lukma@denx.de> | 2020-10-19 16:01:37 +0200 |
commit | 75c4044b9a49faaeec245cc3a79a390dde7c804e (patch) | |
tree | a7f8c05df5863fc8e25c255b415d338fcbd88f57 /sysdeps/unix/sysv/linux/time.c | |
parent | 0e6ee9c14385f13b8a1d0832a6c3e416b34b1f5d (diff) | |
download | glibc-75c4044b9a49faaeec245cc3a79a390dde7c804e.tar.gz glibc-75c4044b9a49faaeec245cc3a79a390dde7c804e.tar.xz glibc-75c4044b9a49faaeec245cc3a79a390dde7c804e.zip |
y2038: linux: Provide __time64 implementation
In the glibc the time function can use vDSO (on power and x86 the USE_IFUNC_TIME is defined), time syscall or 'default' time() from ./time/time.c (as a fallback). In this patch the last function (time) has been refactored and moved to ./sysdeps/unix/sysv/linux/time.c to be Linux specific. The new __time64 explicit 64 bit function for providing 64 bit value of seconds after epoch (by internally calling __clock_gettime64) has been introduced. Moreover, a 32 bit version - __time has been refactored to internally use __time64. The __time is now supposed to be used on systems still supporting 32 bit time (__TIMESIZE != 64) - hence the necessary check for time_t potential overflow. The iFUNC vDSO direct call optimization has been removed from both i686 and powerpc32 (USE_IFUNC_TIME is not defined for those architectures anymore). The Linux kernel does not provide a y2038 safe implementation of time neither it plans to provide it in the future, __clock_gettime64 should be used instead. Keeping support for this optimization would require to handle another build permutation (!__ASSUME_TIME64_SYSCALLS && USE_IFUNC_TIME which adds more complexity and has limited use (since the idea is to eventually have a y2038 safe glibc build). Build tests: ./src/scripts/build-many-glibcs.py glibcs Run-time tests: - Run specific tests on ARM/x86 32bit systems (qemu): https://github.com/lmajewski/meta-y2038 and run tests: https://github.com/lmajewski/y2038-tests/commits/master Above tests were performed with Y2038 redirection applied as well as without to test proper usage of both __time64 and __time. Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'sysdeps/unix/sysv/linux/time.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/time.c | 38 |
1 files changed, 37 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/time.c b/sysdeps/unix/sysv/linux/time.c index 9d8e573c0a..df5d4ca0fb 100644 --- a/sysdeps/unix/sysv/linux/time.c +++ b/sysdeps/unix/sysv/linux/time.c @@ -47,5 +47,41 @@ time (time_t *t) } # endif /* !SHARED */ #else /* USE_IFUNC_TIME */ -# include <time/time.c> +# include <time.h> +# include <time-clockid.h> +# include <errno.h> + +/* Return the time now, and store it in *TIMER if not NULL. */ + +__time64_t +__time64 (__time64_t *timer) +{ + struct __timespec64 ts; + __clock_gettime64 (TIME_CLOCK_GETTIME_CLOCKID, &ts); + + if (timer != NULL) + *timer = ts.tv_sec; + return ts.tv_sec; +} + +# if __TIMESIZE != 64 +libc_hidden_def (__time64) + +time_t +__time (time_t *timer) +{ + __time64_t t = __time64 (NULL); + + if (! in_time_t_range (t)) + { + __set_errno (EOVERFLOW); + return -1; + } + + if (timer != NULL) + *timer = t; + return t; +} +# endif +weak_alias (__time, time) #endif |