devd.conf revision 208060
1231200Smm# $FreeBSD: head/etc/devd.conf 208060 2010-05-14 04:53:57Z dougb $
2231200Smm#
3231200Smm# Refer to devd.conf(5) and devd(8) man pages for the details on how to
4231200Smm# run and configure devd.
5231200Smm#
6231200Smm
7231200Smm# NB: All regular expressions have an implicit ^$ around them.
8231200Smm# NB: device-name is shorthand for 'match device-name'
9231200Smm
10231200Smmoptions {
11231200Smm	# Each directory directive adds a directory the list of directories
12231200Smm	# that we scan for files.  Files are read-in in the order that they
13231200Smm	# are returned from readdir(3).  The rule-sets are combined to
14231200Smm	# create a DFA that's used to match events to actions.
15231200Smm	directory "/etc/devd";
16231200Smm	directory "/usr/local/etc/devd";
17231200Smm	pid-file "/var/run/devd.pid";
18231200Smm
19231200Smm	# Setup some shorthand for regex that we use later in the file.
20231200Smm	#XXX Yes, these are gross -- imp
21231200Smm	set scsi-controller-regex
22231200Smm		"(aac|adv|adw|aha|ahb|ahc|ahd|aic|amd|amr|asr|bt|ciss|ct|dpt|\
23231200Smm		esp|ida|iir|ips|isp|mlx|mly|mpt|ncr|ncv|nsp|stg|sym|trm|wds)\
24231200Smm		[0-9]+";
25231200Smm};
26231200Smm
27368708Smm# Note that the attach/detach with the highest value wins, so that one can
28231200Smm# override these general rules.
29231200Smm
30231200Smm#
31231200Smm# Configure the interface on attach.  Due to a historical accident, this
32231200Smm# script is called pccard_ether.
33231200Smm#
34231200Smm# NB: DETACH events are ignored; the kernel should handle all cleanup
35302001Smm#     (routes, arp cache) if you need to do something beware of races
36231200Smm#     against immediate create of a device w/ the same name; e.g.
37231200Smm#	ifconfig bridge0 destroy; ifconfig bridge0 create
38302001Smm#
39302001Smmnotify 0 {
40231200Smm	match "system"		"IFNET";
41324418Smm	match "type"		"ATTACH";
42231200Smm	action "/etc/pccard_ether $subsystem start";
43231200Smm};
44231200Smm
45231200Smm#
46238856Smm# Try to start dhclient on Ethernet like interfaces when the link comes
47238856Smm# up.  Only devices that are configured to support DHCP will actually
48231200Smm# run it.  No link down rule exists because dhclient automaticly exits
49231200Smm# when the link goes down.
50231200Smm#
51231200Smmnotify 0 {
52231200Smm	match "system"		"IFNET";
53368708Smm	match "type"		"LINK_UP";
54368708Smm	media-type		"ethernet";
55231200Smm	action "/etc/rc.d/dhclient quietstart $subsystem";
56231200Smm};
57231200Smm
58231200Smm#
59302001Smm# Like Ethernet devices, but separate because
60302001Smm# they have a different media type.  We may want
61231200Smm# to exploit this later.
62231200Smm#
63302001Smmdetach 0 {
64302001Smm	media-type "802.11";
65302001Smm	action "/etc/pccard_ether $device-name stop";
66302001Smm};
67231200Smmattach 0 {
68231200Smm	media-type "802.11";
69302001Smm	action "/etc/pccard_ether $device-name start";
70302001Smm};
71231200Smmnotify 0 {
72231200Smm	match "system"		"IFNET";
73302001Smm	match "type"		"LINK_UP";
74302001Smm	media-type		"802.11";
75302001Smm	action "/etc/rc.d/dhclient quietstart $subsystem";
76302001Smm};
77231200Smm
78231200Smm# An entry like this might be in a different file, but is included here
79324418Smm# as an example of how to override things.  Normally 'ed50' would match
80324418Smm# the above attach/detach stuff, but the value of 100 makes it
81231200Smm# hard wired to 1.2.3.4.
82231200Smmattach 100 {
83231200Smm	device-name "ed50";
84231200Smm	action "ifconfig $device-name inet 1.2.3.4 netmask 0xffff0000";
85231200Smm};
86231200Smmdetach 100 {
87231200Smm	device-name "ed50";
88231200Smm};
89231200Smm
90231200Smm# When a USB Bluetooth dongle appears activate it
91231200Smmattach 100 {
92231200Smm	device-name "ubt[0-9]+";
93231200Smm	action "/etc/rc.d/bluetooth quietstart $device-name";
94231200Smm};
95231200Smmdetach 100 {
96231200Smm	device-name "ubt[0-9]+";
97231200Smm	action "/etc/rc.d/bluetooth quietstop $device-name";
98302001Smm};
99231200Smm
100302001Smm# When a USB keyboard arrives, attach it as the console keyboard.
101302001Smmattach 100 {
102231200Smm	device-name "ukbd0";
103302001Smm	action "/etc/rc.d/syscons setkeyboard /dev/ukbd0";
104231200Smm};
105302001Smmdetach 100 {
106302001Smm	device-name "ukbd0";
107324418Smm	action "/etc/rc.d/syscons setkeyboard /dev/kbd0";
108324418Smm};
109231200Smm
110231200Smmattach 100 {
111231200Smm	device-name "ums[0-9]+";
112231200Smm	action "/etc/rc.d/moused quietstart $device-name";
113231200Smm};
114231200Smm
115231200Smmdetach 100 {
116231200Smm        device-name "ums[0-9]+";
117231200Smm        action "/etc/rc.d/moused stop $device-name";
118231200Smm};
119231200Smm
120231200Smm# Firmware download into the ActiveWire board. After the firmware download is
121368708Smm# done the device detaches and reappears as something new and shiny
122368708Smm# automatically.
123368708Smmattach 100 {
124368708Smm	match "vendor"	"0x0854";
125368708Smm	match "product"	"0x0100";
126368708Smm	match "release"	"0x0000";
127368708Smm	action "/usr/local/bin/ezdownload -f /usr/local/share/usb/firmware/0854.0100.0_01.hex $device-name";
128368708Smm};
129231200Smm
130231200Smm# Firmware download for Entrega Serial DB25 adapter.
131231200Smmattach 100 {
132231200Smm	match "vendor"	"0x1645";
133231200Smm	match "product"	"0x8001";
134231200Smm	match "release"	"0x0101";
135231200Smm	action "if ! kldstat -n usio > /dev/null 2>&1 ; then kldload usio; fi; /usr/sbin/ezdownload -v -f /usr/share/usb/firmware/1645.8001.0101 /dev/$device-name";
136231200Smm};
137231200Smm
138231200Smm# This entry starts the ColdSync tool in daemon mode. Make sure you have an up
139231200Smm# to date /usr/local/etc/palms. We override the 'listen' settings for port and
140231200Smm# type in /usr/local/etc/coldsync.conf.
141231200Smmnotify 100 {
142231200Smm	match "system"		"USB";
143231200Smm	match "subsystem"	"DEVICE";
144231200Smm	match "type"		"ATTACH";
145231200Smm	match "vendor"		"0x082d";
146231200Smm	match "product"		"0x0100";
147231200Smm	match "release"		"0x0100";
148231200Smm	action "/usr/local/bin/coldsync -md -p /dev/$cdev -t usb";
149231200Smm};
150231200Smm
151231200Smm#
152231200Smm# Rescan scsi device-names on attach, but not detach.  However, it is
153231200Smm# disabled by default due to reports of problems.
154231200Smm#
155231200Smmattach 0 {
156231200Smm	device-name "$scsi-controller-regex";
157231200Smm//	action "camcontrol rescan all";
158231200Smm};
159231200Smm
160231200Smm# Don't even try to second guess what to do about drivers that don't
161231200Smm# match here.  Instead, pass it off to syslog.  Commented out for the
162231200Smm# moment, as the pnpinfo variable isn't set in devd yet.  Individual
163353377Smm# variables within the bus supplied pnpinfo are set.
164353377Smmnomatch 0 {
165#	action "logger Unknown device: $pnpinfo $location $bus";
166};
167
168# Various logging of unknown devices.
169nomatch 10 {
170	match "bus" "uhub[0-9]+";
171	action "logger Unknown USB device: vendor $vendor product $product \
172		bus $bus";
173};
174
175# Some PC-CARDs don't offer numerical manufacturer/product IDs, just
176# show the CIS info there.
177nomatch 20 {
178	match "bus" "pccard[0-9]+";
179	match "manufacturer" "0xffffffff";
180	match "product" "0xffffffff";
181	action "logger Unknown PCCARD device: CISproduct $cisproduct \
182		CIS-vendor $cisvendor bus $bus";
183};
184
185nomatch 10 {
186	match "bus" "pccard[0-9]+";
187	action "logger Unknown PCCARD device: manufacturer $manufacturer \
188		product $product CISproduct $cisproduct CIS-vendor \
189		$cisvendor bus $bus";
190};
191
192nomatch 10 {
193	match "bus" "cardbus[0-9]+";
194	action "logger Unknown Cardbus device: device $device class $class \
195		vendor $vendor bus $bus";
196};
197
198# Switch power profiles when the AC line state changes.
199notify 10 {
200	match "system"		"ACPI";
201	match "subsystem"	"ACAD";
202	action "/etc/rc.d/power_profile $notify";
203};
204
205# Notify all users before beginning emergency shutdown when we get
206# a _CRT or _HOT thermal event and we're going to power down the system
207# very soon.
208notify 10 {
209	match "system"		"ACPI";
210	match "subsystem"	"Thermal";
211	match "notify"		"0xcc";
212	action "logger -p kern.emerg 'WARNING: system temperature too high, shutting down soon!'";
213};
214
215# Sample ZFS problem reports handling.
216notify 10 {
217	match "system"		"ZFS";
218	match "type"		"zpool";
219	action "logger -p kern.err 'ZFS: failed to load zpool $pool'";
220};
221
222notify 10 {
223	match "system"		"ZFS";
224	match "type"		"vdev";
225	action "logger -p kern.err 'ZFS: vdev failure, zpool=$pool type=$type'";
226};
227
228notify 10 {
229	match "system"		"ZFS";
230	match "type"		"data";
231	action "logger -p kern.warn 'ZFS: zpool I/O failure, zpool=$pool error=$zio_err'";
232};
233
234notify 10 {
235	match "system"		"ZFS";
236	match "type"		"io";
237	action "logger -p kern.warn 'ZFS: vdev I/O failure, zpool=$pool path=$vdev_path offset=$zio_offset size=$zio_size error=$zio_err'";
238};
239
240notify 10 {
241	match "system"		"ZFS";
242	match "type"		"checksum";
243	action "logger -p kern.warn 'ZFS: checksum mismatch, zpool=$pool path=$vdev_path offset=$zio_offset size=$zio_size'";
244};
245
246# User requested suspend, so perform preparation steps and then execute
247# the actual suspend process.
248notify 10 {
249	match "system"		"ACPI";
250	match "subsystem"	"Suspend";
251	action "/etc/rc.suspend acpi $notify";
252};
253notify 10 {
254	match "system"		"ACPI";
255	match "subsystem"	"Resume";
256	action "/etc/rc.resume acpi $notify";
257};
258
259/* EXAMPLES TO END OF FILE
260
261# The following might be an example of something that a vendor might
262# install if you were to add their device.  This might reside in
263# /usr/local/etc/devd/deqna.conf.  A deqna is, in this hypothetical
264# example, a pccard ethernet-like device.  Students of history may
265# know other devices by this name, and will get the in-jokes in this
266# entry.
267nomatch 10 {
268	match "bus" "pccard[0-9]+";
269	match "manufacturer" "0x1234";
270	match "product" "0x2323";
271	action "kldload if_deqna";
272};
273attach 10 {
274	device-name "deqna[0-9]+";
275	action "/etc/pccard_ether $device-name start";
276};
277detach 10 {
278	device-name "deqna[0-9]+";
279	action "/etc/pccard_ether $device-name stop";
280};
281
282# Examples of notify hooks.  A notify is a generic way for a kernel
283# subsystem to send event notification to userland.
284#
285# Here are some examples of ACPI notify handlers.  ACPI subsystems that
286# generate notifies include the AC adapter, power/sleep buttons,
287# control method batteries, lid switch, and thermal zones.
288#
289# Information returned is not always the same as the ACPI notify
290# events.  See the ACPI specification for more information about
291# notifies.  Here is the information returned for each subsystem:
292#
293# ACAD:		AC line state (0 is offline, 1 is online)
294# Button:	Button pressed (0 for power, 1 for sleep)
295# CMBAT:	ACPI battery events
296# Lid:		Lid state (0 is closed, 1 is open)
297# Suspend, Resume: Suspend and resume notification
298# Thermal:	ACPI thermal zone events
299#
300# This example calls a script when the AC state changes, passing the
301# notify value as the first argument.  If the state is 0x00, it might
302# call some sysctls to implement economy mode.  If 0x01, it might set
303# the mode to performance.
304notify 10 {
305	match "system"		"ACPI";
306	match "subsystem"	"ACAD";
307	action			"/etc/acpi_ac $notify";
308};
309*/
310