xref: /freebsd/share/man/man9/lock.9 (revision af176d7306a52d525d415405875a7f9b7fe48637)
1e5e600c9SMark Murray.\"
25385e8bfSChad David.\" Copyright (C) 2002 Chad David <davidc@acns.ab.ca>. All rights reserved.
3e5e600c9SMark Murray.\"
4e5e600c9SMark Murray.\" Redistribution and use in source and binary forms, with or without
5e5e600c9SMark Murray.\" modification, are permitted provided that the following conditions
6e5e600c9SMark Murray.\" are met:
7e5e600c9SMark Murray.\" 1. Redistributions of source code must retain the above copyright
85385e8bfSChad David.\"    notice(s), this list of conditions and the following disclaimer as
95385e8bfSChad David.\"    the first lines of this file unmodified other than the possible
105385e8bfSChad David.\"    addition of one or more copyright notices.
11e5e600c9SMark Murray.\" 2. Redistributions in binary form must reproduce the above copyright
125385e8bfSChad David.\"    notice(s), this list of conditions and the following disclaimer in the
13e5e600c9SMark Murray.\"    documentation and/or other materials provided with the distribution.
14e5e600c9SMark Murray.\"
155385e8bfSChad David.\" THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) ``AS IS'' AND ANY
165385e8bfSChad David.\" EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
175385e8bfSChad David.\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
185385e8bfSChad David.\" DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) BE LIABLE FOR ANY
195385e8bfSChad David.\" DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
205385e8bfSChad David.\" (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
215385e8bfSChad David.\" SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
225385e8bfSChad David.\" CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
235385e8bfSChad David.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
245385e8bfSChad David.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
255385e8bfSChad David.\" DAMAGE.
26e5e600c9SMark Murray.\"
27e5e600c9SMark Murray.\" $FreeBSD$
28e5e600c9SMark Murray.\"
29f0c5fe2dSAttilio Rao.Dd February 13, 2008
30e5e600c9SMark Murray.Dt LOCK 9
313d45e180SRuslan Ermilov.Os
32e5e600c9SMark Murray.Sh NAME
33e5e600c9SMark Murray.Nm lockinit ,
345385e8bfSChad David.Nm lockdestroy ,
355385e8bfSChad David.Nm lockmgr ,
365385e8bfSChad David.Nm lockstatus ,
37fc2d483eSAttilio Rao.Nm lockmgr_disown ,
38fa885265SAttilio Rao.Nm lockmgr_printinfo ,
39f0c5fe2dSAttilio Rao.Nm lockmgr_recursed ,
40f0c5fe2dSAttilio Rao.Nm lockmgr_assert
415385e8bfSChad David.Nd "lockmgr family of functions"
42e5e600c9SMark Murray.Sh SYNOPSIS
4332eef9aeSRuslan Ermilov.In sys/types.h
445385e8bfSChad David.In sys/lockmgr.h
45e5e600c9SMark Murray.Ft void
46c4a7ba6eSChad David.Fn lockinit "struct lock *lkp" "int prio" "const char *wmesg" "int timo" "int flags"
475385e8bfSChad David.Ft void
485385e8bfSChad David.Fn lockdestroy "struct lock *lkp"
49e5e600c9SMark Murray.Ft int
50623c393dSAttilio Rao.Fn lockmgr "struct lock *lkp" "u_int flags" "struct mtx *interlkp"
515385e8bfSChad David.Ft int
52f16b3c0dSChad David.Fn lockstatus "struct lock *lkp" "struct thread *td"
535385e8bfSChad David.Ft void
54fc2d483eSAttilio Rao.Fn lockmgr_disown "struct lock *lkp"
55fc2d483eSAttilio Rao.Ft void
565385e8bfSChad David.Fn lockmgr_printinfo "struct lock *lkp"
57fa885265SAttilio Rao.Ft int
58fa885265SAttilio Rao.Fn lockmgr_recursed "struct lock *lkp"
59f0c5fe2dSAttilio Rao.Pp
60f0c5fe2dSAttilio Rao.Cd "options INVARIANTS"
61f0c5fe2dSAttilio Rao.Cd "options INVARIANT_SUPPORT"
62f0c5fe2dSAttilio Rao.Ft void
63f0c5fe2dSAttilio Rao.Fn lockmgr_assert "struct lock *lkp" "int what"
64e5e600c9SMark Murray.Sh DESCRIPTION
655385e8bfSChad DavidThe
66e5e600c9SMark Murray.Fn lockinit
675385e8bfSChad Davidfunction is used to initialize a lock.
68ffa23792SChad DavidIt must be called before any operation can be performed on a lock.
695385e8bfSChad DavidIts arguments are:
705385e8bfSChad David.Bl -tag -width ".Fa wmesg"
715385e8bfSChad David.It Fa lkp
725385e8bfSChad DavidA pointer to the lock to initialize.
735385e8bfSChad David.It Fa prio
745385e8bfSChad DavidThe priority passed to
75e7573e7aSJohn Baldwin.Xr sleep 9 .
765385e8bfSChad David.It Fa wmesg
775385e8bfSChad DavidThe lock message.
785385e8bfSChad DavidThis is used for both debugging output and
79e7573e7aSJohn Baldwin.Xr sleep 9 .
805385e8bfSChad David.It Fa timo
815385e8bfSChad DavidThe timeout value passed to
82e7573e7aSJohn Baldwin.Xr sleep 9 .
835385e8bfSChad David.It Fa flags
845385e8bfSChad DavidThe flags the lock is to be initialized with.
85abd94b3dSAttilio Rao.Bl -tag -width ".Dv LK_CANRECURSE"
865385e8bfSChad David.It Dv LK_NOWAIT
875385e8bfSChad DavidDo not sleep while acquiring the lock.
885385e8bfSChad David.It Dv LK_SLEEPFAIL
895385e8bfSChad DavidFail after a sleep.
905385e8bfSChad David.It Dv LK_CANRECURSE
915385e8bfSChad DavidAllow recursive exclusive locks.
92f3a331b7SMaxim Konovalov.It Dv LK_NOSHARE
93f3a331b7SMaxim KonovalovAllow exclusive locks only.
94abd94b3dSAttilio Rao.It Dv LK_NOWITNESS
95abd94b3dSAttilio RaoInstruct
96abd94b3dSAttilio Rao.Xr witness 4
97abd94b3dSAttilio Raoto ignore this lock.
98abd94b3dSAttilio Rao.It Dv LK_NODUP
99abd94b3dSAttilio Rao.Xr witness 4
100abd94b3dSAttilio Raoshould log messages about duplicate locks being acquired.
1015385e8bfSChad David.It Dv LK_TIMELOCK
1025385e8bfSChad DavidUse
1035385e8bfSChad David.Fa timo
1045385e8bfSChad Davidduring a sleep; otherwise, 0 is used.
1055385e8bfSChad David.El
1065385e8bfSChad David.El
107e5e600c9SMark Murray.Pp
1085385e8bfSChad DavidThe
1095385e8bfSChad David.Fn lockdestroy
1105385e8bfSChad Davidfunction is used to destroy a lock, and while it is called in a number of
1115385e8bfSChad Davidplaces in the kernel, it currently does nothing.
1125385e8bfSChad David.Pp
1135385e8bfSChad DavidThe
1145385e8bfSChad David.Fn lockmgr
1155385e8bfSChad Davidfunction handles general locking functionality within the kernel, including
1165385e8bfSChad Davidsupport for shared and exclusive locks, and recursion.
1175385e8bfSChad David.Fn lockmgr
1185385e8bfSChad Davidis also able to upgrade and downgrade locks.
1195385e8bfSChad David.Pp
1205385e8bfSChad DavidIts arguments are:
1215385e8bfSChad David.Bl -tag -width ".Fa interlkp"
1225385e8bfSChad David.It Fa lkp
1235385e8bfSChad DavidA pointer to the lock to manipulate.
1245385e8bfSChad David.It Fa flags
1255385e8bfSChad DavidFlags indicating what action is to be taken.
126100f2415SAttilio Rao.Bl -tag -width ".Dv LK_CANRECURSE"
127e5e600c9SMark Murray.It Dv LK_SHARED
1285385e8bfSChad DavidAcquire a shared lock.
1295385e8bfSChad DavidIf an exclusive lock is currently held, it will be downgraded.
130e5e600c9SMark Murray.It Dv LK_EXCLUSIVE
1315385e8bfSChad DavidAcquire an exclusive lock.
1325385e8bfSChad DavidIf an exclusive lock is already held, and
1338271a102SRuslan Ermilov.Dv LK_CANRECURSE
1345385e8bfSChad Davidis not set, the system will
1355385e8bfSChad David.Xr panic 9 .
136e5e600c9SMark Murray.It Dv LK_DOWNGRADE
1375385e8bfSChad DavidDowngrade exclusive lock to a shared lock.
1385385e8bfSChad DavidDowngrading a shared lock is not permitted.
1395385e8bfSChad DavidIf an exclusive lock has been recursed, all references will be downgraded.
1405385e8bfSChad David.It Dv LK_UPGRADE
1415385e8bfSChad DavidUpgrade a shared lock to an exclusive lock.
1425385e8bfSChad DavidIf this call fails, the shared lock is lost.
143653ed924SKonstantin BelousovDuring the upgrade, the shared lock could
144653ed924SKonstantin Belousovbe temporarily dropped.
145ffa23792SChad DavidAttempts to upgrade an exclusive lock will cause a
1465385e8bfSChad David.Xr panic 9 .
147e5e600c9SMark Murray.It Dv LK_RELEASE
1485385e8bfSChad DavidRelease the lock.
1495385e8bfSChad DavidReleasing a lock that is not held can cause a
1505385e8bfSChad David.Xr panic 9 .
151e5e600c9SMark Murray.It Dv LK_DRAIN
1525385e8bfSChad DavidWait for all activity on the lock to end, then mark it decommissioned.
1535385e8bfSChad DavidThis is used before freeing a lock that is part of a piece of memory that is
1545385e8bfSChad Davidabout to be freed.
1555385e8bfSChad David(As documented in
156fe08efe6SRuslan Ermilov.In sys/lockmgr.h . )
1575385e8bfSChad David.It Dv LK_SLEEPFAIL
1585385e8bfSChad DavidFail if operation has slept.
1595385e8bfSChad David.It Dv LK_NOWAIT
1605385e8bfSChad DavidDo not allow the call to sleep.
1615385e8bfSChad DavidThis can be used to test the lock.
1625385e8bfSChad David.It Dv LK_CANRECURSE
1635385e8bfSChad DavidAllow recursion on an exclusive lock.
1645385e8bfSChad DavidFor every lock there must be a release.
1655385e8bfSChad David.It Dv LK_INTERLOCK
1665385e8bfSChad DavidUnlock the interlock (which should be locked already).
167e5e600c9SMark Murray.El
1685385e8bfSChad David.It Fa interlkp
1695385e8bfSChad DavidAn interlock mutex for controlling group access to the lock.
1705385e8bfSChad DavidIf
1715385e8bfSChad David.Dv LK_INTERLOCK
1725385e8bfSChad Davidis specified,
1735385e8bfSChad David.Fn lockmgr
1745385e8bfSChad Davidassumes
1755385e8bfSChad David.Fa interlkp
1765385e8bfSChad Davidis currently owned and not recursed, and will return it unlocked.
1775385e8bfSChad DavidSee
1785385e8bfSChad David.Xr mtx_assert 9 .
1795385e8bfSChad David.El
1805385e8bfSChad David.Pp
1815385e8bfSChad DavidThe
1825385e8bfSChad David.Fn lockstatus
1835385e8bfSChad Davidfunction returns the status of the lock in relation to the
1845385e8bfSChad David.Vt thread
1855385e8bfSChad Davidpassed to it.
1865385e8bfSChad DavidNote that if
1875385e8bfSChad David.Fa td
1885385e8bfSChad Davidis
1895385e8bfSChad David.Dv NULL
1905385e8bfSChad Davidand an exclusive lock is held,
1915385e8bfSChad David.Dv LK_EXCLUSIVE
1925385e8bfSChad Davidwill be returned.
1935385e8bfSChad David.Pp
1945385e8bfSChad DavidThe
195fc2d483eSAttilio Rao.Fn lockmgr_disown
196584b5892SChristian Bruefferfunction switches the owner from curthread to be
197fc2d483eSAttilio Rao.Dv LK_KERNPROC,
198584b5892SChristian Bruefferif the lock is already held.
199fc2d483eSAttilio Rao.Pp
200fc2d483eSAttilio RaoThe
2015385e8bfSChad David.Fn lockmgr_printinfo
2025385e8bfSChad Davidfunction prints debugging information about the lock.
2035385e8bfSChad DavidIt is used primarily by
2045385e8bfSChad David.Xr VOP_PRINT 9
2055385e8bfSChad Davidfunctions.
206fa885265SAttilio Rao.Pp
207fa885265SAttilio RaoThe
208fa885265SAttilio Rao.Fn lockmgr_recursed
209fa885265SAttilio Raofunction returns true if the lock is recursed, 0
210fa885265SAttilio Raootherwise.
211f0c5fe2dSAttilio Rao.Pp
212f0c5fe2dSAttilio RaoWhen compiled with
213f0c5fe2dSAttilio Rao.Cd "options INVARIANTS"
214f0c5fe2dSAttilio Raoand
215f0c5fe2dSAttilio Rao.Cd "options INVARIANT_SUPPORT" ,
216f0c5fe2dSAttilio Raothe
217f0c5fe2dSAttilio Rao.Fn lockmgr_assert
218f0c5fe2dSAttilio Raofunction tests
219f0c5fe2dSAttilio Rao.Fa lkp
220f0c5fe2dSAttilio Raofor the assertions specified in
221f0c5fe2dSAttilio Rao.Fa what ,
222f0c5fe2dSAttilio Raoand panics if they are not met.
223f0c5fe2dSAttilio RaoOne of the following assertions must be specified:
224f0c5fe2dSAttilio Rao.Bl -tag -width ".Dv KA_UNLOCKED"
225f0c5fe2dSAttilio Rao.It Dv KA_LOCKED
226f0c5fe2dSAttilio RaoAssert that the current thread has either a shared or an exclusive lock on the
227f0c5fe2dSAttilio Rao.Vt lkp
228f0c5fe2dSAttilio Raolock pointed to by the first argument.
229f0c5fe2dSAttilio Rao.It Dv KA_SLOCKED
230f0c5fe2dSAttilio RaoAssert that the current thread has a shared lock on the
231f0c5fe2dSAttilio Rao.Vt lkp
232f0c5fe2dSAttilio Raolock pointed to by the first argument.
233f0c5fe2dSAttilio Rao.It Dv KA_XLOCKED
234f0c5fe2dSAttilio RaoAssert that the current thread has an exclusive lock on the
235f0c5fe2dSAttilio Rao.Vt lkp
236f0c5fe2dSAttilio Raolock pointed to by the first argument.
237f0c5fe2dSAttilio Rao.It Dv KA_UNLOCKED
238f0c5fe2dSAttilio RaoAssert that the current thread has no lock on the
239f0c5fe2dSAttilio Rao.Vt lkp
240f0c5fe2dSAttilio Raolock pointed to by the first argument.
241f0c5fe2dSAttilio Rao.It Dv KA_HELD
242af176d73SChristian BruefferAssert that an unspecified thread has a lock on the
243f0c5fe2dSAttilio Rao.Vt lkp
244f0c5fe2dSAttilio Raolock pointed to by the first argument.
245f0c5fe2dSAttilio Rao.It Dv KA_UNHELD
246f0c5fe2dSAttilio RaoAssert that no thread has a lock on the
247f0c5fe2dSAttilio Rao.Vt lkp
248f0c5fe2dSAttilio Raolock pointed to by the first argument.
249f0c5fe2dSAttilio Rao.El
250f0c5fe2dSAttilio Rao.Pp
251f0c5fe2dSAttilio RaoIn addition, one of the following optional assertions can be used with
252f0c5fe2dSAttilio Raoeither an
253f0c5fe2dSAttilio Rao.Dv KA_LOCKED ,
254f0c5fe2dSAttilio Rao.Dv KA_SLOCKED ,
255f0c5fe2dSAttilio Raoor
256f0c5fe2dSAttilio Rao.Dv KA_XLOCKED
257f0c5fe2dSAttilio Raoassertion:
258f0c5fe2dSAttilio Rao.Bl -tag -width ".Dv KA_NOTRECURSED"
259f0c5fe2dSAttilio Rao.It Dv KA_RECURSED
260f0c5fe2dSAttilio RaoAssert that the current thread has a recursed lock on
261f0c5fe2dSAttilio Rao.Fa lkp .
262f0c5fe2dSAttilio Rao.It Dv KA_NOTRECURSED
263af176d73SChristian BruefferAssert that the current thread does not have a recursed lock on
264f0c5fe2dSAttilio Rao.Fa lkp .
265f0c5fe2dSAttilio Rao.El
266f0c5fe2dSAttilio Rao.Pp
267af176d73SChristian BruefferNote that
268f0c5fe2dSAttilio Rao.Dv KA_HELD
269f0c5fe2dSAttilio Raoand
270f0c5fe2dSAttilio Rao.Dv KA_UNHELD
271af176d73SChristian Bruefferusage is highly discouraged.
272af176d73SChristian BruefferThey are intended to cater a bad behaviour
273af176d73SChristian Bruefferintroduced by buffer cache lock handling.
274af176d73SChristian BruefferThey will hopefully be
275f0c5fe2dSAttilio Raomade useless by revisiting such locks.
276e5e600c9SMark Murray.Sh RETURN VALUES
2775385e8bfSChad DavidThe
2785385e8bfSChad David.Fn lockmgr
2795385e8bfSChad Davidfunction returns 0 on success and non-zero on failure.
2805385e8bfSChad David.Pp
2815385e8bfSChad DavidThe
2825385e8bfSChad David.Fn lockstatus
2835385e8bfSChad Davidfunction returns:
2845385e8bfSChad David.Bl -tag -width ".Dv LK_EXCLUSIVE"
2855385e8bfSChad David.It Dv LK_EXCLUSIVE
2865385e8bfSChad DavidAn exclusive lock is held by the thread
2875385e8bfSChad David.Fa td .
2885385e8bfSChad David.It Dv LK_EXCLOTHER
2895385e8bfSChad DavidAn exclusive lock is held by someone other than the thread
2905385e8bfSChad David.Fa td .
2915385e8bfSChad David.It Dv LK_SHARED
2925385e8bfSChad DavidA shared lock is held.
2935385e8bfSChad David.It Li 0
2945385e8bfSChad DavidThe lock is not held by anyone.
2955385e8bfSChad David.El
2965385e8bfSChad David.Sh ERRORS
2975385e8bfSChad David.Fn lockmgr
2985385e8bfSChad Davidfails if:
2995385e8bfSChad David.Bl -tag -width Er
3005385e8bfSChad David.It Bq Er EBUSY
3018271a102SRuslan Ermilov.Dv LK_FORCEUPGRADE
3025385e8bfSChad Davidwas requested and another thread had already requested a lock upgrade.
3035385e8bfSChad David.It Bq Er EBUSY
3045385e8bfSChad David.Dv LK_NOWAIT
3055385e8bfSChad Davidwas set, and a sleep would have been required.
3065385e8bfSChad David.It Bq Er ENOLCK
3078271a102SRuslan Ermilov.Dv LK_SLEEPFAIL
3085385e8bfSChad Davidwas set and
3095385e8bfSChad David.Fn lockmgr
3105385e8bfSChad Daviddid sleep.
3115385e8bfSChad David.It Bq Er EINTR
3128271a102SRuslan Ermilov.Dv PCATCH
3135385e8bfSChad Davidwas set in the lock priority, and a signal was delivered during a sleep.
3145385e8bfSChad DavidNote the
315e5e600c9SMark Murray.Er ERESTART
3165385e8bfSChad Daviderror below.
3175385e8bfSChad David.It Bq Er ERESTART
3185385e8bfSChad David.Dv PCATCH
3195385e8bfSChad Davidwas set in the lock priority, a signal was delivered during a sleep,
3205385e8bfSChad Davidand the system call is to be restarted.
3215385e8bfSChad David.It Bq Er EWOULDBLOCK
3225385e8bfSChad Davida non-zero timeout was given, and the timeout expired.
3235385e8bfSChad David.El
3245385e8bfSChad David.Sh LOCKS
3255385e8bfSChad DavidIf
3265385e8bfSChad David.Dv LK_INTERLOCK
3275385e8bfSChad Davidis passed in the
3285385e8bfSChad David.Fa flags
3295385e8bfSChad Davidargument to
3305385e8bfSChad David.Fn lockmgr ,
3315385e8bfSChad Davidthe
3325385e8bfSChad David.Fa interlkp
3335385e8bfSChad Davidmust be held prior to calling
3345385e8bfSChad David.Fn lockmgr ,
3355385e8bfSChad Davidand will be returned unlocked.
3365385e8bfSChad David.Pp
3375385e8bfSChad DavidUpgrade attempts that fail result in the loss of the lock that
3385385e8bfSChad Davidis currently held.
3395385e8bfSChad DavidAlso, it is invalid to upgrade an
3405385e8bfSChad Davidexclusive lock, and a
3415385e8bfSChad David.Xr panic 9
3425385e8bfSChad Davidwill be the result of trying.
3435385e8bfSChad David.Sh SEE ALSO
344a280550aSJulian Elischer.Xr condvar 9 ,
345a280550aSJulian Elischer.Xr locking 9 ,
346a280550aSJulian Elischer.Xr mutex 9 ,
347a280550aSJulian Elischer.Xr rwlock 9 ,
348e7573e7aSJohn Baldwin.Xr sleep 9 ,
349a280550aSJulian Elischer.Xr sx 9 ,
3505385e8bfSChad David.Xr mtx_assert 9 ,
3515385e8bfSChad David.Xr panic 9 ,
3525385e8bfSChad David.Xr VOP_PRINT 9
3535385e8bfSChad David.Sh AUTHORS
354571dba6eSHiten PandyaThis manual page was written by
3555385e8bfSChad David.An Chad David Aq davidc@acns.ab.ca .
356