X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=udev.xml;h=7fefe48a44b11b719e78d86ce8326408db2186b7;hp=bf5676bee61e55b5d0cb7240441be41b01bfedf4;hb=01e8dd08ef317175d8299ef4cbe24802de80770a;hpb=c1979c82e18c5ee0993479043f44f5dcc76d8d2d diff --git a/udev.xml b/udev.xml index bf5676bee..7fefe48a4 100644 --- a/udev.xml +++ b/udev.xml @@ -3,19 +3,6 @@ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
- - xmlto - - Kay - Sievers - kay.sievers@vrfy.org - - - 2006 - Kay Sievers - - -
udev @@ -28,6 +15,7 @@ udev 7 + @@ -42,11 +30,11 @@ Usually udev runs as udevd 8 and receives uevents directly from the - kernel if a device is added or removed form the system. + kernel if a device is added or removed from the system. 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 + 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. @@ -93,15 +81,16 @@ Rules files The udev rules are read from the files located in the /etc/udev/rules.d 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. + value in the configuration file. Every line in the rules file contains at least + one key value pair. There are two kind of keys, match and assignment 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. + 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. - A rule may consists of a list of one or more key value pairs separated by + A rule may consist 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: @@ -122,7 +111,7 @@ - Asign a value to a key. Keys that represent a list, are reset + Assign a value to a key. Keys that represent a list, are reset and only this single value is assigned. @@ -143,7 +132,11 @@ - The following key names can be used to match against device properties: + The following key names can be used to match against device properties. + Some of the keys also match against properties of the parent devices in sysfs, + not only the device that has generated the event. If multiple keys that match + a parent device are specified in a single rule, all these keys must match at + one and the same parent device. @@ -152,53 +145,80 @@ + + + + Match the devpath of the event device. + + + - Match the name of the device. + Match the name of the event device. - + - Match the devpath of the device. + Match the name of the node or network interface. It can + be used once the NAME key has been set in one of the preceding + rules. - Match the subsystem of the device. + Match the subsystem of the event device. + + + + + + Match the driver name of the event device. Only set for devices + which are bound to a driver at the time the event is generated. + + + + + + Match sysfs attribute values of the event device. Up to five + keys can be specified per rule. Trailing + whitespace in the attribute values is ignored, if the specified match + value does not contain trailing whitespace itself. Depending on the type + of operator, this key is also used to set the value of a sysfs attribute. + - + - Search the devpath upwards for a matching device subsystem name. + Search the devpath upwards for a matching device name. - + - Search the devpath upwards for a matching device driver name. + Search the devpath upwards for a matching device subsystem name. - + - Search the devpath upwards for a matching device name. + Search the devpath upwards for a matching device driver name. - + Search the devpath upwards for a device with matching sysfs attribute values. - Up to five keys can be specified per rule. All attributes + Up to five keys can be specified per rule, but all of them must match on the same device. Trailing whitespace in the attribute values is ignored, if the specified match value does not contain trailing whitespace itself. @@ -208,8 +228,16 @@ Match against the value of an environment variable. Up to five - keys can be specified per rule. This key can also be used to export a variable to - the environment. + keys can be specified per rule. Depending on the type of operator, this key is also used + to export a variable to the environment. + + + + + + + Test the existence of a file. An octal mode mask can be specified + if needed. @@ -217,8 +245,8 @@ 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 + with exit code zero. The whole event environment is available to the + executed program. The program's output printed to stdout, is available in the RESULT key. @@ -250,7 +278,7 @@ - Matches any single character specified within the brackets. + Matches any single character specified within the brackets. For 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 @@ -289,11 +317,20 @@ + + + + The value that should be written to a sysfs attribute of the + event device. Depending on the type of operator, this key is also + used to match against the value of a sysfs attribute. + + + - Export a variable to the environment. This key can also be used to match - against an environment variable. + Export a variable to the environment. Depending on the type of operator, + this key is also to match against an environment variable. @@ -301,7 +338,16 @@ Add a program to the list of programs to be executed for a specific - device. + device. This can only be used for very short running tasks. Running an + event process for a long period of time may block all further events for + this or a dependent device. Long running tasks need to be immediately + detached from the event process itself. + If the specifiefd string starts with + , all current event + values will be passed to the specified socket, as a message in the same + format the kernel sends an uevent. If the first character of the specified path + is an @ character, an abstract namespace socket is used, instead of an existing + socket file. @@ -315,45 +361,116 @@ - Jumps to the next LABEL with a matching gname + Jumps to the next LABEL with a matching name - Import the printed result or the value of a file in environment key - format into the event environment. will execute an - external program and read its output. will inport a - text file. If no option is given, udev will determine it from the executable - bit of of the file permissions. + Import a set of variables into the event environment, + depending on type: + + + + + Execute an external program specified as the assigned value and + import its output, which must be in environment key format. + + + + + + Import a text file specified as the assigned value, which must be in + environment key format. + + + + + + Import the stored keys from the parent device by reading + the database entry of the parent device. The value assigned to + is used as a filter of key names + to import (with the same shell-style pattern matching used for + comparisons). + + + + If no option is given, udev will choose between + and based on the executable bit of the file + permissions. - + - Wait for the specified sysfs file of the device to be created. Can be used - to fight against kernel sysfs timing issues. + Wait for a file to become available. - stops further rules application. No later rules - will have any effect. - will ignore this event completely. - will ignore any later remove event for this - device. This may be useful as a workaround for broken device drivers. - will create device nodes for all available partitions of - a block device. This may be useful for removable media. + Rule and device options: + + + + + Stops further rules application. No later rules will have + any effect. + + + + + + Ignore this event completely. + + + + + + Do not remove the device node when the device goes away. This may be + useful as a workaround for broken device drivers. + + + + + + Specify the priority of the created symlinks. Devices with higher + priorities overwrite existing symlinks of other devices. + + + + + + Create the device nodes for all available partitions of a block device. + This may be useful for removable media devices where media changes are not + detected. + + + + + + Number of seconds an event will wait for operations to finish, before it + will terminate itself. + + + + + + Usually control and other possibly unsafe characters are replaced + in strings used for device naming. The mode of replacement can be specified + with this option. + + + The , , , - , and + , , and fields support simple printf-like string substitutions. The format chars gets applied after all rules have been processed, right before the program is executed. It allows the use of the complete environment set by earlier matching @@ -386,15 +503,29 @@ , The name of the device matched while searching the devpath upwards for - , and . + , , and . - , + - The value of a sysfs attribute found at the current or a parent device. + The driver name of the device matched while searching the devpath upwards for + , , and . + + + + + + , + + The value of a sysfs attribute found at the device, where + all keys of the rule have matched. If the matching device does not have + such an attribute, follow the chain of parent devices and use the value + of the first attribute that matches. + If the attribute is a symlink, the last element of the symlink target is + returned as the value. @@ -413,7 +544,7 @@ - + , The kernel minor number for the device. @@ -437,6 +568,22 @@ + + + + The current name of the device node. If not changed by a rule, it is the + name of the kernel device. + + + + + + + The current list of symlinks, separated by a space character. The value is + only set if an earlier rule assigned a value, or during a remove events. + + + , @@ -444,6 +591,13 @@ + + , + + The sysfs mount point. + + + , @@ -472,43 +626,10 @@ - ENVIRONMENT - - - - - add or remove signifies - the addition or the removal of a device. - - - - - - - The sysfs devpath without the mountpoint but a leading slash. - - - - - - - The kernel subsystem the device belongs to. - - - - - - - Overrides the syslog priority specified in the config file. - - - - - AUTHOR 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. + Dan Stekloff and many others. @@ -517,10 +638,7 @@ udevd8 , - udevinfo8 - , - - udevmonitor8 + udevadm8