blob: dab8b1151b5698719cc9bbb072cead21c8773181 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#include <linux/unistd.h>
3#include <linux/kernel.h>
4#include <linux/fs.h>
5#include <linux/minix_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/romfs_fs.h>
7#include <linux/initrd.h>
8#include <linux/sched.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -08009#include <linux/freezer.h>
Al Viroba4df282012-10-02 15:29:10 -040010#include <linux/kmod.h>
David Howellse262e32d2018-11-01 23:07:23 +000011#include <uapi/linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
13#include "do_mounts.h"
14
15unsigned long initrd_start, initrd_end;
16int initrd_below_start_ok;
17unsigned int real_root_dev; /* do_proc_dointvec cannot handle kdev_t */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018static int __initdata mount_initrd = 1;
19
Florian Fainellib1ab95c2018-11-05 14:54:27 -080020phys_addr_t phys_initrd_start __initdata;
21unsigned long phys_initrd_size __initdata;
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023static int __init no_initrd(char *str)
24{
25 mount_initrd = 0;
26 return 1;
27}
28
29__setup("noinitrd", no_initrd);
30
Florian Fainelli229c55cc2018-11-05 14:54:31 -080031static int __init early_initrd(char *p)
32{
33 phys_addr_t start;
34 unsigned long size;
35 char *endp;
36
37 start = memparse(p, &endp);
38 if (*endp == ',') {
39 size = memparse(endp + 1, NULL);
40
41 phys_initrd_start = start;
42 phys_initrd_size = size;
43 }
44 return 0;
45}
46early_param("initrd", early_initrd);
47
Al Viroba4df282012-10-02 15:29:10 -040048static int init_linuxrc(struct subprocess_info *info, struct cred *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049{
Dominik Brodowski9b321052018-03-11 11:34:42 +010050 ksys_unshare(CLONE_FS | CLONE_FILES);
Dominik Brodowskib49a7332018-10-23 16:00:10 +020051 console_on_rootfs();
Al Viroba4df282012-10-02 15:29:10 -040052 /* move initrd over / and chdir/chroot in initrd root */
Dominik Brodowski447016e2018-03-11 11:34:46 +010053 ksys_chdir("/root");
Dominik Brodowskid4440aa2019-11-27 20:24:14 +010054 do_mount(".", "/", NULL, MS_MOVE, NULL);
Dominik Brodowskia16fe332018-03-11 11:34:41 +010055 ksys_chroot(".");
Dominik Brodowskie2aaa9f2018-03-16 12:36:06 +010056 ksys_setsid();
Al Viroba4df282012-10-02 15:29:10 -040057 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058}
59
60static void __init handle_initrd(void)
61{
Lucas De Marchi907ed132013-04-30 15:28:07 -070062 struct subprocess_info *info;
Al Viroba4df282012-10-02 15:29:10 -040063 static char *argv[] = { "linuxrc", NULL, };
64 extern char *envp_init[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67 real_root_dev = new_encode_dev(ROOT_DEV);
Greg Kroah-Hartmanbdaf8522005-06-20 21:15:16 -070068 create_dev("/dev/root.old", Root_RAM0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 /* mount initrd on rootfs' /root */
70 mount_block_root("/dev/root.old", root_mountflags & ~MS_RDONLY);
Dominik Brodowski0101db72018-03-11 11:34:49 +010071 ksys_mkdir("/old", 0700);
Dominik Brodowski447016e2018-03-11 11:34:46 +010072 ksys_chdir("/old");
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Rafael J. Wysocki8baabde2007-11-21 02:50:17 +010074 /*
75 * In case that a resume from disk is carried out by linuxrc or one of
76 * its children, we need to tell the freezer not to wait for us.
77 */
78 current->flags |= PF_FREEZER_SKIP;
79
Lucas De Marchi907ed132013-04-30 15:28:07 -070080 info = call_usermodehelper_setup("/linuxrc", argv, envp_init,
81 GFP_KERNEL, init_linuxrc, NULL, NULL);
82 if (!info)
83 return;
84 call_usermodehelper_exec(info, UMH_WAIT_PROC);
Rafael J. Wysocki8baabde2007-11-21 02:50:17 +010085
86 current->flags &= ~PF_FREEZER_SKIP;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88 /* move initrd to rootfs' /old */
Dominik Brodowskid4440aa2019-11-27 20:24:14 +010089 do_mount("..", ".", NULL, MS_MOVE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 /* switch root and cwd back to / of rootfs */
Dominik Brodowskia16fe332018-03-11 11:34:41 +010091 ksys_chroot("..");
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93 if (new_decode_dev(real_root_dev) == Root_RAM0) {
Dominik Brodowski447016e2018-03-11 11:34:46 +010094 ksys_chdir("/old");
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 return;
96 }
97
Dominik Brodowski447016e2018-03-11 11:34:46 +010098 ksys_chdir("/");
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 ROOT_DEV = new_decode_dev(real_root_dev);
100 mount_root();
101
102 printk(KERN_NOTICE "Trying to move old root to /initrd ... ");
Dominik Brodowskid4440aa2019-11-27 20:24:14 +0100103 error = do_mount("/old", "/root/initrd", NULL, MS_MOVE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 if (!error)
105 printk("okay\n");
106 else {
Dominik Brodowskibae217e2018-03-11 11:34:56 +0100107 int fd = ksys_open("/dev/root.old", O_RDWR, 0);
Jay Lanf220ab22005-06-30 02:59:03 -0700108 if (error == -ENOENT)
109 printk("/initrd does not exist. Ignored.\n");
110 else
111 printk("failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 printk(KERN_NOTICE "Unmounting old root\n");
Dominik Brodowski3a18ef52018-03-11 11:34:40 +0100113 ksys_umount("/old", MNT_DETACH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 printk(KERN_NOTICE "Trying to free ramdisk memory ... ");
115 if (fd < 0) {
116 error = fd;
117 } else {
Dominik Brodowskicbb60b92018-03-13 21:43:59 +0100118 error = ksys_ioctl(fd, BLKFLSBUF, 0);
Dominik Brodowski2ca2a09d62018-03-11 11:34:55 +0100119 ksys_close(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 }
121 printk(!error ? "okay\n" : "failed\n");
122 }
123}
124
Yaowei Baif057f3b2016-01-20 14:59:29 -0800125bool __init initrd_load(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
127 if (mount_initrd) {
Greg Kroah-Hartmanbdaf8522005-06-20 21:15:16 -0700128 create_dev("/dev/ram", Root_RAM0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 /*
130 * Load the initrd data into /dev/ram0. Execute it as initrd
131 * unless /dev/ram0 is supposed to be our actual root device,
132 * in that case the ram disk is just set up here, and gets
133 * mounted in the normal path.
134 */
135 if (rd_load_image("/initrd.image") && ROOT_DEV != Root_RAM0) {
Dominik Brodowski0f32ab82018-03-11 11:34:47 +0100136 ksys_unlink("/initrd.image");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 handle_initrd();
Yaowei Baif057f3b2016-01-20 14:59:29 -0800138 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 }
140 }
Dominik Brodowski0f32ab82018-03-11 11:34:47 +0100141 ksys_unlink("/initrd.image");
Yaowei Baif057f3b2016-01-20 14:59:29 -0800142 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}