什么是udev

本文介绍了udev在Linux系统中的作用及其实现原理,探讨了udev如何替代传统的静态设备创建方法,实现动态创建设备节点,并解决了模块加载与设备节点创建之间的“鸡与蛋”问题。
原贴:http://blog.youkuaiyun.com/steganography/archive/2006/04/10/657620.aspx


width="54" scrolling="no" height="75" frameborder="0" style="float: left; margin-top: 0px;" vspace="0" marginheight="0" framespacing="0" marginwidth="0" border="0" noresize="" src="http://wz.youkuaiyun.com/vote.aspx?t=%u4EC0%u4E48%u662Fudev%20-%20Steganography%u7684linux%u5B66%u4E60%u7B14%u8BB0%20-%20优快云Blog&u=http%3A//blog.youkuaiyun.com/steganography/archive/2006/04/10/657620.aspx">  什么是udev      优快云 Blog推出文章指数概念,文章指数是对Blog文章综合评分后推算出的,综合评分项分别是该文章的点击量,回复次数,被网摘收录数量,文章长度和文章类型;满分100,每月更新一次。

阅读总结:swain@126.com     20060410

linux 传统上使用静态设备创建方法,因此大量设备节点在 /dev 下创建(有时上千个),而不管相应的硬件设备是否真正存在。通常这由一个MAKEDEV脚本,组成它由许多calls of mknod program with the revelant major and minor device number for每一个世界上可能存在的设备。采用udev的方法,只有被kernel检测到的设备才会get devices nodes created for them.因为这些设备节点在每次系统启动时被创建,他们会被stored在a ramfs(a file system in memory,does not take up any disk space).设备节点不需要much 磁盘空间,因此
the memory that is used 可以忽略。

1:history
在2.4版本的kernel中,一种新文件系统called devfs被添加了进去。尽管它在kernel源码中出现,然而这种动态创建设备的方法从未收到压倒性的支持from core kernel开发者;
devfs 的方法主要问题是 the way:设备检测,创建,命名。设备节点命名,可能是最critical的.It is generally accepted that 设备名允许是可配置的,then设备命名策略应该up to一个系统管理员,not 被欺骗by 特殊的开发者。devfs文件系统同时还忍受着一个紊乱情况,为它的design所固有,且不能被fix,若无实质的修改to kernel.现由于缺乏维护已被deprecated.
在2.6版本的kernel中,出现了一种叫sysfs的新虚拟文件系统。sysfs的 任务是export系统架构 to 用户空间进程。有了这种用户空间visible表示法,the possiblity of seeing a userspace replacement for devfs 变得更加现实。

2:udev 执行
sysfs怎样知道设备出现 在系统?应该使用什么设备号?对于被编进kernel的driver,当被kernel监测到时,直接注册目标with sysfs。使用模块方式编译的,当模块被load时,如前。once sysfs文件系统被mounted (on /sys),the data which the built-in drivers registered with sysfs are available to userspace process and to udev for device node creation.
udev初始化脚本创建这些 设备节点当linux boot时;这个脚本starts with 注册/sbin/udev/ 作为一个 hotplug事件管理者。热插拔事件不应该发生在这个过程中,然而udev is registered just in case they do occur.然后udevstart program walk through the /sys filesystem and 创建符合描述的设备在/dev。例如:/sys/class/tty/vcs/dev/包括string "7:0".这个字符串被udevstart使用来创建/dev/vcs,主设备号7and此设备号0。每一个udevstart创建的设备的权限设置来 自/etc/udev.d/permission.d/目录。这些numbered(有限的) 基本相似LFS bootscripts.如果找不到创建的设备权限文件,默认perissions to 600 and ownership to root:root./dev目录下创建的节点根据 /etc/udev/rules.d/目录下的文件来configured.
当一个新设备连 接被kernel监测到,kernel会产生一个hotplug event 并查找/proc/sys/kernel/hotplug去找出管理设备连接的用户空间程序。udev初始化脚本注册udev as this hander.当hotplug events发生时,kernel通知udev 去检测/sys 文件系统附属于这个新设备的信息并create 它的/dev/入口。
?这带给我们一个问题:exists with udev,and likewise with devfs before it.?就像先有鸡还是先有蛋。大部分linux distrubtions
管 理加载模块通过/etc/modules.conf.access to 设备节点引起相应的kernel模块来加载。然而对于udev,这种方法不能正常工作,因为模块没有加载时,设备节点不存在。为了解决这个问题,模块脚本 加到了lfs-bootscripts包中,和/etc/sysconfig/modules在一起。通过添加module names到module file中,这些模块在计算机启动时被加载。这样,udev就可以去检测设备并创建相应的设备节点。

3:处理可热插拔/动态设备
当 你插入一个设备,比如usb mp3 player,内核辨认出设备连接同时产生一个热插拔事件。如果驱动已经loaded(不管是编进kernel还是通过s05modules bootscript加载),udev将被调用来创建相关的设备节点,根据sysfs data in /sys.如果刚插入的设备驱动以模块形式然而并未加载,那么刚attach to system 的设备只会引起kernel总线驱动产生一个热插拔事件通知用户空间一个新设备的连接and它不attached to a driver.结果,什么都没有发生,device依然不能使用。
如果建立一个system,that具有大量的以模块形式编译的驱动,使用s05modules并不实际。the hotplug package(http://linux-hotplug.sourceforge.net)会显得非常有价值。当此包安装后,它会响应前述的kernel总线驱动hotplug事件。此包将加载相应的模块并为设备创建节点。

4:创建设备的问题
自动创建设备节点时常遇到的一些问题
1)A kernel driver may not exports its data to sysfs
当 使用第三方驱动(在kernel source tree 之外)时常遇到这种问题。这些驱动end up时没有创建设备节点。使用/etc/sysconfig/creatfiles 配置文件to 人工创建设备。参考devices.txt文件(在kernel文档中)或者驱动文档来找出正确的major/minor设备号。
2)无硬件设备 is required.这种很常见with the advanced linux sound architecture(ALSA) project's open sound system(oss) compatibility 模块.这种形式的驱动可以使用以下下面两种方法来管理:
*将module names 加到 /etc/sysconfig/modules;
* 使用"install"line 在/etc/modprobe.conf中。This tells the modprobe command "when loading this module, also load this other module,at the same time."例如
install snd-pcm modprobe -i snd-pcm;modprobe snd-pcm-oss;true
当系统中有加载snd-pcm驱动的请求时,这会使系统加载both snd-pcm and snd-pcm-oss modules.

5:进一步一些参考资料
http://fedora.redhat.com/docs/udev/
http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html
http://www.kroah.com/linux/talks/ols_2003_udev_paper/Reprint-Kroah-Hartman-OLS2003.pdf
http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev-FAQ

 

 

原文资料:

Linux systems in general traditionally use a static device creation method, whereby a great many device nodes are created under /dev (sometimes literally thousands of nodes), regardless of whether the corresponding hardware devices actually exist. This is typically done via a MAKEDEV script, which contains a number of calls to the mknod program with the relevant major and minor device numbers for every possible device that might exist in the world. Using the udev method, only those devices which are detected by the kernel get device nodes created for them. Because these device nodes will be created each time the system boots, they will be stored on a ramfs (a file system that resides entirely in memory and does not take up any disk space). Device nodes do not require much disk space, so the memory that is used in negligable.
7.4.1. History

In February 2000, a new filesystem called devfs was merged into the 2.3.46 kernel and was made available during the 2.4 series of stable kernels. Although it was present in the kernel source itself, this method of creating devices dynamically never received overwhelming support from the core kernel developers.

The main problem with the approach adopted by devfs was the way it handled device detection, creation, and naming. The latter issue, that of device node naming, was perhaps the most critical. It is generally accepted that if device names are allowed to be configurable, then the device naming policy should be up to a system administrator, not imposed on them by any particular developer(s). The devfs file system also suffers from race conditions that are inherent in its design and cannot be fixed without a substantial revision to the kernel. It has also been marked as deprecated due to a lack of recent maintenance.

With the development of the unstable 2.5 kernel tree, later released as the 2.6 series of stable kernels, a new virtual filesystem called sysfs came to be. The job of sysfs is to export a view of the system's structure to userspace processes. With this userspace visible representation, the possibility of seeing a userspace replacement for devfs became much more realistic.
7.4.2. Udev Implementation

The sysfs filesystem was mentioned briefly above. One may wonder how sysfs knows about the devices present on a system and what device numbers should be used. Drivers that have been compiled into the kernel directly register their objects with sysfs as they are detected by the kernel. For drivers compiled as modules, this will happen when the module is loaded. Once the sysfs filesystem is mounted (on /sys), the data which the built-in drivers registered with sysfs are available to userspace processes and to udev for device node creation.

The S10udev initscript takes care of creating these device nodes when Linux is booted. This script starts with registering /sbin/udev as a hotplug event handler. Hotplug events (discussed below) should not be generated during this stage, but udev is registered just in case they do occur. The udevstart program then walks through the /sys filesystem and creates devices under /dev that match the descriptions. For example, /sys/class/tty/vcs/dev contains the string “7:0” This string is used by udevstart to create /dev/vcs with major number 7 and minor 0. The permissions of each and every device that udevstart creates are set using files from the /etc/udev.d/permissions.d/ directory. These are numbered in a similar fashion to the LFS bootscripts. If udev cannot find a permissions file for the device it is creating, it will default permissions to 600 and ownership to root:root. The names of the nodes created under the /dev directory are configured according to the rules specified in the files within the /etc/udev/rules.d/ directory.

Once the above stage is complete, all devices that were already present and have compiled-in drivers will be available for use. What about those devices that have modular drivers?

Earlier, we mentioned the concept of a “hotplug event handler.” When a new device connection is detected by the kernel, the kernel will generate a hotplug event and look at the file /proc/sys/kernel/hotplug to find out the userspace program that handles the device's connection. The udev initscript registered udev as this handler. When these hotplug events are generated, the kernel will tell udev to check the /sys filesystem for the information pertaining to this new device and create the /dev entry for it.

This brings us to one problem that exists with udev, and likewise with devfs before it. It is commonly referred to as the “chicken and egg” problem. Most Linux distrubtions handle loading modules via entries in /etc/modules.conf. Access to a device node causes the appropriate kernel module to load. With udev, this method will not work because the device node does not exist until the module is loaded. To solve this, the S05modules bootscript was added to the lfs-bootscripts package, along with the /etc/sysconfig/modules file. By adding module names to the modules file, these modules will be loaded when the computer is starting up. This allows udev to detect the devices and create the appropriate device nodes.

Note that on slower machines or for drivers that create a lot of device nodes, the process of creating devices may take a few seconds to complete. This means that some device nodes may not be immediately accessible.
7.4.3. Handling Hotpluggable/Dynamic Devices

When you plug in a device, such a Universal Serial Bus (USB) MP3 player, the kernel recognizes that the device is now connected and generates a hotplug event. If the driver is already loaded (either because it was compiled into the kernel or because it was loaded via the S05modules bootscript), udev will be called upon to create the relevant device node(s) according to the sysfs data available in /sys. If the driver for the just plugged in device is available as a module but currently unloaded, then attaching the device to the system will only cause the kernel's bus driver to generate a hotplug event that notifies userspace of the new device connection and it not being attached to a driver. In effect, nothing happens and the device itself is not usable yet.

If building a system that has a lot of drivers compiled as modules rather than directly built into the kernel, using the S05modules may not be practical. The Hotplug package (see http://linux-hotplug.sourceforge.net/) can be beneficial in these cases. When the Hotplug package is installed, it will respond to the aforementioned kernel's bus driver hotplug events. The Hotplug package will load the appropriate module and make this device available by creating the device node(s) for it.
7.4.4. Problems with Creating Devices

There are a few known problems when it comes to automatically creating devices nodes:

1) A kernel driver may not export its data to sysfs.

This is most common with third party drivers from outside the kernel tree. These drivers will not end up having their device nodes created. Use the /etc/sysconfig/createfiles configuration file to manually create the devices. Consult the devices.txt file inside the kernel documentation or the documentation for that driver to find the proper major/minor numbers.

2) A non-hardware device is required. This is most common with the Advanced Linux Sound Architecture (ALSA) project's Open Sound System (OSS) compatibility module. These types of devices can be handled in one of two ways:

*

Adding the module names to /etc/sysconfig/modules
*

Using an “install” line in /etc/modprobe.conf. This tells the modprobe command “when loading this module, also load this other module, at the same time.” For example:

install snd-pcm modprobe -i snd-pcm ; modprobe /
snd-pcm-oss ; true

This will cause the system to load both the snd-pcm and snd-pcm-oss modules when any request is made to load the driver snd-pcm.




Trackback: http://tb.blog.youkuaiyun.com/TrackBack.aspx?PostId=657620

 
<think>好的,我现在需要回答用户关于ubus和udevLinux系统中的定义、作用及区别的问题。首先,我需要回忆这两个组件的基本信息,并结合提供的引用内容来确保回答的准确性。 首先,ubus是什么?根据引用[4],ubus相关的库函数如ubus_add_object、ubus_register_subscriber等,看起来它是一个进程间通信(IPC)机制,用于系统内的模块间通信。用户提到的ubus cli命令行工具也说明它可能用于系统管理或信息查询。例如,ubus可以用于注册对象、调用方法、发送事件等,适用于轻量级的嵌入式环境,比如OpenWrt。 接下来是udev。根据引用[2]和[3],udev在USB设备探测过程中起作用,比如generic_probe函数处理设备授权和配置。引用[3]提到udev负责管理设备节点的创建、权限设置,以及处理热插拔事件。例如,当USB设备插入时,udev会加载驱动、创建设备文件,并可能触发用户定义的规则。 现在需要明确两者的区别。ubus是通信总线,用于进程间通信,而udev是设备管理子系统,处理设备节点的动态管理。应用场景也不同:ubus用于系统服务间的通信,如网络配置;udev处理硬件设备的热插拔事件,如自动挂载USB。 需要确保回答结构清晰,分点说明定义、作用、区别,并引用提供的资料。例如,在讨论udev时引用[2]中的generic_probe函数分析,说明设备配置过程。引用[3]中的hub_probe函数,说明udev如何与USB驱动交互。 可能用户的问题还包括如何配置ubus或编写udev规则,或者实际应用案例。需要生成相关问题,如ubus的API用途,udev规则编写方法,或两者在嵌入式系统中的协同作用。 最后,检查是否符合格式要求:使用中文,行内公式正确,引用标识正确添加,代码块(如果有)使用正确语法,生成的相关问题放在最后。</think>### 关于ubus和udev的定义及作用 #### 1. **ubus(OpenWrt微总线)** - **定义**:ubus是OpenWrt系统中设计的轻量级**进程间通信(IPC)框架**,主要用于模块化系统服务之间的通信[^4]。 - **作用**: - 提供API实现**对象注册、方法调用、事件通知**等功能。例如,通过`ubus_invoke`调用远程方法,或通过`ubus_notify`向订阅者发送通知[^4]。 - 常用于嵌入式系统中管理网络配置、服务状态查询等场景(如路由器配置)。 - 通过`ubus`命令行工具可直接与系统服务交互,例如查询设备信息或触发操作。 #### 2. **udev(用户空间设备管理)** - **定义**:udevLinux内核的**设备管理器**,负责动态管理`/dev`目录下的设备节点,响应硬件热插拔事件[^2][^3]。 - **作用**: - **设备节点管理**:自动创建设备文件(如插入USB后生成`/dev/sda1`)。 - **规则驱动**:通过`udev规则`定义设备插入时的行为(如自动挂载、权限设置)。 - **与内核交互**:在设备探测阶段,`generic_probe`函数会检查设备授权并调用配置(如`usb_set_configuration`)[^2]。当USB控制器加载时,`hub_probe`函数会初始化URB(USB请求块)以处理中断事件[^3]。 --- ### 区别对比 | 特性 | ubus | udev | |---------------|----------------------------------------|----------------------------------------| | **功能定位** | 进程间通信框架 | 设备节点管理与热插拔处理 | | **应用场景** | 系统服务通信(如配置同步、状态查询) | 硬件设备动态管理(如USB、PCI设备) | | **交互方式** | 基于Socket或命令行工具(`ubus cli`) | 内核事件触发,用户空间规则响应 | | **底层依赖** | 依赖用户空间库(如`libubus.so`) | 依赖内核`sysfs`和`devtmpfs`子系统 | --- ### 示例场景 - **ubus**:路由器中通过ubus查询当前网络接口状态: ```bash ubus call network.interface.wan status ``` - **udev**:插入USB摄像头后,自动加载驱动并创建`/dev/video0`节点,同时触发脚本录制视频。 ---
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值