2 /* Pre-boot environment: included */
4 /* prevent inclusion of _LINUX_KERNEL_H in pre-boot environment: lots
5 * errors about console_printk etc... on ARM */
6 #define _LINUX_KERNEL_H
8 #include "zlib_inflate/inftrees.c"
9 #include "zlib_inflate/inffast.c"
10 #include "zlib_inflate/inflate.c"
13 /* initramfs et al: linked */
15 #include <linux/zutil.h>
17 #include "zlib_inflate/inftrees.h"
18 #include "zlib_inflate/inffast.h"
19 #include "zlib_inflate/inflate.h"
21 #include "zlib_inflate/infutil.h"
22 #include <linux/decompress/inflate.h>
26 #include <linux/decompress/mm.h>
28 #define GZIP_IOBUF_SIZE (16*1024)
30 static long INIT
nofill(void *buffer
, unsigned long len
)
35 /* Included from initramfs et al code */
36 STATIC
int INIT
gunzip(unsigned char *buf
, long len
,
37 long (*fill
)(void*, unsigned long),
38 long (*flush
)(void*, unsigned long),
39 unsigned char *out_buf
,
41 void(*error
)(char *x
)) {
43 struct z_stream_s
*strm
;
49 out_len
= 0x8000; /* 32 K */
50 out_buf
= malloc(out_len
);
52 out_len
= ((size_t)~0) - (size_t)out_buf
; /* no limit */
55 error("Out of memory while allocating output buffer");
62 zbuf
= malloc(GZIP_IOBUF_SIZE
);
66 error("Out of memory while allocating input buffer");
70 strm
= malloc(sizeof(*strm
));
72 error("Out of memory while allocating z_stream");
76 strm
->workspace
= malloc(flush
? zlib_inflate_workspacesize() :
77 sizeof(struct inflate_state
));
78 if (strm
->workspace
== NULL
) {
79 error("Out of memory while allocating workspace");
87 len
= fill(zbuf
, GZIP_IOBUF_SIZE
);
89 /* verify the gzip header */
91 zbuf
[0] != 0x1f || zbuf
[1] != 0x8b || zbuf
[2] != 0x08) {
94 error("Not a gzip file");
98 /* skip over gzip header (1f,8b,08... 10 bytes total +
99 * possible asciz filename)
101 strm
->next_in
= zbuf
+ 10;
102 strm
->avail_in
= len
- 10;
103 /* skip over asciz filename */
107 * If the filename doesn't fit into the buffer,
108 * the file is very probably corrupt. Don't try
111 if (strm
->avail_in
== 0) {
112 error("header error");
116 } while (*strm
->next_in
++);
119 strm
->next_out
= out_buf
;
120 strm
->avail_out
= out_len
;
122 rc
= zlib_inflateInit2(strm
, -MAX_WBITS
);
125 WS(strm
)->inflate_state
.wsize
= 0;
126 WS(strm
)->inflate_state
.window
= NULL
;
130 if (strm
->avail_in
== 0) {
131 /* TODO: handle case where both pos and fill are set */
132 len
= fill(zbuf
, GZIP_IOBUF_SIZE
);
138 strm
->next_in
= zbuf
;
139 strm
->avail_in
= len
;
141 rc
= zlib_inflate(strm
, 0);
143 /* Write any data generated */
144 if (flush
&& strm
->next_out
> out_buf
) {
145 long l
= strm
->next_out
- out_buf
;
146 if (l
!= flush(out_buf
, l
)) {
148 error("write error");
151 strm
->next_out
= out_buf
;
152 strm
->avail_out
= out_len
;
155 /* after Z_FINISH, only Z_STREAM_END is "we unpacked it all" */
156 if (rc
== Z_STREAM_END
) {
159 } else if (rc
!= Z_OK
) {
160 error("uncompression error");
165 zlib_inflateEnd(strm
);
167 /* add + 8 to skip over trailer */
168 *pos
= strm
->next_in
- zbuf
+8;
171 free(strm
->workspace
);
181 return rc
; /* returns Z_OK (0) if successful */
184 #define decompress gunzip