| H. Peter Anvin | 889c92d | 2009-01-08 15:14:17 -0800 | [diff] [blame] | 1 | /* | 
 | 2 |  * decompress.c | 
 | 3 |  * | 
 | 4 |  * Detect the decompression method based on magic number | 
 | 5 |  */ | 
 | 6 |  | 
 | 7 | #include <linux/decompress/generic.h> | 
 | 8 |  | 
 | 9 | #include <linux/decompress/bunzip2.h> | 
 | 10 | #include <linux/decompress/unlzma.h> | 
| Lasse Collin | 3ebe124 | 2011-01-12 17:01:23 -0800 | [diff] [blame] | 11 | #include <linux/decompress/unxz.h> | 
| H. Peter Anvin | 889c92d | 2009-01-08 15:14:17 -0800 | [diff] [blame] | 12 | #include <linux/decompress/inflate.h> | 
| Albin Tonnerre | cacb246 | 2010-01-08 14:42:46 -0800 | [diff] [blame] | 13 | #include <linux/decompress/unlzo.h> | 
| H. Peter Anvin | 889c92d | 2009-01-08 15:14:17 -0800 | [diff] [blame] | 14 |  | 
 | 15 | #include <linux/types.h> | 
 | 16 | #include <linux/string.h> | 
| Hein Tibosch | 33e2a42 | 2012-10-04 17:16:58 -0700 | [diff] [blame] | 17 | #include <linux/init.h> | 
| H. Peter Anvin | 889c92d | 2009-01-08 15:14:17 -0800 | [diff] [blame] | 18 |  | 
| H. Peter Anvin | 23a22d5 | 2009-01-12 14:24:04 -0800 | [diff] [blame] | 19 | #ifndef CONFIG_DECOMPRESS_GZIP | 
 | 20 | # define gunzip NULL | 
 | 21 | #endif | 
 | 22 | #ifndef CONFIG_DECOMPRESS_BZIP2 | 
 | 23 | # define bunzip2 NULL | 
 | 24 | #endif | 
 | 25 | #ifndef CONFIG_DECOMPRESS_LZMA | 
 | 26 | # define unlzma NULL | 
 | 27 | #endif | 
| Lasse Collin | 3ebe124 | 2011-01-12 17:01:23 -0800 | [diff] [blame] | 28 | #ifndef CONFIG_DECOMPRESS_XZ | 
 | 29 | # define unxz NULL | 
 | 30 | #endif | 
| Albin Tonnerre | cacb246 | 2010-01-08 14:42:46 -0800 | [diff] [blame] | 31 | #ifndef CONFIG_DECOMPRESS_LZO | 
 | 32 | # define unlzo NULL | 
 | 33 | #endif | 
| H. Peter Anvin | 23a22d5 | 2009-01-12 14:24:04 -0800 | [diff] [blame] | 34 |  | 
| Hein Tibosch | 33e2a42 | 2012-10-04 17:16:58 -0700 | [diff] [blame] | 35 | struct compress_format { | 
| H. Peter Anvin | 889c92d | 2009-01-08 15:14:17 -0800 | [diff] [blame] | 36 | 	unsigned char magic[2]; | 
 | 37 | 	const char *name; | 
 | 38 | 	decompress_fn decompressor; | 
| Hein Tibosch | 33e2a42 | 2012-10-04 17:16:58 -0700 | [diff] [blame] | 39 | }; | 
 | 40 |  | 
 | 41 | static const struct compress_format compressed_formats[] __initdata = { | 
| H. Peter Anvin | 889c92d | 2009-01-08 15:14:17 -0800 | [diff] [blame] | 42 | 	{ {037, 0213}, "gzip", gunzip }, | 
 | 43 | 	{ {037, 0236}, "gzip", gunzip }, | 
| H. Peter Anvin | 889c92d | 2009-01-08 15:14:17 -0800 | [diff] [blame] | 44 | 	{ {0x42, 0x5a}, "bzip2", bunzip2 }, | 
| H. Peter Anvin | 889c92d | 2009-01-08 15:14:17 -0800 | [diff] [blame] | 45 | 	{ {0x5d, 0x00}, "lzma", unlzma }, | 
| Lasse Collin | 3ebe124 | 2011-01-12 17:01:23 -0800 | [diff] [blame] | 46 | 	{ {0xfd, 0x37}, "xz", unxz }, | 
| Albin Tonnerre | cacb246 | 2010-01-08 14:42:46 -0800 | [diff] [blame] | 47 | 	{ {0x89, 0x4c}, "lzo", unlzo }, | 
| H. Peter Anvin | 889c92d | 2009-01-08 15:14:17 -0800 | [diff] [blame] | 48 | 	{ {0, 0}, NULL, NULL } | 
 | 49 | }; | 
 | 50 |  | 
| Hein Tibosch | 33e2a42 | 2012-10-04 17:16:58 -0700 | [diff] [blame] | 51 | decompress_fn __init decompress_method(const unsigned char *inbuf, int len, | 
| H. Peter Anvin | 889c92d | 2009-01-08 15:14:17 -0800 | [diff] [blame] | 52 | 				const char **name) | 
 | 53 | { | 
 | 54 | 	const struct compress_format *cf; | 
 | 55 |  | 
 | 56 | 	if (len < 2) | 
 | 57 | 		return NULL;	/* Need at least this much... */ | 
 | 58 |  | 
| Alain Knaff | e4aa7ca | 2009-02-19 13:36:55 -0800 | [diff] [blame] | 59 | 	for (cf = compressed_formats; cf->name; cf++) { | 
| H. Peter Anvin | 889c92d | 2009-01-08 15:14:17 -0800 | [diff] [blame] | 60 | 		if (!memcmp(inbuf, cf->magic, 2)) | 
 | 61 | 			break; | 
 | 62 |  | 
 | 63 | 	} | 
 | 64 | 	if (name) | 
 | 65 | 		*name = cf->name; | 
 | 66 | 	return cf->decompressor; | 
 | 67 | } |