xref: /openbmc/linux/init/do_mounts.c (revision 037f11b4)
11da177e4SLinus Torvalds #include <linux/module.h>
21da177e4SLinus Torvalds #include <linux/sched.h>
31da177e4SLinus Torvalds #include <linux/ctype.h>
41da177e4SLinus Torvalds #include <linux/fd.h>
51da177e4SLinus Torvalds #include <linux/tty.h>
61da177e4SLinus Torvalds #include <linux/suspend.h>
71da177e4SLinus Torvalds #include <linux/root_dev.h>
81da177e4SLinus Torvalds #include <linux/security.h>
91da177e4SLinus Torvalds #include <linux/delay.h>
10dd2a345fSDave Gilbert #include <linux/genhd.h>
11d53d9f16SAndrew Morton #include <linux/mount.h>
12d779249eSGreg Kroah-Hartman #include <linux/device.h>
1346595390SAdrian Bunk #include <linux/init.h>
14011e3fcdSAdrian Bunk #include <linux/fs.h>
1582c8253aSAdrian Bunk #include <linux/initrd.h>
1622a9d645SArjan van de Ven #include <linux/async.h>
175ad4e53bSAl Viro #include <linux/fs_struct.h>
185a0e3ad6STejun Heo #include <linux/slab.h>
1957f150a5SRob Landley #include <linux/ramfs.h>
2016203a7aSRob Landley #include <linux/shmem_fs.h>
211da177e4SLinus Torvalds 
221da177e4SLinus Torvalds #include <linux/nfs_fs.h>
231da177e4SLinus Torvalds #include <linux/nfs_fs_sb.h>
241da177e4SLinus Torvalds #include <linux/nfs_mount.h>
25e262e32dSDavid Howells #include <uapi/linux/mount.h>
261da177e4SLinus Torvalds 
271da177e4SLinus Torvalds #include "do_mounts.h"
281da177e4SLinus Torvalds 
291da177e4SLinus Torvalds int __initdata rd_doload;	/* 1 = load RAM disk, 0 = don't load */
301da177e4SLinus Torvalds 
319b04c997STheodore Ts'o int root_mountflags = MS_RDONLY | MS_SILENT;
32f56f6d30SAdrian Bunk static char * __initdata root_device_name;
331da177e4SLinus Torvalds static char __initdata saved_root_name[64];
3479975f13SWill Drewry static int root_wait;
351da177e4SLinus Torvalds 
361da177e4SLinus Torvalds dev_t ROOT_DEV;
371da177e4SLinus Torvalds 
381da177e4SLinus Torvalds static int __init load_ramdisk(char *str)
391da177e4SLinus Torvalds {
401da177e4SLinus Torvalds 	rd_doload = simple_strtol(str,NULL,0) & 3;
411da177e4SLinus Torvalds 	return 1;
421da177e4SLinus Torvalds }
431da177e4SLinus Torvalds __setup("load_ramdisk=", load_ramdisk);
441da177e4SLinus Torvalds 
451da177e4SLinus Torvalds static int __init readonly(char *str)
461da177e4SLinus Torvalds {
471da177e4SLinus Torvalds 	if (*str)
481da177e4SLinus Torvalds 		return 0;
491da177e4SLinus Torvalds 	root_mountflags |= MS_RDONLY;
501da177e4SLinus Torvalds 	return 1;
511da177e4SLinus Torvalds }
521da177e4SLinus Torvalds 
531da177e4SLinus Torvalds static int __init readwrite(char *str)
541da177e4SLinus Torvalds {
551da177e4SLinus Torvalds 	if (*str)
561da177e4SLinus Torvalds 		return 0;
571da177e4SLinus Torvalds 	root_mountflags &= ~MS_RDONLY;
581da177e4SLinus Torvalds 	return 1;
591da177e4SLinus Torvalds }
601da177e4SLinus Torvalds 
611da177e4SLinus Torvalds __setup("ro", readonly);
621da177e4SLinus Torvalds __setup("rw", readwrite);
631da177e4SLinus Torvalds 
646d0aed7aSJens Axboe #ifdef CONFIG_BLOCK
651ad7e899SStephen Warren struct uuidcmp {
661ad7e899SStephen Warren 	const char *uuid;
671ad7e899SStephen Warren 	int len;
681ad7e899SStephen Warren };
691ad7e899SStephen Warren 
70b5af921eSWill Drewry /**
71b5af921eSWill Drewry  * match_dev_by_uuid - callback for finding a partition using its uuid
72b5af921eSWill Drewry  * @dev:	device passed in by the caller
731ad7e899SStephen Warren  * @data:	opaque pointer to the desired struct uuidcmp to match
74b5af921eSWill Drewry  *
75b5af921eSWill Drewry  * Returns 1 if the device matches, and 0 otherwise.
76b5af921eSWill Drewry  */
779f3b795aSMichał Mirosław static int match_dev_by_uuid(struct device *dev, const void *data)
78b5af921eSWill Drewry {
799f3b795aSMichał Mirosław 	const struct uuidcmp *cmp = data;
80b5af921eSWill Drewry 	struct hd_struct *part = dev_to_part(dev);
81b5af921eSWill Drewry 
82b5af921eSWill Drewry 	if (!part->info)
83b5af921eSWill Drewry 		goto no_match;
84b5af921eSWill Drewry 
851ad7e899SStephen Warren 	if (strncasecmp(cmp->uuid, part->info->uuid, cmp->len))
86b5af921eSWill Drewry 		goto no_match;
87b5af921eSWill Drewry 
88b5af921eSWill Drewry 	return 1;
89b5af921eSWill Drewry no_match:
90b5af921eSWill Drewry 	return 0;
91b5af921eSWill Drewry }
92b5af921eSWill Drewry 
93b5af921eSWill Drewry 
94b5af921eSWill Drewry /**
95b5af921eSWill Drewry  * devt_from_partuuid - looks up the dev_t of a partition by its UUID
96a68b3108Schishanmingshen  * @uuid_str:	char array containing ascii UUID
97b5af921eSWill Drewry  *
98b5af921eSWill Drewry  * The function will return the first partition which contains a matching
99b5af921eSWill Drewry  * UUID value in its partition_meta_info struct.  This does not search
100b5af921eSWill Drewry  * by filesystem UUIDs.
101b5af921eSWill Drewry  *
102a68b3108Schishanmingshen  * If @uuid_str is followed by a "/PARTNROFF=%d", then the number will be
10379975f13SWill Drewry  * extracted and used as an offset from the partition identified by the UUID.
10479975f13SWill Drewry  *
105b5af921eSWill Drewry  * Returns the matching dev_t on success or 0 on failure.
106b5af921eSWill Drewry  */
1071ad7e899SStephen Warren static dev_t devt_from_partuuid(const char *uuid_str)
108b5af921eSWill Drewry {
109b5af921eSWill Drewry 	dev_t res = 0;
1101ad7e899SStephen Warren 	struct uuidcmp cmp;
111b5af921eSWill Drewry 	struct device *dev = NULL;
11279975f13SWill Drewry 	struct gendisk *disk;
11379975f13SWill Drewry 	struct hd_struct *part;
11479975f13SWill Drewry 	int offset = 0;
115283f8fc0SStephen Warren 	bool clear_root_wait = false;
116283f8fc0SStephen Warren 	char *slash;
11779975f13SWill Drewry 
1181ad7e899SStephen Warren 	cmp.uuid = uuid_str;
1191ad7e899SStephen Warren 
120283f8fc0SStephen Warren 	slash = strchr(uuid_str, '/');
12179975f13SWill Drewry 	/* Check for optional partition number offset attributes. */
122283f8fc0SStephen Warren 	if (slash) {
12379975f13SWill Drewry 		char c = 0;
12479975f13SWill Drewry 		/* Explicitly fail on poor PARTUUID syntax. */
125283f8fc0SStephen Warren 		if (sscanf(slash + 1,
126283f8fc0SStephen Warren 			   "PARTNROFF=%d%c", &offset, &c) != 1) {
127283f8fc0SStephen Warren 			clear_root_wait = true;
12879975f13SWill Drewry 			goto done;
12979975f13SWill Drewry 		}
130283f8fc0SStephen Warren 		cmp.len = slash - uuid_str;
131283f8fc0SStephen Warren 	} else {
132283f8fc0SStephen Warren 		cmp.len = strlen(uuid_str);
133283f8fc0SStephen Warren 	}
134283f8fc0SStephen Warren 
135283f8fc0SStephen Warren 	if (!cmp.len) {
136283f8fc0SStephen Warren 		clear_root_wait = true;
137283f8fc0SStephen Warren 		goto done;
13879975f13SWill Drewry 	}
139b5af921eSWill Drewry 
1401ad7e899SStephen Warren 	dev = class_find_device(&block_class, NULL, &cmp,
1411ad7e899SStephen Warren 				&match_dev_by_uuid);
142b5af921eSWill Drewry 	if (!dev)
143b5af921eSWill Drewry 		goto done;
144b5af921eSWill Drewry 
145b5af921eSWill Drewry 	res = dev->devt;
146b5af921eSWill Drewry 
14779975f13SWill Drewry 	/* Attempt to find the partition by offset. */
14879975f13SWill Drewry 	if (!offset)
14979975f13SWill Drewry 		goto no_offset;
15079975f13SWill Drewry 
15179975f13SWill Drewry 	res = 0;
15279975f13SWill Drewry 	disk = part_to_disk(dev_to_part(dev));
15379975f13SWill Drewry 	part = disk_get_part(disk, dev_to_part(dev)->partno + offset);
15479975f13SWill Drewry 	if (part) {
15579975f13SWill Drewry 		res = part_devt(part);
15679975f13SWill Drewry 		put_device(part_to_dev(part));
15779975f13SWill Drewry 	}
15879975f13SWill Drewry 
15979975f13SWill Drewry no_offset:
16079975f13SWill Drewry 	put_device(dev);
161b5af921eSWill Drewry done:
162283f8fc0SStephen Warren 	if (clear_root_wait) {
163283f8fc0SStephen Warren 		pr_err("VFS: PARTUUID= is invalid.\n"
164283f8fc0SStephen Warren 		       "Expected PARTUUID=<valid-uuid-id>[/PARTNROFF=%%d]\n");
165283f8fc0SStephen Warren 		if (root_wait)
166283f8fc0SStephen Warren 			pr_err("Disabling rootwait; root= is invalid.\n");
167283f8fc0SStephen Warren 		root_wait = 0;
168283f8fc0SStephen Warren 	}
169b5af921eSWill Drewry 	return res;
170b5af921eSWill Drewry }
171f027c34dSNikolaus Voss 
172f027c34dSNikolaus Voss /**
173f027c34dSNikolaus Voss  * match_dev_by_label - callback for finding a partition using its label
174f027c34dSNikolaus Voss  * @dev:	device passed in by the caller
175f027c34dSNikolaus Voss  * @data:	opaque pointer to the label to match
176f027c34dSNikolaus Voss  *
177f027c34dSNikolaus Voss  * Returns 1 if the device matches, and 0 otherwise.
178f027c34dSNikolaus Voss  */
179f027c34dSNikolaus Voss static int match_dev_by_label(struct device *dev, const void *data)
180f027c34dSNikolaus Voss {
181f027c34dSNikolaus Voss 	const char *label = data;
182f027c34dSNikolaus Voss 	struct hd_struct *part = dev_to_part(dev);
183f027c34dSNikolaus Voss 
184f027c34dSNikolaus Voss 	if (part->info && !strcmp(label, part->info->volname))
185f027c34dSNikolaus Voss 		return 1;
186f027c34dSNikolaus Voss 
187f027c34dSNikolaus Voss 	return 0;
188f027c34dSNikolaus Voss }
1896d0aed7aSJens Axboe #endif
190b5af921eSWill Drewry 
1911da177e4SLinus Torvalds /*
1921da177e4SLinus Torvalds  *	Convert a name into device number.  We accept the following variants:
1931da177e4SLinus Torvalds  *
1940bf37ae4SPavel Machek  *	1) <hex_major><hex_minor> device number in hexadecimal represents itself
1950bf37ae4SPavel Machek  *         no leading 0x, for example b302.
1961da177e4SLinus Torvalds  *	2) /dev/nfs represents Root_NFS (0xff)
1971da177e4SLinus Torvalds  *	3) /dev/<disk_name> represents the device number of disk
1981da177e4SLinus Torvalds  *	4) /dev/<disk_name><decimal> represents the device number
1991da177e4SLinus Torvalds  *         of partition - device number of disk plus the partition number
2001da177e4SLinus Torvalds  *	5) /dev/<disk_name>p<decimal> - same as the above, that form is
2011da177e4SLinus Torvalds  *	   used when disk name of partitioned disk ends on a digit.
202b5af921eSWill Drewry  *	6) PARTUUID=00112233-4455-6677-8899-AABBCCDDEEFF representing the
203b5af921eSWill Drewry  *	   unique id of a partition if the partition table provides it.
204d33b98fcSStephen Warren  *	   The UUID may be either an EFI/GPT UUID, or refer to an MSDOS
205d33b98fcSStephen Warren  *	   partition using the format SSSSSSSS-PP, where SSSSSSSS is a zero-
206d33b98fcSStephen Warren  *	   filled hex representation of the 32-bit "NT disk signature", and PP
207d33b98fcSStephen Warren  *	   is a zero-filled hex representation of the 1-based partition number.
20879975f13SWill Drewry  *	7) PARTUUID=<UUID>/PARTNROFF=<int> to select a partition in relation to
20979975f13SWill Drewry  *	   a partition with a known unique id.
2106c251611SSebastian Capella  *	8) <major>:<minor> major and minor number of the device separated by
2116c251611SSebastian Capella  *	   a colon.
212f027c34dSNikolaus Voss  *	9) PARTLABEL=<name> with name being the GPT partition label.
213f027c34dSNikolaus Voss  *	   MSDOS partitions do not support labels!
2141da177e4SLinus Torvalds  *
215edfaa7c3SKay Sievers  *	If name doesn't have fall into the categories above, we return (0,0).
216edfaa7c3SKay Sievers  *	block_class is used to check if something is a disk name. If the disk
217edfaa7c3SKay Sievers  *	name contains slashes, the device name has them replaced with
218edfaa7c3SKay Sievers  *	bangs.
2191da177e4SLinus Torvalds  */
2201da177e4SLinus Torvalds 
221e6e20a7aSDan Ehrenberg dev_t name_to_dev_t(const char *name)
2221da177e4SLinus Torvalds {
2231da177e4SLinus Torvalds 	char s[32];
2241da177e4SLinus Torvalds 	char *p;
2251da177e4SLinus Torvalds 	dev_t res = 0;
22630f2f0ebSKay Sievers 	int part;
2271da177e4SLinus Torvalds 
2286d0aed7aSJens Axboe #ifdef CONFIG_BLOCK
229b5af921eSWill Drewry 	if (strncmp(name, "PARTUUID=", 9) == 0) {
230b5af921eSWill Drewry 		name += 9;
231b5af921eSWill Drewry 		res = devt_from_partuuid(name);
232b5af921eSWill Drewry 		if (!res)
233b5af921eSWill Drewry 			goto fail;
234b5af921eSWill Drewry 		goto done;
235f027c34dSNikolaus Voss 	} else if (strncmp(name, "PARTLABEL=", 10) == 0) {
236f027c34dSNikolaus Voss 		struct device *dev;
237f027c34dSNikolaus Voss 
238f027c34dSNikolaus Voss 		dev = class_find_device(&block_class, NULL, name + 10,
239f027c34dSNikolaus Voss 					&match_dev_by_label);
240f027c34dSNikolaus Voss 		if (!dev)
241f027c34dSNikolaus Voss 			goto fail;
242f027c34dSNikolaus Voss 
243f027c34dSNikolaus Voss 		res = dev->devt;
244f027c34dSNikolaus Voss 		put_device(dev);
245f027c34dSNikolaus Voss 		goto done;
246b5af921eSWill Drewry 	}
2476d0aed7aSJens Axboe #endif
248b5af921eSWill Drewry 
2491da177e4SLinus Torvalds 	if (strncmp(name, "/dev/", 5) != 0) {
250cb31ef48SChen Yu 		unsigned maj, min, offset;
251283e7ad0SDan Ehrenberg 		char dummy;
2521da177e4SLinus Torvalds 
253cb31ef48SChen Yu 		if ((sscanf(name, "%u:%u%c", &maj, &min, &dummy) == 2) ||
254cb31ef48SChen Yu 		    (sscanf(name, "%u:%u:%u:%c", &maj, &min, &offset, &dummy) == 3)) {
2551da177e4SLinus Torvalds 			res = MKDEV(maj, min);
2561da177e4SLinus Torvalds 			if (maj != MAJOR(res) || min != MINOR(res))
2571da177e4SLinus Torvalds 				goto fail;
2581da177e4SLinus Torvalds 		} else {
2591da177e4SLinus Torvalds 			res = new_decode_dev(simple_strtoul(name, &p, 16));
2601da177e4SLinus Torvalds 			if (*p)
2611da177e4SLinus Torvalds 				goto fail;
2621da177e4SLinus Torvalds 		}
2631da177e4SLinus Torvalds 		goto done;
2641da177e4SLinus Torvalds 	}
265edfaa7c3SKay Sievers 
2661da177e4SLinus Torvalds 	name += 5;
2671da177e4SLinus Torvalds 	res = Root_NFS;
2681da177e4SLinus Torvalds 	if (strcmp(name, "nfs") == 0)
2691da177e4SLinus Torvalds 		goto done;
2701da177e4SLinus Torvalds 	res = Root_RAM0;
2711da177e4SLinus Torvalds 	if (strcmp(name, "ram") == 0)
2721da177e4SLinus Torvalds 		goto done;
2731da177e4SLinus Torvalds 
2741da177e4SLinus Torvalds 	if (strlen(name) > 31)
2751da177e4SLinus Torvalds 		goto fail;
2761da177e4SLinus Torvalds 	strcpy(s, name);
2771da177e4SLinus Torvalds 	for (p = s; *p; p++)
2781da177e4SLinus Torvalds 		if (*p == '/')
2791da177e4SLinus Torvalds 			*p = '!';
28030f2f0ebSKay Sievers 	res = blk_lookup_devt(s, 0);
28130f2f0ebSKay Sievers 	if (res)
28230f2f0ebSKay Sievers 		goto done;
28330f2f0ebSKay Sievers 
28430f2f0ebSKay Sievers 	/*
28525985edcSLucas De Marchi 	 * try non-existent, but valid partition, which may only exist
28630f2f0ebSKay Sievers 	 * after revalidating the disk, like partitioned md devices
28730f2f0ebSKay Sievers 	 */
28830f2f0ebSKay Sievers 	while (p > s && isdigit(p[-1]))
28930f2f0ebSKay Sievers 		p--;
29030f2f0ebSKay Sievers 	if (p == s || !*p || *p == '0')
29130f2f0ebSKay Sievers 		goto fail;
29230f2f0ebSKay Sievers 
29330f2f0ebSKay Sievers 	/* try disk name without <part number> */
29430f2f0ebSKay Sievers 	part = simple_strtoul(p, NULL, 10);
29530f2f0ebSKay Sievers 	*p = '\0';
29630f2f0ebSKay Sievers 	res = blk_lookup_devt(s, part);
29730f2f0ebSKay Sievers 	if (res)
29830f2f0ebSKay Sievers 		goto done;
29930f2f0ebSKay Sievers 
30030f2f0ebSKay Sievers 	/* try disk name without p<part number> */
30130f2f0ebSKay Sievers 	if (p < s + 2 || !isdigit(p[-2]) || p[-1] != 'p')
30230f2f0ebSKay Sievers 		goto fail;
30330f2f0ebSKay Sievers 	p[-1] = '\0';
30430f2f0ebSKay Sievers 	res = blk_lookup_devt(s, part);
3051da177e4SLinus Torvalds 	if (res)
3061da177e4SLinus Torvalds 		goto done;
3071da177e4SLinus Torvalds 
3081da177e4SLinus Torvalds fail:
309edfaa7c3SKay Sievers 	return 0;
310edfaa7c3SKay Sievers done:
311edfaa7c3SKay Sievers 	return res;
3121da177e4SLinus Torvalds }
313e6e20a7aSDan Ehrenberg EXPORT_SYMBOL_GPL(name_to_dev_t);
3141da177e4SLinus Torvalds 
3151da177e4SLinus Torvalds static int __init root_dev_setup(char *line)
3161da177e4SLinus Torvalds {
3171da177e4SLinus Torvalds 	strlcpy(saved_root_name, line, sizeof(saved_root_name));
3181da177e4SLinus Torvalds 	return 1;
3191da177e4SLinus Torvalds }
3201da177e4SLinus Torvalds 
3211da177e4SLinus Torvalds __setup("root=", root_dev_setup);
3221da177e4SLinus Torvalds 
323cc1ed754SPierre Ossman static int __init rootwait_setup(char *str)
324cc1ed754SPierre Ossman {
325cc1ed754SPierre Ossman 	if (*str)
326cc1ed754SPierre Ossman 		return 0;
327cc1ed754SPierre Ossman 	root_wait = 1;
328cc1ed754SPierre Ossman 	return 1;
329cc1ed754SPierre Ossman }
330cc1ed754SPierre Ossman 
331cc1ed754SPierre Ossman __setup("rootwait", rootwait_setup);
332cc1ed754SPierre Ossman 
3331da177e4SLinus Torvalds static char * __initdata root_mount_data;
3341da177e4SLinus Torvalds static int __init root_data_setup(char *str)
3351da177e4SLinus Torvalds {
3361da177e4SLinus Torvalds 	root_mount_data = str;
3371da177e4SLinus Torvalds 	return 1;
3381da177e4SLinus Torvalds }
3391da177e4SLinus Torvalds 
3401da177e4SLinus Torvalds static char * __initdata root_fs_names;
3411da177e4SLinus Torvalds static int __init fs_names_setup(char *str)
3421da177e4SLinus Torvalds {
3431da177e4SLinus Torvalds 	root_fs_names = str;
3441da177e4SLinus Torvalds 	return 1;
3451da177e4SLinus Torvalds }
3461da177e4SLinus Torvalds 
3471da177e4SLinus Torvalds static unsigned int __initdata root_delay;
3481da177e4SLinus Torvalds static int __init root_delay_setup(char *str)
3491da177e4SLinus Torvalds {
3501da177e4SLinus Torvalds 	root_delay = simple_strtoul(str, NULL, 0);
3511da177e4SLinus Torvalds 	return 1;
3521da177e4SLinus Torvalds }
3531da177e4SLinus Torvalds 
3541da177e4SLinus Torvalds __setup("rootflags=", root_data_setup);
3551da177e4SLinus Torvalds __setup("rootfstype=", fs_names_setup);
3561da177e4SLinus Torvalds __setup("rootdelay=", root_delay_setup);
3571da177e4SLinus Torvalds 
3581da177e4SLinus Torvalds static void __init get_fs_names(char *page)
3591da177e4SLinus Torvalds {
3601da177e4SLinus Torvalds 	char *s = page;
3611da177e4SLinus Torvalds 
3621da177e4SLinus Torvalds 	if (root_fs_names) {
3631da177e4SLinus Torvalds 		strcpy(page, root_fs_names);
3641da177e4SLinus Torvalds 		while (*s++) {
3651da177e4SLinus Torvalds 			if (s[-1] == ',')
3661da177e4SLinus Torvalds 				s[-1] = '\0';
3671da177e4SLinus Torvalds 		}
3681da177e4SLinus Torvalds 	} else {
3691da177e4SLinus Torvalds 		int len = get_filesystem_list(page);
3701da177e4SLinus Torvalds 		char *p, *next;
3711da177e4SLinus Torvalds 
3721da177e4SLinus Torvalds 		page[len] = '\0';
3731da177e4SLinus Torvalds 		for (p = page-1; p; p = next) {
3741da177e4SLinus Torvalds 			next = strchr(++p, '\n');
3751da177e4SLinus Torvalds 			if (*p++ != '\t')
3761da177e4SLinus Torvalds 				continue;
3771da177e4SLinus Torvalds 			while ((*s++ = *p++) != '\n')
3781da177e4SLinus Torvalds 				;
3791da177e4SLinus Torvalds 			s[-1] = '\0';
3801da177e4SLinus Torvalds 		}
3811da177e4SLinus Torvalds 	}
3821da177e4SLinus Torvalds 	*s = '\0';
3831da177e4SLinus Torvalds }
3841da177e4SLinus Torvalds 
3851da177e4SLinus Torvalds static int __init do_mount_root(char *name, char *fs, int flags, void *data)
3861da177e4SLinus Torvalds {
387d8c9584eSAl Viro 	struct super_block *s;
388312db1aaSDominik Brodowski 	int err = ksys_mount(name, "/root", fs, flags, data);
3891da177e4SLinus Torvalds 	if (err)
3901da177e4SLinus Torvalds 		return err;
3911da177e4SLinus Torvalds 
392447016e9SDominik Brodowski 	ksys_chdir("/root");
393d8c9584eSAl Viro 	s = current->fs->pwd.dentry->d_sb;
394d8c9584eSAl Viro 	ROOT_DEV = s->s_dev;
39580cdc6daSMandeep Singh Baines 	printk(KERN_INFO
39680cdc6daSMandeep Singh Baines 	       "VFS: Mounted root (%s filesystem)%s on device %u:%u.\n",
397d8c9584eSAl Viro 	       s->s_type->name,
398bc98a42cSDavid Howells 	       sb_rdonly(s) ? " readonly" : "",
399d8c9584eSAl Viro 	       MAJOR(ROOT_DEV), MINOR(ROOT_DEV));
4001da177e4SLinus Torvalds 	return 0;
4011da177e4SLinus Torvalds }
4021da177e4SLinus Torvalds 
4031da177e4SLinus Torvalds void __init mount_block_root(char *name, int flags)
4041da177e4SLinus Torvalds {
40575f296d9SLevin, Alexander (Sasha Levin) 	struct page *page = alloc_page(GFP_KERNEL);
406a608ca21SJeff Layton 	char *fs_names = page_address(page);
4071da177e4SLinus Torvalds 	char *p;
4089361401eSDavid Howells #ifdef CONFIG_BLOCK
4091da177e4SLinus Torvalds 	char b[BDEVNAME_SIZE];
4109361401eSDavid Howells #else
4119361401eSDavid Howells 	const char *b = name;
4129361401eSDavid Howells #endif
4131da177e4SLinus Torvalds 
4141da177e4SLinus Torvalds 	get_fs_names(fs_names);
4151da177e4SLinus Torvalds retry:
4161da177e4SLinus Torvalds 	for (p = fs_names; *p; p += strlen(p)+1) {
4171da177e4SLinus Torvalds 		int err = do_mount_root(name, p, flags, root_mount_data);
4181da177e4SLinus Torvalds 		switch (err) {
4191da177e4SLinus Torvalds 			case 0:
4201da177e4SLinus Torvalds 				goto out;
4211da177e4SLinus Torvalds 			case -EACCES:
4221da177e4SLinus Torvalds 			case -EINVAL:
4231da177e4SLinus Torvalds 				continue;
4241da177e4SLinus Torvalds 		}
4251da177e4SLinus Torvalds 	        /*
4261da177e4SLinus Torvalds 		 * Allow the user to distinguish between failed sys_open
4271da177e4SLinus Torvalds 		 * and bad superblock on root device.
428dd2a345fSDave Gilbert 		 * and give them a list of the available devices
4291da177e4SLinus Torvalds 		 */
4309361401eSDavid Howells #ifdef CONFIG_BLOCK
4311da177e4SLinus Torvalds 		__bdevname(ROOT_DEV, b);
4329361401eSDavid Howells #endif
4330e0cb892SBernhard Walle 		printk("VFS: Cannot open root device \"%s\" or %s: error %d\n",
4340e0cb892SBernhard Walle 				root_device_name, b, err);
435dd2a345fSDave Gilbert 		printk("Please append a correct \"root=\" boot option; here are the available partitions:\n");
4361da177e4SLinus Torvalds 
437dd2a345fSDave Gilbert 		printk_all_partitions();
43855dc7db7STejun Heo #ifdef CONFIG_DEBUG_BLOCK_EXT_DEVT
43955dc7db7STejun Heo 		printk("DEBUG_BLOCK_EXT_DEVT is enabled, you need to specify "
44055dc7db7STejun Heo 		       "explicit textual name for \"root=\" boot option.\n");
44155dc7db7STejun Heo #endif
4421da177e4SLinus Torvalds 		panic("VFS: Unable to mount root fs on %s", b);
4431da177e4SLinus Torvalds 	}
444e462ec50SDavid Howells 	if (!(flags & SB_RDONLY)) {
445e462ec50SDavid Howells 		flags |= SB_RDONLY;
44610975933SMiklos Szeredi 		goto retry;
44710975933SMiklos Szeredi 	}
448be6e028bSAndy Whitcroft 
449dd2a345fSDave Gilbert 	printk("List of all partitions:\n");
450dd2a345fSDave Gilbert 	printk_all_partitions();
451be6e028bSAndy Whitcroft 	printk("No filesystem could mount root, tried: ");
452be6e028bSAndy Whitcroft 	for (p = fs_names; *p; p += strlen(p)+1)
453be6e028bSAndy Whitcroft 		printk(" %s", p);
454be6e028bSAndy Whitcroft 	printk("\n");
4559361401eSDavid Howells #ifdef CONFIG_BLOCK
4569361401eSDavid Howells 	__bdevname(ROOT_DEV, b);
4579361401eSDavid Howells #endif
4589361401eSDavid Howells 	panic("VFS: Unable to mount root fs on %s", b);
4591da177e4SLinus Torvalds out:
460a608ca21SJeff Layton 	put_page(page);
4611da177e4SLinus Torvalds }
4621da177e4SLinus Torvalds 
4631da177e4SLinus Torvalds #ifdef CONFIG_ROOT_NFS
46443717c7dSChuck Lever 
46543717c7dSChuck Lever #define NFSROOT_TIMEOUT_MIN	5
46643717c7dSChuck Lever #define NFSROOT_TIMEOUT_MAX	30
46743717c7dSChuck Lever #define NFSROOT_RETRY_MAX	5
46843717c7dSChuck Lever 
4691da177e4SLinus Torvalds static int __init mount_nfs_root(void)
4701da177e4SLinus Torvalds {
47156463e50SChuck Lever 	char *root_dev, *root_data;
47243717c7dSChuck Lever 	unsigned int timeout;
47343717c7dSChuck Lever 	int try, err;
4741da177e4SLinus Torvalds 
47543717c7dSChuck Lever 	err = nfs_root_data(&root_dev, &root_data);
47643717c7dSChuck Lever 	if (err != 0)
4771da177e4SLinus Torvalds 		return 0;
47843717c7dSChuck Lever 
47943717c7dSChuck Lever 	/*
48043717c7dSChuck Lever 	 * The server or network may not be ready, so try several
48143717c7dSChuck Lever 	 * times.  Stop after a few tries in case the client wants
48243717c7dSChuck Lever 	 * to fall back to other boot methods.
48343717c7dSChuck Lever 	 */
48443717c7dSChuck Lever 	timeout = NFSROOT_TIMEOUT_MIN;
48543717c7dSChuck Lever 	for (try = 1; ; try++) {
48643717c7dSChuck Lever 		err = do_mount_root(root_dev, "nfs",
48743717c7dSChuck Lever 					root_mountflags, root_data);
48843717c7dSChuck Lever 		if (err == 0)
48956463e50SChuck Lever 			return 1;
49043717c7dSChuck Lever 		if (try > NFSROOT_RETRY_MAX)
49143717c7dSChuck Lever 			break;
49243717c7dSChuck Lever 
49343717c7dSChuck Lever 		/* Wait, in case the server refused us immediately */
49443717c7dSChuck Lever 		ssleep(timeout);
49543717c7dSChuck Lever 		timeout <<= 1;
49643717c7dSChuck Lever 		if (timeout > NFSROOT_TIMEOUT_MAX)
49743717c7dSChuck Lever 			timeout = NFSROOT_TIMEOUT_MAX;
49843717c7dSChuck Lever 	}
49943717c7dSChuck Lever 	return 0;
5001da177e4SLinus Torvalds }
5011da177e4SLinus Torvalds #endif
5021da177e4SLinus Torvalds 
5031da177e4SLinus Torvalds #if defined(CONFIG_BLK_DEV_RAM) || defined(CONFIG_BLK_DEV_FD)
5041da177e4SLinus Torvalds void __init change_floppy(char *fmt, ...)
5051da177e4SLinus Torvalds {
5061da177e4SLinus Torvalds 	struct termios termios;
5071da177e4SLinus Torvalds 	char buf[80];
5081da177e4SLinus Torvalds 	char c;
5091da177e4SLinus Torvalds 	int fd;
5101da177e4SLinus Torvalds 	va_list args;
5111da177e4SLinus Torvalds 	va_start(args, fmt);
5121da177e4SLinus Torvalds 	vsprintf(buf, fmt, args);
5131da177e4SLinus Torvalds 	va_end(args);
514bae217eaSDominik Brodowski 	fd = ksys_open("/dev/root", O_RDWR | O_NDELAY, 0);
5151da177e4SLinus Torvalds 	if (fd >= 0) {
516cbb60b92SDominik Brodowski 		ksys_ioctl(fd, FDEJECT, 0);
5172ca2a09dSDominik Brodowski 		ksys_close(fd);
5181da177e4SLinus Torvalds 	}
5191da177e4SLinus Torvalds 	printk(KERN_NOTICE "VFS: Insert %s and press ENTER\n", buf);
520bae217eaSDominik Brodowski 	fd = ksys_open("/dev/console", O_RDWR, 0);
5211da177e4SLinus Torvalds 	if (fd >= 0) {
522cbb60b92SDominik Brodowski 		ksys_ioctl(fd, TCGETS, (long)&termios);
5231da177e4SLinus Torvalds 		termios.c_lflag &= ~ICANON;
524cbb60b92SDominik Brodowski 		ksys_ioctl(fd, TCSETSF, (long)&termios);
5253ce4a7bfSDominik Brodowski 		ksys_read(fd, &c, 1);
5261da177e4SLinus Torvalds 		termios.c_lflag |= ICANON;
527cbb60b92SDominik Brodowski 		ksys_ioctl(fd, TCSETSF, (long)&termios);
5282ca2a09dSDominik Brodowski 		ksys_close(fd);
5291da177e4SLinus Torvalds 	}
5301da177e4SLinus Torvalds }
5311da177e4SLinus Torvalds #endif
5321da177e4SLinus Torvalds 
5331da177e4SLinus Torvalds void __init mount_root(void)
5341da177e4SLinus Torvalds {
5351da177e4SLinus Torvalds #ifdef CONFIG_ROOT_NFS
536377485f6SSasha Levin 	if (ROOT_DEV == Root_NFS) {
5371da177e4SLinus Torvalds 		if (mount_nfs_root())
5381da177e4SLinus Torvalds 			return;
5391da177e4SLinus Torvalds 
5401da177e4SLinus Torvalds 		printk(KERN_ERR "VFS: Unable to mount root fs via NFS, trying floppy.\n");
5411da177e4SLinus Torvalds 		ROOT_DEV = Root_FD0;
5421da177e4SLinus Torvalds 	}
5431da177e4SLinus Torvalds #endif
5441da177e4SLinus Torvalds #ifdef CONFIG_BLK_DEV_FD
5451da177e4SLinus Torvalds 	if (MAJOR(ROOT_DEV) == FLOPPY_MAJOR) {
5461da177e4SLinus Torvalds 		/* rd_doload is 2 for a dual initrd/ramload setup */
5471da177e4SLinus Torvalds 		if (rd_doload==2) {
5481da177e4SLinus Torvalds 			if (rd_load_disk(1)) {
5491da177e4SLinus Torvalds 				ROOT_DEV = Root_RAM1;
5501da177e4SLinus Torvalds 				root_device_name = NULL;
5511da177e4SLinus Torvalds 			}
5521da177e4SLinus Torvalds 		} else
5531da177e4SLinus Torvalds 			change_floppy("root floppy");
5541da177e4SLinus Torvalds 	}
5551da177e4SLinus Torvalds #endif
5569361401eSDavid Howells #ifdef CONFIG_BLOCK
557c69e3c3aSVishnu Pratap Singh 	{
558c69e3c3aSVishnu Pratap Singh 		int err = create_dev("/dev/root", ROOT_DEV);
559c69e3c3aSVishnu Pratap Singh 
560c69e3c3aSVishnu Pratap Singh 		if (err < 0)
561c69e3c3aSVishnu Pratap Singh 			pr_emerg("Failed to create /dev/root: %d\n", err);
5621da177e4SLinus Torvalds 		mount_block_root("/dev/root", root_mountflags);
563c69e3c3aSVishnu Pratap Singh 	}
5649361401eSDavid Howells #endif
5651da177e4SLinus Torvalds }
5661da177e4SLinus Torvalds 
5671da177e4SLinus Torvalds /*
5681da177e4SLinus Torvalds  * Prepare the namespace - decide what/where to mount, load ramdisks, etc.
5691da177e4SLinus Torvalds  */
5701da177e4SLinus Torvalds void __init prepare_namespace(void)
5711da177e4SLinus Torvalds {
5721da177e4SLinus Torvalds 	int is_floppy;
5731da177e4SLinus Torvalds 
5741da177e4SLinus Torvalds 	if (root_delay) {
5751da177e4SLinus Torvalds 		printk(KERN_INFO "Waiting %d sec before mounting root device...\n",
5761da177e4SLinus Torvalds 		       root_delay);
5771da177e4SLinus Torvalds 		ssleep(root_delay);
5781da177e4SLinus Torvalds 	}
5791da177e4SLinus Torvalds 
580216773a7SArjan van de Ven 	/*
581216773a7SArjan van de Ven 	 * wait for the known devices to complete their probing
582216773a7SArjan van de Ven 	 *
583216773a7SArjan van de Ven 	 * Note: this is a potential source of long boot delays.
584216773a7SArjan van de Ven 	 * For example, it is not atypical to wait 5 seconds here
585216773a7SArjan van de Ven 	 * for the touchpad of a laptop to initialize.
586216773a7SArjan van de Ven 	 */
587216773a7SArjan van de Ven 	wait_for_device_probe();
588d779249eSGreg Kroah-Hartman 
5891da177e4SLinus Torvalds 	md_run_setup();
5901da177e4SLinus Torvalds 
5911da177e4SLinus Torvalds 	if (saved_root_name[0]) {
5921da177e4SLinus Torvalds 		root_device_name = saved_root_name;
5932d62f488SAdrian Hunter 		if (!strncmp(root_device_name, "mtd", 3) ||
5942d62f488SAdrian Hunter 		    !strncmp(root_device_name, "ubi", 3)) {
595e9482b43SJoern Engel 			mount_block_root(root_device_name, root_mountflags);
596e9482b43SJoern Engel 			goto out;
597e9482b43SJoern Engel 		}
5981da177e4SLinus Torvalds 		ROOT_DEV = name_to_dev_t(root_device_name);
5991da177e4SLinus Torvalds 		if (strncmp(root_device_name, "/dev/", 5) == 0)
6001da177e4SLinus Torvalds 			root_device_name += 5;
6011da177e4SLinus Torvalds 	}
6021da177e4SLinus Torvalds 
6031da177e4SLinus Torvalds 	if (initrd_load())
6041da177e4SLinus Torvalds 		goto out;
6051da177e4SLinus Torvalds 
606cc1ed754SPierre Ossman 	/* wait for any asynchronous scanning to complete */
607cc1ed754SPierre Ossman 	if ((ROOT_DEV == 0) && root_wait) {
608cc1ed754SPierre Ossman 		printk(KERN_INFO "Waiting for root device %s...\n",
609cc1ed754SPierre Ossman 			saved_root_name);
610cc1ed754SPierre Ossman 		while (driver_probe_done() != 0 ||
611cc1ed754SPierre Ossman 			(ROOT_DEV = name_to_dev_t(saved_root_name)) == 0)
61239a0e975SJungseung Lee 			msleep(5);
613216773a7SArjan van de Ven 		async_synchronize_full();
614cc1ed754SPierre Ossman 	}
615cc1ed754SPierre Ossman 
616cc1ed754SPierre Ossman 	is_floppy = MAJOR(ROOT_DEV) == FLOPPY_MAJOR;
617cc1ed754SPierre Ossman 
6181da177e4SLinus Torvalds 	if (is_floppy && rd_doload && rd_load_disk(0))
6191da177e4SLinus Torvalds 		ROOT_DEV = Root_RAM0;
6201da177e4SLinus Torvalds 
6211da177e4SLinus Torvalds 	mount_root();
6221da177e4SLinus Torvalds out:
6232b2af54aSKay Sievers 	devtmpfs_mount("dev");
624312db1aaSDominik Brodowski 	ksys_mount(".", "/", NULL, MS_MOVE, NULL);
625a16fe33aSDominik Brodowski 	ksys_chroot(".");
6261da177e4SLinus Torvalds }
62757f150a5SRob Landley 
6286e19ededSRob Landley static bool is_tmpfs;
62957f150a5SRob Landley static struct dentry *rootfs_mount(struct file_system_type *fs_type,
63057f150a5SRob Landley 	int flags, const char *dev_name, void *data)
63157f150a5SRob Landley {
6326e19ededSRob Landley 	void *fill = ramfs_fill_super;
63357f150a5SRob Landley 
6346e19ededSRob Landley 	if (IS_ENABLED(CONFIG_TMPFS) && is_tmpfs)
6356e19ededSRob Landley 		fill = shmem_fill_super;
6366e19ededSRob Landley 
6376e19ededSRob Landley 	return mount_nodev(fs_type, flags, data, fill);
63857f150a5SRob Landley }
63957f150a5SRob Landley 
640fd3e007fSAl Viro struct file_system_type rootfs_fs_type = {
64157f150a5SRob Landley 	.name		= "rootfs",
64257f150a5SRob Landley 	.mount		= rootfs_mount,
64357f150a5SRob Landley 	.kill_sb	= kill_litter_super,
64457f150a5SRob Landley };
64557f150a5SRob Landley 
646037f11b4SAl Viro void __init init_rootfs(void)
64757f150a5SRob Landley {
6486e19ededSRob Landley 	if (IS_ENABLED(CONFIG_TMPFS) && !saved_root_name[0] &&
649037f11b4SAl Viro 		(!root_fs_names || strstr(root_fs_names, "tmpfs")))
6506e19ededSRob Landley 		is_tmpfs = true;
6516e19ededSRob Landley }
652