]> git.saurik.com Git - apple/xnu.git/blame - bsd/kern/kern_time.c
xnu-1699.22.73.tar.gz
[apple/xnu.git] / bsd / kern / kern_time.c
CommitLineData
1c79356b 1/*
b0d623f7 2 * Copyright (c) 2000-2008 Apple Inc. All rights reserved.
5d5c5d0d 3 *
2d21ac55 4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
1c79356b 5 *
2d21ac55
A
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
8f6c56a5 14 *
2d21ac55
A
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
17 *
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
8f6c56a5
A
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
2d21ac55
A
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
8f6c56a5 25 *
2d21ac55 26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
1c79356b
A
27 */
28/* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */
29/*
30 * Copyright (c) 1982, 1986, 1989, 1993
31 * The Regents of the University of California. All rights reserved.
32 *
33 * Redistribution and use in source and binary forms, with or without
34 * modification, are permitted provided that the following conditions
35 * are met:
36 * 1. Redistributions of source code must retain the above copyright
37 * notice, this list of conditions and the following disclaimer.
38 * 2. Redistributions in binary form must reproduce the above copyright
39 * notice, this list of conditions and the following disclaimer in the
40 * documentation and/or other materials provided with the distribution.
41 * 3. All advertising materials mentioning features or use of this software
42 * must display the following acknowledgement:
43 * This product includes software developed by the University of
44 * California, Berkeley and its contributors.
45 * 4. Neither the name of the University nor the names of its contributors
46 * may be used to endorse or promote products derived from this software
47 * without specific prior written permission.
48 *
49 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
50 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
51 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
52 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
53 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
54 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
55 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
56 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
57 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
58 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
59 * SUCH DAMAGE.
60 *
61 * @(#)kern_time.c 8.4 (Berkeley) 5/26/95
62 */
2d21ac55
A
63/*
64 * NOTICE: This file was modified by SPARTA, Inc. in 2005 to introduce
65 * support for mandatory and extensible security protections. This notice
66 * is included in support of clause 2.2 (b) of the Apple Public License,
67 * Version 2.0.
68 */
1c79356b
A
69
70#include <sys/param.h>
71#include <sys/resourcevar.h>
72#include <sys/kernel.h>
73#include <sys/systm.h>
91447636
A
74#include <sys/proc_internal.h>
75#include <sys/kauth.h>
1c79356b 76#include <sys/vnode.h>
b0d623f7 77#include <sys/time.h>
6d2010ae 78#include <sys/priv.h>
1c79356b 79
91447636
A
80#include <sys/mount_internal.h>
81#include <sys/sysproto.h>
82#include <sys/signalvar.h>
1c79356b 83
1c79356b 84#include <kern/clock.h>
2d21ac55 85#include <kern/task.h>
91447636 86#include <kern/thread_call.h>
2d21ac55
A
87#if CONFIG_MACF
88#include <security/mac_framework.h>
89#endif
1c79356b
A
90
91#define HZ 100 /* XXX */
92
9bccf70c 93/* simple lock used to access timezone, tz structure */
91447636
A
94lck_spin_t * tz_slock;
95lck_grp_t * tz_slock_grp;
96lck_attr_t * tz_slock_attr;
97lck_grp_attr_t *tz_slock_grp_attr;
98
99static void setthetime(
100 struct timeval *tv);
101
2d21ac55 102void time_zone_slock_init(void) __attribute__((section("__TEXT, initcode")));
91447636 103
1c79356b
A
104/*
105 * Time of day and interval timer support.
106 *
107 * These routines provide the kernel entry points to get and set
108 * the time-of-day and per-process interval timers. Subroutines
109 * here provide support for adding and subtracting timeval structures
110 * and decrementing interval timers, optionally reloading the interval
111 * timers when they expire.
112 */
1c79356b
A
113/* ARGSUSED */
114int
0c530ab8
A
115gettimeofday(
116__unused struct proc *p,
117 struct gettimeofday_args *uap,
b0d623f7 118 int32_t *retval)
1c79356b 119{
1c79356b 120 int error = 0;
9bccf70c
A
121 struct timezone ltz; /* local copy */
122
b0d623f7
A
123 if (uap->tp) {
124 clock_sec_t secs;
125 clock_usec_t usecs;
126
127 clock_gettimeofday(&secs, &usecs);
128 retval[0] = secs;
129 retval[1] = usecs;
130 }
1c79356b 131
9bccf70c 132 if (uap->tzp) {
91447636 133 lck_spin_lock(tz_slock);
9bccf70c 134 ltz = tz;
91447636 135 lck_spin_unlock(tz_slock);
0c530ab8
A
136
137 error = copyout((caddr_t)&ltz, CAST_USER_ADDR_T(uap->tzp), sizeof (tz));
9bccf70c 138 }
1c79356b 139
0c530ab8 140 return (error);
1c79356b
A
141}
142
91447636
A
143/*
144 * XXX Y2038 bug because of setthetime() argument
145 */
1c79356b
A
146/* ARGSUSED */
147int
b0d623f7 148settimeofday(__unused struct proc *p, struct settimeofday_args *uap, __unused int32_t *retval)
1c79356b
A
149{
150 struct timeval atv;
151 struct timezone atz;
91447636 152 int error;
1c79356b 153
b0d623f7
A
154 bzero(&atv, sizeof(atv));
155
2d21ac55
A
156#if CONFIG_MACF
157 error = mac_system_check_settime(kauth_cred_get());
158 if (error)
159 return (error);
160#endif
161#ifndef CONFIG_EMBEDDED
91447636 162 if ((error = suser(kauth_cred_get(), &p->p_acflag)))
1c79356b 163 return (error);
2d21ac55 164#endif
91447636
A
165 /* Verify all parameters before changing time */
166 if (uap->tv) {
167 if (IS_64BIT_PROCESS(p)) {
b0d623f7
A
168 struct user64_timeval user_atv;
169 error = copyin(uap->tv, &user_atv, sizeof(user_atv));
91447636
A
170 atv.tv_sec = user_atv.tv_sec;
171 atv.tv_usec = user_atv.tv_usec;
172 } else {
b0d623f7
A
173 struct user32_timeval user_atv;
174 error = copyin(uap->tv, &user_atv, sizeof(user_atv));
175 atv.tv_sec = user_atv.tv_sec;
176 atv.tv_usec = user_atv.tv_usec;
91447636
A
177 }
178 if (error)
179 return (error);
180 }
181 if (uap->tzp && (error = copyin(uap->tzp, (caddr_t)&atz, sizeof(atz))))
1c79356b 182 return (error);
91447636
A
183 if (uap->tv) {
184 timevalfix(&atv);
185 if (atv.tv_sec < 0 || (atv.tv_sec == 0 && atv.tv_usec < 0))
186 return (EPERM);
1c79356b 187 setthetime(&atv);
91447636 188 }
9bccf70c 189 if (uap->tzp) {
91447636 190 lck_spin_lock(tz_slock);
1c79356b 191 tz = atz;
91447636 192 lck_spin_unlock(tz_slock);
9bccf70c 193 }
1c79356b
A
194 return (0);
195}
196
91447636
A
197static void
198setthetime(
199 struct timeval *tv)
1c79356b 200{
55e303ae 201 clock_set_calendar_microtime(tv->tv_sec, tv->tv_usec);
1c79356b
A
202}
203
91447636
A
204/*
205 * XXX Y2038 bug because of clock_adjtime() first argument
206 */
1c79356b
A
207/* ARGSUSED */
208int
b0d623f7 209adjtime(struct proc *p, struct adjtime_args *uap, __unused int32_t *retval)
1c79356b 210{
9bccf70c 211 struct timeval atv;
9bccf70c 212 int error;
1c79356b 213
2d21ac55
A
214#if CONFIG_MACF
215 error = mac_system_check_settime(kauth_cred_get());
216 if (error)
217 return (error);
218#endif
6d2010ae 219 if ((error = priv_check_cred(kauth_cred_get(), PRIV_ADJTIME, 0)))
1c79356b 220 return (error);
91447636 221 if (IS_64BIT_PROCESS(p)) {
b0d623f7
A
222 struct user64_timeval user_atv;
223 error = copyin(uap->delta, &user_atv, sizeof(user_atv));
91447636
A
224 atv.tv_sec = user_atv.tv_sec;
225 atv.tv_usec = user_atv.tv_usec;
226 } else {
b0d623f7
A
227 struct user32_timeval user_atv;
228 error = copyin(uap->delta, &user_atv, sizeof(user_atv));
229 atv.tv_sec = user_atv.tv_sec;
230 atv.tv_usec = user_atv.tv_usec;
91447636
A
231 }
232 if (error)
9bccf70c 233 return (error);
1c79356b 234
91447636
A
235 /*
236 * Compute the total correction and the rate at which to apply it.
237 */
b0d623f7 238 clock_adjtime(&atv.tv_sec, &atv.tv_usec);
1c79356b 239
1c79356b 240 if (uap->olddelta) {
91447636 241 if (IS_64BIT_PROCESS(p)) {
b0d623f7 242 struct user64_timeval user_atv;
91447636
A
243 user_atv.tv_sec = atv.tv_sec;
244 user_atv.tv_usec = atv.tv_usec;
b0d623f7 245 error = copyout(&user_atv, uap->olddelta, sizeof(user_atv));
91447636 246 } else {
b0d623f7
A
247 struct user32_timeval user_atv;
248 user_atv.tv_sec = atv.tv_sec;
249 user_atv.tv_usec = atv.tv_usec;
250 error = copyout(&user_atv, uap->olddelta, sizeof(user_atv));
91447636 251 }
1c79356b 252 }
1c79356b 253
9bccf70c 254 return (0);
1c79356b
A
255}
256
1c79356b 257/*
91447636
A
258 * Verify the calendar value. If negative,
259 * reset to zero (the epoch).
1c79356b
A
260 */
261void
91447636
A
262inittodr(
263 __unused time_t base)
1c79356b 264{
55e303ae
A
265 struct timeval tv;
266
1c79356b 267 /*
0b4e3aa0
A
268 * Assertion:
269 * The calendar has already been
91447636 270 * set up from the platform clock.
0b4e3aa0 271 *
1c79356b
A
272 * The value returned by microtime()
273 * is gotten from the calendar.
274 */
55e303ae 275 microtime(&tv);
1c79356b 276
91447636 277 if (tv.tv_sec < 0 || tv.tv_usec < 0) {
1c79356b 278 printf ("WARNING: preposterous time in Real Time Clock");
91447636
A
279 tv.tv_sec = 0; /* the UNIX epoch */
280 tv.tv_usec = 0;
281 setthetime(&tv);
1c79356b
A
282 printf(" -- CHECK AND RESET THE DATE!\n");
283 }
1c79356b
A
284}
285
91447636
A
286time_t
287boottime_sec(void)
288{
b0d623f7
A
289 clock_sec_t secs;
290 clock_nsec_t nanosecs;
9bccf70c 291
b0d623f7
A
292 clock_get_boottime_nanotime(&secs, &nanosecs);
293 return (secs);
294}
9bccf70c 295
1c79356b
A
296/*
297 * Get value of an interval timer. The process virtual and
9bccf70c 298 * profiling virtual time timers are kept internally in the
1c79356b
A
299 * way they are specified externally: in time until they expire.
300 *
9bccf70c
A
301 * The real time interval timer expiration time (p_rtime)
302 * is kept as an absolute time rather than as a delta, so that
303 * it is easy to keep periodic real-time signals from drifting.
1c79356b 304 *
2d21ac55
A
305 * The real time timer is processed by a callout routine.
306 * Since a callout may be delayed in real time due to
9bccf70c
A
307 * other processing in the system, it is possible for the real
308 * time callout routine (realitexpire, given below), to be delayed
309 * in real time past when it is supposed to occur. It does not
310 * suffice, therefore, to reload the real time .it_value from the
311 * real time .it_interval. Rather, we compute the next time in
312 * absolute time when the timer should go off.
2d21ac55
A
313 *
314 * Returns: 0 Success
315 * EINVAL Invalid argument
316 * copyout:EFAULT Bad address
1c79356b 317 */
1c79356b
A
318/* ARGSUSED */
319int
b0d623f7 320getitimer(struct proc *p, struct getitimer_args *uap, __unused int32_t *retval)
1c79356b
A
321{
322 struct itimerval aitv;
1c79356b
A
323
324 if (uap->which > ITIMER_PROF)
325 return(EINVAL);
2d21ac55 326
b0d623f7
A
327 bzero(&aitv, sizeof(aitv));
328
2d21ac55
A
329 proc_spinlock(p);
330 switch (uap->which) {
331
332 case ITIMER_REAL:
1c79356b 333 /*
9bccf70c
A
334 * If time for real time timer has passed return 0,
335 * else return difference between current time and
336 * time for the timer to go off.
1c79356b
A
337 */
338 aitv = p->p_realtimer;
9bccf70c
A
339 if (timerisset(&p->p_rtime)) {
340 struct timeval now;
341
342 microuptime(&now);
343 if (timercmp(&p->p_rtime, &now, <))
1c79356b 344 timerclear(&aitv.it_value);
9bccf70c
A
345 else {
346 aitv.it_value = p->p_rtime;
347 timevalsub(&aitv.it_value, &now);
348 }
349 }
350 else
351 timerclear(&aitv.it_value);
2d21ac55
A
352 break;
353
354 case ITIMER_VIRTUAL:
355 aitv = p->p_vtimer_user;
356 break;
357
358 case ITIMER_PROF:
359 aitv = p->p_vtimer_prof;
360 break;
9bccf70c 361 }
2d21ac55
A
362
363 proc_spinunlock(p);
9bccf70c 364
91447636 365 if (IS_64BIT_PROCESS(p)) {
b0d623f7 366 struct user64_itimerval user_itv;
91447636
A
367 user_itv.it_interval.tv_sec = aitv.it_interval.tv_sec;
368 user_itv.it_interval.tv_usec = aitv.it_interval.tv_usec;
369 user_itv.it_value.tv_sec = aitv.it_value.tv_sec;
370 user_itv.it_value.tv_usec = aitv.it_value.tv_usec;
b0d623f7 371 return (copyout((caddr_t)&user_itv, uap->itv, sizeof (user_itv)));
91447636 372 } else {
b0d623f7
A
373 struct user32_itimerval user_itv;
374 user_itv.it_interval.tv_sec = aitv.it_interval.tv_sec;
375 user_itv.it_interval.tv_usec = aitv.it_interval.tv_usec;
376 user_itv.it_value.tv_sec = aitv.it_value.tv_sec;
377 user_itv.it_value.tv_usec = aitv.it_value.tv_usec;
378 return (copyout((caddr_t)&user_itv, uap->itv, sizeof (user_itv)));
91447636 379 }
1c79356b
A
380}
381
2d21ac55
A
382/*
383 * Returns: 0 Success
384 * EINVAL Invalid argument
385 * copyin:EFAULT Bad address
386 * getitimer:EINVAL Invalid argument
387 * getitimer:EFAULT Bad address
388 */
1c79356b
A
389/* ARGSUSED */
390int
b0d623f7 391setitimer(struct proc *p, struct setitimer_args *uap, int32_t *retval)
1c79356b
A
392{
393 struct itimerval aitv;
91447636 394 user_addr_t itvp;
9bccf70c 395 int error;
1c79356b 396
b0d623f7
A
397 bzero(&aitv, sizeof(aitv));
398
1c79356b 399 if (uap->which > ITIMER_PROF)
9bccf70c 400 return (EINVAL);
91447636
A
401 if ((itvp = uap->itv)) {
402 if (IS_64BIT_PROCESS(p)) {
b0d623f7
A
403 struct user64_itimerval user_itv;
404 if ((error = copyin(itvp, (caddr_t)&user_itv, sizeof (user_itv))))
91447636
A
405 return (error);
406 aitv.it_interval.tv_sec = user_itv.it_interval.tv_sec;
407 aitv.it_interval.tv_usec = user_itv.it_interval.tv_usec;
408 aitv.it_value.tv_sec = user_itv.it_value.tv_sec;
409 aitv.it_value.tv_usec = user_itv.it_value.tv_usec;
410 } else {
b0d623f7
A
411 struct user32_itimerval user_itv;
412 if ((error = copyin(itvp, (caddr_t)&user_itv, sizeof (user_itv))))
91447636 413 return (error);
b0d623f7
A
414 aitv.it_interval.tv_sec = user_itv.it_interval.tv_sec;
415 aitv.it_interval.tv_usec = user_itv.it_interval.tv_usec;
416 aitv.it_value.tv_sec = user_itv.it_value.tv_sec;
417 aitv.it_value.tv_usec = user_itv.it_value.tv_usec;
91447636
A
418 }
419 }
420 if ((uap->itv = uap->oitv) && (error = getitimer(p, (struct getitimer_args *)uap, retval)))
1c79356b
A
421 return (error);
422 if (itvp == 0)
423 return (0);
424 if (itimerfix(&aitv.it_value) || itimerfix(&aitv.it_interval))
425 return (EINVAL);
2d21ac55
A
426
427 switch (uap->which) {
428
429 case ITIMER_REAL:
430 proc_spinlock(p);
1c79356b 431 if (timerisset(&aitv.it_value)) {
9bccf70c
A
432 microuptime(&p->p_rtime);
433 timevaladd(&p->p_rtime, &aitv.it_value);
2d21ac55
A
434 p->p_realtimer = aitv;
435 if (!thread_call_enter_delayed(p->p_rcall, tvtoabstime(&p->p_rtime)))
436 p->p_ractive++;
437 } else {
438 timerclear(&p->p_rtime);
439 p->p_realtimer = aitv;
440 if (thread_call_cancel(p->p_rcall))
441 p->p_ractive--;
1c79356b 442 }
2d21ac55
A
443 proc_spinunlock(p);
444
445 break;
446
447
448 case ITIMER_VIRTUAL:
449 if (timerisset(&aitv.it_value))
450 task_vtimer_set(p->task, TASK_VTIMER_USER);
451 else
452 task_vtimer_clear(p->task, TASK_VTIMER_USER);
453
454 proc_spinlock(p);
455 p->p_vtimer_user = aitv;
456 proc_spinunlock(p);
457 break;
458
459 case ITIMER_PROF:
460 if (timerisset(&aitv.it_value))
461 task_vtimer_set(p->task, TASK_VTIMER_PROF);
9bccf70c 462 else
2d21ac55 463 task_vtimer_clear(p->task, TASK_VTIMER_PROF);
9bccf70c 464
2d21ac55
A
465 proc_spinlock(p);
466 p->p_vtimer_prof = aitv;
467 proc_spinunlock(p);
468 break;
9bccf70c 469 }
9bccf70c
A
470
471 return (0);
1c79356b
A
472}
473
474/*
475 * Real interval timer expired:
476 * send process whose timer expired an alarm signal.
477 * If time is not set up to reload, then just return.
478 * Else compute next time timer should go off which is > current time.
479 * This is where delay in processing this timeout causes multiple
480 * SIGALRM calls to be compressed into one.
481 */
482void
9bccf70c 483realitexpire(
2d21ac55 484 struct proc *p)
1c79356b 485{
2d21ac55
A
486 struct proc *r;
487 struct timeval t;
488
489 r = proc_find(p->p_pid);
490
491 proc_spinlock(p);
492
493 if (--p->p_ractive > 0 || r != p) {
494 proc_spinunlock(p);
495
496 if (r != NULL)
497 proc_rele(r);
1c79356b
A
498 return;
499 }
2d21ac55 500
9bccf70c
A
501 if (!timerisset(&p->p_realtimer.it_interval)) {
502 timerclear(&p->p_rtime);
2d21ac55 503 proc_spinunlock(p);
9bccf70c 504
2d21ac55
A
505 psignal(p, SIGALRM);
506 proc_rele(p);
1c79356b 507 return;
1c79356b 508 }
9bccf70c 509
2d21ac55 510 microuptime(&t);
9bccf70c 511 timevaladd(&p->p_rtime, &p->p_realtimer.it_interval);
2d21ac55
A
512 if (timercmp(&p->p_rtime, &t, <=)) {
513 if ((p->p_rtime.tv_sec + 2) >= t.tv_sec) {
9bccf70c
A
514 for (;;) {
515 timevaladd(&p->p_rtime, &p->p_realtimer.it_interval);
2d21ac55 516 if (timercmp(&p->p_rtime, &t, >))
9bccf70c
A
517 break;
518 }
519 }
520 else {
521 p->p_rtime = p->p_realtimer.it_interval;
2d21ac55 522 timevaladd(&p->p_rtime, &t);
1c79356b 523 }
1c79356b 524 }
9bccf70c 525
2d21ac55
A
526 if (!thread_call_enter_delayed(p->p_rcall, tvtoabstime(&p->p_rtime)))
527 p->p_ractive++;
528 proc_spinunlock(p);
55e303ae 529
2d21ac55
A
530 psignal(p, SIGALRM);
531 proc_rele(p);
1c79356b
A
532}
533
534/*
535 * Check that a proposed value to load into the .it_value or
2d21ac55 536 * .it_interval part of an interval timer is acceptable.
1c79356b
A
537 */
538int
2d21ac55
A
539itimerfix(
540 struct timeval *tv)
1c79356b
A
541{
542
543 if (tv->tv_sec < 0 || tv->tv_sec > 100000000 ||
544 tv->tv_usec < 0 || tv->tv_usec >= 1000000)
545 return (EINVAL);
1c79356b
A
546 return (0);
547}
548
549/*
550 * Decrement an interval timer by a specified number
551 * of microseconds, which must be less than a second,
552 * i.e. < 1000000. If the timer expires, then reload
553 * it. In this case, carry over (usec - old value) to
2d21ac55 554 * reduce the value reloaded into the timer so that
1c79356b
A
555 * the timer does not drift. This routine assumes
556 * that it is called in a context where the timers
557 * on which it is operating cannot change in value.
558 */
559int
2d21ac55
A
560itimerdecr(proc_t p,
561 struct itimerval *itp, int usec)
1c79356b
A
562{
563
2d21ac55
A
564 proc_spinlock(p);
565
1c79356b
A
566 if (itp->it_value.tv_usec < usec) {
567 if (itp->it_value.tv_sec == 0) {
568 /* expired, and already in next interval */
569 usec -= itp->it_value.tv_usec;
570 goto expire;
571 }
572 itp->it_value.tv_usec += 1000000;
573 itp->it_value.tv_sec--;
574 }
575 itp->it_value.tv_usec -= usec;
576 usec = 0;
2d21ac55
A
577 if (timerisset(&itp->it_value)) {
578 proc_spinunlock(p);
1c79356b 579 return (1);
2d21ac55 580 }
1c79356b
A
581 /* expired, exactly at end of interval */
582expire:
583 if (timerisset(&itp->it_interval)) {
584 itp->it_value = itp->it_interval;
2d21ac55 585 if (itp->it_value.tv_sec > 0) {
1c79356b
A
586 itp->it_value.tv_usec -= usec;
587 if (itp->it_value.tv_usec < 0) {
588 itp->it_value.tv_usec += 1000000;
589 itp->it_value.tv_sec--;
2d21ac55 590 }
1c79356b
A
591 }
592 } else
593 itp->it_value.tv_usec = 0; /* sec is already 0 */
2d21ac55 594 proc_spinunlock(p);
1c79356b
A
595 return (0);
596}
597
598/*
599 * Add and subtract routines for timevals.
600 * N.B.: subtract routine doesn't deal with
601 * results which are before the beginning,
602 * it just gets very confused in this case.
603 * Caveat emptor.
604 */
605void
9bccf70c
A
606timevaladd(
607 struct timeval *t1,
608 struct timeval *t2)
1c79356b
A
609{
610
611 t1->tv_sec += t2->tv_sec;
612 t1->tv_usec += t2->tv_usec;
613 timevalfix(t1);
614}
615void
9bccf70c
A
616timevalsub(
617 struct timeval *t1,
618 struct timeval *t2)
1c79356b
A
619{
620
621 t1->tv_sec -= t2->tv_sec;
622 t1->tv_usec -= t2->tv_usec;
623 timevalfix(t1);
624}
625void
9bccf70c
A
626timevalfix(
627 struct timeval *t1)
1c79356b
A
628{
629
630 if (t1->tv_usec < 0) {
631 t1->tv_sec--;
632 t1->tv_usec += 1000000;
633 }
634 if (t1->tv_usec >= 1000000) {
635 t1->tv_sec++;
636 t1->tv_usec -= 1000000;
637 }
638}
639
640/*
641 * Return the best possible estimate of the time in the timeval
642 * to which tvp points.
643 */
644void
9bccf70c
A
645microtime(
646 struct timeval *tvp)
1c79356b 647{
b0d623f7
A
648 clock_sec_t tv_sec;
649 clock_usec_t tv_usec;
650
651 clock_get_calendar_microtime(&tv_sec, &tv_usec);
652
653 tvp->tv_sec = tv_sec;
654 tvp->tv_usec = tv_usec;
1c79356b 655}
9bccf70c
A
656
657void
658microuptime(
659 struct timeval *tvp)
660{
b0d623f7
A
661 clock_sec_t tv_sec;
662 clock_usec_t tv_usec;
663
664 clock_get_system_microtime(&tv_sec, &tv_usec);
665
666 tvp->tv_sec = tv_sec;
667 tvp->tv_usec = tv_usec;
9bccf70c
A
668}
669
670/*
671 * Ditto for timespec.
672 */
673void
674nanotime(
675 struct timespec *tsp)
676{
b0d623f7
A
677 clock_sec_t tv_sec;
678 clock_nsec_t tv_nsec;
679
680 clock_get_calendar_nanotime(&tv_sec, &tv_nsec);
681
682 tsp->tv_sec = tv_sec;
683 tsp->tv_nsec = tv_nsec;
9bccf70c
A
684}
685
686void
687nanouptime(
688 struct timespec *tsp)
689{
b0d623f7
A
690 clock_sec_t tv_sec;
691 clock_nsec_t tv_nsec;
692
693 clock_get_system_nanotime(&tv_sec, &tv_nsec);
694
695 tsp->tv_sec = tv_sec;
696 tsp->tv_nsec = tv_nsec;
9bccf70c
A
697}
698
699uint64_t
700tvtoabstime(
701 struct timeval *tvp)
702{
703 uint64_t result, usresult;
704
705 clock_interval_to_absolutetime_interval(
706 tvp->tv_sec, NSEC_PER_SEC, &result);
707 clock_interval_to_absolutetime_interval(
708 tvp->tv_usec, NSEC_PER_USEC, &usresult);
709
710 return (result + usresult);
711}
712void
713time_zone_slock_init(void)
714{
91447636
A
715 /* allocate lock group attribute and group */
716 tz_slock_grp_attr = lck_grp_attr_alloc_init();
9bccf70c 717
91447636 718 tz_slock_grp = lck_grp_alloc_init("tzlock", tz_slock_grp_attr);
9bccf70c 719
91447636
A
720 /* Allocate lock attribute */
721 tz_slock_attr = lck_attr_alloc_init();
9bccf70c 722
91447636
A
723 /* Allocate the spin lock */
724 tz_slock = lck_spin_alloc_init(tz_slock_grp, tz_slock_attr);
9bccf70c 725}