blob: 035a5f0ab26b9882d251784f2abd348d7eef2b9a [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
H Hartley Sweetenc67e5382012-05-31 16:26:10 -07002/*
3 * Many of the syscalls used in this file expect some of the arguments
4 * to be __user pointers not __kernel pointers. To limit the sparse
5 * noise, turn off sparse checking for this file.
6 */
7#ifdef __CHECKER__
8#undef __CHECKER__
9#warning "Sparse checking disabled for this file"
10#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
12#include <linux/kernel.h>
13#include <linux/fs.h>
14#include <linux/minix_fs.h>
15#include <linux/ext2_fs.h>
16#include <linux/romfs_fs.h>
Al Virof7f4f4d2013-12-10 16:54:28 -050017#include <uapi/linux/cramfs_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/initrd.h>
19#include <linux/string.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#include "do_mounts.h"
Phillip Lougherb8fed872009-01-05 08:46:28 +000023#include "../fs/squashfs/squashfs_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Alain Knaff30d65db2009-01-04 22:46:17 +010025#include <linux/decompress/generic.h>
26
Alain Knaff30d65db2009-01-04 22:46:17 +010027
Linus Torvalds1da177e2005-04-16 15:20:36 -070028int __initdata rd_prompt = 1;/* 1 = prompt for RAM disk, 0 = don't prompt */
29
30static int __init prompt_ramdisk(char *str)
31{
32 rd_prompt = simple_strtol(str,NULL,0) & 1;
33 return 1;
34}
35__setup("prompt_ramdisk=", prompt_ramdisk);
36
37int __initdata rd_image_start; /* starting block # of image */
38
39static int __init ramdisk_start_setup(char *str)
40{
41 rd_image_start = simple_strtol(str,NULL,0);
42 return 1;
43}
44__setup("ramdisk_start=", ramdisk_start_setup);
45
Alain Knaff30d65db2009-01-04 22:46:17 +010046static int __init crd_load(int in_fd, int out_fd, decompress_fn deco);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48/*
49 * This routine tries to find a RAM disk image to load, and returns the
50 * number of blocks to read for a non-compressed image, 0 if the image
51 * is a compressed image, and -1 if an image with the right magic
52 * numbers could not be found.
53 *
54 * We currently check for the following magic numbers:
H. Peter Anvinb172fd82009-01-04 14:42:52 -080055 * minix
56 * ext2
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 * romfs
58 * cramfs
Phillip Lougherb8fed872009-01-05 08:46:28 +000059 * squashfs
H. Peter Anvinb172fd82009-01-04 14:42:52 -080060 * gzip
P J P1bf49dd2013-11-12 15:11:44 -080061 * bzip2
62 * lzma
63 * xz
64 * lzo
65 * lz4
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 */
H. Peter Anvinb172fd82009-01-04 14:42:52 -080067static int __init
Alain Knaff30d65db2009-01-04 22:46:17 +010068identify_ramdisk_image(int fd, int start_block, decompress_fn *decompressor)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
70 const int size = 512;
71 struct minix_super_block *minixsb;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 struct romfs_super_block *romfsb;
73 struct cramfs_super *cramfsb;
Phillip Lougherb8fed872009-01-05 08:46:28 +000074 struct squashfs_super_block *squashfsb;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 int nblocks = -1;
76 unsigned char *buf;
H. Peter Anvin889c92d2009-01-08 15:14:17 -080077 const char *compress_name;
Al Viro39429c52012-03-23 16:36:45 -040078 unsigned long n;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80 buf = kmalloc(size, GFP_KERNEL);
Stephen Hemmingerc80544d2007-10-18 03:07:05 -070081 if (!buf)
Davidlohr Buesoea611b262011-03-22 16:34:49 -070082 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84 minixsb = (struct minix_super_block *) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 romfsb = (struct romfs_super_block *) buf;
86 cramfsb = (struct cramfs_super *) buf;
Phillip Lougherb8fed872009-01-05 08:46:28 +000087 squashfsb = (struct squashfs_super_block *) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 memset(buf, 0xe5, size);
89
90 /*
H. Peter Anvinb172fd82009-01-04 14:42:52 -080091 * Read block 0 to test for compressed kernel
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 */
Dominik Brodowski76847e42018-03-13 21:51:17 +010093 ksys_lseek(fd, start_block * BLOCK_SIZE, 0);
Dominik Brodowski3ce4a7b2018-03-13 21:56:26 +010094 ksys_read(fd, buf, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
H. Peter Anvin889c92d2009-01-08 15:14:17 -080096 *decompressor = decompress_method(buf, size, &compress_name);
H. Peter Anvin23a22d52009-01-12 14:24:04 -080097 if (compress_name) {
H. Peter Anvin889c92d2009-01-08 15:14:17 -080098 printk(KERN_NOTICE "RAMDISK: %s image found at block %d\n",
99 compress_name, start_block);
H. Peter Anvin23a22d52009-01-12 14:24:04 -0800100 if (!*decompressor)
H. Peter Anvin73310a12009-01-14 11:28:35 -0800101 printk(KERN_EMERG
102 "RAMDISK: %s decompressor not configured!\n",
H. Peter Anvin23a22d52009-01-12 14:24:04 -0800103 compress_name);
H. Peter Anvin889c92d2009-01-08 15:14:17 -0800104 nblocks = 0;
105 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 }
107
108 /* romfs is at block zero too */
109 if (romfsb->word0 == ROMSB_WORD0 &&
110 romfsb->word1 == ROMSB_WORD1) {
111 printk(KERN_NOTICE
112 "RAMDISK: romfs filesystem found at block %d\n",
113 start_block);
114 nblocks = (ntohl(romfsb->size)+BLOCK_SIZE-1)>>BLOCK_SIZE_BITS;
115 goto done;
116 }
117
118 if (cramfsb->magic == CRAMFS_MAGIC) {
119 printk(KERN_NOTICE
120 "RAMDISK: cramfs filesystem found at block %d\n",
121 start_block);
122 nblocks = (cramfsb->size + BLOCK_SIZE - 1) >> BLOCK_SIZE_BITS;
123 goto done;
124 }
125
Phillip Lougherb8fed872009-01-05 08:46:28 +0000126 /* squashfs is at block zero too */
127 if (le32_to_cpu(squashfsb->s_magic) == SQUASHFS_MAGIC) {
128 printk(KERN_NOTICE
129 "RAMDISK: squashfs filesystem found at block %d\n",
130 start_block);
131 nblocks = (le64_to_cpu(squashfsb->bytes_used) + BLOCK_SIZE - 1)
132 >> BLOCK_SIZE_BITS;
133 goto done;
134 }
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 /*
Neil Armstrongf919b922011-11-02 13:37:47 -0700137 * Read 512 bytes further to check if cramfs is padded
138 */
Dominik Brodowski76847e42018-03-13 21:51:17 +0100139 ksys_lseek(fd, start_block * BLOCK_SIZE + 0x200, 0);
Dominik Brodowski3ce4a7b2018-03-13 21:56:26 +0100140 ksys_read(fd, buf, size);
Neil Armstrongf919b922011-11-02 13:37:47 -0700141
142 if (cramfsb->magic == CRAMFS_MAGIC) {
143 printk(KERN_NOTICE
144 "RAMDISK: cramfs filesystem found at block %d\n",
145 start_block);
146 nblocks = (cramfsb->size + BLOCK_SIZE - 1) >> BLOCK_SIZE_BITS;
147 goto done;
148 }
149
150 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 * Read block 1 to test for minix and ext2 superblock
152 */
Dominik Brodowski76847e42018-03-13 21:51:17 +0100153 ksys_lseek(fd, (start_block+1) * BLOCK_SIZE, 0);
Dominik Brodowski3ce4a7b2018-03-13 21:56:26 +0100154 ksys_read(fd, buf, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 /* Try minix */
157 if (minixsb->s_magic == MINIX_SUPER_MAGIC ||
158 minixsb->s_magic == MINIX_SUPER_MAGIC2) {
159 printk(KERN_NOTICE
160 "RAMDISK: Minix filesystem found at block %d\n",
161 start_block);
162 nblocks = minixsb->s_nzones << minixsb->s_log_zone_size;
163 goto done;
164 }
165
166 /* Try ext2 */
Al Viro39429c52012-03-23 16:36:45 -0400167 n = ext2_image_size(buf);
168 if (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 printk(KERN_NOTICE
170 "RAMDISK: ext2 filesystem found at block %d\n",
171 start_block);
Al Viro39429c52012-03-23 16:36:45 -0400172 nblocks = n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 goto done;
174 }
175
176 printk(KERN_NOTICE
177 "RAMDISK: Couldn't find valid RAM disk image starting at %d.\n",
178 start_block);
H. Peter Anvinb172fd82009-01-04 14:42:52 -0800179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180done:
Dominik Brodowski76847e42018-03-13 21:51:17 +0100181 ksys_lseek(fd, start_block * BLOCK_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 kfree(buf);
183 return nblocks;
184}
185
186int __init rd_load_image(char *from)
187{
188 int res = 0;
189 int in_fd, out_fd;
190 unsigned long rd_blocks, devblocks;
191 int nblocks, i, disk;
192 char *buf = NULL;
193 unsigned short rotate = 0;
Alain Knaff30d65db2009-01-04 22:46:17 +0100194 decompress_fn decompressor = NULL;
Stephen Rothwellbc584502012-03-15 18:19:08 +0000195#if !defined(CONFIG_S390)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 char rotator[4] = { '|' , '/' , '-' , '\\' };
197#endif
198
Dominik Brodowskibae217e2018-03-11 11:34:56 +0100199 out_fd = ksys_open("/dev/ram", O_RDWR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 if (out_fd < 0)
201 goto out;
202
Dominik Brodowskibae217e2018-03-11 11:34:56 +0100203 in_fd = ksys_open(from, O_RDONLY, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 if (in_fd < 0)
205 goto noclose_input;
206
Alain Knaff30d65db2009-01-04 22:46:17 +0100207 nblocks = identify_ramdisk_image(in_fd, rd_image_start, &decompressor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 if (nblocks < 0)
209 goto done;
210
211 if (nblocks == 0) {
Alain Knaff30d65db2009-01-04 22:46:17 +0100212 if (crd_load(in_fd, out_fd, decompressor) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 goto successful_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 goto done;
215 }
216
217 /*
218 * NOTE NOTE: nblocks is not actually blocks but
219 * the number of kibibytes of data to load into a ramdisk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 */
Dominik Brodowskicbb60b92018-03-13 21:43:59 +0100221 if (ksys_ioctl(out_fd, BLKGETSIZE, (unsigned long)&rd_blocks) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 rd_blocks = 0;
223 else
224 rd_blocks >>= 1;
225
226 if (nblocks > rd_blocks) {
227 printk("RAMDISK: image too big! (%dKiB/%ldKiB)\n",
228 nblocks, rd_blocks);
229 goto done;
230 }
H. Peter Anvinb172fd82009-01-04 14:42:52 -0800231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 /*
233 * OK, time to copy in the data
234 */
Dominik Brodowskicbb60b92018-03-13 21:43:59 +0100235 if (ksys_ioctl(in_fd, BLKGETSIZE, (unsigned long)&devblocks) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 devblocks = 0;
237 else
238 devblocks >>= 1;
239
240 if (strcmp(from, "/initrd.image") == 0)
241 devblocks = nblocks;
242
243 if (devblocks == 0) {
244 printk(KERN_ERR "RAMDISK: could not determine device size\n");
245 goto done;
246 }
247
248 buf = kmalloc(BLOCK_SIZE, GFP_KERNEL);
Harvey Harrisond613c3e2008-04-28 14:13:14 -0700249 if (!buf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 printk(KERN_ERR "RAMDISK: could not allocate buffer\n");
251 goto done;
252 }
253
254 printk(KERN_NOTICE "RAMDISK: Loading %dKiB [%ld disk%s] into ram disk... ",
255 nblocks, ((nblocks-1)/devblocks)+1, nblocks>devblocks ? "s" : "");
256 for (i = 0, disk = 1; i < nblocks; i++) {
257 if (i && (i % devblocks == 0)) {
Aaro Koskinen1a6a05a2018-04-10 16:34:34 -0700258 pr_cont("done disk #%d.\n", disk++);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 rotate = 0;
Dominik Brodowski2ca2a092018-03-11 11:34:55 +0100260 if (ksys_close(in_fd)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 printk("Error closing the disk.\n");
262 goto noclose_input;
263 }
264 change_floppy("disk #%d", disk);
Dominik Brodowskibae217e2018-03-11 11:34:56 +0100265 in_fd = ksys_open(from, O_RDONLY, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 if (in_fd < 0) {
267 printk("Error opening disk.\n");
268 goto noclose_input;
269 }
270 printk("Loading disk #%d... ", disk);
271 }
Dominik Brodowski3ce4a7b2018-03-13 21:56:26 +0100272 ksys_read(in_fd, buf, BLOCK_SIZE);
Dominik Brodowskie7a3e8b2018-03-11 11:34:41 +0100273 ksys_write(out_fd, buf, BLOCK_SIZE);
Stephen Rothwellbc584502012-03-15 18:19:08 +0000274#if !defined(CONFIG_S390)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 if (!(i % 16)) {
Nicolas Schichan18594e92016-11-24 13:38:04 +0100276 pr_cont("%c\b", rotator[rotate & 0x3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 rotate++;
278 }
279#endif
280 }
Aaro Koskinen1a6a05a2018-04-10 16:34:34 -0700281 pr_cont("done.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283successful_load:
284 res = 1;
285done:
Dominik Brodowski2ca2a092018-03-11 11:34:55 +0100286 ksys_close(in_fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287noclose_input:
Dominik Brodowski2ca2a092018-03-11 11:34:55 +0100288 ksys_close(out_fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289out:
290 kfree(buf);
Dominik Brodowski0f32ab82018-03-11 11:34:47 +0100291 ksys_unlink("/dev/ram");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 return res;
293}
294
295int __init rd_load_disk(int n)
296{
297 if (rd_prompt)
298 change_floppy("root floppy disk to be loaded into RAM disk");
Greg Kroah-Hartmanbdaf8522005-06-20 21:15:16 -0700299 create_dev("/dev/root", ROOT_DEV);
300 create_dev("/dev/ram", MKDEV(RAMDISK_MAJOR, n));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 return rd_load_image("/dev/root");
302}
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304static int exit_code;
Alain Knaff30d65db2009-01-04 22:46:17 +0100305static int decompress_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306static int crd_infd, crd_outfd;
307
Yinghai Lud97b07c2014-08-08 14:23:14 -0700308static long __init compr_fill(void *buf, unsigned long len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
Dominik Brodowski3ce4a7b2018-03-13 21:56:26 +0100310 long r = ksys_read(crd_infd, buf, len);
Alain Knaff30d65db2009-01-04 22:46:17 +0100311 if (r < 0)
312 printk(KERN_ERR "RAMDISK: error while reading compressed data");
313 else if (r == 0)
314 printk(KERN_ERR "RAMDISK: EOF while reading compressed data");
315 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317
Yinghai Lud97b07c2014-08-08 14:23:14 -0700318static long __init compr_flush(void *window, unsigned long outcnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319{
Dominik Brodowskie7a3e8b2018-03-11 11:34:41 +0100320 long written = ksys_write(crd_outfd, window, outcnt);
Alain Knaff30d65db2009-01-04 22:46:17 +0100321 if (written != outcnt) {
322 if (decompress_error == 0)
323 printk(KERN_ERR
Yinghai Lud97b07c2014-08-08 14:23:14 -0700324 "RAMDISK: incomplete write (%ld != %ld)\n",
Alain Knaff30d65db2009-01-04 22:46:17 +0100325 written, outcnt);
326 decompress_error = 1;
327 return -1;
328 }
329 return outcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330}
331
332static void __init error(char *x)
333{
334 printk(KERN_ERR "%s\n", x);
335 exit_code = 1;
Alain Knaff30d65db2009-01-04 22:46:17 +0100336 decompress_error = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337}
338
Alain Knaff30d65db2009-01-04 22:46:17 +0100339static int __init crd_load(int in_fd, int out_fd, decompress_fn deco)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
341 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 crd_infd = in_fd;
343 crd_outfd = out_fd;
P J Pdf3ef3a2013-11-12 15:10:20 -0800344
345 if (!deco) {
346 pr_emerg("Invalid ramdisk decompression routine. "
347 "Select appropriate config option.\n");
348 panic("Could not decompress initial ramdisk image.");
349 }
350
Alain Knaff30d65db2009-01-04 22:46:17 +0100351 result = deco(NULL, 0, compr_fill, compr_flush, NULL, NULL, error);
352 if (decompress_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 result = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 return result;
355}