Linux Audio

Check our new training course

Loading...
  1// SPDX-License-Identifier: GPL-2.0-only
  2#include <linux/module.h>
  3#include <linux/sched.h>
  4#include <linux/ctype.h>
  5#include <linux/fd.h>
  6#include <linux/tty.h>
  7#include <linux/suspend.h>
  8#include <linux/root_dev.h>
  9#include <linux/security.h>
 10#include <linux/delay.h>
 11#include <linux/genhd.h>
 12#include <linux/mount.h>
 13#include <linux/device.h>
 14#include <linux/init.h>
 15#include <linux/fs.h>
 16#include <linux/initrd.h>
 17#include <linux/async.h>
 18#include <linux/fs_struct.h>
 19#include <linux/slab.h>
 20#include <linux/ramfs.h>
 21#include <linux/shmem_fs.h>
 22
 23#include <linux/nfs_fs.h>
 24#include <linux/nfs_fs_sb.h>
 25#include <linux/nfs_mount.h>
 
 26#include <uapi/linux/mount.h>
 27
 28#include "do_mounts.h"
 29
 30int __initdata rd_doload;	/* 1 = load RAM disk, 0 = don't load */
 31
 32int root_mountflags = MS_RDONLY | MS_SILENT;
 33static char * __initdata root_device_name;
 34static char __initdata saved_root_name[64];
 35static int root_wait;
 36
 37dev_t ROOT_DEV;
 38
 39static int __init load_ramdisk(char *str)
 40{
 41	rd_doload = simple_strtol(str,NULL,0) & 3;
 42	return 1;
 43}
 44__setup("load_ramdisk=", load_ramdisk);
 45
 46static int __init readonly(char *str)
 47{
 48	if (*str)
 49		return 0;
 50	root_mountflags |= MS_RDONLY;
 51	return 1;
 52}
 53
 54static int __init readwrite(char *str)
 55{
 56	if (*str)
 57		return 0;
 58	root_mountflags &= ~MS_RDONLY;
 59	return 1;
 60}
 61
 62__setup("ro", readonly);
 63__setup("rw", readwrite);
 64
 65#ifdef CONFIG_BLOCK
 66struct uuidcmp {
 67	const char *uuid;
 68	int len;
 69};
 70
 71/**
 72 * match_dev_by_uuid - callback for finding a partition using its uuid
 73 * @dev:	device passed in by the caller
 74 * @data:	opaque pointer to the desired struct uuidcmp to match
 75 *
 76 * Returns 1 if the device matches, and 0 otherwise.
 77 */
 78static int match_dev_by_uuid(struct device *dev, const void *data)
 79{
 
 80	const struct uuidcmp *cmp = data;
 81	struct hd_struct *part = dev_to_part(dev);
 82
 83	if (!part->info)
 84		goto no_match;
 85
 86	if (strncasecmp(cmp->uuid, part->info->uuid, cmp->len))
 87		goto no_match;
 88
 
 
 
 89	return 1;
 90no_match:
 91	return 0;
 92}
 93
 94
 95/**
 96 * devt_from_partuuid - looks up the dev_t of a partition by its UUID
 97 * @uuid_str:	char array containing ascii UUID
 98 *
 99 * The function will return the first partition which contains a matching
100 * UUID value in its partition_meta_info struct.  This does not search
101 * by filesystem UUIDs.
102 *
103 * If @uuid_str is followed by a "/PARTNROFF=%d", then the number will be
104 * extracted and used as an offset from the partition identified by the UUID.
105 *
106 * Returns the matching dev_t on success or 0 on failure.
107 */
108static dev_t devt_from_partuuid(const char *uuid_str)
109{
110	dev_t res = 0;
111	struct uuidcmp cmp;
112	struct device *dev = NULL;
113	struct gendisk *disk;
114	struct hd_struct *part;
115	int offset = 0;
116	bool clear_root_wait = false;
117	char *slash;
118
119	cmp.uuid = uuid_str;
120
121	slash = strchr(uuid_str, '/');
122	/* Check for optional partition number offset attributes. */
123	if (slash) {
124		char c = 0;
 
125		/* Explicitly fail on poor PARTUUID syntax. */
126		if (sscanf(slash + 1,
127			   "PARTNROFF=%d%c", &offset, &c) != 1) {
128			clear_root_wait = true;
129			goto done;
130		}
131		cmp.len = slash - uuid_str;
132	} else {
133		cmp.len = strlen(uuid_str);
134	}
135
136	if (!cmp.len) {
137		clear_root_wait = true;
138		goto done;
139	}
140
141	dev = class_find_device(&block_class, NULL, &cmp,
142				&match_dev_by_uuid);
143	if (!dev)
144		goto done;
145
146	res = dev->devt;
147
148	/* Attempt to find the partition by offset. */
149	if (!offset)
150		goto no_offset;
151
152	res = 0;
153	disk = part_to_disk(dev_to_part(dev));
154	part = disk_get_part(disk, dev_to_part(dev)->partno + offset);
155	if (part) {
156		res = part_devt(part);
157		put_device(part_to_dev(part));
 
 
 
158	}
159
160no_offset:
161	put_device(dev);
162done:
163	if (clear_root_wait) {
164		pr_err("VFS: PARTUUID= is invalid.\n"
165		       "Expected PARTUUID=<valid-uuid-id>[/PARTNROFF=%%d]\n");
166		if (root_wait)
167			pr_err("Disabling rootwait; root= is invalid.\n");
168		root_wait = 0;
169	}
170	return res;
171}
172
173/**
174 * match_dev_by_label - callback for finding a partition using its label
175 * @dev:	device passed in by the caller
176 * @data:	opaque pointer to the label to match
177 *
178 * Returns 1 if the device matches, and 0 otherwise.
179 */
180static int match_dev_by_label(struct device *dev, const void *data)
181{
 
182	const char *label = data;
183	struct hd_struct *part = dev_to_part(dev);
184
185	if (part->info && !strcmp(label, part->info->volname))
186		return 1;
 
 
187
188	return 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
189}
190#endif
191
192/*
193 *	Convert a name into device number.  We accept the following variants:
194 *
195 *	1) <hex_major><hex_minor> device number in hexadecimal represents itself
196 *         no leading 0x, for example b302.
197 *	2) /dev/nfs represents Root_NFS (0xff)
198 *	3) /dev/<disk_name> represents the device number of disk
199 *	4) /dev/<disk_name><decimal> represents the device number
200 *         of partition - device number of disk plus the partition number
201 *	5) /dev/<disk_name>p<decimal> - same as the above, that form is
202 *	   used when disk name of partitioned disk ends on a digit.
203 *	6) PARTUUID=00112233-4455-6677-8899-AABBCCDDEEFF representing the
204 *	   unique id of a partition if the partition table provides it.
205 *	   The UUID may be either an EFI/GPT UUID, or refer to an MSDOS
206 *	   partition using the format SSSSSSSS-PP, where SSSSSSSS is a zero-
207 *	   filled hex representation of the 32-bit "NT disk signature", and PP
208 *	   is a zero-filled hex representation of the 1-based partition number.
209 *	7) PARTUUID=<UUID>/PARTNROFF=<int> to select a partition in relation to
210 *	   a partition with a known unique id.
211 *	8) <major>:<minor> major and minor number of the device separated by
212 *	   a colon.
213 *	9) PARTLABEL=<name> with name being the GPT partition label.
214 *	   MSDOS partitions do not support labels!
 
215 *
216 *	If name doesn't have fall into the categories above, we return (0,0).
217 *	block_class is used to check if something is a disk name. If the disk
218 *	name contains slashes, the device name has them replaced with
219 *	bangs.
220 */
221
222dev_t name_to_dev_t(const char *name)
223{
224	char s[32];
225	char *p;
226	dev_t res = 0;
227	int part;
228
 
229#ifdef CONFIG_BLOCK
230	if (strncmp(name, "PARTUUID=", 9) == 0) {
231		name += 9;
232		res = devt_from_partuuid(name);
233		if (!res)
234			goto fail;
235		goto done;
236	} else if (strncmp(name, "PARTLABEL=", 10) == 0) {
237		struct device *dev;
238
239		dev = class_find_device(&block_class, NULL, name + 10,
240					&match_dev_by_label);
241		if (!dev)
242			goto fail;
243
244		res = dev->devt;
245		put_device(dev);
246		goto done;
247	}
248#endif
249
250	if (strncmp(name, "/dev/", 5) != 0) {
251		unsigned maj, min, offset;
252		char dummy;
253
254		if ((sscanf(name, "%u:%u%c", &maj, &min, &dummy) == 2) ||
255		    (sscanf(name, "%u:%u:%u:%c", &maj, &min, &offset, &dummy) == 3)) {
256			res = MKDEV(maj, min);
257			if (maj != MAJOR(res) || min != MINOR(res))
258				goto fail;
259		} else {
260			res = new_decode_dev(simple_strtoul(name, &p, 16));
261			if (*p)
262				goto fail;
263		}
264		goto done;
265	}
266
267	name += 5;
268	res = Root_NFS;
269	if (strcmp(name, "nfs") == 0)
270		goto done;
271	res = Root_RAM0;
272	if (strcmp(name, "ram") == 0)
273		goto done;
274
275	if (strlen(name) > 31)
276		goto fail;
277	strcpy(s, name);
278	for (p = s; *p; p++)
279		if (*p == '/')
280			*p = '!';
281	res = blk_lookup_devt(s, 0);
282	if (res)
283		goto done;
284
285	/*
286	 * try non-existent, but valid partition, which may only exist
287	 * after revalidating the disk, like partitioned md devices
288	 */
289	while (p > s && isdigit(p[-1]))
290		p--;
291	if (p == s || !*p || *p == '0')
292		goto fail;
293
294	/* try disk name without <part number> */
295	part = simple_strtoul(p, NULL, 10);
296	*p = '\0';
297	res = blk_lookup_devt(s, part);
298	if (res)
299		goto done;
300
301	/* try disk name without p<part number> */
302	if (p < s + 2 || !isdigit(p[-2]) || p[-1] != 'p')
303		goto fail;
304	p[-1] = '\0';
305	res = blk_lookup_devt(s, part);
306	if (res)
307		goto done;
308
309fail:
310	return 0;
311done:
312	return res;
313}
314EXPORT_SYMBOL_GPL(name_to_dev_t);
315
316static int __init root_dev_setup(char *line)
317{
318	strlcpy(saved_root_name, line, sizeof(saved_root_name));
319	return 1;
320}
321
322__setup("root=", root_dev_setup);
323
324static int __init rootwait_setup(char *str)
325{
326	if (*str)
327		return 0;
328	root_wait = 1;
329	return 1;
330}
331
332__setup("rootwait", rootwait_setup);
333
334static char * __initdata root_mount_data;
335static int __init root_data_setup(char *str)
336{
337	root_mount_data = str;
338	return 1;
339}
340
341static char * __initdata root_fs_names;
342static int __init fs_names_setup(char *str)
343{
344	root_fs_names = str;
345	return 1;
346}
347
348static unsigned int __initdata root_delay;
349static int __init root_delay_setup(char *str)
350{
351	root_delay = simple_strtoul(str, NULL, 0);
352	return 1;
353}
354
355__setup("rootflags=", root_data_setup);
356__setup("rootfstype=", fs_names_setup);
357__setup("rootdelay=", root_delay_setup);
358
359static void __init get_fs_names(char *page)
 
360{
361	char *s = page;
 
362
363	if (root_fs_names) {
364		strcpy(page, root_fs_names);
365		while (*s++) {
366			if (s[-1] == ',')
367				s[-1] = '\0';
368		}
369	} else {
370		int len = get_filesystem_list(page);
371		char *p, *next;
372
373		page[len] = '\0';
374		for (p = page-1; p; p = next) {
375			next = strchr(++p, '\n');
376			if (*p++ != '\t')
377				continue;
378			while ((*s++ = *p++) != '\n')
379				;
380			s[-1] = '\0';
381		}
382	}
383	*s = '\0';
 
384}
385
386static int __init do_mount_root(char *name, char *fs, int flags, void *data)
 
387{
388	struct super_block *s;
389	int err = ksys_mount(name, "/root", fs, flags, data);
390	if (err)
391		return err;
 
 
 
 
 
 
 
 
 
 
392
393	ksys_chdir("/root");
 
 
 
 
394	s = current->fs->pwd.dentry->d_sb;
395	ROOT_DEV = s->s_dev;
396	printk(KERN_INFO
397	       "VFS: Mounted root (%s filesystem)%s on device %u:%u.\n",
398	       s->s_type->name,
399	       sb_rdonly(s) ? " readonly" : "",
400	       MAJOR(ROOT_DEV), MINOR(ROOT_DEV));
401	return 0;
 
 
 
 
402}
403
404void __init mount_block_root(char *name, int flags)
405{
406	struct page *page = alloc_page(GFP_KERNEL);
407	char *fs_names = page_address(page);
408	char *p;
409#ifdef CONFIG_BLOCK
410	char b[BDEVNAME_SIZE];
411#else
412	const char *b = name;
413#endif
414
415	get_fs_names(fs_names);
 
 
 
 
 
416retry:
417	for (p = fs_names; *p; p += strlen(p)+1) {
418		int err = do_mount_root(name, p, flags, root_mount_data);
 
 
 
 
419		switch (err) {
420			case 0:
421				goto out;
422			case -EACCES:
423			case -EINVAL:
424				continue;
425		}
426	        /*
427		 * Allow the user to distinguish between failed sys_open
428		 * and bad superblock on root device.
429		 * and give them a list of the available devices
430		 */
431#ifdef CONFIG_BLOCK
432		__bdevname(ROOT_DEV, b);
433#endif
434		printk("VFS: Cannot open root device \"%s\" or %s: error %d\n",
435				root_device_name, b, err);
436		printk("Please append a correct \"root=\" boot option; here are the available partitions:\n");
437
438		printk_all_partitions();
439#ifdef CONFIG_DEBUG_BLOCK_EXT_DEVT
440		printk("DEBUG_BLOCK_EXT_DEVT is enabled, you need to specify "
441		       "explicit textual name for \"root=\" boot option.\n");
442#endif
443		panic("VFS: Unable to mount root fs on %s", b);
444	}
445	if (!(flags & SB_RDONLY)) {
446		flags |= SB_RDONLY;
447		goto retry;
448	}
449
450	printk("List of all partitions:\n");
451	printk_all_partitions();
452	printk("No filesystem could mount root, tried: ");
453	for (p = fs_names; *p; p += strlen(p)+1)
454		printk(" %s", p);
455	printk("\n");
456#ifdef CONFIG_BLOCK
457	__bdevname(ROOT_DEV, b);
458#endif
459	panic("VFS: Unable to mount root fs on %s", b);
460out:
461	put_page(page);
462}
463 
464#ifdef CONFIG_ROOT_NFS
465
466#define NFSROOT_TIMEOUT_MIN	5
467#define NFSROOT_TIMEOUT_MAX	30
468#define NFSROOT_RETRY_MAX	5
469
470static int __init mount_nfs_root(void)
471{
472	char *root_dev, *root_data;
473	unsigned int timeout;
474	int try, err;
475
476	err = nfs_root_data(&root_dev, &root_data);
477	if (err != 0)
478		return 0;
479
480	/*
481	 * The server or network may not be ready, so try several
482	 * times.  Stop after a few tries in case the client wants
483	 * to fall back to other boot methods.
484	 */
485	timeout = NFSROOT_TIMEOUT_MIN;
486	for (try = 1; ; try++) {
487		err = do_mount_root(root_dev, "nfs",
488					root_mountflags, root_data);
489		if (err == 0)
490			return 1;
491		if (try > NFSROOT_RETRY_MAX)
492			break;
493
494		/* Wait, in case the server refused us immediately */
495		ssleep(timeout);
496		timeout <<= 1;
497		if (timeout > NFSROOT_TIMEOUT_MAX)
498			timeout = NFSROOT_TIMEOUT_MAX;
499	}
500	return 0;
501}
502#endif
503
504#if defined(CONFIG_BLK_DEV_RAM) || defined(CONFIG_BLK_DEV_FD)
505void __init change_floppy(char *fmt, ...)
 
 
 
 
 
 
 
506{
507	struct termios termios;
508	char buf[80];
509	char c;
510	int fd;
511	va_list args;
512	va_start(args, fmt);
513	vsprintf(buf, fmt, args);
514	va_end(args);
515	fd = ksys_open("/dev/root", O_RDWR | O_NDELAY, 0);
516	if (fd >= 0) {
517		ksys_ioctl(fd, FDEJECT, 0);
518		ksys_close(fd);
519	}
520	printk(KERN_NOTICE "VFS: Insert %s and press ENTER\n", buf);
521	fd = ksys_open("/dev/console", O_RDWR, 0);
522	if (fd >= 0) {
523		ksys_ioctl(fd, TCGETS, (long)&termios);
524		termios.c_lflag &= ~ICANON;
525		ksys_ioctl(fd, TCSETSF, (long)&termios);
526		ksys_read(fd, &c, 1);
527		termios.c_lflag |= ICANON;
528		ksys_ioctl(fd, TCSETSF, (long)&termios);
529		ksys_close(fd);
530	}
 
531}
532#endif
533
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
534void __init mount_root(void)
535{
536#ifdef CONFIG_ROOT_NFS
537	if (ROOT_DEV == Root_NFS) {
538		if (mount_nfs_root())
539			return;
540
541		printk(KERN_ERR "VFS: Unable to mount root fs via NFS, trying floppy.\n");
542		ROOT_DEV = Root_FD0;
543	}
544#endif
545#ifdef CONFIG_BLK_DEV_FD
546	if (MAJOR(ROOT_DEV) == FLOPPY_MAJOR) {
547		/* rd_doload is 2 for a dual initrd/ramload setup */
548		if (rd_doload==2) {
549			if (rd_load_disk(1)) {
550				ROOT_DEV = Root_RAM1;
551				root_device_name = NULL;
552			}
553		} else
554			change_floppy("root floppy");
555	}
556#endif
 
 
 
 
557#ifdef CONFIG_BLOCK
558	{
559		int err = create_dev("/dev/root", ROOT_DEV);
560
561		if (err < 0)
562			pr_emerg("Failed to create /dev/root: %d\n", err);
563		mount_block_root("/dev/root", root_mountflags);
564	}
565#endif
566}
567
568/*
569 * Prepare the namespace - decide what/where to mount, load ramdisks, etc.
570 */
571void __init prepare_namespace(void)
572{
573	int is_floppy;
574
575	if (root_delay) {
576		printk(KERN_INFO "Waiting %d sec before mounting root device...\n",
577		       root_delay);
578		ssleep(root_delay);
579	}
580
581	/*
582	 * wait for the known devices to complete their probing
583	 *
584	 * Note: this is a potential source of long boot delays.
585	 * For example, it is not atypical to wait 5 seconds here
586	 * for the touchpad of a laptop to initialize.
587	 */
588	wait_for_device_probe();
589
590	md_run_setup();
591
592	if (saved_root_name[0]) {
593		root_device_name = saved_root_name;
594		if (!strncmp(root_device_name, "mtd", 3) ||
595		    !strncmp(root_device_name, "ubi", 3)) {
596			mount_block_root(root_device_name, root_mountflags);
597			goto out;
598		}
599		ROOT_DEV = name_to_dev_t(root_device_name);
600		if (strncmp(root_device_name, "/dev/", 5) == 0)
601			root_device_name += 5;
602	}
603
604	if (initrd_load())
605		goto out;
606
607	/* wait for any asynchronous scanning to complete */
608	if ((ROOT_DEV == 0) && root_wait) {
609		printk(KERN_INFO "Waiting for root device %s...\n",
610			saved_root_name);
611		while (driver_probe_done() != 0 ||
612			(ROOT_DEV = name_to_dev_t(saved_root_name)) == 0)
613			msleep(5);
614		async_synchronize_full();
615	}
616
617	is_floppy = MAJOR(ROOT_DEV) == FLOPPY_MAJOR;
618
619	if (is_floppy && rd_doload && rd_load_disk(0))
620		ROOT_DEV = Root_RAM0;
621
622	mount_root();
623out:
624	devtmpfs_mount("dev");
625	ksys_mount(".", "/", NULL, MS_MOVE, NULL);
626	ksys_chroot(".");
627}
628
629static bool is_tmpfs;
630static int rootfs_init_fs_context(struct fs_context *fc)
631{
632	if (IS_ENABLED(CONFIG_TMPFS) && is_tmpfs)
633		return shmem_init_fs_context(fc);
634
635	return ramfs_init_fs_context(fc);
636}
637
638struct file_system_type rootfs_fs_type = {
639	.name		= "rootfs",
640	.init_fs_context = rootfs_init_fs_context,
641	.kill_sb	= kill_litter_super,
642};
643
644void __init init_rootfs(void)
645{
646	if (IS_ENABLED(CONFIG_TMPFS) && !saved_root_name[0] &&
647		(!root_fs_names || strstr(root_fs_names, "tmpfs")))
648		is_tmpfs = true;
649}
  1// SPDX-License-Identifier: GPL-2.0-only
  2#include <linux/module.h>
  3#include <linux/sched.h>
  4#include <linux/ctype.h>
  5#include <linux/fd.h>
  6#include <linux/tty.h>
  7#include <linux/suspend.h>
  8#include <linux/root_dev.h>
  9#include <linux/security.h>
 10#include <linux/delay.h>
 
 11#include <linux/mount.h>
 12#include <linux/device.h>
 13#include <linux/init.h>
 14#include <linux/fs.h>
 15#include <linux/initrd.h>
 16#include <linux/async.h>
 17#include <linux/fs_struct.h>
 18#include <linux/slab.h>
 19#include <linux/ramfs.h>
 20#include <linux/shmem_fs.h>
 21
 22#include <linux/nfs_fs.h>
 23#include <linux/nfs_fs_sb.h>
 24#include <linux/nfs_mount.h>
 25#include <linux/raid/detect.h>
 26#include <uapi/linux/mount.h>
 27
 28#include "do_mounts.h"
 29
 
 
 30int root_mountflags = MS_RDONLY | MS_SILENT;
 31static char * __initdata root_device_name;
 32static char __initdata saved_root_name[64];
 33static int root_wait;
 34
 35dev_t ROOT_DEV;
 36
 37static int __init load_ramdisk(char *str)
 38{
 39	pr_warn("ignoring the deprecated load_ramdisk= option\n");
 40	return 1;
 41}
 42__setup("load_ramdisk=", load_ramdisk);
 43
 44static int __init readonly(char *str)
 45{
 46	if (*str)
 47		return 0;
 48	root_mountflags |= MS_RDONLY;
 49	return 1;
 50}
 51
 52static int __init readwrite(char *str)
 53{
 54	if (*str)
 55		return 0;
 56	root_mountflags &= ~MS_RDONLY;
 57	return 1;
 58}
 59
 60__setup("ro", readonly);
 61__setup("rw", readwrite);
 62
 63#ifdef CONFIG_BLOCK
 64struct uuidcmp {
 65	const char *uuid;
 66	int len;
 67};
 68
 69/**
 70 * match_dev_by_uuid - callback for finding a partition using its uuid
 71 * @dev:	device passed in by the caller
 72 * @data:	opaque pointer to the desired struct uuidcmp to match
 73 *
 74 * Returns 1 if the device matches, and 0 otherwise.
 75 */
 76static int match_dev_by_uuid(struct device *dev, const void *data)
 77{
 78	struct block_device *bdev = dev_to_bdev(dev);
 79	const struct uuidcmp *cmp = data;
 
 
 
 
 
 
 
 80
 81	if (!bdev->bd_meta_info ||
 82	    strncasecmp(cmp->uuid, bdev->bd_meta_info->uuid, cmp->len))
 83		return 0;
 84	return 1;
 
 
 85}
 86
 
 87/**
 88 * devt_from_partuuid - looks up the dev_t of a partition by its UUID
 89 * @uuid_str:	char array containing ascii UUID
 90 *
 91 * The function will return the first partition which contains a matching
 92 * UUID value in its partition_meta_info struct.  This does not search
 93 * by filesystem UUIDs.
 94 *
 95 * If @uuid_str is followed by a "/PARTNROFF=%d", then the number will be
 96 * extracted and used as an offset from the partition identified by the UUID.
 97 *
 98 * Returns the matching dev_t on success or 0 on failure.
 99 */
100static dev_t devt_from_partuuid(const char *uuid_str)
101{
 
102	struct uuidcmp cmp;
103	struct device *dev = NULL;
104	dev_t devt = 0;
 
105	int offset = 0;
 
106	char *slash;
107
108	cmp.uuid = uuid_str;
109
110	slash = strchr(uuid_str, '/');
111	/* Check for optional partition number offset attributes. */
112	if (slash) {
113		char c = 0;
114
115		/* Explicitly fail on poor PARTUUID syntax. */
116		if (sscanf(slash + 1, "PARTNROFF=%d%c", &offset, &c) != 1)
117			goto clear_root_wait;
 
 
 
118		cmp.len = slash - uuid_str;
119	} else {
120		cmp.len = strlen(uuid_str);
121	}
122
123	if (!cmp.len)
124		goto clear_root_wait;
 
 
125
126	dev = class_find_device(&block_class, NULL, &cmp, &match_dev_by_uuid);
 
127	if (!dev)
128		return 0;
 
 
 
 
 
 
129
130	if (offset) {
131		/*
132		 * Attempt to find the requested partition by adding an offset
133		 * to the partition number found by UUID.
134		 */
135		devt = part_devt(dev_to_disk(dev),
136				 dev_to_bdev(dev)->bd_partno + offset);
137	} else {
138		devt = dev->devt;
139	}
140
 
141	put_device(dev);
142	return devt;
143
144clear_root_wait:
145	pr_err("VFS: PARTUUID= is invalid.\n"
146	       "Expected PARTUUID=<valid-uuid-id>[/PARTNROFF=%%d]\n");
147	if (root_wait)
148		pr_err("Disabling rootwait; root= is invalid.\n");
149	root_wait = 0;
150	return 0;
151}
152
153/**
154 * match_dev_by_label - callback for finding a partition using its label
155 * @dev:	device passed in by the caller
156 * @data:	opaque pointer to the label to match
157 *
158 * Returns 1 if the device matches, and 0 otherwise.
159 */
160static int match_dev_by_label(struct device *dev, const void *data)
161{
162	struct block_device *bdev = dev_to_bdev(dev);
163	const char *label = data;
 
164
165	if (!bdev->bd_meta_info || strcmp(label, bdev->bd_meta_info->volname))
166		return 0;
167	return 1;
168}
169
170static dev_t devt_from_partlabel(const char *label)
171{
172	struct device *dev;
173	dev_t devt = 0;
174
175	dev = class_find_device(&block_class, NULL, label, &match_dev_by_label);
176	if (dev) {
177		devt = dev->devt;
178		put_device(dev);
179	}
180
181	return devt;
182}
183
184static dev_t devt_from_devname(const char *name)
185{
186	dev_t devt = 0;
187	int part;
188	char s[32];
189	char *p;
190
191	if (strlen(name) > 31)
192		return 0;
193	strcpy(s, name);
194	for (p = s; *p; p++) {
195		if (*p == '/')
196			*p = '!';
197	}
198
199	devt = blk_lookup_devt(s, 0);
200	if (devt)
201		return devt;
202
203	/*
204	 * Try non-existent, but valid partition, which may only exist after
205	 * opening the device, like partitioned md devices.
206	 */
207	while (p > s && isdigit(p[-1]))
208		p--;
209	if (p == s || !*p || *p == '0')
210		return 0;
211
212	/* try disk name without <part number> */
213	part = simple_strtoul(p, NULL, 10);
214	*p = '\0';
215	devt = blk_lookup_devt(s, part);
216	if (devt)
217		return devt;
218
219	/* try disk name without p<part number> */
220	if (p < s + 2 || !isdigit(p[-2]) || p[-1] != 'p')
221		return 0;
222	p[-1] = '\0';
223	return blk_lookup_devt(s, part);
224}
225#endif /* CONFIG_BLOCK */
226
227static dev_t devt_from_devnum(const char *name)
228{
229	unsigned maj, min, offset;
230	dev_t devt = 0;
231	char *p, dummy;
232
233	if (sscanf(name, "%u:%u%c", &maj, &min, &dummy) == 2 ||
234	    sscanf(name, "%u:%u:%u:%c", &maj, &min, &offset, &dummy) == 3) {
235		devt = MKDEV(maj, min);
236		if (maj != MAJOR(devt) || min != MINOR(devt))
237			return 0;
238	} else {
239		devt = new_decode_dev(simple_strtoul(name, &p, 16));
240		if (*p)
241			return 0;
242	}
243
244	return devt;
245}
 
246
247/*
248 *	Convert a name into device number.  We accept the following variants:
249 *
250 *	1) <hex_major><hex_minor> device number in hexadecimal represents itself
251 *         no leading 0x, for example b302.
252 *	2) /dev/nfs represents Root_NFS (0xff)
253 *	3) /dev/<disk_name> represents the device number of disk
254 *	4) /dev/<disk_name><decimal> represents the device number
255 *         of partition - device number of disk plus the partition number
256 *	5) /dev/<disk_name>p<decimal> - same as the above, that form is
257 *	   used when disk name of partitioned disk ends on a digit.
258 *	6) PARTUUID=00112233-4455-6677-8899-AABBCCDDEEFF representing the
259 *	   unique id of a partition if the partition table provides it.
260 *	   The UUID may be either an EFI/GPT UUID, or refer to an MSDOS
261 *	   partition using the format SSSSSSSS-PP, where SSSSSSSS is a zero-
262 *	   filled hex representation of the 32-bit "NT disk signature", and PP
263 *	   is a zero-filled hex representation of the 1-based partition number.
264 *	7) PARTUUID=<UUID>/PARTNROFF=<int> to select a partition in relation to
265 *	   a partition with a known unique id.
266 *	8) <major>:<minor> major and minor number of the device separated by
267 *	   a colon.
268 *	9) PARTLABEL=<name> with name being the GPT partition label.
269 *	   MSDOS partitions do not support labels!
270 *	10) /dev/cifs represents Root_CIFS (0xfe)
271 *
272 *	If name doesn't have fall into the categories above, we return (0,0).
273 *	block_class is used to check if something is a disk name. If the disk
274 *	name contains slashes, the device name has them replaced with
275 *	bangs.
276 */
 
277dev_t name_to_dev_t(const char *name)
278{
279	if (strcmp(name, "/dev/nfs") == 0)
280		return Root_NFS;
281	if (strcmp(name, "/dev/cifs") == 0)
282		return Root_CIFS;
283	if (strcmp(name, "/dev/ram") == 0)
284		return Root_RAM0;
285#ifdef CONFIG_BLOCK
286	if (strncmp(name, "PARTUUID=", 9) == 0)
287		return devt_from_partuuid(name + 9);
288	if (strncmp(name, "PARTLABEL=", 10) == 0)
289		return devt_from_partlabel(name + 10);
290	if (strncmp(name, "/dev/", 5) == 0)
291		return devt_from_devname(name + 5);
 
 
 
 
 
 
 
 
 
 
 
 
292#endif
293	return devt_from_devnum(name);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
294}
295EXPORT_SYMBOL_GPL(name_to_dev_t);
296
297static int __init root_dev_setup(char *line)
298{
299	strscpy(saved_root_name, line, sizeof(saved_root_name));
300	return 1;
301}
302
303__setup("root=", root_dev_setup);
304
305static int __init rootwait_setup(char *str)
306{
307	if (*str)
308		return 0;
309	root_wait = 1;
310	return 1;
311}
312
313__setup("rootwait", rootwait_setup);
314
315static char * __initdata root_mount_data;
316static int __init root_data_setup(char *str)
317{
318	root_mount_data = str;
319	return 1;
320}
321
322static char * __initdata root_fs_names;
323static int __init fs_names_setup(char *str)
324{
325	root_fs_names = str;
326	return 1;
327}
328
329static unsigned int __initdata root_delay;
330static int __init root_delay_setup(char *str)
331{
332	root_delay = simple_strtoul(str, NULL, 0);
333	return 1;
334}
335
336__setup("rootflags=", root_data_setup);
337__setup("rootfstype=", fs_names_setup);
338__setup("rootdelay=", root_delay_setup);
339
340/* This can return zero length strings. Caller should check */
341static int __init split_fs_names(char *page, size_t size, char *names)
342{
343	int count = 1;
344	char *p = page;
345
346	strscpy(p, root_fs_names, size);
347	while (*p++) {
348		if (p[-1] == ',') {
349			p[-1] = '\0';
350			count++;
 
 
 
 
 
 
 
 
 
 
 
 
 
351		}
352	}
353
354	return count;
355}
356
357static int __init do_mount_root(const char *name, const char *fs,
358				 const int flags, const void *data)
359{
360	struct super_block *s;
361	struct page *p = NULL;
362	char *data_page = NULL;
363	int ret;
364
365	if (data) {
366		/* init_mount() requires a full page as fifth argument */
367		p = alloc_page(GFP_KERNEL);
368		if (!p)
369			return -ENOMEM;
370		data_page = page_address(p);
371		/* zero-pad. init_mount() will make sure it's terminated */
372		strncpy(data_page, data, PAGE_SIZE);
373	}
374
375	ret = init_mount(name, "/root", fs, flags, data_page);
376	if (ret)
377		goto out;
378
379	init_chdir("/root");
380	s = current->fs->pwd.dentry->d_sb;
381	ROOT_DEV = s->s_dev;
382	printk(KERN_INFO
383	       "VFS: Mounted root (%s filesystem)%s on device %u:%u.\n",
384	       s->s_type->name,
385	       sb_rdonly(s) ? " readonly" : "",
386	       MAJOR(ROOT_DEV), MINOR(ROOT_DEV));
387
388out:
389	if (p)
390		put_page(p);
391	return ret;
392}
393
394void __init mount_block_root(char *name, int flags)
395{
396	struct page *page = alloc_page(GFP_KERNEL);
397	char *fs_names = page_address(page);
398	char *p;
 
399	char b[BDEVNAME_SIZE];
400	int num_fs, i;
 
 
401
402	scnprintf(b, BDEVNAME_SIZE, "unknown-block(%u,%u)",
403		  MAJOR(ROOT_DEV), MINOR(ROOT_DEV));
404	if (root_fs_names)
405		num_fs = split_fs_names(fs_names, PAGE_SIZE, root_fs_names);
406	else
407		num_fs = list_bdev_fs_names(fs_names, PAGE_SIZE);
408retry:
409	for (i = 0, p = fs_names; i < num_fs; i++, p += strlen(p)+1) {
410		int err;
411
412		if (!*p)
413			continue;
414		err = do_mount_root(name, p, flags, root_mount_data);
415		switch (err) {
416			case 0:
417				goto out;
418			case -EACCES:
419			case -EINVAL:
420				continue;
421		}
422	        /*
423		 * Allow the user to distinguish between failed sys_open
424		 * and bad superblock on root device.
425		 * and give them a list of the available devices
426		 */
 
 
 
427		printk("VFS: Cannot open root device \"%s\" or %s: error %d\n",
428				root_device_name, b, err);
429		printk("Please append a correct \"root=\" boot option; here are the available partitions:\n");
430
431		printk_all_partitions();
 
 
 
 
432		panic("VFS: Unable to mount root fs on %s", b);
433	}
434	if (!(flags & SB_RDONLY)) {
435		flags |= SB_RDONLY;
436		goto retry;
437	}
438
439	printk("List of all partitions:\n");
440	printk_all_partitions();
441	printk("No filesystem could mount root, tried: ");
442	for (i = 0, p = fs_names; i < num_fs; i++, p += strlen(p)+1)
443		printk(" %s", p);
444	printk("\n");
 
 
 
445	panic("VFS: Unable to mount root fs on %s", b);
446out:
447	put_page(page);
448}
449 
450#ifdef CONFIG_ROOT_NFS
451
452#define NFSROOT_TIMEOUT_MIN	5
453#define NFSROOT_TIMEOUT_MAX	30
454#define NFSROOT_RETRY_MAX	5
455
456static int __init mount_nfs_root(void)
457{
458	char *root_dev, *root_data;
459	unsigned int timeout;
460	int try, err;
461
462	err = nfs_root_data(&root_dev, &root_data);
463	if (err != 0)
464		return 0;
465
466	/*
467	 * The server or network may not be ready, so try several
468	 * times.  Stop after a few tries in case the client wants
469	 * to fall back to other boot methods.
470	 */
471	timeout = NFSROOT_TIMEOUT_MIN;
472	for (try = 1; ; try++) {
473		err = do_mount_root(root_dev, "nfs",
474					root_mountflags, root_data);
475		if (err == 0)
476			return 1;
477		if (try > NFSROOT_RETRY_MAX)
478			break;
479
480		/* Wait, in case the server refused us immediately */
481		ssleep(timeout);
482		timeout <<= 1;
483		if (timeout > NFSROOT_TIMEOUT_MAX)
484			timeout = NFSROOT_TIMEOUT_MAX;
485	}
486	return 0;
487}
488#endif
489
490#ifdef CONFIG_CIFS_ROOT
491
492extern int cifs_root_data(char **dev, char **opts);
493
494#define CIFSROOT_TIMEOUT_MIN	5
495#define CIFSROOT_TIMEOUT_MAX	30
496#define CIFSROOT_RETRY_MAX	5
497
498static int __init mount_cifs_root(void)
499{
500	char *root_dev, *root_data;
501	unsigned int timeout;
502	int try, err;
503
504	err = cifs_root_data(&root_dev, &root_data);
505	if (err != 0)
506		return 0;
507
508	timeout = CIFSROOT_TIMEOUT_MIN;
509	for (try = 1; ; try++) {
510		err = do_mount_root(root_dev, "cifs", root_mountflags,
511				    root_data);
512		if (err == 0)
513			return 1;
514		if (try > CIFSROOT_RETRY_MAX)
515			break;
516
517		ssleep(timeout);
518		timeout <<= 1;
519		if (timeout > CIFSROOT_TIMEOUT_MAX)
520			timeout = CIFSROOT_TIMEOUT_MAX;
 
 
521	}
522	return 0;
523}
524#endif
525
526static bool __init fs_is_nodev(char *fstype)
527{
528	struct file_system_type *fs = get_fs_type(fstype);
529	bool ret = false;
530
531	if (fs) {
532		ret = !(fs->fs_flags & FS_REQUIRES_DEV);
533		put_filesystem(fs);
534	}
535
536	return ret;
537}
538
539static int __init mount_nodev_root(void)
540{
541	char *fs_names, *fstype;
542	int err = -EINVAL;
543	int num_fs, i;
544
545	fs_names = (void *)__get_free_page(GFP_KERNEL);
546	if (!fs_names)
547		return -EINVAL;
548	num_fs = split_fs_names(fs_names, PAGE_SIZE, root_fs_names);
549
550	for (i = 0, fstype = fs_names; i < num_fs;
551	     i++, fstype += strlen(fstype) + 1) {
552		if (!*fstype)
553			continue;
554		if (!fs_is_nodev(fstype))
555			continue;
556		err = do_mount_root(root_device_name, fstype, root_mountflags,
557				    root_mount_data);
558		if (!err)
559			break;
560	}
561
562	free_page((unsigned long)fs_names);
563	return err;
564}
565
566void __init mount_root(void)
567{
568#ifdef CONFIG_ROOT_NFS
569	if (ROOT_DEV == Root_NFS) {
570		if (!mount_nfs_root())
571			printk(KERN_ERR "VFS: Unable to mount root fs via NFS.\n");
572		return;
 
 
573	}
574#endif
575#ifdef CONFIG_CIFS_ROOT
576	if (ROOT_DEV == Root_CIFS) {
577		if (!mount_cifs_root())
578			printk(KERN_ERR "VFS: Unable to mount root fs via SMB.\n");
579		return;
 
 
 
 
 
580	}
581#endif
582	if (ROOT_DEV == 0 && root_device_name && root_fs_names) {
583		if (mount_nodev_root() == 0)
584			return;
585	}
586#ifdef CONFIG_BLOCK
587	{
588		int err = create_dev("/dev/root", ROOT_DEV);
589
590		if (err < 0)
591			pr_emerg("Failed to create /dev/root: %d\n", err);
592		mount_block_root("/dev/root", root_mountflags);
593	}
594#endif
595}
596
597/*
598 * Prepare the namespace - decide what/where to mount, load ramdisks, etc.
599 */
600void __init prepare_namespace(void)
601{
 
 
602	if (root_delay) {
603		printk(KERN_INFO "Waiting %d sec before mounting root device...\n",
604		       root_delay);
605		ssleep(root_delay);
606	}
607
608	/*
609	 * wait for the known devices to complete their probing
610	 *
611	 * Note: this is a potential source of long boot delays.
612	 * For example, it is not atypical to wait 5 seconds here
613	 * for the touchpad of a laptop to initialize.
614	 */
615	wait_for_device_probe();
616
617	md_run_setup();
618
619	if (saved_root_name[0]) {
620		root_device_name = saved_root_name;
621		if (!strncmp(root_device_name, "mtd", 3) ||
622		    !strncmp(root_device_name, "ubi", 3)) {
623			mount_block_root(root_device_name, root_mountflags);
624			goto out;
625		}
626		ROOT_DEV = name_to_dev_t(root_device_name);
627		if (strncmp(root_device_name, "/dev/", 5) == 0)
628			root_device_name += 5;
629	}
630
631	if (initrd_load())
632		goto out;
633
634	/* wait for any asynchronous scanning to complete */
635	if ((ROOT_DEV == 0) && root_wait) {
636		printk(KERN_INFO "Waiting for root device %s...\n",
637			saved_root_name);
638		while (driver_probe_done() != 0 ||
639			(ROOT_DEV = name_to_dev_t(saved_root_name)) == 0)
640			msleep(5);
641		async_synchronize_full();
642	}
643
 
 
 
 
 
644	mount_root();
645out:
646	devtmpfs_mount();
647	init_mount(".", "/", NULL, MS_MOVE, NULL);
648	init_chroot(".");
649}
650
651static bool is_tmpfs;
652static int rootfs_init_fs_context(struct fs_context *fc)
653{
654	if (IS_ENABLED(CONFIG_TMPFS) && is_tmpfs)
655		return shmem_init_fs_context(fc);
656
657	return ramfs_init_fs_context(fc);
658}
659
660struct file_system_type rootfs_fs_type = {
661	.name		= "rootfs",
662	.init_fs_context = rootfs_init_fs_context,
663	.kill_sb	= kill_litter_super,
664};
665
666void __init init_rootfs(void)
667{
668	if (IS_ENABLED(CONFIG_TMPFS) && !saved_root_name[0] &&
669		(!root_fs_names || strstr(root_fs_names, "tmpfs")))
670		is_tmpfs = true;
671}