blob: 5d8d48fd0ee4cd792ae5accbad76d5804831511c [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>
Rob Landley57f150a2013-09-11 14:26:10 -070029#include <linux/ramfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31#include <linux/nfs_fs.h>
32#include <linux/nfs_fs_sb.h>
33#include <linux/nfs_mount.h>
34
35#include "do_mounts.h"
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037int __initdata rd_doload; /* 1 = load RAM disk, 0 = don't load */
38
Theodore Ts'o9b04c992006-03-24 03:15:10 -080039int root_mountflags = MS_RDONLY | MS_SILENT;
Adrian Bunkf56f6d302008-07-25 19:46:25 -070040static char * __initdata root_device_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041static char __initdata saved_root_name[64];
Will Drewry79975f12011-11-02 13:38:59 -070042static int root_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Linus Torvalds1da177e2005-04-16 15:20:36 -070044dev_t ROOT_DEV;
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046static int __init load_ramdisk(char *str)
47{
48 rd_doload = simple_strtol(str,NULL,0) & 3;
49 return 1;
50}
51__setup("load_ramdisk=", load_ramdisk);
52
53static int __init readonly(char *str)
54{
55 if (*str)
56 return 0;
57 root_mountflags |= MS_RDONLY;
58 return 1;
59}
60
61static int __init readwrite(char *str)
62{
63 if (*str)
64 return 0;
65 root_mountflags &= ~MS_RDONLY;
66 return 1;
67}
68
69__setup("ro", readonly);
70__setup("rw", readwrite);
71
Jens Axboe6d0aed72010-09-17 10:00:46 +020072#ifdef CONFIG_BLOCK
Stephen Warren1ad7e892012-11-08 16:12:25 -080073struct uuidcmp {
74 const char *uuid;
75 int len;
76};
77
Will Drewryb5af9212010-08-31 15:47:07 -050078/**
79 * match_dev_by_uuid - callback for finding a partition using its uuid
80 * @dev: device passed in by the caller
Stephen Warren1ad7e892012-11-08 16:12:25 -080081 * @data: opaque pointer to the desired struct uuidcmp to match
Will Drewryb5af9212010-08-31 15:47:07 -050082 *
83 * Returns 1 if the device matches, and 0 otherwise.
84 */
Michał Mirosław9f3b7952013-02-01 20:40:17 +010085static int match_dev_by_uuid(struct device *dev, const void *data)
Will Drewryb5af9212010-08-31 15:47:07 -050086{
Michał Mirosław9f3b7952013-02-01 20:40:17 +010087 const struct uuidcmp *cmp = data;
Will Drewryb5af9212010-08-31 15:47:07 -050088 struct hd_struct *part = dev_to_part(dev);
89
90 if (!part->info)
91 goto no_match;
92
Stephen Warren1ad7e892012-11-08 16:12:25 -080093 if (strncasecmp(cmp->uuid, part->info->uuid, cmp->len))
94 goto no_match;
Will Drewryb5af9212010-08-31 15:47:07 -050095
96 return 1;
97no_match:
98 return 0;
99}
100
101
102/**
103 * devt_from_partuuid - looks up the dev_t of a partition by its UUID
Stephen Warren1ad7e892012-11-08 16:12:25 -0800104 * @uuid: char array containing ascii UUID
Will Drewryb5af9212010-08-31 15:47:07 -0500105 *
106 * The function will return the first partition which contains a matching
107 * UUID value in its partition_meta_info struct. This does not search
108 * by filesystem UUIDs.
109 *
Will Drewry79975f12011-11-02 13:38:59 -0700110 * If @uuid is followed by a "/PARTNROFF=%d", then the number will be
111 * extracted and used as an offset from the partition identified by the UUID.
112 *
Will Drewryb5af9212010-08-31 15:47:07 -0500113 * Returns the matching dev_t on success or 0 on failure.
114 */
Stephen Warren1ad7e892012-11-08 16:12:25 -0800115static dev_t devt_from_partuuid(const char *uuid_str)
Will Drewryb5af9212010-08-31 15:47:07 -0500116{
117 dev_t res = 0;
Stephen Warren1ad7e892012-11-08 16:12:25 -0800118 struct uuidcmp cmp;
Will Drewryb5af9212010-08-31 15:47:07 -0500119 struct device *dev = NULL;
Will Drewry79975f12011-11-02 13:38:59 -0700120 struct gendisk *disk;
121 struct hd_struct *part;
122 int offset = 0;
Stephen Warren283f8fc2012-11-08 16:12:27 -0800123 bool clear_root_wait = false;
124 char *slash;
Will Drewry79975f12011-11-02 13:38:59 -0700125
Stephen Warren1ad7e892012-11-08 16:12:25 -0800126 cmp.uuid = uuid_str;
Stephen Warren1ad7e892012-11-08 16:12:25 -0800127
Stephen Warren283f8fc2012-11-08 16:12:27 -0800128 slash = strchr(uuid_str, '/');
Will Drewry79975f12011-11-02 13:38:59 -0700129 /* Check for optional partition number offset attributes. */
Stephen Warren283f8fc2012-11-08 16:12:27 -0800130 if (slash) {
Will Drewry79975f12011-11-02 13:38:59 -0700131 char c = 0;
132 /* Explicitly fail on poor PARTUUID syntax. */
Stephen Warren283f8fc2012-11-08 16:12:27 -0800133 if (sscanf(slash + 1,
134 "PARTNROFF=%d%c", &offset, &c) != 1) {
135 clear_root_wait = true;
Will Drewry79975f12011-11-02 13:38:59 -0700136 goto done;
137 }
Stephen Warren283f8fc2012-11-08 16:12:27 -0800138 cmp.len = slash - uuid_str;
139 } else {
140 cmp.len = strlen(uuid_str);
141 }
142
143 if (!cmp.len) {
144 clear_root_wait = true;
145 goto done;
Will Drewry79975f12011-11-02 13:38:59 -0700146 }
Will Drewryb5af9212010-08-31 15:47:07 -0500147
Stephen Warren1ad7e892012-11-08 16:12:25 -0800148 dev = class_find_device(&block_class, NULL, &cmp,
149 &match_dev_by_uuid);
Will Drewryb5af9212010-08-31 15:47:07 -0500150 if (!dev)
151 goto done;
152
153 res = dev->devt;
Will Drewryb5af9212010-08-31 15:47:07 -0500154
Will Drewry79975f12011-11-02 13:38:59 -0700155 /* Attempt to find the partition by offset. */
156 if (!offset)
157 goto no_offset;
158
159 res = 0;
160 disk = part_to_disk(dev_to_part(dev));
161 part = disk_get_part(disk, dev_to_part(dev)->partno + offset);
162 if (part) {
163 res = part_devt(part);
164 put_device(part_to_dev(part));
165 }
166
167no_offset:
168 put_device(dev);
Will Drewryb5af9212010-08-31 15:47:07 -0500169done:
Stephen Warren283f8fc2012-11-08 16:12:27 -0800170 if (clear_root_wait) {
171 pr_err("VFS: PARTUUID= is invalid.\n"
172 "Expected PARTUUID=<valid-uuid-id>[/PARTNROFF=%%d]\n");
173 if (root_wait)
174 pr_err("Disabling rootwait; root= is invalid.\n");
175 root_wait = 0;
176 }
Will Drewryb5af9212010-08-31 15:47:07 -0500177 return res;
178}
Jens Axboe6d0aed72010-09-17 10:00:46 +0200179#endif
Will Drewryb5af9212010-08-31 15:47:07 -0500180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181/*
182 * Convert a name into device number. We accept the following variants:
183 *
184 * 1) device number in hexadecimal represents itself
185 * 2) /dev/nfs represents Root_NFS (0xff)
186 * 3) /dev/<disk_name> represents the device number of disk
187 * 4) /dev/<disk_name><decimal> represents the device number
188 * of partition - device number of disk plus the partition number
189 * 5) /dev/<disk_name>p<decimal> - same as the above, that form is
190 * used when disk name of partitioned disk ends on a digit.
Will Drewryb5af9212010-08-31 15:47:07 -0500191 * 6) PARTUUID=00112233-4455-6677-8899-AABBCCDDEEFF representing the
192 * unique id of a partition if the partition table provides it.
Stephen Warrend33b98f2012-11-08 16:12:28 -0800193 * The UUID may be either an EFI/GPT UUID, or refer to an MSDOS
194 * partition using the format SSSSSSSS-PP, where SSSSSSSS is a zero-
195 * filled hex representation of the 32-bit "NT disk signature", and PP
196 * is a zero-filled hex representation of the 1-based partition number.
Will Drewry79975f12011-11-02 13:38:59 -0700197 * 7) PARTUUID=<UUID>/PARTNROFF=<int> to select a partition in relation to
198 * a partition with a known unique id.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 *
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200200 * If name doesn't have fall into the categories above, we return (0,0).
201 * block_class is used to check if something is a disk name. If the disk
202 * name contains slashes, the device name has them replaced with
203 * bangs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 */
205
206dev_t name_to_dev_t(char *name)
207{
208 char s[32];
209 char *p;
210 dev_t res = 0;
Kay Sievers30f2f0e2008-05-06 22:31:33 +0200211 int part;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Jens Axboe6d0aed72010-09-17 10:00:46 +0200213#ifdef CONFIG_BLOCK
Will Drewryb5af9212010-08-31 15:47:07 -0500214 if (strncmp(name, "PARTUUID=", 9) == 0) {
215 name += 9;
Will Drewryb5af9212010-08-31 15:47:07 -0500216 res = devt_from_partuuid(name);
217 if (!res)
218 goto fail;
219 goto done;
220 }
Jens Axboe6d0aed72010-09-17 10:00:46 +0200221#endif
Will Drewryb5af9212010-08-31 15:47:07 -0500222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 if (strncmp(name, "/dev/", 5) != 0) {
224 unsigned maj, min;
225
226 if (sscanf(name, "%u:%u", &maj, &min) == 2) {
227 res = MKDEV(maj, min);
228 if (maj != MAJOR(res) || min != MINOR(res))
229 goto fail;
230 } else {
231 res = new_decode_dev(simple_strtoul(name, &p, 16));
232 if (*p)
233 goto fail;
234 }
235 goto done;
236 }
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 name += 5;
239 res = Root_NFS;
240 if (strcmp(name, "nfs") == 0)
241 goto done;
242 res = Root_RAM0;
243 if (strcmp(name, "ram") == 0)
244 goto done;
245
246 if (strlen(name) > 31)
247 goto fail;
248 strcpy(s, name);
249 for (p = s; *p; p++)
250 if (*p == '/')
251 *p = '!';
Kay Sievers30f2f0e2008-05-06 22:31:33 +0200252 res = blk_lookup_devt(s, 0);
253 if (res)
254 goto done;
255
256 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300257 * try non-existent, but valid partition, which may only exist
Kay Sievers30f2f0e2008-05-06 22:31:33 +0200258 * after revalidating the disk, like partitioned md devices
259 */
260 while (p > s && isdigit(p[-1]))
261 p--;
262 if (p == s || !*p || *p == '0')
263 goto fail;
264
265 /* try disk name without <part number> */
266 part = simple_strtoul(p, NULL, 10);
267 *p = '\0';
268 res = blk_lookup_devt(s, part);
269 if (res)
270 goto done;
271
272 /* try disk name without p<part number> */
273 if (p < s + 2 || !isdigit(p[-2]) || p[-1] != 'p')
274 goto fail;
275 p[-1] = '\0';
276 res = blk_lookup_devt(s, part);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 if (res)
278 goto done;
279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280fail:
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200281 return 0;
282done:
283 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
286static int __init root_dev_setup(char *line)
287{
288 strlcpy(saved_root_name, line, sizeof(saved_root_name));
289 return 1;
290}
291
292__setup("root=", root_dev_setup);
293
Pierre Ossmancc1ed752007-07-15 23:40:35 -0700294static int __init rootwait_setup(char *str)
295{
296 if (*str)
297 return 0;
298 root_wait = 1;
299 return 1;
300}
301
302__setup("rootwait", rootwait_setup);
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304static char * __initdata root_mount_data;
305static int __init root_data_setup(char *str)
306{
307 root_mount_data = str;
308 return 1;
309}
310
311static char * __initdata root_fs_names;
312static int __init fs_names_setup(char *str)
313{
314 root_fs_names = str;
315 return 1;
316}
317
318static unsigned int __initdata root_delay;
319static int __init root_delay_setup(char *str)
320{
321 root_delay = simple_strtoul(str, NULL, 0);
322 return 1;
323}
324
325__setup("rootflags=", root_data_setup);
326__setup("rootfstype=", fs_names_setup);
327__setup("rootdelay=", root_delay_setup);
328
329static void __init get_fs_names(char *page)
330{
331 char *s = page;
332
333 if (root_fs_names) {
334 strcpy(page, root_fs_names);
335 while (*s++) {
336 if (s[-1] == ',')
337 s[-1] = '\0';
338 }
339 } else {
340 int len = get_filesystem_list(page);
341 char *p, *next;
342
343 page[len] = '\0';
344 for (p = page-1; p; p = next) {
345 next = strchr(++p, '\n');
346 if (*p++ != '\t')
347 continue;
348 while ((*s++ = *p++) != '\n')
349 ;
350 s[-1] = '\0';
351 }
352 }
353 *s = '\0';
354}
355
356static int __init do_mount_root(char *name, char *fs, int flags, void *data)
357{
Al Virod8c95842011-12-07 18:16:57 -0500358 struct super_block *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 int err = sys_mount(name, "/root", fs, flags, data);
360 if (err)
361 return err;
362
H Hartley Sweetenc67e5382012-05-31 16:26:10 -0700363 sys_chdir("/root");
Al Virod8c95842011-12-07 18:16:57 -0500364 s = current->fs->pwd.dentry->d_sb;
365 ROOT_DEV = s->s_dev;
Mandeep Singh Baines80cdc6d2011-03-22 16:33:54 -0700366 printk(KERN_INFO
367 "VFS: Mounted root (%s filesystem)%s on device %u:%u.\n",
Al Virod8c95842011-12-07 18:16:57 -0500368 s->s_type->name,
369 s->s_flags & MS_RDONLY ? " readonly" : "",
370 MAJOR(ROOT_DEV), MINOR(ROOT_DEV));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 return 0;
372}
373
374void __init mount_block_root(char *name, int flags)
375{
Jeff Laytona608ca22012-10-10 15:25:26 -0400376 struct page *page = alloc_page(GFP_KERNEL |
377 __GFP_NOTRACK_FALSE_POSITIVE);
378 char *fs_names = page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 char *p;
David Howells93614012006-09-30 20:45:40 +0200380#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 char b[BDEVNAME_SIZE];
David Howells93614012006-09-30 20:45:40 +0200382#else
383 const char *b = name;
384#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386 get_fs_names(fs_names);
387retry:
388 for (p = fs_names; *p; p += strlen(p)+1) {
389 int err = do_mount_root(name, p, flags, root_mount_data);
390 switch (err) {
391 case 0:
392 goto out;
393 case -EACCES:
394 flags |= MS_RDONLY;
395 goto retry;
396 case -EINVAL:
397 continue;
398 }
399 /*
400 * Allow the user to distinguish between failed sys_open
401 * and bad superblock on root device.
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700402 * and give them a list of the available devices
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 */
David Howells93614012006-09-30 20:45:40 +0200404#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 __bdevname(ROOT_DEV, b);
David Howells93614012006-09-30 20:45:40 +0200406#endif
Bernhard Walle0e0cb892012-03-23 15:02:28 -0700407 printk("VFS: Cannot open root device \"%s\" or %s: error %d\n",
408 root_device_name, b, err);
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700409 printk("Please append a correct \"root=\" boot option; here are the available partitions:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700411 printk_all_partitions();
Tejun Heo55dc7db2008-09-01 13:44:35 +0200412#ifdef CONFIG_DEBUG_BLOCK_EXT_DEVT
413 printk("DEBUG_BLOCK_EXT_DEVT is enabled, you need to specify "
414 "explicit textual name for \"root=\" boot option.\n");
415#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 panic("VFS: Unable to mount root fs on %s", b);
417 }
Andy Whitcroftbe6e028b2006-05-15 09:44:29 -0700418
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700419 printk("List of all partitions:\n");
420 printk_all_partitions();
Andy Whitcroftbe6e028b2006-05-15 09:44:29 -0700421 printk("No filesystem could mount root, tried: ");
422 for (p = fs_names; *p; p += strlen(p)+1)
423 printk(" %s", p);
424 printk("\n");
David Howells93614012006-09-30 20:45:40 +0200425#ifdef CONFIG_BLOCK
426 __bdevname(ROOT_DEV, b);
427#endif
428 panic("VFS: Unable to mount root fs on %s", b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429out:
Jeff Laytona608ca22012-10-10 15:25:26 -0400430 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431}
432
433#ifdef CONFIG_ROOT_NFS
Chuck Lever43717c72011-12-05 15:40:30 -0500434
435#define NFSROOT_TIMEOUT_MIN 5
436#define NFSROOT_TIMEOUT_MAX 30
437#define NFSROOT_RETRY_MAX 5
438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439static int __init mount_nfs_root(void)
440{
Chuck Lever56463e52010-09-17 10:54:37 -0400441 char *root_dev, *root_data;
Chuck Lever43717c72011-12-05 15:40:30 -0500442 unsigned int timeout;
443 int try, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Chuck Lever43717c72011-12-05 15:40:30 -0500445 err = nfs_root_data(&root_dev, &root_data);
446 if (err != 0)
Chuck Lever56463e52010-09-17 10:54:37 -0400447 return 0;
Chuck Lever43717c72011-12-05 15:40:30 -0500448
449 /*
450 * The server or network may not be ready, so try several
451 * times. Stop after a few tries in case the client wants
452 * to fall back to other boot methods.
453 */
454 timeout = NFSROOT_TIMEOUT_MIN;
455 for (try = 1; ; try++) {
456 err = do_mount_root(root_dev, "nfs",
457 root_mountflags, root_data);
458 if (err == 0)
459 return 1;
460 if (try > NFSROOT_RETRY_MAX)
461 break;
462
463 /* Wait, in case the server refused us immediately */
464 ssleep(timeout);
465 timeout <<= 1;
466 if (timeout > NFSROOT_TIMEOUT_MAX)
467 timeout = NFSROOT_TIMEOUT_MAX;
468 }
469 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471#endif
472
473#if defined(CONFIG_BLK_DEV_RAM) || defined(CONFIG_BLK_DEV_FD)
474void __init change_floppy(char *fmt, ...)
475{
476 struct termios termios;
477 char buf[80];
478 char c;
479 int fd;
480 va_list args;
481 va_start(args, fmt);
482 vsprintf(buf, fmt, args);
483 va_end(args);
484 fd = sys_open("/dev/root", O_RDWR | O_NDELAY, 0);
485 if (fd >= 0) {
486 sys_ioctl(fd, FDEJECT, 0);
487 sys_close(fd);
488 }
489 printk(KERN_NOTICE "VFS: Insert %s and press ENTER\n", buf);
490 fd = sys_open("/dev/console", O_RDWR, 0);
491 if (fd >= 0) {
492 sys_ioctl(fd, TCGETS, (long)&termios);
493 termios.c_lflag &= ~ICANON;
494 sys_ioctl(fd, TCSETSF, (long)&termios);
495 sys_read(fd, &c, 1);
496 termios.c_lflag |= ICANON;
497 sys_ioctl(fd, TCSETSF, (long)&termios);
498 sys_close(fd);
499 }
500}
501#endif
502
503void __init mount_root(void)
504{
505#ifdef CONFIG_ROOT_NFS
Sasha Levin377485f2012-05-05 17:06:35 +0200506 if (ROOT_DEV == Root_NFS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 if (mount_nfs_root())
508 return;
509
510 printk(KERN_ERR "VFS: Unable to mount root fs via NFS, trying floppy.\n");
511 ROOT_DEV = Root_FD0;
512 }
513#endif
514#ifdef CONFIG_BLK_DEV_FD
515 if (MAJOR(ROOT_DEV) == FLOPPY_MAJOR) {
516 /* rd_doload is 2 for a dual initrd/ramload setup */
517 if (rd_doload==2) {
518 if (rd_load_disk(1)) {
519 ROOT_DEV = Root_RAM1;
520 root_device_name = NULL;
521 }
522 } else
523 change_floppy("root floppy");
524 }
525#endif
David Howells93614012006-09-30 20:45:40 +0200526#ifdef CONFIG_BLOCK
Greg Kroah-Hartmanbdaf8522005-06-20 21:15:16 -0700527 create_dev("/dev/root", ROOT_DEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 mount_block_root("/dev/root", root_mountflags);
David Howells93614012006-09-30 20:45:40 +0200529#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530}
531
532/*
533 * Prepare the namespace - decide what/where to mount, load ramdisks, etc.
534 */
535void __init prepare_namespace(void)
536{
537 int is_floppy;
538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 if (root_delay) {
Toralf Försterca75b4d82013-07-03 15:05:38 -0700540 printk(KERN_INFO "Waiting %d sec before mounting root device...\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 root_delay);
542 ssleep(root_delay);
543 }
544
Arjan van de Ven216773a2009-02-14 01:59:06 +0100545 /*
546 * wait for the known devices to complete their probing
547 *
548 * Note: this is a potential source of long boot delays.
549 * For example, it is not atypical to wait 5 seconds here
550 * for the touchpad of a laptop to initialize.
551 */
552 wait_for_device_probe();
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 md_run_setup();
555
556 if (saved_root_name[0]) {
557 root_device_name = saved_root_name;
Adrian Hunter2d62f482008-01-31 17:25:00 +0200558 if (!strncmp(root_device_name, "mtd", 3) ||
559 !strncmp(root_device_name, "ubi", 3)) {
Joern Engele9482b42006-05-30 14:25:46 +0200560 mount_block_root(root_device_name, root_mountflags);
561 goto out;
562 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 ROOT_DEV = name_to_dev_t(root_device_name);
564 if (strncmp(root_device_name, "/dev/", 5) == 0)
565 root_device_name += 5;
566 }
567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 if (initrd_load())
569 goto out;
570
Pierre Ossmancc1ed752007-07-15 23:40:35 -0700571 /* wait for any asynchronous scanning to complete */
572 if ((ROOT_DEV == 0) && root_wait) {
573 printk(KERN_INFO "Waiting for root device %s...\n",
574 saved_root_name);
575 while (driver_probe_done() != 0 ||
576 (ROOT_DEV = name_to_dev_t(saved_root_name)) == 0)
577 msleep(100);
Arjan van de Ven216773a2009-02-14 01:59:06 +0100578 async_synchronize_full();
Pierre Ossmancc1ed752007-07-15 23:40:35 -0700579 }
580
581 is_floppy = MAJOR(ROOT_DEV) == FLOPPY_MAJOR;
582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 if (is_floppy && rd_doload && rd_load_disk(0))
584 ROOT_DEV = Root_RAM0;
585
586 mount_root();
587out:
Kay Sievers2b2af542009-04-30 15:23:42 +0200588 devtmpfs_mount("dev");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 sys_mount(".", "/", NULL, MS_MOVE, NULL);
H Hartley Sweetenc67e5382012-05-31 16:26:10 -0700590 sys_chroot(".");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
Rob Landley57f150a2013-09-11 14:26:10 -0700592
593static struct dentry *rootfs_mount(struct file_system_type *fs_type,
594 int flags, const char *dev_name, void *data)
595{
596 static unsigned long once;
597
598 if (test_and_set_bit(0, &once))
599 return ERR_PTR(-ENODEV);
600
601 return mount_nodev(fs_type, flags, data, ramfs_fill_super);
602}
603
604static struct file_system_type rootfs_fs_type = {
605 .name = "rootfs",
606 .mount = rootfs_mount,
607 .kill_sb = kill_litter_super,
608};
609
610int __init init_rootfs(void)
611{
612 int err = register_filesystem(&rootfs_fs_type);
613
614 if (err)
615 return err;
616
617 err = init_ramfs_fs();
618 if (err)
619 unregister_filesystem(&rootfs_fs_type);
620
621 return err;
622}