ramfs-rootfs-initramfs.rst 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368
  1. .. SPDX-License-Identifier: GPL-2.0
  2. ===========================
  3. Ramfs, rootfs and initramfs
  4. ===========================
  5. October 17, 2005
  6. :Author: Rob Landley <rob@landley.net>
  7. What is ramfs?
  8. --------------
  9. Ramfs is a very simple filesystem that exports Linux's disk caching
  10. mechanisms (the page cache and dentry cache) as a dynamically resizable
  11. RAM-based filesystem.
  12. Normally all files are cached in memory by Linux. Pages of data read from
  13. backing store (usually the block device the filesystem is mounted on) are kept
  14. around in case it's needed again, but marked as clean (freeable) in case the
  15. Virtual Memory system needs the memory for something else. Similarly, data
  16. written to files is marked clean as soon as it has been written to backing
  17. store, but kept around for caching purposes until the VM reallocates the
  18. memory. A similar mechanism (the dentry cache) greatly speeds up access to
  19. directories.
  20. With ramfs, there is no backing store. Files written into ramfs allocate
  21. dentries and page cache as usual, but there's nowhere to write them to.
  22. This means the pages are never marked clean, so they can't be freed by the
  23. VM when it's looking to recycle memory.
  24. The amount of code required to implement ramfs is tiny, because all the
  25. work is done by the existing Linux caching infrastructure. Basically,
  26. you're mounting the disk cache as a filesystem. Because of this, ramfs is not
  27. an optional component removable via menuconfig, since there would be negligible
  28. space savings.
  29. ramfs and ramdisk:
  30. ------------------
  31. The older "ram disk" mechanism created a synthetic block device out of
  32. an area of RAM and used it as backing store for a filesystem. This block
  33. device was of fixed size, so the filesystem mounted on it was of fixed
  34. size. Using a ram disk also required unnecessarily copying memory from the
  35. fake block device into the page cache (and copying changes back out), as well
  36. as creating and destroying dentries. Plus it needed a filesystem driver
  37. (such as ext2) to format and interpret this data.
  38. Compared to ramfs, this wastes memory (and memory bus bandwidth), creates
  39. unnecessary work for the CPU, and pollutes the CPU caches. (There are tricks
  40. to avoid this copying by playing with the page tables, but they're unpleasantly
  41. complicated and turn out to be about as expensive as the copying anyway.)
  42. More to the point, all the work ramfs is doing has to happen _anyway_,
  43. since all file access goes through the page and dentry caches. The RAM
  44. disk is simply unnecessary; ramfs is internally much simpler.
  45. Another reason ramdisks are semi-obsolete is that the introduction of
  46. loopback devices offered a more flexible and convenient way to create
  47. synthetic block devices, now from files instead of from chunks of memory.
  48. See losetup (8) for details.
  49. ramfs and tmpfs:
  50. ----------------
  51. One downside of ramfs is you can keep writing data into it until you fill
  52. up all memory, and the VM can't free it because the VM thinks that files
  53. should get written to backing store (rather than swap space), but ramfs hasn't
  54. got any backing store. Because of this, only root (or a trusted user) should
  55. be allowed write access to a ramfs mount.
  56. A ramfs derivative called tmpfs was created to add size limits, and the ability
  57. to write the data to swap space. Normal users can be allowed write access to
  58. tmpfs mounts. See Documentation/filesystems/tmpfs.rst for more information.
  59. What is rootfs?
  60. ---------------
  61. Rootfs is a special instance of ramfs (or tmpfs, if that's enabled), which is
  62. always present in 2.6 systems. You can't unmount rootfs for approximately the
  63. same reason you can't kill the init process; rather than having special code
  64. to check for and handle an empty list, it's smaller and simpler for the kernel
  65. to just make sure certain lists can't become empty.
  66. Most systems just mount another filesystem over rootfs and ignore it. The
  67. amount of space an empty instance of ramfs takes up is tiny.
  68. If CONFIG_TMPFS is enabled, rootfs will use tmpfs instead of ramfs by
  69. default. To force ramfs, add "rootfstype=ramfs" to the kernel command
  70. line.
  71. What is initramfs?
  72. ------------------
  73. All 2.6 Linux kernels contain a gzipped "cpio" format archive, which is
  74. extracted into rootfs when the kernel boots up. After extracting, the kernel
  75. checks to see if rootfs contains a file "init", and if so it executes it as PID
  76. 1. If found, this init process is responsible for bringing the system the
  77. rest of the way up, including locating and mounting the real root device (if
  78. any). If rootfs does not contain an init program after the embedded cpio
  79. archive is extracted into it, the kernel will fall through to the older code
  80. to locate and mount a root partition, then exec some variant of /sbin/init
  81. out of that.
  82. All this differs from the old initrd in several ways:
  83. - The old initrd was always a separate file, while the initramfs archive is
  84. linked into the linux kernel image. (The directory ``linux-*/usr`` is
  85. devoted to generating this archive during the build.)
  86. - The old initrd file was a gzipped filesystem image (in some file format,
  87. such as ext2, that needed a driver built into the kernel), while the new
  88. initramfs archive is a gzipped cpio archive (like tar only simpler,
  89. see cpio(1) and Documentation/driver-api/early-userspace/buffer-format.rst).
  90. The kernel's cpio extraction code is not only extremely small, it's also
  91. __init text and data that can be discarded during the boot process.
  92. - The program run by the old initrd (which was called /initrd, not /init) did
  93. some setup and then returned to the kernel, while the init program from
  94. initramfs is not expected to return to the kernel. (If /init needs to hand
  95. off control it can overmount / with a new root device and exec another init
  96. program. See the switch_root utility, below.)
  97. - When switching another root device, initrd would pivot_root and then
  98. umount the ramdisk. But initramfs is rootfs: you can neither pivot_root
  99. rootfs, nor unmount it. Instead delete everything out of rootfs to
  100. free up the space (find -xdev / -exec rm '{}' ';'), overmount rootfs
  101. with the new root (cd /newmount; mount --move . /; chroot .), attach
  102. stdin/stdout/stderr to the new /dev/console, and exec the new init.
  103. Since this is a remarkably persnickety process (and involves deleting
  104. commands before you can run them), the klibc package introduced a helper
  105. program (utils/run_init.c) to do all this for you. Most other packages
  106. (such as busybox) have named this command "switch_root".
  107. Populating initramfs:
  108. ---------------------
  109. The 2.6 kernel build process always creates a gzipped cpio format initramfs
  110. archive and links it into the resulting kernel binary. By default, this
  111. archive is empty (consuming 134 bytes on x86).
  112. The config option CONFIG_INITRAMFS_SOURCE (in General Setup in menuconfig,
  113. and living in usr/Kconfig) can be used to specify a source for the
  114. initramfs archive, which will automatically be incorporated into the
  115. resulting binary. This option can point to an existing gzipped cpio
  116. archive, a directory containing files to be archived, or a text file
  117. specification such as the following example::
  118. dir /dev 755 0 0
  119. nod /dev/console 644 0 0 c 5 1
  120. nod /dev/loop0 644 0 0 b 7 0
  121. dir /bin 755 1000 1000
  122. slink /bin/sh busybox 777 0 0
  123. file /bin/busybox initramfs/busybox 755 0 0
  124. dir /proc 755 0 0
  125. dir /sys 755 0 0
  126. dir /mnt 755 0 0
  127. file /init initramfs/init.sh 755 0 0
  128. Run "usr/gen_init_cpio" (after the kernel build) to get a usage message
  129. documenting the above file format.
  130. One advantage of the configuration file is that root access is not required to
  131. set permissions or create device nodes in the new archive. (Note that those
  132. two example "file" entries expect to find files named "init.sh" and "busybox" in
  133. a directory called "initramfs", under the linux-2.6.* directory. See
  134. Documentation/driver-api/early-userspace/early_userspace_support.rst for more details.)
  135. The kernel does not depend on external cpio tools. If you specify a
  136. directory instead of a configuration file, the kernel's build infrastructure
  137. creates a configuration file from that directory (usr/Makefile calls
  138. usr/gen_initramfs.sh), and proceeds to package up that directory
  139. using the config file (by feeding it to usr/gen_init_cpio, which is created
  140. from usr/gen_init_cpio.c). The kernel's build-time cpio creation code is
  141. entirely self-contained, and the kernel's boot-time extractor is also
  142. (obviously) self-contained.
  143. The one thing you might need external cpio utilities installed for is creating
  144. or extracting your own preprepared cpio files to feed to the kernel build
  145. (instead of a config file or directory).
  146. The following command line can extract a cpio image (either by the above script
  147. or by the kernel build) back into its component files::
  148. cpio -i -d -H newc -F initramfs_data.cpio --no-absolute-filenames
  149. The following shell script can create a prebuilt cpio archive you can
  150. use in place of the above config file::
  151. #!/bin/sh
  152. # Copyright 2006 Rob Landley <rob@landley.net> and TimeSys Corporation.
  153. # Licensed under GPL version 2
  154. if [ $# -ne 2 ]
  155. then
  156. echo "usage: mkinitramfs directory imagename.cpio.gz"
  157. exit 1
  158. fi
  159. if [ -d "$1" ]
  160. then
  161. echo "creating $2 from $1"
  162. (cd "$1"; find . | cpio -o -H newc | gzip) > "$2"
  163. else
  164. echo "First argument must be a directory"
  165. exit 1
  166. fi
  167. .. Note::
  168. The cpio man page contains some bad advice that will break your initramfs
  169. archive if you follow it. It says "A typical way to generate the list
  170. of filenames is with the find command; you should give find the -depth
  171. option to minimize problems with permissions on directories that are
  172. unwritable or not searchable." Don't do this when creating
  173. initramfs.cpio.gz images, it won't work. The Linux kernel cpio extractor
  174. won't create files in a directory that doesn't exist, so the directory
  175. entries must go before the files that go in those directories.
  176. The above script gets them in the right order.
  177. External initramfs images:
  178. --------------------------
  179. If the kernel has initrd support enabled, an external cpio.gz archive can also
  180. be passed into a 2.6 kernel in place of an initrd. In this case, the kernel
  181. will autodetect the type (initramfs, not initrd) and extract the external cpio
  182. archive into rootfs before trying to run /init.
  183. This has the memory efficiency advantages of initramfs (no ramdisk block
  184. device) but the separate packaging of initrd (which is nice if you have
  185. non-GPL code you'd like to run from initramfs, without conflating it with
  186. the GPL licensed Linux kernel binary).
  187. It can also be used to supplement the kernel's built-in initramfs image. The
  188. files in the external archive will overwrite any conflicting files in
  189. the built-in initramfs archive. Some distributors also prefer to customize
  190. a single kernel image with task-specific initramfs images, without recompiling.
  191. Contents of initramfs:
  192. ----------------------
  193. An initramfs archive is a complete self-contained root filesystem for Linux.
  194. If you don't already understand what shared libraries, devices, and paths
  195. you need to get a minimal root filesystem up and running, here are some
  196. references:
  197. - https://www.tldp.org/HOWTO/Bootdisk-HOWTO/
  198. - https://www.tldp.org/HOWTO/From-PowerUp-To-Bash-Prompt-HOWTO.html
  199. - http://www.linuxfromscratch.org/lfs/view/stable/
  200. The "klibc" package (https://www.kernel.org/pub/linux/libs/klibc) is
  201. designed to be a tiny C library to statically link early userspace
  202. code against, along with some related utilities. It is BSD licensed.
  203. I use uClibc (https://www.uclibc.org) and busybox (https://www.busybox.net)
  204. myself. These are LGPL and GPL, respectively. (A self-contained initramfs
  205. package is planned for the busybox 1.3 release.)
  206. In theory you could use glibc, but that's not well suited for small embedded
  207. uses like this. (A "hello world" program statically linked against glibc is
  208. over 400k. With uClibc it's 7k. Also note that glibc dlopens libnss to do
  209. name lookups, even when otherwise statically linked.)
  210. A good first step is to get initramfs to run a statically linked "hello world"
  211. program as init, and test it under an emulator like qemu (www.qemu.org) or
  212. User Mode Linux, like so::
  213. cat > hello.c << EOF
  214. #include <stdio.h>
  215. #include <unistd.h>
  216. int main(int argc, char *argv[])
  217. {
  218. printf("Hello world!\n");
  219. sleep(999999999);
  220. }
  221. EOF
  222. gcc -static hello.c -o init
  223. echo init | cpio -o -H newc | gzip > test.cpio.gz
  224. # Testing external initramfs using the initrd loading mechanism.
  225. qemu -kernel /boot/vmlinuz -initrd test.cpio.gz /dev/zero
  226. When debugging a normal root filesystem, it's nice to be able to boot with
  227. "init=/bin/sh". The initramfs equivalent is "rdinit=/bin/sh", and it's
  228. just as useful.
  229. Why cpio rather than tar?
  230. -------------------------
  231. This decision was made back in December, 2001. The discussion started here:
  232. http://www.uwsg.iu.edu/hypermail/linux/kernel/0112.2/1538.html
  233. And spawned a second thread (specifically on tar vs cpio), starting here:
  234. http://www.uwsg.iu.edu/hypermail/linux/kernel/0112.2/1587.html
  235. The quick and dirty summary version (which is no substitute for reading
  236. the above threads) is:
  237. 1) cpio is a standard. It's decades old (from the AT&T days), and already
  238. widely used on Linux (inside RPM, Red Hat's device driver disks). Here's
  239. a Linux Journal article about it from 1996:
  240. http://www.linuxjournal.com/article/1213
  241. It's not as popular as tar because the traditional cpio command line tools
  242. require _truly_hideous_ command line arguments. But that says nothing
  243. either way about the archive format, and there are alternative tools,
  244. such as:
  245. http://freecode.com/projects/afio
  246. 2) The cpio archive format chosen by the kernel is simpler and cleaner (and
  247. thus easier to create and parse) than any of the (literally dozens of)
  248. various tar archive formats. The complete initramfs archive format is
  249. explained in buffer-format.txt, created in usr/gen_init_cpio.c, and
  250. extracted in init/initramfs.c. All three together come to less than 26k
  251. total of human-readable text.
  252. 3) The GNU project standardizing on tar is approximately as relevant as
  253. Windows standardizing on zip. Linux is not part of either, and is free
  254. to make its own technical decisions.
  255. 4) Since this is a kernel internal format, it could easily have been
  256. something brand new. The kernel provides its own tools to create and
  257. extract this format anyway. Using an existing standard was preferable,
  258. but not essential.
  259. 5) Al Viro made the decision (quote: "tar is ugly as hell and not going to be
  260. supported on the kernel side"):
  261. http://www.uwsg.iu.edu/hypermail/linux/kernel/0112.2/1540.html
  262. explained his reasoning:
  263. - http://www.uwsg.iu.edu/hypermail/linux/kernel/0112.2/1550.html
  264. - http://www.uwsg.iu.edu/hypermail/linux/kernel/0112.2/1638.html
  265. and, most importantly, designed and implemented the initramfs code.
  266. Future directions:
  267. ------------------
  268. Today (2.6.16), initramfs is always compiled in, but not always used. The
  269. kernel falls back to legacy boot code that is reached only if initramfs does
  270. not contain an /init program. The fallback is legacy code, there to ensure a
  271. smooth transition and allowing early boot functionality to gradually move to
  272. "early userspace" (I.E. initramfs).
  273. The move to early userspace is necessary because finding and mounting the real
  274. root device is complex. Root partitions can span multiple devices (raid or
  275. separate journal). They can be out on the network (requiring dhcp, setting a
  276. specific MAC address, logging into a server, etc). They can live on removable
  277. media, with dynamically allocated major/minor numbers and persistent naming
  278. issues requiring a full udev implementation to sort out. They can be
  279. compressed, encrypted, copy-on-write, loopback mounted, strangely partitioned,
  280. and so on.
  281. This kind of complexity (which inevitably includes policy) is rightly handled
  282. in userspace. Both klibc and busybox/uClibc are working on simple initramfs
  283. packages to drop into a kernel build.
  284. The klibc package has now been accepted into Andrew Morton's 2.6.17-mm tree.
  285. The kernel's current early boot code (partition detection, etc) will probably
  286. be migrated into a default initramfs, automatically created and used by the
  287. kernel build.