Blame view

init/do_mounts.c 14.8 KB
457c89965   Thomas Gleixner   treewide: Add SPD...
1
  // SPDX-License-Identifier: GPL-2.0-only
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2
3
4
5
6
7
8
9
10
  #include <linux/module.h>
  #include <linux/sched.h>
  #include <linux/ctype.h>
  #include <linux/fd.h>
  #include <linux/tty.h>
  #include <linux/suspend.h>
  #include <linux/root_dev.h>
  #include <linux/security.h>
  #include <linux/delay.h>
dd2a345f8   Dave Gilbert   Display all possi...
11
  #include <linux/genhd.h>
d53d9f16e   Andrew Morton   [PATCH] name_to_d...
12
  #include <linux/mount.h>
d779249ed   Greg Kroah-Hartman   Driver Core: add ...
13
  #include <linux/device.h>
46595390e   Adrian Bunk   init/do_mounts.c:...
14
  #include <linux/init.h>
011e3fcd1   Adrian Bunk   proper prototype ...
15
  #include <linux/fs.h>
82c8253ac   Adrian Bunk   init/do_mounts.c ...
16
  #include <linux/initrd.h>
22a9d6456   Arjan van de Ven   async: Asynchrono...
17
  #include <linux/async.h>
5ad4e53bd   Al Viro   Get rid of indire...
18
  #include <linux/fs_struct.h>
5a0e3ad6a   Tejun Heo   include cleanup: ...
19
  #include <linux/slab.h>
57f150a58   Rob Landley   initmpfs: move ro...
20
  #include <linux/ramfs.h>
16203a7a9   Rob Landley   initmpfs: make ro...
21
  #include <linux/shmem_fs.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
22
23
24
25
  
  #include <linux/nfs_fs.h>
  #include <linux/nfs_fs_sb.h>
  #include <linux/nfs_mount.h>
e262e32d6   David Howells   vfs: Suppress MS_...
26
  #include <uapi/linux/mount.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
27
28
  
  #include "do_mounts.h"
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
29
  int __initdata rd_doload;	/* 1 = load RAM disk, 0 = don't load */
9b04c997b   Theodore Ts'o   [PATCH] vfs: MS_V...
30
  int root_mountflags = MS_RDONLY | MS_SILENT;
f56f6d30c   Adrian Bunk   make init/do_moun...
31
  static char * __initdata root_device_name;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
32
  static char __initdata saved_root_name[64];
79975f132   Will Drewry   init: add root=PA...
33
  static int root_wait;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
34

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
35
  dev_t ROOT_DEV;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
  static int __init load_ramdisk(char *str)
  {
  	rd_doload = simple_strtol(str,NULL,0) & 3;
  	return 1;
  }
  __setup("load_ramdisk=", load_ramdisk);
  
  static int __init readonly(char *str)
  {
  	if (*str)
  		return 0;
  	root_mountflags |= MS_RDONLY;
  	return 1;
  }
  
  static int __init readwrite(char *str)
  {
  	if (*str)
  		return 0;
  	root_mountflags &= ~MS_RDONLY;
  	return 1;
  }
  
  __setup("ro", readonly);
  __setup("rw", readwrite);
6d0aed7a3   Jens Axboe   do_mounts: only e...
61
  #ifdef CONFIG_BLOCK
1ad7e8994   Stephen Warren   block: store part...
62
63
64
65
  struct uuidcmp {
  	const char *uuid;
  	int len;
  };
b5af921ec   Will Drewry   init: add support...
66
67
68
  /**
   * match_dev_by_uuid - callback for finding a partition using its uuid
   * @dev:	device passed in by the caller
1ad7e8994   Stephen Warren   block: store part...
69
   * @data:	opaque pointer to the desired struct uuidcmp to match
b5af921ec   Will Drewry   init: add support...
70
71
72
   *
   * Returns 1 if the device matches, and 0 otherwise.
   */
9f3b795a6   Michał Mirosław   driver-core: cons...
73
  static int match_dev_by_uuid(struct device *dev, const void *data)
b5af921ec   Will Drewry   init: add support...
74
  {
9f3b795a6   Michał Mirosław   driver-core: cons...
75
  	const struct uuidcmp *cmp = data;
b5af921ec   Will Drewry   init: add support...
76
77
78
79
  	struct hd_struct *part = dev_to_part(dev);
  
  	if (!part->info)
  		goto no_match;
1ad7e8994   Stephen Warren   block: store part...
80
81
  	if (strncasecmp(cmp->uuid, part->info->uuid, cmp->len))
  		goto no_match;
b5af921ec   Will Drewry   init: add support...
82
83
84
85
86
87
88
89
90
  
  	return 1;
  no_match:
  	return 0;
  }
  
  
  /**
   * devt_from_partuuid - looks up the dev_t of a partition by its UUID
a68b31080   chishanmingshen   init/do_mounts.c:...
91
   * @uuid_str:	char array containing ascii UUID
b5af921ec   Will Drewry   init: add support...
92
93
94
95
96
   *
   * The function will return the first partition which contains a matching
   * UUID value in its partition_meta_info struct.  This does not search
   * by filesystem UUIDs.
   *
a68b31080   chishanmingshen   init/do_mounts.c:...
97
   * If @uuid_str is followed by a "/PARTNROFF=%d", then the number will be
79975f132   Will Drewry   init: add root=PA...
98
99
   * extracted and used as an offset from the partition identified by the UUID.
   *
b5af921ec   Will Drewry   init: add support...
100
101
   * Returns the matching dev_t on success or 0 on failure.
   */
1ad7e8994   Stephen Warren   block: store part...
102
  static dev_t devt_from_partuuid(const char *uuid_str)
b5af921ec   Will Drewry   init: add support...
103
104
  {
  	dev_t res = 0;
1ad7e8994   Stephen Warren   block: store part...
105
  	struct uuidcmp cmp;
b5af921ec   Will Drewry   init: add support...
106
  	struct device *dev = NULL;
79975f132   Will Drewry   init: add root=PA...
107
108
109
  	struct gendisk *disk;
  	struct hd_struct *part;
  	int offset = 0;
283f8fc03   Stephen Warren   init: reduce PART...
110
111
  	bool clear_root_wait = false;
  	char *slash;
79975f132   Will Drewry   init: add root=PA...
112

1ad7e8994   Stephen Warren   block: store part...
113
  	cmp.uuid = uuid_str;
1ad7e8994   Stephen Warren   block: store part...
114

283f8fc03   Stephen Warren   init: reduce PART...
115
  	slash = strchr(uuid_str, '/');
79975f132   Will Drewry   init: add root=PA...
116
  	/* Check for optional partition number offset attributes. */
283f8fc03   Stephen Warren   init: reduce PART...
117
  	if (slash) {
79975f132   Will Drewry   init: add root=PA...
118
119
  		char c = 0;
  		/* Explicitly fail on poor PARTUUID syntax. */
283f8fc03   Stephen Warren   init: reduce PART...
120
121
122
  		if (sscanf(slash + 1,
  			   "PARTNROFF=%d%c", &offset, &c) != 1) {
  			clear_root_wait = true;
79975f132   Will Drewry   init: add root=PA...
123
124
  			goto done;
  		}
283f8fc03   Stephen Warren   init: reduce PART...
125
126
127
128
129
130
131
132
  		cmp.len = slash - uuid_str;
  	} else {
  		cmp.len = strlen(uuid_str);
  	}
  
  	if (!cmp.len) {
  		clear_root_wait = true;
  		goto done;
79975f132   Will Drewry   init: add root=PA...
133
  	}
b5af921ec   Will Drewry   init: add support...
134

1ad7e8994   Stephen Warren   block: store part...
135
136
  	dev = class_find_device(&block_class, NULL, &cmp,
  				&match_dev_by_uuid);
b5af921ec   Will Drewry   init: add support...
137
138
139
140
  	if (!dev)
  		goto done;
  
  	res = dev->devt;
b5af921ec   Will Drewry   init: add support...
141

79975f132   Will Drewry   init: add root=PA...
142
143
144
145
146
147
148
149
150
151
152
153
154
155
  	/* Attempt to find the partition by offset. */
  	if (!offset)
  		goto no_offset;
  
  	res = 0;
  	disk = part_to_disk(dev_to_part(dev));
  	part = disk_get_part(disk, dev_to_part(dev)->partno + offset);
  	if (part) {
  		res = part_devt(part);
  		put_device(part_to_dev(part));
  	}
  
  no_offset:
  	put_device(dev);
b5af921ec   Will Drewry   init: add support...
156
  done:
283f8fc03   Stephen Warren   init: reduce PART...
157
158
159
160
161
162
163
164
165
166
  	if (clear_root_wait) {
  		pr_err("VFS: PARTUUID= is invalid.
  "
  		       "Expected PARTUUID=<valid-uuid-id>[/PARTNROFF=%%d]
  ");
  		if (root_wait)
  			pr_err("Disabling rootwait; root= is invalid.
  ");
  		root_wait = 0;
  	}
b5af921ec   Will Drewry   init: add support...
167
168
  	return res;
  }
f027c34d8   Nikolaus Voss   init/do_mounts.c:...
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
  
  /**
   * match_dev_by_label - callback for finding a partition using its label
   * @dev:	device passed in by the caller
   * @data:	opaque pointer to the label to match
   *
   * Returns 1 if the device matches, and 0 otherwise.
   */
  static int match_dev_by_label(struct device *dev, const void *data)
  {
  	const char *label = data;
  	struct hd_struct *part = dev_to_part(dev);
  
  	if (part->info && !strcmp(label, part->info->volname))
  		return 1;
  
  	return 0;
  }
6d0aed7a3   Jens Axboe   do_mounts: only e...
187
  #endif
b5af921ec   Will Drewry   init: add support...
188

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
189
190
191
  /*
   *	Convert a name into device number.  We accept the following variants:
   *
0bf37ae4c   Pavel Machek   init/do_mounts: b...
192
193
   *	1) <hex_major><hex_minor> device number in hexadecimal represents itself
   *         no leading 0x, for example b302.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
194
195
196
197
198
199
   *	2) /dev/nfs represents Root_NFS (0xff)
   *	3) /dev/<disk_name> represents the device number of disk
   *	4) /dev/<disk_name><decimal> represents the device number
   *         of partition - device number of disk plus the partition number
   *	5) /dev/<disk_name>p<decimal> - same as the above, that form is
   *	   used when disk name of partitioned disk ends on a digit.
b5af921ec   Will Drewry   init: add support...
200
201
   *	6) PARTUUID=00112233-4455-6677-8899-AABBCCDDEEFF representing the
   *	   unique id of a partition if the partition table provides it.
d33b98fc8   Stephen Warren   block: partition:...
202
203
204
205
   *	   The UUID may be either an EFI/GPT UUID, or refer to an MSDOS
   *	   partition using the format SSSSSSSS-PP, where SSSSSSSS is a zero-
   *	   filled hex representation of the 32-bit "NT disk signature", and PP
   *	   is a zero-filled hex representation of the 1-based partition number.
79975f132   Will Drewry   init: add root=PA...
206
207
   *	7) PARTUUID=<UUID>/PARTNROFF=<int> to select a partition in relation to
   *	   a partition with a known unique id.
6c251611c   Sebastian Capella   init/do_mounts.c:...
208
209
   *	8) <major>:<minor> major and minor number of the device separated by
   *	   a colon.
f027c34d8   Nikolaus Voss   init/do_mounts.c:...
210
211
   *	9) PARTLABEL=<name> with name being the GPT partition label.
   *	   MSDOS partitions do not support labels!
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
212
   *
edfaa7c36   Kay Sievers   Driver core: conv...
213
214
215
216
   *	If name doesn't have fall into the categories above, we return (0,0).
   *	block_class is used to check if something is a disk name. If the disk
   *	name contains slashes, the device name has them replaced with
   *	bangs.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
217
   */
e6e20a7a5   Dan Ehrenberg   init: export name...
218
  dev_t name_to_dev_t(const char *name)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
219
220
221
222
  {
  	char s[32];
  	char *p;
  	dev_t res = 0;
30f2f0eb4   Kay Sievers   block: do_mounts ...
223
  	int part;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
224

6d0aed7a3   Jens Axboe   do_mounts: only e...
225
  #ifdef CONFIG_BLOCK
b5af921ec   Will Drewry   init: add support...
226
227
  	if (strncmp(name, "PARTUUID=", 9) == 0) {
  		name += 9;
b5af921ec   Will Drewry   init: add support...
228
229
230
231
  		res = devt_from_partuuid(name);
  		if (!res)
  			goto fail;
  		goto done;
f027c34d8   Nikolaus Voss   init/do_mounts.c:...
232
233
234
235
236
237
238
239
240
241
242
  	} else if (strncmp(name, "PARTLABEL=", 10) == 0) {
  		struct device *dev;
  
  		dev = class_find_device(&block_class, NULL, name + 10,
  					&match_dev_by_label);
  		if (!dev)
  			goto fail;
  
  		res = dev->devt;
  		put_device(dev);
  		goto done;
b5af921ec   Will Drewry   init: add support...
243
  	}
6d0aed7a3   Jens Axboe   do_mounts: only e...
244
  #endif
b5af921ec   Will Drewry   init: add support...
245

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
246
  	if (strncmp(name, "/dev/", 5) != 0) {
cb31ef485   Chen Yu   init: fix regress...
247
  		unsigned maj, min, offset;
283e7ad02   Dan Ehrenberg   init: stricter ch...
248
  		char dummy;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
249

cb31ef485   Chen Yu   init: fix regress...
250
251
  		if ((sscanf(name, "%u:%u%c", &maj, &min, &dummy) == 2) ||
  		    (sscanf(name, "%u:%u:%u:%c", &maj, &min, &offset, &dummy) == 3)) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
252
253
254
255
256
257
258
259
260
261
  			res = MKDEV(maj, min);
  			if (maj != MAJOR(res) || min != MINOR(res))
  				goto fail;
  		} else {
  			res = new_decode_dev(simple_strtoul(name, &p, 16));
  			if (*p)
  				goto fail;
  		}
  		goto done;
  	}
edfaa7c36   Kay Sievers   Driver core: conv...
262

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
263
264
265
266
267
268
269
270
271
272
273
274
275
276
  	name += 5;
  	res = Root_NFS;
  	if (strcmp(name, "nfs") == 0)
  		goto done;
  	res = Root_RAM0;
  	if (strcmp(name, "ram") == 0)
  		goto done;
  
  	if (strlen(name) > 31)
  		goto fail;
  	strcpy(s, name);
  	for (p = s; *p; p++)
  		if (*p == '/')
  			*p = '!';
30f2f0eb4   Kay Sievers   block: do_mounts ...
277
278
279
280
281
  	res = blk_lookup_devt(s, 0);
  	if (res)
  		goto done;
  
  	/*
25985edce   Lucas De Marchi   Fix common misspe...
282
  	 * try non-existent, but valid partition, which may only exist
30f2f0eb4   Kay Sievers   block: do_mounts ...
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
  	 * after revalidating the disk, like partitioned md devices
  	 */
  	while (p > s && isdigit(p[-1]))
  		p--;
  	if (p == s || !*p || *p == '0')
  		goto fail;
  
  	/* try disk name without <part number> */
  	part = simple_strtoul(p, NULL, 10);
  	*p = '\0';
  	res = blk_lookup_devt(s, part);
  	if (res)
  		goto done;
  
  	/* try disk name without p<part number> */
  	if (p < s + 2 || !isdigit(p[-2]) || p[-1] != 'p')
  		goto fail;
  	p[-1] = '\0';
  	res = blk_lookup_devt(s, part);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
302
303
  	if (res)
  		goto done;
edfaa7c36   Kay Sievers   Driver core: conv...
304
305
  fail:
  	return 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
306
  done:
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
307
  	return res;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
308
  }
e6e20a7a5   Dan Ehrenberg   init: export name...
309
  EXPORT_SYMBOL_GPL(name_to_dev_t);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
310
311
312
313
314
315
316
317
  
  static int __init root_dev_setup(char *line)
  {
  	strlcpy(saved_root_name, line, sizeof(saved_root_name));
  	return 1;
  }
  
  __setup("root=", root_dev_setup);
cc1ed7542   Pierre Ossman   init: wait for as...
318
319
320
321
322
323
324
325
326
  static int __init rootwait_setup(char *str)
  {
  	if (*str)
  		return 0;
  	root_wait = 1;
  	return 1;
  }
  
  __setup("rootwait", rootwait_setup);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
  static char * __initdata root_mount_data;
  static int __init root_data_setup(char *str)
  {
  	root_mount_data = str;
  	return 1;
  }
  
  static char * __initdata root_fs_names;
  static int __init fs_names_setup(char *str)
  {
  	root_fs_names = str;
  	return 1;
  }
  
  static unsigned int __initdata root_delay;
  static int __init root_delay_setup(char *str)
  {
  	root_delay = simple_strtoul(str, NULL, 0);
  	return 1;
  }
  
  __setup("rootflags=", root_data_setup);
  __setup("rootfstype=", fs_names_setup);
  __setup("rootdelay=", root_delay_setup);
  
  static void __init get_fs_names(char *page)
  {
  	char *s = page;
  
  	if (root_fs_names) {
  		strcpy(page, root_fs_names);
  		while (*s++) {
  			if (s[-1] == ',')
  				s[-1] = '\0';
  		}
  	} else {
  		int len = get_filesystem_list(page);
  		char *p, *next;
  
  		page[len] = '\0';
  		for (p = page-1; p; p = next) {
  			next = strchr(++p, '
  ');
  			if (*p++ != '\t')
  				continue;
  			while ((*s++ = *p++) != '
  ')
  				;
  			s[-1] = '\0';
  		}
  	}
  	*s = '\0';
  }
  
  static int __init do_mount_root(char *name, char *fs, int flags, void *data)
  {
d8c9584ea   Al Viro   vfs: prefer ->den...
383
  	struct super_block *s;
312db1aa1   Dominik Brodowski   fs: add ksys_moun...
384
  	int err = ksys_mount(name, "/root", fs, flags, data);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
385
386
  	if (err)
  		return err;
447016e96   Dominik Brodowski   fs: add ksys_chdi...
387
  	ksys_chdir("/root");
d8c9584ea   Al Viro   vfs: prefer ->den...
388
389
  	s = current->fs->pwd.dentry->d_sb;
  	ROOT_DEV = s->s_dev;
80cdc6dae   Mandeep Singh Baines   fs: use appropria...
390
391
392
  	printk(KERN_INFO
  	       "VFS: Mounted root (%s filesystem)%s on device %u:%u.
  ",
d8c9584ea   Al Viro   vfs: prefer ->den...
393
  	       s->s_type->name,
bc98a42c1   David Howells   VFS: Convert sb->...
394
  	       sb_rdonly(s) ? " readonly" : "",
d8c9584ea   Al Viro   vfs: prefer ->den...
395
  	       MAJOR(ROOT_DEV), MINOR(ROOT_DEV));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
396
397
398
399
400
  	return 0;
  }
  
  void __init mount_block_root(char *name, int flags)
  {
75f296d93   Levin, Alexander (Sasha Levin)   kmemcheck: stop u...
401
  	struct page *page = alloc_page(GFP_KERNEL);
a608ca21f   Jeff Layton   vfs: allocate pag...
402
  	char *fs_names = page_address(page);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
403
  	char *p;
9361401eb   David Howells   [PATCH] BLOCK: Ma...
404
  #ifdef CONFIG_BLOCK
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
405
  	char b[BDEVNAME_SIZE];
9361401eb   David Howells   [PATCH] BLOCK: Ma...
406
407
408
  #else
  	const char *b = name;
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
409
410
411
412
413
414
415
416
417
  
  	get_fs_names(fs_names);
  retry:
  	for (p = fs_names; *p; p += strlen(p)+1) {
  		int err = do_mount_root(name, p, flags, root_mount_data);
  		switch (err) {
  			case 0:
  				goto out;
  			case -EACCES:
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
418
419
420
421
422
423
  			case -EINVAL:
  				continue;
  		}
  	        /*
  		 * Allow the user to distinguish between failed sys_open
  		 * and bad superblock on root device.
dd2a345f8   Dave Gilbert   Display all possi...
424
  		 * and give them a list of the available devices
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
425
  		 */
9361401eb   David Howells   [PATCH] BLOCK: Ma...
426
  #ifdef CONFIG_BLOCK
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
427
  		__bdevname(ROOT_DEV, b);
9361401eb   David Howells   [PATCH] BLOCK: Ma...
428
  #endif
0e0cb892a   Bernhard Walle   init/do_mounts.c:...
429
430
431
  		printk("VFS: Cannot open root device \"%s\" or %s: error %d
  ",
  				root_device_name, b, err);
dd2a345f8   Dave Gilbert   Display all possi...
432
433
  		printk("Please append a correct \"root=\" boot option; here are the available partitions:
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
434

dd2a345f8   Dave Gilbert   Display all possi...
435
  		printk_all_partitions();
55dc7db70   Tejun Heo   init: DEBUG_BLOCK...
436
437
438
439
440
  #ifdef CONFIG_DEBUG_BLOCK_EXT_DEVT
  		printk("DEBUG_BLOCK_EXT_DEVT is enabled, you need to specify "
  		       "explicit textual name for \"root=\" boot option.
  ");
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
441
442
  		panic("VFS: Unable to mount root fs on %s", b);
  	}
e462ec50c   David Howells   VFS: Differentiat...
443
444
  	if (!(flags & SB_RDONLY)) {
  		flags |= SB_RDONLY;
10975933d   Miklos Szeredi   init: fix read-wr...
445
446
  		goto retry;
  	}
be6e028b6   Andy Whitcroft   [PATCH] root moun...
447

dd2a345f8   Dave Gilbert   Display all possi...
448
449
450
  	printk("List of all partitions:
  ");
  	printk_all_partitions();
be6e028b6   Andy Whitcroft   [PATCH] root moun...
451
452
453
454
455
  	printk("No filesystem could mount root, tried: ");
  	for (p = fs_names; *p; p += strlen(p)+1)
  		printk(" %s", p);
  	printk("
  ");
9361401eb   David Howells   [PATCH] BLOCK: Ma...
456
457
458
459
  #ifdef CONFIG_BLOCK
  	__bdevname(ROOT_DEV, b);
  #endif
  	panic("VFS: Unable to mount root fs on %s", b);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
460
  out:
a608ca21f   Jeff Layton   vfs: allocate pag...
461
  	put_page(page);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
462
463
464
  }
   
  #ifdef CONFIG_ROOT_NFS
43717c7da   Chuck Lever   NFS: Retry mounti...
465
466
467
468
  
  #define NFSROOT_TIMEOUT_MIN	5
  #define NFSROOT_TIMEOUT_MAX	30
  #define NFSROOT_RETRY_MAX	5
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
469
470
  static int __init mount_nfs_root(void)
  {
56463e50d   Chuck Lever   NFS: Use super.c ...
471
  	char *root_dev, *root_data;
43717c7da   Chuck Lever   NFS: Retry mounti...
472
473
  	unsigned int timeout;
  	int try, err;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
474

43717c7da   Chuck Lever   NFS: Retry mounti...
475
476
  	err = nfs_root_data(&root_dev, &root_data);
  	if (err != 0)
56463e50d   Chuck Lever   NFS: Use super.c ...
477
  		return 0;
43717c7da   Chuck Lever   NFS: Retry mounti...
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
  
  	/*
  	 * The server or network may not be ready, so try several
  	 * times.  Stop after a few tries in case the client wants
  	 * to fall back to other boot methods.
  	 */
  	timeout = NFSROOT_TIMEOUT_MIN;
  	for (try = 1; ; try++) {
  		err = do_mount_root(root_dev, "nfs",
  					root_mountflags, root_data);
  		if (err == 0)
  			return 1;
  		if (try > NFSROOT_RETRY_MAX)
  			break;
  
  		/* Wait, in case the server refused us immediately */
  		ssleep(timeout);
  		timeout <<= 1;
  		if (timeout > NFSROOT_TIMEOUT_MAX)
  			timeout = NFSROOT_TIMEOUT_MAX;
  	}
  	return 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
500
501
502
503
504
505
506
507
508
509
510
511
512
513
  }
  #endif
  
  #if defined(CONFIG_BLK_DEV_RAM) || defined(CONFIG_BLK_DEV_FD)
  void __init change_floppy(char *fmt, ...)
  {
  	struct termios termios;
  	char buf[80];
  	char c;
  	int fd;
  	va_list args;
  	va_start(args, fmt);
  	vsprintf(buf, fmt, args);
  	va_end(args);
bae217ea8   Dominik Brodowski   fs: add ksys_open...
514
  	fd = ksys_open("/dev/root", O_RDWR | O_NDELAY, 0);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
515
  	if (fd >= 0) {
cbb60b924   Dominik Brodowski   fs: add ksys_ioct...
516
  		ksys_ioctl(fd, FDEJECT, 0);
2ca2a09d6   Dominik Brodowski   fs: add ksys_clos...
517
  		ksys_close(fd);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
518
519
520
  	}
  	printk(KERN_NOTICE "VFS: Insert %s and press ENTER
  ", buf);
bae217ea8   Dominik Brodowski   fs: add ksys_open...
521
  	fd = ksys_open("/dev/console", O_RDWR, 0);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
522
  	if (fd >= 0) {
cbb60b924   Dominik Brodowski   fs: add ksys_ioct...
523
  		ksys_ioctl(fd, TCGETS, (long)&termios);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
524
  		termios.c_lflag &= ~ICANON;
cbb60b924   Dominik Brodowski   fs: add ksys_ioct...
525
  		ksys_ioctl(fd, TCSETSF, (long)&termios);
3ce4a7bf6   Dominik Brodowski   fs: add ksys_read...
526
  		ksys_read(fd, &c, 1);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
527
  		termios.c_lflag |= ICANON;
cbb60b924   Dominik Brodowski   fs: add ksys_ioct...
528
  		ksys_ioctl(fd, TCSETSF, (long)&termios);
2ca2a09d6   Dominik Brodowski   fs: add ksys_clos...
529
  		ksys_close(fd);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
530
531
532
533
534
535
536
  	}
  }
  #endif
  
  void __init mount_root(void)
  {
  #ifdef CONFIG_ROOT_NFS
377485f62   Sasha Levin   init: don't try m...
537
  	if (ROOT_DEV == Root_NFS) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
  		if (mount_nfs_root())
  			return;
  
  		printk(KERN_ERR "VFS: Unable to mount root fs via NFS, trying floppy.
  ");
  		ROOT_DEV = Root_FD0;
  	}
  #endif
  #ifdef CONFIG_BLK_DEV_FD
  	if (MAJOR(ROOT_DEV) == FLOPPY_MAJOR) {
  		/* rd_doload is 2 for a dual initrd/ramload setup */
  		if (rd_doload==2) {
  			if (rd_load_disk(1)) {
  				ROOT_DEV = Root_RAM1;
  				root_device_name = NULL;
  			}
  		} else
  			change_floppy("root floppy");
  	}
  #endif
9361401eb   David Howells   [PATCH] BLOCK: Ma...
558
  #ifdef CONFIG_BLOCK
c69e3c3a0   Vishnu Pratap Singh   init/do_mounts.c:...
559
560
561
562
563
564
565
566
  	{
  		int err = create_dev("/dev/root", ROOT_DEV);
  
  		if (err < 0)
  			pr_emerg("Failed to create /dev/root: %d
  ", err);
  		mount_block_root("/dev/root", root_mountflags);
  	}
9361401eb   David Howells   [PATCH] BLOCK: Ma...
567
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
568
569
570
571
572
573
574
575
  }
  
  /*
   * Prepare the namespace - decide what/where to mount, load ramdisks, etc.
   */
  void __init prepare_namespace(void)
  {
  	int is_floppy;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
576
  	if (root_delay) {
ca75b4d87   Toralf Förster   insert missing sp...
577
578
  		printk(KERN_INFO "Waiting %d sec before mounting root device...
  ",
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
579
580
581
  		       root_delay);
  		ssleep(root_delay);
  	}
216773a78   Arjan van de Ven   Consolidate drive...
582
583
584
585
586
587
588
589
  	/*
  	 * wait for the known devices to complete their probing
  	 *
  	 * Note: this is a potential source of long boot delays.
  	 * For example, it is not atypical to wait 5 seconds here
  	 * for the touchpad of a laptop to initialize.
  	 */
  	wait_for_device_probe();
d779249ed   Greg Kroah-Hartman   Driver Core: add ...
590

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
591
592
593
594
  	md_run_setup();
  
  	if (saved_root_name[0]) {
  		root_device_name = saved_root_name;
2d62f4885   Adrian Hunter   do_mounts: allow ...
595
596
  		if (!strncmp(root_device_name, "mtd", 3) ||
  		    !strncmp(root_device_name, "ubi", 3)) {
e9482b437   Joern Engel   [MTD] Allow alter...
597
598
599
  			mount_block_root(root_device_name, root_mountflags);
  			goto out;
  		}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
600
601
602
603
  		ROOT_DEV = name_to_dev_t(root_device_name);
  		if (strncmp(root_device_name, "/dev/", 5) == 0)
  			root_device_name += 5;
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
604
605
  	if (initrd_load())
  		goto out;
cc1ed7542   Pierre Ossman   init: wait for as...
606
607
608
609
610
611
612
  	/* wait for any asynchronous scanning to complete */
  	if ((ROOT_DEV == 0) && root_wait) {
  		printk(KERN_INFO "Waiting for root device %s...
  ",
  			saved_root_name);
  		while (driver_probe_done() != 0 ||
  			(ROOT_DEV = name_to_dev_t(saved_root_name)) == 0)
39a0e975c   Jungseung Lee   init: reduce root...
613
  			msleep(5);
216773a78   Arjan van de Ven   Consolidate drive...
614
  		async_synchronize_full();
cc1ed7542   Pierre Ossman   init: wait for as...
615
616
617
  	}
  
  	is_floppy = MAJOR(ROOT_DEV) == FLOPPY_MAJOR;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
618
619
620
621
622
  	if (is_floppy && rd_doload && rd_load_disk(0))
  		ROOT_DEV = Root_RAM0;
  
  	mount_root();
  out:
2b2af54a5   Kay Sievers   Driver Core: devt...
623
  	devtmpfs_mount("dev");
312db1aa1   Dominik Brodowski   fs: add ksys_moun...
624
  	ksys_mount(".", "/", NULL, MS_MOVE, NULL);
a16fe33ab   Dominik Brodowski   fs: add ksys_chro...
625
  	ksys_chroot(".");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
626
  }
57f150a58   Rob Landley   initmpfs: move ro...
627

6e19eded3   Rob Landley   initmpfs: use ini...
628
  static bool is_tmpfs;
f32356261   David Howells   vfs: Convert ramf...
629
  static int rootfs_init_fs_context(struct fs_context *fc)
57f150a58   Rob Landley   initmpfs: move ro...
630
  {
6e19eded3   Rob Landley   initmpfs: use ini...
631
  	if (IS_ENABLED(CONFIG_TMPFS) && is_tmpfs)
f32356261   David Howells   vfs: Convert ramf...
632
  		return shmem_init_fs_context(fc);
6e19eded3   Rob Landley   initmpfs: use ini...
633

f32356261   David Howells   vfs: Convert ramf...
634
  	return ramfs_init_fs_context(fc);
57f150a58   Rob Landley   initmpfs: move ro...
635
  }
fd3e007f6   Al Viro   don't bother with...
636
  struct file_system_type rootfs_fs_type = {
57f150a58   Rob Landley   initmpfs: move ro...
637
  	.name		= "rootfs",
f32356261   David Howells   vfs: Convert ramf...
638
  	.init_fs_context = rootfs_init_fs_context,
57f150a58   Rob Landley   initmpfs: move ro...
639
640
  	.kill_sb	= kill_litter_super,
  };
037f11b47   Al Viro   mnt_init(): call ...
641
  void __init init_rootfs(void)
57f150a58   Rob Landley   initmpfs: move ro...
642
  {
6e19eded3   Rob Landley   initmpfs: use ini...
643
  	if (IS_ENABLED(CONFIG_TMPFS) && !saved_root_name[0] &&
037f11b47   Al Viro   mnt_init(): call ...
644
  		(!root_fs_names || strstr(root_fs_names, "tmpfs")))
6e19eded3   Rob Landley   initmpfs: use ini...
645
  		is_tmpfs = true;
57f150a58   Rob Landley   initmpfs: move ro...
646
  }