1 // SPDX-License-Identifier: GPL-2.0
4 /* Pre-boot environment: included */
6 /* prevent inclusion of _LINUX_KERNEL_H in pre-boot environment: lots
7 * errors about console_printk etc... on ARM */
8 #define _LINUX_KERNEL_H
10 #include "zlib_inflate/inftrees.c"
11 #include "zlib_inflate/inffast.c"
12 #include "zlib_inflate/inflate.c"
15 /* initramfs et al: linked */
17 #include <linux/zutil.h>
19 #include "zlib_inflate/inftrees.h"
20 #include "zlib_inflate/inffast.h"
21 #include "zlib_inflate/inflate.h"
23 #include "zlib_inflate/infutil.h"
24 #include <linux/decompress/inflate.h>
28 #include <linux/decompress/mm.h>
30 #define GZIP_IOBUF_SIZE (16*1024)
32 static long INIT nofill(void *buffer, unsigned long len)
37 /* Included from initramfs et al code */
38 STATIC int INIT __gunzip(unsigned char *buf, long len,
39 long (*fill)(void*, unsigned long),
40 long (*flush)(void*, unsigned long),
41 unsigned char *out_buf, long out_len,
43 void(*error)(char *x)) {
45 struct z_stream_s *strm;
50 out_len = 0x8000; /* 32 K */
51 out_buf = malloc(out_len);
54 out_len = ((size_t)~0) - (size_t)out_buf; /* no limit */
57 error("Out of memory while allocating output buffer");
64 zbuf = malloc(GZIP_IOBUF_SIZE);
68 error("Out of memory while allocating input buffer");
72 strm = malloc(sizeof(*strm));
74 error("Out of memory while allocating z_stream");
78 strm->workspace = malloc(flush ? zlib_inflate_workspacesize() :
79 sizeof(struct inflate_state));
80 if (strm->workspace == NULL) {
81 error("Out of memory while allocating workspace");
89 len = fill(zbuf, GZIP_IOBUF_SIZE);
91 /* verify the gzip header */
93 zbuf[0] != 0x1f || zbuf[1] != 0x8b || zbuf[2] != 0x08) {
96 error("Not a gzip file");
100 /* skip over gzip header (1f,8b,08... 10 bytes total +
101 * possible asciz filename)
103 strm->next_in = zbuf + 10;
104 strm->avail_in = len - 10;
105 /* skip over asciz filename */
109 * If the filename doesn't fit into the buffer,
110 * the file is very probably corrupt. Don't try
113 if (strm->avail_in == 0) {
114 error("header error");
118 } while (*strm->next_in++);
121 strm->next_out = out_buf;
122 strm->avail_out = out_len;
124 rc = zlib_inflateInit2(strm, -MAX_WBITS);
127 WS(strm)->inflate_state.wsize = 0;
128 WS(strm)->inflate_state.window = NULL;
132 if (strm->avail_in == 0) {
133 /* TODO: handle case where both pos and fill are set */
134 len = fill(zbuf, GZIP_IOBUF_SIZE);
140 strm->next_in = zbuf;
141 strm->avail_in = len;
143 rc = zlib_inflate(strm, 0);
145 /* Write any data generated */
146 if (flush && strm->next_out > out_buf) {
147 long l = strm->next_out - out_buf;
148 if (l != flush(out_buf, l)) {
150 error("write error");
153 strm->next_out = out_buf;
154 strm->avail_out = out_len;
157 /* after Z_FINISH, only Z_STREAM_END is "we unpacked it all" */
158 if (rc == Z_STREAM_END) {
161 } else if (rc != Z_OK) {
162 error("uncompression error");
167 zlib_inflateEnd(strm);
169 /* add + 8 to skip over trailer */
170 *pos = strm->next_in - zbuf+8;
173 free(strm->workspace);
183 return rc; /* returns Z_OK (0) if successful */
187 STATIC int INIT gunzip(unsigned char *buf, long len,
188 long (*fill)(void*, unsigned long),
189 long (*flush)(void*, unsigned long),
190 unsigned char *out_buf,
192 void (*error)(char *x))
194 return __gunzip(buf, len, fill, flush, out_buf, 0, pos, error);
197 STATIC int INIT __decompress(unsigned char *buf, long len,
198 long (*fill)(void*, unsigned long),
199 long (*flush)(void*, unsigned long),
200 unsigned char *out_buf, long out_len,
202 void (*error)(char *x))
204 return __gunzip(buf, len, fill, flush, out_buf, out_len, pos, error);