2 .\" Copyright (c) 2002 M. Warner Losh.
3 .\" All rights reserved.
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
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.
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
33 .Nd "device state change daemon"
41 daemon provides a way to have userland programs run when certain
44 The following options are accepted.
45 .Bl -tag -width ".Fl f Ar file"
47 Enable debugging messages.
49 Run in the foreground instead of becoming a daemon.
51 Use configuration file
53 instead of the default
57 is specified more than once, the last file specified is used.
59 Do not process all pending events before becoming a daemon.
60 Instead, call daemon right away.
62 .Sh IMPLEMENTATION NOTES
66 is a system daemon that runs in the background all the time.
67 Whenever a device is added to or removed from the device tree,
69 will execute actions specified in
75 when an Ethernet adapter is added to the system, and kill the
77 instance when the same adapter is removed.
78 Another example would be for
80 to use a table to locate and load via
82 the proper driver for an unrecognized device that is added to the system.
90 This device driver has hooks into the device configuration system.
91 When nodes are added or deleted from the tree, this device will
92 deliver information about the event to
96 has parsed the message, it will search its action list for that kind
97 of event and perform the action with the highest matching value.
98 For most mundane uses, the default handlers are adequate.
99 However, for more advanced users, the power is present to tweak every
100 aspect of what happens.
107 or the alternate configuration file specified with a
109 option and uses that file to drive the rest of the process.
110 While the format of this file is described in
112 some basics are covered here.
115 section, one can define multiple directories to search
117 All files in these directories whose names match the pattern
120 These files are intended to be installed by third party vendors that
121 wish to hook into the
123 system without modifying the user's other
128 receives are forwarded to the
131 .Pa /var/run/devd.pipe .
133 .Bl -tag -width ".Pa /var/run/devd.pipe" -compact
134 .It Pa /etc/devd.conf
138 .It Pa /var/run/devd.pipe
141 to communicate with its clients.