-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 137051 b: refs/heads/master c: 889c92d h: refs/heads/master i: 137049: bf506fe 137047: 7c33c45 v: v3
- Loading branch information
H. Peter Anvin
committed
Jan 8, 2009
1 parent
ca53347
commit d9c0d57
Showing
6 changed files
with
73 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 6c11b12ac6f101732d43b5682f5b3ae4dda4205f | ||
refs/heads/master: 889c92d21db40be0b7d22a59395060237895bb85 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* | ||
* 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> | ||
#include <linux/decompress/inflate.h> | ||
|
||
#include <linux/types.h> | ||
#include <linux/string.h> | ||
|
||
static const struct compress_format { | ||
unsigned char magic[2]; | ||
const char *name; | ||
decompress_fn decompressor; | ||
} compressed_formats[] = { | ||
#ifdef CONFIG_DECOMPRESS_GZIP | ||
{ {037, 0213}, "gzip", gunzip }, | ||
{ {037, 0236}, "gzip", gunzip }, | ||
#endif | ||
#ifdef CONFIG_DECOMPRESS_BZIP2 | ||
{ {0x42, 0x5a}, "bzip2", bunzip2 }, | ||
#endif | ||
#ifdef CONFIG_DECOMPRESS_LZMA | ||
{ {0x5d, 0x00}, "lzma", unlzma }, | ||
#endif | ||
{ {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... */ | ||
|
||
for (cf = compressed_formats; cf->decompressor; cf++) { | ||
if (!memcmp(inbuf, cf->magic, 2)) | ||
break; | ||
|
||
} | ||
if (name) | ||
*name = cf->name; | ||
return cf->decompressor; | ||
} |