blob: 804f9c6ba216a01d36c08895bc184418bc5cf7ed [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20#include <linux/nfs_fs.h>
21#include <linux/nfs_fs_sb.h>
22#include <linux/nfs_mount.h>
23
24#include "do_mounts.h"
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026int __initdata rd_doload; /* 1 = load RAM disk, 0 = don't load */
27
Theodore Ts'o9b04c992006-03-24 03:15:10 -080028int root_mountflags = MS_RDONLY | MS_SILENT;
Adrian Bunkf56f6d32008-07-25 19:46:25 -070029static char * __initdata root_device_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030static char __initdata saved_root_name[64];
Pierre Ossmancc1ed752007-07-15 23:40:35 -070031static int __initdata root_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Linus Torvalds1da177e2005-04-16 15:20:36 -070033dev_t ROOT_DEV;
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035static int __init load_ramdisk(char *str)
36{
37 rd_doload = simple_strtol(str,NULL,0) & 3;
38 return 1;
39}
40__setup("load_ramdisk=", load_ramdisk);
41
42static int __init readonly(char *str)
43{
44 if (*str)
45 return 0;
46 root_mountflags |= MS_RDONLY;
47 return 1;
48}
49
50static int __init readwrite(char *str)
51{
52 if (*str)
53 return 0;
54 root_mountflags &= ~MS_RDONLY;
55 return 1;
56}
57
58__setup("ro", readonly);
59__setup("rw", readwrite);
60
Will Drewryb5af9212010-08-31 15:47:07 -050061/**
62 * match_dev_by_uuid - callback for finding a partition using its uuid
63 * @dev: device passed in by the caller
64 * @data: opaque pointer to a 36 byte char array with a UUID
65 *
66 * Returns 1 if the device matches, and 0 otherwise.
67 */
68static int __init match_dev_by_uuid(struct device *dev, void *data)
69{
70 u8 *uuid = data;
71 struct hd_struct *part = dev_to_part(dev);
72
73 if (!part->info)
74 goto no_match;
75
76 if (memcmp(uuid, part->info->uuid, sizeof(part->info->uuid)))
77 goto no_match;
78
79 return 1;
80no_match:
81 return 0;
82}
83
84
85/**
86 * devt_from_partuuid - looks up the dev_t of a partition by its UUID
87 * @uuid: 36 byte char array containing a hex ascii UUID
88 *
89 * The function will return the first partition which contains a matching
90 * UUID value in its partition_meta_info struct. This does not search
91 * by filesystem UUIDs.
92 *
93 * Returns the matching dev_t on success or 0 on failure.
94 */
95static dev_t __init devt_from_partuuid(char *uuid_str)
96{
97 dev_t res = 0;
98 struct device *dev = NULL;
99 u8 uuid[16];
100
101 /* Pack the requested UUID in the expected format. */
102 part_pack_uuid(uuid_str, uuid);
103
104 dev = class_find_device(&block_class, NULL, uuid, &match_dev_by_uuid);
105 if (!dev)
106 goto done;
107
108 res = dev->devt;
109 put_device(dev);
110
111done:
112 return res;
113}
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115/*
116 * Convert a name into device number. We accept the following variants:
117 *
118 * 1) device number in hexadecimal represents itself
119 * 2) /dev/nfs represents Root_NFS (0xff)
120 * 3) /dev/<disk_name> represents the device number of disk
121 * 4) /dev/<disk_name><decimal> represents the device number
122 * of partition - device number of disk plus the partition number
123 * 5) /dev/<disk_name>p<decimal> - same as the above, that form is
124 * used when disk name of partitioned disk ends on a digit.
Will Drewryb5af9212010-08-31 15:47:07 -0500125 * 6) PARTUUID=00112233-4455-6677-8899-AABBCCDDEEFF representing the
126 * unique id of a partition if the partition table provides it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 *
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200128 * If name doesn't have fall into the categories above, we return (0,0).
129 * block_class is used to check if something is a disk name. If the disk
130 * name contains slashes, the device name has them replaced with
131 * bangs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 */
133
134dev_t name_to_dev_t(char *name)
135{
136 char s[32];
137 char *p;
138 dev_t res = 0;
Kay Sievers30f2f0e2008-05-06 22:31:33 +0200139 int part;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Will Drewryb5af9212010-08-31 15:47:07 -0500141 if (strncmp(name, "PARTUUID=", 9) == 0) {
142 name += 9;
143 if (strlen(name) != 36)
144 goto fail;
145 res = devt_from_partuuid(name);
146 if (!res)
147 goto fail;
148 goto done;
149 }
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 if (strncmp(name, "/dev/", 5) != 0) {
152 unsigned maj, min;
153
154 if (sscanf(name, "%u:%u", &maj, &min) == 2) {
155 res = MKDEV(maj, min);
156 if (maj != MAJOR(res) || min != MINOR(res))
157 goto fail;
158 } else {
159 res = new_decode_dev(simple_strtoul(name, &p, 16));
160 if (*p)
161 goto fail;
162 }
163 goto done;
164 }
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 name += 5;
167 res = Root_NFS;
168 if (strcmp(name, "nfs") == 0)
169 goto done;
170 res = Root_RAM0;
171 if (strcmp(name, "ram") == 0)
172 goto done;
173
174 if (strlen(name) > 31)
175 goto fail;
176 strcpy(s, name);
177 for (p = s; *p; p++)
178 if (*p == '/')
179 *p = '!';
Kay Sievers30f2f0e2008-05-06 22:31:33 +0200180 res = blk_lookup_devt(s, 0);
181 if (res)
182 goto done;
183
184 /*
185 * try non-existant, but valid partition, which may only exist
186 * after revalidating the disk, like partitioned md devices
187 */
188 while (p > s && isdigit(p[-1]))
189 p--;
190 if (p == s || !*p || *p == '0')
191 goto fail;
192
193 /* try disk name without <part number> */
194 part = simple_strtoul(p, NULL, 10);
195 *p = '\0';
196 res = blk_lookup_devt(s, part);
197 if (res)
198 goto done;
199
200 /* try disk name without p<part number> */
201 if (p < s + 2 || !isdigit(p[-2]) || p[-1] != 'p')
202 goto fail;
203 p[-1] = '\0';
204 res = blk_lookup_devt(s, part);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 if (res)
206 goto done;
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208fail:
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200209 return 0;
210done:
211 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212}
213
214static int __init root_dev_setup(char *line)
215{
216 strlcpy(saved_root_name, line, sizeof(saved_root_name));
217 return 1;
218}
219
220__setup("root=", root_dev_setup);
221
Pierre Ossmancc1ed752007-07-15 23:40:35 -0700222static int __init rootwait_setup(char *str)
223{
224 if (*str)
225 return 0;
226 root_wait = 1;
227 return 1;
228}
229
230__setup("rootwait", rootwait_setup);
231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232static char * __initdata root_mount_data;
233static int __init root_data_setup(char *str)
234{
235 root_mount_data = str;
236 return 1;
237}
238
239static char * __initdata root_fs_names;
240static int __init fs_names_setup(char *str)
241{
242 root_fs_names = str;
243 return 1;
244}
245
246static unsigned int __initdata root_delay;
247static int __init root_delay_setup(char *str)
248{
249 root_delay = simple_strtoul(str, NULL, 0);
250 return 1;
251}
252
253__setup("rootflags=", root_data_setup);
254__setup("rootfstype=", fs_names_setup);
255__setup("rootdelay=", root_delay_setup);
256
257static void __init get_fs_names(char *page)
258{
259 char *s = page;
260
261 if (root_fs_names) {
262 strcpy(page, root_fs_names);
263 while (*s++) {
264 if (s[-1] == ',')
265 s[-1] = '\0';
266 }
267 } else {
268 int len = get_filesystem_list(page);
269 char *p, *next;
270
271 page[len] = '\0';
272 for (p = page-1; p; p = next) {
273 next = strchr(++p, '\n');
274 if (*p++ != '\t')
275 continue;
276 while ((*s++ = *p++) != '\n')
277 ;
278 s[-1] = '\0';
279 }
280 }
281 *s = '\0';
282}
283
284static int __init do_mount_root(char *name, char *fs, int flags, void *data)
285{
286 int err = sys_mount(name, "/root", fs, flags, data);
287 if (err)
288 return err;
289
290 sys_chdir("/root");
Jan Blunck6ac08c32008-02-14 19:34:38 -0800291 ROOT_DEV = current->fs->pwd.mnt->mnt_sb->s_dev;
Marton Balintbca10332009-01-06 14:40:43 -0800292 printk("VFS: Mounted root (%s filesystem)%s on device %u:%u.\n",
Jan Blunck6ac08c32008-02-14 19:34:38 -0800293 current->fs->pwd.mnt->mnt_sb->s_type->name,
294 current->fs->pwd.mnt->mnt_sb->s_flags & MS_RDONLY ?
Marton Balintbca10332009-01-06 14:40:43 -0800295 " readonly" : "", MAJOR(ROOT_DEV), MINOR(ROOT_DEV));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 return 0;
297}
298
299void __init mount_block_root(char *name, int flags)
300{
Vegard Nossum3b5c7602009-05-16 11:26:20 +0200301 char *fs_names = __getname_gfp(GFP_KERNEL
302 | __GFP_NOTRACK_FALSE_POSITIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 char *p;
David Howells93614012006-09-30 20:45:40 +0200304#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 char b[BDEVNAME_SIZE];
David Howells93614012006-09-30 20:45:40 +0200306#else
307 const char *b = name;
308#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 get_fs_names(fs_names);
311retry:
312 for (p = fs_names; *p; p += strlen(p)+1) {
313 int err = do_mount_root(name, p, flags, root_mount_data);
314 switch (err) {
315 case 0:
316 goto out;
317 case -EACCES:
318 flags |= MS_RDONLY;
319 goto retry;
320 case -EINVAL:
321 continue;
322 }
323 /*
324 * Allow the user to distinguish between failed sys_open
325 * and bad superblock on root device.
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700326 * and give them a list of the available devices
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 */
David Howells93614012006-09-30 20:45:40 +0200328#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 __bdevname(ROOT_DEV, b);
David Howells93614012006-09-30 20:45:40 +0200330#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 printk("VFS: Cannot open root device \"%s\" or %s\n",
332 root_device_name, b);
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700333 printk("Please append a correct \"root=\" boot option; here are the available partitions:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700335 printk_all_partitions();
Tejun Heo55dc7db2008-09-01 13:44:35 +0200336#ifdef CONFIG_DEBUG_BLOCK_EXT_DEVT
337 printk("DEBUG_BLOCK_EXT_DEVT is enabled, you need to specify "
338 "explicit textual name for \"root=\" boot option.\n");
339#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 panic("VFS: Unable to mount root fs on %s", b);
341 }
Andy Whitcroftbe6e0282006-05-15 09:44:29 -0700342
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700343 printk("List of all partitions:\n");
344 printk_all_partitions();
Andy Whitcroftbe6e0282006-05-15 09:44:29 -0700345 printk("No filesystem could mount root, tried: ");
346 for (p = fs_names; *p; p += strlen(p)+1)
347 printk(" %s", p);
348 printk("\n");
David Howells93614012006-09-30 20:45:40 +0200349#ifdef CONFIG_BLOCK
350 __bdevname(ROOT_DEV, b);
351#endif
352 panic("VFS: Unable to mount root fs on %s", b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353out:
354 putname(fs_names);
355}
356
357#ifdef CONFIG_ROOT_NFS
358static int __init mount_nfs_root(void)
359{
360 void *data = nfs_root_data();
361
Greg Kroah-Hartmanbdaf8522005-06-20 21:15:16 -0700362 create_dev("/dev/root", ROOT_DEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 if (data &&
364 do_mount_root("/dev/root", "nfs", root_mountflags, data) == 0)
365 return 1;
366 return 0;
367}
368#endif
369
370#if defined(CONFIG_BLK_DEV_RAM) || defined(CONFIG_BLK_DEV_FD)
371void __init change_floppy(char *fmt, ...)
372{
373 struct termios termios;
374 char buf[80];
375 char c;
376 int fd;
377 va_list args;
378 va_start(args, fmt);
379 vsprintf(buf, fmt, args);
380 va_end(args);
381 fd = sys_open("/dev/root", O_RDWR | O_NDELAY, 0);
382 if (fd >= 0) {
383 sys_ioctl(fd, FDEJECT, 0);
384 sys_close(fd);
385 }
386 printk(KERN_NOTICE "VFS: Insert %s and press ENTER\n", buf);
387 fd = sys_open("/dev/console", O_RDWR, 0);
388 if (fd >= 0) {
389 sys_ioctl(fd, TCGETS, (long)&termios);
390 termios.c_lflag &= ~ICANON;
391 sys_ioctl(fd, TCSETSF, (long)&termios);
392 sys_read(fd, &c, 1);
393 termios.c_lflag |= ICANON;
394 sys_ioctl(fd, TCSETSF, (long)&termios);
395 sys_close(fd);
396 }
397}
398#endif
399
400void __init mount_root(void)
401{
402#ifdef CONFIG_ROOT_NFS
403 if (MAJOR(ROOT_DEV) == UNNAMED_MAJOR) {
404 if (mount_nfs_root())
405 return;
406
407 printk(KERN_ERR "VFS: Unable to mount root fs via NFS, trying floppy.\n");
408 ROOT_DEV = Root_FD0;
409 }
410#endif
411#ifdef CONFIG_BLK_DEV_FD
412 if (MAJOR(ROOT_DEV) == FLOPPY_MAJOR) {
413 /* rd_doload is 2 for a dual initrd/ramload setup */
414 if (rd_doload==2) {
415 if (rd_load_disk(1)) {
416 ROOT_DEV = Root_RAM1;
417 root_device_name = NULL;
418 }
419 } else
420 change_floppy("root floppy");
421 }
422#endif
David Howells93614012006-09-30 20:45:40 +0200423#ifdef CONFIG_BLOCK
Greg Kroah-Hartmanbdaf8522005-06-20 21:15:16 -0700424 create_dev("/dev/root", ROOT_DEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 mount_block_root("/dev/root", root_mountflags);
David Howells93614012006-09-30 20:45:40 +0200426#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427}
428
429/*
430 * Prepare the namespace - decide what/where to mount, load ramdisks, etc.
431 */
432void __init prepare_namespace(void)
433{
434 int is_floppy;
435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 if (root_delay) {
437 printk(KERN_INFO "Waiting %dsec before mounting root device...\n",
438 root_delay);
439 ssleep(root_delay);
440 }
441
Arjan van de Ven216773a2009-02-14 01:59:06 +0100442 /*
443 * wait for the known devices to complete their probing
444 *
445 * Note: this is a potential source of long boot delays.
446 * For example, it is not atypical to wait 5 seconds here
447 * for the touchpad of a laptop to initialize.
448 */
449 wait_for_device_probe();
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 md_run_setup();
452
453 if (saved_root_name[0]) {
454 root_device_name = saved_root_name;
Adrian Hunter2d62f482008-01-31 17:25:00 +0200455 if (!strncmp(root_device_name, "mtd", 3) ||
456 !strncmp(root_device_name, "ubi", 3)) {
Joern Engele9482b42006-05-30 14:25:46 +0200457 mount_block_root(root_device_name, root_mountflags);
458 goto out;
459 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 ROOT_DEV = name_to_dev_t(root_device_name);
461 if (strncmp(root_device_name, "/dev/", 5) == 0)
462 root_device_name += 5;
463 }
464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 if (initrd_load())
466 goto out;
467
Pierre Ossmancc1ed752007-07-15 23:40:35 -0700468 /* wait for any asynchronous scanning to complete */
469 if ((ROOT_DEV == 0) && root_wait) {
470 printk(KERN_INFO "Waiting for root device %s...\n",
471 saved_root_name);
472 while (driver_probe_done() != 0 ||
473 (ROOT_DEV = name_to_dev_t(saved_root_name)) == 0)
474 msleep(100);
Arjan van de Ven216773a2009-02-14 01:59:06 +0100475 async_synchronize_full();
Pierre Ossmancc1ed752007-07-15 23:40:35 -0700476 }
477
478 is_floppy = MAJOR(ROOT_DEV) == FLOPPY_MAJOR;
479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 if (is_floppy && rd_doload && rd_load_disk(0))
481 ROOT_DEV = Root_RAM0;
482
483 mount_root();
484out:
Kay Sievers2b2af542009-04-30 15:23:42 +0200485 devtmpfs_mount("dev");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 sys_mount(".", "/", NULL, MS_MOVE, NULL);
487 sys_chroot(".");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488}