chiark / gitweb /
090 release
[elogind.git] / udev.xml
1 <?xml version='1.0'?>
2 <!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3   "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4
5 <article>
6   <articleinfo>
7     <title>xmlto</title>
8     <author>
9       <firstname>Kay</firstname>
10       <surname>Sievers</surname>
11       <email>kay.sievers@vrfy.org</email>
12     </author>
13     <copyright>
14       <year>2006</year>
15       <holder>Kay Sievers</holder>
16     </copyright>
17   </articleinfo>
18
19   <section>
20     <title>udev</title>
21     <refentry>
22       <refentryinfo>
23         <title>udev</title>
24         <date>August 2005</date>
25         <productname>udev</productname>
26       </refentryinfo>
27
28       <refmeta>
29         <refentrytitle>udev</refentrytitle>
30         <manvolnum>7</manvolnum>
31       </refmeta>
32
33       <refnamediv>
34         <refname>udev</refname>
35         <refpurpose>dynamic device management</refpurpose>
36       </refnamediv>
37
38       <refsect1><title>DESCRIPTION</title>
39         <para>udev provides a dynamic device directory containing only the files for
40         actually present devices. It creates or removes device node files in the
41         <filename>/dev</filename> directory, or it renames network interfaces.</para>
42
43         <para>Usually udev runs as <citerefentry><refentrytitle>udevd</refentrytitle>
44         <manvolnum>8</manvolnum></citerefentry> and receives uevents directly from the
45         kernel if a device is added or removed form the system.</para>
46
47         <para>If udev receives a device event, it matches its configured rules
48         against the available device attributes provided in sysfs to identify the device.
49         Rules that match, may provide additional device information or specify a device
50         node name and multiple symlink names and instruct udev to run additional programs
51         as part of the device event handling.</para>
52       </refsect1>
53
54       <refsect1><title>CONFIGURATION</title>
55         <para>All udev configuration files are placed in <filename>/etc/udev/*</filename>.
56         Every file consists of a set of lines of text. All empty lines or lines beginning
57         with '#' will be ignored.</para>
58
59         <refsect2><title>Configuration file</title>
60           <para>udev expects its main configuration file at <filename>/etc/udev/udev.conf</filename>.
61           It consists of a set of variables allowing the user to override default udev values.
62           The following variables can be set:</para>
63           <variablelist>
64             <varlistentry>
65               <term><option>udev_root</option></term>
66               <listitem>
67                 <para>Specifies where to place the device nodes in the filesystem.
68                 The default value is <filename>/dev</filename>.</para>
69               </listitem>
70             </varlistentry>
71
72             <varlistentry>
73               <term><option>udev_rules</option></term>
74               <listitem>
75                 <para>The name of the udev rules file or directory to look for files
76                 with the suffix <filename>.rules</filename>. Multiple rule files are
77                 read in lexical order. The default value is
78                 <filename>/etc/udev/rules.d</filename>.</para>
79               </listitem>
80             </varlistentry>
81
82             <varlistentry>
83               <term><option>udev_log</option></term>
84               <listitem>
85                 <para>The logging priority. Valid values are the numerical syslog priorities
86                 or their textual representations: <option>err</option>, <option>info</option>
87                 and <option>debug</option>.</para>
88               </listitem>
89             </varlistentry>
90           </variablelist>
91         </refsect2>
92
93         <refsect2><title>Rules files</title>
94           <para>The udev rules are read from the files located in the
95           <filename>/etc/udev/rules.d</filename> directory or at the location specified
96           value in the configuraton file. Every line in the rules file contains at least
97           one key value pair. There are two kind of keys, match and assignement keys.
98           If all match keys are matching against its value, the rule gets applied and the
99           assign keys get the specified value assigned. A matching rule may specify the
100           name of the device node, add a symlink pointing to the node, or run a specified
101           program as part of the event handling. If no matching rule is found, the default
102           device node name is used.</para>
103
104           <para>A rule may consists of a list of one or more key value pairs separated by
105           a comma. Each key has a distinct operation, depending on the used operator. Valid
106           operators are:</para>
107           <variablelist>
108             <varlistentry>
109               <term><option>==</option></term>
110               <listitem>
111                 <para>Compare for equality.</para>
112               </listitem>
113             </varlistentry>
114
115             <varlistentry>
116               <term><option>!=</option></term>
117               <listitem>
118                 <para>Compare for non-equality.</para>
119               </listitem>
120             </varlistentry>
121
122             <varlistentry>
123               <term><option>=</option></term>
124               <listitem>
125                 <para>Asign a value to a key. Keys that represent a list, are reset
126                 and only this single value is assigned.</para>
127               </listitem>
128             </varlistentry>
129
130             <varlistentry>
131               <term><option>+=</option></term>
132               <listitem>
133                 <para>Add the value to a key that holds a list of entries.</para>
134               </listitem>
135             </varlistentry>
136
137             <varlistentry>
138               <term><option>:=</option></term>
139               <listitem>
140                 <para>Assign  a  value  to  a key finally; disallow any later changes,
141                 which may be used to prevent changes by any later rules.</para>
142               </listitem>
143             </varlistentry>
144           </variablelist>
145
146           <para>The following key names can be used to match against device properties:</para>
147           <variablelist>
148             <varlistentry>
149               <term><option>ACTION</option></term>
150               <listitem>
151                 <para>Match the name of the event action.</para>
152               </listitem>
153             </varlistentry>
154
155             <varlistentry>
156               <term><option>KERNEL</option></term>
157               <listitem>
158                 <para>Match the name of the device.</para>
159               </listitem>
160             </varlistentry>
161
162             <varlistentry>
163               <term><option>DEVPATH</option></term>
164               <listitem>
165                 <para>Match the devpath of the device.</para>
166               </listitem>
167             </varlistentry>
168
169             <varlistentry>
170               <term><option>SUBSYSTEM</option></term>
171               <listitem>
172                 <para>Match the subsystem of the device.</para>
173               </listitem>
174             </varlistentry>
175
176             <varlistentry>
177               <term><option>BUS</option></term>
178               <listitem>
179                 <para>Search the devpath upwards for a matching device subsystem name.</para>
180               </listitem>
181             </varlistentry>
182
183             <varlistentry>
184               <term><option>DRIVER</option></term>
185               <listitem>
186                 <para>Search the devpath upwards for a matching device driver name.</para>
187               </listitem>
188             </varlistentry>
189
190             <varlistentry>
191               <term><option>ID</option></term>
192               <listitem>
193                 <para>Search the devpath upwards for a matching device name.</para>
194               </listitem>
195             </varlistentry>
196
197             <varlistentry>
198               <term><option>SYSFS{<replaceable>filename</replaceable>}</option></term>
199               <listitem>
200                 <para>Search the devpath upwards for a device with matching sysfs attribute values.
201                 Up to five <option>SYSFS</option> keys can be specified per rule. All attributes
202                 must match on the same device. Trailing whitespace in the attribute values is ignored,
203                 if the specified match value does not contain trailing whitespace itself.</para>
204               </listitem>
205             </varlistentry>
206
207             <varlistentry>
208               <term><option>ENV{<replaceable>key</replaceable>}</option></term>
209               <listitem>
210                 <para>Match against the value of an environment variable. Up to five <option>ENV</option>
211                 keys can be specified per rule. This key can also be used to export a variable to
212                 the environment.</para>
213               </listitem>
214             </varlistentry>
215
216             <varlistentry>
217               <term><option>PROGRAM</option></term>
218               <listitem>
219                 <para>Execute external program. The key is true, if the program returns
220                 without exit code zero. The whole event environment is available to the
221                 executed program. The program's output printed to stdout is available for
222                 the RESULT key.</para>
223               </listitem>
224             </varlistentry>
225
226             <varlistentry>
227               <term><option>RESULT</option></term>
228               <listitem>
229                 <para>Match the returned string of the last PROGRAM call. This key can
230                 be used in the same or in any later rule after a PROGRAM call.</para>
231               </listitem>
232             </varlistentry>
233           </variablelist>
234
235           <para>Most of the fields support a shell style pattern matching. The following
236           pattern characters are supported:</para>
237           <variablelist>
238             <varlistentry>
239               <term><option>*</option></term>
240               <listitem>
241                 <para>Matches zero, or any number of characters.</para>
242               </listitem>
243             </varlistentry>
244             <varlistentry>
245               <term><option>?</option></term>
246               <listitem>
247                 <para>Matches any single character.</para>
248               </listitem>
249             </varlistentry>
250             <varlistentry>
251               <term><option>[]</option></term>
252               <listitem>
253                 <para>Matches any single character specified within the brackets.
254                 example, the pattern string 'tty[SR]' would match either 'ttyS' or 'ttyR'.
255                 Ranges are also supported within this match with the '-' character.
256                 For example, to match on the range of all digits, the pattern [0-9] would
257                 be used. If the first character following the '[' is a '!', any characters
258                 not enclosed are matched.</para>
259               </listitem>
260             </varlistentry>
261           </variablelist>
262
263           <para>The following keys can get values assigned:</para>
264           <variablelist>
265             <varlistentry>
266               <term><option>NAME</option></term>
267               <listitem>
268                 <para>The name of the node to be created, or the name the network interface
269                 should be renamed to. Only one rule can set the node name, all later rules with
270                 a NAME key will be ignored.</para>
271               </listitem>
272             </varlistentry>
273
274             <varlistentry>
275               <term><option>SYMLINK</option></term>
276               <listitem>
277                 <para>The name of a symlink targeting the node. Every matching rule can add
278                 this value to the list of symlinks to be created along with the device  node.
279                 Multiple symlinks may be specified by separating the names by the space
280                 character.</para>
281               </listitem>
282             </varlistentry>
283
284             <varlistentry>
285               <term><option>OWNER, GROUP, MODE</option></term>
286               <listitem>
287                 <para>The permissions for the device node. Every specified value overwrites
288                 the compiled-in default value.</para>
289               </listitem>
290             </varlistentry>
291
292             <varlistentry>
293               <term><option>ENV{<replaceable>key</replaceable>}</option></term>
294               <listitem>
295                 <para>Export a variable to the environment. This key can also be used to match
296                 against an environment variable.</para>
297               </listitem>
298             </varlistentry>
299
300             <varlistentry>
301               <term><option>RUN</option></term>
302               <listitem>
303                 <para>Add a program to the list of programs to be executed for a specific
304                 device. This can only be used for very short running tasks. Running an
305                 event process for a long period of time may block all further events for
306                 this or a dependent device. Long running tasks need to be immediately
307                 detached from the event process itself.</para>
308               </listitem>
309             </varlistentry>
310
311             <varlistentry>
312               <term><option>LABEL</option></term>
313               <listitem>
314                 <para>Named label where a GOTO can jump to.</para>
315               </listitem>
316             </varlistentry>
317
318             <varlistentry>
319               <term><option>GOTO</option></term>
320               <listitem>
321                 <para>Jumps to the next LABEL with a matching name</para>
322               </listitem>
323             </varlistentry>
324
325             <varlistentry>
326               <term><option>IMPORT{<replaceable>type</replaceable>}</option></term>
327               <listitem>
328                 <para>Import the printed result or the value of a file in environment key
329                 format into the event environment. <option>program</option> will execute an
330                 external program and read its output. <option>file</option> will inport a
331                 text file. If no option is given, udev will determine it from the  executable
332                 bit of of the file permissions.</para>
333               </listitem>
334             </varlistentry>
335
336             <varlistentry>
337               <term><option>WAIT_FOR_SYSFS</option></term>
338               <listitem>
339                 <para>Wait for the specified sysfs file of the device to be created. Can be used
340                 to fight against kernel sysfs timing issues.</para>
341               </listitem>
342             </varlistentry>
343
344             <varlistentry>
345               <term><option>OPTIONS</option></term>
346               <listitem>
347                 <para><option>last_rule</option> stops further rules application. No later rules
348                 will have any effect.
349                 <option>ignore_device</option> will ignore this event completely.
350                 <option>ignore_remove</option> will ignore  any  later  remove  event  for  this
351                 device. This may be useful as a workaround for broken device drivers.
352                 <option>all_partitions</option> will create device nodes for all available partitions of
353                 a block device. This may be useful for removable media.</para>
354               </listitem>
355             </varlistentry>
356           </variablelist>
357
358           <para>The <option>NAME</option>, <option>SYMLINK</option>, <option>PROGRAM</option>,
359           <option>OWNER</option>, <option>GROUP</option>  and  <option>RUN</option>
360           fields support simple printf-like string substitutions. The <option>RUN</option>
361           format chars gets applied after all rules have been processed, right before the program
362           is executed. It allows the use of the complete environment set by earlier matching
363           rules. For all other fields, substitutions are applied while the individual rule is
364           being processed. The available substitutions are:</para>
365           <variablelist>
366             <varlistentry>
367               <term><option>$kernel</option>, <option>%k</option></term>
368               <listitem>
369                 <para>The kernel name for this device.</para>
370               </listitem>
371             </varlistentry>
372
373             <varlistentry>
374               <term><option>$number</option>, <option>%n</option></term>
375               <listitem>
376                 <para>The kernel number for this device. For example, 'sda3' has
377                 kernel number of '3'</para>
378               </listitem>
379             </varlistentry>
380
381             <varlistentry>
382               <term><option>$devpath</option>, <option>%p</option></term>
383               <listitem>
384                 <para>The devpath of the device.</para>
385               </listitem>
386             </varlistentry>
387
388             <varlistentry>
389               <term><option>$id</option>, <option>%b</option></term>
390               <listitem>
391                 <para>The name of the device matched while searching the devpath upwards for
392                   <option>BUS</option>, <option>ID</option> <option>DRIVER</option> and <option>SYSFS</option>.
393                 </para>
394               </listitem>
395             </varlistentry>
396
397             <varlistentry>
398               <term><option>$sysfs{<replaceable>file</replaceable>}</option>, <option>%s{<replaceable>file</replaceable>}</option></term>
399               <listitem>
400                 <para>The value of a sysfs attribute found at the current or a parent device.</para>
401               </listitem>
402             </varlistentry>
403
404             <varlistentry>
405               <term><option>$env{<replaceable>key</replaceable>}</option>, <option>%E{<replaceable>key</replaceable>}</option></term>
406               <listitem>
407                 <para>The value of an environment variable.</para>
408               </listitem>
409             </varlistentry>
410
411             <varlistentry>
412               <term><option>$major</option>, <option>%M</option></term>
413               <listitem>
414                 <para>The kernel major number for the device.</para>
415               </listitem>
416             </varlistentry>
417
418             <varlistentry>
419               <term><option>$minor</option> <option>%m</option></term>
420               <listitem>
421                 <para>The kernel minor number for the device.</para>
422               </listitem>
423             </varlistentry>
424
425             <varlistentry>
426               <term><option>$result</option>, <option>%c</option></term>
427               <listitem>
428                 <para>The string returned by the external program requested with PROGRAM.
429                 A single part of the string, separated by a space character may be selected
430                 by specifying the part number as an attribute: <option>%c{N}</option>.
431                 If the number is followed by the '+' char this part plus all remaining parts
432                 of the result string are substituted: <option>%c{N+}</option></para>
433               </listitem>
434             </varlistentry>
435
436             <varlistentry>
437               <term><option>$parent</option>, <option>%P</option></term>
438               <listitem>
439                 <para>The node name of the parent device.</para>
440               </listitem>
441             </varlistentry>
442
443             <varlistentry>
444               <term><option>$root</option>, <option>%r</option></term>
445               <listitem>
446                 <para>The udev_root value.</para>
447               </listitem>
448             </varlistentry>
449
450             <varlistentry>
451               <term><option>$tempnode</option>, <option>%N</option></term>
452               <listitem>
453                 <para>The name of a created temporary device node to provide access to
454                 the device from a external program before the real node is created.</para>
455               </listitem>
456             </varlistentry>
457
458             <varlistentry>
459               <term><option>%%</option></term>
460               <listitem>
461               <para>The '%' character itself.</para>
462               </listitem>
463             </varlistentry>
464
465             <varlistentry>
466               <term><option>$$</option></term>
467               <listitem>
468               <para>The '$' character itself.</para>
469               </listitem>
470             </varlistentry>
471           </variablelist>
472           <para>The count of characters to be substituted may be limited by specifying
473           the format length value. For example, '%3s{file}' will only
474           insert the first three characters of the sysfs attribute</para>
475         </refsect2>
476       </refsect1>
477
478       <refsect1><title>AUTHOR</title>
479         <para>Written by Greg Kroah-Hartman <email>greg@kroah.com</email> and
480         Kay Sievers <email>kay.sievers@vrfy.org</email>. With much help from
481         Dan  Stekloff <email>dsteklof@us.ibm.com</email> and many others.</para>
482       </refsect1>
483
484       <refsect1>
485         <title>SEE ALSO</title>
486         <para><citerefentry>
487             <refentrytitle>udevd</refentrytitle><manvolnum>8</manvolnum>
488           </citerefentry>, 
489           <citerefentry>
490             <refentrytitle>udevinfo</refentrytitle><manvolnum>8</manvolnum>
491           </citerefentry>, 
492           <citerefentry>
493             <refentrytitle>udevmonitor</refentrytitle><manvolnum>8</manvolnum>
494         </citerefentry></para>
495       </refsect1>
496     </refentry>
497   </section>
498 </article>