xref: /openbmc/linux/init/do_mounts.c (revision 6e19eded)
1c67e5382SH Hartley Sweeten /*
2c67e5382SH Hartley Sweeten  * Many of the syscalls used in this file expect some of the arguments
3c67e5382SH Hartley Sweeten  * to be __user pointers not __kernel pointers.  To limit the sparse
4c67e5382SH Hartley Sweeten  * noise, turn off sparse checking for this file.
5c67e5382SH Hartley Sweeten  */
6c67e5382SH Hartley Sweeten #ifdef __CHECKER__
7c67e5382SH Hartley Sweeten #undef __CHECKER__
8c67e5382SH Hartley Sweeten #warning "Sparse checking disabled for this file"
9c67e5382SH Hartley Sweeten #endif
10c67e5382SH Hartley Sweeten 
111da177e4SLinus Torvalds #include <linux/module.h>
121da177e4SLinus Torvalds #include <linux/sched.h>
131da177e4SLinus Torvalds #include <linux/ctype.h>
141da177e4SLinus Torvalds #include <linux/fd.h>
151da177e4SLinus Torvalds #include <linux/tty.h>
161da177e4SLinus Torvalds #include <linux/suspend.h>
171da177e4SLinus Torvalds #include <linux/root_dev.h>
181da177e4SLinus Torvalds #include <linux/security.h>
191da177e4SLinus Torvalds #include <linux/delay.h>
20dd2a345fSDave Gilbert #include <linux/genhd.h>
21d53d9f16SAndrew Morton #include <linux/mount.h>
22d779249eSGreg Kroah-Hartman #include <linux/device.h>
2346595390SAdrian Bunk #include <linux/init.h>
24011e3fcdSAdrian Bunk #include <linux/fs.h>
2582c8253aSAdrian Bunk #include <linux/initrd.h>
2622a9d645SArjan van de Ven #include <linux/async.h>
275ad4e53bSAl Viro #include <linux/fs_struct.h>
285a0e3ad6STejun Heo #include <linux/slab.h>
2957f150a5SRob Landley #include <linux/ramfs.h>
3016203a7aSRob Landley #include <linux/shmem_fs.h>
311da177e4SLinus Torvalds 
321da177e4SLinus Torvalds #include <linux/nfs_fs.h>
331da177e4SLinus Torvalds #include <linux/nfs_fs_sb.h>
341da177e4SLinus Torvalds #include <linux/nfs_mount.h>
351da177e4SLinus Torvalds 
361da177e4SLinus Torvalds #include "do_mounts.h"
371da177e4SLinus Torvalds 
381da177e4SLinus Torvalds int __initdata rd_doload;	/* 1 = load RAM disk, 0 = don't load */
391da177e4SLinus Torvalds 
409b04c997STheodore Ts'o int root_mountflags = MS_RDONLY | MS_SILENT;
41f56f6d30SAdrian Bunk static char * __initdata root_device_name;
421da177e4SLinus Torvalds static char __initdata saved_root_name[64];
4379975f13SWill Drewry static int root_wait;
441da177e4SLinus Torvalds 
451da177e4SLinus Torvalds dev_t ROOT_DEV;
461da177e4SLinus Torvalds 
471da177e4SLinus Torvalds static int __init load_ramdisk(char *str)
481da177e4SLinus Torvalds {
491da177e4SLinus Torvalds 	rd_doload = simple_strtol(str,NULL,0) & 3;
501da177e4SLinus Torvalds 	return 1;
511da177e4SLinus Torvalds }
521da177e4SLinus Torvalds __setup("load_ramdisk=", load_ramdisk);
531da177e4SLinus Torvalds 
541da177e4SLinus Torvalds static int __init readonly(char *str)
551da177e4SLinus Torvalds {
561da177e4SLinus Torvalds 	if (*str)
571da177e4SLinus Torvalds 		return 0;
581da177e4SLinus Torvalds 	root_mountflags |= MS_RDONLY;
591da177e4SLinus Torvalds 	return 1;
601da177e4SLinus Torvalds }
611da177e4SLinus Torvalds 
621da177e4SLinus Torvalds static int __init readwrite(char *str)
631da177e4SLinus Torvalds {
641da177e4SLinus Torvalds 	if (*str)
651da177e4SLinus Torvalds 		return 0;
661da177e4SLinus Torvalds 	root_mountflags &= ~MS_RDONLY;
671da177e4SLinus Torvalds 	return 1;
681da177e4SLinus Torvalds }
691da177e4SLinus Torvalds 
701da177e4SLinus Torvalds __setup("ro", readonly);
711da177e4SLinus Torvalds __setup("rw", readwrite);
721da177e4SLinus Torvalds 
736d0aed7aSJens Axboe #ifdef CONFIG_BLOCK
741ad7e899SStephen Warren struct uuidcmp {
751ad7e899SStephen Warren 	const char *uuid;
761ad7e899SStephen Warren 	int len;
771ad7e899SStephen Warren };
781ad7e899SStephen Warren 
79b5af921eSWill Drewry /**
80b5af921eSWill Drewry  * match_dev_by_uuid - callback for finding a partition using its uuid
81b5af921eSWill Drewry  * @dev:	device passed in by the caller
821ad7e899SStephen Warren  * @data:	opaque pointer to the desired struct uuidcmp to match
83b5af921eSWill Drewry  *
84b5af921eSWill Drewry  * Returns 1 if the device matches, and 0 otherwise.
85b5af921eSWill Drewry  */
869f3b795aSMichał Mirosław static int match_dev_by_uuid(struct device *dev, const void *data)
87b5af921eSWill Drewry {
889f3b795aSMichał Mirosław 	const struct uuidcmp *cmp = data;
89b5af921eSWill Drewry 	struct hd_struct *part = dev_to_part(dev);
90b5af921eSWill Drewry 
91b5af921eSWill Drewry 	if (!part->info)
92b5af921eSWill Drewry 		goto no_match;
93b5af921eSWill Drewry 
941ad7e899SStephen Warren 	if (strncasecmp(cmp->uuid, part->info->uuid, cmp->len))
95b5af921eSWill Drewry 		goto no_match;
96b5af921eSWill Drewry 
97b5af921eSWill Drewry 	return 1;
98b5af921eSWill Drewry no_match:
99b5af921eSWill Drewry 	return 0;
100b5af921eSWill Drewry }
101b5af921eSWill Drewry 
102b5af921eSWill Drewry 
103b5af921eSWill Drewry /**
104b5af921eSWill Drewry  * devt_from_partuuid - looks up the dev_t of a partition by its UUID
1051ad7e899SStephen Warren  * @uuid:	char array containing ascii UUID
106b5af921eSWill Drewry  *
107b5af921eSWill Drewry  * The function will return the first partition which contains a matching
108b5af921eSWill Drewry  * UUID value in its partition_meta_info struct.  This does not search
109b5af921eSWill Drewry  * by filesystem UUIDs.
110b5af921eSWill Drewry  *
11179975f13SWill Drewry  * If @uuid is followed by a "/PARTNROFF=%d", then the number will be
11279975f13SWill Drewry  * extracted and used as an offset from the partition identified by the UUID.
11379975f13SWill Drewry  *
114b5af921eSWill Drewry  * Returns the matching dev_t on success or 0 on failure.
115b5af921eSWill Drewry  */
1161ad7e899SStephen Warren static dev_t devt_from_partuuid(const char *uuid_str)
117b5af921eSWill Drewry {
118b5af921eSWill Drewry 	dev_t res = 0;
1191ad7e899SStephen Warren 	struct uuidcmp cmp;
120b5af921eSWill Drewry 	struct device *dev = NULL;
12179975f13SWill Drewry 	struct gendisk *disk;
12279975f13SWill Drewry 	struct hd_struct *part;
12379975f13SWill Drewry 	int offset = 0;
124283f8fc0SStephen Warren 	bool clear_root_wait = false;
125283f8fc0SStephen Warren 	char *slash;
12679975f13SWill Drewry 
1271ad7e899SStephen Warren 	cmp.uuid = uuid_str;
1281ad7e899SStephen Warren 
129283f8fc0SStephen Warren 	slash = strchr(uuid_str, '/');
13079975f13SWill Drewry 	/* Check for optional partition number offset attributes. */
131283f8fc0SStephen Warren 	if (slash) {
13279975f13SWill Drewry 		char c = 0;
13379975f13SWill Drewry 		/* Explicitly fail on poor PARTUUID syntax. */
134283f8fc0SStephen Warren 		if (sscanf(slash + 1,
135283f8fc0SStephen Warren 			   "PARTNROFF=%d%c", &offset, &c) != 1) {
136283f8fc0SStephen Warren 			clear_root_wait = true;
13779975f13SWill Drewry 			goto done;
13879975f13SWill Drewry 		}
139283f8fc0SStephen Warren 		cmp.len = slash - uuid_str;
140283f8fc0SStephen Warren 	} else {
141283f8fc0SStephen Warren 		cmp.len = strlen(uuid_str);
142283f8fc0SStephen Warren 	}
143283f8fc0SStephen Warren 
144283f8fc0SStephen Warren 	if (!cmp.len) {
145283f8fc0SStephen Warren 		clear_root_wait = true;
146283f8fc0SStephen Warren 		goto done;
14779975f13SWill Drewry 	}
148b5af921eSWill Drewry 
1491ad7e899SStephen Warren 	dev = class_find_device(&block_class, NULL, &cmp,
1501ad7e899SStephen Warren 				&match_dev_by_uuid);
151b5af921eSWill Drewry 	if (!dev)
152b5af921eSWill Drewry 		goto done;
153b5af921eSWill Drewry 
154b5af921eSWill Drewry 	res = dev->devt;
155b5af921eSWill Drewry 
15679975f13SWill Drewry 	/* Attempt to find the partition by offset. */
15779975f13SWill Drewry 	if (!offset)
15879975f13SWill Drewry 		goto no_offset;
15979975f13SWill Drewry 
16079975f13SWill Drewry 	res = 0;
16179975f13SWill Drewry 	disk = part_to_disk(dev_to_part(dev));
16279975f13SWill Drewry 	part = disk_get_part(disk, dev_to_part(dev)->partno + offset);
16379975f13SWill Drewry 	if (part) {
16479975f13SWill Drewry 		res = part_devt(part);
16579975f13SWill Drewry 		put_device(part_to_dev(part));
16679975f13SWill Drewry 	}
16779975f13SWill Drewry 
16879975f13SWill Drewry no_offset:
16979975f13SWill Drewry 	put_device(dev);
170b5af921eSWill Drewry done:
171283f8fc0SStephen Warren 	if (clear_root_wait) {
172283f8fc0SStephen Warren 		pr_err("VFS: PARTUUID= is invalid.\n"
173283f8fc0SStephen Warren 		       "Expected PARTUUID=<valid-uuid-id>[/PARTNROFF=%%d]\n");
174283f8fc0SStephen Warren 		if (root_wait)
175283f8fc0SStephen Warren 			pr_err("Disabling rootwait; root= is invalid.\n");
176283f8fc0SStephen Warren 		root_wait = 0;
177283f8fc0SStephen Warren 	}
178b5af921eSWill Drewry 	return res;
179b5af921eSWill Drewry }
1806d0aed7aSJens Axboe #endif
181b5af921eSWill Drewry 
1821da177e4SLinus Torvalds /*
1831da177e4SLinus Torvalds  *	Convert a name into device number.  We accept the following variants:
1841da177e4SLinus Torvalds  *
1851da177e4SLinus Torvalds  *	1) device number in hexadecimal	represents itself
1861da177e4SLinus Torvalds  *	2) /dev/nfs represents Root_NFS (0xff)
1871da177e4SLinus Torvalds  *	3) /dev/<disk_name> represents the device number of disk
1881da177e4SLinus Torvalds  *	4) /dev/<disk_name><decimal> represents the device number
1891da177e4SLinus Torvalds  *         of partition - device number of disk plus the partition number
1901da177e4SLinus Torvalds  *	5) /dev/<disk_name>p<decimal> - same as the above, that form is
1911da177e4SLinus Torvalds  *	   used when disk name of partitioned disk ends on a digit.
192b5af921eSWill Drewry  *	6) PARTUUID=00112233-4455-6677-8899-AABBCCDDEEFF representing the
193b5af921eSWill Drewry  *	   unique id of a partition if the partition table provides it.
194d33b98fcSStephen Warren  *	   The UUID may be either an EFI/GPT UUID, or refer to an MSDOS
195d33b98fcSStephen Warren  *	   partition using the format SSSSSSSS-PP, where SSSSSSSS is a zero-
196d33b98fcSStephen Warren  *	   filled hex representation of the 32-bit "NT disk signature", and PP
197d33b98fcSStephen Warren  *	   is a zero-filled hex representation of the 1-based partition number.
19879975f13SWill Drewry  *	7) PARTUUID=<UUID>/PARTNROFF=<int> to select a partition in relation to
19979975f13SWill Drewry  *	   a partition with a known unique id.
2001da177e4SLinus Torvalds  *
201edfaa7c3SKay Sievers  *	If name doesn't have fall into the categories above, we return (0,0).
202edfaa7c3SKay Sievers  *	block_class is used to check if something is a disk name. If the disk
203edfaa7c3SKay Sievers  *	name contains slashes, the device name has them replaced with
204edfaa7c3SKay Sievers  *	bangs.
2051da177e4SLinus Torvalds  */
2061da177e4SLinus Torvalds 
2071da177e4SLinus Torvalds dev_t name_to_dev_t(char *name)
2081da177e4SLinus Torvalds {
2091da177e4SLinus Torvalds 	char s[32];
2101da177e4SLinus Torvalds 	char *p;
2111da177e4SLinus Torvalds 	dev_t res = 0;
21230f2f0ebSKay Sievers 	int part;
2131da177e4SLinus Torvalds 
2146d0aed7aSJens Axboe #ifdef CONFIG_BLOCK
215b5af921eSWill Drewry 	if (strncmp(name, "PARTUUID=", 9) == 0) {
216b5af921eSWill Drewry 		name += 9;
217b5af921eSWill Drewry 		res = devt_from_partuuid(name);
218b5af921eSWill Drewry 		if (!res)
219b5af921eSWill Drewry 			goto fail;
220b5af921eSWill Drewry 		goto done;
221b5af921eSWill Drewry 	}
2226d0aed7aSJens Axboe #endif
223b5af921eSWill Drewry 
2241da177e4SLinus Torvalds 	if (strncmp(name, "/dev/", 5) != 0) {
2251da177e4SLinus Torvalds 		unsigned maj, min;
2261da177e4SLinus Torvalds 
2271da177e4SLinus Torvalds 		if (sscanf(name, "%u:%u", &maj, &min) == 2) {
2281da177e4SLinus Torvalds 			res = MKDEV(maj, min);
2291da177e4SLinus Torvalds 			if (maj != MAJOR(res) || min != MINOR(res))
2301da177e4SLinus Torvalds 				goto fail;
2311da177e4SLinus Torvalds 		} else {
2321da177e4SLinus Torvalds 			res = new_decode_dev(simple_strtoul(name, &p, 16));
2331da177e4SLinus Torvalds 			if (*p)
2341da177e4SLinus Torvalds 				goto fail;
2351da177e4SLinus Torvalds 		}
2361da177e4SLinus Torvalds 		goto done;
2371da177e4SLinus Torvalds 	}
238edfaa7c3SKay Sievers 
2391da177e4SLinus Torvalds 	name += 5;
2401da177e4SLinus Torvalds 	res = Root_NFS;
2411da177e4SLinus Torvalds 	if (strcmp(name, "nfs") == 0)
2421da177e4SLinus Torvalds 		goto done;
2431da177e4SLinus Torvalds 	res = Root_RAM0;
2441da177e4SLinus Torvalds 	if (strcmp(name, "ram") == 0)
2451da177e4SLinus Torvalds 		goto done;
2461da177e4SLinus Torvalds 
2471da177e4SLinus Torvalds 	if (strlen(name) > 31)
2481da177e4SLinus Torvalds 		goto fail;
2491da177e4SLinus Torvalds 	strcpy(s, name);
2501da177e4SLinus Torvalds 	for (p = s; *p; p++)
2511da177e4SLinus Torvalds 		if (*p == '/')
2521da177e4SLinus Torvalds 			*p = '!';
25330f2f0ebSKay Sievers 	res = blk_lookup_devt(s, 0);
25430f2f0ebSKay Sievers 	if (res)
25530f2f0ebSKay Sievers 		goto done;
25630f2f0ebSKay Sievers 
25730f2f0ebSKay Sievers 	/*
25825985edcSLucas De Marchi 	 * try non-existent, but valid partition, which may only exist
25930f2f0ebSKay Sievers 	 * after revalidating the disk, like partitioned md devices
26030f2f0ebSKay Sievers 	 */
26130f2f0ebSKay Sievers 	while (p > s && isdigit(p[-1]))
26230f2f0ebSKay Sievers 		p--;
26330f2f0ebSKay Sievers 	if (p == s || !*p || *p == '0')
26430f2f0ebSKay Sievers 		goto fail;
26530f2f0ebSKay Sievers 
26630f2f0ebSKay Sievers 	/* try disk name without <part number> */
26730f2f0ebSKay Sievers 	part = simple_strtoul(p, NULL, 10);
26830f2f0ebSKay Sievers 	*p = '\0';
26930f2f0ebSKay Sievers 	res = blk_lookup_devt(s, part);
27030f2f0ebSKay Sievers 	if (res)
27130f2f0ebSKay Sievers 		goto done;
27230f2f0ebSKay Sievers 
27330f2f0ebSKay Sievers 	/* try disk name without p<part number> */
27430f2f0ebSKay Sievers 	if (p < s + 2 || !isdigit(p[-2]) || p[-1] != 'p')
27530f2f0ebSKay Sievers 		goto fail;
27630f2f0ebSKay Sievers 	p[-1] = '\0';
27730f2f0ebSKay Sievers 	res = blk_lookup_devt(s, part);
2781da177e4SLinus Torvalds 	if (res)
2791da177e4SLinus Torvalds 		goto done;
2801da177e4SLinus Torvalds 
2811da177e4SLinus Torvalds fail:
282edfaa7c3SKay Sievers 	return 0;
283edfaa7c3SKay Sievers done:
284edfaa7c3SKay Sievers 	return res;
2851da177e4SLinus Torvalds }
2861da177e4SLinus Torvalds 
2871da177e4SLinus Torvalds static int __init root_dev_setup(char *line)
2881da177e4SLinus Torvalds {
2891da177e4SLinus Torvalds 	strlcpy(saved_root_name, line, sizeof(saved_root_name));
2901da177e4SLinus Torvalds 	return 1;
2911da177e4SLinus Torvalds }
2921da177e4SLinus Torvalds 
2931da177e4SLinus Torvalds __setup("root=", root_dev_setup);
2941da177e4SLinus Torvalds 
295cc1ed754SPierre Ossman static int __init rootwait_setup(char *str)
296cc1ed754SPierre Ossman {
297cc1ed754SPierre Ossman 	if (*str)
298cc1ed754SPierre Ossman 		return 0;
299cc1ed754SPierre Ossman 	root_wait = 1;
300cc1ed754SPierre Ossman 	return 1;
301cc1ed754SPierre Ossman }
302cc1ed754SPierre Ossman 
303cc1ed754SPierre Ossman __setup("rootwait", rootwait_setup);
304cc1ed754SPierre Ossman 
3051da177e4SLinus Torvalds static char * __initdata root_mount_data;
3061da177e4SLinus Torvalds static int __init root_data_setup(char *str)
3071da177e4SLinus Torvalds {
3081da177e4SLinus Torvalds 	root_mount_data = str;
3091da177e4SLinus Torvalds 	return 1;
3101da177e4SLinus Torvalds }
3111da177e4SLinus Torvalds 
3121da177e4SLinus Torvalds static char * __initdata root_fs_names;
3131da177e4SLinus Torvalds static int __init fs_names_setup(char *str)
3141da177e4SLinus Torvalds {
3151da177e4SLinus Torvalds 	root_fs_names = str;
3161da177e4SLinus Torvalds 	return 1;
3171da177e4SLinus Torvalds }
3181da177e4SLinus Torvalds 
3191da177e4SLinus Torvalds static unsigned int __initdata root_delay;
3201da177e4SLinus Torvalds static int __init root_delay_setup(char *str)
3211da177e4SLinus Torvalds {
3221da177e4SLinus Torvalds 	root_delay = simple_strtoul(str, NULL, 0);
3231da177e4SLinus Torvalds 	return 1;
3241da177e4SLinus Torvalds }
3251da177e4SLinus Torvalds 
3261da177e4SLinus Torvalds __setup("rootflags=", root_data_setup);
3271da177e4SLinus Torvalds __setup("rootfstype=", fs_names_setup);
3281da177e4SLinus Torvalds __setup("rootdelay=", root_delay_setup);
3291da177e4SLinus Torvalds 
3301da177e4SLinus Torvalds static void __init get_fs_names(char *page)
3311da177e4SLinus Torvalds {
3321da177e4SLinus Torvalds 	char *s = page;
3331da177e4SLinus Torvalds 
3341da177e4SLinus Torvalds 	if (root_fs_names) {
3351da177e4SLinus Torvalds 		strcpy(page, root_fs_names);
3361da177e4SLinus Torvalds 		while (*s++) {
3371da177e4SLinus Torvalds 			if (s[-1] == ',')
3381da177e4SLinus Torvalds 				s[-1] = '\0';
3391da177e4SLinus Torvalds 		}
3401da177e4SLinus Torvalds 	} else {
3411da177e4SLinus Torvalds 		int len = get_filesystem_list(page);
3421da177e4SLinus Torvalds 		char *p, *next;
3431da177e4SLinus Torvalds 
3441da177e4SLinus Torvalds 		page[len] = '\0';
3451da177e4SLinus Torvalds 		for (p = page-1; p; p = next) {
3461da177e4SLinus Torvalds 			next = strchr(++p, '\n');
3471da177e4SLinus Torvalds 			if (*p++ != '\t')
3481da177e4SLinus Torvalds 				continue;
3491da177e4SLinus Torvalds 			while ((*s++ = *p++) != '\n')
3501da177e4SLinus Torvalds 				;
3511da177e4SLinus Torvalds 			s[-1] = '\0';
3521da177e4SLinus Torvalds 		}
3531da177e4SLinus Torvalds 	}
3541da177e4SLinus Torvalds 	*s = '\0';
3551da177e4SLinus Torvalds }
3561da177e4SLinus Torvalds 
3571da177e4SLinus Torvalds static int __init do_mount_root(char *name, char *fs, int flags, void *data)
3581da177e4SLinus Torvalds {
359d8c9584eSAl Viro 	struct super_block *s;
3601da177e4SLinus Torvalds 	int err = sys_mount(name, "/root", fs, flags, data);
3611da177e4SLinus Torvalds 	if (err)
3621da177e4SLinus Torvalds 		return err;
3631da177e4SLinus Torvalds 
364c67e5382SH Hartley Sweeten 	sys_chdir("/root");
365d8c9584eSAl Viro 	s = current->fs->pwd.dentry->d_sb;
366d8c9584eSAl Viro 	ROOT_DEV = s->s_dev;
36780cdc6daSMandeep Singh Baines 	printk(KERN_INFO
36880cdc6daSMandeep Singh Baines 	       "VFS: Mounted root (%s filesystem)%s on device %u:%u.\n",
369d8c9584eSAl Viro 	       s->s_type->name,
370d8c9584eSAl Viro 	       s->s_flags & MS_RDONLY ?  " readonly" : "",
371d8c9584eSAl Viro 	       MAJOR(ROOT_DEV), MINOR(ROOT_DEV));
3721da177e4SLinus Torvalds 	return 0;
3731da177e4SLinus Torvalds }
3741da177e4SLinus Torvalds 
3751da177e4SLinus Torvalds void __init mount_block_root(char *name, int flags)
3761da177e4SLinus Torvalds {
377a608ca21SJeff Layton 	struct page *page = alloc_page(GFP_KERNEL |
378a608ca21SJeff Layton 					__GFP_NOTRACK_FALSE_POSITIVE);
379a608ca21SJeff Layton 	char *fs_names = page_address(page);
3801da177e4SLinus Torvalds 	char *p;
3819361401eSDavid Howells #ifdef CONFIG_BLOCK
3821da177e4SLinus Torvalds 	char b[BDEVNAME_SIZE];
3839361401eSDavid Howells #else
3849361401eSDavid Howells 	const char *b = name;
3859361401eSDavid Howells #endif
3861da177e4SLinus Torvalds 
3871da177e4SLinus Torvalds 	get_fs_names(fs_names);
3881da177e4SLinus Torvalds retry:
3891da177e4SLinus Torvalds 	for (p = fs_names; *p; p += strlen(p)+1) {
3901da177e4SLinus Torvalds 		int err = do_mount_root(name, p, flags, root_mount_data);
3911da177e4SLinus Torvalds 		switch (err) {
3921da177e4SLinus Torvalds 			case 0:
3931da177e4SLinus Torvalds 				goto out;
3941da177e4SLinus Torvalds 			case -EACCES:
3951da177e4SLinus Torvalds 				flags |= MS_RDONLY;
3961da177e4SLinus Torvalds 				goto retry;
3971da177e4SLinus Torvalds 			case -EINVAL:
3981da177e4SLinus Torvalds 				continue;
3991da177e4SLinus Torvalds 		}
4001da177e4SLinus Torvalds 	        /*
4011da177e4SLinus Torvalds 		 * Allow the user to distinguish between failed sys_open
4021da177e4SLinus Torvalds 		 * and bad superblock on root device.
403dd2a345fSDave Gilbert 		 * and give them a list of the available devices
4041da177e4SLinus Torvalds 		 */
4059361401eSDavid Howells #ifdef CONFIG_BLOCK
4061da177e4SLinus Torvalds 		__bdevname(ROOT_DEV, b);
4079361401eSDavid Howells #endif
4080e0cb892SBernhard Walle 		printk("VFS: Cannot open root device \"%s\" or %s: error %d\n",
4090e0cb892SBernhard Walle 				root_device_name, b, err);
410dd2a345fSDave Gilbert 		printk("Please append a correct \"root=\" boot option; here are the available partitions:\n");
4111da177e4SLinus Torvalds 
412dd2a345fSDave Gilbert 		printk_all_partitions();
41355dc7db7STejun Heo #ifdef CONFIG_DEBUG_BLOCK_EXT_DEVT
41455dc7db7STejun Heo 		printk("DEBUG_BLOCK_EXT_DEVT is enabled, you need to specify "
41555dc7db7STejun Heo 		       "explicit textual name for \"root=\" boot option.\n");
41655dc7db7STejun Heo #endif
4171da177e4SLinus Torvalds 		panic("VFS: Unable to mount root fs on %s", b);
4181da177e4SLinus Torvalds 	}
419be6e028bSAndy Whitcroft 
420dd2a345fSDave Gilbert 	printk("List of all partitions:\n");
421dd2a345fSDave Gilbert 	printk_all_partitions();
422be6e028bSAndy Whitcroft 	printk("No filesystem could mount root, tried: ");
423be6e028bSAndy Whitcroft 	for (p = fs_names; *p; p += strlen(p)+1)
424be6e028bSAndy Whitcroft 		printk(" %s", p);
425be6e028bSAndy Whitcroft 	printk("\n");
4269361401eSDavid Howells #ifdef CONFIG_BLOCK
4279361401eSDavid Howells 	__bdevname(ROOT_DEV, b);
4289361401eSDavid Howells #endif
4299361401eSDavid Howells 	panic("VFS: Unable to mount root fs on %s", b);
4301da177e4SLinus Torvalds out:
431a608ca21SJeff Layton 	put_page(page);
4321da177e4SLinus Torvalds }
4331da177e4SLinus Torvalds 
4341da177e4SLinus Torvalds #ifdef CONFIG_ROOT_NFS
43543717c7dSChuck Lever 
43643717c7dSChuck Lever #define NFSROOT_TIMEOUT_MIN	5
43743717c7dSChuck Lever #define NFSROOT_TIMEOUT_MAX	30
43843717c7dSChuck Lever #define NFSROOT_RETRY_MAX	5
43943717c7dSChuck Lever 
4401da177e4SLinus Torvalds static int __init mount_nfs_root(void)
4411da177e4SLinus Torvalds {
44256463e50SChuck Lever 	char *root_dev, *root_data;
44343717c7dSChuck Lever 	unsigned int timeout;
44443717c7dSChuck Lever 	int try, err;
4451da177e4SLinus Torvalds 
44643717c7dSChuck Lever 	err = nfs_root_data(&root_dev, &root_data);
44743717c7dSChuck Lever 	if (err != 0)
4481da177e4SLinus Torvalds 		return 0;
44943717c7dSChuck Lever 
45043717c7dSChuck Lever 	/*
45143717c7dSChuck Lever 	 * The server or network may not be ready, so try several
45243717c7dSChuck Lever 	 * times.  Stop after a few tries in case the client wants
45343717c7dSChuck Lever 	 * to fall back to other boot methods.
45443717c7dSChuck Lever 	 */
45543717c7dSChuck Lever 	timeout = NFSROOT_TIMEOUT_MIN;
45643717c7dSChuck Lever 	for (try = 1; ; try++) {
45743717c7dSChuck Lever 		err = do_mount_root(root_dev, "nfs",
45843717c7dSChuck Lever 					root_mountflags, root_data);
45943717c7dSChuck Lever 		if (err == 0)
46056463e50SChuck Lever 			return 1;
46143717c7dSChuck Lever 		if (try > NFSROOT_RETRY_MAX)
46243717c7dSChuck Lever 			break;
46343717c7dSChuck Lever 
46443717c7dSChuck Lever 		/* Wait, in case the server refused us immediately */
46543717c7dSChuck Lever 		ssleep(timeout);
46643717c7dSChuck Lever 		timeout <<= 1;
46743717c7dSChuck Lever 		if (timeout > NFSROOT_TIMEOUT_MAX)
46843717c7dSChuck Lever 			timeout = NFSROOT_TIMEOUT_MAX;
46943717c7dSChuck Lever 	}
47043717c7dSChuck Lever 	return 0;
4711da177e4SLinus Torvalds }
4721da177e4SLinus Torvalds #endif
4731da177e4SLinus Torvalds 
4741da177e4SLinus Torvalds #if defined(CONFIG_BLK_DEV_RAM) || defined(CONFIG_BLK_DEV_FD)
4751da177e4SLinus Torvalds void __init change_floppy(char *fmt, ...)
4761da177e4SLinus Torvalds {
4771da177e4SLinus Torvalds 	struct termios termios;
4781da177e4SLinus Torvalds 	char buf[80];
4791da177e4SLinus Torvalds 	char c;
4801da177e4SLinus Torvalds 	int fd;
4811da177e4SLinus Torvalds 	va_list args;
4821da177e4SLinus Torvalds 	va_start(args, fmt);
4831da177e4SLinus Torvalds 	vsprintf(buf, fmt, args);
4841da177e4SLinus Torvalds 	va_end(args);
4851da177e4SLinus Torvalds 	fd = sys_open("/dev/root", O_RDWR | O_NDELAY, 0);
4861da177e4SLinus Torvalds 	if (fd >= 0) {
4871da177e4SLinus Torvalds 		sys_ioctl(fd, FDEJECT, 0);
4881da177e4SLinus Torvalds 		sys_close(fd);
4891da177e4SLinus Torvalds 	}
4901da177e4SLinus Torvalds 	printk(KERN_NOTICE "VFS: Insert %s and press ENTER\n", buf);
4911da177e4SLinus Torvalds 	fd = sys_open("/dev/console", O_RDWR, 0);
4921da177e4SLinus Torvalds 	if (fd >= 0) {
4931da177e4SLinus Torvalds 		sys_ioctl(fd, TCGETS, (long)&termios);
4941da177e4SLinus Torvalds 		termios.c_lflag &= ~ICANON;
4951da177e4SLinus Torvalds 		sys_ioctl(fd, TCSETSF, (long)&termios);
4961da177e4SLinus Torvalds 		sys_read(fd, &c, 1);
4971da177e4SLinus Torvalds 		termios.c_lflag |= ICANON;
4981da177e4SLinus Torvalds 		sys_ioctl(fd, TCSETSF, (long)&termios);
4991da177e4SLinus Torvalds 		sys_close(fd);
5001da177e4SLinus Torvalds 	}
5011da177e4SLinus Torvalds }
5021da177e4SLinus Torvalds #endif
5031da177e4SLinus Torvalds 
5041da177e4SLinus Torvalds void __init mount_root(void)
5051da177e4SLinus Torvalds {
5061da177e4SLinus Torvalds #ifdef CONFIG_ROOT_NFS
507377485f6SSasha Levin 	if (ROOT_DEV == Root_NFS) {
5081da177e4SLinus Torvalds 		if (mount_nfs_root())
5091da177e4SLinus Torvalds 			return;
5101da177e4SLinus Torvalds 
5111da177e4SLinus Torvalds 		printk(KERN_ERR "VFS: Unable to mount root fs via NFS, trying floppy.\n");
5121da177e4SLinus Torvalds 		ROOT_DEV = Root_FD0;
5131da177e4SLinus Torvalds 	}
5141da177e4SLinus Torvalds #endif
5151da177e4SLinus Torvalds #ifdef CONFIG_BLK_DEV_FD
5161da177e4SLinus Torvalds 	if (MAJOR(ROOT_DEV) == FLOPPY_MAJOR) {
5171da177e4SLinus Torvalds 		/* rd_doload is 2 for a dual initrd/ramload setup */
5181da177e4SLinus Torvalds 		if (rd_doload==2) {
5191da177e4SLinus Torvalds 			if (rd_load_disk(1)) {
5201da177e4SLinus Torvalds 				ROOT_DEV = Root_RAM1;
5211da177e4SLinus Torvalds 				root_device_name = NULL;
5221da177e4SLinus Torvalds 			}
5231da177e4SLinus Torvalds 		} else
5241da177e4SLinus Torvalds 			change_floppy("root floppy");
5251da177e4SLinus Torvalds 	}
5261da177e4SLinus Torvalds #endif
5279361401eSDavid Howells #ifdef CONFIG_BLOCK
528bdaf8529SGreg Kroah-Hartman 	create_dev("/dev/root", ROOT_DEV);
5291da177e4SLinus Torvalds 	mount_block_root("/dev/root", root_mountflags);
5309361401eSDavid Howells #endif
5311da177e4SLinus Torvalds }
5321da177e4SLinus Torvalds 
5331da177e4SLinus Torvalds /*
5341da177e4SLinus Torvalds  * Prepare the namespace - decide what/where to mount, load ramdisks, etc.
5351da177e4SLinus Torvalds  */
5361da177e4SLinus Torvalds void __init prepare_namespace(void)
5371da177e4SLinus Torvalds {
5381da177e4SLinus Torvalds 	int is_floppy;
5391da177e4SLinus Torvalds 
5401da177e4SLinus Torvalds 	if (root_delay) {
5411da177e4SLinus Torvalds 		printk(KERN_INFO "Waiting %d sec before mounting root device...\n",
5421da177e4SLinus Torvalds 		       root_delay);
5431da177e4SLinus Torvalds 		ssleep(root_delay);
5441da177e4SLinus Torvalds 	}
5451da177e4SLinus Torvalds 
546216773a7SArjan van de Ven 	/*
547216773a7SArjan van de Ven 	 * wait for the known devices to complete their probing
548216773a7SArjan van de Ven 	 *
549216773a7SArjan van de Ven 	 * Note: this is a potential source of long boot delays.
550216773a7SArjan van de Ven 	 * For example, it is not atypical to wait 5 seconds here
551216773a7SArjan van de Ven 	 * for the touchpad of a laptop to initialize.
552216773a7SArjan van de Ven 	 */
553216773a7SArjan van de Ven 	wait_for_device_probe();
554d779249eSGreg Kroah-Hartman 
5551da177e4SLinus Torvalds 	md_run_setup();
5561da177e4SLinus Torvalds 
5571da177e4SLinus Torvalds 	if (saved_root_name[0]) {
5581da177e4SLinus Torvalds 		root_device_name = saved_root_name;
5592d62f488SAdrian Hunter 		if (!strncmp(root_device_name, "mtd", 3) ||
5602d62f488SAdrian Hunter 		    !strncmp(root_device_name, "ubi", 3)) {
561e9482b43SJoern Engel 			mount_block_root(root_device_name, root_mountflags);
562e9482b43SJoern Engel 			goto out;
563e9482b43SJoern Engel 		}
5641da177e4SLinus Torvalds 		ROOT_DEV = name_to_dev_t(root_device_name);
5651da177e4SLinus Torvalds 		if (strncmp(root_device_name, "/dev/", 5) == 0)
5661da177e4SLinus Torvalds 			root_device_name += 5;
5671da177e4SLinus Torvalds 	}
5681da177e4SLinus Torvalds 
5691da177e4SLinus Torvalds 	if (initrd_load())
5701da177e4SLinus Torvalds 		goto out;
5711da177e4SLinus Torvalds 
572cc1ed754SPierre Ossman 	/* wait for any asynchronous scanning to complete */
573cc1ed754SPierre Ossman 	if ((ROOT_DEV == 0) && root_wait) {
574cc1ed754SPierre Ossman 		printk(KERN_INFO "Waiting for root device %s...\n",
575cc1ed754SPierre Ossman 			saved_root_name);
576cc1ed754SPierre Ossman 		while (driver_probe_done() != 0 ||
577cc1ed754SPierre Ossman 			(ROOT_DEV = name_to_dev_t(saved_root_name)) == 0)
578cc1ed754SPierre Ossman 			msleep(100);
579216773a7SArjan van de Ven 		async_synchronize_full();
580cc1ed754SPierre Ossman 	}
581cc1ed754SPierre Ossman 
582cc1ed754SPierre Ossman 	is_floppy = MAJOR(ROOT_DEV) == FLOPPY_MAJOR;
583cc1ed754SPierre Ossman 
5841da177e4SLinus Torvalds 	if (is_floppy && rd_doload && rd_load_disk(0))
5851da177e4SLinus Torvalds 		ROOT_DEV = Root_RAM0;
5861da177e4SLinus Torvalds 
5871da177e4SLinus Torvalds 	mount_root();
5881da177e4SLinus Torvalds out:
5892b2af54aSKay Sievers 	devtmpfs_mount("dev");
5901da177e4SLinus Torvalds 	sys_mount(".", "/", NULL, MS_MOVE, NULL);
591c67e5382SH Hartley Sweeten 	sys_chroot(".");
5921da177e4SLinus Torvalds }
59357f150a5SRob Landley 
5946e19ededSRob Landley static bool is_tmpfs;
59557f150a5SRob Landley static struct dentry *rootfs_mount(struct file_system_type *fs_type,
59657f150a5SRob Landley 	int flags, const char *dev_name, void *data)
59757f150a5SRob Landley {
59857f150a5SRob Landley 	static unsigned long once;
5996e19ededSRob Landley 	void *fill = ramfs_fill_super;
60057f150a5SRob Landley 
60157f150a5SRob Landley 	if (test_and_set_bit(0, &once))
60257f150a5SRob Landley 		return ERR_PTR(-ENODEV);
60357f150a5SRob Landley 
6046e19ededSRob Landley 	if (IS_ENABLED(CONFIG_TMPFS) && is_tmpfs)
6056e19ededSRob Landley 		fill = shmem_fill_super;
6066e19ededSRob Landley 
6076e19ededSRob Landley 	return mount_nodev(fs_type, flags, data, fill);
60857f150a5SRob Landley }
60957f150a5SRob Landley 
61057f150a5SRob Landley static struct file_system_type rootfs_fs_type = {
61157f150a5SRob Landley 	.name		= "rootfs",
61257f150a5SRob Landley 	.mount		= rootfs_mount,
61357f150a5SRob Landley 	.kill_sb	= kill_litter_super,
61457f150a5SRob Landley };
61557f150a5SRob Landley 
61657f150a5SRob Landley int __init init_rootfs(void)
61757f150a5SRob Landley {
61857f150a5SRob Landley 	int err = register_filesystem(&rootfs_fs_type);
61957f150a5SRob Landley 
62057f150a5SRob Landley 	if (err)
62157f150a5SRob Landley 		return err;
62257f150a5SRob Landley 
6236e19ededSRob Landley 	if (IS_ENABLED(CONFIG_TMPFS) && !saved_root_name[0] &&
6246e19ededSRob Landley 		(!root_fs_names || strstr(root_fs_names, "tmpfs"))) {
62516203a7aSRob Landley 		err = shmem_init();
6266e19ededSRob Landley 		is_tmpfs = true;
6276e19ededSRob Landley 	} else {
62857f150a5SRob Landley 		err = init_ramfs_fs();
6296e19ededSRob Landley 	}
63016203a7aSRob Landley 
63157f150a5SRob Landley 	if (err)
63257f150a5SRob Landley 		unregister_filesystem(&rootfs_fs_type);
63357f150a5SRob Landley 
63457f150a5SRob Landley 	return err;
63557f150a5SRob Landley }
636