Home | History | Annotate | Line # | Download | only in kern
kern_kthread.c revision 1.15.18.1
      1  1.15.18.1     yamt /*	$NetBSD: kern_kthread.c,v 1.15.18.1 2007/02/26 09:11:06 yamt Exp $	*/
      2        1.1  thorpej 
      3        1.1  thorpej /*-
      4        1.5  thorpej  * Copyright (c) 1998, 1999 The NetBSD Foundation, Inc.
      5        1.1  thorpej  * All rights reserved.
      6        1.1  thorpej  *
      7        1.1  thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8        1.1  thorpej  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9        1.1  thorpej  * NASA Ames Research Center.
     10        1.1  thorpej  *
     11        1.1  thorpej  * Redistribution and use in source and binary forms, with or without
     12        1.1  thorpej  * modification, are permitted provided that the following conditions
     13        1.1  thorpej  * are met:
     14        1.1  thorpej  * 1. Redistributions of source code must retain the above copyright
     15        1.1  thorpej  *    notice, this list of conditions and the following disclaimer.
     16        1.1  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     17        1.1  thorpej  *    notice, this list of conditions and the following disclaimer in the
     18        1.1  thorpej  *    documentation and/or other materials provided with the distribution.
     19        1.1  thorpej  * 3. All advertising materials mentioning features or use of this software
     20        1.1  thorpej  *    must display the following acknowledgement:
     21        1.1  thorpej  *	This product includes software developed by the NetBSD
     22        1.1  thorpej  *	Foundation, Inc. and its contributors.
     23        1.1  thorpej  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24        1.1  thorpej  *    contributors may be used to endorse or promote products derived
     25        1.1  thorpej  *    from this software without specific prior written permission.
     26        1.1  thorpej  *
     27        1.1  thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28        1.1  thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29        1.1  thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30        1.1  thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31        1.1  thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32        1.1  thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33        1.1  thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34        1.1  thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35        1.1  thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36        1.1  thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37        1.1  thorpej  * POSSIBILITY OF SUCH DAMAGE.
     38        1.1  thorpej  */
     39       1.12    lukem 
     40       1.12    lukem #include <sys/cdefs.h>
     41  1.15.18.1     yamt __KERNEL_RCSID(0, "$NetBSD: kern_kthread.c,v 1.15.18.1 2007/02/26 09:11:06 yamt Exp $");
     42        1.1  thorpej 
     43        1.1  thorpej #include <sys/param.h>
     44        1.1  thorpej #include <sys/systm.h>
     45        1.1  thorpej #include <sys/kernel.h>
     46        1.1  thorpej #include <sys/kthread.h>
     47        1.1  thorpej #include <sys/proc.h>
     48        1.1  thorpej #include <sys/wait.h>
     49        1.2  thorpej #include <sys/malloc.h>
     50        1.2  thorpej #include <sys/queue.h>
     51        1.1  thorpej 
     52        1.1  thorpej /*
     53        1.1  thorpej  * note that stdarg.h and the ansi style va_start macro is used for both
     54        1.1  thorpej  * ansi and traditional c complers.
     55        1.1  thorpej  * XXX: this requires that stdarg.h define: va_alist and va_dcl
     56        1.1  thorpej  */
     57        1.1  thorpej #include <machine/stdarg.h>
     58        1.1  thorpej 
     59        1.8  thorpej int	kthread_create_now;
     60        1.8  thorpej 
     61        1.1  thorpej /*
     62        1.1  thorpej  * Fork a kernel thread.  Any process can request this to be done.
     63        1.1  thorpej  * The VM space and limits, etc. will be shared with proc0.
     64        1.1  thorpej  */
     65        1.1  thorpej int
     66        1.8  thorpej kthread_create1(void (*func)(void *), void *arg,
     67        1.1  thorpej     struct proc **newpp, const char *fmt, ...)
     68        1.1  thorpej {
     69        1.1  thorpej 	struct proc *p2;
     70        1.1  thorpej 	int error;
     71        1.1  thorpej 	va_list ap;
     72        1.1  thorpej 
     73        1.1  thorpej 	/* First, create the new process. */
     74       1.15  thorpej 	error = fork1(&lwp0, FORK_SHAREVM | FORK_SHARECWD | FORK_SHAREFILES |
     75  1.15.18.1     yamt 	    FORK_SHARESIGS | FORK_SYSTEM, SIGCHLD, NULL, 0, func, arg, NULL,
     76  1.15.18.1     yamt 	    &p2);
     77        1.9  thorpej 	if (__predict_false(error != 0))
     78        1.1  thorpej 		return (error);
     79        1.1  thorpej 
     80        1.1  thorpej 	/* Name it as specified. */
     81        1.1  thorpej 	va_start(ap, fmt);
     82        1.4      gwr 	vsnprintf(p2->p_comm, MAXCOMLEN, fmt, ap);
     83        1.1  thorpej 	va_end(ap);
     84        1.1  thorpej 
     85        1.1  thorpej 	/* All done! */
     86        1.1  thorpej 	if (newpp != NULL)
     87        1.1  thorpej 		*newpp = p2;
     88        1.1  thorpej 	return (0);
     89        1.1  thorpej }
     90        1.1  thorpej 
     91        1.1  thorpej /*
     92        1.1  thorpej  * Cause a kernel thread to exit.  Assumes the exiting thread is the
     93        1.1  thorpej  * current context.
     94        1.1  thorpej  */
     95        1.1  thorpej void
     96       1.11  thorpej kthread_exit(int ecode)
     97        1.1  thorpej {
     98  1.15.18.1     yamt 	struct proc *p = curproc;
     99        1.1  thorpej 
    100        1.1  thorpej 	/*
    101        1.1  thorpej 	 * XXX What do we do with the exit code?  Should we even bother
    102        1.1  thorpej 	 * XXX with it?  The parent (proc0) isn't going to do much with
    103        1.1  thorpej 	 * XXX it.
    104        1.1  thorpej 	 */
    105        1.1  thorpej 	if (ecode != 0)
    106        1.1  thorpej 		printf("WARNING: thread `%s' (%d) exits with status %d\n",
    107  1.15.18.1     yamt 		    p->p_comm, p->p_pid, ecode);
    108        1.1  thorpej 
    109  1.15.18.1     yamt 	/* Acquire the sched state mutex.  exit1() will release it. */
    110  1.15.18.1     yamt 	mutex_enter(&p->p_smutex);
    111       1.15  thorpej 	exit1(curlwp, W_EXITCODE(ecode, 0));
    112        1.1  thorpej 
    113        1.1  thorpej 	/*
    114        1.1  thorpej 	 * XXX Fool the compiler.  Making exit1() __noreturn__ is a can
    115        1.1  thorpej 	 * XXX of worms right now.
    116        1.1  thorpej 	 */
    117        1.1  thorpej 	for (;;);
    118        1.2  thorpej }
    119        1.2  thorpej 
    120        1.2  thorpej struct kthread_q {
    121        1.2  thorpej 	SIMPLEQ_ENTRY(kthread_q) kq_q;
    122       1.11  thorpej 	void (*kq_func)(void *);
    123        1.2  thorpej 	void *kq_arg;
    124        1.2  thorpej };
    125        1.2  thorpej 
    126        1.2  thorpej SIMPLEQ_HEAD(, kthread_q) kthread_q = SIMPLEQ_HEAD_INITIALIZER(kthread_q);
    127        1.2  thorpej 
    128        1.2  thorpej /*
    129        1.2  thorpej  * Defer the creation of a kernel thread.  Once the standard kernel threads
    130        1.2  thorpej  * and processes have been created, this queue will be run to callback to
    131        1.2  thorpej  * the caller to create threads for e.g. file systems and device drivers.
    132        1.2  thorpej  */
    133        1.2  thorpej void
    134       1.11  thorpej kthread_create(void (*func)(void *), void *arg)
    135        1.2  thorpej {
    136        1.2  thorpej 	struct kthread_q *kq;
    137        1.2  thorpej 
    138        1.8  thorpej 	if (kthread_create_now) {
    139        1.8  thorpej 		(*func)(arg);
    140        1.8  thorpej 		return;
    141        1.8  thorpej 	}
    142        1.8  thorpej 
    143        1.2  thorpej 	kq = malloc(sizeof(*kq), M_TEMP, M_NOWAIT);
    144        1.2  thorpej 	if (kq == NULL)
    145        1.2  thorpej 		panic("unable to allocate kthread_q");
    146        1.2  thorpej 	memset(kq, 0, sizeof(*kq));
    147        1.2  thorpej 
    148        1.2  thorpej 	kq->kq_func = func;
    149        1.2  thorpej 	kq->kq_arg = arg;
    150        1.2  thorpej 
    151        1.2  thorpej 	SIMPLEQ_INSERT_TAIL(&kthread_q, kq, kq_q);
    152        1.2  thorpej }
    153        1.2  thorpej 
    154        1.2  thorpej void
    155       1.11  thorpej kthread_run_deferred_queue(void)
    156        1.2  thorpej {
    157        1.2  thorpej 	struct kthread_q *kq;
    158        1.8  thorpej 
    159        1.8  thorpej 	/* No longer need to defer kthread creation. */
    160        1.8  thorpej 	kthread_create_now = 1;
    161        1.2  thorpej 
    162        1.2  thorpej 	while ((kq = SIMPLEQ_FIRST(&kthread_q)) != NULL) {
    163       1.13    lukem 		SIMPLEQ_REMOVE_HEAD(&kthread_q, kq_q);
    164        1.2  thorpej 		(*kq->kq_func)(kq->kq_arg);
    165        1.2  thorpej 		free(kq, M_TEMP);
    166        1.2  thorpej 	}
    167        1.1  thorpej }
    168