]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/man/man4/witness.4
Merge lld trunk r338150, and resolve conflicts.
[FreeBSD/FreeBSD.git] / share / man / man4 / witness.4
1 .\" Copyright (c) 2001 John H. Baldwin <jhb@FreeBSD.org>
2 .\" 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 .\"
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
23 .\" SUCH DAMAGE.
24 .\"
25 .\" $FreeBSD$
26 .\"
27 .Dd November 18, 2015
28 .Dt WITNESS 4
29 .Os
30 .Sh NAME
31 .Nm witness
32 .Nd lock validation facility
33 .Sh SYNOPSIS
34 .Cd options WITNESS
35 .Cd options WITNESS_COUNT
36 .Cd options WITNESS_KDB
37 .Cd options WITNESS_NO_VNODE
38 .Cd options WITNESS_SKIPSPIN
39 .Sh DESCRIPTION
40 The
41 .Nm
42 module keeps track of the locks acquired and released by each thread.
43 It also keeps track of the order in which locks are acquired with respect
44 to each other.
45 Each time a lock is acquired,
46 .Nm
47 uses these two lists to verify that a lock is not being acquired in the
48 wrong order.
49 If a lock order violation is detected, then a message is output to the
50 kernel console or log detailing the locks involved and the locations in
51 question.
52 Witness can also be configured to drop into the kernel debugger when an order
53 violation occurs.
54 .Pp
55 The
56 .Nm
57 code also checks various other conditions such as verifying that one
58 does not recurse on a non-recursive lock,
59 or attempt an upgrade on a shared lock held by another thread.
60 If any of these checks fail, then the kernel will panic.
61 .Pp
62 The
63 .Dv WITNESS_COUNT
64 kernel option controls the maximum number of
65 .Nm
66 entries that are tracked in the kernel.
67 The maximum number of entries can be queried via the
68 .Va debug.witness.count
69 sysctl.
70 It can also be set from the
71 .Xr loader 8
72 via the
73 .Va debug.witness.count
74 environment variable.
75 .Pp
76 The
77 .Dv WITNESS_NO_VNODE
78 kernel option tells
79 .Nm
80 to ignore locking issues between
81 .Xr vnode 9
82 objects.
83 .Pp
84 The flag that controls whether or not the kernel debugger is entered when a
85 lock order violation is detected can be set in a variety of ways.
86 By default, the flag is off, but if the
87 .Dv WITNESS_KDB
88 kernel option is
89 specified, then the flag will default to on.
90 It can also be set from the
91 .Xr loader 8
92 via the
93 .Va debug.witness.kdb
94 environment variable or after the kernel has booted via the
95 .Va debug.witness.kdb
96 sysctl.
97 If the flag is set to zero, then the debugger will not be entered.
98 If the flag is non-zero, then the debugger will be entered.
99 .Pp
100 The
101 .Nm
102 code can also be configured to skip all checks on spin mutexes.
103 By default, this flag defaults to off, but it can be turned on by
104 specifying the
105 .Dv WITNESS_SKIPSPIN
106 kernel option.
107 The flag can also be set via the
108 .Xr loader 8
109 environment variable
110 .Va debug.witness.skipspin .
111 If the variable is set to a non-zero value, then spin mutexes are skipped.
112 Once the kernel has booted, the status of this flag can be examined but not
113 set via the read-only sysctl
114 .Va debug.witness.skipspin .
115 .Pp
116 The sysctl
117 .Va debug.witness.watch
118 specifies the level of witness involvement in the system.
119 A value of 1 specifies that witness is enabled.
120 A value of 0 specifies that witness is disabled, but that can be enabled
121 again.
122 This will maintain a small amount of overhead in the system.
123 A value of -1 specifies that witness is disabled permanently and
124 cannot be enabled again.
125 The sysctl
126 .Va debug.witness.watch
127 can be set via
128 .Xr loader 8 .
129 .Pp
130 The sysctl
131 .Va debug.witness.output_channel
132 specifies the output channel used to display warnings emitted by
133 .Nm .
134 The possible values are
135 .Ql console ,
136 indicating that warnings are to be printed to the system console,
137 .Ql log ,
138 indicating that warnings are to be logged via
139 .Xr log 9 ,
140 and
141 .Ql none .
142 This sysctl can be set via
143 .Xr loader 8 .
144 .Pp
145 The
146 .Nm
147 code also provides three extra
148 .Xr ddb 4
149 commands if both
150 .Nm
151 and
152 .Xr ddb 4
153 are compiled into the kernel:
154 .Bl -ohang
155 .It Ic show locks Op thread
156 Outputs the list of locks held by a thread to the kernel console
157 along with the filename and line number at which each lock was last acquired
158 by the thread.
159 The optional
160 .Ar thread
161 argument may be either a TID,
162 PID,
163 or pointer to a thread structure.
164 If
165 .Ar thread
166 is not specified,
167 then the locks held by the current thread are displayed.
168 .It Ic show all locks
169 Outputs the list of locks held by all threads in the system to the
170 kernel console.
171 .It Ic show witness
172 Dump the current order list to the kernel console.
173 The code first displays the lock order tree for all of the sleep locks.
174 Then it displays the lock order tree for all of the spin locks.
175 Finally, it displays a list of locks that have not yet been acquired.
176 .El
177 .Sh SEE ALSO
178 .Xr ddb 4 ,
179 .Xr loader 8 ,
180 .Xr sysctl 8 ,
181 .Xr mutex 9
182 .Sh HISTORY
183 The
184 .Nm
185 code first appeared in
186 .Bsx 5.0
187 and was imported from there into
188 .Fx 5.0 .