]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/devd/devd.conf
Import libfido2 at 'contrib/libfido2/'
[FreeBSD/FreeBSD.git] / sbin / devd / devd.conf
1 # $FreeBSD$
2 #
3 # Refer to devd.conf(5) and devd(8) man pages for the details on how to
4 # run and configure devd.
5 #
6
7 # NB: All regular expressions have an implicit ^$ around them.
8 # NB: device-name is shorthand for 'match device-name'
9
10 options {
11         # Each "directory" directive adds a directory to the list of
12         # directories that we scan for files.  Files are loaded in the order
13         # that they are returned from readdir(3).  The rule-sets are combined
14         # to create a DFA that's used to match events to actions.
15         directory "/etc/devd";
16         directory "/usr/local/etc/devd";
17         pid-file "/var/run/devd.pid";
18
19         # Setup some shorthand for regex that we use later in the file.
20         #XXX Yes, these are gross -- imp
21         set scsi-controller-regex
22                 "(aac|aacraid|ahc|ahd|amr|ciss|\
23                 esp|ida|iir|ips|isp|mlx|mly|mpr|mps|mpt|sym|trm)\
24                 [0-9]+";
25         set wifi-driver-regex
26                 "(ath|bwi|bwn|ipw|iwi|iwm|iwn|malo|mwl|otus|ral|rsu|rtwn|rum|\
27                 run|uath|upgt|ural|urtw|wi|wpi|wtap|zyd)[0-9]+";
28 };
29
30 # Note that the attach/detach with the highest value wins, so that one can
31 # override these general rules.
32
33 #
34 # Configure the interface on attach.  Due to a historical accident, this
35 # script is called pccard_ether. We omit the usbus devices because those
36 # devices are associated with the USB Bus and provide an ifnet device to
37 # allow usb traffic to be captured with usbdump(8).
38 #
39 # NB: DETACH events are ignored; the kernel should handle all cleanup
40 #     (routes, arp cache).  Beware of races against immediate create
41 #     of a device with the same name; e.g.
42 #     ifconfig bridge0 destroy; ifconfig bridge0 create
43 #
44 notify 0 {
45         match "system"          "IFNET";
46         match "subsystem"       "!(usbus|wlan)[0-9]+";
47         match "type"            "ATTACH";
48         action "/etc/pccard_ether $subsystem start";
49 };
50
51 #
52 # Try to start dhclient on Ethernet-like interfaces when the link comes
53 # up.  Only devices that are configured to support DHCP will actually
54 # run it.  No link down rule exists because dhclient automatically exits
55 # when the link goes down.
56 #
57 notify 0 {
58         match "system"          "IFNET";
59         match "type"            "LINK_UP";
60         media-type              "ethernet";
61         action "service dhclient quietstart $subsystem";
62 };
63
64 #
65 # Like Ethernet devices, but separate because 802.11 require spawning
66 # wlan(4) interface.
67 #
68 attach 0 {
69         device-name "$wifi-driver-regex";
70         action "/etc/pccard_ether $device-name startchildren";
71 };
72 detach 0 {
73         device-name "$wifi-driver-regex";
74         action "/etc/pccard_ether $device-name stopchildren";
75 };
76 notify 0 {
77         match "system"          "IFNET";
78         match "type"            "LINK_UP";
79         media-type              "802.11";
80         action "service dhclient quietstart $subsystem";
81 };
82
83 # An entry like this might be in a different file, but is included here
84 # as an example of how to override things.  Normally 'ed50' would match
85 # the above attach/detach stuff, but the value of 100 makes it
86 # hard wired to 1.2.3.4.
87 attach 100 {
88         device-name "ed50";
89         action "ifconfig $device-name inet 1.2.3.4 netmask 0xffff0000";
90 };
91 detach 100 {
92         device-name "ed50";
93 };
94
95 # When a USB Bluetooth dongle appears, activate it
96 attach 100 {
97         device-name "ubt[0-9]+";
98         action "service bluetooth quietstart $device-name";
99 };
100 detach 100 {
101         device-name "ubt[0-9]+";
102         action "service bluetooth quietstop $device-name";
103 };
104
105 # Firmware downloader for Atheros AR3011 based USB Bluetooth devices
106 #attach 100 {
107 #       match "vendor" "0x0cf3";
108 #       match "product" "0x3000";
109 #       action "sleep 2 && /usr/sbin/ath3kfw -d $device-name -f /usr/local/etc/ath3k-1.fw";
110 #};
111
112 # When a USB keyboard arrives, attach it as the console keyboard.
113 attach 100 {
114         device-name "ukbd0";
115         action "service syscons setkeyboard /dev/ukbd0";
116 };
117 detach 100 {
118         device-name "ukbd0";
119         action "service syscons setkeyboard /dev/kbd0";
120 };
121
122 notify 100 {
123         match "system" "DEVFS";
124         match "subsystem" "CDEV";
125         match "type" "CREATE";
126         match "cdev" "atp[0-9]+";
127
128         action "service moused quietstart $cdev";
129 };
130
131 notify 100 {
132         match "system" "DEVFS";
133         match "subsystem" "CDEV";
134         match "type" "CREATE";
135         match "cdev" "ums[0-9]+";
136
137         action "service moused quietstart $cdev";
138 };
139
140 notify 100 {
141         match "system" "DEVFS";
142         match "subsystem" "CDEV";
143         match "type" "CREATE";
144         match "cdev" "wsp[0-9]+";
145
146         action "service moused quietstart $cdev";
147 };
148
149 notify 100 {
150         match "system" "DEVFS";
151         match "subsystem" "CDEV";
152         match "type" "DESTROY";
153         match "cdev" "ums[0-9]+";
154
155         action "service moused stop $cdev";
156 };
157
158 #
159 # Rescan SCSI device-names on attach, but not detach.  However, it is
160 # disabled by default due to reports of problems.
161 #
162 attach 0 {
163         device-name "$scsi-controller-regex";
164 //      action "camcontrol rescan all";
165 };
166
167 # Don't even try to second guess what to do about drivers that don't
168 # match here.  Instead, pass it off to syslog.  Commented out for the
169 # moment, as the pnpinfo variable isn't set in devd yet.  Individual
170 # variables within the bus supplied pnpinfo are set.
171 nomatch 0 {
172 #       action "logger Unknown device: $pnpinfo $location $bus";
173 };
174
175 # Various logging of unknown devices.
176 nomatch 10 {
177         match "bus" "uhub[0-9]+";
178         action "logger Unknown USB device: vendor $vendor product $product \
179                 bus $bus";
180 };
181
182 # Some Cardbus cards don't offer numerical manufacturer/product IDs, just
183 # show the CIS info there.
184 nomatch 10 {
185         match "bus" "cardbus[0-9]+";
186         action "logger Unknown Cardbus device: device $device class $class \
187                 vendor $vendor bus $bus";
188 };
189
190 # Switch power profiles when the AC line state changes.
191 notify 10 {
192         match "system"          "ACPI";
193         match "subsystem"       "ACAD";
194         action "service power_profile $notify";
195 };
196
197 # Notify all users before beginning emergency shutdown when we get
198 # a _CRT or _HOT thermal event and we're going to power down the system
199 # very soon.
200 notify 10 {
201         match "system"          "ACPI";
202         match "subsystem"       "Thermal";
203         match "notify"          "0xcc";
204         action "logger -p kern.emerg WARNING: system temperature too high, shutting down soon!";
205 };
206
207 # User requested suspend, so perform preparation steps and then execute
208 # the actual suspend process.
209 notify 10 {
210         match "system"          "ACPI";
211         match "subsystem"       "Suspend";
212         action "/etc/rc.suspend acpi $notify";
213 };
214 notify 10 {
215         match "system"          "ACPI";
216         match "subsystem"       "Resume";
217         action "/etc/rc.resume acpi $notify";
218 };
219
220 /* EXAMPLES TO END OF FILE
221
222 # Examples of notify hooks.  A notify is a generic way for a kernel
223 # subsystem to send event notification to userland.
224
225 # Here are some examples of ACPI notify handlers.  ACPI subsystems that
226 # generate notifies include the AC adapter, power/sleep buttons,
227 # control method batteries, lid switch, and thermal zones.
228 #
229 # Information returned is not always the same as the ACPI notify
230 # events.  See the ACPI specification for more information about
231 # notifies.  Here is the information returned for each subsystem:
232 #
233 # ACAD:            AC line state (0 is offline, 1 is online)
234 # Button:          Button pressed (0 for power, 1 for sleep)
235 # CMBAT:           ACPI battery events
236 # Lid:             Lid state (0 is closed, 1 is open)
237 # Suspend, Resume: Suspend and resume notification
238 # Thermal:         ACPI thermal zone events
239 #
240 # This example calls a script when the AC state changes, passing the
241 # notify value as the first argument.  If the state is 0x00, it might
242 # call some sysctls to implement economy mode.  If 0x01, it might set
243 # the mode to performance.
244 notify 10 {
245         match "system"          "ACPI";
246         match "subsystem"       "ACAD";
247         action                  "/etc/acpi_ac $notify";
248 };
249
250 # This example works around a memory leak in PostgreSQL, restarting
251 # it when the "user:postgres:swap:devctl=1G" rctl(8) rule gets triggered.
252 notify 0 {
253         match "system"          "RCTL";
254         match "rule"            "user:770:swap:.*";
255         action                  "service postgresql restart";
256 };
257
258 # Discard autofs caches, useful for the -media special map.
259 notify 100 {
260         match "system" "GEOM";
261         match "subsystem" "DEV";
262         action "/usr/sbin/automount -c";
263 };
264
265 # Handle userland coredumps.
266 # This commented out handler makes it possible to run an
267 # automated debugging session after the core dump is generated.
268 # Replace action with a proper coredump handler, but be aware that
269 # it will run with elevated privileges.
270 notify 10 {
271         match "system"          "kernel";
272         match "subsystem"       "signal";
273         match "type"            "coredump";
274         action "logger $comm $core";
275 };
276
277 # Let the init(8) know there's a new USB serial interface it might
278 # want to run getty(8) for.  This includes device-side tty created
279 # by usb_template(4).
280 notify 100 {
281         match "system"          "DEVFS";
282         match "subsystem"       "CDEV";
283         match "type"            "CREATE";
284         match "cdev"            "ttyU[0-9]+";
285         action "/sbin/init q";
286 };
287
288 */