chiark / gitweb /
remove no longer needed includes
[elogind.git] / udev.8
diff --git a/udev.8 b/udev.8
index 8865a7905a25c283ebc6067f0bb9f210376e1e73..9b74ae23bf39d6524bc94230b7a27ab05cb04406 100644 (file)
--- a/udev.8
+++ b/udev.8
-.TH UDEV 8 "October 2003" "" "Linux Administrator's Manual"
-.SH NAME
-udev \- Linux configurable dynamic device naming support
-.SH SYNOPSIS
-.BI udev " hotplug-subsystem"
+.\" ** You probably do not want to edit this file directly **
+.\" It was generated using the DocBook XSL Stylesheets (version 1.69.0).
+.\" Instead of manually editing it, you probably should edit the DocBook XML
+.\" source for it and then use the DocBook XSL Stylesheets to regenerate it.
+.TH "UDEV" "8" "August 2005" "udev" "udev"
+.\" disable hyphenation
+.nh
+.\" disable justification (adjust text to left margin only)
+.ad l
+.SH "NAME"
+udev \- dynamic device management
 .SH "DESCRIPTION"
-.B udev
-creates or removes device node files usually located in the /dev directory.
-Its goal is to provide a dynamic device directory that contains only the files
-for devices that are actually present.
-.P
-As part of the
-.B hotplug
-subsystem,
-.B udev
-is executed if a kernel device is added or removed from the system.
-On device creation,
-.B udev
-reads the sysfs directory of the given device to collect device attributes
-like label, serial number or bus device number.
-These attributes are passed as a key to the namedev subsystem
-to receive a unique name for device file creation.
-namedev maintains a database for devices present on the system.
-.br
-On device removal,
-.B udev
-queries the namedev database for the name of the device file to be deleted.
+.PP
+udev provides a dynamic device directory containing only the files for actually present devices. It creates or removes device node files in the 
+\fI/dev\fR 
+directory, or it renames network interfaces.
+.PP
+Usually udev runs as 
+\fBudevd\fR(8) 
+and receives uevents directly from the kernel if a device is added or removed form the system. The program 
+\fBudev\fR 
+itself may be used as an event handler in situations, where running the daemon is not appropriate, like in initramfs.
+.PP
+If udev receives a device event, it matches its configured rules against the available device attributes provided in sysfs to identify the device. Rules that match, may provide additional device information or specify a device node name and multiple symlink names and instruct udev to run additional programs as part of the device event handling.
 .SH "CONFIGURATION"
-namedev expects its configuration at
-.I /etc/udev/namedev.config.
-The file consists of a set of lines. All empty lines and
-lines beginning with a '#' will be ignored.
-.br
-Every line defines the mapping between device attributes and the device file
-name. It starts with a keyword defining the method used to match, followed by
-one ore more keys to compare and the filename for the device. If no matching
-configuration is found, the default kernel device name is used.
-.P
-The line format is:
-.RS
-.sp
-.I method, key,[key,...] name
-.sp
-.RE
-where valid methods with corresponding keys are:
-.TP
-.B LABEL
-device label or serial number, like USB serial number, SCSI UUID or
-file system label
-.br
-keys: \fBBUS\fP, \fIsysfs_attribute\fP
-.TP
-.B NUMBER
-device number on the bus, like PCI bus id
-.br
-keys: \fBBUS\fP, \fBID\fP
-.TP
-.B TOPOLOGY
-device position on bus, like physical port of USB device
-.br
-keys: \fBBUS\fP, \fBPLACE\fP
-.TP
-.B REPLACE
-string replacement of the kernel device name
-.br
-key: \fBKERNEL_NAME\fP
-.TP
-.B CALLOUT
-calling external program, that returns a string to match
-.br
-keys: \fBBUS\fP, \fBPROGRAM\fP, \fBID\fP
-.P
-A sample \fInamedev.conf\fP might look like this:
-.sp
-.nf
-# USB printer to be called lp_color
-LABEL, BUS="usb", serial="W09090207101241330", NAME="lp_color"
-
-# sound card with PCI bus id 00:0b.0 to be called dsp
-NUMBER, BUS="pci", ID="00:0b.0", NAME="dsp"
-
-# USB mouse at third port of the second hub to be called mouse1
-TOPOLOGY, BUS="usb", PLACE="2.3", NAME="mouse1"
-
-# ttyUSB1 should always be called pda
-REPLACE, KERNEL="ttyUSB1", NAME="pda"
-
-# if /sbin/dev_id returns "V0815" device will be called dev0815
-CALLOUT, PROGRAM="/sbin/dev_id", BUS="pci", ID="V0815", NAME="dev0815"
-.fi
-.P
-Permissions and ownership for the created device files may specified at
-.I /etc/udev/namedev.permissions.
-The file consists of a set of lines. All empty lines and
-lines beginning with a '#' will be ignored.
-.br
-Every line lists a device name followed by owner, group and permission mode. All values are separated by colons.
-.sp
-A sample \fInamedev.permissions\fP might look like this:
-.sp
-.nf
-#name:user:group:mode
-ttyUSB1:root:uucp:0666
-dsp1:::0666
-.fi
+.PP
+All udev configuration files are placed in 
+\fI/etc/udev/*\fR. Every file consist of a set of lines of text. All empty lines or lines beginning with '#' will be ignored.
+.SS "Configuration file"
+.PP
+udev expects its main configuration file at 
+\fI/etc/udev/udev.conf\fR. It consists of a set of variables allowing the user to override default udev values. The following variables can be set:
+.TP
+\fBudev_root\fR
+Specifies where to place the device nodes in the filesystem. The default value is 
+\fI/dev\fR.
+.TP
+\fBudev_db\fR
+The name and location of the udev database. The default value is 
+\fI/dev/.udevdb\fR.
+.TP
+\fBudev_rules\fR
+The name of the udev rules file or directory to look for files with the suffix 
+\fI.rules\fR. Multiple rule files are read in lexical order. The default value is 
+\fI/etc/udev/rules.d\fR.
+.TP
+\fBudev_log\fR
+The logging priority. Valid values are the numerical syslog priorities or their textual representations: 
+\fBerr\fR, 
+\fBinfo\fR 
+and 
+\fBdebug\fR.
+.SS "Rules files"
+.PP
+The udev rules are read from the files located in the 
+\fI/etc/udev/rules.d\fR 
+directory or at the location specified value in the configuraton file. Every line in the rules file contains at least one key value pair. There are two kind of keys, match and assignement keys. If all match keys are matching against its value, the rule gets applied and the assign keys get the specified value assigned. A matching rule may specify the name of the device node, add a symlink pointing to the node, or run a specified program as part of the event handling. If no matching rule is found, the default device node name is used.
+.PP
+A rule may consists of a list of one or more key value pairs separated by a comma. Each key has a distinct operation, depending on the used operator. Valid operators are:
+.TP
+\fB==\fR
+Compare for equality.
+.TP
+\fB!=\fR
+Compare for non\-equality.
+.TP
+\fB=\fR
+Asign a value to a key. Keys that represent a list, are reset and only this single value is assigned.
+.TP
+\fB+=\fR
+Add the value to a key that holds a list of entries.
+.TP
+\fB:=\fR
+Assign a value to a key finally; disallow any later changes, which may be used to prevent changes by any later rules.
+.PP
+The following key names can be used to match against device properties:
+.TP
+\fBACTION\fR
+Match the kernel action name.
+.TP
+\fBKERNEL\fR
+Match the kernel device name
+.TP
+\fBDEVPATH\fR
+Match the kernel devpath.
+.TP
+\fBSUBSYSTEM\fR
+Match the kernel subsystem name
+.TP
+\fBBUS\fR
+Match the typ of bus the device is connected to.
+.TP
+\fBDRIVER\fR
+Match the kernel driver name.
+.TP
+\fBID\fR
+Match the device number on the bus.
+.TP
+\fBENV{\fR\fB\fIkey\fR\fR\fB}\fR
+Match against the value of an environment key. Depending on the specified operation, this key is also used as a assignment.
+.TP
+\fBSYSFS{\fR\fB\fIfilename\fR\fR\fB}\fR
+Match the sysfs attribute value. Up to five values can be specified. Trailing whitespace is ignored, if the specified match value does not contain trailing whitespace itself.
+.TP
+\fBPROGRAM\fR
+Execute external program. The key is true, if the program returns without exit code zero. The whole event environment is available to the executed program. The program's output printed to stdout is available for the RESULT key.
+.TP
+\fBRESULT\fR
+Match the returned string of the last PROGRAM call. This key can be used in the same or in any later rule after a PROGRAM call.
+.PP
+Most of the fields support a shell style pattern matching. The following pattern characters are supported:
+.TP
+\fB*\fR
+Matches zero, or any number of characters.
+.TP
+\fB?\fR
+Matches any single character.
+.TP
+\fB[]\fR
+Matches any single character specified within the brackets. example, the pattern string 'tty[SR]' would match either 'ttyS' or 'ttyR'. Ranges are also supported within this match with the '\-' character. For example, to match on the range of all digits, the pattern [0\-9] would be used. If the first character following the '[' is a '!', any characters not enclosed are matched.
+.PP
+The following keys can get values assigned:
+.TP
+\fBNAME\fR
+The name of the node to be created, or the name, the network interface should be renamed to. Only one rule can set the a name, all later rules with a NAME key will be ignored.
+.TP
+\fBSYMLINK\fR
+The name of a symlink targeting the node. Every matching rule can add this value to the list of symlinks to be created along with the device node. Multiple symlinks may be specified by separating the names by the space character.
+.TP
+\fBOWNER, GROUP, MODE\fR
+The permissions for the device node. Every specified value over writes the compiled\-in default value.
+.TP
+\fBENV{\fR\fB\fIkey\fR\fR\fB}\fR
+Export the key to the environment. Depending on the specified operation, this key is also used as a match.
+.TP
+\fBRUN\fR
+Add a program to the list of programs to be executed for a specific device.
+.TP
+\fBLABEL\fR
+Named label where a GOTO can jump to.
+.TP
+\fBGOTO\fR
+Jumps to the next LABEL with a matching gname
+.TP
+\fBIMPORT{\fR\fB\fItype\fR\fR\fB}\fR
+Import the printed result or the content of a file in environment key format into the event environment. 
+\fBprogram\fR 
+will execute an external program and read its output. 
+\fBfile\fR 
+will inport a text file. If no option is given, udev will determine it from the executable bit of of the file permissions.
+.TP
+\fBWAIT_FOR_SYSFS\fR
+Wait for the specified sysfs file of the device to be created. May be used to fight agains timing issues wth the kernel.
+.TP
+\fBOPTIONS\fR
+\fBlast_rule\fR 
+stops further rules application. No later rules will have any effect. 
+\fBignore_device\fR 
+will ignore this event completely. 
+\fBignore_remove\fR 
+will ignore any later remove event for this device. This may be useful as a workaround for broken device drivers. 
+\fBall_partitions\fR 
+will create device nodes for all available partitions of a block device. This may be useful for removable media.
+.PP
+The 
+\fBNAME\fR, 
+\fBSYMLINK\fR, 
+\fBPROGRAM\fR, 
+\fBOWNER\fR 
+and 
+\fBGROUP\fR 
+fields support simple printf\-like string substitutions:
+.TP
+\fB%k\fR, \fB$kernel\fR
+The kernel name for this device.
+.TP
+\fB%b\fR, \fB$id\fR
+The kernel bus id for this device.
+.TP
+\fB%n\fR, \fB$number\fR
+The kernel number for this device. For example, 'sda3' has kernel number of '3'
+.TP
+\fB%p\fR, \fB$devpath\fR
+The devpath of the device.
+.TP
+\fB%s{\fR\fB\fIfile\fR\fR\fB}\fR, \fB$sysfs{\fR\fB\fIfile\fR\fR\fB}\fR
+The content of a sysfs attribute.
+.TP
+\fB%e{\fR\fB\fIkey\fR\fR\fB}\fR, \fB$env{\fR\fB\fIkey\fR\fR\fB}\fR
+The value of an environment variable.
+.TP
+\fB%m\fR, \fB$major\fR
+The kernel major number for the device.
+.TP
+\fB%M\fR \fB$minor\fR
+The kernel minor number for the device.
+.TP
+\fB%c\fR, \fB$result\fR
+The string returned by the external program requested with PROGRAM. A single part of the string, separated by a space character may be selected by specifying the part number as an attribute: 
+\fB%c{N}\fR. If the number is followed by the '+' char this part plus all remaining parts of the result string are substituted: 
+\fB%c{N+}\fR
+.TP
+\fB%e\fR, \fB$enum\fR
+If a device node already exists with the name, the smallest next free number is used. This can be used to create compatibility symlinks and enumerate devices of the same type originating from different kernel subsystems.
 
-.SH "FILES"
-.nf
-.ft B
-.ft
-/sbin/udev                           udev program
-/etc/udev/*                          udev config and database files
-/etc/hotplug.d/default/udev.hotplug  hotplug symlink to udev program
-.fi
-.LP
+Note: The use of the enumeration facility is unreliable for events that request a number at the same time. The use of enumerations in todays setups where devices can come and go at any time is not recomended.
+.TP
+\fB%P\fR, \fB$parent\fR
+The node name of the parent device.
+.TP
+\fB%r\fR, \fB$root\fR
+The udev_root value.
+.TP
+\fB%N\fR, \fB$tempnode\fR
+The name of a created temporary device node to provide access to the device from a external program before the real node is created.
+.TP
+\fB%%\fR
+The '%' character itself.
+.TP
+\fB$$\fR
+The '$' character itself.
+.PP
+The count of characters to be substituted may be limited by specifying the format length value. For example, '%3s{file}' will only insert the first three characters of the sysfs attribute
+.SH "ENVIRONMENT"
+.TP
+\fBACTION\fR
+\fIadd\fR 
+or 
+\fIremove\fR 
+signifies the addition or the removal of a device.
+.TP
+\fBDEVPATH\fR
+The sysfs devpath without the mountpoint but a leading slash.
+.TP
+\fBSUBSYSTEM\fR
+The kernel subsystem the device belongs to.
+.TP
+\fBUDEV_LOG\fR
+Overrides the syslog priority specified in the config file.
+.SH "AUTHOR"
+.PP
+Written by Greg Kroah\-Hartman 
+<greg@kroah.com> 
+and Kay Sievers 
+<kay.sievers@vrfy.org>. With much help from Dan Stekloff 
+<dsteklof@us.ibm.com> 
+and many others.
 .SH "SEE ALSO"
-.BR hotplug (8)
 .PP
-The
-.I http://linux-hotplug.sourceforge.net/
-web site.
-.SH AUTHORS
-udev was developed by Greg Kroah-Hartman <greg@kroah.com> with much help from
-Dan Stekloff <dsteklof@us.ibm.com> and many others.
+\fBudev\fR(8), 
+\fBudevinfo\fR(8), 
+\fBudevd\fR(8), 
+\fBudevmonitor\fR(8)