Skip to content

Commit

Permalink
zlib: allow feeding more than 4GB in one go
Browse files Browse the repository at this point in the history
Update zlib_post_call() that adjusts the wrapper's notion of avail_in and
avail_out to what came back from zlib, so that the callers can feed
buffers larger than than 4GB to the API.

When underlying inflate/deflate stopped processing because we fed a buffer
larger than 4GB limit, detect that case, update the state variables, and
let the zlib function work another round.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Junio C Hamano committed Jun 10, 2011
1 parent ef49a7a commit e01503b
Showing 1 changed file with 58 additions and 20 deletions.
78 changes: 58 additions & 20 deletions zlib.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,11 @@ static const char *zerr_to_string(int status)
* limits the size of the buffer we can use to 4GB when interacting
* with zlib in a single call to inflate/deflate.
*/
#define ZLIB_BUF_MAX ((uInt)-1)
/* #define ZLIB_BUF_MAX ((uInt)-1) */
#define ZLIB_BUF_MAX ((uInt) 1024 * 1024 * 1024) /* 1GB */
static inline uInt zlib_buf_cap(unsigned long len)
{
if (ZLIB_BUF_MAX < len)
die("working buffer for zlib too large");
return len;
return (ZLIB_BUF_MAX < len) ? ZLIB_BUF_MAX : len;
}

static void zlib_pre_call(git_zstream *s)
Expand All @@ -47,12 +46,22 @@ static void zlib_pre_call(git_zstream *s)

static void zlib_post_call(git_zstream *s)
{
unsigned long bytes_consumed;
unsigned long bytes_produced;

bytes_consumed = s->z.next_in - s->next_in;
bytes_produced = s->z.next_out - s->next_out;
if (s->z.total_out != s->total_out + bytes_produced)
die("BUG: total_out mismatch");
if (s->z.total_in != s->total_in + bytes_consumed)
die("BUG: total_in mismatch");

s->total_out = s->z.total_out;
s->total_in = s->z.total_in;
s->next_in = s->z.next_in;
s->next_out = s->z.next_out;
s->total_in = s->z.total_in;
s->total_out = s->z.total_out;
s->avail_in = s->z.avail_in;
s->avail_out = s->z.avail_out;
s->avail_in -= bytes_consumed;
s->avail_out -= bytes_produced;
}

void git_inflate_init(git_zstream *strm)
Expand Down Expand Up @@ -103,18 +112,32 @@ int git_inflate(git_zstream *strm, int flush)
{
int status;

zlib_pre_call(strm);
status = inflate(&strm->z, flush);
zlib_post_call(strm);
for (;;) {
zlib_pre_call(strm);
/* Never say Z_FINISH unless we are feeding everything */
status = inflate(&strm->z,
(strm->z.avail_in != strm->avail_in)
? 0 : flush);
if (status == Z_MEM_ERROR)
die("inflate: out of memory");
zlib_post_call(strm);

/*
* Let zlib work another round, while we can still
* make progress.
*/
if ((strm->avail_out && !strm->z.avail_out) &&
(status == Z_OK || status == Z_BUF_ERROR))
continue;
break;
}

switch (status) {
/* Z_BUF_ERROR: normal, needs more space in the output buffer */
case Z_BUF_ERROR:
case Z_OK:
case Z_STREAM_END:
return status;

case Z_MEM_ERROR:
die("inflate: out of memory");
default:
break;
}
Expand Down Expand Up @@ -192,18 +215,33 @@ int git_deflate(git_zstream *strm, int flush)
{
int status;

zlib_pre_call(strm);
status = deflate(&strm->z, flush);
zlib_post_call(strm);
for (;;) {
zlib_pre_call(strm);

/* Never say Z_FINISH unless we are feeding everything */
status = deflate(&strm->z,
(strm->z.avail_in != strm->avail_in)
? 0 : flush);
if (status == Z_MEM_ERROR)
die("deflate: out of memory");
zlib_post_call(strm);

/*
* Let zlib work another round, while we can still
* make progress.
*/
if ((strm->avail_out && !strm->z.avail_out) &&
(status == Z_OK || status == Z_BUF_ERROR))
continue;
break;
}

switch (status) {
/* Z_BUF_ERROR: normal, needs more space in the output buffer */
case Z_BUF_ERROR:
case Z_OK:
case Z_STREAM_END:
return status;

case Z_MEM_ERROR:
die("deflate: out of memory");
default:
break;
}
Expand Down

0 comments on commit e01503b

Please sign in to comment.