Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #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 Gilbert | dd2a345 | 2007-05-09 02:33:24 -0700 | [diff] [blame] | 10 | #include <linux/genhd.h> |
Andrew Morton | d53d9f1 | 2005-07-12 13:58:07 -0700 | [diff] [blame] | 11 | #include <linux/mount.h> |
Greg Kroah-Hartman | d779249 | 2006-07-18 10:59:59 -0700 | [diff] [blame] | 12 | #include <linux/device.h> |
Adrian Bunk | 4659539 | 2007-05-08 00:24:47 -0700 | [diff] [blame] | 13 | #include <linux/init.h> |
Adrian Bunk | 011e3fc | 2008-02-06 01:36:47 -0800 | [diff] [blame] | 14 | #include <linux/fs.h> |
Adrian Bunk | 82c8253 | 2008-07-25 01:45:29 -0700 | [diff] [blame] | 15 | #include <linux/initrd.h> |
Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 16 | #include <linux/async.h> |
Al Viro | 5ad4e53 | 2009-03-29 19:50:06 -0400 | [diff] [blame] | 17 | #include <linux/fs_struct.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 18 | #include <linux/slab.h> |
Rob Landley | 57f150a | 2013-09-11 14:26:10 -0700 | [diff] [blame] | 19 | #include <linux/ramfs.h> |
Rob Landley | 16203a7 | 2013-09-11 14:26:12 -0700 | [diff] [blame] | 20 | #include <linux/shmem_fs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | int __initdata rd_doload; /* 1 = load RAM disk, 0 = don't load */ |
| 29 | |
Theodore Ts'o | 9b04c99 | 2006-03-24 03:15:10 -0800 | [diff] [blame] | 30 | int root_mountflags = MS_RDONLY | MS_SILENT; |
Adrian Bunk | f56f6d30 | 2008-07-25 19:46:25 -0700 | [diff] [blame] | 31 | static char * __initdata root_device_name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | static char __initdata saved_root_name[64]; |
Will Drewry | 79975f1 | 2011-11-02 13:38:59 -0700 | [diff] [blame] | 33 | static int root_wait; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | dev_t ROOT_DEV; |
| 36 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | static 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 | |
| 44 | static int __init readonly(char *str) |
| 45 | { |
| 46 | if (*str) |
| 47 | return 0; |
| 48 | root_mountflags |= MS_RDONLY; |
| 49 | return 1; |
| 50 | } |
| 51 | |
| 52 | static 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 Axboe | 6d0aed7 | 2010-09-17 10:00:46 +0200 | [diff] [blame] | 63 | #ifdef CONFIG_BLOCK |
Stephen Warren | 1ad7e89 | 2012-11-08 16:12:25 -0800 | [diff] [blame] | 64 | struct uuidcmp { |
| 65 | const char *uuid; |
| 66 | int len; |
| 67 | }; |
| 68 | |
Will Drewry | b5af921 | 2010-08-31 15:47:07 -0500 | [diff] [blame] | 69 | /** |
| 70 | * match_dev_by_uuid - callback for finding a partition using its uuid |
| 71 | * @dev: device passed in by the caller |
Stephen Warren | 1ad7e89 | 2012-11-08 16:12:25 -0800 | [diff] [blame] | 72 | * @data: opaque pointer to the desired struct uuidcmp to match |
Will Drewry | b5af921 | 2010-08-31 15:47:07 -0500 | [diff] [blame] | 73 | * |
| 74 | * Returns 1 if the device matches, and 0 otherwise. |
| 75 | */ |
Michał Mirosław | 9f3b795 | 2013-02-01 20:40:17 +0100 | [diff] [blame] | 76 | static int match_dev_by_uuid(struct device *dev, const void *data) |
Will Drewry | b5af921 | 2010-08-31 15:47:07 -0500 | [diff] [blame] | 77 | { |
Michał Mirosław | 9f3b795 | 2013-02-01 20:40:17 +0100 | [diff] [blame] | 78 | const struct uuidcmp *cmp = data; |
Will Drewry | b5af921 | 2010-08-31 15:47:07 -0500 | [diff] [blame] | 79 | struct hd_struct *part = dev_to_part(dev); |
| 80 | |
| 81 | if (!part->info) |
| 82 | goto no_match; |
| 83 | |
Stephen Warren | 1ad7e89 | 2012-11-08 16:12:25 -0800 | [diff] [blame] | 84 | if (strncasecmp(cmp->uuid, part->info->uuid, cmp->len)) |
| 85 | goto no_match; |
Will Drewry | b5af921 | 2010-08-31 15:47:07 -0500 | [diff] [blame] | 86 | |
| 87 | return 1; |
| 88 | no_match: |
| 89 | return 0; |
| 90 | } |
| 91 | |
| 92 | |
| 93 | /** |
| 94 | * devt_from_partuuid - looks up the dev_t of a partition by its UUID |
chishanmingshen | a68b310 | 2014-04-03 14:49:35 -0700 | [diff] [blame] | 95 | * @uuid_str: char array containing ascii UUID |
Will Drewry | b5af921 | 2010-08-31 15:47:07 -0500 | [diff] [blame] | 96 | * |
| 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 | * |
chishanmingshen | a68b310 | 2014-04-03 14:49:35 -0700 | [diff] [blame] | 101 | * If @uuid_str is followed by a "/PARTNROFF=%d", then the number will be |
Will Drewry | 79975f1 | 2011-11-02 13:38:59 -0700 | [diff] [blame] | 102 | * extracted and used as an offset from the partition identified by the UUID. |
| 103 | * |
Will Drewry | b5af921 | 2010-08-31 15:47:07 -0500 | [diff] [blame] | 104 | * Returns the matching dev_t on success or 0 on failure. |
| 105 | */ |
Stephen Warren | 1ad7e89 | 2012-11-08 16:12:25 -0800 | [diff] [blame] | 106 | static dev_t devt_from_partuuid(const char *uuid_str) |
Will Drewry | b5af921 | 2010-08-31 15:47:07 -0500 | [diff] [blame] | 107 | { |
| 108 | dev_t res = 0; |
Stephen Warren | 1ad7e89 | 2012-11-08 16:12:25 -0800 | [diff] [blame] | 109 | struct uuidcmp cmp; |
Will Drewry | b5af921 | 2010-08-31 15:47:07 -0500 | [diff] [blame] | 110 | struct device *dev = NULL; |
Will Drewry | 79975f1 | 2011-11-02 13:38:59 -0700 | [diff] [blame] | 111 | struct gendisk *disk; |
| 112 | struct hd_struct *part; |
| 113 | int offset = 0; |
Stephen Warren | 283f8fc | 2012-11-08 16:12:27 -0800 | [diff] [blame] | 114 | bool clear_root_wait = false; |
| 115 | char *slash; |
Will Drewry | 79975f1 | 2011-11-02 13:38:59 -0700 | [diff] [blame] | 116 | |
Stephen Warren | 1ad7e89 | 2012-11-08 16:12:25 -0800 | [diff] [blame] | 117 | cmp.uuid = uuid_str; |
Stephen Warren | 1ad7e89 | 2012-11-08 16:12:25 -0800 | [diff] [blame] | 118 | |
Stephen Warren | 283f8fc | 2012-11-08 16:12:27 -0800 | [diff] [blame] | 119 | slash = strchr(uuid_str, '/'); |
Will Drewry | 79975f1 | 2011-11-02 13:38:59 -0700 | [diff] [blame] | 120 | /* Check for optional partition number offset attributes. */ |
Stephen Warren | 283f8fc | 2012-11-08 16:12:27 -0800 | [diff] [blame] | 121 | if (slash) { |
Will Drewry | 79975f1 | 2011-11-02 13:38:59 -0700 | [diff] [blame] | 122 | char c = 0; |
| 123 | /* Explicitly fail on poor PARTUUID syntax. */ |
Stephen Warren | 283f8fc | 2012-11-08 16:12:27 -0800 | [diff] [blame] | 124 | if (sscanf(slash + 1, |
| 125 | "PARTNROFF=%d%c", &offset, &c) != 1) { |
| 126 | clear_root_wait = true; |
Will Drewry | 79975f1 | 2011-11-02 13:38:59 -0700 | [diff] [blame] | 127 | goto done; |
| 128 | } |
Stephen Warren | 283f8fc | 2012-11-08 16:12:27 -0800 | [diff] [blame] | 129 | 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 Drewry | 79975f1 | 2011-11-02 13:38:59 -0700 | [diff] [blame] | 137 | } |
Will Drewry | b5af921 | 2010-08-31 15:47:07 -0500 | [diff] [blame] | 138 | |
Stephen Warren | 1ad7e89 | 2012-11-08 16:12:25 -0800 | [diff] [blame] | 139 | dev = class_find_device(&block_class, NULL, &cmp, |
| 140 | &match_dev_by_uuid); |
Will Drewry | b5af921 | 2010-08-31 15:47:07 -0500 | [diff] [blame] | 141 | if (!dev) |
| 142 | goto done; |
| 143 | |
| 144 | res = dev->devt; |
Will Drewry | b5af921 | 2010-08-31 15:47:07 -0500 | [diff] [blame] | 145 | |
Will Drewry | 79975f1 | 2011-11-02 13:38:59 -0700 | [diff] [blame] | 146 | /* 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 | |
| 158 | no_offset: |
| 159 | put_device(dev); |
Will Drewry | b5af921 | 2010-08-31 15:47:07 -0500 | [diff] [blame] | 160 | done: |
Stephen Warren | 283f8fc | 2012-11-08 16:12:27 -0800 | [diff] [blame] | 161 | 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 Drewry | b5af921 | 2010-08-31 15:47:07 -0500 | [diff] [blame] | 168 | return res; |
| 169 | } |
Nikolaus Voss | f027c34 | 2018-10-30 15:05:57 -0700 | [diff] [blame] | 170 | |
| 171 | /** |
| 172 | * match_dev_by_label - callback for finding a partition using its label |
| 173 | * @dev: device passed in by the caller |
| 174 | * @data: opaque pointer to the label to match |
| 175 | * |
| 176 | * Returns 1 if the device matches, and 0 otherwise. |
| 177 | */ |
| 178 | static int match_dev_by_label(struct device *dev, const void *data) |
| 179 | { |
| 180 | const char *label = data; |
| 181 | struct hd_struct *part = dev_to_part(dev); |
| 182 | |
| 183 | if (part->info && !strcmp(label, part->info->volname)) |
| 184 | return 1; |
| 185 | |
| 186 | return 0; |
| 187 | } |
Jens Axboe | 6d0aed7 | 2010-09-17 10:00:46 +0200 | [diff] [blame] | 188 | #endif |
Will Drewry | b5af921 | 2010-08-31 15:47:07 -0500 | [diff] [blame] | 189 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | /* |
| 191 | * Convert a name into device number. We accept the following variants: |
| 192 | * |
Pavel Machek | 0bf37ae | 2014-08-26 13:49:35 +0200 | [diff] [blame] | 193 | * 1) <hex_major><hex_minor> device number in hexadecimal represents itself |
| 194 | * no leading 0x, for example b302. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | * 2) /dev/nfs represents Root_NFS (0xff) |
| 196 | * 3) /dev/<disk_name> represents the device number of disk |
| 197 | * 4) /dev/<disk_name><decimal> represents the device number |
| 198 | * of partition - device number of disk plus the partition number |
| 199 | * 5) /dev/<disk_name>p<decimal> - same as the above, that form is |
| 200 | * used when disk name of partitioned disk ends on a digit. |
Will Drewry | b5af921 | 2010-08-31 15:47:07 -0500 | [diff] [blame] | 201 | * 6) PARTUUID=00112233-4455-6677-8899-AABBCCDDEEFF representing the |
| 202 | * unique id of a partition if the partition table provides it. |
Stephen Warren | d33b98f | 2012-11-08 16:12:28 -0800 | [diff] [blame] | 203 | * The UUID may be either an EFI/GPT UUID, or refer to an MSDOS |
| 204 | * partition using the format SSSSSSSS-PP, where SSSSSSSS is a zero- |
| 205 | * filled hex representation of the 32-bit "NT disk signature", and PP |
| 206 | * is a zero-filled hex representation of the 1-based partition number. |
Will Drewry | 79975f1 | 2011-11-02 13:38:59 -0700 | [diff] [blame] | 207 | * 7) PARTUUID=<UUID>/PARTNROFF=<int> to select a partition in relation to |
| 208 | * a partition with a known unique id. |
Sebastian Capella | 6c25161 | 2013-11-12 15:08:39 -0800 | [diff] [blame] | 209 | * 8) <major>:<minor> major and minor number of the device separated by |
| 210 | * a colon. |
Nikolaus Voss | f027c34 | 2018-10-30 15:05:57 -0700 | [diff] [blame] | 211 | * 9) PARTLABEL=<name> with name being the GPT partition label. |
| 212 | * MSDOS partitions do not support labels! |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | * |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 214 | * If name doesn't have fall into the categories above, we return (0,0). |
| 215 | * block_class is used to check if something is a disk name. If the disk |
| 216 | * name contains slashes, the device name has them replaced with |
| 217 | * bangs. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | */ |
| 219 | |
Dan Ehrenberg | e6e20a7 | 2015-02-10 15:20:49 -0800 | [diff] [blame] | 220 | dev_t name_to_dev_t(const char *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | { |
| 222 | char s[32]; |
| 223 | char *p; |
| 224 | dev_t res = 0; |
Kay Sievers | 30f2f0e | 2008-05-06 22:31:33 +0200 | [diff] [blame] | 225 | int part; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | |
Jens Axboe | 6d0aed7 | 2010-09-17 10:00:46 +0200 | [diff] [blame] | 227 | #ifdef CONFIG_BLOCK |
Will Drewry | b5af921 | 2010-08-31 15:47:07 -0500 | [diff] [blame] | 228 | if (strncmp(name, "PARTUUID=", 9) == 0) { |
| 229 | name += 9; |
Will Drewry | b5af921 | 2010-08-31 15:47:07 -0500 | [diff] [blame] | 230 | res = devt_from_partuuid(name); |
| 231 | if (!res) |
| 232 | goto fail; |
| 233 | goto done; |
Nikolaus Voss | f027c34 | 2018-10-30 15:05:57 -0700 | [diff] [blame] | 234 | } else if (strncmp(name, "PARTLABEL=", 10) == 0) { |
| 235 | struct device *dev; |
| 236 | |
| 237 | dev = class_find_device(&block_class, NULL, name + 10, |
| 238 | &match_dev_by_label); |
| 239 | if (!dev) |
| 240 | goto fail; |
| 241 | |
| 242 | res = dev->devt; |
| 243 | put_device(dev); |
| 244 | goto done; |
Will Drewry | b5af921 | 2010-08-31 15:47:07 -0500 | [diff] [blame] | 245 | } |
Jens Axboe | 6d0aed7 | 2010-09-17 10:00:46 +0200 | [diff] [blame] | 246 | #endif |
Will Drewry | b5af921 | 2010-08-31 15:47:07 -0500 | [diff] [blame] | 247 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | if (strncmp(name, "/dev/", 5) != 0) { |
Chen Yu | cb31ef4 | 2015-05-03 22:35:05 +0800 | [diff] [blame] | 249 | unsigned maj, min, offset; |
Dan Ehrenberg | 283e7ad | 2015-02-10 15:20:50 -0800 | [diff] [blame] | 250 | char dummy; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | |
Chen Yu | cb31ef4 | 2015-05-03 22:35:05 +0800 | [diff] [blame] | 252 | if ((sscanf(name, "%u:%u%c", &maj, &min, &dummy) == 2) || |
| 253 | (sscanf(name, "%u:%u:%u:%c", &maj, &min, &offset, &dummy) == 3)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | res = MKDEV(maj, min); |
| 255 | if (maj != MAJOR(res) || min != MINOR(res)) |
| 256 | goto fail; |
| 257 | } else { |
| 258 | res = new_decode_dev(simple_strtoul(name, &p, 16)); |
| 259 | if (*p) |
| 260 | goto fail; |
| 261 | } |
| 262 | goto done; |
| 263 | } |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 264 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | name += 5; |
| 266 | res = Root_NFS; |
| 267 | if (strcmp(name, "nfs") == 0) |
| 268 | goto done; |
| 269 | res = Root_RAM0; |
| 270 | if (strcmp(name, "ram") == 0) |
| 271 | goto done; |
| 272 | |
| 273 | if (strlen(name) > 31) |
| 274 | goto fail; |
| 275 | strcpy(s, name); |
| 276 | for (p = s; *p; p++) |
| 277 | if (*p == '/') |
| 278 | *p = '!'; |
Kay Sievers | 30f2f0e | 2008-05-06 22:31:33 +0200 | [diff] [blame] | 279 | res = blk_lookup_devt(s, 0); |
| 280 | if (res) |
| 281 | goto done; |
| 282 | |
| 283 | /* |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 284 | * try non-existent, but valid partition, which may only exist |
Kay Sievers | 30f2f0e | 2008-05-06 22:31:33 +0200 | [diff] [blame] | 285 | * after revalidating the disk, like partitioned md devices |
| 286 | */ |
| 287 | while (p > s && isdigit(p[-1])) |
| 288 | p--; |
| 289 | if (p == s || !*p || *p == '0') |
| 290 | goto fail; |
| 291 | |
| 292 | /* try disk name without <part number> */ |
| 293 | part = simple_strtoul(p, NULL, 10); |
| 294 | *p = '\0'; |
| 295 | res = blk_lookup_devt(s, part); |
| 296 | if (res) |
| 297 | goto done; |
| 298 | |
| 299 | /* try disk name without p<part number> */ |
| 300 | if (p < s + 2 || !isdigit(p[-2]) || p[-1] != 'p') |
| 301 | goto fail; |
| 302 | p[-1] = '\0'; |
| 303 | res = blk_lookup_devt(s, part); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | if (res) |
| 305 | goto done; |
| 306 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | fail: |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 308 | return 0; |
| 309 | done: |
| 310 | return res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | } |
Dan Ehrenberg | e6e20a7 | 2015-02-10 15:20:49 -0800 | [diff] [blame] | 312 | EXPORT_SYMBOL_GPL(name_to_dev_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | |
| 314 | static int __init root_dev_setup(char *line) |
| 315 | { |
| 316 | strlcpy(saved_root_name, line, sizeof(saved_root_name)); |
| 317 | return 1; |
| 318 | } |
| 319 | |
| 320 | __setup("root=", root_dev_setup); |
| 321 | |
Pierre Ossman | cc1ed75 | 2007-07-15 23:40:35 -0700 | [diff] [blame] | 322 | static int __init rootwait_setup(char *str) |
| 323 | { |
| 324 | if (*str) |
| 325 | return 0; |
| 326 | root_wait = 1; |
| 327 | return 1; |
| 328 | } |
| 329 | |
| 330 | __setup("rootwait", rootwait_setup); |
| 331 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | static char * __initdata root_mount_data; |
| 333 | static int __init root_data_setup(char *str) |
| 334 | { |
| 335 | root_mount_data = str; |
| 336 | return 1; |
| 337 | } |
| 338 | |
| 339 | static char * __initdata root_fs_names; |
| 340 | static int __init fs_names_setup(char *str) |
| 341 | { |
| 342 | root_fs_names = str; |
| 343 | return 1; |
| 344 | } |
| 345 | |
| 346 | static unsigned int __initdata root_delay; |
| 347 | static int __init root_delay_setup(char *str) |
| 348 | { |
| 349 | root_delay = simple_strtoul(str, NULL, 0); |
| 350 | return 1; |
| 351 | } |
| 352 | |
| 353 | __setup("rootflags=", root_data_setup); |
| 354 | __setup("rootfstype=", fs_names_setup); |
| 355 | __setup("rootdelay=", root_delay_setup); |
| 356 | |
| 357 | static void __init get_fs_names(char *page) |
| 358 | { |
| 359 | char *s = page; |
| 360 | |
| 361 | if (root_fs_names) { |
| 362 | strcpy(page, root_fs_names); |
| 363 | while (*s++) { |
| 364 | if (s[-1] == ',') |
| 365 | s[-1] = '\0'; |
| 366 | } |
| 367 | } else { |
| 368 | int len = get_filesystem_list(page); |
| 369 | char *p, *next; |
| 370 | |
| 371 | page[len] = '\0'; |
| 372 | for (p = page-1; p; p = next) { |
| 373 | next = strchr(++p, '\n'); |
| 374 | if (*p++ != '\t') |
| 375 | continue; |
| 376 | while ((*s++ = *p++) != '\n') |
| 377 | ; |
| 378 | s[-1] = '\0'; |
| 379 | } |
| 380 | } |
| 381 | *s = '\0'; |
| 382 | } |
| 383 | |
| 384 | static int __init do_mount_root(char *name, char *fs, int flags, void *data) |
| 385 | { |
Al Viro | d8c9584 | 2011-12-07 18:16:57 -0500 | [diff] [blame] | 386 | struct super_block *s; |
Dominik Brodowski | 312db1a | 2018-03-11 11:34:39 +0100 | [diff] [blame] | 387 | int err = ksys_mount(name, "/root", fs, flags, data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | if (err) |
| 389 | return err; |
| 390 | |
Dominik Brodowski | 447016e | 2018-03-11 11:34:46 +0100 | [diff] [blame] | 391 | ksys_chdir("/root"); |
Al Viro | d8c9584 | 2011-12-07 18:16:57 -0500 | [diff] [blame] | 392 | s = current->fs->pwd.dentry->d_sb; |
| 393 | ROOT_DEV = s->s_dev; |
Mandeep Singh Baines | 80cdc6d | 2011-03-22 16:33:54 -0700 | [diff] [blame] | 394 | printk(KERN_INFO |
| 395 | "VFS: Mounted root (%s filesystem)%s on device %u:%u.\n", |
Al Viro | d8c9584 | 2011-12-07 18:16:57 -0500 | [diff] [blame] | 396 | s->s_type->name, |
David Howells | bc98a42 | 2017-07-17 08:45:34 +0100 | [diff] [blame] | 397 | sb_rdonly(s) ? " readonly" : "", |
Al Viro | d8c9584 | 2011-12-07 18:16:57 -0500 | [diff] [blame] | 398 | MAJOR(ROOT_DEV), MINOR(ROOT_DEV)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | return 0; |
| 400 | } |
| 401 | |
| 402 | void __init mount_block_root(char *name, int flags) |
| 403 | { |
Levin, Alexander (Sasha Levin) | 75f296d | 2017-11-15 17:35:54 -0800 | [diff] [blame] | 404 | struct page *page = alloc_page(GFP_KERNEL); |
Jeff Layton | a608ca2 | 2012-10-10 15:25:26 -0400 | [diff] [blame] | 405 | char *fs_names = page_address(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | char *p; |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 407 | #ifdef CONFIG_BLOCK |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | char b[BDEVNAME_SIZE]; |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 409 | #else |
| 410 | const char *b = name; |
| 411 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | |
| 413 | get_fs_names(fs_names); |
| 414 | retry: |
| 415 | for (p = fs_names; *p; p += strlen(p)+1) { |
| 416 | int err = do_mount_root(name, p, flags, root_mount_data); |
| 417 | switch (err) { |
| 418 | case 0: |
| 419 | goto out; |
| 420 | case -EACCES: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | case -EINVAL: |
| 422 | continue; |
| 423 | } |
| 424 | /* |
| 425 | * Allow the user to distinguish between failed sys_open |
| 426 | * and bad superblock on root device. |
Dave Gilbert | dd2a345 | 2007-05-09 02:33:24 -0700 | [diff] [blame] | 427 | * and give them a list of the available devices |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | */ |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 429 | #ifdef CONFIG_BLOCK |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | __bdevname(ROOT_DEV, b); |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 431 | #endif |
Bernhard Walle | 0e0cb89 | 2012-03-23 15:02:28 -0700 | [diff] [blame] | 432 | printk("VFS: Cannot open root device \"%s\" or %s: error %d\n", |
| 433 | root_device_name, b, err); |
Dave Gilbert | dd2a345 | 2007-05-09 02:33:24 -0700 | [diff] [blame] | 434 | printk("Please append a correct \"root=\" boot option; here are the available partitions:\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | |
Dave Gilbert | dd2a345 | 2007-05-09 02:33:24 -0700 | [diff] [blame] | 436 | printk_all_partitions(); |
Tejun Heo | 55dc7db | 2008-09-01 13:44:35 +0200 | [diff] [blame] | 437 | #ifdef CONFIG_DEBUG_BLOCK_EXT_DEVT |
| 438 | printk("DEBUG_BLOCK_EXT_DEVT is enabled, you need to specify " |
| 439 | "explicit textual name for \"root=\" boot option.\n"); |
| 440 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | panic("VFS: Unable to mount root fs on %s", b); |
| 442 | } |
David Howells | e462ec5 | 2017-07-17 08:45:35 +0100 | [diff] [blame] | 443 | if (!(flags & SB_RDONLY)) { |
| 444 | flags |= SB_RDONLY; |
Miklos Szeredi | 10975933 | 2014-11-20 16:08:59 +0100 | [diff] [blame] | 445 | goto retry; |
| 446 | } |
Andy Whitcroft | be6e028b | 2006-05-15 09:44:29 -0700 | [diff] [blame] | 447 | |
Dave Gilbert | dd2a345 | 2007-05-09 02:33:24 -0700 | [diff] [blame] | 448 | printk("List of all partitions:\n"); |
| 449 | printk_all_partitions(); |
Andy Whitcroft | be6e028b | 2006-05-15 09:44:29 -0700 | [diff] [blame] | 450 | printk("No filesystem could mount root, tried: "); |
| 451 | for (p = fs_names; *p; p += strlen(p)+1) |
| 452 | printk(" %s", p); |
| 453 | printk("\n"); |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 454 | #ifdef CONFIG_BLOCK |
| 455 | __bdevname(ROOT_DEV, b); |
| 456 | #endif |
| 457 | panic("VFS: Unable to mount root fs on %s", b); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | out: |
Jeff Layton | a608ca2 | 2012-10-10 15:25:26 -0400 | [diff] [blame] | 459 | put_page(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | } |
| 461 | |
| 462 | #ifdef CONFIG_ROOT_NFS |
Chuck Lever | 43717c7 | 2011-12-05 15:40:30 -0500 | [diff] [blame] | 463 | |
| 464 | #define NFSROOT_TIMEOUT_MIN 5 |
| 465 | #define NFSROOT_TIMEOUT_MAX 30 |
| 466 | #define NFSROOT_RETRY_MAX 5 |
| 467 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | static int __init mount_nfs_root(void) |
| 469 | { |
Chuck Lever | 56463e5 | 2010-09-17 10:54:37 -0400 | [diff] [blame] | 470 | char *root_dev, *root_data; |
Chuck Lever | 43717c7 | 2011-12-05 15:40:30 -0500 | [diff] [blame] | 471 | unsigned int timeout; |
| 472 | int try, err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | |
Chuck Lever | 43717c7 | 2011-12-05 15:40:30 -0500 | [diff] [blame] | 474 | err = nfs_root_data(&root_dev, &root_data); |
| 475 | if (err != 0) |
Chuck Lever | 56463e5 | 2010-09-17 10:54:37 -0400 | [diff] [blame] | 476 | return 0; |
Chuck Lever | 43717c7 | 2011-12-05 15:40:30 -0500 | [diff] [blame] | 477 | |
| 478 | /* |
| 479 | * The server or network may not be ready, so try several |
| 480 | * times. Stop after a few tries in case the client wants |
| 481 | * to fall back to other boot methods. |
| 482 | */ |
| 483 | timeout = NFSROOT_TIMEOUT_MIN; |
| 484 | for (try = 1; ; try++) { |
| 485 | err = do_mount_root(root_dev, "nfs", |
| 486 | root_mountflags, root_data); |
| 487 | if (err == 0) |
| 488 | return 1; |
| 489 | if (try > NFSROOT_RETRY_MAX) |
| 490 | break; |
| 491 | |
| 492 | /* Wait, in case the server refused us immediately */ |
| 493 | ssleep(timeout); |
| 494 | timeout <<= 1; |
| 495 | if (timeout > NFSROOT_TIMEOUT_MAX) |
| 496 | timeout = NFSROOT_TIMEOUT_MAX; |
| 497 | } |
| 498 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | } |
| 500 | #endif |
| 501 | |
| 502 | #if defined(CONFIG_BLK_DEV_RAM) || defined(CONFIG_BLK_DEV_FD) |
| 503 | void __init change_floppy(char *fmt, ...) |
| 504 | { |
| 505 | struct termios termios; |
| 506 | char buf[80]; |
| 507 | char c; |
| 508 | int fd; |
| 509 | va_list args; |
| 510 | va_start(args, fmt); |
| 511 | vsprintf(buf, fmt, args); |
| 512 | va_end(args); |
Dominik Brodowski | bae217e | 2018-03-11 11:34:56 +0100 | [diff] [blame] | 513 | fd = ksys_open("/dev/root", O_RDWR | O_NDELAY, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | if (fd >= 0) { |
Dominik Brodowski | cbb60b9 | 2018-03-13 21:43:59 +0100 | [diff] [blame] | 515 | ksys_ioctl(fd, FDEJECT, 0); |
Dominik Brodowski | 2ca2a09d6 | 2018-03-11 11:34:55 +0100 | [diff] [blame] | 516 | ksys_close(fd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | } |
| 518 | printk(KERN_NOTICE "VFS: Insert %s and press ENTER\n", buf); |
Dominik Brodowski | bae217e | 2018-03-11 11:34:56 +0100 | [diff] [blame] | 519 | fd = ksys_open("/dev/console", O_RDWR, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | if (fd >= 0) { |
Dominik Brodowski | cbb60b9 | 2018-03-13 21:43:59 +0100 | [diff] [blame] | 521 | ksys_ioctl(fd, TCGETS, (long)&termios); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | termios.c_lflag &= ~ICANON; |
Dominik Brodowski | cbb60b9 | 2018-03-13 21:43:59 +0100 | [diff] [blame] | 523 | ksys_ioctl(fd, TCSETSF, (long)&termios); |
Dominik Brodowski | 3ce4a7b | 2018-03-13 21:56:26 +0100 | [diff] [blame] | 524 | ksys_read(fd, &c, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | termios.c_lflag |= ICANON; |
Dominik Brodowski | cbb60b9 | 2018-03-13 21:43:59 +0100 | [diff] [blame] | 526 | ksys_ioctl(fd, TCSETSF, (long)&termios); |
Dominik Brodowski | 2ca2a09d6 | 2018-03-11 11:34:55 +0100 | [diff] [blame] | 527 | ksys_close(fd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | } |
| 529 | } |
| 530 | #endif |
| 531 | |
| 532 | void __init mount_root(void) |
| 533 | { |
| 534 | #ifdef CONFIG_ROOT_NFS |
Sasha Levin | 377485f6 | 2012-05-05 17:06:35 +0200 | [diff] [blame] | 535 | if (ROOT_DEV == Root_NFS) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | if (mount_nfs_root()) |
| 537 | return; |
| 538 | |
| 539 | printk(KERN_ERR "VFS: Unable to mount root fs via NFS, trying floppy.\n"); |
| 540 | ROOT_DEV = Root_FD0; |
| 541 | } |
| 542 | #endif |
| 543 | #ifdef CONFIG_BLK_DEV_FD |
| 544 | if (MAJOR(ROOT_DEV) == FLOPPY_MAJOR) { |
| 545 | /* rd_doload is 2 for a dual initrd/ramload setup */ |
| 546 | if (rd_doload==2) { |
| 547 | if (rd_load_disk(1)) { |
| 548 | ROOT_DEV = Root_RAM1; |
| 549 | root_device_name = NULL; |
| 550 | } |
| 551 | } else |
| 552 | change_floppy("root floppy"); |
| 553 | } |
| 554 | #endif |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 555 | #ifdef CONFIG_BLOCK |
Vishnu Pratap Singh | c69e3c3 | 2015-06-25 15:03:37 -0700 | [diff] [blame] | 556 | { |
| 557 | int err = create_dev("/dev/root", ROOT_DEV); |
| 558 | |
| 559 | if (err < 0) |
| 560 | pr_emerg("Failed to create /dev/root: %d\n", err); |
| 561 | mount_block_root("/dev/root", root_mountflags); |
| 562 | } |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 563 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | } |
| 565 | |
| 566 | /* |
| 567 | * Prepare the namespace - decide what/where to mount, load ramdisks, etc. |
| 568 | */ |
| 569 | void __init prepare_namespace(void) |
| 570 | { |
| 571 | int is_floppy; |
| 572 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | if (root_delay) { |
Toralf Förster | ca75b4d8 | 2013-07-03 15:05:38 -0700 | [diff] [blame] | 574 | printk(KERN_INFO "Waiting %d sec before mounting root device...\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | root_delay); |
| 576 | ssleep(root_delay); |
| 577 | } |
| 578 | |
Arjan van de Ven | 216773a | 2009-02-14 01:59:06 +0100 | [diff] [blame] | 579 | /* |
| 580 | * wait for the known devices to complete their probing |
| 581 | * |
| 582 | * Note: this is a potential source of long boot delays. |
| 583 | * For example, it is not atypical to wait 5 seconds here |
| 584 | * for the touchpad of a laptop to initialize. |
| 585 | */ |
| 586 | wait_for_device_probe(); |
Greg Kroah-Hartman | d779249 | 2006-07-18 10:59:59 -0700 | [diff] [blame] | 587 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | md_run_setup(); |
| 589 | |
| 590 | if (saved_root_name[0]) { |
| 591 | root_device_name = saved_root_name; |
Adrian Hunter | 2d62f48 | 2008-01-31 17:25:00 +0200 | [diff] [blame] | 592 | if (!strncmp(root_device_name, "mtd", 3) || |
| 593 | !strncmp(root_device_name, "ubi", 3)) { |
Joern Engel | e9482b4 | 2006-05-30 14:25:46 +0200 | [diff] [blame] | 594 | mount_block_root(root_device_name, root_mountflags); |
| 595 | goto out; |
| 596 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | ROOT_DEV = name_to_dev_t(root_device_name); |
| 598 | if (strncmp(root_device_name, "/dev/", 5) == 0) |
| 599 | root_device_name += 5; |
| 600 | } |
| 601 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | if (initrd_load()) |
| 603 | goto out; |
| 604 | |
Pierre Ossman | cc1ed75 | 2007-07-15 23:40:35 -0700 | [diff] [blame] | 605 | /* wait for any asynchronous scanning to complete */ |
| 606 | if ((ROOT_DEV == 0) && root_wait) { |
| 607 | printk(KERN_INFO "Waiting for root device %s...\n", |
| 608 | saved_root_name); |
| 609 | while (driver_probe_done() != 0 || |
| 610 | (ROOT_DEV = name_to_dev_t(saved_root_name)) == 0) |
Jungseung Lee | 39a0e97 | 2016-12-12 16:46:43 -0800 | [diff] [blame] | 611 | msleep(5); |
Arjan van de Ven | 216773a | 2009-02-14 01:59:06 +0100 | [diff] [blame] | 612 | async_synchronize_full(); |
Pierre Ossman | cc1ed75 | 2007-07-15 23:40:35 -0700 | [diff] [blame] | 613 | } |
| 614 | |
| 615 | is_floppy = MAJOR(ROOT_DEV) == FLOPPY_MAJOR; |
| 616 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | if (is_floppy && rd_doload && rd_load_disk(0)) |
| 618 | ROOT_DEV = Root_RAM0; |
| 619 | |
| 620 | mount_root(); |
| 621 | out: |
Kay Sievers | 2b2af54 | 2009-04-30 15:23:42 +0200 | [diff] [blame] | 622 | devtmpfs_mount("dev"); |
Dominik Brodowski | 312db1a | 2018-03-11 11:34:39 +0100 | [diff] [blame] | 623 | ksys_mount(".", "/", NULL, MS_MOVE, NULL); |
Dominik Brodowski | a16fe33 | 2018-03-11 11:34:41 +0100 | [diff] [blame] | 624 | ksys_chroot("."); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | } |
Rob Landley | 57f150a | 2013-09-11 14:26:10 -0700 | [diff] [blame] | 626 | |
Rob Landley | 6e19ede | 2013-09-11 14:26:13 -0700 | [diff] [blame] | 627 | static bool is_tmpfs; |
Rob Landley | 57f150a | 2013-09-11 14:26:10 -0700 | [diff] [blame] | 628 | static struct dentry *rootfs_mount(struct file_system_type *fs_type, |
| 629 | int flags, const char *dev_name, void *data) |
| 630 | { |
| 631 | static unsigned long once; |
Rob Landley | 6e19ede | 2013-09-11 14:26:13 -0700 | [diff] [blame] | 632 | void *fill = ramfs_fill_super; |
Rob Landley | 57f150a | 2013-09-11 14:26:10 -0700 | [diff] [blame] | 633 | |
| 634 | if (test_and_set_bit(0, &once)) |
| 635 | return ERR_PTR(-ENODEV); |
| 636 | |
Rob Landley | 6e19ede | 2013-09-11 14:26:13 -0700 | [diff] [blame] | 637 | if (IS_ENABLED(CONFIG_TMPFS) && is_tmpfs) |
| 638 | fill = shmem_fill_super; |
| 639 | |
| 640 | return mount_nodev(fs_type, flags, data, fill); |
Rob Landley | 57f150a | 2013-09-11 14:26:10 -0700 | [diff] [blame] | 641 | } |
| 642 | |
| 643 | static struct file_system_type rootfs_fs_type = { |
| 644 | .name = "rootfs", |
| 645 | .mount = rootfs_mount, |
| 646 | .kill_sb = kill_litter_super, |
| 647 | }; |
| 648 | |
| 649 | int __init init_rootfs(void) |
| 650 | { |
| 651 | int err = register_filesystem(&rootfs_fs_type); |
| 652 | |
| 653 | if (err) |
| 654 | return err; |
| 655 | |
Rob Landley | 6e19ede | 2013-09-11 14:26:13 -0700 | [diff] [blame] | 656 | if (IS_ENABLED(CONFIG_TMPFS) && !saved_root_name[0] && |
| 657 | (!root_fs_names || strstr(root_fs_names, "tmpfs"))) { |
Rob Landley | 16203a7 | 2013-09-11 14:26:12 -0700 | [diff] [blame] | 658 | err = shmem_init(); |
Rob Landley | 6e19ede | 2013-09-11 14:26:13 -0700 | [diff] [blame] | 659 | is_tmpfs = true; |
| 660 | } else { |
Rob Landley | 16203a7 | 2013-09-11 14:26:12 -0700 | [diff] [blame] | 661 | err = init_ramfs_fs(); |
Rob Landley | 6e19ede | 2013-09-11 14:26:13 -0700 | [diff] [blame] | 662 | } |
Rob Landley | 16203a7 | 2013-09-11 14:26:12 -0700 | [diff] [blame] | 663 | |
Rob Landley | 57f150a | 2013-09-11 14:26:10 -0700 | [diff] [blame] | 664 | if (err) |
| 665 | unregister_filesystem(&rootfs_fs_type); |
| 666 | |
| 667 | return err; |
| 668 | } |