chiark / gitweb /
[PATCH] update documentation for new config file format
[elogind.git] / udev.8
1 .TH UDEV 8 "October 2003" "" "Linux Administrator's Manual"
2 .SH NAME
3 udev \- Linux configurable dynamic device naming support
4 .SH SYNOPSIS
5 .BI udev " hotplug-subsystem"
6 .br
7 .B udev
8 .RI "[-q " query_type " -p " sysfs_path "] [-drVh]"
9 .SH "DESCRIPTION"
10 .B udev
11 creates or removes device node files usually located in the /dev directory.
12 Its goal is to provide a dynamic device directory that contains only the files
13 for devices that are actually present.
14 .P
15 As part of the
16 .B hotplug
17 subsystem,
18 .B udev
19 is executed if a kernel device is added or removed from the system.
20 On device creation,
21 .B udev
22 reads the sysfs directory of the given device to collect device attributes
23 like label, serial number or bus device number.
24 These attributes may used as keys to determine a
25 unique name for device file creation.
26 .B udev
27 maintains a database for devices present on the system.
28 .br
29 On device removal,
30 .B udev
31 queries its database for the name of the device file to be deleted.
32 .SH "OPTIONS"
33 .B udev
34 normally is called by
35 .B hotplug
36 with the subsystem as argument and various environment variables set.
37 .br
38 It may also called with the following options:
39 .TP
40 .B -V
41 Print the version information.
42 .TP
43 .B -r
44 Print the the
45 .B udev_root
46 directory. When used in conjunction with a query for the node name, the
47 .B udev_root
48 will be prepended.
49 .TP
50 .BI -q " query_type"
51 Query the database for specified value of a created device node.
52 Valid types are:
53 .BR name ", " symlink ", " owner " or " group .
54 .TP
55 .BI -p " sysfs_path"
56 Specify the sysfs path needed for the query.
57 .TP
58 .B -q
59 Dump the whole database.
60 .TP
61 .B -h
62 Print help text.
63 .SH "CONFIGURATION"
64 All
65 .B udev
66 configuration files consist of a set of lines of text.  All empty
67 lines, and lines beginning with a '#' will be ignored.
68 .P
69
70 .B udev
71 expects its main configuration file at
72 .I /etc/udev/udev.conf.
73 The file consists of a set of variables and values that allow the user to
74 override default udev values.  The current set of variables that can be
75 overridden in this file is:
76 .TP
77 .B udev_root
78 This is the where in the filesystem to place the device nodes.  The default
79 value for this is
80 .I /udev/
81 .TP
82 .B udev_db
83 The name and location of the udev database.  The default value for this is
84 .I /udev/.udev.tdb
85 .TP
86 .B udev_rules
87 This is the location of the udev rules file.  The default value for this is
88 .I /etc/udev/udev.rules
89 .TP
90 .B udev_permissions
91 This is the location of the udev permission file.  The default value for this is
92 .I /etc/udev/udev.permissions
93 .TP
94 .B default_mode
95 This is the default mode for all nodes that have no explicit match in the
96 permissions file.  The default value for this is
97 .I 0666
98 .br
99 .P
100 .RI "A sample " udev.conf " might look like this:
101 .sp
102 .nf
103 # udev_root - where in the filesystem to place the device nodes
104 udev_root="/udev/"
105
106 # udev_db - The name and location of the udev database.
107 udev_db="/udev/.udev.tdb"
108
109 # udev_rules - The name and location of the udev rules file
110 udev_rules="/etc/udev/udev.rules"
111
112 # udev_permissions - The name and location of the udev permission file
113 udev_permissions="/etc/udev/udev.permissions"
114
115 # default_mode - set the default mode for all nodes that have no
116 #                explicit match in the permissions file
117 default_mode="0666"
118 .fi
119 .P
120 The rules for udev to use when naming devices may specified at
121 .I /etc/udev/udev.rules
122 or specified by the
123 .I udev_rules
124 value in the
125 .I /etc/udev/udev.conf
126 file.
127 .P
128 Every line in the rules file defines the mapping between device attributes
129 and the device file name. One ore more keys are specified to match a rule
130 with the current device. If all keys are matching, the rule will be applied
131 and the name is used for the device node. One or more optional symlinks
132 targeting the node may be specified.
133 .br
134 If no matching rule is found, the default kernel device name is used.
135 .P
136 The line format is:
137 .sp
138 .I key,[key,...] name [, symlink]
139 .sp
140 where keys are:
141 .TP
142 .B BUS
143 Match the bus type of the device.
144 (The sysfs device bus must be able to be determined by a "device" symlink.)
145 .TP
146 .B KERNEL
147 Match the kernel device name.
148 .TP
149 .B ID
150 Match the device number on the bus, like PCI bus id.
151 .TP
152 .B PLACE
153 Match the topological position on bus, like physical port of USB device
154 .TP
155 .BI SYSFS_ filename
156 Match sysfs device attribute like label, vendor, USB serial number, SCSI UUID
157 or file system label.  Up to 5 different sysfs files can be checked, with
158 all of the values being required in order to match the rule.
159 .TP
160 .B PROGRAM
161 Call external program. This key is valid if the program returns successful.
162 The string returned by the program may additionally matched with the
163 .B RESULT
164 key.
165 .TP
166 .B RESULT
167 Match the returned string of the last
168 .B PROGRAM
169 call. This key may used in any following rule after a
170 .B PROGRAM
171 call.
172 .P
173 .RB "The " NAME " ," SYMLINK " and " PROGRAM
174 fields support simple printf-like string substitution:
175 .TP
176 .B %n
177 The "kernel number" of the device.
178 for example, 'sda3' has a "kernel number" of '3'
179 .TP
180 .B %k
181 The "kernel name" for the device.
182 .TP
183 .B %M
184 The kernel major number for the device.
185 .TP
186 .B %m
187 The kernel minor number for the device.
188 .TP
189 .B %b
190 The bus id for the device.
191 .TP
192 .B %c
193 The CALLOUT program returned string.
194 (This does not work within the PROGRAM field for the obvious reason.)
195 .TP
196 .B %D
197 Use the devfs style disk name for this device.
198 For partitions, this will result in 'part%n'
199 If this is not a partition, it will result in 'disc'.
200 .P
201 .RI "A sample " udev.rules " might look like this:"
202 .sp
203 .nf
204 # if /sbin/scsi_id returns "OEM 0815" device will be called disk1
205 BUS="scsi", PROGRAM="/sbin/scsi_id", RESULT="OEM 0815", NAME="disk1"
206
207 # USB printer to be called lp_color
208 BUS="usb", SYSFS_serial="W09090207101241330", NAME="lp_color"
209
210 # SCSI disk with a specific vendor and model number is to be called boot
211 BUS="scsi", SYSFS_vendor="IBM", SYSFS_model="ST336", NAME="boot%n"
212
213 # sound card with PCI bus id 00:0b.0 to be called dsp
214 BUS="pci", ID="00:0b.0", NAME="dsp"
215
216 # USB mouse at third port of the second hub to be called mouse1
217 BUS="usb", PLACE="2.3", NAME="mouse1"
218
219 # ttyUSB1 should always be called pda with two additional symlinks
220 KERNEL="ttyUSB1", NAME="pda", SYMLINK="palmtop handheld"
221
222 # multiple USB webcams with symlinks to be called webcam0, webcam1, ...
223 BUS="usb", SYSFS_model="XV3", NAME="video%n", SYMLINK="webcam%n"
224 .fi
225 .P
226 Permissions and ownership for the created device files may specified at
227 .I /etc/udev/udev.permissions
228 or specified by the
229 .I udev_permission
230 value in the
231 .I /etc/udev/udev.conf
232 file.
233 .br
234 Every line lists a device name followed by owner, group and permission
235 mode. All values are separated by colons. The name field may contain a
236 pattern to apply the values to a whole class of devices.
237 .br
238 If
239 .B udev
240 was built using klibc or is used before the user database is accessible (e.g.
241 .BR initrd "(4)), only numeric owner and group values may be used."
242 .sp
243 .RI "A sample " udev.permissions " might look like this:"
244 .sp
245 .nf
246 #name:user:group:mode
247 input/*:root:root:644
248 ttyUSB1:0:8:0660
249 video*:root:video:0660
250 dsp1:::0666
251 .fi
252 .P
253 A number of different fields in the above configuration files support a simple
254 form of shell style pattern matching. It supports the following pattern characters:
255 .TP
256 .B *
257 Matches zero, one, or more characters.
258 .TP
259 .B ?
260 Matches any single character, but does not match zero characters.
261 .TP
262 .B [ ]
263 Matches any single character specified within the brackets. For example, the
264 pattern string "tty[SR]" would match either "ttyS" or "ttyR".  Ranges are also
265 supported within this match with the '-' character.  For example, to match on
266 the range of all digits, the pattern [0-9] would be used. If the first character
267 following the '[' is a '!' then any character not enclosed is matched.
268 .SH "FILES"
269 .nf
270 /sbin/udev                           udev program
271 /etc/udev/*                          udev config files
272 /etc/hotplug.d/default/udev.hotplug  hotplug symlink to udev program
273 .fi
274 .LP
275 .SH "SEE ALSO"
276 .BR hotplug (8)
277 .PP
278 The
279 .I http://linux-hotplug.sourceforge.net/
280 web site.
281 .SH AUTHORS
282 .B udev
283 was developed by Greg Kroah-Hartman <greg@kroah.com> with much help from
284 Dan Stekloff <dsteklof@us.ibm.com>, Kay Sievers <kay.sievers@vrfy.org>, and
285 many others.