decompress.c 1.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
/*
 * 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>
11
#include <linux/decompress/unxz.h>
12
#include <linux/decompress/inflate.h>
13
#include <linux/decompress/unlzo.h>
14 15 16 17

#include <linux/types.h>
#include <linux/string.h>

18 19 20 21 22 23 24 25 26
#ifndef CONFIG_DECOMPRESS_GZIP
# define gunzip NULL
#endif
#ifndef CONFIG_DECOMPRESS_BZIP2
# define bunzip2 NULL
#endif
#ifndef CONFIG_DECOMPRESS_LZMA
# define unlzma NULL
#endif
27 28 29
#ifndef CONFIG_DECOMPRESS_XZ
# define unxz NULL
#endif
30 31 32
#ifndef CONFIG_DECOMPRESS_LZO
# define unlzo NULL
#endif
33

34 35 36 37 38 39 40 41 42
static const struct compress_format {
	unsigned char magic[2];
	const char *name;
	decompress_fn decompressor;
} compressed_formats[] = {
	{ {037, 0213}, "gzip", gunzip },
	{ {037, 0236}, "gzip", gunzip },
	{ {0x42, 0x5a}, "bzip2", bunzip2 },
	{ {0x5d, 0x00}, "lzma", unlzma },
43
	{ {0xfd, 0x37}, "xz", unxz },
44
	{ {0x89, 0x4c}, "lzo", unlzo },
45 46 47 48 49 50 51 52 53 54 55
	{ {0, 0}, NULL, NULL }
};

decompress_fn decompress_method(const unsigned char *inbuf, int len,
				const char **name)
{
	const struct compress_format *cf;

	if (len < 2)
		return NULL;	/* Need at least this much... */

56
	for (cf = compressed_formats; cf->name; cf++) {
57 58 59 60 61 62 63 64
		if (!memcmp(inbuf, cf->magic, 2))
			break;

	}
	if (name)
		*name = cf->name;
	return cf->decompressor;
}