1 #include <linux/module.h>
2 #include <linux/sched.h>
3 #include <linux/ctype.h>
6 #include <linux/suspend.h>
7 #include <linux/root_dev.h>
8 #include <linux/security.h>
9 #include <linux/delay.h>
10 #include <linux/genhd.h>
11 #include <linux/mount.h>
12 #include <linux/device.h>
13 #include <linux/init.h>
15 #include <linux/nfs_fs.h>
16 #include <linux/nfs_fs_sb.h>
17 #include <linux/nfs_mount.h>
19 #include "do_mounts.h"
21 extern int get_filesystem_list(char * buf
);
23 int __initdata rd_doload
; /* 1 = load RAM disk, 0 = don't load */
25 int root_mountflags
= MS_RDONLY
| MS_SILENT
;
26 char * __initdata root_device_name
;
27 static char __initdata saved_root_name
[64];
28 static int __initdata root_wait
;
32 static int __init
load_ramdisk(char *str
)
34 rd_doload
= simple_strtol(str
,NULL
,0) & 3;
37 __setup("load_ramdisk=", load_ramdisk
);
39 static int __init
readonly(char *str
)
43 root_mountflags
|= MS_RDONLY
;
47 static int __init
readwrite(char *str
)
51 root_mountflags
&= ~MS_RDONLY
;
55 __setup("ro", readonly
);
56 __setup("rw", readwrite
);
59 * Convert a name into device number. We accept the following variants:
61 * 1) device number in hexadecimal represents itself
62 * 2) /dev/nfs represents Root_NFS (0xff)
63 * 3) /dev/<disk_name> represents the device number of disk
64 * 4) /dev/<disk_name><decimal> represents the device number
65 * of partition - device number of disk plus the partition number
66 * 5) /dev/<disk_name>p<decimal> - same as the above, that form is
67 * used when disk name of partitioned disk ends on a digit.
69 * If name doesn't have fall into the categories above, we return (0,0).
70 * block_class is used to check if something is a disk name. If the disk
71 * name contains slashes, the device name has them replaced with
75 dev_t
name_to_dev_t(char *name
)
81 if (strncmp(name
, "/dev/", 5) != 0) {
84 if (sscanf(name
, "%u:%u", &maj
, &min
) == 2) {
85 res
= MKDEV(maj
, min
);
86 if (maj
!= MAJOR(res
) || min
!= MINOR(res
))
89 res
= new_decode_dev(simple_strtoul(name
, &p
, 16));
98 if (strcmp(name
, "nfs") == 0)
101 if (strcmp(name
, "ram") == 0)
104 if (strlen(name
) > 31)
110 res
= blk_lookup_devt(s
);
120 static int __init
root_dev_setup(char *line
)
122 strlcpy(saved_root_name
, line
, sizeof(saved_root_name
));
126 __setup("root=", root_dev_setup
);
128 static int __init
rootwait_setup(char *str
)
136 __setup("rootwait", rootwait_setup
);
138 static char * __initdata root_mount_data
;
139 static int __init
root_data_setup(char *str
)
141 root_mount_data
= str
;
145 static char * __initdata root_fs_names
;
146 static int __init
fs_names_setup(char *str
)
152 static unsigned int __initdata root_delay
;
153 static int __init
root_delay_setup(char *str
)
155 root_delay
= simple_strtoul(str
, NULL
, 0);
159 __setup("rootflags=", root_data_setup
);
160 __setup("rootfstype=", fs_names_setup
);
161 __setup("rootdelay=", root_delay_setup
);
163 static void __init
get_fs_names(char *page
)
168 strcpy(page
, root_fs_names
);
174 int len
= get_filesystem_list(page
);
178 for (p
= page
-1; p
; p
= next
) {
179 next
= strchr(++p
, '\n');
182 while ((*s
++ = *p
++) != '\n')
190 static int __init
do_mount_root(char *name
, char *fs
, int flags
, void *data
)
192 int err
= sys_mount(name
, "/root", fs
, flags
, data
);
197 ROOT_DEV
= current
->fs
->pwdmnt
->mnt_sb
->s_dev
;
198 printk("VFS: Mounted root (%s filesystem)%s.\n",
199 current
->fs
->pwdmnt
->mnt_sb
->s_type
->name
,
200 current
->fs
->pwdmnt
->mnt_sb
->s_flags
& MS_RDONLY
?
205 void __init
mount_block_root(char *name
, int flags
)
207 char *fs_names
= __getname();
210 char b
[BDEVNAME_SIZE
];
212 const char *b
= name
;
215 get_fs_names(fs_names
);
217 for (p
= fs_names
; *p
; p
+= strlen(p
)+1) {
218 int err
= do_mount_root(name
, p
, flags
, root_mount_data
);
229 * Allow the user to distinguish between failed sys_open
230 * and bad superblock on root device.
231 * and give them a list of the available devices
234 __bdevname(ROOT_DEV
, b
);
236 printk("VFS: Cannot open root device \"%s\" or %s\n",
237 root_device_name
, b
);
238 printk("Please append a correct \"root=\" boot option; here are the available partitions:\n");
240 printk_all_partitions();
241 panic("VFS: Unable to mount root fs on %s", b
);
244 printk("List of all partitions:\n");
245 printk_all_partitions();
246 printk("No filesystem could mount root, tried: ");
247 for (p
= fs_names
; *p
; p
+= strlen(p
)+1)
251 __bdevname(ROOT_DEV
, b
);
253 panic("VFS: Unable to mount root fs on %s", b
);
258 #ifdef CONFIG_ROOT_NFS
259 static int __init
mount_nfs_root(void)
261 void *data
= nfs_root_data();
263 create_dev("/dev/root", ROOT_DEV
);
265 do_mount_root("/dev/root", "nfs", root_mountflags
, data
) == 0)
271 #if defined(CONFIG_BLK_DEV_RAM) || defined(CONFIG_BLK_DEV_FD)
272 void __init
change_floppy(char *fmt
, ...)
274 struct termios termios
;
280 vsprintf(buf
, fmt
, args
);
282 fd
= sys_open("/dev/root", O_RDWR
| O_NDELAY
, 0);
284 sys_ioctl(fd
, FDEJECT
, 0);
287 printk(KERN_NOTICE
"VFS: Insert %s and press ENTER\n", buf
);
288 fd
= sys_open("/dev/console", O_RDWR
, 0);
290 sys_ioctl(fd
, TCGETS
, (long)&termios
);
291 termios
.c_lflag
&= ~ICANON
;
292 sys_ioctl(fd
, TCSETSF
, (long)&termios
);
294 termios
.c_lflag
|= ICANON
;
295 sys_ioctl(fd
, TCSETSF
, (long)&termios
);
301 void __init
mount_root(void)
303 #ifdef CONFIG_ROOT_NFS
304 if (MAJOR(ROOT_DEV
) == UNNAMED_MAJOR
) {
305 if (mount_nfs_root())
308 printk(KERN_ERR
"VFS: Unable to mount root fs via NFS, trying floppy.\n");
312 #ifdef CONFIG_BLK_DEV_FD
313 if (MAJOR(ROOT_DEV
) == FLOPPY_MAJOR
) {
314 /* rd_doload is 2 for a dual initrd/ramload setup */
316 if (rd_load_disk(1)) {
317 ROOT_DEV
= Root_RAM1
;
318 root_device_name
= NULL
;
321 change_floppy("root floppy");
325 create_dev("/dev/root", ROOT_DEV
);
326 mount_block_root("/dev/root", root_mountflags
);
331 * Prepare the namespace - decide what/where to mount, load ramdisks, etc.
333 void __init
prepare_namespace(void)
338 printk(KERN_INFO
"Waiting %dsec before mounting root device...\n",
343 /* wait for the known devices to complete their probing */
344 while (driver_probe_done() != 0)
349 if (saved_root_name
[0]) {
350 root_device_name
= saved_root_name
;
351 if (!strncmp(root_device_name
, "mtd", 3)) {
352 mount_block_root(root_device_name
, root_mountflags
);
355 ROOT_DEV
= name_to_dev_t(root_device_name
);
356 if (strncmp(root_device_name
, "/dev/", 5) == 0)
357 root_device_name
+= 5;
363 /* wait for any asynchronous scanning to complete */
364 if ((ROOT_DEV
== 0) && root_wait
) {
365 printk(KERN_INFO
"Waiting for root device %s...\n",
367 while (driver_probe_done() != 0 ||
368 (ROOT_DEV
= name_to_dev_t(saved_root_name
)) == 0)
372 is_floppy
= MAJOR(ROOT_DEV
) == FLOPPY_MAJOR
;
374 if (is_floppy
&& rd_doload
&& rd_load_disk(0))
375 ROOT_DEV
= Root_RAM0
;
379 sys_mount(".", "/", NULL
, MS_MOVE
, NULL
);