source: chapter07/udev.xml@ f6b3d49

6.1 6.1.1
Last change on this file since f6b3d49 was f6b3d49, checked in by Manuel Canales Esparcia <manuel@…>, 19 years ago

Adjusted the beginpage tags to match the previous text changes.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/6.1/BOOK@4994 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 10.6 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
6<sect1 id="ch-scripts-udev">
7<title>Device and Module Handling on an LFS System</title>
8<?dbhtml filename="udev.html"?>
9
10<indexterm zone="ch-scripts-udev">
11<primary sortas="a-Udev">Udev</primary>
12<secondary>usage</secondary></indexterm>
13
14<para>In <xref linkend="chapter-building-system"/>, we installed the Udev
15package. Before we go into the details regarding how this works,
16a brief history of previous methods of handling devices is in
17order.</para>
18
19<para>Linux systems in general traditionally use a static device
20creation method, whereby a great many device nodes are created under
21<filename class="directory">/dev</filename> (sometimes literally
22thousands of nodes), regardless of whether the corresponding hardware
23devices actually exist. This is typically done via a
24<command>MAKEDEV</command> script, which contains a number of
25calls to the <command>mknod</command> program with the relevant major and minor device
26numbers for every possible device that might exist in the world. Using
27the udev method, only those devices which are detected by the kernel
28get device nodes created for them. Because these device nodes will be
29created each time the system boots, they will be stored on a
30<systemitem class="filesystem">ramfs</systemitem> (a file system that
31resides entirely in memory and does not take up any disk space).
32Device nodes do not require much disk space, so the memory that is
33used is negligible.</para>
34
35<sect2>
36<title>History</title>
37
38<para>In February 2000, a new filesystem called <systemitem
39class="filesystem">devfs</systemitem> was merged into the 2.3.46
40kernel and was made available during the 2.4 series of
41stable kernels. Although it was present in the kernel source itself,
42this method of creating devices dynamically never received
43overwhelming support from the core kernel developers.</para>
44
45<para>The main problem with the approach adopted by <systemitem
46class="filesystem">devfs</systemitem> was the way it handled
47device detection, creation, and naming. The latter issue, that of
48device node naming, was perhaps the most critical. It is generally
49accepted that if device names are allowed to be configurable, then
50the device naming policy should be up to a system administrator, not
51imposed on them by any particular developer(s). The <systemitem
52class="filesystem">devfs</systemitem> file system also suffers from race
53conditions that are inherent in its design and cannot be fixed
54without a substantial revision to the kernel. It has also been marked
55as deprecated due to a lack of recent maintenance.</para>
56
57<para>With the development of the unstable 2.5 kernel tree, later
58released as the 2.6 series of stable kernels, a new virtual filesystem
59called <systemitem class="filesystem">sysfs</systemitem> came to be.
60The job of <systemitem class="filesystem">sysfs</systemitem> is to
61export a view of the system's structure to userspace processes. With
62this userspace visible representation, the possibility of seeing a
63userspace replacement for <systemitem
64class="filesystem">devfs</systemitem> became much more
65realistic.</para>
66</sect2>
67
68<sect2>
69<title>Udev Implementation</title>
70
71<para>The <systemitem class="filesystem">sysfs</systemitem> filesystem
72was mentioned briefly above. One may wonder how <systemitem
73class="filesystem">sysfs</systemitem> knows about the devices present
74on a system and what device numbers should be used. Drivers that
75have been compiled into the kernel directly register their objects
76with <systemitem class="filesystem">sysfs</systemitem> as they are
77detected by the kernel. For drivers compiled as modules, this will
78happen when the module is loaded. Once the <systemitem
79class="filesystem">sysfs</systemitem> filesystem is mounted (on
80<filename class="directory">/sys</filename>), the data which the
81built-in drivers registered with <systemitem
82class="filesystem">sysfs</systemitem> are available to userspace
83processes and to <command>udev</command> for device node creation.</para>
84
85<para>The <command>S10udev</command> initscript takes care of creating
86these device nodes when Linux is booted. This script starts with
87registering <command>/sbin/udevsend</command> as a hotplug event handler.
88Hotplug events (discussed below) should not be generated during this
89stage, but <command>udev</command> is registered just in case they do
90occur. The <command>udevstart</command> program then walks through
91the <systemitem class="filesystem">/sys</systemitem> filesystem and
92creates devices under <filename class="directory">/dev</filename> that
93match the descriptions. For example,
94<filename>/sys/class/tty/vcs/dev</filename> contains the string
95<quote>7:0</quote> This string is used by <command>udevstart</command>
96to create <filename>/dev/vcs</filename> with major number
97<emphasis>7</emphasis> and minor <emphasis>0</emphasis>. The names and
98permissions of the nodes created under the
99<filename class="directory">/dev</filename> directory are configured according
100to the rules specified in the files within the
101<filename class="directory">/etc/udev/rules.d/</filename> directory. These are
102numbered in a similar fashion to the LFS bootscripts. If
103<command>udev</command> can't find a rule for the device it is creating, it will
104default permissions to <emphasis>660</emphasis> and ownership to
105<emphasis>root:root</emphasis>.</para>
106
107<para>Once the above stage is complete, all devices that were already
108present and have compiled-in drivers will be available for use. What
109about those devices that have modular drivers?</para>
110
111<para>Earlier, we mentioned the concept of a <quote>hotplug event
112handler.</quote> When a new device connection is detected by the
113kernel, the kernel will generate a hotplug event and look at the file
114<filename>/proc/sys/kernel/hotplug</filename> to find out the
115userspace program that handles the device's connection. The
116<command>udev</command> initscript registered <command>udevsend</command>
117as this handler. When these hotplug events are generated, the kernel
118will tell <command>udev</command> to check the <filename
119class="directory">/sys</filename> filesystem for the information
120pertaining to this new device and create the <filename
121class="directory">/dev</filename> entry for it.</para>
122
123<para>This brings us to one problem that exists with
124<command>udev</command>, and likewise with <systemitem
125class="filesystem">devfs</systemitem> before it. It is commonly
126referred to as the <quote>chicken and egg</quote> problem. Most Linux
127distrubtions handle loading modules via entries in
128<filename>/etc/modules.conf</filename>. Access to a device node causes
129the appropriate kernel module to load. With <command>udev</command>,
130this method will not work because the device node does not exist until
131the module is loaded. To solve this, the
132<command>S05modules</command> bootscript was added to the
133lfs-bootscripts package, along with the
134<filename>/etc/sysconfig/modules</filename> file. By
135adding module
136names to the <filename>modules</filename> file, these modules will be
137loaded when the computer is starting up. This allows
138<command>udev</command> to detect the devices and create the
139appropriate device nodes.</para>
140
141<para>Note that on slower machines or for drivers that create a lot
142of device nodes, the process of creating devices may take a few
143seconds to complete. This means that some device nodes may not be
144immediately accessible.</para>
145</sect2>
146
147<sect2>
148<title>Handling Hotpluggable/Dynamic Devices</title>
149
150<para>When you plug in a device, such as a Universal Serial Bus (USB) MP3 player, the kernel
151recognizes that the device is now connected and generates a hotplug
152event. If the driver is already loaded (either because it was compiled
153into the kernel or because it was loaded via the
154<command>S05modules</command> bootscript), <command>udev</command> will
155be called upon to create the relevant device node(s) according to the
156<systemitem class="filesystem">sysfs</systemitem> data available in
157<filename class="directory">/sys</filename>.</para>
158
159<para>If the driver for the just plugged in device is available as a module but
160currently unloaded, the Hotplug package will load the appropriate module
161and make this device available by creating the device node(s) for it.</para>
162</sect2>
163
164<sect2>
165<title>Problems with Creating Devices</title>
166
167<para>There are a few known problems when it comes to automatically creating
168devices nodes:</para>
169
170<para>1) A kernel driver may not export its data to <systemitem
171class="filesystem">sysfs</systemitem>.</para>
172
173<para>This is most common with third party drivers from outside the
174kernel tree. These drivers will not end up having their device nodes
175created. Use the
176<filename>/etc/sysconfig/createfiles</filename> configuration file to
177manually create the devices. Consult the
178<filename>devices.txt</filename> file inside the kernel documentation
179or the documentation for that driver to find the proper major/minor
180numbers.</para>
181
182<para>2) A non-hardware device is required. This is most common with
183the Advanced Linux Sound Architecture (ALSA) project's Open Sound
184System (OSS) compatibility module. These types of devices can be
185handled in one of two ways:</para>
186
187<itemizedlist>
188
189<listitem><para>Adding the module names to
190<filename>/etc/sysconfig/modules</filename></para><beginpage/></listitem>
191<listitem><para>Using an
192<quote>install</quote> line in
193<filename>/etc/modprobe.conf</filename>. This tells the
194<command>modprobe</command> command <quote>when loading this module,
195also load this other module, at the same time.</quote> For example:</para>
196
197<screen><userinput>install snd-pcm modprobe -i snd-pcm ; modprobe \
198 snd-pcm-oss ; true</userinput></screen>
199
200<para>This will cause the system to load both the
201<emphasis>snd-pcm</emphasis> and <emphasis>snd-pcm-oss</emphasis>
202modules when any request is made to load the driver
203<emphasis>snd-pcm</emphasis>.</para></listitem>
204</itemizedlist>
205</sect2>
206
207<sect2>
208<title>Useful Reading</title>
209
210<para>Additional helpful documentation is available at the following
211sites:</para>
212
213<itemizedlist>
214<listitem><para remap="verbatim">A Userspace Implementation of <systemitem class="filesystem">devfs</systemitem>
215<ulink url="http://www.kroah.com/linux/talks/ols_2003_udev_paper/Reprint-Kroah-Hartman-OLS2003.pdf"/></para></listitem>
216
217<listitem><para remap="verbatim">udev FAQ
218<ulink url="http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev-FAQ"/></para></listitem>
219
220<listitem><para remap="verbatim">The Linux Kernel Driver Model
221<ulink url="http://public.planetmirror.com/pub/lca/2003/proceedings/papers/Patrick_Mochel/Patrick_Mochel.pdf"/></para></listitem>
222</itemizedlist>
223</sect2>
224
225</sect1>
226
Note: See TracBrowser for help on using the repository browser.