2005-11-26 08:26:33 +03:00
|
|
|
/* $NetBSD: kern_time.c,v 1.97 2005/11/26 05:26:33 simonb Exp $ */
|
2000-02-04 02:04:45 +03:00
|
|
|
|
|
|
|
/*-
|
2005-03-02 14:05:34 +03:00
|
|
|
* Copyright (c) 2000, 2004, 2005 The NetBSD Foundation, Inc.
|
2000-02-04 02:04:45 +03:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Christopher G. Demetriou.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the NetBSD
|
|
|
|
* Foundation, Inc. and its contributors.
|
|
|
|
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
1994-06-29 10:29:24 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1994-05-20 11:24:51 +04:00
|
|
|
* Copyright (c) 1982, 1986, 1989, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2003-08-07 20:26:28 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1993-03-21 12:45:37 +03:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1998-03-01 05:20:01 +03:00
|
|
|
* @(#)kern_time.c 8.4 (Berkeley) 5/26/95
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
|
2001-11-12 18:25:01 +03:00
|
|
|
#include <sys/cdefs.h>
|
2005-11-26 08:26:33 +03:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: kern_time.c,v 1.97 2005/11/26 05:26:33 simonb Exp $");
|
2001-11-12 18:25:01 +03:00
|
|
|
|
1998-02-19 03:47:02 +03:00
|
|
|
#include "fs_nfs.h"
|
2000-09-20 03:26:25 +04:00
|
|
|
#include "opt_nfs.h"
|
1998-06-26 02:17:36 +04:00
|
|
|
#include "opt_nfsserver.h"
|
1998-02-19 03:47:02 +03:00
|
|
|
|
1993-12-18 06:59:02 +03:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/resourcevar.h>
|
|
|
|
#include <sys/kernel.h>
|
1994-05-20 11:24:51 +04:00
|
|
|
#include <sys/systm.h>
|
1993-12-18 06:59:02 +03:00
|
|
|
#include <sys/proc.h>
|
2003-01-18 13:06:22 +03:00
|
|
|
#include <sys/sa.h>
|
|
|
|
#include <sys/savar.h>
|
1994-05-20 11:24:51 +04:00
|
|
|
#include <sys/vnode.h>
|
1996-02-04 05:15:01 +03:00
|
|
|
#include <sys/signalvar.h>
|
1997-01-15 04:28:28 +03:00
|
|
|
#include <sys/syslog.h>
|
2005-10-23 04:09:14 +04:00
|
|
|
#include <sys/timevar.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-10-20 07:22:35 +03:00
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/syscallargs.h>
|
|
|
|
|
1999-06-08 02:33:53 +04:00
|
|
|
#include <uvm/uvm_extern.h>
|
|
|
|
|
1997-01-31 05:34:23 +03:00
|
|
|
#if defined(NFS) || defined(NFSSERVER)
|
1996-02-18 14:57:06 +03:00
|
|
|
#include <nfs/rpcv2.h>
|
|
|
|
#include <nfs/nfsproto.h>
|
Apply the NFS exports list rototill patch:
- Remove all NFS related stuff from file system specific code.
- Drop the vfs_checkexp hook and generalize it in the new nfs_check_export
function, thus removing redundancy from all file systems.
- Move all NFS export-related stuff from kern/vfs_subr.c to the new
file sys/nfs/nfs_export.c. The former was becoming large and its code
is always compiled, regardless of the build options. Using the latter,
the code is only compiled in when NFSSERVER is enabled. While doing this,
also make some functions in nfs_subs.c conditional to NFSSERVER.
- Add a new command in nfssvc(2), called NFSSVC_SETEXPORTSLIST, that takes a
path and a set of export entries. At the moment it can only clear the
exports list or append entries, one by one, but it is done in a way that
allows setting the whole set of entries atomically in the future (see the
comment in mountd_set_exports_list or in doc/TODO).
- Change mountd(8) to use the nfssvc(2) system call instead of mount(2) so
that it becomes file system agnostic. In fact, all this whole thing was
done to remove a 'XXX' block from this utility!
- Change the mount*, newfs and fsck* userland utilities to not deal with NFS
exports initialization; done internally by the kernel when initializing
the NFS support for each file system.
- Implement an interface for VFS (called VFS hooks) so that several kernel
subsystems can run arbitrary code upon receipt of specific VFS events.
At the moment, this only provides support for unmount and is used to
destroy NFS exports lists from the file systems being unmounted, though it
has room for extension.
Thanks go to yamt@, chs@, thorpej@, wrstuden@ and others for their comments
and advice in the development of this patch.
2005-09-23 16:10:31 +04:00
|
|
|
#include <nfs/nfs.h>
|
1996-02-14 00:10:43 +03:00
|
|
|
#include <nfs/nfs_var.h>
|
|
|
|
#endif
|
|
|
|
|
1993-12-18 06:59:02 +03:00
|
|
|
#include <machine/cpu.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2005-11-26 08:26:33 +03:00
|
|
|
POOL_INIT(ptimer_pool, sizeof(struct ptimer), 0, 0, 0, "ptimerpl",
|
|
|
|
&pool_allocator_nointr);
|
|
|
|
POOL_INIT(ptimers_pool, sizeof(struct ptimers), 0, 0, 0, "ptimerspl",
|
|
|
|
&pool_allocator_nointr);
|
|
|
|
|
2003-01-18 13:06:22 +03:00
|
|
|
static void timerupcall(struct lwp *, void *);
|
|
|
|
|
|
|
|
/* Time of day and interval timer support.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* These routines provide the kernel entry points to get and set
|
|
|
|
* the time-of-day and per-process interval timers. Subroutines
|
|
|
|
* here provide support for adding and subtracting timeval structures
|
|
|
|
* and decrementing interval timers, optionally reloading the interval
|
|
|
|
* timers when they expire.
|
|
|
|
*/
|
|
|
|
|
1996-11-16 01:44:25 +03:00
|
|
|
/* This function is used by clock_settime and settimeofday */
|
1999-08-16 22:42:25 +04:00
|
|
|
int
|
2003-01-18 13:06:22 +03:00
|
|
|
settime(struct timeval *tv)
|
1996-11-16 01:44:25 +03:00
|
|
|
{
|
|
|
|
struct timeval delta;
|
2000-05-31 09:02:31 +04:00
|
|
|
struct cpu_info *ci;
|
1996-11-16 01:44:25 +03:00
|
|
|
int s;
|
|
|
|
|
|
|
|
/* WHAT DO WE DO ABOUT PENDING REAL-TIME TIMEOUTS??? */
|
|
|
|
s = splclock();
|
|
|
|
timersub(tv, &time, &delta);
|
2001-06-11 11:07:12 +04:00
|
|
|
if ((delta.tv_sec < 0 || delta.tv_usec < 0) && securelevel > 1) {
|
|
|
|
splx(s);
|
1997-04-27 01:22:57 +04:00
|
|
|
return (EPERM);
|
2001-06-11 11:07:12 +04:00
|
|
|
}
|
1997-04-27 01:22:57 +04:00
|
|
|
#ifdef notyet
|
2001-06-11 11:07:12 +04:00
|
|
|
if ((delta.tv_sec < 86400) && securelevel > 0) {
|
|
|
|
splx(s);
|
1997-04-27 01:22:57 +04:00
|
|
|
return (EPERM);
|
2001-06-11 11:07:12 +04:00
|
|
|
}
|
1997-04-27 01:22:57 +04:00
|
|
|
#endif
|
1996-11-16 01:44:25 +03:00
|
|
|
time = *tv;
|
1999-08-05 22:08:08 +04:00
|
|
|
(void) spllowersoftclock();
|
1996-11-16 01:44:25 +03:00
|
|
|
timeradd(&boottime, &delta, &boottime);
|
2000-05-31 09:02:31 +04:00
|
|
|
/*
|
|
|
|
* XXXSMP
|
|
|
|
* This is wrong. We should traverse a list of all
|
|
|
|
* CPUs and add the delta to the runtime of those
|
|
|
|
* CPUs which have a process on them.
|
|
|
|
*/
|
|
|
|
ci = curcpu();
|
|
|
|
timeradd(&ci->ci_schedstate.spc_runtime, &delta,
|
|
|
|
&ci->ci_schedstate.spc_runtime);
|
2000-09-20 03:26:25 +04:00
|
|
|
# if (defined(NFS) && !defined (NFS_V2_ONLY)) || defined(NFSSERVER)
|
1996-11-16 01:44:25 +03:00
|
|
|
nqnfs_lease_updatetime(delta.tv_sec);
|
|
|
|
# endif
|
|
|
|
splx(s);
|
|
|
|
resettodr();
|
1997-04-27 01:22:57 +04:00
|
|
|
return (0);
|
1996-11-16 01:44:25 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ARGSUSED */
|
|
|
|
int
|
2003-01-18 13:06:22 +03:00
|
|
|
sys_clock_gettime(struct lwp *l, void *v, register_t *retval)
|
1996-11-16 01:44:25 +03:00
|
|
|
{
|
2000-03-30 13:27:11 +04:00
|
|
|
struct sys_clock_gettime_args /* {
|
1996-11-16 01:44:25 +03:00
|
|
|
syscallarg(clockid_t) clock_id;
|
1996-11-16 02:53:32 +03:00
|
|
|
syscallarg(struct timespec *) tp;
|
|
|
|
} */ *uap = v;
|
1996-11-16 01:44:25 +03:00
|
|
|
clockid_t clock_id;
|
|
|
|
struct timeval atv;
|
|
|
|
struct timespec ats;
|
2002-01-31 03:13:07 +03:00
|
|
|
int s;
|
1996-11-16 01:44:25 +03:00
|
|
|
|
|
|
|
clock_id = SCARG(uap, clock_id);
|
2002-01-31 03:13:07 +03:00
|
|
|
switch (clock_id) {
|
|
|
|
case CLOCK_REALTIME:
|
2005-11-11 10:07:42 +03:00
|
|
|
nanotime(&ats);
|
2002-01-31 03:13:07 +03:00
|
|
|
break;
|
|
|
|
case CLOCK_MONOTONIC:
|
|
|
|
/* XXX "hz" granularity */
|
2003-01-18 13:06:22 +03:00
|
|
|
s = splclock();
|
2002-01-31 03:13:07 +03:00
|
|
|
atv = mono_time;
|
|
|
|
splx(s);
|
|
|
|
TIMEVAL_TO_TIMESPEC(&atv,&ats);
|
|
|
|
break;
|
|
|
|
default:
|
1996-11-16 01:44:25 +03:00
|
|
|
return (EINVAL);
|
2002-01-31 03:13:07 +03:00
|
|
|
}
|
1996-11-16 01:44:25 +03:00
|
|
|
|
1996-12-22 13:21:06 +03:00
|
|
|
return copyout(&ats, SCARG(uap, tp), sizeof(ats));
|
1996-11-16 01:44:25 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ARGSUSED */
|
|
|
|
int
|
2005-06-24 03:15:12 +04:00
|
|
|
sys_clock_settime(struct lwp *l, void *v, register_t *retval)
|
1996-11-16 01:44:25 +03:00
|
|
|
{
|
2000-03-30 13:27:11 +04:00
|
|
|
struct sys_clock_settime_args /* {
|
1996-11-16 01:44:25 +03:00
|
|
|
syscallarg(clockid_t) clock_id;
|
1996-11-16 02:53:32 +03:00
|
|
|
syscallarg(const struct timespec *) tp;
|
|
|
|
} */ *uap = v;
|
2003-01-18 13:06:22 +03:00
|
|
|
struct proc *p = l->l_proc;
|
1996-11-16 01:44:25 +03:00
|
|
|
int error;
|
|
|
|
|
|
|
|
if ((error = suser(p->p_ucred, &p->p_acflag)) != 0)
|
|
|
|
return (error);
|
|
|
|
|
2001-12-09 19:10:43 +03:00
|
|
|
return (clock_settime1(SCARG(uap, clock_id), SCARG(uap, tp)));
|
2001-09-16 10:50:06 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2005-06-24 03:15:12 +04:00
|
|
|
clock_settime1(clockid_t clock_id, const struct timespec *tp)
|
2001-09-16 10:50:06 +04:00
|
|
|
{
|
2001-12-09 19:10:43 +03:00
|
|
|
struct timespec ats;
|
2001-09-16 10:50:06 +04:00
|
|
|
struct timeval atv;
|
|
|
|
int error;
|
|
|
|
|
2001-12-09 19:10:43 +03:00
|
|
|
if ((error = copyin(tp, &ats, sizeof(ats))) != 0)
|
|
|
|
return (error);
|
|
|
|
|
2002-01-31 03:13:07 +03:00
|
|
|
switch (clock_id) {
|
|
|
|
case CLOCK_REALTIME:
|
|
|
|
TIMESPEC_TO_TIMEVAL(&atv, &ats);
|
|
|
|
if ((error = settime(&atv)) != 0)
|
|
|
|
return (error);
|
|
|
|
break;
|
|
|
|
case CLOCK_MONOTONIC:
|
|
|
|
return (EINVAL); /* read-only clock */
|
|
|
|
default:
|
2001-09-16 10:50:06 +04:00
|
|
|
return (EINVAL);
|
2002-01-31 03:13:07 +03:00
|
|
|
}
|
1996-11-16 01:44:25 +03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2003-01-18 13:06:22 +03:00
|
|
|
sys_clock_getres(struct lwp *l, void *v, register_t *retval)
|
1996-11-16 01:44:25 +03:00
|
|
|
{
|
2000-03-30 13:27:11 +04:00
|
|
|
struct sys_clock_getres_args /* {
|
1996-11-16 01:44:25 +03:00
|
|
|
syscallarg(clockid_t) clock_id;
|
1996-11-16 02:53:32 +03:00
|
|
|
syscallarg(struct timespec *) tp;
|
|
|
|
} */ *uap = v;
|
1996-11-16 01:44:25 +03:00
|
|
|
clockid_t clock_id;
|
|
|
|
struct timespec ts;
|
|
|
|
int error = 0;
|
|
|
|
|
|
|
|
clock_id = SCARG(uap, clock_id);
|
2002-01-31 03:13:07 +03:00
|
|
|
switch (clock_id) {
|
|
|
|
case CLOCK_REALTIME:
|
|
|
|
case CLOCK_MONOTONIC:
|
1996-11-16 01:44:25 +03:00
|
|
|
ts.tv_sec = 0;
|
|
|
|
ts.tv_nsec = 1000000000 / hz;
|
2002-01-31 03:13:07 +03:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return (EINVAL);
|
|
|
|
}
|
1996-11-16 01:44:25 +03:00
|
|
|
|
2002-01-31 03:13:07 +03:00
|
|
|
if (SCARG(uap, tp))
|
1998-08-01 02:50:48 +04:00
|
|
|
error = copyout(&ts, SCARG(uap, tp), sizeof(ts));
|
1996-11-16 01:44:25 +03:00
|
|
|
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
1997-04-16 18:41:28 +04:00
|
|
|
/* ARGSUSED */
|
|
|
|
int
|
2003-01-18 13:06:22 +03:00
|
|
|
sys_nanosleep(struct lwp *l, void *v, register_t *retval)
|
1997-04-16 18:41:28 +04:00
|
|
|
{
|
|
|
|
static int nanowait;
|
2000-03-30 13:27:11 +04:00
|
|
|
struct sys_nanosleep_args/* {
|
1997-04-16 18:41:28 +04:00
|
|
|
syscallarg(struct timespec *) rqtp;
|
|
|
|
syscallarg(struct timespec *) rmtp;
|
|
|
|
} */ *uap = v;
|
|
|
|
struct timespec rqt;
|
|
|
|
struct timespec rmt;
|
|
|
|
struct timeval atv, utv;
|
|
|
|
int error, s, timo;
|
|
|
|
|
2005-05-30 02:24:14 +04:00
|
|
|
error = copyin(SCARG(uap, rqtp), &rqt, sizeof(struct timespec));
|
1997-04-16 18:41:28 +04:00
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
|
2004-11-14 06:30:08 +03:00
|
|
|
TIMESPEC_TO_TIMEVAL(&atv,&rqt);
|
2003-12-02 04:34:30 +03:00
|
|
|
if (itimerfix(&atv))
|
1997-04-16 18:41:28 +04:00
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
s = splclock();
|
|
|
|
timeradd(&atv,&time,&atv);
|
|
|
|
timo = hzto(&atv);
|
2003-01-18 13:06:22 +03:00
|
|
|
/*
|
1997-04-16 18:41:28 +04:00
|
|
|
* Avoid inadvertantly sleeping forever
|
|
|
|
*/
|
|
|
|
if (timo == 0)
|
|
|
|
timo = 1;
|
|
|
|
splx(s);
|
|
|
|
|
|
|
|
error = tsleep(&nanowait, PWAIT | PCATCH, "nanosleep", timo);
|
|
|
|
if (error == ERESTART)
|
|
|
|
error = EINTR;
|
|
|
|
if (error == EWOULDBLOCK)
|
|
|
|
error = 0;
|
|
|
|
|
|
|
|
if (SCARG(uap, rmtp)) {
|
2005-05-30 02:24:14 +04:00
|
|
|
int error1;
|
1997-04-21 20:56:54 +04:00
|
|
|
|
1997-04-16 18:41:28 +04:00
|
|
|
s = splclock();
|
|
|
|
utv = time;
|
|
|
|
splx(s);
|
|
|
|
|
|
|
|
timersub(&atv, &utv, &utv);
|
|
|
|
if (utv.tv_sec < 0)
|
|
|
|
timerclear(&utv);
|
|
|
|
|
|
|
|
TIMEVAL_TO_TIMESPEC(&utv,&rmt);
|
2005-05-30 02:24:14 +04:00
|
|
|
error1 = copyout((caddr_t)&rmt, (caddr_t)SCARG(uap,rmtp),
|
1997-04-21 20:56:54 +04:00
|
|
|
sizeof(rmt));
|
2005-05-30 02:24:14 +04:00
|
|
|
if (error1)
|
|
|
|
return (error1);
|
1997-04-16 18:41:28 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return error;
|
|
|
|
}
|
1996-11-16 01:44:25 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/* ARGSUSED */
|
1993-06-27 10:01:27 +04:00
|
|
|
int
|
2003-01-18 13:06:22 +03:00
|
|
|
sys_gettimeofday(struct lwp *l, void *v, register_t *retval)
|
1995-09-20 01:40:36 +04:00
|
|
|
{
|
2000-03-30 13:27:11 +04:00
|
|
|
struct sys_gettimeofday_args /* {
|
1994-10-20 07:22:35 +03:00
|
|
|
syscallarg(struct timeval *) tp;
|
2004-04-27 09:25:33 +04:00
|
|
|
syscallarg(void *) tzp; really "struct timezone *"
|
1995-09-20 01:40:36 +04:00
|
|
|
} */ *uap = v;
|
1993-03-21 12:45:37 +03:00
|
|
|
struct timeval atv;
|
|
|
|
int error = 0;
|
1997-01-15 04:28:28 +03:00
|
|
|
struct timezone tzfake;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-10-20 07:22:35 +03:00
|
|
|
if (SCARG(uap, tp)) {
|
1993-03-21 12:45:37 +03:00
|
|
|
microtime(&atv);
|
1998-08-01 02:50:48 +04:00
|
|
|
error = copyout(&atv, SCARG(uap, tp), sizeof(atv));
|
1996-02-04 05:15:01 +03:00
|
|
|
if (error)
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
|
|
|
}
|
1997-01-15 04:28:28 +03:00
|
|
|
if (SCARG(uap, tzp)) {
|
|
|
|
/*
|
1998-02-20 10:22:14 +03:00
|
|
|
* NetBSD has no kernel notion of time zone, so we just
|
1997-01-15 04:28:28 +03:00
|
|
|
* fake up a timezone struct and return it if demanded.
|
|
|
|
*/
|
|
|
|
tzfake.tz_minuteswest = 0;
|
|
|
|
tzfake.tz_dsttime = 0;
|
1998-08-01 02:50:48 +04:00
|
|
|
error = copyout(&tzfake, SCARG(uap, tzp), sizeof(tzfake));
|
1997-01-15 04:28:28 +03:00
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ARGSUSED */
|
1993-06-27 10:01:27 +04:00
|
|
|
int
|
2003-01-18 13:06:22 +03:00
|
|
|
sys_settimeofday(struct lwp *l, void *v, register_t *retval)
|
1995-09-20 01:40:36 +04:00
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
struct sys_settimeofday_args /* {
|
1996-12-22 13:21:06 +03:00
|
|
|
syscallarg(const struct timeval *) tv;
|
2004-04-27 09:25:33 +04:00
|
|
|
syscallarg(const void *) tzp; really "const struct timezone *"
|
1995-09-20 01:40:36 +04:00
|
|
|
} */ *uap = v;
|
2003-01-18 13:06:22 +03:00
|
|
|
struct proc *p = l->l_proc;
|
2001-12-09 19:10:43 +03:00
|
|
|
int error;
|
|
|
|
|
|
|
|
if ((error = suser(p->p_ucred, &p->p_acflag)) != 0)
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
return settimeofday1(SCARG(uap, tv), SCARG(uap, tzp), p);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2005-06-24 03:15:12 +04:00
|
|
|
settimeofday1(const struct timeval *utv, const struct timezone *utzp,
|
|
|
|
struct proc *p)
|
2001-12-09 19:10:43 +03:00
|
|
|
{
|
1996-11-16 01:44:25 +03:00
|
|
|
struct timeval atv;
|
1993-03-21 12:45:37 +03:00
|
|
|
struct timezone atz;
|
2001-09-16 10:50:06 +04:00
|
|
|
struct timeval *tv = NULL;
|
|
|
|
struct timezone *tzp = NULL;
|
1996-11-16 01:44:25 +03:00
|
|
|
int error;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-05-20 11:24:51 +04:00
|
|
|
/* Verify all parameters before changing time. */
|
2001-12-09 19:10:43 +03:00
|
|
|
if (utv) {
|
|
|
|
if ((error = copyin(utv, &atv, sizeof(atv))) != 0)
|
2001-09-16 10:50:06 +04:00
|
|
|
return (error);
|
|
|
|
tv = &atv;
|
|
|
|
}
|
1997-01-15 04:28:28 +03:00
|
|
|
/* XXX since we don't use tz, probably no point in doing copyin. */
|
2001-12-09 19:10:43 +03:00
|
|
|
if (utzp) {
|
|
|
|
if ((error = copyin(utzp, &atz, sizeof(atz))) != 0)
|
2001-09-16 10:50:06 +04:00
|
|
|
return (error);
|
|
|
|
tzp = &atz;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tv)
|
|
|
|
if ((error = settime(tv)) != 0)
|
1997-04-27 01:22:57 +04:00
|
|
|
return (error);
|
1997-01-15 04:28:28 +03:00
|
|
|
/*
|
1998-02-20 10:22:14 +03:00
|
|
|
* NetBSD has no kernel notion of time zone, and only an
|
1997-01-15 04:28:28 +03:00
|
|
|
* obsolete program would try to set it, so we log a warning.
|
|
|
|
*/
|
2001-09-16 10:50:06 +04:00
|
|
|
if (tzp)
|
1997-01-15 04:28:28 +03:00
|
|
|
log(LOG_WARNING, "pid %d attempted to set the "
|
2003-01-18 13:06:22 +03:00
|
|
|
"(obsolete) kernel time zone\n", p->p_pid);
|
1994-05-20 11:24:51 +04:00
|
|
|
return (0);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int tickdelta; /* current clock skew, us. per tick */
|
|
|
|
long timedelta; /* unapplied time correction, us. */
|
|
|
|
long bigadj = 1000000; /* use 10x skew above bigadj us. */
|
2003-04-17 01:34:15 +04:00
|
|
|
int time_adjusted; /* set if an adjustment is made */
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
/* ARGSUSED */
|
1993-06-27 10:01:27 +04:00
|
|
|
int
|
2003-01-18 13:06:22 +03:00
|
|
|
sys_adjtime(struct lwp *l, void *v, register_t *retval)
|
1995-09-20 01:40:36 +04:00
|
|
|
{
|
2000-03-30 13:27:11 +04:00
|
|
|
struct sys_adjtime_args /* {
|
1996-12-22 13:21:06 +03:00
|
|
|
syscallarg(const struct timeval *) delta;
|
1994-10-20 07:22:35 +03:00
|
|
|
syscallarg(struct timeval *) olddelta;
|
1995-09-20 01:40:36 +04:00
|
|
|
} */ *uap = v;
|
2003-01-18 13:06:22 +03:00
|
|
|
struct proc *p = l->l_proc;
|
2001-09-16 10:50:06 +04:00
|
|
|
int error;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1996-02-04 05:15:01 +03:00
|
|
|
if ((error = suser(p->p_ucred, &p->p_acflag)) != 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
1996-02-04 05:15:01 +03:00
|
|
|
|
2001-12-09 19:10:43 +03:00
|
|
|
return adjtime1(SCARG(uap, delta), SCARG(uap, olddelta), p);
|
2001-09-16 10:50:06 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2005-06-24 03:15:12 +04:00
|
|
|
adjtime1(const struct timeval *delta, struct timeval *olddelta, struct proc *p)
|
2001-09-16 10:50:06 +04:00
|
|
|
{
|
2001-12-09 19:10:43 +03:00
|
|
|
struct timeval atv;
|
2001-09-16 10:50:06 +04:00
|
|
|
long ndelta, ntickdelta, odelta;
|
2001-12-09 19:10:43 +03:00
|
|
|
int error;
|
2001-09-16 10:50:06 +04:00
|
|
|
int s;
|
1994-05-20 11:24:51 +04:00
|
|
|
|
2001-12-09 19:10:43 +03:00
|
|
|
error = copyin(delta, &atv, sizeof(struct timeval));
|
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
|
1994-05-20 11:24:51 +04:00
|
|
|
/*
|
|
|
|
* Compute the total correction and the rate at which to apply it.
|
|
|
|
* Round the adjustment down to a whole multiple of the per-tick
|
|
|
|
* delta, so that after some number of incremental changes in
|
|
|
|
* hardclock(), tickdelta will become zero, lest the correction
|
|
|
|
* overshoot and start taking us away from the desired final time.
|
|
|
|
*/
|
2001-12-09 19:10:43 +03:00
|
|
|
ndelta = atv.tv_sec * 1000000 + atv.tv_usec;
|
1999-10-10 22:41:53 +04:00
|
|
|
if (ndelta > bigadj || ndelta < -bigadj)
|
1994-05-20 11:24:51 +04:00
|
|
|
ntickdelta = 10 * tickadj;
|
|
|
|
else
|
|
|
|
ntickdelta = tickadj;
|
|
|
|
if (ndelta % ntickdelta)
|
|
|
|
ndelta = ndelta / ntickdelta * ntickdelta;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-05-20 11:24:51 +04:00
|
|
|
/*
|
|
|
|
* To make hardclock()'s job easier, make the per-tick delta negative
|
|
|
|
* if we want time to run slower; then hardclock can simply compute
|
|
|
|
* tick + tickdelta, and subtract tickdelta from timedelta.
|
|
|
|
*/
|
|
|
|
if (ndelta < 0)
|
|
|
|
ntickdelta = -ntickdelta;
|
2003-04-17 01:34:15 +04:00
|
|
|
if (ndelta != 0)
|
|
|
|
/* We need to save the system clock time during shutdown */
|
|
|
|
time_adjusted |= 1;
|
1993-03-21 12:45:37 +03:00
|
|
|
s = splclock();
|
1994-05-20 11:24:51 +04:00
|
|
|
odelta = timedelta;
|
1993-03-21 12:45:37 +03:00
|
|
|
timedelta = ndelta;
|
1994-05-20 11:24:51 +04:00
|
|
|
tickdelta = ntickdelta;
|
1993-03-21 12:45:37 +03:00
|
|
|
splx(s);
|
|
|
|
|
2001-09-16 10:50:06 +04:00
|
|
|
if (olddelta) {
|
2001-12-09 19:10:43 +03:00
|
|
|
atv.tv_sec = odelta / 1000000;
|
|
|
|
atv.tv_usec = odelta % 1000000;
|
2003-11-13 06:09:28 +03:00
|
|
|
error = copyout(&atv, olddelta, sizeof(struct timeval));
|
1994-05-20 11:24:51 +04:00
|
|
|
}
|
2003-11-13 06:09:28 +03:00
|
|
|
return error;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2003-01-18 13:06:22 +03:00
|
|
|
* Interval timer support. Both the BSD getitimer() family and the POSIX
|
|
|
|
* timer_*() family of routines are supported.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
2003-01-18 13:06:22 +03:00
|
|
|
* All timers are kept in an array pointed to by p_timers, which is
|
|
|
|
* allocated on demand - many processes don't use timers at all. The
|
|
|
|
* first three elements in this array are reserved for the BSD timers:
|
|
|
|
* element 0 is ITIMER_REAL, element 1 is ITIMER_VIRTUAL, and element
|
|
|
|
* 2 is ITIMER_PROF. The rest may be allocated by the timer_create()
|
|
|
|
* syscall.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
2003-01-18 13:06:22 +03:00
|
|
|
* Realtime timers are kept in the ptimer structure as an absolute
|
|
|
|
* time; virtual time timers are kept as a linked list of deltas.
|
1993-03-21 12:45:37 +03:00
|
|
|
* Virtual time timers are processed in the hardclock() routine of
|
2003-01-18 13:06:22 +03:00
|
|
|
* kern_clock.c. The real time timer is processed by a callout
|
|
|
|
* routine, called from the softclock() routine. Since a callout may
|
|
|
|
* be delayed in real time due to interrupt processing in the system,
|
|
|
|
* it is possible for the real time timeout routine (realtimeexpire,
|
|
|
|
* given below), to be delayed in real time past when it is supposed
|
|
|
|
* to occur. It does not suffice, therefore, to reload the real timer
|
|
|
|
* .it_value from the real time timers .it_interval. Rather, we
|
|
|
|
* compute the next time in absolute time the timer should go off. */
|
|
|
|
|
|
|
|
/* Allocate a POSIX realtime timer. */
|
1993-06-27 10:01:27 +04:00
|
|
|
int
|
2003-01-18 13:06:22 +03:00
|
|
|
sys_timer_create(struct lwp *l, void *v, register_t *retval)
|
1995-09-20 01:40:36 +04:00
|
|
|
{
|
2003-01-18 13:06:22 +03:00
|
|
|
struct sys_timer_create_args /* {
|
|
|
|
syscallarg(clockid_t) clock_id;
|
|
|
|
syscallarg(struct sigevent *) evp;
|
|
|
|
syscallarg(timer_t *) timerid;
|
1995-09-20 01:40:36 +04:00
|
|
|
} */ *uap = v;
|
2005-07-23 22:54:07 +04:00
|
|
|
|
|
|
|
return timer_create1(SCARG(uap, timerid), SCARG(uap, clock_id),
|
|
|
|
SCARG(uap, evp), copyin, l->l_proc);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
timer_create1(timer_t *tid, clockid_t id, struct sigevent *evp,
|
2005-10-23 04:09:14 +04:00
|
|
|
copyin_t fetch_event, struct proc *p)
|
2005-07-23 22:54:07 +04:00
|
|
|
{
|
2003-02-04 18:46:39 +03:00
|
|
|
int error;
|
2005-07-23 22:54:07 +04:00
|
|
|
timer_t timerid;
|
|
|
|
struct ptimer *pt;
|
2003-01-18 13:06:22 +03:00
|
|
|
|
|
|
|
if (id < CLOCK_REALTIME ||
|
|
|
|
id > CLOCK_PROF)
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
if (p->p_timers == NULL)
|
|
|
|
timers_alloc(p);
|
|
|
|
|
|
|
|
/* Find a free timer slot, skipping those reserved for setitimer(). */
|
|
|
|
for (timerid = 3; timerid < TIMER_MAX; timerid++)
|
|
|
|
if (p->p_timers->pts_timers[timerid] == NULL)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (timerid == TIMER_MAX)
|
|
|
|
return EAGAIN;
|
|
|
|
|
|
|
|
pt = pool_get(&ptimer_pool, PR_WAITOK);
|
|
|
|
if (evp) {
|
|
|
|
if (((error =
|
2005-07-23 22:54:07 +04:00
|
|
|
(*fetch_event)(evp, &pt->pt_ev, sizeof(pt->pt_ev))) != 0) ||
|
2003-01-18 13:06:22 +03:00
|
|
|
((pt->pt_ev.sigev_notify < SIGEV_NONE) ||
|
|
|
|
(pt->pt_ev.sigev_notify > SIGEV_SA))) {
|
|
|
|
pool_put(&ptimer_pool, pt);
|
|
|
|
return (error ? error : EINVAL);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
pt->pt_ev.sigev_notify = SIGEV_SIGNAL;
|
|
|
|
switch (id) {
|
|
|
|
case CLOCK_REALTIME:
|
|
|
|
pt->pt_ev.sigev_signo = SIGALRM;
|
|
|
|
break;
|
|
|
|
case CLOCK_VIRTUAL:
|
|
|
|
pt->pt_ev.sigev_signo = SIGVTALRM;
|
|
|
|
break;
|
|
|
|
case CLOCK_PROF:
|
|
|
|
pt->pt_ev.sigev_signo = SIGPROF;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
pt->pt_ev.sigev_value.sival_int = timerid;
|
|
|
|
}
|
2003-09-07 02:03:09 +04:00
|
|
|
pt->pt_info.ksi_signo = pt->pt_ev.sigev_signo;
|
|
|
|
pt->pt_info.ksi_errno = 0;
|
|
|
|
pt->pt_info.ksi_code = 0;
|
|
|
|
pt->pt_info.ksi_pid = p->p_pid;
|
|
|
|
pt->pt_info.ksi_uid = p->p_cred->p_ruid;
|
|
|
|
pt->pt_info.ksi_sigval = pt->pt_ev.sigev_value;
|
2003-01-18 13:06:22 +03:00
|
|
|
|
|
|
|
pt->pt_type = id;
|
|
|
|
pt->pt_proc = p;
|
|
|
|
pt->pt_overruns = 0;
|
|
|
|
pt->pt_poverruns = 0;
|
2003-02-04 02:39:40 +03:00
|
|
|
pt->pt_entry = timerid;
|
2003-01-18 13:06:22 +03:00
|
|
|
timerclear(&pt->pt_time.it_value);
|
|
|
|
if (id == CLOCK_REALTIME)
|
|
|
|
callout_init(&pt->pt_ch);
|
|
|
|
else
|
|
|
|
pt->pt_active = 0;
|
|
|
|
|
|
|
|
p->p_timers->pts_timers[timerid] = pt;
|
|
|
|
|
2005-07-23 22:54:07 +04:00
|
|
|
return copyout(&timerid, tid, sizeof(timerid));
|
2003-01-18 13:06:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Delete a POSIX realtime timer */
|
|
|
|
int
|
|
|
|
sys_timer_delete(struct lwp *l, void *v, register_t *retval)
|
|
|
|
{
|
|
|
|
struct sys_timer_delete_args /* {
|
|
|
|
syscallarg(timer_t) timerid;
|
|
|
|
} */ *uap = v;
|
|
|
|
struct proc *p = l->l_proc;
|
2003-02-04 18:46:39 +03:00
|
|
|
timer_t timerid;
|
2003-01-18 13:06:22 +03:00
|
|
|
struct ptimer *pt, *ptn;
|
1993-03-21 12:45:37 +03:00
|
|
|
int s;
|
|
|
|
|
2003-01-18 13:06:22 +03:00
|
|
|
timerid = SCARG(uap, timerid);
|
|
|
|
|
|
|
|
if ((p->p_timers == NULL) ||
|
|
|
|
(timerid < 2) || (timerid >= TIMER_MAX) ||
|
|
|
|
((pt = p->p_timers->pts_timers[timerid]) == NULL))
|
1993-03-21 12:45:37 +03:00
|
|
|
return (EINVAL);
|
2003-01-18 13:06:22 +03:00
|
|
|
|
|
|
|
if (pt->pt_type == CLOCK_REALTIME)
|
|
|
|
callout_stop(&pt->pt_ch);
|
|
|
|
else if (pt->pt_active) {
|
|
|
|
s = splclock();
|
|
|
|
ptn = LIST_NEXT(pt, pt_list);
|
|
|
|
LIST_REMOVE(pt, pt_list);
|
|
|
|
for ( ; ptn; ptn = LIST_NEXT(ptn, pt_list))
|
|
|
|
timeradd(&pt->pt_time.it_value, &ptn->pt_time.it_value,
|
|
|
|
&ptn->pt_time.it_value);
|
|
|
|
splx(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
p->p_timers->pts_timers[timerid] = NULL;
|
|
|
|
pool_put(&ptimer_pool, pt);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2003-03-11 00:49:56 +03:00
|
|
|
* Set up the given timer. The value in pt->pt_time.it_value is taken
|
|
|
|
* to be an absolute time for CLOCK_REALTIME timers and a relative
|
|
|
|
* time for virtual timers.
|
2003-01-18 13:06:22 +03:00
|
|
|
* Must be called at splclock().
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
timer_settime(struct ptimer *pt)
|
|
|
|
{
|
|
|
|
struct ptimer *ptn, *pptn;
|
|
|
|
struct ptlist *ptl;
|
|
|
|
|
|
|
|
if (pt->pt_type == CLOCK_REALTIME) {
|
|
|
|
callout_stop(&pt->pt_ch);
|
|
|
|
if (timerisset(&pt->pt_time.it_value)) {
|
|
|
|
/*
|
|
|
|
* Don't need to check hzto() return value, here.
|
|
|
|
* callout_reset() does it for us.
|
|
|
|
*/
|
|
|
|
callout_reset(&pt->pt_ch, hzto(&pt->pt_time.it_value),
|
|
|
|
realtimerexpire, pt);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (pt->pt_active) {
|
|
|
|
ptn = LIST_NEXT(pt, pt_list);
|
|
|
|
LIST_REMOVE(pt, pt_list);
|
|
|
|
for ( ; ptn; ptn = LIST_NEXT(ptn, pt_list))
|
|
|
|
timeradd(&pt->pt_time.it_value,
|
|
|
|
&ptn->pt_time.it_value,
|
|
|
|
&ptn->pt_time.it_value);
|
|
|
|
}
|
|
|
|
if (timerisset(&pt->pt_time.it_value)) {
|
|
|
|
if (pt->pt_type == CLOCK_VIRTUAL)
|
|
|
|
ptl = &pt->pt_proc->p_timers->pts_virtual;
|
|
|
|
else
|
|
|
|
ptl = &pt->pt_proc->p_timers->pts_prof;
|
|
|
|
|
|
|
|
for (ptn = LIST_FIRST(ptl), pptn = NULL;
|
|
|
|
ptn && timercmp(&pt->pt_time.it_value,
|
|
|
|
&ptn->pt_time.it_value, >);
|
|
|
|
pptn = ptn, ptn = LIST_NEXT(ptn, pt_list))
|
|
|
|
timersub(&pt->pt_time.it_value,
|
|
|
|
&ptn->pt_time.it_value,
|
|
|
|
&pt->pt_time.it_value);
|
|
|
|
|
|
|
|
if (pptn)
|
|
|
|
LIST_INSERT_AFTER(pptn, pt, pt_list);
|
|
|
|
else
|
|
|
|
LIST_INSERT_HEAD(ptl, pt, pt_list);
|
|
|
|
|
|
|
|
for ( ; ptn ; ptn = LIST_NEXT(ptn, pt_list))
|
|
|
|
timersub(&ptn->pt_time.it_value,
|
|
|
|
&pt->pt_time.it_value,
|
|
|
|
&ptn->pt_time.it_value);
|
|
|
|
|
|
|
|
pt->pt_active = 1;
|
|
|
|
} else
|
|
|
|
pt->pt_active = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
timer_gettime(struct ptimer *pt, struct itimerval *aitv)
|
|
|
|
{
|
|
|
|
struct ptimer *ptn;
|
|
|
|
|
|
|
|
*aitv = pt->pt_time;
|
|
|
|
if (pt->pt_type == CLOCK_REALTIME) {
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1994-12-11 21:06:07 +03:00
|
|
|
* Convert from absolute to relative time in .it_value
|
2003-01-18 13:06:22 +03:00
|
|
|
* part of real time timer. If time for real time
|
|
|
|
* timer has passed return 0, else return difference
|
|
|
|
* between current time and time for the timer to go
|
|
|
|
* off.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
2003-01-18 13:06:22 +03:00
|
|
|
if (timerisset(&aitv->it_value)) {
|
|
|
|
if (timercmp(&aitv->it_value, &time, <))
|
|
|
|
timerclear(&aitv->it_value);
|
1993-03-21 12:45:37 +03:00
|
|
|
else
|
2003-01-18 13:06:22 +03:00
|
|
|
timersub(&aitv->it_value, &time,
|
|
|
|
&aitv->it_value);
|
1998-08-18 10:27:01 +04:00
|
|
|
}
|
2003-01-18 13:06:22 +03:00
|
|
|
} else if (pt->pt_active) {
|
|
|
|
if (pt->pt_type == CLOCK_VIRTUAL)
|
|
|
|
ptn = LIST_FIRST(&pt->pt_proc->p_timers->pts_virtual);
|
|
|
|
else
|
|
|
|
ptn = LIST_FIRST(&pt->pt_proc->p_timers->pts_prof);
|
|
|
|
for ( ; ptn && ptn != pt; ptn = LIST_NEXT(ptn, pt_list))
|
|
|
|
timeradd(&aitv->it_value,
|
|
|
|
&ptn->pt_time.it_value, &aitv->it_value);
|
|
|
|
KASSERT(ptn != NULL); /* pt should be findable on the list */
|
1993-03-21 12:45:37 +03:00
|
|
|
} else
|
2003-01-18 13:06:22 +03:00
|
|
|
timerclear(&aitv->it_value);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Set and arm a POSIX realtime timer */
|
|
|
|
int
|
|
|
|
sys_timer_settime(struct lwp *l, void *v, register_t *retval)
|
|
|
|
{
|
|
|
|
struct sys_timer_settime_args /* {
|
|
|
|
syscallarg(timer_t) timerid;
|
|
|
|
syscallarg(int) flags;
|
|
|
|
syscallarg(const struct itimerspec *) value;
|
|
|
|
syscallarg(struct itimerspec *) ovalue;
|
|
|
|
} */ *uap = v;
|
2005-07-23 22:54:07 +04:00
|
|
|
int error;
|
|
|
|
struct itimerspec value, ovalue, *ovp = NULL;
|
|
|
|
|
|
|
|
if ((error = copyin(SCARG(uap, value), &value,
|
|
|
|
sizeof(struct itimerspec))) != 0)
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
if (SCARG(uap, ovalue))
|
|
|
|
ovp = &ovalue;
|
|
|
|
|
|
|
|
if ((error = dotimer_settime(SCARG(uap, timerid), &value, ovp,
|
|
|
|
SCARG(uap, flags), l->l_proc)) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
if (ovp)
|
|
|
|
return copyout(&ovalue, SCARG(uap, ovalue),
|
|
|
|
sizeof(struct itimerspec));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
dotimer_settime(int timerid, struct itimerspec *value,
|
|
|
|
struct itimerspec *ovalue, int flags, struct proc *p)
|
|
|
|
{
|
|
|
|
int s;
|
2003-01-18 13:06:22 +03:00
|
|
|
struct itimerval val, oval;
|
|
|
|
struct ptimer *pt;
|
|
|
|
|
|
|
|
if ((p->p_timers == NULL) ||
|
|
|
|
(timerid < 2) || (timerid >= TIMER_MAX) ||
|
|
|
|
((pt = p->p_timers->pts_timers[timerid]) == NULL))
|
|
|
|
return (EINVAL);
|
|
|
|
|
2005-07-23 22:54:07 +04:00
|
|
|
TIMESPEC_TO_TIMEVAL(&val.it_value, &value->it_value);
|
|
|
|
TIMESPEC_TO_TIMEVAL(&val.it_interval, &value->it_interval);
|
2003-01-18 13:06:22 +03:00
|
|
|
if (itimerfix(&val.it_value) || itimerfix(&val.it_interval))
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
oval = pt->pt_time;
|
|
|
|
pt->pt_time = val;
|
|
|
|
|
|
|
|
s = splclock();
|
2003-03-11 00:49:56 +03:00
|
|
|
/*
|
|
|
|
* If we've been passed a relative time for a realtime timer,
|
|
|
|
* convert it to absolute; if an absolute time for a virtual
|
|
|
|
* timer, convert it to relative and make sure we don't set it
|
|
|
|
* to zero, which would cancel the timer, or let it go
|
|
|
|
* negative, which would confuse the comparison tests.
|
|
|
|
*/
|
|
|
|
if (timerisset(&pt->pt_time.it_value)) {
|
|
|
|
if (pt->pt_type == CLOCK_REALTIME) {
|
2005-07-23 22:54:07 +04:00
|
|
|
if ((flags & TIMER_ABSTIME) == 0)
|
2003-03-11 00:49:56 +03:00
|
|
|
timeradd(&pt->pt_time.it_value, &time,
|
|
|
|
&pt->pt_time.it_value);
|
|
|
|
} else {
|
2005-07-23 22:54:07 +04:00
|
|
|
if ((flags & TIMER_ABSTIME) != 0) {
|
2003-03-11 00:49:56 +03:00
|
|
|
timersub(&pt->pt_time.it_value, &time,
|
|
|
|
&pt->pt_time.it_value);
|
|
|
|
if (!timerisset(&pt->pt_time.it_value) ||
|
|
|
|
pt->pt_time.it_value.tv_sec < 0) {
|
|
|
|
pt->pt_time.it_value.tv_sec = 0;
|
|
|
|
pt->pt_time.it_value.tv_usec = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-01-18 13:06:22 +03:00
|
|
|
timer_settime(pt);
|
|
|
|
splx(s);
|
|
|
|
|
2005-07-23 22:54:07 +04:00
|
|
|
if (ovalue) {
|
|
|
|
TIMEVAL_TO_TIMESPEC(&oval.it_value, &ovalue->it_value);
|
|
|
|
TIMEVAL_TO_TIMESPEC(&oval.it_interval, &ovalue->it_interval);
|
2003-01-18 13:06:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return the time remaining until a POSIX timer fires. */
|
|
|
|
int
|
|
|
|
sys_timer_gettime(struct lwp *l, void *v, register_t *retval)
|
|
|
|
{
|
|
|
|
struct sys_timer_gettime_args /* {
|
|
|
|
syscallarg(timer_t) timerid;
|
|
|
|
syscallarg(struct itimerspec *) value;
|
|
|
|
} */ *uap = v;
|
|
|
|
struct itimerspec its;
|
2005-07-23 22:54:07 +04:00
|
|
|
int error;
|
2003-01-18 13:06:22 +03:00
|
|
|
|
2005-07-23 22:54:07 +04:00
|
|
|
if ((error = dotimer_gettime(SCARG(uap, timerid), l->l_proc,
|
|
|
|
&its)) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
return copyout(&its, SCARG(uap, value), sizeof(its));
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
dotimer_gettime(int timerid, struct proc *p, struct itimerspec *its)
|
|
|
|
{
|
|
|
|
int s;
|
|
|
|
struct ptimer *pt;
|
|
|
|
struct itimerval aitv;
|
2003-01-18 13:06:22 +03:00
|
|
|
|
|
|
|
if ((p->p_timers == NULL) ||
|
|
|
|
(timerid < 2) || (timerid >= TIMER_MAX) ||
|
|
|
|
((pt = p->p_timers->pts_timers[timerid]) == NULL))
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
s = splclock();
|
|
|
|
timer_gettime(pt, &aitv);
|
1993-03-21 12:45:37 +03:00
|
|
|
splx(s);
|
2003-01-18 13:06:22 +03:00
|
|
|
|
2005-07-23 22:54:07 +04:00
|
|
|
TIMEVAL_TO_TIMESPEC(&aitv.it_interval, &its->it_interval);
|
|
|
|
TIMEVAL_TO_TIMESPEC(&aitv.it_value, &its->it_value);
|
2003-01-18 13:06:22 +03:00
|
|
|
|
2005-07-23 22:54:07 +04:00
|
|
|
return 0;
|
2003-01-18 13:06:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return the count of the number of times a periodic timer expired
|
|
|
|
* while a notification was already pending. The counter is reset when
|
|
|
|
* a timer expires and a notification can be posted.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
sys_timer_getoverrun(struct lwp *l, void *v, register_t *retval)
|
|
|
|
{
|
|
|
|
struct sys_timer_getoverrun_args /* {
|
|
|
|
syscallarg(timer_t) timerid;
|
|
|
|
} */ *uap = v;
|
|
|
|
struct proc *p = l->l_proc;
|
|
|
|
int timerid;
|
|
|
|
struct ptimer *pt;
|
|
|
|
|
|
|
|
timerid = SCARG(uap, timerid);
|
|
|
|
|
|
|
|
if ((p->p_timers == NULL) ||
|
|
|
|
(timerid < 2) || (timerid >= TIMER_MAX) ||
|
|
|
|
((pt = p->p_timers->pts_timers[timerid]) == NULL))
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
*retval = pt->pt_poverruns;
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Glue function that triggers an upcall; called from userret(). */
|
|
|
|
static void
|
|
|
|
timerupcall(struct lwp *l, void *arg)
|
|
|
|
{
|
2003-02-04 02:39:40 +03:00
|
|
|
struct ptimers *pt = (struct ptimers *)arg;
|
|
|
|
unsigned int i, fired, done;
|
2003-09-09 19:16:30 +04:00
|
|
|
|
2004-01-02 21:52:17 +03:00
|
|
|
KDASSERT(l->l_proc->p_sa);
|
|
|
|
/* Bail out if we do not own the virtual processor */
|
2004-03-14 04:08:47 +03:00
|
|
|
if (l->l_savp->savp_lwp != l)
|
2004-01-02 21:52:17 +03:00
|
|
|
return ;
|
2005-02-27 00:34:55 +03:00
|
|
|
|
2003-01-18 13:06:22 +03:00
|
|
|
KERNEL_PROC_LOCK(l);
|
2003-07-17 22:16:58 +04:00
|
|
|
|
2003-02-04 02:39:40 +03:00
|
|
|
fired = pt->pts_fired;
|
|
|
|
done = 0;
|
|
|
|
while ((i = ffs(fired)) != 0) {
|
2003-09-09 19:16:30 +04:00
|
|
|
siginfo_t *si;
|
2003-09-07 02:03:09 +04:00
|
|
|
int mask = 1 << --i;
|
2003-09-09 19:16:30 +04:00
|
|
|
int f;
|
2003-09-07 02:03:09 +04:00
|
|
|
|
2003-09-09 19:16:30 +04:00
|
|
|
f = l->l_flag & L_SA;
|
|
|
|
l->l_flag &= ~L_SA;
|
2005-10-02 21:51:27 +04:00
|
|
|
si = siginfo_alloc(PR_WAITOK);
|
2003-10-08 04:28:40 +04:00
|
|
|
si->_info = pt->pts_timers[i]->pt_info.ksi_info;
|
2003-02-04 02:39:40 +03:00
|
|
|
if (sa_upcall(l, SA_UPCALL_SIGEV | SA_UPCALL_DEFER, NULL, l,
|
2005-10-02 21:51:27 +04:00
|
|
|
sizeof(*si), si, siginfo_free) != 0) {
|
|
|
|
siginfo_free(si);
|
2005-01-06 22:26:41 +03:00
|
|
|
/* XXX What do we do here?? */
|
|
|
|
} else
|
2003-09-07 02:03:09 +04:00
|
|
|
done |= mask;
|
|
|
|
fired &= ~mask;
|
2003-09-09 19:16:30 +04:00
|
|
|
l->l_flag |= f;
|
2003-02-04 02:39:40 +03:00
|
|
|
}
|
|
|
|
pt->pts_fired &= ~done;
|
|
|
|
if (pt->pts_fired == 0)
|
2003-01-18 13:06:22 +03:00
|
|
|
l->l_proc->p_userret = NULL;
|
|
|
|
|
|
|
|
KERNEL_PROC_UNLOCK(l);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Real interval timer expired:
|
|
|
|
* send process whose timer expired an alarm signal.
|
|
|
|
* If time is not set up to reload, then just return.
|
|
|
|
* Else compute next time timer should go off which is > current time.
|
|
|
|
* This is where delay in processing this timeout causes multiple
|
|
|
|
* SIGALRM calls to be compressed into one.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
realtimerexpire(void *arg)
|
|
|
|
{
|
|
|
|
struct ptimer *pt;
|
|
|
|
int s;
|
|
|
|
|
|
|
|
pt = (struct ptimer *)arg;
|
|
|
|
|
|
|
|
itimerfire(pt);
|
|
|
|
|
|
|
|
if (!timerisset(&pt->pt_time.it_interval)) {
|
|
|
|
timerclear(&pt->pt_time.it_value);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
for (;;) {
|
|
|
|
s = splclock();
|
|
|
|
timeradd(&pt->pt_time.it_value,
|
|
|
|
&pt->pt_time.it_interval, &pt->pt_time.it_value);
|
|
|
|
if (timercmp(&pt->pt_time.it_value, &time, >)) {
|
|
|
|
/*
|
|
|
|
* Don't need to check hzto() return value, here.
|
|
|
|
* callout_reset() does it for us.
|
|
|
|
*/
|
|
|
|
callout_reset(&pt->pt_ch, hzto(&pt->pt_time.it_value),
|
|
|
|
realtimerexpire, pt);
|
|
|
|
splx(s);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
splx(s);
|
|
|
|
pt->pt_overruns++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* BSD routine to get the value of an interval timer. */
|
|
|
|
/* ARGSUSED */
|
|
|
|
int
|
|
|
|
sys_getitimer(struct lwp *l, void *v, register_t *retval)
|
|
|
|
{
|
|
|
|
struct sys_getitimer_args /* {
|
|
|
|
syscallarg(int) which;
|
|
|
|
syscallarg(struct itimerval *) itv;
|
|
|
|
} */ *uap = v;
|
|
|
|
struct proc *p = l->l_proc;
|
|
|
|
struct itimerval aitv;
|
2005-07-11 23:50:42 +04:00
|
|
|
int error;
|
|
|
|
|
|
|
|
error = dogetitimer(p, SCARG(uap, which), &aitv);
|
|
|
|
if (error)
|
|
|
|
return error;
|
|
|
|
return (copyout(&aitv, SCARG(uap, itv), sizeof(struct itimerval)));
|
|
|
|
}
|
2003-01-18 13:06:22 +03:00
|
|
|
|
2005-07-11 23:50:42 +04:00
|
|
|
int
|
|
|
|
dogetitimer(struct proc *p, int which, struct itimerval *itvp)
|
|
|
|
{
|
|
|
|
int s;
|
2003-01-18 13:06:22 +03:00
|
|
|
|
|
|
|
if ((u_int)which > ITIMER_PROF)
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
if ((p->p_timers == NULL) || (p->p_timers->pts_timers[which] == NULL)){
|
2005-07-11 23:50:42 +04:00
|
|
|
timerclear(&itvp->it_value);
|
|
|
|
timerclear(&itvp->it_interval);
|
2003-01-18 13:06:22 +03:00
|
|
|
} else {
|
|
|
|
s = splclock();
|
2005-07-11 23:50:42 +04:00
|
|
|
timer_gettime(p->p_timers->pts_timers[which], itvp);
|
2003-01-18 13:06:22 +03:00
|
|
|
splx(s);
|
|
|
|
}
|
|
|
|
|
2005-07-11 23:50:42 +04:00
|
|
|
return 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
2003-01-18 13:06:22 +03:00
|
|
|
/* BSD routine to set/arm an interval timer. */
|
1993-03-21 12:45:37 +03:00
|
|
|
/* ARGSUSED */
|
1993-06-27 10:01:27 +04:00
|
|
|
int
|
2003-01-18 13:06:22 +03:00
|
|
|
sys_setitimer(struct lwp *l, void *v, register_t *retval)
|
1995-09-20 01:40:36 +04:00
|
|
|
{
|
2000-03-30 13:27:11 +04:00
|
|
|
struct sys_setitimer_args /* {
|
1997-10-15 21:03:52 +04:00
|
|
|
syscallarg(int) which;
|
1996-12-22 13:21:06 +03:00
|
|
|
syscallarg(const struct itimerval *) itv;
|
1994-10-20 07:22:35 +03:00
|
|
|
syscallarg(struct itimerval *) oitv;
|
1995-09-20 01:40:36 +04:00
|
|
|
} */ *uap = v;
|
2003-01-18 13:06:22 +03:00
|
|
|
struct proc *p = l->l_proc;
|
1997-10-15 21:03:52 +04:00
|
|
|
int which = SCARG(uap, which);
|
1996-10-24 08:35:33 +04:00
|
|
|
struct sys_getitimer_args getargs;
|
2000-03-30 13:27:11 +04:00
|
|
|
const struct itimerval *itvp;
|
2005-07-11 23:50:42 +04:00
|
|
|
struct itimerval aitv;
|
|
|
|
int error;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1997-10-15 21:03:52 +04:00
|
|
|
if ((u_int)which > ITIMER_PROF)
|
1993-03-21 12:45:37 +03:00
|
|
|
return (EINVAL);
|
1994-10-20 07:22:35 +03:00
|
|
|
itvp = SCARG(uap, itv);
|
2003-01-18 13:06:22 +03:00
|
|
|
if (itvp &&
|
2001-09-16 10:50:06 +04:00
|
|
|
(error = copyin(itvp, &aitv, sizeof(struct itimerval)) != 0))
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
1996-10-24 08:35:33 +04:00
|
|
|
if (SCARG(uap, oitv) != NULL) {
|
1997-10-15 21:03:52 +04:00
|
|
|
SCARG(&getargs, which) = which;
|
1996-10-24 08:35:33 +04:00
|
|
|
SCARG(&getargs, itv) = SCARG(uap, oitv);
|
2003-01-18 13:06:22 +03:00
|
|
|
if ((error = sys_getitimer(l, &getargs, retval)) != 0)
|
1996-10-24 08:35:33 +04:00
|
|
|
return (error);
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
if (itvp == 0)
|
|
|
|
return (0);
|
2005-07-11 23:50:42 +04:00
|
|
|
|
|
|
|
return dosetitimer(p, which, &aitv);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
dosetitimer(struct proc *p, int which, struct itimerval *itvp)
|
|
|
|
{
|
|
|
|
struct ptimer *pt;
|
|
|
|
int s;
|
|
|
|
|
|
|
|
if (itimerfix(&itvp->it_value) || itimerfix(&itvp->it_interval))
|
1993-03-21 12:45:37 +03:00
|
|
|
return (EINVAL);
|
2003-01-18 13:06:22 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Don't bother allocating data structures if the process just
|
|
|
|
* wants to clear the timer.
|
|
|
|
*/
|
2005-07-11 23:50:42 +04:00
|
|
|
if (!timerisset(&itvp->it_value) &&
|
2003-01-18 13:06:22 +03:00
|
|
|
((p->p_timers == NULL) ||(p->p_timers->pts_timers[which] == NULL)))
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
if (p->p_timers == NULL)
|
|
|
|
timers_alloc(p);
|
|
|
|
if (p->p_timers->pts_timers[which] == NULL) {
|
|
|
|
pt = pool_get(&ptimer_pool, PR_WAITOK);
|
|
|
|
pt->pt_ev.sigev_notify = SIGEV_SIGNAL;
|
2003-09-14 10:56:22 +04:00
|
|
|
pt->pt_ev.sigev_value.sival_int = which;
|
2003-01-18 13:06:22 +03:00
|
|
|
pt->pt_overruns = 0;
|
|
|
|
pt->pt_proc = p;
|
|
|
|
pt->pt_type = which;
|
2003-02-04 02:39:40 +03:00
|
|
|
pt->pt_entry = which;
|
2003-01-18 13:06:22 +03:00
|
|
|
switch (which) {
|
|
|
|
case ITIMER_REAL:
|
|
|
|
callout_init(&pt->pt_ch);
|
|
|
|
pt->pt_ev.sigev_signo = SIGALRM;
|
|
|
|
break;
|
|
|
|
case ITIMER_VIRTUAL:
|
|
|
|
pt->pt_active = 0;
|
|
|
|
pt->pt_ev.sigev_signo = SIGVTALRM;
|
|
|
|
break;
|
|
|
|
case ITIMER_PROF:
|
|
|
|
pt->pt_active = 0;
|
|
|
|
pt->pt_ev.sigev_signo = SIGPROF;
|
|
|
|
break;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
} else
|
2003-01-18 13:06:22 +03:00
|
|
|
pt = p->p_timers->pts_timers[which];
|
|
|
|
|
2005-07-11 23:50:42 +04:00
|
|
|
pt->pt_time = *itvp;
|
2003-01-18 13:06:22 +03:00
|
|
|
p->p_timers->pts_timers[which] = pt;
|
|
|
|
|
|
|
|
s = splclock();
|
2003-03-11 00:49:56 +03:00
|
|
|
if ((which == ITIMER_REAL) && timerisset(&pt->pt_time.it_value)) {
|
|
|
|
/* Convert to absolute time */
|
|
|
|
timeradd(&pt->pt_time.it_value, &time, &pt->pt_time.it_value);
|
|
|
|
}
|
2003-01-18 13:06:22 +03:00
|
|
|
timer_settime(pt);
|
1993-03-21 12:45:37 +03:00
|
|
|
splx(s);
|
2003-01-18 13:06:22 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2003-01-18 13:06:22 +03:00
|
|
|
/* Utility routines to manage the array of pointers to timers. */
|
|
|
|
void
|
|
|
|
timers_alloc(struct proc *p)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
struct ptimers *pts;
|
|
|
|
|
2005-11-26 08:26:33 +03:00
|
|
|
pts = pool_get(&ptimers_pool, 0);
|
2003-01-18 13:06:22 +03:00
|
|
|
LIST_INIT(&pts->pts_virtual);
|
|
|
|
LIST_INIT(&pts->pts_prof);
|
|
|
|
for (i = 0; i < TIMER_MAX; i++)
|
|
|
|
pts->pts_timers[i] = NULL;
|
2003-02-04 02:39:40 +03:00
|
|
|
pts->pts_fired = 0;
|
2003-01-18 13:06:22 +03:00
|
|
|
p->p_timers = pts;
|
|
|
|
}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
2003-01-18 13:06:22 +03:00
|
|
|
* Clean up the per-process timers. If "which" is set to TIMERS_ALL,
|
|
|
|
* then clean up all timers and free all the data structures. If
|
|
|
|
* "which" is set to TIMERS_POSIX, only clean up the timers allocated
|
|
|
|
* by timer_create(), not the BSD setitimer() timers, and only free the
|
|
|
|
* structure if none of those remain.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1993-06-27 10:01:27 +04:00
|
|
|
void
|
2003-01-18 13:06:22 +03:00
|
|
|
timers_free(struct proc *p, int which)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2003-01-18 13:06:22 +03:00
|
|
|
int i, s;
|
|
|
|
struct ptimers *pts;
|
|
|
|
struct ptimer *pt, *ptn;
|
|
|
|
struct timeval tv;
|
|
|
|
|
|
|
|
if (p->p_timers) {
|
|
|
|
pts = p->p_timers;
|
|
|
|
if (which == TIMERS_ALL)
|
|
|
|
i = 0;
|
|
|
|
else {
|
|
|
|
s = splclock();
|
|
|
|
timerclear(&tv);
|
|
|
|
for (ptn = LIST_FIRST(&p->p_timers->pts_virtual);
|
|
|
|
ptn && ptn != pts->pts_timers[ITIMER_VIRTUAL];
|
|
|
|
ptn = LIST_NEXT(ptn, pt_list))
|
|
|
|
timeradd(&tv, &ptn->pt_time.it_value, &tv);
|
|
|
|
LIST_FIRST(&p->p_timers->pts_virtual) = NULL;
|
|
|
|
if (ptn) {
|
|
|
|
timeradd(&tv, &ptn->pt_time.it_value,
|
|
|
|
&ptn->pt_time.it_value);
|
|
|
|
LIST_INSERT_HEAD(&p->p_timers->pts_virtual,
|
|
|
|
ptn, pt_list);
|
|
|
|
}
|
|
|
|
|
|
|
|
timerclear(&tv);
|
|
|
|
for (ptn = LIST_FIRST(&p->p_timers->pts_prof);
|
|
|
|
ptn && ptn != pts->pts_timers[ITIMER_PROF];
|
|
|
|
ptn = LIST_NEXT(ptn, pt_list))
|
|
|
|
timeradd(&tv, &ptn->pt_time.it_value, &tv);
|
|
|
|
LIST_FIRST(&p->p_timers->pts_prof) = NULL;
|
|
|
|
if (ptn) {
|
|
|
|
timeradd(&tv, &ptn->pt_time.it_value,
|
|
|
|
&ptn->pt_time.it_value);
|
|
|
|
LIST_INSERT_HEAD(&p->p_timers->pts_prof, ptn,
|
|
|
|
pt_list);
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
splx(s);
|
2003-01-18 13:06:22 +03:00
|
|
|
i = 3;
|
|
|
|
}
|
|
|
|
for ( ; i < TIMER_MAX; i++)
|
|
|
|
if ((pt = pts->pts_timers[i]) != NULL) {
|
|
|
|
if (pt->pt_type == CLOCK_REALTIME)
|
|
|
|
callout_stop(&pt->pt_ch);
|
|
|
|
pts->pts_timers[i] = NULL;
|
|
|
|
pool_put(&ptimer_pool, pt);
|
|
|
|
}
|
|
|
|
if ((pts->pts_timers[0] == NULL) &&
|
|
|
|
(pts->pts_timers[1] == NULL) &&
|
|
|
|
(pts->pts_timers[2] == NULL)) {
|
|
|
|
p->p_timers = NULL;
|
2005-11-26 08:26:33 +03:00
|
|
|
pool_put(&ptimers_pool, pts);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check that a proposed value to load into the .it_value or
|
|
|
|
* .it_interval part of an interval timer is acceptable, and
|
|
|
|
* fix it to have at least minimal value (i.e. if it is less
|
|
|
|
* than the resolution of the clock, round it up.)
|
|
|
|
*/
|
1993-06-27 10:01:27 +04:00
|
|
|
int
|
2003-01-18 13:06:22 +03:00
|
|
|
itimerfix(struct timeval *tv)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
|
|
|
|
2001-11-13 03:34:21 +03:00
|
|
|
if (tv->tv_sec < 0 || tv->tv_usec < 0 || tv->tv_usec >= 1000000)
|
1993-03-21 12:45:37 +03:00
|
|
|
return (EINVAL);
|
|
|
|
if (tv->tv_sec == 0 && tv->tv_usec != 0 && tv->tv_usec < tick)
|
|
|
|
tv->tv_usec = tick;
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Decrement an interval timer by a specified number
|
|
|
|
* of microseconds, which must be less than a second,
|
|
|
|
* i.e. < 1000000. If the timer expires, then reload
|
|
|
|
* it. In this case, carry over (usec - old value) to
|
1994-05-20 11:24:51 +04:00
|
|
|
* reduce the value reloaded into the timer so that
|
1993-03-21 12:45:37 +03:00
|
|
|
* the timer does not drift. This routine assumes
|
|
|
|
* that it is called in a context where the timers
|
|
|
|
* on which it is operating cannot change in value.
|
|
|
|
*/
|
1993-06-27 10:01:27 +04:00
|
|
|
int
|
2003-01-18 13:06:22 +03:00
|
|
|
itimerdecr(struct ptimer *pt, int usec)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2003-01-18 13:06:22 +03:00
|
|
|
struct itimerval *itp;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2003-01-18 13:06:22 +03:00
|
|
|
itp = &pt->pt_time;
|
1993-03-21 12:45:37 +03:00
|
|
|
if (itp->it_value.tv_usec < usec) {
|
|
|
|
if (itp->it_value.tv_sec == 0) {
|
|
|
|
/* expired, and already in next interval */
|
|
|
|
usec -= itp->it_value.tv_usec;
|
|
|
|
goto expire;
|
|
|
|
}
|
|
|
|
itp->it_value.tv_usec += 1000000;
|
|
|
|
itp->it_value.tv_sec--;
|
|
|
|
}
|
|
|
|
itp->it_value.tv_usec -= usec;
|
|
|
|
usec = 0;
|
|
|
|
if (timerisset(&itp->it_value))
|
|
|
|
return (1);
|
|
|
|
/* expired, exactly at end of interval */
|
|
|
|
expire:
|
|
|
|
if (timerisset(&itp->it_interval)) {
|
|
|
|
itp->it_value = itp->it_interval;
|
|
|
|
itp->it_value.tv_usec -= usec;
|
|
|
|
if (itp->it_value.tv_usec < 0) {
|
|
|
|
itp->it_value.tv_usec += 1000000;
|
|
|
|
itp->it_value.tv_sec--;
|
|
|
|
}
|
2003-01-18 13:06:22 +03:00
|
|
|
timer_settime(pt);
|
1993-03-21 12:45:37 +03:00
|
|
|
} else
|
|
|
|
itp->it_value.tv_usec = 0; /* sec is already 0 */
|
|
|
|
return (0);
|
|
|
|
}
|
2000-02-04 02:04:45 +03:00
|
|
|
|
2003-01-18 13:06:22 +03:00
|
|
|
void
|
|
|
|
itimerfire(struct ptimer *pt)
|
|
|
|
{
|
|
|
|
struct proc *p = pt->pt_proc;
|
2004-03-14 04:08:47 +03:00
|
|
|
struct sadata_vp *vp;
|
2003-02-04 02:39:40 +03:00
|
|
|
int s;
|
2004-03-14 04:08:47 +03:00
|
|
|
unsigned int i;
|
2003-11-02 19:26:10 +03:00
|
|
|
|
2003-01-18 13:06:22 +03:00
|
|
|
if (pt->pt_ev.sigev_notify == SIGEV_SIGNAL) {
|
|
|
|
/*
|
|
|
|
* No RT signal infrastructure exists at this time;
|
|
|
|
* just post the signal number and throw away the
|
|
|
|
* value.
|
|
|
|
*/
|
|
|
|
if (sigismember(&p->p_sigctx.ps_siglist, pt->pt_ev.sigev_signo))
|
|
|
|
pt->pt_overruns++;
|
|
|
|
else {
|
2003-09-14 02:39:18 +04:00
|
|
|
ksiginfo_t ksi;
|
|
|
|
(void)memset(&ksi, 0, sizeof(ksi));
|
|
|
|
ksi.ksi_signo = pt->pt_ev.sigev_signo;
|
|
|
|
ksi.ksi_code = SI_TIMER;
|
|
|
|
ksi.ksi_sigval = pt->pt_ev.sigev_value;
|
2003-01-18 13:06:22 +03:00
|
|
|
pt->pt_poverruns = pt->pt_overruns;
|
|
|
|
pt->pt_overruns = 0;
|
2003-09-14 02:39:18 +04:00
|
|
|
kpsignal(p, &ksi, NULL);
|
2003-01-18 13:06:22 +03:00
|
|
|
}
|
|
|
|
} else if (pt->pt_ev.sigev_notify == SIGEV_SA && (p->p_flag & P_SA)) {
|
|
|
|
/* Cause the process to generate an upcall when it returns. */
|
|
|
|
|
|
|
|
if (p->p_userret == NULL) {
|
2003-05-29 02:27:57 +04:00
|
|
|
/*
|
|
|
|
* XXX stop signals can be processed inside tsleep,
|
|
|
|
* which can be inside sa_yield's inner loop, which
|
|
|
|
* makes testing for sa_idle alone insuffucent to
|
|
|
|
* determine if we really should call setrunnable.
|
|
|
|
*/
|
2003-01-18 13:06:22 +03:00
|
|
|
pt->pt_poverruns = pt->pt_overruns;
|
|
|
|
pt->pt_overruns = 0;
|
2003-02-04 02:39:40 +03:00
|
|
|
i = 1 << pt->pt_entry;
|
|
|
|
p->p_timers->pts_fired = i;
|
2003-01-18 13:06:22 +03:00
|
|
|
p->p_userret = timerupcall;
|
2003-02-04 02:39:40 +03:00
|
|
|
p->p_userret_arg = p->p_timers;
|
2005-02-27 00:34:55 +03:00
|
|
|
|
2003-11-02 19:26:10 +03:00
|
|
|
SCHED_LOCK(s);
|
2004-03-14 04:08:47 +03:00
|
|
|
SLIST_FOREACH(vp, &p->p_sa->sa_vps, savp_next) {
|
|
|
|
if (vp->savp_lwp->l_flag & L_SA_IDLE) {
|
|
|
|
vp->savp_lwp->l_flag &= ~L_SA_IDLE;
|
|
|
|
sched_wakeup(vp->savp_lwp);
|
|
|
|
break;
|
|
|
|
}
|
2003-11-02 19:26:10 +03:00
|
|
|
}
|
|
|
|
SCHED_UNLOCK(s);
|
2003-02-04 02:39:40 +03:00
|
|
|
} else if (p->p_userret == timerupcall) {
|
|
|
|
i = 1 << pt->pt_entry;
|
|
|
|
if ((p->p_timers->pts_fired & i) == 0) {
|
|
|
|
pt->pt_poverruns = pt->pt_overruns;
|
|
|
|
pt->pt_overruns = 0;
|
2003-02-04 18:50:06 +03:00
|
|
|
p->p_timers->pts_fired |= i;
|
2003-02-04 02:39:40 +03:00
|
|
|
} else
|
|
|
|
pt->pt_overruns++;
|
|
|
|
} else {
|
2003-01-18 13:06:22 +03:00
|
|
|
pt->pt_overruns++;
|
2003-11-02 19:26:10 +03:00
|
|
|
if ((p->p_flag & P_WEXIT) == 0)
|
|
|
|
printf("itimerfire(%d): overrun %d on timer %x (userret is %p)\n",
|
|
|
|
p->p_pid, pt->pt_overruns,
|
|
|
|
pt->pt_ev.sigev_value.sival_int,
|
|
|
|
p->p_userret);
|
2003-02-04 02:39:40 +03:00
|
|
|
}
|
2003-01-18 13:06:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2000-02-04 02:04:45 +03:00
|
|
|
/*
|
|
|
|
* ratecheck(): simple time-based rate-limit checking. see ratecheck(9)
|
|
|
|
* for usage and rationale.
|
|
|
|
*/
|
|
|
|
int
|
2003-01-18 13:06:22 +03:00
|
|
|
ratecheck(struct timeval *lasttime, const struct timeval *mininterval)
|
2000-02-04 02:04:45 +03:00
|
|
|
{
|
2000-07-09 10:40:08 +04:00
|
|
|
struct timeval tv, delta;
|
2000-02-04 02:04:45 +03:00
|
|
|
int s, rv = 0;
|
|
|
|
|
2003-01-18 13:06:22 +03:00
|
|
|
s = splclock();
|
2000-07-09 10:40:08 +04:00
|
|
|
tv = mono_time;
|
|
|
|
splx(s);
|
|
|
|
|
|
|
|
timersub(&tv, lasttime, &delta);
|
2000-02-04 02:04:45 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* check for 0,0 is so that the message will be seen at least once,
|
|
|
|
* even if interval is huge.
|
|
|
|
*/
|
|
|
|
if (timercmp(&delta, mininterval, >=) ||
|
|
|
|
(lasttime->tv_sec == 0 && lasttime->tv_usec == 0)) {
|
2000-07-09 10:40:08 +04:00
|
|
|
*lasttime = tv;
|
2000-02-04 02:04:45 +03:00
|
|
|
rv = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (rv);
|
|
|
|
}
|
2000-07-09 10:44:57 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* ppsratecheck(): packets (or events) per second limitation.
|
|
|
|
*/
|
|
|
|
int
|
2003-01-18 13:06:22 +03:00
|
|
|
ppsratecheck(struct timeval *lasttime, int *curpps, int maxpps)
|
2000-07-09 10:44:57 +04:00
|
|
|
{
|
|
|
|
struct timeval tv, delta;
|
|
|
|
int s, rv;
|
|
|
|
|
2003-01-18 13:06:22 +03:00
|
|
|
s = splclock();
|
2000-07-09 10:44:57 +04:00
|
|
|
tv = mono_time;
|
|
|
|
splx(s);
|
|
|
|
|
|
|
|
timersub(&tv, lasttime, &delta);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* check for 0,0 is so that the message will be seen at least once.
|
|
|
|
* if more than one second have passed since the last update of
|
|
|
|
* lasttime, reset the counter.
|
|
|
|
*
|
|
|
|
* we do increment *curpps even in *curpps < maxpps case, as some may
|
|
|
|
* try to use *curpps for stat purposes as well.
|
|
|
|
*/
|
|
|
|
if ((lasttime->tv_sec == 0 && lasttime->tv_usec == 0) ||
|
|
|
|
delta.tv_sec >= 1) {
|
|
|
|
*lasttime = tv;
|
|
|
|
*curpps = 0;
|
2003-05-19 07:23:37 +04:00
|
|
|
}
|
|
|
|
if (maxpps < 0)
|
2000-08-02 16:24:11 +04:00
|
|
|
rv = 1;
|
|
|
|
else if (*curpps < maxpps)
|
2000-07-09 10:44:57 +04:00
|
|
|
rv = 1;
|
|
|
|
else
|
|
|
|
rv = 0;
|
|
|
|
|
2000-07-09 18:13:04 +04:00
|
|
|
#if 1 /*DIAGNOSTIC?*/
|
2000-07-09 10:44:57 +04:00
|
|
|
/* be careful about wrap-around */
|
|
|
|
if (*curpps + 1 > *curpps)
|
|
|
|
*curpps = *curpps + 1;
|
|
|
|
#else
|
|
|
|
/*
|
|
|
|
* assume that there's not too many calls to this function.
|
|
|
|
* not sure if the assumption holds, as it depends on *caller's*
|
|
|
|
* behavior, not the behavior of this function.
|
|
|
|
* IMHO it is wrong to make assumption on the caller's behavior,
|
2000-07-09 18:13:04 +04:00
|
|
|
* so the above #if is #if 1, not #ifdef DIAGNOSTIC.
|
2000-07-09 10:44:57 +04:00
|
|
|
*/
|
|
|
|
*curpps = *curpps + 1;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return (rv);
|
|
|
|
}
|