blob: f8c230c77035c75d5356b0b944c7388d33c73a16 [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>
David Howellse262e32d2018-11-01 23:07:23 +000025#include <uapi/linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27#include "do_mounts.h"
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029int __initdata rd_doload; /* 1 = load RAM disk, 0 = don't load */
30
Theodore Ts'o9b04c992006-03-24 03:15:10 -080031int root_mountflags = MS_RDONLY | MS_SILENT;
Adrian Bunkf56f6d302008-07-25 19:46:25 -070032static char * __initdata root_device_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033static char __initdata saved_root_name[64];
Will Drewry79975f12011-11-02 13:38:59 -070034static int root_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Linus Torvalds1da177e2005-04-16 15:20:36 -070036dev_t ROOT_DEV;
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038static int __init load_ramdisk(char *str)
39{
40 rd_doload = simple_strtol(str,NULL,0) & 3;
41 return 1;
42}
43__setup("load_ramdisk=", load_ramdisk);
44
45static int __init readonly(char *str)
46{
47 if (*str)
48 return 0;
49 root_mountflags |= MS_RDONLY;
50 return 1;
51}
52
53static int __init readwrite(char *str)
54{
55 if (*str)
56 return 0;
57 root_mountflags &= ~MS_RDONLY;
58 return 1;
59}
60
61__setup("ro", readonly);
62__setup("rw", readwrite);
63
Jens Axboe6d0aed72010-09-17 10:00:46 +020064#ifdef CONFIG_BLOCK
Stephen Warren1ad7e892012-11-08 16:12:25 -080065struct uuidcmp {
66 const char *uuid;
67 int len;
68};
69
Will Drewryb5af9212010-08-31 15:47:07 -050070/**
71 * match_dev_by_uuid - callback for finding a partition using its uuid
72 * @dev: device passed in by the caller
Stephen Warren1ad7e892012-11-08 16:12:25 -080073 * @data: opaque pointer to the desired struct uuidcmp to match
Will Drewryb5af9212010-08-31 15:47:07 -050074 *
75 * Returns 1 if the device matches, and 0 otherwise.
76 */
Michał Mirosław9f3b7952013-02-01 20:40:17 +010077static int match_dev_by_uuid(struct device *dev, const void *data)
Will Drewryb5af9212010-08-31 15:47:07 -050078{
Michał Mirosław9f3b7952013-02-01 20:40:17 +010079 const struct uuidcmp *cmp = data;
Will Drewryb5af9212010-08-31 15:47:07 -050080 struct hd_struct *part = dev_to_part(dev);
81
82 if (!part->info)
83 goto no_match;
84
Stephen Warren1ad7e892012-11-08 16:12:25 -080085 if (strncasecmp(cmp->uuid, part->info->uuid, cmp->len))
86 goto no_match;
Will Drewryb5af9212010-08-31 15:47:07 -050087
88 return 1;
89no_match:
90 return 0;
91}
92
93
94/**
95 * devt_from_partuuid - looks up the dev_t of a partition by its UUID
chishanmingshena68b3102014-04-03 14:49:35 -070096 * @uuid_str: char array containing ascii UUID
Will Drewryb5af9212010-08-31 15:47:07 -050097 *
98 * The function will return the first partition which contains a matching
99 * UUID value in its partition_meta_info struct. This does not search
100 * by filesystem UUIDs.
101 *
chishanmingshena68b3102014-04-03 14:49:35 -0700102 * If @uuid_str is followed by a "/PARTNROFF=%d", then the number will be
Will Drewry79975f12011-11-02 13:38:59 -0700103 * extracted and used as an offset from the partition identified by the UUID.
104 *
Will Drewryb5af9212010-08-31 15:47:07 -0500105 * Returns the matching dev_t on success or 0 on failure.
106 */
Stephen Warren1ad7e892012-11-08 16:12:25 -0800107static dev_t devt_from_partuuid(const char *uuid_str)
Will Drewryb5af9212010-08-31 15:47:07 -0500108{
109 dev_t res = 0;
Stephen Warren1ad7e892012-11-08 16:12:25 -0800110 struct uuidcmp cmp;
Will Drewryb5af9212010-08-31 15:47:07 -0500111 struct device *dev = NULL;
Will Drewry79975f12011-11-02 13:38:59 -0700112 struct gendisk *disk;
113 struct hd_struct *part;
114 int offset = 0;
Stephen Warren283f8fc2012-11-08 16:12:27 -0800115 bool clear_root_wait = false;
116 char *slash;
Will Drewry79975f12011-11-02 13:38:59 -0700117
Stephen Warren1ad7e892012-11-08 16:12:25 -0800118 cmp.uuid = uuid_str;
Stephen Warren1ad7e892012-11-08 16:12:25 -0800119
Stephen Warren283f8fc2012-11-08 16:12:27 -0800120 slash = strchr(uuid_str, '/');
Will Drewry79975f12011-11-02 13:38:59 -0700121 /* Check for optional partition number offset attributes. */
Stephen Warren283f8fc2012-11-08 16:12:27 -0800122 if (slash) {
Will Drewry79975f12011-11-02 13:38:59 -0700123 char c = 0;
124 /* Explicitly fail on poor PARTUUID syntax. */
Stephen Warren283f8fc2012-11-08 16:12:27 -0800125 if (sscanf(slash + 1,
126 "PARTNROFF=%d%c", &offset, &c) != 1) {
127 clear_root_wait = true;
Will Drewry79975f12011-11-02 13:38:59 -0700128 goto done;
129 }
Stephen Warren283f8fc2012-11-08 16:12:27 -0800130 cmp.len = slash - uuid_str;
131 } else {
132 cmp.len = strlen(uuid_str);
133 }
134
135 if (!cmp.len) {
136 clear_root_wait = true;
137 goto done;
Will Drewry79975f12011-11-02 13:38:59 -0700138 }
Will Drewryb5af9212010-08-31 15:47:07 -0500139
Stephen Warren1ad7e892012-11-08 16:12:25 -0800140 dev = class_find_device(&block_class, NULL, &cmp,
141 &match_dev_by_uuid);
Will Drewryb5af9212010-08-31 15:47:07 -0500142 if (!dev)
143 goto done;
144
145 res = dev->devt;
Will Drewryb5af9212010-08-31 15:47:07 -0500146
Will Drewry79975f12011-11-02 13:38:59 -0700147 /* Attempt to find the partition by offset. */
148 if (!offset)
149 goto no_offset;
150
151 res = 0;
152 disk = part_to_disk(dev_to_part(dev));
153 part = disk_get_part(disk, dev_to_part(dev)->partno + offset);
154 if (part) {
155 res = part_devt(part);
156 put_device(part_to_dev(part));
157 }
158
159no_offset:
160 put_device(dev);
Will Drewryb5af9212010-08-31 15:47:07 -0500161done:
Stephen Warren283f8fc2012-11-08 16:12:27 -0800162 if (clear_root_wait) {
163 pr_err("VFS: PARTUUID= is invalid.\n"
164 "Expected PARTUUID=<valid-uuid-id>[/PARTNROFF=%%d]\n");
165 if (root_wait)
166 pr_err("Disabling rootwait; root= is invalid.\n");
167 root_wait = 0;
168 }
Will Drewryb5af9212010-08-31 15:47:07 -0500169 return res;
170}
Nikolaus Vossf027c342018-10-30 15:05:57 -0700171
172/**
173 * match_dev_by_label - callback for finding a partition using its label
174 * @dev: device passed in by the caller
175 * @data: opaque pointer to the label to match
176 *
177 * Returns 1 if the device matches, and 0 otherwise.
178 */
179static int match_dev_by_label(struct device *dev, const void *data)
180{
181 const char *label = data;
182 struct hd_struct *part = dev_to_part(dev);
183
184 if (part->info && !strcmp(label, part->info->volname))
185 return 1;
186
187 return 0;
188}
Jens Axboe6d0aed72010-09-17 10:00:46 +0200189#endif
Will Drewryb5af9212010-08-31 15:47:07 -0500190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191/*
192 * Convert a name into device number. We accept the following variants:
193 *
Pavel Machek0bf37ae2014-08-26 13:49:35 +0200194 * 1) <hex_major><hex_minor> device number in hexadecimal represents itself
195 * no leading 0x, for example b302.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 * 2) /dev/nfs represents Root_NFS (0xff)
197 * 3) /dev/<disk_name> represents the device number of disk
198 * 4) /dev/<disk_name><decimal> represents the device number
199 * of partition - device number of disk plus the partition number
200 * 5) /dev/<disk_name>p<decimal> - same as the above, that form is
201 * used when disk name of partitioned disk ends on a digit.
Will Drewryb5af9212010-08-31 15:47:07 -0500202 * 6) PARTUUID=00112233-4455-6677-8899-AABBCCDDEEFF representing the
203 * unique id of a partition if the partition table provides it.
Stephen Warrend33b98f2012-11-08 16:12:28 -0800204 * The UUID may be either an EFI/GPT UUID, or refer to an MSDOS
205 * partition using the format SSSSSSSS-PP, where SSSSSSSS is a zero-
206 * filled hex representation of the 32-bit "NT disk signature", and PP
207 * is a zero-filled hex representation of the 1-based partition number.
Will Drewry79975f12011-11-02 13:38:59 -0700208 * 7) PARTUUID=<UUID>/PARTNROFF=<int> to select a partition in relation to
209 * a partition with a known unique id.
Sebastian Capella6c251612013-11-12 15:08:39 -0800210 * 8) <major>:<minor> major and minor number of the device separated by
211 * a colon.
Nikolaus Vossf027c342018-10-30 15:05:57 -0700212 * 9) PARTLABEL=<name> with name being the GPT partition label.
213 * MSDOS partitions do not support labels!
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 *
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200215 * If name doesn't have fall into the categories above, we return (0,0).
216 * block_class is used to check if something is a disk name. If the disk
217 * name contains slashes, the device name has them replaced with
218 * bangs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 */
220
Dan Ehrenberge6e20a72015-02-10 15:20:49 -0800221dev_t name_to_dev_t(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 char s[32];
224 char *p;
225 dev_t res = 0;
Kay Sievers30f2f0e2008-05-06 22:31:33 +0200226 int part;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Jens Axboe6d0aed72010-09-17 10:00:46 +0200228#ifdef CONFIG_BLOCK
Will Drewryb5af9212010-08-31 15:47:07 -0500229 if (strncmp(name, "PARTUUID=", 9) == 0) {
230 name += 9;
Will Drewryb5af9212010-08-31 15:47:07 -0500231 res = devt_from_partuuid(name);
232 if (!res)
233 goto fail;
234 goto done;
Nikolaus Vossf027c342018-10-30 15:05:57 -0700235 } else if (strncmp(name, "PARTLABEL=", 10) == 0) {
236 struct device *dev;
237
238 dev = class_find_device(&block_class, NULL, name + 10,
239 &match_dev_by_label);
240 if (!dev)
241 goto fail;
242
243 res = dev->devt;
244 put_device(dev);
245 goto done;
Will Drewryb5af9212010-08-31 15:47:07 -0500246 }
Jens Axboe6d0aed72010-09-17 10:00:46 +0200247#endif
Will Drewryb5af9212010-08-31 15:47:07 -0500248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 if (strncmp(name, "/dev/", 5) != 0) {
Chen Yucb31ef42015-05-03 22:35:05 +0800250 unsigned maj, min, offset;
Dan Ehrenberg283e7ad2015-02-10 15:20:50 -0800251 char dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Chen Yucb31ef42015-05-03 22:35:05 +0800253 if ((sscanf(name, "%u:%u%c", &maj, &min, &dummy) == 2) ||
254 (sscanf(name, "%u:%u:%u:%c", &maj, &min, &offset, &dummy) == 3)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 res = MKDEV(maj, min);
256 if (maj != MAJOR(res) || min != MINOR(res))
257 goto fail;
258 } else {
259 res = new_decode_dev(simple_strtoul(name, &p, 16));
260 if (*p)
261 goto fail;
262 }
263 goto done;
264 }
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 name += 5;
267 res = Root_NFS;
268 if (strcmp(name, "nfs") == 0)
269 goto done;
270 res = Root_RAM0;
271 if (strcmp(name, "ram") == 0)
272 goto done;
273
274 if (strlen(name) > 31)
275 goto fail;
276 strcpy(s, name);
277 for (p = s; *p; p++)
278 if (*p == '/')
279 *p = '!';
Kay Sievers30f2f0e2008-05-06 22:31:33 +0200280 res = blk_lookup_devt(s, 0);
281 if (res)
282 goto done;
283
284 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300285 * try non-existent, but valid partition, which may only exist
Kay Sievers30f2f0e2008-05-06 22:31:33 +0200286 * after revalidating the disk, like partitioned md devices
287 */
288 while (p > s && isdigit(p[-1]))
289 p--;
290 if (p == s || !*p || *p == '0')
291 goto fail;
292
293 /* try disk name without <part number> */
294 part = simple_strtoul(p, NULL, 10);
295 *p = '\0';
296 res = blk_lookup_devt(s, part);
297 if (res)
298 goto done;
299
300 /* try disk name without p<part number> */
301 if (p < s + 2 || !isdigit(p[-2]) || p[-1] != 'p')
302 goto fail;
303 p[-1] = '\0';
304 res = blk_lookup_devt(s, part);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 if (res)
306 goto done;
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308fail:
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200309 return 0;
310done:
311 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
Dan Ehrenberge6e20a72015-02-10 15:20:49 -0800313EXPORT_SYMBOL_GPL(name_to_dev_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315static int __init root_dev_setup(char *line)
316{
317 strlcpy(saved_root_name, line, sizeof(saved_root_name));
318 return 1;
319}
320
321__setup("root=", root_dev_setup);
322
Pierre Ossmancc1ed752007-07-15 23:40:35 -0700323static int __init rootwait_setup(char *str)
324{
325 if (*str)
326 return 0;
327 root_wait = 1;
328 return 1;
329}
330
331__setup("rootwait", rootwait_setup);
332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333static char * __initdata root_mount_data;
334static int __init root_data_setup(char *str)
335{
336 root_mount_data = str;
337 return 1;
338}
339
340static char * __initdata root_fs_names;
341static int __init fs_names_setup(char *str)
342{
343 root_fs_names = str;
344 return 1;
345}
346
347static unsigned int __initdata root_delay;
348static int __init root_delay_setup(char *str)
349{
350 root_delay = simple_strtoul(str, NULL, 0);
351 return 1;
352}
353
354__setup("rootflags=", root_data_setup);
355__setup("rootfstype=", fs_names_setup);
356__setup("rootdelay=", root_delay_setup);
357
358static void __init get_fs_names(char *page)
359{
360 char *s = page;
361
362 if (root_fs_names) {
363 strcpy(page, root_fs_names);
364 while (*s++) {
365 if (s[-1] == ',')
366 s[-1] = '\0';
367 }
368 } else {
369 int len = get_filesystem_list(page);
370 char *p, *next;
371
372 page[len] = '\0';
373 for (p = page-1; p; p = next) {
374 next = strchr(++p, '\n');
375 if (*p++ != '\t')
376 continue;
377 while ((*s++ = *p++) != '\n')
378 ;
379 s[-1] = '\0';
380 }
381 }
382 *s = '\0';
383}
384
385static int __init do_mount_root(char *name, char *fs, int flags, void *data)
386{
Al Virod8c95842011-12-07 18:16:57 -0500387 struct super_block *s;
Dominik Brodowski312db1a2018-03-11 11:34:39 +0100388 int err = ksys_mount(name, "/root", fs, flags, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 if (err)
390 return err;
391
Dominik Brodowski447016e2018-03-11 11:34:46 +0100392 ksys_chdir("/root");
Al Virod8c95842011-12-07 18:16:57 -0500393 s = current->fs->pwd.dentry->d_sb;
394 ROOT_DEV = s->s_dev;
Mandeep Singh Baines80cdc6d2011-03-22 16:33:54 -0700395 printk(KERN_INFO
396 "VFS: Mounted root (%s filesystem)%s on device %u:%u.\n",
Al Virod8c95842011-12-07 18:16:57 -0500397 s->s_type->name,
David Howellsbc98a422017-07-17 08:45:34 +0100398 sb_rdonly(s) ? " readonly" : "",
Al Virod8c95842011-12-07 18:16:57 -0500399 MAJOR(ROOT_DEV), MINOR(ROOT_DEV));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 return 0;
401}
402
403void __init mount_block_root(char *name, int flags)
404{
Levin, Alexander (Sasha Levin)75f296d2017-11-15 17:35:54 -0800405 struct page *page = alloc_page(GFP_KERNEL);
Jeff Laytona608ca22012-10-10 15:25:26 -0400406 char *fs_names = page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 char *p;
David Howells93614012006-09-30 20:45:40 +0200408#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 char b[BDEVNAME_SIZE];
David Howells93614012006-09-30 20:45:40 +0200410#else
411 const char *b = name;
412#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414 get_fs_names(fs_names);
415retry:
416 for (p = fs_names; *p; p += strlen(p)+1) {
417 int err = do_mount_root(name, p, flags, root_mount_data);
418 switch (err) {
419 case 0:
420 goto out;
421 case -EACCES:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 case -EINVAL:
423 continue;
424 }
425 /*
426 * Allow the user to distinguish between failed sys_open
427 * and bad superblock on root device.
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700428 * and give them a list of the available devices
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 */
David Howells93614012006-09-30 20:45:40 +0200430#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 __bdevname(ROOT_DEV, b);
David Howells93614012006-09-30 20:45:40 +0200432#endif
Bernhard Walle0e0cb892012-03-23 15:02:28 -0700433 printk("VFS: Cannot open root device \"%s\" or %s: error %d\n",
434 root_device_name, b, err);
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700435 printk("Please append a correct \"root=\" boot option; here are the available partitions:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700437 printk_all_partitions();
Tejun Heo55dc7db2008-09-01 13:44:35 +0200438#ifdef CONFIG_DEBUG_BLOCK_EXT_DEVT
439 printk("DEBUG_BLOCK_EXT_DEVT is enabled, you need to specify "
440 "explicit textual name for \"root=\" boot option.\n");
441#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 panic("VFS: Unable to mount root fs on %s", b);
443 }
David Howellse462ec52017-07-17 08:45:35 +0100444 if (!(flags & SB_RDONLY)) {
445 flags |= SB_RDONLY;
Miklos Szeredi109759332014-11-20 16:08:59 +0100446 goto retry;
447 }
Andy Whitcroftbe6e028b2006-05-15 09:44:29 -0700448
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700449 printk("List of all partitions:\n");
450 printk_all_partitions();
Andy Whitcroftbe6e028b2006-05-15 09:44:29 -0700451 printk("No filesystem could mount root, tried: ");
452 for (p = fs_names; *p; p += strlen(p)+1)
453 printk(" %s", p);
454 printk("\n");
David Howells93614012006-09-30 20:45:40 +0200455#ifdef CONFIG_BLOCK
456 __bdevname(ROOT_DEV, b);
457#endif
458 panic("VFS: Unable to mount root fs on %s", b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459out:
Jeff Laytona608ca22012-10-10 15:25:26 -0400460 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461}
462
463#ifdef CONFIG_ROOT_NFS
Chuck Lever43717c72011-12-05 15:40:30 -0500464
465#define NFSROOT_TIMEOUT_MIN 5
466#define NFSROOT_TIMEOUT_MAX 30
467#define NFSROOT_RETRY_MAX 5
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469static int __init mount_nfs_root(void)
470{
Chuck Lever56463e52010-09-17 10:54:37 -0400471 char *root_dev, *root_data;
Chuck Lever43717c72011-12-05 15:40:30 -0500472 unsigned int timeout;
473 int try, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Chuck Lever43717c72011-12-05 15:40:30 -0500475 err = nfs_root_data(&root_dev, &root_data);
476 if (err != 0)
Chuck Lever56463e52010-09-17 10:54:37 -0400477 return 0;
Chuck Lever43717c72011-12-05 15:40:30 -0500478
479 /*
480 * The server or network may not be ready, so try several
481 * times. Stop after a few tries in case the client wants
482 * to fall back to other boot methods.
483 */
484 timeout = NFSROOT_TIMEOUT_MIN;
485 for (try = 1; ; try++) {
486 err = do_mount_root(root_dev, "nfs",
487 root_mountflags, root_data);
488 if (err == 0)
489 return 1;
490 if (try > NFSROOT_RETRY_MAX)
491 break;
492
493 /* Wait, in case the server refused us immediately */
494 ssleep(timeout);
495 timeout <<= 1;
496 if (timeout > NFSROOT_TIMEOUT_MAX)
497 timeout = NFSROOT_TIMEOUT_MAX;
498 }
499 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
501#endif
502
503#if defined(CONFIG_BLK_DEV_RAM) || defined(CONFIG_BLK_DEV_FD)
504void __init change_floppy(char *fmt, ...)
505{
506 struct termios termios;
507 char buf[80];
508 char c;
509 int fd;
510 va_list args;
511 va_start(args, fmt);
512 vsprintf(buf, fmt, args);
513 va_end(args);
Dominik Brodowskibae217e2018-03-11 11:34:56 +0100514 fd = ksys_open("/dev/root", O_RDWR | O_NDELAY, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 if (fd >= 0) {
Dominik Brodowskicbb60b92018-03-13 21:43:59 +0100516 ksys_ioctl(fd, FDEJECT, 0);
Dominik Brodowski2ca2a09d62018-03-11 11:34:55 +0100517 ksys_close(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 }
519 printk(KERN_NOTICE "VFS: Insert %s and press ENTER\n", buf);
Dominik Brodowskibae217e2018-03-11 11:34:56 +0100520 fd = ksys_open("/dev/console", O_RDWR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 if (fd >= 0) {
Dominik Brodowskicbb60b92018-03-13 21:43:59 +0100522 ksys_ioctl(fd, TCGETS, (long)&termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 termios.c_lflag &= ~ICANON;
Dominik Brodowskicbb60b92018-03-13 21:43:59 +0100524 ksys_ioctl(fd, TCSETSF, (long)&termios);
Dominik Brodowski3ce4a7b2018-03-13 21:56:26 +0100525 ksys_read(fd, &c, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 termios.c_lflag |= ICANON;
Dominik Brodowskicbb60b92018-03-13 21:43:59 +0100527 ksys_ioctl(fd, TCSETSF, (long)&termios);
Dominik Brodowski2ca2a09d62018-03-11 11:34:55 +0100528 ksys_close(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 }
530}
531#endif
532
533void __init mount_root(void)
534{
535#ifdef CONFIG_ROOT_NFS
Sasha Levin377485f62012-05-05 17:06:35 +0200536 if (ROOT_DEV == Root_NFS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 if (mount_nfs_root())
538 return;
539
540 printk(KERN_ERR "VFS: Unable to mount root fs via NFS, trying floppy.\n");
541 ROOT_DEV = Root_FD0;
542 }
543#endif
544#ifdef CONFIG_BLK_DEV_FD
545 if (MAJOR(ROOT_DEV) == FLOPPY_MAJOR) {
546 /* rd_doload is 2 for a dual initrd/ramload setup */
547 if (rd_doload==2) {
548 if (rd_load_disk(1)) {
549 ROOT_DEV = Root_RAM1;
550 root_device_name = NULL;
551 }
552 } else
553 change_floppy("root floppy");
554 }
555#endif
David Howells93614012006-09-30 20:45:40 +0200556#ifdef CONFIG_BLOCK
Vishnu Pratap Singhc69e3c32015-06-25 15:03:37 -0700557 {
558 int err = create_dev("/dev/root", ROOT_DEV);
559
560 if (err < 0)
561 pr_emerg("Failed to create /dev/root: %d\n", err);
562 mount_block_root("/dev/root", root_mountflags);
563 }
David Howells93614012006-09-30 20:45:40 +0200564#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565}
566
567/*
568 * Prepare the namespace - decide what/where to mount, load ramdisks, etc.
569 */
570void __init prepare_namespace(void)
571{
572 int is_floppy;
573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 if (root_delay) {
Toralf Försterca75b4d82013-07-03 15:05:38 -0700575 printk(KERN_INFO "Waiting %d sec before mounting root device...\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 root_delay);
577 ssleep(root_delay);
578 }
579
Arjan van de Ven216773a2009-02-14 01:59:06 +0100580 /*
581 * wait for the known devices to complete their probing
582 *
583 * Note: this is a potential source of long boot delays.
584 * For example, it is not atypical to wait 5 seconds here
585 * for the touchpad of a laptop to initialize.
586 */
587 wait_for_device_probe();
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700588
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 md_run_setup();
590
591 if (saved_root_name[0]) {
592 root_device_name = saved_root_name;
Adrian Hunter2d62f482008-01-31 17:25:00 +0200593 if (!strncmp(root_device_name, "mtd", 3) ||
594 !strncmp(root_device_name, "ubi", 3)) {
Joern Engele9482b42006-05-30 14:25:46 +0200595 mount_block_root(root_device_name, root_mountflags);
596 goto out;
597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 ROOT_DEV = name_to_dev_t(root_device_name);
599 if (strncmp(root_device_name, "/dev/", 5) == 0)
600 root_device_name += 5;
601 }
602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 if (initrd_load())
604 goto out;
605
Pierre Ossmancc1ed752007-07-15 23:40:35 -0700606 /* wait for any asynchronous scanning to complete */
607 if ((ROOT_DEV == 0) && root_wait) {
608 printk(KERN_INFO "Waiting for root device %s...\n",
609 saved_root_name);
610 while (driver_probe_done() != 0 ||
611 (ROOT_DEV = name_to_dev_t(saved_root_name)) == 0)
Jungseung Lee39a0e972016-12-12 16:46:43 -0800612 msleep(5);
Arjan van de Ven216773a2009-02-14 01:59:06 +0100613 async_synchronize_full();
Pierre Ossmancc1ed752007-07-15 23:40:35 -0700614 }
615
616 is_floppy = MAJOR(ROOT_DEV) == FLOPPY_MAJOR;
617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 if (is_floppy && rd_doload && rd_load_disk(0))
619 ROOT_DEV = Root_RAM0;
620
621 mount_root();
622out:
Kay Sievers2b2af542009-04-30 15:23:42 +0200623 devtmpfs_mount("dev");
Dominik Brodowski312db1a2018-03-11 11:34:39 +0100624 ksys_mount(".", "/", NULL, MS_MOVE, NULL);
Dominik Brodowskia16fe332018-03-11 11:34:41 +0100625 ksys_chroot(".");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626}
Rob Landley57f150a2013-09-11 14:26:10 -0700627
Rob Landley6e19ede2013-09-11 14:26:13 -0700628static bool is_tmpfs;
Rob Landley57f150a2013-09-11 14:26:10 -0700629static struct dentry *rootfs_mount(struct file_system_type *fs_type,
630 int flags, const char *dev_name, void *data)
631{
632 static unsigned long once;
Rob Landley6e19ede2013-09-11 14:26:13 -0700633 void *fill = ramfs_fill_super;
Rob Landley57f150a2013-09-11 14:26:10 -0700634
635 if (test_and_set_bit(0, &once))
636 return ERR_PTR(-ENODEV);
637
Rob Landley6e19ede2013-09-11 14:26:13 -0700638 if (IS_ENABLED(CONFIG_TMPFS) && is_tmpfs)
639 fill = shmem_fill_super;
640
641 return mount_nodev(fs_type, flags, data, fill);
Rob Landley57f150a2013-09-11 14:26:10 -0700642}
643
644static struct file_system_type rootfs_fs_type = {
645 .name = "rootfs",
646 .mount = rootfs_mount,
647 .kill_sb = kill_litter_super,
648};
649
650int __init init_rootfs(void)
651{
652 int err = register_filesystem(&rootfs_fs_type);
653
654 if (err)
655 return err;
656
Rob Landley6e19ede2013-09-11 14:26:13 -0700657 if (IS_ENABLED(CONFIG_TMPFS) && !saved_root_name[0] &&
658 (!root_fs_names || strstr(root_fs_names, "tmpfs"))) {
Rob Landley16203a72013-09-11 14:26:12 -0700659 err = shmem_init();
Rob Landley6e19ede2013-09-11 14:26:13 -0700660 is_tmpfs = true;
661 } else {
Rob Landley16203a72013-09-11 14:26:12 -0700662 err = init_ramfs_fs();
Rob Landley6e19ede2013-09-11 14:26:13 -0700663 }
Rob Landley16203a72013-09-11 14:26:12 -0700664
Rob Landley57f150a2013-09-11 14:26:10 -0700665 if (err)
666 unregister_filesystem(&rootfs_fs_type);
667
668 return err;
669}