blob: e1c9afa9d8c9103fa1463a45a425c9468e4c1628 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#include <linux/module.h>
2#include <linux/sched.h>
3#include <linux/ctype.h>
4#include <linux/fd.h>
5#include <linux/tty.h>
6#include <linux/suspend.h>
7#include <linux/root_dev.h>
8#include <linux/security.h>
9#include <linux/delay.h>
Dave Gilbertdd2a3452007-05-09 02:33:24 -070010#include <linux/genhd.h>
Andrew Mortond53d9f12005-07-12 13:58:07 -070011#include <linux/mount.h>
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -070012#include <linux/device.h>
Adrian Bunk46595392007-05-08 00:24:47 -070013#include <linux/init.h>
Adrian Bunk011e3fc2008-02-06 01:36:47 -080014#include <linux/fs.h>
Adrian Bunk82c82532008-07-25 01:45:29 -070015#include <linux/initrd.h>
Arjan van de Ven22a9d642009-01-07 08:45:46 -080016#include <linux/async.h>
Al Viro5ad4e532009-03-29 19:50:06 -040017#include <linux/fs_struct.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Rob Landley57f150a2013-09-11 14:26:10 -070019#include <linux/ramfs.h>
Rob Landley16203a72013-09-11 14:26:12 -070020#include <linux/shmem_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#include <linux/nfs_fs.h>
23#include <linux/nfs_fs_sb.h>
24#include <linux/nfs_mount.h>
25
26#include "do_mounts.h"
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028int __initdata rd_doload; /* 1 = load RAM disk, 0 = don't load */
29
Theodore Ts'o9b04c992006-03-24 03:15:10 -080030int root_mountflags = MS_RDONLY | MS_SILENT;
Adrian Bunkf56f6d302008-07-25 19:46:25 -070031static char * __initdata root_device_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032static char __initdata saved_root_name[64];
Will Drewry79975f12011-11-02 13:38:59 -070033static int root_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Linus Torvalds1da177e2005-04-16 15:20:36 -070035dev_t ROOT_DEV;
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037static int __init load_ramdisk(char *str)
38{
39 rd_doload = simple_strtol(str,NULL,0) & 3;
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
Jens Axboe6d0aed72010-09-17 10:00:46 +020063#ifdef CONFIG_BLOCK
Stephen Warren1ad7e892012-11-08 16:12:25 -080064struct uuidcmp {
65 const char *uuid;
66 int len;
67};
68
Will Drewryb5af9212010-08-31 15:47:07 -050069/**
70 * match_dev_by_uuid - callback for finding a partition using its uuid
71 * @dev: device passed in by the caller
Stephen Warren1ad7e892012-11-08 16:12:25 -080072 * @data: opaque pointer to the desired struct uuidcmp to match
Will Drewryb5af9212010-08-31 15:47:07 -050073 *
74 * Returns 1 if the device matches, and 0 otherwise.
75 */
Michał Mirosław9f3b7952013-02-01 20:40:17 +010076static int match_dev_by_uuid(struct device *dev, const void *data)
Will Drewryb5af9212010-08-31 15:47:07 -050077{
Michał Mirosław9f3b7952013-02-01 20:40:17 +010078 const struct uuidcmp *cmp = data;
Will Drewryb5af9212010-08-31 15:47:07 -050079 struct hd_struct *part = dev_to_part(dev);
80
81 if (!part->info)
82 goto no_match;
83
Stephen Warren1ad7e892012-11-08 16:12:25 -080084 if (strncasecmp(cmp->uuid, part->info->uuid, cmp->len))
85 goto no_match;
Will Drewryb5af9212010-08-31 15:47:07 -050086
87 return 1;
88no_match:
89 return 0;
90}
91
92
93/**
94 * devt_from_partuuid - looks up the dev_t of a partition by its UUID
chishanmingshena68b3102014-04-03 14:49:35 -070095 * @uuid_str: char array containing ascii UUID
Will Drewryb5af9212010-08-31 15:47:07 -050096 *
97 * The function will return the first partition which contains a matching
98 * UUID value in its partition_meta_info struct. This does not search
99 * by filesystem UUIDs.
100 *
chishanmingshena68b3102014-04-03 14:49:35 -0700101 * If @uuid_str is followed by a "/PARTNROFF=%d", then the number will be
Will Drewry79975f12011-11-02 13:38:59 -0700102 * extracted and used as an offset from the partition identified by the UUID.
103 *
Will Drewryb5af9212010-08-31 15:47:07 -0500104 * Returns the matching dev_t on success or 0 on failure.
105 */
Stephen Warren1ad7e892012-11-08 16:12:25 -0800106static dev_t devt_from_partuuid(const char *uuid_str)
Will Drewryb5af9212010-08-31 15:47:07 -0500107{
108 dev_t res = 0;
Stephen Warren1ad7e892012-11-08 16:12:25 -0800109 struct uuidcmp cmp;
Will Drewryb5af9212010-08-31 15:47:07 -0500110 struct device *dev = NULL;
Will Drewry79975f12011-11-02 13:38:59 -0700111 struct gendisk *disk;
112 struct hd_struct *part;
113 int offset = 0;
Stephen Warren283f8fc2012-11-08 16:12:27 -0800114 bool clear_root_wait = false;
115 char *slash;
Will Drewry79975f12011-11-02 13:38:59 -0700116
Stephen Warren1ad7e892012-11-08 16:12:25 -0800117 cmp.uuid = uuid_str;
Stephen Warren1ad7e892012-11-08 16:12:25 -0800118
Stephen Warren283f8fc2012-11-08 16:12:27 -0800119 slash = strchr(uuid_str, '/');
Will Drewry79975f12011-11-02 13:38:59 -0700120 /* Check for optional partition number offset attributes. */
Stephen Warren283f8fc2012-11-08 16:12:27 -0800121 if (slash) {
Will Drewry79975f12011-11-02 13:38:59 -0700122 char c = 0;
123 /* Explicitly fail on poor PARTUUID syntax. */
Stephen Warren283f8fc2012-11-08 16:12:27 -0800124 if (sscanf(slash + 1,
125 "PARTNROFF=%d%c", &offset, &c) != 1) {
126 clear_root_wait = true;
Will Drewry79975f12011-11-02 13:38:59 -0700127 goto done;
128 }
Stephen Warren283f8fc2012-11-08 16:12:27 -0800129 cmp.len = slash - uuid_str;
130 } else {
131 cmp.len = strlen(uuid_str);
132 }
133
134 if (!cmp.len) {
135 clear_root_wait = true;
136 goto done;
Will Drewry79975f12011-11-02 13:38:59 -0700137 }
Will Drewryb5af9212010-08-31 15:47:07 -0500138
Stephen Warren1ad7e892012-11-08 16:12:25 -0800139 dev = class_find_device(&block_class, NULL, &cmp,
140 &match_dev_by_uuid);
Will Drewryb5af9212010-08-31 15:47:07 -0500141 if (!dev)
142 goto done;
143
144 res = dev->devt;
Will Drewryb5af9212010-08-31 15:47:07 -0500145
Will Drewry79975f12011-11-02 13:38:59 -0700146 /* Attempt to find the partition by offset. */
147 if (!offset)
148 goto no_offset;
149
150 res = 0;
151 disk = part_to_disk(dev_to_part(dev));
152 part = disk_get_part(disk, dev_to_part(dev)->partno + offset);
153 if (part) {
154 res = part_devt(part);
155 put_device(part_to_dev(part));
156 }
157
158no_offset:
159 put_device(dev);
Will Drewryb5af9212010-08-31 15:47:07 -0500160done:
Stephen Warren283f8fc2012-11-08 16:12:27 -0800161 if (clear_root_wait) {
162 pr_err("VFS: PARTUUID= is invalid.\n"
163 "Expected PARTUUID=<valid-uuid-id>[/PARTNROFF=%%d]\n");
164 if (root_wait)
165 pr_err("Disabling rootwait; root= is invalid.\n");
166 root_wait = 0;
167 }
Will Drewryb5af9212010-08-31 15:47:07 -0500168 return res;
169}
Jens Axboe6d0aed72010-09-17 10:00:46 +0200170#endif
Will Drewryb5af9212010-08-31 15:47:07 -0500171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172/*
173 * Convert a name into device number. We accept the following variants:
174 *
Pavel Machek0bf37ae2014-08-26 13:49:35 +0200175 * 1) <hex_major><hex_minor> device number in hexadecimal represents itself
176 * no leading 0x, for example b302.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 * 2) /dev/nfs represents Root_NFS (0xff)
178 * 3) /dev/<disk_name> represents the device number of disk
179 * 4) /dev/<disk_name><decimal> represents the device number
180 * of partition - device number of disk plus the partition number
181 * 5) /dev/<disk_name>p<decimal> - same as the above, that form is
182 * used when disk name of partitioned disk ends on a digit.
Will Drewryb5af9212010-08-31 15:47:07 -0500183 * 6) PARTUUID=00112233-4455-6677-8899-AABBCCDDEEFF representing the
184 * unique id of a partition if the partition table provides it.
Stephen Warrend33b98f2012-11-08 16:12:28 -0800185 * The UUID may be either an EFI/GPT UUID, or refer to an MSDOS
186 * partition using the format SSSSSSSS-PP, where SSSSSSSS is a zero-
187 * filled hex representation of the 32-bit "NT disk signature", and PP
188 * is a zero-filled hex representation of the 1-based partition number.
Will Drewry79975f12011-11-02 13:38:59 -0700189 * 7) PARTUUID=<UUID>/PARTNROFF=<int> to select a partition in relation to
190 * a partition with a known unique id.
Sebastian Capella6c251612013-11-12 15:08:39 -0800191 * 8) <major>:<minor> major and minor number of the device separated by
192 * a colon.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 *
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200194 * If name doesn't have fall into the categories above, we return (0,0).
195 * block_class is used to check if something is a disk name. If the disk
196 * name contains slashes, the device name has them replaced with
197 * bangs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 */
199
Dan Ehrenberge6e20a72015-02-10 15:20:49 -0800200dev_t name_to_dev_t(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
202 char s[32];
203 char *p;
204 dev_t res = 0;
Kay Sievers30f2f0e2008-05-06 22:31:33 +0200205 int part;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Jens Axboe6d0aed72010-09-17 10:00:46 +0200207#ifdef CONFIG_BLOCK
Will Drewryb5af9212010-08-31 15:47:07 -0500208 if (strncmp(name, "PARTUUID=", 9) == 0) {
209 name += 9;
Will Drewryb5af9212010-08-31 15:47:07 -0500210 res = devt_from_partuuid(name);
211 if (!res)
212 goto fail;
213 goto done;
214 }
Jens Axboe6d0aed72010-09-17 10:00:46 +0200215#endif
Will Drewryb5af9212010-08-31 15:47:07 -0500216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 if (strncmp(name, "/dev/", 5) != 0) {
Chen Yucb31ef42015-05-03 22:35:05 +0800218 unsigned maj, min, offset;
Dan Ehrenberg283e7ad2015-02-10 15:20:50 -0800219 char dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Chen Yucb31ef42015-05-03 22:35:05 +0800221 if ((sscanf(name, "%u:%u%c", &maj, &min, &dummy) == 2) ||
222 (sscanf(name, "%u:%u:%u:%c", &maj, &min, &offset, &dummy) == 3)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 res = MKDEV(maj, min);
224 if (maj != MAJOR(res) || min != MINOR(res))
225 goto fail;
226 } else {
227 res = new_decode_dev(simple_strtoul(name, &p, 16));
228 if (*p)
229 goto fail;
230 }
231 goto done;
232 }
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 name += 5;
235 res = Root_NFS;
236 if (strcmp(name, "nfs") == 0)
237 goto done;
238 res = Root_RAM0;
239 if (strcmp(name, "ram") == 0)
240 goto done;
241
242 if (strlen(name) > 31)
243 goto fail;
244 strcpy(s, name);
245 for (p = s; *p; p++)
246 if (*p == '/')
247 *p = '!';
Kay Sievers30f2f0e2008-05-06 22:31:33 +0200248 res = blk_lookup_devt(s, 0);
249 if (res)
250 goto done;
251
252 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300253 * try non-existent, but valid partition, which may only exist
Kay Sievers30f2f0e2008-05-06 22:31:33 +0200254 * after revalidating the disk, like partitioned md devices
255 */
256 while (p > s && isdigit(p[-1]))
257 p--;
258 if (p == s || !*p || *p == '0')
259 goto fail;
260
261 /* try disk name without <part number> */
262 part = simple_strtoul(p, NULL, 10);
263 *p = '\0';
264 res = blk_lookup_devt(s, part);
265 if (res)
266 goto done;
267
268 /* try disk name without p<part number> */
269 if (p < s + 2 || !isdigit(p[-2]) || p[-1] != 'p')
270 goto fail;
271 p[-1] = '\0';
272 res = blk_lookup_devt(s, part);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 if (res)
274 goto done;
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276fail:
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200277 return 0;
278done:
279 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
Dan Ehrenberge6e20a72015-02-10 15:20:49 -0800281EXPORT_SYMBOL_GPL(name_to_dev_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283static int __init root_dev_setup(char *line)
284{
285 strlcpy(saved_root_name, line, sizeof(saved_root_name));
286 return 1;
287}
288
289__setup("root=", root_dev_setup);
290
Pierre Ossmancc1ed752007-07-15 23:40:35 -0700291static int __init rootwait_setup(char *str)
292{
293 if (*str)
294 return 0;
295 root_wait = 1;
296 return 1;
297}
298
299__setup("rootwait", rootwait_setup);
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301static char * __initdata root_mount_data;
302static int __init root_data_setup(char *str)
303{
304 root_mount_data = str;
305 return 1;
306}
307
308static char * __initdata root_fs_names;
309static int __init fs_names_setup(char *str)
310{
311 root_fs_names = str;
312 return 1;
313}
314
315static unsigned int __initdata root_delay;
316static int __init root_delay_setup(char *str)
317{
318 root_delay = simple_strtoul(str, NULL, 0);
319 return 1;
320}
321
322__setup("rootflags=", root_data_setup);
323__setup("rootfstype=", fs_names_setup);
324__setup("rootdelay=", root_delay_setup);
325
326static void __init get_fs_names(char *page)
327{
328 char *s = page;
329
330 if (root_fs_names) {
331 strcpy(page, root_fs_names);
332 while (*s++) {
333 if (s[-1] == ',')
334 s[-1] = '\0';
335 }
336 } else {
337 int len = get_filesystem_list(page);
338 char *p, *next;
339
340 page[len] = '\0';
341 for (p = page-1; p; p = next) {
342 next = strchr(++p, '\n');
343 if (*p++ != '\t')
344 continue;
345 while ((*s++ = *p++) != '\n')
346 ;
347 s[-1] = '\0';
348 }
349 }
350 *s = '\0';
351}
352
353static int __init do_mount_root(char *name, char *fs, int flags, void *data)
354{
Al Virod8c95842011-12-07 18:16:57 -0500355 struct super_block *s;
Dominik Brodowski312db1a2018-03-11 11:34:39 +0100356 int err = ksys_mount(name, "/root", fs, flags, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 if (err)
358 return err;
359
Dominik Brodowski447016e2018-03-11 11:34:46 +0100360 ksys_chdir("/root");
Al Virod8c95842011-12-07 18:16:57 -0500361 s = current->fs->pwd.dentry->d_sb;
362 ROOT_DEV = s->s_dev;
Mandeep Singh Baines80cdc6d2011-03-22 16:33:54 -0700363 printk(KERN_INFO
364 "VFS: Mounted root (%s filesystem)%s on device %u:%u.\n",
Al Virod8c95842011-12-07 18:16:57 -0500365 s->s_type->name,
David Howellsbc98a422017-07-17 08:45:34 +0100366 sb_rdonly(s) ? " readonly" : "",
Al Virod8c95842011-12-07 18:16:57 -0500367 MAJOR(ROOT_DEV), MINOR(ROOT_DEV));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 return 0;
369}
370
371void __init mount_block_root(char *name, int flags)
372{
Levin, Alexander (Sasha Levin)75f296d2017-11-15 17:35:54 -0800373 struct page *page = alloc_page(GFP_KERNEL);
Jeff Laytona608ca22012-10-10 15:25:26 -0400374 char *fs_names = page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 char *p;
David Howells93614012006-09-30 20:45:40 +0200376#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 char b[BDEVNAME_SIZE];
David Howells93614012006-09-30 20:45:40 +0200378#else
379 const char *b = name;
380#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382 get_fs_names(fs_names);
383retry:
384 for (p = fs_names; *p; p += strlen(p)+1) {
385 int err = do_mount_root(name, p, flags, root_mount_data);
386 switch (err) {
387 case 0:
388 goto out;
389 case -EACCES:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 case -EINVAL:
391 continue;
392 }
393 /*
394 * Allow the user to distinguish between failed sys_open
395 * and bad superblock on root device.
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700396 * and give them a list of the available devices
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 */
David Howells93614012006-09-30 20:45:40 +0200398#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 __bdevname(ROOT_DEV, b);
David Howells93614012006-09-30 20:45:40 +0200400#endif
Bernhard Walle0e0cb892012-03-23 15:02:28 -0700401 printk("VFS: Cannot open root device \"%s\" or %s: error %d\n",
402 root_device_name, b, err);
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700403 printk("Please append a correct \"root=\" boot option; here are the available partitions:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700405 printk_all_partitions();
Tejun Heo55dc7db2008-09-01 13:44:35 +0200406#ifdef CONFIG_DEBUG_BLOCK_EXT_DEVT
407 printk("DEBUG_BLOCK_EXT_DEVT is enabled, you need to specify "
408 "explicit textual name for \"root=\" boot option.\n");
409#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 panic("VFS: Unable to mount root fs on %s", b);
411 }
David Howellse462ec52017-07-17 08:45:35 +0100412 if (!(flags & SB_RDONLY)) {
413 flags |= SB_RDONLY;
Miklos Szeredi10975932014-11-20 16:08:59 +0100414 goto retry;
415 }
Andy Whitcroftbe6e028b2006-05-15 09:44:29 -0700416
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700417 printk("List of all partitions:\n");
418 printk_all_partitions();
Andy Whitcroftbe6e028b2006-05-15 09:44:29 -0700419 printk("No filesystem could mount root, tried: ");
420 for (p = fs_names; *p; p += strlen(p)+1)
421 printk(" %s", p);
422 printk("\n");
David Howells93614012006-09-30 20:45:40 +0200423#ifdef CONFIG_BLOCK
424 __bdevname(ROOT_DEV, b);
425#endif
426 panic("VFS: Unable to mount root fs on %s", b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427out:
Jeff Laytona608ca22012-10-10 15:25:26 -0400428 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429}
430
431#ifdef CONFIG_ROOT_NFS
Chuck Lever43717c72011-12-05 15:40:30 -0500432
433#define NFSROOT_TIMEOUT_MIN 5
434#define NFSROOT_TIMEOUT_MAX 30
435#define NFSROOT_RETRY_MAX 5
436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437static int __init mount_nfs_root(void)
438{
Chuck Lever56463e52010-09-17 10:54:37 -0400439 char *root_dev, *root_data;
Chuck Lever43717c72011-12-05 15:40:30 -0500440 unsigned int timeout;
441 int try, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Chuck Lever43717c72011-12-05 15:40:30 -0500443 err = nfs_root_data(&root_dev, &root_data);
444 if (err != 0)
Chuck Lever56463e52010-09-17 10:54:37 -0400445 return 0;
Chuck Lever43717c72011-12-05 15:40:30 -0500446
447 /*
448 * The server or network may not be ready, so try several
449 * times. Stop after a few tries in case the client wants
450 * to fall back to other boot methods.
451 */
452 timeout = NFSROOT_TIMEOUT_MIN;
453 for (try = 1; ; try++) {
454 err = do_mount_root(root_dev, "nfs",
455 root_mountflags, root_data);
456 if (err == 0)
457 return 1;
458 if (try > NFSROOT_RETRY_MAX)
459 break;
460
461 /* Wait, in case the server refused us immediately */
462 ssleep(timeout);
463 timeout <<= 1;
464 if (timeout > NFSROOT_TIMEOUT_MAX)
465 timeout = NFSROOT_TIMEOUT_MAX;
466 }
467 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468}
469#endif
470
471#if defined(CONFIG_BLK_DEV_RAM) || defined(CONFIG_BLK_DEV_FD)
472void __init change_floppy(char *fmt, ...)
473{
474 struct termios termios;
475 char buf[80];
476 char c;
477 int fd;
478 va_list args;
479 va_start(args, fmt);
480 vsprintf(buf, fmt, args);
481 va_end(args);
Dominik Brodowskibae217e2018-03-11 11:34:56 +0100482 fd = ksys_open("/dev/root", O_RDWR | O_NDELAY, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 if (fd >= 0) {
Dominik Brodowskicbb60b92018-03-13 21:43:59 +0100484 ksys_ioctl(fd, FDEJECT, 0);
Dominik Brodowski2ca2a092018-03-11 11:34:55 +0100485 ksys_close(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 }
487 printk(KERN_NOTICE "VFS: Insert %s and press ENTER\n", buf);
Dominik Brodowskibae217e2018-03-11 11:34:56 +0100488 fd = ksys_open("/dev/console", O_RDWR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 if (fd >= 0) {
Dominik Brodowskicbb60b92018-03-13 21:43:59 +0100490 ksys_ioctl(fd, TCGETS, (long)&termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 termios.c_lflag &= ~ICANON;
Dominik Brodowskicbb60b92018-03-13 21:43:59 +0100492 ksys_ioctl(fd, TCSETSF, (long)&termios);
Dominik Brodowski3ce4a7b2018-03-13 21:56:26 +0100493 ksys_read(fd, &c, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 termios.c_lflag |= ICANON;
Dominik Brodowskicbb60b92018-03-13 21:43:59 +0100495 ksys_ioctl(fd, TCSETSF, (long)&termios);
Dominik Brodowski2ca2a092018-03-11 11:34:55 +0100496 ksys_close(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 }
498}
499#endif
500
501void __init mount_root(void)
502{
503#ifdef CONFIG_ROOT_NFS
Sasha Levin377485f2012-05-05 17:06:35 +0200504 if (ROOT_DEV == Root_NFS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 if (mount_nfs_root())
506 return;
507
508 printk(KERN_ERR "VFS: Unable to mount root fs via NFS, trying floppy.\n");
509 ROOT_DEV = Root_FD0;
510 }
511#endif
512#ifdef CONFIG_BLK_DEV_FD
513 if (MAJOR(ROOT_DEV) == FLOPPY_MAJOR) {
514 /* rd_doload is 2 for a dual initrd/ramload setup */
515 if (rd_doload==2) {
516 if (rd_load_disk(1)) {
517 ROOT_DEV = Root_RAM1;
518 root_device_name = NULL;
519 }
520 } else
521 change_floppy("root floppy");
522 }
523#endif
David Howells93614012006-09-30 20:45:40 +0200524#ifdef CONFIG_BLOCK
Vishnu Pratap Singhc69e3c32015-06-25 15:03:37 -0700525 {
526 int err = create_dev("/dev/root", ROOT_DEV);
527
528 if (err < 0)
529 pr_emerg("Failed to create /dev/root: %d\n", err);
530 mount_block_root("/dev/root", root_mountflags);
531 }
David Howells93614012006-09-30 20:45:40 +0200532#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533}
534
535/*
536 * Prepare the namespace - decide what/where to mount, load ramdisks, etc.
537 */
538void __init prepare_namespace(void)
539{
540 int is_floppy;
541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 if (root_delay) {
Toralf Försterca75b4d82013-07-03 15:05:38 -0700543 printk(KERN_INFO "Waiting %d sec before mounting root device...\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 root_delay);
545 ssleep(root_delay);
546 }
547
Arjan van de Ven216773a2009-02-14 01:59:06 +0100548 /*
549 * wait for the known devices to complete their probing
550 *
551 * Note: this is a potential source of long boot delays.
552 * For example, it is not atypical to wait 5 seconds here
553 * for the touchpad of a laptop to initialize.
554 */
555 wait_for_device_probe();
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700556
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 md_run_setup();
558
559 if (saved_root_name[0]) {
560 root_device_name = saved_root_name;
Adrian Hunter2d62f482008-01-31 17:25:00 +0200561 if (!strncmp(root_device_name, "mtd", 3) ||
562 !strncmp(root_device_name, "ubi", 3)) {
Joern Engele9482b42006-05-30 14:25:46 +0200563 mount_block_root(root_device_name, root_mountflags);
564 goto out;
565 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 ROOT_DEV = name_to_dev_t(root_device_name);
567 if (strncmp(root_device_name, "/dev/", 5) == 0)
568 root_device_name += 5;
569 }
570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 if (initrd_load())
572 goto out;
573
Pierre Ossmancc1ed752007-07-15 23:40:35 -0700574 /* wait for any asynchronous scanning to complete */
575 if ((ROOT_DEV == 0) && root_wait) {
576 printk(KERN_INFO "Waiting for root device %s...\n",
577 saved_root_name);
578 while (driver_probe_done() != 0 ||
579 (ROOT_DEV = name_to_dev_t(saved_root_name)) == 0)
Jungseung Lee39a0e972016-12-12 16:46:43 -0800580 msleep(5);
Arjan van de Ven216773a2009-02-14 01:59:06 +0100581 async_synchronize_full();
Pierre Ossmancc1ed752007-07-15 23:40:35 -0700582 }
583
584 is_floppy = MAJOR(ROOT_DEV) == FLOPPY_MAJOR;
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 if (is_floppy && rd_doload && rd_load_disk(0))
587 ROOT_DEV = Root_RAM0;
588
589 mount_root();
590out:
Kay Sievers2b2af542009-04-30 15:23:42 +0200591 devtmpfs_mount("dev");
Dominik Brodowski312db1a2018-03-11 11:34:39 +0100592 ksys_mount(".", "/", NULL, MS_MOVE, NULL);
Dominik Brodowskia16fe332018-03-11 11:34:41 +0100593 ksys_chroot(".");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594}
Rob Landley57f150a2013-09-11 14:26:10 -0700595
Rob Landley6e19ede2013-09-11 14:26:13 -0700596static bool is_tmpfs;
Rob Landley57f150a2013-09-11 14:26:10 -0700597static struct dentry *rootfs_mount(struct file_system_type *fs_type,
598 int flags, const char *dev_name, void *data)
599{
600 static unsigned long once;
Rob Landley6e19ede2013-09-11 14:26:13 -0700601 void *fill = ramfs_fill_super;
Rob Landley57f150a2013-09-11 14:26:10 -0700602
603 if (test_and_set_bit(0, &once))
604 return ERR_PTR(-ENODEV);
605
Rob Landley6e19ede2013-09-11 14:26:13 -0700606 if (IS_ENABLED(CONFIG_TMPFS) && is_tmpfs)
607 fill = shmem_fill_super;
608
609 return mount_nodev(fs_type, flags, data, fill);
Rob Landley57f150a2013-09-11 14:26:10 -0700610}
611
612static struct file_system_type rootfs_fs_type = {
613 .name = "rootfs",
614 .mount = rootfs_mount,
615 .kill_sb = kill_litter_super,
616};
617
618int __init init_rootfs(void)
619{
620 int err = register_filesystem(&rootfs_fs_type);
621
622 if (err)
623 return err;
624
Rob Landley6e19ede2013-09-11 14:26:13 -0700625 if (IS_ENABLED(CONFIG_TMPFS) && !saved_root_name[0] &&
626 (!root_fs_names || strstr(root_fs_names, "tmpfs"))) {
Rob Landley16203a72013-09-11 14:26:12 -0700627 err = shmem_init();
Rob Landley6e19ede2013-09-11 14:26:13 -0700628 is_tmpfs = true;
629 } else {
Rob Landley16203a72013-09-11 14:26:12 -0700630 err = init_ramfs_fs();
Rob Landley6e19ede2013-09-11 14:26:13 -0700631 }
Rob Landley16203a72013-09-11 14:26:12 -0700632
Rob Landley57f150a2013-09-11 14:26:10 -0700633 if (err)
634 unregister_filesystem(&rootfs_fs_type);
635
636 return err;
637}