udev (7) Linux Manual Page
udev – Dynamic device management
Description
udev supplies the system software with device events, manages permissions of device nodes and may create additional symlinks in the /dev/ directory, or renames network interfaces. The kernel usually just assigns unpredictable device names based on the order of discovery. Meaningful symlinks or network device names provide a way to reliably identify devices based on their properties or current configuration.
The udev daemon, systemd-udevd.service(8), receives device uevents directly from the kernel whenever a device is added or removed from the system, or it changes its state. When udev receives a device event, it matches its configured set of rules against various device attributes to identify the device. Rules that match may provide additional device information to be stored in the udev database or to be used to create meaningful symlink names.
All device information udev processes is stored in the udev database and sent out to possible event subscribers. Access to all stored data and the event sources is provided by the library libudev.
Rules Files
The udev rules are read from the files located in the system rules directories /lib/udev/rules.d and /usr/local/lib/udev/rules.d, the volatile runtime directory /run/udev/rules.d and the local administration directory /etc/udev/rules.d. All rules files are collectively sorted and processed in lexical order, regardless of the directories in which they live. However, files with identical filenames replace each other. Files in /etc/ have the highest priority, files in /run/ take precedence over files with the same name under /usr/. This can be used to override a system-supplied rules file with a local file if needed; a symlink in /etc/ with the same name as a rules file in /lib/, pointing to /dev/null, disables the rules file entirely. Rule files must have the extension .rules; other extensions are ignored.
Every line in the rules file contains at least one key-value pair. Except for empty lines or lines beginning with "#", which are ignored. There are two kinds of keys: match and assignment. If all match keys match against their values, the rule gets applied and the assignment keys get the specified values assigned.
A matching rule may rename a network interface, add symlinks pointing to the device node, or run a specified program as part of the event handling.
A rule consists of a comma-separated list of one or more key-operator-value expressions. Each expression has a distinct effect, depending on the key and operator used.
Operators
"=="
- Compare for equality. (The specified key has the specified value.)
"!="
- Compare for inequality. (The specified key doesn’t have the specified value, or the specified key is not present at all.)
"="
- Assign a value to a key. Keys that represent a list are reset and only this single value is assigned.
"+="
- Add the value to a key that holds a list of entries.
"-="
- Remove the value from a key that holds a list of entries.
":="
- Assign a value to a key finally; disallow any later changes.
Values
Values are written as double quoted strings, such as ("string"). To include a quotation mark (") in the value, precede it by a backslash (\"). Any other occurrences of a backslash followed by a character are not unescaped. That is, "
" is treated as four characters: backslash, lowercase t, backslash, lowercase n.
The string can be prefixed with a lowercase e (e"string
") to mark the string as m[blue]C-style escapedm[][1]. For example, e"string
" is parsed as 7 characters: 6 lowercase letters and a newline. This can be useful for writing special characters when a kernel driver requires them.
Please note that NUL is not allowed in either string variant.
Keys
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.
ACTION
- Match the name of the event action.
DEVPATH
- Match the devpath of the event device.
KERNEL
- Match the name of the event device.
KERNELS
- Search the devpath upwards for a matching device name.
NAME
- Match the name of a network interface. It can be used once the NAME key has been set in one of the preceding rules.
SYMLINK
- Match the name of a symlink targeting the node. It can be used once a SYMLINK key has been set in one of the preceding rules. There may be multiple symlinks; only one needs to match.
SUBSYSTEM
- Match the subsystem of the event device.
SUBSYSTEMS
- Search the devpath upwards for a matching device subsystem name.
DRIVER
- Match the driver name of the event device. Only set this key for devices which are bound to a driver at the time the event is generated.
DRIVERS
- Search the devpath upwards for a matching device driver name.
ATTR{filename}
- Match sysfs attribute value of the event device.
Trailing whitespace in the attribute values is ignored unless the specified match value itself contains trailing whitespace.
ATTRS{filename}
- Search the devpath upwards for a device with matching sysfs attribute values. If multiple ATTRS matches are specified, all of them must match on the same device.
Trailing whitespace in the attribute values is ignored unless the specified match value itself contains trailing whitespace.
SYSCTL{kernel parameter}
- Match a kernel parameter value.
ENV{key}
- Match against a device property value.
CONST{key}
- Match against a system-wide constant. Supported keys are:
"arch"
- System’s architecture. See
ConditionArchitecture=insystemd.unit(5) for possible values.
"virt"
- System’s virtualization environment. See
systemd-detect-virt(1) for possible values.
Unknown keys will never match.
- System’s architecture. See
TAG
- Match against a device tag.
TAGS
- Search the devpath upwards for a device with matching tag.
TEST{octal mode mask}
- Test the existence of a file. An octal mode mask can be specified if needed.
PROGRAM
- Execute a program to determine whether there is a match; the key is true if the program returns successfully. The device properties are made available to the executed program in the environment. The program’s standard output is available in the RESULT key.
This can only be used for very short-running foreground tasks. For details, see RUN.
Note that multiple PROGRAM keys may be specified in one rule, and "=", ":=", and "+=" have the same effect as "==".
RESULT
- 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.
Most of the fields support shell glob pattern matching and alternate patterns. The following special characters are supported:
"*"
- Matches zero or more characters.
"?"
- Matches any single character.
"[]"
- 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 via the "-" character. For example, to match on the range of all digits, the pattern "[0-9]" could be used. If the first character following the "[" is a "!", any characters not enclosed are matched.
"|"
- Separates alternative patterns. For example, the pattern string "abc|x*" would match either "abc" or "x*".
The following keys can get values assigned:
NAME
- The name to use for a network interface. See
systemd.link(5) for a higher-level mechanism for setting the interface name. The name of a device node cannot be changed by udev, only additional symlinks can be created.
SYMLINK
- The name of a symlink targeting the node. Every matching rule adds this value to the list of symlinks to be created.
The set of characters to name a symlink is limited. Allowed characters are "0-9A-Za-z#+-.:=@_/", valid UTF-8 character sequences, and "
