1 // SPDX-License-Identifier: GPL-2.0
3 * Dummy stubs used when CONFIG_POSIX_TIMERS=n
5 * Created by: Nicolas Pitre, July 2016
6 * Copyright: (C) 2016 Linaro Limited
9 #include <linux/linkage.h>
10 #include <linux/kernel.h>
11 #include <linux/sched.h>
12 #include <linux/errno.h>
13 #include <linux/syscalls.h>
14 #include <linux/ktime.h>
15 #include <linux/timekeeping.h>
16 #include <linux/posix-timers.h>
17 #include <linux/time_namespace.h>
18 #include <linux/compat.h>
20 #ifdef CONFIG_ARCH_HAS_SYSCALL_WRAPPER
21 /* Architectures may override SYS_NI and COMPAT_SYS_NI */
22 #include <asm/syscall_wrapper.h>
25 asmlinkage long sys_ni_posix_timers(void)
27 pr_err_once("process %d (%s) attempted a POSIX timer syscall "
28 "while CONFIG_POSIX_TIMERS is not set\n",
29 current->pid, current->comm);
34 #define SYS_NI(name) SYSCALL_ALIAS(sys_##name, sys_ni_posix_timers)
38 #define COMPAT_SYS_NI(name) SYSCALL_ALIAS(compat_sys_##name, sys_ni_posix_timers)
42 SYS_NI(timer_gettime);
43 SYS_NI(timer_getoverrun);
44 SYS_NI(timer_settime);
46 SYS_NI(clock_adjtime);
49 SYS_NI(clock_adjtime32);
50 #ifdef __ARCH_WANT_SYS_ALARM
55 * We preserve minimal support for CLOCK_REALTIME and CLOCK_MONOTONIC
56 * as it is easy to remain compatible with little code. CLOCK_BOOTTIME
57 * is also included for convenience as at least systemd uses it.
60 SYSCALL_DEFINE2(clock_settime, const clockid_t, which_clock,
61 const struct __kernel_timespec __user *, tp)
63 struct timespec64 new_tp;
65 if (which_clock != CLOCK_REALTIME)
67 if (get_timespec64(&new_tp, tp))
70 return do_sys_settimeofday64(&new_tp, NULL);
73 int do_clock_gettime(clockid_t which_clock, struct timespec64 *tp)
75 switch (which_clock) {
77 ktime_get_real_ts64(tp);
81 timens_add_monotonic(tp);
84 ktime_get_boottime_ts64(tp);
85 timens_add_boottime(tp);
93 SYSCALL_DEFINE2(clock_gettime, const clockid_t, which_clock,
94 struct __kernel_timespec __user *, tp)
97 struct timespec64 kernel_tp;
99 ret = do_clock_gettime(which_clock, &kernel_tp);
103 if (put_timespec64(&kernel_tp, tp))
108 SYSCALL_DEFINE2(clock_getres, const clockid_t, which_clock, struct __kernel_timespec __user *, tp)
110 struct timespec64 rtn_tp = {
112 .tv_nsec = hrtimer_resolution,
115 switch (which_clock) {
117 case CLOCK_MONOTONIC:
119 if (put_timespec64(&rtn_tp, tp))
127 SYSCALL_DEFINE4(clock_nanosleep, const clockid_t, which_clock, int, flags,
128 const struct __kernel_timespec __user *, rqtp,
129 struct __kernel_timespec __user *, rmtp)
134 switch (which_clock) {
136 case CLOCK_MONOTONIC:
143 if (get_timespec64(&t, rqtp))
145 if (!timespec64_valid(&t))
147 if (flags & TIMER_ABSTIME)
149 current->restart_block.nanosleep.type = rmtp ? TT_NATIVE : TT_NONE;
150 current->restart_block.nanosleep.rmtp = rmtp;
151 texp = timespec64_to_ktime(t);
152 if (flags & TIMER_ABSTIME)
153 texp = timens_ktime_to_host(which_clock, texp);
154 return hrtimer_nanosleep(texp, flags & TIMER_ABSTIME ?
155 HRTIMER_MODE_ABS : HRTIMER_MODE_REL,
160 COMPAT_SYS_NI(timer_create);
163 #if defined(CONFIG_COMPAT) || defined(CONFIG_ALPHA)
164 COMPAT_SYS_NI(getitimer);
165 COMPAT_SYS_NI(setitimer);
168 #ifdef CONFIG_COMPAT_32BIT_TIME
169 SYS_NI(timer_settime32);
170 SYS_NI(timer_gettime32);
172 SYSCALL_DEFINE2(clock_settime32, const clockid_t, which_clock,
173 struct old_timespec32 __user *, tp)
175 struct timespec64 new_tp;
177 if (which_clock != CLOCK_REALTIME)
179 if (get_old_timespec32(&new_tp, tp))
182 return do_sys_settimeofday64(&new_tp, NULL);
185 SYSCALL_DEFINE2(clock_gettime32, clockid_t, which_clock,
186 struct old_timespec32 __user *, tp)
189 struct timespec64 kernel_tp;
191 ret = do_clock_gettime(which_clock, &kernel_tp);
195 if (put_old_timespec32(&kernel_tp, tp))
200 SYSCALL_DEFINE2(clock_getres_time32, clockid_t, which_clock,
201 struct old_timespec32 __user *, tp)
203 struct timespec64 rtn_tp = {
205 .tv_nsec = hrtimer_resolution,
208 switch (which_clock) {
210 case CLOCK_MONOTONIC:
212 if (put_old_timespec32(&rtn_tp, tp))
220 SYSCALL_DEFINE4(clock_nanosleep_time32, clockid_t, which_clock, int, flags,
221 struct old_timespec32 __user *, rqtp,
222 struct old_timespec32 __user *, rmtp)
227 switch (which_clock) {
229 case CLOCK_MONOTONIC:
236 if (get_old_timespec32(&t, rqtp))
238 if (!timespec64_valid(&t))
240 if (flags & TIMER_ABSTIME)
242 current->restart_block.nanosleep.type = rmtp ? TT_COMPAT : TT_NONE;
243 current->restart_block.nanosleep.compat_rmtp = rmtp;
244 texp = timespec64_to_ktime(t);
245 if (flags & TIMER_ABSTIME)
246 texp = timens_ktime_to_host(which_clock, texp);
247 return hrtimer_nanosleep(texp, flags & TIMER_ABSTIME ?
248 HRTIMER_MODE_ABS : HRTIMER_MODE_REL,