oops, typos causing mem-corruption
[m6w6/ext-http] / http_headers_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
22 #include <ctype.h>
23
24 #include "php.h"
25 #include "ext/standard/php_string.h"
26 #include "ext/standard/url.h"
27
28 #include "php_http.h"
29 #include "php_http_std_defs.h"
30 #include "php_http_api.h"
31 #include "php_http_headers_api.h"
32
33 /* {{{ static int http_sort_q(const void *, const void *) */
34 static int http_sort_q(const void *a, const void *b TSRMLS_DC)
35 {
36 Bucket *f, *s;
37 zval result, *first, *second;
38
39 f = *((Bucket **) a);
40 s = *((Bucket **) b);
41
42 first = *((zval **) f->pData);
43 second= *((zval **) s->pData);
44
45 if (numeric_compare_function(&result, first, second TSRMLS_CC) != SUCCESS) {
46 return 0;
47 }
48 return (Z_LVAL(result) > 0 ? -1 : (Z_LVAL(result) < 0 ? 1 : 0));
49 }
50 /* }}} */
51
52 /* {{{ char *http_negotiate_q(char *, HashTable *, char *) */
53 PHP_HTTP_API char *_http_negotiate_q(const char *entry, const HashTable *supported, const char *def TSRMLS_DC)
54 {
55 zval *zaccept, zdelim, zarray, zentries, **zentry, **zsupp;
56 char *q_ptr = NULL, *key = NULL;
57 int i = 0;
58 ulong idx = 0;
59 double qual;
60
61 HTTP_GSC(zaccept, entry, estrdup(def));
62
63 array_init(&zarray);
64 array_init(&zentries);
65
66 Z_STRVAL(zdelim) = ",";
67 Z_STRLEN(zdelim) = 1;
68
69 php_explode(&zdelim, zaccept, &zarray, -1);
70
71 FOREACH_HASH_VAL(Z_ARRVAL(zarray), zentry) {
72 if (q_ptr = strrchr(Z_STRVAL_PP(zentry), ';')) {
73 qual = strtod(q_ptr + 3, NULL);
74 *q_ptr = 0;
75 q_ptr = NULL;
76 } else {
77 qual = 1000.0 - i++;
78 }
79 FOREACH_HASH_VAL((HashTable *)supported, zsupp) {
80 if (!strcasecmp(Z_STRVAL_PP(zsupp), Z_STRVAL_PP(zentry))) {
81 add_assoc_double(&zentries, Z_STRVAL_PP(zsupp), qual);
82 break;
83 }
84 }
85 }
86 zval_dtor(&zarray);
87
88 zend_hash_sort(Z_ARRVAL(zentries), zend_qsort, http_sort_q, 0 TSRMLS_CC);
89
90 FOREACH_HASH_KEY(Z_ARRVAL(zentries), key, idx) {
91 if (key) {
92 key = estrdup(key);
93 zval_dtor(&zentries);
94 return key;
95 }
96 }
97 zval_dtor(&zentries);
98
99 return estrdup(def);
100 }
101 /* }}} */
102
103 /* {{{ http_range_status http_get_request_ranges(HashTable *ranges, size_t) */
104 PHP_HTTP_API http_range_status _http_get_request_ranges(HashTable *ranges, size_t length TSRMLS_DC)
105 {
106 zval *zrange;
107 char *range, c;
108 long begin = -1, end = -1, *ptr;
109
110 HTTP_GSC(zrange, "HTTP_RANGE", RANGE_NO);
111 range = Z_STRVAL_P(zrange);
112
113 if (strncmp(range, "bytes=", sizeof("bytes=") - 1)) {
114 php_error_docref(NULL TSRMLS_CC, E_NOTICE, "Range header misses bytes=");
115 return RANGE_NO;
116 }
117
118 ptr = &begin;
119 range += sizeof("bytes=") - 1;
120
121 do {
122 switch (c = *(range++))
123 {
124 case '0':
125 *ptr *= 10;
126 break;
127
128 case '1': case '2': case '3':
129 case '4': case '5': case '6':
130 case '7': case '8': case '9':
131 /*
132 * If the value of the pointer is already set (non-negative)
133 * then multiply its value by ten and add the current value,
134 * else initialise the pointers value with the current value
135 * --
136 * This let us recognize empty fields when validating the
137 * ranges, i.e. a "-10" for begin and "12345" for the end
138 * was the following range request: "Range: bytes=0-12345";
139 * While a "-1" for begin and "12345" for the end would
140 * have been: "Range: bytes=-12345".
141 */
142 if (*ptr > 0) {
143 *ptr *= 10;
144 *ptr += c - '0';
145 } else {
146 *ptr = c - '0';
147 }
148 break;
149
150 case '-':
151 ptr = &end;
152 break;
153
154 case ' ':
155 /* IE - ignore for now */
156 break;
157
158 case 0:
159 case ',':
160
161 if (length) {
162 /* validate ranges */
163 switch (begin)
164 {
165 /* "0-12345" */
166 case -10:
167 /* "0-" */
168 if (end == -1) {
169 return RANGE_NO;
170 }
171 /* "0-0" or overflow */
172 if (end == -10 || length <= end) {
173 return RANGE_ERR;
174 }
175 begin = 0;
176 break;
177
178 /* "-12345" */
179 case -1:
180 /* "-", "-0" or overflow */
181 if (end == -1 || end == -10 || length <= end) {
182 return RANGE_ERR;
183 }
184 begin = length - end;
185 end = length - 1;
186 break;
187
188 /* "12345-(xxx)" */
189 default:
190 switch (end)
191 {
192 /* "12345-0" */
193 case -10:
194 return RANGE_ERR;
195 break;
196
197 /* "12345-" */
198 case -1:
199 if (length <= begin) {
200 return RANGE_ERR;
201 }
202 end = length - 1;
203 break;
204
205 /* "12345-67890" */
206 default:
207 if ( (length <= begin) ||
208 (length <= end) ||
209 (end < begin)) {
210 return RANGE_ERR;
211 }
212 break;
213 }
214 break;
215 }
216 }
217 {
218 zval *zentry;
219 MAKE_STD_ZVAL(zentry);
220 array_init(zentry);
221 add_index_long(zentry, 0, begin);
222 add_index_long(zentry, 1, end);
223 zend_hash_next_index_insert(ranges, &zentry, sizeof(zval *), NULL);
224
225 begin = -1;
226 end = -1;
227 ptr = &begin;
228 }
229 break;
230
231 default:
232 return RANGE_NO;
233 break;
234 }
235 } while (c != 0);
236
237 return RANGE_OK;
238 }
239 /* }}} */
240
241 /* {{{ STATUS http_parse_headers(char *, size_t, HashTable *, zend_bool) */
242 PHP_HTTP_API STATUS _http_parse_headers_ex(char *header, size_t header_len,
243 HashTable *headers, zend_bool prettify,
244 http_parse_headers_callback_t func, void **callback_data TSRMLS_DC)
245 {
246 char *colon = NULL, *line = NULL, *begin = header;
247 zval array;
248
249 Z_ARRVAL(array) = headers;
250
251 if (header_len < 2) {
252 return FAILURE;
253 }
254
255 line = header;
256
257 while (header_len >= (line - begin)) {
258 int value_len = 0;
259
260 switch (*line++)
261 {
262 case 0:
263 --value_len; /* we don't have CR so value length is one char less */
264 case '\n':
265 if ((!(*line - 1)) || ((*line != ' ') && (*line != '\t'))) {
266 /* response/request line */
267 if ( (!strncmp(header, "HTTP/1.", lenof("HTTP/1."))) ||
268 (!strncmp(line - lenof("HTTP/1.x\r") + value_len, "HTTP/1.", lenof("HTTP/1.")))) {
269 if (func) {
270 func(callback_data, header, line - header + value_len, &headers TSRMLS_CC);
271 Z_ARRVAL(array) = headers;
272 }
273 } else
274
275 /* "header: value" pair */
276 if (colon) {
277
278 /* skip empty key */
279 if (header != colon) {
280 zval **previous = NULL;
281 char *value = empty_string;
282 int keylen = colon - header;
283 char *key = estrndup(header, keylen);
284
285 if (prettify) {
286 key = pretty_key(key, keylen, 1, 1);
287 }
288
289 value_len += line - colon - 1;
290
291 /* skip leading ws */
292 while (isspace(*(++colon))) --value_len;
293 /* skip trailing ws */
294 while (isspace(colon[value_len - 1])) --value_len;
295
296 if (value_len > 0) {
297 value = estrndup(colon, value_len);
298 } else {
299 value_len = 0;
300 }
301
302 /* if we already have got such a header make an array of those */
303 if (SUCCESS == zend_hash_find(headers, key, keylen + 1, (void **) &previous)) {
304 /* already an array? - just add */
305 if (Z_TYPE_PP(previous) == IS_ARRAY) {
306 add_next_index_stringl(*previous, value, value_len, 0);
307 } else {
308 /* create the array */
309 zval *new_array;
310 MAKE_STD_ZVAL(new_array);
311 array_init(new_array);
312
313 add_next_index_stringl(new_array, Z_STRVAL_PP(previous), Z_STRLEN_PP(previous), 1);
314 add_next_index_stringl(new_array, value, value_len, 0);
315 add_assoc_zval(&array, key, new_array);
316 }
317
318 previous = NULL;
319 } else {
320 add_assoc_stringl(&array, key, value, value_len, 0);
321 }
322 efree(key);
323 }
324 }
325 colon = NULL;
326 value_len = 0;
327 header += line - header;
328 }
329 break;
330
331 case ':':
332 if (!colon) {
333 colon = line - 1;
334 }
335 break;
336 }
337 }
338 return SUCCESS;
339 }
340 /* }}} */
341
342 PHP_HTTP_API void _http_parse_headers_default_callback(void **cb_data, char *http_line, size_t line_length, HashTable **headers TSRMLS_DC)
343 {
344 zval array;
345 Z_ARRVAL(array) = *headers;
346
347 /* response */
348 if (!strncmp(http_line, "HTTP/1.", lenof("HTTP/1."))) {
349 add_assoc_stringl(&array, "Response Status", http_line + lenof("HTTP/1.x "), line_length - lenof("HTTP/1.x \r\n"), 1);
350 } else
351 /* request */
352 if (!strncmp(http_line + line_length - lenof("HTTP/1.x\r\n"), "HTTP/1.", lenof("HTTP/1."))) {
353 char *sep = strchr(http_line, ' ');
354
355 add_assoc_stringl(&array, "Request Method", http_line, sep - http_line, 1);
356 add_assoc_stringl(&array, "Request Uri", sep + 1, strstr(sep, "HTTP/1.") - sep + 1 + 1, 1);
357 }
358 }
359
360 /* {{{ */
361 PHP_HTTP_API STATUS _http_parse_cookie(const char *cookie, HashTable *values TSRMLS_DC)
362 {
363 const char *key = cookie, *val = NULL;
364 int vallen = 0, keylen = 0, done = 0;
365 zval array;
366
367 Z_ARRVAL(array) = values;
368
369 if (!(val = strchr(cookie, '='))) {
370 return FAILURE;
371 }
372
373 #define HTTP_COOKIE_VAL(array, k, str, len) \
374 { \
375 const char *encoded = str; \
376 char *decoded = NULL; \
377 int decoded_len = 0, encoded_len = len; \
378 decoded = estrndup(encoded, encoded_len); \
379 decoded_len = php_url_decode(decoded, encoded_len); \
380 add_assoc_stringl(array, k, decoded, decoded_len, 0); \
381 }
382 #define HTTP_COOKIE_FIXKEY() \
383 { \
384 while (isspace(*key)) ++key; \
385 keylen = val - key; \
386 while (isspace(key[keylen - 1])) --keylen; \
387 }
388 #define HTTP_COOKIE_FIXVAL() \
389 { \
390 ++val; \
391 while (isspace(*val)) ++val; \
392 vallen = key - val; \
393 while (isspace(val[vallen - 1])) --vallen; \
394 }
395
396 HTTP_COOKIE_FIXKEY();
397 HTTP_COOKIE_VAL(&array, "name", key, keylen);
398
399 /* just a name=value cookie */
400 if (!(key = strchr(val, ';'))) {
401 key = val + strlen(val);
402 HTTP_COOKIE_FIXVAL();
403 HTTP_COOKIE_VAL(&array, "value", val, vallen);
404 }
405 /* additional info appended */
406 else {
407 char *keydup = NULL;
408
409 HTTP_COOKIE_FIXVAL();
410 HTTP_COOKIE_VAL(&array, "value", val, vallen);
411
412 do {
413 if (!(val = strchr(key, '='))) {
414 break;
415 }
416 ++key;
417 HTTP_COOKIE_FIXKEY();
418 keydup = estrndup(key, keylen);
419 if (!(key = strchr(val, ';'))) {
420 done = 1;
421 key = val + strlen(val);
422 }
423 HTTP_COOKIE_FIXVAL();
424 HTTP_COOKIE_VAL(&array, keydup, val, vallen);
425 efree(keydup);
426 } while (!done);
427 }
428 return SUCCESS;
429 }
430 /* }}} */
431
432 /* {{{ void http_get_request_headers_ex(HashTable *, zend_bool) */
433 PHP_HTTP_API void _http_get_request_headers_ex(HashTable *headers, zend_bool prettify TSRMLS_DC)
434 {
435 char *key = NULL;
436 long idx = 0;
437 zval array;
438
439 Z_ARRVAL(array) = headers;
440
441 FOREACH_HASH_KEY(HTTP_SERVER_VARS, key, idx) {
442 if (key && !strncmp(key, "HTTP_", 5)) {
443 zval **header;
444
445 key += 5;
446 if (prettify) {
447 key = pretty_key(key, strlen(key), 1, 1);
448 }
449
450 zend_hash_get_current_data(HTTP_SERVER_VARS, (void **) &header);
451 add_assoc_stringl(&array, key, Z_STRVAL_PP(header), Z_STRLEN_PP(header), 1);
452 key = NULL;
453 }
454 }
455 }
456 /* }}} */
457
458
459 /*
460 * Local variables:
461 * tab-width: 4
462 * c-basic-offset: 4
463 * End:
464 * vim600: noet sw=4 ts=4 fdm=marker
465 * vim<600: noet sw=4 ts=4
466 */
467