y2038: vdso: change timeval to __kernel_old_timeval
authorArnd Bergmann <arnd@arndb.de>
Thu, 23 Nov 2017 13:29:37 +0000 (14:29 +0100)
committerArnd Bergmann <arnd@arndb.de>
Fri, 15 Nov 2019 13:38:27 +0000 (14:38 +0100)
The gettimeofday() function in vdso uses the traditional 'timeval'
structure layout, which will be incompatible with future versions of
glibc on 32-bit architectures that use a 64-bit time_t.

This interface is problematic for y2038, when time_t overflows on 32-bit
architectures, but the plan so far is that a libc with 64-bit time_t
will not call into the gettimeofday() vdso helper at all, and only
have a method for entering clock_gettime().  This means we don't have
to fix it here, though we probably want to add a new clock_gettime()
entry point using a 64-bit version of 'struct timespec' at some point.

Changing the vdso code to use __kernel_old_timeval helps isolate
this usage from the other ones that still need to be fixed properly,
and it gets us closer to removing the 'timeval' definition from the
kernel sources.

Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
arch/nds32/kernel/vdso/gettimeofday.c
arch/powerpc/kernel/asm-offsets.c
arch/sparc/vdso/vclock_gettime.c
arch/x86/entry/vsyscall/vsyscall_64.c
arch/x86/um/vdso/um_vdso.c

index b02581891c33c7288d1db33a58dbeff5eb1ad6cf..1e69fd5b067bfd84aa6325c8635e12b98c26d876 100644 (file)
@@ -230,10 +230,10 @@ notrace int __vdso_clock_getres(clockid_t clk_id, struct timespec *res)
        return 0;
 }
 
-static notrace inline int gettimeofday_fallback(struct timeval *_tv,
+static notrace inline int gettimeofday_fallback(struct __kernel_old_timeval *_tv,
                                                struct timezone *_tz)
 {
-       register struct timeval *tv asm("$r0") = _tv;
+       register struct __kernel_old_timeval *tv asm("$r0") = _tv;
        register struct timezone *tz asm("$r1") = _tz;
        register int ret asm("$r0");
 
@@ -246,7 +246,7 @@ static notrace inline int gettimeofday_fallback(struct timeval *_tv,
        return ret;
 }
 
-notrace int __vdso_gettimeofday(struct timeval *tv, struct timezone *tz)
+notrace int __vdso_gettimeofday(struct __kernel_old_timeval *tv, struct timezone *tz)
 {
        struct timespec ts;
        struct vdso_data *vdata;
index 484f54dab24753c5f42298bb4a33ff9892620248..827f4c354e13ef36cf0f403f8dd3da5ea44ca0e3 100644 (file)
@@ -393,8 +393,8 @@ int main(void)
        OFFSET(CFG_DCACHE_LOGBLOCKSZ, vdso_data, dcache_log_block_size);
 #ifdef CONFIG_PPC64
        OFFSET(CFG_SYSCALL_MAP64, vdso_data, syscall_map_64);
-       OFFSET(TVAL64_TV_SEC, timeval, tv_sec);
-       OFFSET(TVAL64_TV_USEC, timeval, tv_usec);
+       OFFSET(TVAL64_TV_SEC, __kernel_old_timeval, tv_sec);
+       OFFSET(TVAL64_TV_USEC, __kernel_old_timeval, tv_usec);
        OFFSET(TVAL32_TV_SEC, old_timeval32, tv_sec);
        OFFSET(TVAL32_TV_USEC, old_timeval32, tv_usec);
        OFFSET(TSPC64_TV_SEC, timespec, tv_sec);
@@ -402,8 +402,8 @@ int main(void)
        OFFSET(TSPC32_TV_SEC, old_timespec32, tv_sec);
        OFFSET(TSPC32_TV_NSEC, old_timespec32, tv_nsec);
 #else
-       OFFSET(TVAL32_TV_SEC, timeval, tv_sec);
-       OFFSET(TVAL32_TV_USEC, timeval, tv_usec);
+       OFFSET(TVAL32_TV_SEC, __kernel_old_timeval, tv_sec);
+       OFFSET(TVAL32_TV_USEC, __kernel_old_timeval, tv_usec);
        OFFSET(TSPC32_TV_SEC, timespec, tv_sec);
        OFFSET(TSPC32_TV_NSEC, timespec, tv_nsec);
 #endif
index fc5bdd14de7686af166504a8024597c28d9a6857..a20c5030578d109685b1783582e6820de5d84b3a 100644 (file)
@@ -74,7 +74,7 @@ notrace static long vdso_fallback_gettime(long clock, struct timespec *ts)
        return o0;
 }
 
-notrace static long vdso_fallback_gettimeofday(struct timeval *tv, struct timezone *tz)
+notrace static long vdso_fallback_gettimeofday(struct __kernel_old_timeval *tv, struct timezone *tz)
 {
        register long num __asm__("g1") = __NR_gettimeofday;
        register long o0 __asm__("o0") = (long) tv;
@@ -304,7 +304,7 @@ __vdso_clock_gettime_stick(clockid_t clock, struct timespec *ts)
 }
 
 notrace int
-__vdso_gettimeofday(struct timeval *tv, struct timezone *tz)
+__vdso_gettimeofday(struct __kernel_old_timeval *tv, struct timezone *tz)
 {
        struct vvar_data *vvd = get_vvar_data();
 
@@ -312,7 +312,7 @@ __vdso_gettimeofday(struct timeval *tv, struct timezone *tz)
                if (likely(tv != NULL)) {
                        union tstv_t {
                                struct timespec ts;
-                               struct timeval tv;
+                               struct __kernel_old_timeval tv;
                        } *tstv = (union tstv_t *) tv;
                        do_realtime(vvd, &tstv->ts);
                        /*
@@ -336,11 +336,11 @@ __vdso_gettimeofday(struct timeval *tv, struct timezone *tz)
        return vdso_fallback_gettimeofday(tv, tz);
 }
 int
-gettimeofday(struct timeval *, struct timezone *)
+gettimeofday(struct __kernel_old_timeval *, struct timezone *)
        __attribute__((weak, alias("__vdso_gettimeofday")));
 
 notrace int
-__vdso_gettimeofday_stick(struct timeval *tv, struct timezone *tz)
+__vdso_gettimeofday_stick(struct __kernel_old_timeval *tv, struct timezone *tz)
 {
        struct vvar_data *vvd = get_vvar_data();
 
@@ -348,7 +348,7 @@ __vdso_gettimeofday_stick(struct timeval *tv, struct timezone *tz)
                if (likely(tv != NULL)) {
                        union tstv_t {
                                struct timespec ts;
-                               struct timeval tv;
+                               struct __kernel_old_timeval tv;
                        } *tstv = (union tstv_t *) tv;
                        do_realtime_stick(vvd, &tstv->ts);
                        /*
index e7c596dea947e3e09f4c74aeac426cf3687cfe39..76e62bcb8d87c0d124857fbf3264d72752e77fda 100644 (file)
@@ -184,7 +184,7 @@ bool emulate_vsyscall(unsigned long error_code,
         */
        switch (vsyscall_nr) {
        case 0:
-               if (!write_ok_or_segv(regs->di, sizeof(struct timeval)) ||
+               if (!write_ok_or_segv(regs->di, sizeof(struct __kernel_old_timeval)) ||
                    !write_ok_or_segv(regs->si, sizeof(struct timezone))) {
                        ret = -EFAULT;
                        goto check_fault;
index 891868756a51fed9f22c7f3ddfdc38c8ef4503d4..845336c11364c40b088bafbef6d8426471a89841 100644 (file)
@@ -25,7 +25,7 @@ int __vdso_clock_gettime(clockid_t clock, struct timespec *ts)
 int clock_gettime(clockid_t, struct timespec *)
        __attribute__((weak, alias("__vdso_clock_gettime")));
 
-int __vdso_gettimeofday(struct timeval *tv, struct timezone *tz)
+int __vdso_gettimeofday(struct __kernel_old_timeval *tv, struct timezone *tz)
 {
        long ret;
 
@@ -34,7 +34,7 @@ int __vdso_gettimeofday(struct timeval *tv, struct timezone *tz)
 
        return ret;
 }
-int gettimeofday(struct timeval *, struct timezone *)
+int gettimeofday(struct __kernel_old_timeval *, struct timezone *)
        __attribute__((weak, alias("__vdso_gettimeofday")));
 
 time_t __vdso_time(time_t *t)