4 * Detect the decompression method based on magic number
7 #include <linux/decompress/generic.h>
9 #include <linux/decompress/bunzip2.h>
10 #include <linux/decompress/unlzma.h>
11 #include <linux/decompress/inflate.h>
12 #include <linux/decompress/unlzo.h>
14 #include <linux/types.h>
15 #include <linux/string.h>
17 #ifndef CONFIG_DECOMPRESS_GZIP
20 #ifndef CONFIG_DECOMPRESS_BZIP2
23 #ifndef CONFIG_DECOMPRESS_LZMA
26 #ifndef CONFIG_DECOMPRESS_LZO
30 static const struct compress_format
{
31 unsigned char magic
[2];
33 decompress_fn decompressor
;
34 } compressed_formats
[] = {
35 { {037, 0213}, "gzip", gunzip
},
36 { {037, 0236}, "gzip", gunzip
},
37 { {0x42, 0x5a}, "bzip2", bunzip2
},
38 { {0x5d, 0x00}, "lzma", unlzma
},
39 { {0x89, 0x4c}, "lzo", unlzo
},
40 { {0, 0}, NULL
, NULL
}
43 decompress_fn
decompress_method(const unsigned char *inbuf
, int len
,
46 const struct compress_format
*cf
;
49 return NULL
; /* Need at least this much... */
51 for (cf
= compressed_formats
; cf
->name
; cf
++) {
52 if (!memcmp(inbuf
, cf
->magic
, 2))
58 return cf
->decompressor
;