1.\" 2.\" Copyright (c) 1998 Berkeley Software Design, Inc. All rights reserved. 3.\" 4.\" Redistribution and use in source and binary forms, with or without 5.\" modification, are permitted provided that the following conditions 6.\" are met: 7.\" 1. Redistributions of source code must retain the above copyright 8.\" notice, this list of conditions and the following disclaimer. 9.\" 2. Redistributions in binary form must reproduce the above copyright 10.\" notice, this list of conditions and the following disclaimer in the 11.\" documentation and/or other materials provided with the distribution. 12.\" 3. Berkeley Software Design Inc's name may not be used to endorse or 13.\" promote products derived from this software without specific prior 14.\" written permission. 15.\" 16.\" THIS SOFTWARE IS PROVIDED BY BERKELEY SOFTWARE DESIGN INC ``AS IS'' AND 17.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19.\" ARE DISCLAIMED. IN NO EVENT SHALL BERKELEY SOFTWARE DESIGN INC BE LIABLE 20.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26.\" SUCH DAMAGE. 27.\" 28.\" from BSDI $Id: mutex.4,v 1.1.2.3 1998/04/27 22:53:13 ewv Exp $ 29.\" $FreeBSD$ 30.\" 31.Dd February 12, 2001 32.Dt MUTEX 9 33.Os 34.Sh NAME 35.Nm mutex , 36.Nm mtx_init , 37.Nm mtx_lock , 38.Nm mtx_lock_spin , 39.Nm mtx_lock_flags , 40.Nm mtx_lock_spin_flags , 41.Nm mtx_trylock , 42.Nm mtx_trylock_flags , 43.Nm mtx_unlock , 44.Nm mtx_unlock_spin , 45.Nm mtx_unlock_flags , 46.Nm mtx_unlock_spin_flags , 47.Nm mtx_destroy , 48.Nm mtx_initialized , 49.Nm mtx_owned , 50.Nm mtx_recursed , 51.Nm mtx_assert, 52.Nm MTX_SYSINIT 53.Nd kernel synchronization primitives 54.Sh SYNOPSIS 55.In sys/param.h 56.In sys/lock.h 57.In sys/mutex.h 58.Ft void 59.Fn mtx_init "struct mtx *mutex" "const char *name" "const char *type" "int opts" 60.Ft void 61.Fn mtx_lock "struct mtx *mutex" 62.Ft void 63.Fn mtx_lock_spin "struct mtx *mutex" 64.Ft void 65.Fn mtx_lock_flags "struct mtx *mutex" "int flags" 66.Ft void 67.Fn mtx_lock_spin_flags "struct mtx *mutex" "int flags" 68.Ft int 69.Fn mtx_trylock "struct mtx *mutex" 70.Ft int 71.Fn mtx_trylock_flags "struct mtx *mutex" "int flags" 72.Ft void 73.Fn mtx_unlock "struct mtx *mutex" 74.Ft void 75.Fn mtx_unlock_spin "struct mtx *mutex" 76.Ft void 77.Fn mtx_unlock_flags "struct mtx *mutex" "int flags" 78.Ft void 79.Fn mtx_unlock_spin_flags "struct mtx *mutex" "int flags" 80.Ft void 81.Fn mtx_destroy "struct mtx *mutex" 82.Ft int 83.Fn mtx_initialized "struct mtx *mutex" 84.Ft int 85.Fn mtx_owned "struct mtx *mutex" 86.Ft int 87.Fn mtx_recursed "struct mtx *mutex" 88.Ft void 89.Fn mtx_assert "struct mtx *mutex" "int what" 90.Fn MTX_SYSINIT "name" "struct mutex *mtx" "const char *description" "int opts" 91.Sh DESCRIPTION 92Mutexes are the most basic and primary method of process synchronization. 93The major design considerations for mutexes are: 94.Bl -enum 95.It 96Acquiring and releasing uncontested mutexes should be as cheap 97as possible. 98.It 99They must have the information and storage space to support 100priority propagation. 101.It 102A process must be able to recursively acquire a mutex, 103provided that the mutex is initialized to support recursion. 104.El 105.Pp 106There are currently two flavors of mutexes, those that context switch 107when they block and those that do not. 108.Pp 109By default, 110.Dv MTX_DEF 111mutexes will context switch when they are already held. 112As a machine dependent optimization they may spin for some amount 113of time before context switching. 114It is important to remember that since a process may be preempted at any time, 115the possible context switch introduced by acquiring a mutex is guaranteed 116to not break anything that isn't already broken. 117.Pp 118Mutexes which do not context switch are 119.Dv MTX_SPIN 120mutexes. 121These should only be used to protect data shared with any devices that 122require non-preemptive interrupts, and low level scheduling code. 123In most/all architectures both acquiring and releasing of a 124uncontested spin mutex is more expensive than the same operation 125on a non spin mutex. 126In order to protect an interrupt service routine from blocking 127against itself all interrupts are blocked on a processor while 128holding a spin lock. 129It is permissible to hold multiple spin mutexes. 130In this case it is a required that they be released in the opposite 131order to that which they were acquired. 132.Pp 133Once a spin mutex has been acquired it is not permissible to acquire a 134blocking mutex. 135.Pp 136The storage needed to implement a mutex is provided by a 137.Vt struct mtx . 138In general this should be treated as an opaque object and 139referenced only with the mutex primitives. 140.Pp 141The 142.Fn mtx_init 143function must be used to initialize a mutex 144before it can be passed to 145.Fn mtx_lock . 146The 147.Fa name 148option is used to identify the lock in debugging output etc. 149The 150.Fa type 151option is used by the witness code to classify a mutex when doing checks 152of lock ordering. 153If 154.Fa type 155is 156.Dv NULL , 157.Fa name 158is used in its place. 159The pointer passed in as 160.Fa name 161and 162.Fa type 163is saved rather than the data it points to. 164The data pointed to must remain stable 165until the mutex is destroyed. 166The 167.Fa opts 168argument is used to set the type of mutex. 169It may contain either 170.Dv MTX_DEF 171or 172.Dv MTX_SPIN 173but not both. 174Optionally, it may also contain the 175.Dv MTX_RECURSE 176bit, which signifies that the mutex will be allowed to recurse. 177It is not permissible to pass the same 178.Fa mutex 179to 180.Fn mtx_init 181multiple times without intervening calls to 182.Fn mtx_destroy . 183.Pp 184The 185.Fn mtx_lock 186function acquires a 187.Dv MTX_DEF 188mutual exclusion lock 189on behalf of the currently running kernel thread. 190If another kernel thread is holding the mutex, 191the caller will be disconnected from the CPU 192until the mutex is available 193(i.e. it will sleep). 194.Pp 195The 196.Fn mtx_lock_spin 197function acquires a 198.Dv MTX_SPIN 199mutual exclusion lock 200on behalf of the currently running kernel thread. 201If another kernel thread is holding the mutex, 202the caller will spin until the mutex becomes available. 203Interrupts are disabled during the spin and remain disabled 204following the acquiring of the lock. 205.Pp 206It is possible for the same thread to recursively acquire a mutex 207with no ill effects, provided that the 208.Dv MTX_RECURSE 209bit was passed to 210.Fn mtx_init 211during the initialization of the mutex. 212.Pp 213The 214.Fn mtx_lock_flags 215and 216.Fn mtx_lock_spin_flags 217functions acquire a 218.Dv MTX_DEF 219or 220.Dv MTX_SPIN 221lock, respectively, and also accept a 222.Fa flags 223argument. 224In both cases, the only flag presently available for lock acquires is 225.Dv MTX_QUIET . 226If the 227.Dv MTX_QUIET 228bit is turned on in the 229.Fa flags 230argument, then if 231.Dv KTR_LOCK 232tracing is being done, 233it will be silenced during the lock acquire. 234.Pp 235The 236.Fn mtx_trylock 237function is used to acquire exclusive access 238to those objects protected by the mutex 239pointed to by 240.Fa mutex . 241If the mutex cannot be immediately acquired 242.Fn mtx_trylock 243will return 0, 244otherwise the mutex will be acquired 245and a non-zero value will be returned. 246.Pp 247The 248.Fn mtx_trylock_flags 249function has the same behavior as 250.Fn mtx_trylock 251but should be used when the caller desires to pass in a 252.Fa flags 253value. 254Presently, the only valid value in the 255.Fn mtx_trylock 256case is 257.Dv MTX_QUIET , 258and its effects are identical to those described for 259.Fn mtx_lock 260and 261.Fn mtx_lock_spin 262above. 263.Pp 264The 265.Fn mtx_unlock 266function releases a 267.Dv MTX_DEF 268mutual exclusion lock; 269if a higher priority thread is waiting for the mutex, 270the releasing thread will be disconnected 271to allow the higher priority thread to acquire the mutex and run. 272.Pp 273The 274.Fn mtx_unlock_spin 275function releases a 276.Dv MTX_SPIN 277mutual exclusion lock; 278interrupt state prior to the acquiring of the lock is restored. 279.Pp 280The 281.Fn mtx_unlock_flags 282and 283.Fn mtx_unlock_spin_flags 284functions behave in exactly the same way as do the standard mutex 285unlock routines above, while also allowing a 286.Fa flags 287argument which may only be 288.Dv MTX_QUIET 289in the 290.Fn mtx_unlock_spin_flags 291case, and may be one or more of 292.Dv MTX_QUIET 293and 294.Dv MTX_NOSWITCH 295in the 296.Fn mtx_unlock_flags 297case. 298The behavior of 299.Dv MTX_QUIET 300is identical to its behavior in the mutex lock routines. 301The 302.Dv MTX_NOSWITCH 303flag bit signifies, 304for a 305.Dv MTX_DEF 306mutex only, 307that the releasing thread is not to be disconnected from the CPU following 308the release of the mutex. 309.Pp 310The 311.Fn mtx_destroy 312function is used to destroy 313.Fa mutex 314so the data associated with it may be freed 315or otherwise overwritten. 316Any mutex which is destroyed 317must previously have been initialized with 318.Fn mtx_init . 319It is permissible to have a single hold count 320on a mutex when it is destroyed. 321It is not permissible to hold the mutex recursively, 322or have another process blocked on the mutex 323when it is destroyed. 324.Pp 325The 326.Fn mtx_initialized 327function returns non-zero if 328.Fa mutex 329has been initialized and zero otherwise. 330.Pp 331The 332.Fn mtx_owned 333function returns non-zero 334if the current process holds 335.Fa mutex . 336If the current process does not hold 337.Fa mutex 338zero is returned. 339.Pp 340The 341.Fn mtx_recursed 342function returns non-zero if the 343.Fa mutex 344is recursed. 345This check should only be made if the running thread already owns 346.Fa mutex . 347.Pp 348The 349.Fn mtx_assert 350function allows assertions to be made about 351.Fa mutex . 352If the assertions are not true and the kernel is compiled with 353.Dv INVARIANTS 354then the kernel will panic. 355Currently the following assertions are supported: 356.Bl -tag -width MA_NOTRECURSED 357.It Dv MA_OWNED 358Assert that the current thread 359holds the mutex 360pointed to by the first argument. 361.It Dv MA_NOTOWNED 362Assert that the current thread 363does not hold the mutex 364pointed to by the first argument. 365.It Dv MA_RECURSED 366Assert that the current thread has recursed on the mutex 367pointed to by the first argument. 368This assertion is only valid in conjunction with 369.Dv MA_OWNED . 370.It Dv MA_NOTRECURSED 371Assert that the current thread has not recursed on the mutex 372pointed to by the first argument. 373This assertion is only valid in conjunction with 374.Dv MA_OWNED . 375.El 376.Pp 377The 378.Fn MTX_SYSINIT 379macro is used to generate a call to the 380.Fn mtx_sysinit 381routine at system startup in order to initialize a given mutex lock. The parameters are the same as 382.Fn mtx_init 383but with an additional argument, 384.Fa name, 385that is used in generating unique variable names for the related structures associated with the lock and the sysinit routine. 386.Ss The Default Mutex Type 387Most kernel code should use the default lock type, 388.Dv MTX_DEF ; 389the default lock type will allow the thread 390to be disconnected from the CPU 391if it cannot get the lock. 392The machine dependent implementation 393may treat the lock as a short term spin lock 394under some circumstances. 395However, it is always safe to use these forms of locks 396in an interrupt thread 397without fear of deadlock 398against an interrupted thread on the same CPU. 399.Ss The Spin Mutex Type 400A 401.Dv MTX_SPIN 402mutex will not relinquish the CPU 403when it cannot immediately get the requested lock, 404but will loop, waiting for the mutex to be released by another CPU. 405This could result in deadlock 406if a thread interrupted the thread which held a mutex 407and then tried to acquire the mutex; 408for this reason spin locks will disable all interrupts 409(on the local CPU only). 410.Pp 411Spin locks are fairly specialized locks 412that are intended to be held for very short periods of time; 413their primary purpose is to protect portions of the code 414that implement default (i.e. sleep) locks. 415.Ss Initialization Options 416The options passed in the 417.Fa opts 418argument of 419.Fn mtx_init 420specify the mutex type. 421The possibilities are: 422.Bl -tag -width MTX_NOWITNESS 423.It Dv MTX_DEF 424Default lock type; 425will always allow the current thread to be suspended 426to avoid deadlock conditions against interrupt threads. 427The machine dependent implementation of this lock type 428may spin for a while before suspending the current thread. 429If this flag is specified, clearly 430.Dv MTX_SPIN 431must NOT be specified. 432.It Dv MTX_SPIN 433Spin lock type; 434will never relinquish the CPU. 435All interrupts are disabled on the local CPU 436while any spin lock is held. 437.It Dv MTX_RECURSE 438Recursion option bit; 439specifies that the initialized mutex is allowed to recurse. 440This bit must be present if the mutex is going to be permitted to recurse. 441.It Dv MTX_QUIET 442Do not log any mutex operations for this lock. 443.It Dv MTX_NOWITNESS 444Instruct 445.Xr witness 4 446to ignore this lock. 447.El 448.Ss Lock and Unlock Flags 449The flags passed to the 450.Fn mtx_lock_flags , 451.Fn mtx_lock_spin_flags , 452.Fn mtx_unlock_flags , 453and 454.Fn mtx_unlock_spin_flags 455functions provide some basic options to the caller, 456and are often used only under special circumstances to modify lock or 457unlock behavior. 458Standard locking and unlocking should be performed with the 459.Fn mtx_lock , 460.Fn mtx_lock_spin , 461.Fn mtx_unlock , 462and 463.Fn mtx_unlock_spin 464functions. 465If one of these flags is required then, and only then, 466should the corresponding flags-accepting routines be used. 467.Pp 468Options that modify mutex behavior: 469.Bl -tag -width MTX_NOSWITCH 470.It Dv MTX_NOSWITCH 471When releasing a 472.Dv MTX_DEF 473mutex, 474this flag prevents a thread switch that might occur 475if another higher priority thread was waiting for the mutex. 476This may cause priority inversion and should be used carefully. 477This flag can only be passed to 478.Fn mtx_unlock_flags . 479.Pp 480This flag is used internally by the lock code. 481It should not be used in general kernel code 482and is documented here for completeness only. 483.It Dv MTX_QUIET 484This option is used to quiet logging messages during individual mutex 485operations. 486This can be used to trim superfluous logging messages for debugging purposes. 487.El 488.Sh SEE ALSO 489.Xr condvar 9 , 490.Xr msleep 9 , 491.Xr mtx_pool 9 , 492.Xr sema 9 , 493.Xr sx 9 494.Sh HISTORY 495These 496functions appeared in 497.Bsx 4.1 498and 499.Fx 5.0 . 500