Commit 2ac00f17 authored by Deepa Dinamani's avatar Deepa Dinamani Committed by Thomas Gleixner

time: Delete do_sys_setimeofday()

struct timespec is not y2038 safe on 32 bit machines and needs to be
replaced with struct timespec64.

do_sys_timeofday() is just a wrapper function.  Replace all calls to this
function with direct calls to do_sys_timeofday64() instead and delete
do_sys_timeofday().
Signed-off-by: default avatarDeepa Dinamani <deepa.kernel@gmail.com>
Cc: y2038@lists.linaro.org
Cc: john.stultz@linaro.org
Cc: arnd@arndb.de
Cc: linux-alpha@vger.kernel.org
Link: http://lkml.kernel.org/r/1490555058-4603-2-git-send-email-deepa.kernel@gmail.comSigned-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent 5fc63f95
...@@ -1016,6 +1016,7 @@ SYSCALL_DEFINE2(osf_gettimeofday, struct timeval32 __user *, tv, ...@@ -1016,6 +1016,7 @@ SYSCALL_DEFINE2(osf_gettimeofday, struct timeval32 __user *, tv,
SYSCALL_DEFINE2(osf_settimeofday, struct timeval32 __user *, tv, SYSCALL_DEFINE2(osf_settimeofday, struct timeval32 __user *, tv,
struct timezone __user *, tz) struct timezone __user *, tz)
{ {
struct timespec64 kts64;
struct timespec kts; struct timespec kts;
struct timezone ktz; struct timezone ktz;
...@@ -1023,13 +1024,14 @@ SYSCALL_DEFINE2(osf_settimeofday, struct timeval32 __user *, tv, ...@@ -1023,13 +1024,14 @@ SYSCALL_DEFINE2(osf_settimeofday, struct timeval32 __user *, tv,
if (get_tv32((struct timeval *)&kts, tv)) if (get_tv32((struct timeval *)&kts, tv))
return -EFAULT; return -EFAULT;
kts.tv_nsec *= 1000; kts.tv_nsec *= 1000;
kts64 = timespec_to_timespec64(kts);
} }
if (tz) { if (tz) {
if (copy_from_user(&ktz, tz, sizeof(*tz))) if (copy_from_user(&ktz, tz, sizeof(*tz)))
return -EFAULT; return -EFAULT;
} }
return do_sys_settimeofday(tv ? &kts : NULL, tz ? &ktz : NULL); return do_sys_settimeofday64(tv ? &kts64 : NULL, tz ? &ktz : NULL);
} }
asmlinkage long sys_ni_posix_timers(void); asmlinkage long sys_ni_posix_timers(void);
......
...@@ -19,21 +19,6 @@ extern void do_gettimeofday(struct timeval *tv); ...@@ -19,21 +19,6 @@ extern void do_gettimeofday(struct timeval *tv);
extern int do_settimeofday64(const struct timespec64 *ts); extern int do_settimeofday64(const struct timespec64 *ts);
extern int do_sys_settimeofday64(const struct timespec64 *tv, extern int do_sys_settimeofday64(const struct timespec64 *tv,
const struct timezone *tz); const struct timezone *tz);
static inline int do_sys_settimeofday(const struct timespec *tv,
const struct timezone *tz)
{
struct timespec64 ts64;
if (!tv)
return do_sys_settimeofday64(NULL, tz);
if (!timespec_valid(tv))
return -EINVAL;
ts64 = timespec_to_timespec64(*tv);
return do_sys_settimeofday64(&ts64, tz);
}
/* /*
* Kernel time accessors * Kernel time accessors
*/ */
......
...@@ -108,8 +108,8 @@ COMPAT_SYSCALL_DEFINE2(gettimeofday, struct compat_timeval __user *, tv, ...@@ -108,8 +108,8 @@ COMPAT_SYSCALL_DEFINE2(gettimeofday, struct compat_timeval __user *, tv,
COMPAT_SYSCALL_DEFINE2(settimeofday, struct compat_timeval __user *, tv, COMPAT_SYSCALL_DEFINE2(settimeofday, struct compat_timeval __user *, tv,
struct timezone __user *, tz) struct timezone __user *, tz)
{ {
struct timespec64 new_ts;
struct timeval user_tv; struct timeval user_tv;
struct timespec new_ts;
struct timezone new_tz; struct timezone new_tz;
if (tv) { if (tv) {
...@@ -123,7 +123,7 @@ COMPAT_SYSCALL_DEFINE2(settimeofday, struct compat_timeval __user *, tv, ...@@ -123,7 +123,7 @@ COMPAT_SYSCALL_DEFINE2(settimeofday, struct compat_timeval __user *, tv,
return -EFAULT; return -EFAULT;
} }
return do_sys_settimeofday(tv ? &new_ts : NULL, tz ? &new_tz : NULL); return do_sys_settimeofday64(tv ? &new_ts : NULL, tz ? &new_tz : NULL);
} }
static int __compat_get_timeval(struct timeval *tv, const struct compat_timeval __user *ctv) static int __compat_get_timeval(struct timeval *tv, const struct compat_timeval __user *ctv)
......
...@@ -49,13 +49,16 @@ SYS_NI(alarm); ...@@ -49,13 +49,16 @@ SYS_NI(alarm);
SYSCALL_DEFINE2(clock_settime, const clockid_t, which_clock, SYSCALL_DEFINE2(clock_settime, const clockid_t, which_clock,
const struct timespec __user *, tp) const struct timespec __user *, tp)
{ {
struct timespec64 new_tp64;
struct timespec new_tp; struct timespec new_tp;
if (which_clock != CLOCK_REALTIME) if (which_clock != CLOCK_REALTIME)
return -EINVAL; return -EINVAL;
if (copy_from_user(&new_tp, tp, sizeof (*tp))) if (copy_from_user(&new_tp, tp, sizeof (*tp)))
return -EFAULT; return -EFAULT;
return do_sys_settimeofday(&new_tp, NULL);
new_tp64 = timespec_to_timespec64(new_tp);
return do_sys_settimeofday64(&new_tp64, NULL);
} }
SYSCALL_DEFINE2(clock_gettime, const clockid_t, which_clock, SYSCALL_DEFINE2(clock_gettime, const clockid_t, which_clock,
......
...@@ -214,7 +214,10 @@ static int posix_clock_realtime_get(clockid_t which_clock, struct timespec *tp) ...@@ -214,7 +214,10 @@ static int posix_clock_realtime_get(clockid_t which_clock, struct timespec *tp)
static int posix_clock_realtime_set(const clockid_t which_clock, static int posix_clock_realtime_set(const clockid_t which_clock,
const struct timespec *tp) const struct timespec *tp)
{ {
return do_sys_settimeofday(tp, NULL); struct timespec64 tp64;
tp64 = timespec_to_timespec64(*tp);
return do_sys_settimeofday64(&tp64, NULL);
} }
static int posix_clock_realtime_adj(const clockid_t which_clock, static int posix_clock_realtime_adj(const clockid_t which_clock,
......
...@@ -193,8 +193,8 @@ int do_sys_settimeofday64(const struct timespec64 *tv, const struct timezone *tz ...@@ -193,8 +193,8 @@ int do_sys_settimeofday64(const struct timespec64 *tv, const struct timezone *tz
SYSCALL_DEFINE2(settimeofday, struct timeval __user *, tv, SYSCALL_DEFINE2(settimeofday, struct timeval __user *, tv,
struct timezone __user *, tz) struct timezone __user *, tz)
{ {
struct timespec64 new_ts;
struct timeval user_tv; struct timeval user_tv;
struct timespec new_ts;
struct timezone new_tz; struct timezone new_tz;
if (tv) { if (tv) {
...@@ -212,7 +212,7 @@ SYSCALL_DEFINE2(settimeofday, struct timeval __user *, tv, ...@@ -212,7 +212,7 @@ SYSCALL_DEFINE2(settimeofday, struct timeval __user *, tv,
return -EFAULT; return -EFAULT;
} }
return do_sys_settimeofday(tv ? &new_ts : NULL, tz ? &new_tz : NULL); return do_sys_settimeofday64(tv ? &new_ts : NULL, tz ? &new_tz : NULL);
} }
SYSCALL_DEFINE1(adjtimex, struct timex __user *, txc_p) SYSCALL_DEFINE1(adjtimex, struct timex __user *, txc_p)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment