chiark / gitweb /
usb_id: add "break" to currently unused case labels
[elogind.git] / udev / 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   <section>
7     <title>udev</title>
8     <refentry>
9       <refentryinfo>
10         <title>udev</title>
11         <date>August 2005</date>
12         <productname>udev</productname>
13       </refentryinfo>
14
15       <refmeta>
16         <refentrytitle>udev</refentrytitle>
17         <manvolnum>7</manvolnum>
18         <refmiscinfo class="version"></refmiscinfo>
19       </refmeta>
20
21       <refnamediv>
22         <refname>udev</refname>
23         <refpurpose>dynamic device management</refpurpose>
24       </refnamediv>
25
26       <refsect1><title>DESCRIPTION</title>
27         <para>udev provides a dynamic device directory containing only the files for
28         actually present devices. It creates or removes device node files in the
29         <filename>/dev</filename> directory, or it renames network interfaces.</para>
30
31         <para>Usually udev runs as <citerefentry><refentrytitle>udevd</refentrytitle>
32         <manvolnum>8</manvolnum></citerefentry> and receives uevents directly from the
33         kernel if a device is added or removed from the system.</para>
34
35         <para>If udev receives a device event, it matches its configured rules
36         against the available device attributes provided in sysfs to identify the device.
37         Rules that match may provide additional device information or specify a device
38         node name and multiple symlink names and instruct udev to run additional programs
39         as part of the device event handling.</para>
40       </refsect1>
41
42       <refsect1><title>CONFIGURATION</title>
43         <para>udev configuration files are placed in <filename>/etc/udev/</filename>
44         and <filename>/lib/udev/</filename>. All empty lines, or lines beginning with
45         '#' will be ignored.</para>
46
47         <refsect2><title>Configuration file</title>
48           <para>udev expects its main configuration file at <filename>/etc/udev/udev.conf</filename>.
49           It consists of a set of variables allowing the user to override default udev values.
50           The following variables can be set:</para>
51           <variablelist>
52             <varlistentry>
53               <term><option>udev_root</option></term>
54               <listitem>
55                 <para>Specifies where to place the device nodes in the filesystem.
56                 The default value is <filename>/dev</filename>.</para>
57               </listitem>
58             </varlistentry>
59
60             <varlistentry>
61               <term><option>udev_log</option></term>
62               <listitem>
63                 <para>The logging priority. Valid values are the numerical syslog priorities
64                 or their textual representations: <option>err</option>, <option>info</option>
65                 and <option>debug</option>.</para>
66               </listitem>
67             </varlistentry>
68           </variablelist>
69         </refsect2>
70
71         <refsect2><title>Rules files</title>
72           <para>The udev rules are read from the files located in the
73           default rules directory <filename>/lib/udev/rules.d/</filename>,
74           the custom rules directory <filename>/etc/udev/rules.d/</filename>
75           and the temporary rules directory <filename>/dev/.udev/rules.d/</filename>.
76           All rule files are sorted and processed in lexical order, regardless
77           in which of these directories they live.</para>
78
79           <para>Rule files are required to have a unique name, duplicate file names
80           are ignored. Files in <filename>/etc/udev/rules.d/</filename> have precedence
81           over files with the same name in <filename>/lib/udev/rules.d/</filename>. This
82           can be used to ignore a default rules file if needed.</para>
83
84           <para>Every line in the rules file contains at least one key value pair.
85           There are two kind of keys, match and assignment keys.
86           If all match keys are matching against its value, the rule gets applied and the
87           assign keys get the specified value assigned.</para>
88
89           <para>A matching rule may specify the name of the device node, add a symlink
90           pointing to the node, or run a specified program as part of the event handling.
91           If no matching rule is found, the default device node name is used.</para>
92
93           <para>A rule may consist of a list of one or more key value pairs separated by
94           a comma. Each key has a distinct operation, depending on the used operator. Valid
95           operators are:</para>
96           <variablelist>
97             <varlistentry>
98               <term><option>==</option></term>
99               <listitem>
100                 <para>Compare for equality.</para>
101               </listitem>
102             </varlistentry>
103
104             <varlistentry>
105               <term><option>!=</option></term>
106               <listitem>
107                 <para>Compare for non-equality.</para>
108               </listitem>
109             </varlistentry>
110
111             <varlistentry>
112               <term><option>=</option></term>
113               <listitem>
114                 <para>Assign a value to a key. Keys that represent a list, are reset
115                 and only this single value is assigned.</para>
116               </listitem>
117             </varlistentry>
118
119             <varlistentry>
120               <term><option>+=</option></term>
121               <listitem>
122                 <para>Add the value to a key that holds a list of entries.</para>
123               </listitem>
124             </varlistentry>
125
126             <varlistentry>
127               <term><option>:=</option></term>
128               <listitem>
129                 <para>Assign  a  value  to  a key finally; disallow any later changes,
130                 which may be used to prevent changes by any later rules.</para>
131               </listitem>
132             </varlistentry>
133           </variablelist>
134
135           <para>The following key names can be used to match against device properties.
136           Some of the keys also match against properties of the parent devices in sysfs,
137           not only the device that has generated the event. If multiple keys that match
138           a parent device are specified in a single rule, all these keys must match at
139           one and the same parent device.</para>
140           <variablelist>
141             <varlistentry>
142               <term><option>ACTION</option></term>
143               <listitem>
144                 <para>Match the name of the event action.</para>
145               </listitem>
146             </varlistentry>
147
148             <varlistentry>
149               <term><option>DEVPATH</option></term>
150               <listitem>
151                 <para>Match the devpath of the event device.</para>
152               </listitem>
153             </varlistentry>
154
155             <varlistentry>
156               <term><option>KERNEL</option></term>
157               <listitem>
158                 <para>Match the name of the event device.</para>
159               </listitem>
160             </varlistentry>
161
162             <varlistentry>
163               <term><option>NAME</option></term>
164               <listitem>
165                 <para>Match the name of the node or network interface. It can
166                 be used once the NAME key has been set in one of the preceding
167                 rules.</para>
168               </listitem>
169             </varlistentry>
170
171             <varlistentry>
172               <term><option>SUBSYSTEM</option></term>
173               <listitem>
174                 <para>Match the subsystem of the event device.</para>
175               </listitem>
176             </varlistentry>
177             <varlistentry>
178               <term><option>DRIVER</option></term>
179               <listitem>
180                 <para>Match the driver name of the event device. Only set for devices
181                 which are bound to a driver at the time the event is generated.</para>
182               </listitem>
183             </varlistentry>
184             <varlistentry>
185               <term><option>ATTR{<replaceable>filename</replaceable>}</option></term>
186               <listitem>
187                 <para>Match sysfs attribute values of the event device. Trailing
188                 whitespace in the attribute values is ignored, if the specified match
189                 value does not contain trailing whitespace itself.
190                 </para>
191               </listitem>
192             </varlistentry>
193
194             <varlistentry>
195               <term><option>KERNELS</option></term>
196               <listitem>
197                 <para>Search the devpath upwards for a matching device name.</para>
198               </listitem>
199             </varlistentry>
200
201             <varlistentry>
202               <term><option>SUBSYSTEMS</option></term>
203               <listitem>
204                 <para>Search the devpath upwards for a matching device subsystem name.</para>
205               </listitem>
206             </varlistentry>
207
208             <varlistentry>
209               <term><option>DRIVERS</option></term>
210               <listitem>
211                 <para>Search the devpath upwards for a matching device driver name.</para>
212               </listitem>
213             </varlistentry>
214
215             <varlistentry>
216               <term><option>ATTRS{<replaceable>filename</replaceable>}</option></term>
217               <listitem>
218                 <para>Search the devpath upwards for a device with matching sysfs attribute values.
219                 If multiple <option>ATTRS</option> matches are specified, all of them
220                 must match on the same device. Trailing whitespace in the attribute values is ignored,
221                 if the specified match value does not contain trailing whitespace itself.</para>
222               </listitem>
223             </varlistentry>
224
225             <varlistentry>
226               <term><option>ENV{<replaceable>key</replaceable>}</option></term>
227               <listitem>
228                 <para>Match against a device property value.</para>
229               </listitem>
230             </varlistentry>
231
232             <varlistentry>
233               <term><option>TEST{<replaceable>octal mode mask</replaceable>}</option></term>
234               <listitem>
235                 <para>Test the existence of a file. An octal mode mask can be specified
236                 if needed.</para>
237               </listitem>
238             </varlistentry>
239
240             <varlistentry>
241               <term><option>PROGRAM</option></term>
242               <listitem>
243                 <para>Execute a program. The key is true, if the program returns
244                 successfully. The device properties are made available to the
245                 executed program in the environment. The program's output printed to
246                 stdout, is available in the RESULT key.</para>
247               </listitem>
248             </varlistentry>
249
250             <varlistentry>
251               <term><option>RESULT</option></term>
252               <listitem>
253                 <para>Match the returned string of the last PROGRAM call. This key can
254                 be used in the same or in any later rule after a PROGRAM call.</para>
255               </listitem>
256             </varlistentry>
257           </variablelist>
258
259           <para>Most of the fields support a shell style pattern matching. The following
260           pattern characters are supported:</para>
261           <variablelist>
262             <varlistentry>
263               <term><option>*</option></term>
264               <listitem>
265                 <para>Matches zero, or any number of characters.</para>
266               </listitem>
267             </varlistentry>
268             <varlistentry>
269               <term><option>?</option></term>
270               <listitem>
271                 <para>Matches any single character.</para>
272               </listitem>
273             </varlistentry>
274             <varlistentry>
275               <term><option>[]</option></term>
276               <listitem>
277                 <para>Matches any single character specified within the brackets. For
278                 example, the pattern string 'tty[SR]' would match either 'ttyS' or 'ttyR'.
279                 Ranges are also supported within this match with the '-' character.
280                 For example, to match on the range of all digits, the pattern [0-9] would
281                 be used. If the first character following the '[' is a '!', any characters
282                 not enclosed are matched.</para>
283               </listitem>
284             </varlistentry>
285           </variablelist>
286
287           <para>The following keys can get values assigned:</para>
288           <variablelist>
289             <varlistentry>
290               <term><option>NAME</option></term>
291               <listitem>
292                 <para>The name of the node to be created, or the name the network interface
293                 should be renamed to. Only one rule can set the node name, all later rules with
294                 a NAME key will be ignored.</para>
295               </listitem>
296             </varlistentry>
297
298             <varlistentry>
299               <term><option>SYMLINK</option></term>
300               <listitem>
301                 <para>The name of a symlink targeting the node. Every matching rule can add
302                 this value to the list of symlinks to be created along with the device  node.
303                 Multiple symlinks may be specified by separating the names by the space
304                 character.</para>
305               </listitem>
306             </varlistentry>
307
308             <varlistentry>
309               <term><option>OWNER, GROUP, MODE</option></term>
310               <listitem>
311                 <para>The permissions for the device node. Every specified value overwrites
312                 the compiled-in default value.</para>
313               </listitem>
314             </varlistentry>
315
316             <varlistentry>
317               <term><option>ATTR{<replaceable>key</replaceable>}</option></term>
318               <listitem>
319                 <para>The value that should be written to a sysfs attribute of the
320                 event device.</para>
321               </listitem>
322             </varlistentry>
323
324             <varlistentry>
325               <term><option>ENV{<replaceable>key</replaceable>}</option></term>
326               <listitem>
327                 <para>Set a device property value.</para>
328               </listitem>
329             </varlistentry>
330
331             <varlistentry>
332               <term><option>RUN</option></term>
333               <listitem>
334                 <para>Add a program to the list of programs to be executed for a specific
335                 device. This can only be used for very short running tasks. Running an
336                 event process for a long period of time may block all further events for
337                 this or a dependent device. Long running tasks need to be immediately
338                 detached from the event process itself.</para>
339                 <para>If the specifiefd string starts with
340                 <option>socket:<replaceable>path</replaceable></option>, all current event
341                 values will be passed to the specified socket, as a message in the same
342                 format the kernel sends an uevent. If the first character of the specified path
343                 is an @ character, an abstract namespace socket is used, instead of an existing
344                 socket file.</para>
345               </listitem>
346             </varlistentry>
347
348             <varlistentry>
349               <term><option>LABEL</option></term>
350               <listitem>
351                 <para>Named label where a GOTO can jump to.</para>
352               </listitem>
353             </varlistentry>
354
355             <varlistentry>
356               <term><option>GOTO</option></term>
357               <listitem>
358                 <para>Jumps to the next LABEL with a matching name</para>
359               </listitem>
360             </varlistentry>
361
362             <varlistentry>
363               <term><option>IMPORT{<replaceable>type</replaceable>}</option></term>
364               <listitem>
365                 <para>Import a set of variables as device properties,
366                 depending on <replaceable>type</replaceable>:</para>
367                 <variablelist>
368                   <varlistentry>
369                     <term><option>program</option></term>
370                     <listitem>
371                       <para>Execute an external program specified as the assigned value and
372                       import its output, which must be in environment key format.</para>
373                     </listitem>
374                   </varlistentry>
375                   <varlistentry>
376                     <term><option>file</option></term>
377                     <listitem>
378                       <para>Import a text file specified as the assigned value, which must be in
379                       environment key format.</para>
380                     </listitem>
381                   </varlistentry>
382                   <varlistentry>
383                     <term><option>parent</option></term>
384                     <listitem>
385                       <para>Import the stored keys from the parent device by reading
386                       the database entry of the parent device. The value assigned to
387                       <option>IMPORT{parent}</option> is used as a filter of key names
388                       to import (with the same shell-style pattern matching used for
389                       comparisons).</para>
390                     </listitem>
391                   </varlistentry>
392                 </variablelist>
393                 <para>If no option is given, udev will choose between <option>program</option>
394                 and <option>file</option> based on the executable bit of the file
395                 permissions.</para>
396               </listitem>
397             </varlistentry>
398
399             <varlistentry>
400               <term><option>WAIT_FOR</option></term>
401               <listitem>
402                 <para>Wait for a file to become available.</para>
403               </listitem>
404             </varlistentry>
405
406             <varlistentry>
407               <term><option>OPTIONS</option></term>
408               <listitem>
409                 <para>Rule and device options:</para>
410                 <variablelist>
411                   <varlistentry>
412                     <term><option>last_rule</option></term>
413                     <listitem>
414                       <para>Stops further rules application. No later rules will have
415                       any effect.</para>
416                     </listitem>
417                   </varlistentry>
418                   <varlistentry>
419                     <term><option>ignore_device</option></term>
420                     <listitem>
421                       <para>Ignore this event completely.</para>
422                     </listitem>
423                   </varlistentry>
424                   <varlistentry>
425                     <term><option>ignore_remove</option></term>
426                     <listitem>
427                       <para>Do not remove the device node when the device goes away. This may be
428                       useful as a workaround for broken device drivers.</para>
429                     </listitem>
430                   </varlistentry>
431                   <varlistentry>
432                     <term><option>link_priority=<replaceable>value</replaceable></option></term>
433                     <listitem>
434                       <para>Specify the priority of the created symlinks. Devices with higher
435                       priorities overwrite existing symlinks of other devices. The default is 0.</para>
436                     </listitem>
437                   </varlistentry>
438                   <varlistentry>
439                     <term><option>all_partitions</option></term>
440                     <listitem>
441                       <para>Create the device nodes for all available partitions of a block device.
442                       This may be useful for removable media devices where media changes are not
443                       detected.</para>
444                     </listitem>
445                   </varlistentry>
446                   <varlistentry>
447                     <term><option>event_timeout=</option></term>
448                     <listitem>
449                       <para>Number of seconds an event will wait for operations to finish, before it
450                       will terminate itself.</para>
451                     </listitem>
452                   </varlistentry>
453                   <varlistentry>
454                     <term><option>string_escape=<replaceable>none|replace</replaceable></option></term>
455                     <listitem>
456                       <para>Usually control and other possibly unsafe characters are replaced
457                       in strings used for device naming. The mode of replacement can be specified
458                       with this option.</para>
459                     </listitem>
460                   </varlistentry>
461                 </variablelist>
462               </listitem>
463             </varlistentry>
464           </variablelist>
465
466           <para>The <option>NAME</option>, <option>SYMLINK</option>, <option>PROGRAM</option>,
467           <option>OWNER</option>, <option>GROUP</option>, <option>MODE</option>  and  <option>RUN</option>
468           fields support simple printf-like string substitutions. The <option>RUN</option>
469           format chars gets applied after all rules have been processed, right before the program
470           is executed. It allows the use of device properties set by earlier matching
471           rules. For all other fields, substitutions are applied while the individual rule is
472           being processed. The available substitutions are:</para>
473           <variablelist>
474             <varlistentry>
475               <term><option>$kernel</option>, <option>%k</option></term>
476               <listitem>
477                 <para>The kernel name for this device.</para>
478               </listitem>
479             </varlistentry>
480
481             <varlistentry>
482               <term><option>$number</option>, <option>%n</option></term>
483               <listitem>
484                 <para>The kernel number for this device. For example, 'sda3' has
485                 kernel number of '3'</para>
486               </listitem>
487             </varlistentry>
488
489             <varlistentry>
490               <term><option>$devpath</option>, <option>%p</option></term>
491               <listitem>
492                 <para>The devpath of the device.</para>
493               </listitem>
494             </varlistentry>
495
496             <varlistentry>
497               <term><option>$id</option>, <option>%b</option></term>
498               <listitem>
499                 <para>The name of the device matched while searching the devpath upwards for
500                   <option>SUBSYSTEMS</option>, <option>KERNELS</option>, <option>DRIVERS</option> and <option>ATTRS</option>.
501                 </para>
502               </listitem>
503             </varlistentry>
504
505             <varlistentry>
506               <term><option>$driver</option></term>
507               <listitem>
508                 <para>The driver name of the device matched while searching the devpath upwards for
509                   <option>SUBSYSTEMS</option>, <option>KERNELS</option>, <option>DRIVERS</option> and <option>ATTRS</option>.
510                 </para>
511               </listitem>
512             </varlistentry>
513
514             <varlistentry>
515               <term><option>$attr{<replaceable>file</replaceable>}</option>, <option>%s{<replaceable>file</replaceable>}</option></term>
516               <listitem>
517                 <para>The value of a sysfs attribute found at the device, where
518                 all keys of the rule have matched. If the matching device does not have
519                 such an attribute, follow the chain of parent devices and use the value
520                 of the first attribute that matches.
521                 If the attribute is a symlink, the last element of the symlink target is
522                 returned as the value.</para>
523               </listitem>
524             </varlistentry>
525
526             <varlistentry>
527               <term><option>$env{<replaceable>key</replaceable>}</option>, <option>%E{<replaceable>key</replaceable>}</option></term>
528               <listitem>
529                 <para>A device property value.</para>
530               </listitem>
531             </varlistentry>
532
533             <varlistentry>
534               <term><option>$major</option>, <option>%M</option></term>
535               <listitem>
536                 <para>The kernel major number for the device.</para>
537               </listitem>
538             </varlistentry>
539
540             <varlistentry>
541               <term><option>$minor</option>, <option>%m</option></term>
542               <listitem>
543                 <para>The kernel minor number for the device.</para>
544               </listitem>
545             </varlistentry>
546
547             <varlistentry>
548               <term><option>$result</option>, <option>%c</option></term>
549               <listitem>
550                 <para>The string returned by the external program requested with PROGRAM.
551                 A single part of the string, separated by a space character may be selected
552                 by specifying the part number as an attribute: <option>%c{N}</option>.
553                 If the number is followed by the '+' char this part plus all remaining parts
554                 of the result string are substituted: <option>%c{N+}</option></para>
555               </listitem>
556             </varlistentry>
557
558             <varlistentry>
559               <term><option>$parent</option>, <option>%P</option></term>
560               <listitem>
561                 <para>The node name of the parent device.</para>
562               </listitem>
563             </varlistentry>
564
565             <varlistentry>
566               <term><option>$name</option></term>
567               <listitem>
568                 <para>The current name of the device node. If not changed by a rule, it is the
569                 name of the kernel device.</para>
570               </listitem>
571             </varlistentry>
572
573             <varlistentry>
574               <term><option>$links</option></term>
575               <listitem>
576                 <para>The current list of symlinks, separated by a space character. The value is
577                 only set if an earlier rule assigned a value, or during a remove events.</para>
578               </listitem>
579             </varlistentry>
580
581             <varlistentry>
582               <term><option>$root</option>, <option>%r</option></term>
583               <listitem>
584                 <para>The udev_root value.</para>
585               </listitem>
586             </varlistentry>
587
588             <varlistentry>
589               <term><option>$sys</option>, <option>%S</option></term>
590               <listitem>
591                 <para>The sysfs mount point.</para>
592               </listitem>
593             </varlistentry>
594
595             <varlistentry>
596               <term><option>$tempnode</option>, <option>%N</option></term>
597               <listitem>
598                 <para>The name of a created temporary device node to provide access to
599                 the device from a external program before the real node is created.</para>
600               </listitem>
601             </varlistentry>
602
603             <varlistentry>
604               <term><option>%%</option></term>
605               <listitem>
606               <para>The '%' character itself.</para>
607               </listitem>
608             </varlistentry>
609
610             <varlistentry>
611               <term><option>$$</option></term>
612               <listitem>
613               <para>The '$' character itself.</para>
614               </listitem>
615             </varlistentry>
616           </variablelist>
617           <para>The count of characters to be substituted may be limited by specifying
618           the format length value. For example, '%3s{file}' will only
619           insert the first three characters of the sysfs attribute</para>
620         </refsect2>
621       </refsect1>
622
623       <refsect1><title>AUTHOR</title>
624         <para>Written by Greg Kroah-Hartman <email>greg@kroah.com</email> and
625         Kay Sievers <email>kay.sievers@vrfy.org</email>. With much help from
626         Dan Stekloff and many others.</para>
627       </refsect1>
628
629       <refsect1>
630         <title>SEE ALSO</title>
631         <para><citerefentry>
632             <refentrytitle>udevd</refentrytitle><manvolnum>8</manvolnum>
633           </citerefentry>, 
634           <citerefentry>
635             <refentrytitle>udevadm</refentrytitle><manvolnum>8</manvolnum>
636         </citerefentry></para>
637       </refsect1>
638     </refentry>
639   </section>
640 </article>