blob: c950d7c93f987af861cf2cf1f9dcf67dc9401a6f [file] [log] [blame]
H Hartley Sweetenc67e5382012-05-31 16:26:10 -07001/*
2 * Many of the syscalls used in this file expect some of the arguments
3 * to be __user pointers not __kernel pointers. To limit the sparse
4 * noise, turn off sparse checking for this file.
5 */
6#ifdef __CHECKER__
7#undef __CHECKER__
8#warning "Sparse checking disabled for this file"
9#endif
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/module.h>
12#include <linux/sched.h>
13#include <linux/ctype.h>
14#include <linux/fd.h>
15#include <linux/tty.h>
16#include <linux/suspend.h>
17#include <linux/root_dev.h>
18#include <linux/security.h>
19#include <linux/delay.h>
Dave Gilbertdd2a3452007-05-09 02:33:24 -070020#include <linux/genhd.h>
Andrew Mortond53d9f12005-07-12 13:58:07 -070021#include <linux/mount.h>
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -070022#include <linux/device.h>
Adrian Bunk46595392007-05-08 00:24:47 -070023#include <linux/init.h>
Adrian Bunk011e3fc2008-02-06 01:36:47 -080024#include <linux/fs.h>
Adrian Bunk82c82532008-07-25 01:45:29 -070025#include <linux/initrd.h>
Arjan van de Ven22a9d642009-01-07 08:45:46 -080026#include <linux/async.h>
Al Viro5ad4e532009-03-29 19:50:06 -040027#include <linux/fs_struct.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30#include <linux/nfs_fs.h>
31#include <linux/nfs_fs_sb.h>
32#include <linux/nfs_mount.h>
33
34#include "do_mounts.h"
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036int __initdata rd_doload; /* 1 = load RAM disk, 0 = don't load */
37
Theodore Ts'o9b04c992006-03-24 03:15:10 -080038int root_mountflags = MS_RDONLY | MS_SILENT;
Adrian Bunkf56f6d302008-07-25 19:46:25 -070039static char * __initdata root_device_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040static char __initdata saved_root_name[64];
Will Drewry79975f12011-11-02 13:38:59 -070041static int root_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043dev_t ROOT_DEV;
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045static int __init load_ramdisk(char *str)
46{
47 rd_doload = simple_strtol(str,NULL,0) & 3;
48 return 1;
49}
50__setup("load_ramdisk=", load_ramdisk);
51
52static int __init readonly(char *str)
53{
54 if (*str)
55 return 0;
56 root_mountflags |= MS_RDONLY;
57 return 1;
58}
59
60static int __init readwrite(char *str)
61{
62 if (*str)
63 return 0;
64 root_mountflags &= ~MS_RDONLY;
65 return 1;
66}
67
68__setup("ro", readonly);
69__setup("rw", readwrite);
70
Jens Axboe6d0aed72010-09-17 10:00:46 +020071#ifdef CONFIG_BLOCK
Stephen Warren1ad7e892012-11-08 16:12:25 -080072struct uuidcmp {
73 const char *uuid;
74 int len;
75};
76
Will Drewryb5af9212010-08-31 15:47:07 -050077/**
78 * match_dev_by_uuid - callback for finding a partition using its uuid
79 * @dev: device passed in by the caller
Stephen Warren1ad7e892012-11-08 16:12:25 -080080 * @data: opaque pointer to the desired struct uuidcmp to match
Will Drewryb5af9212010-08-31 15:47:07 -050081 *
82 * Returns 1 if the device matches, and 0 otherwise.
83 */
Jens Axboe38b6f452010-09-16 08:33:54 +020084static int match_dev_by_uuid(struct device *dev, void *data)
Will Drewryb5af9212010-08-31 15:47:07 -050085{
Stephen Warren1ad7e892012-11-08 16:12:25 -080086 struct uuidcmp *cmp = data;
Will Drewryb5af9212010-08-31 15:47:07 -050087 struct hd_struct *part = dev_to_part(dev);
88
89 if (!part->info)
90 goto no_match;
91
Stephen Warren1ad7e892012-11-08 16:12:25 -080092 if (strncasecmp(cmp->uuid, part->info->uuid, cmp->len))
93 goto no_match;
Will Drewryb5af9212010-08-31 15:47:07 -050094
95 return 1;
96no_match:
97 return 0;
98}
99
100
101/**
102 * devt_from_partuuid - looks up the dev_t of a partition by its UUID
Stephen Warren1ad7e892012-11-08 16:12:25 -0800103 * @uuid: char array containing ascii UUID
Will Drewryb5af9212010-08-31 15:47:07 -0500104 *
105 * The function will return the first partition which contains a matching
106 * UUID value in its partition_meta_info struct. This does not search
107 * by filesystem UUIDs.
108 *
Will Drewry79975f12011-11-02 13:38:59 -0700109 * If @uuid is followed by a "/PARTNROFF=%d", then the number will be
110 * extracted and used as an offset from the partition identified by the UUID.
111 *
Will Drewryb5af9212010-08-31 15:47:07 -0500112 * Returns the matching dev_t on success or 0 on failure.
113 */
Stephen Warren1ad7e892012-11-08 16:12:25 -0800114static dev_t devt_from_partuuid(const char *uuid_str)
Will Drewryb5af9212010-08-31 15:47:07 -0500115{
116 dev_t res = 0;
Stephen Warren1ad7e892012-11-08 16:12:25 -0800117 struct uuidcmp cmp;
Will Drewryb5af9212010-08-31 15:47:07 -0500118 struct device *dev = NULL;
Will Drewry79975f12011-11-02 13:38:59 -0700119 struct gendisk *disk;
120 struct hd_struct *part;
121 int offset = 0;
Stephen Warren283f8fc2012-11-08 16:12:27 -0800122 bool clear_root_wait = false;
123 char *slash;
Will Drewry79975f12011-11-02 13:38:59 -0700124
Stephen Warren1ad7e892012-11-08 16:12:25 -0800125 cmp.uuid = uuid_str;
Stephen Warren1ad7e892012-11-08 16:12:25 -0800126
Stephen Warren283f8fc2012-11-08 16:12:27 -0800127 slash = strchr(uuid_str, '/');
Will Drewry79975f12011-11-02 13:38:59 -0700128 /* Check for optional partition number offset attributes. */
Stephen Warren283f8fc2012-11-08 16:12:27 -0800129 if (slash) {
Will Drewry79975f12011-11-02 13:38:59 -0700130 char c = 0;
131 /* Explicitly fail on poor PARTUUID syntax. */
Stephen Warren283f8fc2012-11-08 16:12:27 -0800132 if (sscanf(slash + 1,
133 "PARTNROFF=%d%c", &offset, &c) != 1) {
134 clear_root_wait = true;
Will Drewry79975f12011-11-02 13:38:59 -0700135 goto done;
136 }
Stephen Warren283f8fc2012-11-08 16:12:27 -0800137 cmp.len = slash - uuid_str;
138 } else {
139 cmp.len = strlen(uuid_str);
140 }
141
142 if (!cmp.len) {
143 clear_root_wait = true;
144 goto done;
Will Drewry79975f12011-11-02 13:38:59 -0700145 }
Will Drewryb5af9212010-08-31 15:47:07 -0500146
Stephen Warren1ad7e892012-11-08 16:12:25 -0800147 dev = class_find_device(&block_class, NULL, &cmp,
148 &match_dev_by_uuid);
Will Drewryb5af9212010-08-31 15:47:07 -0500149 if (!dev)
150 goto done;
151
152 res = dev->devt;
Will Drewryb5af9212010-08-31 15:47:07 -0500153
Will Drewry79975f12011-11-02 13:38:59 -0700154 /* Attempt to find the partition by offset. */
155 if (!offset)
156 goto no_offset;
157
158 res = 0;
159 disk = part_to_disk(dev_to_part(dev));
160 part = disk_get_part(disk, dev_to_part(dev)->partno + offset);
161 if (part) {
162 res = part_devt(part);
163 put_device(part_to_dev(part));
164 }
165
166no_offset:
167 put_device(dev);
Will Drewryb5af9212010-08-31 15:47:07 -0500168done:
Stephen Warren283f8fc2012-11-08 16:12:27 -0800169 if (clear_root_wait) {
170 pr_err("VFS: PARTUUID= is invalid.\n"
171 "Expected PARTUUID=<valid-uuid-id>[/PARTNROFF=%%d]\n");
172 if (root_wait)
173 pr_err("Disabling rootwait; root= is invalid.\n");
174 root_wait = 0;
175 }
Will Drewryb5af9212010-08-31 15:47:07 -0500176 return res;
177}
Jens Axboe6d0aed72010-09-17 10:00:46 +0200178#endif
Will Drewryb5af9212010-08-31 15:47:07 -0500179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180/*
181 * Convert a name into device number. We accept the following variants:
182 *
183 * 1) device number in hexadecimal represents itself
184 * 2) /dev/nfs represents Root_NFS (0xff)
185 * 3) /dev/<disk_name> represents the device number of disk
186 * 4) /dev/<disk_name><decimal> represents the device number
187 * of partition - device number of disk plus the partition number
188 * 5) /dev/<disk_name>p<decimal> - same as the above, that form is
189 * used when disk name of partitioned disk ends on a digit.
Will Drewryb5af9212010-08-31 15:47:07 -0500190 * 6) PARTUUID=00112233-4455-6677-8899-AABBCCDDEEFF representing the
191 * unique id of a partition if the partition table provides it.
Will Drewry79975f12011-11-02 13:38:59 -0700192 * 7) PARTUUID=<UUID>/PARTNROFF=<int> to select a partition in relation to
193 * a partition with a known unique id.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 *
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200195 * If name doesn't have fall into the categories above, we return (0,0).
196 * block_class is used to check if something is a disk name. If the disk
197 * name contains slashes, the device name has them replaced with
198 * bangs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 */
200
201dev_t name_to_dev_t(char *name)
202{
203 char s[32];
204 char *p;
205 dev_t res = 0;
Kay Sievers30f2f0e2008-05-06 22:31:33 +0200206 int part;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Jens Axboe6d0aed72010-09-17 10:00:46 +0200208#ifdef CONFIG_BLOCK
Will Drewryb5af9212010-08-31 15:47:07 -0500209 if (strncmp(name, "PARTUUID=", 9) == 0) {
210 name += 9;
Will Drewryb5af9212010-08-31 15:47:07 -0500211 res = devt_from_partuuid(name);
212 if (!res)
213 goto fail;
214 goto done;
215 }
Jens Axboe6d0aed72010-09-17 10:00:46 +0200216#endif
Will Drewryb5af9212010-08-31 15:47:07 -0500217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 if (strncmp(name, "/dev/", 5) != 0) {
219 unsigned maj, min;
220
221 if (sscanf(name, "%u:%u", &maj, &min) == 2) {
222 res = MKDEV(maj, min);
223 if (maj != MAJOR(res) || min != MINOR(res))
224 goto fail;
225 } else {
226 res = new_decode_dev(simple_strtoul(name, &p, 16));
227 if (*p)
228 goto fail;
229 }
230 goto done;
231 }
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 name += 5;
234 res = Root_NFS;
235 if (strcmp(name, "nfs") == 0)
236 goto done;
237 res = Root_RAM0;
238 if (strcmp(name, "ram") == 0)
239 goto done;
240
241 if (strlen(name) > 31)
242 goto fail;
243 strcpy(s, name);
244 for (p = s; *p; p++)
245 if (*p == '/')
246 *p = '!';
Kay Sievers30f2f0e2008-05-06 22:31:33 +0200247 res = blk_lookup_devt(s, 0);
248 if (res)
249 goto done;
250
251 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300252 * try non-existent, but valid partition, which may only exist
Kay Sievers30f2f0e2008-05-06 22:31:33 +0200253 * after revalidating the disk, like partitioned md devices
254 */
255 while (p > s && isdigit(p[-1]))
256 p--;
257 if (p == s || !*p || *p == '0')
258 goto fail;
259
260 /* try disk name without <part number> */
261 part = simple_strtoul(p, NULL, 10);
262 *p = '\0';
263 res = blk_lookup_devt(s, part);
264 if (res)
265 goto done;
266
267 /* try disk name without p<part number> */
268 if (p < s + 2 || !isdigit(p[-2]) || p[-1] != 'p')
269 goto fail;
270 p[-1] = '\0';
271 res = blk_lookup_devt(s, part);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 if (res)
273 goto done;
274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275fail:
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200276 return 0;
277done:
278 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
281static int __init root_dev_setup(char *line)
282{
283 strlcpy(saved_root_name, line, sizeof(saved_root_name));
284 return 1;
285}
286
287__setup("root=", root_dev_setup);
288
Pierre Ossmancc1ed752007-07-15 23:40:35 -0700289static int __init rootwait_setup(char *str)
290{
291 if (*str)
292 return 0;
293 root_wait = 1;
294 return 1;
295}
296
297__setup("rootwait", rootwait_setup);
298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299static char * __initdata root_mount_data;
300static int __init root_data_setup(char *str)
301{
302 root_mount_data = str;
303 return 1;
304}
305
306static char * __initdata root_fs_names;
307static int __init fs_names_setup(char *str)
308{
309 root_fs_names = str;
310 return 1;
311}
312
313static unsigned int __initdata root_delay;
314static int __init root_delay_setup(char *str)
315{
316 root_delay = simple_strtoul(str, NULL, 0);
317 return 1;
318}
319
320__setup("rootflags=", root_data_setup);
321__setup("rootfstype=", fs_names_setup);
322__setup("rootdelay=", root_delay_setup);
323
324static void __init get_fs_names(char *page)
325{
326 char *s = page;
327
328 if (root_fs_names) {
329 strcpy(page, root_fs_names);
330 while (*s++) {
331 if (s[-1] == ',')
332 s[-1] = '\0';
333 }
334 } else {
335 int len = get_filesystem_list(page);
336 char *p, *next;
337
338 page[len] = '\0';
339 for (p = page-1; p; p = next) {
340 next = strchr(++p, '\n');
341 if (*p++ != '\t')
342 continue;
343 while ((*s++ = *p++) != '\n')
344 ;
345 s[-1] = '\0';
346 }
347 }
348 *s = '\0';
349}
350
351static int __init do_mount_root(char *name, char *fs, int flags, void *data)
352{
Al Virod8c95842011-12-07 18:16:57 -0500353 struct super_block *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 int err = sys_mount(name, "/root", fs, flags, data);
355 if (err)
356 return err;
357
H Hartley Sweetenc67e5382012-05-31 16:26:10 -0700358 sys_chdir("/root");
Al Virod8c95842011-12-07 18:16:57 -0500359 s = current->fs->pwd.dentry->d_sb;
360 ROOT_DEV = s->s_dev;
Mandeep Singh Baines80cdc6d2011-03-22 16:33:54 -0700361 printk(KERN_INFO
362 "VFS: Mounted root (%s filesystem)%s on device %u:%u.\n",
Al Virod8c95842011-12-07 18:16:57 -0500363 s->s_type->name,
364 s->s_flags & MS_RDONLY ? " readonly" : "",
365 MAJOR(ROOT_DEV), MINOR(ROOT_DEV));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 return 0;
367}
368
369void __init mount_block_root(char *name, int flags)
370{
Jeff Laytona608ca22012-10-10 15:25:26 -0400371 struct page *page = alloc_page(GFP_KERNEL |
372 __GFP_NOTRACK_FALSE_POSITIVE);
373 char *fs_names = page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 char *p;
David Howells93614012006-09-30 20:45:40 +0200375#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 char b[BDEVNAME_SIZE];
David Howells93614012006-09-30 20:45:40 +0200377#else
378 const char *b = name;
379#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
381 get_fs_names(fs_names);
382retry:
383 for (p = fs_names; *p; p += strlen(p)+1) {
384 int err = do_mount_root(name, p, flags, root_mount_data);
385 switch (err) {
386 case 0:
387 goto out;
388 case -EACCES:
389 flags |= MS_RDONLY;
390 goto retry;
391 case -EINVAL:
392 continue;
393 }
394 /*
395 * Allow the user to distinguish between failed sys_open
396 * and bad superblock on root device.
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700397 * and give them a list of the available devices
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 */
David Howells93614012006-09-30 20:45:40 +0200399#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 __bdevname(ROOT_DEV, b);
David Howells93614012006-09-30 20:45:40 +0200401#endif
Bernhard Walle0e0cb892012-03-23 15:02:28 -0700402 printk("VFS: Cannot open root device \"%s\" or %s: error %d\n",
403 root_device_name, b, err);
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700404 printk("Please append a correct \"root=\" boot option; here are the available partitions:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700406 printk_all_partitions();
Tejun Heo55dc7db2008-09-01 13:44:35 +0200407#ifdef CONFIG_DEBUG_BLOCK_EXT_DEVT
408 printk("DEBUG_BLOCK_EXT_DEVT is enabled, you need to specify "
409 "explicit textual name for \"root=\" boot option.\n");
410#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 panic("VFS: Unable to mount root fs on %s", b);
412 }
Andy Whitcroftbe6e028b2006-05-15 09:44:29 -0700413
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700414 printk("List of all partitions:\n");
415 printk_all_partitions();
Andy Whitcroftbe6e028b2006-05-15 09:44:29 -0700416 printk("No filesystem could mount root, tried: ");
417 for (p = fs_names; *p; p += strlen(p)+1)
418 printk(" %s", p);
419 printk("\n");
David Howells93614012006-09-30 20:45:40 +0200420#ifdef CONFIG_BLOCK
421 __bdevname(ROOT_DEV, b);
422#endif
423 panic("VFS: Unable to mount root fs on %s", b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424out:
Jeff Laytona608ca22012-10-10 15:25:26 -0400425 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426}
427
428#ifdef CONFIG_ROOT_NFS
Chuck Lever43717c72011-12-05 15:40:30 -0500429
430#define NFSROOT_TIMEOUT_MIN 5
431#define NFSROOT_TIMEOUT_MAX 30
432#define NFSROOT_RETRY_MAX 5
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434static int __init mount_nfs_root(void)
435{
Chuck Lever56463e52010-09-17 10:54:37 -0400436 char *root_dev, *root_data;
Chuck Lever43717c72011-12-05 15:40:30 -0500437 unsigned int timeout;
438 int try, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Chuck Lever43717c72011-12-05 15:40:30 -0500440 err = nfs_root_data(&root_dev, &root_data);
441 if (err != 0)
Chuck Lever56463e52010-09-17 10:54:37 -0400442 return 0;
Chuck Lever43717c72011-12-05 15:40:30 -0500443
444 /*
445 * The server or network may not be ready, so try several
446 * times. Stop after a few tries in case the client wants
447 * to fall back to other boot methods.
448 */
449 timeout = NFSROOT_TIMEOUT_MIN;
450 for (try = 1; ; try++) {
451 err = do_mount_root(root_dev, "nfs",
452 root_mountflags, root_data);
453 if (err == 0)
454 return 1;
455 if (try > NFSROOT_RETRY_MAX)
456 break;
457
458 /* Wait, in case the server refused us immediately */
459 ssleep(timeout);
460 timeout <<= 1;
461 if (timeout > NFSROOT_TIMEOUT_MAX)
462 timeout = NFSROOT_TIMEOUT_MAX;
463 }
464 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465}
466#endif
467
468#if defined(CONFIG_BLK_DEV_RAM) || defined(CONFIG_BLK_DEV_FD)
469void __init change_floppy(char *fmt, ...)
470{
471 struct termios termios;
472 char buf[80];
473 char c;
474 int fd;
475 va_list args;
476 va_start(args, fmt);
477 vsprintf(buf, fmt, args);
478 va_end(args);
479 fd = sys_open("/dev/root", O_RDWR | O_NDELAY, 0);
480 if (fd >= 0) {
481 sys_ioctl(fd, FDEJECT, 0);
482 sys_close(fd);
483 }
484 printk(KERN_NOTICE "VFS: Insert %s and press ENTER\n", buf);
485 fd = sys_open("/dev/console", O_RDWR, 0);
486 if (fd >= 0) {
487 sys_ioctl(fd, TCGETS, (long)&termios);
488 termios.c_lflag &= ~ICANON;
489 sys_ioctl(fd, TCSETSF, (long)&termios);
490 sys_read(fd, &c, 1);
491 termios.c_lflag |= ICANON;
492 sys_ioctl(fd, TCSETSF, (long)&termios);
493 sys_close(fd);
494 }
495}
496#endif
497
498void __init mount_root(void)
499{
500#ifdef CONFIG_ROOT_NFS
Sasha Levin377485f2012-05-05 17:06:35 +0200501 if (ROOT_DEV == Root_NFS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 if (mount_nfs_root())
503 return;
504
505 printk(KERN_ERR "VFS: Unable to mount root fs via NFS, trying floppy.\n");
506 ROOT_DEV = Root_FD0;
507 }
508#endif
509#ifdef CONFIG_BLK_DEV_FD
510 if (MAJOR(ROOT_DEV) == FLOPPY_MAJOR) {
511 /* rd_doload is 2 for a dual initrd/ramload setup */
512 if (rd_doload==2) {
513 if (rd_load_disk(1)) {
514 ROOT_DEV = Root_RAM1;
515 root_device_name = NULL;
516 }
517 } else
518 change_floppy("root floppy");
519 }
520#endif
David Howells93614012006-09-30 20:45:40 +0200521#ifdef CONFIG_BLOCK
Greg Kroah-Hartmanbdaf8522005-06-20 21:15:16 -0700522 create_dev("/dev/root", ROOT_DEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 mount_block_root("/dev/root", root_mountflags);
David Howells93614012006-09-30 20:45:40 +0200524#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525}
526
527/*
528 * Prepare the namespace - decide what/where to mount, load ramdisks, etc.
529 */
530void __init prepare_namespace(void)
531{
532 int is_floppy;
533
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 if (root_delay) {
535 printk(KERN_INFO "Waiting %dsec before mounting root device...\n",
536 root_delay);
537 ssleep(root_delay);
538 }
539
Arjan van de Ven216773a2009-02-14 01:59:06 +0100540 /*
541 * wait for the known devices to complete their probing
542 *
543 * Note: this is a potential source of long boot delays.
544 * For example, it is not atypical to wait 5 seconds here
545 * for the touchpad of a laptop to initialize.
546 */
547 wait_for_device_probe();
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 md_run_setup();
550
551 if (saved_root_name[0]) {
552 root_device_name = saved_root_name;
Adrian Hunter2d62f482008-01-31 17:25:00 +0200553 if (!strncmp(root_device_name, "mtd", 3) ||
554 !strncmp(root_device_name, "ubi", 3)) {
Joern Engele9482b42006-05-30 14:25:46 +0200555 mount_block_root(root_device_name, root_mountflags);
556 goto out;
557 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 ROOT_DEV = name_to_dev_t(root_device_name);
559 if (strncmp(root_device_name, "/dev/", 5) == 0)
560 root_device_name += 5;
561 }
562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 if (initrd_load())
564 goto out;
565
Pierre Ossmancc1ed752007-07-15 23:40:35 -0700566 /* wait for any asynchronous scanning to complete */
567 if ((ROOT_DEV == 0) && root_wait) {
568 printk(KERN_INFO "Waiting for root device %s...\n",
569 saved_root_name);
570 while (driver_probe_done() != 0 ||
571 (ROOT_DEV = name_to_dev_t(saved_root_name)) == 0)
572 msleep(100);
Arjan van de Ven216773a2009-02-14 01:59:06 +0100573 async_synchronize_full();
Pierre Ossmancc1ed752007-07-15 23:40:35 -0700574 }
575
576 is_floppy = MAJOR(ROOT_DEV) == FLOPPY_MAJOR;
577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 if (is_floppy && rd_doload && rd_load_disk(0))
579 ROOT_DEV = Root_RAM0;
580
581 mount_root();
582out:
Kay Sievers2b2af542009-04-30 15:23:42 +0200583 devtmpfs_mount("dev");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 sys_mount(".", "/", NULL, MS_MOVE, NULL);
H Hartley Sweetenc67e5382012-05-31 16:26:10 -0700585 sys_chroot(".");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586}