2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2003-04-11 12:31:18 -04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2002-09-02 18:31:18 -04:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2004-01-07 04:19:33 -05:00
|
|
|
* Copyright (C) 1998 - 2004, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2002-09-02 18:31:18 -04:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
|
|
|
* are also available at http://curl.haxx.se/docs/copyright.html.
|
2003-04-11 12:31:18 -04:00
|
|
|
*
|
2002-09-02 18:31:18 -04:00
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
2002-09-03 07:52:59 -04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
2002-09-02 18:31:18 -04:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
* $Id$
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
2002-09-02 18:31:18 -04:00
|
|
|
|
|
|
|
#include "setup.h"
|
|
|
|
|
|
|
|
#ifdef HAVE_LIBZ
|
|
|
|
|
2003-04-11 04:49:20 -04:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2002-09-02 18:31:18 -04:00
|
|
|
#include "urldata.h"
|
|
|
|
#include <curl/curl.h>
|
|
|
|
#include "sendf.h"
|
2004-01-29 08:56:45 -05:00
|
|
|
#include "content_encoding.h"
|
2004-05-11 07:30:23 -04:00
|
|
|
#include "memory.h"
|
|
|
|
|
|
|
|
#include "memdebug.h"
|
2002-09-02 18:31:18 -04:00
|
|
|
|
2004-10-27 17:46:11 -04:00
|
|
|
/* Comment this out if zlib is always going to be at least ver. 1.2.0.4
|
|
|
|
(doing so will reduce code size slightly). */
|
|
|
|
#define OLD_ZLIB_SUPPORT 1
|
|
|
|
|
2003-04-22 18:32:02 -04:00
|
|
|
#define DSIZ 0x10000 /* buffer size for decompressed data */
|
2002-09-02 18:31:18 -04:00
|
|
|
|
2003-04-11 04:49:20 -04:00
|
|
|
#define GZIP_MAGIC_0 0x1f
|
|
|
|
#define GZIP_MAGIC_1 0x8b
|
|
|
|
|
|
|
|
/* gzip flag byte */
|
|
|
|
#define ASCII_FLAG 0x01 /* bit 0 set: file probably ascii text */
|
|
|
|
#define HEAD_CRC 0x02 /* bit 1 set: header CRC present */
|
|
|
|
#define EXTRA_FIELD 0x04 /* bit 2 set: extra field present */
|
|
|
|
#define ORIG_NAME 0x08 /* bit 3 set: original file name present */
|
|
|
|
#define COMMENT 0x10 /* bit 4 set: file comment present */
|
|
|
|
#define RESERVED 0xE0 /* bits 5..7: reserved */
|
2002-09-02 18:31:18 -04:00
|
|
|
|
2004-10-27 17:46:11 -04:00
|
|
|
enum zlibState {
|
|
|
|
ZLIB_UNINIT, /* uninitialized */
|
|
|
|
ZLIB_INIT, /* initialized */
|
|
|
|
ZLIB_GZIP_HEADER, /* reading gzip header */
|
|
|
|
ZLIB_GZIP_INFLATING, /* inflating gzip stream */
|
|
|
|
ZLIB_INIT_GZIP /* initialized in transparent gzip mode */
|
|
|
|
};
|
|
|
|
|
2002-09-02 18:31:18 -04:00
|
|
|
static CURLcode
|
2004-10-27 17:46:11 -04:00
|
|
|
process_zlib_error(struct SessionHandle *data,
|
|
|
|
z_stream *z)
|
2002-09-02 18:31:18 -04:00
|
|
|
{
|
|
|
|
if (z->msg)
|
2004-10-27 17:46:11 -04:00
|
|
|
failf (data, "Error while processing content unencoding: %s",
|
2002-09-02 18:31:18 -04:00
|
|
|
z->msg);
|
|
|
|
else
|
2004-10-27 17:46:11 -04:00
|
|
|
failf (data, "Error while processing content unencoding: "
|
2002-09-02 18:31:18 -04:00
|
|
|
"Unknown failure within decompression software.");
|
|
|
|
|
|
|
|
return CURLE_BAD_CONTENT_ENCODING;
|
|
|
|
}
|
|
|
|
|
|
|
|
static CURLcode
|
|
|
|
exit_zlib(z_stream *z, bool *zlib_init, CURLcode result)
|
|
|
|
{
|
|
|
|
inflateEnd(z);
|
2004-10-27 17:46:11 -04:00
|
|
|
*zlib_init = ZLIB_UNINIT;
|
2002-09-02 18:31:18 -04:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2004-10-27 17:46:11 -04:00
|
|
|
static CURLcode
|
|
|
|
inflate_stream(struct SessionHandle *data,
|
|
|
|
struct Curl_transfer_keeper *k)
|
2002-09-02 18:31:18 -04:00
|
|
|
{
|
2004-10-27 17:46:11 -04:00
|
|
|
z_stream *z = &k->z; /* zlib state structure */
|
2002-09-02 18:31:18 -04:00
|
|
|
int status; /* zlib status */
|
2004-02-15 08:58:57 -05:00
|
|
|
CURLcode result = CURLE_OK; /* Curl_client_write status */
|
2004-10-27 17:46:11 -04:00
|
|
|
char *decomp; /* Put the decompressed data here. */
|
2003-04-11 12:31:18 -04:00
|
|
|
|
2004-10-27 17:46:11 -04:00
|
|
|
/* Dynamically allocate a buffer for decompression because it's uncommonly
|
|
|
|
large to hold on the stack */
|
|
|
|
decomp = (char*)malloc(DSIZ);
|
|
|
|
if (decomp == NULL) {
|
|
|
|
return exit_zlib(z, &k->zlib_init, CURLE_OUT_OF_MEMORY);
|
2002-09-02 18:31:18 -04:00
|
|
|
}
|
|
|
|
|
2004-10-27 17:46:11 -04:00
|
|
|
/* because the buffer size is fixed, iteratively decompress and transfer to
|
|
|
|
the client via client_write. */
|
2002-09-02 18:31:18 -04:00
|
|
|
for (;;) {
|
|
|
|
/* (re)set buffer for decompressed output for every iteration */
|
2004-10-27 17:46:11 -04:00
|
|
|
z->next_out = (Bytef *)decomp;
|
2002-09-02 18:31:18 -04:00
|
|
|
z->avail_out = DSIZ;
|
|
|
|
|
|
|
|
status = inflate(z, Z_SYNC_FLUSH);
|
|
|
|
if (status == Z_OK || status == Z_STREAM_END) {
|
2004-10-27 17:46:11 -04:00
|
|
|
if(DSIZ - z->avail_out) {
|
2003-04-11 12:31:18 -04:00
|
|
|
result = Curl_client_write(data, CLIENTWRITE_BODY, decomp,
|
|
|
|
DSIZ - z->avail_out);
|
|
|
|
/* if !CURLE_OK, clean up, return */
|
2004-10-27 17:46:11 -04:00
|
|
|
if (result) {
|
|
|
|
free(decomp);
|
2003-04-11 12:31:18 -04:00
|
|
|
return exit_zlib(z, &k->zlib_init, result);
|
2004-10-27 17:46:11 -04:00
|
|
|
}
|
2002-09-02 18:31:18 -04:00
|
|
|
}
|
|
|
|
|
2004-10-27 17:46:11 -04:00
|
|
|
/* Done? clean up, return */
|
2002-09-02 18:31:18 -04:00
|
|
|
if (status == Z_STREAM_END) {
|
2004-10-27 17:46:11 -04:00
|
|
|
free(decomp);
|
2002-09-02 18:31:18 -04:00
|
|
|
if (inflateEnd(z) == Z_OK)
|
|
|
|
return exit_zlib(z, &k->zlib_init, result);
|
|
|
|
else
|
|
|
|
return exit_zlib(z, &k->zlib_init, process_zlib_error(data, z));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Done with these bytes, exit */
|
2004-10-27 17:46:11 -04:00
|
|
|
if (status == Z_OK && z->avail_in == 0 && z->avail_out > 0) {
|
|
|
|
free(decomp);
|
2002-09-02 18:31:18 -04:00
|
|
|
return result;
|
2004-10-27 17:46:11 -04:00
|
|
|
}
|
2002-09-02 18:31:18 -04:00
|
|
|
}
|
|
|
|
else { /* Error; exit loop, handle below */
|
2004-10-27 17:46:11 -04:00
|
|
|
free(decomp);
|
2002-09-02 18:31:18 -04:00
|
|
|
return exit_zlib(z, &k->zlib_init, process_zlib_error(data, z));
|
|
|
|
}
|
|
|
|
}
|
2004-10-27 17:46:11 -04:00
|
|
|
/* Will never get here */
|
2002-09-02 18:31:18 -04:00
|
|
|
}
|
2003-04-11 04:49:20 -04:00
|
|
|
|
2004-10-27 17:46:11 -04:00
|
|
|
CURLcode
|
|
|
|
Curl_unencode_deflate_write(struct SessionHandle *data,
|
|
|
|
struct Curl_transfer_keeper *k,
|
|
|
|
ssize_t nread)
|
|
|
|
{
|
|
|
|
z_stream *z = &k->z; /* zlib state structure */
|
|
|
|
|
|
|
|
/* Initialize zlib? */
|
|
|
|
if (k->zlib_init == ZLIB_UNINIT) {
|
|
|
|
z->zalloc = (alloc_func)Z_NULL;
|
|
|
|
z->zfree = (free_func)Z_NULL;
|
|
|
|
z->opaque = 0;
|
|
|
|
z->next_in = NULL;
|
|
|
|
z->avail_in = 0;
|
|
|
|
if (inflateInit(z) != Z_OK)
|
|
|
|
return process_zlib_error(data, z);
|
|
|
|
k->zlib_init = ZLIB_INIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set the compressed input when this function is called */
|
|
|
|
z->next_in = (Bytef *)k->str;
|
|
|
|
z->avail_in = (uInt)nread;
|
|
|
|
|
|
|
|
/* Now uncompress the data */
|
|
|
|
return inflate_stream(data, k);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef OLD_ZLIB_SUPPORT
|
2003-04-11 04:49:20 -04:00
|
|
|
/* Skip over the gzip header */
|
|
|
|
static enum {
|
|
|
|
GZIP_OK,
|
|
|
|
GZIP_BAD,
|
|
|
|
GZIP_UNDERFLOW
|
2003-04-11 12:31:18 -04:00
|
|
|
} check_gzip_header(unsigned char const *data, ssize_t len, ssize_t *headerlen)
|
2003-04-11 04:49:20 -04:00
|
|
|
{
|
|
|
|
int method, flags;
|
|
|
|
const ssize_t totallen = len;
|
|
|
|
|
|
|
|
/* The shortest header is 10 bytes */
|
|
|
|
if (len < 10)
|
|
|
|
return GZIP_UNDERFLOW;
|
|
|
|
|
|
|
|
if ((data[0] != GZIP_MAGIC_0) || (data[1] != GZIP_MAGIC_1))
|
|
|
|
return GZIP_BAD;
|
|
|
|
|
|
|
|
method = data[2];
|
|
|
|
flags = data[3];
|
|
|
|
|
|
|
|
if (method != Z_DEFLATED || (flags & RESERVED) != 0) {
|
|
|
|
/* Can't handle this compression method or unknown flag */
|
|
|
|
return GZIP_BAD;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Skip over time, xflags, OS code and all previous bytes */
|
|
|
|
len -= 10;
|
|
|
|
data += 10;
|
|
|
|
|
|
|
|
if (flags & EXTRA_FIELD) {
|
|
|
|
ssize_t extra_len;
|
|
|
|
|
|
|
|
if (len < 2)
|
|
|
|
return GZIP_UNDERFLOW;
|
|
|
|
|
|
|
|
extra_len = (data[1] << 8) | data[0];
|
|
|
|
|
|
|
|
if (len < (extra_len+2))
|
|
|
|
return GZIP_UNDERFLOW;
|
|
|
|
|
|
|
|
len -= (extra_len + 2);
|
2004-11-30 04:44:54 -05:00
|
|
|
data += (extra_len + 2);
|
2003-04-11 04:49:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (flags & ORIG_NAME) {
|
|
|
|
/* Skip over NUL-terminated file name */
|
|
|
|
while (len && *data) {
|
|
|
|
--len;
|
|
|
|
++data;
|
|
|
|
}
|
|
|
|
if (!len || *data)
|
|
|
|
return GZIP_UNDERFLOW;
|
|
|
|
|
|
|
|
/* Skip over the NUL */
|
|
|
|
--len;
|
|
|
|
++data;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flags & COMMENT) {
|
|
|
|
/* Skip over NUL-terminated comment */
|
|
|
|
while (len && *data) {
|
|
|
|
--len;
|
|
|
|
++data;
|
|
|
|
}
|
|
|
|
if (!len || *data)
|
|
|
|
return GZIP_UNDERFLOW;
|
|
|
|
|
|
|
|
/* Skip over the NUL */
|
|
|
|
--len;
|
|
|
|
++data;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flags & HEAD_CRC) {
|
|
|
|
if (len < 2)
|
|
|
|
return GZIP_UNDERFLOW;
|
|
|
|
|
|
|
|
len -= 2;
|
|
|
|
data += 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
*headerlen = totallen - len;
|
|
|
|
return GZIP_OK;
|
|
|
|
}
|
2004-10-27 17:46:11 -04:00
|
|
|
#endif
|
2003-04-11 04:49:20 -04:00
|
|
|
|
|
|
|
CURLcode
|
2003-04-11 12:31:18 -04:00
|
|
|
Curl_unencode_gzip_write(struct SessionHandle *data,
|
2003-04-11 04:49:20 -04:00
|
|
|
struct Curl_transfer_keeper *k,
|
|
|
|
ssize_t nread)
|
|
|
|
{
|
|
|
|
z_stream *z = &k->z; /* zlib state structure */
|
2003-04-11 12:31:18 -04:00
|
|
|
|
2003-04-11 04:49:20 -04:00
|
|
|
/* Initialize zlib? */
|
2004-10-27 17:46:11 -04:00
|
|
|
if (k->zlib_init == ZLIB_UNINIT) {
|
2003-04-11 04:49:20 -04:00
|
|
|
z->zalloc = (alloc_func)Z_NULL;
|
|
|
|
z->zfree = (free_func)Z_NULL;
|
2004-05-12 03:55:05 -04:00
|
|
|
z->opaque = 0;
|
2004-01-05 17:54:45 -05:00
|
|
|
z->next_in = NULL;
|
|
|
|
z->avail_in = 0;
|
2004-10-27 17:46:11 -04:00
|
|
|
|
|
|
|
if (strcmp(zlibVersion(), "1.2.0.4") >= 0) {
|
|
|
|
/* zlib ver. >= 1.2.0.4 supports transparent gzip decompressing */
|
|
|
|
if (inflateInit2(z, MAX_WBITS+32) != Z_OK) {
|
|
|
|
return process_zlib_error(data, z);
|
|
|
|
}
|
|
|
|
k->zlib_init = ZLIB_INIT_GZIP; /* Transparent gzip decompress state */
|
|
|
|
|
|
|
|
} else {
|
|
|
|
/* we must parse the gzip header ourselves */
|
|
|
|
if (inflateInit2(z, -MAX_WBITS) != Z_OK) {
|
|
|
|
return process_zlib_error(data, z);
|
|
|
|
}
|
|
|
|
k->zlib_init = ZLIB_INIT; /* Initial call state */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (k->zlib_init == ZLIB_INIT_GZIP) {
|
|
|
|
/* Let zlib handle the gzip decompression entirely */
|
|
|
|
z->next_in = (Bytef *)k->str;
|
|
|
|
z->avail_in = (uInt)nread;
|
|
|
|
/* Now uncompress the data */
|
|
|
|
return inflate_stream(data, k);
|
2003-04-11 04:49:20 -04:00
|
|
|
}
|
|
|
|
|
2004-10-27 17:46:11 -04:00
|
|
|
#ifndef OLD_ZLIB_SUPPORT
|
|
|
|
/* Support for old zlib versions is compiled away and we are running with
|
|
|
|
an old version, so return an error. */
|
|
|
|
return exit_zlib(z, &k->zlib_init, CURLE_FUNCTION_NOT_FOUND);
|
|
|
|
|
|
|
|
#else
|
2003-04-11 04:49:20 -04:00
|
|
|
/* This next mess is to get around the potential case where there isn't
|
2004-05-12 03:55:05 -04:00
|
|
|
* enough data passed in to skip over the gzip header. If that happens, we
|
|
|
|
* malloc a block and copy what we have then wait for the next call. If
|
|
|
|
* there still isn't enough (this is definitely a worst-case scenario), we
|
|
|
|
* make the block bigger, copy the next part in and keep waiting.
|
2004-10-27 17:46:11 -04:00
|
|
|
*
|
|
|
|
* This is only required with zlib versions < 1.2.0.4 as newer versions
|
|
|
|
* can handle the gzip header themselves.
|
2004-05-12 03:55:05 -04:00
|
|
|
*/
|
2003-04-11 04:49:20 -04:00
|
|
|
|
2004-10-27 17:46:11 -04:00
|
|
|
switch (k->zlib_init) {
|
2003-04-11 04:49:20 -04:00
|
|
|
/* Skip over gzip header? */
|
2004-10-27 17:46:11 -04:00
|
|
|
case ZLIB_INIT:
|
|
|
|
{
|
2003-04-11 04:49:20 -04:00
|
|
|
/* Initial call state */
|
|
|
|
ssize_t hlen;
|
|
|
|
|
|
|
|
switch (check_gzip_header((unsigned char *)k->str, nread, &hlen)) {
|
|
|
|
case GZIP_OK:
|
|
|
|
z->next_in = (Bytef *)k->str + hlen;
|
2004-07-04 17:53:46 -04:00
|
|
|
z->avail_in = (uInt)(nread - hlen);
|
2004-10-27 17:46:11 -04:00
|
|
|
k->zlib_init = ZLIB_GZIP_INFLATING; /* Inflating stream state */
|
2003-04-11 04:49:20 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case GZIP_UNDERFLOW:
|
2004-05-12 03:55:05 -04:00
|
|
|
/* We need more data so we can find the end of the gzip header. It's
|
|
|
|
* possible that the memory block we malloc here will never be freed if
|
|
|
|
* the transfer abruptly aborts after this point. Since it's unlikely
|
|
|
|
* that circumstances will be right for this code path to be followed in
|
|
|
|
* the first place, and it's even more unlikely for a transfer to fail
|
|
|
|
* immediately afterwards, it should seldom be a problem.
|
|
|
|
*/
|
2004-07-04 17:53:46 -04:00
|
|
|
z->avail_in = (uInt)nread;
|
2003-04-11 04:49:20 -04:00
|
|
|
z->next_in = malloc(z->avail_in);
|
|
|
|
if (z->next_in == NULL) {
|
|
|
|
return exit_zlib(z, &k->zlib_init, CURLE_OUT_OF_MEMORY);
|
|
|
|
}
|
|
|
|
memcpy(z->next_in, k->str, z->avail_in);
|
2004-10-27 17:46:11 -04:00
|
|
|
k->zlib_init = ZLIB_GZIP_HEADER; /* Need more gzip header data state */
|
2003-04-11 04:49:20 -04:00
|
|
|
/* We don't have any data to inflate yet */
|
|
|
|
return CURLE_OK;
|
|
|
|
|
|
|
|
case GZIP_BAD:
|
|
|
|
default:
|
|
|
|
return exit_zlib(z, &k->zlib_init, process_zlib_error(data, z));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2004-10-27 17:46:11 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ZLIB_GZIP_HEADER:
|
|
|
|
{
|
2003-04-11 04:49:20 -04:00
|
|
|
/* Need more gzip header data state */
|
|
|
|
ssize_t hlen;
|
|
|
|
unsigned char *oldblock = z->next_in;
|
|
|
|
|
|
|
|
z->avail_in += nread;
|
|
|
|
z->next_in = realloc(z->next_in, z->avail_in);
|
|
|
|
if (z->next_in == NULL) {
|
|
|
|
free(oldblock);
|
|
|
|
return exit_zlib(z, &k->zlib_init, CURLE_OUT_OF_MEMORY);
|
|
|
|
}
|
|
|
|
/* Append the new block of data to the previous one */
|
|
|
|
memcpy(z->next_in + z->avail_in - nread, k->str, nread);
|
|
|
|
|
|
|
|
switch (check_gzip_header(z->next_in, z->avail_in, &hlen)) {
|
|
|
|
case GZIP_OK:
|
|
|
|
/* This is the zlib stream data */
|
|
|
|
free(z->next_in);
|
|
|
|
/* Don't point into the malloced block since we just freed it */
|
|
|
|
z->next_in = (Bytef *)k->str + hlen + nread - z->avail_in;
|
2004-07-04 17:53:46 -04:00
|
|
|
z->avail_in = (uInt)(z->avail_in - hlen);
|
2004-10-27 17:46:11 -04:00
|
|
|
k->zlib_init = ZLIB_GZIP_INFLATING; /* Inflating stream state */
|
2003-04-11 04:49:20 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case GZIP_UNDERFLOW:
|
|
|
|
/* We still don't have any data to inflate! */
|
|
|
|
return CURLE_OK;
|
|
|
|
|
|
|
|
case GZIP_BAD:
|
|
|
|
default:
|
|
|
|
free(z->next_in);
|
|
|
|
return exit_zlib(z, &k->zlib_init, process_zlib_error(data, z));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2004-10-27 17:46:11 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ZLIB_GZIP_INFLATING:
|
|
|
|
default:
|
2003-04-11 04:49:20 -04:00
|
|
|
/* Inflating stream state */
|
|
|
|
z->next_in = (Bytef *)k->str;
|
2004-07-04 17:53:46 -04:00
|
|
|
z->avail_in = (uInt)nread;
|
2004-10-27 17:46:11 -04:00
|
|
|
break;
|
2003-04-11 04:49:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (z->avail_in == 0) {
|
|
|
|
/* We don't have any data to inflate; wait until next time */
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
2004-10-27 17:46:11 -04:00
|
|
|
/* We've parsed the header, now uncompress the data */
|
|
|
|
return inflate_stream(data, k);
|
|
|
|
#endif
|
2003-04-11 04:49:20 -04:00
|
|
|
}
|
2002-09-02 18:31:18 -04:00
|
|
|
#endif /* HAVE_LIBZ */
|