]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/man/man9/rmlock.9
Import libxo-1.3.0:
[FreeBSD/FreeBSD.git] / share / man / man9 / rmlock.9
1 .\" Copyright (c) 2007 Stephan Uphoff <ups@FreeBSD.org>
2 .\" Copyright (c) 2006 Gleb Smirnoff <glebius@FreeBSD.org>
3 .\" All rights reserved.
4 .\"
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
7 .\" are met:
8 .\" 1. Redistributions of source code must retain the above copyright
9 .\"    notice, this list of conditions and the following disclaimer.
10 .\" 2. Redistributions in binary form must reproduce the above copyright
11 .\"    notice, this list of conditions and the following disclaimer in the
12 .\"    documentation and/or other materials provided with the distribution.
13 .\"
14 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 .\" SUCH DAMAGE.
25 .\"
26 .\" $FreeBSD$
27 .\"
28 .\" Based on rwlock.9 man page
29 .Dd November 11, 2017
30 .Dt RMLOCK 9
31 .Os
32 .Sh NAME
33 .Nm rmlock ,
34 .Nm rm_init ,
35 .Nm rm_init_flags ,
36 .Nm rm_destroy ,
37 .Nm rm_rlock ,
38 .Nm rm_try_rlock ,
39 .Nm rm_wlock ,
40 .Nm rm_runlock ,
41 .Nm rm_wunlock ,
42 .Nm rm_wowned ,
43 .Nm rm_sleep ,
44 .Nm rm_assert ,
45 .Nm RM_SYSINIT ,
46 .Nm RM_SYSINIT_FLAGS
47 .Nd kernel reader/writer lock optimized for read-mostly access patterns
48 .Sh SYNOPSIS
49 .In sys/param.h
50 .In sys/lock.h
51 .In sys/rmlock.h
52 .Ft void
53 .Fn rm_init "struct rmlock *rm" "const char *name"
54 .Ft void
55 .Fn rm_init_flags "struct rmlock *rm" "const char *name" "int opts"
56 .Ft void
57 .Fn rm_destroy "struct rmlock *rm"
58 .Ft void
59 .Fn rm_rlock "struct rmlock *rm"  "struct rm_priotracker* tracker"
60 .Ft int
61 .Fn rm_try_rlock "struct rmlock *rm"  "struct rm_priotracker* tracker"
62 .Ft void
63 .Fn rm_wlock "struct rmlock *rm"
64 .Ft void
65 .Fn rm_runlock "struct rmlock *rm" "struct rm_priotracker* tracker"
66 .Ft void
67 .Fn rm_wunlock "struct rmlock *rm"
68 .Ft int
69 .Fn rm_wowned "const struct rmlock *rm"
70 .Ft int
71 .Fn rm_sleep "void *wchan" "struct rmlock *rm" "int priority" "const char *wmesg" "int timo"
72 .Pp
73 .Cd "options INVARIANTS"
74 .Cd "options INVARIANT_SUPPORT"
75 .Ft void
76 .Fn rm_assert "struct rmlock *rm" "int what"
77 .In sys/kernel.h
78 .Fn RM_SYSINIT "name" "struct rmlock *rm" "const char *desc"
79 .Fn RM_SYSINIT_FLAGS "name" "struct rmlock *rm" "const char *desc" "int flags"
80 .Sh DESCRIPTION
81 Read-mostly locks allow shared access to protected data by multiple threads,
82 or exclusive access by a single thread.
83 The threads with shared access are known as
84 .Em readers
85 since they only read the protected data.
86 A thread with exclusive access is known as a
87 .Em writer
88 since it can modify protected data.
89 .Pp
90 Read-mostly locks are designed to be efficient for locks almost exclusively
91 used as reader locks and as such should be used for protecting data that
92 rarely changes.
93 Acquiring an exclusive lock after the lock has been locked for shared access
94 is an expensive operation.
95 .Pp
96 Normal read-mostly locks are similar to
97 .Xr rwlock 9
98 locks and follow the same lock ordering rules as
99 .Xr rwlock 9
100 locks.
101 Read-mostly locks have full priority propagation like mutexes.
102 Unlike
103 .Xr rwlock 9 ,
104 read-mostly locks propagate priority to both readers and writers.
105 This is implemented via the
106 .Va rm_priotracker
107 structure argument supplied to
108 .Fn rm_rlock
109 and
110 .Fn rm_runlock .
111 Readers can recurse if the lock is initialized with the
112 .Dv RM_RECURSE
113 option;
114 however, writers are never allowed to recurse.
115 .Pp
116 Sleepable read-mostly locks are created by passing
117 .Dv RM_SLEEPABLE
118 to
119 .Fn rm_init_flags .
120 Unlike normal read-mostly locks,
121 sleepable read-mostly locks follow the same lock ordering rules as
122 .Xr sx 9
123 locks.
124 Sleepable read-mostly locks do not propagate priority to writers,
125 but they do propagate priority to readers.
126 Writers are permitted to sleep while holding a read-mostly lock,
127 but readers are not.
128 Unlike other sleepable locks such as
129 .Xr sx 9
130 locks,
131 readers must use try operations on other sleepable locks to avoid sleeping.
132 .Ss Macros and Functions
133 .Bl -tag -width indent
134 .It Fn rm_init "struct rmlock *rm" "const char *name"
135 Initialize the read-mostly lock
136 .Fa rm .
137 The
138 .Fa name
139 description is used solely for debugging purposes.
140 This function must be called before any other operations
141 on the lock.
142 .It Fn rm_init_flags "struct rmlock *rm" "const char *name" "int opts"
143 Similar to
144 .Fn rm_init ,
145 initialize the read-mostly lock
146 .Fa rm
147 with a set of optional flags.
148 The
149 .Fa opts
150 arguments contains one or more of the following flags:
151 .Bl -tag -width ".Dv RM_NOWITNESS"
152 .It Dv RM_NOWITNESS
153 Instruct
154 .Xr witness 4
155 to ignore this lock.
156 .It Dv RM_RECURSE
157 Allow threads to recursively acquire shared locks for
158 .Fa rm .
159 .It Dv RM_SLEEPABLE
160 Create a sleepable read-mostly lock.
161 .It Dv RM_NEW
162 If the kernel has been compiled with
163 .Cd "option INVARIANTS" ,
164 .Fn rm_init_flags
165 will assert that the
166 .Fa rm
167 has not been initialized multiple times without intervening calls to
168 .Fn rm_destroy
169 unless this option is specified.
170 .El
171 .It Fn rm_rlock "struct rmlock *rm" "struct rm_priotracker* tracker"
172 Lock
173 .Fa rm
174 as a reader using
175 .Fa tracker
176 to track read owners of a lock for priority propagation.
177 This data structure is only used internally by
178 .Nm
179 and must persist until
180 .Fn rm_runlock
181 has been called.
182 This data structure can be allocated on the stack since
183 readers cannot sleep.
184 If any thread holds this lock exclusively, the current thread blocks,
185 and its priority is propagated to the exclusive holder.
186 If the lock was initialized with the
187 .Dv RM_RECURSE
188 option the
189 .Fn rm_rlock
190 function can be called when the current thread has already acquired reader
191 access on
192 .Fa rm .
193 .It Fn rm_try_rlock "struct rmlock *rm" "struct rm_priotracker* tracker"
194 Try to lock
195 .Fa rm
196 as a reader.
197 .Fn rm_try_rlock
198 will return 0 if the lock cannot be acquired immediately;
199 otherwise,
200 the lock will be acquired and a non-zero value will be returned.
201 Note that
202 .Fn rm_try_rlock
203 may fail even while the lock is not currently held by a writer.
204 If the lock was initialized with the
205 .Dv RM_RECURSE
206 option,
207 .Fn rm_try_rlock
208 will succeed if the current thread has already acquired reader access.
209 .It Fn rm_wlock "struct rmlock *rm"
210 Lock
211 .Fa rm
212 as a writer.
213 If there are any shared owners of the lock, the current thread blocks.
214 The
215 .Fn rm_wlock
216 function cannot be called recursively.
217 .It Fn rm_runlock "struct rmlock *rm" "struct rm_priotracker* tracker"
218 This function releases a shared lock previously acquired by
219 .Fn rm_rlock .
220 The
221 .Fa tracker
222 argument must match the
223 .Fa tracker
224 argument used for acquiring the shared lock
225 .It Fn rm_wunlock "struct rmlock *rm"
226 This function releases an exclusive lock previously acquired by
227 .Fn rm_wlock .
228 .It Fn rm_destroy "struct rmlock *rm"
229 This functions destroys a lock previously initialized with
230 .Fn rm_init .
231 The
232 .Fa rm
233 lock must be unlocked.
234 .It Fn rm_wowned "const struct rmlock *rm"
235 This function returns a non-zero value if the current thread owns an
236 exclusive lock on
237 .Fa rm .
238 .It Fn rm_sleep "void *wchan" "struct rmlock *rm" "int priority" "const char *wmesg" "int timo"
239 This function atomically releases
240 .Fa rm
241 while waiting for an event.
242 The
243 .Fa rm
244 lock must be exclusively locked.
245 For more details on the parameters to this function,
246 see
247 .Xr sleep 9 .
248 .It Fn rm_assert "struct rmlock *rm" "int what"
249 This function asserts that the
250 .Fa rm
251 lock is in the state specified by
252 .Fa what .
253 If the assertions are not true and the kernel is compiled with
254 .Cd "options INVARIANTS"
255 and
256 .Cd "options INVARIANT_SUPPORT" ,
257 the kernel will panic.
258 Currently the following base assertions are supported:
259 .Bl -tag -width ".Dv RA_UNLOCKED"
260 .It Dv RA_LOCKED
261 Assert that current thread holds either a shared or exclusive lock
262 of
263 .Fa rm .
264 .It Dv RA_RLOCKED
265 Assert that current thread holds a shared lock of
266 .Fa rm .
267 .It Dv RA_WLOCKED
268 Assert that current thread holds an exclusive lock of
269 .Fa rm .
270 .It Dv RA_UNLOCKED
271 Assert that current thread holds neither a shared nor exclusive lock of
272 .Fa rm .
273 .El
274 .Pp
275 In addition, one of the following optional flags may be specified with
276 .Dv RA_LOCKED ,
277 .Dv RA_RLOCKED ,
278 or
279 .Dv RA_WLOCKED :
280 .Bl -tag -width ".Dv RA_NOTRECURSED"
281 .It Dv RA_RECURSED
282 Assert that the current thread holds a recursive lock of
283 .Fa rm .
284 .It Dv RA_NOTRECURSED
285 Assert that the current thread does not hold a recursive lock of
286 .Fa rm .
287 .El
288 .El
289 .Sh SEE ALSO
290 .Xr locking 9 ,
291 .Xr mutex 9 ,
292 .Xr panic 9 ,
293 .Xr rwlock 9 ,
294 .Xr sema 9 ,
295 .Xr sleep 9 ,
296 .Xr sx 9
297 .Sh HISTORY
298 These
299 functions appeared in
300 .Fx 7.0 .
301 .Sh AUTHORS
302 .An -nosplit
303 The
304 .Nm
305 facility was written by
306 .An "Stephan Uphoff" .
307 This manual page was written by
308 .An "Gleb Smirnoff"
309 for rwlock and modified to reflect rmlock by
310 .An "Stephan Uphoff" .
311 .Sh BUGS
312 The
313 .Nm
314 implementation is currently not optimized for single processor systems.
315 .Pp
316 .Fn rm_try_rlock
317 can fail transiently even when there is no writer, while another reader
318 updates the state on the local CPU.
319 .Pp
320 The
321 .Nm
322 implementation uses a single per CPU list shared by all
323 rmlocks in the system.
324 If rmlocks become popular, hashing to multiple per CPU queues may
325 be needed to speed up the writer lock process.