decompress.c 1.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
/*
 * decompress.c
 *
 * Detect the decompression method based on magic number
 */

#include <linux/decompress/generic.h>

#include <linux/decompress/bunzip2.h>
#include <linux/decompress/unlzma.h>
11
#include <linux/decompress/unxz.h>
12
#include <linux/decompress/inflate.h>
13
#include <linux/decompress/unlzo.h>
14
#include <linux/decompress/unlz4.h>
15 16 17

#include <linux/types.h>
#include <linux/string.h>
18
#include <linux/init.h>
19
#include <linux/printk.h>
20

21 22 23 24 25 26 27 28 29
#ifndef CONFIG_DECOMPRESS_GZIP
# define gunzip NULL
#endif
#ifndef CONFIG_DECOMPRESS_BZIP2
# define bunzip2 NULL
#endif
#ifndef CONFIG_DECOMPRESS_LZMA
# define unlzma NULL
#endif
30 31 32
#ifndef CONFIG_DECOMPRESS_XZ
# define unxz NULL
#endif
33 34 35
#ifndef CONFIG_DECOMPRESS_LZO
# define unlzo NULL
#endif
36 37 38
#ifndef CONFIG_DECOMPRESS_LZ4
# define unlz4 NULL
#endif
39

40
struct compress_format {
41 42 43
	unsigned char magic[2];
	const char *name;
	decompress_fn decompressor;
44 45
};

A
Andi Kleen 已提交
46
static const struct compress_format compressed_formats[] __initconst = {
47 48 49 50
	{ {037, 0213}, "gzip", gunzip },
	{ {037, 0236}, "gzip", gunzip },
	{ {0x42, 0x5a}, "bzip2", bunzip2 },
	{ {0x5d, 0x00}, "lzma", unlzma },
51
	{ {0xfd, 0x37}, "xz", unxz },
52
	{ {0x89, 0x4c}, "lzo", unlzo },
53
	{ {0x02, 0x21}, "lz4", unlz4 },
54 55 56
	{ {0, 0}, NULL, NULL }
};

57
decompress_fn __init decompress_method(const unsigned char *inbuf, long len,
58 59 60 61 62 63 64
				const char **name)
{
	const struct compress_format *cf;

	if (len < 2)
		return NULL;	/* Need at least this much... */

65 66
	pr_debug("Compressed data magic: %#.2x %#.2x\n", inbuf[0], inbuf[1]);

67
	for (cf = compressed_formats; cf->name; cf++) {
68 69 70 71 72 73 74 75
		if (!memcmp(inbuf, cf->magic, 2))
			break;

	}
	if (name)
		*name = cf->name;
	return cf->decompressor;
}