2014-08-10 16:13:12 +00:00
|
|
|
/* radare - LGPL - Copyright 2014 - pancake */
|
|
|
|
|
|
|
|
#include <r_util.h>
|
|
|
|
#include <zlib.h>
|
|
|
|
|
2014-08-10 16:24:00 +00:00
|
|
|
// TODO: add r_gzip
|
2014-08-10 16:13:12 +00:00
|
|
|
|
2014-08-10 16:24:00 +00:00
|
|
|
// avoid gzipbombs
|
|
|
|
#define MAXRETRIES 10
|
|
|
|
|
|
|
|
R_API ut8 *r_gunzip(const ut8 *src, int srcLen, int *dstLen) {
|
2014-08-10 16:13:12 +00:00
|
|
|
ut8 *dst = NULL, *dst2;
|
|
|
|
z_stream strm;
|
|
|
|
int tryLen = 1+(srcLen * 4);
|
2014-08-10 16:24:00 +00:00
|
|
|
int retries = 0;
|
2014-08-10 16:13:12 +00:00
|
|
|
// TODO: optimize this using an incremental method
|
|
|
|
retrygunzip:
|
|
|
|
free (dst);
|
2014-08-10 16:24:00 +00:00
|
|
|
if (++retries>MAXRETRIES)
|
|
|
|
return NULL;
|
2014-08-10 16:13:12 +00:00
|
|
|
if (tryLen<1)
|
|
|
|
return NULL;
|
|
|
|
memset (&strm, 0, sizeof (z_stream));
|
|
|
|
dst = malloc (tryLen+1);
|
2014-08-10 16:24:00 +00:00
|
|
|
if (!dst)
|
|
|
|
return NULL;
|
2014-08-10 16:13:12 +00:00
|
|
|
strm.total_in = strm.avail_in = srcLen;
|
|
|
|
strm.total_out = strm.avail_out = tryLen;
|
|
|
|
strm.next_in = (Bytef *) src;
|
|
|
|
strm.next_out = (Bytef *) dst;
|
|
|
|
|
|
|
|
strm.zalloc = Z_NULL;
|
|
|
|
strm.zfree = Z_NULL;
|
|
|
|
strm.opaque = Z_NULL;
|
|
|
|
|
|
|
|
int err = -1;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
// ZLIB
|
|
|
|
//err = inflateInit2(&strm, (15 + 32)); //15 window bits, and the +32 tells zlib to to detect if using gzip or zlib
|
|
|
|
// GZIP
|
|
|
|
err = inflateInit2(&strm, 16+MAX_WBITS);
|
|
|
|
if (err == Z_OK) {
|
|
|
|
err = inflate(&strm, Z_FINISH);
|
|
|
|
if (err == Z_STREAM_END) {
|
|
|
|
ret = strm.total_out;
|
|
|
|
if (dstLen)
|
|
|
|
*dstLen = ret;
|
|
|
|
dst[ret] = 0;
|
|
|
|
dst2 = realloc (dst, ret+1);
|
|
|
|
if (dst2)
|
|
|
|
dst = dst2;
|
|
|
|
return dst;
|
|
|
|
} else {
|
|
|
|
inflateEnd(&strm);
|
|
|
|
if (err == Z_BUF_ERROR) {
|
|
|
|
tryLen *= 2;
|
|
|
|
goto retrygunzip;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
inflateEnd(&strm);
|
|
|
|
if (err == Z_BUF_ERROR) {
|
|
|
|
tryLen *= 2;
|
|
|
|
goto retrygunzip;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
inflateEnd(&strm);
|
|
|
|
if (err == Z_BUF_ERROR) {
|
|
|
|
tryLen *= 2;
|
|
|
|
goto retrygunzip;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|