forked from dtrace4linux/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuncompress.c
59 lines (46 loc) · 1.18 KB
/
uncompress.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# if __KERNEL__
# include <linux_types.h>
# include <linux/zlib.h>
# include "../port.h"
# else
# include <zlib.h>
# define zlib_inflateInit inflateInit
# define zlib_inflate inflate
# define zlib_inflateEnd inflateEnd
# endif
static char *last_err;
int ctf_uncompress (char *dest, int *destLen, char *source, int sourceLen)
{
#if defined(DO_NOT_HAVE_ZLIB_IN_KERNEL)
return Z_BUF_ERROR;
#else
z_stream stream;
int err;
memset(&stream, 0, sizeof stream);
stream.next_in = source;
stream.avail_in = sourceLen;
/* Check for source > 64K on 16-bit machine: */
if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
stream.next_out = dest;
stream.avail_out = (uInt)*destLen;
if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
err = zlib_inflateInit(&stream);
if (err != Z_OK) return err;
err = zlib_inflate(&stream, Z_FINISH);
last_err = stream.msg;
if (err != Z_STREAM_END) {
zlib_inflateEnd(&stream);
if (err == Z_NEED_DICT || (err == Z_BUF_ERROR && stream.avail_in == 0))
return Z_DATA_ERROR;
return err;
}
*destLen = stream.total_out;
err = zlib_inflateEnd(&stream);
return err;
#endif
}
char *
ctf_zstrerror(void)
{
return last_err;
}