1 .\" Copyright (c) 2006 Gleb Smirnoff <glebius@FreeBSD.org>
2 .\" All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
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.
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
49 .Nd kernel reader/writer lock
55 .Fn rw_init "struct rwlock *rw" "const char *name"
57 .Fn rw_init_flags "struct rwlock *rw" "const char *name" "int opts"
59 .Fn rw_destroy "struct rwlock *rw"
61 .Fn rw_rlock "struct rwlock *rw"
63 .Fn rw_wlock "struct rwlock *rw"
65 .Fn rw_try_rlock "struct rwlock *rw"
67 .Fn rw_try_wlock "struct rwlock *rw"
69 .Fn rw_runlock "struct rwlock *rw"
71 .Fn rw_wunlock "struct rwlock *rw"
73 .Fn rw_unlock "struct rwlock *rw"
75 .Fn rw_try_upgrade "struct rwlock *rw"
77 .Fn rw_downgrade "struct rwlock *rw"
79 .Fn rw_sleep "void *chan" "struct rwlock *rw" "int priority" "const char *wmesg" "int timo"
81 .Fn rw_initialized "struct rwlock *rw"
83 .Fn rw_wowned "struct rwlock *rw"
85 .Cd "options INVARIANTS"
86 .Cd "options INVARIANT_SUPPORT"
88 .Fn rw_assert "struct rwlock *rw" "int what"
90 .Fn RW_SYSINIT "name" "struct rwlock *rw" "const char *desc"
92 Reader/writer locks allow shared access to protected data by multiple threads,
93 or exclusive access by a single thread.
94 The threads with shared access are known as
96 since they only read the protected data.
97 A thread with exclusive access is known as a
99 since it can modify protected data.
101 Although reader/writer locks look very similar to
103 locks, their usage pattern is different.
104 Reader/writer locks can be treated as mutexes (see
106 with shared/exclusive semantics.
111 can be locked while holding a non-spin mutex, and an
113 cannot be held while sleeping.
116 locks have priority propagation like mutexes, but priority
117 can be propagated only to an exclusive holder.
118 This limitation comes from the fact that shared owners
120 Another important property is that shared holders of
123 and exclusive locks can be made recursive selectively.
124 .Ss Macros and Functions
125 .Bl -tag -width indent
126 .It Fn rw_init "struct rwlock *rw" "const char *name"
127 Initialize structure located at
129 as reader/writer lock, described by name
131 The description is used solely for debugging purposes.
132 This function must be called before any other operations
134 .It Fn rw_init_flags "struct rwlock *rw" "const char *name" "int opts"
135 Initialize the rw lock just like the
137 function, but specifying a set of optional flags to alter the
143 It contains one or more of the following flags:
144 .Bl -tag -width ".Dv RW_NOPROFILE"
146 Witness should not log messages about duplicate locks being acquired.
148 Do not profile this lock.
154 Do not log any operations for this lock via
157 Allow threads to recursively acquire exclusive locks for
160 .It Fn rw_rlock "struct rwlock *rw"
164 If any thread holds this lock exclusively, the current thread blocks,
165 and its priority is propagated to the exclusive holder.
168 function can be called when the thread has already acquired reader
172 .Dq "recursing on a lock" .
173 .It Fn rw_wlock "struct rwlock *rw"
177 If there are any shared owners of the lock, the current thread blocks.
180 function can be called recursively only if
182 has been initialized with the
185 .It Fn rw_try_rlock "struct rwlock *rw"
189 This function will return true if the operation succeeds, otherwise 0
191 .It Fn rw_try_wlock "struct rwlock *rw"
195 This function will return true if the operation succeeds, otherwise 0
197 .It Fn rw_runlock "struct rwlock *rw"
198 This function releases a shared lock previously acquired by
200 .It Fn rw_wunlock "struct rwlock *rw"
201 This function releases an exclusive lock previously acquired by
203 .It Fn rw_unlock "struct rwlock *rw"
204 This function releases a shared lock previously acquired by
206 or an exclusive lock previously acquired by
208 .It Fn rw_try_upgrade "struct rwlock *rw"
209 Attempt to upgrade a single shared lock to an exclusive lock.
210 The current thread must hold a shared lock of
212 This will only succeed if the current thread holds the only shared lock on
214 and it only holds a single shared lock.
215 If the attempt succeeds
217 will return a non-zero value,
218 and the current thread will hold an exclusive lock.
222 and the current thread will still hold a shared lock.
223 .It Fn rw_downgrade "struct rwlock *rw"
224 Convert an exclusive lock into a single shared lock.
225 The current thread must hold an exclusive lock of
227 .It Fn rw_sleep "void *chan" "struct rwlock *rw" "int priority" "const char *wmesg" "int timo"
230 while waiting for an event.
231 For more details on the parameters to this function,
234 .It Fn rw_initialized "struct rwlock *rw"
235 This function returns non-zero if
237 has been initialized, and zero otherwise.
238 .It Fn rw_destroy "struct rwlock *rw"
239 This functions destroys a lock previously initialized with
243 lock must be unlocked.
244 .It Fn rw_wowned "struct rwlock *rw"
245 This function returns a non-zero value if the current thread owns an
248 .It Fn rw_assert "struct rwlock *rw" "int what"
249 This function allows assertions specified in
253 If the assertions are not true and the kernel is compiled
255 .Cd "options INVARIANTS"
257 .Cd "options INVARIANT_SUPPORT" ,
258 the kernel will panic.
259 Currently the following assertions are supported:
260 .Bl -tag -width ".Dv RA_UNLOCKED"
262 Assert that current thread holds either a shared or exclusive lock
266 Assert that current thread holds a shared lock of
269 Assert that current thread holds an exclusive lock of
272 Assert that current thread holds neither a shared nor exclusive lock of
284 functions appeared in
290 facility was written by
292 This manual page was written by
293 .An "Gleb Smirnoff" .
297 is not included in the kernel,
298 then it is impossible to assert that the current thread does or does not
306 assertions merely check that some thread holds a read lock.
308 Reader/writer is a bit of an awkward name.