10384fff8SJason Evans /*-
28a36da99SPedro F. Giffuni * SPDX-License-Identifier: BSD-3-Clause
38a36da99SPedro F. Giffuni *
40384fff8SJason Evans * Copyright (c) 1998 Berkeley Software Design, Inc. All rights reserved.
50384fff8SJason Evans *
60384fff8SJason Evans * Redistribution and use in source and binary forms, with or without
70384fff8SJason Evans * modification, are permitted provided that the following conditions
80384fff8SJason Evans * are met:
90384fff8SJason Evans * 1. Redistributions of source code must retain the above copyright
100384fff8SJason Evans * notice, this list of conditions and the following disclaimer.
110384fff8SJason Evans * 2. Redistributions in binary form must reproduce the above copyright
120384fff8SJason Evans * notice, this list of conditions and the following disclaimer in the
130384fff8SJason Evans * documentation and/or other materials provided with the distribution.
140384fff8SJason Evans * 3. Berkeley Software Design Inc's name may not be used to endorse or
150384fff8SJason Evans * promote products derived from this software without specific prior
160384fff8SJason Evans * written permission.
170384fff8SJason Evans *
180384fff8SJason Evans * THIS SOFTWARE IS PROVIDED BY BERKELEY SOFTWARE DESIGN INC ``AS IS'' AND
190384fff8SJason Evans * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
200384fff8SJason Evans * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
210384fff8SJason Evans * ARE DISCLAIMED. IN NO EVENT SHALL BERKELEY SOFTWARE DESIGN INC BE LIABLE
220384fff8SJason Evans * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
230384fff8SJason Evans * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
240384fff8SJason Evans * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
250384fff8SJason Evans * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
260384fff8SJason Evans * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
270384fff8SJason Evans * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
280384fff8SJason Evans * SUCH DAMAGE.
290384fff8SJason Evans *
300384fff8SJason Evans * from BSDI $Id: mutex_witness.c,v 1.1.2.20 2000/04/27 03:10:27 cp Exp $
3136412d79SJohn Baldwin * and BSDI $Id: synch_machdep.c,v 2.3.2.39 2000/04/27 03:10:25 cp Exp $
320384fff8SJason Evans */
330384fff8SJason Evans
340384fff8SJason Evans /*
35ba48b69aSJohn Baldwin * Machine independent bits of mutex implementation.
360384fff8SJason Evans */
370384fff8SJason Evans
38677b542eSDavid E. O'Brien #include <sys/cdefs.h>
392498cf8cSJohn Baldwin #include "opt_adaptive_mutexes.h"
409c36c934SJohn Baldwin #include "opt_ddb.h"
41f5f9340bSFabien Thomas #include "opt_hwpmc_hooks.h"
429923b511SScott Long #include "opt_sched.h"
43a5a96a19SJohn Baldwin
440384fff8SJason Evans #include <sys/param.h>
456c35e809SDag-Erling Smørgrav #include <sys/systm.h>
4636412d79SJohn Baldwin #include <sys/bus.h>
471126349aSPaul Saab #include <sys/conf.h>
482d50560aSMarcel Moolenaar #include <sys/kdb.h>
4936412d79SJohn Baldwin #include <sys/kernel.h>
506c35e809SDag-Erling Smørgrav #include <sys/ktr.h>
5119284646SJohn Baldwin #include <sys/lock.h>
52fb919e4dSMark Murray #include <sys/malloc.h>
5319284646SJohn Baldwin #include <sys/mutex.h>
540384fff8SJason Evans #include <sys/proc.h>
55c4f7a187SJohn Baldwin #include <sys/resourcevar.h>
56b43179fbSJeff Roberson #include <sys/sched.h>
576c35e809SDag-Erling Smørgrav #include <sys/sbuf.h>
581ada9041SMateusz Guzik #include <sys/smp.h>
59a5a96a19SJohn Baldwin #include <sys/sysctl.h>
60961a7b24SJohn Baldwin #include <sys/turnstile.h>
6136412d79SJohn Baldwin #include <sys/vmmeter.h>
627c0435b9SKip Macy #include <sys/lock_profile.h>
630384fff8SJason Evans
6436412d79SJohn Baldwin #include <machine/atomic.h>
6536412d79SJohn Baldwin #include <machine/bus.h>
660384fff8SJason Evans #include <machine/cpu.h>
6736412d79SJohn Baldwin
689c36c934SJohn Baldwin #include <ddb/ddb.h>
699c36c934SJohn Baldwin
708c4b6380SJohn Baldwin #include <fs/devfs/devfs_int.h>
718c4b6380SJohn Baldwin
7236412d79SJohn Baldwin #include <vm/vm.h>
7336412d79SJohn Baldwin #include <vm/vm_extern.h>
7436412d79SJohn Baldwin
75cd6e6e4eSJohn Baldwin #if defined(SMP) && !defined(NO_ADAPTIVE_MUTEXES)
76cd6e6e4eSJohn Baldwin #define ADAPTIVE_MUTEXES
77cd6e6e4eSJohn Baldwin #endif
78cd6e6e4eSJohn Baldwin
79f5f9340bSFabien Thomas #ifdef HWPMC_HOOKS
80f5f9340bSFabien Thomas #include <sys/pmckern.h>
81f5f9340bSFabien Thomas PMC_SOFT_DEFINE( , , lock, failed);
82f5f9340bSFabien Thomas #endif
83f5f9340bSFabien Thomas
84b9a80acaSStephan Uphoff /*
857f44c618SAttilio Rao * Return the mutex address when the lock cookie address is provided.
867f44c618SAttilio Rao * This functionality assumes that struct mtx* have a member named mtx_lock.
877f44c618SAttilio Rao */
887f44c618SAttilio Rao #define mtxlock2mtx(c) (__containerof(c, struct mtx, mtx_lock))
897f44c618SAttilio Rao
907f44c618SAttilio Rao /*
919ed346baSBosko Milekic * Internal utility macros.
920cde2e34SJason Evans */
939ed346baSBosko Milekic #define mtx_unowned(m) ((m)->mtx_lock == MTX_UNOWNED)
940cde2e34SJason Evans
95c0bfd703SJohn Baldwin #define mtx_destroyed(m) ((m)->mtx_lock == MTX_DESTROYED)
96c0bfd703SJohn Baldwin
97d576deedSPawel Jakub Dawidek static void assert_mtx(const struct lock_object *lock, int what);
98d272fe53SJohn Baldwin #ifdef DDB
99d576deedSPawel Jakub Dawidek static void db_show_mtx(const struct lock_object *lock);
100d272fe53SJohn Baldwin #endif
1017faf4d90SDavide Italiano static void lock_mtx(struct lock_object *lock, uintptr_t how);
1027faf4d90SDavide Italiano static void lock_spin(struct lock_object *lock, uintptr_t how);
103656991b0SGleb Smirnoff static int trylock_mtx(struct lock_object *lock, uintptr_t how);
104656991b0SGleb Smirnoff static int trylock_spin(struct lock_object *lock, uintptr_t how);
105a5aedd68SStacey Son #ifdef KDTRACE_HOOKS
106d576deedSPawel Jakub Dawidek static int owner_mtx(const struct lock_object *lock,
107d576deedSPawel Jakub Dawidek struct thread **owner);
108a5aedd68SStacey Son #endif
1097faf4d90SDavide Italiano static uintptr_t unlock_mtx(struct lock_object *lock);
1107faf4d90SDavide Italiano static uintptr_t unlock_spin(struct lock_object *lock);
111d272fe53SJohn Baldwin
1120cde2e34SJason Evans /*
11319284646SJohn Baldwin * Lock classes for sleep and spin mutexes.
1140cde2e34SJason Evans */
11519284646SJohn Baldwin struct lock_class lock_class_mtx_sleep = {
116ae8dde30SJohn Baldwin .lc_name = "sleep mutex",
117ae8dde30SJohn Baldwin .lc_flags = LC_SLEEPLOCK | LC_RECURSABLE,
118f9721b43SAttilio Rao .lc_assert = assert_mtx,
119d272fe53SJohn Baldwin #ifdef DDB
120ae8dde30SJohn Baldwin .lc_ddb_show = db_show_mtx,
121d272fe53SJohn Baldwin #endif
1226e21afd4SJohn Baldwin .lc_lock = lock_mtx,
123656991b0SGleb Smirnoff .lc_trylock = trylock_mtx,
1246e21afd4SJohn Baldwin .lc_unlock = unlock_mtx,
125a5aedd68SStacey Son #ifdef KDTRACE_HOOKS
126a5aedd68SStacey Son .lc_owner = owner_mtx,
127a5aedd68SStacey Son #endif
12819284646SJohn Baldwin };
12919284646SJohn Baldwin struct lock_class lock_class_mtx_spin = {
130ae8dde30SJohn Baldwin .lc_name = "spin mutex",
131ae8dde30SJohn Baldwin .lc_flags = LC_SPINLOCK | LC_RECURSABLE,
132f9721b43SAttilio Rao .lc_assert = assert_mtx,
133d272fe53SJohn Baldwin #ifdef DDB
134ae8dde30SJohn Baldwin .lc_ddb_show = db_show_mtx,
135d272fe53SJohn Baldwin #endif
1366e21afd4SJohn Baldwin .lc_lock = lock_spin,
137656991b0SGleb Smirnoff .lc_trylock = trylock_spin,
1386e21afd4SJohn Baldwin .lc_unlock = unlock_spin,
139a5aedd68SStacey Son #ifdef KDTRACE_HOOKS
140a5aedd68SStacey Son .lc_owner = owner_mtx,
141a5aedd68SStacey Son #endif
1428484de75SJohn Baldwin };
1438484de75SJohn Baldwin
1441ada9041SMateusz Guzik #ifdef ADAPTIVE_MUTEXES
1452e77cad1SMateusz Guzik #ifdef MUTEX_CUSTOM_BACKOFF
1467029da5cSPawel Biernacki static SYSCTL_NODE(_debug, OID_AUTO, mtx, CTLFLAG_RD | CTLFLAG_MPSAFE, NULL,
1477029da5cSPawel Biernacki "mtx debugging");
1481ada9041SMateusz Guzik
149574adb65SMateusz Guzik static struct lock_delay_config __read_frequently mtx_delay;
1501ada9041SMateusz Guzik
1516b8dd26eSMateusz Guzik SYSCTL_U16(_debug_mtx, OID_AUTO, delay_base, CTLFLAG_RW, &mtx_delay.base,
1521ada9041SMateusz Guzik 0, "");
1536b8dd26eSMateusz Guzik SYSCTL_U16(_debug_mtx, OID_AUTO, delay_max, CTLFLAG_RW, &mtx_delay.max,
1541ada9041SMateusz Guzik 0, "");
1551ada9041SMateusz Guzik
1568e5a3e9aSMateusz Guzik LOCK_DELAY_SYSINIT_DEFAULT(mtx_delay);
1572e77cad1SMateusz Guzik #else
1582e77cad1SMateusz Guzik #define mtx_delay locks_delay
1592e77cad1SMateusz Guzik #endif
1601ada9041SMateusz Guzik #endif
1611ada9041SMateusz Guzik
1622e77cad1SMateusz Guzik #ifdef MUTEX_SPIN_CUSTOM_BACKOFF
1637029da5cSPawel Biernacki static SYSCTL_NODE(_debug, OID_AUTO, mtx_spin,
1647029da5cSPawel Biernacki CTLFLAG_RD | CTLFLAG_MPSAFE, NULL,
165a0d45f0fSMateusz Guzik "mtx spin debugging");
166a0d45f0fSMateusz Guzik
167574adb65SMateusz Guzik static struct lock_delay_config __read_frequently mtx_spin_delay;
168a0d45f0fSMateusz Guzik
1698e5a3e9aSMateusz Guzik SYSCTL_INT(_debug_mtx_spin, OID_AUTO, delay_base, CTLFLAG_RW,
1708e5a3e9aSMateusz Guzik &mtx_spin_delay.base, 0, "");
1718e5a3e9aSMateusz Guzik SYSCTL_INT(_debug_mtx_spin, OID_AUTO, delay_max, CTLFLAG_RW,
1728e5a3e9aSMateusz Guzik &mtx_spin_delay.max, 0, "");
173a0d45f0fSMateusz Guzik
1748e5a3e9aSMateusz Guzik LOCK_DELAY_SYSINIT_DEFAULT(mtx_spin_delay);
1752e77cad1SMateusz Guzik #else
1762e77cad1SMateusz Guzik #define mtx_spin_delay locks_delay
1772e77cad1SMateusz Guzik #endif
178a0d45f0fSMateusz Guzik
1799ed346baSBosko Milekic /*
180c53c013bSJohn Baldwin * System-wide mutexes
181c53c013bSJohn Baldwin */
1822502c107SJeff Roberson struct mtx blocked_lock;
1836a569d35SMateusz Guzik struct mtx __exclusive_cache_line Giant;
184c53c013bSJohn Baldwin
18515140a8aSMateusz Guzik static void _mtx_lock_indefinite_check(struct mtx *, struct lock_delay_arg *);
18615140a8aSMateusz Guzik
18795a9594aSGleb Smirnoff static void
assert_mtx(const struct lock_object * lock,int what)188d576deedSPawel Jakub Dawidek assert_mtx(const struct lock_object *lock, int what)
189f9721b43SAttilio Rao {
190f9721b43SAttilio Rao
191a11bf9a4SXin LI /*
192a11bf9a4SXin LI * Treat LA_LOCKED as if LA_XLOCKED was asserted.
193a11bf9a4SXin LI *
194a11bf9a4SXin LI * Some callers of lc_assert uses LA_LOCKED to indicate that either
195a11bf9a4SXin LI * a shared lock or write lock was held, while other callers uses
196a11bf9a4SXin LI * the more strict LA_XLOCKED (used as MA_OWNED).
197a11bf9a4SXin LI *
198a11bf9a4SXin LI * Mutex is the only lock class that can not be shared, as a result,
199a11bf9a4SXin LI * we can reasonably consider the caller really intends to assert
200a11bf9a4SXin LI * LA_XLOCKED when they are asserting LA_LOCKED on a mutex object.
201a11bf9a4SXin LI */
202a11bf9a4SXin LI if (what & LA_LOCKED) {
203a11bf9a4SXin LI what &= ~LA_LOCKED;
204a11bf9a4SXin LI what |= LA_XLOCKED;
205a11bf9a4SXin LI }
206d576deedSPawel Jakub Dawidek mtx_assert((const struct mtx *)lock, what);
207f9721b43SAttilio Rao }
208f9721b43SAttilio Rao
20995a9594aSGleb Smirnoff static void
lock_mtx(struct lock_object * lock,uintptr_t how)2107faf4d90SDavide Italiano lock_mtx(struct lock_object *lock, uintptr_t how)
2116e21afd4SJohn Baldwin {
2126e21afd4SJohn Baldwin
2136e21afd4SJohn Baldwin mtx_lock((struct mtx *)lock);
2146e21afd4SJohn Baldwin }
2156e21afd4SJohn Baldwin
21695a9594aSGleb Smirnoff static void
lock_spin(struct lock_object * lock,uintptr_t how)2177faf4d90SDavide Italiano lock_spin(struct lock_object *lock, uintptr_t how)
2186e21afd4SJohn Baldwin {
2196e21afd4SJohn Baldwin
2204730a897SAlexander Motin mtx_lock_spin((struct mtx *)lock);
2216e21afd4SJohn Baldwin }
2226e21afd4SJohn Baldwin
223656991b0SGleb Smirnoff static int
trylock_mtx(struct lock_object * lock,uintptr_t how)224656991b0SGleb Smirnoff trylock_mtx(struct lock_object *lock, uintptr_t how)
225656991b0SGleb Smirnoff {
226656991b0SGleb Smirnoff
227656991b0SGleb Smirnoff return (mtx_trylock((struct mtx *)lock));
228656991b0SGleb Smirnoff }
229656991b0SGleb Smirnoff
230656991b0SGleb Smirnoff static int
trylock_spin(struct lock_object * lock,uintptr_t how)231656991b0SGleb Smirnoff trylock_spin(struct lock_object *lock, uintptr_t how)
232656991b0SGleb Smirnoff {
233656991b0SGleb Smirnoff
234656991b0SGleb Smirnoff return (mtx_trylock_spin((struct mtx *)lock));
235656991b0SGleb Smirnoff }
236656991b0SGleb Smirnoff
23795a9594aSGleb Smirnoff static uintptr_t
unlock_mtx(struct lock_object * lock)2386e21afd4SJohn Baldwin unlock_mtx(struct lock_object *lock)
2396e21afd4SJohn Baldwin {
2406e21afd4SJohn Baldwin struct mtx *m;
2416e21afd4SJohn Baldwin
2426e21afd4SJohn Baldwin m = (struct mtx *)lock;
2436e21afd4SJohn Baldwin mtx_assert(m, MA_OWNED | MA_NOTRECURSED);
2446e21afd4SJohn Baldwin mtx_unlock(m);
2456e21afd4SJohn Baldwin return (0);
2466e21afd4SJohn Baldwin }
2476e21afd4SJohn Baldwin
24895a9594aSGleb Smirnoff static uintptr_t
unlock_spin(struct lock_object * lock)2496e21afd4SJohn Baldwin unlock_spin(struct lock_object *lock)
2506e21afd4SJohn Baldwin {
2514730a897SAlexander Motin struct mtx *m;
2526e21afd4SJohn Baldwin
2534730a897SAlexander Motin m = (struct mtx *)lock;
2544730a897SAlexander Motin mtx_assert(m, MA_OWNED | MA_NOTRECURSED);
2554730a897SAlexander Motin mtx_unlock_spin(m);
2564730a897SAlexander Motin return (0);
2576e21afd4SJohn Baldwin }
2586e21afd4SJohn Baldwin
259a5aedd68SStacey Son #ifdef KDTRACE_HOOKS
26095a9594aSGleb Smirnoff static int
owner_mtx(const struct lock_object * lock,struct thread ** owner)261d576deedSPawel Jakub Dawidek owner_mtx(const struct lock_object *lock, struct thread **owner)
262a5aedd68SStacey Son {
26302315a67SMark Johnston const struct mtx *m;
26402315a67SMark Johnston uintptr_t x;
265a5aedd68SStacey Son
26602315a67SMark Johnston m = (const struct mtx *)lock;
26702315a67SMark Johnston x = m->mtx_lock;
26802315a67SMark Johnston *owner = (struct thread *)(x & ~MTX_FLAGMASK);
269e280ce46SMateusz Guzik return (*owner != NULL);
270a5aedd68SStacey Son }
271a5aedd68SStacey Son #endif
272a5aedd68SStacey Son
2730cde2e34SJason Evans /*
2746283b7d0SJohn Baldwin * Function versions of the inlined __mtx_* macros. These are used by
2756283b7d0SJohn Baldwin * modules and can also be called from assembly language if needed.
2766283b7d0SJohn Baldwin */
2776283b7d0SJohn Baldwin void
__mtx_lock_flags(volatile uintptr_t * c,int opts,const char * file,int line)2787f44c618SAttilio Rao __mtx_lock_flags(volatile uintptr_t *c, int opts, const char *file, int line)
2796283b7d0SJohn Baldwin {
2807f44c618SAttilio Rao struct mtx *m;
28108da2677SMateusz Guzik uintptr_t tid, v;
2826283b7d0SJohn Baldwin
2837f44c618SAttilio Rao m = mtxlock2mtx(c);
2847f44c618SAttilio Rao
285704cb42fSMark Johnston KASSERT(kdb_active != 0 || SCHEDULER_STOPPED() ||
286704cb42fSMark Johnston !TD_IS_IDLETHREAD(curthread),
2870ed10497SJohn Baldwin ("mtx_lock() by idle thread %p on mutex %p @ %s:%d",
2880ed10497SJohn Baldwin curthread, m, file, line));
289186abbd7SJohn Baldwin KASSERT(m->mtx_lock != MTX_DESTROYED,
29043a15a22SJohn Baldwin ("mtx_lock() of destroyed mutex %p @ %s:%d", m, file, line));
291dba45599SJohn Baldwin KASSERT(LOCK_CLASS(&m->lock_object) != &lock_class_mtx_spin,
292aa89d8cdSJohn Baldwin ("mtx_lock() of spin mutex %s @ %s:%d", m->lock_object.lo_name,
2930d975d63SJohn Baldwin file, line));
294ac6b769bSAttilio Rao WITNESS_CHECKORDER(&m->lock_object, (opts & ~MTX_RECURSE) |
295ac6b769bSAttilio Rao LOP_NEWORDER | LOP_EXCLUSIVE, file, line, NULL);
2967c0435b9SKip Macy
29708da2677SMateusz Guzik tid = (uintptr_t)curthread;
29808da2677SMateusz Guzik v = MTX_UNOWNED;
29908da2677SMateusz Guzik if (!_mtx_obtain_lock_fetch(m, &v, tid))
3002f1ddb89SMateusz Guzik _mtx_lock_sleep(m, v, opts, file, line);
30108da2677SMateusz Guzik else
30208da2677SMateusz Guzik LOCKSTAT_PROFILE_OBTAIN_LOCK_SUCCESS(adaptive__acquire,
30308da2677SMateusz Guzik m, 0, 0, file, line);
304aa89d8cdSJohn Baldwin LOCK_LOG_LOCK("LOCK", &m->lock_object, opts, m->mtx_recurse, file,
305dde96c99SJohn Baldwin line);
306ac6b769bSAttilio Rao WITNESS_LOCK(&m->lock_object, (opts & ~MTX_RECURSE) | LOP_EXCLUSIVE,
307ac6b769bSAttilio Rao file, line);
308ce1c953eSMark Johnston TD_LOCKS_INC(curthread);
3096283b7d0SJohn Baldwin }
3106283b7d0SJohn Baldwin
3116283b7d0SJohn Baldwin void
__mtx_unlock_flags(volatile uintptr_t * c,int opts,const char * file,int line)3127f44c618SAttilio Rao __mtx_unlock_flags(volatile uintptr_t *c, int opts, const char *file, int line)
3136283b7d0SJohn Baldwin {
3147f44c618SAttilio Rao struct mtx *m;
31535370593SAndriy Gapon
3167f44c618SAttilio Rao m = mtxlock2mtx(c);
3177f44c618SAttilio Rao
318186abbd7SJohn Baldwin KASSERT(m->mtx_lock != MTX_DESTROYED,
31943a15a22SJohn Baldwin ("mtx_unlock() of destroyed mutex %p @ %s:%d", m, file, line));
320dba45599SJohn Baldwin KASSERT(LOCK_CLASS(&m->lock_object) != &lock_class_mtx_spin,
321aa89d8cdSJohn Baldwin ("mtx_unlock() of spin mutex %s @ %s:%d", m->lock_object.lo_name,
3220d975d63SJohn Baldwin file, line));
323aa89d8cdSJohn Baldwin WITNESS_UNLOCK(&m->lock_object, opts | LOP_EXCLUSIVE, file, line);
324aa89d8cdSJohn Baldwin LOCK_LOG_LOCK("UNLOCK", &m->lock_object, opts, m->mtx_recurse, file,
3250d975d63SJohn Baldwin line);
32621377ce0SJohn Baldwin mtx_assert(m, MA_OWNED);
327c66d7606SKip Macy
328ffd5c94cSMateusz Guzik #ifdef LOCK_PROFILING
329b584eb2eSMateusz Guzik __mtx_unlock_sleep(c, (uintptr_t)curthread, opts, file, line);
330ffd5c94cSMateusz Guzik #else
331ffd5c94cSMateusz Guzik __mtx_unlock(m, curthread, opts, file, line);
332ffd5c94cSMateusz Guzik #endif
333ce1c953eSMark Johnston TD_LOCKS_DEC(curthread);
3346283b7d0SJohn Baldwin }
3356283b7d0SJohn Baldwin
3366283b7d0SJohn Baldwin void
__mtx_lock_spin_flags(volatile uintptr_t * c,int opts,const char * file,int line)3377f44c618SAttilio Rao __mtx_lock_spin_flags(volatile uintptr_t *c, int opts, const char *file,
3387f44c618SAttilio Rao int line)
3396283b7d0SJohn Baldwin {
3407f44c618SAttilio Rao struct mtx *m;
34162bf13cbSMateusz Guzik #ifdef SMP
3420d74fe26SMateusz Guzik uintptr_t tid, v;
34362bf13cbSMateusz Guzik #endif
3446283b7d0SJohn Baldwin
3457f44c618SAttilio Rao m = mtxlock2mtx(c);
3467f44c618SAttilio Rao
347186abbd7SJohn Baldwin KASSERT(m->mtx_lock != MTX_DESTROYED,
34843a15a22SJohn Baldwin ("mtx_lock_spin() of destroyed mutex %p @ %s:%d", m, file, line));
349dba45599SJohn Baldwin KASSERT(LOCK_CLASS(&m->lock_object) != &lock_class_mtx_sleep,
3500d975d63SJohn Baldwin ("mtx_lock_spin() of sleep mutex %s @ %s:%d",
351aa89d8cdSJohn Baldwin m->lock_object.lo_name, file, line));
352ad69e26bSJohn Baldwin if (mtx_owned(m))
353ac6b769bSAttilio Rao KASSERT((m->lock_object.lo_flags & LO_RECURSABLE) != 0 ||
354ac6b769bSAttilio Rao (opts & MTX_RECURSE) != 0,
355ad69e26bSJohn Baldwin ("mtx_lock_spin: recursed on non-recursive mutex %s @ %s:%d\n",
356ad69e26bSJohn Baldwin m->lock_object.lo_name, file, line));
357ac6b769bSAttilio Rao opts &= ~MTX_RECURSE;
358aa89d8cdSJohn Baldwin WITNESS_CHECKORDER(&m->lock_object, opts | LOP_NEWORDER | LOP_EXCLUSIVE,
35941313430SJohn Baldwin file, line, NULL);
36062bf13cbSMateusz Guzik #ifdef SMP
3610d74fe26SMateusz Guzik spinlock_enter();
3620d74fe26SMateusz Guzik tid = (uintptr_t)curthread;
3630d74fe26SMateusz Guzik v = MTX_UNOWNED;
3640d74fe26SMateusz Guzik if (!_mtx_obtain_lock_fetch(m, &v, tid))
3650d74fe26SMateusz Guzik _mtx_lock_spin(m, v, opts, file, line);
3660d74fe26SMateusz Guzik else
3676a467cc5SMateusz Guzik LOCKSTAT_PROFILE_OBTAIN_SPIN_LOCK_SUCCESS(spin__acquire,
3680d74fe26SMateusz Guzik m, 0, 0, file, line);
36962bf13cbSMateusz Guzik #else
37062bf13cbSMateusz Guzik __mtx_lock_spin(m, curthread, opts, file, line);
37162bf13cbSMateusz Guzik #endif
372aa89d8cdSJohn Baldwin LOCK_LOG_LOCK("LOCK", &m->lock_object, opts, m->mtx_recurse, file,
373dde96c99SJohn Baldwin line);
374aa89d8cdSJohn Baldwin WITNESS_LOCK(&m->lock_object, opts | LOP_EXCLUSIVE, file, line);
3756283b7d0SJohn Baldwin }
3766283b7d0SJohn Baldwin
37790b581f2SKonstantin Belousov int
__mtx_trylock_spin_flags(volatile uintptr_t * c,int opts,const char * file,int line)37890b581f2SKonstantin Belousov __mtx_trylock_spin_flags(volatile uintptr_t *c, int opts, const char *file,
37990b581f2SKonstantin Belousov int line)
38090b581f2SKonstantin Belousov {
38190b581f2SKonstantin Belousov struct mtx *m;
38290b581f2SKonstantin Belousov
38390b581f2SKonstantin Belousov if (SCHEDULER_STOPPED())
38490b581f2SKonstantin Belousov return (1);
38590b581f2SKonstantin Belousov
38690b581f2SKonstantin Belousov m = mtxlock2mtx(c);
38790b581f2SKonstantin Belousov
38890b581f2SKonstantin Belousov KASSERT(m->mtx_lock != MTX_DESTROYED,
38943a15a22SJohn Baldwin ("mtx_trylock_spin() of destroyed mutex %p @ %s:%d", m, file,
39043a15a22SJohn Baldwin line));
391dba45599SJohn Baldwin KASSERT(LOCK_CLASS(&m->lock_object) != &lock_class_mtx_sleep,
39290b581f2SKonstantin Belousov ("mtx_trylock_spin() of sleep mutex %s @ %s:%d",
39390b581f2SKonstantin Belousov m->lock_object.lo_name, file, line));
39490b581f2SKonstantin Belousov KASSERT((opts & MTX_RECURSE) == 0,
39590b581f2SKonstantin Belousov ("mtx_trylock_spin: unsupp. opt MTX_RECURSE on mutex %s @ %s:%d\n",
39690b581f2SKonstantin Belousov m->lock_object.lo_name, file, line));
39790b581f2SKonstantin Belousov if (__mtx_trylock_spin(m, curthread, opts, file, line)) {
39890b581f2SKonstantin Belousov LOCK_LOG_TRY("LOCK", &m->lock_object, opts, 1, file, line);
39990b581f2SKonstantin Belousov WITNESS_LOCK(&m->lock_object, opts | LOP_EXCLUSIVE, file, line);
40090b581f2SKonstantin Belousov return (1);
40190b581f2SKonstantin Belousov }
40290b581f2SKonstantin Belousov LOCK_LOG_TRY("LOCK", &m->lock_object, opts, 0, file, line);
40390b581f2SKonstantin Belousov return (0);
40490b581f2SKonstantin Belousov }
40590b581f2SKonstantin Belousov
4066283b7d0SJohn Baldwin void
__mtx_unlock_spin_flags(volatile uintptr_t * c,int opts,const char * file,int line)4077f44c618SAttilio Rao __mtx_unlock_spin_flags(volatile uintptr_t *c, int opts, const char *file,
4087f44c618SAttilio Rao int line)
4096283b7d0SJohn Baldwin {
4107f44c618SAttilio Rao struct mtx *m;
411c66d7606SKip Macy
4127f44c618SAttilio Rao m = mtxlock2mtx(c);
4137f44c618SAttilio Rao
414186abbd7SJohn Baldwin KASSERT(m->mtx_lock != MTX_DESTROYED,
41543a15a22SJohn Baldwin ("mtx_unlock_spin() of destroyed mutex %p @ %s:%d", m, file,
41643a15a22SJohn Baldwin line));
417dba45599SJohn Baldwin KASSERT(LOCK_CLASS(&m->lock_object) != &lock_class_mtx_sleep,
4180d975d63SJohn Baldwin ("mtx_unlock_spin() of sleep mutex %s @ %s:%d",
419aa89d8cdSJohn Baldwin m->lock_object.lo_name, file, line));
420aa89d8cdSJohn Baldwin WITNESS_UNLOCK(&m->lock_object, opts | LOP_EXCLUSIVE, file, line);
421aa89d8cdSJohn Baldwin LOCK_LOG_LOCK("UNLOCK", &m->lock_object, opts, m->mtx_recurse, file,
422dde96c99SJohn Baldwin line);
4230d975d63SJohn Baldwin mtx_assert(m, MA_OWNED);
424c66d7606SKip Macy
425961135eaSJohn Baldwin __mtx_unlock_spin(m);
4266283b7d0SJohn Baldwin }
4276283b7d0SJohn Baldwin
4286283b7d0SJohn Baldwin /*
4299ed346baSBosko Milekic * The important part of mtx_trylock{,_flags}()
430eac09796SJohn Baldwin * Tries to acquire lock `m.' If this function is called on a mutex that
431eac09796SJohn Baldwin * is already owned, it will recursively acquire the lock.
4320cde2e34SJason Evans */
4330cde2e34SJason Evans int
_mtx_trylock_flags_int(struct mtx * m,int opts LOCK_FILE_LINE_ARG_DEF)434013c0b49SMateusz Guzik _mtx_trylock_flags_int(struct mtx *m, int opts LOCK_FILE_LINE_ARG_DEF)
4350cde2e34SJason Evans {
4365c5df0d9SMateusz Guzik struct thread *td;
4375c5df0d9SMateusz Guzik uintptr_t tid, v;
4381723a064SJeff Roberson #ifdef LOCK_PROFILING
4397c0435b9SKip Macy uint64_t waittime = 0;
4401723a064SJeff Roberson int contested = 0;
4411723a064SJeff Roberson #endif
4421723a064SJeff Roberson int rval;
4435c5df0d9SMateusz Guzik bool recursed;
4440cde2e34SJason Evans
4455c5df0d9SMateusz Guzik td = curthread;
4465c5df0d9SMateusz Guzik tid = (uintptr_t)td;
4476b353101SOlivier Certner if (SCHEDULER_STOPPED())
44835370593SAndriy Gapon return (1);
44935370593SAndriy Gapon
450704cb42fSMark Johnston KASSERT(kdb_active != 0 || !TD_IS_IDLETHREAD(td),
4510ed10497SJohn Baldwin ("mtx_trylock() by idle thread %p on mutex %p @ %s:%d",
4520ed10497SJohn Baldwin curthread, m, file, line));
453186abbd7SJohn Baldwin KASSERT(m->mtx_lock != MTX_DESTROYED,
45443a15a22SJohn Baldwin ("mtx_trylock() of destroyed mutex %p @ %s:%d", m, file, line));
455dba45599SJohn Baldwin KASSERT(LOCK_CLASS(&m->lock_object) != &lock_class_mtx_spin,
456aa89d8cdSJohn Baldwin ("mtx_trylock() of spin mutex %s @ %s:%d", m->lock_object.lo_name,
45783cece6fSJohn Baldwin file, line));
4589ed346baSBosko Milekic
4595c5df0d9SMateusz Guzik rval = 1;
4605c5df0d9SMateusz Guzik recursed = false;
4615c5df0d9SMateusz Guzik v = MTX_UNOWNED;
462b247fd39SMateusz Guzik for (;;) {
463b247fd39SMateusz Guzik if (_mtx_obtain_lock_fetch(m, &v, tid))
464b247fd39SMateusz Guzik break;
465b247fd39SMateusz Guzik if (v == MTX_UNOWNED)
466b247fd39SMateusz Guzik continue;
4675c5df0d9SMateusz Guzik if (v == tid &&
4685c5df0d9SMateusz Guzik ((m->lock_object.lo_flags & LO_RECURSABLE) != 0 ||
469ac6b769bSAttilio Rao (opts & MTX_RECURSE) != 0)) {
470eac09796SJohn Baldwin m->mtx_recurse++;
471eac09796SJohn Baldwin atomic_set_ptr(&m->mtx_lock, MTX_RECURSED);
4725c5df0d9SMateusz Guzik recursed = true;
473b247fd39SMateusz Guzik break;
4745c5df0d9SMateusz Guzik }
475b247fd39SMateusz Guzik rval = 0;
476b247fd39SMateusz Guzik break;
4775c5df0d9SMateusz Guzik }
4785c5df0d9SMateusz Guzik
479ac6b769bSAttilio Rao opts &= ~MTX_RECURSE;
4809ed346baSBosko Milekic
481aa89d8cdSJohn Baldwin LOCK_LOG_TRY("LOCK", &m->lock_object, opts, rval, file, line);
482764e4d54SJohn Baldwin if (rval) {
483aa89d8cdSJohn Baldwin WITNESS_LOCK(&m->lock_object, opts | LOP_EXCLUSIVE | LOP_TRYLOCK,
4842d96f0b1SJohn Baldwin file, line);
485ce1c953eSMark Johnston TD_LOCKS_INC(curthread);
4865c5df0d9SMateusz Guzik if (!recursed)
48732cd0147SMark Johnston LOCKSTAT_PROFILE_OBTAIN_LOCK_SUCCESS(adaptive__acquire,
488a5aedd68SStacey Son m, contested, waittime, file, line);
489764e4d54SJohn Baldwin }
4909ed346baSBosko Milekic
49119284646SJohn Baldwin return (rval);
4920cde2e34SJason Evans }
4930cde2e34SJason Evans
494013c0b49SMateusz Guzik int
_mtx_trylock_flags_(volatile uintptr_t * c,int opts,const char * file,int line)495013c0b49SMateusz Guzik _mtx_trylock_flags_(volatile uintptr_t *c, int opts, const char *file, int line)
496013c0b49SMateusz Guzik {
497013c0b49SMateusz Guzik struct mtx *m;
498013c0b49SMateusz Guzik
499013c0b49SMateusz Guzik m = mtxlock2mtx(c);
500013c0b49SMateusz Guzik return (_mtx_trylock_flags_int(m, opts LOCK_FILE_LINE_ARG));
501013c0b49SMateusz Guzik }
502013c0b49SMateusz Guzik
5030cde2e34SJason Evans /*
5047f44c618SAttilio Rao * __mtx_lock_sleep: the tougher part of acquiring an MTX_DEF lock.
5059ed346baSBosko Milekic *
5069ed346baSBosko Milekic * We call this if the lock is either contested (i.e. we need to go to
5079ed346baSBosko Milekic * sleep waiting for it), or if we need to recurse on it.
5080cde2e34SJason Evans */
50909f1319aSMateusz Guzik #if LOCK_DEBUG > 0
5100cde2e34SJason Evans void
__mtx_lock_sleep(volatile uintptr_t * c,uintptr_t v,int opts,const char * file,int line)5112f1ddb89SMateusz Guzik __mtx_lock_sleep(volatile uintptr_t *c, uintptr_t v, int opts, const char *file,
5122f1ddb89SMateusz Guzik int line)
51309f1319aSMateusz Guzik #else
51409f1319aSMateusz Guzik void
5152f1ddb89SMateusz Guzik __mtx_lock_sleep(volatile uintptr_t *c, uintptr_t v)
51609f1319aSMateusz Guzik #endif
51736412d79SJohn Baldwin {
5182f1ddb89SMateusz Guzik struct thread *td;
5197f44c618SAttilio Rao struct mtx *m;
5202502c107SJeff Roberson struct turnstile *ts;
5212f1ddb89SMateusz Guzik uintptr_t tid;
5222ccee9ccSMateusz Guzik struct thread *owner;
5231723a064SJeff Roberson #ifdef LOCK_PROFILING
52470fe8436SKip Macy int contested = 0;
52570fe8436SKip Macy uint64_t waittime = 0;
5261723a064SJeff Roberson #endif
5271ada9041SMateusz Guzik #if defined(ADAPTIVE_MUTEXES) || defined(KDTRACE_HOOKS)
5281ada9041SMateusz Guzik struct lock_delay_arg lda;
5291ada9041SMateusz Guzik #endif
530a5aedd68SStacey Son #ifdef KDTRACE_HOOKS
53161852185SMateusz Guzik u_int sleep_cnt = 0;
532a5aedd68SStacey Son int64_t sleep_time = 0;
533076dd8ebSAndriy Gapon int64_t all_time = 0;
534dfaa7859SMateusz Guzik #endif
535dfaa7859SMateusz Guzik #if defined(KDTRACE_HOOKS) || defined(LOCK_PROFILING)
536f183fb16SMateusz Guzik int doing_lockprof = 0;
537a5aedd68SStacey Son #endif
53809bdec20SMateusz Guzik
5392f1ddb89SMateusz Guzik td = curthread;
5402f1ddb89SMateusz Guzik tid = (uintptr_t)td;
54109bdec20SMateusz Guzik m = mtxlock2mtx(c);
54209bdec20SMateusz Guzik
54309bdec20SMateusz Guzik #ifdef KDTRACE_HOOKS
54409bdec20SMateusz Guzik if (LOCKSTAT_PROFILE_ENABLED(adaptive__acquire)) {
54509bdec20SMateusz Guzik while (v == MTX_UNOWNED) {
54609bdec20SMateusz Guzik if (_mtx_obtain_lock_fetch(m, &v, tid))
54709bdec20SMateusz Guzik goto out_lockstat;
54809bdec20SMateusz Guzik }
54909bdec20SMateusz Guzik doing_lockprof = 1;
55009bdec20SMateusz Guzik all_time -= lockstat_nsecs(&m->lock_object);
55109bdec20SMateusz Guzik }
55209bdec20SMateusz Guzik #endif
55309bdec20SMateusz Guzik #ifdef LOCK_PROFILING
55409bdec20SMateusz Guzik doing_lockprof = 1;
55509bdec20SMateusz Guzik #endif
55609bdec20SMateusz Guzik
5576b353101SOlivier Certner if (SCHEDULER_STOPPED())
55835370593SAndriy Gapon return;
55935370593SAndriy Gapon
560c1aaf63cSMateusz Guzik if (__predict_false(v == MTX_UNOWNED))
561c1aaf63cSMateusz Guzik v = MTX_READ_VALUE(m);
5627f44c618SAttilio Rao
5632f1ddb89SMateusz Guzik if (__predict_false(lv_mtx_owner(v) == td)) {
564ac6b769bSAttilio Rao KASSERT((m->lock_object.lo_flags & LO_RECURSABLE) != 0 ||
565ac6b769bSAttilio Rao (opts & MTX_RECURSE) != 0,
566eac09796SJohn Baldwin ("_mtx_lock_sleep: recursed on non-recursive mutex %s @ %s:%d\n",
567aa89d8cdSJohn Baldwin m->lock_object.lo_name, file, line));
568a24c8eb8SMateusz Guzik #if LOCK_DEBUG > 0
569ac6b769bSAttilio Rao opts &= ~MTX_RECURSE;
570a24c8eb8SMateusz Guzik #endif
57136412d79SJohn Baldwin m->mtx_recurse++;
57208812b39SBosko Milekic atomic_set_ptr(&m->mtx_lock, MTX_RECURSED);
573aa89d8cdSJohn Baldwin if (LOCK_LOG_TEST(&m->lock_object, opts))
5745746a1d8SBosko Milekic CTR1(KTR_LOCK, "_mtx_lock_sleep: %p recursing", m);
57536412d79SJohn Baldwin return;
57636412d79SJohn Baldwin }
577a24c8eb8SMateusz Guzik #if LOCK_DEBUG > 0
578ac6b769bSAttilio Rao opts &= ~MTX_RECURSE;
579a24c8eb8SMateusz Guzik #endif
5809ed346baSBosko Milekic
581f90d57b8SMateusz Guzik #if defined(ADAPTIVE_MUTEXES)
582f90d57b8SMateusz Guzik lock_delay_arg_init(&lda, &mtx_delay);
583f90d57b8SMateusz Guzik #elif defined(KDTRACE_HOOKS)
584f90d57b8SMateusz Guzik lock_delay_arg_init_noadapt(&lda);
585f90d57b8SMateusz Guzik #endif
586f90d57b8SMateusz Guzik
587f5f9340bSFabien Thomas #ifdef HWPMC_HOOKS
588f5f9340bSFabien Thomas PMC_SOFT_CALL( , , lock, failed);
589f5f9340bSFabien Thomas #endif
5906a467cc5SMateusz Guzik lock_profile_obtain_lock_failed(&m->lock_object, false,
59170fe8436SKip Macy &contested, &waittime);
592aa89d8cdSJohn Baldwin if (LOCK_LOG_TEST(&m->lock_object, opts))
59315ec816aSJohn Baldwin CTR4(KTR_LOCK,
59415ec816aSJohn Baldwin "_mtx_lock_sleep: %s contested (lock=%p) at %s:%d",
595aa89d8cdSJohn Baldwin m->lock_object.lo_name, (void *)m->mtx_lock, file, line);
5961bd0eefbSJohn Baldwin
5977530de77SMateusz Guzik THREAD_CONTENDS_ON_LOCK(&m->lock_object);
5987530de77SMateusz Guzik
599fc4f686dSMateusz Guzik for (;;) {
6002604eb9eSMateusz Guzik if (v == MTX_UNOWNED) {
60190836c32SMateusz Guzik if (_mtx_obtain_lock_fetch(m, &v, tid))
602fc4f686dSMateusz Guzik break;
6032604eb9eSMateusz Guzik continue;
6042604eb9eSMateusz Guzik }
605a5aedd68SStacey Son #ifdef KDTRACE_HOOKS
6061ada9041SMateusz Guzik lda.spin_cnt++;
607a5aedd68SStacey Son #endif
60849aead8aSAttilio Rao #ifdef ADAPTIVE_MUTEXES
60949aead8aSAttilio Rao /*
61049aead8aSAttilio Rao * If the owner is running on another CPU, spin until the
61149aead8aSAttilio Rao * owner stops running or the state of the lock changes.
61249aead8aSAttilio Rao */
6132604eb9eSMateusz Guzik owner = lv_mtx_owner(v);
61449aead8aSAttilio Rao if (TD_IS_RUNNING(owner)) {
61549aead8aSAttilio Rao if (LOCK_LOG_TEST(&m->lock_object, 0))
61649aead8aSAttilio Rao CTR3(KTR_LOCK,
61749aead8aSAttilio Rao "%s: spinning on %p held by %p",
61849aead8aSAttilio Rao __func__, m, owner);
6192cba8dd3SJohn Baldwin KTR_STATE1(KTR_SCHED, "thread",
6202cba8dd3SJohn Baldwin sched_tdname((struct thread *)tid),
6212cba8dd3SJohn Baldwin "spinning", "lockname:\"%s\"",
6222cba8dd3SJohn Baldwin m->lock_object.lo_name);
6232604eb9eSMateusz Guzik do {
6241ada9041SMateusz Guzik lock_delay(&lda);
625391df78aSMateusz Guzik v = MTX_READ_VALUE(m);
6262604eb9eSMateusz Guzik owner = lv_mtx_owner(v);
6272604eb9eSMateusz Guzik } while (v != MTX_UNOWNED && TD_IS_RUNNING(owner));
6282cba8dd3SJohn Baldwin KTR_STATE0(KTR_SCHED, "thread",
6292cba8dd3SJohn Baldwin sched_tdname((struct thread *)tid),
6302cba8dd3SJohn Baldwin "running");
63149aead8aSAttilio Rao continue;
63249aead8aSAttilio Rao }
63349aead8aSAttilio Rao #endif
63449aead8aSAttilio Rao
6352502c107SJeff Roberson ts = turnstile_trywait(&m->lock_object);
6362604eb9eSMateusz Guzik v = MTX_READ_VALUE(m);
637310f24d7SMateusz Guzik retry_turnstile:
6385fa8dd90SJohn Baldwin
63936412d79SJohn Baldwin /*
6409ed346baSBosko Milekic * Check if the lock has been released while spinning for
641961a7b24SJohn Baldwin * the turnstile chain lock.
64236412d79SJohn Baldwin */
6435fa8dd90SJohn Baldwin if (v == MTX_UNOWNED) {
6442502c107SJeff Roberson turnstile_cancel(ts);
64536412d79SJohn Baldwin continue;
64636412d79SJohn Baldwin }
6479ed346baSBosko Milekic
64849aead8aSAttilio Rao #ifdef ADAPTIVE_MUTEXES
64949aead8aSAttilio Rao /*
650fa29f023SJohn Baldwin * The current lock owner might have started executing
651fa29f023SJohn Baldwin * on another CPU (or the lock could have changed
652fa29f023SJohn Baldwin * owners) while we were waiting on the turnstile
653fa29f023SJohn Baldwin * chain lock. If so, drop the turnstile lock and try
654fa29f023SJohn Baldwin * again.
65549aead8aSAttilio Rao */
6562604eb9eSMateusz Guzik owner = lv_mtx_owner(v);
65749aead8aSAttilio Rao if (TD_IS_RUNNING(owner)) {
65849aead8aSAttilio Rao turnstile_cancel(ts);
65949aead8aSAttilio Rao continue;
66049aead8aSAttilio Rao }
66149aead8aSAttilio Rao #endif
66249aead8aSAttilio Rao
66336412d79SJohn Baldwin /*
6649ed346baSBosko Milekic * If the mutex isn't already contested and a failure occurs
6659ed346baSBosko Milekic * setting the contested bit, the mutex was either released
6669ed346baSBosko Milekic * or the state of the MTX_RECURSED bit changed.
66736412d79SJohn Baldwin */
66836412d79SJohn Baldwin if ((v & MTX_CONTESTED) == 0 &&
669310f24d7SMateusz Guzik !atomic_fcmpset_ptr(&m->mtx_lock, &v, v | MTX_CONTESTED)) {
670310f24d7SMateusz Guzik goto retry_turnstile;
67136412d79SJohn Baldwin }
67236412d79SJohn Baldwin
6739ed346baSBosko Milekic /*
6747feefcd6SJohn Baldwin * We definitely must sleep for this lock.
6759ed346baSBosko Milekic */
67636412d79SJohn Baldwin mtx_assert(m, MA_NOTOWNED);
67736412d79SJohn Baldwin
6789ed346baSBosko Milekic /*
679961a7b24SJohn Baldwin * Block on the turnstile.
6809ed346baSBosko Milekic */
681a5aedd68SStacey Son #ifdef KDTRACE_HOOKS
682e2b25737SMark Johnston sleep_time -= lockstat_nsecs(&m->lock_object);
683a5aedd68SStacey Son #endif
684284194f1SMateusz Guzik #ifndef ADAPTIVE_MUTEXES
685284194f1SMateusz Guzik owner = mtx_owner(m);
686284194f1SMateusz Guzik #endif
6878448e020SMateusz Guzik MPASS(owner == mtx_owner(m));
6888448e020SMateusz Guzik turnstile_wait(ts, owner, TS_EXCLUSIVE_QUEUE);
689a5aedd68SStacey Son #ifdef KDTRACE_HOOKS
690e2b25737SMark Johnston sleep_time += lockstat_nsecs(&m->lock_object);
691a5aedd68SStacey Son sleep_cnt++;
692a5aedd68SStacey Son #endif
6932604eb9eSMateusz Guzik v = MTX_READ_VALUE(m);
69436412d79SJohn Baldwin }
6957530de77SMateusz Guzik THREAD_CONTENTION_DONE(&m->lock_object);
696dfaa7859SMateusz Guzik #if defined(KDTRACE_HOOKS) || defined(LOCK_PROFILING)
697dfaa7859SMateusz Guzik if (__predict_true(!doing_lockprof))
6987640beb9SMateusz Guzik return;
699dfaa7859SMateusz Guzik #endif
700dfaa7859SMateusz Guzik #ifdef KDTRACE_HOOKS
7017640beb9SMateusz Guzik all_time += lockstat_nsecs(&m->lock_object);
702a5aedd68SStacey Son if (sleep_time)
70332cd0147SMark Johnston LOCKSTAT_RECORD1(adaptive__block, m, sleep_time);
704a5aedd68SStacey Son
705a5aedd68SStacey Son /*
706a5aedd68SStacey Son * Only record the loops spinning and not sleeping.
707a5aedd68SStacey Son */
7081ada9041SMateusz Guzik if (lda.spin_cnt > sleep_cnt)
70932cd0147SMark Johnston LOCKSTAT_RECORD1(adaptive__spin, m, all_time - sleep_time);
71009bdec20SMateusz Guzik out_lockstat:
711a5aedd68SStacey Son #endif
71209bdec20SMateusz Guzik LOCKSTAT_PROFILE_OBTAIN_LOCK_SUCCESS(adaptive__acquire, m, contested,
71309bdec20SMateusz Guzik waittime, file, line);
7149ed346baSBosko Milekic }
7159ed346baSBosko Milekic
716b95b98b0SKonstantin Belousov #ifdef SMP
7179ed346baSBosko Milekic /*
7187f44c618SAttilio Rao * _mtx_lock_spin_cookie: the tougher part of acquiring an MTX_SPIN lock.
7199ed346baSBosko Milekic *
7209ed346baSBosko Milekic * This is only called if we need to actually spin for the lock. Recursion
7219ed346baSBosko Milekic * is handled inline.
7229ed346baSBosko Milekic */
7230d74fe26SMateusz Guzik #if LOCK_DEBUG > 0
7249ed346baSBosko Milekic void
_mtx_lock_spin_cookie(volatile uintptr_t * c,uintptr_t v,int opts,const char * file,int line)7250d74fe26SMateusz Guzik _mtx_lock_spin_cookie(volatile uintptr_t *c, uintptr_t v, int opts,
7260d74fe26SMateusz Guzik const char *file, int line)
7270d74fe26SMateusz Guzik #else
7280d74fe26SMateusz Guzik void
7290d74fe26SMateusz Guzik _mtx_lock_spin_cookie(volatile uintptr_t *c, uintptr_t v)
7300d74fe26SMateusz Guzik #endif
73136412d79SJohn Baldwin {
7327f44c618SAttilio Rao struct mtx *m;
733a0d45f0fSMateusz Guzik struct lock_delay_arg lda;
7340d74fe26SMateusz Guzik uintptr_t tid;
7351723a064SJeff Roberson #ifdef LOCK_PROFILING
7361723a064SJeff Roberson int contested = 0;
73770fe8436SKip Macy uint64_t waittime = 0;
7381723a064SJeff Roberson #endif
739076dd8ebSAndriy Gapon #ifdef KDTRACE_HOOKS
740076dd8ebSAndriy Gapon int64_t spin_time = 0;
741076dd8ebSAndriy Gapon #endif
742dfaa7859SMateusz Guzik #if defined(KDTRACE_HOOKS) || defined(LOCK_PROFILING)
743f183fb16SMateusz Guzik int doing_lockprof = 0;
744dfaa7859SMateusz Guzik #endif
74536412d79SJohn Baldwin
7460d74fe26SMateusz Guzik tid = (uintptr_t)curthread;
7477f44c618SAttilio Rao m = mtxlock2mtx(c);
7487f44c618SAttilio Rao
74909bdec20SMateusz Guzik #ifdef KDTRACE_HOOKS
75009bdec20SMateusz Guzik if (LOCKSTAT_PROFILE_ENABLED(adaptive__acquire)) {
75109bdec20SMateusz Guzik while (v == MTX_UNOWNED) {
75209bdec20SMateusz Guzik if (_mtx_obtain_lock_fetch(m, &v, tid))
75309bdec20SMateusz Guzik goto out_lockstat;
75409bdec20SMateusz Guzik }
75509bdec20SMateusz Guzik doing_lockprof = 1;
75609bdec20SMateusz Guzik spin_time -= lockstat_nsecs(&m->lock_object);
75709bdec20SMateusz Guzik }
75809bdec20SMateusz Guzik #endif
75909bdec20SMateusz Guzik #ifdef LOCK_PROFILING
76009bdec20SMateusz Guzik doing_lockprof = 1;
76109bdec20SMateusz Guzik #endif
76209bdec20SMateusz Guzik
76313d2ef0fSMateusz Guzik if (__predict_false(v == MTX_UNOWNED))
76413d2ef0fSMateusz Guzik v = MTX_READ_VALUE(m);
76513d2ef0fSMateusz Guzik
76613d2ef0fSMateusz Guzik if (__predict_false(v == tid)) {
76713d2ef0fSMateusz Guzik m->mtx_recurse++;
76813d2ef0fSMateusz Guzik return;
76913d2ef0fSMateusz Guzik }
77013d2ef0fSMateusz Guzik
7710d74fe26SMateusz Guzik if (SCHEDULER_STOPPED())
7720d74fe26SMateusz Guzik return;
7730d74fe26SMateusz Guzik
774aa89d8cdSJohn Baldwin if (LOCK_LOG_TEST(&m->lock_object, opts))
7755746a1d8SBosko Milekic CTR1(KTR_LOCK, "_mtx_lock_spin: %p spinning", m);
7762cba8dd3SJohn Baldwin KTR_STATE1(KTR_SCHED, "thread", sched_tdname((struct thread *)tid),
7772cba8dd3SJohn Baldwin "spinning", "lockname:\"%s\"", m->lock_object.lo_name);
7789ed346baSBosko Milekic
779f90d57b8SMateusz Guzik lock_delay_arg_init(&lda, &mtx_spin_delay);
780f90d57b8SMateusz Guzik
781f5f9340bSFabien Thomas #ifdef HWPMC_HOOKS
782f5f9340bSFabien Thomas PMC_SOFT_CALL( , , lock, failed);
783f5f9340bSFabien Thomas #endif
7846a467cc5SMateusz Guzik lock_profile_obtain_lock_failed(&m->lock_object, true, &contested, &waittime);
78509bdec20SMateusz Guzik
786fc4f686dSMateusz Guzik for (;;) {
7872604eb9eSMateusz Guzik if (v == MTX_UNOWNED) {
78890836c32SMateusz Guzik if (_mtx_obtain_lock_fetch(m, &v, tid))
789fc4f686dSMateusz Guzik break;
79036412d79SJohn Baldwin continue;
791703fc290SJohn Baldwin }
7922604eb9eSMateusz Guzik /* Give interrupts a chance while we spin. */
7932604eb9eSMateusz Guzik spinlock_exit();
7942604eb9eSMateusz Guzik do {
79515140a8aSMateusz Guzik if (__predict_true(lda.spin_cnt < 10000000)) {
7962604eb9eSMateusz Guzik lock_delay(&lda);
7972604eb9eSMateusz Guzik } else {
79815140a8aSMateusz Guzik _mtx_lock_indefinite_check(m, &lda);
79936412d79SJohn Baldwin }
8002604eb9eSMateusz Guzik v = MTX_READ_VALUE(m);
8012604eb9eSMateusz Guzik } while (v != MTX_UNOWNED);
802c6a37e84SJohn Baldwin spinlock_enter();
80336412d79SJohn Baldwin }
80436412d79SJohn Baldwin
805aa89d8cdSJohn Baldwin if (LOCK_LOG_TEST(&m->lock_object, opts))
8069ed346baSBosko Milekic CTR1(KTR_LOCK, "_mtx_lock_spin: %p spin done", m);
8072cba8dd3SJohn Baldwin KTR_STATE0(KTR_SCHED, "thread", sched_tdname((struct thread *)tid),
8082cba8dd3SJohn Baldwin "running");
8099ed346baSBosko Milekic
810dfaa7859SMateusz Guzik #if defined(KDTRACE_HOOKS) || defined(LOCK_PROFILING)
811dfaa7859SMateusz Guzik if (__predict_true(!doing_lockprof))
812dfaa7859SMateusz Guzik return;
813dfaa7859SMateusz Guzik #endif
814c6d48c87SMark Johnston #ifdef KDTRACE_HOOKS
815dfaa7859SMateusz Guzik spin_time += lockstat_nsecs(&m->lock_object);
81609bdec20SMateusz Guzik if (lda.spin_cnt != 0)
81709bdec20SMateusz Guzik LOCKSTAT_RECORD1(spin__spin, m, spin_time);
81809bdec20SMateusz Guzik out_lockstat:
819dfaa7859SMateusz Guzik #endif
8206a467cc5SMateusz Guzik LOCKSTAT_PROFILE_OBTAIN_SPIN_LOCK_SUCCESS(spin__acquire, m,
82132cd0147SMark Johnston contested, waittime, file, line);
82236412d79SJohn Baldwin }
82333fb8a38SJohn Baldwin #endif /* SMP */
82436412d79SJohn Baldwin
825be49509eSMateusz Guzik #ifdef INVARIANTS
826be49509eSMateusz Guzik static void
thread_lock_validate(struct mtx * m,int opts,const char * file,int line)827be49509eSMateusz Guzik thread_lock_validate(struct mtx *m, int opts, const char *file, int line)
828be49509eSMateusz Guzik {
829be49509eSMateusz Guzik
830be49509eSMateusz Guzik KASSERT(m->mtx_lock != MTX_DESTROYED,
83143a15a22SJohn Baldwin ("thread_lock() of destroyed mutex %p @ %s:%d", m, file, line));
832dba45599SJohn Baldwin KASSERT(LOCK_CLASS(&m->lock_object) != &lock_class_mtx_sleep,
833be49509eSMateusz Guzik ("thread_lock() of sleep mutex %s @ %s:%d",
834be49509eSMateusz Guzik m->lock_object.lo_name, file, line));
8353fd19ce7SMateusz Guzik KASSERT((m->lock_object.lo_flags & LO_RECURSABLE) == 0,
8363fd19ce7SMateusz Guzik ("thread_lock: got a recursive mutex %s @ %s:%d\n",
837be49509eSMateusz Guzik m->lock_object.lo_name, file, line));
838be49509eSMateusz Guzik WITNESS_CHECKORDER(&m->lock_object,
839be49509eSMateusz Guzik opts | LOP_NEWORDER | LOP_EXCLUSIVE, file, line, NULL);
840be49509eSMateusz Guzik }
841be49509eSMateusz Guzik #else
842be49509eSMateusz Guzik #define thread_lock_validate(m, opts, file, line) do { } while (0)
843be49509eSMateusz Guzik #endif
844be49509eSMateusz Guzik
845be49509eSMateusz Guzik #ifndef LOCK_PROFILING
846be49509eSMateusz Guzik #if LOCK_DEBUG > 0
847be49509eSMateusz Guzik void
_thread_lock(struct thread * td,int opts,const char * file,int line)848be49509eSMateusz Guzik _thread_lock(struct thread *td, int opts, const char *file, int line)
849be49509eSMateusz Guzik #else
850be49509eSMateusz Guzik void
851be49509eSMateusz Guzik _thread_lock(struct thread *td)
852be49509eSMateusz Guzik #endif
853be49509eSMateusz Guzik {
854be49509eSMateusz Guzik struct mtx *m;
8553fd19ce7SMateusz Guzik uintptr_t tid;
856be49509eSMateusz Guzik
857be49509eSMateusz Guzik tid = (uintptr_t)curthread;
858be49509eSMateusz Guzik
8592c50bafeSMateusz Guzik if (__predict_false(LOCKSTAT_PROFILE_ENABLED(spin__acquire)))
8602c50bafeSMateusz Guzik goto slowpath_noirq;
861be49509eSMateusz Guzik spinlock_enter();
862be49509eSMateusz Guzik m = td->td_lock;
863be49509eSMateusz Guzik thread_lock_validate(m, 0, file, line);
8643fd19ce7SMateusz Guzik if (__predict_false(m == &blocked_lock))
865be49509eSMateusz Guzik goto slowpath_unlocked;
8663fd19ce7SMateusz Guzik if (__predict_false(!_mtx_obtain_lock(m, tid)))
867be49509eSMateusz Guzik goto slowpath_unlocked;
868be49509eSMateusz Guzik if (__predict_true(m == td->td_lock)) {
869be49509eSMateusz Guzik WITNESS_LOCK(&m->lock_object, LOP_EXCLUSIVE, file, line);
870be49509eSMateusz Guzik return;
871be49509eSMateusz Guzik }
872be49509eSMateusz Guzik _mtx_release_lock_quick(m);
873be49509eSMateusz Guzik slowpath_unlocked:
874be49509eSMateusz Guzik spinlock_exit();
8752c50bafeSMateusz Guzik slowpath_noirq:
8762c50bafeSMateusz Guzik #if LOCK_DEBUG > 0
8772c50bafeSMateusz Guzik thread_lock_flags_(td, opts, file, line);
8782c50bafeSMateusz Guzik #else
879be49509eSMateusz Guzik thread_lock_flags_(td, 0, 0, 0);
8802c50bafeSMateusz Guzik #endif
881be49509eSMateusz Guzik }
882be49509eSMateusz Guzik #endif
883be49509eSMateusz Guzik
8842502c107SJeff Roberson void
thread_lock_flags_(struct thread * td,int opts,const char * file,int line)885ccdf2333SAttilio Rao thread_lock_flags_(struct thread *td, int opts, const char *file, int line)
8862502c107SJeff Roberson {
8872502c107SJeff Roberson struct mtx *m;
8885e5ad162SMateusz Guzik uintptr_t tid, v;
889a0d45f0fSMateusz Guzik struct lock_delay_arg lda;
8901723a064SJeff Roberson #ifdef LOCK_PROFILING
8911723a064SJeff Roberson int contested = 0;
8921723a064SJeff Roberson uint64_t waittime = 0;
8931723a064SJeff Roberson #endif
894a5aedd68SStacey Son #ifdef KDTRACE_HOOKS
895076dd8ebSAndriy Gapon int64_t spin_time = 0;
896a5aedd68SStacey Son #endif
897dfaa7859SMateusz Guzik #if defined(KDTRACE_HOOKS) || defined(LOCK_PROFILING)
898dfaa7859SMateusz Guzik int doing_lockprof = 1;
899dfaa7859SMateusz Guzik #endif
9002502c107SJeff Roberson
9012502c107SJeff Roberson tid = (uintptr_t)curthread;
90235370593SAndriy Gapon
903f61d6c5aSMark Johnston if (SCHEDULER_STOPPED()) {
904f61d6c5aSMark Johnston /*
905f61d6c5aSMark Johnston * Ensure that spinlock sections are balanced even when the
906f61d6c5aSMark Johnston * scheduler is stopped, since we may otherwise inadvertently
907f61d6c5aSMark Johnston * re-enable interrupts while dumping core.
908f61d6c5aSMark Johnston */
909f61d6c5aSMark Johnston spinlock_enter();
91035370593SAndriy Gapon return;
911f61d6c5aSMark Johnston }
91235370593SAndriy Gapon
913a0d45f0fSMateusz Guzik lock_delay_arg_init(&lda, &mtx_spin_delay);
914a0d45f0fSMateusz Guzik
9151f4d28c7SMateusz Guzik #ifdef HWPMC_HOOKS
9161f4d28c7SMateusz Guzik PMC_SOFT_CALL( , , lock, failed);
9171f4d28c7SMateusz Guzik #endif
9181f4d28c7SMateusz Guzik
919dfaa7859SMateusz Guzik #ifdef LOCK_PROFILING
920dfaa7859SMateusz Guzik doing_lockprof = 1;
921df1c30f6SWarner Losh #elif defined(KDTRACE_HOOKS)
922dfaa7859SMateusz Guzik doing_lockprof = lockstat_enabled;
92342862413SEric van Gyzen #endif
92442862413SEric van Gyzen #ifdef KDTRACE_HOOKS
925dfaa7859SMateusz Guzik if (__predict_false(doing_lockprof))
926e2b25737SMark Johnston spin_time -= lockstat_nsecs(&td->td_lock->lock_object);
927076dd8ebSAndriy Gapon #endif
9289f4e008dSMateusz Guzik spinlock_enter();
9299f4e008dSMateusz Guzik
9302502c107SJeff Roberson for (;;) {
9312502c107SJeff Roberson retry:
932710eacdcSJeff Roberson m = td->td_lock;
933be49509eSMateusz Guzik thread_lock_validate(m, opts, file, line);
9341f4d28c7SMateusz Guzik v = MTX_READ_VALUE(m);
935fc4f686dSMateusz Guzik for (;;) {
9361f4d28c7SMateusz Guzik if (v == MTX_UNOWNED) {
93790836c32SMateusz Guzik if (_mtx_obtain_lock_fetch(m, &v, tid))
938fc4f686dSMateusz Guzik break;
9395e5ad162SMateusz Guzik continue;
9401f4d28c7SMateusz Guzik }
9413fd19ce7SMateusz Guzik MPASS(v != tid);
9426a467cc5SMateusz Guzik lock_profile_obtain_lock_failed(&m->lock_object, true,
943eea4f254SJeff Roberson &contested, &waittime);
9442502c107SJeff Roberson /* Give interrupts a chance while we spin. */
9452502c107SJeff Roberson spinlock_exit();
9465e5ad162SMateusz Guzik do {
94715140a8aSMateusz Guzik if (__predict_true(lda.spin_cnt < 10000000)) {
948a0d45f0fSMateusz Guzik lock_delay(&lda);
949a0d45f0fSMateusz Guzik } else {
95015140a8aSMateusz Guzik _mtx_lock_indefinite_check(m, &lda);
951a0d45f0fSMateusz Guzik }
9529f4e008dSMateusz Guzik if (m != td->td_lock) {
9539f4e008dSMateusz Guzik spinlock_enter();
9542502c107SJeff Roberson goto retry;
9559f4e008dSMateusz Guzik }
9565e5ad162SMateusz Guzik v = MTX_READ_VALUE(m);
9575e5ad162SMateusz Guzik } while (v != MTX_UNOWNED);
9582502c107SJeff Roberson spinlock_enter();
9592502c107SJeff Roberson }
9602502c107SJeff Roberson if (m == td->td_lock)
9612502c107SJeff Roberson break;
9629f4e008dSMateusz Guzik _mtx_release_lock_quick(m);
9632502c107SJeff Roberson }
964dfaa7859SMateusz Guzik LOCK_LOG_LOCK("LOCK", &m->lock_object, opts, m->mtx_recurse, file,
965dfaa7859SMateusz Guzik line);
966dfaa7859SMateusz Guzik WITNESS_LOCK(&m->lock_object, opts | LOP_EXCLUSIVE, file, line);
967dfaa7859SMateusz Guzik
968dfaa7859SMateusz Guzik #if defined(KDTRACE_HOOKS) || defined(LOCK_PROFILING)
969dfaa7859SMateusz Guzik if (__predict_true(!doing_lockprof))
970dfaa7859SMateusz Guzik return;
971dfaa7859SMateusz Guzik #endif
972076dd8ebSAndriy Gapon #ifdef KDTRACE_HOOKS
973e2b25737SMark Johnston spin_time += lockstat_nsecs(&m->lock_object);
974076dd8ebSAndriy Gapon #endif
9756a467cc5SMateusz Guzik LOCKSTAT_PROFILE_OBTAIN_SPIN_LOCK_SUCCESS(spin__acquire, m, contested,
9763fd19ce7SMateusz Guzik waittime, file, line);
9775002e195SMark Johnston #ifdef KDTRACE_HOOKS
978d0f68f91SMark Johnston if (lda.spin_cnt != 0)
97932cd0147SMark Johnston LOCKSTAT_RECORD1(thread__spin, m, spin_time);
9805002e195SMark Johnston #endif
9812502c107SJeff Roberson }
9822502c107SJeff Roberson
9832502c107SJeff Roberson struct mtx *
thread_lock_block(struct thread * td)9842502c107SJeff Roberson thread_lock_block(struct thread *td)
9852502c107SJeff Roberson {
9862502c107SJeff Roberson struct mtx *lock;
9872502c107SJeff Roberson
988710eacdcSJeff Roberson lock = td->td_lock;
98961a74c5cSJeff Roberson mtx_assert(lock, MA_OWNED);
9902502c107SJeff Roberson td->td_lock = &blocked_lock;
9912502c107SJeff Roberson
9922502c107SJeff Roberson return (lock);
9932502c107SJeff Roberson }
9942502c107SJeff Roberson
9952502c107SJeff Roberson void
thread_lock_unblock(struct thread * td,struct mtx * new)9962502c107SJeff Roberson thread_lock_unblock(struct thread *td, struct mtx *new)
9972502c107SJeff Roberson {
99861a74c5cSJeff Roberson
9992502c107SJeff Roberson mtx_assert(new, MA_OWNED);
100061a74c5cSJeff Roberson KASSERT(td->td_lock == &blocked_lock,
100161a74c5cSJeff Roberson ("thread %p lock %p not blocked_lock %p",
100261a74c5cSJeff Roberson td, td->td_lock, &blocked_lock));
100365d32cd8SMatt Jacob atomic_store_rel_ptr((volatile void *)&td->td_lock, (uintptr_t)new);
10042502c107SJeff Roberson }
10052502c107SJeff Roberson
10062502c107SJeff Roberson void
thread_lock_block_wait(struct thread * td)100761a74c5cSJeff Roberson thread_lock_block_wait(struct thread *td)
100861a74c5cSJeff Roberson {
100961a74c5cSJeff Roberson
101061a74c5cSJeff Roberson while (td->td_lock == &blocked_lock)
101161a74c5cSJeff Roberson cpu_spinwait();
101261a74c5cSJeff Roberson
101361a74c5cSJeff Roberson /* Acquire fence to be certain that all thread state is visible. */
101461a74c5cSJeff Roberson atomic_thread_fence_acq();
101561a74c5cSJeff Roberson }
101661a74c5cSJeff Roberson
101761a74c5cSJeff Roberson void
thread_lock_set(struct thread * td,struct mtx * new)10182502c107SJeff Roberson thread_lock_set(struct thread *td, struct mtx *new)
10192502c107SJeff Roberson {
10202502c107SJeff Roberson struct mtx *lock;
10212502c107SJeff Roberson
10222502c107SJeff Roberson mtx_assert(new, MA_OWNED);
1023710eacdcSJeff Roberson lock = td->td_lock;
102461a74c5cSJeff Roberson mtx_assert(lock, MA_OWNED);
10252502c107SJeff Roberson td->td_lock = new;
10262502c107SJeff Roberson mtx_unlock_spin(lock);
10272502c107SJeff Roberson }
10282502c107SJeff Roberson
10299ed346baSBosko Milekic /*
10307f44c618SAttilio Rao * __mtx_unlock_sleep: the tougher part of releasing an MTX_DEF lock.
10319ed346baSBosko Milekic *
10323b3cf014SMateusz Guzik * We are only called here if the lock is recursed, contested (i.e. we
10333b3cf014SMateusz Guzik * need to wake up a blocked thread) or lockstat probe is active.
10349ed346baSBosko Milekic */
103509f1319aSMateusz Guzik #if LOCK_DEBUG > 0
103636412d79SJohn Baldwin void
__mtx_unlock_sleep(volatile uintptr_t * c,uintptr_t v,int opts,const char * file,int line)1037b584eb2eSMateusz Guzik __mtx_unlock_sleep(volatile uintptr_t *c, uintptr_t v, int opts,
1038b584eb2eSMateusz Guzik const char *file, int line)
103909f1319aSMateusz Guzik #else
104009f1319aSMateusz Guzik void
1041b584eb2eSMateusz Guzik __mtx_unlock_sleep(volatile uintptr_t *c, uintptr_t v)
104209f1319aSMateusz Guzik #endif
104336412d79SJohn Baldwin {
10447f44c618SAttilio Rao struct mtx *m;
1045961a7b24SJohn Baldwin struct turnstile *ts;
1046b584eb2eSMateusz Guzik uintptr_t tid;
10479ed346baSBosko Milekic
104835370593SAndriy Gapon if (SCHEDULER_STOPPED())
104935370593SAndriy Gapon return;
105035370593SAndriy Gapon
10513b3cf014SMateusz Guzik tid = (uintptr_t)curthread;
10527f44c618SAttilio Rao m = mtxlock2mtx(c);
1053b584eb2eSMateusz Guzik
1054b584eb2eSMateusz Guzik if (__predict_false(v == tid))
10553b3cf014SMateusz Guzik v = MTX_READ_VALUE(m);
105690836c32SMateusz Guzik
1057b584eb2eSMateusz Guzik if (__predict_false(v & MTX_RECURSED)) {
105836412d79SJohn Baldwin if (--(m->mtx_recurse) == 0)
105908812b39SBosko Milekic atomic_clear_ptr(&m->mtx_lock, MTX_RECURSED);
1060aa89d8cdSJohn Baldwin if (LOCK_LOG_TEST(&m->lock_object, opts))
10619ed346baSBosko Milekic CTR1(KTR_LOCK, "_mtx_unlock_sleep: %p unrecurse", m);
106236412d79SJohn Baldwin return;
106336412d79SJohn Baldwin }
10649ed346baSBosko Milekic
10653b3cf014SMateusz Guzik LOCKSTAT_PROFILE_RELEASE_LOCK(adaptive__release, m);
10663b3cf014SMateusz Guzik if (v == tid && _mtx_release_lock(m, tid))
10673b3cf014SMateusz Guzik return;
10683b3cf014SMateusz Guzik
10692502c107SJeff Roberson /*
10702502c107SJeff Roberson * We have to lock the chain before the turnstile so this turnstile
10712502c107SJeff Roberson * can be removed from the hash list if it is empty.
10722502c107SJeff Roberson */
10732502c107SJeff Roberson turnstile_chain_lock(&m->lock_object);
10748448e020SMateusz Guzik _mtx_release_lock_quick(m);
1075aa89d8cdSJohn Baldwin ts = turnstile_lookup(&m->lock_object);
1076*83d13d83SGleb Smirnoff MPASS(ts != NULL);
1077aa89d8cdSJohn Baldwin if (LOCK_LOG_TEST(&m->lock_object, opts))
10789ed346baSBosko Milekic CTR1(KTR_LOCK, "_mtx_unlock_sleep: %p contested", m);
10797aa4f685SJohn Baldwin turnstile_broadcast(ts, TS_EXCLUSIVE_QUEUE);
1080bf9c6c31SJohn Baldwin
10812502c107SJeff Roberson /*
10822502c107SJeff Roberson * This turnstile is now no longer associated with the mutex. We can
10832502c107SJeff Roberson * unlock the chain lock so a new turnstile may take it's place.
10842502c107SJeff Roberson */
1085d0a22279SMateusz Guzik turnstile_unpend(ts);
10862502c107SJeff Roberson turnstile_chain_unlock(&m->lock_object);
10879ed346baSBosko Milekic }
10889ed346baSBosko Milekic
10899ed346baSBosko Milekic /*
10909ed346baSBosko Milekic * All the unlocking of MTX_SPIN locks is done inline.
1091961135eaSJohn Baldwin * See the __mtx_unlock_spin() macro for the details.
10929ed346baSBosko Milekic */
10939ed346baSBosko Milekic
10949ed346baSBosko Milekic /*
109515ec816aSJohn Baldwin * The backing function for the INVARIANTS-enabled mtx_assert()
10969ed346baSBosko Milekic */
10971103f3b0SJohn Baldwin #ifdef INVARIANT_SUPPORT
10980cde2e34SJason Evans void
__mtx_assert(const volatile uintptr_t * c,int what,const char * file,int line)10997f44c618SAttilio Rao __mtx_assert(const volatile uintptr_t *c, int what, const char *file, int line)
11000cde2e34SJason Evans {
11017f44c618SAttilio Rao const struct mtx *m;
11025cb0fbe4SJohn Baldwin
1103879e0604SMateusz Guzik if (KERNEL_PANICKED() || dumping || SCHEDULER_STOPPED())
11045cb0fbe4SJohn Baldwin return;
11057f44c618SAttilio Rao
11067f44c618SAttilio Rao m = mtxlock2mtx(c);
11077f44c618SAttilio Rao
1108a10f4966SJake Burkholder switch (what) {
11090cde2e34SJason Evans case MA_OWNED:
11100cde2e34SJason Evans case MA_OWNED | MA_RECURSED:
11110cde2e34SJason Evans case MA_OWNED | MA_NOTRECURSED:
1112a10f4966SJake Burkholder if (!mtx_owned(m))
11130cde2e34SJason Evans panic("mutex %s not owned at %s:%d",
1114aa89d8cdSJohn Baldwin m->lock_object.lo_name, file, line);
1115a10f4966SJake Burkholder if (mtx_recursed(m)) {
1116a10f4966SJake Burkholder if ((what & MA_NOTRECURSED) != 0)
11170cde2e34SJason Evans panic("mutex %s recursed at %s:%d",
1118aa89d8cdSJohn Baldwin m->lock_object.lo_name, file, line);
1119a10f4966SJake Burkholder } else if ((what & MA_RECURSED) != 0) {
11200cde2e34SJason Evans panic("mutex %s unrecursed at %s:%d",
1121aa89d8cdSJohn Baldwin m->lock_object.lo_name, file, line);
11220cde2e34SJason Evans }
11230cde2e34SJason Evans break;
11240cde2e34SJason Evans case MA_NOTOWNED:
1125a10f4966SJake Burkholder if (mtx_owned(m))
11260cde2e34SJason Evans panic("mutex %s owned at %s:%d",
1127aa89d8cdSJohn Baldwin m->lock_object.lo_name, file, line);
11280cde2e34SJason Evans break;
11290cde2e34SJason Evans default:
113056771ca7SJason Evans panic("unknown mtx_assert at %s:%d", file, line);
11310cde2e34SJason Evans }
11320cde2e34SJason Evans }
11330cde2e34SJason Evans #endif
11340cde2e34SJason Evans
11359ed346baSBosko Milekic /*
1136c27b5699SAndrew R. Reiter * General init routine used by the MTX_SYSINIT() macro.
1137c27b5699SAndrew R. Reiter */
1138c27b5699SAndrew R. Reiter void
mtx_sysinit(void * arg)1139c27b5699SAndrew R. Reiter mtx_sysinit(void *arg)
1140c27b5699SAndrew R. Reiter {
1141c27b5699SAndrew R. Reiter struct mtx_args *margs = arg;
1142c27b5699SAndrew R. Reiter
11437f44c618SAttilio Rao mtx_init((struct mtx *)margs->ma_mtx, margs->ma_desc, NULL,
11447f44c618SAttilio Rao margs->ma_opts);
1145c27b5699SAndrew R. Reiter }
1146c27b5699SAndrew R. Reiter
1147c27b5699SAndrew R. Reiter /*
11489ed346baSBosko Milekic * Mutex initialization routine; initialize lock `m' of type contained in
11490c88508aSJohn Baldwin * `opts' with options contained in `opts' and name `name.' The optional
11500c88508aSJohn Baldwin * lock type `type' is used as a general lock category name for use with
11510c88508aSJohn Baldwin * witness.
11529ed346baSBosko Milekic */
115336412d79SJohn Baldwin void
_mtx_init(volatile uintptr_t * c,const char * name,const char * type,int opts)11547f44c618SAttilio Rao _mtx_init(volatile uintptr_t *c, const char *name, const char *type, int opts)
115536412d79SJohn Baldwin {
11567f44c618SAttilio Rao struct mtx *m;
115783a81bcbSJohn Baldwin struct lock_class *class;
115883a81bcbSJohn Baldwin int flags;
11599ed346baSBosko Milekic
11607f44c618SAttilio Rao m = mtxlock2mtx(c);
11617f44c618SAttilio Rao
116219284646SJohn Baldwin MPASS((opts & ~(MTX_SPIN | MTX_QUIET | MTX_RECURSE |
1163fd07ddcfSDmitry Chagin MTX_NOWITNESS | MTX_DUPOK | MTX_NOPROFILE | MTX_NEW)) == 0);
1164353998acSAttilio Rao ASSERT_ATOMIC_LOAD_PTR(m->mtx_lock,
1165353998acSAttilio Rao ("%s: mtx_lock not aligned for %s: %p", __func__, name,
1166353998acSAttilio Rao &m->mtx_lock));
11679ed346baSBosko Milekic
116883a81bcbSJohn Baldwin /* Determine lock class and lock flags. */
116919284646SJohn Baldwin if (opts & MTX_SPIN)
117083a81bcbSJohn Baldwin class = &lock_class_mtx_spin;
117119284646SJohn Baldwin else
117283a81bcbSJohn Baldwin class = &lock_class_mtx_sleep;
117383a81bcbSJohn Baldwin flags = 0;
117419284646SJohn Baldwin if (opts & MTX_QUIET)
117583a81bcbSJohn Baldwin flags |= LO_QUIET;
117619284646SJohn Baldwin if (opts & MTX_RECURSE)
117783a81bcbSJohn Baldwin flags |= LO_RECURSABLE;
117819284646SJohn Baldwin if ((opts & MTX_NOWITNESS) == 0)
117983a81bcbSJohn Baldwin flags |= LO_WITNESS;
1180f22a4b62SJeff Roberson if (opts & MTX_DUPOK)
118183a81bcbSJohn Baldwin flags |= LO_DUPOK;
11827c0435b9SKip Macy if (opts & MTX_NOPROFILE)
11837c0435b9SKip Macy flags |= LO_NOPROFILE;
1184fd07ddcfSDmitry Chagin if (opts & MTX_NEW)
1185fd07ddcfSDmitry Chagin flags |= LO_NEW;
118619284646SJohn Baldwin
118783a81bcbSJohn Baldwin /* Initialize mutex. */
1188b5fb43e5SJohn Baldwin lock_init(&m->lock_object, class, name, type, flags);
1189b5fb43e5SJohn Baldwin
119019284646SJohn Baldwin m->mtx_lock = MTX_UNOWNED;
119183a81bcbSJohn Baldwin m->mtx_recurse = 0;
119236412d79SJohn Baldwin }
119336412d79SJohn Baldwin
11949ed346baSBosko Milekic /*
119519284646SJohn Baldwin * Remove lock `m' from all_mtx queue. We don't allow MTX_QUIET to be
119619284646SJohn Baldwin * passed in as a flag here because if the corresponding mtx_init() was
119719284646SJohn Baldwin * called with MTX_QUIET set, then it will already be set in the mutex's
119819284646SJohn Baldwin * flags.
11999ed346baSBosko Milekic */
120036412d79SJohn Baldwin void
_mtx_destroy(volatile uintptr_t * c)12017f44c618SAttilio Rao _mtx_destroy(volatile uintptr_t *c)
120236412d79SJohn Baldwin {
12037f44c618SAttilio Rao struct mtx *m;
12047f44c618SAttilio Rao
12057f44c618SAttilio Rao m = mtxlock2mtx(c);
120636412d79SJohn Baldwin
120719284646SJohn Baldwin if (!mtx_owned(m))
120819284646SJohn Baldwin MPASS(mtx_unowned(m));
120919284646SJohn Baldwin else {
121008812b39SBosko Milekic MPASS((m->mtx_lock & (MTX_RECURSED|MTX_CONTESTED)) == 0);
12119ed346baSBosko Milekic
1212861a2308SScott Long /* Perform the non-mtx related part of mtx_unlock_spin(). */
12136a467cc5SMateusz Guzik if (LOCK_CLASS(&m->lock_object) == &lock_class_mtx_spin) {
12146a467cc5SMateusz Guzik lock_profile_release_lock(&m->lock_object, true);
1215861a2308SScott Long spinlock_exit();
12166a467cc5SMateusz Guzik } else {
1217ce1c953eSMark Johnston TD_LOCKS_DEC(curthread);
12186a467cc5SMateusz Guzik lock_profile_release_lock(&m->lock_object, false);
12196a467cc5SMateusz Guzik }
1220861a2308SScott Long
122119284646SJohn Baldwin /* Tell witness this isn't locked to make it happy. */
1222aa89d8cdSJohn Baldwin WITNESS_UNLOCK(&m->lock_object, LOP_EXCLUSIVE, __FILE__,
1223c86b6ff5SJohn Baldwin __LINE__);
122436412d79SJohn Baldwin }
12250384fff8SJason Evans
1226186abbd7SJohn Baldwin m->mtx_lock = MTX_DESTROYED;
1227aa89d8cdSJohn Baldwin lock_destroy(&m->lock_object);
12280384fff8SJason Evans }
1229d23f5958SMatthew Dillon
1230d23f5958SMatthew Dillon /*
1231c53c013bSJohn Baldwin * Intialize the mutex code and system mutexes. This is called from the MD
1232c53c013bSJohn Baldwin * startup code prior to mi_startup(). The per-CPU data space needs to be
1233c53c013bSJohn Baldwin * setup before this is called.
1234c53c013bSJohn Baldwin */
1235c53c013bSJohn Baldwin void
mutex_init(void)1236c53c013bSJohn Baldwin mutex_init(void)
1237c53c013bSJohn Baldwin {
1238c53c013bSJohn Baldwin
1239961a7b24SJohn Baldwin /* Setup turnstiles so that sleep mutexes work. */
1240961a7b24SJohn Baldwin init_turnstiles();
1241961a7b24SJohn Baldwin
1242c53c013bSJohn Baldwin /*
1243c53c013bSJohn Baldwin * Initialize mutexes.
1244c53c013bSJohn Baldwin */
12450c88508aSJohn Baldwin mtx_init(&Giant, "Giant", NULL, MTX_DEF | MTX_RECURSE);
12462502c107SJeff Roberson mtx_init(&blocked_lock, "blocked lock", NULL, MTX_SPIN);
12472502c107SJeff Roberson blocked_lock.mtx_lock = 0xdeadc0de; /* Always blocked. */
12480c88508aSJohn Baldwin mtx_init(&proc0.p_mtx, "process lock", NULL, MTX_DEF | MTX_DUPOK);
12496afb32fcSKonstantin Belousov mtx_init(&proc0.p_slock, "process slock", NULL, MTX_SPIN);
12505c7bebf9SKonstantin Belousov mtx_init(&proc0.p_statmtx, "pstatl", NULL, MTX_SPIN);
12515c7bebf9SKonstantin Belousov mtx_init(&proc0.p_itimmtx, "pitiml", NULL, MTX_SPIN);
12525c7bebf9SKonstantin Belousov mtx_init(&proc0.p_profmtx, "pprofl", NULL, MTX_SPIN);
12538c4b6380SJohn Baldwin mtx_init(&devmtx, "cdev", NULL, MTX_DEF);
1254c53c013bSJohn Baldwin mtx_lock(&Giant);
1255c53c013bSJohn Baldwin }
1256d272fe53SJohn Baldwin
125715140a8aSMateusz Guzik static void __noinline
_mtx_lock_indefinite_check(struct mtx * m,struct lock_delay_arg * ldap)125815140a8aSMateusz Guzik _mtx_lock_indefinite_check(struct mtx *m, struct lock_delay_arg *ldap)
125915140a8aSMateusz Guzik {
126015140a8aSMateusz Guzik struct thread *td;
126115140a8aSMateusz Guzik
126215140a8aSMateusz Guzik ldap->spin_cnt++;
1263879e0604SMateusz Guzik if (ldap->spin_cnt < 60000000 || kdb_active || KERNEL_PANICKED())
12644cbbb748SJohn Baldwin cpu_lock_delay();
126515140a8aSMateusz Guzik else {
126615140a8aSMateusz Guzik td = mtx_owner(m);
126715140a8aSMateusz Guzik
126815140a8aSMateusz Guzik /* If the mutex is unlocked, try again. */
126915140a8aSMateusz Guzik if (td == NULL)
127015140a8aSMateusz Guzik return;
127115140a8aSMateusz Guzik
127215140a8aSMateusz Guzik printf( "spin lock %p (%s) held by %p (tid %d) too long\n",
127315140a8aSMateusz Guzik m, m->lock_object.lo_name, td, td->td_tid);
127415140a8aSMateusz Guzik #ifdef WITNESS
127515140a8aSMateusz Guzik witness_display_spinlock(&m->lock_object, td, printf);
127615140a8aSMateusz Guzik #endif
127715140a8aSMateusz Guzik panic("spin lock held too long");
127815140a8aSMateusz Guzik }
127915140a8aSMateusz Guzik cpu_spinwait();
128015140a8aSMateusz Guzik }
128115140a8aSMateusz Guzik
1282d2576988SMateusz Guzik void
mtx_spin_wait_unlocked(struct mtx * m)1283d2576988SMateusz Guzik mtx_spin_wait_unlocked(struct mtx *m)
1284d2576988SMateusz Guzik {
1285d2576988SMateusz Guzik struct lock_delay_arg lda;
1286d2576988SMateusz Guzik
1287500ca73dSMateusz Guzik KASSERT(m->mtx_lock != MTX_DESTROYED,
1288500ca73dSMateusz Guzik ("%s() of destroyed mutex %p", __func__, m));
1289dba45599SJohn Baldwin KASSERT(LOCK_CLASS(&m->lock_object) != &lock_class_mtx_sleep,
1290500ca73dSMateusz Guzik ("%s() of sleep mutex %p (%s)", __func__, m,
1291500ca73dSMateusz Guzik m->lock_object.lo_name));
1292500ca73dSMateusz Guzik KASSERT(!mtx_owned(m), ("%s() waiting on myself on lock %p (%s)", __func__, m,
1293500ca73dSMateusz Guzik m->lock_object.lo_name));
1294500ca73dSMateusz Guzik
1295d2576988SMateusz Guzik lda.spin_cnt = 0;
1296d2576988SMateusz Guzik
1297d2576988SMateusz Guzik while (atomic_load_acq_ptr(&m->mtx_lock) != MTX_UNOWNED) {
1298d2576988SMateusz Guzik if (__predict_true(lda.spin_cnt < 10000000)) {
1299d2576988SMateusz Guzik cpu_spinwait();
1300d2576988SMateusz Guzik lda.spin_cnt++;
1301d2576988SMateusz Guzik } else {
1302d2576988SMateusz Guzik _mtx_lock_indefinite_check(m, &lda);
1303d2576988SMateusz Guzik }
1304d2576988SMateusz Guzik }
1305d2576988SMateusz Guzik }
1306d2576988SMateusz Guzik
1307bd66a075SMateusz Guzik void
mtx_wait_unlocked(struct mtx * m)1308bd66a075SMateusz Guzik mtx_wait_unlocked(struct mtx *m)
1309bd66a075SMateusz Guzik {
1310bd66a075SMateusz Guzik struct thread *owner;
1311bd66a075SMateusz Guzik uintptr_t v;
1312bd66a075SMateusz Guzik
1313bd66a075SMateusz Guzik KASSERT(m->mtx_lock != MTX_DESTROYED,
1314bd66a075SMateusz Guzik ("%s() of destroyed mutex %p", __func__, m));
1315dba45599SJohn Baldwin KASSERT(LOCK_CLASS(&m->lock_object) != &lock_class_mtx_spin,
1316dba45599SJohn Baldwin ("%s() of spin mutex %p (%s)", __func__, m,
1317bd66a075SMateusz Guzik m->lock_object.lo_name));
1318bd66a075SMateusz Guzik KASSERT(!mtx_owned(m), ("%s() waiting on myself on lock %p (%s)", __func__, m,
1319bd66a075SMateusz Guzik m->lock_object.lo_name));
1320bd66a075SMateusz Guzik
1321bd66a075SMateusz Guzik for (;;) {
1322bd66a075SMateusz Guzik v = atomic_load_acq_ptr(&m->mtx_lock);
1323bd66a075SMateusz Guzik if (v == MTX_UNOWNED) {
1324bd66a075SMateusz Guzik break;
1325bd66a075SMateusz Guzik }
1326bd66a075SMateusz Guzik owner = lv_mtx_owner(v);
1327bd66a075SMateusz Guzik if (!TD_IS_RUNNING(owner)) {
1328bd66a075SMateusz Guzik mtx_lock(m);
1329bd66a075SMateusz Guzik mtx_unlock(m);
1330bd66a075SMateusz Guzik break;
1331bd66a075SMateusz Guzik }
1332bd66a075SMateusz Guzik cpu_spinwait();
1333bd66a075SMateusz Guzik }
1334bd66a075SMateusz Guzik }
1335bd66a075SMateusz Guzik
1336d272fe53SJohn Baldwin #ifdef DDB
133795a9594aSGleb Smirnoff static void
db_show_mtx(const struct lock_object * lock)1338d576deedSPawel Jakub Dawidek db_show_mtx(const struct lock_object *lock)
1339d272fe53SJohn Baldwin {
1340d272fe53SJohn Baldwin struct thread *td;
1341d576deedSPawel Jakub Dawidek const struct mtx *m;
1342d272fe53SJohn Baldwin
1343d576deedSPawel Jakub Dawidek m = (const struct mtx *)lock;
1344d272fe53SJohn Baldwin
1345d272fe53SJohn Baldwin db_printf(" flags: {");
134683a81bcbSJohn Baldwin if (LOCK_CLASS(lock) == &lock_class_mtx_spin)
1347d272fe53SJohn Baldwin db_printf("SPIN");
1348d272fe53SJohn Baldwin else
1349d272fe53SJohn Baldwin db_printf("DEF");
1350aa89d8cdSJohn Baldwin if (m->lock_object.lo_flags & LO_RECURSABLE)
1351d272fe53SJohn Baldwin db_printf(", RECURSE");
1352aa89d8cdSJohn Baldwin if (m->lock_object.lo_flags & LO_DUPOK)
1353d272fe53SJohn Baldwin db_printf(", DUPOK");
1354d272fe53SJohn Baldwin db_printf("}\n");
1355d272fe53SJohn Baldwin db_printf(" state: {");
1356d272fe53SJohn Baldwin if (mtx_unowned(m))
1357d272fe53SJohn Baldwin db_printf("UNOWNED");
1358c0bfd703SJohn Baldwin else if (mtx_destroyed(m))
1359c0bfd703SJohn Baldwin db_printf("DESTROYED");
1360d272fe53SJohn Baldwin else {
1361d272fe53SJohn Baldwin db_printf("OWNED");
1362d272fe53SJohn Baldwin if (m->mtx_lock & MTX_CONTESTED)
1363d272fe53SJohn Baldwin db_printf(", CONTESTED");
1364d272fe53SJohn Baldwin if (m->mtx_lock & MTX_RECURSED)
1365d272fe53SJohn Baldwin db_printf(", RECURSED");
1366d272fe53SJohn Baldwin }
1367d272fe53SJohn Baldwin db_printf("}\n");
1368c0bfd703SJohn Baldwin if (!mtx_unowned(m) && !mtx_destroyed(m)) {
1369d272fe53SJohn Baldwin td = mtx_owner(m);
1370d272fe53SJohn Baldwin db_printf(" owner: %p (tid %d, pid %d, \"%s\")\n", td,
1371431f8906SJulian Elischer td->td_tid, td->td_proc->p_pid, td->td_name);
1372d272fe53SJohn Baldwin if (mtx_recursed(m))
1373d272fe53SJohn Baldwin db_printf(" recursed: %d\n", m->mtx_recurse);
1374d272fe53SJohn Baldwin }
1375d272fe53SJohn Baldwin }
1376d272fe53SJohn Baldwin #endif
1377