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/initrd.h>
16 #include <linux/async.h>
18 #include <linux/nfs_fs.h>
19 #include <linux/nfs_fs_sb.h>
20 #include <linux/nfs_mount.h>
22 #include "do_mounts.h"
24 int __initdata rd_doload
; /* 1 = load RAM disk, 0 = don't load */
26 int root_mountflags
= MS_RDONLY
| MS_SILENT
;
27 static char * __initdata root_device_name
;
28 static char __initdata saved_root_name
[64];
29 static int __initdata root_wait
;
33 static int __init
load_ramdisk(char *str
)
35 rd_doload
= simple_strtol(str
,NULL
,0) & 3;
38 __setup("load_ramdisk=", load_ramdisk
);
40 static int __init
readonly(char *str
)
44 root_mountflags
|= MS_RDONLY
;
48 static int __init
readwrite(char *str
)
52 root_mountflags
&= ~MS_RDONLY
;
56 __setup("ro", readonly
);
57 __setup("rw", readwrite
);
60 * Convert a name into device number. We accept the following variants:
62 * 1) device number in hexadecimal represents itself
63 * 2) /dev/nfs represents Root_NFS (0xff)
64 * 3) /dev/<disk_name> represents the device number of disk
65 * 4) /dev/<disk_name><decimal> represents the device number
66 * of partition - device number of disk plus the partition number
67 * 5) /dev/<disk_name>p<decimal> - same as the above, that form is
68 * used when disk name of partitioned disk ends on a digit.
70 * If name doesn't have fall into the categories above, we return (0,0).
71 * block_class is used to check if something is a disk name. If the disk
72 * name contains slashes, the device name has them replaced with
76 dev_t
name_to_dev_t(char *name
)
83 if (strncmp(name
, "/dev/", 5) != 0) {
86 if (sscanf(name
, "%u:%u", &maj
, &min
) == 2) {
87 res
= MKDEV(maj
, min
);
88 if (maj
!= MAJOR(res
) || min
!= MINOR(res
))
91 res
= new_decode_dev(simple_strtoul(name
, &p
, 16));
100 if (strcmp(name
, "nfs") == 0)
103 if (strcmp(name
, "ram") == 0)
106 if (strlen(name
) > 31)
112 res
= blk_lookup_devt(s
, 0);
117 * try non-existant, but valid partition, which may only exist
118 * after revalidating the disk, like partitioned md devices
120 while (p
> s
&& isdigit(p
[-1]))
122 if (p
== s
|| !*p
|| *p
== '0')
125 /* try disk name without <part number> */
126 part
= simple_strtoul(p
, NULL
, 10);
128 res
= blk_lookup_devt(s
, part
);
132 /* try disk name without p<part number> */
133 if (p
< s
+ 2 || !isdigit(p
[-2]) || p
[-1] != 'p')
136 res
= blk_lookup_devt(s
, part
);
146 static int __init
root_dev_setup(char *line
)
148 strlcpy(saved_root_name
, line
, sizeof(saved_root_name
));
152 __setup("root=", root_dev_setup
);
154 static int __init
rootwait_setup(char *str
)
162 __setup("rootwait", rootwait_setup
);
164 static char * __initdata root_mount_data
;
165 static int __init
root_data_setup(char *str
)
167 root_mount_data
= str
;
171 static char * __initdata root_fs_names
;
172 static int __init
fs_names_setup(char *str
)
178 static unsigned int __initdata root_delay
;
179 static int __init
root_delay_setup(char *str
)
181 root_delay
= simple_strtoul(str
, NULL
, 0);
185 __setup("rootflags=", root_data_setup
);
186 __setup("rootfstype=", fs_names_setup
);
187 __setup("rootdelay=", root_delay_setup
);
189 static void __init
get_fs_names(char *page
)
194 strcpy(page
, root_fs_names
);
200 int len
= get_filesystem_list(page
);
204 for (p
= page
-1; p
; p
= next
) {
205 next
= strchr(++p
, '\n');
208 while ((*s
++ = *p
++) != '\n')
216 static int __init
do_mount_root(char *name
, char *fs
, int flags
, void *data
)
218 int err
= sys_mount(name
, "/root", fs
, flags
, data
);
223 ROOT_DEV
= current
->fs
->pwd
.mnt
->mnt_sb
->s_dev
;
224 printk("VFS: Mounted root (%s filesystem)%s on device %u:%u.\n",
225 current
->fs
->pwd
.mnt
->mnt_sb
->s_type
->name
,
226 current
->fs
->pwd
.mnt
->mnt_sb
->s_flags
& MS_RDONLY
?
227 " readonly" : "", MAJOR(ROOT_DEV
), MINOR(ROOT_DEV
));
231 void __init
mount_block_root(char *name
, int flags
)
233 char *fs_names
= __getname();
236 char b
[BDEVNAME_SIZE
];
238 const char *b
= name
;
241 get_fs_names(fs_names
);
243 for (p
= fs_names
; *p
; p
+= strlen(p
)+1) {
244 int err
= do_mount_root(name
, p
, flags
, root_mount_data
);
255 * Allow the user to distinguish between failed sys_open
256 * and bad superblock on root device.
257 * and give them a list of the available devices
260 __bdevname(ROOT_DEV
, b
);
262 printk("VFS: Cannot open root device \"%s\" or %s\n",
263 root_device_name
, b
);
264 printk("Please append a correct \"root=\" boot option; here are the available partitions:\n");
266 printk_all_partitions();
267 #ifdef CONFIG_DEBUG_BLOCK_EXT_DEVT
268 printk("DEBUG_BLOCK_EXT_DEVT is enabled, you need to specify "
269 "explicit textual name for \"root=\" boot option.\n");
271 panic("VFS: Unable to mount root fs on %s", b
);
274 printk("List of all partitions:\n");
275 printk_all_partitions();
276 printk("No filesystem could mount root, tried: ");
277 for (p
= fs_names
; *p
; p
+= strlen(p
)+1)
281 __bdevname(ROOT_DEV
, b
);
283 panic("VFS: Unable to mount root fs on %s", b
);
288 #ifdef CONFIG_ROOT_NFS
289 static int __init
mount_nfs_root(void)
291 void *data
= nfs_root_data();
293 create_dev("/dev/root", ROOT_DEV
);
295 do_mount_root("/dev/root", "nfs", root_mountflags
, data
) == 0)
301 #if defined(CONFIG_BLK_DEV_RAM) || defined(CONFIG_BLK_DEV_FD)
302 void __init
change_floppy(char *fmt
, ...)
304 struct termios termios
;
310 vsprintf(buf
, fmt
, args
);
312 fd
= sys_open("/dev/root", O_RDWR
| O_NDELAY
, 0);
314 sys_ioctl(fd
, FDEJECT
, 0);
317 printk(KERN_NOTICE
"VFS: Insert %s and press ENTER\n", buf
);
318 fd
= sys_open("/dev/console", O_RDWR
, 0);
320 sys_ioctl(fd
, TCGETS
, (long)&termios
);
321 termios
.c_lflag
&= ~ICANON
;
322 sys_ioctl(fd
, TCSETSF
, (long)&termios
);
324 termios
.c_lflag
|= ICANON
;
325 sys_ioctl(fd
, TCSETSF
, (long)&termios
);
331 void __init
mount_root(void)
333 #ifdef CONFIG_ROOT_NFS
334 if (MAJOR(ROOT_DEV
) == UNNAMED_MAJOR
) {
335 if (mount_nfs_root())
338 printk(KERN_ERR
"VFS: Unable to mount root fs via NFS, trying floppy.\n");
342 #ifdef CONFIG_BLK_DEV_FD
343 if (MAJOR(ROOT_DEV
) == FLOPPY_MAJOR
) {
344 /* rd_doload is 2 for a dual initrd/ramload setup */
346 if (rd_load_disk(1)) {
347 ROOT_DEV
= Root_RAM1
;
348 root_device_name
= NULL
;
351 change_floppy("root floppy");
355 create_dev("/dev/root", ROOT_DEV
);
356 mount_block_root("/dev/root", root_mountflags
);
361 * Prepare the namespace - decide what/where to mount, load ramdisks, etc.
363 void __init
prepare_namespace(void)
368 printk(KERN_INFO
"Waiting %dsec before mounting root device...\n",
373 /* wait for the known devices to complete their probing */
374 while (driver_probe_done() != 0)
376 async_synchronize_full();
380 if (saved_root_name
[0]) {
381 root_device_name
= saved_root_name
;
382 if (!strncmp(root_device_name
, "mtd", 3) ||
383 !strncmp(root_device_name
, "ubi", 3)) {
384 mount_block_root(root_device_name
, root_mountflags
);
387 ROOT_DEV
= name_to_dev_t(root_device_name
);
388 if (strncmp(root_device_name
, "/dev/", 5) == 0)
389 root_device_name
+= 5;
395 /* wait for any asynchronous scanning to complete */
396 if ((ROOT_DEV
== 0) && root_wait
) {
397 printk(KERN_INFO
"Waiting for root device %s...\n",
399 while (driver_probe_done() != 0 ||
400 (ROOT_DEV
= name_to_dev_t(saved_root_name
)) == 0)
404 is_floppy
= MAJOR(ROOT_DEV
) == FLOPPY_MAJOR
;
406 if (is_floppy
&& rd_doload
&& rd_load_disk(0))
407 ROOT_DEV
= Root_RAM0
;
411 sys_mount(".", "/", NULL
, MS_MOVE
, NULL
);