]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/kern/kern_kthread.c
This commit was generated by cvs2svn to compensate for changes in r135601,
[FreeBSD/FreeBSD.git] / sys / kern / kern_kthread.c
1 /*
2  * Copyright (c) 1999 Peter Wemm <peter@FreeBSD.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 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
27 #include <sys/cdefs.h>
28 __FBSDID("$FreeBSD$");
29
30 #include <sys/param.h>
31 #include <sys/systm.h>
32 #include <sys/kthread.h>
33 #include <sys/lock.h>
34 #include <sys/mutex.h>
35 #include <sys/proc.h>
36 #include <sys/resourcevar.h>
37 #include <sys/signalvar.h>
38 #include <sys/sx.h>
39 #include <sys/unistd.h>
40 #include <sys/wait.h>
41
42 #include <machine/stdarg.h>
43
44 /*
45  * Start a kernel process.  This is called after a fork() call in
46  * mi_startup() in the file kern/init_main.c.
47  *
48  * This function is used to start "internal" daemons and intended
49  * to be called from SYSINIT().
50  */
51 void
52 kproc_start(udata)
53         const void *udata;
54 {
55         const struct kproc_desc *kp = udata;
56         int error;
57
58         error = kthread_create((void (*)(void *))kp->func, NULL,
59                     kp->global_procpp, 0, 0, "%s", kp->arg0);
60         if (error)
61                 panic("kproc_start: %s: error %d", kp->arg0, error);
62 }
63
64 /*
65  * Create a kernel process/thread/whatever.  It shares its address space
66  * with proc0 - ie: kernel only.
67  *
68  * func is the function to start.
69  * arg is the parameter to pass to function on first startup.
70  * newpp is the return value pointing to the thread's struct proc.
71  * flags are flags to fork1 (in unistd.h)
72  * fmt and following will be *printf'd into (*newpp)->p_comm (for ps, etc.).
73  */
74 int
75 kthread_create(void (*func)(void *), void *arg,
76     struct proc **newpp, int flags, int pages, const char *fmt, ...)
77 {
78         int error;
79         va_list ap;
80         struct thread *td;
81         struct proc *p2;
82
83         if (!proc0.p_stats)
84                 panic("kthread_create called too soon");
85
86         error = fork1(&thread0, RFMEM | RFFDG | RFPROC | RFSTOPPED | flags,
87             pages, &p2);
88         if (error)
89                 return error;
90
91         /* save a global descriptor, if desired */
92         if (newpp != NULL)
93                 *newpp = p2;
94
95         /* this is a non-swapped system process */
96         PROC_LOCK(p2);
97         p2->p_flag |= P_SYSTEM | P_KTHREAD;
98         mtx_lock(&p2->p_sigacts->ps_mtx);
99         p2->p_sigacts->ps_flag |= PS_NOCLDWAIT;
100         mtx_unlock(&p2->p_sigacts->ps_mtx);
101         _PHOLD(p2);
102         PROC_UNLOCK(p2);
103
104         /* set up arg0 for 'ps', et al */
105         va_start(ap, fmt);
106         vsnprintf(p2->p_comm, sizeof(p2->p_comm), fmt, ap);
107         va_end(ap);
108
109         /* call the processes' main()... */
110         td = FIRST_THREAD_IN_PROC(p2);
111         cpu_set_fork_handler(td, func, arg);
112         TD_SET_CAN_RUN(td);
113
114         /* Delay putting it on the run queue until now. */
115         if (!(flags & RFSTOPPED)) {
116                 mtx_lock_spin(&sched_lock);
117                 setrunqueue(td, SRQ_BORING); 
118                 mtx_unlock_spin(&sched_lock);
119         }
120
121         return 0;
122 }
123
124 void
125 kthread_exit(int ecode)
126 {
127         struct thread *td;
128         struct proc *p;
129
130         td = curthread;
131         p = td->td_proc;
132         sx_xlock(&proctree_lock);
133         PROC_LOCK(p);
134         proc_reparent(p, initproc);
135         PROC_UNLOCK(p);
136         sx_xunlock(&proctree_lock);
137         exit1(td, W_EXITCODE(ecode, 0));
138 }
139
140 /*
141  * Advise a kernel process to suspend (or resume) in its main loop.
142  * Participation is voluntary.
143  */
144 int
145 kthread_suspend(struct proc *p, int timo)
146 {
147         /*
148          * Make sure this is indeed a system process and we can safely
149          * use the p_siglist field.
150          */
151         PROC_LOCK(p);
152         if ((p->p_flag & P_KTHREAD) == 0) {
153                 PROC_UNLOCK(p);
154                 return (EINVAL);
155         }
156         SIGADDSET(p->p_siglist, SIGSTOP);
157         wakeup(p);
158         return msleep(&p->p_siglist, &p->p_mtx, PPAUSE | PDROP, "suspkt", timo);
159 }
160
161 int
162 kthread_resume(struct proc *p)
163 {
164         /*
165          * Make sure this is indeed a system process and we can safely
166          * use the p_siglist field.
167          */
168         PROC_LOCK(p);
169         if ((p->p_flag & P_KTHREAD) == 0) {
170                 PROC_UNLOCK(p);
171                 return (EINVAL);
172         }
173         SIGDELSET(p->p_siglist, SIGSTOP);
174         PROC_UNLOCK(p);
175         wakeup(&p->p_siglist);
176         return (0);
177 }
178
179 void
180 kthread_suspend_check(struct proc *p)
181 {
182         PROC_LOCK(p);
183         while (SIGISMEMBER(p->p_siglist, SIGSTOP)) {
184                 wakeup(&p->p_siglist);
185                 msleep(&p->p_siglist, &p->p_mtx, PPAUSE, "ktsusp", 0);
186         }
187         PROC_UNLOCK(p);
188 }