Home | History | Annotate | Line # | Download | only in kern
kern_kthread.c revision 1.24.10.3
      1 /*	$NetBSD: kern_kthread.c,v 1.24.10.3 2011/08/09 16:18:23 riz Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 1998, 1999, 2007, 2009 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9  * NASA Ames Research Center, and by Andrew Doran.
     10  *
     11  * Redistribution and use in source and binary forms, with or without
     12  * modification, are permitted provided that the following conditions
     13  * are met:
     14  * 1. Redistributions of source code must retain the above copyright
     15  *    notice, this list of conditions and the following disclaimer.
     16  * 2. Redistributions in binary form must reproduce the above copyright
     17  *    notice, this list of conditions and the following disclaimer in the
     18  *    documentation and/or other materials provided with the distribution.
     19  *
     20  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     22  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     23  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     24  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     26  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     30  * POSSIBILITY OF SUCH DAMAGE.
     31  */
     32 
     33 #include <sys/cdefs.h>
     34 __KERNEL_RCSID(0, "$NetBSD: kern_kthread.c,v 1.24.10.3 2011/08/09 16:18:23 riz Exp $");
     35 
     36 #include <sys/param.h>
     37 #include <sys/systm.h>
     38 #include <sys/kernel.h>
     39 #include <sys/kthread.h>
     40 #include <sys/proc.h>
     41 #include <sys/sched.h>
     42 #include <sys/kmem.h>
     43 
     44 #include <uvm/uvm_extern.h>
     45 
     46 /*
     47  * note that stdarg.h and the ansi style va_start macro is used for both
     48  * ansi and traditional c complers.
     49  * XXX: this requires that stdarg.h define: va_alist and va_dcl
     50  */
     51 #include <machine/stdarg.h>
     52 
     53 /*
     54  * Fork a kernel thread.  Any process can request this to be done.
     55  *
     56  * With joinable kthreads KTHREAD_JOINABLE flag this should be known.
     57  * 1. If you specify KTHREAD_JOINABLE, you must call kthread_join() to reap the thread.
     58  *    It will not be automatically reaped by the system.
     59  * 2. For any given call to kthread_create(KTHREAD_JOINABLE), you may call kthread_join()
     60  *    only once on the returned lwp_t *.
     61  */
     62 int
     63 kthread_create(pri_t pri, int flag, struct cpu_info *ci,
     64 	       void (*func)(void *), void *arg,
     65 	       lwp_t **lp, const char *fmt, ...)
     66 {
     67 	lwp_t *l;
     68 	vaddr_t uaddr;
     69 	bool inmem;
     70 	int error, lc, lwp_flags;
     71 	va_list ap;
     72 
     73 	lwp_flags = LWP_DETACHED;
     74 
     75 	inmem = uvm_uarea_alloc(&uaddr);
     76 	if (uaddr == 0)
     77 		return ENOMEM;
     78 	if ((flag & KTHREAD_TS) != 0) {
     79 		lc = SCHED_OTHER;
     80 	} else {
     81 		lc = SCHED_RR;
     82 	}
     83 	if ((flag & KTHREAD_JOINABLE) != 0) {
     84 		lwp_flags &= ~LWP_DETACHED;
     85 	}
     86 	error = lwp_create(&lwp0, &proc0, uaddr, inmem, lwp_flags, NULL,
     87 	    0, func, arg, &l, lc);
     88 	if (error) {
     89 		uvm_uarea_free(uaddr, curcpu());
     90 		return error;
     91 	}
     92 	uvm_lwp_hold(l);
     93 	if (fmt != NULL) {
     94 		l->l_name = kmem_alloc(MAXCOMLEN, KM_SLEEP);
     95 		if (l->l_name == NULL) {
     96 			kthread_destroy(l);
     97 			return ENOMEM;
     98 		}
     99 		va_start(ap, fmt);
    100 		vsnprintf(l->l_name, MAXCOMLEN, fmt, ap);
    101 		va_end(ap);
    102 	}
    103 
    104 	/*
    105 	 * Set parameters.
    106 	 */
    107 	if ((flag & KTHREAD_INTR) != 0) {
    108 		KASSERT((flag & KTHREAD_MPSAFE) != 0);
    109 	}
    110 
    111 	/* Joinable kthread can't be NULL. */
    112 	if ((flag & KTHREAD_JOINABLE) != 0) {
    113 		KASSERT(l != NULL);
    114 	}
    115 
    116 	if (pri == PRI_NONE) {
    117 		if ((flag & KTHREAD_TS) != 0) {
    118 			/* Maximum user priority level. */
    119 			pri = MAXPRI_USER;
    120 		} else {
    121 			/* Minimum kernel priority level. */
    122 			pri = PRI_KTHREAD;
    123 		}
    124 	}
    125 	mutex_enter(proc0.p_lock);
    126 	lwp_lock(l);
    127 	l->l_priority = pri;
    128 	if (ci != NULL) {
    129 		if (ci != l->l_cpu) {
    130 			lwp_unlock_to(l, ci->ci_schedstate.spc_mutex);
    131 			lwp_lock(l);
    132 		}
    133 		l->l_pflag |= LP_BOUND;
    134 		l->l_cpu = ci;
    135 	}
    136 	if ((flag & KTHREAD_INTR) != 0)
    137 		l->l_pflag |= LP_INTR;
    138 	if ((flag & KTHREAD_MPSAFE) == 0)
    139 		l->l_pflag &= ~LP_MPSAFE;
    140 
    141 	/*
    142 	 * Set the new LWP running, unless the caller has requested
    143 	 * otherwise.
    144 	 */
    145 	if ((flag & KTHREAD_IDLE) == 0) {
    146 		l->l_stat = LSRUN;
    147 		sched_enqueue(l, false);
    148 		lwp_unlock(l);
    149 	} else
    150 		lwp_unlock_to(l, ci->ci_schedstate.spc_lwplock);
    151 
    152 	/*
    153 	 * The LWP is not created suspended or stopped and cannot be set
    154 	 * into those states later, so must be considered runnable.
    155 	 */
    156 	proc0.p_nrlwps++;
    157 	mutex_exit(proc0.p_lock);
    158 
    159 	/* All done! */
    160 	if (lp != NULL)
    161 		*lp = l;
    162 
    163 	return (0);
    164 }
    165 
    166 /*
    167  * Cause a kernel thread to exit.  Assumes the exiting thread is the
    168  * current context.
    169  */
    170 void
    171 kthread_exit(int ecode)
    172 {
    173 	const char *name;
    174 	lwp_t *l = curlwp;
    175 
    176 	/* We can't do much with the exit code, so just report it. */
    177 	if (ecode != 0) {
    178 		if ((name = l->l_name) == NULL)
    179 			name = "unnamed";
    180 		printf("WARNING: kthread `%s' (%d) exits with status %d\n",
    181 		    name, l->l_lid, ecode);
    182 	}
    183 
    184 	/* And exit.. */
    185 	lwp_exit(l);
    186 
    187 	/*
    188 	 * XXX Fool the compiler.  Making exit1() __noreturn__ is a can
    189 	 * XXX of worms right now.
    190 	 */
    191 	for (;;)
    192 		;
    193 }
    194 
    195 /*
    196  * Destroy an inactive kthread.  The kthread must be in the LSIDL state.
    197  */
    198 void
    199 kthread_destroy(lwp_t *l)
    200 {
    201 	proc_t *p;
    202 
    203 	KASSERT((l->l_flag & LW_SYSTEM) != 0);
    204 	KASSERT(l->l_stat == LSIDL);
    205 
    206 	p = l->l_proc;
    207 
    208 	/* Add LRP_DETACHED flag because we can have joinable kthread now. */
    209 	mutex_enter(p->p_lock);
    210 	l->l_prflag |= LPR_DETACHED;
    211 	mutex_exit(p->p_lock);
    212 
    213 	lwp_exit(l);
    214 }
    215 
    216 /*
    217  * Wait for a kthread to exit, as pthread_join().
    218  */
    219 int
    220 kthread_join(lwp_t *l)
    221 {
    222 	lwpid_t departed;
    223 	proc_t *p;
    224 	int error;
    225 
    226 	KASSERT((l->l_flag & LW_SYSTEM) != 0);
    227 	KASSERT((l->l_prflag & LPR_DETACHED) == 0);
    228 
    229 	p = l->l_proc;
    230 
    231 	mutex_enter(p->p_lock);
    232 	error = lwp_wait1(curlwp, l->l_lid, &departed, LWPWAIT_EXITCONTROL);
    233 	mutex_exit(p->p_lock);
    234 
    235 	return error;
    236 }
    237