- add flush() to encoding stream (filters)
[m6w6/ext-http] / http_request_api.c
1 /*
2 +--------------------------------------------------------------------+
3 | PECL :: http |
4 +--------------------------------------------------------------------+
5 | Redistribution and use in source and binary forms, with or without |
6 | modification, are permitted provided that the conditions mentioned |
7 | in the accompanying LICENSE file are met. |
8 +--------------------------------------------------------------------+
9 | Copyright (c) 2004-2005, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
11 */
12
13 /* $Id$ */
14
15 #ifdef HAVE_CONFIG_H
16 # include "config.h"
17 #endif
18
19 #define HTTP_WANT_CURL
20 #include "php_http.h"
21
22 #ifdef HTTP_HAVE_CURL
23
24 #include "php_http_api.h"
25 #include "php_http_request_api.h"
26 #include "php_http_url_api.h"
27
28 #ifdef ZEND_ENGINE_2
29 # include "php_http_request_object.h"
30 #endif
31
32 ZEND_EXTERN_MODULE_GLOBALS(http);
33
34 /* {{{ cruft for thread safe SSL crypto locks */
35 #if defined(ZTS) && defined(HTTP_HAVE_SSL)
36 # ifdef PHP_WIN32
37 # define HTTP_NEED_SSL_TSL
38 # define HTTP_NEED_OPENSSL_TSL
39 # include <openssl/crypto.h>
40 # else /* !PHP_WIN32 */
41 # if defined(HTTP_HAVE_OPENSSL)
42 # if defined(HAVE_OPENSSL_CRYPTO_H)
43 # define HTTP_NEED_SSL_TSL
44 # define HTTP_NEED_OPENSSL_TSL
45 # include <openssl/crypto.h>
46 # else
47 # warning \
48 "libcurl was compiled with OpenSSL support, but configure could not find " \
49 "openssl/crypto.h; thus no SSL crypto locking callbacks will be set, which may " \
50 "cause random crashes on SSL requests"
51 # endif
52 # elif defined(HTTP_HAVE_GNUTLS)
53 # if defined(HAVE_GCRYPT_H)
54 # define HTTP_NEED_SSL_TSL
55 # define HTTP_NEED_GNUTLS_TSL
56 # include <gcrypt.h>
57 # else
58 # warning \
59 "libcurl was compiled with GnuTLS support, but configure could not find " \
60 "gcrypt.h; thus no SSL crypto locking callbacks will be set, which may " \
61 "cause random crashes on SSL requests"
62 # endif
63 # else
64 # warning \
65 "libcurl was compiled with SSL support, but configure could not determine which" \
66 "library was used; thus no SSL crypto locking callbacks will be set, which may " \
67 "cause random crashes on SSL requests"
68 # endif /* HTTP_HAVE_OPENSSL || HTTP_HAVE_GNUTLS */
69 # endif /* PHP_WIN32 */
70 #endif /* ZTS && HTTP_HAVE_SSL */
71
72 #ifdef HTTP_NEED_SSL_TSL
73 static inline void http_ssl_init(void);
74 static inline void http_ssl_cleanup(void);
75 #endif
76 /* }}} */
77
78 /* {{{ MINIT */
79 PHP_MINIT_FUNCTION(http_request)
80 {
81 #ifdef HTTP_NEED_SSL_TSL
82 http_ssl_init();
83 #endif
84
85 if (CURLE_OK != curl_global_init(CURL_GLOBAL_ALL)) {
86 return FAILURE;
87 }
88
89 HTTP_LONG_CONSTANT("HTTP_AUTH_BASIC", CURLAUTH_BASIC);
90 HTTP_LONG_CONSTANT("HTTP_AUTH_DIGEST", CURLAUTH_DIGEST);
91 HTTP_LONG_CONSTANT("HTTP_AUTH_NTLM", CURLAUTH_NTLM);
92 HTTP_LONG_CONSTANT("HTTP_AUTH_ANY", CURLAUTH_ANY);
93
94 return SUCCESS;
95 }
96 /* }}} */
97
98 /* {{{ MSHUTDOWN */
99 PHP_MSHUTDOWN_FUNCTION(http_request)
100 {
101 curl_global_cleanup();
102 #ifdef HTTP_NEED_SSL_TSL
103 http_ssl_cleanup();
104 #endif
105 return SUCCESS;
106 }
107 /* }}} */
108
109 /* {{{ MACROS */
110 #ifndef HAVE_CURL_EASY_STRERROR
111 # define curl_easy_strerror(dummy) "unkown error"
112 #endif
113
114 #define HTTP_CURL_INFO(I) HTTP_CURL_INFO_EX(I, I)
115 #define HTTP_CURL_INFO_EX(I, X) \
116 switch (CURLINFO_ ##I & ~CURLINFO_MASK) \
117 { \
118 case CURLINFO_STRING: \
119 { \
120 char *c; \
121 if (CURLE_OK == curl_easy_getinfo(request->ch, CURLINFO_ ##I, &c)) { \
122 char *key = estrndup(#X, lenof(#X)); \
123 add_assoc_string(&array, pretty_key(key, lenof(#X), 0, 0), c ? c : "", 1); \
124 efree(key); \
125 } \
126 } \
127 break; \
128 \
129 case CURLINFO_DOUBLE: \
130 { \
131 double d; \
132 if (CURLE_OK == curl_easy_getinfo(request->ch, CURLINFO_ ##I, &d)) { \
133 char *key = estrndup(#X, lenof(#X)); \
134 add_assoc_double(&array, pretty_key(key, lenof(#X), 0, 0), d); \
135 efree(key); \
136 } \
137 } \
138 break; \
139 \
140 case CURLINFO_LONG: \
141 { \
142 long l; \
143 if (CURLE_OK == curl_easy_getinfo(request->ch, CURLINFO_ ##I, &l)) { \
144 char *key = estrndup(#X, lenof(#X)); \
145 add_assoc_long(&array, pretty_key(key, lenof(#X), 0, 0), l); \
146 efree(key); \
147 } \
148 } \
149 break; \
150 \
151 case CURLINFO_SLIST: \
152 { \
153 struct curl_slist *l, *p; \
154 if (CURLE_OK == curl_easy_getinfo(request->ch, CURLINFO_ ##I, &l)) { \
155 zval *subarray; \
156 char *key = estrndup(#X, lenof(#X)); \
157 MAKE_STD_ZVAL(subarray); \
158 array_init(subarray); \
159 for (p = l; p; p = p->next) { \
160 add_next_index_string(subarray, p->data, 1); \
161 } \
162 add_assoc_zval(&array, pretty_key(key, lenof(#X), 0, 0), subarray); \
163 curl_slist_free_all(l); \
164 efree(key); \
165 } \
166 } \
167 }
168
169 #define HTTP_CURL_OPT(OPTION, p) curl_easy_setopt(request->ch, CURLOPT_##OPTION, (p))
170 #define HTTP_CURL_OPT_STRING(keyname, obdc) HTTP_CURL_OPT_STRING_EX(keyname, keyname, obdc)
171 #define HTTP_CURL_OPT_SSL_STRING(keyname, obdc) HTTP_CURL_OPT_STRING_EX(keyname, SSL##keyname, obdc)
172 #define HTTP_CURL_OPT_SSL_STRING_(keyname,obdc ) HTTP_CURL_OPT_STRING_EX(keyname, SSL_##keyname, obdc)
173 #define HTTP_CURL_OPT_STRING_EX(keyname, optname, obdc) \
174 if (!strcasecmp(key, #keyname)) { \
175 int ok = 1; \
176 zval *orig = *param; \
177 convert_to_string_ex(param); \
178 if (obdc) { \
179 HTTP_CHECK_OPEN_BASEDIR(Z_STRVAL_PP(param), ok = 0); \
180 } \
181 key = NULL; \
182 if (ok) { \
183 HTTP_CURL_OPT(optname, Z_STRVAL_PP(param)); \
184 if (orig != *param) zval_ptr_dtor(param); \
185 continue; \
186 } \
187 if (orig != *param) zval_ptr_dtor(param); \
188 return FAILURE; \
189 }
190 #define HTTP_CURL_OPT_LONG(keyname) HTTP_OPT_SSL_LONG_EX(keyname, keyname)
191 #define HTTP_CURL_OPT_SSL_LONG(keyname) HTTP_CURL_OPT_LONG_EX(keyname, SSL##keyname)
192 #define HTTP_CURL_OPT_SSL_LONG_(keyname) HTTP_CURL_OPT_LONG_EX(keyname, SSL_##keyname)
193 #define HTTP_CURL_OPT_LONG_EX(keyname, optname) \
194 if (!strcasecmp(key, #keyname)) { \
195 convert_to_long(*param); \
196 HTTP_CURL_OPT(optname, Z_LVAL_PP(param)); \
197 key = NULL; \
198 continue; \
199 }
200 /* }}} */
201
202 /* {{{ forward declarations */
203 #define http_request_option(r, o, k, t) _http_request_option_ex((r), (o), (k), sizeof(k), (t) TSRMLS_CC)
204 #define http_request_option_ex(r, o, k, l, t) _http_request_option_ex((r), (o), (k), (l), (t) TSRMLS_CC)
205 static inline zval *_http_request_option_ex(http_request *request, HashTable *options, char *key, size_t keylen, int type TSRMLS_DC);
206
207 static size_t http_curl_read_callback(void *, size_t, size_t, void *);
208 static int http_curl_progress_callback(void *, double, double, double, double);
209 static int http_curl_raw_callback(CURL *, curl_infotype, char *, size_t, void *);
210 static int http_curl_dummy_callback(char *data, size_t n, size_t l, void *s) { return n*l; }
211 static curlioerr http_curl_ioctl_callback(CURL *, curliocmd, void *);
212 /* }}} */
213
214 /* {{{ http_request *http_request_init(http_request *) */
215 PHP_HTTP_API http_request *_http_request_init_ex(http_request *request, CURL *ch, http_request_method meth, const char *url ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC TSRMLS_DC)
216 {
217 http_request *r;
218
219 if (request) {
220 r = request;
221 } else {
222 r = emalloc_rel(sizeof(http_request));
223 }
224 memset(r, 0, sizeof(http_request));
225
226 r->ch = ch;
227 r->url = (url && *url) ? estrdup(url) : NULL;
228 r->meth = (meth > 0) ? meth : HTTP_GET;
229
230 phpstr_init(&r->conv.request);
231 phpstr_init_ex(&r->conv.response, HTTP_CURLBUF_SIZE, 0);
232 phpstr_init(&r->_cache.cookies);
233 zend_hash_init(&r->_cache.options, 0, NULL, ZVAL_PTR_DTOR, 0);
234
235 TSRMLS_SET_CTX(r->tsrm_ls);
236
237 return r;
238 }
239 /* }}} */
240
241 /* {{{ void http_request_dtor(http_request *) */
242 PHP_HTTP_API void _http_request_dtor(http_request *request)
243 {
244 TSRMLS_FETCH_FROM_CTX(request->tsrm_ls);
245
246 if (request->ch) {
247 /* avoid nasty segfaults with already cleaned up callbacks */
248 curl_easy_setopt(request->ch, CURLOPT_NOPROGRESS, 1);
249 curl_easy_setopt(request->ch, CURLOPT_PROGRESSFUNCTION, NULL);
250 curl_easy_setopt(request->ch, CURLOPT_VERBOSE, 0);
251 curl_easy_setopt(request->ch, CURLOPT_DEBUGFUNCTION, NULL);
252 curl_easy_cleanup(request->ch);
253 request->ch = NULL;
254 }
255
256 http_request_reset(request);
257
258 phpstr_dtor(&request->_cache.cookies);
259 zend_hash_destroy(&request->_cache.options);
260 if (request->_cache.headers) {
261 curl_slist_free_all(request->_cache.headers);
262 request->_cache.headers = NULL;
263 }
264 if (request->_progress_callback) {
265 zval_ptr_dtor(&request->_progress_callback);
266 request->_progress_callback = NULL;
267 }
268 }
269 /* }}} */
270
271 /* {{{ void http_request_free(http_request **) */
272 PHP_HTTP_API void _http_request_free(http_request **request)
273 {
274 if (*request) {
275 TSRMLS_FETCH_FROM_CTX((*request)->tsrm_ls);
276 http_request_body_free(&(*request)->body);
277 http_request_dtor(*request);
278 efree(*request);
279 *request = NULL;
280 }
281 }
282 /* }}} */
283
284 /* {{{ void http_request_reset(http_request *) */
285 PHP_HTTP_API void _http_request_reset(http_request *request)
286 {
287 TSRMLS_FETCH_FROM_CTX(request->tsrm_ls);
288 STR_SET(request->url, NULL);
289 request->conv.last_type = 0;
290 phpstr_dtor(&request->conv.request);
291 phpstr_dtor(&request->conv.response);
292 http_request_body_dtor(request->body);
293 }
294 /* }}} */
295
296 /* {{{ void http_request_defaults(http_request *) */
297 PHP_HTTP_API void _http_request_defaults(http_request *request)
298 {
299 if (request->ch) {
300 #ifdef HAVE_CURL_EASY_RESET
301 curl_easy_reset(request->ch);
302 #endif
303 #if defined(ZTS)
304 HTTP_CURL_OPT(NOSIGNAL, 1);
305 #endif
306 HTTP_CURL_OPT(PRIVATE, request);
307 HTTP_CURL_OPT(ERRORBUFFER, request->_error);
308 HTTP_CURL_OPT(HEADER, 0);
309 HTTP_CURL_OPT(FILETIME, 1);
310 HTTP_CURL_OPT(AUTOREFERER, 1);
311 HTTP_CURL_OPT(VERBOSE, 1);
312 HTTP_CURL_OPT(HEADERFUNCTION, NULL);
313 HTTP_CURL_OPT(DEBUGFUNCTION, http_curl_raw_callback);
314 HTTP_CURL_OPT(READFUNCTION, http_curl_read_callback);
315 HTTP_CURL_OPT(IOCTLFUNCTION, http_curl_ioctl_callback);
316 HTTP_CURL_OPT(WRITEFUNCTION, http_curl_dummy_callback);
317 HTTP_CURL_OPT(PROGRESSFUNCTION, NULL);
318 HTTP_CURL_OPT(URL, NULL);
319 HTTP_CURL_OPT(NOPROGRESS, 1);
320 HTTP_CURL_OPT(PROXY, NULL);
321 HTTP_CURL_OPT(PROXYPORT, 0);
322 HTTP_CURL_OPT(PROXYUSERPWD, NULL);
323 HTTP_CURL_OPT(PROXYAUTH, 0);
324 HTTP_CURL_OPT(INTERFACE, NULL);
325 HTTP_CURL_OPT(PORT, 0);
326 HTTP_CURL_OPT(USERPWD, NULL);
327 HTTP_CURL_OPT(HTTPAUTH, 0);
328 HTTP_CURL_OPT(ENCODING, NULL);
329 HTTP_CURL_OPT(FOLLOWLOCATION, 0);
330 HTTP_CURL_OPT(UNRESTRICTED_AUTH, 0);
331 HTTP_CURL_OPT(REFERER, NULL);
332 HTTP_CURL_OPT(USERAGENT, "PECL::HTTP/" PHP_EXT_HTTP_VERSION " (PHP/" PHP_VERSION ")");
333 HTTP_CURL_OPT(HTTPHEADER, NULL);
334 HTTP_CURL_OPT(COOKIE, NULL);
335 HTTP_CURL_OPT(COOKIEFILE, NULL);
336 HTTP_CURL_OPT(COOKIEJAR, NULL);
337 HTTP_CURL_OPT(RESUME_FROM, 0);
338 HTTP_CURL_OPT(MAXFILESIZE, 0);
339 HTTP_CURL_OPT(TIMECONDITION, 0);
340 HTTP_CURL_OPT(TIMEVALUE, 0);
341 HTTP_CURL_OPT(TIMEOUT, 0);
342 HTTP_CURL_OPT(CONNECTTIMEOUT, 3);
343 HTTP_CURL_OPT(SSLCERT, NULL);
344 HTTP_CURL_OPT(SSLCERTTYPE, NULL);
345 HTTP_CURL_OPT(SSLCERTPASSWD, NULL);
346 HTTP_CURL_OPT(SSLKEY, NULL);
347 HTTP_CURL_OPT(SSLKEYTYPE, NULL);
348 HTTP_CURL_OPT(SSLKEYPASSWD, NULL);
349 HTTP_CURL_OPT(SSLENGINE, NULL);
350 HTTP_CURL_OPT(SSLVERSION, 0);
351 HTTP_CURL_OPT(SSL_VERIFYPEER, 0);
352 HTTP_CURL_OPT(SSL_VERIFYHOST, 0);
353 HTTP_CURL_OPT(SSL_CIPHER_LIST, NULL);
354 HTTP_CURL_OPT(CAINFO, NULL);
355 HTTP_CURL_OPT(CAPATH, NULL);
356 HTTP_CURL_OPT(RANDOM_FILE, NULL);
357 HTTP_CURL_OPT(EGDSOCKET, NULL);
358 HTTP_CURL_OPT(POSTFIELDS, NULL);
359 HTTP_CURL_OPT(POSTFIELDSIZE, 0);
360 HTTP_CURL_OPT(HTTPPOST, NULL);
361 HTTP_CURL_OPT(IOCTLDATA, NULL);
362 HTTP_CURL_OPT(READDATA, NULL);
363 HTTP_CURL_OPT(INFILESIZE, 0);
364 }
365 }
366 /* }}} */
367
368 PHP_HTTP_API void _http_request_set_progress_callback(http_request *request, zval *cb)
369 {
370 TSRMLS_FETCH_FROM_CTX(request->tsrm_ls);
371
372 if (request->_progress_callback) {
373 zval_ptr_dtor(&request->_progress_callback);
374 }
375 if (cb) {
376 ZVAL_ADDREF(cb);
377 }
378 request->_progress_callback = cb;
379 }
380
381 /* {{{ STATUS http_request_prepare(http_request *, HashTable *) */
382 PHP_HTTP_API STATUS _http_request_prepare(http_request *request, HashTable *options)
383 {
384 zval *zoption;
385 zend_bool range_req = 0;
386
387 TSRMLS_FETCH_FROM_CTX(request->tsrm_ls);
388
389 HTTP_CHECK_CURL_INIT(request->ch, curl_easy_init(), return FAILURE);
390
391 http_request_defaults(request);
392
393 /* set options */
394 HTTP_CURL_OPT(DEBUGDATA, request);
395 HTTP_CURL_OPT(URL, request->url);
396
397 /* progress callback */
398 if ((zoption = http_request_option(request, options, "onprogress", 0))) {
399 HTTP_CURL_OPT(NOPROGRESS, 0);
400 HTTP_CURL_OPT(PROGRESSDATA, request);
401 HTTP_CURL_OPT(PROGRESSFUNCTION, http_curl_progress_callback);
402 http_request_set_progress_callback(request, zoption);
403 }
404
405 /* proxy */
406 if ((zoption = http_request_option(request, options, "proxyhost", IS_STRING))) {
407 HTTP_CURL_OPT(PROXY, Z_STRVAL_P(zoption));
408 /* port */
409 if ((zoption = http_request_option(request, options, "proxyport", IS_LONG))) {
410 HTTP_CURL_OPT(PROXYPORT, Z_LVAL_P(zoption));
411 }
412 /* user:pass */
413 if ((zoption = http_request_option(request, options, "proxyauth", IS_STRING))) {
414 HTTP_CURL_OPT(PROXYUSERPWD, Z_STRVAL_P(zoption));
415 }
416 /* auth method */
417 if ((zoption = http_request_option(request, options, "proxyauthtype", IS_LONG))) {
418 HTTP_CURL_OPT(PROXYAUTH, Z_LVAL_P(zoption));
419 }
420 }
421
422 /* outgoing interface */
423 if ((zoption = http_request_option(request, options, "interface", IS_STRING))) {
424 HTTP_CURL_OPT(INTERFACE, Z_STRVAL_P(zoption));
425 }
426
427 /* another port */
428 if ((zoption = http_request_option(request, options, "port", IS_LONG))) {
429 HTTP_CURL_OPT(PORT, Z_LVAL_P(zoption));
430 }
431
432 /* auth */
433 if ((zoption = http_request_option(request, options, "httpauth", IS_STRING))) {
434 HTTP_CURL_OPT(USERPWD, Z_STRVAL_P(zoption));
435 }
436 if ((zoption = http_request_option(request, options, "httpauthtype", IS_LONG))) {
437 HTTP_CURL_OPT(HTTPAUTH, Z_LVAL_P(zoption));
438 }
439
440 /* redirects, defaults to 0 */
441 if ((zoption = http_request_option(request, options, "redirect", IS_LONG))) {
442 HTTP_CURL_OPT(FOLLOWLOCATION, Z_LVAL_P(zoption) ? 1 : 0);
443 HTTP_CURL_OPT(MAXREDIRS, Z_LVAL_P(zoption));
444 if ((zoption = http_request_option(request, options, "unrestrictedauth", IS_BOOL))) {
445 HTTP_CURL_OPT(UNRESTRICTED_AUTH, Z_LVAL_P(zoption));
446 }
447 }
448
449 /* referer */
450 if ((zoption = http_request_option(request, options, "referer", IS_STRING))) {
451 HTTP_CURL_OPT(REFERER, Z_STRVAL_P(zoption));
452 }
453
454 /* useragent, default "PECL::HTTP/version (PHP/version)" */
455 if ((zoption = http_request_option(request, options, "useragent", IS_STRING))) {
456 HTTP_CURL_OPT(USERAGENT, Z_STRVAL_P(zoption));
457 }
458
459 /* additional headers, array('name' => 'value') */
460 if (request->_cache.headers) {
461 curl_slist_free_all(request->_cache.headers);
462 request->_cache.headers = NULL;
463 }
464 if ((zoption = http_request_option(request, options, "headers", IS_ARRAY))) {
465 char *header_key;
466 ulong header_idx;
467 HashPosition pos;
468
469 FOREACH_KEY(pos, zoption, header_key, header_idx) {
470 if (header_key) {
471 zval **header_val;
472 if (SUCCESS == zend_hash_get_current_data_ex(Z_ARRVAL_P(zoption), (void **) &header_val, &pos)) {
473 char header[1024] = {0};
474 zval val;
475
476 val = **header_val;
477 zval_copy_ctor(&val);
478 INIT_PZVAL(&val);
479 convert_to_string(&val);
480
481 snprintf(header, 1023, "%s: %s", header_key, Z_STRVAL(val));
482 request->_cache.headers = curl_slist_append(request->_cache.headers, header);
483 zval_dtor(&val);
484 }
485
486 /* reset */
487 header_key = NULL;
488 }
489 }
490 }
491 if ((zoption = http_request_option(request, options, "compress", IS_BOOL)) && Z_LVAL_P(zoption)) {
492 request->_cache.headers = curl_slist_append(request->_cache.headers, "Accept-Encoding: gzip;q=1.0,deflate;q=0.5,*;q=0.1");
493 }
494 HTTP_CURL_OPT(HTTPHEADER, request->_cache.headers);
495
496 /* cookies, array('name' => 'value') */
497 if ((zoption = http_request_option(request, options, "cookies", IS_ARRAY))) {
498 phpstr_dtor(&request->_cache.cookies);
499 if (SUCCESS == http_urlencode_hash_recursive(HASH_OF(zoption), &request->_cache.cookies, "; ", sizeof("; ")-1, NULL, 0)) {
500 phpstr_fix(&request->_cache.cookies);
501 HTTP_CURL_OPT(COOKIE, request->_cache.cookies.data);
502 }
503 }
504
505 #if LIBCURL_VERSIONNUM >= 0x070f01
506 /* reset cookies */
507 if ((zoption = http_request_option(request, options, "resetcookies", IS_BOOL)) && Z_LVAL_P(zoption)) {
508 HTTP_CURL_OPT(COOKIELIST, "ALL");
509 }
510 #endif
511
512 /* session cookies */
513 if ((zoption = http_request_option(request, options, "cookiesession", IS_BOOL))) {
514 if (Z_LVAL_P(zoption)) {
515 /* accept cookies for this session */
516 HTTP_CURL_OPT(COOKIEFILE, "");
517 } else {
518 /* reset session cookies */
519 HTTP_CURL_OPT(COOKIESESSION, 1);
520 }
521 }
522
523 /* cookiestore, read initial cookies from that file and store cookies back into that file */
524 if ((zoption = http_request_option(request, options, "cookiestore", IS_STRING)) && Z_STRLEN_P(zoption)) {
525 HTTP_CHECK_OPEN_BASEDIR(Z_STRVAL_P(zoption), return FAILURE);
526 HTTP_CURL_OPT(COOKIEFILE, Z_STRVAL_P(zoption));
527 HTTP_CURL_OPT(COOKIEJAR, Z_STRVAL_P(zoption));
528 }
529
530 /* resume */
531 if ((zoption = http_request_option(request, options, "resume", IS_LONG)) && (Z_LVAL_P(zoption) != 0)) {
532 range_req = 1;
533 HTTP_CURL_OPT(RESUME_FROM, Z_LVAL_P(zoption));
534 }
535
536 /* maxfilesize */
537 if ((zoption = http_request_option(request, options, "maxfilesize", IS_LONG))) {
538 HTTP_CURL_OPT(MAXFILESIZE, Z_LVAL_P(zoption));
539 }
540
541 /* lastmodified */
542 if ((zoption = http_request_option(request, options, "lastmodified", IS_LONG))) {
543 if (Z_LVAL_P(zoption)) {
544 if (Z_LVAL_P(zoption) > 0) {
545 HTTP_CURL_OPT(TIMEVALUE, Z_LVAL_P(zoption));
546 } else {
547 HTTP_CURL_OPT(TIMEVALUE, time(NULL) + Z_LVAL_P(zoption));
548 }
549 HTTP_CURL_OPT(TIMECONDITION, range_req ? CURL_TIMECOND_IFUNMODSINCE : CURL_TIMECOND_IFMODSINCE);
550 } else {
551 HTTP_CURL_OPT(TIMECONDITION, CURL_TIMECOND_NONE);
552 }
553 }
554
555 /* timeout, defaults to 0 */
556 if ((zoption = http_request_option(request, options, "timeout", IS_LONG))) {
557 HTTP_CURL_OPT(TIMEOUT, Z_LVAL_P(zoption));
558 }
559
560 /* connecttimeout, defaults to 3 */
561 if ((zoption = http_request_option(request, options, "connecttimeout", IS_LONG))) {
562 HTTP_CURL_OPT(CONNECTTIMEOUT, Z_LVAL_P(zoption));
563 }
564
565 /* ssl */
566 if ((zoption = http_request_option(request, options, "ssl", IS_ARRAY))) {
567 ulong idx;
568 char *key = NULL;
569 zval **param;
570 HashPosition pos;
571
572 FOREACH_KEYVAL(pos, zoption, key, idx, param) {
573 if (key) {
574 HTTP_CURL_OPT_SSL_STRING(CERT, 1);
575 HTTP_CURL_OPT_SSL_STRING(CERTTYPE, 0);
576 HTTP_CURL_OPT_SSL_STRING(CERTPASSWD, 0);
577
578 HTTP_CURL_OPT_SSL_STRING(KEY, 0);
579 HTTP_CURL_OPT_SSL_STRING(KEYTYPE, 0);
580 HTTP_CURL_OPT_SSL_STRING(KEYPASSWD, 0);
581
582 HTTP_CURL_OPT_SSL_STRING(ENGINE, 0);
583 HTTP_CURL_OPT_SSL_LONG(VERSION);
584
585 HTTP_CURL_OPT_SSL_LONG_(VERIFYPEER);
586 HTTP_CURL_OPT_SSL_LONG_(VERIFYHOST);
587 HTTP_CURL_OPT_SSL_STRING_(CIPHER_LIST, 0);
588
589 HTTP_CURL_OPT_STRING(CAINFO, 1);
590 HTTP_CURL_OPT_STRING(CAPATH, 1);
591 HTTP_CURL_OPT_STRING(RANDOM_FILE, 1);
592 HTTP_CURL_OPT_STRING(EGDSOCKET, 1);
593
594 /* reset key */
595 key = NULL;
596 }
597 }
598 }
599
600 /* request method */
601 switch (request->meth)
602 {
603 case HTTP_GET:
604 curl_easy_setopt(request->ch, CURLOPT_HTTPGET, 1);
605 break;
606
607 case HTTP_HEAD:
608 curl_easy_setopt(request->ch, CURLOPT_NOBODY, 1);
609 break;
610
611 case HTTP_POST:
612 curl_easy_setopt(request->ch, CURLOPT_POST, 1);
613 break;
614
615 case HTTP_PUT:
616 curl_easy_setopt(request->ch, CURLOPT_UPLOAD, 1);
617 break;
618
619 default:
620 if (http_request_method_exists(0, request->meth, NULL)) {
621 curl_easy_setopt(request->ch, CURLOPT_CUSTOMREQUEST, http_request_method_name(request->meth));
622 } else {
623 http_error_ex(HE_WARNING, HTTP_E_REQUEST_METHOD, "Unsupported request method: %d (%s)", request->meth, request->url);
624 return FAILURE;
625 }
626 break;
627 }
628
629 /* attach request body */
630 if (request->body && (request->meth != HTTP_GET) && (request->meth != HTTP_HEAD)) {
631 switch (request->body->type)
632 {
633 case HTTP_REQUEST_BODY_CSTRING:
634 curl_easy_setopt(request->ch, CURLOPT_POSTFIELDS, request->body->data);
635 curl_easy_setopt(request->ch, CURLOPT_POSTFIELDSIZE, request->body->size);
636 break;
637
638 case HTTP_REQUEST_BODY_CURLPOST:
639 curl_easy_setopt(request->ch, CURLOPT_HTTPPOST, (struct curl_httppost *) request->body->data);
640 break;
641
642 case HTTP_REQUEST_BODY_UPLOADFILE:
643 curl_easy_setopt(request->ch, CURLOPT_IOCTLDATA, request);
644 curl_easy_setopt(request->ch, CURLOPT_READDATA, request);
645 curl_easy_setopt(request->ch, CURLOPT_INFILESIZE, request->body->size);
646 break;
647
648 default:
649 /* shouldn't ever happen */
650 http_error_ex(HE_ERROR, 0, "Unknown request body type: %d (%s)", request->body->type, request->url);
651 return FAILURE;
652 break;
653 }
654 }
655
656 return SUCCESS;
657 }
658 /* }}} */
659
660 /* {{{ void http_request_exec(http_request *) */
661 PHP_HTTP_API void _http_request_exec(http_request *request)
662 {
663 CURLcode result;
664 TSRMLS_FETCH_FROM_CTX(request->tsrm_ls);
665
666 if (CURLE_OK != (result = curl_easy_perform(request->ch))) {
667 http_error_ex(HE_WARNING, HTTP_E_REQUEST, "%s; %s (%s)", curl_easy_strerror(result), request->_error, request->url);
668 }
669 }
670 /* }}} */
671
672 /* {{{ void http_request_info(http_request *, HashTable *) */
673 PHP_HTTP_API void _http_request_info(http_request *request, HashTable *info)
674 {
675 zval array;
676 INIT_ZARR(array, info);
677
678 HTTP_CURL_INFO(EFFECTIVE_URL);
679 HTTP_CURL_INFO(RESPONSE_CODE);
680 HTTP_CURL_INFO_EX(HTTP_CONNECTCODE, connect_code);
681 HTTP_CURL_INFO(FILETIME);
682 HTTP_CURL_INFO(TOTAL_TIME);
683 HTTP_CURL_INFO(NAMELOOKUP_TIME);
684 HTTP_CURL_INFO(CONNECT_TIME);
685 HTTP_CURL_INFO(PRETRANSFER_TIME);
686 HTTP_CURL_INFO(STARTTRANSFER_TIME);
687 HTTP_CURL_INFO(REDIRECT_TIME);
688 HTTP_CURL_INFO(REDIRECT_COUNT);
689 HTTP_CURL_INFO(SIZE_UPLOAD);
690 HTTP_CURL_INFO(SIZE_DOWNLOAD);
691 HTTP_CURL_INFO(SPEED_DOWNLOAD);
692 HTTP_CURL_INFO(SPEED_UPLOAD);
693 HTTP_CURL_INFO(HEADER_SIZE);
694 HTTP_CURL_INFO(REQUEST_SIZE);
695 HTTP_CURL_INFO(SSL_VERIFYRESULT);
696 HTTP_CURL_INFO(SSL_ENGINES);
697 HTTP_CURL_INFO(CONTENT_LENGTH_DOWNLOAD);
698 HTTP_CURL_INFO(CONTENT_LENGTH_UPLOAD);
699 HTTP_CURL_INFO(CONTENT_TYPE);
700 HTTP_CURL_INFO(HTTPAUTH_AVAIL);
701 HTTP_CURL_INFO(PROXYAUTH_AVAIL);
702 /*HTTP_CURL_INFO(OS_ERRNO);*/
703 HTTP_CURL_INFO(NUM_CONNECTS);
704 #if LIBCURL_VERSION_NUM >= 0x070e01
705 HTTP_CURL_INFO_EX(COOKIELIST, cookies);
706 #endif
707 }
708 /* }}} */
709
710 /* {{{ static size_t http_curl_read_callback(void *, size_t, size_t, void *) */
711 static size_t http_curl_read_callback(void *data, size_t len, size_t n, void *ctx)
712 {
713 http_request *request = (http_request *) ctx;
714 TSRMLS_FETCH_FROM_CTX(request->tsrm_ls);
715
716 if (request->body == NULL || request->body->type != HTTP_REQUEST_BODY_UPLOADFILE) {
717 return 0;
718 }
719 return php_stream_read((php_stream *) request->body->data, data, len * n);
720 }
721 /* }}} */
722
723 /* {{{ static int http_curl_progress_callback(void *, double, double, double, double) */
724 static int http_curl_progress_callback(void *ctx, double dltotal, double dlnow, double ultotal, double ulnow)
725 {
726 int rc;
727 zval *params_pass[4], params_local[4], retval;
728 http_request *request = (http_request *) ctx;
729 TSRMLS_FETCH_FROM_CTX(request->tsrm_ls);
730
731 params_pass[0] = &params_local[0];
732 params_pass[1] = &params_local[1];
733 params_pass[2] = &params_local[2];
734 params_pass[3] = &params_local[3];
735
736 INIT_PZVAL(params_pass[0]);
737 INIT_PZVAL(params_pass[1]);
738 INIT_PZVAL(params_pass[2]);
739 INIT_PZVAL(params_pass[3]);
740 ZVAL_DOUBLE(params_pass[0], dltotal);
741 ZVAL_DOUBLE(params_pass[1], dlnow);
742 ZVAL_DOUBLE(params_pass[2], ultotal);
743 ZVAL_DOUBLE(params_pass[3], ulnow);
744
745 INIT_PZVAL(&retval);
746 ZVAL_NULL(&retval);
747 rc = call_user_function(EG(function_table), NULL, request->_progress_callback, &retval, 4, params_pass TSRMLS_CC);
748 zval_dtor(&retval);
749 return rc;
750 }
751 /* }}} */
752
753 /* {{{ static curlioerr http_curl_ioctl_callback(CURL *, curliocmd, void *) */
754 static curlioerr http_curl_ioctl_callback(CURL *ch, curliocmd cmd, void *ctx)
755 {
756 http_request *request = (http_request *) ctx;
757 TSRMLS_FETCH_FROM_CTX(request->tsrm_ls);
758
759 if (cmd != CURLIOCMD_RESTARTREAD) {
760 return CURLIOE_UNKNOWNCMD;
761 }
762 if ( request->body == NULL ||
763 request->body->type != HTTP_REQUEST_BODY_UPLOADFILE ||
764 SUCCESS != php_stream_rewind((php_stream *) request->body->data)) {
765 return CURLIOE_FAILRESTART;
766 }
767 return CURLIOE_OK;
768 }
769 /* }}} */
770
771 /* {{{ static int http_curl_raw_callback(CURL *, curl_infotype, char *, size_t, void *) */
772 static int http_curl_raw_callback(CURL *ch, curl_infotype type, char *data, size_t length, void *ctx)
773 {
774 http_request *request = (http_request *) ctx;
775
776 switch (type)
777 {
778 case CURLINFO_DATA_IN:
779 if (request->conv.last_type == CURLINFO_HEADER_IN) {
780 phpstr_appends(&request->conv.response, HTTP_CRLF);
781 }
782 case CURLINFO_HEADER_IN:
783 phpstr_append(&request->conv.response, data, length);
784 break;
785 case CURLINFO_DATA_OUT:
786 if (request->conv.last_type == CURLINFO_HEADER_OUT) {
787 phpstr_appends(&request->conv.request, HTTP_CRLF);
788 }
789 case CURLINFO_HEADER_OUT:
790 phpstr_append(&request->conv.request, data, length);
791 break;
792 default:
793 #if 0
794 fprintf(stderr, "## ", type);
795 if (!type) {
796 fprintf(stderr, "%s", data);
797 } else {
798 ulong i;
799 for (i = 1; i <= length; ++i) {
800 fprintf(stderr, "%02X ", data[i-1] & 0xFF);
801 if (!(i % 20)) {
802 fprintf(stderr, "\n## ");
803 }
804 }
805 fprintf(stderr, "\n");
806 }
807 if (data[length-1] != 0xa) {
808 fprintf(stderr, "\n");
809 }
810 #endif
811 break;
812 }
813
814 if (type) {
815 request->conv.last_type = type;
816 }
817 return 0;
818 }
819 /* }}} */
820
821 /* {{{ static inline zval *http_request_option(http_request *, HashTable *, char *, size_t, int) */
822 static inline zval *_http_request_option_ex(http_request *r, HashTable *options, char *key, size_t keylen, int type TSRMLS_DC)
823 {
824 zval **zoption;
825 #ifdef ZEND_ENGINE_2
826 ulong h = zend_get_hash_value(key, keylen);
827 #endif
828
829 if (!options ||
830 #ifdef ZEND_ENGINE_2
831 (SUCCESS != zend_hash_quick_find(options, key, keylen, h, (void **) &zoption))
832 #else
833 (SUCCESS != zend_hash_find(options, key, keylen, (void **) &zoption))
834 #endif
835 ) {
836 return NULL;
837 }
838
839 if (Z_TYPE_PP(zoption) != type) {
840 switch (type)
841 {
842 case IS_BOOL: convert_to_boolean_ex(zoption); break;
843 case IS_LONG: convert_to_long_ex(zoption); break;
844 case IS_DOUBLE: convert_to_double_ex(zoption); break;
845 case IS_STRING: convert_to_string_ex(zoption); break;
846 case IS_ARRAY: convert_to_array_ex(zoption); break;
847 case IS_OBJECT: convert_to_object_ex(zoption); break;
848 default:
849 break;
850 }
851 }
852
853 /* cache strings */
854 if (type == IS_STRING) {
855 ZVAL_ADDREF(*zoption);
856 #ifdef ZEND_ENGINE_2
857 _zend_hash_quick_add_or_update(&r->_cache.options, key, keylen, h, zoption, sizeof(zval *), NULL,
858 zend_hash_quick_exists(&r->_cache.options, key, keylen, h)?HASH_UPDATE:HASH_ADD ZEND_FILE_LINE_CC);
859 #else
860 zend_hash_add_or_update(&r->_cache.options, key, keylen, zoption, sizeof(zval *), NULL,
861 zend_hash_exists(&r->_cache.options, key, keylen)?HASH_UPDATE:HASH_ADD);
862 #endif
863 }
864
865 return *zoption;
866 }
867 /* }}} */
868
869 #ifdef HTTP_NEED_OPENSSL_TSL
870 /* {{{ */
871 static MUTEX_T *http_openssl_tsl = NULL;
872
873 static void http_ssl_lock(int mode, int n, const char * file, int line)
874 {
875 if (mode & CRYPTO_LOCK) {
876 tsrm_mutex_lock(http_openssl_tsl[n]);
877 } else {
878 tsrm_mutex_unlock(http_openssl_tsl[n]);
879 }
880 }
881
882 static ulong http_ssl_id(void)
883 {
884 return (ulong) tsrm_thread_id();
885 }
886
887 static inline void http_ssl_init(void)
888 {
889 int i, c = CRYPTO_num_locks();
890
891 http_openssl_tsl = malloc(c * sizeof(MUTEX_T));
892
893 for (i = 0; i < c; ++i) {
894 http_openssl_tsl[i] = tsrm_mutex_alloc();
895 }
896
897 CRYPTO_set_id_callback(http_ssl_id);
898 CRYPTO_set_locking_callback(http_ssl_lock);
899 }
900
901 static inline void http_ssl_cleanup(void)
902 {
903 if (http_openssl_tsl) {
904 int i, c = CRYPTO_num_locks();
905
906 CRYPTO_set_id_callback(NULL);
907 CRYPTO_set_locking_callback(NULL);
908
909 for (i = 0; i < c; ++i) {
910 tsrm_mutex_free(http_openssl_tsl[i]);
911 }
912
913 free(http_openssl_tsl);
914 http_openssl_tsl = NULL;
915 }
916 }
917 #endif /* HTTP_NEED_OPENSSL_TSL */
918 /* }}} */
919
920 #ifdef HTTP_NEED_GNUTLS_TSL
921 /* {{{ */
922 static int http_ssl_mutex_create(void **m)
923 {
924 if (*((MUTEX_T *) m) = tsrm_mutex_alloc()) {
925 return SUCCESS;
926 } else {
927 return FAILURE;
928 }
929 }
930
931 static int http_ssl_mutex_destroy(void **m)
932 {
933 tsrm_mutex_free(*((MUTEX_T *) m));
934 return SUCCESS;
935 }
936
937 static int http_ssl_mutex_lock(void **m)
938 {
939 return tsrm_mutex_lock(*((MUTEX_T *) m));
940 }
941
942 static int http_ssl_mutex_unlock(void **m)
943 {
944 return tsrm_mutex_unlock(*((MUTEX_T *) m));
945 }
946
947 static struct gcry_thread_cbs http_gnutls_tsl = {
948 GCRY_THREAD_OPTIONS_USER,
949 NULL,
950 http_ssl_mutex_create,
951 http_ssl_mutex_destroy,
952 http_ssl_mutex_lock,
953 http_ssl_mutex_unlock
954 };
955
956 static inline void http_ssl_init(void)
957 {
958 gcry_control(GCRYCTL_SET_THREAD_CBS, &http_gnutls_tsl);
959 }
960
961 static inline void http_ssl_cleanup(void)
962 {
963 return;
964 }
965 #endif /* HTTP_NEED_GNUTLS_TSL */
966 /* }}} */
967
968 #endif /* HTTP_HAVE_CURL */
969
970 /*
971 * Local variables:
972 * tab-width: 4
973 * c-basic-offset: 4
974 * End:
975 * vim600: noet sw=4 ts=4 fdm=marker
976 * vim<600: noet sw=4 ts=4
977 */
978