kern_mutex.c revision 160771
1/*-
2 * Copyright (c) 1998 Berkeley Software Design, Inc. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 *    notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 *    notice, this list of conditions and the following disclaimer in the
11 *    documentation and/or other materials provided with the distribution.
12 * 3. Berkeley Software Design Inc's name may not be used to endorse or
13 *    promote products derived from this software without specific prior
14 *    written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY BERKELEY SOFTWARE DESIGN INC ``AS IS'' AND
17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED.  IN NO EVENT SHALL BERKELEY SOFTWARE DESIGN INC BE LIABLE
20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 *
28 *	from BSDI $Id: mutex_witness.c,v 1.1.2.20 2000/04/27 03:10:27 cp Exp $
29 *	and BSDI $Id: synch_machdep.c,v 2.3.2.39 2000/04/27 03:10:25 cp Exp $
30 */
31
32/*
33 * Machine independent bits of mutex implementation.
34 */
35
36#include <sys/cdefs.h>
37__FBSDID("$FreeBSD: head/sys/kern/kern_mutex.c 160771 2006-07-27 21:45:55Z jhb $");
38
39#include "opt_adaptive_mutexes.h"
40#include "opt_ddb.h"
41#include "opt_mprof.h"
42#include "opt_mutex_wake_all.h"
43#include "opt_sched.h"
44
45#include <sys/param.h>
46#include <sys/systm.h>
47#include <sys/bus.h>
48#include <sys/conf.h>
49#include <sys/kdb.h>
50#include <sys/kernel.h>
51#include <sys/ktr.h>
52#include <sys/lock.h>
53#include <sys/malloc.h>
54#include <sys/mutex.h>
55#include <sys/proc.h>
56#include <sys/resourcevar.h>
57#include <sys/sched.h>
58#include <sys/sbuf.h>
59#include <sys/sysctl.h>
60#include <sys/turnstile.h>
61#include <sys/vmmeter.h>
62
63#include <machine/atomic.h>
64#include <machine/bus.h>
65#include <machine/cpu.h>
66
67#include <ddb/ddb.h>
68
69#include <fs/devfs/devfs_int.h>
70
71#include <vm/vm.h>
72#include <vm/vm_extern.h>
73
74/*
75 * Force MUTEX_WAKE_ALL for now.
76 * single thread wakeup needs fixes to avoid race conditions with
77 * priority inheritance.
78 */
79#ifndef MUTEX_WAKE_ALL
80#define MUTEX_WAKE_ALL
81#endif
82
83/*
84 * Internal utility macros.
85 */
86#define mtx_unowned(m)	((m)->mtx_lock == MTX_UNOWNED)
87
88#define	mtx_owner(m)	((struct thread *)((m)->mtx_lock & ~MTX_FLAGMASK))
89
90#ifdef DDB
91static void	db_show_mtx(struct lock_object *lock);
92#endif
93
94/*
95 * Lock classes for sleep and spin mutexes.
96 */
97struct lock_class lock_class_mtx_sleep = {
98	"sleep mutex",
99	LC_SLEEPLOCK | LC_RECURSABLE,
100#ifdef DDB
101	db_show_mtx
102#endif
103};
104struct lock_class lock_class_mtx_spin = {
105	"spin mutex",
106	LC_SPINLOCK | LC_RECURSABLE,
107#ifdef DDB
108	db_show_mtx
109#endif
110};
111
112/*
113 * System-wide mutexes
114 */
115struct mtx sched_lock;
116struct mtx Giant;
117
118#ifdef MUTEX_PROFILING
119SYSCTL_NODE(_debug, OID_AUTO, mutex, CTLFLAG_RD, NULL, "mutex debugging");
120SYSCTL_NODE(_debug_mutex, OID_AUTO, prof, CTLFLAG_RD, NULL, "mutex profiling");
121static int mutex_prof_enable = 0;
122SYSCTL_INT(_debug_mutex_prof, OID_AUTO, enable, CTLFLAG_RW,
123    &mutex_prof_enable, 0, "Enable tracing of mutex holdtime");
124
125struct mutex_prof {
126	const char	*name;
127	const char	*file;
128	int		line;
129	uintmax_t	cnt_max;
130	uintmax_t	cnt_tot;
131	uintmax_t	cnt_cur;
132	uintmax_t	cnt_contest_holding;
133	uintmax_t	cnt_contest_locking;
134	struct mutex_prof *next;
135};
136
137/*
138 * mprof_buf is a static pool of profiling records to avoid possible
139 * reentrance of the memory allocation functions.
140 *
141 * Note: NUM_MPROF_BUFFERS must be smaller than MPROF_HASH_SIZE.
142 */
143#ifdef MPROF_BUFFERS
144#define NUM_MPROF_BUFFERS	MPROF_BUFFERS
145#else
146#define	NUM_MPROF_BUFFERS	1000
147#endif
148static struct mutex_prof mprof_buf[NUM_MPROF_BUFFERS];
149static int first_free_mprof_buf;
150#ifndef MPROF_HASH_SIZE
151#define	MPROF_HASH_SIZE		1009
152#endif
153#if NUM_MPROF_BUFFERS >= MPROF_HASH_SIZE
154#error MPROF_BUFFERS must be larger than MPROF_HASH_SIZE
155#endif
156static struct mutex_prof *mprof_hash[MPROF_HASH_SIZE];
157/* SWAG: sbuf size = avg stat. line size * number of locks */
158#define MPROF_SBUF_SIZE		256 * 400
159
160static int mutex_prof_acquisitions;
161SYSCTL_INT(_debug_mutex_prof, OID_AUTO, acquisitions, CTLFLAG_RD,
162    &mutex_prof_acquisitions, 0, "Number of mutex acquistions recorded");
163static int mutex_prof_records;
164SYSCTL_INT(_debug_mutex_prof, OID_AUTO, records, CTLFLAG_RD,
165    &mutex_prof_records, 0, "Number of profiling records");
166static int mutex_prof_maxrecords = NUM_MPROF_BUFFERS;
167SYSCTL_INT(_debug_mutex_prof, OID_AUTO, maxrecords, CTLFLAG_RD,
168    &mutex_prof_maxrecords, 0, "Maximum number of profiling records");
169static int mutex_prof_rejected;
170SYSCTL_INT(_debug_mutex_prof, OID_AUTO, rejected, CTLFLAG_RD,
171    &mutex_prof_rejected, 0, "Number of rejected profiling records");
172static int mutex_prof_hashsize = MPROF_HASH_SIZE;
173SYSCTL_INT(_debug_mutex_prof, OID_AUTO, hashsize, CTLFLAG_RD,
174    &mutex_prof_hashsize, 0, "Hash size");
175static int mutex_prof_collisions = 0;
176SYSCTL_INT(_debug_mutex_prof, OID_AUTO, collisions, CTLFLAG_RD,
177    &mutex_prof_collisions, 0, "Number of hash collisions");
178
179/*
180 * mprof_mtx protects the profiling buffers and the hash.
181 */
182static struct mtx mprof_mtx;
183MTX_SYSINIT(mprof, &mprof_mtx, "mutex profiling lock", MTX_SPIN | MTX_QUIET);
184
185static u_int64_t
186nanoseconds(void)
187{
188	struct timespec tv;
189
190	nanotime(&tv);
191	return (tv.tv_sec * (u_int64_t)1000000000 + tv.tv_nsec);
192}
193
194static int
195dump_mutex_prof_stats(SYSCTL_HANDLER_ARGS)
196{
197	struct sbuf *sb;
198	int error, i;
199	static int multiplier = 1;
200
201	if (first_free_mprof_buf == 0)
202		return (SYSCTL_OUT(req, "No locking recorded",
203		    sizeof("No locking recorded")));
204
205retry_sbufops:
206	sb = sbuf_new(NULL, NULL, MPROF_SBUF_SIZE * multiplier, SBUF_FIXEDLEN);
207	sbuf_printf(sb, "\n%6s %12s %11s %5s %12s %12s %s\n",
208	    "max", "total", "count", "avg", "cnt_hold", "cnt_lock", "name");
209	/*
210	 * XXX this spinlock seems to be by far the largest perpetrator
211	 * of spinlock latency (1.6 msec on an Athlon1600 was recorded
212	 * even before I pessimized it further by moving the average
213	 * computation here).
214	 */
215	mtx_lock_spin(&mprof_mtx);
216	for (i = 0; i < first_free_mprof_buf; ++i) {
217		sbuf_printf(sb, "%6ju %12ju %11ju %5ju %12ju %12ju %s:%d (%s)\n",
218		    mprof_buf[i].cnt_max / 1000,
219		    mprof_buf[i].cnt_tot / 1000,
220		    mprof_buf[i].cnt_cur,
221		    mprof_buf[i].cnt_cur == 0 ? (uintmax_t)0 :
222			mprof_buf[i].cnt_tot / (mprof_buf[i].cnt_cur * 1000),
223		    mprof_buf[i].cnt_contest_holding,
224		    mprof_buf[i].cnt_contest_locking,
225		    mprof_buf[i].file, mprof_buf[i].line, mprof_buf[i].name);
226		if (sbuf_overflowed(sb)) {
227			mtx_unlock_spin(&mprof_mtx);
228			sbuf_delete(sb);
229			multiplier++;
230			goto retry_sbufops;
231		}
232	}
233	mtx_unlock_spin(&mprof_mtx);
234	sbuf_finish(sb);
235	error = SYSCTL_OUT(req, sbuf_data(sb), sbuf_len(sb) + 1);
236	sbuf_delete(sb);
237	return (error);
238}
239SYSCTL_PROC(_debug_mutex_prof, OID_AUTO, stats, CTLTYPE_STRING | CTLFLAG_RD,
240    NULL, 0, dump_mutex_prof_stats, "A", "Mutex profiling statistics");
241
242static int
243reset_mutex_prof_stats(SYSCTL_HANDLER_ARGS)
244{
245	int error, v;
246
247	if (first_free_mprof_buf == 0)
248		return (0);
249
250	v = 0;
251	error = sysctl_handle_int(oidp, &v, 0, req);
252	if (error)
253		return (error);
254	if (req->newptr == NULL)
255		return (error);
256	if (v == 0)
257		return (0);
258
259	mtx_lock_spin(&mprof_mtx);
260	bzero(mprof_buf, sizeof(*mprof_buf) * first_free_mprof_buf);
261	bzero(mprof_hash, sizeof(struct mtx *) * MPROF_HASH_SIZE);
262	first_free_mprof_buf = 0;
263	mtx_unlock_spin(&mprof_mtx);
264	return (0);
265}
266SYSCTL_PROC(_debug_mutex_prof, OID_AUTO, reset, CTLTYPE_INT | CTLFLAG_RW,
267    NULL, 0, reset_mutex_prof_stats, "I", "Reset mutex profiling statistics");
268#endif
269
270/*
271 * Function versions of the inlined __mtx_* macros.  These are used by
272 * modules and can also be called from assembly language if needed.
273 */
274void
275_mtx_lock_flags(struct mtx *m, int opts, const char *file, int line)
276{
277
278	MPASS(curthread != NULL);
279	KASSERT(m->mtx_lock != MTX_DESTROYED,
280	    ("mtx_lock() of destroyed mutex @ %s:%d", file, line));
281	KASSERT(LOCK_CLASS(&m->mtx_object) == &lock_class_mtx_sleep,
282	    ("mtx_lock() of spin mutex %s @ %s:%d", m->mtx_object.lo_name,
283	    file, line));
284	WITNESS_CHECKORDER(&m->mtx_object, opts | LOP_NEWORDER | LOP_EXCLUSIVE,
285	    file, line);
286	_get_sleep_lock(m, curthread, opts, file, line);
287	LOCK_LOG_LOCK("LOCK", &m->mtx_object, opts, m->mtx_recurse, file,
288	    line);
289	WITNESS_LOCK(&m->mtx_object, opts | LOP_EXCLUSIVE, file, line);
290	curthread->td_locks++;
291#ifdef MUTEX_PROFILING
292	/* don't reset the timer when/if recursing */
293	if (m->mtx_acqtime == 0) {
294		m->mtx_filename = file;
295		m->mtx_lineno = line;
296		m->mtx_acqtime = mutex_prof_enable ? nanoseconds() : 0;
297		++mutex_prof_acquisitions;
298	}
299#endif
300}
301
302void
303_mtx_unlock_flags(struct mtx *m, int opts, const char *file, int line)
304{
305
306	MPASS(curthread != NULL);
307	KASSERT(m->mtx_lock != MTX_DESTROYED,
308	    ("mtx_unlock() of destroyed mutex @ %s:%d", file, line));
309	KASSERT(LOCK_CLASS(&m->mtx_object) == &lock_class_mtx_sleep,
310	    ("mtx_unlock() of spin mutex %s @ %s:%d", m->mtx_object.lo_name,
311	    file, line));
312	curthread->td_locks--;
313	WITNESS_UNLOCK(&m->mtx_object, opts | LOP_EXCLUSIVE, file, line);
314	LOCK_LOG_LOCK("UNLOCK", &m->mtx_object, opts, m->mtx_recurse, file,
315	    line);
316	mtx_assert(m, MA_OWNED);
317#ifdef MUTEX_PROFILING
318	if (m->mtx_acqtime != 0) {
319		static const char *unknown = "(unknown)";
320		struct mutex_prof *mpp;
321		u_int64_t acqtime, now;
322		const char *p, *q;
323		volatile u_int hash;
324
325		now = nanoseconds();
326		acqtime = m->mtx_acqtime;
327		m->mtx_acqtime = 0;
328		if (now <= acqtime)
329			goto out;
330		for (p = m->mtx_filename;
331		    p != NULL && strncmp(p, "../", 3) == 0; p += 3)
332			/* nothing */ ;
333		if (p == NULL || *p == '\0')
334			p = unknown;
335		for (hash = m->mtx_lineno, q = p; *q != '\0'; ++q)
336			hash = (hash * 2 + *q) % MPROF_HASH_SIZE;
337		mtx_lock_spin(&mprof_mtx);
338		for (mpp = mprof_hash[hash]; mpp != NULL; mpp = mpp->next)
339			if (mpp->line == m->mtx_lineno &&
340			    strcmp(mpp->file, p) == 0)
341				break;
342		if (mpp == NULL) {
343			/* Just exit if we cannot get a trace buffer */
344			if (first_free_mprof_buf >= NUM_MPROF_BUFFERS) {
345				++mutex_prof_rejected;
346				goto unlock;
347			}
348			mpp = &mprof_buf[first_free_mprof_buf++];
349			mpp->name = mtx_name(m);
350			mpp->file = p;
351			mpp->line = m->mtx_lineno;
352			mpp->next = mprof_hash[hash];
353			if (mprof_hash[hash] != NULL)
354				++mutex_prof_collisions;
355			mprof_hash[hash] = mpp;
356			++mutex_prof_records;
357		}
358		/*
359		 * Record if the mutex has been held longer now than ever
360		 * before.
361		 */
362		if (now - acqtime > mpp->cnt_max)
363			mpp->cnt_max = now - acqtime;
364		mpp->cnt_tot += now - acqtime;
365		mpp->cnt_cur++;
366		/*
367		 * There's a small race, really we should cmpxchg
368		 * 0 with the current value, but that would bill
369		 * the contention to the wrong lock instance if
370		 * it followed this also.
371		 */
372		mpp->cnt_contest_holding += m->mtx_contest_holding;
373		m->mtx_contest_holding = 0;
374		mpp->cnt_contest_locking += m->mtx_contest_locking;
375		m->mtx_contest_locking = 0;
376unlock:
377		mtx_unlock_spin(&mprof_mtx);
378	}
379out:
380#endif
381	_rel_sleep_lock(m, curthread, opts, file, line);
382}
383
384void
385_mtx_lock_spin_flags(struct mtx *m, int opts, const char *file, int line)
386{
387
388	MPASS(curthread != NULL);
389	KASSERT(m->mtx_lock != MTX_DESTROYED,
390	    ("mtx_lock_spin() of destroyed mutex @ %s:%d", file, line));
391	KASSERT(LOCK_CLASS(&m->mtx_object) == &lock_class_mtx_spin,
392	    ("mtx_lock_spin() of sleep mutex %s @ %s:%d",
393	    m->mtx_object.lo_name, file, line));
394	WITNESS_CHECKORDER(&m->mtx_object, opts | LOP_NEWORDER | LOP_EXCLUSIVE,
395	    file, line);
396	_get_spin_lock(m, curthread, opts, file, line);
397	LOCK_LOG_LOCK("LOCK", &m->mtx_object, opts, m->mtx_recurse, file,
398	    line);
399	WITNESS_LOCK(&m->mtx_object, opts | LOP_EXCLUSIVE, file, line);
400}
401
402void
403_mtx_unlock_spin_flags(struct mtx *m, int opts, const char *file, int line)
404{
405
406	MPASS(curthread != NULL);
407	KASSERT(m->mtx_lock != MTX_DESTROYED,
408	    ("mtx_unlock_spin() of destroyed mutex @ %s:%d", file, line));
409	KASSERT(LOCK_CLASS(&m->mtx_object) == &lock_class_mtx_spin,
410	    ("mtx_unlock_spin() of sleep mutex %s @ %s:%d",
411	    m->mtx_object.lo_name, file, line));
412	WITNESS_UNLOCK(&m->mtx_object, opts | LOP_EXCLUSIVE, file, line);
413	LOCK_LOG_LOCK("UNLOCK", &m->mtx_object, opts, m->mtx_recurse, file,
414	    line);
415	mtx_assert(m, MA_OWNED);
416	_rel_spin_lock(m);
417}
418
419/*
420 * The important part of mtx_trylock{,_flags}()
421 * Tries to acquire lock `m.'  If this function is called on a mutex that
422 * is already owned, it will recursively acquire the lock.
423 */
424int
425_mtx_trylock(struct mtx *m, int opts, const char *file, int line)
426{
427	int rval;
428
429	MPASS(curthread != NULL);
430	KASSERT(m->mtx_lock != MTX_DESTROYED,
431	    ("mtx_trylock() of destroyed mutex @ %s:%d", file, line));
432	KASSERT(LOCK_CLASS(&m->mtx_object) == &lock_class_mtx_sleep,
433	    ("mtx_trylock() of spin mutex %s @ %s:%d", m->mtx_object.lo_name,
434	    file, line));
435
436	if (mtx_owned(m) && (m->mtx_object.lo_flags & LO_RECURSABLE) != 0) {
437		m->mtx_recurse++;
438		atomic_set_ptr(&m->mtx_lock, MTX_RECURSED);
439		rval = 1;
440	} else
441		rval = _obtain_lock(m, (uintptr_t)curthread);
442
443	LOCK_LOG_TRY("LOCK", &m->mtx_object, opts, rval, file, line);
444	if (rval) {
445		WITNESS_LOCK(&m->mtx_object, opts | LOP_EXCLUSIVE | LOP_TRYLOCK,
446		    file, line);
447		curthread->td_locks++;
448	}
449
450	return (rval);
451}
452
453/*
454 * _mtx_lock_sleep: the tougher part of acquiring an MTX_DEF lock.
455 *
456 * We call this if the lock is either contested (i.e. we need to go to
457 * sleep waiting for it), or if we need to recurse on it.
458 */
459void
460_mtx_lock_sleep(struct mtx *m, uintptr_t tid, int opts, const char *file,
461    int line)
462{
463#if defined(SMP) && !defined(NO_ADAPTIVE_MUTEXES)
464	volatile struct thread *owner;
465#endif
466	uintptr_t v;
467#ifdef KTR
468	int cont_logged = 0;
469#endif
470#ifdef MUTEX_PROFILING
471	int contested;
472#endif
473
474	if (mtx_owned(m)) {
475		KASSERT((m->mtx_object.lo_flags & LO_RECURSABLE) != 0,
476	    ("_mtx_lock_sleep: recursed on non-recursive mutex %s @ %s:%d\n",
477		    m->mtx_object.lo_name, file, line));
478		m->mtx_recurse++;
479		atomic_set_ptr(&m->mtx_lock, MTX_RECURSED);
480		if (LOCK_LOG_TEST(&m->mtx_object, opts))
481			CTR1(KTR_LOCK, "_mtx_lock_sleep: %p recursing", m);
482		return;
483	}
484
485	if (LOCK_LOG_TEST(&m->mtx_object, opts))
486		CTR4(KTR_LOCK,
487		    "_mtx_lock_sleep: %s contested (lock=%p) at %s:%d",
488		    m->mtx_object.lo_name, (void *)m->mtx_lock, file, line);
489
490#ifdef MUTEX_PROFILING
491	contested = 0;
492#endif
493	while (!_obtain_lock(m, tid)) {
494#ifdef MUTEX_PROFILING
495		contested = 1;
496		atomic_add_int(&m->mtx_contest_holding, 1);
497#endif
498		turnstile_lock(&m->mtx_object);
499		v = m->mtx_lock;
500
501		/*
502		 * Check if the lock has been released while spinning for
503		 * the turnstile chain lock.
504		 */
505		if (v == MTX_UNOWNED) {
506			turnstile_release(&m->mtx_object);
507			cpu_spinwait();
508			continue;
509		}
510
511#ifdef MUTEX_WAKE_ALL
512		MPASS(v != MTX_CONTESTED);
513#else
514		/*
515		 * The mutex was marked contested on release. This means that
516		 * there are other threads blocked on it.  Grab ownership of
517		 * it and propagate its priority to the current thread if
518		 * necessary.
519		 */
520		if (v == MTX_CONTESTED) {
521			m->mtx_lock = tid | MTX_CONTESTED;
522			turnstile_claim(&m->mtx_object);
523			break;
524		}
525#endif
526
527		/*
528		 * If the mutex isn't already contested and a failure occurs
529		 * setting the contested bit, the mutex was either released
530		 * or the state of the MTX_RECURSED bit changed.
531		 */
532		if ((v & MTX_CONTESTED) == 0 &&
533		    !atomic_cmpset_ptr(&m->mtx_lock, v, v | MTX_CONTESTED)) {
534			turnstile_release(&m->mtx_object);
535			cpu_spinwait();
536			continue;
537		}
538
539#if defined(SMP) && !defined(NO_ADAPTIVE_MUTEXES)
540		/*
541		 * If the current owner of the lock is executing on another
542		 * CPU, spin instead of blocking.
543		 */
544		owner = (struct thread *)(v & ~MTX_FLAGMASK);
545#ifdef ADAPTIVE_GIANT
546		if (TD_IS_RUNNING(owner)) {
547#else
548		if (m != &Giant && TD_IS_RUNNING(owner)) {
549#endif
550			turnstile_release(&m->mtx_object);
551			while (mtx_owner(m) == owner && TD_IS_RUNNING(owner)) {
552				cpu_spinwait();
553			}
554			continue;
555		}
556#endif	/* SMP && !NO_ADAPTIVE_MUTEXES */
557
558		/*
559		 * We definitely must sleep for this lock.
560		 */
561		mtx_assert(m, MA_NOTOWNED);
562
563#ifdef KTR
564		if (!cont_logged) {
565			CTR6(KTR_CONTENTION,
566			    "contention: %p at %s:%d wants %s, taken by %s:%d",
567			    (void *)tid, file, line, m->mtx_object.lo_name,
568			    WITNESS_FILE(&m->mtx_object),
569			    WITNESS_LINE(&m->mtx_object));
570			cont_logged = 1;
571		}
572#endif
573
574		/*
575		 * Block on the turnstile.
576		 */
577		turnstile_wait(&m->mtx_object, mtx_owner(m),
578		    TS_EXCLUSIVE_QUEUE);
579	}
580
581#ifdef KTR
582	if (cont_logged) {
583		CTR4(KTR_CONTENTION,
584		    "contention end: %s acquired by %p at %s:%d",
585		    m->mtx_object.lo_name, (void *)tid, file, line);
586	}
587#endif
588#ifdef MUTEX_PROFILING
589	if (contested)
590		m->mtx_contest_locking++;
591	m->mtx_contest_holding = 0;
592#endif
593	return;
594}
595
596#ifdef SMP
597/*
598 * _mtx_lock_spin: the tougher part of acquiring an MTX_SPIN lock.
599 *
600 * This is only called if we need to actually spin for the lock. Recursion
601 * is handled inline.
602 */
603void
604_mtx_lock_spin(struct mtx *m, uintptr_t tid, int opts, const char *file,
605    int line)
606{
607	int i = 0;
608
609	if (LOCK_LOG_TEST(&m->mtx_object, opts))
610		CTR1(KTR_LOCK, "_mtx_lock_spin: %p spinning", m);
611
612	while (!_obtain_lock(m, tid)) {
613
614		/* Give interrupts a chance while we spin. */
615		spinlock_exit();
616		while (m->mtx_lock != MTX_UNOWNED) {
617			if (i++ < 10000000) {
618				cpu_spinwait();
619				continue;
620			}
621			if (i < 60000000)
622				DELAY(1);
623			else if (!kdb_active && !panicstr) {
624				printf("spin lock %s held by %p for > 5 seconds\n",
625				    m->mtx_object.lo_name, (void *)m->mtx_lock);
626#ifdef WITNESS
627				witness_display_spinlock(&m->mtx_object,
628				    mtx_owner(m));
629#endif
630				panic("spin lock held too long");
631			}
632			cpu_spinwait();
633		}
634		spinlock_enter();
635	}
636
637	if (LOCK_LOG_TEST(&m->mtx_object, opts))
638		CTR1(KTR_LOCK, "_mtx_lock_spin: %p spin done", m);
639
640	return;
641}
642#endif /* SMP */
643
644/*
645 * _mtx_unlock_sleep: the tougher part of releasing an MTX_DEF lock.
646 *
647 * We are only called here if the lock is recursed or contested (i.e. we
648 * need to wake up a blocked thread).
649 */
650void
651_mtx_unlock_sleep(struct mtx *m, int opts, const char *file, int line)
652{
653	struct turnstile *ts;
654#ifndef PREEMPTION
655	struct thread *td, *td1;
656#endif
657
658	if (mtx_recursed(m)) {
659		if (--(m->mtx_recurse) == 0)
660			atomic_clear_ptr(&m->mtx_lock, MTX_RECURSED);
661		if (LOCK_LOG_TEST(&m->mtx_object, opts))
662			CTR1(KTR_LOCK, "_mtx_unlock_sleep: %p unrecurse", m);
663		return;
664	}
665
666	turnstile_lock(&m->mtx_object);
667	ts = turnstile_lookup(&m->mtx_object);
668	if (LOCK_LOG_TEST(&m->mtx_object, opts))
669		CTR1(KTR_LOCK, "_mtx_unlock_sleep: %p contested", m);
670
671#if defined(SMP) && !defined(NO_ADAPTIVE_MUTEXES)
672	if (ts == NULL) {
673		_release_lock_quick(m);
674		if (LOCK_LOG_TEST(&m->mtx_object, opts))
675			CTR1(KTR_LOCK, "_mtx_unlock_sleep: %p no sleepers", m);
676		turnstile_release(&m->mtx_object);
677		return;
678	}
679#else
680	MPASS(ts != NULL);
681#endif
682#ifndef PREEMPTION
683	/* XXX */
684	td1 = turnstile_head(ts, TS_EXCLUSIVE_QUEUE);
685#endif
686#ifdef MUTEX_WAKE_ALL
687	turnstile_broadcast(ts, TS_EXCLUSIVE_QUEUE);
688	_release_lock_quick(m);
689#else
690	if (turnstile_signal(ts, TS_EXCLUSIVE_QUEUE)) {
691		_release_lock_quick(m);
692		if (LOCK_LOG_TEST(&m->mtx_object, opts))
693			CTR1(KTR_LOCK, "_mtx_unlock_sleep: %p not held", m);
694	} else {
695		m->mtx_lock = MTX_CONTESTED;
696		if (LOCK_LOG_TEST(&m->mtx_object, opts))
697			CTR1(KTR_LOCK, "_mtx_unlock_sleep: %p still contested",
698			    m);
699	}
700#endif
701	turnstile_unpend(ts, TS_EXCLUSIVE_LOCK);
702
703#ifndef PREEMPTION
704	/*
705	 * XXX: This is just a hack until preemption is done.  However,
706	 * once preemption is done we need to either wrap the
707	 * turnstile_signal() and release of the actual lock in an
708	 * extra critical section or change the preemption code to
709	 * always just set a flag and never do instant-preempts.
710	 */
711	td = curthread;
712	if (td->td_critnest > 0 || td1->td_priority >= td->td_priority)
713		return;
714	mtx_lock_spin(&sched_lock);
715	if (!TD_IS_RUNNING(td1)) {
716#ifdef notyet
717		if (td->td_ithd != NULL) {
718			struct ithd *it = td->td_ithd;
719
720			if (it->it_interrupted) {
721				if (LOCK_LOG_TEST(&m->mtx_object, opts))
722					CTR2(KTR_LOCK,
723				    "_mtx_unlock_sleep: %p interrupted %p",
724					    it, it->it_interrupted);
725				intr_thd_fixup(it);
726			}
727		}
728#endif
729		if (LOCK_LOG_TEST(&m->mtx_object, opts))
730			CTR2(KTR_LOCK,
731			    "_mtx_unlock_sleep: %p switching out lock=%p", m,
732			    (void *)m->mtx_lock);
733
734		mi_switch(SW_INVOL, NULL);
735		if (LOCK_LOG_TEST(&m->mtx_object, opts))
736			CTR2(KTR_LOCK, "_mtx_unlock_sleep: %p resuming lock=%p",
737			    m, (void *)m->mtx_lock);
738	}
739	mtx_unlock_spin(&sched_lock);
740#endif
741
742	return;
743}
744
745/*
746 * All the unlocking of MTX_SPIN locks is done inline.
747 * See the _rel_spin_lock() macro for the details.
748 */
749
750/*
751 * The backing function for the INVARIANTS-enabled mtx_assert()
752 */
753#ifdef INVARIANT_SUPPORT
754void
755_mtx_assert(struct mtx *m, int what, const char *file, int line)
756{
757
758	if (panicstr != NULL || dumping)
759		return;
760	switch (what) {
761	case MA_OWNED:
762	case MA_OWNED | MA_RECURSED:
763	case MA_OWNED | MA_NOTRECURSED:
764		if (!mtx_owned(m))
765			panic("mutex %s not owned at %s:%d",
766			    m->mtx_object.lo_name, file, line);
767		if (mtx_recursed(m)) {
768			if ((what & MA_NOTRECURSED) != 0)
769				panic("mutex %s recursed at %s:%d",
770				    m->mtx_object.lo_name, file, line);
771		} else if ((what & MA_RECURSED) != 0) {
772			panic("mutex %s unrecursed at %s:%d",
773			    m->mtx_object.lo_name, file, line);
774		}
775		break;
776	case MA_NOTOWNED:
777		if (mtx_owned(m))
778			panic("mutex %s owned at %s:%d",
779			    m->mtx_object.lo_name, file, line);
780		break;
781	default:
782		panic("unknown mtx_assert at %s:%d", file, line);
783	}
784}
785#endif
786
787/*
788 * The MUTEX_DEBUG-enabled mtx_validate()
789 *
790 * Most of these checks have been moved off into the LO_INITIALIZED flag
791 * maintained by the witness code.
792 */
793#ifdef MUTEX_DEBUG
794
795void	mtx_validate(struct mtx *);
796
797void
798mtx_validate(struct mtx *m)
799{
800
801/*
802 * XXX: When kernacc() does not require Giant we can reenable this check
803 */
804#ifdef notyet
805	/*
806	 * Can't call kernacc() from early init386(), especially when
807	 * initializing Giant mutex, because some stuff in kernacc()
808	 * requires Giant itself.
809	 */
810	if (!cold)
811		if (!kernacc((caddr_t)m, sizeof(m),
812		    VM_PROT_READ | VM_PROT_WRITE))
813			panic("Can't read and write to mutex %p", m);
814#endif
815}
816#endif
817
818/*
819 * General init routine used by the MTX_SYSINIT() macro.
820 */
821void
822mtx_sysinit(void *arg)
823{
824	struct mtx_args *margs = arg;
825
826	mtx_init(margs->ma_mtx, margs->ma_desc, NULL, margs->ma_opts);
827}
828
829/*
830 * Mutex initialization routine; initialize lock `m' of type contained in
831 * `opts' with options contained in `opts' and name `name.'  The optional
832 * lock type `type' is used as a general lock category name for use with
833 * witness.
834 */
835void
836mtx_init(struct mtx *m, const char *name, const char *type, int opts)
837{
838	struct lock_class *class;
839	int flags;
840
841	MPASS((opts & ~(MTX_SPIN | MTX_QUIET | MTX_RECURSE |
842	    MTX_NOWITNESS | MTX_DUPOK)) == 0);
843
844#ifdef MUTEX_DEBUG
845	/* Diagnostic and error correction */
846	mtx_validate(m);
847#endif
848
849	/* Determine lock class and lock flags. */
850	if (opts & MTX_SPIN)
851		class = &lock_class_mtx_spin;
852	else
853		class = &lock_class_mtx_sleep;
854	flags = 0;
855	if (opts & MTX_QUIET)
856		flags |= LO_QUIET;
857	if (opts & MTX_RECURSE)
858		flags |= LO_RECURSABLE;
859	if ((opts & MTX_NOWITNESS) == 0)
860		flags |= LO_WITNESS;
861	if (opts & MTX_DUPOK)
862		flags |= LO_DUPOK;
863
864	/* Initialize mutex. */
865	m->mtx_lock = MTX_UNOWNED;
866	m->mtx_recurse = 0;
867#ifdef MUTEX_PROFILING
868	m->mtx_acqtime = 0;
869	m->mtx_filename = NULL;
870	m->mtx_lineno = 0;
871	m->mtx_contest_holding = 0;
872	m->mtx_contest_locking = 0;
873#endif
874
875	lock_init(&m->mtx_object, class, name, type, flags);
876}
877
878/*
879 * Remove lock `m' from all_mtx queue.  We don't allow MTX_QUIET to be
880 * passed in as a flag here because if the corresponding mtx_init() was
881 * called with MTX_QUIET set, then it will already be set in the mutex's
882 * flags.
883 */
884void
885mtx_destroy(struct mtx *m)
886{
887
888	if (!mtx_owned(m))
889		MPASS(mtx_unowned(m));
890	else {
891		MPASS((m->mtx_lock & (MTX_RECURSED|MTX_CONTESTED)) == 0);
892
893		/* Perform the non-mtx related part of mtx_unlock_spin(). */
894		if (LOCK_CLASS(&m->mtx_object) == &lock_class_mtx_spin)
895			spinlock_exit();
896		else
897			curthread->td_locks--;
898
899		/* Tell witness this isn't locked to make it happy. */
900		WITNESS_UNLOCK(&m->mtx_object, LOP_EXCLUSIVE, __FILE__,
901		    __LINE__);
902	}
903
904	m->mtx_lock = MTX_DESTROYED;
905	lock_destroy(&m->mtx_object);
906}
907
908/*
909 * Intialize the mutex code and system mutexes.  This is called from the MD
910 * startup code prior to mi_startup().  The per-CPU data space needs to be
911 * setup before this is called.
912 */
913void
914mutex_init(void)
915{
916
917	/* Setup turnstiles so that sleep mutexes work. */
918	init_turnstiles();
919
920	/*
921	 * Initialize mutexes.
922	 */
923	mtx_init(&Giant, "Giant", NULL, MTX_DEF | MTX_RECURSE);
924	mtx_init(&sched_lock, "sched lock", NULL, MTX_SPIN | MTX_RECURSE);
925	mtx_init(&proc0.p_mtx, "process lock", NULL, MTX_DEF | MTX_DUPOK);
926	mtx_init(&devmtx, "cdev", NULL, MTX_DEF);
927	mtx_lock(&Giant);
928}
929
930#ifdef DDB
931void
932db_show_mtx(struct lock_object *lock)
933{
934	struct thread *td;
935	struct mtx *m;
936
937	m = (struct mtx *)lock;
938
939	db_printf(" flags: {");
940	if (LOCK_CLASS(lock) == &lock_class_mtx_spin)
941		db_printf("SPIN");
942	else
943		db_printf("DEF");
944	if (m->mtx_object.lo_flags & LO_RECURSABLE)
945		db_printf(", RECURSE");
946	if (m->mtx_object.lo_flags & LO_DUPOK)
947		db_printf(", DUPOK");
948	db_printf("}\n");
949	db_printf(" state: {");
950	if (mtx_unowned(m))
951		db_printf("UNOWNED");
952	else {
953		db_printf("OWNED");
954		if (m->mtx_lock & MTX_CONTESTED)
955			db_printf(", CONTESTED");
956		if (m->mtx_lock & MTX_RECURSED)
957			db_printf(", RECURSED");
958	}
959	db_printf("}\n");
960	if (!mtx_unowned(m)) {
961		td = mtx_owner(m);
962		db_printf(" owner: %p (tid %d, pid %d, \"%s\")\n", td,
963		    td->td_tid, td->td_proc->p_pid, td->td_proc->p_comm);
964		if (mtx_recursed(m))
965			db_printf(" recursed: %d\n", m->mtx_recurse);
966	}
967}
968#endif
969