devd.conf revision 187743
127837Sdavidn# $FreeBSD: head/etc/devd.conf 187743 2009-01-26 23:05:50Z sam $
266830Sobrien#
366830Sobrien# Refer to devd.conf(5) and devd(8) man pages for the details on how to
466830Sobrien# run and configure devd.
566830Sobrien#
666830Sobrien
766830Sobrien# NB: All regular expressions have an implicit ^$ around them.
866830Sobrien# NB: device-name is shorthand for 'match device-name'
966830Sobrien
1066830Sobrienoptions {
1166830Sobrien	# Each directory directive adds a directory the list of directories
1266830Sobrien	# that we scan for files.  Files are read-in in the order that they
1366830Sobrien	# are returned from readdir(3).  The rule-sets are combined to
1466830Sobrien	# create a DFA that's used to match events to actions.
1566830Sobrien	directory "/etc/devd";
1666830Sobrien	directory "/usr/local/etc/devd";
1766830Sobrien	pid-file "/var/run/devd.pid";
1866830Sobrien
1966830Sobrien	# Setup some shorthand for regex that we use later in the file.
2066830Sobrien	#XXX Yes, these are gross -- imp
2166830Sobrien	set scsi-controller-regex
2266830Sobrien		"(aac|adv|adw|aha|ahb|ahc|ahd|aic|amd|amr|asr|bt|ciss|ct|dpt|\
2366830Sobrien		esp|ida|iir|ips|isp|mlx|mly|mpt|ncr|ncv|nsp|stg|sym|trm|wds)\
2466830Sobrien		[0-9]+";
2566830Sobrien};
2666830Sobrien
2750472Speter# Note that the attach/detach with the highest value wins, so that one can
2866830Sobrien# override these general rules.
2927837Sdavidn
3051231Ssheldonh#
3127837Sdavidn# Configure the interface on attach.  Due to a historical accident, this
3227837Sdavidn# script is called pccard_ether.
3327837Sdavidn#
3427837Sdavidn# NB: DETACH events are ignored; the kernel should handle all cleanup
3527837Sdavidn#     (routes, arp cache) if you need to do something beware of races
3627837Sdavidn#     against immediate create of a device w/ the same name; e.g.
3727837Sdavidn#	ifconfig bridge0 destroy; ifconfig bridge0 create
3827837Sdavidn#
3927837Sdavidnnotify 0 {
4027837Sdavidn	match "system"		"IFNET";
4127837Sdavidn	match "type"		"ATTACH";
4251231Ssheldonh	action "/etc/pccard_ether $subsystem start";
4327837Sdavidn};
4451231Ssheldonh
4527837Sdavidn#
4662640Stg# Try to start dhclient on Ethernet like interfaces when the link comes
4762640Stg# up.  Only devices that are configured to support DHCP will actually
4862640Stg# run it.  No link down rule exists because dhclient automaticly exits
4962640Stg# when the link goes down.
5062640Stg#
5162640Stgnotify 0 {
5262640Stg	match "system"		"IFNET";
5362640Stg	match "type"		"LINK_UP";
5462640Stg	media-type		"ethernet";
5563307Smarkm	action "/etc/rc.d/dhclient quietstart $subsystem";
5663307Smarkm};
5763307Smarkm
5863307Smarkm#
5963307Smarkm# Like Ethernet devices, but separate because
6063307Smarkm# they have a different media type.  We may want
6163689Sache# to exploit this later.
6263311Ssheldonh#
6363801Ssheldonhdetach 0 {
6463801Ssheldonh	media-type "802.11";
6563311Ssheldonh	action "/etc/pccard_ether $device-name stop";
6663689Sache};
6763689Sacheattach 0 {
6863801Ssheldonh	media-type "802.11";
6963307Smarkm	action "/etc/pccard_ether $device-name start";
7063307Smarkm};
7163307Smarkmnotify 0 {
7253550Sdillon	match "system"		"IFNET";
7353550Sdillon	match "type"		"LINK_UP";
7453550Sdillon	media-type		"802.11";
7553550Sdillon	action "/etc/rc.d/dhclient quietstart $subsystem";
7653550Sdillon};
7753550Sdillon
7853550Sdillon# An entry like this might be in a different file, but is included here
7953550Sdillon# as an example of how to override things.  Normally 'ed50' would match
8053550Sdillon# the above attach/detach stuff, but the value of 100 makes it
8164821Ssheldonh# hard wired to 1.2.3.4.
8227837Sdavidnattach 100 {
8362640Stg	device-name "ed50";
8462640Stg	action "ifconfig $device-name inet 1.2.3.4 netmask 0xffff0000";
8562640Stg};
8662640Stgdetach 100 {
8762640Stg	device-name "ed50";
8862640Stg};
8962640Stg
9062640Stg# When a USB Bluetooth dongle appears activate it
9162640Stgattach 100 {
9262640Stg	device-name "ubt[0-9]+";
9362640Stg	action "/etc/rc.d/bluetooth quietstart $device-name";
9462640Stg};
9562640Stgdetach 100 {
9662640Stg	device-name "ubt[0-9]+";
9762640Stg	action "/etc/rc.d/bluetooth quietstop $device-name";
9862640Stg};
9962640Stg
10062640Stg# When a USB keyboard arrives, attach it as the console keyboard.
10162640Stgattach 100 {
10227837Sdavidn	device-name "ukbd0";
10362640Stg	action "/etc/rc.d/syscons setkeyboard /dev/ukbd0";
10427837Sdavidn};
10527837Sdavidndetach 100 {
10627837Sdavidn	device-name "ukbd0";
107	action "/etc/rc.d/syscons setkeyboard /dev/kbd0";
108};
109
110attach 100 {
111	device-name "ums[0-9]+";
112	action "/etc/rc.d/moused quietstart $device-name";
113};
114
115detach 100 { 
116        device-name "ums[0-9]+"; 
117        action "/etc/rc.d/moused stop $device-name"; 
118}; 
119
120# Firmware download into the ActiveWire board. After the firmware download is
121# done the device detaches and reappears as something new and shiny
122# automatically.
123attach 100 {
124	match "vendor"	"0x0854";
125	match "product"	"0x0100";
126	match "release"	"0x0000";
127	action "/usr/local/bin/ezdownload -f /usr/local/share/usb/firmware/0854.0100.0_01.hex $device-name";
128};
129
130# Firmware download for Entrega Serial DB25 adapter.
131attach 100 {
132	match "vendor"	"0x1645";
133	match "product"	"0x8001";
134	match "release"	"0x0101";
135	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";
136};
137
138# This entry starts the ColdSync tool in daemon mode. Make sure you have an up
139# to date /usr/local/etc/palms. We override the 'listen' settings for port and
140# type in /usr/local/etc/coldsync.conf.
141attach 100 {
142	device-name "ugen[0-9]+";
143	match "vendor" "0x082d";
144	match "product" "0x0100";
145	match "release" "0x0100";
146	action "/usr/local/bin/coldsync -md -p /dev/$device-name -t usb";
147};
148
149#
150# Rescan scsi device-names on attach, but not detach.  However, it is
151# disabled by default due to reports of problems.
152#
153attach 0 {
154	device-name "$scsi-controller-regex";
155//	action "camcontrol rescan all";
156};
157
158# Don't even try to second guess what to do about drivers that don't
159# match here.  Instead, pass it off to syslog.  Commented out for the
160# moment, as the pnpinfo variable isn't set in devd yet.  Individual
161# variables within the bus supplied pnpinfo are set.
162nomatch 0 {
163#	action "logger Unknown device: $pnpinfo $location $bus";
164};
165
166# Various logging of unknown devices.
167nomatch 10 {
168	match "bus" "uhub[0-9]+";
169	action "logger Unknown USB device: vendor $vendor product $product \
170		bus $bus";
171};
172
173# Some PC-CARDs don't offer numerical manufacturer/product IDs, just
174# show the CIS info there.
175nomatch 20 {
176	match "bus" "pccard[0-9]+";
177	match "manufacturer" "0xffffffff";
178	match "product" "0xffffffff";
179	action "logger Unknown PCCARD device: CISproduct $cisproduct \
180		CIS-vendor $cisvendor bus $bus";
181};
182
183nomatch 10 {
184	match "bus" "pccard[0-9]+";
185	action "logger Unknown PCCARD device: manufacturer $manufacturer \
186		product $product CISproduct $cisproduct CIS-vendor \
187		$cisvendor bus $bus";
188};
189
190nomatch 10 {
191	match "bus" "cardbus[0-9]+";
192	action "logger Unknown Cardbus device: device $device class $class \
193		vendor $vendor bus $bus";
194};
195
196# Switch power profiles when the AC line state changes.
197notify 10 {
198	match "system"		"ACPI";
199	match "subsystem"	"ACAD";
200	action "/etc/rc.d/power_profile $notify";
201};
202
203# Notify all users before beginning emergency shutdown when we get
204# a _CRT or _HOT thermal event and we're going to power down the system
205# very soon.
206notify 10 {
207	match "system"		"ACPI";
208	match "subsystem"	"Thermal";
209	match "notify"		"0xcc";
210	action "logger -p kern.emerg 'WARNING: system temperature too high, shutting down soon!'";
211};
212
213# Sample ZFS problem reports handling.
214notify 10 {
215	match "system"		"ZFS";
216	match "type"		"zpool";
217	action "logger -p kern.err 'ZFS: failed to load zpool $pool'";
218};
219
220notify 10 {
221	match "system"		"ZFS";
222	match "type"		"vdev";
223	action "logger -p kern.err 'ZFS: vdev failure, zpool=$pool type=$type'";
224};
225
226notify 10 {
227	match "system"		"ZFS";
228	match "type"		"data";
229	action "logger -p kern.warn 'ZFS: zpool I/O failure, zpool=$pool error=$zio_err'";
230};
231
232notify 10 {
233	match "system"		"ZFS";
234	match "type"		"io";
235	action "logger -p kern.warn 'ZFS: vdev I/O failure, zpool=$pool path=$vdev_path offset=$zio_offset size=$zio_size error=$zio_err'";
236};
237
238notify 10 {
239	match "system"		"ZFS";
240	match "type"		"checksum";
241	action "logger -p kern.warn 'ZFS: checksum mismatch, zpool=$pool path=$vdev_path offset=$zio_offset size=$zio_size'";
242};
243
244# User requested suspend, so perform preparation steps and then execute
245# the actual suspend process.
246notify 10 {
247	match "system"		"ACPI";
248	match "subsystem"	"Suspend";
249	action "/etc/rc.suspend acpi $notify";
250};
251notify 10 {
252	match "system"		"ACPI";
253	match "subsystem"	"Resume";
254	action "/etc/rc.resume acpi $notify";
255};
256
257/* EXAMPLES TO END OF FILE
258
259# The following might be an example of something that a vendor might
260# install if you were to add their device.  This might reside in
261# /usr/local/etc/devd/deqna.conf.  A deqna is, in this hypothetical
262# example, a pccard ethernet-like device.  Students of history may
263# know other devices by this name, and will get the in-jokes in this
264# entry.
265nomatch 10 {
266	match "bus" "pccard[0-9]+";
267	match "manufacturer" "0x1234";
268	match "product" "0x2323";
269	action "kldload if_deqna";
270};
271attach 10 {
272	device-name "deqna[0-9]+";
273	action "/etc/pccard_ether $device-name start";
274};
275detach 10 {
276	device-name "deqna[0-9]+";
277	action "/etc/pccard_ether $device-name stop";
278};
279
280# Examples of notify hooks.  A notify is a generic way for a kernel
281# subsystem to send event notification to userland.
282#
283# Here are some examples of ACPI notify handlers.  ACPI subsystems that
284# generate notifies include the AC adapter, power/sleep buttons,
285# control method batteries, lid switch, and thermal zones.
286#
287# Information returned is not always the same as the ACPI notify
288# events.  See the ACPI specification for more information about
289# notifies.  Here is the information returned for each subsystem:
290#
291# ACAD:		AC line state (0 is offline, 1 is online)
292# Button:	Button pressed (0 for power, 1 for sleep)
293# CMBAT:	ACPI battery events
294# Lid:		Lid state (0 is closed, 1 is open)
295# Suspend, Resume: Suspend and resume notification
296# Thermal:	ACPI thermal zone events
297#
298# This example calls a script when the AC state changes, passing the
299# notify value as the first argument.  If the state is 0x00, it might
300# call some sysctls to implement economy mode.  If 0x01, it might set
301# the mode to performance.
302notify 10 {
303	match "system"		"ACPI";
304	match "subsystem"	"ACAD";
305	action			"/etc/acpi_ac $notify";
306};
307*/
308