4d06ff3103f553f61caa3b6eace0db69d4ffc56e
[dragonfly.git] / sbin / devd / devd.conf.5
1 .\"
2 .\" Copyright (c) 2002 M. Warner Losh
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. The name of the author may not be used to endorse or promote products
11 .\"    derived from this software without specific prior written permission.
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: src/sbin/devd/devd.conf.5,v 1.11 2006/10/24 20:20:41 ru Exp $
26 .\" $DragonFly: src/sbin/devd/devd.conf.5,v 1.1 2008/10/03 00:26:21 hasso Exp $
27 .\"
28 .\" The section on comments was taken from named.conf.5, which has the
29 .\" following copyright:
30 .\" Copyright (c) 1999-2000 by Internet Software Consortium
31 .\"
32 .\" Permission to use, copy, modify, and distribute this software for any
33 .\" purpose with or without fee is hereby granted, provided that the above
34 .\" copyright notice and this permission notice appear in all copies.
35 .\"
36 .\" THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
37 .\" ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
38 .\" OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
39 .\" CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
40 .\" DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
41 .\" PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
42 .\" ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
43 .\" SOFTWARE.
44 .\"
45 .Dd October 25, 2006
46 .Dt DEVD.CONF 5
47 .Os
48 .Sh NAME
49 .Nm devd.conf
50 .Nd configuration file for
51 .Xr devd 8
52 .Sh DESCRIPTION
53 .Ss General Syntax
54 A
55 .Xr devd 8
56 configuration consists of two general features, statements
57 and comments.
58 All statements end with a semicolon.
59 Many statements can contain substatements, which are also
60 terminated with a semicolon.
61 .Pp
62 The following statements are supported:
63 .Bl -tag -width ".Ic options"
64 .It Ic attach
65 Specifies various matching criteria and actions to perform when
66 a newly attached device matches said criteria.
67 .It Ic detach
68 Specifies various matching criteria and actions to perform when
69 a newly detached device matches said criteria.
70 .It Ic nomatch
71 Specifies various matching criteria and actions to perform when
72 no device driver currently loaded in the kernel claims a (new)
73 device.
74 .It Ic notify
75 Specifies various matching criteria and actions to perform when the kernel
76 sends an event notification to userland.
77 .It Ic options
78 Specifies various options and parameters for the operation of
79 .Xr devd 8 .
80 .El
81 .Pp
82 Statements may occur in any order in the configuration file, and may be
83 repeated as often as required.
84 Further details on the syntax and meaning of each statement and their
85 substatements are explained below.
86 .Pp
87 Each statement, except
88 .Ic options
89 has a priority (an arbitrary number) associated with it, where
90 .Ql 0
91 is defined as the lowest priority.
92 If two statements match the same event, only the action of the statement with
93 highest priority will be executed.
94 In this way generic statements can be overridden for devices or
95 notifications that require special attention.
96 .Pp
97 The general syntax of a statement is:
98 .Pp
99 .Bd -literal -offset indent
100 statement priority {
101         substatement "value";
102         ...
103         substatement "value";
104 };
105 .Ed
106 .Ss Sub-statements
107 The following sub-statements are supported within the
108 .Ic options
109 statement.
110 .Bl -tag -width ".Ic directory"
111 .It Ic directory Qq Ar /some/path ;
112 Adds the given directory to the list of directories from which
113 .Xr devd 8
114 will read
115 configuration files.
116 Any number of
117 .Ic directory
118 statements can be used.
119 .\" .It Ic pid-file Qq Pa /var/run/devd.pid ;
120 .\" Specifies PID file.
121 .It Ic set Ar regexp-name Qq Ar (some|regexp) ;
122 Creates a regular expression and assigns it to the variable
123 .Ar regexp-name .
124 The variable is avaiable throughout the rest of
125 the configuration file.
126 All regular expressions have an implicit
127 .Ql ^$
128 around them.
129 .El
130 .Pp
131 The following sub-statements are supported within the
132 .Ic attach
133 and
134 .Ic detach
135 statements.
136 .Bl -tag -width ".Ic directory"
137 .It Ic action Qq Ar command ;
138 Command to execute upon a successful match.
139 Example
140 .Dq Li "/etc/pccard_ether $device-name start" .
141 .It Ic class Qq Ar string ;
142 This is shorthand for
143 .Dq Ic match Qo Li class Qc Qq Ar string .
144 .It Ic device-name Qq string ;
145 This is shorthand for
146 .Dq Ic match Qo Li device-name Qc Qq Ar string .
147 This matches a device named
148 .Ar string ,
149 which is allowed to be a regular expression or a variable previously created
150 containing a regular expression.
151 The
152 .Dq Li device-name
153 variable
154 is available for later use with the
155 .Ic action
156 statement.
157 .It Ic match Qo Ar variable Qc Qq Ar value ;
158 Matches the content of
159 .Ar value
160 against
161 .Ar variable ;
162 the content of
163 .Ar value
164 may be a regular expression.
165 Not required during
166 .Ic attach
167 nor
168 .Ic detach
169 events since the
170 .Ic device-name
171 statement takes care of all device matching.
172 For a partial list of variables, see below.
173 .It Ic media-type Qq Ar string ;
174 For network devices,
175 .Ic media-type
176 will match devices that have the given media type.
177 Valid media types are:
178 .Dq Li Ethernet ,
179 .Dq Li 802.11 ,
180 .Dq Li ATM ,
181 and
182 .Dq Li CARP .
183 .It Ic subdevice Qq Ar string ;
184 This is shorthand for
185 .Dq Ic match Qo Li subdevice Qc Qq Ar string .
186 .El
187 .Pp
188 The following sub-statements are supported within the
189 .Ic nomatch
190 statement.
191 .Bl -tag -width ".Ic directory"
192 .It Ic action Qq Ar command ;
193 Same as above.
194 .It Ic match Qo Ar variable Qc Qq Ar value ;
195 Matches the content of
196 .Ar value
197 against
198 .Ar variable ;
199 the content of
200 .Ar value
201 may be a regular expression.
202 For a partial list of variables, see below.
203 .El
204 .Pp
205 The following sub-statements are supported within the
206 .Ic notify
207 statement.
208 The
209 .Dq Li notify
210 variable is avaiable inside this statement and contains, a value, depending
211 on which system and subsystem that delivered the event.
212 .Bl -tag -width ".Ic directory"
213 .It Ic action Qq Ar command ;
214 Command to execute upon a successful match.
215 Example
216 .Dq Li "/etc/rc.d/power_profile $notify" .
217 .It Ic match Qo Ar system | subsystem | type | notify Qc Qq Ar value ;
218 Any number of
219 .Ic match
220 statements can exist within a
221 .Ic notify
222 statement;
223 .Ar value
224 can be either a fixed string or a regular expression.
225 Below is a list of avaiable systems, subsystems, and types.
226 .It Ic media-type Qq Ar string ;
227 See above.
228 .El
229 .Ss Variables that can be used with the match statement
230 A partial list of variables and their possible values that can be used together
231 with the
232 .Ic match
233 statement.
234 .Pp
235 .Bl -tag -width ".Li manufacturer" -compact
236 .It Ic Variable
237 .Ic Description
238 .It Li bus
239 Device name of parent bus.
240 .It Li cisproduct
241 CIS-product.
242 .It Li cisvendor
243 CIS-vendor.
244 .It Li class
245 Device class.
246 .It Li device
247 Device ID.
248 .It Li device-name
249 Name of attached/detached device.
250 .It Li function
251 Card functions.
252 .It Li manufacturer
253 Manufacturer ID (pccard).
254 .It Li notify
255 Match the value of the
256 .Dq Li notify
257 variable.
258 .It Li product
259 Product ID (pccard).
260 .It Li serial
261 Serial Number (USB).
262 .It Li slot
263 Card slot.
264 .It Li subvendor
265 Sub-vendor ID.
266 .It Li subdevice
267 Sub-device ID.
268 .It Li subsystem
269 Matches a subsystem of a system, see below.
270 .It Li system
271 Matches a system type, see below.
272 .It Li type
273 Type of notification, see below.
274 .It Li vendor
275 Vendor ID.
276 .El
277 .Ss Notify matching
278 A partial list of systems, subsystems, and types used within the
279 .Ic notify
280 mechanism.
281 .Pp
282 .Bl -tag -width ".Li IFNET" -compact
283 .It Sy System
284 .It Li ACPI
285 Events related to the ACPI subsystem.
286 .Bl -tag -width ".Sy Subsystem" -compact
287 .It Sy Subsystem
288 .It Li ACAD
289 AC line state ($notify=0x00 is offline, 0x01 is online).
290 .It Li Button
291 Button state ($notify=0x00 is power, 0x01 is sleep).
292 .It Li CMBAT
293 Battery events.
294 .It Li Lid
295 Lid state ($notify=0x00 is closed, 0x01 is open).
296 .It Li Thermal
297 Thermal zone events.
298 .El
299 .Pp
300 .It Li IFNET
301 Events related to the network subsystem.
302 .Bl -tag -width ".Sy Subsystem" -compact
303 .It Sy Subsystem
304 .It Ar interface
305 The
306 .Dq subsystem
307 is the actual name of the network interface on which the event
308 took place.
309 .Bl -tag -width ".Li LINK_DOWN" -compact
310 .It Sy Type
311 .It Li LINK_UP
312 Carrier status changed to UP.
313 .It Li LINK_DOWN
314 Carrier status changed to DOWN.
315 .El
316 .El
317 .El
318 .Pp
319 A link state change to UP on the interface
320 .Dq Li fxp0
321 would result in the following notify event:
322 .Bd -literal -offset indent
323 system=IFNET, subsystem=fxp0, type=LINK_UP
324 .Ed
325 .Pp
326 An AC line state change to
327 .Dq offline
328 would result in the following event:
329 .Bd -literal -offset indent
330 system=ACPI, subsystem=ACAD, notify=0x00
331 .Ed
332 .Ss Comments
333 Comments may appear anywhere that whitespace may appear in a
334 configuration file.
335 To appeal to programmers of all kinds, they can
336 be written in C, C++, or shell/Perl constructs.
337 .Pp
338 C-style comments start with the two characters
339 .Ql /*
340 (slash, star) and end with
341 .Ql */
342 (star, slash).
343 Because they are completely delimited with these characters,
344 they can be used to comment only a portion of a line or to span
345 multiple lines.
346 .Pp
347 C-style comments cannot be nested.
348 For example, the following is
349 not valid because the entire comment ends with the first
350 .Ql */ :
351 .Bd -literal -offset indent
352 /* This is the start of a comment.
353    This is still part of the comment.
354 /* This is an incorrect attempt at nesting a comment. */
355    This is no longer in any comment. */
356 .Ed
357 .Pp
358 C++-style comments start with the two characters
359 .Ql //
360 (slash, slash) and continue to the end of the physical line.
361 They cannot be continued across multiple physical lines; to have
362 one logical comment span multiple lines, each line must use the
363 .Ql //
364 pair.
365 For example:
366 .Bd -literal -offset indent
367 // This is the start of a comment.  The next line
368 // is a new comment, even though it is logically
369 // part of the previous comment.
370 .Ed
371 .Sh FILES
372 .Bl -tag -width ".Pa /etc/devd.conf" -compact
373 .It Pa /etc/devd.conf
374 The
375 .Xr devd 8
376 configuration file.
377 .El
378 .Sh EXAMPLES
379 .Bd -literal
380 #
381 # This will catch link down events on the interfaces fxp0 and ath0
382 #
383 notify 0 {
384         match "system"                  "IFNET";
385         match "subsystem"               "(fxp0|ath0)";
386         match "type"                    "LINK_DOWN";
387         action "logger $subsystem is DOWN";
388 };
389
390 #
391 # Match lid open/close events
392 # These can be combined to a single event, by passing the
393 # value of $notify to the external script.
394 #
395 notify 0 {
396         match "system"                  "ACPI";
397         match "subsystem"               "Lid";
398         match "notify"                  "0x00";
399         action "logger Lid closed, we can sleep now!";
400 };
401
402 notify 0 {
403         match "system"                  "ACPI";
404         match "subsystem"               "Lid";
405         match "notify"                  "0x01";
406         action "logger Lid opened, the sleeper must awaken!";
407 };
408
409 #
410 # Try to configure ath and wi devices with pccard_ether
411 # as they are attached.
412 #
413 attach 0 {
414         device-name "(ath|wi)[0-9]+";
415         action "/etc/pccard_ether $device-name start";
416 };
417
418 #
419 # Stop ath and wi devices as they are detached from
420 # the system.
421 #
422 detach 0 {
423         device-name "(ath|wi)[0-9]+";
424         action "/etc/pccard_ether $device-name stop";
425 };
426 .Ed
427 .Pp
428 The installed
429 .Pa /etc/devd.conf
430 has many additional examples.
431 .Sh SEE ALSO
432 .Xr devd 8