19454b2d8SWarner Losh /*-
251369649SPedro F. Giffuni * SPDX-License-Identifier: BSD-3-Clause
351369649SPedro F. Giffuni *
4df8bae1dSRodney W. Grimes * Copyright (c) 1982, 1986, 1989, 1993
5df8bae1dSRodney W. Grimes * The Regents of the University of California. All rights reserved.
6df8bae1dSRodney W. Grimes *
7df8bae1dSRodney W. Grimes * Redistribution and use in source and binary forms, with or without
8df8bae1dSRodney W. Grimes * modification, are permitted provided that the following conditions
9df8bae1dSRodney W. Grimes * are met:
10df8bae1dSRodney W. Grimes * 1. Redistributions of source code must retain the above copyright
11df8bae1dSRodney W. Grimes * notice, this list of conditions and the following disclaimer.
12df8bae1dSRodney W. Grimes * 2. Redistributions in binary form must reproduce the above copyright
13df8bae1dSRodney W. Grimes * notice, this list of conditions and the following disclaimer in the
14df8bae1dSRodney W. Grimes * documentation and/or other materials provided with the distribution.
1569a28758SEd Maste * 3. Neither the name of the University nor the names of its contributors
16df8bae1dSRodney W. Grimes * may be used to endorse or promote products derived from this software
17df8bae1dSRodney W. Grimes * without specific prior written permission.
18df8bae1dSRodney W. Grimes *
19df8bae1dSRodney W. Grimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20df8bae1dSRodney W. Grimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21df8bae1dSRodney W. Grimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22df8bae1dSRodney W. Grimes * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23df8bae1dSRodney W. Grimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24df8bae1dSRodney W. Grimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25df8bae1dSRodney W. Grimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26df8bae1dSRodney W. Grimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27df8bae1dSRodney W. Grimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28df8bae1dSRodney W. Grimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29df8bae1dSRodney W. Grimes * SUCH DAMAGE.
30df8bae1dSRodney W. Grimes */
31df8bae1dSRodney W. Grimes
32677b542eSDavid E. O'Brien #include <sys/cdefs.h>
33de56aee0SKonstantin Belousov #include "opt_ktrace.h"
34de56aee0SKonstantin Belousov
35df8bae1dSRodney W. Grimes #include <sys/param.h>
36e96c1fdcSPeter Wemm #include <sys/systm.h>
37aff5bcb1SDavid Xu #include <sys/limits.h>
38f645b0b5SPoul-Henning Kamp #include <sys/clock.h>
39fb919e4dSMark Murray #include <sys/lock.h>
40fb919e4dSMark Murray #include <sys/mutex.h>
41d2d3e875SBruce Evans #include <sys/sysproto.h>
42df8bae1dSRodney W. Grimes #include <sys/resourcevar.h>
43797f2d22SPoul-Henning Kamp #include <sys/signalvar.h>
44df8bae1dSRodney W. Grimes #include <sys/kernel.h>
45098176f0SDavide Italiano #include <sys/sleepqueue.h>
46efa42cbcSPaul Saab #include <sys/syscallsubr.h>
4777e718f7SDavid Xu #include <sys/sysctl.h>
48acd3428bSRobert Watson #include <sys/priv.h>
49df8bae1dSRodney W. Grimes #include <sys/proc.h>
506aeb05d7STom Rhodes #include <sys/posix4.h>
51708e7684SPeter Wemm #include <sys/time.h>
5286857b36SDavid Xu #include <sys/timers.h>
5391266b96SPoul-Henning Kamp #include <sys/timetc.h>
54df8bae1dSRodney W. Grimes #include <sys/vnode.h>
55de56aee0SKonstantin Belousov #ifdef KTRACE
56de56aee0SKonstantin Belousov #include <sys/ktrace.h>
57de56aee0SKonstantin Belousov #endif
58fb919e4dSMark Murray
595b870b7bSPeter Wemm #include <vm/vm.h>
605b870b7bSPeter Wemm #include <vm/vm_extern.h>
616bb132baSBrooks Davis #include <vm/uma.h>
62df8bae1dSRodney W. Grimes
6386857b36SDavid Xu #define MAX_CLOCKS (CLOCK_MONOTONIC+1)
64d65f1abcSDavid Xu #define CPUCLOCK_BIT 0x80000000
65d65f1abcSDavid Xu #define CPUCLOCK_PROCESS_BIT 0x40000000
66d65f1abcSDavid Xu #define CPUCLOCK_ID_MASK (~(CPUCLOCK_BIT|CPUCLOCK_PROCESS_BIT))
67d65f1abcSDavid Xu #define MAKE_THREAD_CPUCLOCK(tid) (CPUCLOCK_BIT|(tid))
68d65f1abcSDavid Xu #define MAKE_PROCESS_CPUCLOCK(pid) \
69d65f1abcSDavid Xu (CPUCLOCK_BIT|CPUCLOCK_PROCESS_BIT|(pid))
7086857b36SDavid Xu
718b3c4231SMark Johnston #define NS_PER_SEC 1000000000
728b3c4231SMark Johnston
7386857b36SDavid Xu static struct kclock posix_clocks[MAX_CLOCKS];
7486857b36SDavid Xu static uma_zone_t itimer_zone = NULL;
7586857b36SDavid Xu
76df8bae1dSRodney W. Grimes /*
77df8bae1dSRodney W. Grimes * Time of day and interval timer support.
78df8bae1dSRodney W. Grimes *
79df8bae1dSRodney W. Grimes * These routines provide the kernel entry points to get and set
80df8bae1dSRodney W. Grimes * the time-of-day and per-process interval timers. Subroutines
81df8bae1dSRodney W. Grimes * here provide support for adding and subtracting timeval structures
82df8bae1dSRodney W. Grimes * and decrementing interval timers, optionally reloading the interval
83df8bae1dSRodney W. Grimes * timers when they expire.
84df8bae1dSRodney W. Grimes */
85df8bae1dSRodney W. Grimes
867edfb592SJohn Baldwin static int settime(struct thread *, struct timeval *);
874d77a549SAlfred Perlstein static void timevalfix(struct timeval *);
883f8455b0SEric van Gyzen static int user_clock_nanosleep(struct thread *td, clockid_t clock_id,
893f8455b0SEric van Gyzen int flags, const struct timespec *ua_rqtp,
903f8455b0SEric van Gyzen struct timespec *ua_rmtp);
9194c8fcd8SPeter Wemm
9286857b36SDavid Xu static void itimer_start(void);
9386857b36SDavid Xu static int itimer_init(void *, int, int);
9486857b36SDavid Xu static void itimer_fini(void *, int);
9586857b36SDavid Xu static void itimer_enter(struct itimer *);
9686857b36SDavid Xu static void itimer_leave(struct itimer *);
97843b99c6SDavid Xu static struct itimer *itimer_find(struct proc *, int);
9886857b36SDavid Xu static void itimers_alloc(struct proc *);
9986857b36SDavid Xu static int realtimer_create(struct itimer *);
10086857b36SDavid Xu static int realtimer_gettime(struct itimer *, struct itimerspec *);
10186857b36SDavid Xu static int realtimer_settime(struct itimer *, int,
10286857b36SDavid Xu struct itimerspec *, struct itimerspec *);
10386857b36SDavid Xu static int realtimer_delete(struct itimer *);
10456c06c4bSDavid Xu static void realtimer_clocktime(clockid_t, struct timespec *);
10586857b36SDavid Xu static void realtimer_expire(void *);
1065cc1d199SKonstantin Belousov static void realtimer_expire_l(struct itimer *it, bool proc_locked);
10786857b36SDavid Xu
108ef221ff6SMark Johnston static void realitexpire(void *arg);
109ef221ff6SMark Johnston
110e68c6191SKonstantin Belousov static int register_posix_clock(int, const struct kclock *);
1118ff2b41cSMark Johnston static void itimer_fire(struct itimer *it);
1128ff2b41cSMark Johnston static int itimespecfix(struct timespec *ts);
11386857b36SDavid Xu
11486857b36SDavid Xu #define CLOCK_CALL(clock, call, arglist) \
11586857b36SDavid Xu ((*posix_clocks[clock].call) arglist)
11686857b36SDavid Xu
11786857b36SDavid Xu SYSINIT(posix_timer, SI_SUB_P1003_1B, SI_ORDER_FIRST+4, itimer_start, NULL);
11886857b36SDavid Xu
11994c8fcd8SPeter Wemm static int
settime(struct thread * td,struct timeval * tv)12091afe087SPoul-Henning Kamp settime(struct thread *td, struct timeval *tv)
12194c8fcd8SPeter Wemm {
122fcae3aa6SNick Sayer struct timeval delta, tv1, tv2;
123c0bd94a7SNick Sayer static struct timeval maxtime, laststep;
1247ec73f64SPoul-Henning Kamp struct timespec ts;
12594c8fcd8SPeter Wemm
1269c8fff87SBruce Evans microtime(&tv1);
12700af9731SPoul-Henning Kamp delta = *tv;
12800af9731SPoul-Henning Kamp timevalsub(&delta, &tv1);
12994c8fcd8SPeter Wemm
13094c8fcd8SPeter Wemm /*
1319c8fff87SBruce Evans * If the system is secure, we do not allow the time to be
132fcae3aa6SNick Sayer * set to a value earlier than 1 second less than the highest
133fcae3aa6SNick Sayer * time we have yet seen. The worst a miscreant can do in
134fcae3aa6SNick Sayer * this circumstance is "freeze" time. He couldn't go
135fcae3aa6SNick Sayer * back to the past.
136c0bd94a7SNick Sayer *
137c0bd94a7SNick Sayer * We similarly do not allow the clock to be stepped more
138c0bd94a7SNick Sayer * than one second, nor more than once per second. This allows
139c0bd94a7SNick Sayer * a miscreant to make the clock march double-time, but no worse.
14094c8fcd8SPeter Wemm */
1417edfb592SJohn Baldwin if (securelevel_gt(td->td_ucred, 1) != 0) {
142fcae3aa6SNick Sayer if (delta.tv_sec < 0 || delta.tv_usec < 0) {
1433f92429aSMatt Jacob /*
144c0bd94a7SNick Sayer * Update maxtime to latest time we've seen.
1453f92429aSMatt Jacob */
146fcae3aa6SNick Sayer if (tv1.tv_sec > maxtime.tv_sec)
147fcae3aa6SNick Sayer maxtime = tv1;
148fcae3aa6SNick Sayer tv2 = *tv;
149fcae3aa6SNick Sayer timevalsub(&tv2, &maxtime);
150fcae3aa6SNick Sayer if (tv2.tv_sec < -1) {
1513f92429aSMatt Jacob tv->tv_sec = maxtime.tv_sec - 1;
152fcae3aa6SNick Sayer printf("Time adjustment clamped to -1 second\n");
153fcae3aa6SNick Sayer }
1543f92429aSMatt Jacob } else {
1551822421cSKonstantin Belousov if (tv1.tv_sec == laststep.tv_sec)
156c0bd94a7SNick Sayer return (EPERM);
157c0bd94a7SNick Sayer if (delta.tv_sec > 1) {
158c0bd94a7SNick Sayer tv->tv_sec = tv1.tv_sec + 1;
159c0bd94a7SNick Sayer printf("Time adjustment clamped to +1 second\n");
160c0bd94a7SNick Sayer }
161c0bd94a7SNick Sayer laststep = *tv;
162fcae3aa6SNick Sayer }
1639c8fff87SBruce Evans }
1649c8fff87SBruce Evans
1657ec73f64SPoul-Henning Kamp ts.tv_sec = tv->tv_sec;
1667ec73f64SPoul-Henning Kamp ts.tv_nsec = tv->tv_usec * 1000;
16791266b96SPoul-Henning Kamp tc_setclock(&ts);
16894c8fcd8SPeter Wemm resettodr();
16994c8fcd8SPeter Wemm return (0);
17094c8fcd8SPeter Wemm }
17194c8fcd8SPeter Wemm
17294c8fcd8SPeter Wemm #ifndef _SYS_SYSPROTO_H_
173d65f1abcSDavid Xu struct clock_getcpuclockid2_args {
174d65f1abcSDavid Xu id_t id;
175d65f1abcSDavid Xu int which,
176d65f1abcSDavid Xu clockid_t *clock_id;
177d65f1abcSDavid Xu };
178d65f1abcSDavid Xu #endif
179d65f1abcSDavid Xu /* ARGSUSED */
180d65f1abcSDavid Xu int
sys_clock_getcpuclockid2(struct thread * td,struct clock_getcpuclockid2_args * uap)181d65f1abcSDavid Xu sys_clock_getcpuclockid2(struct thread *td, struct clock_getcpuclockid2_args *uap)
182d65f1abcSDavid Xu {
183d65f1abcSDavid Xu clockid_t clk_id;
184d31e4b3aSKonstantin Belousov int error;
185d31e4b3aSKonstantin Belousov
186d31e4b3aSKonstantin Belousov error = kern_clock_getcpuclockid2(td, uap->id, uap->which, &clk_id);
187d31e4b3aSKonstantin Belousov if (error == 0)
188d31e4b3aSKonstantin Belousov error = copyout(&clk_id, uap->clock_id, sizeof(clockid_t));
189d31e4b3aSKonstantin Belousov return (error);
190d31e4b3aSKonstantin Belousov }
191d31e4b3aSKonstantin Belousov
192d31e4b3aSKonstantin Belousov int
kern_clock_getcpuclockid2(struct thread * td,id_t id,int which,clockid_t * clk_id)193d31e4b3aSKonstantin Belousov kern_clock_getcpuclockid2(struct thread *td, id_t id, int which,
194d31e4b3aSKonstantin Belousov clockid_t *clk_id)
195d31e4b3aSKonstantin Belousov {
196d65f1abcSDavid Xu struct proc *p;
197d65f1abcSDavid Xu pid_t pid;
198d65f1abcSDavid Xu lwpid_t tid;
199d65f1abcSDavid Xu int error;
200d65f1abcSDavid Xu
201d31e4b3aSKonstantin Belousov switch (which) {
202d65f1abcSDavid Xu case CPUCLOCK_WHICH_PID:
203d31e4b3aSKonstantin Belousov if (id != 0) {
20447ce3e53SDmitry Chagin error = pget(id, PGET_CANSEE | PGET_NOTID, &p);
205d31e4b3aSKonstantin Belousov if (error != 0)
206d65f1abcSDavid Xu return (error);
20747ce3e53SDmitry Chagin PROC_UNLOCK(p);
208d31e4b3aSKonstantin Belousov pid = id;
209d65f1abcSDavid Xu } else {
210d65f1abcSDavid Xu pid = td->td_proc->p_pid;
211d65f1abcSDavid Xu }
212d31e4b3aSKonstantin Belousov *clk_id = MAKE_PROCESS_CPUCLOCK(pid);
213d31e4b3aSKonstantin Belousov return (0);
214d65f1abcSDavid Xu case CPUCLOCK_WHICH_TID:
215d31e4b3aSKonstantin Belousov tid = id == 0 ? td->td_tid : id;
216d31e4b3aSKonstantin Belousov *clk_id = MAKE_THREAD_CPUCLOCK(tid);
217d31e4b3aSKonstantin Belousov return (0);
218d65f1abcSDavid Xu default:
219d65f1abcSDavid Xu return (EINVAL);
220d65f1abcSDavid Xu }
221d65f1abcSDavid Xu }
222d65f1abcSDavid Xu
223d65f1abcSDavid Xu #ifndef _SYS_SYSPROTO_H_
22494c8fcd8SPeter Wemm struct clock_gettime_args {
22594c8fcd8SPeter Wemm clockid_t clock_id;
22694c8fcd8SPeter Wemm struct timespec *tp;
22794c8fcd8SPeter Wemm };
22894c8fcd8SPeter Wemm #endif
22994c8fcd8SPeter Wemm /* ARGSUSED */
23094c8fcd8SPeter Wemm int
sys_clock_gettime(struct thread * td,struct clock_gettime_args * uap)2318451d0ddSKip Macy sys_clock_gettime(struct thread *td, struct clock_gettime_args *uap)
23294c8fcd8SPeter Wemm {
23394c8fcd8SPeter Wemm struct timespec ats;
234f0b479cdSPaul Saab int error;
235f0b479cdSPaul Saab
236f0b479cdSPaul Saab error = kern_clock_gettime(td, uap->clock_id, &ats);
237f0b479cdSPaul Saab if (error == 0)
238f0b479cdSPaul Saab error = copyout(&ats, uap->tp, sizeof(ats));
239f0b479cdSPaul Saab
240f0b479cdSPaul Saab return (error);
241f0b479cdSPaul Saab }
242f0b479cdSPaul Saab
243d65f1abcSDavid Xu static inline void
cputick2timespec(uint64_t runtime,struct timespec * ats)244d65f1abcSDavid Xu cputick2timespec(uint64_t runtime, struct timespec *ats)
245d65f1abcSDavid Xu {
246bb53dd56Sfirk uint64_t tr;
247bb53dd56Sfirk tr = cpu_tickrate();
248bb53dd56Sfirk ats->tv_sec = runtime / tr;
249bb53dd56Sfirk ats->tv_nsec = ((runtime % tr) * 1000000000ULL) / tr;
250d65f1abcSDavid Xu }
251d65f1abcSDavid Xu
252cbc10891SDmitry Chagin void
kern_thread_cputime(struct thread * targettd,struct timespec * ats)253cbc10891SDmitry Chagin kern_thread_cputime(struct thread *targettd, struct timespec *ats)
254d65f1abcSDavid Xu {
255d65f1abcSDavid Xu uint64_t runtime, curtime, switchtime;
256d65f1abcSDavid Xu
257d65f1abcSDavid Xu if (targettd == NULL) { /* current thread */
25828d08dc7Sfirk spinlock_enter();
259d65f1abcSDavid Xu switchtime = PCPU_GET(switchtime);
260d65f1abcSDavid Xu curtime = cpu_ticks();
261d65f1abcSDavid Xu runtime = curthread->td_runtime;
26228d08dc7Sfirk spinlock_exit();
263d65f1abcSDavid Xu runtime += curtime - switchtime;
264d65f1abcSDavid Xu } else {
2650783b709SKonstantin Belousov PROC_LOCK_ASSERT(targettd->td_proc, MA_OWNED);
266d65f1abcSDavid Xu thread_lock(targettd);
267d65f1abcSDavid Xu runtime = targettd->td_runtime;
268d65f1abcSDavid Xu thread_unlock(targettd);
269d65f1abcSDavid Xu }
270d65f1abcSDavid Xu cputick2timespec(runtime, ats);
271d65f1abcSDavid Xu }
272d65f1abcSDavid Xu
273cbc10891SDmitry Chagin void
kern_process_cputime(struct proc * targetp,struct timespec * ats)274cbc10891SDmitry Chagin kern_process_cputime(struct proc *targetp, struct timespec *ats)
275d65f1abcSDavid Xu {
276d65f1abcSDavid Xu uint64_t runtime;
277d65f1abcSDavid Xu struct rusage ru;
278d65f1abcSDavid Xu
279cbc10891SDmitry Chagin PROC_LOCK_ASSERT(targetp, MA_OWNED);
2805c7bebf9SKonstantin Belousov PROC_STATLOCK(targetp);
281d65f1abcSDavid Xu rufetch(targetp, &ru);
282d65f1abcSDavid Xu runtime = targetp->p_rux.rux_runtime;
2837e8db781SColin Percival if (curthread->td_proc == targetp)
2847e8db781SColin Percival runtime += cpu_ticks() - PCPU_GET(switchtime);
2855c7bebf9SKonstantin Belousov PROC_STATUNLOCK(targetp);
286d65f1abcSDavid Xu cputick2timespec(runtime, ats);
287d65f1abcSDavid Xu }
288d65f1abcSDavid Xu
289d65f1abcSDavid Xu static int
get_cputime(struct thread * td,clockid_t clock_id,struct timespec * ats)290d65f1abcSDavid Xu get_cputime(struct thread *td, clockid_t clock_id, struct timespec *ats)
291d65f1abcSDavid Xu {
292d65f1abcSDavid Xu struct proc *p, *p2;
293d65f1abcSDavid Xu struct thread *td2;
294d65f1abcSDavid Xu lwpid_t tid;
295d65f1abcSDavid Xu pid_t pid;
296d65f1abcSDavid Xu int error;
297d65f1abcSDavid Xu
298d65f1abcSDavid Xu p = td->td_proc;
299d65f1abcSDavid Xu if ((clock_id & CPUCLOCK_PROCESS_BIT) == 0) {
300d65f1abcSDavid Xu tid = clock_id & CPUCLOCK_ID_MASK;
301d65f1abcSDavid Xu td2 = tdfind(tid, p->p_pid);
302d65f1abcSDavid Xu if (td2 == NULL)
303d65f1abcSDavid Xu return (EINVAL);
304cbc10891SDmitry Chagin kern_thread_cputime(td2, ats);
305d65f1abcSDavid Xu PROC_UNLOCK(td2->td_proc);
306d65f1abcSDavid Xu } else {
307d65f1abcSDavid Xu pid = clock_id & CPUCLOCK_ID_MASK;
308c7c536c7SKonstantin Belousov error = pget(pid, PGET_CANSEE, &p2);
309c7c536c7SKonstantin Belousov if (error != 0)
310d65f1abcSDavid Xu return (EINVAL);
311cbc10891SDmitry Chagin kern_process_cputime(p2, ats);
312d65f1abcSDavid Xu PROC_UNLOCK(p2);
313d65f1abcSDavid Xu }
314d65f1abcSDavid Xu return (0);
315d65f1abcSDavid Xu }
316d65f1abcSDavid Xu
317f0b479cdSPaul Saab int
kern_clock_gettime(struct thread * td,clockid_t clock_id,struct timespec * ats)318f0b479cdSPaul Saab kern_clock_gettime(struct thread *td, clockid_t clock_id, struct timespec *ats)
319f0b479cdSPaul Saab {
320de0a9241SKelly Yancey struct timeval sys, user;
32178c85e8dSJohn Baldwin struct proc *p;
32294c8fcd8SPeter Wemm
32378c85e8dSJohn Baldwin p = td->td_proc;
324f0b479cdSPaul Saab switch (clock_id) {
3255e758b95SRobert Watson case CLOCK_REALTIME: /* Default to precise. */
3265e758b95SRobert Watson case CLOCK_REALTIME_PRECISE:
327f0b479cdSPaul Saab nanotime(ats);
328b8817154SKelly Yancey break;
3295e758b95SRobert Watson case CLOCK_REALTIME_FAST:
3305e758b95SRobert Watson getnanotime(ats);
3315e758b95SRobert Watson break;
332b8817154SKelly Yancey case CLOCK_VIRTUAL:
33378c85e8dSJohn Baldwin PROC_LOCK(p);
3345c7bebf9SKonstantin Belousov PROC_STATLOCK(p);
33578c85e8dSJohn Baldwin calcru(p, &user, &sys);
3365c7bebf9SKonstantin Belousov PROC_STATUNLOCK(p);
33778c85e8dSJohn Baldwin PROC_UNLOCK(p);
338f0b479cdSPaul Saab TIMEVAL_TO_TIMESPEC(&user, ats);
339b8817154SKelly Yancey break;
340b8817154SKelly Yancey case CLOCK_PROF:
34178c85e8dSJohn Baldwin PROC_LOCK(p);
3425c7bebf9SKonstantin Belousov PROC_STATLOCK(p);
34378c85e8dSJohn Baldwin calcru(p, &user, &sys);
3445c7bebf9SKonstantin Belousov PROC_STATUNLOCK(p);
34578c85e8dSJohn Baldwin PROC_UNLOCK(p);
346de0a9241SKelly Yancey timevaladd(&user, &sys);
347f0b479cdSPaul Saab TIMEVAL_TO_TIMESPEC(&user, ats);
348de0a9241SKelly Yancey break;
3495e758b95SRobert Watson case CLOCK_MONOTONIC: /* Default to precise. */
3505e758b95SRobert Watson case CLOCK_MONOTONIC_PRECISE:
3515eefd889SAndre Oppermann case CLOCK_UPTIME:
3525e758b95SRobert Watson case CLOCK_UPTIME_PRECISE:
353f0b479cdSPaul Saab nanouptime(ats);
354b8817154SKelly Yancey break;
3555e758b95SRobert Watson case CLOCK_UPTIME_FAST:
3565e758b95SRobert Watson case CLOCK_MONOTONIC_FAST:
3575e758b95SRobert Watson getnanouptime(ats);
3585e758b95SRobert Watson break;
3595e758b95SRobert Watson case CLOCK_SECOND:
3605e758b95SRobert Watson ats->tv_sec = time_second;
3615e758b95SRobert Watson ats->tv_nsec = 0;
3625e758b95SRobert Watson break;
36300d6ac63SDavid Xu case CLOCK_THREAD_CPUTIME_ID:
364cbc10891SDmitry Chagin kern_thread_cputime(NULL, ats);
365d65f1abcSDavid Xu break;
366d65f1abcSDavid Xu case CLOCK_PROCESS_CPUTIME_ID:
367d65f1abcSDavid Xu PROC_LOCK(p);
368cbc10891SDmitry Chagin kern_process_cputime(p, ats);
369d65f1abcSDavid Xu PROC_UNLOCK(p);
37000d6ac63SDavid Xu break;
371b8817154SKelly Yancey default:
372d65f1abcSDavid Xu if ((int)clock_id >= 0)
3735cb3dc8fSPoul-Henning Kamp return (EINVAL);
374d65f1abcSDavid Xu return (get_cputime(td, clock_id, ats));
375b8817154SKelly Yancey }
376f0b479cdSPaul Saab return (0);
37794c8fcd8SPeter Wemm }
37894c8fcd8SPeter Wemm
37994c8fcd8SPeter Wemm #ifndef _SYS_SYSPROTO_H_
38094c8fcd8SPeter Wemm struct clock_settime_args {
38194c8fcd8SPeter Wemm clockid_t clock_id;
38294c8fcd8SPeter Wemm const struct timespec *tp;
38394c8fcd8SPeter Wemm };
38494c8fcd8SPeter Wemm #endif
38594c8fcd8SPeter Wemm /* ARGSUSED */
38694c8fcd8SPeter Wemm int
sys_clock_settime(struct thread * td,struct clock_settime_args * uap)3878451d0ddSKip Macy sys_clock_settime(struct thread *td, struct clock_settime_args *uap)
38894c8fcd8SPeter Wemm {
38994c8fcd8SPeter Wemm struct timespec ats;
39094c8fcd8SPeter Wemm int error;
39194c8fcd8SPeter Wemm
392f0b479cdSPaul Saab if ((error = copyin(uap->tp, &ats, sizeof(ats))) != 0)
393f0b479cdSPaul Saab return (error);
394f0b479cdSPaul Saab return (kern_clock_settime(td, uap->clock_id, &ats));
395f0b479cdSPaul Saab }
396f0b479cdSPaul Saab
39790a79ac5SConrad Meyer static int allow_insane_settime = 0;
39890a79ac5SConrad Meyer SYSCTL_INT(_debug, OID_AUTO, allow_insane_settime, CTLFLAG_RWTUN,
39990a79ac5SConrad Meyer &allow_insane_settime, 0,
40090a79ac5SConrad Meyer "do not perform possibly restrictive checks on settime(2) args");
40190a79ac5SConrad Meyer
402f0b479cdSPaul Saab int
kern_clock_settime(struct thread * td,clockid_t clock_id,struct timespec * ats)403f0b479cdSPaul Saab kern_clock_settime(struct thread *td, clockid_t clock_id, struct timespec *ats)
404f0b479cdSPaul Saab {
405f0b479cdSPaul Saab struct timeval atv;
406f0b479cdSPaul Saab int error;
407f0b479cdSPaul Saab
408acd3428bSRobert Watson if ((error = priv_check(td, PRIV_CLOCK_SETTIME)) != 0)
4097edfb592SJohn Baldwin return (error);
410f0b479cdSPaul Saab if (clock_id != CLOCK_REALTIME)
4117edfb592SJohn Baldwin return (EINVAL);
41291e7bdcdSDmitry Chagin if (!timespecvalid_interval(ats))
4137edfb592SJohn Baldwin return (EINVAL);
414bc79b41cSMark Johnston if (!allow_insane_settime &&
415bc79b41cSMark Johnston (ats->tv_sec > 8000ULL * 365 * 24 * 60 * 60 ||
416bc79b41cSMark Johnston ats->tv_sec < utc_offset()))
41790a79ac5SConrad Meyer return (EINVAL);
418a0502b19SPoul-Henning Kamp /* XXX Don't convert nsec->usec and back */
419f0b479cdSPaul Saab TIMESPEC_TO_TIMEVAL(&atv, ats);
4207edfb592SJohn Baldwin error = settime(td, &atv);
42194c8fcd8SPeter Wemm return (error);
42294c8fcd8SPeter Wemm }
42394c8fcd8SPeter Wemm
42494c8fcd8SPeter Wemm #ifndef _SYS_SYSPROTO_H_
42594c8fcd8SPeter Wemm struct clock_getres_args {
42694c8fcd8SPeter Wemm clockid_t clock_id;
42794c8fcd8SPeter Wemm struct timespec *tp;
42894c8fcd8SPeter Wemm };
42994c8fcd8SPeter Wemm #endif
43094c8fcd8SPeter Wemm int
sys_clock_getres(struct thread * td,struct clock_getres_args * uap)4318451d0ddSKip Macy sys_clock_getres(struct thread *td, struct clock_getres_args *uap)
43294c8fcd8SPeter Wemm {
43394c8fcd8SPeter Wemm struct timespec ts;
434f0b479cdSPaul Saab int error;
43594c8fcd8SPeter Wemm
436f0b479cdSPaul Saab if (uap->tp == NULL)
437f0b479cdSPaul Saab return (0);
438f0b479cdSPaul Saab
439f0b479cdSPaul Saab error = kern_clock_getres(td, uap->clock_id, &ts);
440f0b479cdSPaul Saab if (error == 0)
441f0b479cdSPaul Saab error = copyout(&ts, uap->tp, sizeof(ts));
442f0b479cdSPaul Saab return (error);
443f0b479cdSPaul Saab }
444f0b479cdSPaul Saab
445f0b479cdSPaul Saab int
kern_clock_getres(struct thread * td,clockid_t clock_id,struct timespec * ts)446f0b479cdSPaul Saab kern_clock_getres(struct thread *td, clockid_t clock_id, struct timespec *ts)
447f0b479cdSPaul Saab {
448f0b479cdSPaul Saab
449f0b479cdSPaul Saab ts->tv_sec = 0;
450f0b479cdSPaul Saab switch (clock_id) {
451b8817154SKelly Yancey case CLOCK_REALTIME:
4525e758b95SRobert Watson case CLOCK_REALTIME_FAST:
4535e758b95SRobert Watson case CLOCK_REALTIME_PRECISE:
454b8817154SKelly Yancey case CLOCK_MONOTONIC:
4555e758b95SRobert Watson case CLOCK_MONOTONIC_FAST:
4565e758b95SRobert Watson case CLOCK_MONOTONIC_PRECISE:
4575eefd889SAndre Oppermann case CLOCK_UPTIME:
4585e758b95SRobert Watson case CLOCK_UPTIME_FAST:
4595e758b95SRobert Watson case CLOCK_UPTIME_PRECISE:
460ac0653dcSBruce Evans /*
461ac0653dcSBruce Evans * Round up the result of the division cheaply by adding 1.
462ac0653dcSBruce Evans * Rounding up is especially important if rounding down
463ac0653dcSBruce Evans * would give 0. Perfect rounding is unimportant.
464ac0653dcSBruce Evans */
4658b3c4231SMark Johnston ts->tv_nsec = NS_PER_SEC / tc_getfrequency() + 1;
466b8817154SKelly Yancey break;
467b8817154SKelly Yancey case CLOCK_VIRTUAL:
468b8817154SKelly Yancey case CLOCK_PROF:
469b8817154SKelly Yancey /* Accurately round up here because we can do so cheaply. */
4708b3c4231SMark Johnston ts->tv_nsec = howmany(NS_PER_SEC, hz);
471b8817154SKelly Yancey break;
4725e758b95SRobert Watson case CLOCK_SECOND:
4735e758b95SRobert Watson ts->tv_sec = 1;
4745e758b95SRobert Watson ts->tv_nsec = 0;
4755e758b95SRobert Watson break;
47600d6ac63SDavid Xu case CLOCK_THREAD_CPUTIME_ID:
477d65f1abcSDavid Xu case CLOCK_PROCESS_CPUTIME_ID:
478d65f1abcSDavid Xu cputime:
479bb53dd56Sfirk ts->tv_nsec = 1000000000 / cpu_tickrate() + 1;
48000d6ac63SDavid Xu break;
481b8817154SKelly Yancey default:
482d65f1abcSDavid Xu if ((int)clock_id < 0)
483d65f1abcSDavid Xu goto cputime;
484b8817154SKelly Yancey return (EINVAL);
48594c8fcd8SPeter Wemm }
486de0a9241SKelly Yancey return (0);
48794c8fcd8SPeter Wemm }
48894c8fcd8SPeter Wemm
4897fdf2c85SPaul Saab int
kern_nanosleep(struct thread * td,struct timespec * rqt,struct timespec * rmt)4907fdf2c85SPaul Saab kern_nanosleep(struct thread *td, struct timespec *rqt, struct timespec *rmt)
4915b870b7bSPeter Wemm {
4923f8455b0SEric van Gyzen
4933f8455b0SEric van Gyzen return (kern_clock_nanosleep(td, CLOCK_REALTIME, TIMER_RELTIME, rqt,
4943f8455b0SEric van Gyzen rmt));
4953f8455b0SEric van Gyzen }
4963f8455b0SEric van Gyzen
4973f8455b0SEric van Gyzen static uint8_t nanowait[MAXCPU];
4983f8455b0SEric van Gyzen
4993f8455b0SEric van Gyzen int
kern_clock_nanosleep(struct thread * td,clockid_t clock_id,int flags,const struct timespec * rqt,struct timespec * rmt)5003f8455b0SEric van Gyzen kern_clock_nanosleep(struct thread *td, clockid_t clock_id, int flags,
5013f8455b0SEric van Gyzen const struct timespec *rqt, struct timespec *rmt)
5023f8455b0SEric van Gyzen {
5033f8455b0SEric van Gyzen struct timespec ts, now;
504098176f0SDavide Italiano sbintime_t sbt, sbtt, prec, tmp;
505980c545dSAlexander Motin time_t over;
50633841826SPoul-Henning Kamp int error;
5073f8455b0SEric van Gyzen bool is_abs_real;
5085b870b7bSPeter Wemm
5098b3c4231SMark Johnston if (rqt->tv_nsec < 0 || rqt->tv_nsec >= NS_PER_SEC)
510708e7684SPeter Wemm return (EINVAL);
5113f8455b0SEric van Gyzen if ((flags & ~TIMER_ABSTIME) != 0)
5123f8455b0SEric van Gyzen return (EINVAL);
5133f8455b0SEric van Gyzen switch (clock_id) {
5143f8455b0SEric van Gyzen case CLOCK_REALTIME:
5153f8455b0SEric van Gyzen case CLOCK_REALTIME_PRECISE:
5163f8455b0SEric van Gyzen case CLOCK_REALTIME_FAST:
5173f8455b0SEric van Gyzen case CLOCK_SECOND:
5183f8455b0SEric van Gyzen is_abs_real = (flags & TIMER_ABSTIME) != 0;
5193f8455b0SEric van Gyzen break;
5203f8455b0SEric van Gyzen case CLOCK_MONOTONIC:
5213f8455b0SEric van Gyzen case CLOCK_MONOTONIC_PRECISE:
5223f8455b0SEric van Gyzen case CLOCK_MONOTONIC_FAST:
5233f8455b0SEric van Gyzen case CLOCK_UPTIME:
5243f8455b0SEric van Gyzen case CLOCK_UPTIME_PRECISE:
5253f8455b0SEric van Gyzen case CLOCK_UPTIME_FAST:
5263f8455b0SEric van Gyzen is_abs_real = false;
5273f8455b0SEric van Gyzen break;
5283f8455b0SEric van Gyzen case CLOCK_VIRTUAL:
5293f8455b0SEric van Gyzen case CLOCK_PROF:
5303f8455b0SEric van Gyzen case CLOCK_PROCESS_CPUTIME_ID:
5313f8455b0SEric van Gyzen return (ENOTSUP);
5323f8455b0SEric van Gyzen case CLOCK_THREAD_CPUTIME_ID:
5333f8455b0SEric van Gyzen default:
5343f8455b0SEric van Gyzen return (EINVAL);
5353f8455b0SEric van Gyzen }
5363f8455b0SEric van Gyzen do {
537980c545dSAlexander Motin ts = *rqt;
5383f8455b0SEric van Gyzen if ((flags & TIMER_ABSTIME) != 0) {
5393f8455b0SEric van Gyzen if (is_abs_real)
5403f8455b0SEric van Gyzen td->td_rtcgen =
5413f8455b0SEric van Gyzen atomic_load_acq_int(&rtc_generation);
5423f8455b0SEric van Gyzen error = kern_clock_gettime(td, clock_id, &now);
5433f8455b0SEric van Gyzen KASSERT(error == 0, ("kern_clock_gettime: %d", error));
5446040822cSAlan Somers timespecsub(&ts, &now, &ts);
5453f8455b0SEric van Gyzen }
5463f8455b0SEric van Gyzen if (ts.tv_sec < 0 || (ts.tv_sec == 0 && ts.tv_nsec == 0)) {
5473f8455b0SEric van Gyzen error = EWOULDBLOCK;
5483f8455b0SEric van Gyzen break;
5493f8455b0SEric van Gyzen }
550980c545dSAlexander Motin if (ts.tv_sec > INT32_MAX / 2) {
551980c545dSAlexander Motin over = ts.tv_sec - INT32_MAX / 2;
552980c545dSAlexander Motin ts.tv_sec -= over;
553980c545dSAlexander Motin } else
554980c545dSAlexander Motin over = 0;
555980c545dSAlexander Motin tmp = tstosbt(ts);
556098176f0SDavide Italiano prec = tmp;
557098176f0SDavide Italiano prec >>= tc_precexp;
558098176f0SDavide Italiano if (TIMESEL(&sbt, tmp))
559098176f0SDavide Italiano sbt += tc_tick_sbt;
560098176f0SDavide Italiano sbt += tmp;
5610dbf17e6SAlexander Motin error = tsleep_sbt(&nanowait[curcpu], PWAIT | PCATCH, "nanslp",
5620dbf17e6SAlexander Motin sbt, prec, C_ABSOLUTE);
5633f8455b0SEric van Gyzen } while (error == 0 && is_abs_real && td->td_rtcgen == 0);
5643f8455b0SEric van Gyzen td->td_rtcgen = 0;
56533841826SPoul-Henning Kamp if (error != EWOULDBLOCK) {
56670c144dcSBryan Drewery if (TIMESEL(&sbtt, tmp))
56770c144dcSBryan Drewery sbtt += tc_tick_sbt;
5683f8455b0SEric van Gyzen if (sbtt >= sbt)
5693f8455b0SEric van Gyzen return (0);
57033841826SPoul-Henning Kamp if (error == ERESTART)
57194c8fcd8SPeter Wemm error = EINTR;
5723f8455b0SEric van Gyzen if ((flags & TIMER_ABSTIME) == 0 && rmt != NULL) {
573098176f0SDavide Italiano ts = sbttots(sbt - sbtt);
574980c545dSAlexander Motin ts.tv_sec += over;
57533841826SPoul-Henning Kamp if (ts.tv_sec < 0)
57633841826SPoul-Henning Kamp timespecclear(&ts);
57700af9731SPoul-Henning Kamp *rmt = ts;
57800af9731SPoul-Henning Kamp }
57933841826SPoul-Henning Kamp return (error);
58033841826SPoul-Henning Kamp }
58133841826SPoul-Henning Kamp return (0);
5825b870b7bSPeter Wemm }
58394c8fcd8SPeter Wemm
5845b870b7bSPeter Wemm #ifndef _SYS_SYSPROTO_H_
5855b870b7bSPeter Wemm struct nanosleep_args {
5865b870b7bSPeter Wemm struct timespec *rqtp;
5875b870b7bSPeter Wemm struct timespec *rmtp;
5885b870b7bSPeter Wemm };
5895b870b7bSPeter Wemm #endif
5905b870b7bSPeter Wemm /* ARGSUSED */
5915b870b7bSPeter Wemm int
sys_nanosleep(struct thread * td,struct nanosleep_args * uap)5928451d0ddSKip Macy sys_nanosleep(struct thread *td, struct nanosleep_args *uap)
5935b870b7bSPeter Wemm {
5943f8455b0SEric van Gyzen
5953f8455b0SEric van Gyzen return (user_clock_nanosleep(td, CLOCK_REALTIME, TIMER_RELTIME,
5963f8455b0SEric van Gyzen uap->rqtp, uap->rmtp));
5973f8455b0SEric van Gyzen }
5983f8455b0SEric van Gyzen
5993f8455b0SEric van Gyzen #ifndef _SYS_SYSPROTO_H_
6003f8455b0SEric van Gyzen struct clock_nanosleep_args {
6013f8455b0SEric van Gyzen clockid_t clock_id;
6023f8455b0SEric van Gyzen int flags;
6033f8455b0SEric van Gyzen struct timespec *rqtp;
6043f8455b0SEric van Gyzen struct timespec *rmtp;
6053f8455b0SEric van Gyzen };
6063f8455b0SEric van Gyzen #endif
6073f8455b0SEric van Gyzen /* ARGSUSED */
6083f8455b0SEric van Gyzen int
sys_clock_nanosleep(struct thread * td,struct clock_nanosleep_args * uap)6093f8455b0SEric van Gyzen sys_clock_nanosleep(struct thread *td, struct clock_nanosleep_args *uap)
6103f8455b0SEric van Gyzen {
6113f8455b0SEric van Gyzen int error;
6123f8455b0SEric van Gyzen
6133f8455b0SEric van Gyzen error = user_clock_nanosleep(td, uap->clock_id, uap->flags, uap->rqtp,
6143f8455b0SEric van Gyzen uap->rmtp);
6153f8455b0SEric van Gyzen return (kern_posix_error(td, error));
6163f8455b0SEric van Gyzen }
6173f8455b0SEric van Gyzen
6183f8455b0SEric van Gyzen static int
user_clock_nanosleep(struct thread * td,clockid_t clock_id,int flags,const struct timespec * ua_rqtp,struct timespec * ua_rmtp)6193f8455b0SEric van Gyzen user_clock_nanosleep(struct thread *td, clockid_t clock_id, int flags,
6203f8455b0SEric van Gyzen const struct timespec *ua_rqtp, struct timespec *ua_rmtp)
6213f8455b0SEric van Gyzen {
6225b870b7bSPeter Wemm struct timespec rmt, rqt;
623618a20d4SBrooks Davis int error, error2;
6245b870b7bSPeter Wemm
6253f8455b0SEric van Gyzen error = copyin(ua_rqtp, &rqt, sizeof(rqt));
6265b870b7bSPeter Wemm if (error)
6275b870b7bSPeter Wemm return (error);
6283f8455b0SEric van Gyzen error = kern_clock_nanosleep(td, clock_id, flags, &rqt, &rmt);
6293f8455b0SEric van Gyzen if (error == EINTR && ua_rmtp != NULL && (flags & TIMER_ABSTIME) == 0) {
6303f8455b0SEric van Gyzen error2 = copyout(&rmt, ua_rmtp, sizeof(rmt));
631618a20d4SBrooks Davis if (error2 != 0)
632fb99ab88SMatthew Dillon error = error2;
633708e7684SPeter Wemm }
634708e7684SPeter Wemm return (error);
63594c8fcd8SPeter Wemm }
63694c8fcd8SPeter Wemm
6375b870b7bSPeter Wemm #ifndef _SYS_SYSPROTO_H_
638df8bae1dSRodney W. Grimes struct gettimeofday_args {
639df8bae1dSRodney W. Grimes struct timeval *tp;
640df8bae1dSRodney W. Grimes struct timezone *tzp;
641df8bae1dSRodney W. Grimes };
642d2d3e875SBruce Evans #endif
643df8bae1dSRodney W. Grimes /* ARGSUSED */
64426f9a767SRodney W. Grimes int
sys_gettimeofday(struct thread * td,struct gettimeofday_args * uap)6458451d0ddSKip Macy sys_gettimeofday(struct thread *td, struct gettimeofday_args *uap)
646df8bae1dSRodney W. Grimes {
647df8bae1dSRodney W. Grimes struct timeval atv;
648411c25edSTim J. Robbins struct timezone rtz;
649df8bae1dSRodney W. Grimes int error = 0;
650df8bae1dSRodney W. Grimes
651df8bae1dSRodney W. Grimes if (uap->tp) {
652df8bae1dSRodney W. Grimes microtime(&atv);
65301609114SAlfred Perlstein error = copyout(&atv, uap->tp, sizeof (atv));
654df8bae1dSRodney W. Grimes }
65521dcdb38SPoul-Henning Kamp if (error == 0 && uap->tzp != NULL) {
656329f0aa9SWarner Losh rtz.tz_minuteswest = 0;
657329f0aa9SWarner Losh rtz.tz_dsttime = 0;
658411c25edSTim J. Robbins error = copyout(&rtz, uap->tzp, sizeof (rtz));
65921dcdb38SPoul-Henning Kamp }
660df8bae1dSRodney W. Grimes return (error);
661df8bae1dSRodney W. Grimes }
662df8bae1dSRodney W. Grimes
663d2d3e875SBruce Evans #ifndef _SYS_SYSPROTO_H_
664df8bae1dSRodney W. Grimes struct settimeofday_args {
665df8bae1dSRodney W. Grimes struct timeval *tv;
666df8bae1dSRodney W. Grimes struct timezone *tzp;
667df8bae1dSRodney W. Grimes };
668d2d3e875SBruce Evans #endif
669df8bae1dSRodney W. Grimes /* ARGSUSED */
67026f9a767SRodney W. Grimes int
sys_settimeofday(struct thread * td,struct settimeofday_args * uap)6718451d0ddSKip Macy sys_settimeofday(struct thread *td, struct settimeofday_args *uap)
672df8bae1dSRodney W. Grimes {
673b88ec951SJohn Baldwin struct timeval atv, *tvp;
674b88ec951SJohn Baldwin struct timezone atz, *tzp;
675b88ec951SJohn Baldwin int error;
676b88ec951SJohn Baldwin
677b88ec951SJohn Baldwin if (uap->tv) {
678b88ec951SJohn Baldwin error = copyin(uap->tv, &atv, sizeof(atv));
679b88ec951SJohn Baldwin if (error)
680b88ec951SJohn Baldwin return (error);
681b88ec951SJohn Baldwin tvp = &atv;
682b88ec951SJohn Baldwin } else
683b88ec951SJohn Baldwin tvp = NULL;
684b88ec951SJohn Baldwin if (uap->tzp) {
685b88ec951SJohn Baldwin error = copyin(uap->tzp, &atz, sizeof(atz));
686b88ec951SJohn Baldwin if (error)
687b88ec951SJohn Baldwin return (error);
688b88ec951SJohn Baldwin tzp = &atz;
689b88ec951SJohn Baldwin } else
690b88ec951SJohn Baldwin tzp = NULL;
691b88ec951SJohn Baldwin return (kern_settimeofday(td, tvp, tzp));
692b88ec951SJohn Baldwin }
693b88ec951SJohn Baldwin
694b88ec951SJohn Baldwin int
kern_settimeofday(struct thread * td,struct timeval * tv,struct timezone * tzp)695b88ec951SJohn Baldwin kern_settimeofday(struct thread *td, struct timeval *tv, struct timezone *tzp)
696b88ec951SJohn Baldwin {
697b88ec951SJohn Baldwin int error;
698fb99ab88SMatthew Dillon
699acd3428bSRobert Watson error = priv_check(td, PRIV_SETTIMEOFDAY);
700b88ec951SJohn Baldwin if (error)
7017edfb592SJohn Baldwin return (error);
702df8bae1dSRodney W. Grimes /* Verify all parameters before changing time. */
703b88ec951SJohn Baldwin if (tv) {
7043e18d701SDmitry Chagin if (tv->tv_usec < 0 || tv->tv_usec >= 1000000 ||
7053e18d701SDmitry Chagin tv->tv_sec < 0)
7067edfb592SJohn Baldwin return (EINVAL);
707b88ec951SJohn Baldwin error = settime(td, tv);
708708e7684SPeter Wemm }
7097edfb592SJohn Baldwin return (error);
710b88ec951SJohn Baldwin }
7117edfb592SJohn Baldwin
712df8bae1dSRodney W. Grimes /*
713873fbcd7SRobert Watson * Get value of an interval timer. The process virtual and profiling virtual
714873fbcd7SRobert Watson * time timers are kept in the p_stats area, since they can be swapped out.
715873fbcd7SRobert Watson * These are kept internally in the way they are specified externally: in
716873fbcd7SRobert Watson * time until they expire.
717df8bae1dSRodney W. Grimes *
718873fbcd7SRobert Watson * The real time interval timer is kept in the process table slot for the
719873fbcd7SRobert Watson * process, and its value (it_value) is kept as an absolute time rather than
720873fbcd7SRobert Watson * as a delta, so that it is easy to keep periodic real-time signals from
721873fbcd7SRobert Watson * drifting.
722df8bae1dSRodney W. Grimes *
723df8bae1dSRodney W. Grimes * Virtual time timers are processed in the hardclock() routine of
724873fbcd7SRobert Watson * kern_clock.c. The real time timer is processed by a timeout routine,
725873fbcd7SRobert Watson * called from the softclock() routine. Since a callout may be delayed in
726873fbcd7SRobert Watson * real time due to interrupt processing in the system, it is possible for
727873fbcd7SRobert Watson * the real time timeout routine (realitexpire, given below), to be delayed
728873fbcd7SRobert Watson * in real time past when it is supposed to occur. It does not suffice,
729873fbcd7SRobert Watson * therefore, to reload the real timer .it_value from the real time timers
730873fbcd7SRobert Watson * .it_interval. Rather, we compute the next time in absolute time the timer
731873fbcd7SRobert Watson * should go off.
732df8bae1dSRodney W. Grimes */
733d2d3e875SBruce Evans #ifndef _SYS_SYSPROTO_H_
734df8bae1dSRodney W. Grimes struct getitimer_args {
735df8bae1dSRodney W. Grimes u_int which;
736df8bae1dSRodney W. Grimes struct itimerval *itv;
737df8bae1dSRodney W. Grimes };
738d2d3e875SBruce Evans #endif
73926f9a767SRodney W. Grimes int
sys_getitimer(struct thread * td,struct getitimer_args * uap)7408451d0ddSKip Macy sys_getitimer(struct thread *td, struct getitimer_args *uap)
741df8bae1dSRodney W. Grimes {
742df8bae1dSRodney W. Grimes struct itimerval aitv;
743c90110d6SJohn Baldwin int error;
744df8bae1dSRodney W. Grimes
745cfa0efe7SMaxim Sobolev error = kern_getitimer(td, uap->which, &aitv);
746cfa0efe7SMaxim Sobolev if (error != 0)
747cfa0efe7SMaxim Sobolev return (error);
748cfa0efe7SMaxim Sobolev return (copyout(&aitv, uap->itv, sizeof (struct itimerval)));
749cfa0efe7SMaxim Sobolev }
750cfa0efe7SMaxim Sobolev
751cfa0efe7SMaxim Sobolev int
kern_getitimer(struct thread * td,u_int which,struct itimerval * aitv)752cfa0efe7SMaxim Sobolev kern_getitimer(struct thread *td, u_int which, struct itimerval *aitv)
753cfa0efe7SMaxim Sobolev {
754cfa0efe7SMaxim Sobolev struct proc *p = td->td_proc;
755cfa0efe7SMaxim Sobolev struct timeval ctv;
756cfa0efe7SMaxim Sobolev
757cfa0efe7SMaxim Sobolev if (which > ITIMER_PROF)
758df8bae1dSRodney W. Grimes return (EINVAL);
759fb99ab88SMatthew Dillon
760cfa0efe7SMaxim Sobolev if (which == ITIMER_REAL) {
761df8bae1dSRodney W. Grimes /*
762ee002b68SBruce Evans * Convert from absolute to relative time in .it_value
763df8bae1dSRodney W. Grimes * part of real time timer. If time for real time timer
764df8bae1dSRodney W. Grimes * has passed return 0, else return difference between
765df8bae1dSRodney W. Grimes * current time and time for the timer to go off.
766df8bae1dSRodney W. Grimes */
76796d7f8efSTim J. Robbins PROC_LOCK(p);
768cfa0efe7SMaxim Sobolev *aitv = p->p_realtimer;
76996d7f8efSTim J. Robbins PROC_UNLOCK(p);
770cfa0efe7SMaxim Sobolev if (timevalisset(&aitv->it_value)) {
771b5ea3779SAlexander Motin microuptime(&ctv);
772cfa0efe7SMaxim Sobolev if (timevalcmp(&aitv->it_value, &ctv, <))
773cfa0efe7SMaxim Sobolev timevalclear(&aitv->it_value);
774df8bae1dSRodney W. Grimes else
775cfa0efe7SMaxim Sobolev timevalsub(&aitv->it_value, &ctv);
776227ee8a1SPoul-Henning Kamp }
777fb99ab88SMatthew Dillon } else {
7785c7bebf9SKonstantin Belousov PROC_ITIMLOCK(p);
779cfa0efe7SMaxim Sobolev *aitv = p->p_stats->p_timer[which];
7805c7bebf9SKonstantin Belousov PROC_ITIMUNLOCK(p);
781fb99ab88SMatthew Dillon }
782de56aee0SKonstantin Belousov #ifdef KTRACE
783de56aee0SKonstantin Belousov if (KTRPOINT(td, KTR_STRUCT))
784de56aee0SKonstantin Belousov ktritimerval(aitv);
785de56aee0SKonstantin Belousov #endif
786cfa0efe7SMaxim Sobolev return (0);
787df8bae1dSRodney W. Grimes }
788df8bae1dSRodney W. Grimes
789d2d3e875SBruce Evans #ifndef _SYS_SYSPROTO_H_
790df8bae1dSRodney W. Grimes struct setitimer_args {
791df8bae1dSRodney W. Grimes u_int which;
792df8bae1dSRodney W. Grimes struct itimerval *itv, *oitv;
793df8bae1dSRodney W. Grimes };
794d2d3e875SBruce Evans #endif
79526f9a767SRodney W. Grimes int
sys_setitimer(struct thread * td,struct setitimer_args * uap)7968451d0ddSKip Macy sys_setitimer(struct thread *td, struct setitimer_args *uap)
797df8bae1dSRodney W. Grimes {
798cfa0efe7SMaxim Sobolev struct itimerval aitv, oitv;
799c90110d6SJohn Baldwin int error;
80096d7f8efSTim J. Robbins
80196d7f8efSTim J. Robbins if (uap->itv == NULL) {
80296d7f8efSTim J. Robbins uap->itv = uap->oitv;
8038451d0ddSKip Macy return (sys_getitimer(td, (struct getitimer_args *)uap));
80496d7f8efSTim J. Robbins }
805df8bae1dSRodney W. Grimes
80696d7f8efSTim J. Robbins if ((error = copyin(uap->itv, &aitv, sizeof(struct itimerval))))
807df8bae1dSRodney W. Grimes return (error);
808cfa0efe7SMaxim Sobolev error = kern_setitimer(td, uap->which, &aitv, &oitv);
809cfa0efe7SMaxim Sobolev if (error != 0 || uap->oitv == NULL)
810cfa0efe7SMaxim Sobolev return (error);
811cfa0efe7SMaxim Sobolev return (copyout(&oitv, uap->oitv, sizeof(struct itimerval)));
812cfa0efe7SMaxim Sobolev }
813cfa0efe7SMaxim Sobolev
814cfa0efe7SMaxim Sobolev int
kern_setitimer(struct thread * td,u_int which,struct itimerval * aitv,struct itimerval * oitv)815c90110d6SJohn Baldwin kern_setitimer(struct thread *td, u_int which, struct itimerval *aitv,
816c90110d6SJohn Baldwin struct itimerval *oitv)
817cfa0efe7SMaxim Sobolev {
818cfa0efe7SMaxim Sobolev struct proc *p = td->td_proc;
819cfa0efe7SMaxim Sobolev struct timeval ctv;
820b5ea3779SAlexander Motin sbintime_t sbt, pr;
821cfa0efe7SMaxim Sobolev
8225e85ac17SJohn Baldwin if (aitv == NULL)
8235e85ac17SJohn Baldwin return (kern_getitimer(td, which, oitv));
8245e85ac17SJohn Baldwin
825cfa0efe7SMaxim Sobolev if (which > ITIMER_PROF)
82696d7f8efSTim J. Robbins return (EINVAL);
827de56aee0SKonstantin Belousov #ifdef KTRACE
828de56aee0SKonstantin Belousov if (KTRPOINT(td, KTR_STRUCT))
829de56aee0SKonstantin Belousov ktritimerval(aitv);
830de56aee0SKonstantin Belousov #endif
831b5ea3779SAlexander Motin if (itimerfix(&aitv->it_value) ||
832b5ea3779SAlexander Motin aitv->it_value.tv_sec > INT32_MAX / 2)
833cfa0efe7SMaxim Sobolev return (EINVAL);
834cfa0efe7SMaxim Sobolev if (!timevalisset(&aitv->it_value))
835cfa0efe7SMaxim Sobolev timevalclear(&aitv->it_interval);
836b5ea3779SAlexander Motin else if (itimerfix(&aitv->it_interval) ||
837b5ea3779SAlexander Motin aitv->it_interval.tv_sec > INT32_MAX / 2)
83896d7f8efSTim J. Robbins return (EINVAL);
83996d7f8efSTim J. Robbins
840cfa0efe7SMaxim Sobolev if (which == ITIMER_REAL) {
84196d7f8efSTim J. Robbins PROC_LOCK(p);
8424cf41af3SPoul-Henning Kamp if (timevalisset(&p->p_realtimer.it_value))
8434f559836SJake Burkholder callout_stop(&p->p_itcallout);
844b5ea3779SAlexander Motin microuptime(&ctv);
845cfa0efe7SMaxim Sobolev if (timevalisset(&aitv->it_value)) {
846b5ea3779SAlexander Motin pr = tvtosbt(aitv->it_value) >> tc_precexp;
847cfa0efe7SMaxim Sobolev timevaladd(&aitv->it_value, &ctv);
848b5ea3779SAlexander Motin sbt = tvtosbt(aitv->it_value);
849b5ea3779SAlexander Motin callout_reset_sbt(&p->p_itcallout, sbt, pr,
850b5ea3779SAlexander Motin realitexpire, p, C_ABSOLUTE);
85125b4d3a8SJohn Baldwin }
852cfa0efe7SMaxim Sobolev *oitv = p->p_realtimer;
853cfa0efe7SMaxim Sobolev p->p_realtimer = *aitv;
85496d7f8efSTim J. Robbins PROC_UNLOCK(p);
855cfa0efe7SMaxim Sobolev if (timevalisset(&oitv->it_value)) {
856cfa0efe7SMaxim Sobolev if (timevalcmp(&oitv->it_value, &ctv, <))
857cfa0efe7SMaxim Sobolev timevalclear(&oitv->it_value);
85896d7f8efSTim J. Robbins else
859cfa0efe7SMaxim Sobolev timevalsub(&oitv->it_value, &ctv);
860fb99ab88SMatthew Dillon }
86196d7f8efSTim J. Robbins } else {
862d10a1df8SAlexander Motin if (aitv->it_interval.tv_sec == 0 &&
863d10a1df8SAlexander Motin aitv->it_interval.tv_usec != 0 &&
864d10a1df8SAlexander Motin aitv->it_interval.tv_usec < tick)
865d10a1df8SAlexander Motin aitv->it_interval.tv_usec = tick;
866d10a1df8SAlexander Motin if (aitv->it_value.tv_sec == 0 &&
867d10a1df8SAlexander Motin aitv->it_value.tv_usec != 0 &&
868d10a1df8SAlexander Motin aitv->it_value.tv_usec < tick)
869d10a1df8SAlexander Motin aitv->it_value.tv_usec = tick;
8705c7bebf9SKonstantin Belousov PROC_ITIMLOCK(p);
871cfa0efe7SMaxim Sobolev *oitv = p->p_stats->p_timer[which];
872cfa0efe7SMaxim Sobolev p->p_stats->p_timer[which] = *aitv;
8735c7bebf9SKonstantin Belousov PROC_ITIMUNLOCK(p);
87496d7f8efSTim J. Robbins }
875de56aee0SKonstantin Belousov #ifdef KTRACE
876de56aee0SKonstantin Belousov if (KTRPOINT(td, KTR_STRUCT))
877de56aee0SKonstantin Belousov ktritimerval(oitv);
878de56aee0SKonstantin Belousov #endif
87996d7f8efSTim J. Robbins return (0);
880df8bae1dSRodney W. Grimes }
881df8bae1dSRodney W. Grimes
882dc47fdf1SKonstantin Belousov static void
realitexpire_reset_callout(struct proc * p,sbintime_t * isbtp)883dc47fdf1SKonstantin Belousov realitexpire_reset_callout(struct proc *p, sbintime_t *isbtp)
884dc47fdf1SKonstantin Belousov {
885dc47fdf1SKonstantin Belousov sbintime_t prec;
886dc47fdf1SKonstantin Belousov
887*a6268f89SMark Johnston if ((p->p_flag & P_WEXIT) != 0)
888*a6268f89SMark Johnston return;
889dc47fdf1SKonstantin Belousov prec = isbtp == NULL ? tvtosbt(p->p_realtimer.it_interval) : *isbtp;
890dc47fdf1SKonstantin Belousov callout_reset_sbt(&p->p_itcallout, tvtosbt(p->p_realtimer.it_value),
891dc47fdf1SKonstantin Belousov prec >> tc_precexp, realitexpire, p, C_ABSOLUTE);
892dc47fdf1SKonstantin Belousov }
893dc47fdf1SKonstantin Belousov
894dc47fdf1SKonstantin Belousov void
itimer_proc_continue(struct proc * p)895dc47fdf1SKonstantin Belousov itimer_proc_continue(struct proc *p)
896dc47fdf1SKonstantin Belousov {
897dc47fdf1SKonstantin Belousov struct timeval ctv;
8984d27d8d2SKonstantin Belousov struct itimer *it;
8994d27d8d2SKonstantin Belousov int id;
900dc47fdf1SKonstantin Belousov
901dc47fdf1SKonstantin Belousov PROC_LOCK_ASSERT(p, MA_OWNED);
902dc47fdf1SKonstantin Belousov
903dc47fdf1SKonstantin Belousov if ((p->p_flag2 & P2_ITSTOPPED) != 0) {
904dc47fdf1SKonstantin Belousov p->p_flag2 &= ~P2_ITSTOPPED;
905dc47fdf1SKonstantin Belousov microuptime(&ctv);
906dc47fdf1SKonstantin Belousov if (timevalcmp(&p->p_realtimer.it_value, &ctv, >=))
907dc47fdf1SKonstantin Belousov realitexpire(p);
908dc47fdf1SKonstantin Belousov else
909dc47fdf1SKonstantin Belousov realitexpire_reset_callout(p, NULL);
910dc47fdf1SKonstantin Belousov }
9114d27d8d2SKonstantin Belousov
9124d27d8d2SKonstantin Belousov if (p->p_itimers != NULL) {
9134d27d8d2SKonstantin Belousov for (id = 3; id < TIMER_MAX; id++) {
9144d27d8d2SKonstantin Belousov it = p->p_itimers->its_timers[id];
9154d27d8d2SKonstantin Belousov if (it == NULL)
9164d27d8d2SKonstantin Belousov continue;
9174d27d8d2SKonstantin Belousov if ((it->it_flags & ITF_PSTOPPED) != 0) {
9184d27d8d2SKonstantin Belousov ITIMER_LOCK(it);
9194d27d8d2SKonstantin Belousov if ((it->it_flags & ITF_PSTOPPED) != 0) {
9204d27d8d2SKonstantin Belousov it->it_flags &= ~ITF_PSTOPPED;
9214d27d8d2SKonstantin Belousov if ((it->it_flags & ITF_DELETING) == 0)
9225cc1d199SKonstantin Belousov realtimer_expire_l(it, true);
9234d27d8d2SKonstantin Belousov }
9244d27d8d2SKonstantin Belousov ITIMER_UNLOCK(it);
9254d27d8d2SKonstantin Belousov }
9264d27d8d2SKonstantin Belousov }
9274d27d8d2SKonstantin Belousov }
928dc47fdf1SKonstantin Belousov }
929dc47fdf1SKonstantin Belousov
930df8bae1dSRodney W. Grimes /*
931df8bae1dSRodney W. Grimes * Real interval timer expired:
932df8bae1dSRodney W. Grimes * send process whose timer expired an alarm signal.
933df8bae1dSRodney W. Grimes * If time is not set up to reload, then just return.
934df8bae1dSRodney W. Grimes * Else compute next time timer should go off which is > current time.
935df8bae1dSRodney W. Grimes * This is where delay in processing this timeout causes multiple
936df8bae1dSRodney W. Grimes * SIGALRM calls to be compressed into one.
937c8b47828SBruce Evans * tvtohz() always adds 1 to allow for the time until the next clock
9389207f00aSBruce Evans * interrupt being strictly less than 1 clock tick, but we don't want
9399207f00aSBruce Evans * that here since we want to appear to be in sync with the clock
9409207f00aSBruce Evans * interrupt even when we're delayed.
941df8bae1dSRodney W. Grimes */
942ef221ff6SMark Johnston static void
realitexpire(void * arg)94391afe087SPoul-Henning Kamp realitexpire(void *arg)
944df8bae1dSRodney W. Grimes {
94591afe087SPoul-Henning Kamp struct proc *p;
946b5ea3779SAlexander Motin struct timeval ctv;
947b5ea3779SAlexander Motin sbintime_t isbt;
948df8bae1dSRodney W. Grimes
949df8bae1dSRodney W. Grimes p = (struct proc *)arg;
9508451d0ddSKip Macy kern_psignal(p, SIGALRM);
9514cf41af3SPoul-Henning Kamp if (!timevalisset(&p->p_realtimer.it_interval)) {
9524cf41af3SPoul-Henning Kamp timevalclear(&p->p_realtimer.it_value);
953df8bae1dSRodney W. Grimes return;
954df8bae1dSRodney W. Grimes }
955dc47fdf1SKonstantin Belousov
956b5ea3779SAlexander Motin isbt = tvtosbt(p->p_realtimer.it_interval);
957b5ea3779SAlexander Motin if (isbt >= sbt_timethreshold)
958b5ea3779SAlexander Motin getmicrouptime(&ctv);
959b5ea3779SAlexander Motin else
960b5ea3779SAlexander Motin microuptime(&ctv);
961b5ea3779SAlexander Motin do {
962df8bae1dSRodney W. Grimes timevaladd(&p->p_realtimer.it_value,
963df8bae1dSRodney W. Grimes &p->p_realtimer.it_interval);
964b5ea3779SAlexander Motin } while (timevalcmp(&p->p_realtimer.it_value, &ctv, <=));
965dc47fdf1SKonstantin Belousov
966dc47fdf1SKonstantin Belousov if (P_SHOULDSTOP(p) || P_KILLED(p)) {
967dc47fdf1SKonstantin Belousov p->p_flag2 |= P2_ITSTOPPED;
968dc47fdf1SKonstantin Belousov return;
969dc47fdf1SKonstantin Belousov }
970dc47fdf1SKonstantin Belousov
971dc47fdf1SKonstantin Belousov p->p_flag2 &= ~P2_ITSTOPPED;
972dc47fdf1SKonstantin Belousov realitexpire_reset_callout(p, &isbt);
973df8bae1dSRodney W. Grimes }
974df8bae1dSRodney W. Grimes
975df8bae1dSRodney W. Grimes /*
976df8bae1dSRodney W. Grimes * Check that a proposed value to load into the .it_value or
977df8bae1dSRodney W. Grimes * .it_interval part of an interval timer is acceptable, and
978df8bae1dSRodney W. Grimes * fix it to have at least minimal value (i.e. if it is less
979df8bae1dSRodney W. Grimes * than the resolution of the clock, round it up.)
980df8bae1dSRodney W. Grimes */
98126f9a767SRodney W. Grimes int
itimerfix(struct timeval * tv)98291afe087SPoul-Henning Kamp itimerfix(struct timeval *tv)
983df8bae1dSRodney W. Grimes {
984df8bae1dSRodney W. Grimes
98586857b36SDavid Xu if (tv->tv_sec < 0 || tv->tv_usec < 0 || tv->tv_usec >= 1000000)
986df8bae1dSRodney W. Grimes return (EINVAL);
987b5ea3779SAlexander Motin if (tv->tv_sec == 0 && tv->tv_usec != 0 &&
988b5ea3779SAlexander Motin tv->tv_usec < (u_int)tick / 16)
989b5ea3779SAlexander Motin tv->tv_usec = (u_int)tick / 16;
990df8bae1dSRodney W. Grimes return (0);
991df8bae1dSRodney W. Grimes }
992df8bae1dSRodney W. Grimes
993df8bae1dSRodney W. Grimes /*
994df8bae1dSRodney W. Grimes * Decrement an interval timer by a specified number
995df8bae1dSRodney W. Grimes * of microseconds, which must be less than a second,
996df8bae1dSRodney W. Grimes * i.e. < 1000000. If the timer expires, then reload
997df8bae1dSRodney W. Grimes * it. In this case, carry over (usec - old value) to
998df8bae1dSRodney W. Grimes * reduce the value reloaded into the timer so that
999df8bae1dSRodney W. Grimes * the timer does not drift. This routine assumes
1000df8bae1dSRodney W. Grimes * that it is called in a context where the timers
1001df8bae1dSRodney W. Grimes * on which it is operating cannot change in value.
1002df8bae1dSRodney W. Grimes */
100326f9a767SRodney W. Grimes int
itimerdecr(struct itimerval * itp,int usec)100491afe087SPoul-Henning Kamp itimerdecr(struct itimerval *itp, int usec)
1005df8bae1dSRodney W. Grimes {
1006df8bae1dSRodney W. Grimes
1007df8bae1dSRodney W. Grimes if (itp->it_value.tv_usec < usec) {
1008df8bae1dSRodney W. Grimes if (itp->it_value.tv_sec == 0) {
1009df8bae1dSRodney W. Grimes /* expired, and already in next interval */
1010df8bae1dSRodney W. Grimes usec -= itp->it_value.tv_usec;
1011df8bae1dSRodney W. Grimes goto expire;
1012df8bae1dSRodney W. Grimes }
1013df8bae1dSRodney W. Grimes itp->it_value.tv_usec += 1000000;
1014df8bae1dSRodney W. Grimes itp->it_value.tv_sec--;
1015df8bae1dSRodney W. Grimes }
1016df8bae1dSRodney W. Grimes itp->it_value.tv_usec -= usec;
1017df8bae1dSRodney W. Grimes usec = 0;
10184cf41af3SPoul-Henning Kamp if (timevalisset(&itp->it_value))
1019df8bae1dSRodney W. Grimes return (1);
1020df8bae1dSRodney W. Grimes /* expired, exactly at end of interval */
1021df8bae1dSRodney W. Grimes expire:
10224cf41af3SPoul-Henning Kamp if (timevalisset(&itp->it_interval)) {
1023df8bae1dSRodney W. Grimes itp->it_value = itp->it_interval;
1024df8bae1dSRodney W. Grimes itp->it_value.tv_usec -= usec;
1025df8bae1dSRodney W. Grimes if (itp->it_value.tv_usec < 0) {
1026df8bae1dSRodney W. Grimes itp->it_value.tv_usec += 1000000;
1027df8bae1dSRodney W. Grimes itp->it_value.tv_sec--;
1028df8bae1dSRodney W. Grimes }
1029df8bae1dSRodney W. Grimes } else
1030df8bae1dSRodney W. Grimes itp->it_value.tv_usec = 0; /* sec is already 0 */
1031df8bae1dSRodney W. Grimes return (0);
1032df8bae1dSRodney W. Grimes }
1033df8bae1dSRodney W. Grimes
1034df8bae1dSRodney W. Grimes /*
1035df8bae1dSRodney W. Grimes * Add and subtract routines for timevals.
1036df8bae1dSRodney W. Grimes * N.B.: subtract routine doesn't deal with
1037df8bae1dSRodney W. Grimes * results which are before the beginning,
1038df8bae1dSRodney W. Grimes * it just gets very confused in this case.
1039df8bae1dSRodney W. Grimes * Caveat emptor.
1040df8bae1dSRodney W. Grimes */
104126f9a767SRodney W. Grimes void
timevaladd(struct timeval * t1,const struct timeval * t2)10426ff7636eSAlfred Perlstein timevaladd(struct timeval *t1, const struct timeval *t2)
1043df8bae1dSRodney W. Grimes {
1044df8bae1dSRodney W. Grimes
1045df8bae1dSRodney W. Grimes t1->tv_sec += t2->tv_sec;
1046df8bae1dSRodney W. Grimes t1->tv_usec += t2->tv_usec;
1047df8bae1dSRodney W. Grimes timevalfix(t1);
1048df8bae1dSRodney W. Grimes }
1049df8bae1dSRodney W. Grimes
105026f9a767SRodney W. Grimes void
timevalsub(struct timeval * t1,const struct timeval * t2)10516ff7636eSAlfred Perlstein timevalsub(struct timeval *t1, const struct timeval *t2)
1052df8bae1dSRodney W. Grimes {
1053df8bae1dSRodney W. Grimes
1054df8bae1dSRodney W. Grimes t1->tv_sec -= t2->tv_sec;
1055df8bae1dSRodney W. Grimes t1->tv_usec -= t2->tv_usec;
1056df8bae1dSRodney W. Grimes timevalfix(t1);
1057df8bae1dSRodney W. Grimes }
1058df8bae1dSRodney W. Grimes
105987b6de2bSPoul-Henning Kamp static void
timevalfix(struct timeval * t1)106091afe087SPoul-Henning Kamp timevalfix(struct timeval *t1)
1061df8bae1dSRodney W. Grimes {
1062df8bae1dSRodney W. Grimes
1063df8bae1dSRodney W. Grimes if (t1->tv_usec < 0) {
1064df8bae1dSRodney W. Grimes t1->tv_sec--;
1065df8bae1dSRodney W. Grimes t1->tv_usec += 1000000;
1066df8bae1dSRodney W. Grimes }
1067df8bae1dSRodney W. Grimes if (t1->tv_usec >= 1000000) {
1068df8bae1dSRodney W. Grimes t1->tv_sec++;
1069df8bae1dSRodney W. Grimes t1->tv_usec -= 1000000;
1070df8bae1dSRodney W. Grimes }
1071df8bae1dSRodney W. Grimes }
107291974ce1SSam Leffler
107391974ce1SSam Leffler /*
1074addea9d4SSam Leffler * ratecheck(): simple time-based rate-limit checking.
107591974ce1SSam Leffler */
107691974ce1SSam Leffler int
ratecheck(struct timeval * lasttime,const struct timeval * mininterval)107791974ce1SSam Leffler ratecheck(struct timeval *lasttime, const struct timeval *mininterval)
107891974ce1SSam Leffler {
107991974ce1SSam Leffler struct timeval tv, delta;
108091974ce1SSam Leffler int rv = 0;
108191974ce1SSam Leffler
1082addea9d4SSam Leffler getmicrouptime(&tv); /* NB: 10ms precision */
1083addea9d4SSam Leffler delta = tv;
1084addea9d4SSam Leffler timevalsub(&delta, lasttime);
108591974ce1SSam Leffler
108691974ce1SSam Leffler /*
108791974ce1SSam Leffler * check for 0,0 is so that the message will be seen at least once,
108891974ce1SSam Leffler * even if interval is huge.
108991974ce1SSam Leffler */
109091974ce1SSam Leffler if (timevalcmp(&delta, mininterval, >=) ||
109191974ce1SSam Leffler (lasttime->tv_sec == 0 && lasttime->tv_usec == 0)) {
109291974ce1SSam Leffler *lasttime = tv;
109391974ce1SSam Leffler rv = 1;
109491974ce1SSam Leffler }
109591974ce1SSam Leffler
109691974ce1SSam Leffler return (rv);
109791974ce1SSam Leffler }
109891974ce1SSam Leffler
109991974ce1SSam Leffler /*
110083158c68SMateusz Guzik * eventratecheck(): events per second limitation.
1101addea9d4SSam Leffler *
1102addea9d4SSam Leffler * Return 0 if the limit is to be enforced (e.g. the caller
110383158c68SMateusz Guzik * should ignore the event because of the rate limitation).
1104addea9d4SSam Leffler *
110583158c68SMateusz Guzik * maxeps of 0 always causes zero to be returned. maxeps of -1
1106893bec80SSam Leffler * always causes 1 to be returned; this effectively defeats rate
1107893bec80SSam Leffler * limiting.
1108893bec80SSam Leffler *
1109addea9d4SSam Leffler * Note that we maintain the struct timeval for compatibility
1110addea9d4SSam Leffler * with other bsd systems. We reuse the storage and just monitor
1111addea9d4SSam Leffler * clock ticks for minimal overhead.
111291974ce1SSam Leffler */
111391974ce1SSam Leffler int
eventratecheck(struct timeval * lasttime,int * cureps,int maxeps)111483158c68SMateusz Guzik eventratecheck(struct timeval *lasttime, int *cureps, int maxeps)
111591974ce1SSam Leffler {
1116addea9d4SSam Leffler int now;
111791974ce1SSam Leffler
111891974ce1SSam Leffler /*
1119addea9d4SSam Leffler * Reset the last time and counter if this is the first call
1120addea9d4SSam Leffler * or more than a second has passed since the last update of
1121addea9d4SSam Leffler * lasttime.
112291974ce1SSam Leffler */
1123addea9d4SSam Leffler now = ticks;
1124addea9d4SSam Leffler if (lasttime->tv_sec == 0 || (u_int)(now - lasttime->tv_sec) >= hz) {
1125addea9d4SSam Leffler lasttime->tv_sec = now;
112683158c68SMateusz Guzik *cureps = 1;
112783158c68SMateusz Guzik return (maxeps != 0);
1128addea9d4SSam Leffler } else {
112983158c68SMateusz Guzik (*cureps)++; /* NB: ignore potential overflow */
113083158c68SMateusz Guzik return (maxeps < 0 || *cureps <= maxeps);
1131addea9d4SSam Leffler }
113291974ce1SSam Leffler }
113386857b36SDavid Xu
113486857b36SDavid Xu static void
itimer_start(void)113586857b36SDavid Xu itimer_start(void)
113686857b36SDavid Xu {
1137e68c6191SKonstantin Belousov static const struct kclock rt_clock = {
113886857b36SDavid Xu .timer_create = realtimer_create,
113986857b36SDavid Xu .timer_delete = realtimer_delete,
114086857b36SDavid Xu .timer_settime = realtimer_settime,
114186857b36SDavid Xu .timer_gettime = realtimer_gettime,
114286857b36SDavid Xu };
114386857b36SDavid Xu
114486857b36SDavid Xu itimer_zone = uma_zcreate("itimer", sizeof(struct itimer),
114586857b36SDavid Xu NULL, NULL, itimer_init, itimer_fini, UMA_ALIGN_PTR, 0);
114686857b36SDavid Xu register_posix_clock(CLOCK_REALTIME, &rt_clock);
114786857b36SDavid Xu register_posix_clock(CLOCK_MONOTONIC, &rt_clock);
114877e718f7SDavid Xu p31b_setcfg(CTL_P1003_1B_TIMERS, 200112L);
114977e718f7SDavid Xu p31b_setcfg(CTL_P1003_1B_DELAYTIMER_MAX, INT_MAX);
115077e718f7SDavid Xu p31b_setcfg(CTL_P1003_1B_TIMER_MAX, TIMER_MAX);
115186857b36SDavid Xu }
115286857b36SDavid Xu
1153e68c6191SKonstantin Belousov static int
register_posix_clock(int clockid,const struct kclock * clk)1154e68c6191SKonstantin Belousov register_posix_clock(int clockid, const struct kclock *clk)
115586857b36SDavid Xu {
115686857b36SDavid Xu if ((unsigned)clockid >= MAX_CLOCKS) {
115786857b36SDavid Xu printf("%s: invalid clockid\n", __func__);
115886857b36SDavid Xu return (0);
115986857b36SDavid Xu }
116086857b36SDavid Xu posix_clocks[clockid] = *clk;
116186857b36SDavid Xu return (1);
116286857b36SDavid Xu }
116386857b36SDavid Xu
116486857b36SDavid Xu static int
itimer_init(void * mem,int size,int flags)116586857b36SDavid Xu itimer_init(void *mem, int size, int flags)
116686857b36SDavid Xu {
116786857b36SDavid Xu struct itimer *it;
116886857b36SDavid Xu
116986857b36SDavid Xu it = (struct itimer *)mem;
117086857b36SDavid Xu mtx_init(&it->it_mtx, "itimer lock", NULL, MTX_DEF);
117186857b36SDavid Xu return (0);
117286857b36SDavid Xu }
117386857b36SDavid Xu
117486857b36SDavid Xu static void
itimer_fini(void * mem,int size)117586857b36SDavid Xu itimer_fini(void *mem, int size)
117686857b36SDavid Xu {
117786857b36SDavid Xu struct itimer *it;
117886857b36SDavid Xu
117986857b36SDavid Xu it = (struct itimer *)mem;
118086857b36SDavid Xu mtx_destroy(&it->it_mtx);
118186857b36SDavid Xu }
118286857b36SDavid Xu
118386857b36SDavid Xu static void
itimer_enter(struct itimer * it)118486857b36SDavid Xu itimer_enter(struct itimer *it)
118586857b36SDavid Xu {
118686857b36SDavid Xu
118786857b36SDavid Xu mtx_assert(&it->it_mtx, MA_OWNED);
118886857b36SDavid Xu it->it_usecount++;
118986857b36SDavid Xu }
119086857b36SDavid Xu
119186857b36SDavid Xu static void
itimer_leave(struct itimer * it)119286857b36SDavid Xu itimer_leave(struct itimer *it)
119386857b36SDavid Xu {
119486857b36SDavid Xu
119586857b36SDavid Xu mtx_assert(&it->it_mtx, MA_OWNED);
119686857b36SDavid Xu KASSERT(it->it_usecount > 0, ("invalid it_usecount"));
119786857b36SDavid Xu
119886857b36SDavid Xu if (--it->it_usecount == 0 && (it->it_flags & ITF_WANTED) != 0)
119986857b36SDavid Xu wakeup(it);
120086857b36SDavid Xu }
120186857b36SDavid Xu
120286857b36SDavid Xu #ifndef _SYS_SYSPROTO_H_
120361d3a4efSDavid Xu struct ktimer_create_args {
120486857b36SDavid Xu clockid_t clock_id;
120586857b36SDavid Xu struct sigevent * evp;
120661d3a4efSDavid Xu int * timerid;
120786857b36SDavid Xu };
120886857b36SDavid Xu #endif
120986857b36SDavid Xu int
sys_ktimer_create(struct thread * td,struct ktimer_create_args * uap)12108451d0ddSKip Macy sys_ktimer_create(struct thread *td, struct ktimer_create_args *uap)
121186857b36SDavid Xu {
1212643ee871SKonstantin Belousov struct sigevent *evp, ev;
121361d3a4efSDavid Xu int id;
121486857b36SDavid Xu int error;
121586857b36SDavid Xu
1216643ee871SKonstantin Belousov if (uap->evp == NULL) {
1217643ee871SKonstantin Belousov evp = NULL;
1218643ee871SKonstantin Belousov } else {
121986857b36SDavid Xu error = copyin(uap->evp, &ev, sizeof(ev));
122086857b36SDavid Xu if (error != 0)
122186857b36SDavid Xu return (error);
1222643ee871SKonstantin Belousov evp = &ev;
1223643ee871SKonstantin Belousov }
1224643ee871SKonstantin Belousov error = kern_ktimer_create(td, uap->clock_id, evp, &id, -1);
122586857b36SDavid Xu if (error == 0) {
122661d3a4efSDavid Xu error = copyout(&id, uap->timerid, sizeof(int));
122786857b36SDavid Xu if (error != 0)
1228643ee871SKonstantin Belousov kern_ktimer_delete(td, id);
122986857b36SDavid Xu }
123086857b36SDavid Xu return (error);
123186857b36SDavid Xu }
123286857b36SDavid Xu
1233643ee871SKonstantin Belousov int
kern_ktimer_create(struct thread * td,clockid_t clock_id,struct sigevent * evp,int * timerid,int preset_id)1234643ee871SKonstantin Belousov kern_ktimer_create(struct thread *td, clockid_t clock_id, struct sigevent *evp,
1235643ee871SKonstantin Belousov int *timerid, int preset_id)
123686857b36SDavid Xu {
123786857b36SDavid Xu struct proc *p = td->td_proc;
123886857b36SDavid Xu struct itimer *it;
123986857b36SDavid Xu int id;
124086857b36SDavid Xu int error;
124186857b36SDavid Xu
124286857b36SDavid Xu if (clock_id < 0 || clock_id >= MAX_CLOCKS)
124386857b36SDavid Xu return (EINVAL);
124486857b36SDavid Xu
124586857b36SDavid Xu if (posix_clocks[clock_id].timer_create == NULL)
124686857b36SDavid Xu return (EINVAL);
124786857b36SDavid Xu
124886857b36SDavid Xu if (evp != NULL) {
124986857b36SDavid Xu if (evp->sigev_notify != SIGEV_NONE &&
125056c06c4bSDavid Xu evp->sigev_notify != SIGEV_SIGNAL &&
125156c06c4bSDavid Xu evp->sigev_notify != SIGEV_THREAD_ID)
125286857b36SDavid Xu return (EINVAL);
125356c06c4bSDavid Xu if ((evp->sigev_notify == SIGEV_SIGNAL ||
125456c06c4bSDavid Xu evp->sigev_notify == SIGEV_THREAD_ID) &&
125586857b36SDavid Xu !_SIG_VALID(evp->sigev_signo))
125686857b36SDavid Xu return (EINVAL);
125786857b36SDavid Xu }
125886857b36SDavid Xu
125960354683SDavid Xu if (p->p_itimers == NULL)
126086857b36SDavid Xu itimers_alloc(p);
126186857b36SDavid Xu
126286857b36SDavid Xu it = uma_zalloc(itimer_zone, M_WAITOK);
126386857b36SDavid Xu it->it_flags = 0;
126486857b36SDavid Xu it->it_usecount = 0;
126556c06c4bSDavid Xu timespecclear(&it->it_time.it_value);
126656c06c4bSDavid Xu timespecclear(&it->it_time.it_interval);
126786857b36SDavid Xu it->it_overrun = 0;
126886857b36SDavid Xu it->it_overrun_last = 0;
126986857b36SDavid Xu it->it_clockid = clock_id;
127086857b36SDavid Xu it->it_proc = p;
127186857b36SDavid Xu ksiginfo_init(&it->it_ksi);
127286857b36SDavid Xu it->it_ksi.ksi_flags |= KSI_INS | KSI_EXT;
127386857b36SDavid Xu error = CLOCK_CALL(clock_id, timer_create, (it));
127486857b36SDavid Xu if (error != 0)
127586857b36SDavid Xu goto out;
127686857b36SDavid Xu
127786857b36SDavid Xu PROC_LOCK(p);
127886857b36SDavid Xu if (preset_id != -1) {
127986857b36SDavid Xu KASSERT(preset_id >= 0 && preset_id < 3, ("invalid preset_id"));
128086857b36SDavid Xu id = preset_id;
128160354683SDavid Xu if (p->p_itimers->its_timers[id] != NULL) {
128286857b36SDavid Xu PROC_UNLOCK(p);
128386857b36SDavid Xu error = 0;
128486857b36SDavid Xu goto out;
128586857b36SDavid Xu }
128686857b36SDavid Xu } else {
128786857b36SDavid Xu /*
128886857b36SDavid Xu * Find a free timer slot, skipping those reserved
128986857b36SDavid Xu * for setitimer().
129086857b36SDavid Xu */
129186857b36SDavid Xu for (id = 3; id < TIMER_MAX; id++)
129260354683SDavid Xu if (p->p_itimers->its_timers[id] == NULL)
129386857b36SDavid Xu break;
129486857b36SDavid Xu if (id == TIMER_MAX) {
129586857b36SDavid Xu PROC_UNLOCK(p);
129686857b36SDavid Xu error = EAGAIN;
129786857b36SDavid Xu goto out;
129886857b36SDavid Xu }
129986857b36SDavid Xu }
130060354683SDavid Xu p->p_itimers->its_timers[id] = it;
130186857b36SDavid Xu if (evp != NULL)
130286857b36SDavid Xu it->it_sigev = *evp;
130386857b36SDavid Xu else {
130486857b36SDavid Xu it->it_sigev.sigev_notify = SIGEV_SIGNAL;
130586857b36SDavid Xu switch (clock_id) {
130686857b36SDavid Xu default:
130786857b36SDavid Xu case CLOCK_REALTIME:
130886857b36SDavid Xu it->it_sigev.sigev_signo = SIGALRM;
130986857b36SDavid Xu break;
131086857b36SDavid Xu case CLOCK_VIRTUAL:
131186857b36SDavid Xu it->it_sigev.sigev_signo = SIGVTALRM;
131286857b36SDavid Xu break;
131386857b36SDavid Xu case CLOCK_PROF:
131486857b36SDavid Xu it->it_sigev.sigev_signo = SIGPROF;
131586857b36SDavid Xu break;
131686857b36SDavid Xu }
13178f0371f1SDavid Xu it->it_sigev.sigev_value.sival_int = id;
131886857b36SDavid Xu }
131986857b36SDavid Xu
132056c06c4bSDavid Xu if (it->it_sigev.sigev_notify == SIGEV_SIGNAL ||
132156c06c4bSDavid Xu it->it_sigev.sigev_notify == SIGEV_THREAD_ID) {
132286857b36SDavid Xu it->it_ksi.ksi_signo = it->it_sigev.sigev_signo;
132386857b36SDavid Xu it->it_ksi.ksi_code = SI_TIMER;
132486857b36SDavid Xu it->it_ksi.ksi_value = it->it_sigev.sigev_value;
132586857b36SDavid Xu it->it_ksi.ksi_timerid = id;
132686857b36SDavid Xu }
132786857b36SDavid Xu PROC_UNLOCK(p);
132886857b36SDavid Xu *timerid = id;
132986857b36SDavid Xu return (0);
133086857b36SDavid Xu
133186857b36SDavid Xu out:
133286857b36SDavid Xu ITIMER_LOCK(it);
133386857b36SDavid Xu CLOCK_CALL(it->it_clockid, timer_delete, (it));
133486857b36SDavid Xu ITIMER_UNLOCK(it);
133586857b36SDavid Xu uma_zfree(itimer_zone, it);
133686857b36SDavid Xu return (error);
133786857b36SDavid Xu }
133886857b36SDavid Xu
133986857b36SDavid Xu #ifndef _SYS_SYSPROTO_H_
134061d3a4efSDavid Xu struct ktimer_delete_args {
134161d3a4efSDavid Xu int timerid;
134286857b36SDavid Xu };
134386857b36SDavid Xu #endif
134486857b36SDavid Xu int
sys_ktimer_delete(struct thread * td,struct ktimer_delete_args * uap)13458451d0ddSKip Macy sys_ktimer_delete(struct thread *td, struct ktimer_delete_args *uap)
134686857b36SDavid Xu {
1347643ee871SKonstantin Belousov
1348643ee871SKonstantin Belousov return (kern_ktimer_delete(td, uap->timerid));
134986857b36SDavid Xu }
135086857b36SDavid Xu
135186857b36SDavid Xu static struct itimer *
itimer_find(struct proc * p,int timerid)1352843b99c6SDavid Xu itimer_find(struct proc *p, int timerid)
135386857b36SDavid Xu {
135486857b36SDavid Xu struct itimer *it;
135586857b36SDavid Xu
135686857b36SDavid Xu PROC_LOCK_ASSERT(p, MA_OWNED);
13573f935cf3SColin Percival if ((p->p_itimers == NULL) ||
13583f935cf3SColin Percival (timerid < 0) || (timerid >= TIMER_MAX) ||
135960354683SDavid Xu (it = p->p_itimers->its_timers[timerid]) == NULL) {
136086857b36SDavid Xu return (NULL);
136186857b36SDavid Xu }
136286857b36SDavid Xu ITIMER_LOCK(it);
1363843b99c6SDavid Xu if ((it->it_flags & ITF_DELETING) != 0) {
136486857b36SDavid Xu ITIMER_UNLOCK(it);
136586857b36SDavid Xu it = NULL;
136686857b36SDavid Xu }
136786857b36SDavid Xu return (it);
136886857b36SDavid Xu }
136986857b36SDavid Xu
1370643ee871SKonstantin Belousov int
kern_ktimer_delete(struct thread * td,int timerid)1371643ee871SKonstantin Belousov kern_ktimer_delete(struct thread *td, int timerid)
137286857b36SDavid Xu {
137386857b36SDavid Xu struct proc *p = td->td_proc;
137486857b36SDavid Xu struct itimer *it;
137586857b36SDavid Xu
137686857b36SDavid Xu PROC_LOCK(p);
1377843b99c6SDavid Xu it = itimer_find(p, timerid);
137886857b36SDavid Xu if (it == NULL) {
137986857b36SDavid Xu PROC_UNLOCK(p);
138086857b36SDavid Xu return (EINVAL);
138186857b36SDavid Xu }
138286857b36SDavid Xu PROC_UNLOCK(p);
138386857b36SDavid Xu
138486857b36SDavid Xu it->it_flags |= ITF_DELETING;
138586857b36SDavid Xu while (it->it_usecount > 0) {
138686857b36SDavid Xu it->it_flags |= ITF_WANTED;
138786857b36SDavid Xu msleep(it, &it->it_mtx, PPAUSE, "itimer", 0);
138886857b36SDavid Xu }
138986857b36SDavid Xu it->it_flags &= ~ITF_WANTED;
139086857b36SDavid Xu CLOCK_CALL(it->it_clockid, timer_delete, (it));
139186857b36SDavid Xu ITIMER_UNLOCK(it);
139286857b36SDavid Xu
139386857b36SDavid Xu PROC_LOCK(p);
139486857b36SDavid Xu if (KSI_ONQ(&it->it_ksi))
139586857b36SDavid Xu sigqueue_take(&it->it_ksi);
139660354683SDavid Xu p->p_itimers->its_timers[timerid] = NULL;
139786857b36SDavid Xu PROC_UNLOCK(p);
139886857b36SDavid Xu uma_zfree(itimer_zone, it);
139986857b36SDavid Xu return (0);
140086857b36SDavid Xu }
140186857b36SDavid Xu
140286857b36SDavid Xu #ifndef _SYS_SYSPROTO_H_
140361d3a4efSDavid Xu struct ktimer_settime_args {
140461d3a4efSDavid Xu int timerid;
140586857b36SDavid Xu int flags;
140686857b36SDavid Xu const struct itimerspec * value;
140786857b36SDavid Xu struct itimerspec * ovalue;
140886857b36SDavid Xu };
140986857b36SDavid Xu #endif
141086857b36SDavid Xu int
sys_ktimer_settime(struct thread * td,struct ktimer_settime_args * uap)14118451d0ddSKip Macy sys_ktimer_settime(struct thread *td, struct ktimer_settime_args *uap)
141286857b36SDavid Xu {
141386857b36SDavid Xu struct itimerspec val, oval, *ovalp;
141486857b36SDavid Xu int error;
141586857b36SDavid Xu
141686857b36SDavid Xu error = copyin(uap->value, &val, sizeof(val));
141786857b36SDavid Xu if (error != 0)
141886857b36SDavid Xu return (error);
1419643ee871SKonstantin Belousov ovalp = uap->ovalue != NULL ? &oval : NULL;
1420643ee871SKonstantin Belousov error = kern_ktimer_settime(td, uap->timerid, uap->flags, &val, ovalp);
1421643ee871SKonstantin Belousov if (error == 0 && uap->ovalue != NULL)
1422643ee871SKonstantin Belousov error = copyout(ovalp, uap->ovalue, sizeof(*ovalp));
1423643ee871SKonstantin Belousov return (error);
1424643ee871SKonstantin Belousov }
142586857b36SDavid Xu
1426643ee871SKonstantin Belousov int
kern_ktimer_settime(struct thread * td,int timer_id,int flags,struct itimerspec * val,struct itimerspec * oval)1427643ee871SKonstantin Belousov kern_ktimer_settime(struct thread *td, int timer_id, int flags,
1428643ee871SKonstantin Belousov struct itimerspec *val, struct itimerspec *oval)
1429643ee871SKonstantin Belousov {
1430643ee871SKonstantin Belousov struct proc *p;
1431643ee871SKonstantin Belousov struct itimer *it;
1432643ee871SKonstantin Belousov int error;
143386857b36SDavid Xu
1434643ee871SKonstantin Belousov p = td->td_proc;
143586857b36SDavid Xu PROC_LOCK(p);
1436643ee871SKonstantin Belousov if (timer_id < 3 || (it = itimer_find(p, timer_id)) == NULL) {
143786857b36SDavid Xu PROC_UNLOCK(p);
143886857b36SDavid Xu error = EINVAL;
143986857b36SDavid Xu } else {
144086857b36SDavid Xu PROC_UNLOCK(p);
144186857b36SDavid Xu itimer_enter(it);
1442643ee871SKonstantin Belousov error = CLOCK_CALL(it->it_clockid, timer_settime, (it,
1443643ee871SKonstantin Belousov flags, val, oval));
144486857b36SDavid Xu itimer_leave(it);
144586857b36SDavid Xu ITIMER_UNLOCK(it);
144686857b36SDavid Xu }
144786857b36SDavid Xu return (error);
144886857b36SDavid Xu }
144986857b36SDavid Xu
145086857b36SDavid Xu #ifndef _SYS_SYSPROTO_H_
145161d3a4efSDavid Xu struct ktimer_gettime_args {
145261d3a4efSDavid Xu int timerid;
145386857b36SDavid Xu struct itimerspec * value;
145486857b36SDavid Xu };
145586857b36SDavid Xu #endif
145686857b36SDavid Xu int
sys_ktimer_gettime(struct thread * td,struct ktimer_gettime_args * uap)14578451d0ddSKip Macy sys_ktimer_gettime(struct thread *td, struct ktimer_gettime_args *uap)
145886857b36SDavid Xu {
145986857b36SDavid Xu struct itimerspec val;
146086857b36SDavid Xu int error;
146186857b36SDavid Xu
1462643ee871SKonstantin Belousov error = kern_ktimer_gettime(td, uap->timerid, &val);
1463643ee871SKonstantin Belousov if (error == 0)
1464643ee871SKonstantin Belousov error = copyout(&val, uap->value, sizeof(val));
1465643ee871SKonstantin Belousov return (error);
1466643ee871SKonstantin Belousov }
1467643ee871SKonstantin Belousov
1468643ee871SKonstantin Belousov int
kern_ktimer_gettime(struct thread * td,int timer_id,struct itimerspec * val)1469643ee871SKonstantin Belousov kern_ktimer_gettime(struct thread *td, int timer_id, struct itimerspec *val)
1470643ee871SKonstantin Belousov {
1471643ee871SKonstantin Belousov struct proc *p;
1472643ee871SKonstantin Belousov struct itimer *it;
1473643ee871SKonstantin Belousov int error;
1474643ee871SKonstantin Belousov
1475643ee871SKonstantin Belousov p = td->td_proc;
147686857b36SDavid Xu PROC_LOCK(p);
1477643ee871SKonstantin Belousov if (timer_id < 3 || (it = itimer_find(p, timer_id)) == NULL) {
147886857b36SDavid Xu PROC_UNLOCK(p);
147986857b36SDavid Xu error = EINVAL;
148086857b36SDavid Xu } else {
148186857b36SDavid Xu PROC_UNLOCK(p);
148286857b36SDavid Xu itimer_enter(it);
1483643ee871SKonstantin Belousov error = CLOCK_CALL(it->it_clockid, timer_gettime, (it, val));
148486857b36SDavid Xu itimer_leave(it);
148586857b36SDavid Xu ITIMER_UNLOCK(it);
148686857b36SDavid Xu }
148786857b36SDavid Xu return (error);
148886857b36SDavid Xu }
148986857b36SDavid Xu
149086857b36SDavid Xu #ifndef _SYS_SYSPROTO_H_
149186857b36SDavid Xu struct timer_getoverrun_args {
149261d3a4efSDavid Xu int timerid;
149386857b36SDavid Xu };
149486857b36SDavid Xu #endif
149586857b36SDavid Xu int
sys_ktimer_getoverrun(struct thread * td,struct ktimer_getoverrun_args * uap)14968451d0ddSKip Macy sys_ktimer_getoverrun(struct thread *td, struct ktimer_getoverrun_args *uap)
149786857b36SDavid Xu {
1498e346f8c4SBjoern A. Zeeb
1499e346f8c4SBjoern A. Zeeb return (kern_ktimer_getoverrun(td, uap->timerid));
1500e346f8c4SBjoern A. Zeeb }
1501e346f8c4SBjoern A. Zeeb
1502e346f8c4SBjoern A. Zeeb int
kern_ktimer_getoverrun(struct thread * td,int timer_id)1503e346f8c4SBjoern A. Zeeb kern_ktimer_getoverrun(struct thread *td, int timer_id)
1504e346f8c4SBjoern A. Zeeb {
150586857b36SDavid Xu struct proc *p = td->td_proc;
150686857b36SDavid Xu struct itimer *it;
150786857b36SDavid Xu int error ;
150886857b36SDavid Xu
150986857b36SDavid Xu PROC_LOCK(p);
1510e346f8c4SBjoern A. Zeeb if (timer_id < 3 ||
1511e346f8c4SBjoern A. Zeeb (it = itimer_find(p, timer_id)) == NULL) {
151286857b36SDavid Xu PROC_UNLOCK(p);
151386857b36SDavid Xu error = EINVAL;
151486857b36SDavid Xu } else {
151586857b36SDavid Xu td->td_retval[0] = it->it_overrun_last;
151686857b36SDavid Xu ITIMER_UNLOCK(it);
151756c06c4bSDavid Xu PROC_UNLOCK(p);
151886857b36SDavid Xu error = 0;
151986857b36SDavid Xu }
152086857b36SDavid Xu return (error);
152186857b36SDavid Xu }
152286857b36SDavid Xu
152386857b36SDavid Xu static int
realtimer_create(struct itimer * it)152486857b36SDavid Xu realtimer_create(struct itimer *it)
152586857b36SDavid Xu {
152686857b36SDavid Xu callout_init_mtx(&it->it_callout, &it->it_mtx, 0);
152786857b36SDavid Xu return (0);
152886857b36SDavid Xu }
152986857b36SDavid Xu
153086857b36SDavid Xu static int
realtimer_delete(struct itimer * it)153186857b36SDavid Xu realtimer_delete(struct itimer *it)
153286857b36SDavid Xu {
153386857b36SDavid Xu mtx_assert(&it->it_mtx, MA_OWNED);
1534843b99c6SDavid Xu
1535d6b6592eSDavid Xu /*
1536d6b6592eSDavid Xu * clear timer's value and interval to tell realtimer_expire
1537d6b6592eSDavid Xu * to not rearm the timer.
1538d6b6592eSDavid Xu */
1539d6b6592eSDavid Xu timespecclear(&it->it_time.it_value);
1540d6b6592eSDavid Xu timespecclear(&it->it_time.it_interval);
1541843b99c6SDavid Xu ITIMER_UNLOCK(it);
1542843b99c6SDavid Xu callout_drain(&it->it_callout);
1543843b99c6SDavid Xu ITIMER_LOCK(it);
154486857b36SDavid Xu return (0);
154586857b36SDavid Xu }
154686857b36SDavid Xu
154786857b36SDavid Xu static int
realtimer_gettime(struct itimer * it,struct itimerspec * ovalue)154886857b36SDavid Xu realtimer_gettime(struct itimer *it, struct itimerspec *ovalue)
154986857b36SDavid Xu {
155056c06c4bSDavid Xu struct timespec cts;
155186857b36SDavid Xu
155286857b36SDavid Xu mtx_assert(&it->it_mtx, MA_OWNED);
155386857b36SDavid Xu
155456c06c4bSDavid Xu realtimer_clocktime(it->it_clockid, &cts);
155556c06c4bSDavid Xu *ovalue = it->it_time;
155686857b36SDavid Xu if (ovalue->it_value.tv_sec != 0 || ovalue->it_value.tv_nsec != 0) {
15576040822cSAlan Somers timespecsub(&ovalue->it_value, &cts, &ovalue->it_value);
155886857b36SDavid Xu if (ovalue->it_value.tv_sec < 0 ||
155986857b36SDavid Xu (ovalue->it_value.tv_sec == 0 &&
156086857b36SDavid Xu ovalue->it_value.tv_nsec == 0)) {
156186857b36SDavid Xu ovalue->it_value.tv_sec = 0;
156286857b36SDavid Xu ovalue->it_value.tv_nsec = 1;
156386857b36SDavid Xu }
156486857b36SDavid Xu }
156586857b36SDavid Xu return (0);
156686857b36SDavid Xu }
156786857b36SDavid Xu
156886857b36SDavid Xu static int
realtimer_settime(struct itimer * it,int flags,struct itimerspec * value,struct itimerspec * ovalue)156960d12ef9SMark Johnston realtimer_settime(struct itimer *it, int flags, struct itimerspec *value,
157060d12ef9SMark Johnston struct itimerspec *ovalue)
157186857b36SDavid Xu {
157256c06c4bSDavid Xu struct timespec cts, ts;
157356c06c4bSDavid Xu struct timeval tv;
157456c06c4bSDavid Xu struct itimerspec val;
157586857b36SDavid Xu
157686857b36SDavid Xu mtx_assert(&it->it_mtx, MA_OWNED);
157786857b36SDavid Xu
157856c06c4bSDavid Xu val = *value;
157956c06c4bSDavid Xu if (itimespecfix(&val.it_value))
158086857b36SDavid Xu return (EINVAL);
158186857b36SDavid Xu
158256c06c4bSDavid Xu if (timespecisset(&val.it_value)) {
158356c06c4bSDavid Xu if (itimespecfix(&val.it_interval))
158486857b36SDavid Xu return (EINVAL);
158586857b36SDavid Xu } else {
158656c06c4bSDavid Xu timespecclear(&val.it_interval);
158786857b36SDavid Xu }
158886857b36SDavid Xu
158986857b36SDavid Xu if (ovalue != NULL)
159086857b36SDavid Xu realtimer_gettime(it, ovalue);
159186857b36SDavid Xu
159286857b36SDavid Xu it->it_time = val;
159356c06c4bSDavid Xu if (timespecisset(&val.it_value)) {
159456c06c4bSDavid Xu realtimer_clocktime(it->it_clockid, &cts);
159556c06c4bSDavid Xu ts = val.it_value;
159686857b36SDavid Xu if ((flags & TIMER_ABSTIME) == 0) {
159786857b36SDavid Xu /* Convert to absolute time. */
15986040822cSAlan Somers timespecadd(&it->it_time.it_value, &cts,
15996040822cSAlan Somers &it->it_time.it_value);
160086857b36SDavid Xu } else {
16016040822cSAlan Somers timespecsub(&ts, &cts, &ts);
160286857b36SDavid Xu /*
160356c06c4bSDavid Xu * We don't care if ts is negative, tztohz will
160486857b36SDavid Xu * fix it.
160586857b36SDavid Xu */
160686857b36SDavid Xu }
160756c06c4bSDavid Xu TIMESPEC_TO_TIMEVAL(&tv, &ts);
160860d12ef9SMark Johnston callout_reset(&it->it_callout, tvtohz(&tv), realtimer_expire,
160960d12ef9SMark Johnston it);
161086857b36SDavid Xu } else {
161186857b36SDavid Xu callout_stop(&it->it_callout);
161286857b36SDavid Xu }
161386857b36SDavid Xu
161486857b36SDavid Xu return (0);
161586857b36SDavid Xu }
161686857b36SDavid Xu
161786857b36SDavid Xu static void
realtimer_clocktime(clockid_t id,struct timespec * ts)161856c06c4bSDavid Xu realtimer_clocktime(clockid_t id, struct timespec *ts)
161986857b36SDavid Xu {
162086857b36SDavid Xu if (id == CLOCK_REALTIME)
162156c06c4bSDavid Xu getnanotime(ts);
162286857b36SDavid Xu else /* CLOCK_MONOTONIC */
162356c06c4bSDavid Xu getnanouptime(ts);
162456c06c4bSDavid Xu }
162556c06c4bSDavid Xu
162656c06c4bSDavid Xu int
itimer_accept(struct proc * p,int timerid,ksiginfo_t * ksi)162761d3a4efSDavid Xu itimer_accept(struct proc *p, int timerid, ksiginfo_t *ksi)
162856c06c4bSDavid Xu {
162956c06c4bSDavid Xu struct itimer *it;
163056c06c4bSDavid Xu
163156c06c4bSDavid Xu PROC_LOCK_ASSERT(p, MA_OWNED);
1632843b99c6SDavid Xu it = itimer_find(p, timerid);
163356c06c4bSDavid Xu if (it != NULL) {
163456c06c4bSDavid Xu ksi->ksi_overrun = it->it_overrun;
163556c06c4bSDavid Xu it->it_overrun_last = it->it_overrun;
163656c06c4bSDavid Xu it->it_overrun = 0;
163756c06c4bSDavid Xu ITIMER_UNLOCK(it);
163856c06c4bSDavid Xu return (0);
163956c06c4bSDavid Xu }
164056c06c4bSDavid Xu return (EINVAL);
164156c06c4bSDavid Xu }
164256c06c4bSDavid Xu
16438ff2b41cSMark Johnston static int
itimespecfix(struct timespec * ts)164456c06c4bSDavid Xu itimespecfix(struct timespec *ts)
164556c06c4bSDavid Xu {
164656c06c4bSDavid Xu
164791e7bdcdSDmitry Chagin if (!timespecvalid_interval(ts))
16488b3c4231SMark Johnston return (EINVAL);
16498b3c4231SMark Johnston if ((UINT64_MAX - ts->tv_nsec) / NS_PER_SEC < ts->tv_sec)
165056c06c4bSDavid Xu return (EINVAL);
165156c06c4bSDavid Xu if (ts->tv_sec == 0 && ts->tv_nsec != 0 && ts->tv_nsec < tick * 1000)
165256c06c4bSDavid Xu ts->tv_nsec = tick * 1000;
165356c06c4bSDavid Xu return (0);
165486857b36SDavid Xu }
165586857b36SDavid Xu
16567995dae9SMark Johnston #define timespectons(tsp) \
16578b3c4231SMark Johnston ((uint64_t)(tsp)->tv_sec * NS_PER_SEC + (tsp)->tv_nsec)
16587995dae9SMark Johnston #define timespecfromns(ns) (struct timespec){ \
16598b3c4231SMark Johnston .tv_sec = (ns) / NS_PER_SEC, \
16608b3c4231SMark Johnston .tv_nsec = (ns) % NS_PER_SEC \
16617995dae9SMark Johnston }
16627995dae9SMark Johnston
166386857b36SDavid Xu static void
realtimer_expire_l(struct itimer * it,bool proc_locked)16645cc1d199SKonstantin Belousov realtimer_expire_l(struct itimer *it, bool proc_locked)
166586857b36SDavid Xu {
166656c06c4bSDavid Xu struct timespec cts, ts;
166756c06c4bSDavid Xu struct timeval tv;
16684d27d8d2SKonstantin Belousov struct proc *p;
16697995dae9SMark Johnston uint64_t interval, now, overruns, value;
167086857b36SDavid Xu
167156c06c4bSDavid Xu realtimer_clocktime(it->it_clockid, &cts);
167286857b36SDavid Xu /* Only fire if time is reached. */
167356c06c4bSDavid Xu if (timespeccmp(&cts, &it->it_time.it_value, >=)) {
167456c06c4bSDavid Xu if (timespecisset(&it->it_time.it_interval)) {
167556c06c4bSDavid Xu timespecadd(&it->it_time.it_value,
16766040822cSAlan Somers &it->it_time.it_interval,
16776040822cSAlan Somers &it->it_time.it_value);
16787995dae9SMark Johnston
16797995dae9SMark Johnston interval = timespectons(&it->it_time.it_interval);
16807995dae9SMark Johnston value = timespectons(&it->it_time.it_value);
16817995dae9SMark Johnston now = timespectons(&cts);
16827995dae9SMark Johnston
16837995dae9SMark Johnston if (now >= value) {
16847995dae9SMark Johnston /*
16857995dae9SMark Johnston * We missed at least one period.
16867995dae9SMark Johnston */
16877995dae9SMark Johnston overruns = howmany(now - value + 1, interval);
16887995dae9SMark Johnston if (it->it_overrun + overruns >=
16897995dae9SMark Johnston it->it_overrun &&
16907995dae9SMark Johnston it->it_overrun + overruns <= INT_MAX) {
16917995dae9SMark Johnston it->it_overrun += (int)overruns;
16927995dae9SMark Johnston } else {
16937995dae9SMark Johnston it->it_overrun = INT_MAX;
169477e718f7SDavid Xu it->it_ksi.ksi_errno = ERANGE;
16957995dae9SMark Johnston }
16967995dae9SMark Johnston value =
16977995dae9SMark Johnston now + interval - (now - value) % interval;
16987995dae9SMark Johnston it->it_time.it_value = timespecfromns(value);
169986857b36SDavid Xu }
170086857b36SDavid Xu } else {
170186857b36SDavid Xu /* single shot timer ? */
170256c06c4bSDavid Xu timespecclear(&it->it_time.it_value);
170386857b36SDavid Xu }
17045cc1d199SKonstantin Belousov
17054d27d8d2SKonstantin Belousov p = it->it_proc;
17065cc1d199SKonstantin Belousov if (timespecisset(&it->it_time.it_value)) {
17074d27d8d2SKonstantin Belousov if (P_SHOULDSTOP(p) || P_KILLED(p)) {
17084d27d8d2SKonstantin Belousov it->it_flags |= ITF_PSTOPPED;
17094d27d8d2SKonstantin Belousov } else {
17106040822cSAlan Somers timespecsub(&it->it_time.it_value, &cts, &ts);
171156c06c4bSDavid Xu TIMESPEC_TO_TIMEVAL(&tv, &ts);
171256c06c4bSDavid Xu callout_reset(&it->it_callout, tvtohz(&tv),
171386857b36SDavid Xu realtimer_expire, it);
171486857b36SDavid Xu }
17154d27d8d2SKonstantin Belousov }
17165cc1d199SKonstantin Belousov
1717d6b6592eSDavid Xu itimer_enter(it);
171886857b36SDavid Xu ITIMER_UNLOCK(it);
17195cc1d199SKonstantin Belousov if (proc_locked)
17205cc1d199SKonstantin Belousov PROC_UNLOCK(p);
172186857b36SDavid Xu itimer_fire(it);
17225cc1d199SKonstantin Belousov if (proc_locked)
17235cc1d199SKonstantin Belousov PROC_LOCK(p);
172486857b36SDavid Xu ITIMER_LOCK(it);
1725d6b6592eSDavid Xu itimer_leave(it);
172656c06c4bSDavid Xu } else if (timespecisset(&it->it_time.it_value)) {
17274d27d8d2SKonstantin Belousov p = it->it_proc;
17284d27d8d2SKonstantin Belousov if (P_SHOULDSTOP(p) || P_KILLED(p)) {
17294d27d8d2SKonstantin Belousov it->it_flags |= ITF_PSTOPPED;
17304d27d8d2SKonstantin Belousov } else {
173156c06c4bSDavid Xu ts = it->it_time.it_value;
17326040822cSAlan Somers timespecsub(&ts, &cts, &ts);
173356c06c4bSDavid Xu TIMESPEC_TO_TIMEVAL(&tv, &ts);
17344d27d8d2SKonstantin Belousov callout_reset(&it->it_callout, tvtohz(&tv),
17354d27d8d2SKonstantin Belousov realtimer_expire, it);
17364d27d8d2SKonstantin Belousov }
173786857b36SDavid Xu }
173886857b36SDavid Xu }
173986857b36SDavid Xu
17405cc1d199SKonstantin Belousov /* Timeout callback for realtime timer */
17415cc1d199SKonstantin Belousov static void
realtimer_expire(void * arg)17425cc1d199SKonstantin Belousov realtimer_expire(void *arg)
17435cc1d199SKonstantin Belousov {
17445cc1d199SKonstantin Belousov realtimer_expire_l(arg, false);
17455cc1d199SKonstantin Belousov }
17465cc1d199SKonstantin Belousov
17478ff2b41cSMark Johnston static void
itimer_fire(struct itimer * it)174886857b36SDavid Xu itimer_fire(struct itimer *it)
174986857b36SDavid Xu {
175086857b36SDavid Xu struct proc *p = it->it_proc;
1751cf7d9a8cSDavid Xu struct thread *td;
175286857b36SDavid Xu
175356c06c4bSDavid Xu if (it->it_sigev.sigev_notify == SIGEV_SIGNAL ||
175456c06c4bSDavid Xu it->it_sigev.sigev_notify == SIGEV_THREAD_ID) {
1755cf7d9a8cSDavid Xu if (sigev_findtd(p, &it->it_sigev, &td) != 0) {
175656c06c4bSDavid Xu ITIMER_LOCK(it);
175756c06c4bSDavid Xu timespecclear(&it->it_time.it_value);
175856c06c4bSDavid Xu timespecclear(&it->it_time.it_interval);
175956c06c4bSDavid Xu callout_stop(&it->it_callout);
176056c06c4bSDavid Xu ITIMER_UNLOCK(it);
1761cf7d9a8cSDavid Xu return;
17626d7b314bSDavid Xu }
1763cf7d9a8cSDavid Xu if (!KSI_ONQ(&it->it_ksi)) {
1764cf7d9a8cSDavid Xu it->it_ksi.ksi_errno = 0;
1765cf7d9a8cSDavid Xu ksiginfo_set_sigev(&it->it_ksi, &it->it_sigev);
1766cf7d9a8cSDavid Xu tdsendsignal(p, td, it->it_ksi.ksi_signo, &it->it_ksi);
176756c06c4bSDavid Xu } else {
176877e718f7SDavid Xu if (it->it_overrun < INT_MAX)
17696d7b314bSDavid Xu it->it_overrun++;
177077e718f7SDavid Xu else
177177e718f7SDavid Xu it->it_ksi.ksi_errno = ERANGE;
177256c06c4bSDavid Xu }
177386857b36SDavid Xu PROC_UNLOCK(p);
177486857b36SDavid Xu }
177586857b36SDavid Xu }
177686857b36SDavid Xu
177786857b36SDavid Xu static void
itimers_alloc(struct proc * p)177886857b36SDavid Xu itimers_alloc(struct proc *p)
177986857b36SDavid Xu {
178060354683SDavid Xu struct itimers *its;
178186857b36SDavid Xu
178260354683SDavid Xu its = malloc(sizeof (struct itimers), M_SUBPROC, M_WAITOK | M_ZERO);
178360354683SDavid Xu PROC_LOCK(p);
178460354683SDavid Xu if (p->p_itimers == NULL) {
178560354683SDavid Xu p->p_itimers = its;
178660354683SDavid Xu PROC_UNLOCK(p);
178760354683SDavid Xu }
178860354683SDavid Xu else {
178960354683SDavid Xu PROC_UNLOCK(p);
179060354683SDavid Xu free(its, M_SUBPROC);
179160354683SDavid Xu }
179286857b36SDavid Xu }
179386857b36SDavid Xu
179486857b36SDavid Xu /* Clean up timers when some process events are being triggered. */
1795d26b1a1fSDavid Xu static void
itimers_event_exit_exec(int start_idx,struct proc * p)1796e68c6191SKonstantin Belousov itimers_event_exit_exec(int start_idx, struct proc *p)
179786857b36SDavid Xu {
179886857b36SDavid Xu struct itimers *its;
179986857b36SDavid Xu struct itimer *it;
180086857b36SDavid Xu int i;
180186857b36SDavid Xu
180260354683SDavid Xu its = p->p_itimers;
1803e68c6191SKonstantin Belousov if (its == NULL)
1804e68c6191SKonstantin Belousov return;
1805e68c6191SKonstantin Belousov
1806e68c6191SKonstantin Belousov for (i = start_idx; i < TIMER_MAX; ++i) {
1807843b99c6SDavid Xu if ((it = its->its_timers[i]) != NULL)
1808643ee871SKonstantin Belousov kern_ktimer_delete(curthread, i);
180986857b36SDavid Xu }
1810e68c6191SKonstantin Belousov if (its->its_timers[0] == NULL && its->its_timers[1] == NULL &&
181186857b36SDavid Xu its->its_timers[2] == NULL) {
18123138392aSMark Johnston /* Synchronize with itimer_proc_continue(). */
18133138392aSMark Johnston PROC_LOCK(p);
181460354683SDavid Xu p->p_itimers = NULL;
18153138392aSMark Johnston PROC_UNLOCK(p);
18163138392aSMark Johnston free(its, M_SUBPROC);
181786857b36SDavid Xu }
181886857b36SDavid Xu }
1819e68c6191SKonstantin Belousov
1820e68c6191SKonstantin Belousov void
itimers_exec(struct proc * p)1821e68c6191SKonstantin Belousov itimers_exec(struct proc *p)
1822e68c6191SKonstantin Belousov {
1823e68c6191SKonstantin Belousov /*
1824e68c6191SKonstantin Belousov * According to susv3, XSI interval timers should be inherited
1825e68c6191SKonstantin Belousov * by new image.
1826e68c6191SKonstantin Belousov */
1827e68c6191SKonstantin Belousov itimers_event_exit_exec(3, p);
1828e68c6191SKonstantin Belousov }
1829e68c6191SKonstantin Belousov
1830e68c6191SKonstantin Belousov void
itimers_exit(struct proc * p)1831e68c6191SKonstantin Belousov itimers_exit(struct proc *p)
1832e68c6191SKonstantin Belousov {
1833e68c6191SKonstantin Belousov itimers_event_exit_exec(0, p);
183486857b36SDavid Xu }
1835