f0328cdabfd4832978b26d0afd83967ba8c561f0
[m6w6/ext-http] / http_encoding_api.c
1 /*
2 +----------------------------------------------------------------------+
3 | PECL :: http |
4 +----------------------------------------------------------------------+
5 | This source file is subject to version 3.0 of the PHP license, that |
6 | is bundled with this package in the file LICENSE, and is available |
7 | through the world-wide-web at http://www.php.net/license/3_0.txt. |
8 | If you did not receive a copy of the PHP license and are unable to |
9 | obtain it through the world-wide-web, please send a note to |
10 | license@php.net so we can mail you a copy immediately. |
11 +----------------------------------------------------------------------+
12 | Copyright (c) 2004-2005 Michael Wallner <mike@php.net> |
13 +----------------------------------------------------------------------+
14 */
15
16 /* $Id$ */
17
18 #ifdef HAVE_CONFIG_H
19 # include "config.h"
20 #endif
21 #include "php.h"
22
23 #include "php_http_encoding_api.h"
24 #include "php_http.h"
25 #include "php_http_api.h"
26
27 ZEND_EXTERN_MODULE_GLOBALS(http);
28
29 /* {{{ char *http_encoding_dechunk(char *, size_t, char **, size_t *) */
30 PHP_HTTP_API const char *_http_encoding_dechunk(const char *encoded, size_t encoded_len, char **decoded, size_t *decoded_len TSRMLS_DC)
31 {
32 const char *e_ptr;
33 char *d_ptr;
34 long rest;
35
36 *decoded_len = 0;
37 *decoded = ecalloc(1, encoded_len);
38 d_ptr = *decoded;
39 e_ptr = encoded;
40
41 while ((rest = encoded + encoded_len - e_ptr) > 0) {
42 long chunk_len = 0;
43 int EOL_len = 0, eol_mismatch = 0;
44 char *n_ptr;
45
46 chunk_len = strtol(e_ptr, &n_ptr, 16);
47
48 /* check if:
49 * - we could not read in chunk size
50 * - we got a negative chunk size
51 * - chunk size is greater then remaining size
52 * - chunk size is not followed by (CR)LF|NUL
53 */
54 if ( (n_ptr == e_ptr) || (chunk_len < 0) || (chunk_len > rest) ||
55 (*n_ptr && (eol_mismatch = (n_ptr != http_locate_eol(e_ptr, &EOL_len))))) {
56 /* don't fail on apperently not encoded data */
57 if (e_ptr == encoded) {
58 memcpy(*decoded, encoded, encoded_len);
59 *decoded_len = encoded_len;
60 return encoded + encoded_len;
61 } else {
62 efree(*decoded);
63 if (eol_mismatch) {
64 if (EOL_len == 2) {
65 http_error_ex(HE_WARNING, HTTP_E_ENCODING, "Invalid character (expected 0x0D 0x0A; got: 0x%X 0x%X)", *n_ptr, *(n_ptr + 1));
66 } else {
67 http_error_ex(HE_WARNING, HTTP_E_ENCODING, "Invalid character (expected 0x0A; got: 0x%X)", *n_ptr);
68 }
69 } else {
70 char *error = estrndup(n_ptr, strcspn(n_ptr, "\r\n "));
71 http_error_ex(HE_WARNING, HTTP_E_ENCODING, "Invalid chunk size: '%s' at pos %d", error, n_ptr - encoded);
72 efree(error);
73 }
74 return NULL;
75 }
76 } else {
77 e_ptr = n_ptr;
78 }
79
80 /* reached the end */
81 if (!chunk_len) {
82 break;
83 }
84
85 memcpy(d_ptr, e_ptr += EOL_len, chunk_len);
86 d_ptr += chunk_len;
87 e_ptr += chunk_len + EOL_len;
88 *decoded_len += chunk_len;
89 }
90
91 return e_ptr;
92 }
93 /* }}} */
94
95 #ifdef HTTP_HAVE_ZLIB
96 #include <zlib.h>
97
98 /* max count of uncompress trials, alloc_size <<= 2 for each try */
99 #define HTTP_GZMAXTRY 10
100 /* safe padding */
101 #define HTTP_GZSAFPAD 10
102 /* add 1% extra space in case we need to encode widely differing (binary) data */
103 #define HTTP_GZBUFLEN(l) (l + (l / 100) + HTTP_GZSAFPAD)
104
105 static const char http_gzencode_header[] = {
106 (const char) 0x1f,
107 (const char) 0x8b,
108 (const char) Z_DEFLATED,
109 0, 0, 0, 0, 0, 0,
110 (const char) 0x03
111 };
112
113 inline void http_init_gzencode_buffer(z_stream *Z, const char *data, size_t data_len, char **buf_ptr)
114 {
115 Z->zalloc = Z_NULL;
116 Z->zfree = Z_NULL;
117 Z->opaque = Z_NULL;
118
119 Z->next_in = (Bytef *) data;
120 Z->avail_in = data_len;
121 Z->avail_out = HTTP_GZBUFLEN(data_len) + HTTP_GZSAFPAD - 1;
122
123 *buf_ptr = emalloc(HTTP_GZBUFLEN(data_len) + sizeof(http_gzencode_header));
124 memcpy(*buf_ptr, http_gzencode_header, sizeof(http_gzencode_header));
125
126 Z->next_out = *buf_ptr + sizeof(http_gzencode_header);
127 }
128
129 inline void http_init_deflate_buffer(z_stream *Z, const char *data, size_t data_len, char **buf_ptr)
130 {
131 Z->zalloc = Z_NULL;
132 Z->zfree = Z_NULL;
133 Z->opaque = Z_NULL;
134
135 Z->data_type = Z_UNKNOWN;
136 Z->next_in = (Bytef *) data;
137 Z->avail_in = data_len;
138 Z->avail_out = HTTP_GZBUFLEN(data_len) - 1;
139 Z->next_out = emalloc(HTTP_GZBUFLEN(data_len));
140
141 *buf_ptr = Z->next_out;
142 }
143
144 inline void http_init_inflate_buffer(z_stream *Z, const char *data, size_t data_len, char **buf_ptr, size_t *buf_len, int iteration)
145 {
146 Z->zalloc = Z_NULL;
147 Z->zfree = Z_NULL;
148
149 if (!iteration) {
150 *buf_len = data_len * 2;
151 *buf_ptr = emalloc(*buf_len + 1);
152 } else {
153 *buf_len <<= 2;
154 *buf_ptr = erealloc(*buf_ptr, *buf_len + 1);
155 }
156
157 Z->next_in = (Bytef *) data;
158 Z->avail_in = data_len;
159 Z->avail_out = *buf_len;
160 Z->next_out = *buf_ptr;
161 }
162
163 inline size_t http_finish_buffer(size_t buf_len, char **buf_ptr)
164 {
165 (*buf_ptr)[buf_len] = '\0';
166 return buf_len;
167 }
168
169 inline size_t http_finish_gzencode_buffer(z_stream *Z, const char *data, size_t data_len, char **buf_ptr)
170 {
171 unsigned long crc;
172 char *trailer;
173
174 crc = crc32(0L, Z_NULL, 0);
175 crc = crc32(crc, (const Bytef *) data, data_len);
176
177 trailer = *buf_ptr + sizeof(http_gzencode_header) + Z->total_out;
178
179 /* LSB */
180 trailer[0] = (char) (crc & 0xFF);
181 trailer[1] = (char) ((crc >> 8) & 0xFF);
182 trailer[2] = (char) ((crc >> 16) & 0xFF);
183 trailer[3] = (char) ((crc >> 24) & 0xFF);
184 trailer[4] = (char) ((Z->total_in) & 0xFF);
185 trailer[5] = (char) ((Z->total_in >> 8) & 0xFF);
186 trailer[6] = (char) ((Z->total_in >> 16) & 0xFF);
187 trailer[7] = (char) ((Z->total_in >> 24) & 0xFF);
188
189 return http_finish_buffer(Z->total_out + sizeof(http_gzencode_header) + 8, buf_ptr);
190 }
191
192
193 PHP_HTTP_API STATUS _http_encoding_gzencode(int level, const char *data, size_t data_len, char **encoded, size_t *encoded_len TSRMLS_DC)
194 {
195 z_stream Z;
196 STATUS status = Z_OK;
197
198 http_init_gzencode_buffer(&Z, data, data_len, encoded);
199
200 if ( (Z_OK == (status = deflateInit2(&Z, level, Z_DEFLATED, -MAX_WBITS, MAX_MEM_LEVEL, Z_DEFAULT_STRATEGY))) &&
201 (Z_STREAM_END == (status = deflate(&Z, Z_FINISH))) &&
202 (Z_OK == (status = deflateEnd(&Z)))) {
203 *encoded_len = http_finish_gzencode_buffer(&Z, data, data_len, encoded);
204 return SUCCESS;
205 }
206
207 efree(*encoded);
208 http_error_ex(HE_WARNING, HTTP_E_ENCODING, "Could not gzencode data: %s", zError(status));
209 return FAILURE;
210 }
211
212 PHP_HTTP_API STATUS _http_encoding_deflate(int level, const char *data, size_t data_len, char **encoded, size_t *encoded_len TSRMLS_DC)
213 {
214 z_stream Z;
215 STATUS status = Z_OK;
216
217 http_init_deflate_buffer(&Z, data, data_len, encoded);
218
219 if ( (Z_OK == (status = deflateInit2(&Z, level, Z_DEFLATED, -MAX_WBITS, MAX_MEM_LEVEL, Z_DEFAULT_STRATEGY))) &&
220 (Z_STREAM_END == (status = deflate(&Z, Z_FINISH))) &&
221 (Z_OK == (status = deflateEnd(&Z)))) {
222 *encoded_len = http_finish_buffer(Z.total_out, encoded);
223 return SUCCESS;
224 }
225
226 efree(encoded);
227 http_error_ex(HE_WARNING, HTTP_E_ENCODING, "Could not deflate data: %s", zError(status));
228 return FAILURE;
229 }
230
231 PHP_HTTP_API STATUS _http_encoding_compress(int level, const char *data, size_t data_len, char **encoded, size_t *encoded_len TSRMLS_DC)
232 {
233 STATUS status;
234
235 *encoded = emalloc(*encoded_len = HTTP_GZBUFLEN(data_len));
236
237 if (Z_OK == (status = compress2(*encoded, encoded_len, data, data_len, level))) {
238 http_finish_buffer(*encoded_len, encoded);
239 return SUCCESS;
240 }
241
242 efree(encoded);
243 http_error_ex(HE_WARNING, HTTP_E_ENCODING, "Could not compress data: %s", zError(status));
244 return FAILURE;
245 }
246
247 PHP_HTTP_API STATUS _http_encoding_gzdecode(const char *data, size_t data_len, char **decoded, size_t *decoded_len TSRMLS_DC)
248 {
249 const char *encoded = data + sizeof(http_gzencode_header);
250 size_t encoded_len;
251
252 if (data_len <= sizeof(http_gzencode_header) + 8) {
253 http_error(HE_WARNING, HTTP_E_ENCODING, "Could not gzdecode data: too short data length");
254 } else {
255 encoded_len = data_len - sizeof(http_gzencode_header) - 8;
256
257 if (SUCCESS == http_encoding_inflate(encoded, encoded_len, decoded, decoded_len)) {
258 unsigned long len = 0, cmp = 0, crc = crc32(0L, Z_NULL, 0);
259
260 crc = crc32(crc, (const Bytef *) *decoded, *decoded_len);
261
262 cmp = (unsigned) ((data[data_len-8] & 0xFF));
263 cmp += (unsigned) ((data[data_len-7] & 0xFF) << 8);
264 cmp += (unsigned) ((data[data_len-6] & 0xFF) << 16);
265 cmp += (unsigned) ((data[data_len-5] & 0xFF) << 24);
266 len = (unsigned) ((data[data_len-4] & 0xFF));
267 len += (unsigned) ((data[data_len-3] & 0xFF) << 8);
268 len += (unsigned) ((data[data_len-2] & 0xFF) << 16);
269 len += (unsigned) ((data[data_len-1] & 0xFF) << 24);
270
271 if (cmp != crc) {
272 http_error_ex(HE_NOTICE, HTTP_E_ENCODING, "Could not verify data integrity: CRC checksums do not match (%lu, %lu)", cmp, crc);
273 }
274 if (len != *decoded_len) {
275 http_error_ex(HE_NOTICE, HTTP_E_ENCODING, "Could not verify data integrity: data sizes do not match (%lu, %lu)", len, *decoded_len);
276 }
277
278 return SUCCESS;
279 }
280 }
281 return FAILURE;
282 }
283
284 PHP_HTTP_API STATUS _http_encoding_inflate(const char *data, size_t data_len, char **decoded, size_t *decoded_len TSRMLS_DC)
285 {
286 int max = 0;
287 STATUS status;
288 z_stream Z;
289
290 do {
291 http_init_inflate_buffer(&Z, data, data_len, decoded, decoded_len, max++);
292 if (Z_OK == (status = inflateInit2(&Z, -MAX_WBITS))) {
293 if (Z_STREAM_END == (status = inflate(&Z, Z_FINISH))) {
294 if (Z_OK == (status = inflateEnd(&Z))) {
295 *decoded_len = http_finish_buffer(Z.total_out, decoded);
296 return SUCCESS;
297 }
298 }
299 }
300 } while (max < HTTP_GZMAXTRY);
301
302 http_error_ex(HE_WARNING, HTTP_E_ENCODING, "Could not inflate data: %s", zError(status));
303 return FAILURE;
304 }
305
306 PHP_HTTP_API STATUS _http_encoding_uncompress(const char *data, size_t data_len, char **decoded, size_t *decoded_len TSRMLS_DC)
307 {
308 int max = 0;
309 STATUS status;
310 size_t want = data_len * 2;
311
312 *decoded = emalloc(want + 1);
313 if (Z_BUF_ERROR == (status = uncompress(*decoded, &want, data, data_len))) do {
314 /* this is a lot faster with large data than gzuncompress(),
315 but could be a problem with a low memory limit */
316 want <<= 2;
317 *decoded = erealloc(*decoded, want + 1);
318 status = uncompress(*decoded, &want, data, data_len);
319 } while (++max < HTTP_GZMAXTRY && status == Z_BUF_ERROR);
320
321 if (Z_OK == status) {
322 *decoded_len = http_finish_buffer(want, decoded);
323 return SUCCESS;
324 }
325
326 efree(*decoded);
327 http_error_ex(HE_WARNING, HTTP_E_ENCODING, "Could not uncompress data: %s", zError(status));
328 return FAILURE;
329 }
330
331 #endif /* HTTP_HAVE_ZLIB */
332
333 /*
334 * Local variables:
335 * tab-width: 4
336 * c-basic-offset: 4
337 * End:
338 * vim600: noet sw=4 ts=4 fdm=marker
339 * vim<600: noet sw=4 ts=4
340 */
341