OSDN Git Service

vfs: Suppress MS_* flag defs within the kernel unless explicitly enabled
[tomoyo/tomoyo-test1.git] / init / do_mounts_initrd.c
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/unistd.h>
3 #include <linux/kernel.h>
4 #include <linux/fs.h>
5 #include <linux/minix_fs.h>
6 #include <linux/romfs_fs.h>
7 #include <linux/initrd.h>
8 #include <linux/sched.h>
9 #include <linux/freezer.h>
10 #include <linux/kmod.h>
11 #include <uapi/linux/mount.h>
12
13 #include "do_mounts.h"
14
15 unsigned long initrd_start, initrd_end;
16 int initrd_below_start_ok;
17 unsigned int real_root_dev;     /* do_proc_dointvec cannot handle kdev_t */
18 static int __initdata mount_initrd = 1;
19
20 static int __init no_initrd(char *str)
21 {
22         mount_initrd = 0;
23         return 1;
24 }
25
26 __setup("noinitrd", no_initrd);
27
28 static int init_linuxrc(struct subprocess_info *info, struct cred *new)
29 {
30         ksys_unshare(CLONE_FS | CLONE_FILES);
31         /* stdin/stdout/stderr for /linuxrc */
32         ksys_open("/dev/console", O_RDWR, 0);
33         ksys_dup(0);
34         ksys_dup(0);
35         /* move initrd over / and chdir/chroot in initrd root */
36         ksys_chdir("/root");
37         ksys_mount(".", "/", NULL, MS_MOVE, NULL);
38         ksys_chroot(".");
39         ksys_setsid();
40         return 0;
41 }
42
43 static void __init handle_initrd(void)
44 {
45         struct subprocess_info *info;
46         static char *argv[] = { "linuxrc", NULL, };
47         extern char *envp_init[];
48         int error;
49
50         real_root_dev = new_encode_dev(ROOT_DEV);
51         create_dev("/dev/root.old", Root_RAM0);
52         /* mount initrd on rootfs' /root */
53         mount_block_root("/dev/root.old", root_mountflags & ~MS_RDONLY);
54         ksys_mkdir("/old", 0700);
55         ksys_chdir("/old");
56
57         /* try loading default modules from initrd */
58         load_default_modules();
59
60         /*
61          * In case that a resume from disk is carried out by linuxrc or one of
62          * its children, we need to tell the freezer not to wait for us.
63          */
64         current->flags |= PF_FREEZER_SKIP;
65
66         info = call_usermodehelper_setup("/linuxrc", argv, envp_init,
67                                          GFP_KERNEL, init_linuxrc, NULL, NULL);
68         if (!info)
69                 return;
70         call_usermodehelper_exec(info, UMH_WAIT_PROC);
71
72         current->flags &= ~PF_FREEZER_SKIP;
73
74         /* move initrd to rootfs' /old */
75         ksys_mount("..", ".", NULL, MS_MOVE, NULL);
76         /* switch root and cwd back to / of rootfs */
77         ksys_chroot("..");
78
79         if (new_decode_dev(real_root_dev) == Root_RAM0) {
80                 ksys_chdir("/old");
81                 return;
82         }
83
84         ksys_chdir("/");
85         ROOT_DEV = new_decode_dev(real_root_dev);
86         mount_root();
87
88         printk(KERN_NOTICE "Trying to move old root to /initrd ... ");
89         error = ksys_mount("/old", "/root/initrd", NULL, MS_MOVE, NULL);
90         if (!error)
91                 printk("okay\n");
92         else {
93                 int fd = ksys_open("/dev/root.old", O_RDWR, 0);
94                 if (error == -ENOENT)
95                         printk("/initrd does not exist. Ignored.\n");
96                 else
97                         printk("failed\n");
98                 printk(KERN_NOTICE "Unmounting old root\n");
99                 ksys_umount("/old", MNT_DETACH);
100                 printk(KERN_NOTICE "Trying to free ramdisk memory ... ");
101                 if (fd < 0) {
102                         error = fd;
103                 } else {
104                         error = ksys_ioctl(fd, BLKFLSBUF, 0);
105                         ksys_close(fd);
106                 }
107                 printk(!error ? "okay\n" : "failed\n");
108         }
109 }
110
111 bool __init initrd_load(void)
112 {
113         if (mount_initrd) {
114                 create_dev("/dev/ram", Root_RAM0);
115                 /*
116                  * Load the initrd data into /dev/ram0. Execute it as initrd
117                  * unless /dev/ram0 is supposed to be our actual root device,
118                  * in that case the ram disk is just set up here, and gets
119                  * mounted in the normal path.
120                  */
121                 if (rd_load_image("/initrd.image") && ROOT_DEV != Root_RAM0) {
122                         ksys_unlink("/initrd.image");
123                         handle_initrd();
124                         return true;
125                 }
126         }
127         ksys_unlink("/initrd.image");
128         return false;
129 }