2 * Copyright (c) 2000-2008 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
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.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
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
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
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.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
28 /* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */
30 * Copyright (c) 1982, 1986, 1989, 1993
31 * The Regents of the University of California. All rights reserved.
33 * Redistribution and use in source and binary forms, with or without
34 * modification, are permitted provided that the following conditions
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.
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
61 * @(#)kern_time.c 8.4 (Berkeley) 5/26/95
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,
70 #include <sys/param.h>
71 #include <sys/resourcevar.h>
72 #include <sys/kernel.h>
73 #include <sys/systm.h>
74 #include <sys/proc_internal.h>
75 #include <sys/kauth.h>
76 #include <sys/vnode.h>
80 #include <sys/mount_internal.h>
81 #include <sys/sysproto.h>
82 #include <sys/signalvar.h>
84 #include <kern/clock.h>
85 #include <kern/task.h>
86 #include <kern/thread_call.h>
88 #include <security/mac_framework.h>
91 #define HZ 100 /* XXX */
93 /* simple lock used to access timezone, tz structure */
94 lck_spin_t
* tz_slock
;
95 lck_grp_t
* tz_slock_grp
;
96 lck_attr_t
* tz_slock_attr
;
97 lck_grp_attr_t
*tz_slock_grp_attr
;
99 static void setthetime(
102 void time_zone_slock_init(void) __attribute__((section("__TEXT, initcode")));
105 * Time of day and interval timer support.
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.
116 __unused
struct proc
*p
,
117 struct gettimeofday_args
*uap
,
121 struct timezone ltz
; /* local copy */
127 clock_gettimeofday(&secs
, &usecs
);
133 lck_spin_lock(tz_slock
);
135 lck_spin_unlock(tz_slock
);
137 error
= copyout((caddr_t
)<z
, CAST_USER_ADDR_T(uap
->tzp
), sizeof (tz
));
144 * XXX Y2038 bug because of setthetime() argument
148 settimeofday(__unused
struct proc
*p
, struct settimeofday_args
*uap
, __unused
int32_t *retval
)
154 bzero(&atv
, sizeof(atv
));
157 error
= mac_system_check_settime(kauth_cred_get());
161 #ifndef CONFIG_EMBEDDED
162 if ((error
= suser(kauth_cred_get(), &p
->p_acflag
)))
165 /* Verify all parameters before changing time */
167 if (IS_64BIT_PROCESS(p
)) {
168 struct user64_timeval user_atv
;
169 error
= copyin(uap
->tv
, &user_atv
, sizeof(user_atv
));
170 atv
.tv_sec
= user_atv
.tv_sec
;
171 atv
.tv_usec
= user_atv
.tv_usec
;
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
;
181 if (uap
->tzp
&& (error
= copyin(uap
->tzp
, (caddr_t
)&atz
, sizeof(atz
))))
185 if (atv
.tv_sec
< 0 || (atv
.tv_sec
== 0 && atv
.tv_usec
< 0))
190 lck_spin_lock(tz_slock
);
192 lck_spin_unlock(tz_slock
);
201 clock_set_calendar_microtime(tv
->tv_sec
, tv
->tv_usec
);
205 * XXX Y2038 bug because of clock_adjtime() first argument
209 adjtime(struct proc
*p
, struct adjtime_args
*uap
, __unused
int32_t *retval
)
215 error
= mac_system_check_settime(kauth_cred_get());
219 if ((error
= priv_check_cred(kauth_cred_get(), PRIV_ADJTIME
, 0)))
221 if (IS_64BIT_PROCESS(p
)) {
222 struct user64_timeval user_atv
;
223 error
= copyin(uap
->delta
, &user_atv
, sizeof(user_atv
));
224 atv
.tv_sec
= user_atv
.tv_sec
;
225 atv
.tv_usec
= user_atv
.tv_usec
;
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
;
236 * Compute the total correction and the rate at which to apply it.
238 clock_adjtime(&atv
.tv_sec
, &atv
.tv_usec
);
241 if (IS_64BIT_PROCESS(p
)) {
242 struct user64_timeval user_atv
;
243 user_atv
.tv_sec
= atv
.tv_sec
;
244 user_atv
.tv_usec
= atv
.tv_usec
;
245 error
= copyout(&user_atv
, uap
->olddelta
, sizeof(user_atv
));
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
));
258 * Verify the calendar value. If negative,
259 * reset to zero (the epoch).
263 __unused
time_t base
)
269 * The calendar has already been
270 * set up from the platform clock.
272 * The value returned by microtime()
273 * is gotten from the calendar.
277 if (tv
.tv_sec
< 0 || tv
.tv_usec
< 0) {
278 printf ("WARNING: preposterous time in Real Time Clock");
279 tv
.tv_sec
= 0; /* the UNIX epoch */
282 printf(" -- CHECK AND RESET THE DATE!\n");
290 clock_nsec_t nanosecs
;
292 clock_get_boottime_nanotime(&secs
, &nanosecs
);
297 * Get value of an interval timer. The process virtual and
298 * profiling virtual time timers are kept internally in the
299 * way they are specified externally: in time until they expire.
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.
305 * The real time timer is processed by a callout routine.
306 * Since a callout may be delayed in real time due to
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.
315 * EINVAL Invalid argument
316 * copyout:EFAULT Bad address
320 getitimer(struct proc
*p
, struct getitimer_args
*uap
, __unused
int32_t *retval
)
322 struct itimerval aitv
;
324 if (uap
->which
> ITIMER_PROF
)
327 bzero(&aitv
, sizeof(aitv
));
330 switch (uap
->which
) {
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.
338 aitv
= p
->p_realtimer
;
339 if (timerisset(&p
->p_rtime
)) {
343 if (timercmp(&p
->p_rtime
, &now
, <))
344 timerclear(&aitv
.it_value
);
346 aitv
.it_value
= p
->p_rtime
;
347 timevalsub(&aitv
.it_value
, &now
);
351 timerclear(&aitv
.it_value
);
355 aitv
= p
->p_vtimer_user
;
359 aitv
= p
->p_vtimer_prof
;
365 if (IS_64BIT_PROCESS(p
)) {
366 struct user64_itimerval user_itv
;
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
;
371 return (copyout((caddr_t
)&user_itv
, uap
->itv
, sizeof (user_itv
)));
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
)));
384 * EINVAL Invalid argument
385 * copyin:EFAULT Bad address
386 * getitimer:EINVAL Invalid argument
387 * getitimer:EFAULT Bad address
391 setitimer(struct proc
*p
, struct setitimer_args
*uap
, int32_t *retval
)
393 struct itimerval aitv
;
397 bzero(&aitv
, sizeof(aitv
));
399 if (uap
->which
> ITIMER_PROF
)
401 if ((itvp
= uap
->itv
)) {
402 if (IS_64BIT_PROCESS(p
)) {
403 struct user64_itimerval user_itv
;
404 if ((error
= copyin(itvp
, (caddr_t
)&user_itv
, sizeof (user_itv
))))
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
;
411 struct user32_itimerval user_itv
;
412 if ((error
= copyin(itvp
, (caddr_t
)&user_itv
, sizeof (user_itv
))))
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
;
420 if ((uap
->itv
= uap
->oitv
) && (error
= getitimer(p
, (struct getitimer_args
*)uap
, retval
)))
424 if (itimerfix(&aitv
.it_value
) || itimerfix(&aitv
.it_interval
))
427 switch (uap
->which
) {
431 if (timerisset(&aitv
.it_value
)) {
432 microuptime(&p
->p_rtime
);
433 timevaladd(&p
->p_rtime
, &aitv
.it_value
);
434 p
->p_realtimer
= aitv
;
435 if (!thread_call_enter_delayed(p
->p_rcall
, tvtoabstime(&p
->p_rtime
)))
438 timerclear(&p
->p_rtime
);
439 p
->p_realtimer
= aitv
;
440 if (thread_call_cancel(p
->p_rcall
))
449 if (timerisset(&aitv
.it_value
))
450 task_vtimer_set(p
->task
, TASK_VTIMER_USER
);
452 task_vtimer_clear(p
->task
, TASK_VTIMER_USER
);
455 p
->p_vtimer_user
= aitv
;
460 if (timerisset(&aitv
.it_value
))
461 task_vtimer_set(p
->task
, TASK_VTIMER_PROF
);
463 task_vtimer_clear(p
->task
, TASK_VTIMER_PROF
);
466 p
->p_vtimer_prof
= aitv
;
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.
489 r
= proc_find(p
->p_pid
);
493 if (--p
->p_ractive
> 0 || r
!= p
) {
501 if (!timerisset(&p
->p_realtimer
.it_interval
)) {
502 timerclear(&p
->p_rtime
);
511 timevaladd(&p
->p_rtime
, &p
->p_realtimer
.it_interval
);
512 if (timercmp(&p
->p_rtime
, &t
, <=)) {
513 if ((p
->p_rtime
.tv_sec
+ 2) >= t
.tv_sec
) {
515 timevaladd(&p
->p_rtime
, &p
->p_realtimer
.it_interval
);
516 if (timercmp(&p
->p_rtime
, &t
, >))
521 p
->p_rtime
= p
->p_realtimer
.it_interval
;
522 timevaladd(&p
->p_rtime
, &t
);
526 if (!thread_call_enter_delayed(p
->p_rcall
, tvtoabstime(&p
->p_rtime
)))
535 * Check that a proposed value to load into the .it_value or
536 * .it_interval part of an interval timer is acceptable.
543 if (tv
->tv_sec
< 0 || tv
->tv_sec
> 100000000 ||
544 tv
->tv_usec
< 0 || tv
->tv_usec
>= 1000000)
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
554 * reduce the value reloaded into the timer so that
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.
561 struct itimerval
*itp
, int usec
)
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
;
572 itp
->it_value
.tv_usec
+= 1000000;
573 itp
->it_value
.tv_sec
--;
575 itp
->it_value
.tv_usec
-= usec
;
577 if (timerisset(&itp
->it_value
)) {
581 /* expired, exactly at end of interval */
583 if (timerisset(&itp
->it_interval
)) {
584 itp
->it_value
= itp
->it_interval
;
585 if (itp
->it_value
.tv_sec
> 0) {
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
--;
593 itp
->it_value
.tv_usec
= 0; /* sec is already 0 */
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.
611 t1
->tv_sec
+= t2
->tv_sec
;
612 t1
->tv_usec
+= t2
->tv_usec
;
621 t1
->tv_sec
-= t2
->tv_sec
;
622 t1
->tv_usec
-= t2
->tv_usec
;
630 if (t1
->tv_usec
< 0) {
632 t1
->tv_usec
+= 1000000;
634 if (t1
->tv_usec
>= 1000000) {
636 t1
->tv_usec
-= 1000000;
641 * Return the best possible estimate of the time in the timeval
642 * to which tvp points.
649 clock_usec_t tv_usec
;
651 clock_get_calendar_microtime(&tv_sec
, &tv_usec
);
653 tvp
->tv_sec
= tv_sec
;
654 tvp
->tv_usec
= tv_usec
;
662 clock_usec_t tv_usec
;
664 clock_get_system_microtime(&tv_sec
, &tv_usec
);
666 tvp
->tv_sec
= tv_sec
;
667 tvp
->tv_usec
= tv_usec
;
671 * Ditto for timespec.
675 struct timespec
*tsp
)
678 clock_nsec_t tv_nsec
;
680 clock_get_calendar_nanotime(&tv_sec
, &tv_nsec
);
682 tsp
->tv_sec
= tv_sec
;
683 tsp
->tv_nsec
= tv_nsec
;
688 struct timespec
*tsp
)
691 clock_nsec_t tv_nsec
;
693 clock_get_system_nanotime(&tv_sec
, &tv_nsec
);
695 tsp
->tv_sec
= tv_sec
;
696 tsp
->tv_nsec
= tv_nsec
;
703 uint64_t result
, usresult
;
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
);
710 return (result
+ usresult
);
713 time_zone_slock_init(void)
715 /* allocate lock group attribute and group */
716 tz_slock_grp_attr
= lck_grp_attr_alloc_init();
718 tz_slock_grp
= lck_grp_alloc_init("tzlock", tz_slock_grp_attr
);
720 /* Allocate lock attribute */
721 tz_slock_attr
= lck_attr_alloc_init();
723 /* Allocate the spin lock */
724 tz_slock
= lck_spin_alloc_init(tz_slock_grp
, tz_slock_attr
);