- fixed memory corruptions on reusing HttpRequest;
[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
475 SEPARATE_ZVAL(header_val);
476 convert_to_string(*header_val);
477
478 snprintf(header, 1023, "%s: %s", header_key, Z_STRVAL_PP(header_val));
479 request->_cache.headers = curl_slist_append(request->_cache.headers, header);
480 }
481
482 /* reset */
483 header_key = NULL;
484 }
485 }
486 }
487 if ((zoption = http_request_option(request, options, "compress", IS_BOOL)) && Z_LVAL_P(zoption)) {
488 request->_cache.headers = curl_slist_append(request->_cache.headers, "Accept-Encoding: gzip;q=1.0,deflate;q=0.5,*;q=0.1");
489 }
490 HTTP_CURL_OPT(HTTPHEADER, request->_cache.headers);
491
492 /* cookies, array('name' => 'value') */
493 if ((zoption = http_request_option(request, options, "cookies", IS_ARRAY))) {
494 char *cookie_key = NULL;
495 ulong cookie_idx = 0;
496 HashPosition pos;
497
498 phpstr_dtor(&request->_cache.cookies);
499
500 FOREACH_KEY(pos, zoption, cookie_key, cookie_idx) {
501 if (cookie_key) {
502 zval **cookie_val;
503 if (SUCCESS == zend_hash_get_current_data_ex(Z_ARRVAL_P(zoption), (void **) &cookie_val, &pos)) {
504 zval *cpy, *val = convert_to_type_ex(IS_STRING, *cookie_val, &cpy);
505
506 phpstr_appendf(&request->_cache.cookies, "%s=%s; ", cookie_key, Z_STRVAL_P(val));
507
508 if (cpy) {
509 zval_ptr_dtor(&cpy);
510 }
511 }
512
513 /* reset */
514 cookie_key = NULL;
515 }
516 }
517
518 if (request->_cache.cookies.used) {
519 phpstr_fix(&request->_cache.cookies);
520 HTTP_CURL_OPT(COOKIE, request->_cache.cookies.data);
521 }
522 }
523
524 #if LIBCURL_VERSIONNUM >= 0x070f01
525 /* reset cookies */
526 if ((zoption = http_request_option(request, options, "resetcookies", IS_BOOL)) && Z_LVAL_P(zoption)) {
527 HTTP_CURL_OPT(COOKIELIST, "ALL");
528 }
529 #endif
530
531 /* session cookies */
532 if ((zoption = http_request_option(request, options, "cookiesession", IS_BOOL))) {
533 if (Z_LVAL_P(zoption)) {
534 /* accept cookies for this session */
535 HTTP_CURL_OPT(COOKIEFILE, "");
536 } else {
537 /* reset session cookies */
538 HTTP_CURL_OPT(COOKIESESSION, 1);
539 }
540 }
541
542 /* cookiestore, read initial cookies from that file and store cookies back into that file */
543 if ((zoption = http_request_option(request, options, "cookiestore", IS_STRING)) && Z_STRLEN_P(zoption)) {
544 HTTP_CHECK_OPEN_BASEDIR(Z_STRVAL_P(zoption), return FAILURE);
545 HTTP_CURL_OPT(COOKIEFILE, Z_STRVAL_P(zoption));
546 HTTP_CURL_OPT(COOKIEJAR, Z_STRVAL_P(zoption));
547 }
548
549 /* resume */
550 if ((zoption = http_request_option(request, options, "resume", IS_LONG)) && (Z_LVAL_P(zoption) != 0)) {
551 range_req = 1;
552 HTTP_CURL_OPT(RESUME_FROM, Z_LVAL_P(zoption));
553 }
554
555 /* maxfilesize */
556 if ((zoption = http_request_option(request, options, "maxfilesize", IS_LONG))) {
557 HTTP_CURL_OPT(MAXFILESIZE, Z_LVAL_P(zoption));
558 }
559
560 /* lastmodified */
561 if ((zoption = http_request_option(request, options, "lastmodified", IS_LONG))) {
562 if (Z_LVAL_P(zoption)) {
563 if (Z_LVAL_P(zoption) > 0) {
564 HTTP_CURL_OPT(TIMEVALUE, Z_LVAL_P(zoption));
565 } else {
566 HTTP_CURL_OPT(TIMEVALUE, time(NULL) + Z_LVAL_P(zoption));
567 }
568 HTTP_CURL_OPT(TIMECONDITION, range_req ? CURL_TIMECOND_IFUNMODSINCE : CURL_TIMECOND_IFMODSINCE);
569 } else {
570 HTTP_CURL_OPT(TIMECONDITION, CURL_TIMECOND_NONE);
571 }
572 }
573
574 /* timeout, defaults to 0 */
575 if ((zoption = http_request_option(request, options, "timeout", IS_LONG))) {
576 HTTP_CURL_OPT(TIMEOUT, Z_LVAL_P(zoption));
577 }
578
579 /* connecttimeout, defaults to 3 */
580 if ((zoption = http_request_option(request, options, "connecttimeout", IS_LONG))) {
581 HTTP_CURL_OPT(CONNECTTIMEOUT, Z_LVAL_P(zoption));
582 }
583
584 /* ssl */
585 if ((zoption = http_request_option(request, options, "ssl", IS_ARRAY))) {
586 ulong idx;
587 char *key = NULL;
588 zval **param;
589 HashPosition pos;
590
591 FOREACH_KEYVAL(pos, zoption, key, idx, param) {
592 if (key) {
593 HTTP_CURL_OPT_SSL_STRING(CERT, 1);
594 HTTP_CURL_OPT_SSL_STRING(CERTTYPE, 0);
595 HTTP_CURL_OPT_SSL_STRING(CERTPASSWD, 0);
596
597 HTTP_CURL_OPT_SSL_STRING(KEY, 0);
598 HTTP_CURL_OPT_SSL_STRING(KEYTYPE, 0);
599 HTTP_CURL_OPT_SSL_STRING(KEYPASSWD, 0);
600
601 HTTP_CURL_OPT_SSL_STRING(ENGINE, 0);
602 HTTP_CURL_OPT_SSL_LONG(VERSION);
603
604 HTTP_CURL_OPT_SSL_LONG_(VERIFYPEER);
605 HTTP_CURL_OPT_SSL_LONG_(VERIFYHOST);
606 HTTP_CURL_OPT_SSL_STRING_(CIPHER_LIST, 0);
607
608 HTTP_CURL_OPT_STRING(CAINFO, 1);
609 HTTP_CURL_OPT_STRING(CAPATH, 1);
610 HTTP_CURL_OPT_STRING(RANDOM_FILE, 1);
611 HTTP_CURL_OPT_STRING(EGDSOCKET, 1);
612
613 /* reset key */
614 key = NULL;
615 }
616 }
617 }
618
619 /* request method */
620 switch (request->meth)
621 {
622 case HTTP_GET:
623 curl_easy_setopt(request->ch, CURLOPT_HTTPGET, 1);
624 break;
625
626 case HTTP_HEAD:
627 curl_easy_setopt(request->ch, CURLOPT_NOBODY, 1);
628 break;
629
630 case HTTP_POST:
631 curl_easy_setopt(request->ch, CURLOPT_POST, 1);
632 break;
633
634 case HTTP_PUT:
635 curl_easy_setopt(request->ch, CURLOPT_UPLOAD, 1);
636 break;
637
638 default:
639 if (http_request_method_exists(0, request->meth, NULL)) {
640 curl_easy_setopt(request->ch, CURLOPT_CUSTOMREQUEST, http_request_method_name(request->meth));
641 } else {
642 http_error_ex(HE_WARNING, HTTP_E_REQUEST_METHOD, "Unsupported request method: %d (%s)", request->meth, request->url);
643 return FAILURE;
644 }
645 break;
646 }
647
648 /* attach request body */
649 if (request->body && (request->meth != HTTP_GET) && (request->meth != HTTP_HEAD)) {
650 switch (request->body->type)
651 {
652 case HTTP_REQUEST_BODY_CSTRING:
653 curl_easy_setopt(request->ch, CURLOPT_POSTFIELDS, request->body->data);
654 curl_easy_setopt(request->ch, CURLOPT_POSTFIELDSIZE, request->body->size);
655 break;
656
657 case HTTP_REQUEST_BODY_CURLPOST:
658 curl_easy_setopt(request->ch, CURLOPT_HTTPPOST, (struct curl_httppost *) request->body->data);
659 break;
660
661 case HTTP_REQUEST_BODY_UPLOADFILE:
662 curl_easy_setopt(request->ch, CURLOPT_IOCTLDATA, request);
663 curl_easy_setopt(request->ch, CURLOPT_READDATA, request);
664 curl_easy_setopt(request->ch, CURLOPT_INFILESIZE, request->body->size);
665 break;
666
667 default:
668 /* shouldn't ever happen */
669 http_error_ex(HE_ERROR, 0, "Unknown request body type: %d (%s)", request->body->type, request->url);
670 return FAILURE;
671 break;
672 }
673 }
674
675 return SUCCESS;
676 }
677 /* }}} */
678
679 /* {{{ void http_request_exec(http_request *) */
680 PHP_HTTP_API void _http_request_exec(http_request *request)
681 {
682 CURLcode result;
683 TSRMLS_FETCH_FROM_CTX(request->tsrm_ls);
684
685 if (CURLE_OK != (result = curl_easy_perform(request->ch))) {
686 http_error_ex(HE_WARNING, HTTP_E_REQUEST, "%s; %s (%s)", curl_easy_strerror(result), request->_error, request->url);
687 }
688 }
689 /* }}} */
690
691 /* {{{ void http_request_info(http_request *, HashTable *) */
692 PHP_HTTP_API void _http_request_info(http_request *request, HashTable *info)
693 {
694 zval array;
695 INIT_ZARR(array, info);
696
697 HTTP_CURL_INFO(EFFECTIVE_URL);
698 HTTP_CURL_INFO(RESPONSE_CODE);
699 HTTP_CURL_INFO_EX(HTTP_CONNECTCODE, connect_code);
700 HTTP_CURL_INFO(FILETIME);
701 HTTP_CURL_INFO(TOTAL_TIME);
702 HTTP_CURL_INFO(NAMELOOKUP_TIME);
703 HTTP_CURL_INFO(CONNECT_TIME);
704 HTTP_CURL_INFO(PRETRANSFER_TIME);
705 HTTP_CURL_INFO(STARTTRANSFER_TIME);
706 HTTP_CURL_INFO(REDIRECT_TIME);
707 HTTP_CURL_INFO(REDIRECT_COUNT);
708 HTTP_CURL_INFO(SIZE_UPLOAD);
709 HTTP_CURL_INFO(SIZE_DOWNLOAD);
710 HTTP_CURL_INFO(SPEED_DOWNLOAD);
711 HTTP_CURL_INFO(SPEED_UPLOAD);
712 HTTP_CURL_INFO(HEADER_SIZE);
713 HTTP_CURL_INFO(REQUEST_SIZE);
714 HTTP_CURL_INFO(SSL_VERIFYRESULT);
715 HTTP_CURL_INFO(SSL_ENGINES);
716 HTTP_CURL_INFO(CONTENT_LENGTH_DOWNLOAD);
717 HTTP_CURL_INFO(CONTENT_LENGTH_UPLOAD);
718 HTTP_CURL_INFO(CONTENT_TYPE);
719 HTTP_CURL_INFO(HTTPAUTH_AVAIL);
720 HTTP_CURL_INFO(PROXYAUTH_AVAIL);
721 /*HTTP_CURL_INFO(OS_ERRNO);*/
722 HTTP_CURL_INFO(NUM_CONNECTS);
723 #if LIBCURL_VERSION_NUM >= 0x070e01
724 HTTP_CURL_INFO_EX(COOKIELIST, cookies);
725 #endif
726 }
727 /* }}} */
728
729 /* {{{ static size_t http_curl_read_callback(void *, size_t, size_t, void *) */
730 static size_t http_curl_read_callback(void *data, size_t len, size_t n, void *ctx)
731 {
732 http_request *request = (http_request *) ctx;
733 TSRMLS_FETCH_FROM_CTX(request->tsrm_ls);
734
735 if (request->body == NULL || request->body->type != HTTP_REQUEST_BODY_UPLOADFILE) {
736 return 0;
737 }
738 return php_stream_read((php_stream *) request->body->data, data, len * n);
739 }
740 /* }}} */
741
742 /* {{{ static int http_curl_progress_callback(void *, double, double, double, double) */
743 static int http_curl_progress_callback(void *ctx, double dltotal, double dlnow, double ultotal, double ulnow)
744 {
745 int rc;
746 zval *params_pass[4], params_local[4], retval;
747 http_request *request = (http_request *) ctx;
748 TSRMLS_FETCH_FROM_CTX(request->tsrm_ls);
749
750 params_pass[0] = &params_local[0];
751 params_pass[1] = &params_local[1];
752 params_pass[2] = &params_local[2];
753 params_pass[3] = &params_local[3];
754
755 INIT_PZVAL(params_pass[0]);
756 INIT_PZVAL(params_pass[1]);
757 INIT_PZVAL(params_pass[2]);
758 INIT_PZVAL(params_pass[3]);
759 ZVAL_DOUBLE(params_pass[0], dltotal);
760 ZVAL_DOUBLE(params_pass[1], dlnow);
761 ZVAL_DOUBLE(params_pass[2], ultotal);
762 ZVAL_DOUBLE(params_pass[3], ulnow);
763
764 INIT_PZVAL(&retval);
765 ZVAL_NULL(&retval);
766 rc = call_user_function(EG(function_table), NULL, request->_progress_callback, &retval, 4, params_pass TSRMLS_CC);
767 zval_dtor(&retval);
768 return rc;
769 }
770 /* }}} */
771
772 /* {{{ static curlioerr http_curl_ioctl_callback(CURL *, curliocmd, void *) */
773 static curlioerr http_curl_ioctl_callback(CURL *ch, curliocmd cmd, void *ctx)
774 {
775 http_request *request = (http_request *) ctx;
776 TSRMLS_FETCH_FROM_CTX(request->tsrm_ls);
777
778 if (cmd != CURLIOCMD_RESTARTREAD) {
779 return CURLIOE_UNKNOWNCMD;
780 }
781 if ( request->body == NULL ||
782 request->body->type != HTTP_REQUEST_BODY_UPLOADFILE ||
783 SUCCESS != php_stream_rewind((php_stream *) request->body->data)) {
784 return CURLIOE_FAILRESTART;
785 }
786 return CURLIOE_OK;
787 }
788 /* }}} */
789
790 /* {{{ static int http_curl_raw_callback(CURL *, curl_infotype, char *, size_t, void *) */
791 static int http_curl_raw_callback(CURL *ch, curl_infotype type, char *data, size_t length, void *ctx)
792 {
793 http_request *request = (http_request *) ctx;
794
795 switch (type)
796 {
797 case CURLINFO_DATA_IN:
798 if (request->conv.last_type == CURLINFO_HEADER_IN) {
799 phpstr_appends(&request->conv.response, HTTP_CRLF);
800 }
801 case CURLINFO_HEADER_IN:
802 phpstr_append(&request->conv.response, data, length);
803 break;
804 case CURLINFO_DATA_OUT:
805 if (request->conv.last_type == CURLINFO_HEADER_OUT) {
806 phpstr_appends(&request->conv.request, HTTP_CRLF);
807 }
808 case CURLINFO_HEADER_OUT:
809 phpstr_append(&request->conv.request, data, length);
810 break;
811 default:
812 #if 0
813 fprintf(stderr, "## ", type);
814 if (!type) {
815 fprintf(stderr, "%s", data);
816 } else {
817 ulong i;
818 for (i = 1; i <= length; ++i) {
819 fprintf(stderr, "%02X ", data[i-1] & 0xFF);
820 if (!(i % 20)) {
821 fprintf(stderr, "\n## ");
822 }
823 }
824 fprintf(stderr, "\n");
825 }
826 if (data[length-1] != 0xa) {
827 fprintf(stderr, "\n");
828 }
829 #endif
830 break;
831 }
832
833 if (type) {
834 request->conv.last_type = type;
835 }
836 return 0;
837 }
838 /* }}} */
839
840 /* {{{ static inline zval *http_request_option(http_request *, HashTable *, char *, size_t, int) */
841 static inline zval *_http_request_option_ex(http_request *r, HashTable *options, char *key, size_t keylen, int type TSRMLS_DC)
842 {
843 zval **zoption;
844 #ifdef ZEND_ENGINE_2
845 ulong h = zend_get_hash_value(key, keylen);
846 #endif
847
848 if (!options ||
849 #ifdef ZEND_ENGINE_2
850 (SUCCESS != zend_hash_quick_find(options, key, keylen, h, (void **) &zoption))
851 #else
852 (SUCCESS != zend_hash_find(options, key, keylen, (void **) &zoption))
853 #endif
854 ) {
855 return NULL;
856 }
857
858 if (Z_TYPE_PP(zoption) != type) {
859 switch (type)
860 {
861 case IS_BOOL: convert_to_boolean_ex(zoption); break;
862 case IS_LONG: convert_to_long_ex(zoption); break;
863 case IS_DOUBLE: convert_to_double_ex(zoption); break;
864 case IS_STRING: convert_to_string_ex(zoption); break;
865 case IS_ARRAY: convert_to_array_ex(zoption); break;
866 case IS_OBJECT: convert_to_object_ex(zoption); break;
867 default:
868 break;
869 }
870 }
871
872 /* cache strings */
873 if (type == IS_STRING) {
874 ZVAL_ADDREF(*zoption);
875 #ifdef ZEND_ENGINE_2
876 _zend_hash_quick_add_or_update(&r->_cache.options, key, keylen, h, zoption, sizeof(zval *), NULL,
877 zend_hash_quick_exists(&r->_cache.options, key, keylen, h)?HASH_UPDATE:HASH_ADD ZEND_FILE_LINE_CC);
878 #else
879 zend_hash_add_or_update(&r->_cache.options, key, keylen, zoption, sizeof(zval *), NULL,
880 zend_hash_exists(&r->_cache.options, key, keylen)?HASH_UPDATE:HASH_ADD);
881 #endif
882 }
883
884 return *zoption;
885 }
886 /* }}} */
887
888 #ifdef HTTP_NEED_OPENSSL_TSL
889 /* {{{ */
890 static MUTEX_T *http_openssl_tsl = NULL;
891
892 static void http_ssl_lock(int mode, int n, const char * file, int line)
893 {
894 if (mode & CRYPTO_LOCK) {
895 tsrm_mutex_lock(http_openssl_tsl[n]);
896 } else {
897 tsrm_mutex_unlock(http_openssl_tsl[n]);
898 }
899 }
900
901 static ulong http_ssl_id(void)
902 {
903 return (ulong) tsrm_thread_id();
904 }
905
906 static inline void http_ssl_init(void)
907 {
908 int i, c = CRYPTO_num_locks();
909
910 http_openssl_tsl = malloc(c * sizeof(MUTEX_T));
911
912 for (i = 0; i < c; ++i) {
913 http_openssl_tsl[i] = tsrm_mutex_alloc();
914 }
915
916 CRYPTO_set_id_callback(http_ssl_id);
917 CRYPTO_set_locking_callback(http_ssl_lock);
918 }
919
920 static inline void http_ssl_cleanup(void)
921 {
922 if (http_openssl_tsl) {
923 int i, c = CRYPTO_num_locks();
924
925 CRYPTO_set_id_callback(NULL);
926 CRYPTO_set_locking_callback(NULL);
927
928 for (i = 0; i < c; ++i) {
929 tsrm_mutex_free(http_openssl_tsl[i]);
930 }
931
932 free(http_openssl_tsl);
933 http_openssl_tsl = NULL;
934 }
935 }
936 #endif /* HTTP_NEED_OPENSSL_TSL */
937 /* }}} */
938
939 #ifdef HTTP_NEED_GNUTLS_TSL
940 /* {{{ */
941 static int http_ssl_mutex_create(void **m)
942 {
943 if (*((MUTEX_T *) m) = tsrm_mutex_alloc()) {
944 return SUCCESS;
945 } else {
946 return FAILURE;
947 }
948 }
949
950 static int http_ssl_mutex_destroy(void **m)
951 {
952 tsrm_mutex_free(*((MUTEX_T *) m));
953 return SUCCESS;
954 }
955
956 static int http_ssl_mutex_lock(void **m)
957 {
958 return tsrm_mutex_lock(*((MUTEX_T *) m));
959 }
960
961 static int http_ssl_mutex_unlock(void **m)
962 {
963 return tsrm_mutex_unlock(*((MUTEX_T *) m));
964 }
965
966 static struct gcry_thread_cbs http_gnutls_tsl = {
967 GCRY_THREAD_OPTIONS_USER,
968 NULL,
969 http_ssl_mutex_create,
970 http_ssl_mutex_destroy,
971 http_ssl_mutex_lock,
972 http_ssl_mutex_unlock
973 };
974
975 static inline void http_ssl_init(void)
976 {
977 gcry_control(GCRYCTL_SET_THREAD_CBS, &http_gnutls_tsl);
978 }
979
980 static inline void http_ssl_cleanup(void)
981 {
982 return;
983 }
984 #endif /* HTTP_NEED_GNUTLS_TSL */
985 /* }}} */
986
987 #endif /* HTTP_HAVE_CURL */
988
989 /*
990 * Local variables:
991 * tab-width: 4
992 * c-basic-offset: 4
993 * End:
994 * vim600: noet sw=4 ts=4 fdm=marker
995 * vim<600: noet sw=4 ts=4
996 */
997