]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/kern/kern_condvar.c
- Grab a mnt ref in vfs_busy() before dropping the interlock. This will
[FreeBSD/FreeBSD.git] / sys / kern / kern_condvar.c
1 /*-
2  * Copyright (c) 2000 Jake Burkholder <jake@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 "opt_ktrace.h"
31
32 #include <sys/param.h>
33 #include <sys/systm.h>
34 #include <sys/lock.h>
35 #include <sys/mutex.h>
36 #include <sys/proc.h>
37 #include <sys/kernel.h>
38 #include <sys/ktr.h>
39 #include <sys/condvar.h>
40 #include <sys/sched.h>
41 #include <sys/signalvar.h>
42 #include <sys/sleepqueue.h>
43 #include <sys/resourcevar.h>
44 #ifdef KTRACE
45 #include <sys/uio.h>
46 #include <sys/ktrace.h>
47 #endif
48
49 /*
50  * Common sanity checks for cv_wait* functions.
51  */
52 #define CV_ASSERT(cvp, mp, td) do {                                     \
53         KASSERT((td) != NULL, ("%s: curthread NULL", __func__));        \
54         KASSERT(TD_IS_RUNNING(td), ("%s: not TDS_RUNNING", __func__));  \
55         KASSERT((cvp) != NULL, ("%s: cvp NULL", __func__));             \
56         KASSERT((mp) != NULL, ("%s: mp NULL", __func__));               \
57         mtx_assert((mp), MA_OWNED | MA_NOTRECURSED);                    \
58 } while (0)
59
60 /*
61  * Initialize a condition variable.  Must be called before use.
62  */
63 void
64 cv_init(struct cv *cvp, const char *desc)
65 {
66
67         cvp->cv_description = desc;
68         cvp->cv_waiters = 0;
69 }
70
71 /*
72  * Destroy a condition variable.  The condition variable must be re-initialized
73  * in order to be re-used.
74  */
75 void
76 cv_destroy(struct cv *cvp)
77 {
78 #ifdef INVARIANTS
79         struct sleepqueue *sq;
80
81         sleepq_lock(cvp);
82         sq = sleepq_lookup(cvp);
83         sleepq_release(cvp);
84         KASSERT(sq == NULL, ("%s: associated sleep queue non-empty", __func__));
85 #endif
86 }
87
88 /*
89  * Wait on a condition variable.  The current thread is placed on the condition
90  * variable's wait queue and suspended.  A cv_signal or cv_broadcast on the same
91  * condition variable will resume the thread.  The mutex is released before
92  * sleeping and will be held on return.  It is recommended that the mutex be
93  * held when cv_signal or cv_broadcast are called.
94  */
95 void
96 cv_wait(struct cv *cvp, struct mtx *mp)
97 {
98         WITNESS_SAVE_DECL(mp);
99
100         WITNESS_SAVE(&mp->mtx_object, mp);
101
102         if (cold || panicstr) {
103                 /*
104                  * During autoconfiguration, just give interrupts
105                  * a chance, then just return.  Don't run any other
106                  * thread or panic below, in case this is the idle
107                  * process and already asleep.
108                  */
109                 return;
110         }
111
112         cv_wait_unlock(cvp, mp);
113         mtx_lock(mp);
114         WITNESS_RESTORE(&mp->mtx_object, mp);
115 }
116
117 /*
118  * Wait on a condition variable.  This function differs from cv_wait by
119  * not aquiring the mutex after condition variable was signaled.
120  */
121 void
122 cv_wait_unlock(struct cv *cvp, struct mtx *mp)
123 {
124         struct thread *td;
125
126         td = curthread;
127 #ifdef KTRACE
128         if (KTRPOINT(td, KTR_CSW))
129                 ktrcsw(1, 0);
130 #endif
131         CV_ASSERT(cvp, mp, td);
132         WITNESS_WARN(WARN_GIANTOK | WARN_SLEEPOK, &mp->mtx_object,
133             "Waiting on \"%s\"", cvp->cv_description);
134
135         if (cold || panicstr) {
136                 /*
137                  * During autoconfiguration, just give interrupts
138                  * a chance, then just return.  Don't run any other
139                  * thread or panic below, in case this is the idle
140                  * process and already asleep.
141                  */
142                 mtx_unlock(mp);
143                 return;
144         }
145
146         sleepq_lock(cvp);
147
148         cvp->cv_waiters++;
149         DROP_GIANT();
150         mtx_unlock(mp);
151
152         sleepq_add(cvp, mp, cvp->cv_description, SLEEPQ_CONDVAR);
153         sleepq_wait(cvp);
154
155         PICKUP_GIANT();
156 }
157
158 /*
159  * Wait on a condition variable, allowing interruption by signals.  Return 0 if
160  * the thread was resumed with cv_signal or cv_broadcast, EINTR or ERESTART if
161  * a signal was caught.  If ERESTART is returned the system call should be
162  * restarted if possible.
163  */
164 int
165 cv_wait_sig(struct cv *cvp, struct mtx *mp)
166 {
167         struct thread *td;
168         struct proc *p;
169         int rval;
170         WITNESS_SAVE_DECL(mp);
171
172         td = curthread;
173         p = td->td_proc;
174 #ifdef KTRACE
175         if (KTRPOINT(td, KTR_CSW))
176                 ktrcsw(1, 0);
177 #endif
178         CV_ASSERT(cvp, mp, td);
179         WITNESS_WARN(WARN_GIANTOK | WARN_SLEEPOK, &mp->mtx_object,
180             "Waiting on \"%s\"", cvp->cv_description);
181         WITNESS_SAVE(&mp->mtx_object, mp);
182
183         if (cold || panicstr) {
184                 /*
185                  * After a panic, or during autoconfiguration, just give
186                  * interrupts a chance, then just return; don't run any other
187                  * procs or panic below, in case this is the idle process and
188                  * already asleep.
189                  */
190                 return (0);
191         }
192
193         sleepq_lock(cvp);
194
195         /*
196          * Don't bother sleeping if we are exiting and not the exiting
197          * thread or if our thread is marked as interrupted.
198          */
199         mtx_lock_spin(&sched_lock);
200         rval = thread_sleep_check(td);
201         mtx_unlock_spin(&sched_lock);
202         if (rval != 0) {
203                 sleepq_release(cvp);
204                 return (rval);
205         }
206
207         cvp->cv_waiters++;
208         DROP_GIANT();
209         mtx_unlock(mp);
210
211         sleepq_add(cvp, mp, cvp->cv_description, SLEEPQ_CONDVAR |
212             SLEEPQ_INTERRUPTIBLE);
213         rval = sleepq_wait_sig(cvp);
214
215 #ifdef KTRACE
216         if (KTRPOINT(td, KTR_CSW))
217                 ktrcsw(0, 0);
218 #endif
219         PICKUP_GIANT();
220         mtx_lock(mp);
221         WITNESS_RESTORE(&mp->mtx_object, mp);
222
223         return (rval);
224 }
225
226 /*
227  * Wait on a condition variable for at most timo/hz seconds.  Returns 0 if the
228  * process was resumed by cv_signal or cv_broadcast, EWOULDBLOCK if the timeout
229  * expires.
230  */
231 int
232 cv_timedwait(struct cv *cvp, struct mtx *mp, int timo)
233 {
234         struct thread *td;
235         int rval;
236         WITNESS_SAVE_DECL(mp);
237
238         td = curthread;
239         rval = 0;
240 #ifdef KTRACE
241         if (KTRPOINT(td, KTR_CSW))
242                 ktrcsw(1, 0);
243 #endif
244         CV_ASSERT(cvp, mp, td);
245         WITNESS_WARN(WARN_GIANTOK | WARN_SLEEPOK, &mp->mtx_object,
246             "Waiting on \"%s\"", cvp->cv_description);
247         WITNESS_SAVE(&mp->mtx_object, mp);
248
249         if (cold || panicstr) {
250                 /*
251                  * After a panic, or during autoconfiguration, just give
252                  * interrupts a chance, then just return; don't run any other
253                  * thread or panic below, in case this is the idle process and
254                  * already asleep.
255                  */
256                 return 0;
257         }
258
259         sleepq_lock(cvp);
260
261         cvp->cv_waiters++;
262         DROP_GIANT();
263         mtx_unlock(mp);
264
265         sleepq_add(cvp, mp, cvp->cv_description, SLEEPQ_CONDVAR);
266         sleepq_set_timeout(cvp, timo);
267         rval = sleepq_timedwait(cvp);
268
269 #ifdef KTRACE
270         if (KTRPOINT(td, KTR_CSW))
271                 ktrcsw(0, 0);
272 #endif
273         PICKUP_GIANT();
274         mtx_lock(mp);
275         WITNESS_RESTORE(&mp->mtx_object, mp);
276
277         return (rval);
278 }
279
280 /*
281  * Wait on a condition variable for at most timo/hz seconds, allowing
282  * interruption by signals.  Returns 0 if the thread was resumed by cv_signal
283  * or cv_broadcast, EWOULDBLOCK if the timeout expires, and EINTR or ERESTART if
284  * a signal was caught.
285  */
286 int
287 cv_timedwait_sig(struct cv *cvp, struct mtx *mp, int timo)
288 {
289         struct thread *td;
290         struct proc *p;
291         int rval;
292         WITNESS_SAVE_DECL(mp);
293
294         td = curthread;
295         p = td->td_proc;
296         rval = 0;
297 #ifdef KTRACE
298         if (KTRPOINT(td, KTR_CSW))
299                 ktrcsw(1, 0);
300 #endif
301         CV_ASSERT(cvp, mp, td);
302         WITNESS_WARN(WARN_GIANTOK | WARN_SLEEPOK, &mp->mtx_object,
303             "Waiting on \"%s\"", cvp->cv_description);
304         WITNESS_SAVE(&mp->mtx_object, mp);
305
306         if (cold || panicstr) {
307                 /*
308                  * After a panic, or during autoconfiguration, just give
309                  * interrupts a chance, then just return; don't run any other
310                  * thread or panic below, in case this is the idle process and
311                  * already asleep.
312                  */
313                 return 0;
314         }
315
316         sleepq_lock(cvp);
317
318         /*
319          * Don't bother sleeping if we are exiting and not the exiting
320          * thread or if our thread is marked as interrupted.
321          */
322         mtx_lock_spin(&sched_lock);
323         rval = thread_sleep_check(td);
324         mtx_unlock_spin(&sched_lock);
325         if (rval != 0) {
326                 sleepq_release(cvp);
327                 return (rval);
328         }
329
330         cvp->cv_waiters++;
331         DROP_GIANT();
332         mtx_unlock(mp);
333
334         sleepq_add(cvp, mp, cvp->cv_description, SLEEPQ_CONDVAR |
335             SLEEPQ_INTERRUPTIBLE);
336         sleepq_set_timeout(cvp, timo);
337         rval = sleepq_timedwait_sig(cvp);
338
339 #ifdef KTRACE
340         if (KTRPOINT(td, KTR_CSW))
341                 ktrcsw(0, 0);
342 #endif
343         PICKUP_GIANT();
344         mtx_lock(mp);
345         WITNESS_RESTORE(&mp->mtx_object, mp);
346
347         return (rval);
348 }
349
350 /*
351  * Signal a condition variable, wakes up one waiting thread.  Will also wakeup
352  * the swapper if the process is not in memory, so that it can bring the
353  * sleeping process in.  Note that this may also result in additional threads
354  * being made runnable.  Should be called with the same mutex as was passed to
355  * cv_wait held.
356  */
357 void
358 cv_signal(struct cv *cvp)
359 {
360
361         sleepq_lock(cvp);
362         if (cvp->cv_waiters > 0) {
363                 cvp->cv_waiters--;
364                 sleepq_signal(cvp, SLEEPQ_CONDVAR, -1);
365         } else
366                 sleepq_release(cvp);
367 }
368
369 /*
370  * Broadcast a signal to a condition variable.  Wakes up all waiting threads.
371  * Should be called with the same mutex as was passed to cv_wait held.
372  */
373 void
374 cv_broadcastpri(struct cv *cvp, int pri)
375 {
376
377         sleepq_lock(cvp);
378         if (cvp->cv_waiters > 0) {
379                 cvp->cv_waiters = 0;
380                 sleepq_broadcast(cvp, SLEEPQ_CONDVAR, pri);
381         } else
382                 sleepq_release(cvp);
383 }