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/unxz.h>
12 #include <linux/decompress/inflate.h>
13 #include <linux/decompress/unlzo.h>
15 #include <linux/types.h>
16 #include <linux/string.h>
18 #ifndef CONFIG_DECOMPRESS_GZIP
21 #ifndef CONFIG_DECOMPRESS_BZIP2
24 #ifndef CONFIG_DECOMPRESS_LZMA
27 #ifndef CONFIG_DECOMPRESS_XZ
30 #ifndef CONFIG_DECOMPRESS_LZO
34 static const struct compress_format
{
35 unsigned char magic
[2];
37 decompress_fn decompressor
;
38 } compressed_formats
[] = {
39 { {037, 0213}, "gzip", gunzip
},
40 { {037, 0236}, "gzip", gunzip
},
41 { {0x42, 0x5a}, "bzip2", bunzip2
},
42 { {0x5d, 0x00}, "lzma", unlzma
},
43 { {0xfd, 0x37}, "xz", unxz
},
44 { {0x89, 0x4c}, "lzo", unlzo
},
45 { {0, 0}, NULL
, NULL
}
48 decompress_fn
decompress_method(const unsigned char *inbuf
, int len
,
51 const struct compress_format
*cf
;
54 return NULL
; /* Need at least this much... */
56 for (cf
= compressed_formats
; cf
->name
; cf
++) {
57 if (!memcmp(inbuf
, cf
->magic
, 2))
63 return cf
->decompressor
;