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