]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/kern/kern_synch.c
xnu-792.1.5.tar.gz
[apple/xnu.git] / bsd / kern / kern_synch.c
index 65765749022af01d67142d7545ac76ea6016e879..9f33c4ce1b5b967ae51843f9ee4593dadb5f883a 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 2000-2001 Apple Computer, Inc. All rights reserved.
  *
  * @APPLE_LICENSE_HEADER_START@
  * 
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/proc.h>
+#include <sys/proc_internal.h>
 #include <sys/user.h>
-#include <sys/file.h>
+#include <sys/file_internal.h>
 #include <sys/vnode.h>
 #include <sys/kernel.h>
-#include <sys/buf.h>
 
 #include <machine/spl.h>
 
 #include <kern/queue.h>
 #include <sys/lock.h>
 #include <kern/thread.h>
+#include <kern/sched_prim.h>
 #include <kern/ast.h>
 
 #include <kern/cpu_number.h>
 
 #include <kern/task.h>
 #include <mach/time_value.h>
+#include <kern/lock.h>
 
-_sleep_continue()
+
+#if KTRACE
+#include <sys/uio.h>
+#include <sys/ktrace.h>
+#endif 
+
+static void
+_sleep_continue(
+       void                    *parameter,
+       wait_result_t   wresult)
 {
-       register struct proc *p;
-       register thread_t thread = current_thread();
-       thread_act_t th_act;
+       register struct proc *p = current_proc();
+       register thread_t self  = current_thread();
        struct uthread * ut;
        int sig, catch;
        int error = 0;
+       int dropmutex;
 
-       th_act = current_act();
-       ut = get_bsdthread_info(th_act);
-       catch = ut->uu_pri & PCATCH;
-       p = current_proc();
+       ut = get_bsdthread_info(self);
+       catch     = ut->uu_pri & PCATCH;
+       dropmutex = ut->uu_pri & PDROP;
 
-#if FIXME  /* [ */
-       thread->wait_mesg = NULL;
-#endif  /* FIXME ] */
-       switch (get_thread_waitresult(thread)) {
+       switch (wresult) {
                case THREAD_TIMED_OUT:
                        error = EWOULDBLOCK;
                        break;
@@ -80,8 +86,7 @@ _sleep_continue()
                        /* else fall through */
                case THREAD_INTERRUPTED:
                        if (catch) {
-                               unix_master();
-                               if (thread_should_abort(current_thread())) {
+                               if (thread_should_abort(self)) {
                                        error = EINTR;
                                } else if (SHOULDissignal(p,ut)) {
                                        if (sig = CURSIG(p)) {
@@ -90,22 +95,27 @@ _sleep_continue()
                                                else
                                                        error = ERESTART;
                                        }
-                                       if (thread_should_abort(current_thread())) {
+                                       if (thread_should_abort(self)) {
                                                error = EINTR;
                                        }
-                               }
-                               unix_release();
+                               } else if( (ut->uu_flag & ( UT_CANCELDISABLE | UT_CANCEL | UT_CANCELED)) == UT_CANCEL) {
+                                        /* due to thread cancel */
+                                        error = EINTR;
+                                }
                        }  else
                                error = EINTR;
                        break;
        }
 
-       if ((error == EINTR) || (error == ERESTART)) {
-                       thread_ast_set(th_act, AST_BSD);
-                       ast_on(AST_BSD);
-       }
-       if (ut->uu_timo)
-               thread_cancel_timer();
+       if (error == EINTR || error == ERESTART)
+               act_set_astbsd(self);
+
+#if KTRACE
+       if (KTRPOINT(p, KTR_CSW))
+               ktrcsw(p->p_tracep, 0, 0);
+#endif
+       if (ut->uu_mtx && !dropmutex)
+               lck_mtx_lock(ut->uu_mtx);
 
        unix_syscall_return((*ut->uu_continuation)(error));
 }
@@ -122,118 +132,117 @@ _sleep_continue()
  * Callers of this routine must be prepared for
  * premature return, and check that the reason for
  * sleeping has gone away.
+ *
+ * if msleep was the entry point, than we have a mutex to deal with
+ *
+ * The mutex is unlocked before the caller is blocked, and
+ * relocked before msleep returns unless the priority includes the PDROP
+ * flag... if PDROP is specified, _sleep returns with the mutex unlocked
+ * regardless of whether it actually blocked or not.
  */
 
-#if FIXME
-static __inline__
-#endif
-int
-_sleep(chan, pri, wmsg, timo, continuation, preassert)
-       caddr_t chan;
-       int pri;
-       char *wmsg;
-       int timo;
-       int (*continuation)();
-       int preassert;
+static int
+_sleep(
+       caddr_t         chan,
+       int             pri,
+       const char      *wmsg,
+       u_int64_t       abstime,
+       int             (*continuation)(int),
+        lck_mtx_t      *mtx)
 {
        register struct proc *p;
-       register thread_t thread = current_thread();
-       thread_act_t th_act;
+       register thread_t self = current_thread();
        struct uthread * ut;
        int sig, catch = pri & PCATCH;
-       int sigttblock = pri & PTTYBLOCK;
+       int dropmutex  = pri & PDROP;
+       int wait_result;
        int error = 0;
-       spl_t   s;
 
-       s = splhigh();
+       ut = get_bsdthread_info(self);
 
-       th_act = current_act();
-       ut = get_bsdthread_info(th_act);
-       
        p = current_proc();
 #if KTRACE
        if (KTRPOINT(p, KTR_CSW))
                ktrcsw(p->p_tracep, 1, 0);
 #endif 
        p->p_priority = pri & PRIMASK;
-               
-       if (!preassert) {
-               /* it is already pre asserted */
-               if (chan)
-                       assert_wait(chan, (catch) ? THREAD_ABORTSAFE : THREAD_UNINT);
-               
+       p->p_stats->p_ru.ru_nvcsw++;
+
+       if (mtx != NULL && chan != NULL && (thread_continue_t)continuation == THREAD_CONTINUE_NULL) {
+
+               if (abstime)
+                       wait_result = lck_mtx_sleep_deadline(mtx, (dropmutex) ? LCK_SLEEP_UNLOCK : 0,
+                                                            chan, (catch) ? THREAD_ABORTSAFE : THREAD_UNINT, abstime);
+               else
+                       wait_result = lck_mtx_sleep(mtx, (dropmutex) ? LCK_SLEEP_UNLOCK : 0,
+                                                            chan, (catch) ? THREAD_ABORTSAFE : THREAD_UNINT);
        }
-       if (timo)
-               thread_set_timer(timo, NSEC_PER_SEC / hz);
-
-       /*
-        * We start our timeout
-        * before calling CURSIG, as we could stop there, and a wakeup
-        * or a SIGCONT (or both) could occur while we were stopped.
-        * A SIGCONT would cause us to be marked as SSLEEP
-        * without resuming us, thus we must be ready for sleep
-        * when CURSIG is called.  If the wakeup happens while we're
-        * stopped, p->p_wchan will be 0 upon return from CURSIG.
-        */
-       if (catch) {
-               unix_master();
-               if (SHOULDissignal(p,ut)) {
-                       if (sig = CURSIG(p)) {
-                               clear_wait(thread, THREAD_INTERRUPTED);
-                               /* if SIGTTOU or SIGTTIN then block till SIGCONT */
-                               if (sigttblock && ((sig == SIGTTOU) || (sig == SIGTTIN))) {
-                                       p->p_flag |= P_TTYSLEEP;
-                                       /* reset signal bits */
-                                       clear_sigbits(p, sig);
-                                       assert_wait(&p->p_siglist, THREAD_ABORTSAFE);
-                                       /* assert wait can block and SIGCONT should be checked */
-                                       if (p->p_flag & P_TTYSLEEP)
-                                               thread_block(0);
-                                       /* return with success */
-                                       error = 0;
+       else {
+               if (chan != NULL)
+                       assert_wait_deadline(chan, (catch) ? THREAD_ABORTSAFE : THREAD_UNINT, abstime);
+               if (mtx)
+                       lck_mtx_unlock(mtx);
+               if (catch) {
+                       if (SHOULDissignal(p,ut)) {
+                               if (sig = CURSIG(p)) {
+                                       if (clear_wait(self, THREAD_INTERRUPTED) == KERN_FAILURE)
+                                               goto block;
+                                       /* if SIGTTOU or SIGTTIN then block till SIGCONT */
+                                       if ((pri & PTTYBLOCK) && ((sig == SIGTTOU) || (sig == SIGTTIN))) {
+                                               p->p_flag |= P_TTYSLEEP;
+                                               /* reset signal bits */
+                                               clear_procsiglist(p, sig);
+                                               assert_wait(&p->p_siglist, THREAD_ABORTSAFE);
+                                               /* assert wait can block and SIGCONT should be checked */
+                                               if (p->p_flag & P_TTYSLEEP) {
+                                                       thread_block(THREAD_CONTINUE_NULL);
+                                                       
+                                                       if (mtx && !dropmutex)
+                                                               lck_mtx_lock(mtx);
+                                               }
+
+                                               /* return with success */
+                                               error = 0;
+                                               goto out;
+                                       }
+                                       if (p->p_sigacts->ps_sigintr & sigmask(sig))
+                                               error = EINTR;
+                                       else
+                                               error = ERESTART;
+                                       if (mtx && !dropmutex)
+                                               lck_mtx_lock(mtx);
                                        goto out;
                                }
-                               if (p->p_sigacts->ps_sigintr & sigmask(sig))
-                                       error = EINTR;
-                               else
-                                       error = ERESTART;
-                               unix_release();
+                       }
+                       if (thread_should_abort(self)) {
+                               if (clear_wait(self, THREAD_INTERRUPTED) == KERN_FAILURE)
+                                       goto block;
+                               error = EINTR;
+
+                               if (mtx && !dropmutex)
+                                       lck_mtx_lock(mtx);
                                goto out;
                        }
-               }
-               if (thread_should_abort(current_thread())) {
-                       clear_wait(thread, THREAD_INTERRUPTED);
-                       error = EINTR;
-                       unix_release();
-                       goto out;
-               }
-               if (get_thread_waitevent(thread) == 0) {  /*already happened */
-                       unix_release();
-                       goto out;
-               }
-               unix_release();
-       }
+               }               
 
-#if FIXME  /* [ */
-       thread->wait_mesg = wmsg;
-#endif  /* FIXME ] */
-       splx(s);
-       p->p_stats->p_ru.ru_nvcsw++;
 
-       if (continuation != (int (*)()) 0 ) {
-         ut->uu_continuation = continuation;
-         ut->uu_pri = pri;
-         ut->uu_timo = timo;
-         thread_block(_sleep_continue);
-         /* NOTREACHED */
-       }
+block:
+               if ((thread_continue_t)continuation != THREAD_CONTINUE_NULL) {
+                       ut->uu_continuation = continuation;
+                       ut->uu_pri  = pri;
+                       ut->uu_timo = abstime? 1: 0;
+                       ut->uu_mtx  = mtx;
+                       (void) thread_block(_sleep_continue);
+                       /* NOTREACHED */
+               }
+               
+               wait_result = thread_block(THREAD_CONTINUE_NULL);
 
-       thread_block(0);
+               if (mtx && !dropmutex)
+                       lck_mtx_lock(mtx);
+       }
 
-#if FIXME  /* [ */
-       thread->wait_mesg = NULL;
-#endif  /* FIXME ] */
-       switch (get_thread_waitresult(thread)) {
+       switch (wait_result) {
                case THREAD_TIMED_OUT:
                        error = EWOULDBLOCK;
                        break;
@@ -248,81 +257,126 @@ _sleep(chan, pri, wmsg, timo, continuation, preassert)
                        /* else fall through */
                case THREAD_INTERRUPTED:
                        if (catch) {
-                               unix_master();
-                               if (thread_should_abort(current_thread())) {
+                               if (thread_should_abort(self)) {
                                        error = EINTR;
-                               } else if (SHOULDissignal(p,ut)) {
+                               } else if (SHOULDissignal(p, ut)) {
                                        if (sig = CURSIG(p)) {
                                                if (p->p_sigacts->ps_sigintr & sigmask(sig))
                                                        error = EINTR;
                                                else
                                                        error = ERESTART;
                                        }
-                                       if (thread_should_abort(current_thread())) {
+                                       if (thread_should_abort(self)) {
                                                error = EINTR;
                                        }
                                }
-                               unix_release();
                        }  else
                                error = EINTR;
                        break;
        }
 out:
-       if ((error == EINTR) || (error == ERESTART)) {
-               thread_ast_set(th_act, AST_BSD);
-               ast_on(AST_BSD);
-       }
-       if (timo)
-               thread_cancel_timer();
-       (void) splx(s);
+       if (error == EINTR || error == ERESTART)
+               act_set_astbsd(self);
+
+#if KTRACE
+       if (KTRPOINT(p, KTR_CSW))
+               ktrcsw(p->p_tracep, 0, 0);
+#endif
        return (error);
 }
 
-int sleep(chan, pri)
-       void *chan;
-       int pri;
+int
+sleep(
+       void    *chan,
+       int             pri)
 {
+       return _sleep((caddr_t)chan, pri, (char *)NULL, 0, (int (*)(int))0, (lck_mtx_t *)0);
+}
 
-       return (_sleep((caddr_t)chan, pri, (char *)NULL, 0, (void (*)())0, 0));
-       
+int
+msleep0(
+       void            *chan,
+       lck_mtx_t       *mtx,
+       int             pri,
+       const char      *wmsg,
+       int             timo,
+       int             (*continuation)(int))
+{
+       u_int64_t       abstime = 0;
+
+       if (timo)
+               clock_interval_to_deadline(timo, NSEC_PER_SEC / hz, &abstime);
+
+       return _sleep((caddr_t)chan, pri, wmsg, abstime, continuation, mtx);
 }
 
-int    tsleep(chan, pri, wmsg, timo)
-       void *chan;
-       int pri;
-       char * wmsg;
-       int     timo;
-{                      
-       return(_sleep((caddr_t)chan, pri, wmsg, timo, (void (*)())0, 0));
+int
+msleep(
+       void            *chan,
+       lck_mtx_t       *mtx,
+       int             pri,
+       const char      *wmsg,
+       struct timespec         *ts)
+{
+       u_int64_t       abstime = 0;
+
+       if (ts && (ts->tv_sec || ts->tv_nsec)) {
+               nanoseconds_to_absolutetime((uint64_t)ts->tv_sec * NSEC_PER_SEC + ts->tv_nsec,  &abstime );
+               clock_absolutetime_interval_to_deadline( abstime, &abstime );
+       }
+
+       return _sleep((caddr_t)chan, pri, wmsg, abstime, (int (*)(int))0, mtx);
 }
 
-int    tsleep0(chan, pri, wmsg, timo, continuation)
-       void *chan;
-       int pri;
-       char * wmsg;
-       int     timo;
-       int (*continuation)();
+int
+msleep1(
+       void            *chan,
+       lck_mtx_t       *mtx,
+       int             pri,
+       const char      *wmsg,
+       u_int64_t       abstime)
+{
+       return _sleep((caddr_t)chan, pri, wmsg, abstime, (int (*)(int))0, mtx);
+}
+
+int
+tsleep(
+       void            *chan,
+       int             pri,
+       const char      *wmsg,
+       int             timo)
+{
+       u_int64_t       abstime = 0;
+
+       if (timo)
+               clock_interval_to_deadline(timo, NSEC_PER_SEC / hz, &abstime);
+       return _sleep((caddr_t)chan, pri, wmsg, abstime, (int (*)(int))0, (lck_mtx_t *)0);
+}
+
+int
+tsleep0(
+       void            *chan,
+       int             pri,
+       const char      *wmsg,
+       int             timo,
+       int             (*continuation)(int))
 {                      
-#if defined (__i386__)
-       return(_sleep((caddr_t)chan, pri, wmsg, timo, (void (*)())0, 0));
-#else
-       return(_sleep((caddr_t)chan, pri, wmsg, timo, continuation, 0));
-#endif
+       u_int64_t       abstime = 0;
+
+       if (timo)
+               clock_interval_to_deadline(timo, NSEC_PER_SEC / hz, &abstime);
+       return _sleep((caddr_t)chan, pri, wmsg, abstime, continuation, (lck_mtx_t *)0);
 }
 
-/* tsleeps without assertwait or thread block */
-int    tsleep1(chan, pri, wmsg, timo, continuation)
-       void *chan;
-       int pri;
-       char * wmsg;
-       int     timo;
-       int (*continuation)();
+int
+tsleep1(
+       void            *chan,
+       int             pri,
+       const char      *wmsg,
+       u_int64_t       abstime,
+       int             (*continuation)(int))
 {                      
-#if defined (__i386__)
-       return(_sleep((caddr_t)chan, pri, wmsg, timo, (void (*)())0, 1));
-#else
-       return(_sleep((caddr_t)chan, pri, wmsg, timo, continuation, 1));
-#endif
+       return _sleep((caddr_t)chan, pri, wmsg, abstime, continuation, (lck_mtx_t *)0);
 }
 
 /*
@@ -332,7 +386,7 @@ void
 wakeup(chan)
        register void *chan;
 {
-       thread_wakeup_prim((caddr_t)chan,FALSE, THREAD_AWAKENED);
+       thread_wakeup_prim((caddr_t)chan, FALSE, THREAD_AWAKENED);
 }
 
 /*
@@ -341,6 +395,7 @@ wakeup(chan)
  * Be very sure that the first process is really
  * the right one to wakeup.
  */
+void
 wakeup_one(chan)
        register caddr_t chan;
 {
@@ -358,3 +413,28 @@ resetpriority(p)
 {
        (void)task_importance(p->task, -p->p_nice);
 }
+
+struct loadavg averunnable =
+       { {0, 0, 0}, FSCALE };          /* load average, of runnable procs */
+/*
+ * Constants for averages over 1, 5, and 15 minutes
+ * when sampling at 5 second intervals.
+ */
+static fixpt_t cexp[3] = {
+    (fixpt_t)(0.9200444146293232 * FSCALE),    /* exp(-1/12) */
+    (fixpt_t)(0.9834714538216174 * FSCALE),    /* exp(-1/60) */
+    (fixpt_t)(0.9944598480048967 * FSCALE),    /* exp(-1/180) */
+};
+
+void
+compute_averunnable(
+       void                    *arg)
+{
+       unsigned int            nrun = *(unsigned int *)arg;
+       struct loadavg          *avg = &averunnable;
+       register int            i;
+
+    for (i = 0; i < 3; i++)
+        avg->ldavg[i] = (cexp[i] * avg->ldavg[i] +
+            nrun * FSCALE * (FSCALE - cexp[i])) >> FSHIFT;
+}