Blame view

lib/decompress.c 1.41 KB
889c92d21   H. Peter Anvin   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   Lasse Collin   decompressors: ad...
11
  #include <linux/decompress/unxz.h>
889c92d21   H. Peter Anvin   bzip2/lzma: centr...
12
  #include <linux/decompress/inflate.h>
cacb246f8   Albin Tonnerre   Add LZO compressi...
13
  #include <linux/decompress/unlzo.h>
889c92d21   H. Peter Anvin   bzip2/lzma: centr...
14
15
16
  
  #include <linux/types.h>
  #include <linux/string.h>
33e2a4227   Hein Tibosch   lib/decompress.c ...
17
  #include <linux/init.h>
889c92d21   H. Peter Anvin   bzip2/lzma: centr...
18

23a22d57a   H. Peter Anvin   bzip2/lzma: compr...
19
20
21
22
23
24
25
26
27
  #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   Lasse Collin   decompressors: ad...
28
29
30
  #ifndef CONFIG_DECOMPRESS_XZ
  # define unxz NULL
  #endif
cacb246f8   Albin Tonnerre   Add LZO compressi...
31
32
33
  #ifndef CONFIG_DECOMPRESS_LZO
  # define unlzo NULL
  #endif
23a22d57a   H. Peter Anvin   bzip2/lzma: compr...
34

33e2a4227   Hein Tibosch   lib/decompress.c ...
35
  struct compress_format {
889c92d21   H. Peter Anvin   bzip2/lzma: centr...
36
37
38
  	unsigned char magic[2];
  	const char *name;
  	decompress_fn decompressor;
33e2a4227   Hein Tibosch   lib/decompress.c ...
39
40
41
  };
  
  static const struct compress_format compressed_formats[] __initdata = {
889c92d21   H. Peter Anvin   bzip2/lzma: centr...
42
43
  	{ {037, 0213}, "gzip", gunzip },
  	{ {037, 0236}, "gzip", gunzip },
889c92d21   H. Peter Anvin   bzip2/lzma: centr...
44
  	{ {0x42, 0x5a}, "bzip2", bunzip2 },
889c92d21   H. Peter Anvin   bzip2/lzma: centr...
45
  	{ {0x5d, 0x00}, "lzma", unlzma },
3ebe12439   Lasse Collin   decompressors: ad...
46
  	{ {0xfd, 0x37}, "xz", unxz },
cacb246f8   Albin Tonnerre   Add LZO compressi...
47
  	{ {0x89, 0x4c}, "lzo", unlzo },
889c92d21   H. Peter Anvin   bzip2/lzma: centr...
48
49
  	{ {0, 0}, NULL, NULL }
  };
33e2a4227   Hein Tibosch   lib/decompress.c ...
50
  decompress_fn __init decompress_method(const unsigned char *inbuf, int len,
889c92d21   H. Peter Anvin   bzip2/lzma: centr...
51
52
53
54
55
56
  				const char **name)
  {
  	const struct compress_format *cf;
  
  	if (len < 2)
  		return NULL;	/* Need at least this much... */
e4aa7ca5a   Alain Knaff   bzip2/lzma: don't...
57
  	for (cf = compressed_formats; cf->name; cf++) {
889c92d21   H. Peter Anvin   bzip2/lzma: centr...
58
59
60
61
62
63
64
65
  		if (!memcmp(inbuf, cf->magic, 2))
  			break;
  
  	}
  	if (name)
  		*name = cf->name;
  	return cf->decompressor;
  }