kernel: remove oldsigevent compatibility code
[unleashed.git] / kernel / os / timer.c
blob151f6691ee505ea5b59447b60650fc54e2d60a9d
1 /*
2 * CDDL HEADER START
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
19 * CDDL HEADER END
23 * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
28 * Copyright (c) 2012, Joyent, Inc. All rights reserved.
31 #include <sys/timer.h>
32 #include <sys/systm.h>
33 #include <sys/param.h>
34 #include <sys/kmem.h>
35 #include <sys/debug.h>
36 #include <sys/policy.h>
37 #include <sys/port_impl.h>
38 #include <sys/port_kernel.h>
39 #include <sys/contract/process_impl.h>
41 static kmem_cache_t *clock_timer_cache;
42 static clock_backend_t *clock_backend[CLOCK_MAX];
43 static int timer_port_callback(void *, int *, pid_t, int, void *);
44 static void timer_close_port(void *, int, pid_t, int);
46 #define CLOCK_BACKEND(clk) \
47 ((clk) < CLOCK_MAX && (clk) >= 0 ? clock_backend[(clk)] : NULL)
50 * Tunable to increase the maximum number of POSIX timers per-process. This
51 * may _only_ be tuned in /etc/system or by patching the kernel binary; it
52 * _cannot_ be tuned on a running system.
54 int timer_max = _TIMER_MAX;
57 * timer_lock() locks the specified interval timer. It doesn't look at the
58 * ITLK_REMOVE bit; it's up to callers to look at this if they need to
59 * care. p_lock must be held on entry; it may be dropped and reaquired,
60 * but timer_lock() will always return with p_lock held.
62 * Note that timer_create() doesn't call timer_lock(); it creates timers
63 * with the ITLK_LOCKED bit explictly set.
65 static void
66 timer_lock(proc_t *p, itimer_t *it)
68 ASSERT(MUTEX_HELD(&p->p_lock));
70 while (it->it_lock & ITLK_LOCKED) {
71 it->it_blockers++;
72 cv_wait(&it->it_cv, &p->p_lock);
73 it->it_blockers--;
76 it->it_lock |= ITLK_LOCKED;
80 * timer_unlock() unlocks the specified interval timer, waking up any
81 * waiters. p_lock must be held on entry; it will not be dropped by
82 * timer_unlock().
84 static void
85 timer_unlock(proc_t *p, itimer_t *it)
87 ASSERT(MUTEX_HELD(&p->p_lock));
88 ASSERT(it->it_lock & ITLK_LOCKED);
89 it->it_lock &= ~ITLK_LOCKED;
90 cv_signal(&it->it_cv);
94 * timer_delete_locked() takes a proc pointer, timer ID and locked interval
95 * timer, and deletes the specified timer. It must be called with p_lock
96 * held, and cannot be called on a timer which already has ITLK_REMOVE set;
97 * the caller must check this. timer_delete_locked() will set the ITLK_REMOVE
98 * bit and will iteratively unlock and lock the interval timer until all
99 * blockers have seen the ITLK_REMOVE and cleared out. It will then zero
100 * out the specified entry in the p_itimer array, and call into the clock
101 * backend to complete the deletion.
103 * This function will always return with p_lock held.
105 static void
106 timer_delete_locked(proc_t *p, timer_t tid, itimer_t *it)
108 ASSERT(MUTEX_HELD(&p->p_lock));
109 ASSERT(!(it->it_lock & ITLK_REMOVE));
110 ASSERT(it->it_lock & ITLK_LOCKED);
112 it->it_lock |= ITLK_REMOVE;
115 * If there are threads waiting to lock this timer, we'll unlock
116 * the timer, and block on the cv. Threads blocking our removal will
117 * have the opportunity to run; when they see the ITLK_REMOVE flag
118 * set, they will immediately unlock the timer.
120 while (it->it_blockers) {
121 timer_unlock(p, it);
122 cv_wait(&it->it_cv, &p->p_lock);
123 timer_lock(p, it);
126 ASSERT(p->p_itimer[tid] == it);
127 p->p_itimer[tid] = NULL;
130 * No one is blocked on this timer, and no one will be (we've set
131 * p_itimer[tid] to be NULL; no one can find it). Now we call into
132 * the clock backend to delete the timer; it is up to the backend to
133 * guarantee that timer_fire() has completed (and will never again
134 * be called) for this timer.
136 mutex_exit(&p->p_lock);
138 it->it_backend->clk_timer_delete(it);
140 if (it->it_portev) {
141 mutex_enter(&it->it_mutex);
142 if (it->it_portev) {
143 port_kevent_t *pev;
144 /* dissociate timer from the event port */
145 (void) port_dissociate_ksource(it->it_portfd,
146 PORT_SOURCE_TIMER, (port_source_t *)it->it_portsrc);
147 pev = (port_kevent_t *)it->it_portev;
148 it->it_portev = NULL;
149 it->it_flags &= ~IT_PORT;
150 it->it_pending = 0;
151 mutex_exit(&it->it_mutex);
152 (void) port_remove_done_event(pev);
153 port_free_event(pev);
154 } else {
155 mutex_exit(&it->it_mutex);
159 mutex_enter(&p->p_lock);
162 * We need to be careful freeing the sigqueue for this timer;
163 * if a signal is pending, the sigqueue needs to be freed
164 * synchronously in siginfofree(). The need to free the sigqueue
165 * in siginfofree() is indicated by setting sq_func to NULL.
167 if (it->it_pending > 0) {
168 it->it_sigq->sq_func = NULL;
169 } else {
170 kmem_free(it->it_sigq, sizeof (sigqueue_t));
173 ASSERT(it->it_blockers == 0);
174 kmem_cache_free(clock_timer_cache, it);
178 * timer_grab() and its companion routine, timer_release(), are wrappers
179 * around timer_lock()/_unlock() which allow the timer_*(3R) routines to
180 * (a) share error handling code and (b) not grab p_lock themselves. Routines
181 * which are called with p_lock held (e.g. timer_lwpbind(), timer_lwpexit())
182 * must call timer_lock()/_unlock() explictly.
184 * timer_grab() takes a proc and a timer ID, and returns a pointer to a
185 * locked interval timer. p_lock must _not_ be held on entry; timer_grab()
186 * may acquire p_lock, but will always return with p_lock dropped.
188 * If timer_grab() fails, it will return NULL. timer_grab() will fail if
189 * one or more of the following is true:
191 * (a) The specified timer ID is out of range.
193 * (b) The specified timer ID does not correspond to a timer ID returned
194 * from timer_create(3R).
196 * (c) The specified timer ID is currently being removed.
199 static itimer_t *
200 timer_grab(proc_t *p, timer_t tid)
202 itimer_t **itp, *it;
204 if (tid >= timer_max || tid < 0)
205 return (NULL);
207 mutex_enter(&p->p_lock);
209 if ((itp = p->p_itimer) == NULL || (it = itp[tid]) == NULL) {
210 mutex_exit(&p->p_lock);
211 return (NULL);
214 timer_lock(p, it);
216 if (it->it_lock & ITLK_REMOVE) {
218 * Someone is removing this timer; it will soon be invalid.
220 timer_unlock(p, it);
221 mutex_exit(&p->p_lock);
222 return (NULL);
225 mutex_exit(&p->p_lock);
227 return (it);
231 * timer_release() releases a timer acquired with timer_grab(). p_lock
232 * should not be held on entry; timer_release() will acquire p_lock but
233 * will drop it before returning.
235 static void
236 timer_release(proc_t *p, itimer_t *it)
238 mutex_enter(&p->p_lock);
239 timer_unlock(p, it);
240 mutex_exit(&p->p_lock);
244 * timer_delete_grabbed() deletes a timer acquired with timer_grab().
245 * p_lock should not be held on entry; timer_delete_grabbed() will acquire
246 * p_lock, but will drop it before returning.
248 static void
249 timer_delete_grabbed(proc_t *p, timer_t tid, itimer_t *it)
251 mutex_enter(&p->p_lock);
252 timer_delete_locked(p, tid, it);
253 mutex_exit(&p->p_lock);
256 void
257 clock_timer_init()
259 clock_timer_cache = kmem_cache_create("timer_cache",
260 sizeof (itimer_t), 0, NULL, NULL, NULL, NULL, NULL, 0);
263 void
264 clock_add_backend(clockid_t clock, clock_backend_t *backend)
266 ASSERT(clock >= 0 && clock < CLOCK_MAX);
267 ASSERT(clock_backend[clock] == NULL);
269 clock_backend[clock] = backend;
272 clock_backend_t *
273 clock_get_backend(clockid_t clock)
275 if (clock < 0 || clock >= CLOCK_MAX)
276 return (NULL);
278 return (clock_backend[clock]);
282 clock_settime(clockid_t clock, timespec_t *tp)
284 timespec_t t;
285 clock_backend_t *backend;
286 int error;
288 if ((backend = CLOCK_BACKEND(clock)) == NULL)
289 return (set_errno(EINVAL));
291 if (secpolicy_settime(CRED()) != 0)
292 return (set_errno(EPERM));
294 if (get_udatamodel() == DATAMODEL_NATIVE) {
295 if (copyin(tp, &t, sizeof (timespec_t)) != 0)
296 return (set_errno(EFAULT));
297 } else {
298 timespec32_t t32;
300 if (copyin(tp, &t32, sizeof (timespec32_t)) != 0)
301 return (set_errno(EFAULT));
303 TIMESPEC32_TO_TIMESPEC(&t, &t32);
306 if (itimerspecfix(&t))
307 return (set_errno(EINVAL));
309 error = backend->clk_clock_settime(&t);
311 if (error)
312 return (set_errno(error));
314 return (0);
318 clock_gettime(clockid_t clock, timespec_t *tp)
320 timespec_t t;
321 clock_backend_t *backend;
322 int error;
324 if ((backend = CLOCK_BACKEND(clock)) == NULL)
325 return (set_errno(EINVAL));
327 error = backend->clk_clock_gettime(&t);
329 if (error)
330 return (set_errno(error));
332 if (get_udatamodel() == DATAMODEL_NATIVE) {
333 if (copyout(&t, tp, sizeof (timespec_t)) != 0)
334 return (set_errno(EFAULT));
335 } else {
336 timespec32_t t32;
338 if (TIMESPEC_OVERFLOW(&t))
339 return (set_errno(EOVERFLOW));
340 TIMESPEC_TO_TIMESPEC32(&t32, &t);
342 if (copyout(&t32, tp, sizeof (timespec32_t)) != 0)
343 return (set_errno(EFAULT));
346 return (0);
350 clock_getres(clockid_t clock, timespec_t *tp)
352 timespec_t t;
353 clock_backend_t *backend;
354 int error;
357 * Strangely, the standard defines clock_getres() with a NULL tp
358 * to do nothing (regardless of the validity of the specified
359 * clock_id). Go figure.
361 if (tp == NULL)
362 return (0);
364 if ((backend = CLOCK_BACKEND(clock)) == NULL)
365 return (set_errno(EINVAL));
367 error = backend->clk_clock_getres(&t);
369 if (error)
370 return (set_errno(error));
372 if (get_udatamodel() == DATAMODEL_NATIVE) {
373 if (copyout(&t, tp, sizeof (timespec_t)) != 0)
374 return (set_errno(EFAULT));
375 } else {
376 timespec32_t t32;
378 if (TIMESPEC_OVERFLOW(&t))
379 return (set_errno(EOVERFLOW));
380 TIMESPEC_TO_TIMESPEC32(&t32, &t);
382 if (copyout(&t32, tp, sizeof (timespec32_t)) != 0)
383 return (set_errno(EFAULT));
386 return (0);
389 void
390 timer_signal(sigqueue_t *sigq)
392 itimer_t *it = (itimer_t *)sigq->sq_backptr;
395 * There are some conditions during a fork or an exit when we can
396 * call siginfofree() without p_lock held. To prevent a race
397 * between timer_signal() and timer_fire() with regard to it_pending,
398 * we therefore acquire it_mutex in both paths.
400 mutex_enter(&it->it_mutex);
401 ASSERT(it->it_pending > 0);
402 it->it_overrun = it->it_pending - 1;
403 it->it_pending = 0;
404 mutex_exit(&it->it_mutex);
408 * This routine is called from the clock backend.
410 static void
411 timer_fire(itimer_t *it)
413 proc_t *p;
414 int proc_lock_held;
416 if (it->it_flags & IT_SIGNAL) {
418 * See the comment in timer_signal() for why it is not
419 * sufficient to only grab p_lock here. Because p_lock can be
420 * held on entry to timer_signal(), the lock ordering is
421 * necessarily p_lock before it_mutex.
424 p = it->it_proc;
425 proc_lock_held = 1;
426 mutex_enter(&p->p_lock);
427 } else {
429 * IT_PORT:
430 * If a timer was ever programmed to send events to a port,
431 * the IT_PORT flag will remain set until:
432 * a) the timer is deleted (see timer_delete_locked()) or
433 * b) the port is being closed (see timer_close_port()).
434 * Both cases are synchronized with the it_mutex.
435 * We don't need to use the p_lock because it is only
436 * required in the IT_SIGNAL case.
437 * If IT_PORT was set and the port is being closed then
438 * the timer notification is set to NONE. In such a case
439 * the timer itself and the it_pending counter remain active
440 * until the application deletes the counter or the process
441 * exits.
443 proc_lock_held = 0;
445 mutex_enter(&it->it_mutex);
447 if (it->it_pending > 0) {
448 if (it->it_pending < INT_MAX)
449 it->it_pending++;
450 mutex_exit(&it->it_mutex);
451 } else {
452 if (it->it_flags & IT_PORT) {
453 it->it_pending = 1;
454 port_send_event((port_kevent_t *)it->it_portev);
455 mutex_exit(&it->it_mutex);
456 } else if (it->it_flags & IT_SIGNAL) {
457 it->it_pending = 1;
458 mutex_exit(&it->it_mutex);
459 sigaddqa(p, NULL, it->it_sigq);
460 } else {
461 mutex_exit(&it->it_mutex);
465 if (proc_lock_held)
466 mutex_exit(&p->p_lock);
470 timer_create(clockid_t clock, struct sigevent *evp, timer_t *tid)
472 struct sigevent ev;
473 proc_t *p = curproc;
474 clock_backend_t *backend;
475 itimer_t *it, **itp;
476 sigqueue_t *sigq;
477 cred_t *cr = CRED();
478 int error = 0;
479 timer_t i;
480 port_notify_t tim_pnevp;
481 port_kevent_t *pkevp = NULL;
483 if ((backend = CLOCK_BACKEND(clock)) == NULL)
484 return (set_errno(EINVAL));
486 if (evp != NULL) {
487 if (get_udatamodel() == DATAMODEL_NATIVE) {
488 if (copyin(evp, &ev, sizeof (struct sigevent)))
489 return (set_errno(EFAULT));
491 if (ev.sigev_notify == SIGEV_PORT ||
492 ev.sigev_notify == SIGEV_THREAD) {
493 if (copyin(ev.sigev_value.sival_ptr, &tim_pnevp,
494 sizeof (port_notify_t)))
495 return (set_errno(EFAULT));
497 #ifdef _SYSCALL32_IMPL
498 } else {
499 struct sigevent32 ev32;
500 port_notify32_t tim_pnevp32;
502 if (copyin(evp, &ev32, sizeof (struct sigevent32)))
503 return (set_errno(EFAULT));
504 ev.sigev_notify = ev32.sigev_notify;
505 ev.sigev_signo = ev32.sigev_signo;
507 * See comment in sigqueue32() on handling of 32-bit
508 * sigvals in a 64-bit kernel.
510 ev.sigev_value.sival_int = ev32.sigev_value.sival_int;
511 if (ev.sigev_notify == SIGEV_PORT ||
512 ev.sigev_notify == SIGEV_THREAD) {
513 if (copyin((void *)(uintptr_t)
514 ev32.sigev_value.sival_ptr,
515 (void *)&tim_pnevp32,
516 sizeof (port_notify32_t)))
517 return (set_errno(EFAULT));
518 tim_pnevp.portnfy_port =
519 tim_pnevp32.portnfy_port;
520 tim_pnevp.portnfy_user =
521 (void *)(uintptr_t)tim_pnevp32.portnfy_user;
523 #endif
525 switch (ev.sigev_notify) {
526 case SIGEV_NONE:
527 break;
528 case SIGEV_SIGNAL:
529 if (ev.sigev_signo < 1 || ev.sigev_signo >= NSIG)
530 return (set_errno(EINVAL));
531 break;
532 case SIGEV_THREAD:
533 case SIGEV_PORT:
534 break;
535 default:
536 return (set_errno(EINVAL));
538 } else {
540 * Use the clock's default sigevent (this is a structure copy).
542 ev = backend->clk_default;
546 * We'll allocate our timer and sigqueue now, before we grab p_lock.
547 * If we can't find an empty slot, we'll free them before returning.
549 it = kmem_cache_alloc(clock_timer_cache, KM_SLEEP);
550 bzero(it, sizeof (itimer_t));
551 mutex_init(&it->it_mutex, NULL, MUTEX_DEFAULT, NULL);
552 sigq = kmem_zalloc(sizeof (sigqueue_t), KM_SLEEP);
554 mutex_enter(&p->p_lock);
557 * If this is this process' first timer, we need to attempt to allocate
558 * an array of timerstr_t pointers. We drop p_lock to perform the
559 * allocation; if we return to discover that p_itimer is non-NULL,
560 * we will free our allocation and drive on.
562 if ((itp = p->p_itimer) == NULL) {
563 mutex_exit(&p->p_lock);
564 itp = kmem_zalloc(timer_max * sizeof (itimer_t *), KM_SLEEP);
565 mutex_enter(&p->p_lock);
567 if (p->p_itimer == NULL)
568 p->p_itimer = itp;
569 else {
570 kmem_free(itp, timer_max * sizeof (itimer_t *));
571 itp = p->p_itimer;
575 for (i = 0; i < timer_max && itp[i] != NULL; i++)
576 continue;
578 if (i == timer_max) {
580 * We couldn't find a slot. Drop p_lock, free the preallocated
581 * timer and sigqueue, and return an error.
583 mutex_exit(&p->p_lock);
584 kmem_cache_free(clock_timer_cache, it);
585 kmem_free(sigq, sizeof (sigqueue_t));
587 return (set_errno(EAGAIN));
590 ASSERT(i < timer_max && itp[i] == NULL);
593 * If we develop other notification mechanisms, this will need
594 * to call into (yet another) backend.
596 sigq->sq_info.si_signo = ev.sigev_signo;
597 if (evp == NULL)
598 sigq->sq_info.si_value.sival_int = i;
599 else
600 sigq->sq_info.si_value = ev.sigev_value;
601 sigq->sq_info.si_code = SI_TIMER;
602 sigq->sq_info.si_pid = p->p_pid;
603 sigq->sq_info.si_ctid = PRCTID(p);
604 sigq->sq_info.si_zoneid = getzoneid();
605 sigq->sq_info.si_uid = crgetruid(cr);
606 sigq->sq_func = timer_signal;
607 sigq->sq_next = NULL;
608 sigq->sq_backptr = it;
609 it->it_sigq = sigq;
610 it->it_backend = backend;
611 it->it_lock = ITLK_LOCKED;
612 itp[i] = it;
615 if (ev.sigev_notify == SIGEV_THREAD ||
616 ev.sigev_notify == SIGEV_PORT) {
617 int port;
620 * This timer is programmed to use event port notification when
621 * the timer fires:
622 * - allocate a port event structure and prepare it to be sent
623 * to the port as soon as the timer fires.
624 * - when the timer fires :
625 * - if event structure was already sent to the port then this
626 * is a timer fire overflow => increment overflow counter.
627 * - otherwise send pre-allocated event structure to the port.
628 * - the events field of the port_event_t structure counts the
629 * number of timer fired events.
630 * - The event structured is allocated using the
631 * PORT_ALLOC_CACHED flag.
632 * This flag indicates that the timer itself will manage and
633 * free the event structure when required.
636 it->it_flags |= IT_PORT;
637 port = tim_pnevp.portnfy_port;
639 /* associate timer as event source with the port */
640 error = port_associate_ksource(port, PORT_SOURCE_TIMER,
641 (port_source_t **)&it->it_portsrc, timer_close_port,
642 (void *)it, NULL);
643 if (error) {
644 itp[i] = NULL; /* clear slot */
645 mutex_exit(&p->p_lock);
646 kmem_cache_free(clock_timer_cache, it);
647 kmem_free(sigq, sizeof (sigqueue_t));
648 return (set_errno(error));
651 /* allocate an event structure/slot */
652 error = port_alloc_event(port, PORT_ALLOC_SCACHED,
653 PORT_SOURCE_TIMER, &pkevp);
654 if (error) {
655 (void) port_dissociate_ksource(port, PORT_SOURCE_TIMER,
656 (port_source_t *)it->it_portsrc);
657 itp[i] = NULL; /* clear slot */
658 mutex_exit(&p->p_lock);
659 kmem_cache_free(clock_timer_cache, it);
660 kmem_free(sigq, sizeof (sigqueue_t));
661 return (set_errno(error));
664 /* initialize event data */
665 port_init_event(pkevp, i, tim_pnevp.portnfy_user,
666 timer_port_callback, it);
667 it->it_portev = pkevp;
668 it->it_portfd = port;
669 } else {
670 if (ev.sigev_notify == SIGEV_SIGNAL)
671 it->it_flags |= IT_SIGNAL;
674 mutex_exit(&p->p_lock);
677 * Call on the backend to verify the event argument (or return
678 * EINVAL if this clock type does not support timers).
680 if ((error = backend->clk_timer_create(it, timer_fire)) != 0)
681 goto err;
683 it->it_lwp = ttolwp(curthread);
684 it->it_proc = p;
686 if (copyout(&i, tid, sizeof (timer_t)) != 0) {
687 error = EFAULT;
688 goto err;
692 * If we're here, then we have successfully created the timer; we
693 * just need to release the timer and return.
695 timer_release(p, it);
697 return (0);
699 err:
701 * If we're here, an error has occurred late in the timer creation
702 * process. We need to regrab p_lock, and delete the incipient timer.
703 * Since we never unlocked the timer (it was born locked), it's
704 * impossible for a removal to be pending.
706 ASSERT(!(it->it_lock & ITLK_REMOVE));
707 timer_delete_grabbed(p, i, it);
709 return (set_errno(error));
713 timer_gettime(timer_t tid, itimerspec_t *val)
715 proc_t *p = curproc;
716 itimer_t *it;
717 itimerspec_t when;
718 int error;
720 if ((it = timer_grab(p, tid)) == NULL)
721 return (set_errno(EINVAL));
723 error = it->it_backend->clk_timer_gettime(it, &when);
725 timer_release(p, it);
727 if (error == 0) {
728 if (get_udatamodel() == DATAMODEL_NATIVE) {
729 if (copyout(&when, val, sizeof (itimerspec_t)))
730 error = EFAULT;
731 } else {
732 if (ITIMERSPEC_OVERFLOW(&when))
733 error = EOVERFLOW;
734 else {
735 itimerspec32_t w32;
737 ITIMERSPEC_TO_ITIMERSPEC32(&w32, &when)
738 if (copyout(&w32, val, sizeof (itimerspec32_t)))
739 error = EFAULT;
744 return (error ? set_errno(error) : 0);
748 timer_settime(timer_t tid, int flags, itimerspec_t *val, itimerspec_t *oval)
750 itimerspec_t when;
751 itimer_t *it;
752 proc_t *p = curproc;
753 int error;
755 if (oval != NULL) {
756 if ((error = timer_gettime(tid, oval)) != 0)
757 return (error);
760 if (get_udatamodel() == DATAMODEL_NATIVE) {
761 if (copyin(val, &when, sizeof (itimerspec_t)))
762 return (set_errno(EFAULT));
763 } else {
764 itimerspec32_t w32;
766 if (copyin(val, &w32, sizeof (itimerspec32_t)))
767 return (set_errno(EFAULT));
769 ITIMERSPEC32_TO_ITIMERSPEC(&when, &w32);
772 if (itimerspecfix(&when.it_value) ||
773 (itimerspecfix(&when.it_interval) &&
774 timerspecisset(&when.it_value))) {
775 return (set_errno(EINVAL));
778 if ((it = timer_grab(p, tid)) == NULL)
779 return (set_errno(EINVAL));
781 error = it->it_backend->clk_timer_settime(it, flags, &when);
783 timer_release(p, it);
785 return (error ? set_errno(error) : 0);
789 timer_delete(timer_t tid)
791 proc_t *p = curproc;
792 itimer_t *it;
794 if ((it = timer_grab(p, tid)) == NULL)
795 return (set_errno(EINVAL));
797 timer_delete_grabbed(p, tid, it);
799 return (0);
803 timer_getoverrun(timer_t tid)
805 int overrun;
806 proc_t *p = curproc;
807 itimer_t *it;
809 if ((it = timer_grab(p, tid)) == NULL)
810 return (set_errno(EINVAL));
813 * The it_overrun field is protected by p_lock; we need to acquire
814 * it before looking at the value.
816 mutex_enter(&p->p_lock);
817 overrun = it->it_overrun;
818 mutex_exit(&p->p_lock);
820 timer_release(p, it);
822 return (overrun);
826 * Entered/exited with p_lock held, but will repeatedly drop and regrab p_lock.
828 void
829 timer_lwpexit(void)
831 timer_t i;
832 proc_t *p = curproc;
833 klwp_t *lwp = ttolwp(curthread);
834 itimer_t *it, **itp;
836 ASSERT(MUTEX_HELD(&p->p_lock));
838 if ((itp = p->p_itimer) == NULL)
839 return;
841 for (i = 0; i < timer_max; i++) {
842 if ((it = itp[i]) == NULL)
843 continue;
845 timer_lock(p, it);
847 if ((it->it_lock & ITLK_REMOVE) || it->it_lwp != lwp) {
849 * This timer is either being removed or it isn't
850 * associated with this lwp.
852 timer_unlock(p, it);
853 continue;
857 * The LWP that created this timer is going away. To the user,
858 * our behavior here is explicitly undefined. We will simply
859 * null out the it_lwp field; if the LWP was bound to a CPU,
860 * the cyclic will stay bound to that CPU until the process
861 * exits.
863 it->it_lwp = NULL;
864 timer_unlock(p, it);
869 * Called to notify of an LWP binding change. Entered/exited with p_lock
870 * held, but will repeatedly drop and regrab p_lock.
872 void
873 timer_lwpbind()
875 timer_t i;
876 proc_t *p = curproc;
877 klwp_t *lwp = ttolwp(curthread);
878 itimer_t *it, **itp;
880 ASSERT(MUTEX_HELD(&p->p_lock));
882 if ((itp = p->p_itimer) == NULL)
883 return;
885 for (i = 0; i < timer_max; i++) {
886 if ((it = itp[i]) == NULL)
887 continue;
889 timer_lock(p, it);
891 if (!(it->it_lock & ITLK_REMOVE) && it->it_lwp == lwp) {
893 * Drop p_lock and jump into the backend.
895 mutex_exit(&p->p_lock);
896 it->it_backend->clk_timer_lwpbind(it);
897 mutex_enter(&p->p_lock);
900 timer_unlock(p, it);
905 * This function should only be called if p_itimer is non-NULL.
907 void
908 timer_exit(void)
910 timer_t i;
911 proc_t *p = curproc;
913 ASSERT(p->p_itimer != NULL);
915 for (i = 0; i < timer_max; i++)
916 (void) timer_delete(i);
918 kmem_free(p->p_itimer, timer_max * sizeof (itimer_t *));
919 p->p_itimer = NULL;
923 * timer_port_callback() is a callback function which is associated with the
924 * timer event and is activated just before the event is delivered to the user.
925 * The timer uses this function to update/set the overflow counter and
926 * to reenable the use of the event structure.
929 /* ARGSUSED */
930 static int
931 timer_port_callback(void *arg, int *events, pid_t pid, int flag, void *evp)
933 itimer_t *it = arg;
935 mutex_enter(&it->it_mutex);
936 if (curproc != it->it_proc) {
937 /* can not deliver timer events to another proc */
938 mutex_exit(&it->it_mutex);
939 return (EACCES);
941 *events = it->it_pending; /* 1 = 1 event, >1 # of overflows */
942 it->it_pending = 0; /* reinit overflow counter */
944 * This function can also be activated when the port is being closed
945 * and a timer event is already submitted to the port.
946 * In such a case the event port framework will use the
947 * close-callback function to notify the events sources.
948 * The timer close-callback function is timer_close_port() which
949 * will free all allocated resources (including the allocated
950 * port event structure).
951 * For that reason we don't need to check the value of flag here.
953 mutex_exit(&it->it_mutex);
954 return (0);
958 * port is being closed ... free all allocated port event structures
959 * The delivered arg currently correspond to the first timer associated with
960 * the port and it is not useable in this case.
961 * We have to scan the list of activated timers in the current proc and
962 * compare them with the delivered port id.
965 /* ARGSUSED */
966 static void
967 timer_close_port(void *arg, int port, pid_t pid, int lastclose)
969 proc_t *p = curproc;
970 timer_t tid;
971 itimer_t *it;
973 for (tid = 0; tid < timer_max; tid++) {
974 if ((it = timer_grab(p, tid)) == NULL)
975 continue;
976 if (it->it_portev) {
977 mutex_enter(&it->it_mutex);
978 if (it->it_portfd == port) {
979 port_kevent_t *pev;
980 pev = (port_kevent_t *)it->it_portev;
981 it->it_portev = NULL;
982 it->it_flags &= ~IT_PORT;
983 mutex_exit(&it->it_mutex);
984 (void) port_remove_done_event(pev);
985 port_free_event(pev);
986 } else {
987 mutex_exit(&it->it_mutex);
990 timer_release(p, it);