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