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>
17 #include <linux/init.h>
19 #ifndef CONFIG_DECOMPRESS_GZIP
22 #ifndef CONFIG_DECOMPRESS_BZIP2
25 #ifndef CONFIG_DECOMPRESS_LZMA
28 #ifndef CONFIG_DECOMPRESS_XZ
31 #ifndef CONFIG_DECOMPRESS_LZO
35 struct compress_format
{
36 unsigned char magic
[2];
38 decompress_fn decompressor
;
41 static const struct compress_format compressed_formats
[] __initconst
= {
42 { {037, 0213}, "gzip", gunzip
},
43 { {037, 0236}, "gzip", gunzip
},
44 { {0x42, 0x5a}, "bzip2", bunzip2
},
45 { {0x5d, 0x00}, "lzma", unlzma
},
46 { {0xfd, 0x37}, "xz", unxz
},
47 { {0x89, 0x4c}, "lzo", unlzo
},
48 { {0, 0}, NULL
, NULL
}
51 decompress_fn __init
decompress_method(const unsigned char *inbuf
, int len
,
54 const struct compress_format
*cf
;
57 return NULL
; /* Need at least this much... */
59 for (cf
= compressed_formats
; cf
->name
; cf
++) {
60 if (!memcmp(inbuf
, cf
->magic
, 2))
66 return cf
->decompressor
;