Blame view

lib/decompress.c 1.7 KB
b24413180   Greg Kroah-Hartman   License cleanup: ...
1
  // SPDX-License-Identifier: GPL-2.0
889c92d21   H. Peter Anvin   bzip2/lzma: centr...
2
3
4
5
6
7
8
9
10
11
  /*
   * 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...
12
  #include <linux/decompress/unxz.h>
889c92d21   H. Peter Anvin   bzip2/lzma: centr...
13
  #include <linux/decompress/inflate.h>
cacb246f8   Albin Tonnerre   Add LZO compressi...
14
  #include <linux/decompress/unlzo.h>
e76e1fdfa   Kyungsik Lee   lib: add support ...
15
  #include <linux/decompress/unlz4.h>
889c92d21   H. Peter Anvin   bzip2/lzma: centr...
16
17
18
  
  #include <linux/types.h>
  #include <linux/string.h>
33e2a4227   Hein Tibosch   lib/decompress.c ...
19
  #include <linux/init.h>
6aa7a29aa   Daniel M. Weeks   initramfs: debug ...
20
  #include <linux/printk.h>
889c92d21   H. Peter Anvin   bzip2/lzma: centr...
21

23a22d57a   H. Peter Anvin   bzip2/lzma: compr...
22
23
24
25
26
27
28
29
30
  #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...
31
32
33
  #ifndef CONFIG_DECOMPRESS_XZ
  # define unxz NULL
  #endif
cacb246f8   Albin Tonnerre   Add LZO compressi...
34
35
36
  #ifndef CONFIG_DECOMPRESS_LZO
  # define unlzo NULL
  #endif
e76e1fdfa   Kyungsik Lee   lib: add support ...
37
38
39
  #ifndef CONFIG_DECOMPRESS_LZ4
  # define unlz4 NULL
  #endif
23a22d57a   H. Peter Anvin   bzip2/lzma: compr...
40

33e2a4227   Hein Tibosch   lib/decompress.c ...
41
  struct compress_format {
889c92d21   H. Peter Anvin   bzip2/lzma: centr...
42
43
44
  	unsigned char magic[2];
  	const char *name;
  	decompress_fn decompressor;
33e2a4227   Hein Tibosch   lib/decompress.c ...
45
  };
6f9982bdd   Andi Kleen   lib/decompress.c:...
46
  static const struct compress_format compressed_formats[] __initconst = {
a060bfe03   Haesung Kim   lib/decompress.c:...
47
48
  	{ {0x1f, 0x8b}, "gzip", gunzip },
  	{ {0x1f, 0x9e}, "gzip", gunzip },
889c92d21   H. Peter Anvin   bzip2/lzma: centr...
49
  	{ {0x42, 0x5a}, "bzip2", bunzip2 },
889c92d21   H. Peter Anvin   bzip2/lzma: centr...
50
  	{ {0x5d, 0x00}, "lzma", unlzma },
3ebe12439   Lasse Collin   decompressors: ad...
51
  	{ {0xfd, 0x37}, "xz", unxz },
cacb246f8   Albin Tonnerre   Add LZO compressi...
52
  	{ {0x89, 0x4c}, "lzo", unlzo },
e76e1fdfa   Kyungsik Lee   lib: add support ...
53
  	{ {0x02, 0x21}, "lz4", unlz4 },
889c92d21   H. Peter Anvin   bzip2/lzma: centr...
54
55
  	{ {0, 0}, NULL, NULL }
  };
d97b07c54   Yinghai Lu   initramfs: suppor...
56
  decompress_fn __init decompress_method(const unsigned char *inbuf, long len,
889c92d21   H. Peter Anvin   bzip2/lzma: centr...
57
58
59
  				const char **name)
  {
  	const struct compress_format *cf;
5a09e6ce9   Aneesh Kumar K.V   lib/decompress: s...
60
61
62
  	if (len < 2) {
  		if (name)
  			*name = NULL;
889c92d21   H. Peter Anvin   bzip2/lzma: centr...
63
  		return NULL;	/* Need at least this much... */
5a09e6ce9   Aneesh Kumar K.V   lib/decompress: s...
64
  	}
889c92d21   H. Peter Anvin   bzip2/lzma: centr...
65

6aa7a29aa   Daniel M. Weeks   initramfs: debug ...
66
67
  	pr_debug("Compressed data magic: %#.2x %#.2x
  ", inbuf[0], inbuf[1]);
e4aa7ca5a   Alain Knaff   bzip2/lzma: don't...
68
  	for (cf = compressed_formats; cf->name; cf++) {
889c92d21   H. Peter Anvin   bzip2/lzma: centr...
69
70
71
72
73
74
75
76
  		if (!memcmp(inbuf, cf->magic, 2))
  			break;
  
  	}
  	if (name)
  		*name = cf->name;
  	return cf->decompressor;
  }