Files
linux-apfs/lib/decompress.c
T

76 lines
1.6 KiB
C
Raw Normal View History

2009-01-08 15:14:17 -08:00
/*
* decompress.c
*
* Detect the decompression method based on magic number
*/
#include <linux/decompress/generic.h>
#include <linux/decompress/bunzip2.h>
#include <linux/decompress/unlzma.h>
2011-01-12 17:01:23 -08:00
#include <linux/decompress/unxz.h>
2009-01-08 15:14:17 -08:00
#include <linux/decompress/inflate.h>
#include <linux/decompress/unlzo.h>
2013-07-08 16:01:46 -07:00
#include <linux/decompress/unlz4.h>
2009-01-08 15:14:17 -08:00
#include <linux/types.h>
#include <linux/string.h>
#include <linux/init.h>
#include <linux/printk.h>
2009-01-08 15:14:17 -08:00
#ifndef CONFIG_DECOMPRESS_GZIP
# define gunzip NULL
#endif
#ifndef CONFIG_DECOMPRESS_BZIP2
# define bunzip2 NULL
#endif
#ifndef CONFIG_DECOMPRESS_LZMA
# define unlzma NULL
#endif
2011-01-12 17:01:23 -08:00
#ifndef CONFIG_DECOMPRESS_XZ
# define unxz NULL
#endif
#ifndef CONFIG_DECOMPRESS_LZO
# define unlzo NULL
#endif
2013-07-08 16:01:46 -07:00
#ifndef CONFIG_DECOMPRESS_LZ4
# define unlz4 NULL
#endif
struct compress_format {
2009-01-08 15:14:17 -08:00
unsigned char magic[2];
const char *name;
decompress_fn decompressor;
};
2013-04-30 15:28:50 -07:00
static const struct compress_format compressed_formats[] __initconst = {
{ {0x1f, 0x8b}, "gzip", gunzip },
{ {0x1f, 0x9e}, "gzip", gunzip },
2009-01-08 15:14:17 -08:00
{ {0x42, 0x5a}, "bzip2", bunzip2 },
{ {0x5d, 0x00}, "lzma", unlzma },
2011-01-12 17:01:23 -08:00
{ {0xfd, 0x37}, "xz", unxz },
{ {0x89, 0x4c}, "lzo", unlzo },
2013-07-08 16:01:46 -07:00
{ {0x02, 0x21}, "lz4", unlz4 },
2009-01-08 15:14:17 -08:00
{ {0, 0}, NULL, NULL }
};
decompress_fn __init decompress_method(const unsigned char *inbuf, long len,
2009-01-08 15:14:17 -08:00
const char **name)
{
const struct compress_format *cf;
if (len < 2)
return NULL; /* Need at least this much... */
pr_debug("Compressed data magic: %#.2x %#.2x\n", inbuf[0], inbuf[1]);
for (cf = compressed_formats; cf->name; cf++) {
2009-01-08 15:14:17 -08:00
if (!memcmp(inbuf, cf->magic, 2))
break;
}
if (name)
*name = cf->name;
return cf->decompressor;
}