Home | History | Annotate | Line # | Download | only in kern
kern_lwp.c revision 1.1.2.24
      1  1.1.2.21  thorpej /*	$NetBSD: kern_lwp.c,v 1.1.2.24 2003/01/17 03:07:03 thorpej Exp $	*/
      2   1.1.2.3  nathanw 
      3   1.1.2.3  nathanw /*-
      4   1.1.2.3  nathanw  * Copyright (c) 2001 The NetBSD Foundation, Inc.
      5   1.1.2.3  nathanw  * All rights reserved.
      6   1.1.2.3  nathanw  *
      7   1.1.2.3  nathanw  * This code is derived from software contributed to The NetBSD Foundation
      8   1.1.2.3  nathanw  * by Nathan J. Williams.
      9   1.1.2.3  nathanw  *
     10   1.1.2.3  nathanw  * Redistribution and use in source and binary forms, with or without
     11   1.1.2.3  nathanw  * modification, are permitted provided that the following conditions
     12   1.1.2.3  nathanw  * are met:
     13   1.1.2.3  nathanw  * 1. Redistributions of source code must retain the above copyright
     14   1.1.2.3  nathanw  *    notice, this list of conditions and the following disclaimer.
     15   1.1.2.3  nathanw  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1.2.3  nathanw  *    notice, this list of conditions and the following disclaimer in the
     17   1.1.2.3  nathanw  *    documentation and/or other materials provided with the distribution.
     18   1.1.2.3  nathanw  * 3. All advertising materials mentioning features or use of this software
     19   1.1.2.3  nathanw  *    must display the following acknowledgement:
     20   1.1.2.3  nathanw  *        This product includes software developed by the NetBSD
     21   1.1.2.3  nathanw  *        Foundation, Inc. and its contributors.
     22   1.1.2.3  nathanw  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23   1.1.2.3  nathanw  *    contributors may be used to endorse or promote products derived
     24   1.1.2.3  nathanw  *    from this software without specific prior written permission.
     25   1.1.2.3  nathanw  *
     26   1.1.2.3  nathanw  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27   1.1.2.3  nathanw  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28   1.1.2.3  nathanw  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29   1.1.2.3  nathanw  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30   1.1.2.3  nathanw  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31   1.1.2.3  nathanw  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32   1.1.2.3  nathanw  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33   1.1.2.3  nathanw  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34   1.1.2.3  nathanw  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35   1.1.2.3  nathanw  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36   1.1.2.3  nathanw  * POSSIBILITY OF SUCH DAMAGE.
     37   1.1.2.3  nathanw  */
     38   1.1.2.1  nathanw 
     39   1.1.2.1  nathanw #include <sys/param.h>
     40   1.1.2.1  nathanw #include <sys/systm.h>
     41   1.1.2.1  nathanw #include <sys/pool.h>
     42   1.1.2.1  nathanw #include <sys/lock.h>
     43   1.1.2.1  nathanw #include <sys/proc.h>
     44  1.1.2.10  thorpej #include <sys/sa.h>
     45   1.1.2.7  nathanw #include <sys/savar.h>
     46   1.1.2.1  nathanw #include <sys/types.h>
     47   1.1.2.1  nathanw #include <sys/ucontext.h>
     48   1.1.2.1  nathanw #include <sys/resourcevar.h>
     49   1.1.2.1  nathanw #include <sys/mount.h>
     50   1.1.2.1  nathanw #include <sys/syscallargs.h>
     51   1.1.2.1  nathanw 
     52   1.1.2.1  nathanw #include <uvm/uvm_extern.h>
     53   1.1.2.1  nathanw 
     54   1.1.2.1  nathanw struct lwplist alllwp;
     55   1.1.2.1  nathanw struct lwplist deadlwp;
     56   1.1.2.1  nathanw struct lwplist zomblwp;
     57   1.1.2.1  nathanw 
     58   1.1.2.4  nathanw #define LWP_DEBUG
     59   1.1.2.1  nathanw 
     60   1.1.2.4  nathanw #ifdef LWP_DEBUG
     61   1.1.2.4  nathanw int lwp_debug = 0;
     62   1.1.2.4  nathanw #define DPRINTF(x) if (lwp_debug) printf x
     63   1.1.2.4  nathanw #else
     64   1.1.2.4  nathanw #define DPRINTF(x)
     65   1.1.2.4  nathanw #endif
     66   1.1.2.1  nathanw /* ARGSUSED */
     67   1.1.2.1  nathanw int
     68   1.1.2.1  nathanw sys__lwp_create(struct lwp *l, void *v, register_t *retval)
     69   1.1.2.1  nathanw {
     70   1.1.2.1  nathanw 	struct sys__lwp_create_args /* {
     71  1.1.2.23  thorpej 		syscallarg(const ucontext_t *) ucp;
     72  1.1.2.23  thorpej 		syscallarg(u_long) flags;
     73  1.1.2.23  thorpej 		syscallarg(lwpid_t *) new_lwp;
     74   1.1.2.1  nathanw 	} */ *uap = v;
     75   1.1.2.1  nathanw 	struct proc *p = l->l_proc;
     76   1.1.2.1  nathanw 	struct lwp *l2;
     77   1.1.2.1  nathanw 	vaddr_t uaddr;
     78  1.1.2.21  thorpej 	boolean_t inmem;
     79   1.1.2.1  nathanw 	ucontext_t *newuc;
     80   1.1.2.1  nathanw 	int s, error;
     81   1.1.2.1  nathanw 
     82   1.1.2.1  nathanw 	newuc = pool_get(&lwp_uc_pool, PR_WAITOK);
     83   1.1.2.1  nathanw 
     84   1.1.2.1  nathanw 	error = copyin(SCARG(uap, ucp), newuc, sizeof(*newuc));
     85   1.1.2.1  nathanw 	if (error)
     86   1.1.2.1  nathanw 		return (error);
     87   1.1.2.1  nathanw 
     88   1.1.2.1  nathanw 	/* XXX check against resource limits */
     89   1.1.2.1  nathanw 
     90  1.1.2.21  thorpej 	inmem = uvm_uarea_alloc(&uaddr);
     91   1.1.2.1  nathanw 	if (__predict_false(uaddr == 0)) {
     92   1.1.2.1  nathanw 		return (ENOMEM);
     93   1.1.2.1  nathanw 	}
     94   1.1.2.1  nathanw 
     95   1.1.2.1  nathanw 	/* XXX flags:
     96   1.1.2.1  nathanw 	 * __LWP_ASLWP is probably needed for Solaris compat.
     97   1.1.2.1  nathanw 	 */
     98   1.1.2.1  nathanw 
     99  1.1.2.22  thorpej 	newlwp(l, p, uaddr, inmem,
    100  1.1.2.19  nathanw 	    SCARG(uap, flags) & LWP_DETACHED,
    101   1.1.2.1  nathanw 	    NULL, NULL, startlwp, newuc, &l2);
    102   1.1.2.1  nathanw 
    103   1.1.2.1  nathanw 	if ((SCARG(uap, flags) & LWP_SUSPENDED) == 0) {
    104   1.1.2.1  nathanw 		SCHED_LOCK(s);
    105   1.1.2.1  nathanw 		l2->l_stat = LSRUN;
    106   1.1.2.1  nathanw 		setrunqueue(l2);
    107   1.1.2.1  nathanw 		SCHED_UNLOCK(s);
    108   1.1.2.1  nathanw 		simple_lock(&p->p_lwplock);
    109   1.1.2.1  nathanw 		p->p_nrlwps++;
    110   1.1.2.1  nathanw 		simple_unlock(&p->p_lwplock);
    111   1.1.2.1  nathanw 	} else {
    112   1.1.2.1  nathanw 		l2->l_stat = LSSUSPENDED;
    113   1.1.2.1  nathanw 	}
    114   1.1.2.1  nathanw 
    115  1.1.2.19  nathanw 	error = copyout(&l2->l_lid, SCARG(uap, new_lwp),
    116   1.1.2.1  nathanw 	    sizeof(l2->l_lid));
    117   1.1.2.1  nathanw 	if (error)
    118   1.1.2.1  nathanw 		return (error);
    119   1.1.2.1  nathanw 
    120   1.1.2.1  nathanw 	return (0);
    121   1.1.2.1  nathanw }
    122   1.1.2.1  nathanw 
    123   1.1.2.1  nathanw 
    124  1.1.2.19  nathanw int
    125   1.1.2.1  nathanw sys__lwp_exit(struct lwp *l, void *v, register_t *retval)
    126   1.1.2.1  nathanw {
    127   1.1.2.1  nathanw 
    128   1.1.2.1  nathanw 	lwp_exit(l);
    129   1.1.2.1  nathanw 	/* NOTREACHED */
    130   1.1.2.1  nathanw 	return (0);
    131   1.1.2.1  nathanw }
    132   1.1.2.1  nathanw 
    133   1.1.2.1  nathanw 
    134   1.1.2.1  nathanw int
    135   1.1.2.1  nathanw sys__lwp_self(struct lwp *l, void *v, register_t *retval)
    136   1.1.2.1  nathanw {
    137   1.1.2.1  nathanw 
    138   1.1.2.1  nathanw 	*retval = l->l_lid;
    139  1.1.2.19  nathanw 
    140   1.1.2.1  nathanw 	return (0);
    141   1.1.2.1  nathanw }
    142   1.1.2.1  nathanw 
    143   1.1.2.1  nathanw 
    144   1.1.2.1  nathanw int
    145  1.1.2.24  thorpej sys__lwp_getprivate(struct lwp *l, void *v, register_t *retval)
    146  1.1.2.24  thorpej {
    147  1.1.2.24  thorpej 
    148  1.1.2.24  thorpej 	*retval = (uintptr_t) l->l_private;
    149  1.1.2.24  thorpej 
    150  1.1.2.24  thorpej 	return (0);
    151  1.1.2.24  thorpej }
    152  1.1.2.24  thorpej 
    153  1.1.2.24  thorpej 
    154  1.1.2.24  thorpej int
    155  1.1.2.24  thorpej sys__lwp_setprivate(struct lwp *l, void *v, register_t *retval)
    156  1.1.2.24  thorpej {
    157  1.1.2.24  thorpej 	struct sys__lwp_setprivate_args /* {
    158  1.1.2.24  thorpej 		syscallarg(void *) ptr;
    159  1.1.2.24  thorpej 	} */ *uap = v;
    160  1.1.2.24  thorpej 
    161  1.1.2.24  thorpej 	l->l_private = SCARG(uap, ptr);
    162  1.1.2.24  thorpej 
    163  1.1.2.24  thorpej 	return (0);
    164  1.1.2.24  thorpej }
    165  1.1.2.24  thorpej 
    166  1.1.2.24  thorpej 
    167  1.1.2.24  thorpej int
    168   1.1.2.1  nathanw sys__lwp_suspend(struct lwp *l, void *v, register_t *retval)
    169   1.1.2.1  nathanw {
    170   1.1.2.1  nathanw 	struct sys__lwp_suspend_args /* {
    171  1.1.2.23  thorpej 		syscallarg(lwpid_t) target;
    172   1.1.2.1  nathanw 	} */ *uap = v;
    173   1.1.2.1  nathanw 	int target_lid;
    174   1.1.2.1  nathanw 	struct proc *p = l->l_proc;
    175   1.1.2.1  nathanw 	struct lwp *t, *t2;
    176   1.1.2.1  nathanw 	int s;
    177   1.1.2.1  nathanw 
    178   1.1.2.1  nathanw 	target_lid = SCARG(uap, target);
    179   1.1.2.1  nathanw 
    180   1.1.2.1  nathanw 	LIST_FOREACH(t, &p->p_lwps, l_sibling)
    181   1.1.2.1  nathanw 		if (t->l_lid == target_lid)
    182   1.1.2.1  nathanw 			break;
    183   1.1.2.1  nathanw 
    184   1.1.2.1  nathanw 	if (t == NULL)
    185   1.1.2.1  nathanw 		return (ESRCH);
    186   1.1.2.1  nathanw 
    187   1.1.2.1  nathanw 	if (t == l) {
    188  1.1.2.19  nathanw 		/*
    189   1.1.2.1  nathanw 		 * Check for deadlock, which is only possible
    190   1.1.2.1  nathanw 		 * when we're suspending ourself.
    191   1.1.2.1  nathanw 		 */
    192   1.1.2.1  nathanw 		LIST_FOREACH(t2, &p->p_lwps, l_sibling) {
    193   1.1.2.1  nathanw 			if ((t2 != l) && (t2->l_stat != LSSUSPENDED))
    194   1.1.2.1  nathanw 				break;
    195   1.1.2.1  nathanw 		}
    196   1.1.2.1  nathanw 
    197   1.1.2.1  nathanw 		if (t2 == NULL) /* All other LWPs are suspended */
    198   1.1.2.1  nathanw 			return (EDEADLK);
    199   1.1.2.1  nathanw 
    200   1.1.2.1  nathanw 		SCHED_LOCK(s);
    201   1.1.2.1  nathanw 		l->l_stat = LSSUSPENDED;
    202   1.1.2.1  nathanw 		/* XXX NJWLWP check if this makes sense here: */
    203  1.1.2.19  nathanw 		l->l_proc->p_stats->p_ru.ru_nvcsw++;
    204   1.1.2.1  nathanw 		mi_switch(l, NULL);
    205   1.1.2.1  nathanw 		SCHED_ASSERT_UNLOCKED();
    206  1.1.2.16  nathanw 		splx(s);
    207   1.1.2.1  nathanw 	} else {
    208   1.1.2.1  nathanw 		switch (t->l_stat) {
    209   1.1.2.1  nathanw 		case LSSUSPENDED:
    210   1.1.2.1  nathanw 			return (0); /* _lwp_suspend() is idempotent */
    211   1.1.2.1  nathanw 		case LSRUN:
    212   1.1.2.1  nathanw 			SCHED_LOCK(s);
    213   1.1.2.1  nathanw 			remrunqueue(t);
    214   1.1.2.1  nathanw 			t->l_stat = LSSUSPENDED;
    215   1.1.2.2  nathanw 			SCHED_UNLOCK(s);
    216   1.1.2.1  nathanw 			simple_lock(&p->p_lwplock);
    217   1.1.2.1  nathanw 			p->p_nrlwps--;
    218   1.1.2.1  nathanw 			simple_unlock(&p->p_lwplock);
    219   1.1.2.1  nathanw 			break;
    220   1.1.2.1  nathanw 		case LSSLEEP:
    221   1.1.2.1  nathanw 			t->l_stat = LSSUSPENDED;
    222   1.1.2.1  nathanw 			break;
    223   1.1.2.1  nathanw 		case LSIDL:
    224   1.1.2.1  nathanw 		case LSDEAD:
    225   1.1.2.1  nathanw 		case LSZOMB:
    226   1.1.2.1  nathanw 			return (EINTR); /* It's what Solaris does..... */
    227   1.1.2.1  nathanw 		case LSSTOP:
    228   1.1.2.1  nathanw 			panic("_lwp_suspend: Stopped LWP in running process!");
    229   1.1.2.1  nathanw 			break;
    230   1.1.2.1  nathanw 		case LSONPROC:
    231   1.1.2.1  nathanw 			panic("XXX multiprocessor LWPs? Implement me!");
    232   1.1.2.1  nathanw 			break;
    233   1.1.2.1  nathanw 		}
    234   1.1.2.1  nathanw 	}
    235   1.1.2.1  nathanw 
    236   1.1.2.1  nathanw 	return (0);
    237   1.1.2.1  nathanw }
    238   1.1.2.1  nathanw 
    239   1.1.2.1  nathanw 
    240   1.1.2.1  nathanw int
    241   1.1.2.1  nathanw sys__lwp_continue(struct lwp *l, void *v, register_t *retval)
    242   1.1.2.1  nathanw {
    243   1.1.2.1  nathanw 	struct sys__lwp_continue_args /* {
    244  1.1.2.23  thorpej 		syscallarg(lwpid_t) target;
    245   1.1.2.1  nathanw 	} */ *uap = v;
    246   1.1.2.1  nathanw 	int target_lid;
    247   1.1.2.1  nathanw 	struct proc *p = l->l_proc;
    248   1.1.2.1  nathanw 	struct lwp *t;
    249   1.1.2.1  nathanw 
    250   1.1.2.1  nathanw 	target_lid = SCARG(uap, target);
    251   1.1.2.1  nathanw 
    252   1.1.2.1  nathanw 	LIST_FOREACH(t, &p->p_lwps, l_sibling)
    253   1.1.2.1  nathanw 		if (t->l_lid == target_lid)
    254   1.1.2.1  nathanw 			break;
    255   1.1.2.1  nathanw 
    256   1.1.2.1  nathanw 	if (t == NULL)
    257   1.1.2.1  nathanw 		return (ESRCH);
    258  1.1.2.14  nathanw 
    259  1.1.2.14  nathanw 	lwp_continue(t);
    260  1.1.2.14  nathanw 
    261  1.1.2.14  nathanw 	return (0);
    262  1.1.2.14  nathanw }
    263  1.1.2.14  nathanw 
    264  1.1.2.14  nathanw void
    265  1.1.2.14  nathanw lwp_continue(struct lwp *l)
    266  1.1.2.14  nathanw {
    267  1.1.2.14  nathanw 	int s;
    268  1.1.2.14  nathanw 
    269  1.1.2.14  nathanw 	DPRINTF(("lwp_continue of %d.%d (%s), state %d, wchan %p\n",
    270  1.1.2.14  nathanw 	    l->l_proc->p_pid, l->l_lid, l->l_proc->p_comm, l->l_stat,
    271  1.1.2.14  nathanw 	    l->l_wchan));
    272  1.1.2.14  nathanw 
    273  1.1.2.14  nathanw 	if (l->l_stat != LSSUSPENDED)
    274  1.1.2.14  nathanw 		return;
    275  1.1.2.14  nathanw 
    276  1.1.2.19  nathanw 	if (l->l_wchan == 0) {
    277   1.1.2.1  nathanw 		/* LWP was runnable before being suspended. */
    278   1.1.2.1  nathanw 		SCHED_LOCK(s);
    279  1.1.2.14  nathanw 		setrunnable(l);
    280   1.1.2.1  nathanw 		SCHED_UNLOCK(s);
    281   1.1.2.1  nathanw 	} else {
    282  1.1.2.14  nathanw 		/* LWP was sleeping before being suspended. */
    283  1.1.2.14  nathanw 		l->l_stat = LSSLEEP;
    284   1.1.2.1  nathanw 	}
    285   1.1.2.1  nathanw }
    286   1.1.2.1  nathanw 
    287  1.1.2.23  thorpej int
    288  1.1.2.23  thorpej sys__lwp_wakeup(struct lwp *l, void *v, register_t *retval)
    289   1.1.2.6  nathanw {
    290   1.1.2.6  nathanw 	struct sys__lwp_wakeup_args /* {
    291  1.1.2.23  thorpej 		syscallarg(lwpid_t) wakeup;
    292   1.1.2.6  nathanw 	} */ *uap = v;
    293   1.1.2.6  nathanw 	lwpid_t target_lid;
    294   1.1.2.6  nathanw 	struct lwp *t;
    295   1.1.2.6  nathanw 	struct proc *p;
    296   1.1.2.6  nathanw 
    297   1.1.2.6  nathanw 	p = l->l_proc;
    298   1.1.2.6  nathanw 	target_lid = SCARG(uap, target);
    299   1.1.2.6  nathanw 
    300   1.1.2.6  nathanw 	LIST_FOREACH(t, &p->p_lwps, l_sibling)
    301   1.1.2.6  nathanw 		if (t->l_lid == target_lid)
    302   1.1.2.6  nathanw 			break;
    303   1.1.2.6  nathanw 
    304   1.1.2.6  nathanw 	if (t == NULL)
    305   1.1.2.6  nathanw 		return (ESRCH);
    306  1.1.2.19  nathanw 
    307   1.1.2.6  nathanw 	if (t->l_stat != LSSLEEP)
    308   1.1.2.6  nathanw 		return (ENODEV);
    309   1.1.2.6  nathanw 
    310   1.1.2.6  nathanw 	if ((l->l_flag & L_SINTR) == 0)
    311   1.1.2.6  nathanw 		return (EBUSY);
    312   1.1.2.6  nathanw 
    313   1.1.2.6  nathanw 	setrunnable(l);
    314   1.1.2.6  nathanw 
    315   1.1.2.6  nathanw 	return 0;
    316   1.1.2.6  nathanw }
    317   1.1.2.1  nathanw 
    318   1.1.2.1  nathanw int
    319   1.1.2.1  nathanw sys__lwp_wait(struct lwp *l, void *v, register_t *retval)
    320   1.1.2.1  nathanw {
    321   1.1.2.1  nathanw 	struct sys__lwp_wait_args /* {
    322  1.1.2.23  thorpej 		syscallarg(lwpid_t) wait_for;
    323  1.1.2.23  thorpej 		syscallarg(lwpid_t *) departed;
    324   1.1.2.1  nathanw 	} */ *uap = v;
    325   1.1.2.1  nathanw 	int error;
    326   1.1.2.1  nathanw 	lwpid_t dep;
    327   1.1.2.1  nathanw 
    328   1.1.2.1  nathanw 	error = lwp_wait1(l, SCARG(uap, wait_for), &dep, 0);
    329   1.1.2.1  nathanw 	if (error)
    330   1.1.2.1  nathanw 		return (error);
    331   1.1.2.1  nathanw 
    332   1.1.2.1  nathanw 	if (SCARG(uap, departed)) {
    333   1.1.2.1  nathanw 		error = copyout(&dep, SCARG(uap, departed),
    334   1.1.2.1  nathanw 		    sizeof(dep));
    335   1.1.2.1  nathanw 		if (error)
    336   1.1.2.1  nathanw 			return (error);
    337   1.1.2.1  nathanw 	}
    338   1.1.2.1  nathanw 
    339   1.1.2.1  nathanw 	return (0);
    340   1.1.2.1  nathanw }
    341   1.1.2.1  nathanw 
    342   1.1.2.1  nathanw 
    343   1.1.2.1  nathanw int
    344   1.1.2.1  nathanw lwp_wait1(struct lwp *l, lwpid_t lid, lwpid_t *departed, int flags)
    345   1.1.2.1  nathanw {
    346   1.1.2.1  nathanw 
    347   1.1.2.1  nathanw 	struct proc *p = l->l_proc;
    348   1.1.2.1  nathanw 	struct lwp *l2, *l3;
    349   1.1.2.1  nathanw 	int nfound, error, s, wpri;
    350   1.1.2.1  nathanw 	static char waitstr1[] = "lwpwait";
    351   1.1.2.1  nathanw 	static char waitstr2[] = "lwpwait2";
    352   1.1.2.1  nathanw 
    353   1.1.2.1  nathanw 	DPRINTF(("lwp_wait1: %d.%d waiting for %d.\n",
    354   1.1.2.1  nathanw 	    p->p_pid, l->l_lid, lid));
    355   1.1.2.1  nathanw 
    356   1.1.2.1  nathanw 	if (lid == l->l_lid)
    357   1.1.2.1  nathanw 		return (EDEADLK); /* Waiting for ourselves makes no sense. */
    358  1.1.2.19  nathanw 
    359  1.1.2.13  nathanw 	wpri = PWAIT |
    360  1.1.2.13  nathanw 	    ((flags & LWPWAIT_EXITCONTROL) ? PNOEXITERR : PCATCH);
    361  1.1.2.19  nathanw  loop:
    362   1.1.2.1  nathanw 	nfound = 0;
    363   1.1.2.1  nathanw 	LIST_FOREACH(l2, &p->p_lwps, l_sibling) {
    364  1.1.2.19  nathanw 		if ((l2 == l) || (l2->l_flag & L_DETACHED) ||
    365   1.1.2.1  nathanw 		    ((lid != 0) && (lid != l2->l_lid)))
    366   1.1.2.1  nathanw 			continue;
    367   1.1.2.1  nathanw 
    368   1.1.2.1  nathanw 		nfound++;
    369   1.1.2.1  nathanw 		if (l2->l_stat == LSZOMB) {
    370   1.1.2.1  nathanw 			if (departed)
    371   1.1.2.1  nathanw 				*departed = l2->l_lid;
    372  1.1.2.19  nathanw 
    373   1.1.2.1  nathanw 			s = proclist_lock_write();
    374   1.1.2.1  nathanw 			LIST_REMOVE(l2, l_zlist); /* off zomblwp */
    375   1.1.2.1  nathanw 			proclist_unlock_write(s);
    376   1.1.2.1  nathanw 
    377   1.1.2.1  nathanw 			simple_lock(&p->p_lwplock);
    378   1.1.2.1  nathanw 			LIST_REMOVE(l2, l_sibling);
    379   1.1.2.1  nathanw 			p->p_nlwps--;
    380   1.1.2.1  nathanw 			p->p_nzlwps--;
    381   1.1.2.1  nathanw 			simple_unlock(&p->p_lwplock);
    382   1.1.2.1  nathanw 			/* XXX decrement limits */
    383  1.1.2.19  nathanw 
    384   1.1.2.1  nathanw 			pool_put(&lwp_pool, l2);
    385  1.1.2.19  nathanw 
    386   1.1.2.1  nathanw 			return (0);
    387   1.1.2.1  nathanw 		} else if (l2->l_stat == LSSLEEP ||
    388   1.1.2.1  nathanw 		           l2->l_stat == LSSUSPENDED) {
    389   1.1.2.1  nathanw 			/* Deadlock checks.
    390   1.1.2.1  nathanw 			 * 1. If all other LWPs are waiting for exits
    391   1.1.2.1  nathanw 			 *    or suspended, we would deadlock.
    392   1.1.2.1  nathanw 			 */
    393   1.1.2.1  nathanw 
    394   1.1.2.1  nathanw 			LIST_FOREACH(l3, &p->p_lwps, l_sibling) {
    395   1.1.2.1  nathanw 				if (l3 != l && (l3->l_stat != LSSUSPENDED) &&
    396   1.1.2.1  nathanw 				    !(l3->l_stat == LSSLEEP &&
    397   1.1.2.1  nathanw 					l3->l_wchan == (caddr_t) &p->p_nlwps))
    398   1.1.2.1  nathanw 					break;
    399   1.1.2.1  nathanw 			}
    400   1.1.2.1  nathanw 			if (l3 == NULL) /* Everyone else is waiting. */
    401   1.1.2.1  nathanw 				return (EDEADLK);
    402  1.1.2.19  nathanw 
    403   1.1.2.1  nathanw 			/* XXX we'd like to check for a cycle of waiting
    404   1.1.2.1  nathanw 			 * LWPs (specific LID waits, not any-LWP waits)
    405   1.1.2.1  nathanw 			 * and detect that sort of deadlock, but we don't
    406   1.1.2.1  nathanw 			 * have a good place to store the lwp that is
    407   1.1.2.1  nathanw 			 * being waited for. wchan is already filled with
    408   1.1.2.1  nathanw 			 * &p->p_nlwps, and putting the lwp address in
    409  1.1.2.19  nathanw 			 * there for deadlock tracing would require
    410   1.1.2.1  nathanw 			 * exiting LWPs to call wakeup on both their
    411   1.1.2.1  nathanw 			 * own address and &p->p_nlwps, to get threads
    412   1.1.2.1  nathanw 			 * sleeping on any LWP exiting.
    413  1.1.2.19  nathanw 			 *
    414   1.1.2.1  nathanw 			 * Revisit later. Maybe another auxillary
    415   1.1.2.1  nathanw 			 * storage location associated with sleeping
    416   1.1.2.1  nathanw 			 * is in order.
    417   1.1.2.1  nathanw 			 */
    418   1.1.2.1  nathanw 		}
    419   1.1.2.1  nathanw 	}
    420   1.1.2.1  nathanw 
    421   1.1.2.1  nathanw 	if (nfound == 0)
    422   1.1.2.1  nathanw 		return (ESRCH);
    423   1.1.2.1  nathanw 
    424  1.1.2.19  nathanw 	if ((error = tsleep((caddr_t) &p->p_nlwps, wpri,
    425   1.1.2.1  nathanw 	    (lid != 0) ? waitstr1 : waitstr2, 0)) != 0)
    426   1.1.2.1  nathanw 		return (error);
    427   1.1.2.1  nathanw 
    428   1.1.2.1  nathanw 	goto loop;
    429   1.1.2.1  nathanw }
    430   1.1.2.1  nathanw 
    431   1.1.2.1  nathanw 
    432   1.1.2.1  nathanw int
    433  1.1.2.22  thorpej newlwp(struct lwp *l1, struct proc *p2, vaddr_t uaddr, boolean_t inmem,
    434   1.1.2.1  nathanw     int flags, void *stack, size_t stacksize,
    435   1.1.2.1  nathanw     void (*func)(void *), void *arg, struct lwp **rnewlwpp)
    436   1.1.2.1  nathanw {
    437   1.1.2.1  nathanw 	struct lwp *l2;
    438   1.1.2.1  nathanw 	int s;
    439   1.1.2.1  nathanw 
    440   1.1.2.1  nathanw 	l2 = pool_get(&lwp_pool, PR_WAITOK);
    441   1.1.2.1  nathanw 
    442   1.1.2.1  nathanw 	l2->l_stat = LSIDL;
    443   1.1.2.1  nathanw 	l2->l_forw = l2->l_back = NULL;
    444   1.1.2.1  nathanw 	l2->l_proc = p2;
    445   1.1.2.1  nathanw 
    446   1.1.2.1  nathanw 
    447   1.1.2.1  nathanw 	memset(&l2->l_startzero, 0,
    448  1.1.2.19  nathanw 	       (unsigned) ((caddr_t)&l2->l_endzero -
    449   1.1.2.1  nathanw 			   (caddr_t)&l2->l_startzero));
    450   1.1.2.1  nathanw 	memcpy(&l2->l_startcopy, &l1->l_startcopy,
    451  1.1.2.19  nathanw 	       (unsigned) ((caddr_t)&l2->l_endcopy -
    452   1.1.2.1  nathanw 			   (caddr_t)&l2->l_startcopy));
    453   1.1.2.1  nathanw 
    454   1.1.2.1  nathanw #if !defined(MULTIPROCESSOR)
    455   1.1.2.1  nathanw 	/*
    456   1.1.2.1  nathanw 	 * In the single-processor case, all processes will always run
    457   1.1.2.1  nathanw 	 * on the same CPU.  So, initialize the child's CPU to the parent's
    458   1.1.2.1  nathanw 	 * now.  In the multiprocessor case, the child's CPU will be
    459   1.1.2.1  nathanw 	 * initialized in the low-level context switch code when the
    460   1.1.2.1  nathanw 	 * process runs.
    461   1.1.2.1  nathanw 	 */
    462   1.1.2.1  nathanw 	l2->l_cpu = l1->l_cpu;
    463   1.1.2.1  nathanw #else
    464   1.1.2.1  nathanw 	/*
    465   1.1.2.1  nathanw 	 * zero child's cpu pointer so we don't get trash.
    466   1.1.2.1  nathanw 	 */
    467   1.1.2.1  nathanw 	l2->l_cpu = NULL;
    468   1.1.2.1  nathanw #endif /* ! MULTIPROCESSOR */
    469   1.1.2.1  nathanw 
    470  1.1.2.22  thorpej 	l2->l_flag = inmem ? L_INMEM : 0;
    471   1.1.2.1  nathanw 	l2->l_flag |= (flags & LWP_DETACHED) ? L_DETACHED : 0;
    472   1.1.2.1  nathanw 
    473   1.1.2.1  nathanw 	callout_init(&l2->l_tsleep_ch);
    474   1.1.2.1  nathanw 
    475   1.1.2.1  nathanw 	if (rnewlwpp != NULL)
    476   1.1.2.1  nathanw 		*rnewlwpp = l2;
    477   1.1.2.1  nathanw 
    478   1.1.2.1  nathanw 	l2->l_addr = (struct user *)uaddr;
    479  1.1.2.19  nathanw 	uvm_lwp_fork(l1, l2, stack, stacksize, func,
    480   1.1.2.1  nathanw 	    (arg != NULL) ? arg : l2);
    481   1.1.2.1  nathanw 
    482   1.1.2.1  nathanw 
    483   1.1.2.1  nathanw 	simple_lock(&p2->p_lwplock);
    484   1.1.2.1  nathanw 	l2->l_lid = ++p2->p_nlwpid;
    485   1.1.2.1  nathanw 	LIST_INSERT_HEAD(&p2->p_lwps, l2, l_sibling);
    486   1.1.2.1  nathanw 	p2->p_nlwps++;
    487   1.1.2.1  nathanw 	simple_unlock(&p2->p_lwplock);
    488  1.1.2.19  nathanw 
    489   1.1.2.1  nathanw 	/* XXX should be locked differently... */
    490   1.1.2.1  nathanw 	s = proclist_lock_write();
    491   1.1.2.1  nathanw 	LIST_INSERT_HEAD(&alllwp, l2, l_list);
    492   1.1.2.1  nathanw 	proclist_unlock_write(s);
    493   1.1.2.1  nathanw 
    494   1.1.2.1  nathanw 	return (0);
    495   1.1.2.1  nathanw }
    496   1.1.2.1  nathanw 
    497   1.1.2.1  nathanw 
    498   1.1.2.1  nathanw /*
    499   1.1.2.1  nathanw  * Quit the process. This will call cpu_exit, which will call cpu_switch,
    500   1.1.2.1  nathanw  * so this can only be used meaningfully if you're willing to switch away.
    501  1.1.2.11  nathanw  * Calling with l!=curlwp would be weird.
    502   1.1.2.1  nathanw  */
    503   1.1.2.1  nathanw void
    504   1.1.2.1  nathanw lwp_exit(struct lwp *l)
    505   1.1.2.1  nathanw {
    506   1.1.2.1  nathanw 	struct proc *p = l->l_proc;
    507   1.1.2.1  nathanw 	int s;
    508   1.1.2.1  nathanw 
    509   1.1.2.1  nathanw 	DPRINTF(("lwp_exit: %d.%d exiting.\n", p->p_pid, l->l_lid));
    510  1.1.2.19  nathanw 	DPRINTF((" nlwps: %d nrlwps %d nzlwps: %d\n",
    511   1.1.2.4  nathanw 	    p->p_nlwps, p->p_nrlwps, p->p_nzlwps));
    512  1.1.2.19  nathanw 
    513  1.1.2.19  nathanw 	/*
    514   1.1.2.1  nathanw 	 * If we are the last live LWP in a process, we need to exit
    515   1.1.2.1  nathanw 	 * the entire process (if that's not already going on). We do
    516   1.1.2.1  nathanw 	 * so with an exit status of zero, because it's a "controlled"
    517  1.1.2.19  nathanw 	 * exit, and because that's what Solaris does.
    518   1.1.2.1  nathanw 	 */
    519   1.1.2.1  nathanw 	if (((p->p_nlwps - p->p_nzlwps) == 1) && ((p->p_flag & P_WEXIT) == 0)) {
    520   1.1.2.1  nathanw 		DPRINTF(("lwp_exit: %d.%d calling exit1()\n",
    521   1.1.2.1  nathanw 		    p->p_pid, l->l_lid));
    522  1.1.2.19  nathanw 		exit1(l, 0);
    523   1.1.2.1  nathanw 	}
    524   1.1.2.1  nathanw 
    525   1.1.2.1  nathanw 	s = proclist_lock_write();
    526   1.1.2.1  nathanw 	LIST_REMOVE(l, l_list);
    527   1.1.2.1  nathanw 	if ((l->l_flag & L_DETACHED) == 0) {
    528   1.1.2.1  nathanw 		DPRINTF(("lwp_exit: %d.%d going on zombie list\n", p->p_pid,
    529   1.1.2.1  nathanw 		    l->l_lid));
    530   1.1.2.1  nathanw 		LIST_INSERT_HEAD(&zomblwp, l, l_zlist);
    531   1.1.2.1  nathanw 	}
    532   1.1.2.1  nathanw 	proclist_unlock_write(s);
    533   1.1.2.1  nathanw 
    534   1.1.2.1  nathanw 	simple_lock(&p->p_lwplock);
    535   1.1.2.1  nathanw 	p->p_nrlwps--;
    536   1.1.2.1  nathanw 	simple_unlock(&p->p_lwplock);
    537   1.1.2.1  nathanw 
    538   1.1.2.1  nathanw 	l->l_stat = LSDEAD;
    539  1.1.2.20  nathanw 
    540  1.1.2.20  nathanw 	/* This LWP no longer needs to hold the kernel lock. */
    541  1.1.2.20  nathanw 	KERNEL_PROC_UNLOCK(l);
    542  1.1.2.19  nathanw 
    543   1.1.2.1  nathanw 	/* cpu_exit() will not return */
    544   1.1.2.1  nathanw 	cpu_exit(l, 0);
    545   1.1.2.1  nathanw 
    546   1.1.2.1  nathanw }
    547   1.1.2.1  nathanw 
    548   1.1.2.1  nathanw 
    549   1.1.2.1  nathanw void
    550   1.1.2.1  nathanw lwp_exit2(struct lwp *l)
    551   1.1.2.1  nathanw {
    552   1.1.2.1  nathanw 
    553   1.1.2.1  nathanw 	simple_lock(&deadproc_slock);
    554   1.1.2.1  nathanw 	LIST_INSERT_HEAD(&deadlwp, l, l_list);
    555   1.1.2.1  nathanw 	simple_unlock(&deadproc_slock);
    556   1.1.2.1  nathanw 
    557   1.1.2.1  nathanw 	wakeup(&deadproc);
    558   1.1.2.5  nathanw }
    559   1.1.2.5  nathanw 
    560  1.1.2.19  nathanw /*
    561  1.1.2.19  nathanw  * Pick a LWP to represent the process for those operations which
    562  1.1.2.19  nathanw  * want information about a "process" that is actually associated
    563   1.1.2.5  nathanw  * with a LWP.
    564   1.1.2.5  nathanw  */
    565   1.1.2.5  nathanw struct lwp *
    566   1.1.2.5  nathanw proc_representative_lwp(p)
    567   1.1.2.5  nathanw 	struct proc *p;
    568   1.1.2.5  nathanw {
    569  1.1.2.17  nathanw 	struct lwp *l, *onproc, *running, *sleeping, *stopped, *suspended;
    570   1.1.2.5  nathanw 
    571   1.1.2.5  nathanw 	/* Trivial case: only one LWP */
    572  1.1.2.18  nathanw 	if (p->p_nlwps == 1)
    573   1.1.2.5  nathanw 		return (LIST_FIRST(&p->p_lwps));
    574   1.1.2.5  nathanw 
    575   1.1.2.5  nathanw 	switch (p->p_stat) {
    576  1.1.2.17  nathanw 	case SSTOP:
    577   1.1.2.5  nathanw 	case SACTIVE:
    578  1.1.2.17  nathanw 		/* Pick the most live LWP */
    579  1.1.2.17  nathanw 		onproc = running = sleeping = stopped = suspended = NULL;
    580   1.1.2.5  nathanw 		LIST_FOREACH(l, &p->p_lwps, l_sibling) {
    581  1.1.2.17  nathanw 			switch (l->l_stat) {
    582  1.1.2.17  nathanw 			case LSONPROC:
    583  1.1.2.17  nathanw 				onproc = l;
    584  1.1.2.17  nathanw 				break;
    585  1.1.2.17  nathanw 			case LSRUN:
    586  1.1.2.17  nathanw 				running = l;
    587  1.1.2.17  nathanw 				break;
    588  1.1.2.17  nathanw 			case LSSLEEP:
    589  1.1.2.17  nathanw 				sleeping = l;
    590  1.1.2.17  nathanw 				break;
    591  1.1.2.17  nathanw 			case LSSTOP:
    592  1.1.2.17  nathanw 				stopped = l;
    593  1.1.2.17  nathanw 				break;
    594  1.1.2.17  nathanw 			case LSSUSPENDED:
    595  1.1.2.17  nathanw 				suspended = l;
    596  1.1.2.17  nathanw 				break;
    597  1.1.2.17  nathanw 			}
    598  1.1.2.17  nathanw 			if (onproc)
    599  1.1.2.17  nathanw 				return onproc;
    600  1.1.2.17  nathanw 			if (running)
    601  1.1.2.17  nathanw 				return running;
    602  1.1.2.17  nathanw 			if (sleeping)
    603  1.1.2.17  nathanw 				return sleeping;
    604  1.1.2.17  nathanw 			if (stopped)
    605  1.1.2.17  nathanw 				return stopped;
    606  1.1.2.17  nathanw 			if (suspended)
    607  1.1.2.17  nathanw 				return suspended;
    608   1.1.2.5  nathanw 		}
    609   1.1.2.5  nathanw 		break;
    610   1.1.2.5  nathanw 	case SDEAD:
    611   1.1.2.5  nathanw 	case SZOMB:
    612   1.1.2.5  nathanw 		/* Doesn't really matter... */
    613  1.1.2.17  nathanw 		return (LIST_FIRST(&p->p_lwps));
    614   1.1.2.5  nathanw 		break;
    615   1.1.2.5  nathanw #ifdef DIAGNOSTIC
    616   1.1.2.5  nathanw 	case SIDL:
    617   1.1.2.5  nathanw 		/* We have more than one LWP and we're in SIDL?
    618   1.1.2.5  nathanw 		 * How'd that happen?
    619   1.1.2.5  nathanw 		 */
    620   1.1.2.5  nathanw 		panic("Too many LWPs (%d) in SIDL process %d (%s)",
    621   1.1.2.5  nathanw 		    p->p_nrlwps, p->p_pid, p->p_comm);
    622   1.1.2.5  nathanw 	default:
    623   1.1.2.5  nathanw 		panic("Process %d (%s) in unknown state %d",
    624   1.1.2.5  nathanw 		    p->p_pid, p->p_comm, p->p_stat);
    625   1.1.2.5  nathanw #endif
    626   1.1.2.5  nathanw 	}
    627   1.1.2.5  nathanw 
    628   1.1.2.5  nathanw 	panic("proc_representative_lwp: couldn't find a lwp for process"
    629   1.1.2.5  nathanw 		" %d (%s)", p->p_pid, p->p_comm);
    630   1.1.2.5  nathanw 	/* NOTREACHED */
    631   1.1.2.5  nathanw 	return NULL;
    632   1.1.2.1  nathanw }
    633