]> git.ipfire.org Git - thirdparty/dracut.git/blame - dracut.modules.7.asc
network-manager: remove useless use of basename
[thirdparty/dracut.git] / dracut.modules.7.asc
CommitLineData
b6c89768
HH
1DRACUT.MODULES(7)
2=================
3:doctype: manpage
4:man source: dracut
5:man manual: dracut
6
7NAME
8----
9dracut.modules - dracut modules
10
11DESCRIPTION
12-----------
b6c89768
HH
13
14dracut uses a modular system to build and extend the initramfs image. All
15modules are located in _/usr/lib/dracut/modules.d_ or in _<git-src>/modules.d_.
16The most basic dracut module is _99base_. In _99base_ the initial shell script
17init is defined, which gets run by the kernel after initramfs loading. Although
18you can replace init with your own version of _99base_, this is not encouraged.
19Instead you should use, if possible, the hooks of dracut. All hooks, and the
20point of time in which they are executed, are described in <<stages>>.
21
d5e5855b 22The main script, which creates the initramfs is dracut itself. It parses all
b6c89768
HH
23arguments and sets up the directory, in which everything is installed. It then
24executes all check, install, installkernel scripts found in the modules, which
25are to be processed. After everything is installed, the install directory is
26archived and compressed to the final initramfs image. All helper functions used
27by check, install and installkernel are found in in the file _dracut-functions_.
28These shell functions are available to all module installer (install,
29installkernel) scripts, without the need to source _dracut-functions_.
30
31A module can check the preconditions for install and installkernel with the
32check script. Also dependencies can be expressed with check. If a module passed
33check, install and installkernel will be called to install all of the necessary
34files for the module. To split between kernel and non-kernel parts of the
35installation, all kernel module related parts have to be in installkernel. All
36other files found in a module directory are module specific and mostly are hook
37scripts and udev rules.
38
39
40[[stages]]
41== Boot Process Stages
42
43dracut modules can insert custom script at various points, to control the boot
44process.
45These hooks are plain directories containing shell scripts ending with ".sh",
46which are sourced by init.
47Common used functions are in _dracut-lib.sh_, which can be sourced by any script.
48
49=== Hook: cmdline
50
51The _cmdline_ hook is a place to insert scripts to parse the kernel command line
52and prepare the later actions, like setting up udev rules and configuration
53files.
54
55In this hook the most important environment variable is defined: root. The
56second one is rootok, which indicates, that a module claimed to be able to parse
57the root defined. So for example, **root=**__iscsi:....__ will be claimed by the
58iscsi dracut module, which then sets rootok.
59
60=== Hook: pre-udev
61
62This hook is executed right after the cmdline hook and a check if root and
63rootok were set. Here modules can take action with the final root, and before
64udev has been run.
65
66=== Start Udev
67
68Now udev is started and the logging for udev is setup.
69
70=== Hook: pre-trigger
71
72In this hook, you can set udev environment variables with **udevadm control
73--property=KEY=_value_** or control the further execution of udev with
74udevadm.
75
76=== Trigger Udev
77
78udev is triggered by calling udevadm trigger, which sends add events for all
79devices and subsystems.
80
81=== Main Loop
82
83In the main loop of dracut loops until udev has settled and
84all scripts in _initqueue/finished_ returned true.
85In this loop there are three hooks, where scripts can be inserted
86by calling /sbin/initqueue.
87
88==== Initqueue
89
90This hook gets executed every time a script is inserted here, regardless of the
91udev state.
92
93==== Initqueue settled
94
95This hooks (initqueue/settled) gets executed every time udev has settled.
96
97==== Initqueue timeout
98
ef9ddb91
HH
99This hooks (initqueue/timeout) gets executed, when the main loop counter becomes
100half of the rd.retry counter.
b6c89768
HH
101
102==== Initqueue finished
103
104This hook (initqueue/finished) is called after udev has settled and
105if all scripts herein return 0 the main loop will be ended.
106Abritary scripts can be added here, to loop in the
107initqueue until something happens, which a dracut module wants to wait for.
108
109=== Hook: pre-mount
110
111Before the root device is mounted all scripts in the hook pre-mount are
112executed. In some cases (e.g. NFS) the real root device is already mounted,
113though.
114
115=== Hook: mount
116
117This hook is mainly to mount the real root device.
118
119=== Hook: pre-pivot
120
121This hook is called before cleanup hook, This is a good place for
122actions other than cleanups which need to be called before pivot.
123
124=== Hook: cleanup
125
126This hook is the last hook and is called before init finally switches root to
127the real root device. This is a good place to clean up and kill processes not
128needed anymore.
129
130
131=== Cleanup and switch_root
132
133Init (or systemd) kills all udev processes, cleans up the environment,
134sets up the arguments for the real init process and finally calls switch_root.
135switch_root removes the whole filesystem hierarchy of the initramfs,
ef9ddb91
HH
136chroot()s to the real root device and calls /sbin/init with the specified
137arguments.
b6c89768
HH
138
139To ensure all files in the initramfs hierarchy can be removed, all processes
140still running from the initramfs should not have any open file descriptors left.
141
142== Network Infrastructure
143
144FIXME
145
146== Writing a Module
147
148A simple example module is _96insmodpost_, which modprobes a kernel module after
149udev has settled and the basic device drivers have been loaded.
150
151All module installation information is in the file module-setup.sh.
152
153First we create a check() function, which just exits with 0 indicating that this
154module should be included by default.
155
156check():
157----
158return 0
159----
160
161The we create the install() function, which installs a cmdline hook with
162priority number 20 called _parse-insmodpost.sh_. It also installs the
163_insmodpost.sh_ script in _/sbin_.
164
165install():
166----
167inst_hook cmdline 20 "$moddir/parse-insmodpost.sh"
168inst_simple "$moddir/insmodpost.sh" /sbin/insmodpost.sh
169----
170
f2c42365 171The _parse-instmodpost.sh_ parses the kernel command line for a argument
b6c89768
HH
172rd.driver.post, blacklists the module from being autoloaded and installs the
173hook _insmodpost.sh_ in the _initqueue/settled_.
174
175_parse-insmodpost.sh_:
176----
177for p in $(getargs rd.driver.post=); do
178 echo "blacklist $p" >> /etc/modprobe.d/initramfsblacklist.conf
179 _do_insmodpost=1
180done
181
182[ -n "$_do_insmodpost" ] && /sbin/initqueue --settled --unique --onetime /sbin/insmodpost.sh
183unset _do_insmodpost
184
185----
186
187_insmodpost.sh_, which is called in the _initqueue/settled_ hook will just
188modprobe the kernel modules specified in all rd.driver.post kernel command line
189parameters. It runs after udev has settled and is only called once (--onetime).
190
191_insmodpost.sh_:
192----
193. /lib/dracut-lib.sh
194
195for p in $(getargs rd.driver.post=); do
196 modprobe $p
197done
198
199----
200
201
202=== module-setup.sh: check()
203
204_check()_ is called by dracut to evaluate the inclusion of a dracut module in
205the initramfs.
206
207$hostonly:: If the $hostonly variable is set, then the module check() function
208should be in "hostonly" mode, which means, that the check() should only return
2090, if the module is really needed to boot this specific host.
210
211check() should return with:
212
2130:: Include the dracut module in the initramfs.
214
d0921882 2151:: Do not include the dracut module. The requirements are not fulfilled
b6c89768
HH
216(missing tools, etc.)
217
218255:: Only include the dracut module, if another module requires it or if
219explicitly specified in the config file or on the argument list.
220
221
222=== module-setup.sh: depends()
223
224The function depends() should echo all other dracut module names the module
225depends on.
226
227=== module-setup.sh: cmdline()
228
ef9ddb91
HH
229This function should print the kernel command line options needed to boot the
230current machine setup. It should start with a space and should not print a
231newline.
b6c89768
HH
232
233=== module-setup.sh: install()
234
ef9ddb91
HH
235The install() function is called to install everything non-kernel related.
236To install binaries, scripts, and other files, you can use the functions
237mentioned in <<creation>>.
b6c89768
HH
238
239To address a file in the current module directory, use the variable "$moddir".
240
241=== module-setup.sh: installkernel()
242
ef9ddb91
HH
243In installkernel() all kernel related files should be installed. You can use all
244of the functions mentioned in <<creation>> to install files.
b6c89768
HH
245
246=== [[creation]]Creation Functions
247
248==== inst_multiple [-o] <file> [ <file> ...]
249
ef9ddb91
HH
250installs multiple binaries and files. If executables are specified without a
251path, dracut will search the path PATH=/usr/sbin:/sbin:/usr/bin:/bin for the
252binary. If the option "-o" is given as the first parameter, a missing file does
253not lead to an error.
b6c89768
HH
254
255==== inst <src> [<dst>]
256
ef9ddb91 257installs _one_ file <src> either to the same place in the initramfs or to an
d0921882
TK
258optional <dst>. inst with more than two arguments is treated the same as
259inst_multiple, all arguments are treated as files to install and none as
3161dea8 260install destinations.
b6c89768
HH
261
262==== inst_hook <hookdir> <prio> <src>
263
ef9ddb91
HH
264installs an executable/script <src> in the dracut hook <hookdir> with priority
265<prio>.
b6c89768
HH
266
267==== inst_rules <udevrule> [ <udevrule> ...]
268
fb280834 269installs one or more udev rules. Non-existant udev rules are reported, but do
ef9ddb91 270not let dracut fail.
b6c89768
HH
271
272==== instmods <kernelmodule> [ <kernelmodule> ... ]
273
274instmods should be used only in the installkernel() function.
275
ef9ddb91
HH
276instmods installs one or more kernel modules in the initramfs. <kernelmodule>
277can also be a whole subsystem, if prefixed with a "=", like "=drivers/net/team".
b6c89768 278
ef9ddb91
HH
279instmods will not install the kernel module, if $hostonly is set and the kernel
280module is not currently needed by any /sys/*...*/uevent MODALIAS.
b6c89768
HH
281To install a kernel module regardless of the hostonly mode use the form:
282----
283hostonly='' instmods <kernelmodule>
284----
285
286=== Initramfs Functions
287
288FIXME
289
290
291=== Network Modules
292
293FIXME
294
295AUTHOR
296------
297Harald Hoyer
298
299SEE ALSO
300--------
301*dracut*(8)