]> git.ipfire.org Git - thirdparty/systemd.git/blame - udev.xml
volume_id: fix Makefile for parallel make
[thirdparty/systemd.git] / udev.xml
CommitLineData
7b86ada7
KS
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>
7b86ada7
KS
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>
2c769419 17 <manvolnum>7</manvolnum>
660508cd 18 <refmiscinfo class="version"></refmiscinfo>
7b86ada7
KS
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
7f723806 33 kernel if a device is added or removed from the system.</para>
7b86ada7
KS
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.
7f723806 37 Rules that match may provide additional device information or specify a device
7b86ada7
KS
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>All udev configuration files are placed in <filename>/etc/udev/*</filename>.
309d6fd3 44 Every file consists of a set of lines of text. All empty lines or lines beginning
7b86ada7
KS
45 with '#' 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
7b86ada7
KS
60 <varlistentry>
61 <term><option>udev_rules</option></term>
62 <listitem>
63 <para>The name of the udev rules file or directory to look for files
64 with the suffix <filename>.rules</filename>. Multiple rule files are
65 read in lexical order. The default value is
66 <filename>/etc/udev/rules.d</filename>.</para>
67 </listitem>
68 </varlistentry>
69
70 <varlistentry>
71 <term><option>udev_log</option></term>
72 <listitem>
73 <para>The logging priority. Valid values are the numerical syslog priorities
74 or their textual representations: <option>err</option>, <option>info</option>
75 and <option>debug</option>.</para>
76 </listitem>
77 </varlistentry>
78 </variablelist>
79 </refsect2>
80
81 <refsect2><title>Rules files</title>
82 <para>The udev rules are read from the files located in the
83 <filename>/etc/udev/rules.d</filename> directory or at the location specified
33a570f3
MB
84 value in the configuration file. Every line in the rules file contains at least
85 one key value pair. There are two kind of keys, match and assignment keys.
7b86ada7 86 If all match keys are matching against its value, the rule gets applied and the
e7c39acb
KS
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>
7b86ada7 92
7f723806 93 <para>A rule may consist of a list of one or more key value pairs separated by
7b86ada7
KS
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>
226b9692 114 <para>Assign a value to a key. Keys that represent a list, are reset
7b86ada7
KS
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
e7c39acb
KS
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>
7b86ada7
KS
140 <variablelist>
141 <varlistentry>
142 <term><option>ACTION</option></term>
143 <listitem>
03b24b71 144 <para>Match the name of the event action.</para>
7b86ada7
KS
145 </listitem>
146 </varlistentry>
147
148 <varlistentry>
95776dc6 149 <term><option>DEVPATH</option></term>
7b86ada7 150 <listitem>
95776dc6 151 <para>Match the devpath of the event device.</para>
7b86ada7
KS
152 </listitem>
153 </varlistentry>
154
155 <varlistentry>
95776dc6 156 <term><option>KERNEL</option></term>
7b86ada7 157 <listitem>
95776dc6 158 <para>Match the name of the event device.</para>
7b86ada7
KS
159 </listitem>
160 </varlistentry>
161
162 <varlistentry>
163 <term><option>SUBSYSTEM</option></term>
164 <listitem>
95776dc6
KS
165 <para>Match the subsystem of the event device.</para>
166 </listitem>
167 </varlistentry>
95776dc6
KS
168 <varlistentry>
169 <term><option>DRIVER</option></term>
170 <listitem>
e7c39acb
KS
171 <para>Match the driver name of the event device. Only set for devices
172 which are bound to a driver at the time the event is generated.</para>
95776dc6
KS
173 </listitem>
174 </varlistentry>
95776dc6
KS
175 <varlistentry>
176 <term><option>ATTR{<replaceable>filename</replaceable>}</option></term>
177 <listitem>
178 <para>Match sysfs attribute values of the event device. Up to five
179 <option>ATTR</option> keys can be specified per rule. Trailing
180 whitespace in the attribute values is ignored, if the specified match
02adc0cb
KS
181 value does not contain trailing whitespace itself. Depending on the type
182 of operator, this key is also used to set the value of a sysfs attribute.
183 </para>
7b86ada7
KS
184 </listitem>
185 </varlistentry>
186
187 <varlistentry>
95776dc6 188 <term><option>KERNELS</option></term>
7b86ada7 189 <listitem>
95776dc6 190 <para>Search the devpath upwards for a matching device name.</para>
7b86ada7
KS
191 </listitem>
192 </varlistentry>
193
194 <varlistentry>
95776dc6 195 <term><option>SUBSYSTEMS</option></term>
7b86ada7 196 <listitem>
95776dc6 197 <para>Search the devpath upwards for a matching device subsystem name.</para>
7b86ada7
KS
198 </listitem>
199 </varlistentry>
200
201 <varlistentry>
95776dc6 202 <term><option>DRIVERS</option></term>
7b86ada7 203 <listitem>
95776dc6 204 <para>Search the devpath upwards for a matching device driver name.</para>
7b86ada7
KS
205 </listitem>
206 </varlistentry>
207
208 <varlistentry>
95776dc6 209 <term><option>ATTRS{<replaceable>filename</replaceable>}</option></term>
7b86ada7 210 <listitem>
03b24b71 211 <para>Search the devpath upwards for a device with matching sysfs attribute values.
e7c39acb 212 Up to five <option>ATTRS</option> keys can be specified per rule, but all of them
03b24b71
KS
213 must match on the same device. Trailing whitespace in the attribute values is ignored,
214 if the specified match value does not contain trailing whitespace itself.</para>
7b86ada7
KS
215 </listitem>
216 </varlistentry>
217
218 <varlistentry>
03b24b71 219 <term><option>ENV{<replaceable>key</replaceable>}</option></term>
7b86ada7 220 <listitem>
03b24b71 221 <para>Match against the value of an environment variable. Up to five <option>ENV</option>
02adc0cb
KS
222 keys can be specified per rule. Depending on the type of operator, this key is also used
223 to export a variable to the environment.</para>
7b86ada7
KS
224 </listitem>
225 </varlistentry>
226
227 <varlistentry>
228 <term><option>PROGRAM</option></term>
229 <listitem>
230 <para>Execute external program. The key is true, if the program returns
684e935f
KS
231 with exit code zero. The whole event environment is available to the
232 executed program. The program's output printed to stdout, is available in
7b86ada7
KS
233 the RESULT key.</para>
234 </listitem>
235 </varlistentry>
236
237 <varlistentry>
238 <term><option>RESULT</option></term>
239 <listitem>
240 <para>Match the returned string of the last PROGRAM call. This key can
241 be used in the same or in any later rule after a PROGRAM call.</para>
242 </listitem>
243 </varlistentry>
244 </variablelist>
245
246 <para>Most of the fields support a shell style pattern matching. The following
247 pattern characters are supported:</para>
248 <variablelist>
249 <varlistentry>
250 <term><option>*</option></term>
251 <listitem>
252 <para>Matches zero, or any number of characters.</para>
253 </listitem>
254 </varlistentry>
255 <varlistentry>
256 <term><option>?</option></term>
257 <listitem>
258 <para>Matches any single character.</para>
259 </listitem>
260 </varlistentry>
261 <varlistentry>
262 <term><option>[]</option></term>
263 <listitem>
33a570f3 264 <para>Matches any single character specified within the brackets. For
7b86ada7
KS
265 example, the pattern string 'tty[SR]' would match either 'ttyS' or 'ttyR'.
266 Ranges are also supported within this match with the '-' character.
267 For example, to match on the range of all digits, the pattern [0-9] would
268 be used. If the first character following the '[' is a '!', any characters
269 not enclosed are matched.</para>
270 </listitem>
271 </varlistentry>
272 </variablelist>
273
274 <para>The following keys can get values assigned:</para>
275 <variablelist>
276 <varlistentry>
277 <term><option>NAME</option></term>
278 <listitem>
fabd8709
KS
279 <para>The name of the node to be created, or the name the network interface
280 should be renamed to. Only one rule can set the node name, all later rules with
7b86ada7
KS
281 a NAME key will be ignored.</para>
282 </listitem>
283 </varlistentry>
284
285 <varlistentry>
286 <term><option>SYMLINK</option></term>
287 <listitem>
288 <para>The name of a symlink targeting the node. Every matching rule can add
289 this value to the list of symlinks to be created along with the device node.
290 Multiple symlinks may be specified by separating the names by the space
291 character.</para>
292 </listitem>
293 </varlistentry>
294
295 <varlistentry>
296 <term><option>OWNER, GROUP, MODE</option></term>
297 <listitem>
fabd8709 298 <para>The permissions for the device node. Every specified value overwrites
7b86ada7
KS
299 the compiled-in default value.</para>
300 </listitem>
301 </varlistentry>
302
02adc0cb
KS
303 <varlistentry>
304 <term><option>ATTR{<replaceable>key</replaceable>}</option></term>
305 <listitem>
306 <para>The value that should be written to a sysfs attribute of the
307 event device. Depending on the type of operator, this key is also
308 used to match against the value of a sysfs attribute.</para>
309 </listitem>
310 </varlistentry>
311
7b86ada7
KS
312 <varlistentry>
313 <term><option>ENV{<replaceable>key</replaceable>}</option></term>
314 <listitem>
02adc0cb
KS
315 <para>Export a variable to the environment. Depending on the type of operator,
316 this key is also to match against an environment variable.</para>
7b86ada7
KS
317 </listitem>
318 </varlistentry>
319
320 <varlistentry>
321 <term><option>RUN</option></term>
322 <listitem>
323 <para>Add a program to the list of programs to be executed for a specific
727f3fb0
KS
324 device. This can only be used for very short running tasks. Running an
325 event process for a long period of time may block all further events for
326 this or a dependent device. Long running tasks need to be immediately
327 detached from the event process itself.</para>
7b86ada7
KS
328 </listitem>
329 </varlistentry>
330
331 <varlistentry>
332 <term><option>LABEL</option></term>
333 <listitem>
334 <para>Named label where a GOTO can jump to.</para>
335 </listitem>
336 </varlistentry>
337
338 <varlistentry>
339 <term><option>GOTO</option></term>
340 <listitem>
a2a7f7d7 341 <para>Jumps to the next LABEL with a matching name</para>
7b86ada7
KS
342 </listitem>
343 </varlistentry>
344
345 <varlistentry>
346 <term><option>IMPORT{<replaceable>type</replaceable>}</option></term>
347 <listitem>
53fc01d5
BK
348 <para>Import a set of variables into the event environment,
349 depending on <replaceable>type</replaceable>:</para>
350 <variablelist>
351 <varlistentry>
352 <term><option>program</option></term>
353 <listitem>
354 <para>Execute an external program specified as the assigned value and
355 import its output, which must be in environment key format.</para>
356 </listitem>
357 </varlistentry>
358 <varlistentry>
359 <term><option>file</option></term>
360 <listitem>
361 <para>Import a text file specified as the assigned value, which must be in
362 environment key format.</para>
363 </listitem>
364 </varlistentry>
365 <varlistentry>
366 <term><option>parent</option></term>
367 <listitem>
368 <para>Import the stored keys from the parent device by reading
369 the database entry of the parent device. The value assigned to
370 <option>IMPORT{parent}</option> is used as a filter of key names
371 to import (with the same shell-style pattern matching used for
372 comparisons).</para>
373 </listitem>
374 </varlistentry>
375 </variablelist>
376 <para>If no option is given, udev will choose between <option>program</option>
7f723806 377 and <option>file</option> based on the executable bit of the file
53fc01d5 378 permissions.</para>
7b86ada7
KS
379 </listitem>
380 </varlistentry>
381
382 <varlistentry>
383 <term><option>WAIT_FOR_SYSFS</option></term>
384 <listitem>
03b24b71
KS
385 <para>Wait for the specified sysfs file of the device to be created. Can be used
386 to fight against kernel sysfs timing issues.</para>
7b86ada7
KS
387 </listitem>
388 </varlistentry>
389
390 <varlistentry>
391 <term><option>OPTIONS</option></term>
392 <listitem>
7a17ca7e
KS
393 <para>Rule and device options:</para>
394 <variablelist>
395 <varlistentry>
396 <term><option>last_rule</option></term>
397 <listitem>
398 <para>Stops further rules application. No later rules will have
399 any effect.</para>
400 </listitem>
401 </varlistentry>
402 <varlistentry>
403 <term><option>ignore_device</option></term>
404 <listitem>
405 <para>Ignore this event completely.</para>
406 </listitem>
407 </varlistentry>
408 <varlistentry>
409 <term><option>ignore_remove</option></term>
410 <listitem>
411 <para>Ignore any later remove event for this device. This may be useful
412 as a workaround for broken device drivers.</para>
413 </listitem>
414 </varlistentry>
415 <varlistentry>
416 <term><option>link_priority=<replaceable>value</replaceable></option></term>
417 <listitem>
418 <para>Specify the priority of the created symlinks. Devices with higher
419 priorities overwrite existing symlinks of other devices.</para>
420 </listitem>
421 </varlistentry>
422 <varlistentry>
423 <term><option>all_partitions</option></term>
424 <listitem>
425 <para>Create the device nodes for all available partitions of a block device.
426 This may be useful for removable media devices where media changes are not
427 detected.</para>
428 </listitem>
429 </varlistentry>
430 </variablelist>
7b86ada7
KS
431 </listitem>
432 </varlistentry>
433 </variablelist>
434
435 <para>The <option>NAME</option>, <option>SYMLINK</option>, <option>PROGRAM</option>,
864412e0
AB
436 <option>OWNER</option>, <option>GROUP</option> and <option>RUN</option>
437 fields support simple printf-like string substitutions. The <option>RUN</option>
438 format chars gets applied after all rules have been processed, right before the program
439 is executed. It allows the use of the complete environment set by earlier matching
440 rules. For all other fields, substitutions are applied while the individual rule is
441 being processed. The available substitutions are:</para>
7b86ada7
KS
442 <variablelist>
443 <varlistentry>
03b24b71 444 <term><option>$kernel</option>, <option>%k</option></term>
7b86ada7
KS
445 <listitem>
446 <para>The kernel name for this device.</para>
447 </listitem>
448 </varlistentry>
449
7b86ada7 450 <varlistentry>
03b24b71 451 <term><option>$number</option>, <option>%n</option></term>
7b86ada7
KS
452 <listitem>
453 <para>The kernel number for this device. For example, 'sda3' has
454 kernel number of '3'</para>
455 </listitem>
456 </varlistentry>
457
458 <varlistentry>
03b24b71 459 <term><option>$devpath</option>, <option>%p</option></term>
7b86ada7
KS
460 <listitem>
461 <para>The devpath of the device.</para>
462 </listitem>
463 </varlistentry>
464
465 <varlistentry>
03b24b71
KS
466 <term><option>$id</option>, <option>%b</option></term>
467 <listitem>
468 <para>The name of the device matched while searching the devpath upwards for
4febf7f0 469 <option>SUBSYSTEMS</option>, <option>KERNELS</option>, <option>DRIVERS</option> and <option>ATTRS</option>.
03b24b71
KS
470 </para>
471 </listitem>
472 </varlistentry>
473
474 <varlistentry>
95776dc6 475 <term><option>$attr{<replaceable>file</replaceable>}</option>, <option>%s{<replaceable>file</replaceable>}</option></term>
7b86ada7 476 <listitem>
4febf7f0
KS
477 <para>The value of a sysfs attribute found at the device, where
478 all keys of the rule have matched. If the matching device does not have
479 such an attribute, all devices along the chain of parents are searched
480 for a matching attribute.
481 If the attribute is a symlink, the last element of the symlink target is
482 returned as the value.</para>
7b86ada7
KS
483 </listitem>
484 </varlistentry>
485
486 <varlistentry>
03b24b71 487 <term><option>$env{<replaceable>key</replaceable>}</option>, <option>%E{<replaceable>key</replaceable>}</option></term>
7b86ada7
KS
488 <listitem>
489 <para>The value of an environment variable.</para>
490 </listitem>
491 </varlistentry>
492
493 <varlistentry>
03b24b71 494 <term><option>$major</option>, <option>%M</option></term>
7b86ada7
KS
495 <listitem>
496 <para>The kernel major number for the device.</para>
497 </listitem>
498 </varlistentry>
499
500 <varlistentry>
7f723806 501 <term><option>$minor</option>, <option>%m</option></term>
7b86ada7
KS
502 <listitem>
503 <para>The kernel minor number for the device.</para>
504 </listitem>
505 </varlistentry>
506
507 <varlistentry>
03b24b71 508 <term><option>$result</option>, <option>%c</option></term>
7b86ada7
KS
509 <listitem>
510 <para>The string returned by the external program requested with PROGRAM.
511 A single part of the string, separated by a space character may be selected
512 by specifying the part number as an attribute: <option>%c{N}</option>.
513 If the number is followed by the '+' char this part plus all remaining parts
514 of the result string are substituted: <option>%c{N+}</option></para>
515 </listitem>
516 </varlistentry>
517
7b86ada7 518 <varlistentry>
03b24b71 519 <term><option>$parent</option>, <option>%P</option></term>
7b86ada7
KS
520 <listitem>
521 <para>The node name of the parent device.</para>
522 </listitem>
523 </varlistentry>
524
525 <varlistentry>
03b24b71 526 <term><option>$root</option>, <option>%r</option></term>
7b86ada7
KS
527 <listitem>
528 <para>The udev_root value.</para>
529 </listitem>
530 </varlistentry>
531
532 <varlistentry>
03b24b71 533 <term><option>$tempnode</option>, <option>%N</option></term>
7b86ada7
KS
534 <listitem>
535 <para>The name of a created temporary device node to provide access to
536 the device from a external program before the real node is created.</para>
537 </listitem>
538 </varlistentry>
539
540 <varlistentry>
541 <term><option>%%</option></term>
542 <listitem>
543 <para>The '%' character itself.</para>
544 </listitem>
545 </varlistentry>
546
547 <varlistentry>
548 <term><option>$$</option></term>
549 <listitem>
550 <para>The '$' character itself.</para>
551 </listitem>
552 </varlistentry>
553 </variablelist>
554 <para>The count of characters to be substituted may be limited by specifying
555 the format length value. For example, '%3s{file}' will only
556 insert the first three characters of the sysfs attribute</para>
557 </refsect2>
558 </refsect1>
559
7b86ada7
KS
560 <refsect1><title>AUTHOR</title>
561 <para>Written by Greg Kroah-Hartman <email>greg@kroah.com</email> and
562 Kay Sievers <email>kay.sievers@vrfy.org</email>. With much help from
563 Dan Stekloff <email>dsteklof@us.ibm.com</email> and many others.</para>
564 </refsect1>
565
566 <refsect1>
567 <title>SEE ALSO</title>
568 <para><citerefentry>
2c769419 569 <refentrytitle>udevd</refentrytitle><manvolnum>8</manvolnum>
7b86ada7
KS
570 </citerefentry>,
571 <citerefentry>
572 <refentrytitle>udevinfo</refentrytitle><manvolnum>8</manvolnum>
573 </citerefentry>,
7b86ada7
KS
574 <citerefentry>
575 <refentrytitle>udevmonitor</refentrytitle><manvolnum>8</manvolnum>
576 </citerefentry></para>
577 </refsect1>
578 </refentry>
579 </section>
580</article>