kern_kthread.c revision 113631
193023Snsouch/*
293023Snsouch * Copyright (c) 1999 Peter Wemm <peter@FreeBSD.org>
393023Snsouch * All rights reserved.
493023Snsouch *
593023Snsouch * Redistribution and use in source and binary forms, with or without
693023Snsouch * modification, are permitted provided that the following conditions
793023Snsouch * are met:
893023Snsouch * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/kern/kern_kthread.c 113631 2003-04-17 22:28:28Z jhb $
27 */
28
29#include <sys/param.h>
30#include <sys/systm.h>
31#include <sys/kthread.h>
32#include <sys/lock.h>
33#include <sys/mutex.h>
34#include <sys/proc.h>
35#include <sys/resourcevar.h>
36#include <sys/signalvar.h>
37#include <sys/sx.h>
38#include <sys/unistd.h>
39#include <sys/wait.h>
40
41#include <machine/stdarg.h>
42
43/*
44 * Start a kernel process.  This is called after a fork() call in
45 * mi_startup() in the file kern/init_main.c.
46 *
47 * This function is used to start "internal" daemons and intended
48 * to be called from SYSINIT().
49 */
50void
51kproc_start(udata)
52	const void *udata;
53{
54	const struct kproc_desc	*kp = udata;
55	int error;
56
57	error = kthread_create((void (*)(void *))kp->func, NULL,
58		    kp->global_procpp, 0, 0, "%s", kp->arg0);
59	if (error)
60		panic("kproc_start: %s: error %d", kp->arg0, error);
61}
62
63/*
64 * Create a kernel process/thread/whatever.  It shares its address space
65 * with proc0 - ie: kernel only.
66 *
67 * func is the function to start.
68 * arg is the parameter to pass to function on first startup.
69 * newpp is the return value pointing to the thread's struct proc.
70 * flags are flags to fork1 (in unistd.h)
71 * fmt and following will be *printf'd into (*newpp)->p_comm (for ps, etc.).
72 */
73int
74kthread_create(void (*func)(void *), void *arg,
75    struct proc **newpp, int flags, int pages, const char *fmt, ...)
76{
77	int error;
78	va_list ap;
79	struct thread *td;
80	struct proc *p2;
81
82	if (!proc0.p_stats /* || proc0.p_stats->p_start.tv_sec == 0 */)
83		panic("kthread_create called too soon");
84
85	error = fork1(&thread0, RFMEM | RFFDG | RFPROC | RFSTOPPED | flags,
86	    pages, &p2);
87	if (error)
88		return error;
89
90	/* save a global descriptor, if desired */
91	if (newpp != NULL)
92		*newpp = p2;
93
94	/* this is a non-swapped system process */
95	PROC_LOCK(p2);
96	p2->p_flag |= P_SYSTEM | P_KTHREAD;
97	p2->p_procsig->ps_flag |= PS_NOCLDWAIT;
98	_PHOLD(p2);
99	PROC_UNLOCK(p2);
100
101	/* set up arg0 for 'ps', et al */
102	va_start(ap, fmt);
103	vsnprintf(p2->p_comm, sizeof(p2->p_comm), fmt, ap);
104	va_end(ap);
105
106	/* call the processes' main()... */
107	td = FIRST_THREAD_IN_PROC(p2);
108	cpu_set_fork_handler(td, func, arg);
109	TD_SET_CAN_RUN(td);
110
111	/* Delay putting it on the run queue until now. */
112	if (!(flags & RFSTOPPED)) {
113		mtx_lock_spin(&sched_lock);
114		setrunqueue(td);
115		mtx_unlock_spin(&sched_lock);
116	}
117
118	return 0;
119}
120
121void
122kthread_exit(int ecode)
123{
124	struct thread *td;
125	struct proc *p;
126
127	td = curthread;
128	p = td->td_proc;
129	sx_xlock(&proctree_lock);
130	PROC_LOCK(p);
131	proc_reparent(p, initproc);
132	PROC_UNLOCK(p);
133	sx_xunlock(&proctree_lock);
134	exit1(td, W_EXITCODE(ecode, 0));
135}
136
137/*
138 * Advise a kernel process to suspend (or resume) in its main loop.
139 * Participation is voluntary.
140 */
141int
142kthread_suspend(struct proc *p, int timo)
143{
144	/*
145	 * Make sure this is indeed a system process and we can safely
146	 * use the p_siglist field.
147	 */
148	PROC_LOCK(p);
149	if ((p->p_flag & P_KTHREAD) == 0) {
150		PROC_UNLOCK(p);
151		return (EINVAL);
152	}
153	SIGADDSET(p->p_siglist, SIGSTOP);
154	wakeup(p);
155	return msleep(&p->p_siglist, &p->p_mtx, PPAUSE | PDROP, "suspkt", timo);
156}
157
158int
159kthread_resume(struct proc *p)
160{
161	/*
162	 * Make sure this is indeed a system process and we can safely
163	 * use the p_siglist field.
164	 */
165	PROC_LOCK(p);
166	if ((p->p_flag & P_KTHREAD) == 0) {
167		PROC_UNLOCK(p);
168		return (EINVAL);
169	}
170	SIGDELSET(p->p_siglist, SIGSTOP);
171	PROC_UNLOCK(p);
172	wakeup(&p->p_siglist);
173	return (0);
174}
175
176void
177kthread_suspend_check(struct proc *p)
178{
179	PROC_LOCK(p);
180	while (SIGISMEMBER(p->p_siglist, SIGSTOP)) {
181		wakeup(&p->p_siglist);
182		msleep(&p->p_siglist, &p->p_mtx, PPAUSE, "ktsusp", 0);
183	}
184	PROC_UNLOCK(p);
185}
186