Blame view
lib/decompress.c
1.34 KB
889c92d21 bzip2/lzma: centr... |
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> |
3ebe12439 decompressors: ad... |
11 |
#include <linux/decompress/unxz.h> |
889c92d21 bzip2/lzma: centr... |
12 |
#include <linux/decompress/inflate.h> |
cacb246f8 Add LZO compressi... |
13 |
#include <linux/decompress/unlzo.h> |
889c92d21 bzip2/lzma: centr... |
14 15 16 |
#include <linux/types.h> #include <linux/string.h> |
23a22d57a bzip2/lzma: compr... |
17 18 19 20 21 22 23 24 25 |
#ifndef CONFIG_DECOMPRESS_GZIP # define gunzip NULL #endif #ifndef CONFIG_DECOMPRESS_BZIP2 # define bunzip2 NULL #endif #ifndef CONFIG_DECOMPRESS_LZMA # define unlzma NULL #endif |
3ebe12439 decompressors: ad... |
26 27 28 |
#ifndef CONFIG_DECOMPRESS_XZ # define unxz NULL #endif |
cacb246f8 Add LZO compressi... |
29 30 31 |
#ifndef CONFIG_DECOMPRESS_LZO # define unlzo NULL #endif |
23a22d57a bzip2/lzma: compr... |
32 |
|
889c92d21 bzip2/lzma: centr... |
33 34 35 36 37 |
static const struct compress_format { unsigned char magic[2]; const char *name; decompress_fn decompressor; } compressed_formats[] = { |
889c92d21 bzip2/lzma: centr... |
38 39 |
{ {037, 0213}, "gzip", gunzip }, { {037, 0236}, "gzip", gunzip }, |
889c92d21 bzip2/lzma: centr... |
40 |
{ {0x42, 0x5a}, "bzip2", bunzip2 }, |
889c92d21 bzip2/lzma: centr... |
41 |
{ {0x5d, 0x00}, "lzma", unlzma }, |
3ebe12439 decompressors: ad... |
42 |
{ {0xfd, 0x37}, "xz", unxz }, |
cacb246f8 Add LZO compressi... |
43 |
{ {0x89, 0x4c}, "lzo", unlzo }, |
889c92d21 bzip2/lzma: centr... |
44 45 46 47 48 49 50 51 52 53 |
{ {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... */ |
e4aa7ca5a bzip2/lzma: don't... |
54 |
for (cf = compressed_formats; cf->name; cf++) { |
889c92d21 bzip2/lzma: centr... |
55 56 57 58 59 60 61 62 |
if (!memcmp(inbuf, cf->magic, 2)) break; } if (name) *name = cf->name; return cf->decompressor; } |