chiark / gitweb /
udevd: simplify rules execution loop
[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. Depending on the type
190                 of operator, this key is also used to set the value of a sysfs attribute.
191                 </para>
192               </listitem>
193             </varlistentry>
194
195             <varlistentry>
196               <term><option>KERNELS</option></term>
197               <listitem>
198                 <para>Search the devpath upwards for a matching device name.</para>
199               </listitem>
200             </varlistentry>
201
202             <varlistentry>
203               <term><option>SUBSYSTEMS</option></term>
204               <listitem>
205                 <para>Search the devpath upwards for a matching device subsystem name.</para>
206               </listitem>
207             </varlistentry>
208
209             <varlistentry>
210               <term><option>DRIVERS</option></term>
211               <listitem>
212                 <para>Search the devpath upwards for a matching device driver name.</para>
213               </listitem>
214             </varlistentry>
215
216             <varlistentry>
217               <term><option>ATTRS{<replaceable>filename</replaceable>}</option></term>
218               <listitem>
219                 <para>Search the devpath upwards for a device with matching sysfs attribute values.
220                 If multiple <option>ATTRS</option> matches are specified, all of them
221                 must match on the same device. Trailing whitespace in the attribute values is ignored,
222                 if the specified match value does not contain trailing whitespace itself.</para>
223               </listitem>
224             </varlistentry>
225
226             <varlistentry>
227               <term><option>ENV{<replaceable>key</replaceable>}</option></term>
228               <listitem>
229                 <para>Match against a device property value.</para>
230               </listitem>
231             </varlistentry>
232
233             <varlistentry>
234               <term><option>TEST{<replaceable>octal mode mask</replaceable>}</option></term>
235               <listitem>
236                 <para>Test the existence of a file. An octal mode mask can be specified
237                 if needed.</para>
238               </listitem>
239             </varlistentry>
240
241             <varlistentry>
242               <term><option>PROGRAM</option></term>
243               <listitem>
244                 <para>Execute a program. The key is true, if the program returns
245                 successfully. The device properties are made available to the
246                 executed program in the environment. The program's output printed to
247                 stdout, is available in the RESULT key.</para>
248               </listitem>
249             </varlistentry>
250
251             <varlistentry>
252               <term><option>RESULT</option></term>
253               <listitem>
254                 <para>Match the returned string of the last PROGRAM call. This key can
255                 be used in the same or in any later rule after a PROGRAM call.</para>
256               </listitem>
257             </varlistentry>
258           </variablelist>
259
260           <para>Most of the fields support a shell style pattern matching. The following
261           pattern characters are supported:</para>
262           <variablelist>
263             <varlistentry>
264               <term><option>*</option></term>
265               <listitem>
266                 <para>Matches zero, or any number of characters.</para>
267               </listitem>
268             </varlistentry>
269             <varlistentry>
270               <term><option>?</option></term>
271               <listitem>
272                 <para>Matches any single character.</para>
273               </listitem>
274             </varlistentry>
275             <varlistentry>
276               <term><option>[]</option></term>
277               <listitem>
278                 <para>Matches any single character specified within the brackets. For
279                 example, the pattern string 'tty[SR]' would match either 'ttyS' or 'ttyR'.
280                 Ranges are also supported within this match with the '-' character.
281                 For example, to match on the range of all digits, the pattern [0-9] would
282                 be used. If the first character following the '[' is a '!', any characters
283                 not enclosed are matched.</para>
284               </listitem>
285             </varlistentry>
286           </variablelist>
287
288           <para>The following keys can get values assigned:</para>
289           <variablelist>
290             <varlistentry>
291               <term><option>NAME</option></term>
292               <listitem>
293                 <para>The name of the node to be created, or the name the network interface
294                 should be renamed to. Only one rule can set the node name, all later rules with
295                 a NAME key will be ignored.</para>
296               </listitem>
297             </varlistentry>
298
299             <varlistentry>
300               <term><option>SYMLINK</option></term>
301               <listitem>
302                 <para>The name of a symlink targeting the node. Every matching rule can add
303                 this value to the list of symlinks to be created along with the device  node.
304                 Multiple symlinks may be specified by separating the names by the space
305                 character.</para>
306               </listitem>
307             </varlistentry>
308
309             <varlistentry>
310               <term><option>OWNER, GROUP, MODE</option></term>
311               <listitem>
312                 <para>The permissions for the device node. Every specified value overwrites
313                 the compiled-in default value.</para>
314               </listitem>
315             </varlistentry>
316
317             <varlistentry>
318               <term><option>ATTR{<replaceable>key</replaceable>}</option></term>
319               <listitem>
320                 <para>The value that should be written to a sysfs attribute of the
321                 event device. Depending on the type of operator, this key is also
322                 used to match against the value of a sysfs attribute.</para>
323               </listitem>
324             </varlistentry>
325
326             <varlistentry>
327               <term><option>ENV{<replaceable>key</replaceable>}</option></term>
328               <listitem>
329                 <para>Set a device property value.</para>
330               </listitem>
331             </varlistentry>
332
333             <varlistentry>
334               <term><option>RUN</option></term>
335               <listitem>
336                 <para>Add a program to the list of programs to be executed for a specific
337                 device. This can only be used for very short running tasks. Running an
338                 event process for a long period of time may block all further events for
339                 this or a dependent device. Long running tasks need to be immediately
340                 detached from the event process itself.</para>
341                 <para>If the specifiefd string starts with
342                 <option>socket:<replaceable>path</replaceable></option>, all current event
343                 values will be passed to the specified socket, as a message in the same
344                 format the kernel sends an uevent. If the first character of the specified path
345                 is an @ character, an abstract namespace socket is used, instead of an existing
346                 socket file.</para>
347               </listitem>
348             </varlistentry>
349
350             <varlistentry>
351               <term><option>LABEL</option></term>
352               <listitem>
353                 <para>Named label where a GOTO can jump to.</para>
354               </listitem>
355             </varlistentry>
356
357             <varlistentry>
358               <term><option>GOTO</option></term>
359               <listitem>
360                 <para>Jumps to the next LABEL with a matching name</para>
361               </listitem>
362             </varlistentry>
363
364             <varlistentry>
365               <term><option>IMPORT{<replaceable>type</replaceable>}</option></term>
366               <listitem>
367                 <para>Import a set of variables as device properties,
368                 depending on <replaceable>type</replaceable>:</para>
369                 <variablelist>
370                   <varlistentry>
371                     <term><option>program</option></term>
372                     <listitem>
373                       <para>Execute an external program specified as the assigned value and
374                       import its output, which must be in environment key format.</para>
375                     </listitem>
376                   </varlistentry>
377                   <varlistentry>
378                     <term><option>file</option></term>
379                     <listitem>
380                       <para>Import a text file specified as the assigned value, which must be in
381                       environment key format.</para>
382                     </listitem>
383                   </varlistentry>
384                   <varlistentry>
385                     <term><option>parent</option></term>
386                     <listitem>
387                       <para>Import the stored keys from the parent device by reading
388                       the database entry of the parent device. The value assigned to
389                       <option>IMPORT{parent}</option> is used as a filter of key names
390                       to import (with the same shell-style pattern matching used for
391                       comparisons).</para>
392                     </listitem>
393                   </varlistentry>
394                 </variablelist>
395                 <para>If no option is given, udev will choose between <option>program</option>
396                 and <option>file</option> based on the executable bit of the file
397                 permissions.</para>
398               </listitem>
399             </varlistentry>
400
401             <varlistentry>
402               <term><option>WAIT_FOR</option></term>
403               <listitem>
404                 <para>Wait for a file to become available.</para>
405               </listitem>
406             </varlistentry>
407
408             <varlistentry>
409               <term><option>OPTIONS</option></term>
410               <listitem>
411                 <para>Rule and device options:</para>
412                 <variablelist>
413                   <varlistentry>
414                     <term><option>last_rule</option></term>
415                     <listitem>
416                       <para>Stops further rules application. No later rules will have
417                       any effect.</para>
418                     </listitem>
419                   </varlistentry>
420                   <varlistentry>
421                     <term><option>ignore_device</option></term>
422                     <listitem>
423                       <para>Ignore this event completely.</para>
424                     </listitem>
425                   </varlistentry>
426                   <varlistentry>
427                     <term><option>ignore_remove</option></term>
428                     <listitem>
429                       <para>Do not remove the device node when the device goes away. This may be
430                       useful as a workaround for broken device drivers.</para>
431                     </listitem>
432                   </varlistentry>
433                   <varlistentry>
434                     <term><option>link_priority=<replaceable>value</replaceable></option></term>
435                     <listitem>
436                       <para>Specify the priority of the created symlinks. Devices with higher
437                       priorities overwrite existing symlinks of other devices. The default is 0.</para>
438                     </listitem>
439                   </varlistentry>
440                   <varlistentry>
441                     <term><option>all_partitions</option></term>
442                     <listitem>
443                       <para>Create the device nodes for all available partitions of a block device.
444                       This may be useful for removable media devices where media changes are not
445                       detected.</para>
446                     </listitem>
447                   </varlistentry>
448                   <varlistentry>
449                     <term><option>event_timeout=</option></term>
450                     <listitem>
451                       <para>Number of seconds an event will wait for operations to finish, before it
452                       will terminate itself.</para>
453                     </listitem>
454                   </varlistentry>
455                   <varlistentry>
456                     <term><option>string_escape=<replaceable>none|replace</replaceable></option></term>
457                     <listitem>
458                       <para>Usually control and other possibly unsafe characters are replaced
459                       in strings used for device naming. The mode of replacement can be specified
460                       with this option.</para>
461                     </listitem>
462                   </varlistentry>
463                 </variablelist>
464               </listitem>
465             </varlistentry>
466           </variablelist>
467
468           <para>The <option>NAME</option>, <option>SYMLINK</option>, <option>PROGRAM</option>,
469           <option>OWNER</option>, <option>GROUP</option>, <option>MODE</option>  and  <option>RUN</option>
470           fields support simple printf-like string substitutions. The <option>RUN</option>
471           format chars gets applied after all rules have been processed, right before the program
472           is executed. It allows the use of device properties set by earlier matching
473           rules. For all other fields, substitutions are applied while the individual rule is
474           being processed. The available substitutions are:</para>
475           <variablelist>
476             <varlistentry>
477               <term><option>$kernel</option>, <option>%k</option></term>
478               <listitem>
479                 <para>The kernel name for this device.</para>
480               </listitem>
481             </varlistentry>
482
483             <varlistentry>
484               <term><option>$number</option>, <option>%n</option></term>
485               <listitem>
486                 <para>The kernel number for this device. For example, 'sda3' has
487                 kernel number of '3'</para>
488               </listitem>
489             </varlistentry>
490
491             <varlistentry>
492               <term><option>$devpath</option>, <option>%p</option></term>
493               <listitem>
494                 <para>The devpath of the device.</para>
495               </listitem>
496             </varlistentry>
497
498             <varlistentry>
499               <term><option>$id</option>, <option>%b</option></term>
500               <listitem>
501                 <para>The name of the device matched while searching the devpath upwards for
502                   <option>SUBSYSTEMS</option>, <option>KERNELS</option>, <option>DRIVERS</option> and <option>ATTRS</option>.
503                 </para>
504               </listitem>
505             </varlistentry>
506
507             <varlistentry>
508               <term><option>$driver</option></term>
509               <listitem>
510                 <para>The driver name of the device matched while searching the devpath upwards for
511                   <option>SUBSYSTEMS</option>, <option>KERNELS</option>, <option>DRIVERS</option> and <option>ATTRS</option>.
512                 </para>
513               </listitem>
514             </varlistentry>
515
516             <varlistentry>
517               <term><option>$attr{<replaceable>file</replaceable>}</option>, <option>%s{<replaceable>file</replaceable>}</option></term>
518               <listitem>
519                 <para>The value of a sysfs attribute found at the device, where
520                 all keys of the rule have matched. If the matching device does not have
521                 such an attribute, follow the chain of parent devices and use the value
522                 of the first attribute that matches.
523                 If the attribute is a symlink, the last element of the symlink target is
524                 returned as the value.</para>
525               </listitem>
526             </varlistentry>
527
528             <varlistentry>
529               <term><option>$env{<replaceable>key</replaceable>}</option>, <option>%E{<replaceable>key</replaceable>}</option></term>
530               <listitem>
531                 <para>A device property value.</para>
532               </listitem>
533             </varlistentry>
534
535             <varlistentry>
536               <term><option>$major</option>, <option>%M</option></term>
537               <listitem>
538                 <para>The kernel major number for the device.</para>
539               </listitem>
540             </varlistentry>
541
542             <varlistentry>
543               <term><option>$minor</option>, <option>%m</option></term>
544               <listitem>
545                 <para>The kernel minor number for the device.</para>
546               </listitem>
547             </varlistentry>
548
549             <varlistentry>
550               <term><option>$result</option>, <option>%c</option></term>
551               <listitem>
552                 <para>The string returned by the external program requested with PROGRAM.
553                 A single part of the string, separated by a space character may be selected
554                 by specifying the part number as an attribute: <option>%c{N}</option>.
555                 If the number is followed by the '+' char this part plus all remaining parts
556                 of the result string are substituted: <option>%c{N+}</option></para>
557               </listitem>
558             </varlistentry>
559
560             <varlistentry>
561               <term><option>$parent</option>, <option>%P</option></term>
562               <listitem>
563                 <para>The node name of the parent device.</para>
564               </listitem>
565             </varlistentry>
566
567             <varlistentry>
568               <term><option>$name</option></term>
569               <listitem>
570                 <para>The current name of the device node. If not changed by a rule, it is the
571                 name of the kernel device.</para>
572               </listitem>
573             </varlistentry>
574
575             <varlistentry>
576               <term><option>$links</option></term>
577               <listitem>
578                 <para>The current list of symlinks, separated by a space character. The value is
579                 only set if an earlier rule assigned a value, or during a remove events.</para>
580               </listitem>
581             </varlistentry>
582
583             <varlistentry>
584               <term><option>$root</option>, <option>%r</option></term>
585               <listitem>
586                 <para>The udev_root value.</para>
587               </listitem>
588             </varlistentry>
589
590             <varlistentry>
591               <term><option>$sys</option>, <option>%S</option></term>
592               <listitem>
593                 <para>The sysfs mount point.</para>
594               </listitem>
595             </varlistentry>
596
597             <varlistentry>
598               <term><option>$tempnode</option>, <option>%N</option></term>
599               <listitem>
600                 <para>The name of a created temporary device node to provide access to
601                 the device from a external program before the real node is created.</para>
602               </listitem>
603             </varlistentry>
604
605             <varlistentry>
606               <term><option>%%</option></term>
607               <listitem>
608               <para>The '%' character itself.</para>
609               </listitem>
610             </varlistentry>
611
612             <varlistentry>
613               <term><option>$$</option></term>
614               <listitem>
615               <para>The '$' character itself.</para>
616               </listitem>
617             </varlistentry>
618           </variablelist>
619           <para>The count of characters to be substituted may be limited by specifying
620           the format length value. For example, '%3s{file}' will only
621           insert the first three characters of the sysfs attribute</para>
622         </refsect2>
623       </refsect1>
624
625       <refsect1><title>AUTHOR</title>
626         <para>Written by Greg Kroah-Hartman <email>greg@kroah.com</email> and
627         Kay Sievers <email>kay.sievers@vrfy.org</email>. With much help from
628         Dan Stekloff and many others.</para>
629       </refsect1>
630
631       <refsect1>
632         <title>SEE ALSO</title>
633         <para><citerefentry>
634             <refentrytitle>udevd</refentrytitle><manvolnum>8</manvolnum>
635           </citerefentry>, 
636           <citerefentry>
637             <refentrytitle>udevadm</refentrytitle><manvolnum>8</manvolnum>
638         </citerefentry></para>
639       </refsect1>
640     </refentry>
641   </section>
642 </article>