- typo
[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(const char *header, size_t header_len,
243 HashTable *headers, zend_bool prettify TSRMLS_DC)
244 {
245 const char *colon = NULL, *line = NULL, *begin = header;
246 zval array;
247
248 Z_ARRVAL(array) = headers;
249
250 if (header_len < 2) {
251 return FAILURE;
252 }
253
254 /* status code */
255 if (!strncmp(header, "HTTP/1.", 7)) {
256 char *end = strstr(header, HTTP_CRLF);
257 size_t len = end - (header + lenof("HTTP/1.x "));
258 char *val = estrndup(header + lenof("HTTP/1.x "), len);
259
260 add_assoc_stringl(&array, "Status", val, len, 0);
261 header = end + 2;
262 }
263
264 line = header;
265
266 while (header_len >= (line - begin)) {
267 int value_len = 0;
268
269 switch (*line++)
270 {
271 case 0:
272 --value_len; /* we don't have CR so value length is one char less */
273 case '\n':
274 if (colon && ((!(*line - 1)) || ((*line != ' ') && (*line != '\t')))) {
275
276 /* skip empty key */
277 if (header != colon) {
278 zval **previous = NULL;
279 char *value = empty_string;
280 int keylen = colon - header;
281 char *key = estrndup(header, keylen);
282
283 if (prettify) {
284 key = pretty_key(key, keylen, 1, 1);
285 }
286
287 value_len += line - colon - 1;
288
289 /* skip leading ws */
290 while (isspace(*(++colon))) --value_len;
291 /* skip trailing ws */
292 while (isspace(colon[value_len - 1])) --value_len;
293
294 if (value_len > 0) {
295 value = estrndup(colon, value_len);
296 } else {
297 value_len = 0;
298 }
299
300 /* if we already have got such a header make an array of those */
301 if (SUCCESS == zend_hash_find(headers, key, keylen + 1, (void **) &previous)) {
302 /* already an array? - just add */
303 if (Z_TYPE_PP(previous) == IS_ARRAY) {
304 add_next_index_stringl(*previous, value, value_len, 0);
305 } else {
306 /* create the array */
307 zval *new_array;
308 MAKE_STD_ZVAL(new_array);
309 array_init(new_array);
310
311 add_next_index_stringl(new_array, Z_STRVAL_PP(previous), Z_STRLEN_PP(previous), 1);
312 add_next_index_stringl(new_array, value, value_len, 0);
313 add_assoc_zval(&array, key, new_array);
314 }
315
316 previous = NULL;
317 } else {
318 add_assoc_stringl(&array, key, value, value_len, 0);
319 }
320 efree(key);
321 }
322
323 colon = NULL;
324 value_len = 0;
325 header += line - header;
326 }
327 break;
328
329 case ':':
330 if (!colon) {
331 colon = line - 1;
332 }
333 break;
334 }
335 }
336 return SUCCESS;
337 }
338 /* }}} */
339
340 /* {{{ */
341 PHP_HTTP_API STATUS _http_parse_cookie(const char *cookie, HashTable *values TSRMLS_DC)
342 {
343 const char *key = cookie, *val = NULL;
344 int vallen = 0, keylen = 0, done = 0;
345 zval array;
346
347 Z_ARRVAL(array) = values;
348
349 if (!(val = strchr(cookie, '='))) {
350 return FAILURE;
351 }
352
353 #define HTTP_COOKIE_VAL(array, k, str, len) \
354 { \
355 const char *encoded = str; \
356 char *decoded = NULL; \
357 int decoded_len = 0, encoded_len = len; \
358 decoded = estrndup(encoded, encoded_len); \
359 decoded_len = php_url_decode(decoded, encoded_len); \
360 add_assoc_stringl(array, k, decoded, decoded_len, 0); \
361 }
362 #define HTTP_COOKIE_FIXKEY() \
363 { \
364 while (isspace(*key)) ++key; \
365 keylen = val - key; \
366 while (isspace(key[keylen - 1])) --keylen; \
367 }
368 #define HTTP_COOKIE_FIXVAL() \
369 { \
370 ++val; \
371 while (isspace(*val)) ++val; \
372 vallen = key - val; \
373 while (isspace(val[vallen - 1])) --vallen; \
374 }
375
376 HTTP_COOKIE_FIXKEY();
377 HTTP_COOKIE_VAL(&array, "name", key, keylen);
378
379 /* just a name=value cookie */
380 if (!(key = strchr(val, ';'))) {
381 key = val + strlen(val);
382 HTTP_COOKIE_FIXVAL();
383 HTTP_COOKIE_VAL(&array, "value", val, vallen);
384 }
385 /* additional info appended */
386 else {
387 char *keydup = NULL;
388
389 HTTP_COOKIE_FIXVAL();
390 HTTP_COOKIE_VAL(&array, "value", val, vallen);
391
392 do {
393 if (!(val = strchr(key, '='))) {
394 break;
395 }
396 ++key;
397 HTTP_COOKIE_FIXKEY();
398 keydup = estrndup(key, keylen);
399 if (!(key = strchr(val, ';'))) {
400 done = 1;
401 key = val + strlen(val);
402 }
403 HTTP_COOKIE_FIXVAL();
404 HTTP_COOKIE_VAL(&array, keydup, val, vallen);
405 efree(keydup);
406 } while (!done);
407 }
408 return SUCCESS;
409 }
410 /* }}} */
411
412 /* {{{ void http_get_request_headers_ex(HashTable *, zend_bool) */
413 PHP_HTTP_API void _http_get_request_headers_ex(HashTable *headers, zend_bool prettify TSRMLS_DC)
414 {
415 char *key = NULL;
416 long idx = 0;
417 zval array;
418
419 Z_ARRVAL(array) = headers;
420
421 FOREACH_HASH_KEY(HTTP_SERVER_VARS, key, idx) {
422 if (key && !strncmp(key, "HTTP_", 5)) {
423 zval **header;
424
425 key += 5;
426 if (prettify) {
427 key = pretty_key(key, strlen(key), 1, 1);
428 }
429
430 zend_hash_get_current_data(HTTP_SERVER_VARS, (void **) &header);
431 add_assoc_stringl(&array, key, Z_STRVAL_PP(header), Z_STRLEN_PP(header), 1);
432 key = NULL;
433 }
434 }
435 }
436 /* }}} */
437
438
439 /*
440 * Local variables:
441 * tab-width: 4
442 * c-basic-offset: 4
443 * End:
444 * vim600: noet sw=4 ts=4 fdm=marker
445 * vim<600: noet sw=4 ts=4
446 */
447