udev

udev
Developer(s) Greg Kroah-Hartman and Kay Sievers
Initial release November 2003
Stable release 219 (February 16, 2015) [±][1]
Written in C
Operating system Linux kernel
Type Device node
License GPL v2
Website www.freedesktop.org/software/systemd/libudev/

udev is a device manager for the Linux kernel. As the successor of devfsd and hotplug, udev primarily manages device nodes in the /dev directory. At the same time, udev also handles all user space events raised while hardware devices are added into the system or removed from it, including firmware loading as required by certain devices.

Overview

Unlike traditional Unix systems, where the device nodes in the /dev directory have been a static set of files, the Linux udev device manager dynamically provides only the nodes for the devices actually present on a system. Although devfs used to provide similar functionality, Greg Kroah-Hartman cited a number of reasons[2] for preferring udev's implementation over devfs':

The udev, as a whole, is divided into three parts:

The system gets calls from the kernel via netlink socket. Earlier versions used hotplug, adding a link to themselves in /etc/hotplug.d/default with this purpose.

Operation

udev has been incorporated into systemd

udev is a generic kernel device manager. It runs as a daemon on a Linux system and listens (via netlink socket) to uevents the kernel sends out if a new device is initialized or a device is removed from the system. The system provides a set of rules that match against exported values of the event and properties of the discovered device. A matching rule will possibly name and create a device node and run configured programs to set up and configure the device.

udev rules can match on properties like the kernel subsystem, the kernel device name, the physical location of the device, or properties like the device's serial number. Rules can also request information from external programs to name a device or specify a custom name that will always be the same, regardless of the order devices are discovered by the system.

In the past a common way to use udev on Linux systems was to let it send events through a socket to HAL, which would perform further device-specific actions. For example, HAL would notify other software running on the system that the new hardware had arrived by issuing a broadcast message on the D-Bus IPC system to all interested processes. In this way, desktops such as GNOME or K Desktop Environment 3 could start the file browser to browse the file systems of newly attached USB flash drives and SD cards.[3]

By the middle of 2011 HAL had been deprecated by most Linux distributions as well as by the KDE, GNOME[4] and XFCE[5] desktop environments, among others. The functionality previously embodied in HAL has been integrated into udev itself, or moved to separate software such as udisks and upower.

History

udev was introduced in Linux 2.5.

The Linux kernel version 2.6.13 introduced or updated a new version of the uevent interface. A system using a new version of udev will not boot with kernels older than 2.6.13 unless udev is disabled and a traditional /dev directory is used for device access.

In April 2012, udev's codebase was merged into the systemd source tree.[6][7] In October 2012, Linus Torvalds criticized Kay Sievers' approach of udev maintenance and bugs related to firmware loading, stating:[8]

Yes, doing it in the kernel is "more robust". But don't play games, and stop the lying. It's more robust because we have maintainers that care, and because we know that regressions are not something we can play fast and loose with. If something breaks, and we don't know what the right fix for that breakage is, we revert the thing that broke. So yes, we're clearly better off doing it in the kernel. Not because firmware loading cannot be done in user space. But simply because udev maintenance since Greg gave it up has gone downhill.

In 2012, the Gentoo Linux project created a fork of systemd's udev codebase in order to avoid dependency on the systemd architecture. The resulting fork is called eudev and it makes udev functionality available without systemd. A stated goal of the project is to keep eudev independent of any Linux distribution or init system.[9] The Gentoo project describes eudev as follows:[10]

eudev is a fork of system-udev with the goal of obtaining better compatibility with existing software such as OpenRC and Upstart, older kernels, various toolchains and anything else required by users and various distributions.

On May 29, 2014, support for firmware loading through udev was dropped, as it has been decided that it is kernel's task to load firmware.[11] Two days later, Lennart Poettering suggested this patch to be postponed until kdbus starts to be utilized by udev; at that point it is planned to switch udev into using kdbus as the underlying messaging system, and to get rid of the userspace-to-userspace netlink-based transport.[12]

Authors

udev was developed by Greg Kroah-Hartman and Kay Sievers, with much help from Dan Stekloff, among others.

References

  1. "[systemd-devel] [ANNOUNCE] systemd v219". freedesktop.org. 2015-02-16. Retrieved 2015-02-16.
  2. Greg Kroah-Hartman. "udev and devfs - The final word". Archived from the original (PLAIN TEXT) on 2011-07-09. Retrieved 2008-01-24.
  3. "Dynamic Device Management in Udev" (PDF). Linux Magazine. 2006-10-01. Retrieved 2008-07-14.
  4. "HALRemoval". 2011-06-28. Retrieved 2011-09-13.
  5. "Thunar-volman and the deprecation of HAL in Xfce". 2010-01-17. Retrieved 2011-09-13.
  6. Sievers, Kay, "The future of the udev source tree", linux-hotplug mailing list, retrieved 2013-05-22
  7. Sievers, Kay, "Commit importing udev into systemd", systemd, retrieved 2013-05-22
  8. Linus Torvalds (2012-10-03). "Re: udev breakages". Retrieved 2014-10-28.
  9. "gentoo/eudev – README". Retrieved 2014-10-28.
  10. "Gentoo Linux Projects – Gentoo eudev project". Retrieved 2014-10-28.
  11. "[systemd-devel] [PATCH] Drop the udev firmware loader". 2014-05-29.
  12. "[systemd-devel] [PATCH] Drop the udev firmware loader". 2014-05-31.

External links