]> git.karo-electronics.de Git - karo-tx-linux.git/blob - init/do_mounts.c
init: reduce PARTUUID min length to 1 from 36
[karo-tx-linux.git] / init / do_mounts.c
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
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>
20 #include <linux/genhd.h>
21 #include <linux/mount.h>
22 #include <linux/device.h>
23 #include <linux/init.h>
24 #include <linux/fs.h>
25 #include <linux/initrd.h>
26 #include <linux/async.h>
27 #include <linux/fs_struct.h>
28 #include <linux/slab.h>
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
36 int __initdata rd_doload;       /* 1 = load RAM disk, 0 = don't load */
37
38 int root_mountflags = MS_RDONLY | MS_SILENT;
39 static char * __initdata root_device_name;
40 static char __initdata saved_root_name[64];
41 static int root_wait;
42
43 dev_t ROOT_DEV;
44
45 static 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
52 static int __init readonly(char *str)
53 {
54         if (*str)
55                 return 0;
56         root_mountflags |= MS_RDONLY;
57         return 1;
58 }
59
60 static 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
71 #ifdef CONFIG_BLOCK
72 struct uuidcmp {
73         const char *uuid;
74         int len;
75 };
76
77 /**
78  * match_dev_by_uuid - callback for finding a partition using its uuid
79  * @dev:        device passed in by the caller
80  * @data:       opaque pointer to the desired struct uuidcmp to match
81  *
82  * Returns 1 if the device matches, and 0 otherwise.
83  */
84 static int match_dev_by_uuid(struct device *dev, void *data)
85 {
86         struct uuidcmp *cmp = data;
87         struct hd_struct *part = dev_to_part(dev);
88
89         if (!part->info)
90                 goto no_match;
91
92         if (strncasecmp(cmp->uuid, part->info->uuid, cmp->len))
93                 goto no_match;
94
95         return 1;
96 no_match:
97         return 0;
98 }
99
100
101 /**
102  * devt_from_partuuid - looks up the dev_t of a partition by its UUID
103  * @uuid:       char array containing ascii UUID
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  *
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  *
112  * Returns the matching dev_t on success or 0 on failure.
113  */
114 static dev_t devt_from_partuuid(const char *uuid_str)
115 {
116         dev_t res = 0;
117         struct uuidcmp cmp;
118         struct device *dev = NULL;
119         struct gendisk *disk;
120         struct hd_struct *part;
121         int offset = 0;
122         bool clear_root_wait = false;
123         char *slash;
124
125         cmp.uuid = uuid_str;
126
127         slash = strchr(uuid_str, '/');
128         /* Check for optional partition number offset attributes. */
129         if (slash) {
130                 char c = 0;
131                 /* Explicitly fail on poor PARTUUID syntax. */
132                 if (sscanf(slash + 1,
133                            "PARTNROFF=%d%c", &offset, &c) != 1) {
134                         clear_root_wait = true;
135                         goto done;
136                 }
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;
145         }
146
147         dev = class_find_device(&block_class, NULL, &cmp,
148                                 &match_dev_by_uuid);
149         if (!dev)
150                 goto done;
151
152         res = dev->devt;
153
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
166 no_offset:
167         put_device(dev);
168 done:
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         }
176         return res;
177 }
178 #endif
179
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.
190  *      6) PARTUUID=00112233-4455-6677-8899-AABBCCDDEEFF representing the
191  *         unique id of a partition if the partition table provides it.
192  *      7) PARTUUID=<UUID>/PARTNROFF=<int> to select a partition in relation to
193  *         a partition with a known unique id.
194  *
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.
199  */
200
201 dev_t name_to_dev_t(char *name)
202 {
203         char s[32];
204         char *p;
205         dev_t res = 0;
206         int part;
207
208 #ifdef CONFIG_BLOCK
209         if (strncmp(name, "PARTUUID=", 9) == 0) {
210                 name += 9;
211                 res = devt_from_partuuid(name);
212                 if (!res)
213                         goto fail;
214                 goto done;
215         }
216 #endif
217
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         }
232
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 = '!';
247         res = blk_lookup_devt(s, 0);
248         if (res)
249                 goto done;
250
251         /*
252          * try non-existent, but valid partition, which may only exist
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);
272         if (res)
273                 goto done;
274
275 fail:
276         return 0;
277 done:
278         return res;
279 }
280
281 static 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
289 static 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
299 static char * __initdata root_mount_data;
300 static int __init root_data_setup(char *str)
301 {
302         root_mount_data = str;
303         return 1;
304 }
305
306 static char * __initdata root_fs_names;
307 static int __init fs_names_setup(char *str)
308 {
309         root_fs_names = str;
310         return 1;
311 }
312
313 static unsigned int __initdata root_delay;
314 static 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
324 static 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
351 static int __init do_mount_root(char *name, char *fs, int flags, void *data)
352 {
353         struct super_block *s;
354         int err = sys_mount(name, "/root", fs, flags, data);
355         if (err)
356                 return err;
357
358         sys_chdir("/root");
359         s = current->fs->pwd.dentry->d_sb;
360         ROOT_DEV = s->s_dev;
361         printk(KERN_INFO
362                "VFS: Mounted root (%s filesystem)%s on device %u:%u.\n",
363                s->s_type->name,
364                s->s_flags & MS_RDONLY ?  " readonly" : "",
365                MAJOR(ROOT_DEV), MINOR(ROOT_DEV));
366         return 0;
367 }
368
369 void __init mount_block_root(char *name, int flags)
370 {
371         struct page *page = alloc_page(GFP_KERNEL |
372                                         __GFP_NOTRACK_FALSE_POSITIVE);
373         char *fs_names = page_address(page);
374         char *p;
375 #ifdef CONFIG_BLOCK
376         char b[BDEVNAME_SIZE];
377 #else
378         const char *b = name;
379 #endif
380
381         get_fs_names(fs_names);
382 retry:
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.
397                  * and give them a list of the available devices
398                  */
399 #ifdef CONFIG_BLOCK
400                 __bdevname(ROOT_DEV, b);
401 #endif
402                 printk("VFS: Cannot open root device \"%s\" or %s: error %d\n",
403                                 root_device_name, b, err);
404                 printk("Please append a correct \"root=\" boot option; here are the available partitions:\n");
405
406                 printk_all_partitions();
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
411                 panic("VFS: Unable to mount root fs on %s", b);
412         }
413
414         printk("List of all partitions:\n");
415         printk_all_partitions();
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");
420 #ifdef CONFIG_BLOCK
421         __bdevname(ROOT_DEV, b);
422 #endif
423         panic("VFS: Unable to mount root fs on %s", b);
424 out:
425         put_page(page);
426 }
427  
428 #ifdef CONFIG_ROOT_NFS
429
430 #define NFSROOT_TIMEOUT_MIN     5
431 #define NFSROOT_TIMEOUT_MAX     30
432 #define NFSROOT_RETRY_MAX       5
433
434 static int __init mount_nfs_root(void)
435 {
436         char *root_dev, *root_data;
437         unsigned int timeout;
438         int try, err;
439
440         err = nfs_root_data(&root_dev, &root_data);
441         if (err != 0)
442                 return 0;
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;
465 }
466 #endif
467
468 #if defined(CONFIG_BLK_DEV_RAM) || defined(CONFIG_BLK_DEV_FD)
469 void __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
498 void __init mount_root(void)
499 {
500 #ifdef CONFIG_ROOT_NFS
501         if (ROOT_DEV == Root_NFS) {
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
521 #ifdef CONFIG_BLOCK
522         create_dev("/dev/root", ROOT_DEV);
523         mount_block_root("/dev/root", root_mountflags);
524 #endif
525 }
526
527 /*
528  * Prepare the namespace - decide what/where to mount, load ramdisks, etc.
529  */
530 void __init prepare_namespace(void)
531 {
532         int is_floppy;
533
534         if (root_delay) {
535                 printk(KERN_INFO "Waiting %dsec before mounting root device...\n",
536                        root_delay);
537                 ssleep(root_delay);
538         }
539
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();
548
549         md_run_setup();
550
551         if (saved_root_name[0]) {
552                 root_device_name = saved_root_name;
553                 if (!strncmp(root_device_name, "mtd", 3) ||
554                     !strncmp(root_device_name, "ubi", 3)) {
555                         mount_block_root(root_device_name, root_mountflags);
556                         goto out;
557                 }
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
563         if (initrd_load())
564                 goto out;
565
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);
573                 async_synchronize_full();
574         }
575
576         is_floppy = MAJOR(ROOT_DEV) == FLOPPY_MAJOR;
577
578         if (is_floppy && rd_doload && rd_load_disk(0))
579                 ROOT_DEV = Root_RAM0;
580
581         mount_root();
582 out:
583         devtmpfs_mount("dev");
584         sys_mount(".", "/", NULL, MS_MOVE, NULL);
585         sys_chroot(".");
586 }