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.Nd kernel synchronization primitives 53.Sh SYNOPSIS 54.In sys/param.h 55.In sys/lock.h 56.In sys/mutex.h 57.Ft void 58.Fn mtx_init "struct mtx *mutex" "const char *description" "int opts" 59.Ft void 60.Fn mtx_lock "struct mtx *mutex" 61.Ft void 62.Fn mtx_lock_spin "struct mtx *mutex" 63.Ft void 64.Fn mtx_lock_flags "struct mtx *mutex" "int flags" 65.Ft void 66.Fn mtx_lock_spin_flags "struct mtx *mutex" "int flags" 67.Ft int 68.Fn mtx_trylock "struct mtx *mutex" 69.Ft int 70.Fn mtx_trylock_flags "struct mtx *mutex" "int flags" 71.Ft void 72.Fn mtx_unlock "struct mtx *mutex" 73.Ft void 74.Fn mtx_unlock_spin "struct mtx *mutex" 75.Ft void 76.Fn mtx_unlock_flags "struct mtx *mutex" "int flags" 77.Ft void 78.Fn mtx_unlock_spin_flags "struct mtx *mutex" "int flags" 79.Ft void 80.Fn mtx_destroy "struct mtx *mutex" 81.Ft int 82.Fn mtx_initialized "struct mtx *mutex" 83.Ft int 84.Fn mtx_owned "struct mtx *mutex" 85.Ft int 86.Fn mtx_recursed "struct mtx *mutex" 87.Ft void 88.Fn mtx_assert "struct mtx *mutex" "int what" 89.Sh DESCRIPTION 90Mutexes are the most basic and primary method of process synchronization. 91The major design considerations for mutexes are: 92.Bl -enum 93.It 94Acquiring and releasing uncontested mutexes should be as cheap 95as possible. 96.It 97They must have the information and storage space to support 98priority propagation. 99.It 100A process must be able to recursively acquire a mutex, 101provided that the mutex is initialized to support recursion. 102.El 103.Pp 104There are currently two flavors of mutexes, those that context switch 105when they block and those that do not. 106.Pp 107By default, 108.Dv MTX_DEF 109mutexes will context switch when they are already held. 110As a machine dependent optimization they may spin for some amount 111of time before context switching. 112It is important to remember that since a process may be preempted at any time, 113the possible context switch introduced by acquiring a mutex is guaranteed 114to not break anything that isn't already broken. 115.Pp 116Mutexes which do not context switch are 117.Dv MTX_SPIN 118mutexes. 119These should only be used to protect data shared with any devices that 120require non-preemptive interrupts, and low level scheduling code. 121In most/all architectures both acquiring and releasing of a 122uncontested spin mutex is more expensive than the same operation 123on a non spin mutex. 124In order to protect an interrupt service routine from blocking 125against itself all interrupts are blocked on a processor while 126holding a spin lock. 127It is permissible to hold multiple spin mutexes. 128In this case it is a required that they be released in the opposite 129order to that which they were acquired. 130.Pp 131Once a spin mutex has been acquired it is not permissible to acquire a 132blocking mutex. 133.Pp 134The storage needed to implement a mutex is provided by a 135.Vt struct mtx . 136In general this should be treated as an opaque object and 137referenced only with the mutex primitives. 138.Pp 139The 140.Fn mtx_init 141function must be used to initialize a mutex 142before it can be passed to 143.Fn mtx_lock . 144The 145.Fa description 146argument is used by the witness code 147to classify a mutex when doing checks of lock ordering. 148The pointer passed in as the 149.Fa description 150is saved rather than the data it points to. 151The data pointed to must remain stable 152until the mutex is destroyed. 153The 154.Fa opts 155argument is used to set the type of mutex. 156It may contain either 157.Dv MTX_DEF 158or 159.Dv MTX_SPIN 160but not both. 161Optionally, it may also contain the 162.Dv MTX_RECURSE 163bit, which signifies that the mutex will be allowed to recurse. 164It is not permissible to pass the same 165.Fa mutex 166to 167.Fn mtx_init 168multiple times without intervening calls to 169.Fn mtx_destroy . 170.Pp 171The 172.Fn mtx_lock 173function acquires a 174.Dv MTX_DEF 175mutual exclusion lock 176on behalf of the currently running kernel thread. 177If another kernel thread is holding the mutex, 178the caller will be disconnected from the CPU 179until the mutex is available 180(i.e. it will sleep). 181.Pp 182The 183.Fn mtx_lock_spin 184function acquires a 185.Dv MTX_SPIN 186mutual exclusion lock 187on behalf of the currently running kernel thread. 188If another kernel thread is holding the mutex, 189the caller will spin until the mutex becomes available. 190Interrupts are disabled during the spin and remain disabled 191following the acquiring of the lock. 192.Pp 193It is possible for the same thread to recursively acquire a mutex 194with no ill effects, provided that the 195.Dv MTX_RECURSE 196bit was passed to 197.Fn mtx_init 198during the initialization of the mutex. 199.Pp 200The 201.Fn mtx_lock_flags 202and 203.Fn mtx_lock_spin_flags 204functions acquire a 205.Dv MTX_DEF 206or 207.Dv MTX_SPIN 208lock, respectively, and also accept a 209.Fa flags 210argument. 211In both cases, the only flag presently available for lock acquires is 212.Dv MTX_QUIET . 213If the 214.Dv MTX_QUIET 215bit is turned on in the 216.Fa flags 217argument, then if 218.Dv KTR_LOCK 219tracing is being done, 220it will be silenced during the lock acquire. 221.Pp 222The 223.Fn mtx_trylock 224function is used to acquire exclusive access 225to those objects protected by the mutex 226pointed to by 227.Fa mutex . 228If the mutex cannot be immediately acquired 229.Fn mtx_trylock 230will return 0, 231otherwise the mutex will be acquired 232and a non-zero value will be returned. 233.Pp 234The 235.Fn mtx_trylock_flags 236function has the same behavior as 237.Fn mtx_trylock 238but should be used when the caller desires to pass in a 239.Fa flags 240value. 241Presently, the only valid value in the 242.Fn mtx_trylock 243case is 244.Dv MTX_QUIET , 245and its effects are identical to those described for 246.Fn mtx_lock 247and 248.Fn mtx_lock_spin 249above. 250.Pp 251The 252.Fn mtx_unlock 253function releases a 254.Dv MTX_DEF 255mutual exclusion lock; 256if a higher priority thread is waiting for the mutex, 257the releasing thread will be disconnected 258to allow the higher priority thread to acquire the mutex and run. 259.Pp 260The 261.Fn mtx_unlock_spin 262function releases a 263.Dv MTX_SPIN 264mutual exclusion lock; 265interrupt state prior to the acquiring of the lock is restored. 266.Pp 267The 268.Fn mtx_unlock_flags 269and 270.Fn mtx_unlock_spin_flags 271functions behave in exactly the same way as do the standard mutex 272unlock routines above, while also allowing a 273.Fa flags 274argument which may only be 275.Dv MTX_QUIET 276in the 277.Fn mtx_unlock_spin_flags 278case, and may be one or more of 279.Dv MTX_QUIET 280and 281.Dv MTX_NOSWITCH 282in the 283.Fn mtx_unlock_flags 284case. 285The behavior of 286.Dv MTX_QUIET 287is identical to its behavior in the mutex lock routines. 288The 289.Dv MTX_NOSWITCH 290flag bit signifies, 291for a 292.Dv MTX_DEF 293mutex only, 294that the releasing thread is not to be disconnected from the CPU following 295the release of the mutex. 296.Pp 297The 298.Fn mtx_destroy 299function is used to destroy 300.Fa mutex 301so the data associated with it may be freed 302or otherwise overwritten. 303Any mutex which is destroyed 304must previously have been initialized with 305.Fn mtx_init . 306It is permissible to have a single hold count 307on a mutex when it is destroyed. 308It is not permissible to hold the mutex recursively, 309or have another process blocked on the mutex 310when it is destroyed. 311.Pp 312The 313.Fn mtx_initialized 314function returns non-zero if 315.Fa mutex 316has been initialized and zero otherwise. 317.Pp 318The 319.Fn mtx_owned 320function returns non-zero 321if the current process holds 322.Fa mutex . 323If the current process does not hold 324.Fa mutex 325zero is returned. 326.Pp 327The 328.Fn mtx_recursed 329function returns non-zero if the 330.Fa mutex 331is recursed. 332This check should only be made if the running thread already owns 333.Fa mutex . 334.Pp 335The 336.Fn mtx_assert 337function allows assertions to be made about 338.Fa mutex . 339If the assertions are not true and the kernel is compiled with 340.Dv INVARIANTS 341then the kernel will panic. 342Currently the following assertions are supported: 343.Bl -tag -width MA_NOTRECURSED 344.It Dv MA_OWNED 345Assert that the current thread 346holds the mutex 347pointed to by the first argument. 348.It Dv MA_NOTOWNED 349Assert that the current thread 350does not hold the mutex 351pointed to by the first argument. 352.It Dv MA_RECURSED 353Assert that the current thread has recursed on the mutex 354pointed to by the first argument. 355This assertion is only valid in conjunction with 356.Dv MA_OWNED . 357.It Dv MA_NOTRECURSED 358Assert that the current thread has not recursed on the mutex 359pointed to by the first argument. 360This assertion is only valid in conjunction with 361.Dv MA_OWNED . 362.El 363.Ss The Default Mutex Type 364Most kernel code should use the default lock type, 365.Dv MTX_DEF ; 366the default lock type will allow the thread 367to be disconnected from the CPU 368if it cannot get the lock. 369The machine dependent implementation 370may treat the lock as a short term spin lock 371under some circumstances. 372However, it is always safe to use these forms of locks 373in an interrupt thread 374without fear of deadlock 375against an interrupted thread on the same CPU. 376.Ss The Spin Mutex Type 377A 378.Dv MTX_SPIN 379mutex will not relinquish the CPU 380when it cannot immediately get the requested lock, 381but will loop, waiting for the mutex to be released by another CPU. 382This could result in deadlock 383if a thread interrupted the thread which held a mutex 384and then tried to acquire the mutex; 385for this reason spin locks will disable all interrupts 386(on the local CPU only). 387.Pp 388Spin locks are fairly specialized locks 389that are intended to be held for very short periods of time; 390their primary purpose is to protect portions of the code 391that implement default (i.e. sleep) locks. 392.Ss Initialization Options 393The options passed in the 394.Fa opts 395argument of 396.Fn mtx_init 397specify the mutex type. 398The possibilities are: 399.Bl -tag -width MTX_NOWITNESS 400.It Dv MTX_DEF 401Default lock type; 402will always allow the current thread to be suspended 403to avoid deadlock conditions against interrupt threads. 404The machine dependent implementation of this lock type 405may spin for a while before suspending the current thread. 406If this flag is specified, clearly 407.Dv MTX_SPIN 408must NOT be specified. 409.It Dv MTX_SPIN 410Spin lock type; 411will never relinquish the CPU. 412All interrupts are disabled on the local CPU 413while any spin lock is held. 414.It Dv MTX_RECURSE 415Recursion option bit; 416specifies that the initialized mutex is allowed to recurse. 417This bit must be present if the mutex is going to be permitted to recurse. 418.It Dv MTX_QUIET 419Do not log any mutex operations for this lock. 420.It Dv MTX_NOWITNESS 421Instruct 422.Xr witness 4 423to ignore this lock. 424.El 425.Ss Lock and Unlock Flags 426The flags passed to the 427.Fn mtx_lock_flags , 428.Fn mtx_lock_spin_flags , 429.Fn mtx_unlock_flags , 430and 431.Fn mtx_unlock_spin_flags 432functions provide some basic options to the caller, 433and are often used only under special circumstances to modify lock or 434unlock behavior. 435Standard locking and unlocking should be performed with the 436.Fn mtx_lock , 437.Fn mtx_lock_spin , 438.Fn mtx_unlock , 439and 440.Fn mtx_unlock_spin 441functions. 442If one of these flags is required then, and only then, 443should the corresponding flags-accepting routines be used. 444.Pp 445Options that modify mutex behavior: 446.Bl -tag -width MTX_NOSWITCH 447.It Dv MTX_NOSWITCH 448When releasing a 449.Dv MTX_DEF 450mutex, 451this flag prevents a thread switch that might occur 452if another higher priority thread was waiting for the mutex. 453This may cause priority inversion and should be used carefully. 454This flag can only be passed to 455.Fn mtx_unlock_flags . 456.Pp 457This flag is used internally by the lock code. 458It should not be used in general kernel code 459and is documented here for completeness only. 460.It Dv MTX_QUIET 461This option is used to quiet logging messages during individual mutex 462operations. 463This can be used to trim superfluous logging messages for debugging purposes. 464.El 465.Sh SEE ALSO 466.Xr condvar 9 , 467.Xr msleep 9 , 468.Xr sema 9 , 469.Xr sx 9 470.Sh HISTORY 471These 472functions appeared in 473.Bsx 4.1 474and 475.Fx 5.0 . 476