init: reduce PARTUUID min length to 1 from 36
[linux-2.6-block.git] / init / do_mounts.c
CommitLineData
c67e5382
HS
1/*
2 * Many of the syscalls used in this file expect some of the arguments
3 * to be __user pointers not __kernel pointers. To limit the sparse
4 * noise, turn off sparse checking for this file.
5 */
6#ifdef __CHECKER__
7#undef __CHECKER__
8#warning "Sparse checking disabled for this file"
9#endif
10
1da177e4
LT
11#include <linux/module.h>
12#include <linux/sched.h>
13#include <linux/ctype.h>
14#include <linux/fd.h>
15#include <linux/tty.h>
16#include <linux/suspend.h>
17#include <linux/root_dev.h>
18#include <linux/security.h>
19#include <linux/delay.h>
dd2a345f 20#include <linux/genhd.h>
d53d9f16 21#include <linux/mount.h>
d779249e 22#include <linux/device.h>
46595390 23#include <linux/init.h>
011e3fcd 24#include <linux/fs.h>
82c8253a 25#include <linux/initrd.h>
22a9d645 26#include <linux/async.h>
5ad4e53b 27#include <linux/fs_struct.h>
5a0e3ad6 28#include <linux/slab.h>
1da177e4
LT
29
30#include <linux/nfs_fs.h>
31#include <linux/nfs_fs_sb.h>
32#include <linux/nfs_mount.h>
33
34#include "do_mounts.h"
35
1da177e4
LT
36int __initdata rd_doload; /* 1 = load RAM disk, 0 = don't load */
37
9b04c997 38int root_mountflags = MS_RDONLY | MS_SILENT;
f56f6d30 39static char * __initdata root_device_name;
1da177e4 40static char __initdata saved_root_name[64];
79975f13 41static int root_wait;
1da177e4 42
1da177e4
LT
43dev_t ROOT_DEV;
44
1da177e4
LT
45static int __init load_ramdisk(char *str)
46{
47 rd_doload = simple_strtol(str,NULL,0) & 3;
48 return 1;
49}
50__setup("load_ramdisk=", load_ramdisk);
51
52static int __init readonly(char *str)
53{
54 if (*str)
55 return 0;
56 root_mountflags |= MS_RDONLY;
57 return 1;
58}
59
60static int __init readwrite(char *str)
61{
62 if (*str)
63 return 0;
64 root_mountflags &= ~MS_RDONLY;
65 return 1;
66}
67
68__setup("ro", readonly);
69__setup("rw", readwrite);
70
6d0aed7a 71#ifdef CONFIG_BLOCK
1ad7e899
SW
72struct uuidcmp {
73 const char *uuid;
74 int len;
75};
76
b5af921e
WD
77/**
78 * match_dev_by_uuid - callback for finding a partition using its uuid
79 * @dev: device passed in by the caller
1ad7e899 80 * @data: opaque pointer to the desired struct uuidcmp to match
b5af921e
WD
81 *
82 * Returns 1 if the device matches, and 0 otherwise.
83 */
38b6f45a 84static int match_dev_by_uuid(struct device *dev, void *data)
b5af921e 85{
1ad7e899 86 struct uuidcmp *cmp = data;
b5af921e
WD
87 struct hd_struct *part = dev_to_part(dev);
88
89 if (!part->info)
90 goto no_match;
91
1ad7e899
SW
92 if (strncasecmp(cmp->uuid, part->info->uuid, cmp->len))
93 goto no_match;
b5af921e
WD
94
95 return 1;
96no_match:
97 return 0;
98}
99
100
101/**
102 * devt_from_partuuid - looks up the dev_t of a partition by its UUID
1ad7e899 103 * @uuid: char array containing ascii UUID
b5af921e
WD
104 *
105 * The function will return the first partition which contains a matching
106 * UUID value in its partition_meta_info struct. This does not search
107 * by filesystem UUIDs.
108 *
79975f13
WD
109 * If @uuid is followed by a "/PARTNROFF=%d", then the number will be
110 * extracted and used as an offset from the partition identified by the UUID.
111 *
b5af921e
WD
112 * Returns the matching dev_t on success or 0 on failure.
113 */
1ad7e899 114static dev_t devt_from_partuuid(const char *uuid_str)
b5af921e
WD
115{
116 dev_t res = 0;
1ad7e899 117 struct uuidcmp cmp;
b5af921e 118 struct device *dev = NULL;
79975f13
WD
119 struct gendisk *disk;
120 struct hd_struct *part;
121 int offset = 0;
283f8fc0
SW
122 bool clear_root_wait = false;
123 char *slash;
79975f13 124
1ad7e899 125 cmp.uuid = uuid_str;
1ad7e899 126
283f8fc0 127 slash = strchr(uuid_str, '/');
79975f13 128 /* Check for optional partition number offset attributes. */
283f8fc0 129 if (slash) {
79975f13
WD
130 char c = 0;
131 /* Explicitly fail on poor PARTUUID syntax. */
283f8fc0
SW
132 if (sscanf(slash + 1,
133 "PARTNROFF=%d%c", &offset, &c) != 1) {
134 clear_root_wait = true;
79975f13
WD
135 goto done;
136 }
283f8fc0
SW
137 cmp.len = slash - uuid_str;
138 } else {
139 cmp.len = strlen(uuid_str);
140 }
141
142 if (!cmp.len) {
143 clear_root_wait = true;
144 goto done;
79975f13 145 }
b5af921e 146
1ad7e899
SW
147 dev = class_find_device(&block_class, NULL, &cmp,
148 &match_dev_by_uuid);
b5af921e
WD
149 if (!dev)
150 goto done;
151
152 res = dev->devt;
b5af921e 153
79975f13
WD
154 /* Attempt to find the partition by offset. */
155 if (!offset)
156 goto no_offset;
157
158 res = 0;
159 disk = part_to_disk(dev_to_part(dev));
160 part = disk_get_part(disk, dev_to_part(dev)->partno + offset);
161 if (part) {
162 res = part_devt(part);
163 put_device(part_to_dev(part));
164 }
165
166no_offset:
167 put_device(dev);
b5af921e 168done:
283f8fc0
SW
169 if (clear_root_wait) {
170 pr_err("VFS: PARTUUID= is invalid.\n"
171 "Expected PARTUUID=<valid-uuid-id>[/PARTNROFF=%%d]\n");
172 if (root_wait)
173 pr_err("Disabling rootwait; root= is invalid.\n");
174 root_wait = 0;
175 }
b5af921e
WD
176 return res;
177}
6d0aed7a 178#endif
b5af921e 179
1da177e4
LT
180/*
181 * Convert a name into device number. We accept the following variants:
182 *
183 * 1) device number in hexadecimal represents itself
184 * 2) /dev/nfs represents Root_NFS (0xff)
185 * 3) /dev/<disk_name> represents the device number of disk
186 * 4) /dev/<disk_name><decimal> represents the device number
187 * of partition - device number of disk plus the partition number
188 * 5) /dev/<disk_name>p<decimal> - same as the above, that form is
189 * used when disk name of partitioned disk ends on a digit.
b5af921e
WD
190 * 6) PARTUUID=00112233-4455-6677-8899-AABBCCDDEEFF representing the
191 * unique id of a partition if the partition table provides it.
79975f13
WD
192 * 7) PARTUUID=<UUID>/PARTNROFF=<int> to select a partition in relation to
193 * a partition with a known unique id.
1da177e4 194 *
edfaa7c3
KS
195 * If name doesn't have fall into the categories above, we return (0,0).
196 * block_class is used to check if something is a disk name. If the disk
197 * name contains slashes, the device name has them replaced with
198 * bangs.
1da177e4
LT
199 */
200
201dev_t name_to_dev_t(char *name)
202{
203 char s[32];
204 char *p;
205 dev_t res = 0;
30f2f0eb 206 int part;
1da177e4 207
6d0aed7a 208#ifdef CONFIG_BLOCK
b5af921e
WD
209 if (strncmp(name, "PARTUUID=", 9) == 0) {
210 name += 9;
b5af921e
WD
211 res = devt_from_partuuid(name);
212 if (!res)
213 goto fail;
214 goto done;
215 }
6d0aed7a 216#endif
b5af921e 217
1da177e4
LT
218 if (strncmp(name, "/dev/", 5) != 0) {
219 unsigned maj, min;
220
221 if (sscanf(name, "%u:%u", &maj, &min) == 2) {
222 res = MKDEV(maj, min);
223 if (maj != MAJOR(res) || min != MINOR(res))
224 goto fail;
225 } else {
226 res = new_decode_dev(simple_strtoul(name, &p, 16));
227 if (*p)
228 goto fail;
229 }
230 goto done;
231 }
edfaa7c3 232
1da177e4
LT
233 name += 5;
234 res = Root_NFS;
235 if (strcmp(name, "nfs") == 0)
236 goto done;
237 res = Root_RAM0;
238 if (strcmp(name, "ram") == 0)
239 goto done;
240
241 if (strlen(name) > 31)
242 goto fail;
243 strcpy(s, name);
244 for (p = s; *p; p++)
245 if (*p == '/')
246 *p = '!';
30f2f0eb
KS
247 res = blk_lookup_devt(s, 0);
248 if (res)
249 goto done;
250
251 /*
25985edc 252 * try non-existent, but valid partition, which may only exist
30f2f0eb
KS
253 * after revalidating the disk, like partitioned md devices
254 */
255 while (p > s && isdigit(p[-1]))
256 p--;
257 if (p == s || !*p || *p == '0')
258 goto fail;
259
260 /* try disk name without <part number> */
261 part = simple_strtoul(p, NULL, 10);
262 *p = '\0';
263 res = blk_lookup_devt(s, part);
264 if (res)
265 goto done;
266
267 /* try disk name without p<part number> */
268 if (p < s + 2 || !isdigit(p[-2]) || p[-1] != 'p')
269 goto fail;
270 p[-1] = '\0';
271 res = blk_lookup_devt(s, part);
1da177e4
LT
272 if (res)
273 goto done;
274
edfaa7c3
KS
275fail:
276 return 0;
1da177e4 277done:
1da177e4 278 return res;
1da177e4
LT
279}
280
281static int __init root_dev_setup(char *line)
282{
283 strlcpy(saved_root_name, line, sizeof(saved_root_name));
284 return 1;
285}
286
287__setup("root=", root_dev_setup);
288
cc1ed754
PO
289static int __init rootwait_setup(char *str)
290{
291 if (*str)
292 return 0;
293 root_wait = 1;
294 return 1;
295}
296
297__setup("rootwait", rootwait_setup);
298
1da177e4
LT
299static char * __initdata root_mount_data;
300static int __init root_data_setup(char *str)
301{
302 root_mount_data = str;
303 return 1;
304}
305
306static char * __initdata root_fs_names;
307static int __init fs_names_setup(char *str)
308{
309 root_fs_names = str;
310 return 1;
311}
312
313static unsigned int __initdata root_delay;
314static int __init root_delay_setup(char *str)
315{
316 root_delay = simple_strtoul(str, NULL, 0);
317 return 1;
318}
319
320__setup("rootflags=", root_data_setup);
321__setup("rootfstype=", fs_names_setup);
322__setup("rootdelay=", root_delay_setup);
323
324static void __init get_fs_names(char *page)
325{
326 char *s = page;
327
328 if (root_fs_names) {
329 strcpy(page, root_fs_names);
330 while (*s++) {
331 if (s[-1] == ',')
332 s[-1] = '\0';
333 }
334 } else {
335 int len = get_filesystem_list(page);
336 char *p, *next;
337
338 page[len] = '\0';
339 for (p = page-1; p; p = next) {
340 next = strchr(++p, '\n');
341 if (*p++ != '\t')
342 continue;
343 while ((*s++ = *p++) != '\n')
344 ;
345 s[-1] = '\0';
346 }
347 }
348 *s = '\0';
349}
350
351static int __init do_mount_root(char *name, char *fs, int flags, void *data)
352{
d8c9584e 353 struct super_block *s;
1da177e4
LT
354 int err = sys_mount(name, "/root", fs, flags, data);
355 if (err)
356 return err;
357
c67e5382 358 sys_chdir("/root");
d8c9584e
AV
359 s = current->fs->pwd.dentry->d_sb;
360 ROOT_DEV = s->s_dev;
80cdc6da
MSB
361 printk(KERN_INFO
362 "VFS: Mounted root (%s filesystem)%s on device %u:%u.\n",
d8c9584e
AV
363 s->s_type->name,
364 s->s_flags & MS_RDONLY ? " readonly" : "",
365 MAJOR(ROOT_DEV), MINOR(ROOT_DEV));
1da177e4
LT
366 return 0;
367}
368
369void __init mount_block_root(char *name, int flags)
370{
a608ca21
JL
371 struct page *page = alloc_page(GFP_KERNEL |
372 __GFP_NOTRACK_FALSE_POSITIVE);
373 char *fs_names = page_address(page);
1da177e4 374 char *p;
9361401e 375#ifdef CONFIG_BLOCK
1da177e4 376 char b[BDEVNAME_SIZE];
9361401e
DH
377#else
378 const char *b = name;
379#endif
1da177e4
LT
380
381 get_fs_names(fs_names);
382retry:
383 for (p = fs_names; *p; p += strlen(p)+1) {
384 int err = do_mount_root(name, p, flags, root_mount_data);
385 switch (err) {
386 case 0:
387 goto out;
388 case -EACCES:
389 flags |= MS_RDONLY;
390 goto retry;
391 case -EINVAL:
392 continue;
393 }
394 /*
395 * Allow the user to distinguish between failed sys_open
396 * and bad superblock on root device.
dd2a345f 397 * and give them a list of the available devices
1da177e4 398 */
9361401e 399#ifdef CONFIG_BLOCK
1da177e4 400 __bdevname(ROOT_DEV, b);
9361401e 401#endif
0e0cb892
BW
402 printk("VFS: Cannot open root device \"%s\" or %s: error %d\n",
403 root_device_name, b, err);
dd2a345f 404 printk("Please append a correct \"root=\" boot option; here are the available partitions:\n");
1da177e4 405
dd2a345f 406 printk_all_partitions();
55dc7db7
TH
407#ifdef CONFIG_DEBUG_BLOCK_EXT_DEVT
408 printk("DEBUG_BLOCK_EXT_DEVT is enabled, you need to specify "
409 "explicit textual name for \"root=\" boot option.\n");
410#endif
1da177e4
LT
411 panic("VFS: Unable to mount root fs on %s", b);
412 }
be6e028b 413
dd2a345f
DG
414 printk("List of all partitions:\n");
415 printk_all_partitions();
be6e028b
AW
416 printk("No filesystem could mount root, tried: ");
417 for (p = fs_names; *p; p += strlen(p)+1)
418 printk(" %s", p);
419 printk("\n");
9361401e
DH
420#ifdef CONFIG_BLOCK
421 __bdevname(ROOT_DEV, b);
422#endif
423 panic("VFS: Unable to mount root fs on %s", b);
1da177e4 424out:
a608ca21 425 put_page(page);
1da177e4
LT
426}
427
428#ifdef CONFIG_ROOT_NFS
43717c7d
CL
429
430#define NFSROOT_TIMEOUT_MIN 5
431#define NFSROOT_TIMEOUT_MAX 30
432#define NFSROOT_RETRY_MAX 5
433
1da177e4
LT
434static int __init mount_nfs_root(void)
435{
56463e50 436 char *root_dev, *root_data;
43717c7d
CL
437 unsigned int timeout;
438 int try, err;
1da177e4 439
43717c7d
CL
440 err = nfs_root_data(&root_dev, &root_data);
441 if (err != 0)
56463e50 442 return 0;
43717c7d
CL
443
444 /*
445 * The server or network may not be ready, so try several
446 * times. Stop after a few tries in case the client wants
447 * to fall back to other boot methods.
448 */
449 timeout = NFSROOT_TIMEOUT_MIN;
450 for (try = 1; ; try++) {
451 err = do_mount_root(root_dev, "nfs",
452 root_mountflags, root_data);
453 if (err == 0)
454 return 1;
455 if (try > NFSROOT_RETRY_MAX)
456 break;
457
458 /* Wait, in case the server refused us immediately */
459 ssleep(timeout);
460 timeout <<= 1;
461 if (timeout > NFSROOT_TIMEOUT_MAX)
462 timeout = NFSROOT_TIMEOUT_MAX;
463 }
464 return 0;
1da177e4
LT
465}
466#endif
467
468#if defined(CONFIG_BLK_DEV_RAM) || defined(CONFIG_BLK_DEV_FD)
469void __init change_floppy(char *fmt, ...)
470{
471 struct termios termios;
472 char buf[80];
473 char c;
474 int fd;
475 va_list args;
476 va_start(args, fmt);
477 vsprintf(buf, fmt, args);
478 va_end(args);
479 fd = sys_open("/dev/root", O_RDWR | O_NDELAY, 0);
480 if (fd >= 0) {
481 sys_ioctl(fd, FDEJECT, 0);
482 sys_close(fd);
483 }
484 printk(KERN_NOTICE "VFS: Insert %s and press ENTER\n", buf);
485 fd = sys_open("/dev/console", O_RDWR, 0);
486 if (fd >= 0) {
487 sys_ioctl(fd, TCGETS, (long)&termios);
488 termios.c_lflag &= ~ICANON;
489 sys_ioctl(fd, TCSETSF, (long)&termios);
490 sys_read(fd, &c, 1);
491 termios.c_lflag |= ICANON;
492 sys_ioctl(fd, TCSETSF, (long)&termios);
493 sys_close(fd);
494 }
495}
496#endif
497
498void __init mount_root(void)
499{
500#ifdef CONFIG_ROOT_NFS
377485f6 501 if (ROOT_DEV == Root_NFS) {
1da177e4
LT
502 if (mount_nfs_root())
503 return;
504
505 printk(KERN_ERR "VFS: Unable to mount root fs via NFS, trying floppy.\n");
506 ROOT_DEV = Root_FD0;
507 }
508#endif
509#ifdef CONFIG_BLK_DEV_FD
510 if (MAJOR(ROOT_DEV) == FLOPPY_MAJOR) {
511 /* rd_doload is 2 for a dual initrd/ramload setup */
512 if (rd_doload==2) {
513 if (rd_load_disk(1)) {
514 ROOT_DEV = Root_RAM1;
515 root_device_name = NULL;
516 }
517 } else
518 change_floppy("root floppy");
519 }
520#endif
9361401e 521#ifdef CONFIG_BLOCK
bdaf8529 522 create_dev("/dev/root", ROOT_DEV);
1da177e4 523 mount_block_root("/dev/root", root_mountflags);
9361401e 524#endif
1da177e4
LT
525}
526
527/*
528 * Prepare the namespace - decide what/where to mount, load ramdisks, etc.
529 */
530void __init prepare_namespace(void)
531{
532 int is_floppy;
533
1da177e4
LT
534 if (root_delay) {
535 printk(KERN_INFO "Waiting %dsec before mounting root device...\n",
536 root_delay);
537 ssleep(root_delay);
538 }
539
216773a7
AV
540 /*
541 * wait for the known devices to complete their probing
542 *
543 * Note: this is a potential source of long boot delays.
544 * For example, it is not atypical to wait 5 seconds here
545 * for the touchpad of a laptop to initialize.
546 */
547 wait_for_device_probe();
d779249e 548
1da177e4
LT
549 md_run_setup();
550
551 if (saved_root_name[0]) {
552 root_device_name = saved_root_name;
2d62f488
AH
553 if (!strncmp(root_device_name, "mtd", 3) ||
554 !strncmp(root_device_name, "ubi", 3)) {
e9482b43
JE
555 mount_block_root(root_device_name, root_mountflags);
556 goto out;
557 }
1da177e4
LT
558 ROOT_DEV = name_to_dev_t(root_device_name);
559 if (strncmp(root_device_name, "/dev/", 5) == 0)
560 root_device_name += 5;
561 }
562
1da177e4
LT
563 if (initrd_load())
564 goto out;
565
cc1ed754
PO
566 /* wait for any asynchronous scanning to complete */
567 if ((ROOT_DEV == 0) && root_wait) {
568 printk(KERN_INFO "Waiting for root device %s...\n",
569 saved_root_name);
570 while (driver_probe_done() != 0 ||
571 (ROOT_DEV = name_to_dev_t(saved_root_name)) == 0)
572 msleep(100);
216773a7 573 async_synchronize_full();
cc1ed754
PO
574 }
575
576 is_floppy = MAJOR(ROOT_DEV) == FLOPPY_MAJOR;
577
1da177e4
LT
578 if (is_floppy && rd_doload && rd_load_disk(0))
579 ROOT_DEV = Root_RAM0;
580
581 mount_root();
582out:
2b2af54a 583 devtmpfs_mount("dev");
1da177e4 584 sys_mount(".", "/", NULL, MS_MOVE, NULL);
c67e5382 585 sys_chroot(".");
1da177e4 586}