* -dev version
[m6w6/ext-http] / http_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 #define ZEND_INCLUDE_FULL_WINDOWS_HEADERS
19
20 #ifdef HAVE_CONFIG_H
21 # include "config.h"
22 #endif
23
24 #include <ctype.h>
25
26 #include "php.h"
27 #include "php_version.h"
28 #include "php_streams.h"
29 #include "snprintf.h"
30 #include "ext/standard/md5.h"
31 #include "ext/standard/url.h"
32 #include "ext/standard/base64.h"
33 #include "ext/standard/php_string.h"
34 #include "ext/standard/php_smart_str.h"
35 #include "ext/standard/php_lcg.h"
36
37 #include "SAPI.h"
38
39 #ifdef ZEND_ENGINE_2
40 # include "ext/standard/php_http.h"
41 #else
42 #include "http_build_query.c"
43 #endif
44
45 #include "php_http.h"
46 #include "php_http_api.h"
47
48 #ifdef HTTP_HAVE_CURL
49
50 # ifdef PHP_WIN32
51 # include <winsock2.h>
52 # include <sys/types.h>
53 # endif
54
55 # include <curl/curl.h>
56 # include <curl/easy.h>
57
58 #endif
59
60
61 ZEND_DECLARE_MODULE_GLOBALS(http)
62
63 /* {{{ day/month names */
64 static const char *days[] = {
65 "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
66 };
67 static const char *wkdays[] = {
68 "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"
69 };
70 static const char *weekdays[] = {
71 "Monday", "Tuesday", "Wednesday",
72 "Thursday", "Friday", "Saturday", "Sunday"
73 };
74 static const char *months[] = {
75 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
76 "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"
77 };
78 enum assume_next {
79 DATE_MDAY,
80 DATE_YEAR,
81 DATE_TIME
82 };
83 static const struct time_zone {
84 const char *name;
85 const int offset;
86 } time_zones[] = {
87 {"GMT", 0}, /* Greenwich Mean */
88 {"UTC", 0}, /* Universal (Coordinated) */
89 {"WET", 0}, /* Western European */
90 {"BST", 0}, /* British Summer */
91 {"WAT", 60}, /* West Africa */
92 {"AST", 240}, /* Atlantic Standard */
93 {"ADT", 240}, /* Atlantic Daylight */
94 {"EST", 300}, /* Eastern Standard */
95 {"EDT", 300}, /* Eastern Daylight */
96 {"CST", 360}, /* Central Standard */
97 {"CDT", 360}, /* Central Daylight */
98 {"MST", 420}, /* Mountain Standard */
99 {"MDT", 420}, /* Mountain Daylight */
100 {"PST", 480}, /* Pacific Standard */
101 {"PDT", 480}, /* Pacific Daylight */
102 {"YST", 540}, /* Yukon Standard */
103 {"YDT", 540}, /* Yukon Daylight */
104 {"HST", 600}, /* Hawaii Standard */
105 {"HDT", 600}, /* Hawaii Daylight */
106 {"CAT", 600}, /* Central Alaska */
107 {"AHST", 600}, /* Alaska-Hawaii Standard */
108 {"NT", 660}, /* Nome */
109 {"IDLW", 720}, /* International Date Line West */
110 {"CET", -60}, /* Central European */
111 {"MET", -60}, /* Middle European */
112 {"MEWT", -60}, /* Middle European Winter */
113 {"MEST", -120}, /* Middle European Summer */
114 {"CEST", -120}, /* Central European Summer */
115 {"MESZ", -60}, /* Middle European Summer */
116 {"FWT", -60}, /* French Winter */
117 {"FST", -60}, /* French Summer */
118 {"EET", -120}, /* Eastern Europe, USSR Zone 1 */
119 {"WAST", -420}, /* West Australian Standard */
120 {"WADT", -420}, /* West Australian Daylight */
121 {"CCT", -480}, /* China Coast, USSR Zone 7 */
122 {"JST", -540}, /* Japan Standard, USSR Zone 8 */
123 {"EAST", -600}, /* Eastern Australian Standard */
124 {"EADT", -600}, /* Eastern Australian Daylight */
125 {"GST", -600}, /* Guam Standard, USSR Zone 9 */
126 {"NZT", -720}, /* New Zealand */
127 {"NZST", -720}, /* New Zealand Standard */
128 {"NZDT", -720}, /* New Zealand Daylight */
129 {"IDLE", -720}, /* International Date Line East */
130 };
131 /* }}} */
132
133 /* {{{ internals */
134
135 static int http_sort_q(const void *a, const void *b TSRMLS_DC);
136 #define http_etag(e, p, l, m) _http_etag((e), (p), (l), (m) TSRMLS_CC)
137 static inline char *_http_etag(char **new_etag, const void *data_ptr, const size_t data_len, const http_send_mode data_mode TSRMLS_DC);
138 #define http_is_range_request() _http_is_range_request(TSRMLS_C)
139 static inline int _http_is_range_request(TSRMLS_D);
140 #define http_send_chunk(d, b, e, m) _http_send_chunk((d), (b), (e), (m) TSRMLS_CC)
141 static STATUS _http_send_chunk(const void *data, const size_t begin, const size_t end, const http_send_mode mode TSRMLS_DC);
142
143 static int check_day(char *day, size_t len);
144 static int check_month(char *month);
145 static int check_tzone(char *tzone);
146
147 static char *pretty_key(char *key, int key_len, int uctitle, int xhyphen);
148
149 /* {{{ HAVE_CURL */
150 #ifdef HTTP_HAVE_CURL
151 #define http_curl_initbuf(m) _http_curl_initbuf((m) TSRMLS_CC)
152 static inline void _http_curl_initbuf(http_curlbuf_member member TSRMLS_DC);
153 #define http_curl_freebuf(m) _http_curl_freebuf((m) TSRMLS_CC)
154 static inline void _http_curl_freebuf(http_curlbuf_member member TSRMLS_DC);
155 #define http_curl_sizebuf(m, l) _http_curl_sizebuf((m), (l) TSRMLS_CC)
156 static inline void _http_curl_sizebuf(http_curlbuf_member member, size_t len TSRMLS_DC);
157 #define http_curl_movebuf(m, d, l) _http_curl_movebuf((m), (d), (l) TSRMLS_CC)
158 static inline void _http_curl_movebuf(http_curlbuf_member member, char **data, size_t *data_len TSRMLS_DC);
159 #define http_curl_copybuf(m, d, l) _http_curl_copybuf((m), (d), (l) TSRMLS_CC)
160 static inline void _http_curl_copybuf(http_curlbuf_member member, char **data, size_t *data_len TSRMLS_DC);
161 #define http_curl_setopts(c, u, o) _http_curl_setopts((c), (u), (o) TSRMLS_CC)
162 static inline void _http_curl_setopts(CURL *ch, const char *url, HashTable *options TSRMLS_DC);
163
164 #define http_curl_getopt(o, k) _http_curl_getopt((o), (k) TSRMLS_CC, 0)
165 #define http_curl_getopt1(o, k, t1) _http_curl_getopt((o), (k) TSRMLS_CC, 1, (t1))
166 #define http_curl_getopt2(o, k, t1, t2) _http_curl_getopt((o), (k) TSRMLS_CC, 2, (t1), (t2))
167 static inline zval *_http_curl_getopt(HashTable *options, char *key TSRMLS_DC, int checks, ...);
168
169 static size_t http_curl_body_callback(char *, size_t, size_t, void *);
170 static size_t http_curl_hdrs_callback(char *, size_t, size_t, void *);
171
172 #define http_curl_getinfo(c, h) _http_curl_getinfo((c), (h) TSRMLS_CC)
173 static inline void _http_curl_getinfo(CURL *ch, HashTable *info TSRMLS_DC);
174 #define http_curl_getinfo_ex(c, i, a) _http_curl_getinfo_ex((c), (i), (a) TSRMLS_CC)
175 static inline void _http_curl_getinfo_ex(CURL *ch, CURLINFO i, zval *array TSRMLS_DC);
176 #define http_curl_getinfoname(i) _http_curl_getinfoname((i) TSRMLS_CC)
177 static inline char *_http_curl_getinfoname(CURLINFO i TSRMLS_DC);
178
179 #endif
180 /* }}} HAVE_CURL */
181
182 /* {{{ static int http_sort_q(const void *, const void *) */
183 static int http_sort_q(const void *a, const void *b TSRMLS_DC)
184 {
185 Bucket *f, *s;
186 zval result, *first, *second;
187
188 f = *((Bucket **) a);
189 s = *((Bucket **) b);
190
191 first = *((zval **) f->pData);
192 second= *((zval **) s->pData);
193
194 if (numeric_compare_function(&result, first, second TSRMLS_CC) != SUCCESS) {
195 return 0;
196 }
197 return (Z_LVAL(result) > 0 ? -1 : (Z_LVAL(result) < 0 ? 1 : 0));
198 }
199 /* }}} */
200
201 /* {{{ static inline char *http_etag(char **, void *, size_t, http_send_mode) */
202 static inline char *_http_etag(char **new_etag, const void *data_ptr,
203 const size_t data_len, const http_send_mode data_mode TSRMLS_DC)
204 {
205 char ssb_buf[127], digest[16];
206 PHP_MD5_CTX ctx;
207
208 PHP_MD5Init(&ctx);
209
210 switch (data_mode)
211 {
212 case SEND_DATA:
213 PHP_MD5Update(&ctx, data_ptr, data_len);
214 break;
215
216 case SEND_RSRC:
217 snprintf(ssb_buf, 127, "%l=%l=%l",
218 HTTP_G(ssb).sb.st_mtime,
219 HTTP_G(ssb).sb.st_ino,
220 HTTP_G(ssb).sb.st_size
221 );
222 PHP_MD5Update(&ctx, ssb_buf, strlen(ssb_buf));
223 break;
224
225 default:
226 return NULL;
227 break;
228 }
229
230 PHP_MD5Final(digest, &ctx);
231 make_digest(*new_etag, digest);
232
233 return *new_etag;
234 }
235 /* }}} */
236
237 /* {{{ static inline int http_is_range_request(void) */
238 static inline int _http_is_range_request(TSRMLS_D)
239 {
240 return zend_hash_exists(Z_ARRVAL_P(PG(http_globals)[TRACK_VARS_SERVER]),
241 "HTTP_RANGE", strlen("HTTP_RANGE") + 1);
242 }
243 /* }}} */
244
245 /* {{{ static STATUS http_send_chunk(const void *, size_t, size_t,
246 http_send_mode) */
247 static STATUS _http_send_chunk(const void *data, const size_t begin,
248 const size_t end, const http_send_mode mode TSRMLS_DC)
249 {
250 char *buf;
251 size_t read = 0;
252 long len = end - begin;
253 php_stream *s;
254
255 switch (mode)
256 {
257 case SEND_RSRC:
258 s = (php_stream *) data;
259 if (php_stream_seek(s, begin, SEEK_SET)) {
260 return FAILURE;
261 }
262 buf = (char *) ecalloc(1, HTTP_BUF_SIZE);
263 /* read into buf and write out */
264 while ((len -= HTTP_BUF_SIZE) >= 0) {
265 if (!(read = php_stream_read(s, buf, HTTP_BUF_SIZE))) {
266 efree(buf);
267 return FAILURE;
268 }
269 if (read - php_body_write(buf, read TSRMLS_CC)) {
270 efree(buf);
271 return FAILURE;
272 }
273 }
274
275 /* read & write left over */
276 if (len) {
277 if (read = php_stream_read(s, buf, HTTP_BUF_SIZE + len)) {
278 if (read - php_body_write(buf, read TSRMLS_CC)) {
279 efree(buf);
280 return FAILURE;
281 }
282 } else {
283 efree(buf);
284 return FAILURE;
285 }
286 }
287 efree(buf);
288 return SUCCESS;
289 break;
290
291 case SEND_DATA:
292 return len == php_body_write(
293 Z_STRVAL_P((zval *) data) + begin, len TSRMLS_CC)
294 ? SUCCESS : FAILURE;
295 break;
296
297 default:
298 return FAILURE;
299 break;
300 }
301 }
302 /* }}} */
303
304 /* {{{ HAVE_CURL */
305 #ifdef HTTP_HAVE_CURL
306
307 /* {{{ static inline void http_curl_initbuf(http_curlbuf_member) */
308 static inline void _http_curl_initbuf(http_curlbuf_member member TSRMLS_DC)
309 {
310 http_curl_freebuf(member);
311
312 if (member & CURLBUF_HDRS) {
313 HTTP_G(curlbuf).hdrs.data = emalloc(HTTP_CURLBUF_HDRSSIZE);
314 HTTP_G(curlbuf).hdrs.free = HTTP_CURLBUF_HDRSSIZE;
315 }
316 if (member & CURLBUF_BODY) {
317 HTTP_G(curlbuf).body.data = emalloc(HTTP_CURLBUF_BODYSIZE);
318 HTTP_G(curlbuf).body.free = HTTP_CURLBUF_BODYSIZE;
319 }
320 }
321 /* }}} */
322
323 /* {{{ static inline void http_curl_freebuf(http_curlbuf_member) */
324 static inline void _http_curl_freebuf(http_curlbuf_member member TSRMLS_DC)
325 {
326 if (member & CURLBUF_HDRS) {
327 if (HTTP_G(curlbuf).hdrs.data) {
328 efree(HTTP_G(curlbuf).hdrs.data);
329 HTTP_G(curlbuf).hdrs.data = NULL;
330 }
331 HTTP_G(curlbuf).hdrs.used = 0;
332 HTTP_G(curlbuf).hdrs.free = 0;
333 }
334 if (member & CURLBUF_BODY) {
335 if (HTTP_G(curlbuf).body.data) {
336 efree(HTTP_G(curlbuf).body.data);
337 HTTP_G(curlbuf).body.data = NULL;
338 }
339 HTTP_G(curlbuf).body.used = 0;
340 HTTP_G(curlbuf).body.free = 0;
341 }
342 }
343 /* }}} */
344
345 /* {{{ static inline void http_curl_copybuf(http_curlbuf_member, char **,
346 size_t *) */
347 static inline void _http_curl_copybuf(http_curlbuf_member member, char **data,
348 size_t *data_len TSRMLS_DC)
349 {
350 *data = NULL;
351 *data_len = 0;
352
353 if ((member & CURLBUF_HDRS) && HTTP_G(curlbuf).hdrs.used) {
354 if ((member & CURLBUF_BODY) && HTTP_G(curlbuf).body.used) {
355 *data = emalloc(HTTP_G(curlbuf).hdrs.used + HTTP_G(curlbuf).body.used + 1);
356 } else {
357 *data = emalloc(HTTP_G(curlbuf).hdrs.used + 1);
358 }
359 memcpy(*data, HTTP_G(curlbuf).hdrs.data, HTTP_G(curlbuf).hdrs.used);
360 *data_len = HTTP_G(curlbuf).hdrs.used;
361 }
362
363 if ((member & CURLBUF_BODY) && HTTP_G(curlbuf).body.used) {
364 if (*data) {
365 memcpy((*data) + HTTP_G(curlbuf).hdrs.used,
366 HTTP_G(curlbuf).body.data, HTTP_G(curlbuf).body.used);
367 *data_len = HTTP_G(curlbuf).hdrs.used + HTTP_G(curlbuf).body.used;
368 } else {
369 emalloc(HTTP_G(curlbuf).body.used + 1);
370 memcpy(*data, HTTP_G(curlbuf).body.data, HTTP_G(curlbuf).body.used);
371 *data_len = HTTP_G(curlbuf).body.used;
372 }
373 }
374 if (*data) {
375 (*data)[*data_len] = 0;
376 } else {
377 *data = "";
378 }
379 }
380 /* }}} */
381
382 /* {{{ static inline void http_curl_movebuf(http_curlbuf_member, char **,
383 size_t *) */
384 static inline void _http_curl_movebuf(http_curlbuf_member member, char **data,
385 size_t *data_len TSRMLS_DC)
386 {
387 http_curl_copybuf(member, data, data_len);
388 http_curl_freebuf(member);
389 }
390 /* }}} */
391
392 /* {{{ static size_t http_curl_body_callback(char *, size_t, size_t, void *) */
393 static size_t http_curl_body_callback(char *buf, size_t len, size_t n, void *s)
394 {
395 TSRMLS_FETCH();
396
397 if ((len *= n) > HTTP_G(curlbuf).body.free) {
398 size_t bsize = HTTP_CURLBUF_BODYSIZE;
399 while (bsize < len) {
400 bsize *= 2;
401 }
402 HTTP_G(curlbuf).body.data = erealloc(HTTP_G(curlbuf).body.data,
403 HTTP_G(curlbuf).body.used + bsize);
404 HTTP_G(curlbuf).body.free += bsize;
405 }
406
407 memcpy(HTTP_G(curlbuf).body.data + HTTP_G(curlbuf).body.used, buf, len);
408 HTTP_G(curlbuf).body.free -= len;
409 HTTP_G(curlbuf).body.used += len;
410
411 return len;
412 }
413 /* }}} */
414
415 /* {{{ static size_t http_curl_hdrs_callback(char*, size_t, size_t, void *) */
416 static size_t http_curl_hdrs_callback(char *buf, size_t len, size_t n, void *s)
417 {
418 TSRMLS_FETCH();
419
420 /* discard previous headers */
421 if ((HTTP_G(curlbuf).hdrs.used) && (!strncmp(buf, "HTTP/1.", strlen("HTTP/1.")))) {
422 http_curl_initbuf(CURLBUF_HDRS);
423 }
424
425 if ((len *= n) > HTTP_G(curlbuf).hdrs.free) {
426 size_t bsize = HTTP_CURLBUF_HDRSSIZE;
427 while (bsize < len) {
428 bsize *= 2;
429 }
430 HTTP_G(curlbuf).hdrs.data = erealloc(HTTP_G(curlbuf).hdrs.data,
431 HTTP_G(curlbuf).hdrs.used + bsize);
432 HTTP_G(curlbuf).hdrs.free += bsize;
433 }
434
435 memcpy(HTTP_G(curlbuf).hdrs.data + HTTP_G(curlbuf).hdrs.used, buf, len);
436 HTTP_G(curlbuf).hdrs.free -= len;
437 HTTP_G(curlbuf).hdrs.used += len;
438
439 return len;
440 }
441 /* }}} */
442
443 /* {{{ static inline zval *http_curl_getopt(HashTable *, char *, int, ...) */
444 static inline zval *_http_curl_getopt(HashTable *options, char *key TSRMLS_DC, int checks, ...)
445 {
446 zval **zoption;
447 va_list types;
448 int i;
449
450 if (SUCCESS != zend_hash_find(options, key, strlen(key) + 1, (void **) &zoption)) {
451 return NULL;
452 }
453 if (checks < 1) {
454 return *zoption;
455 }
456
457 va_start(types, checks);
458 for (i = 0; i < checks; ++i) {
459 if ((va_arg(types, int)) == (Z_TYPE_PP(zoption))) {
460 va_end(types);
461 return *zoption;
462 }
463 }
464 va_end(types);
465 return NULL;
466 }
467 /* }}} */
468
469 /* {{{ static inline void http_curl_setopts(CURL *, char *, HashTable *) */
470 static inline void _http_curl_setopts(CURL *ch, const char *url, HashTable *options TSRMLS_DC)
471 {
472 zval *zoption;
473
474 /* standard options */
475 curl_easy_setopt(ch, CURLOPT_URL, url);
476 curl_easy_setopt(ch, CURLOPT_HEADER, 0);
477 curl_easy_setopt(ch, CURLOPT_NOPROGRESS, 1);
478 curl_easy_setopt(ch, CURLOPT_AUTOREFERER, 1);
479 curl_easy_setopt(ch, CURLOPT_WRITEFUNCTION, http_curl_body_callback);
480 curl_easy_setopt(ch, CURLOPT_HEADERFUNCTION, http_curl_hdrs_callback);
481 #ifdef ZTS
482 curl_easy_setopt(ch, CURLOPT_NOSIGNAL, 1);
483 #endif
484
485 if ((!options) || (1 > zend_hash_num_elements(options))) {
486 return;
487 }
488
489 /* redirects, defaults to 0 */
490 if (zoption = http_curl_getopt1(options, "redirect", IS_LONG)) {
491 curl_easy_setopt(ch, CURLOPT_FOLLOWLOCATION, Z_LVAL_P(zoption) ? 1 : 0);
492 curl_easy_setopt(ch, CURLOPT_MAXREDIRS, Z_LVAL_P(zoption));
493 if (zoption = http_curl_getopt2(options, "unrestrictedauth", IS_LONG, IS_BOOL)) {
494 curl_easy_setopt(ch, CURLOPT_UNRESTRICTED_AUTH, Z_LVAL_P(zoption));
495 }
496 } else {
497 curl_easy_setopt(ch, CURLOPT_FOLLOWLOCATION, 0);
498 }
499
500 /* proxy */
501 if (zoption = http_curl_getopt1(options, "proxyhost", IS_STRING)) {
502 curl_easy_setopt(ch, CURLOPT_PROXY, Z_STRVAL_P(zoption));
503 /* port */
504 if (zoption = http_curl_getopt1(options, "proxyport", IS_LONG)) {
505 curl_easy_setopt(ch, CURLOPT_PROXYPORT, Z_LVAL_P(zoption));
506 }
507 /* user:pass */
508 if (zoption = http_curl_getopt1(options, "proxyauth", IS_STRING)) {
509 curl_easy_setopt(ch, CURLOPT_PROXYUSERPWD, Z_STRVAL_P(zoption));
510 }
511 /* auth method */
512 if (zoption = http_curl_getopt1(options, "proxyauthtype", IS_LONG)) {
513 curl_easy_setopt(ch, CURLOPT_PROXYAUTH, Z_LVAL_P(zoption));
514 }
515 }
516
517 /* auth */
518 if (zoption = http_curl_getopt1(options, "httpauth", IS_STRING)) {
519 curl_easy_setopt(ch, CURLOPT_USERPWD, Z_STRVAL_P(zoption));
520 }
521 if (zoption = http_curl_getopt1(options, "httpauthtype", IS_LONG)) {
522 curl_easy_setopt(ch, CURLOPT_HTTPAUTH, Z_LVAL_P(zoption));
523 }
524
525 /* compress, enabled by default (empty string enables deflate and gzip) */
526 if (zoption = http_curl_getopt2(options, "compress", IS_LONG, IS_BOOL)) {
527 if (Z_LVAL_P(zoption)) {
528 curl_easy_setopt(ch, CURLOPT_ENCODING, "");
529 }
530 } else {
531 curl_easy_setopt(ch, CURLOPT_ENCODING, "");
532 }
533
534 /* another port */
535 if (zoption = http_curl_getopt1(options, "port", IS_LONG)) {
536 curl_easy_setopt(ch, CURLOPT_PORT, Z_LVAL_P(zoption));
537 }
538
539 /* referer */
540 if (zoption = http_curl_getopt1(options, "referer", IS_STRING)) {
541 curl_easy_setopt(ch, CURLOPT_REFERER, Z_STRVAL_P(zoption));
542 }
543
544 /* useragent, default "PECL::HTTP/version (PHP/version)" */
545 if (zoption = http_curl_getopt1(options, "useragent", IS_STRING)) {
546 curl_easy_setopt(ch, CURLOPT_USERAGENT, Z_STRVAL_P(zoption));
547 } else {
548 curl_easy_setopt(ch, CURLOPT_USERAGENT,
549 "PECL::HTTP/" PHP_EXT_HTTP_VERSION " (PHP/" PHP_VERSION ")");
550 }
551
552 /* cookies, array('name' => 'value') */
553 if (zoption = http_curl_getopt1(options, "cookies", IS_ARRAY)) {
554 char *cookie_key;
555 zval **cookie_val;
556 int key_type;
557 smart_str qstr = {0};
558
559 zend_hash_internal_pointer_reset(Z_ARRVAL_P(zoption));
560 while (HASH_KEY_NON_EXISTANT != (key_type = zend_hash_get_current_key_type(Z_ARRVAL_P(zoption)))) {
561 if (key_type == HASH_KEY_IS_STRING) {
562 zend_hash_get_current_key(Z_ARRVAL_P(zoption), &cookie_key, NULL, 0);
563 zend_hash_get_current_data(Z_ARRVAL_P(zoption), (void **) &cookie_val);
564 smart_str_appends(&qstr, cookie_key);
565 smart_str_appendl(&qstr, "=", 1);
566 smart_str_appendl(&qstr, Z_STRVAL_PP(cookie_val), Z_STRLEN_PP(cookie_val));
567 smart_str_appendl(&qstr, "; ", 2);
568 zend_hash_move_forward(Z_ARRVAL_P(zoption));
569 }
570 }
571 smart_str_0(&qstr);
572
573 if (qstr.c) {
574 curl_easy_setopt(ch, CURLOPT_COOKIE, qstr.c);
575 }
576 }
577
578 /* cookiestore */
579 if (zoption = http_curl_getopt1(options, "cookiestore", IS_STRING)) {
580 curl_easy_setopt(ch, CURLOPT_COOKIEFILE, Z_STRVAL_P(zoption));
581 curl_easy_setopt(ch, CURLOPT_COOKIEJAR, Z_STRVAL_P(zoption));
582 }
583
584 /* additional headers, array('name' => 'value') */
585 if (zoption = http_curl_getopt1(options, "headers", IS_ARRAY)) {
586 int key_type;
587 char *header_key, header[1024] = {0};
588 zval **header_val;
589 struct curl_slist *headers = NULL;
590
591 zend_hash_internal_pointer_reset(Z_ARRVAL_P(zoption));
592 while (HASH_KEY_NON_EXISTANT != (key_type = zend_hash_get_current_key_type(Z_ARRVAL_P(zoption)))) {
593 if (key_type == HASH_KEY_IS_STRING) {
594 zend_hash_get_current_key(Z_ARRVAL_P(zoption), &header_key, NULL, 0);
595 zend_hash_get_current_data(Z_ARRVAL_P(zoption), (void **) &header_val);
596 snprintf(header, 1023, "%s: %s", header_key, Z_STRVAL_PP(header_val));
597 headers = curl_slist_append(headers, header);
598 zend_hash_move_forward(Z_ARRVAL_P(zoption));
599 }
600 }
601 if (headers) {
602 curl_easy_setopt(ch, CURLOPT_HTTPHEADER, headers);
603 }
604 }
605 }
606 /* }}} */
607
608 /* {{{ static inline char *http_curl_getinfoname(CURLINFO) */
609 static inline char *_http_curl_getinfoname(CURLINFO i TSRMLS_DC)
610 {
611 #define CASE(I) case CURLINFO_ ##I : return pretty_key(estrdup( #I ), strlen(#I), 0, 0)
612 switch (i)
613 {
614 /* CURLINFO_EFFECTIVE_URL = CURLINFO_STRING +1, */
615 CASE(EFFECTIVE_URL);
616 /* CURLINFO_RESPONSE_CODE = CURLINFO_LONG +2, */
617 CASE(RESPONSE_CODE);
618 /* CURLINFO_TOTAL_TIME = CURLINFO_DOUBLE +3, */
619 CASE(TOTAL_TIME);
620 /* CURLINFO_NAMELOOKUP_TIME = CURLINFO_DOUBLE +4, */
621 CASE(NAMELOOKUP_TIME);
622 /* CURLINFO_CONNECT_TIME = CURLINFO_DOUBLE +5, */
623 CASE(CONNECT_TIME);
624 /* CURLINFO_PRETRANSFER_TIME = CURLINFO_DOUBLE +6, */
625 CASE(PRETRANSFER_TIME);
626 /* CURLINFO_SIZE_UPLOAD = CURLINFO_DOUBLE +7, */
627 CASE(SIZE_UPLOAD);
628 /* CURLINFO_SIZE_DOWNLOAD = CURLINFO_DOUBLE +8, */
629 CASE(SIZE_DOWNLOAD);
630 /* CURLINFO_SPEED_DOWNLOAD = CURLINFO_DOUBLE +9, */
631 CASE(SPEED_DOWNLOAD);
632 /* CURLINFO_SPEED_UPLOAD = CURLINFO_DOUBLE +10, */
633 CASE(SPEED_UPLOAD);
634 /* CURLINFO_HEADER_SIZE = CURLINFO_LONG +11, */
635 CASE(HEADER_SIZE);
636 /* CURLINFO_REQUEST_SIZE = CURLINFO_LONG +12, */
637 CASE(REQUEST_SIZE);
638 /* CURLINFO_SSL_VERIFYRESULT = CURLINFO_LONG +13, */
639 CASE(SSL_VERIFYRESULT);
640 /* CURLINFO_FILETIME = CURLINFO_LONG +14, */
641 CASE(FILETIME);
642 /* CURLINFO_CONTENT_LENGTH_DOWNLOAD = CURLINFO_DOUBLE +15, */
643 CASE(CONTENT_LENGTH_DOWNLOAD);
644 /* CURLINFO_CONTENT_LENGTH_UPLOAD = CURLINFO_DOUBLE +16, */
645 CASE(CONTENT_LENGTH_UPLOAD);
646 /* CURLINFO_STARTTRANSFER_TIME = CURLINFO_DOUBLE +17, */
647 CASE(STARTTRANSFER_TIME);
648 /* CURLINFO_CONTENT_TYPE = CURLINFO_STRING +18, */
649 CASE(CONTENT_TYPE);
650 /* CURLINFO_REDIRECT_TIME = CURLINFO_DOUBLE +19, */
651 CASE(REDIRECT_TIME);
652 /* CURLINFO_REDIRECT_COUNT = CURLINFO_LONG +20, */
653 CASE(REDIRECT_COUNT);
654 /* CURLINFO_PRIVATE = CURLINFO_STRING +21, */
655 CASE(PRIVATE);
656 /* CURLINFO_HTTP_CONNECTCODE = CURLINFO_LONG +22, */
657 CASE(HTTP_CONNECTCODE);
658 /* CURLINFO_HTTPAUTH_AVAIL = CURLINFO_LONG +23, */
659 CASE(HTTPAUTH_AVAIL);
660 /* CURLINFO_PROXYAUTH_AVAIL = CURLINFO_LONG +24, */
661 CASE(PROXYAUTH_AVAIL);
662 }
663 #undef CASE
664 return NULL;
665 }
666 /* }}} */
667
668 /* {{{ static inline void http_curl_getinfo_ex(CURL, CURLINFO, zval *) */
669 static inline void _http_curl_getinfo_ex(CURL *ch, CURLINFO i, zval *array TSRMLS_DC)
670 {
671 char *key;
672 if (key = http_curl_getinfoname(i)) {
673 switch (i & ~CURLINFO_MASK)
674 {
675 case CURLINFO_STRING:
676 {
677 char *c;
678 if (CURLE_OK == curl_easy_getinfo(ch, i, &c)) {
679 add_assoc_string(array, key, c ? c : "", 1);
680 }
681 }
682 break;
683
684 case CURLINFO_DOUBLE:
685 {
686 double d;
687 if (CURLE_OK == curl_easy_getinfo(ch, i, &d)) {
688 add_assoc_double(array, key, d);
689 }
690 }
691 break;
692
693 case CURLINFO_LONG:
694 {
695 long l;
696 if (CURLE_OK == curl_easy_getinfo(ch, i, &l)) {
697 add_assoc_long(array, key, l);
698 }
699 }
700 break;
701 }
702 }
703 }
704 /* }}} */
705
706 /* {{{ static inline http_curl_getinfo(CURL, HashTable *) */
707 static inline void _http_curl_getinfo(CURL *ch, HashTable *info TSRMLS_DC)
708 {
709 zval array;
710 Z_ARRVAL(array) = info;
711
712 #define INFO(I) http_curl_getinfo_ex(ch, CURLINFO_ ##I , &array)
713 /* CURLINFO_EFFECTIVE_URL = CURLINFO_STRING +1, */
714 INFO(EFFECTIVE_URL);
715 /* CURLINFO_RESPONSE_CODE = CURLINFO_LONG +2, */
716 INFO(RESPONSE_CODE);
717 /* CURLINFO_TOTAL_TIME = CURLINFO_DOUBLE +3, */
718 INFO(TOTAL_TIME);
719 /* CURLINFO_NAMELOOKUP_TIME = CURLINFO_DOUBLE +4, */
720 INFO(NAMELOOKUP_TIME);
721 /* CURLINFO_CONNECT_TIME = CURLINFO_DOUBLE +5, */
722 INFO(CONNECT_TIME);
723 /* CURLINFO_PRETRANSFER_TIME = CURLINFO_DOUBLE +6, */
724 INFO(PRETRANSFER_TIME);
725 /* CURLINFO_SIZE_UPLOAD = CURLINFO_DOUBLE +7, */
726 INFO(SIZE_UPLOAD);
727 /* CURLINFO_SIZE_DOWNLOAD = CURLINFO_DOUBLE +8, */
728 INFO(SIZE_DOWNLOAD);
729 /* CURLINFO_SPEED_DOWNLOAD = CURLINFO_DOUBLE +9, */
730 INFO(SPEED_DOWNLOAD);
731 /* CURLINFO_SPEED_UPLOAD = CURLINFO_DOUBLE +10, */
732 INFO(SPEED_UPLOAD);
733 /* CURLINFO_HEADER_SIZE = CURLINFO_LONG +11, */
734 INFO(HEADER_SIZE);
735 /* CURLINFO_REQUEST_SIZE = CURLINFO_LONG +12, */
736 INFO(REQUEST_SIZE);
737 /* CURLINFO_SSL_VERIFYRESULT = CURLINFO_LONG +13, */
738 INFO(SSL_VERIFYRESULT);
739 /* CURLINFO_FILETIME = CURLINFO_LONG +14, */
740 INFO(FILETIME);
741 /* CURLINFO_CONTENT_LENGTH_DOWNLOAD = CURLINFO_DOUBLE +15, */
742 INFO(CONTENT_LENGTH_DOWNLOAD);
743 /* CURLINFO_CONTENT_LENGTH_UPLOAD = CURLINFO_DOUBLE +16, */
744 INFO(CONTENT_LENGTH_UPLOAD);
745 /* CURLINFO_STARTTRANSFER_TIME = CURLINFO_DOUBLE +17, */
746 INFO(STARTTRANSFER_TIME);
747 /* CURLINFO_CONTENT_TYPE = CURLINFO_STRING +18, */
748 INFO(CONTENT_TYPE);
749 /* CURLINFO_REDIRECT_TIME = CURLINFO_DOUBLE +19, */
750 INFO(REDIRECT_TIME);
751 /* CURLINFO_REDIRECT_COUNT = CURLINFO_LONG +20, */
752 INFO(REDIRECT_COUNT);
753 /* CURLINFO_PRIVATE = CURLINFO_STRING +21, */
754 INFO(PRIVATE);
755 /* CURLINFO_HTTP_CONNECTCODE = CURLINFO_LONG +22, */
756 INFO(HTTP_CONNECTCODE);
757 /* CURLINFO_HTTPAUTH_AVAIL = CURLINFO_LONG +23, */
758 INFO(HTTPAUTH_AVAIL);
759 /* CURLINFO_PROXYAUTH_AVAIL = CURLINFO_LONG +24, */
760 INFO(PROXYAUTH_AVAIL);
761 #undef INFO
762 }
763 /* }}} */
764
765 #endif
766 /* }}} HAVE_CURL */
767
768 /* {{{ Day/Month/TZ checks for http_parse_date()
769 Originally by libcurl, Copyright (C) 1998 - 2004, Daniel Stenberg, <daniel@haxx.se>, et al. */
770 static int check_day(char *day, size_t len)
771 {
772 int i;
773 const char * const *check = (len > 3) ? &weekdays[0] : &wkdays[0];
774 for (i = 0; i < 7; i++) {
775 if (!strcmp(day, check[0])) {
776 return i;
777 }
778 check++;
779 }
780 return -1;
781 }
782
783 static int check_month(char *month)
784 {
785 int i;
786 const char * const *check = &months[0];
787 for (i = 0; i < 12; i++) {
788 if (!strcmp(month, check[0])) {
789 return i;
790 }
791 check++;
792 }
793 return -1;
794 }
795
796 /* return the time zone offset between GMT and the input one, in number
797 of seconds or -1 if the timezone wasn't found/legal */
798
799 static int check_tzone(char *tzone)
800 {
801 int i;
802 const struct time_zone *check = time_zones;
803 for (i = 0; i < sizeof(time_zones) / sizeof(time_zones[0]); i++) {
804 if (!strcmp(tzone, check->name)) {
805 return check->offset * 60;
806 }
807 check++;
808 }
809 return -1;
810 }
811 /* }}} */
812
813 /* static char *pretty_key(char *, int, int, int) */
814 static char *pretty_key(char *key, int key_len, int uctitle, int xhyphen)
815 {
816 if (key && key_len) {
817 int i, wasalpha;
818 if (wasalpha = isalpha(key[0])) {
819 key[0] = uctitle ? toupper(key[0]) : tolower(key[0]);
820 }
821 for (i = 1; i < key_len; i++) {
822 if (isalpha(key[i])) {
823 key[i] = ((!wasalpha) && uctitle) ? toupper(key[i]) : tolower(key[i]);
824 wasalpha = 1;
825 } else {
826 if (xhyphen && (key[i] == '_')) {
827 key[i] = '-';
828 }
829 wasalpha = 0;
830 }
831 }
832 }
833 return key;
834 }
835 /* }}} */
836
837 /* }}} internals */
838
839 /* {{{ public API */
840
841 /* {{{ char *http_date(time_t) */
842 PHP_HTTP_API char *_http_date(time_t t TSRMLS_DC)
843 {
844 struct tm *gmtime, tmbuf;
845 char *date = ecalloc(31, 1);
846
847 gmtime = php_gmtime_r(&t, &tmbuf);
848 snprintf(date, 30,
849 "%s, %02d %s %04d %02d:%02d:%02d GMT",
850 days[gmtime->tm_wday], gmtime->tm_mday,
851 months[gmtime->tm_mon], gmtime->tm_year + 1900,
852 gmtime->tm_hour, gmtime->tm_min, gmtime->tm_sec
853 );
854 return date;
855 }
856 /* }}} */
857
858 /* {{{ time_t http_parse_date(char *)
859 Originally by libcurl, Copyright (C) 1998 - 2004, Daniel Stenberg, <daniel@haxx.se>, et al. */
860 PHP_HTTP_API time_t _http_parse_date(const char *date)
861 {
862 time_t t = 0;
863 int tz_offset = -1, year = -1, month = -1, monthday = -1, weekday = -1,
864 hours = -1, minutes = -1, seconds = -1;
865 struct tm tm;
866 enum assume_next dignext = DATE_MDAY;
867 const char *indate = date;
868
869 int found = 0, part = 0; /* max 6 parts */
870
871 while (*date && (part < 6)) {
872 int found = 0;
873
874 while (*date && !isalnum(*date)) {
875 date++;
876 }
877
878 if (isalpha(*date)) {
879 /* a name coming up */
880 char buf[32] = "";
881 size_t len;
882 sscanf(date, "%31[A-Za-z]", buf);
883 len = strlen(buf);
884
885 if (weekday == -1) {
886 weekday = check_day(buf, len);
887 if (weekday != -1) {
888 found = 1;
889 }
890 }
891
892 if (!found && (month == -1)) {
893 month = check_month(buf);
894 if (month != -1) {
895 found = 1;
896 }
897 }
898
899 if (!found && (tz_offset == -1)) {
900 /* this just must be a time zone string */
901 tz_offset = check_tzone(buf);
902 if (tz_offset != -1) {
903 found = 1;
904 }
905 }
906
907 if (!found) {
908 return -1; /* bad string */
909 }
910 date += len;
911 }
912 else if (isdigit(*date)) {
913 /* a digit */
914 int val;
915 char *end;
916 if((seconds == -1) && (3 == sscanf(date, "%02d:%02d:%02d", &hours, &minutes, &seconds))) {
917 /* time stamp! */
918 date += 8;
919 found = 1;
920 }
921 else {
922 val = (int) strtol(date, &end, 10);
923
924 if ((tz_offset == -1) && ((end - date) == 4) && (val < 1300) && (indate < date) && ((date[-1] == '+' || date[-1] == '-'))) {
925 /* four digits and a value less than 1300 and it is preceeded with
926 a plus or minus. This is a time zone indication. */
927 found = 1;
928 tz_offset = (val / 100 * 60 + val % 100) * 60;
929
930 /* the + and - prefix indicates the local time compared to GMT,
931 this we need ther reversed math to get what we want */
932 tz_offset = date[-1] == '+' ? -tz_offset : tz_offset;
933 }
934
935 if (((end - date) == 8) && (year == -1) && (month == -1) && (monthday == -1)) {
936 /* 8 digits, no year, month or day yet. This is YYYYMMDD */
937 found = 1;
938 year = val / 10000;
939 month = (val % 10000) / 100 - 1; /* month is 0 - 11 */
940 monthday = val % 100;
941 }
942
943 if (!found && (dignext == DATE_MDAY) && (monthday == -1)) {
944 if ((val > 0) && (val < 32)) {
945 monthday = val;
946 found = 1;
947 }
948 dignext = DATE_YEAR;
949 }
950
951 if (!found && (dignext == DATE_YEAR) && (year == -1)) {
952 year = val;
953 found = 1;
954 if (year < 1900) {
955 year += year > 70 ? 1900 : 2000;
956 }
957 if(monthday == -1) {
958 dignext = DATE_MDAY;
959 }
960 }
961
962 if (!found) {
963 return -1;
964 }
965
966 date = end;
967 }
968 }
969
970 part++;
971 }
972
973 if (-1 == seconds) {
974 seconds = minutes = hours = 0; /* no time, make it zero */
975 }
976
977 if ((-1 == monthday) || (-1 == month) || (-1 == year)) {
978 /* lacks vital info, fail */
979 return -1;
980 }
981
982 if (sizeof(time_t) < 5) {
983 /* 32 bit time_t can only hold dates to the beginning of 2038 */
984 if (year > 2037) {
985 return 0x7fffffff;
986 }
987 }
988
989 tm.tm_sec = seconds;
990 tm.tm_min = minutes;
991 tm.tm_hour = hours;
992 tm.tm_mday = monthday;
993 tm.tm_mon = month;
994 tm.tm_year = year - 1900;
995 tm.tm_wday = 0;
996 tm.tm_yday = 0;
997 tm.tm_isdst = 0;
998
999 t = mktime(&tm);
1000
1001 /* time zone adjust */
1002 {
1003 struct tm *gmt, keeptime2;
1004 long delta;
1005 time_t t2;
1006
1007 if(!(gmt = php_gmtime_r(&t, &keeptime2))) {
1008 return -1; /* illegal date/time */
1009 }
1010
1011 t2 = mktime(gmt);
1012
1013 /* Add the time zone diff (between the given timezone and GMT) and the
1014 diff between the local time zone and GMT. */
1015 delta = (tz_offset != -1 ? tz_offset : 0) + (t - t2);
1016
1017 if((delta > 0) && (t + delta < t)) {
1018 return -1; /* time_t overflow */
1019 }
1020
1021 t += delta;
1022 }
1023
1024 return t;
1025 }
1026 /* }}} */
1027
1028 /* {{{ inline STATUS http_send_status(int) */
1029 PHP_HTTP_API inline STATUS _http_send_status(const int status TSRMLS_DC)
1030 {
1031 int s = status;
1032 return sapi_header_op(SAPI_HEADER_SET_STATUS, (void *) s TSRMLS_CC);
1033 }
1034 /* }}} */
1035
1036 /* {{{ inline STATUS http_send_header(char *) */
1037 PHP_HTTP_API inline STATUS _http_send_header(const char *header TSRMLS_DC)
1038 {
1039 return http_send_status_header(0, header);
1040 }
1041 /* }}} */
1042
1043 /* {{{ inline STATUS http_send_status_header(int, char *) */
1044 PHP_HTTP_API inline STATUS _http_send_status_header(const int status, const char *header TSRMLS_DC)
1045 {
1046 sapi_header_line h = {(char *) header, strlen(header), status};
1047 return sapi_header_op(SAPI_HEADER_REPLACE, &h TSRMLS_CC);
1048 }
1049 /* }}} */
1050
1051 /* {{{ inline zval *http_get_server_var(char *) */
1052 PHP_HTTP_API inline zval *_http_get_server_var(const char *key TSRMLS_DC)
1053 {
1054 zval **var;
1055 if (SUCCESS == zend_hash_find(
1056 HTTP_SERVER_VARS,
1057 (char *) key, strlen(key) + 1, (void **) &var)) {
1058 return *var;
1059 }
1060 return NULL;
1061 }
1062 /* }}} */
1063
1064 /* {{{ void http_ob_etaghandler(char *, uint, char **, uint *, int) */
1065 PHP_HTTP_API void _http_ob_etaghandler(char *output, uint output_len,
1066 char **handled_output, uint *handled_output_len, int mode TSRMLS_DC)
1067 {
1068 char etag[33] = { 0 };
1069 unsigned char digest[16];
1070
1071 if (mode & PHP_OUTPUT_HANDLER_START) {
1072 PHP_MD5Init(&HTTP_G(etag_md5));
1073 }
1074
1075 PHP_MD5Update(&HTTP_G(etag_md5), output, output_len);
1076
1077 if (mode & PHP_OUTPUT_HANDLER_END) {
1078 PHP_MD5Final(digest, &HTTP_G(etag_md5));
1079
1080 /* just do that if desired */
1081 if (HTTP_G(etag_started)) {
1082 make_digest(etag, digest);
1083
1084 if (http_etag_match("HTTP_IF_NONE_MATCH", etag)) {
1085 http_send_status(304);
1086 } else {
1087 http_send_etag(etag, 32);
1088 }
1089 }
1090 }
1091
1092 *handled_output_len = output_len;
1093 *handled_output = estrndup(output, output_len);
1094 }
1095 /* }}} */
1096
1097 /* {{{ int http_modified_match(char *, int) */
1098 PHP_HTTP_API int _http_modified_match(const char *entry, const time_t t TSRMLS_DC)
1099 {
1100 int retval;
1101 zval *zmodified;
1102 char *modified, *chr_ptr;
1103
1104 HTTP_GSC(zmodified, entry, 0);
1105
1106 modified = estrndup(Z_STRVAL_P(zmodified), Z_STRLEN_P(zmodified));
1107 if (chr_ptr = strrchr(modified, ';')) {
1108 chr_ptr = 0;
1109 }
1110 retval = (t <= http_parse_date(modified));
1111 efree(modified);
1112 return retval;
1113 }
1114 /* }}} */
1115
1116 /* {{{ int http_etag_match(char *, char *) */
1117 PHP_HTTP_API int _http_etag_match(const char *entry, const char *etag TSRMLS_DC)
1118 {
1119 zval *zetag;
1120 char *quoted_etag;
1121 STATUS result;
1122
1123 HTTP_GSC(zetag, entry, 0);
1124
1125 if (NULL != strchr(Z_STRVAL_P(zetag), '*')) {
1126 return 1;
1127 }
1128
1129 quoted_etag = (char *) emalloc(strlen(etag) + 3);
1130 sprintf(quoted_etag, "\"%s\"", etag);
1131
1132 if (!strchr(Z_STRVAL_P(zetag), ',')) {
1133 result = !strcmp(Z_STRVAL_P(zetag), quoted_etag);
1134 } else {
1135 result = (NULL != strstr(Z_STRVAL_P(zetag), quoted_etag));
1136 }
1137 efree(quoted_etag);
1138 return result;
1139 }
1140 /* }}} */
1141
1142 /* {{{ STATUS http_send_last_modified(int) */
1143 PHP_HTTP_API STATUS _http_send_last_modified(const time_t t TSRMLS_DC)
1144 {
1145 char modified[96] = "Last-Modified: ", *date;
1146 date = http_date(t);
1147 strcat(modified, date);
1148 efree(date);
1149
1150 /* remember */
1151 HTTP_G(lmod) = t;
1152
1153 return http_send_header(modified);
1154 }
1155 /* }}} */
1156
1157 /* {{{ static STATUS http_send_etag(char *, int) */
1158 PHP_HTTP_API STATUS _http_send_etag(const char *etag,
1159 const int etag_len TSRMLS_DC)
1160 {
1161 STATUS ret;
1162 int header_len;
1163 char *etag_header;
1164
1165 header_len = sizeof("ETag: \"\"") + etag_len + 1;
1166 etag_header = ecalloc(header_len, 1);
1167 sprintf(etag_header, "ETag: \"%s\"", etag);
1168 ret = http_send_header(etag_header);
1169 efree(etag_header);
1170
1171 /* remember */
1172 if (HTTP_G(etag)) {
1173 efree(HTTP_G(etag));
1174 }
1175 HTTP_G(etag) = estrdup(etag);
1176
1177 return ret;
1178 }
1179 /* }}} */
1180
1181 /* {{{ char *http_absolute_uri(char *, char *) */
1182 PHP_HTTP_API char *_http_absolute_uri(const char *url,
1183 const char *proto TSRMLS_DC)
1184 {
1185 char URI[HTTP_URI_MAXLEN + 1], *PTR, *proto_ptr, *host, *path;
1186 zval *zhost;
1187
1188 if (!url || !strlen(url)) {
1189 if (!SG(request_info).request_uri) {
1190 return NULL;
1191 }
1192 url = SG(request_info).request_uri;
1193 }
1194 /* Mess around with already absolute URIs */
1195 else if (proto_ptr = strstr(url, "://")) {
1196 if (!proto || !strncmp(url, proto, strlen(proto))) {
1197 return estrdup(url);
1198 } else {
1199 snprintf(URI, HTTP_URI_MAXLEN, "%s%s", proto, proto_ptr + 3);
1200 return estrdup(URI);
1201 }
1202 }
1203
1204 /* protocol defaults to http */
1205 if (!proto || !strlen(proto)) {
1206 proto = "http";
1207 }
1208
1209 /* get host name */
1210 if ( (zhost = http_get_server_var("HTTP_HOST")) ||
1211 (zhost = http_get_server_var("SERVER_NAME"))) {
1212 host = Z_STRVAL_P(zhost);
1213 } else {
1214 host = "localhost";
1215 }
1216
1217
1218 /* glue together */
1219 if (url[0] == '/') {
1220 snprintf(URI, HTTP_URI_MAXLEN, "%s://%s%s", proto, host, url);
1221 } else if (SG(request_info).request_uri) {
1222 path = estrdup(SG(request_info).request_uri);
1223 php_dirname(path, strlen(path));
1224 snprintf(URI, HTTP_URI_MAXLEN, "%s://%s%s/%s", proto, host, path, url);
1225 efree(path);
1226 } else {
1227 snprintf(URI, HTTP_URI_MAXLEN, "%s://%s/%s", proto, host, url);
1228 }
1229
1230 /* strip everything after a new line */
1231 PTR = URI;
1232 while (*PTR != 0) {
1233 if (*PTR == '\n' || *PTR == '\r') {
1234 *PTR = 0;
1235 break;
1236 }
1237 PTR++;
1238 }
1239
1240 return estrdup(URI);
1241 }
1242 /* }}} */
1243
1244 /* {{{ char *http_negotiate_q(char *, zval *, char *, hash_entry_type) */
1245 PHP_HTTP_API char *_http_negotiate_q(const char *entry, const zval *supported,
1246 const char *def TSRMLS_DC)
1247 {
1248 zval *zaccept, *zarray, *zdelim, **zentry, *zentries, **zsupp;
1249 char *q_ptr, *result;
1250 int i, c;
1251 double qual;
1252
1253 HTTP_GSC(zaccept, entry, estrdup(def));
1254
1255 MAKE_STD_ZVAL(zarray);
1256 array_init(zarray);
1257
1258 MAKE_STD_ZVAL(zdelim);
1259 ZVAL_STRING(zdelim, ",", 0);
1260 php_explode(zdelim, zaccept, zarray, -1);
1261 efree(zdelim);
1262
1263 MAKE_STD_ZVAL(zentries);
1264 array_init(zentries);
1265
1266 c = zend_hash_num_elements(Z_ARRVAL_P(zarray));
1267 for (i = 0; i < c; i++, zend_hash_move_forward(Z_ARRVAL_P(zarray))) {
1268
1269 if (SUCCESS != zend_hash_get_current_data(
1270 Z_ARRVAL_P(zarray), (void **) &zentry)) {
1271 php_error_docref(NULL TSRMLS_CC, E_WARNING,
1272 "Cannot parse %s header: %s", entry, Z_STRVAL_P(zaccept));
1273 break;
1274 }
1275
1276 /* check for qualifier */
1277 if (NULL != (q_ptr = strrchr(Z_STRVAL_PP(zentry), ';'))) {
1278 qual = strtod(q_ptr + 3, NULL);
1279 } else {
1280 qual = 1000.0 - i;
1281 }
1282
1283 /* walk through the supported array */
1284 for ( zend_hash_internal_pointer_reset(Z_ARRVAL_P(supported));
1285 SUCCESS == zend_hash_get_current_data(
1286 Z_ARRVAL_P(supported), (void **) &zsupp);
1287 zend_hash_move_forward(Z_ARRVAL_P(supported))) {
1288 if (!strcasecmp(Z_STRVAL_PP(zsupp), Z_STRVAL_PP(zentry))) {
1289 add_assoc_double(zentries, Z_STRVAL_PP(zsupp), qual);
1290 break;
1291 }
1292 }
1293 }
1294
1295 zval_dtor(zarray);
1296 efree(zarray);
1297
1298 zend_hash_internal_pointer_reset(Z_ARRVAL_P(zentries));
1299
1300 if ( (SUCCESS != zend_hash_sort(Z_ARRVAL_P(zentries), zend_qsort,
1301 http_sort_q, 0 TSRMLS_CC)) ||
1302 (HASH_KEY_NON_EXISTANT == zend_hash_get_current_key(
1303 Z_ARRVAL_P(zentries), &result, 0, 1))) {
1304 result = estrdup(def);
1305 }
1306
1307 zval_dtor(zentries);
1308 efree(zentries);
1309
1310 return result;
1311 }
1312 /* }}} */
1313
1314 /* {{{ http_range_status http_get_request_ranges(zval *zranges, size_t) */
1315 PHP_HTTP_API http_range_status _http_get_request_ranges(zval *zranges,
1316 const size_t length TSRMLS_DC)
1317 {
1318 zval *zrange;
1319 char *range, c;
1320 long begin = -1, end = -1, *ptr;
1321
1322 HTTP_GSC(zrange, "HTTP_RANGE", RANGE_NO);
1323 range = Z_STRVAL_P(zrange);
1324
1325 if (strncmp(range, "bytes=", strlen("bytes="))) {
1326 php_error_docref(NULL TSRMLS_CC, E_NOTICE, "Range header misses bytes=");
1327 return RANGE_NO;
1328 }
1329
1330 ptr = &begin;
1331 range += strlen("bytes=");
1332
1333 do {
1334 switch (c = *(range++))
1335 {
1336 case '0':
1337 *ptr *= 10;
1338 break;
1339
1340 case '1': case '2': case '3':
1341 case '4': case '5': case '6':
1342 case '7': case '8': case '9':
1343 /*
1344 * If the value of the pointer is already set (non-negative)
1345 * then multiply its value by ten and add the current value,
1346 * else initialise the pointers value with the current value
1347 * --
1348 * This let us recognize empty fields when validating the
1349 * ranges, i.e. a "-10" for begin and "12345" for the end
1350 * was the following range request: "Range: bytes=0-12345";
1351 * While a "-1" for begin and "12345" for the end would
1352 * have been: "Range: bytes=-12345".
1353 */
1354 if (*ptr > 0) {
1355 *ptr *= 10;
1356 *ptr += c - '0';
1357 } else {
1358 *ptr = c - '0';
1359 }
1360 break;
1361
1362 case '-':
1363 ptr = &end;
1364 break;
1365
1366 case ' ':
1367 /* IE - ignore for now */
1368 break;
1369
1370 case 0:
1371 case ',':
1372
1373 if (length) {
1374 /* validate ranges */
1375 switch (begin)
1376 {
1377 /* "0-12345" */
1378 case -10:
1379 if ((length - end) < 1) {
1380 return RANGE_ERR;
1381 }
1382 begin = 0;
1383 break;
1384
1385 /* "-12345" */
1386 case -1:
1387 if ((length - end) < 1) {
1388 return RANGE_ERR;
1389 }
1390 begin = length - end;
1391 end = length;
1392 break;
1393
1394 /* "12345-(xxx)" */
1395 default:
1396 switch (end)
1397 {
1398 /* "12345-" */
1399 case -1:
1400 if ((length - begin) < 1) {
1401 return RANGE_ERR;
1402 }
1403 end = length - 1;
1404 break;
1405
1406 /* "12345-67890" */
1407 default:
1408 if ( ((length - begin) < 1) ||
1409 ((length - end) < 1) ||
1410 ((begin - end) >= 0)) {
1411 return RANGE_ERR;
1412 }
1413 break;
1414 }
1415 break;
1416 }
1417 }
1418 {
1419 zval *zentry;
1420 MAKE_STD_ZVAL(zentry);
1421 array_init(zentry);
1422 add_index_long(zentry, 0, begin);
1423 add_index_long(zentry, 1, end);
1424 add_next_index_zval(zranges, zentry);
1425
1426 begin = -1;
1427 end = -1;
1428 ptr = &begin;
1429 }
1430 break;
1431
1432 default:
1433 return RANGE_NO;
1434 break;
1435 }
1436 } while (c != 0);
1437
1438 return RANGE_OK;
1439 }
1440 /* }}} */
1441
1442 /* {{{ STATUS http_send_ranges(zval *, void *, size_t, http_send_mode) */
1443 PHP_HTTP_API STATUS _http_send_ranges(zval *zranges, const void *data, const size_t size, const http_send_mode mode TSRMLS_DC)
1444 {
1445 int c;
1446 long **begin, **end;
1447 zval **zrange;
1448
1449 /* Send HTTP 206 Partial Content */
1450 http_send_status(206);
1451
1452 /* single range */
1453 if ((c = zend_hash_num_elements(Z_ARRVAL_P(zranges))) == 1) {
1454 char range_header[256] = {0};
1455
1456 zend_hash_index_find(Z_ARRVAL_P(zranges), 0, (void **) &zrange);
1457 zend_hash_index_find(Z_ARRVAL_PP(zrange), 0, (void **) &begin);
1458 zend_hash_index_find(Z_ARRVAL_PP(zrange), 1, (void **) &end);
1459
1460 /* send content range header */
1461 snprintf(range_header, 255, "Content-Range: bytes %d-%d/%d", **begin, **end, size);
1462 http_send_header(range_header);
1463
1464 /* send requested chunk */
1465 return http_send_chunk(data, **begin, **end + 1, mode);
1466 }
1467
1468 /* multi range */
1469 else {
1470 int i;
1471 char bound[23] = {0}, preface[1024] = {0},
1472 multi_header[68] = "Content-Type: multipart/byteranges; boundary=";
1473
1474 snprintf(bound, 22, "--%d%0.9f", time(NULL), php_combined_lcg(TSRMLS_C));
1475 strncat(multi_header, bound + 2, 21);
1476 http_send_header(multi_header);
1477
1478 /* send each requested chunk */
1479 for ( i = 0, zend_hash_internal_pointer_reset(Z_ARRVAL_P(zranges));
1480 i < c;
1481 i++, zend_hash_move_forward(Z_ARRVAL_P(zranges))) {
1482 if ( HASH_KEY_NON_EXISTANT == zend_hash_get_current_data(
1483 Z_ARRVAL_P(zranges), (void **) &zrange) ||
1484 SUCCESS != zend_hash_index_find(
1485 Z_ARRVAL_PP(zrange), 0, (void **) &begin) ||
1486 SUCCESS != zend_hash_index_find(
1487 Z_ARRVAL_PP(zrange), 1, (void **) &end)) {
1488 break;
1489 }
1490
1491 snprintf(preface, 1023,
1492 HTTP_CRLF "%s"
1493 HTTP_CRLF "Content-Type: %s"
1494 HTTP_CRLF "Content-Range: bytes %ld-%ld/%ld"
1495 HTTP_CRLF
1496 HTTP_CRLF,
1497
1498 bound,
1499 HTTP_G(ctype) ? HTTP_G(ctype) : "application/x-octetstream",
1500 **begin,
1501 **end,
1502 size
1503 );
1504
1505 php_body_write(preface, strlen(preface) TSRMLS_CC);
1506 http_send_chunk(data, **begin, **end + 1, mode);
1507 }
1508
1509 /* write boundary once more */
1510 php_body_write(HTTP_CRLF, 2 TSRMLS_CC);
1511 php_body_write(bound, strlen(bound) TSRMLS_CC);
1512
1513 return SUCCESS;
1514 }
1515 }
1516 /* }}} */
1517
1518 /* {{{ STATUS http_send(void *, sizezo_t, http_send_mode) */
1519 PHP_HTTP_API STATUS _http_send(const void *data_ptr, const size_t data_size,
1520 const http_send_mode data_mode TSRMLS_DC)
1521 {
1522 char *new_etag = NULL;
1523 int is_range_request = http_is_range_request();
1524
1525 if (!data_ptr) {
1526 return FAILURE;
1527 }
1528
1529 /* etag handling */
1530 if (HTTP_G(etag_started)) {
1531 new_etag = (char *) emalloc(33);
1532
1533 /* never ever use the output to compute the ETag if http_send() is used */
1534 HTTP_G(etag_started) = 0;
1535 php_end_ob_buffer(0, 0 TSRMLS_CC);
1536 if (NULL == http_etag(&new_etag, data_ptr, data_size, data_mode)) {
1537 efree(new_etag);
1538 return FAILURE;
1539 }
1540
1541 /* send 304 Not Modified if etag matches */
1542 if ((!is_range_request) && http_etag_match("HTTP_IF_NONE_MATCH", new_etag)) {
1543 efree(new_etag);
1544 return http_send_status(304);
1545 }
1546
1547 http_send_etag(new_etag, 32);
1548 efree(new_etag);
1549 }
1550
1551 /* send 304 Not Modified if last-modified matches*/
1552 if ((!is_range_request) && http_modified_match("HTTP_IF_MODIFIED_SINCE", HTTP_G(lmod))) {
1553 return http_send_status(304);
1554 }
1555
1556 if (is_range_request) {
1557
1558 /* only send ranges if entity hasn't changed */
1559 if (
1560 ((!zend_hash_exists(HTTP_SERVER_VARS, "HTTP_IF_MATCH", 13)) ||
1561 http_etag_match("HTTP_IF_MATCH", HTTP_G(etag)))
1562 &&
1563 ((!zend_hash_exists(HTTP_SERVER_VARS, "HTTP_IF_UNMODIFIED_SINCE", 25)) ||
1564 http_modified_match("HTTP_IF_UNMODIFIED_SINCE", HTTP_G(lmod)))
1565 ) {
1566
1567 STATUS result = FAILURE;
1568 zval *zranges = NULL;
1569 MAKE_STD_ZVAL(zranges);
1570 array_init(zranges);
1571
1572 switch (http_get_request_ranges(zranges, data_size))
1573 {
1574 case RANGE_NO:
1575 zval_dtor(zranges);
1576 efree(zranges);
1577 /* go ahead and send all */
1578 break;
1579
1580 case RANGE_OK:
1581 result = http_send_ranges(zranges, data_ptr, data_size, data_mode);
1582 zval_dtor(zranges);
1583 efree(zranges);
1584 return result;
1585 break;
1586
1587 case RANGE_ERR:
1588 zval_dtor(zranges);
1589 efree(zranges);
1590 http_send_status(416);
1591 return FAILURE;
1592 break;
1593
1594 default:
1595 return FAILURE;
1596 break;
1597 }
1598 }
1599 }
1600 /* send all */
1601 return http_send_chunk(data_ptr, 0, data_size, data_mode);
1602 }
1603 /* }}} */
1604
1605 /* {{{ STATUS http_send_data(zval *) */
1606 PHP_HTTP_API STATUS _http_send_data(const zval *zdata TSRMLS_DC)
1607 {
1608 if (!Z_STRLEN_P(zdata)) {
1609 return SUCCESS;
1610 }
1611 if (!Z_STRVAL_P(zdata)) {
1612 return FAILURE;
1613 }
1614
1615 return http_send(zdata, Z_STRLEN_P(zdata), SEND_DATA);
1616 }
1617 /* }}} */
1618
1619 /* {{{ STATUS http_send_stream(php_stream *) */
1620 PHP_HTTP_API STATUS _http_send_stream(const php_stream *file TSRMLS_DC)
1621 {
1622 if (php_stream_stat((php_stream *) file, &HTTP_G(ssb))) {
1623 return FAILURE;
1624 }
1625
1626 return http_send(file, HTTP_G(ssb).sb.st_size, SEND_RSRC);
1627 }
1628 /* }}} */
1629
1630 /* {{{ STATUS http_send_file(zval *) */
1631 PHP_HTTP_API STATUS _http_send_file(const zval *zfile TSRMLS_DC)
1632 {
1633 php_stream *file;
1634 STATUS ret;
1635
1636 if (!Z_STRLEN_P(zfile)) {
1637 return FAILURE;
1638 }
1639
1640 if (!(file = php_stream_open_wrapper(Z_STRVAL_P(zfile), "rb",
1641 REPORT_ERRORS|ENFORCE_SAFE_MODE, NULL))) {
1642 return FAILURE;
1643 }
1644
1645 ret = http_send_stream(file);
1646 php_stream_close(file);
1647 return ret;
1648 }
1649 /* }}} */
1650
1651 /* {{{ proto STATUS http_chunked_decode(char *, size_t, char **, size_t *) */
1652 PHP_HTTP_API STATUS _http_chunked_decode(const char *encoded,
1653 const size_t encoded_len, char **decoded, size_t *decoded_len TSRMLS_DC)
1654 {
1655 const char *e_ptr;
1656 char *d_ptr;
1657
1658 *decoded_len = 0;
1659 *decoded = (char *) ecalloc(encoded_len, 1);
1660 d_ptr = *decoded;
1661 e_ptr = encoded;
1662
1663 while (((e_ptr - encoded) - encoded_len) > 0) {
1664 char hex_len[9] = {0};
1665 size_t chunk_len = 0;
1666 int i = 0;
1667
1668 /* read in chunk size */
1669 while (isxdigit(*e_ptr)) {
1670 if (i == 9) {
1671 php_error_docref(NULL TSRMLS_CC, E_WARNING,
1672 "Chunk size is too long: 0x%s...", hex_len);
1673 efree(*decoded);
1674 return FAILURE;
1675 }
1676 hex_len[i++] = *e_ptr++;
1677 }
1678
1679 /* reached the end */
1680 if (!strcmp(hex_len, "0")) {
1681 break;
1682 }
1683
1684 /* new line */
1685 if (strncmp(e_ptr, HTTP_CRLF, 2)) {
1686 php_error_docref(NULL TSRMLS_CC, E_WARNING,
1687 "Invalid character (expected 0x0D 0x0A; got: %x %x)",
1688 *e_ptr, *(e_ptr + 1));
1689 efree(*decoded);
1690 return FAILURE;
1691 }
1692
1693 /* hex to long */
1694 {
1695 char *error = NULL;
1696 chunk_len = strtol(hex_len, &error, 16);
1697 if (error == hex_len) {
1698 php_error_docref(NULL TSRMLS_CC, E_WARNING,
1699 "Invalid chunk size string: '%s'", hex_len);
1700 efree(*decoded);
1701 return FAILURE;
1702 }
1703 }
1704
1705 memcpy(d_ptr, e_ptr += 2, chunk_len);
1706 d_ptr += chunk_len;
1707 e_ptr += chunk_len + 2;
1708 *decoded_len += chunk_len;
1709 }
1710
1711 return SUCCESS;
1712 }
1713 /* }}} */
1714
1715 /* {{{ proto STATUS http_split_response(zval *, zval *, zval *) */
1716 PHP_HTTP_API STATUS _http_split_response(const zval *zresponse, zval *zheaders,
1717 zval *zbody TSRMLS_DC)
1718 {
1719 char *header, *response, *body = NULL;
1720 long response_len = Z_STRLEN_P(zresponse);
1721 header = response = Z_STRVAL_P(zresponse);
1722
1723 while ((response - Z_STRVAL_P(zresponse) + 3) < response_len) {
1724 if ( (*response++ == '\r') &&
1725 (*response++ == '\n') &&
1726 (*response++ == '\r') &&
1727 (*response++ == '\n')) {
1728 body = response;
1729 break;
1730 }
1731 }
1732
1733 if (body && (response_len - (body - header))) {
1734 ZVAL_STRINGL(zbody, body, response_len - (body - header) - 1, 1);
1735 } else {
1736 Z_TYPE_P(zbody) = IS_NULL;
1737 }
1738
1739 return http_parse_headers(header, body - Z_STRVAL_P(zresponse), zheaders);
1740 }
1741 /* }}} */
1742
1743 /* {{{ STATUS http_parse_headers(char *, long, zval *) */
1744 PHP_HTTP_API STATUS _http_parse_headers(char *header, int header_len, zval *array TSRMLS_DC)
1745 {
1746 char *colon = NULL, *line = NULL, *begin = header;
1747
1748 if (header_len < 2) {
1749 return FAILURE;
1750 }
1751
1752 /* status code */
1753 if (!strncmp(header, "HTTP/1.", 7)) {
1754 char *end = strstr(header, HTTP_CRLF);
1755 add_assoc_stringl(array, "Status",
1756 header + strlen("HTTP/1.x "),
1757 end - (header + strlen("HTTP/1.x ")), 1);
1758 header = end + 2;
1759 }
1760
1761 line = header;
1762
1763 while (header_len >= (line - begin)) {
1764 int value_len = 0;
1765
1766 switch (*line++)
1767 {
1768 case 0:
1769 --value_len; /* we don't have CR so value length is one char less */
1770 case '\n':
1771 if (colon && ((!(*line - 1)) || ((*line != ' ') && (*line != '\t')))) {
1772
1773 /* skip empty key */
1774 if (header != colon) {
1775 char *key = estrndup(header, colon - header);
1776 value_len += line - colon - 1;
1777
1778 /* skip leading ws */
1779 while (isspace(*(++colon))) --value_len;
1780 /* skip trailing ws */
1781 while (isspace(colon[value_len - 1])) --value_len;
1782
1783 if (value_len < 1) {
1784 /* hm, empty header? */
1785 add_assoc_stringl(array, key, "", 0, 1);
1786 } else {
1787 add_assoc_stringl(array, key, colon, value_len, 1);
1788 }
1789 efree(key);
1790 }
1791
1792 colon = NULL;
1793 value_len = 0;
1794 header += line - header;
1795 }
1796 break;
1797
1798 case ':':
1799 if (!colon) {
1800 colon = line - 1;
1801 }
1802 break;
1803 }
1804 }
1805 return SUCCESS;
1806 }
1807 /* }}} */
1808
1809 /* {{{ void http_get_request_headers(zval *) */
1810 PHP_HTTP_API void _http_get_request_headers(zval *array TSRMLS_DC)
1811 {
1812 char *key;
1813
1814 for ( zend_hash_internal_pointer_reset(HTTP_SERVER_VARS);
1815 zend_hash_get_current_key(HTTP_SERVER_VARS, &key, NULL, 0) != HASH_KEY_NON_EXISTANT;
1816 zend_hash_move_forward(HTTP_SERVER_VARS)) {
1817 if (!strncmp(key, "HTTP_", 5)) {
1818 zval **header;
1819 zend_hash_get_current_data(HTTP_SERVER_VARS, (void **) &header);
1820 add_assoc_stringl(array, pretty_key(key + 5, strlen(key) - 5, 1, 1), Z_STRVAL_PP(header), Z_STRLEN_PP(header), 1);
1821 }
1822 }
1823 }
1824 /* }}} */
1825
1826 /* {{{ HAVE_CURL */
1827 #ifdef HTTP_HAVE_CURL
1828
1829 /* {{{ STATUS http_get(char *, HashTable *, HashTable *, char **, size_t *) */
1830 PHP_HTTP_API STATUS _http_get(const char *URL, HashTable *options,
1831 HashTable *info, char **data, size_t *data_len TSRMLS_DC)
1832 {
1833 CURL *ch = curl_easy_init();
1834
1835 if (!ch) {
1836 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Could not initialize curl");
1837 return FAILURE;
1838 }
1839
1840 http_curl_initbuf(CURLBUF_EVRY);
1841 http_curl_setopts(ch, URL, options);
1842
1843 if (CURLE_OK != curl_easy_perform(ch)) {
1844 curl_easy_cleanup(ch);
1845 http_curl_freebuf(CURLBUF_EVRY);
1846 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Could not perform request");
1847 return FAILURE;
1848 }
1849 if (info) {
1850 http_curl_getinfo(ch, info);
1851 }
1852 curl_easy_cleanup(ch);
1853
1854 http_curl_movebuf(CURLBUF_EVRY, data, data_len);
1855
1856 return SUCCESS;
1857 }
1858 /* }}} */
1859
1860 /* {{{ STATUS http_head(char *, HashTable *, HashTable *, char **data, size_t *) */
1861 PHP_HTTP_API STATUS _http_head(const char *URL, HashTable *options,
1862 HashTable *info, char **data, size_t *data_len TSRMLS_DC)
1863 {
1864 CURL *ch = curl_easy_init();
1865
1866 if (!ch) {
1867 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Could not initialize curl");
1868 return FAILURE;
1869 }
1870
1871 http_curl_initbuf(CURLBUF_HDRS);
1872 http_curl_setopts(ch, URL, options);
1873 curl_easy_setopt(ch, CURLOPT_NOBODY, 1);
1874
1875 if (CURLE_OK != curl_easy_perform(ch)) {
1876 curl_easy_cleanup(ch);
1877 http_curl_freebuf(CURLBUF_HDRS);
1878 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Could not perform request");
1879 return FAILURE;
1880 }
1881 if (info) {
1882 http_curl_getinfo(ch, info);
1883 }
1884 curl_easy_cleanup(ch);
1885
1886 http_curl_movebuf(CURLBUF_HDRS, data, data_len);
1887
1888 return SUCCESS;
1889 }
1890 /* }}} */
1891
1892 /* {{{ STATUS http_post_data(char *, char *, size_t, HashTable *, HashTable *, char **, size_t *) */
1893 PHP_HTTP_API STATUS _http_post_data(const char *URL, char *postdata,
1894 size_t postdata_len, HashTable *options, HashTable *info, char **data,
1895 size_t *data_len TSRMLS_DC)
1896 {
1897 CURL *ch = curl_easy_init();
1898
1899 if (!ch) {
1900 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Could not initialize curl");
1901 return FAILURE;
1902 }
1903
1904 http_curl_initbuf(CURLBUF_EVRY);
1905 http_curl_setopts(ch, URL, options);
1906 curl_easy_setopt(ch, CURLOPT_POST, 1);
1907 curl_easy_setopt(ch, CURLOPT_POSTFIELDS, postdata);
1908 curl_easy_setopt(ch, CURLOPT_POSTFIELDSIZE, postdata_len);
1909
1910 if (CURLE_OK != curl_easy_perform(ch)) {
1911 curl_easy_cleanup(ch);
1912 http_curl_freebuf(CURLBUF_EVRY);
1913 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Could not perform request");
1914 return FAILURE;
1915 }
1916 if (info) {
1917 http_curl_getinfo(ch, info);
1918 }
1919 curl_easy_cleanup(ch);
1920
1921 http_curl_movebuf(CURLBUF_EVRY, data, data_len);
1922
1923 return SUCCESS;
1924 }
1925 /* }}} */
1926
1927 /* {{{ STATUS http_post_array(char *, HashTable *, HashTable *, HashTable *, char **, size_t *) */
1928 PHP_HTTP_API STATUS _http_post_array(const char *URL, HashTable *postarray,
1929 HashTable *options, HashTable *info, char **data, size_t *data_len TSRMLS_DC)
1930 {
1931 smart_str qstr = {0};
1932 STATUS status;
1933
1934 if (php_url_encode_hash_ex(postarray, &qstr, NULL,0,NULL,0,NULL,0,NULL TSRMLS_CC) != SUCCESS) {
1935 if (qstr.c) {
1936 efree(qstr.c);
1937 }
1938 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Could not encode post data");
1939 return FAILURE;
1940 }
1941 smart_str_0(&qstr);
1942
1943 status = http_post_data(URL, qstr.c, qstr.len, options, info, data, data_len);
1944 if (qstr.c) {
1945 efree(qstr.c);
1946 }
1947 return status;
1948 }
1949 /* }}} */
1950
1951 #endif
1952 /* }}} HAVE_CURL */
1953
1954 /* {{{ STATUS http_auth_header(char *, char*) */
1955 PHP_HTTP_API STATUS _http_auth_header(const char *type, const char *realm TSRMLS_DC)
1956 {
1957 char realm_header[1024] = {0};
1958 snprintf(realm_header, 1023, "WWW-Authenticate: %s realm=\"%s\"", type, realm);
1959 return http_send_status_header(401, realm_header);
1960 }
1961 /* }}} */
1962
1963 /* {{{ STATUS http_auth_credentials(char **, char **) */
1964 PHP_HTTP_API STATUS _http_auth_credentials(char **user, char **pass TSRMLS_DC)
1965 {
1966 if (strncmp(sapi_module.name, "isapi", 5)) {
1967 zval *zuser, *zpass;
1968
1969 HTTP_GSC(zuser, "PHP_AUTH_USER", FAILURE);
1970 HTTP_GSC(zpass, "PHP_AUTH_PW", FAILURE);
1971
1972 *user = estrndup(Z_STRVAL_P(zuser), Z_STRLEN_P(zuser));
1973 *pass = estrndup(Z_STRVAL_P(zpass), Z_STRLEN_P(zpass));
1974
1975 return SUCCESS;
1976 } else {
1977 zval *zauth = NULL;
1978 HTTP_GSC(zauth, "HTTP_AUTHORIZATION", FAILURE);
1979 {
1980 char *decoded, *colon;
1981 int decoded_len;
1982 decoded = php_base64_decode(Z_STRVAL_P(zauth), Z_STRLEN_P(zauth),
1983 &decoded_len);
1984
1985 if (colon = strchr(decoded + 6, ':')) {
1986 *user = estrndup(decoded + 6, colon - decoded - 6);
1987 *pass = estrndup(colon + 1, decoded + decoded_len - colon - 6 - 1);
1988
1989 return SUCCESS;
1990 } else {
1991 return FAILURE;
1992 }
1993 }
1994 }
1995 }
1996 /* }}} */
1997
1998 /* }}} public API */
1999
2000 /*
2001 * Local variables:
2002 * tab-width: 4
2003 * c-basic-offset: 4
2004 * End:
2005 * vim600: noet sw=4 ts=4 fdm=marker
2006 * vim<600: noet sw=4 ts=4
2007 */