]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/devd/devd.conf.5
cdn-patch: offer option to mount /etc/keys before attaching geli devices
[FreeBSD/FreeBSD.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$
26 .\"
27 .\" The section on comments was taken from named.conf.5, which has the
28 .\" following copyright:
29 .\" Copyright (c) 1999-2000 by Internet Software Consortium
30 .\"
31 .\" Permission to use, copy, modify, and distribute this software for any
32 .\" purpose with or without fee is hereby granted, provided that the above
33 .\" copyright notice and this permission notice appear in all copies.
34 .\"
35 .\" THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
36 .\" ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
37 .\" OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
38 .\" CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
39 .\" DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
40 .\" PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
41 .\" ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
42 .\" SOFTWARE.
43 .\"
44 .Dd May 31, 2019
45 .Dt DEVD.CONF 5
46 .Os
47 .Sh NAME
48 .Nm devd.conf
49 .Nd configuration file for
50 .Xr devd 8
51 .Sh DESCRIPTION
52 .Ss General Syntax
53 A
54 .Xr devd 8
55 configuration consists of two general features, statements
56 and comments.
57 All statements end with a semicolon.
58 Many statements can contain substatements, which are also
59 terminated with a semicolon.
60 .Pp
61 The following statements are supported:
62 .Bl -tag -width ".Ic options"
63 .It Ic attach
64 Specifies various matching criteria and actions to perform when
65 a newly attached device matches said criteria.
66 .It Ic detach
67 Specifies various matching criteria and actions to perform when
68 a newly detached device matches said criteria.
69 .It Ic nomatch
70 Specifies various matching criteria and actions to perform when
71 no device driver currently loaded in the kernel claims a (new)
72 device.
73 .It Ic notify
74 Specifies various matching criteria and actions to perform when the kernel
75 sends an event notification to userland.
76 .It Ic options
77 Specifies various options and parameters for the operation of
78 .Xr devd 8 .
79 .El
80 .Pp
81 Statements may occur in any order in the configuration file, and may be
82 repeated as often as required.
83 Further details on the syntax and meaning of each statement and their
84 substatements are explained below.
85 .Pp
86 Each statement, except
87 .Ic options
88 has a priority (an arbitrary number) associated with it, where
89 .Ql 0
90 is defined as the lowest priority.
91 If two statements match the same event, only the action of the statement with
92 highest priority will be executed.
93 In this way generic statements can be overridden for devices or
94 notifications that require special attention.
95 .Pp
96 The general syntax of a statement is:
97 .Bd -literal -offset indent
98 statement priority {
99         substatement "value";
100         ...
101         substatement "value";
102 };
103 .Ed
104 .Ss Sub-statements
105 The following sub-statements are supported within the
106 .Ic options
107 statement.
108 .Bl -tag -width ".Ic directory"
109 .It Ic directory Qq Ar /some/path ;
110 Adds the given directory to the list of directories from which
111 .Xr devd 8
112 will read all files named "*.conf" as further
113 configuration files.
114 Any number of
115 .Ic directory
116 statements can be used.
117 .It Ic pid-file Qq Pa /var/run/devd.pid ;
118 Specifies PID file.
119 .It Ic set Ar regexp-name Qq Ar (some|regexp) ;
120 Creates a regular expression and assigns it to the variable
121 .Ar regexp-name .
122 The variable is available throughout the rest of
123 the configuration file.
124 If the string begins with
125 .Ql \&! ,
126 it matches if the regular expression formed by the rest of the string
127 does not match.
128 All regular expressions have an implicit
129 .Ql ^$
130 around them.
131 .El
132 .Pp
133 The following sub-statements are supported within the
134 .Ic attach
135 and
136 .Ic detach
137 statements.
138 .Bl -tag -width ".Ic directory"
139 .It Ic action Qq Ar command ;
140 Command to execute upon a successful match.
141 Example
142 .Dq Li "/etc/pccard_ether $device-name start" .
143 .It Ic class Qq Ar string ;
144 This is shorthand for
145 .Dq Ic match Qo Li class Qc Qq Ar string .
146 .It Ic device-name Qq string ;
147 This is shorthand for
148 .Dq Ic match Qo Li device-name Qc Qq Ar string .
149 This matches a device named
150 .Ar string ,
151 which is allowed to be a regular expression or a variable previously created
152 containing a regular expression.
153 The
154 .Dq Li device-name
155 variable
156 is available for later use with the
157 .Ic action
158 statement.
159 .It Ic match Qo Ar variable Qc Qq Ar value ;
160 Matches the content of
161 .Ar value
162 against
163 .Ar variable ;
164 the content of
165 .Ar value
166 may be a regular expression.
167 Not required during
168 .Ic attach
169 nor
170 .Ic detach
171 events since the
172 .Ic device-name
173 statement takes care of all device matching.
174 For a partial list of variables, see below.
175 .It Ic media-type Qq Ar string ;
176 For network devices,
177 .Ic media-type
178 will match devices that have the given media type.
179 Valid media types are:
180 .Dq Li Ethernet ,
181 .Dq Li Tokenring ,
182 .Dq Li FDDI ,
183 .Dq Li 802.11 ,
184 and
185 .Dq Li ATM .
186 .It Ic subdevice Qq Ar string ;
187 This is shorthand for
188 .Dq Ic match Qo Li subdevice Qc Qq Ar string .
189 .El
190 .Pp
191 The following sub-statements are supported within the
192 .Ic nomatch
193 statement.
194 .Bl -tag -width ".Ic directory"
195 .It Ic action Qq Ar command ;
196 Same as above.
197 .It Ic match Qo Ar variable Qc Qq Ar value ;
198 Matches the content of
199 .Ar value
200 against
201 .Ar variable ;
202 the content of
203 .Ar value
204 may be a regular expression.
205 For a partial list of variables, see below.
206 .El
207 .Pp
208 The following sub-statements are supported within the
209 .Ic notify
210 statement.
211 The
212 .Dq Li notify
213 variable is available inside this statement and contains, a value, depending
214 on which system and subsystem that delivered the event.
215 .Bl -tag -width ".Ic directory"
216 .It Ic action Qq Ar command ;
217 Command to execute upon a successful match.
218 Example
219 .Dq Li "/etc/rc.d/power_profile $notify" .
220 .It Ic match Qo Ar system | subsystem | type | notify Qc Qq Ar value ;
221 Any number of
222 .Ic match
223 statements can exist within a
224 .Ic notify
225 statement;
226 .Ar value
227 can be either a fixed string or a regular expression.
228 Below is a list of available systems, subsystems, and types.
229 .It Ic media-type Qq Ar string ;
230 See above.
231 .El
232 .Ss Variables that can be used with the match statement
233 A partial list of variables and their possible values that can be used together
234 with the
235 .Ic match
236 statement.
237 The variables are published by the bus based on characteristics of the device
238 that generated the event (for device events).
239 Variables for other classes of events are dependent on those events.
240 .Pp
241 .Bl -tag -width ".Li manufacturer" -compact
242 .It Ic Variable
243 .Ic Description
244 .It Li *
245 The entire message from the current event.
246 .It Li _
247 The entire message from the current event, after the initial type character.
248 .It Li timestamp
249 The time this event was processed, in seconds since 1970 dot fraction.
250 .It Li bus
251 Device name of parent bus.
252 .It Li cdev
253 Device node path if one is created by the
254 .Xr devfs 5
255 filesystem.
256 .It Li cisproduct
257 CIS-product.
258 .It Li cisvendor
259 CIS-vendor.
260 .It Li class
261 Device class.
262 .It Li comm
263 Executable name (kernel).
264 .It Li core
265 Path to core file (kernel).
266 .It Li device
267 Device ID.
268 .It Li devclass
269 Device Class (USB).
270 .It Li devsubclass
271 Device Sub-class (USB).
272 .It Li device-name
273 Name of attached/detached device.
274 .It Li endpoints
275 Endpoint count (USB).
276 .It Li function
277 Card functions.
278 .It Li interface
279 Interface ID (USB).
280 .It Li intclass
281 Interface Class (USB).
282 .It Li intprotocol
283 Interface Protocol (USB).
284 .It Li intsubclass
285 Interface Sub-class (USB).
286 .It Li jail
287 Jail name for the process triggering the rule (RCTL).
288 .It Li manufacturer
289 Manufacturer ID (pccard).
290 .It Li mode
291 Peripheral mode (USB).
292 .It Li notify
293 Match the value of the
294 .Dq Li notify
295 variable.
296 .It Li parent
297 Parent device.
298 .It Li pid
299 PID of the process triggering the rule (RCTL).
300 .It Li port
301 Hub port number (USB).
302 .It Li product
303 Product ID (pccard/USB).
304 .It Li release
305 Hardware revision (USB).
306 .It Li ruid
307 Real UID of the process triggering the rule (RCTL).
308 .It Li rule
309 Rule (RCTL).
310 .It Li sernum
311 Serial Number (USB).
312 .It Li slot
313 Card slot.
314 .It Li subvendor
315 Sub-vendor ID.
316 .It Li subdevice
317 Sub-device ID.
318 .It Li subsystem
319 Matches a subsystem of a system, see below.
320 .It Li system
321 Matches a system type, see below.
322 .It Li type
323 Type of notification, see below.
324 .It Li vendor
325 Vendor ID.
326 .El
327 .Ss Notify matching
328 A partial list of systems, subsystems, and types used within the
329 .Ic notify
330 mechanism.
331 .Pp
332 .Bl -tag -width ".Li coretemp" -compact
333 .It Sy System
334 .It Li ACPI
335 Events related to the ACPI subsystem.
336 .Bl -tag -width ".Sy Subsystem" -compact
337 .It Sy Subsystem
338 .It Li ACAD
339 AC line state ($notify=0x00 is offline, 0x01 is online).
340 .It Li Button
341 Button state ($notify=0x00 is power, 0x01 is sleep).
342 .It Li CMBAT
343 Battery events.
344 .It Li Dock
345 Dock state ($notify=0x00 is undocked, 0x01 is docked).
346 .It Li Lid
347 Lid state ($notify=0x00 is closed, 0x01 is open).
348 .It Li PROCESSOR
349 Processor state/configuration ($notify=0x81 is a change in available Cx states).
350 .It Li Resume
351 Resume notification.
352 .It Li Suspend
353 Suspend notification.
354 .It Li Thermal
355 Thermal zone events.
356 .El
357 .Pp
358 .It Li CARP
359 Events related to the
360 .Xr carp 4
361 protocol.
362 .Bl -tag -width ".Sy Subsystem" -compact
363 .It Sy Subsystem
364 .It Ar vhid@interface
365 The
366 .Dq subsystem
367 contains the actual CARP vhid and the name of the network interface
368 on which the event took place.
369 .Bl -tag -width ".Li MASTER" -compact
370 .It Sy Type
371 .It Li MASTER
372 Node become the master for a virtual host.
373 .It Li BACKUP
374 Node become the backup for a virtual host.
375 .El
376 .El
377 .Pp
378 .It Li IFNET
379 Events related to the network subsystem.
380 .Bl -tag -width ".Sy Subsystem" -compact
381 .It Sy Subsystem
382 .It Ar interface
383 The
384 .Dq subsystem
385 is the actual name of the network interface on which the event
386 took place.
387 .Bl -tag -width ".Li LINK_DOWN" -compact
388 .It Sy Type
389 .It Li LINK_UP
390 Carrier status changed to UP.
391 .It Li LINK_DOWN
392 Carrier status changed to DOWN.
393 .It Li ATTACH
394 The network interface is attached to the system.
395 .It Li DETACH
396 The network interface is detached from the system.
397 .El
398 .El
399 .Pp
400 .It Li DEVFS
401 Events related to the
402 .Xr devfs 5
403 filesystem.
404 .Bl -tag -width ".Sy Subsystem" -compact
405 .It Sy Subsystem
406 .It Li CDEV
407 .Bl -tag -width ".Li DESTROY" -compact
408 .It Sy Type
409 .It Li CREATE
410 The
411 .Xr devfs 5
412 node is created.
413 .It Li DESTROY
414 The
415 .Xr devfs 5
416 node is destroyed.
417 .El
418 .El
419 .Pp
420 .It Li GEOM
421 Events related to the
422 .Xr geom 4
423 framework.
424 The difference compared to
425 .Li DEVFS
426 is that
427 .Li GEOM
428 only includes disk-like devices.
429 .Bl -tag -width ".Sy Subsystem" -compact
430 .It Sy Subsystem
431 .It Li DEV
432 .Bl -tag -width ".Li MEDIACHANGE" -compact
433 .It Sy Type
434 .It Li CREATE
435 A
436 .Xr geom 4
437 device node is created.
438 .It Li DESTROY
439 A
440 .Xr geom 4
441 device node is destroyed.
442 .It Li GEOM::physpath
443 The physical path of a device has changed.
444 .It Li MEDIACHANGE
445 Physical media has changed.
446 .El
447 .El
448 .Pp
449 .It Li RCTL
450 Events related to the
451 .Xr rctl 8
452 framework.
453 .Bl -tag -width ".Sy Subsystem" -compact
454 .It Sy Subsystem
455 .It Li rule
456 .Bl -tag -width ".Li matched" -compact
457 .It Sy Type
458 .It Li matched
459 A rule with action specified as "devctl" was triggered.
460 .El
461 .El
462 .Pp
463 .It Li USB
464 Events related to the USB subsystem.
465 .Bl -tag -width ".Sy Subsystem" -compact
466 .It Sy Subsystem
467 .It Li DEVICE
468 .Bl -tag -width ".Li DETACH" -compact
469 .It Sy Type
470 .It Li ATTACH
471 USB device is attached to the system.
472 .It Li DETACH
473 USB device is detached from the system.
474 .El
475 .It Li INTERFACE
476 .Bl -tag -width ".Li DETACH" -compact
477 .It Sy Type
478 .It Li ATTACH
479 USB interface is attached to a device.
480 .It Li DETACH
481 USB interface is detached from a device.
482 .El
483 .El
484 .Pp
485 .It Li coretemp
486 Events related to the
487 .Xr coretemp 4
488 device.
489 .Bl -tag -width ".Sy Subsystem" -compact
490 .It Sy Subsystem
491 .It Li Thermal
492 Notification that the CPU core has reached critical temperature.
493 .Bl -tag -width ".Ar temperature" -compact
494 .It Sy Type
495 .It Ar temperature
496 String containing the temperature of the core that has become too hot.
497 .El
498 .El
499 .Pp
500 .It Li kern
501 Events related to the kernel.
502 .Bl -tag -width ".Sy Subsystem" -compact
503 .It Sy Subsystem
504 .It Li power
505 .Bl -tag -width ".li resume" -compact
506 .It Sy Type
507 .It Li resume
508 Notification that the system has woken from the suspended state.
509 .El
510 .El
511 .Pp
512 .It Li kernel
513 More events related to the kernel.
514 .Bl -tag -width ".Sy Subsystem" -compact
515 .It Sy Subsystem
516 .It Li signal
517 .Bl -tag -width ".li resume" -compact
518 .It Sy Type
519 .It Li coredump
520 Notification that a process has crashed and dumped core.
521 .El
522 .El
523 .Pp
524 .It Li CAM
525 Events related to the
526 .Xr cam 4
527 system.
528 .Bl -tag -width ".Sy Subsystem" -compact
529 .It Sy Subsystem
530 .It Li periph
531 Events related to peripheral devices.
532 .Bl -tag -width ".li timeout" -compact
533 .It Sy Type
534 .It Li error
535 Generic errors.
536 .It Li timeout
537 Command timeouts.
538 .El
539 .El
540 .El
541 .Pp
542 A link state change to UP on the interface
543 .Dq Li fxp0
544 would result in the following notify event:
545 .Bd -literal -offset indent
546 system=IFNET, subsystem=fxp0, type=LINK_UP
547 .Ed
548 .Pp
549 An AC line state change to
550 .Dq offline
551 would result in the following event:
552 .Bd -literal -offset indent
553 system=ACPI, subsystem=ACAD, notify=0x00
554 .Ed
555 .Ss Comments
556 Comments may appear anywhere that whitespace may appear in a
557 configuration file.
558 To appeal to programmers of all kinds, they can
559 be written in C, C++, or shell/Perl constructs.
560 .Pp
561 C-style comments start with the two characters
562 .Ql /*
563 (slash, star) and end with
564 .Ql */
565 (star, slash).
566 Because they are completely delimited with these characters,
567 they can be used to comment only a portion of a line or to span
568 multiple lines.
569 .Pp
570 C-style comments cannot be nested.
571 For example, the following is
572 not valid because the entire comment ends with the first
573 .Ql */ :
574 .Bd -literal -offset indent
575 /* This is the start of a comment.
576    This is still part of the comment.
577 /* This is an incorrect attempt at nesting a comment. */
578    This is no longer in any comment. */
579 .Ed
580 .Pp
581 C++-style comments start with the two characters
582 .Ql //
583 (slash, slash) and continue to the end of the physical line.
584 They cannot be continued across multiple physical lines; to have
585 one logical comment span multiple lines, each line must use the
586 .Ql //
587 pair.
588 For example:
589 .Bd -literal -offset indent
590 // This is the start of a comment.  The next line
591 // is a new comment, even though it is logically
592 // part of the previous comment.
593 .Ed
594 .Sh FILES
595 .Bl -tag -width ".Pa /etc/devd.conf" -compact
596 .It Pa /etc/devd.conf
597 The
598 .Xr devd 8
599 configuration file.
600 .El
601 .Sh EXAMPLES
602 .Bd -literal
603 #
604 # This will catch link down events on the interfaces fxp0 and ath0
605 #
606 notify 0 {
607         match "system"                  "IFNET";
608         match "subsystem"               "(fxp0|ath0)";
609         match "type"                    "LINK_DOWN";
610         action "logger $subsystem is DOWN";
611 };
612
613 #
614 # Match lid open/close events
615 # These can be combined to a single event, by passing the
616 # value of $notify to the external script.
617 #
618 notify 0 {
619         match "system"                  "ACPI";
620         match "subsystem"               "Lid";
621         match "notify"                  "0x00";
622         action "logger Lid closed, we can sleep now!";
623 };
624
625 notify 0 {
626         match "system"                  "ACPI";
627         match "subsystem"               "Lid";
628         match "notify"                  "0x01";
629         action "logger Lid opened, the sleeper must awaken!";
630 };
631
632 #
633 # Match a USB device type
634 #
635 notify 0 {
636         match "system"                  "USB";
637         match "subsystem"               "INTERFACE";
638         match "type"                    "ATTACH";
639         match "intclass"                "0x0e";
640         action "logger USB video device attached";
641 };
642
643 #
644 # Try to configure ath and wi devices with pccard_ether
645 # as they are attached.
646 #
647 attach 0 {
648         device-name "(ath|wi)[0-9]+";
649         action "/etc/pccard_ether $device-name start";
650 };
651
652 #
653 # Stop ath and wi devices as they are detached from
654 # the system.
655 #
656 detach 0 {
657         device-name "(ath|wi)[0-9]+";
658         action "/etc/pccard_ether $device-name stop";
659 };
660 .Ed
661 .Pp
662 The installed
663 .Pa /etc/devd.conf
664 has many additional examples.
665 .Sh SEE ALSO
666 .Xr cam 4 ,
667 .Xr coretemp 4 ,
668 .Xr devfs 5 ,
669 .Xr re_format 7 ,
670 .Xr devd 8