Skip to content

Commit df3ef3a

Browse files
P J Ptorvalds
authored andcommitted
init/do_mounts_rd.c: fix NULL pointer dereference while loading initramfs
Make menuconfig allows one to choose compression format of an initial ramdisk image. But this choice does not result in duly compressed initial ramdisk image. Because - $ make install - does not pass on the selected compression choice to the dracut(8) tool, which creates the initramfs file. dracut(8) generates the image with the default compression, ie. gzip(1). If a user chose any other compression instead of gzip(1), it leads to a crash due to NULL pointer dereference in crd_load(), caused by a NULL function pointer returned by the 'decompress_method()' routine. Because the initramfs image is gzip(1) compressed, whereas the kernel knows only to decompress the chosen format and not gzip(1). This patch replaces the crash by an explicit panic() call with an appropriate error message. This shall prevent the kernel from eventually panicking in: init/do_mounts.c: mount_block_root() with -> panic("VFS: Unable to mount root fs on %s", b); [akpm@linux-foundation.org: mention that the problem is with the ramdisk, don't print known-to-be-NULL value] Signed-off-by: P J P <prasad@redhat.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent 6532154 commit df3ef3a

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

init/do_mounts_rd.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -342,6 +342,13 @@ static int __init crd_load(int in_fd, int out_fd, decompress_fn deco)
342342
int result;
343343
crd_infd = in_fd;
344344
crd_outfd = out_fd;
345+
346+
if (!deco) {
347+
pr_emerg("Invalid ramdisk decompression routine. "
348+
"Select appropriate config option.\n");
349+
panic("Could not decompress initial ramdisk image.");
350+
}
351+
345352
result = deco(NULL, 0, compr_fill, compr_flush, NULL, NULL, error);
346353
if (decompress_error)
347354
result = 1;

0 commit comments

Comments
 (0)