kern_mutex.c revision 253824
11541Srgrimes/*-
210358Sjulian * Copyright (c) 1998 Berkeley Software Design, Inc. All rights reserved.
310358Sjulian *
410358Sjulian * Redistribution and use in source and binary forms, with or without
51541Srgrimes * modification, are permitted provided that the following conditions
61541Srgrimes * are met:
71541Srgrimes * 1. Redistributions of source code must retain the above copyright
81541Srgrimes *    notice, this list of conditions and the following disclaimer.
91541Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
101541Srgrimes *    notice, this list of conditions and the following disclaimer in the
111541Srgrimes *    documentation and/or other materials provided with the distribution.
121541Srgrimes * 3. Berkeley Software Design Inc's name may not be used to endorse or
131541Srgrimes *    promote products derived from this software without specific prior
141541Srgrimes *    written permission.
151541Srgrimes *
161541Srgrimes * THIS SOFTWARE IS PROVIDED BY BERKELEY SOFTWARE DESIGN INC ``AS IS'' AND
171541Srgrimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
181541Srgrimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
191541Srgrimes * ARE DISCLAIMED.  IN NO EVENT SHALL BERKELEY SOFTWARE DESIGN INC BE LIABLE
201541Srgrimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
211541Srgrimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
221541Srgrimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
231541Srgrimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
241541Srgrimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
251541Srgrimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
261541Srgrimes * SUCH DAMAGE.
271541Srgrimes *
281541Srgrimes *	from BSDI $Id: mutex_witness.c,v 1.1.2.20 2000/04/27 03:10:27 cp Exp $
291541Srgrimes *	and BSDI $Id: synch_machdep.c,v 2.3.2.39 2000/04/27 03:10:25 cp Exp $
301541Srgrimes */
311541Srgrimes
321541Srgrimes/*
331541Srgrimes * Machine independent bits of mutex implementation.
341541Srgrimes */
351541Srgrimes
361541Srgrimes#include <sys/cdefs.h>
371541Srgrimes__FBSDID("$FreeBSD: head/sys/kern/kern_mutex.c 253824 2013-07-30 23:50:09Z scottl $");
381541Srgrimes
391541Srgrimes#include "opt_adaptive_mutexes.h"
401541Srgrimes#include "opt_ddb.h"
411541Srgrimes#include "opt_global.h"
4235893Sbde#include "opt_hwpmc_hooks.h"
431541Srgrimes#include "opt_kdtrace.h"
441541Srgrimes#include "opt_sched.h"
452165Spaul
462165Spaul#include <sys/param.h>
472165Spaul#include <sys/systm.h>
4825164Speter#include <sys/bus.h>
4925164Speter#include <sys/conf.h>
501541Srgrimes#include <sys/kdb.h>
511541Srgrimes#include <sys/kernel.h>
521541Srgrimes#include <sys/ktr.h>
531541Srgrimes#include <sys/lock.h>
541541Srgrimes#include <sys/malloc.h>
551541Srgrimes#include <sys/mutex.h>
561549Srgrimes#include <sys/proc.h>
571549Srgrimes#include <sys/resourcevar.h>
583038Swollman#include <sys/sched.h>
591541Srgrimes#include <sys/sbuf.h>
601541Srgrimes#include <sys/sysctl.h>
611541Srgrimes#include <sys/turnstile.h>
6225164Speter#include <sys/vmmeter.h>
631541Srgrimes#include <sys/lock_profile.h>
641541Srgrimes
651541Srgrimes#include <machine/atomic.h>
6626897Sjhay#include <machine/bus.h>
671541Srgrimes#include <machine/cpu.h>
6816635Sbde
691541Srgrimes#include <ddb/ddb.h>
701541Srgrimes
717090Sbde#include <fs/devfs/devfs_int.h>
721541Srgrimes
737090Sbde#include <vm/vm.h>
747090Sbde#include <vm/vm_extern.h>
751549Srgrimes
7621175Sphk#if defined(SMP) && !defined(NO_ADAPTIVE_MUTEXES)
7731234Sbde#define	ADAPTIVE_MUTEXES
781549Srgrimes#endif
791549Srgrimes
801549Srgrimes#ifdef HWPMC_HOOKS
8125083Sjdp#include <sys/pmckern.h>
8225083SjdpPMC_SOFT_DEFINE( , , lock, failed);
8325083Sjdp#endif
8425083Sjdp
8525083Sjdp/*
8635210Sbde * Return the mutex address when the lock cookie address is provided.
8735210Sbde * This functionality assumes that struct mtx* have a member named mtx_lock.
8835210Sbde */
8935210Sbde#define	mtxlock2mtx(c)	(__containerof(c, struct mtx, mtx_lock))
9025083Sjdp
9125083Sjdp/*
9225083Sjdp * Internal utility macros.
9325083Sjdp */
9425083Sjdp#define mtx_unowned(m)	((m)->mtx_lock == MTX_UNOWNED)
9525083Sjdp
9625083Sjdp#define	mtx_destroyed(m) ((m)->mtx_lock == MTX_DESTROYED)
9725083Sjdp
981549Srgrimes#define	mtx_owner(m)	((struct thread *)((m)->mtx_lock & ~MTX_FLAGMASK))
991549Srgrimes
1001549Srgrimesstatic void	assert_mtx(const struct lock_object *lock, int what);
1011549Srgrimes#ifdef DDB
1021549Srgrimesstatic void	db_show_mtx(const struct lock_object *lock);
10318424Sbde#endif
10435210Sbdestatic void	lock_mtx(struct lock_object *lock, int how);
1051549Srgrimesstatic void	lock_spin(struct lock_object *lock, int how);
1061549Srgrimes#ifdef KDTRACE_HOOKS
1071549Srgrimesstatic int	owner_mtx(const struct lock_object *lock,
1081549Srgrimes		    struct thread **owner);
1091549Srgrimes#endif
11025083Sjdpstatic int	unlock_mtx(struct lock_object *lock);
11110358Sjulianstatic int	unlock_spin(struct lock_object *lock);
11225083Sjdp
11310358Sjulian/*
11410358Sjulian * Lock classes for sleep and spin mutexes.
11510358Sjulian */
11610358Sjulianstruct lock_class lock_class_mtx_sleep = {
11710358Sjulian	.lc_name = "sleep mutex",
11810358Sjulian	.lc_flags = LC_SLEEPLOCK | LC_RECURSABLE,
11910358Sjulian	.lc_assert = assert_mtx,
12010358Sjulian#ifdef DDB
12110358Sjulian	.lc_ddb_show = db_show_mtx,
12213765Smpp#endif
12313765Smpp	.lc_lock = lock_mtx,
12410358Sjulian	.lc_unlock = unlock_mtx,
12510358Sjulian#ifdef KDTRACE_HOOKS
12610358Sjulian	.lc_owner = owner_mtx,
12710358Sjulian#endif
12810358Sjulian};
12910358Sjulianstruct lock_class lock_class_mtx_spin = {
13010358Sjulian	.lc_name = "spin mutex",
13110358Sjulian	.lc_flags = LC_SPINLOCK | LC_RECURSABLE,
13210358Sjulian	.lc_assert = assert_mtx,
13310358Sjulian#ifdef DDB
13410358Sjulian	.lc_ddb_show = db_show_mtx,
13513765Smpp#endif
13610358Sjulian	.lc_lock = lock_spin,
13710358Sjulian	.lc_unlock = unlock_spin,
13835893Sbde#ifdef KDTRACE_HOOKS
13935893Sbde	.lc_owner = owner_mtx,
14035893Sbde#endif
14135893Sbde};
14235893Sbde
14335893Sbde/*
14435893Sbde * System-wide mutexes
14535893Sbde */
14635893Sbdestruct mtx blocked_lock;
14735893Sbdestruct mtx Giant;
14835893Sbde
14935893Sbdevoid
15035893Sbdeassert_mtx(const struct lock_object *lock, int what)
15135893Sbde{
15235893Sbde
15335893Sbde	mtx_assert((const struct mtx *)lock, what);
15435893Sbde}
15535893Sbde
15635893Sbdevoid
15735893Sbdelock_mtx(struct lock_object *lock, int how)
15835893Sbde{
15935893Sbde
16035893Sbde	mtx_lock((struct mtx *)lock);
16135893Sbde}
16235893Sbde
16335893Sbdevoid
16435893Sbdelock_spin(struct lock_object *lock, int how)
16535893Sbde{
16635893Sbde
16735893Sbde	panic("spin locks can only use msleep_spin");
16835893Sbde}
16935893Sbde
17035893Sbdeint
17135893Sbdeunlock_mtx(struct lock_object *lock)
17235893Sbde{
17335893Sbde	struct mtx *m;
17435893Sbde
17535893Sbde	m = (struct mtx *)lock;
17635893Sbde	mtx_assert(m, MA_OWNED | MA_NOTRECURSED);
17735893Sbde	mtx_unlock(m);
17835893Sbde	return (0);
17910358Sjulian}
18010358Sjulian
18110358Sjulianint
18210358Sjulianunlock_spin(struct lock_object *lock)
18310358Sjulian{
18410358Sjulian
18510358Sjulian	panic("spin locks can only use msleep_spin");
18635893Sbde}
18735893Sbde
18835893Sbde#ifdef KDTRACE_HOOKS
18935893Sbdeint
19035893Sbdeowner_mtx(const struct lock_object *lock, struct thread **owner)
19110358Sjulian{
19210358Sjulian	const struct mtx *m = (const struct mtx *)lock;
19310358Sjulian
19410358Sjulian	*owner = mtx_owner(m);
19510358Sjulian	return (mtx_unowned(m) == 0);
19610358Sjulian}
19710358Sjulian#endif
19810358Sjulian
19910358Sjulian/*
20010358Sjulian * Function versions of the inlined __mtx_* macros.  These are used by
20131675Sdyson * modules and can also be called from assembly language if needed.
20231675Sdyson */
20310358Sjulianvoid
20410358Sjulian__mtx_lock_flags(volatile uintptr_t *c, int opts, const char *file, int line)
20510358Sjulian{
20610358Sjulian	struct mtx *m;
20710358Sjulian
20810358Sjulian	if (SCHEDULER_STOPPED())
20910358Sjulian		return;
21010358Sjulian
21110358Sjulian	m = mtxlock2mtx(c);
21210358Sjulian
21310358Sjulian	KASSERT(kdb_active != 0 || !TD_IS_IDLETHREAD(curthread),
21410653Sdg	    ("mtx_lock() by idle thread %p on sleep mutex %s @ %s:%d",
21512901Sbde	    curthread, m->lock_object.lo_name, file, line));
21610358Sjulian	KASSERT(m->mtx_lock != MTX_DESTROYED,
21710358Sjulian	    ("mtx_lock() of destroyed mutex @ %s:%d", file, line));
21810358Sjulian	KASSERT(LOCK_CLASS(&m->lock_object) == &lock_class_mtx_sleep,
21910358Sjulian	    ("mtx_lock() of spin mutex %s @ %s:%d", m->lock_object.lo_name,
22010358Sjulian	    file, line));
22110358Sjulian	WITNESS_CHECKORDER(&m->lock_object, opts | LOP_NEWORDER | LOP_EXCLUSIVE,
22210358Sjulian	    file, line, NULL);
22310358Sjulian
22410358Sjulian	__mtx_lock(m, curthread, opts, file, line);
22510358Sjulian	LOCK_LOG_LOCK("LOCK", &m->lock_object, opts, m->mtx_recurse, file,
22610358Sjulian	    line);
22710358Sjulian	WITNESS_LOCK(&m->lock_object, opts | LOP_EXCLUSIVE, file, line);
22810358Sjulian	curthread->td_locks++;
22910358Sjulian}
23010358Sjulian
23110358Sjulianvoid
23210358Sjulian__mtx_unlock_flags(volatile uintptr_t *c, int opts, const char *file, int line)
23310358Sjulian{
23410537Sjulian	struct mtx *m;
23510537Sjulian
23610358Sjulian	if (SCHEDULER_STOPPED())
23710358Sjulian		return;
23810358Sjulian
23910358Sjulian	m = mtxlock2mtx(c);
24010358Sjulian
24110358Sjulian	KASSERT(m->mtx_lock != MTX_DESTROYED,
24210358Sjulian	    ("mtx_unlock() of destroyed mutex @ %s:%d", file, line));
24310358Sjulian	KASSERT(LOCK_CLASS(&m->lock_object) == &lock_class_mtx_sleep,
24410358Sjulian	    ("mtx_unlock() of spin mutex %s @ %s:%d", m->lock_object.lo_name,
24510358Sjulian	    file, line));
24610358Sjulian	WITNESS_UNLOCK(&m->lock_object, opts | LOP_EXCLUSIVE, file, line);
24731675Sdyson	LOCK_LOG_LOCK("UNLOCK", &m->lock_object, opts, m->mtx_recurse, file,
24831675Sdyson	    line);
24931675Sdyson	mtx_assert(m, MA_OWNED);
25031675Sdyson
25131675Sdyson	if (m->mtx_recurse == 0)
25231675Sdyson		LOCKSTAT_PROFILE_RELEASE_LOCK(LS_MTX_UNLOCK_RELEASE, m);
25331675Sdyson	__mtx_unlock(m, curthread, opts, file, line);
25431675Sdyson	curthread->td_locks--;
25531675Sdyson}
25610358Sjulian
25731675Sdysonvoid
25810358Sjulian__mtx_lock_spin_flags(volatile uintptr_t *c, int opts, const char *file,
25910358Sjulian    int line)
26010358Sjulian{
26110358Sjulian	struct mtx *m;
26210358Sjulian
26310358Sjulian	if (SCHEDULER_STOPPED())
26410358Sjulian		return;
26510358Sjulian
26610358Sjulian	m = mtxlock2mtx(c);
26710358Sjulian
26810358Sjulian	KASSERT(m->mtx_lock != MTX_DESTROYED,
26912901Sbde	    ("mtx_lock_spin() of destroyed mutex @ %s:%d", file, line));
27010358Sjulian	KASSERT(LOCK_CLASS(&m->lock_object) == &lock_class_mtx_spin,
2717117Swollman	    ("mtx_lock_spin() of sleep mutex %s @ %s:%d",
2727117Swollman	    m->lock_object.lo_name, file, line));
2737117Swollman	if (mtx_owned(m))
2747117Swollman		KASSERT((m->lock_object.lo_flags & LO_RECURSABLE) != 0,
2757117Swollman	    ("mtx_lock_spin: recursed on non-recursive mutex %s @ %s:%d\n",
2767117Swollman		    m->lock_object.lo_name, file, line));
2777117Swollman	WITNESS_CHECKORDER(&m->lock_object, opts | LOP_NEWORDER | LOP_EXCLUSIVE,
2787117Swollman	    file, line, NULL);
27912276Sbde	__mtx_lock_spin(m, curthread, opts, file, line);
28012276Sbde	LOCK_LOG_LOCK("LOCK", &m->lock_object, opts, m->mtx_recurse, file,
28112276Sbde	    line);
28212276Sbde	WITNESS_LOCK(&m->lock_object, opts | LOP_EXCLUSIVE, file, line);
28312276Sbde}
28412276Sbde
2857117Swollmanvoid
2867117Swollman__mtx_unlock_spin_flags(volatile uintptr_t *c, int opts, const char *file,
2877117Swollman    int line)
28824674Sdufault{
28931234Sbde	struct mtx *m;
29031234Sbde
2917117Swollman	if (SCHEDULER_STOPPED())
2927117Swollman		return;
29310358Sjulian
29413765Smpp	m = mtxlock2mtx(c);
29510358Sjulian
29610358Sjulian	KASSERT(m->mtx_lock != MTX_DESTROYED,
2973380Swollman	    ("mtx_unlock_spin() of destroyed mutex @ %s:%d", file, line));
2987117Swollman	KASSERT(LOCK_CLASS(&m->lock_object) == &lock_class_mtx_spin,
2997117Swollman	    ("mtx_unlock_spin() of sleep mutex %s @ %s:%d",
3001549Srgrimes	    m->lock_object.lo_name, file, line));
30118026Sbde	WITNESS_UNLOCK(&m->lock_object, opts | LOP_EXCLUSIVE, file, line);
30218026Sbde	LOCK_LOG_LOCK("UNLOCK", &m->lock_object, opts, m->mtx_recurse, file,
30318026Sbde	    line);
3041549Srgrimes	mtx_assert(m, MA_OWNED);
3051549Srgrimes
30618026Sbde	__mtx_unlock_spin(m);
3077090Sbde}
30812901Sbde
309/*
310 * The important part of mtx_trylock{,_flags}()
311 * Tries to acquire lock `m.'  If this function is called on a mutex that
312 * is already owned, it will recursively acquire the lock.
313 */
314int
315_mtx_trylock_flags_(volatile uintptr_t *c, int opts, const char *file, int line)
316{
317	struct mtx *m;
318#ifdef LOCK_PROFILING
319	uint64_t waittime = 0;
320	int contested = 0;
321#endif
322	int rval;
323
324	if (SCHEDULER_STOPPED())
325		return (1);
326
327	m = mtxlock2mtx(c);
328
329	KASSERT(kdb_active != 0 || !TD_IS_IDLETHREAD(curthread),
330	    ("mtx_trylock() by idle thread %p on sleep mutex %s @ %s:%d",
331	    curthread, m->lock_object.lo_name, file, line));
332	KASSERT(m->mtx_lock != MTX_DESTROYED,
333	    ("mtx_trylock() of destroyed mutex @ %s:%d", file, line));
334	KASSERT(LOCK_CLASS(&m->lock_object) == &lock_class_mtx_sleep,
335	    ("mtx_trylock() of spin mutex %s @ %s:%d", m->lock_object.lo_name,
336	    file, line));
337
338	if (mtx_owned(m) && (m->lock_object.lo_flags & LO_RECURSABLE) != 0) {
339		m->mtx_recurse++;
340		atomic_set_ptr(&m->mtx_lock, MTX_RECURSED);
341		rval = 1;
342	} else
343		rval = _mtx_obtain_lock(m, (uintptr_t)curthread);
344
345	LOCK_LOG_TRY("LOCK", &m->lock_object, opts, rval, file, line);
346	if (rval) {
347		WITNESS_LOCK(&m->lock_object, opts | LOP_EXCLUSIVE | LOP_TRYLOCK,
348		    file, line);
349		curthread->td_locks++;
350		if (m->mtx_recurse == 0)
351			LOCKSTAT_PROFILE_OBTAIN_LOCK_SUCCESS(LS_MTX_LOCK_ACQUIRE,
352			    m, contested, waittime, file, line);
353
354	}
355
356	return (rval);
357}
358
359/*
360 * __mtx_lock_sleep: the tougher part of acquiring an MTX_DEF lock.
361 *
362 * We call this if the lock is either contested (i.e. we need to go to
363 * sleep waiting for it), or if we need to recurse on it.
364 */
365void
366__mtx_lock_sleep(volatile uintptr_t *c, uintptr_t tid, int opts,
367    const char *file, int line)
368{
369	struct mtx *m;
370	struct turnstile *ts;
371	uintptr_t v;
372#ifdef ADAPTIVE_MUTEXES
373	volatile struct thread *owner;
374#endif
375#ifdef KTR
376	int cont_logged = 0;
377#endif
378#ifdef LOCK_PROFILING
379	int contested = 0;
380	uint64_t waittime = 0;
381#endif
382#ifdef KDTRACE_HOOKS
383	uint64_t spin_cnt = 0;
384	uint64_t sleep_cnt = 0;
385	int64_t sleep_time = 0;
386#endif
387
388	if (SCHEDULER_STOPPED())
389		return;
390
391	m = mtxlock2mtx(c);
392
393	if (mtx_owned(m)) {
394		KASSERT((m->lock_object.lo_flags & LO_RECURSABLE) != 0,
395	    ("_mtx_lock_sleep: recursed on non-recursive mutex %s @ %s:%d\n",
396		    m->lock_object.lo_name, file, line));
397		m->mtx_recurse++;
398		atomic_set_ptr(&m->mtx_lock, MTX_RECURSED);
399		if (LOCK_LOG_TEST(&m->lock_object, opts))
400			CTR1(KTR_LOCK, "_mtx_lock_sleep: %p recursing", m);
401		return;
402	}
403
404#ifdef HWPMC_HOOKS
405	PMC_SOFT_CALL( , , lock, failed);
406#endif
407	lock_profile_obtain_lock_failed(&m->lock_object,
408		    &contested, &waittime);
409	if (LOCK_LOG_TEST(&m->lock_object, opts))
410		CTR4(KTR_LOCK,
411		    "_mtx_lock_sleep: %s contested (lock=%p) at %s:%d",
412		    m->lock_object.lo_name, (void *)m->mtx_lock, file, line);
413
414	while (!_mtx_obtain_lock(m, tid)) {
415#ifdef KDTRACE_HOOKS
416		spin_cnt++;
417#endif
418#ifdef ADAPTIVE_MUTEXES
419		/*
420		 * If the owner is running on another CPU, spin until the
421		 * owner stops running or the state of the lock changes.
422		 */
423		v = m->mtx_lock;
424		if (v != MTX_UNOWNED) {
425			owner = (struct thread *)(v & ~MTX_FLAGMASK);
426			if (TD_IS_RUNNING(owner)) {
427				if (LOCK_LOG_TEST(&m->lock_object, 0))
428					CTR3(KTR_LOCK,
429					    "%s: spinning on %p held by %p",
430					    __func__, m, owner);
431				while (mtx_owner(m) == owner &&
432				    TD_IS_RUNNING(owner)) {
433					cpu_spinwait();
434#ifdef KDTRACE_HOOKS
435					spin_cnt++;
436#endif
437				}
438				continue;
439			}
440		}
441#endif
442
443		ts = turnstile_trywait(&m->lock_object);
444		v = m->mtx_lock;
445
446		/*
447		 * Check if the lock has been released while spinning for
448		 * the turnstile chain lock.
449		 */
450		if (v == MTX_UNOWNED) {
451			turnstile_cancel(ts);
452			continue;
453		}
454
455#ifdef ADAPTIVE_MUTEXES
456		/*
457		 * The current lock owner might have started executing
458		 * on another CPU (or the lock could have changed
459		 * owners) while we were waiting on the turnstile
460		 * chain lock.  If so, drop the turnstile lock and try
461		 * again.
462		 */
463		owner = (struct thread *)(v & ~MTX_FLAGMASK);
464		if (TD_IS_RUNNING(owner)) {
465			turnstile_cancel(ts);
466			continue;
467		}
468#endif
469
470		/*
471		 * If the mutex isn't already contested and a failure occurs
472		 * setting the contested bit, the mutex was either released
473		 * or the state of the MTX_RECURSED bit changed.
474		 */
475		if ((v & MTX_CONTESTED) == 0 &&
476		    !atomic_cmpset_ptr(&m->mtx_lock, v, v | MTX_CONTESTED)) {
477			turnstile_cancel(ts);
478			continue;
479		}
480
481		/*
482		 * We definitely must sleep for this lock.
483		 */
484		mtx_assert(m, MA_NOTOWNED);
485
486#ifdef KTR
487		if (!cont_logged) {
488			CTR6(KTR_CONTENTION,
489			    "contention: %p at %s:%d wants %s, taken by %s:%d",
490			    (void *)tid, file, line, m->lock_object.lo_name,
491			    WITNESS_FILE(&m->lock_object),
492			    WITNESS_LINE(&m->lock_object));
493			cont_logged = 1;
494		}
495#endif
496
497		/*
498		 * Block on the turnstile.
499		 */
500#ifdef KDTRACE_HOOKS
501		sleep_time -= lockstat_nsecs();
502#endif
503		turnstile_wait(ts, mtx_owner(m), TS_EXCLUSIVE_QUEUE);
504#ifdef KDTRACE_HOOKS
505		sleep_time += lockstat_nsecs();
506		sleep_cnt++;
507#endif
508	}
509#ifdef KTR
510	if (cont_logged) {
511		CTR4(KTR_CONTENTION,
512		    "contention end: %s acquired by %p at %s:%d",
513		    m->lock_object.lo_name, (void *)tid, file, line);
514	}
515#endif
516	LOCKSTAT_PROFILE_OBTAIN_LOCK_SUCCESS(LS_MTX_LOCK_ACQUIRE, m, contested,
517	    waittime, file, line);
518#ifdef KDTRACE_HOOKS
519	if (sleep_time)
520		LOCKSTAT_RECORD1(LS_MTX_LOCK_BLOCK, m, sleep_time);
521
522	/*
523	 * Only record the loops spinning and not sleeping.
524	 */
525	if (spin_cnt > sleep_cnt)
526		LOCKSTAT_RECORD1(LS_MTX_LOCK_SPIN, m, (spin_cnt - sleep_cnt));
527#endif
528}
529
530static void
531_mtx_lock_spin_failed(struct mtx *m)
532{
533	struct thread *td;
534
535	td = mtx_owner(m);
536
537	/* If the mutex is unlocked, try again. */
538	if (td == NULL)
539		return;
540
541	printf( "spin lock %p (%s) held by %p (tid %d) too long\n",
542	    m, m->lock_object.lo_name, td, td->td_tid);
543#ifdef WITNESS
544	witness_display_spinlock(&m->lock_object, td, printf);
545#endif
546	panic("spin lock held too long");
547}
548
549#ifdef SMP
550/*
551 * _mtx_lock_spin_cookie: the tougher part of acquiring an MTX_SPIN lock.
552 *
553 * This is only called if we need to actually spin for the lock. Recursion
554 * is handled inline.
555 */
556void
557_mtx_lock_spin_cookie(volatile uintptr_t *c, uintptr_t tid, int opts,
558    const char *file, int line)
559{
560	struct mtx *m;
561	int i = 0;
562#ifdef LOCK_PROFILING
563	int contested = 0;
564	uint64_t waittime = 0;
565#endif
566
567	if (SCHEDULER_STOPPED())
568		return;
569
570	m = mtxlock2mtx(c);
571
572	if (LOCK_LOG_TEST(&m->lock_object, opts))
573		CTR1(KTR_LOCK, "_mtx_lock_spin: %p spinning", m);
574
575#ifdef HWPMC_HOOKS
576	PMC_SOFT_CALL( , , lock, failed);
577#endif
578	lock_profile_obtain_lock_failed(&m->lock_object, &contested, &waittime);
579	while (!_mtx_obtain_lock(m, tid)) {
580
581		/* Give interrupts a chance while we spin. */
582		spinlock_exit();
583		while (m->mtx_lock != MTX_UNOWNED) {
584			if (i++ < 10000000) {
585				cpu_spinwait();
586				continue;
587			}
588			if (i < 60000000 || kdb_active || panicstr != NULL)
589				DELAY(1);
590			else
591				_mtx_lock_spin_failed(m);
592			cpu_spinwait();
593		}
594		spinlock_enter();
595	}
596
597	if (LOCK_LOG_TEST(&m->lock_object, opts))
598		CTR1(KTR_LOCK, "_mtx_lock_spin: %p spin done", m);
599
600	LOCKSTAT_PROFILE_OBTAIN_LOCK_SUCCESS(LS_MTX_SPIN_LOCK_ACQUIRE, m,
601	    contested, waittime, (file), (line));
602	LOCKSTAT_RECORD1(LS_MTX_SPIN_LOCK_SPIN, m, i);
603}
604#endif /* SMP */
605
606void
607thread_lock_flags_(struct thread *td, int opts, const char *file, int line)
608{
609	struct mtx *m;
610	uintptr_t tid;
611	int i;
612#ifdef LOCK_PROFILING
613	int contested = 0;
614	uint64_t waittime = 0;
615#endif
616#ifdef KDTRACE_HOOKS
617	uint64_t spin_cnt = 0;
618#endif
619
620	i = 0;
621	tid = (uintptr_t)curthread;
622
623	if (SCHEDULER_STOPPED())
624		return;
625
626	for (;;) {
627retry:
628		spinlock_enter();
629		m = td->td_lock;
630		KASSERT(m->mtx_lock != MTX_DESTROYED,
631		    ("thread_lock() of destroyed mutex @ %s:%d", file, line));
632		KASSERT(LOCK_CLASS(&m->lock_object) == &lock_class_mtx_spin,
633		    ("thread_lock() of sleep mutex %s @ %s:%d",
634		    m->lock_object.lo_name, file, line));
635		if (mtx_owned(m))
636			KASSERT((m->lock_object.lo_flags & LO_RECURSABLE) != 0,
637	    ("thread_lock: recursed on non-recursive mutex %s @ %s:%d\n",
638			    m->lock_object.lo_name, file, line));
639		WITNESS_CHECKORDER(&m->lock_object,
640		    opts | LOP_NEWORDER | LOP_EXCLUSIVE, file, line, NULL);
641		while (!_mtx_obtain_lock(m, tid)) {
642#ifdef KDTRACE_HOOKS
643			spin_cnt++;
644#endif
645			if (m->mtx_lock == tid) {
646				m->mtx_recurse++;
647				break;
648			}
649#ifdef HWPMC_HOOKS
650			PMC_SOFT_CALL( , , lock, failed);
651#endif
652			lock_profile_obtain_lock_failed(&m->lock_object,
653			    &contested, &waittime);
654			/* Give interrupts a chance while we spin. */
655			spinlock_exit();
656			while (m->mtx_lock != MTX_UNOWNED) {
657				if (i++ < 10000000)
658					cpu_spinwait();
659				else if (i < 60000000 ||
660				    kdb_active || panicstr != NULL)
661					DELAY(1);
662				else
663					_mtx_lock_spin_failed(m);
664				cpu_spinwait();
665				if (m != td->td_lock)
666					goto retry;
667			}
668			spinlock_enter();
669		}
670		if (m == td->td_lock)
671			break;
672		__mtx_unlock_spin(m);	/* does spinlock_exit() */
673#ifdef KDTRACE_HOOKS
674		spin_cnt++;
675#endif
676	}
677	if (m->mtx_recurse == 0)
678		LOCKSTAT_PROFILE_OBTAIN_LOCK_SUCCESS(LS_MTX_SPIN_LOCK_ACQUIRE,
679		    m, contested, waittime, (file), (line));
680	LOCK_LOG_LOCK("LOCK", &m->lock_object, opts, m->mtx_recurse, file,
681	    line);
682	WITNESS_LOCK(&m->lock_object, opts | LOP_EXCLUSIVE, file, line);
683	LOCKSTAT_RECORD1(LS_THREAD_LOCK_SPIN, m, spin_cnt);
684}
685
686struct mtx *
687thread_lock_block(struct thread *td)
688{
689	struct mtx *lock;
690
691	THREAD_LOCK_ASSERT(td, MA_OWNED);
692	lock = td->td_lock;
693	td->td_lock = &blocked_lock;
694	mtx_unlock_spin(lock);
695
696	return (lock);
697}
698
699void
700thread_lock_unblock(struct thread *td, struct mtx *new)
701{
702	mtx_assert(new, MA_OWNED);
703	MPASS(td->td_lock == &blocked_lock);
704	atomic_store_rel_ptr((volatile void *)&td->td_lock, (uintptr_t)new);
705}
706
707void
708thread_lock_set(struct thread *td, struct mtx *new)
709{
710	struct mtx *lock;
711
712	mtx_assert(new, MA_OWNED);
713	THREAD_LOCK_ASSERT(td, MA_OWNED);
714	lock = td->td_lock;
715	td->td_lock = new;
716	mtx_unlock_spin(lock);
717}
718
719/*
720 * __mtx_unlock_sleep: the tougher part of releasing an MTX_DEF lock.
721 *
722 * We are only called here if the lock is recursed or contested (i.e. we
723 * need to wake up a blocked thread).
724 */
725void
726__mtx_unlock_sleep(volatile uintptr_t *c, int opts, const char *file, int line)
727{
728	struct mtx *m;
729	struct turnstile *ts;
730
731	if (SCHEDULER_STOPPED())
732		return;
733
734	m = mtxlock2mtx(c);
735
736	if (mtx_recursed(m)) {
737		if (--(m->mtx_recurse) == 0)
738			atomic_clear_ptr(&m->mtx_lock, MTX_RECURSED);
739		if (LOCK_LOG_TEST(&m->lock_object, opts))
740			CTR1(KTR_LOCK, "_mtx_unlock_sleep: %p unrecurse", m);
741		return;
742	}
743
744	/*
745	 * We have to lock the chain before the turnstile so this turnstile
746	 * can be removed from the hash list if it is empty.
747	 */
748	turnstile_chain_lock(&m->lock_object);
749	ts = turnstile_lookup(&m->lock_object);
750	if (LOCK_LOG_TEST(&m->lock_object, opts))
751		CTR1(KTR_LOCK, "_mtx_unlock_sleep: %p contested", m);
752	MPASS(ts != NULL);
753	turnstile_broadcast(ts, TS_EXCLUSIVE_QUEUE);
754	_mtx_release_lock_quick(m);
755
756	/*
757	 * This turnstile is now no longer associated with the mutex.  We can
758	 * unlock the chain lock so a new turnstile may take it's place.
759	 */
760	turnstile_unpend(ts, TS_EXCLUSIVE_LOCK);
761	turnstile_chain_unlock(&m->lock_object);
762}
763
764/*
765 * All the unlocking of MTX_SPIN locks is done inline.
766 * See the __mtx_unlock_spin() macro for the details.
767 */
768
769/*
770 * The backing function for the INVARIANTS-enabled mtx_assert()
771 */
772#ifdef INVARIANT_SUPPORT
773void
774__mtx_assert(const volatile uintptr_t *c, int what, const char *file, int line)
775{
776	const struct mtx *m;
777
778	if (panicstr != NULL || dumping)
779		return;
780
781	m = mtxlock2mtx(c);
782
783	switch (what) {
784	case MA_OWNED:
785	case MA_OWNED | MA_RECURSED:
786	case MA_OWNED | MA_NOTRECURSED:
787		if (!mtx_owned(m))
788			panic("mutex %s not owned at %s:%d",
789			    m->lock_object.lo_name, file, line);
790		if (mtx_recursed(m)) {
791			if ((what & MA_NOTRECURSED) != 0)
792				panic("mutex %s recursed at %s:%d",
793				    m->lock_object.lo_name, file, line);
794		} else if ((what & MA_RECURSED) != 0) {
795			panic("mutex %s unrecursed at %s:%d",
796			    m->lock_object.lo_name, file, line);
797		}
798		break;
799	case MA_NOTOWNED:
800		if (mtx_owned(m))
801			panic("mutex %s owned at %s:%d",
802			    m->lock_object.lo_name, file, line);
803		break;
804	default:
805		panic("unknown mtx_assert at %s:%d", file, line);
806	}
807}
808#endif
809
810/*
811 * The MUTEX_DEBUG-enabled mtx_validate()
812 *
813 * Most of these checks have been moved off into the LO_INITIALIZED flag
814 * maintained by the witness code.
815 */
816#ifdef MUTEX_DEBUG
817
818void	mtx_validate(struct mtx *);
819
820void
821mtx_validate(struct mtx *m)
822{
823
824/*
825 * XXX: When kernacc() does not require Giant we can reenable this check
826 */
827#ifdef notyet
828	/*
829	 * Can't call kernacc() from early init386(), especially when
830	 * initializing Giant mutex, because some stuff in kernacc()
831	 * requires Giant itself.
832	 */
833	if (!cold)
834		if (!kernacc((caddr_t)m, sizeof(m),
835		    VM_PROT_READ | VM_PROT_WRITE))
836			panic("Can't read and write to mutex %p", m);
837#endif
838}
839#endif
840
841/*
842 * General init routine used by the MTX_SYSINIT() macro.
843 */
844void
845mtx_sysinit(void *arg)
846{
847	struct mtx_args *margs = arg;
848
849	mtx_init((struct mtx *)margs->ma_mtx, margs->ma_desc, NULL,
850	    margs->ma_opts);
851}
852
853/*
854 * Mutex initialization routine; initialize lock `m' of type contained in
855 * `opts' with options contained in `opts' and name `name.'  The optional
856 * lock type `type' is used as a general lock category name for use with
857 * witness.
858 */
859void
860_mtx_init(volatile uintptr_t *c, const char *name, const char *type, int opts)
861{
862	struct mtx *m;
863	struct lock_class *class;
864	int flags;
865
866	m = mtxlock2mtx(c);
867
868	MPASS((opts & ~(MTX_SPIN | MTX_QUIET | MTX_RECURSE |
869		MTX_NOWITNESS | MTX_DUPOK | MTX_NOPROFILE)) == 0);
870	ASSERT_ATOMIC_LOAD_PTR(m->mtx_lock,
871	    ("%s: mtx_lock not aligned for %s: %p", __func__, name,
872	    &m->mtx_lock));
873
874#ifdef MUTEX_DEBUG
875	/* Diagnostic and error correction */
876	mtx_validate(m);
877#endif
878
879	/* Determine lock class and lock flags. */
880	if (opts & MTX_SPIN)
881		class = &lock_class_mtx_spin;
882	else
883		class = &lock_class_mtx_sleep;
884	flags = 0;
885	if (opts & MTX_QUIET)
886		flags |= LO_QUIET;
887	if (opts & MTX_RECURSE)
888		flags |= LO_RECURSABLE;
889	if ((opts & MTX_NOWITNESS) == 0)
890		flags |= LO_WITNESS;
891	if (opts & MTX_DUPOK)
892		flags |= LO_DUPOK;
893	if (opts & MTX_NOPROFILE)
894		flags |= LO_NOPROFILE;
895
896	/* Initialize mutex. */
897	lock_init(&m->lock_object, class, name, type, flags);
898
899	m->mtx_lock = MTX_UNOWNED;
900	m->mtx_recurse = 0;
901}
902
903/*
904 * Remove lock `m' from all_mtx queue.  We don't allow MTX_QUIET to be
905 * passed in as a flag here because if the corresponding mtx_init() was
906 * called with MTX_QUIET set, then it will already be set in the mutex's
907 * flags.
908 */
909void
910_mtx_destroy(volatile uintptr_t *c)
911{
912	struct mtx *m;
913
914	m = mtxlock2mtx(c);
915
916	if (!mtx_owned(m))
917		MPASS(mtx_unowned(m));
918	else {
919		MPASS((m->mtx_lock & (MTX_RECURSED|MTX_CONTESTED)) == 0);
920
921		/* Perform the non-mtx related part of mtx_unlock_spin(). */
922		if (LOCK_CLASS(&m->lock_object) == &lock_class_mtx_spin)
923			spinlock_exit();
924		else
925			curthread->td_locks--;
926
927		lock_profile_release_lock(&m->lock_object);
928		/* Tell witness this isn't locked to make it happy. */
929		WITNESS_UNLOCK(&m->lock_object, LOP_EXCLUSIVE, __FILE__,
930		    __LINE__);
931	}
932
933	m->mtx_lock = MTX_DESTROYED;
934	lock_destroy(&m->lock_object);
935}
936
937/*
938 * Intialize the mutex code and system mutexes.  This is called from the MD
939 * startup code prior to mi_startup().  The per-CPU data space needs to be
940 * setup before this is called.
941 */
942void
943mutex_init(void)
944{
945
946	/* Setup turnstiles so that sleep mutexes work. */
947	init_turnstiles();
948
949	/*
950	 * Initialize mutexes.
951	 */
952	mtx_init(&Giant, "Giant", NULL, MTX_DEF | MTX_RECURSE);
953	mtx_init(&blocked_lock, "blocked lock", NULL, MTX_SPIN);
954	blocked_lock.mtx_lock = 0xdeadc0de;	/* Always blocked. */
955	mtx_init(&proc0.p_mtx, "process lock", NULL, MTX_DEF | MTX_DUPOK);
956	mtx_init(&proc0.p_slock, "process slock", NULL, MTX_SPIN | MTX_RECURSE);
957	mtx_init(&devmtx, "cdev", NULL, MTX_DEF);
958	mtx_lock(&Giant);
959}
960
961#ifdef DDB
962void
963db_show_mtx(const struct lock_object *lock)
964{
965	struct thread *td;
966	const struct mtx *m;
967
968	m = (const struct mtx *)lock;
969
970	db_printf(" flags: {");
971	if (LOCK_CLASS(lock) == &lock_class_mtx_spin)
972		db_printf("SPIN");
973	else
974		db_printf("DEF");
975	if (m->lock_object.lo_flags & LO_RECURSABLE)
976		db_printf(", RECURSE");
977	if (m->lock_object.lo_flags & LO_DUPOK)
978		db_printf(", DUPOK");
979	db_printf("}\n");
980	db_printf(" state: {");
981	if (mtx_unowned(m))
982		db_printf("UNOWNED");
983	else if (mtx_destroyed(m))
984		db_printf("DESTROYED");
985	else {
986		db_printf("OWNED");
987		if (m->mtx_lock & MTX_CONTESTED)
988			db_printf(", CONTESTED");
989		if (m->mtx_lock & MTX_RECURSED)
990			db_printf(", RECURSED");
991	}
992	db_printf("}\n");
993	if (!mtx_unowned(m) && !mtx_destroyed(m)) {
994		td = mtx_owner(m);
995		db_printf(" owner: %p (tid %d, pid %d, \"%s\")\n", td,
996		    td->td_tid, td->td_proc->p_pid, td->td_name);
997		if (mtx_recursed(m))
998			db_printf(" recursed: %d\n", m->mtx_recurse);
999	}
1000}
1001#endif
1002